From 6b285bcac191690d9df3134a526f17486d5ad712 Mon Sep 17 00:00:00 2001 From: Robert Forkel Date: Mon, 13 Nov 2023 15:50:24 +0100 Subject: [PATCH] first stab at new dataset model --- .github/workflows/cldf-validation.yml | 29 + .gitignore | 73 +- .zenodo.json | 95 + CONTRIBUTORS.md | 25 + LICENSE | 408 + README.md | 31 +- cldf/.gitattributes | 1 + cldf/README.md | 124 + cldf/StructureDataset-metadata.json | 407 + cldf/codes.csv | 756 + cldf/data.csv | 121356 +++++++++++++++++++++++ cldf/requirements.txt | 88 + cldf/societies.csv | 1292 + cldf/sources.bib | 36829 +++++++ cldf/variables.csv | 95 + cldfbench_ea.py | 8 + etc/README.md | 4 + map.png | Bin 0 -> 250913 bytes metadata.json | 8 + raw/README.md | 1 + raw/codes.csv | 757 + raw/data.csv | 121356 +++++++++++++++++++++++ raw/societies.csv | 1292 + raw/societies_mapping.csv | 1292 + raw/sources.bib | 41602 ++++++++ raw/variables.csv | 95 + setup.cfg | 4 + setup.py | 22 + test.py | 3 + 29 files changed, 327987 insertions(+), 66 deletions(-) create mode 100644 .github/workflows/cldf-validation.yml create mode 100644 .zenodo.json create mode 100644 CONTRIBUTORS.md create mode 100644 LICENSE create mode 100644 cldf/.gitattributes create mode 100644 cldf/README.md create mode 100644 cldf/StructureDataset-metadata.json create mode 100644 cldf/codes.csv create mode 100644 cldf/data.csv create mode 100644 cldf/requirements.txt create mode 100644 cldf/societies.csv create mode 100644 cldf/sources.bib create mode 100644 cldf/variables.csv create mode 100644 cldfbench_ea.py create mode 100644 etc/README.md create mode 100644 map.png create mode 100644 metadata.json create mode 100644 raw/README.md create mode 100644 raw/codes.csv create mode 100644 raw/data.csv create mode 100644 raw/societies.csv create mode 100644 raw/societies_mapping.csv create mode 100644 raw/sources.bib create mode 100644 raw/variables.csv create mode 100644 setup.cfg create mode 100644 setup.py create mode 100644 test.py diff --git a/.github/workflows/cldf-validation.yml b/.github/workflows/cldf-validation.yml new file mode 100644 index 0000000..bfaa23e --- /dev/null +++ b/.github/workflows/cldf-validation.yml @@ -0,0 +1,29 @@ +name: CLDF-validation + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.10"] + + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pytest-cldf + - name: Test with pytest + run: | + pytest --cldf-metadata=cldf/StructureDataset-metadata.json test.py diff --git a/.gitignore b/.gitignore index 68bc17f..868a5d3 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ __pycache__/ # Distribution / packaging .Python +env/ build/ develop-eggs/ dist/ @@ -20,11 +21,9 @@ parts/ sdist/ var/ wheels/ -share/python-wheels/ *.egg-info/ .installed.cfg *.egg -MANIFEST # PyInstaller # Usually these files are written by a python script from a template @@ -39,17 +38,13 @@ pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ -.nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover -*.py,cover .hypothesis/ -.pytest_cache/ -cover/ # Translations *.mo @@ -58,8 +53,6 @@ cover/ # Django stuff: *.log local_settings.py -db.sqlite3 -db.sqlite3-journal # Flask stuff: instance/ @@ -72,61 +65,27 @@ instance/ docs/_build/ # PyBuilder -.pybuilder/ target/ # Jupyter Notebook .ipynb_checkpoints -# IPython -profile_default/ -ipython_config.py - # pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control -#poetry.lock - -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -#pdm.lock -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it -# in version control. -# https://pdm.fming.dev/#use-with-ide -.pdm.toml - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm -__pypackages__/ - -# Celery stuff +.python-version + +# celery beat schedule file celerybeat-schedule -celerybeat.pid # SageMath parsed files *.sage.py -# Environments +# dotenv .env + +# virtualenv .venv -env/ venv/ ENV/ -env.bak/ -venv.bak/ # Spyder project settings .spyderproject @@ -140,21 +99,5 @@ venv.bak/ # mypy .mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ +.idea/ -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ diff --git a/.zenodo.json b/.zenodo.json new file mode 100644 index 0000000..d9e551a --- /dev/null +++ b/.zenodo.json @@ -0,0 +1,95 @@ +{ + "creators": [ + { + "name": "Murdock, G. P." + }, + { + "name": "R. Textor" + }, + { + "name": "H. Barry, III" + }, + { + "name": "D. R. White" + }, + { + "name": "J. P. Gray" + }, + { + "name": "W. T. Divale" + } + ], + "contributors": [ + { + "name": "Kathryn R. Kirby", + "type": "Editor" + }, + { + "name": "Russell D. Gray", + "type": "Editor" + }, + { + "name": "Simon J. Greenhill", + "type": "Editor" + }, + { + "name": "Fiona M. Jordan", + "type": "Editor" + }, + { + "name": "Stephanie Gomes-Ng", + "type": "Editor" + }, + { + "name": "Hans-J\u00f6rg Bibiko", + "type": "Editor" + }, + { + "name": "Dami\u00e1n E. Blasi", + "type": "Editor" + }, + { + "name": "Carlos A. Botero", + "type": "Editor" + }, + { + "name": "Claire Bowern", + "type": "Editor" + }, + { + "name": "Carol R. Ember", + "type": "Editor" + }, + { + "name": "Dan Leehr", + "type": "Editor" + }, + { + "name": "Bobbi S. Low", + "type": "Editor" + }, + { + "name": "Joe McCarter", + "type": "Editor" + }, + { + "name": "William Divale", + "type": "Editor" + }, + { + "name": "Michael C. Gavin", + "type": "Editor" + } + ], + "title": "D-PLACE dataset derived from Murdock et al. 1999 'Ethnographic Atlas'", + "access_right": "open", + "keywords": [ + "cldf:StructureDataset", + "linguistics" + ], + "upload_type": "dataset", + "description": "

Cite the source of the dataset as:

\n\n
\n

Murdock, G. P., R. Textor, H. Barry, III, D. R. White, J. P. Gray, and W. T. Divale. 1999. Ethnographic Atlas. World Cultures 10:24-136 (codebook)

\n
", + "license": { + "id": "CC-BY-NC-4.0" + } +} \ No newline at end of file diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 0000000..b07b97b --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,25 @@ +# Contributors + +Name | GitHub user | Role +--- | --- | --- +Murdock, G. P. | | Author +R. Textor | | Author +H. Barry, III | | Author +D. R. White | | Author +J. P. Gray | | Author +W. T. Divale | | Author +Kathryn R. Kirby | | editor +Russell D. Gray | | editor +Simon J. Greenhill | | editor +Fiona M. Jordan | | editor +Stephanie Gomes-Ng | | editor +Hans-Jörg Bibiko | | editor +Damián E. Blasi | | editor +Carlos A. Botero | | editor +Claire Bowern | | editor +Carol R. Ember | | editor +Dan Leehr | | editor +Bobbi S. Low | | editor +Joe McCarter | | editor +William Divale | | editor +Michael C. Gavin | | editor diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9520d77 --- /dev/null +++ b/LICENSE @@ -0,0 +1,408 @@ +Attribution-NonCommercial 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution-NonCommercial 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-NonCommercial 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. NonCommercial means not primarily intended for or directed towards + commercial advantage or monetary compensation. For purposes of + this Public License, the exchange of the Licensed Material for + other material subject to Copyright and Similar Rights by digital + file-sharing or similar means is NonCommercial provided there is + no payment of monetary compensation in connection with the + exchange. + + j. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + k. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + l. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part, for NonCommercial purposes only; and + + b. produce, reproduce, and Share Adapted Material for + NonCommercial purposes only. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties, including when + the Licensed Material is used other than for NonCommercial + purposes. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database for NonCommercial purposes + only; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + diff --git a/README.md b/README.md index caaf7b3..9393c8a 100644 --- a/README.md +++ b/README.md @@ -1 +1,30 @@ -# dplace-dataset-ea \ No newline at end of file +# D-PLACE dataset derived from Murdock et al. 1999 'Ethnographic Atlas' + +[![CLDF validation](https://github.com/D-PLACE/dplace-dataset-ea/workflows/CLDF-validation/badge.svg)](https://github.com/D-PLACE/dplace-dataset-ea/actions?query=workflow%3ACLDF-validation) + +## How to cite + +If you use these data please cite +- the original source + > Murdock, G. P., R. Textor, H. Barry, III, D. R. White, J. P. Gray, and W. T. Divale. 1999. Ethnographic Atlas. World Cultures 10:24-136 (codebook) +- the derived dataset using the DOI of the [particular released version](../../releases/) you were using + +## Description + + +The Ethnographic Atlas (EA) describes cultural practices for 1291 societies, ranging from societies with complex agricultural economies and political systems to small hunter-gatherer groups. The societies are globally distributed with especially good coverage of Africa and western North America. + +This dataset is licensed under a CC-BY-NC-4.0 license + + + + +![](map.png) + + + +## CLDF Datasets + +The following CLDF datasets are available in [cldf](cldf): + +- CLDF [StructureDataset](https://github.com/cldf/cldf/tree/master/modules/StructureDataset) at [cldf/StructureDataset-metadata.json](cldf/StructureDataset-metadata.json) \ No newline at end of file diff --git a/cldf/.gitattributes b/cldf/.gitattributes new file mode 100644 index 0000000..087aab7 --- /dev/null +++ b/cldf/.gitattributes @@ -0,0 +1 @@ +*.csv text eol=crlf \ No newline at end of file diff --git a/cldf/README.md b/cldf/README.md new file mode 100644 index 0000000..1e41025 --- /dev/null +++ b/cldf/README.md @@ -0,0 +1,124 @@ + + +# StructureDataset D-PLACE dataset derived from Murdock et al. 1999 'Ethnographic Atlas' + +**CLDF Metadata**: [StructureDataset-metadata.json](./StructureDataset-metadata.json) + +**Sources**: [sources.bib](./sources.bib) + +The Ethnographic Atlas (EA) describes cultural practices for 1291 societies, ranging from societies with complex agricultural economies and political systems to small hunter-gatherer groups. The societies are globally distributed with especially good coverage of Africa and western North America. + +property | value + --- | --- +[dc:bibliographicCitation](http://purl.org/dc/terms/bibliographicCitation) | Murdock, G. P., R. Textor, H. Barry, III, D. R. White, J. P. Gray, and W. T. Divale. 1999. Ethnographic Atlas. World Cultures 10:24-136 (codebook) +[dc:conformsTo](http://purl.org/dc/terms/conformsTo) | [CLDF StructureDataset](http://cldf.clld.org/v1.0/terms.rdf#StructureDataset) +[dc:license](http://purl.org/dc/terms/license) | https://creativecommons.org/licenses/by-nc/4.0/ +[dcat:accessURL](http://www.w3.org/ns/dcat#accessURL) | https://github.com/D-PLACE/dplace-dataset-ea +[prov:wasDerivedFrom](http://www.w3.org/ns/prov#wasDerivedFrom) |
  1. D-PLACE/dplace-dataset-ea c1eb718
  2. Glottolog v4.8
+[prov:wasGeneratedBy](http://www.w3.org/ns/prov#wasGeneratedBy) |
  1. python: 3.10.12
  2. python-packages: requirements.txt
+[rdf:ID](http://www.w3.org/1999/02/22-rdf-syntax-ns#ID) | dplace-dataset-ea +[rdf:type](http://www.w3.org/1999/02/22-rdf-syntax-ns#type) | http://www.w3.org/ns/dcat#Distribution + + +## Table [data.csv](./data.csv) + +Values are coded datapoints, i.e. measurements of a variable for a society. + +Missing data is signaled by an empty value column. + +property | value + --- | --- +[dc:conformsTo](http://purl.org/dc/terms/conformsTo) | [CLDF ValueTable](http://cldf.clld.org/v1.0/terms.rdf#ValueTable) +[dc:extent](http://purl.org/dc/terms/extent) | 121354 + + +### Columns + +Name/Property | Datatype | Description + --- | --- | --- +[ID](http://cldf.clld.org/v1.0/terms.rdf#id) | `string` | Primary key +[Soc_ID](http://cldf.clld.org/v1.0/terms.rdf#languageReference) | `string` | References [societies.csv::ID](#table-societiescsv) +[Var_ID](http://cldf.clld.org/v1.0/terms.rdf#parameterReference) | `string` | References [variables.csv::ID](#table-variablescsv) +[Value](http://cldf.clld.org/v1.0/terms.rdf#value) | `string` | Values for categorical and ordinal variables reference the corresponding code via the Code_ID column. Values for continuous variables have the measured number in the Value column and an empty Code_ID. +[Code_ID](http://cldf.clld.org/v1.0/terms.rdf#codeReference) | `string` | References [codes.csv::ID](#table-codescsv) +[Comment](http://cldf.clld.org/v1.0/terms.rdf#comment) | `string` | +[Source](http://cldf.clld.org/v1.0/terms.rdf#source) | list of `string` (separated by `;`) | References [sources.bib::BibTeX-key](./sources.bib) +`sub_case` | `string` | More specific description of the population the data refer to in terms of society or area. +`year` | `string` | Focal year, i.e. the time period to which the data refer. +`source_coded_data` | `string` | The source of the coded data, which was aggregated in this dataset. +`admin_comment` | `string` | + +## Table [societies.csv](./societies.csv) + +We use the term “society” to refer to cultural groups. In most cases, a society can be understood to represent a group of people at a focal location with a shared language that differs from that of their neighbors. However, in some cases multiple societies share a language. + +property | value + --- | --- +[dc:conformsTo](http://purl.org/dc/terms/conformsTo) | [CLDF LanguageTable](http://cldf.clld.org/v1.0/terms.rdf#LanguageTable) +[dc:extent](http://purl.org/dc/terms/extent) | 1291 + + +### Columns + +Name/Property | Datatype | Description + --- | --- | --- +[ID](http://cldf.clld.org/v1.0/terms.rdf#id) | `string` | Primary key +[Name](http://cldf.clld.org/v1.0/terms.rdf#name) | `string` | +[Latitude](http://cldf.clld.org/v1.0/terms.rdf#latitude) | `decimal` | +[Longitude](http://cldf.clld.org/v1.0/terms.rdf#longitude) | `decimal` | +[Glottocode](http://cldf.clld.org/v1.0/terms.rdf#glottocode) | `string` | +`Name_and_ID_in_source` | `string` | Society names identified as pejorative have been replaced with a preferred, English-language ethnonym. The name (and ID) as given in the source dataset is kept in this field. +`xd_id` | `string` | “cross-data-set” identifier, used to link societies present in different datasets, if they share a focal location. Note: If this field is empty, other fields such as Name, Glottocode, focal year and location may be used to identify societies across datasets if appropriate. +`alt_names_by_society` | list of `string` (separated by `; `) | A list of ‘alternate’ names for the society; includes, where available, one or more autonyms in the society’s own language, as well as other commonly encountered ethnonyms. +`main_focal_year` | `integer` | Focal year specifying the time period to which the data refer, given as number of years BCE - if negative - or CE. +`HRAF_name_ID` | `string` | Name(s) and ID(s) of the corresponding society in HRAF (the Human Relations Area Files) +`HRAF_ID` | `string` | ID of the corresponding society in HRAF +`origLat` | `decimal` | Uncorrected latitude as given in the source. +`origLong` | `decimal` | Uncorrected longitude as given in the source. +[comment](http://cldf.clld.org/v1.0/terms.rdf#comment) | `string` | +`glottocode_comment` | `string` | Comment on the Glottocode assignment. +`region` | `string` | World Geographical Scheme for Recording Plant Distributions level2 region + +## Table [variables.csv](./variables.csv) + +Variables are cultural features or practices, or environmental descriptors. + +property | value + --- | --- +[dc:conformsTo](http://purl.org/dc/terms/conformsTo) | [CLDF ParameterTable](http://cldf.clld.org/v1.0/terms.rdf#ParameterTable) +[dc:extent](http://purl.org/dc/terms/extent) | 94 + + +### Columns + +Name/Property | Datatype | Description + --- | --- | --- +[ID](http://cldf.clld.org/v1.0/terms.rdf#id) | `string` | Primary key +[Name](http://cldf.clld.org/v1.0/terms.rdf#name) | `string` | +[Description](http://cldf.clld.org/v1.0/terms.rdf#description) | `string` | +[ColumnSpec](http://cldf.clld.org/v1.0/terms.rdf#columnSpec) | `json` | +`category` | list of `string` (separated by `, `) | +`type` | `string` | Variables may be categorical (and then must be accompanied by a list of possible ‘codes’, i.e. rows in Codetable. Variables can also be continuous (e.g. Population size) or ordinal. Ordinal variables are accompanied by a list of codes (like categorical variables). The order of codes is encoded as `ord` column in CodeTable. +`unit` | `string` | The unit of measurement +`source_comment` | `string` | A note about the source of this variable. +`changes` | `string` | Notes about how a variable may have been derived from the source. +[comment](http://cldf.clld.org/v1.0/terms.rdf#comment) | `string` | + +## Table [codes.csv](./codes.csv) + +property | value + --- | --- +[dc:conformsTo](http://purl.org/dc/terms/conformsTo) | [CLDF CodeTable](http://cldf.clld.org/v1.0/terms.rdf#CodeTable) +[dc:extent](http://purl.org/dc/terms/extent) | 755 + + +### Columns + +Name/Property | Datatype | Description + --- | --- | --- +[ID](http://cldf.clld.org/v1.0/terms.rdf#id) | `string` | Primary key +[Var_ID](http://cldf.clld.org/v1.0/terms.rdf#parameterReference) | `string` | The parameter or variable the code belongs to.
References [variables.csv::ID](#table-variablescsv) +[Name](http://cldf.clld.org/v1.0/terms.rdf#name) | `string` | +[Description](http://cldf.clld.org/v1.0/terms.rdf#description) | `string` | +`ord` | `integer` | + diff --git a/cldf/StructureDataset-metadata.json b/cldf/StructureDataset-metadata.json new file mode 100644 index 0000000..3c3e32e --- /dev/null +++ b/cldf/StructureDataset-metadata.json @@ -0,0 +1,407 @@ +{ + "@context": [ + "http://www.w3.org/ns/csvw", + { + "@language": "en" + } + ], + "dc:bibliographicCitation": "Murdock, G. P., R. Textor, H. Barry, III, D. R. White, J. P. Gray, and W. T. Divale. 1999. Ethnographic Atlas. World Cultures 10:24-136 (codebook)", + "dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#StructureDataset", + "dc:description": "The Ethnographic Atlas (EA) describes cultural practices for 1291 societies, ranging from societies with complex agricultural economies and political systems to small hunter-gatherer groups. The societies are globally distributed with especially good coverage of Africa and western North America.", + "dc:license": "https://creativecommons.org/licenses/by-nc/4.0/", + "dc:source": "sources.bib", + "dc:title": "D-PLACE dataset derived from Murdock et al. 1999 'Ethnographic Atlas'", + "dcat:accessURL": "https://github.com/D-PLACE/dplace-dataset-ea", + "prov:wasDerivedFrom": [ + { + "rdf:about": "https://github.com/D-PLACE/dplace-dataset-ea", + "rdf:type": "prov:Entity", + "dc:created": "c1eb718", + "dc:title": "Repository" + }, + { + "rdf:about": "https://github.com/glottolog/glottolog", + "rdf:type": "prov:Entity", + "dc:created": "v4.8", + "dc:title": "Glottolog" + } + ], + "prov:wasGeneratedBy": [ + { + "dc:title": "python", + "dc:description": "3.10.12" + }, + { + "dc:title": "python-packages", + "dc:relation": "requirements.txt" + } + ], + "rdf:ID": "dplace-dataset-ea", + "rdf:type": "http://www.w3.org/ns/dcat#Distribution", + "tables": [ + { + "dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#ValueTable", + "dc:description": "Values are coded datapoints, i.e. measurements of a variable for a society.\n\nMissing data is signaled by an empty value column.", + "dc:extent": 121354, + "tableSchema": { + "columns": [ + { + "datatype": { + "base": "string", + "format": "[a-zA-Z0-9_\\-]+" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#id", + "required": true, + "name": "ID" + }, + { + "dc:extent": "singlevalued", + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#languageReference", + "required": true, + "name": "Soc_ID" + }, + { + "dc:extent": "singlevalued", + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#parameterReference", + "required": true, + "name": "Var_ID" + }, + { + "dc:description": "Values for categorical and ordinal variables reference the corresponding code via the Code_ID column. Values for continuous variables have the measured number in the Value column and an empty Code_ID.", + "dc:extent": "singlevalued", + "datatype": "string", + "null": [ + "?", + "" + ], + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#value", + "required": false, + "name": "Value" + }, + { + "dc:extent": "singlevalued", + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#codeReference", + "required": false, + "name": "Code_ID" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#comment", + "required": false, + "name": "Comment" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#source", + "required": false, + "separator": ";", + "name": "Source" + }, + { + "dc:description": "More specific description of the population the data refer to in terms of society or area.", + "name": "sub_case" + }, + { + "dc:description": "Focal year, i.e. the time period to which the data refer.", + "datatype": { + "base": "string", + "format": "-?[0-9]{1,4}(-[0-9]{4})?" + }, + "name": "year" + }, + { + "dc:description": "The source of the coded data, which was aggregated in this dataset.", + "name": "source_coded_data" + }, + { + "name": "admin_comment" + } + ], + "foreignKeys": [ + { + "columnReference": [ + "Soc_ID" + ], + "reference": { + "resource": "societies.csv", + "columnReference": [ + "ID" + ] + } + }, + { + "columnReference": [ + "Var_ID" + ], + "reference": { + "resource": "variables.csv", + "columnReference": [ + "ID" + ] + } + }, + { + "columnReference": [ + "Code_ID" + ], + "reference": { + "resource": "codes.csv", + "columnReference": [ + "ID" + ] + } + } + ], + "primaryKey": [ + "ID" + ] + }, + "url": "data.csv" + }, + { + "dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#LanguageTable", + "dc:description": "We use the term \u201csociety\u201d to refer to cultural groups. In most cases, a society can be understood to represent a group of people at a focal location with a shared language that differs from that of their neighbors. However, in some cases multiple societies share a language.", + "dc:extent": 1291, + "tableSchema": { + "columns": [ + { + "datatype": { + "base": "string", + "format": "[a-zA-Z0-9_\\-]+" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#id", + "required": true, + "name": "ID" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#name", + "required": false, + "name": "Name" + }, + { + "datatype": { + "base": "decimal", + "minimum": "-90", + "maximum": "90" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#latitude", + "required": false, + "name": "Latitude" + }, + { + "datatype": { + "base": "decimal", + "minimum": "-180", + "maximum": "180" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#longitude", + "required": false, + "name": "Longitude" + }, + { + "datatype": { + "base": "string", + "format": "[a-z0-9]{4}[1-9][0-9]{3}" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#glottocode", + "required": false, + "valueUrl": "http://glottolog.org/resource/languoid/id/{Glottocode}", + "name": "Glottocode" + }, + { + "dc:description": "Society names identified as pejorative have been replaced with a preferred, English-language ethnonym. The name (and ID) as given in the source dataset is kept in this field.", + "name": "Name_and_ID_in_source" + }, + { + "dc:description": "\u201ccross-data-set\u201d identifier, used to link societies present in different datasets, if they share a focal location. Note: If this field is empty, other fields such as Name, Glottocode, focal year and location may be used to identify societies across datasets if appropriate.", + "name": "xd_id" + }, + { + "dc:description": "A list of \u2018alternate\u2019 names for the society; includes, where available, one or more autonyms in the society\u2019s own language, as well as other commonly encountered ethnonyms.", + "separator": "; ", + "name": "alt_names_by_society" + }, + { + "dc:description": "Focal year specifying the time period to which the data refer, given as number of years BCE - if negative - or CE.", + "datatype": "integer", + "name": "main_focal_year" + }, + { + "dc:description": "Name(s) and ID(s) of the corresponding society in HRAF (the Human Relations Area Files)", + "name": "HRAF_name_ID" + }, + { + "dc:description": "ID of the corresponding society in HRAF", + "valueUrl": "https://ehrafworldcultures.yale.edu/cultures/{HRAF_ID}/description", + "name": "HRAF_ID" + }, + { + "dc:description": "Uncorrected latitude as given in the source.", + "datatype": { + "base": "decimal", + "minimum": "-90", + "maximum": "90" + }, + "name": "origLat" + }, + { + "dc:description": "Uncorrected longitude as given in the source.", + "datatype": { + "base": "decimal", + "minimum": "-270", + "maximum": "180" + }, + "name": "origLong" + }, + { + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#comment", + "name": "comment" + }, + { + "dc:description": "Comment on the Glottocode assignment.", + "name": "glottocode_comment" + }, + { + "dc:description": "World Geographical Scheme for Recording Plant Distributions level2 region", + "name": "region" + } + ], + "primaryKey": [ + "ID" + ] + }, + "url": "societies.csv" + }, + { + "dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#ParameterTable", + "dc:description": "Variables are cultural features or practices, or environmental descriptors.", + "dc:extent": 94, + "tableSchema": { + "columns": [ + { + "datatype": { + "base": "string", + "format": "[A-Za-z.0-9_]+([0-9]+)?" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#id", + "required": true, + "name": "ID" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#name", + "required": false, + "name": "Name" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#description", + "required": false, + "name": "Description" + }, + { + "datatype": "json", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#columnSpec", + "required": false, + "name": "ColumnSpec" + }, + { + "dc:description": "", + "separator": ", ", + "name": "category" + }, + { + "dc:description": "Variables may be categorical (and then must be accompanied by a list of possible \u2018codes\u2019, i.e. rows in Codetable. Variables can also be continuous (e.g. Population size) or ordinal. Ordinal variables are accompanied by a list of codes (like categorical variables). The order of codes is encoded as `ord` column in CodeTable.", + "datatype": { + "base": "string", + "format": "Continuous|Categorical|Ordinal" + }, + "name": "type" + }, + { + "dc:description": "The unit of measurement", + "name": "unit" + }, + { + "dc:description": "A note about the source of this variable.", + "name": "source_comment" + }, + { + "dc:description": "Notes about how a variable may have been derived from the source.", + "name": "changes" + }, + { + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#comment", + "name": "comment" + } + ], + "primaryKey": [ + "ID" + ] + }, + "url": "variables.csv" + }, + { + "dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#CodeTable", + "dc:extent": 755, + "tableSchema": { + "columns": [ + { + "datatype": { + "base": "string", + "format": "[a-zA-Z0-9_\\-]+" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#id", + "required": true, + "name": "ID" + }, + { + "dc:description": "The parameter or variable the code belongs to.", + "dc:extent": "singlevalued", + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#parameterReference", + "required": true, + "name": "Var_ID" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#name", + "required": false, + "name": "Name" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#description", + "required": false, + "name": "Description" + }, + { + "datatype": "integer", + "name": "ord" + } + ], + "foreignKeys": [ + { + "columnReference": [ + "Var_ID" + ], + "reference": { + "resource": "variables.csv", + "columnReference": [ + "ID" + ] + } + } + ], + "primaryKey": [ + "ID" + ] + }, + "url": "codes.csv" + } + ] +} \ No newline at end of file diff --git a/cldf/codes.csv b/cldf/codes.csv new file mode 100644 index 0000000..265c63e --- /dev/null +++ b/cldf/codes.csv @@ -0,0 +1,756 @@ +ID,Var_ID,Name,Description,ord +EA001-0,EA001,0-5%,Zero to 5 percent dependence,0 +EA001-1,EA001,6-15%,6 to 15 percent dependence,1 +EA001-2,EA001,16-25%,16 to 25 percent dependence,2 +EA001-3,EA001,26-35%,26 to 35 percent dependence,3 +EA001-4,EA001,36-45%,36 to 45 percent dependence,4 +EA001-5,EA001,46-55%,46 to 55 percent dependence,5 +EA001-6,EA001,56-65%,56 to 65 percent dependence,6 +EA001-7,EA001,66-75%,66 to 75 percent dependence,7 +EA001-8,EA001,76-85%,76 to 85 percent dependence,8 +EA001-9,EA001,86-100%,86 to 100 percent dependence,9 +EA001-NA,EA001,Missing data,Missing data,99 +EA002-0,EA002,0-5%,Zero to 5 percent dependence,0 +EA002-1,EA002,6-15%,6 to 15 percent dependence,1 +EA002-2,EA002,16-25%,16 to 25 percent dependence,2 +EA002-3,EA002,26-35%,26 to 35 percent dependence,3 +EA002-4,EA002,36-45%,36 to 45 percent dependence,4 +EA002-5,EA002,46-55%,46 to 55 percent dependence,5 +EA002-6,EA002,56-65%,56 to 65 percent dependence,6 +EA002-7,EA002,66-75%,66 to 75 percent dependence,7 +EA002-8,EA002,76-85%,76 to 85 percent dependence,8 +EA002-9,EA002,86-100%,86 to 100 percent dependence,9 +EA002-NA,EA002,Missing data,Missing data,99 +EA003-0,EA003,0-5%,Zero to 5 percent dependence,0 +EA003-1,EA003,6-15%,6 to 15 percent dependence,1 +EA003-2,EA003,16-25%,16 to 25 percent dependence,2 +EA003-3,EA003,26-35%,26 to 35 percent dependence,3 +EA003-4,EA003,36-45%,36 to 45 percent dependence,4 +EA003-5,EA003,46-55%,46 to 55 percent dependence,5 +EA003-6,EA003,56-65%,56 to 65 percent dependence,6 +EA003-7,EA003,66-75%,66 to 75 percent dependence,7 +EA003-8,EA003,76-85%,76 to 85 percent dependence,8 +EA003-9,EA003,86-100%,86 to 100 percent dependence,9 +EA003-NA,EA003,Missing data,Missing data,99 +EA004-0,EA004,0-5%,Zero to 5 percent dependence,0 +EA004-1,EA004,6-15%,6 to 15 percent dependence,1 +EA004-2,EA004,16-25%,16 to 25 percent dependence,2 +EA004-3,EA004,26-35%,26 to 35 percent dependence,3 +EA004-4,EA004,36-45%,36 to 45 percent dependence,4 +EA004-5,EA004,46-55%,46 to 55 percent dependence,5 +EA004-6,EA004,56-65%,56 to 65 percent dependence,6 +EA004-7,EA004,66-75%,66 to 75 percent dependence,7 +EA004-8,EA004,76-85%,76 to 85 percent dependence,8 +EA004-9,EA004,86-100%,86 to 100 percent dependence,9 +EA004-NA,EA004,Missing data,Missing data,99 +EA005-0,EA005,0-5%,Zero to 5 percent dependence,0 +EA005-1,EA005,6-15%,6 to 15 percent dependence,1 +EA005-2,EA005,16-25%,16 to 25 percent dependence,2 +EA005-3,EA005,26-35%,26 to 35 percent dependence,3 +EA005-4,EA005,36-45%,36 to 45 percent dependence,4 +EA005-5,EA005,46-55%,46 to 55 percent dependence,5 +EA005-6,EA005,56-65%,56 to 65 percent dependence,6 +EA005-7,EA005,66-75%,66 to 75 percent dependence,7 +EA005-8,EA005,76-85%,76 to 85 percent dependence,8 +EA005-9,EA005,86-100%,86 to 100 percent dependence,9 +EA005-NA,EA005,Missing data,Missing data,99 +EA006-NA,EA006,Missing data,Missing data,99 +EA006-1,EA006,Bride-wealth,"Bride-price or bride-wealth, i.e., transfer of a substantial consideration in the form of livestock, goods, or money from the groom or his relatives to the kinsmen of the bride",1 +EA006-2,EA006,Bride-service,"Bride-service, i.e., a substantial material consideration in which the principal element consists of labor or other services rendered by the groom to the bride's kinsmen",2 +EA006-3,EA006,Token bride-wealth,"Token bride-price, i.e., a small or symbolic payment only",3 +EA006-4,EA006,Gift exchange,"Gift exchange, i.e., reciprocal exchange of gifts of substantial value between the relatives of the bride and groom, or a continuing exchange of goods and services in approximately equal amounts between the groom or his kinsmen and the bride's relatives",4 +EA006-5,EA006,Woman exchange,"Exchange, i.e., transfer of a sister or other female relative of the groom in exchange for the bride",5 +EA006-6,EA006,Insignificant,"Absence of any significant consideration, or bridal gifts only",6 +EA006-7,EA006,Dowry,"Dowry, i.e., transfer of a substantial amount of property from the bride's relatives to the bride, the groom, or the kinsmen of the latter",7 +EA007-NA,EA007,Missing data,Missing data,99 +EA007-1,EA007,Bride-wealth,"Bride-price or bride-wealth, i.e., transfer of a substantial consideration in the form of livestock, goods, or money from the groom or his relatives to the kinsmen of the bride",1 +EA007-2,EA007,Bride-service,"Bride-service, i.e., a substantial material consideration in which the principal element consists of labor or other services rendered by the groom to the bride's kinsmen",2 +EA007-3,EA007,Token bride-wealth,"Token bride-price, i.e., a small or symbolic payment only",3 +EA007-4,EA007,Gift exchange,"Gift exchange, i.e., reciprocal exchange of gifts of substantial value between the relatives of the bride and groom, or a continuing exchange of goods and services in approximately equal amounts between the groom or his kinsmen and the bride's relatives",4 +EA007-5,EA007,Woman exchange,"Exchange, i.e., transfer of a sister or other female relative of the groom in exchange for the bride",5 +EA007-6,EA007,Insignificant,"Absence of any significant consideration, or bridal gifts only",6 +EA007-7,EA007,Dowry,"Dowry, i.e., transfer of a substantial amount of property from the bride's relatives to the bride, the groom, or the kinsmen of the latter",7 +EA007-8,EA007,No alternate,"No alternate mode or supplementary practices, see ""Mode of marriage (primary)""",8 +EA008-NA,EA008,Missing data,Missing data,99 +EA008-1,EA008,"Nuclear, monogamous",Independent nuclear families with monogamy,1 +EA008-2,EA008,"Nuclear, limited polygyny",Independent nuclear families with occasional or limited polygyny,2 +EA008-3,EA008,Polyandrous,Independent polyandrous families,3 +EA008-4,EA008,"Polygyny, atypical cowives pattern","Independent polygynous families, unusual co-wives pattern (either polygyny is preferentially sororal, with cowives in separate quarters or it is typically non-sororal, with cowives in same quarters",4 +EA008-5,EA008,"Polygyny, typical cowives pattern","Independent polygynous families, usual co-wives pattern (either polygyny is preferentially sororal, with cowives in same quarters, OR typically non-sororal, with cowives in separate quarters)",5 +EA008-6,EA008,Minimal extended,"Minimal extended or ""stem"" families, i.e., those consisting of only two related families of procreation (disregarding polygamous unions), particularly of adjacent generations",6 +EA008-7,EA008,Small extended,"Small extended families, i.e., those normally embracing the families of procreation of only one individual in the senior generation but of at least two in the next generation. Such families usually dissolve on the death of the head",7 +EA008-8,EA008,Large extended,"Large extended families, i.e., corporate aggregations of smaller family units occupying a single dwelling or a number of adjacent dwellings and normally embracing the families of procreation of at least two siblings or cousins in each of at least two adjacent generations",8 +EA009-NA,EA009,Missing data,Missing data,99 +EA009-1,EA009,Monogamous,Monogamous,1 +EA009-2,EA009,Limited polygyny,"Polygynous, with polygyny occasional or limited",2 +EA009-3,EA009,"Polygyny, sororal cohabit","Polygynous, with polygyny common and preferentially sororal, and co-wives not reported to occupy separate quarters",3 +EA009-4,EA009,"Polygyny, sororal separate quarters","Polygynous, with polygyny common and preferentially sororal, and co-wives typically occupying separate quarters",4 +EA009-5,EA009,"Polygyny, non-sororal separate quarters","Polygynous, with polygyny general and not reported to be preferentially sororal, and co-wives typically occupying separate quarters",5 +EA009-6,EA009,"Polygyny, non-sororal cohabit","Polygynous, with polygyny general and not reported to be preferentially sororal, and co-wives not reported to occupy separate quarters",6 +EA009-7,EA009,Polyandrous,Polyandrous,7 +EA010-NA,EA010,Missing data,Missing data,99 +EA010-1,EA010,Avunculocal,"Avunculocal, i.e., normal residence with or near the maternal uncle or other male matrilineal kinsmen of the husband",1 +EA010-2,EA010,Ambilocal,"Ambilocal, i.e., residence established optionally with or near the parents of either the husband or the wife, depending upon circumstances or personal choice, where neither alternative exceeds the other in actual frequency by a ratio greater than two to one.",2 +EA010-3,EA010,Avuncu-uxorilocal,"Optionally uxorilocal or avunculocal. This may be the case in a uxorilocal society where many men marry a MoBrDa and thus, in fact, live avunculocally",3 +EA010-4,EA010,Avuncu-virilocal,Optionally patrilocal (or virilocal) or avunculocal,4 +EA010-5,EA010,Matrilocal,"Matrilocal, i.e., normal residence with or near the female matrilineal kinsmen of the wife. Cf. U Uxorilocal",5 +EA010-6,EA010,Neolocal,"Neolocal, i.e., normal residence apart from the relatives of both spouses or at a place not determined by the kin ties of either",6 +EA010-7,EA010,Separate,"Nonestablishment of a common household, i.e., where both spouses remain in their natal households, sometimes called ""duolocal"" or ""natolocal"" residence",7 +EA010-8,EA010,Patrilocal,"Patrilocal, i.e., normal residence with or near the male patrilineal kinsmen of the husband. Cf. V Virilocal",8 +EA010-9,EA010,Uxorilocal,"Uxorilocal. Equivalent to ""matrilocal"" but confined to instances where the wife's matrikin are not aggregated in matrilocal and matrilineal kin groups",9 +EA010-10,EA010,Virilocal,"Virilocal. Equivalent to ""patrilocal"" but confined to instances where the husband's patrikin are not aggregated in patrilocal and patrilineal kin groups",10 +EA010-11,EA010,Ambi-uxo,"Ambilocal, with a marked preponderance of uxorilocal practice (i.e., uxorilocal option exceeds virilocal option in actual frequency by a ratio greater than two to one).",11 +EA010-12,EA010,Ambi-viri,"Ambilocal, with a marked preponderance of virilocal practice (i.e., virilocal option exceeds uxorilocal option in actual frequency by a ratio greater than two to one).",12 +EA201-NA,EA201,Missing data,Missing data,99 +EA201-1,EA201,Different,Pattern of marital residence differs in the first years of marriage relative to later years.,1 +EA201-2,EA201,Same,Pattern of marital residence in the first years of marriage not different from later years.,2 +EA011-NA,EA011,Missing data,Missing data,99 +EA011-1,EA011,Wife to husband,"Wife to husband's group (patrilocal, virilocal) or wife to husband's mother's brother's household (avunculocal)",1 +EA011-2,EA011,Ambi/neo-local,Couple to either group or neolocal,2 +EA011-3,EA011,Husband to wife,Husband to wife's group,3 +EA011-9,EA011,Separate,"Nonestablishment of a common household, i.e., where both spouses remain in their natal households, sometimes called ""duolocal"" or ""natolocal"" residence",9 +EA012-NA,EA012,Missing data,Missing data,99 +EA012-1,EA012,Avunculocal,"Avunculocal, i.e., normal residence with or near the maternal uncle or other male matrilineal kinsmen of the husband",1 +EA012-2,EA012,Ambilocal,"Ambilocal, i.e., residence established optionally with or near the parents of either the husband or the wife, depending upon circumstances or personal choice, where neither alternative exceeds the other in actual frequency by a ratio greater than two to one.",2 +EA012-3,EA012,Avuncu-uxorilocal,"Optionally uxorilocal or avunculocal. This may be the case in a uxorilocal society where many men marry a MoBrDa and thus, in fact, live avunculocally",3 +EA012-4,EA012,Avuncu-virilocal,Optionally patrilocal (or virilocal) or avunculocal,4 +EA012-5,EA012,Matrilocal,"Matrilocal, i.e., normal residence with or near the female matrilineal kinsmen of the wife. Cf. U Uxorilocal",5 +EA012-6,EA012,Neolocal,"Neolocal, i.e., normal residence apart from the relatives of both spouses or at a place not determined by the kin ties of either",6 +EA012-7,EA012,Separate,"Nonestablishment of a common household, i.e., where both spouses remain in their natal households, sometimes called ""duolocal"" or ""natolocal"" residence",7 +EA012-8,EA012,Patrilocal,"Patrilocal, i.e., normal residence with or near the male patrilineal kinsmen of the husband. Cf. V Virilocal",8 +EA012-9,EA012,Uxorilocal,"Uxorilocal. Equivalent to ""matrilocal"" but confined to instances where the wife's matrikin are not aggregated in matrilocal and matrilineal kin groups",9 +EA012-10,EA012,Virilocal,"Virilocal. Equivalent to ""patrilocal"" but confined to instances where the husband's patrikin are not aggregated in patrilocal and patrilineal kin groups",10 +EA012-11,EA012,Ambi-uxo,"Ambilocal, with a marked preponderance of uxorilocal practice (i.e., uxorilocal option exceeds virilocal option in actual frequency by a ratio greater than two to one).",11 +EA012-12,EA012,Ambi-viri,"Ambilocal, with a marked preponderance of virilocal practice (i.e., virilocal option exceeds uxorilocal option in actual frequency by a ratio greater than two to one).",12 +EA013-NA,EA013,Missing data,Missing data,99 +EA013-1,EA013,Wife to husband,"Wife to husband's group (patrilocal, virilocal) or wife to husband's mother's brother's household (avunculocal)",1 +EA013-2,EA013,Ambi/neo-local,Couple to either group or neolocal,2 +EA013-3,EA013,Husband to wife,Husband to wife's group,3 +EA013-4,EA013,Separate,No common residence,4 +EA013-9,EA013,No alternate,No alternate form,9 +EA014-NA,EA014,Missing data,Missing data,99 +EA014-1,EA014,Avunculocal,"Avunculocal, i.e., normal residence with or near the maternal uncle or other male matrilineal kinsmen of the husband",1 +EA014-2,EA014,Ambilocal,"Ambilocal, i.e., residence established optionally with or near the parents of either the husband or the wife, depending upon circumstances or personal choice, where neither alternative exceeds the other in actual frequency by a ratio greater than two to one.",2 +EA014-3,EA014,Avuncu-uxorilocal,"Optionally uxorilocal or avunculocal. This may be the case in a uxorilocal society where many men marry a MoBrDa and thus, in fact, live avunculocally",3 +EA014-4,EA014,Avuncu-virilocal,Optionally patrilocal (or virilocal) or avunculocal,4 +EA014-5,EA014,Matrilocal,"Matrilocal, i.e., normal residence with or near the female matrilineal kinsmen of the wife. Cf. U Uxorilocal",5 +EA014-6,EA014,Neolocal,"Neolocal, i.e., normal residence apart from the relatives of both spouses or at a place not determined by the kin ties of either",6 +EA014-7,EA014,Separate,"Nonestablishment of a common household, i.e., where both spouses remain in their natal households, sometimes called ""duolocal"" or ""natolocal"" residence",7 +EA014-8,EA014,Patrilocal,"Patrilocal, i.e., normal residence with or near the male patrilineal kinsmen of the husband. Cf. V Virilocal",8 +EA014-9,EA014,Uxorilocal,"Uxorilocal. Equivalent to ""matrilocal"" but confined to instances where the wife's matrikin are not aggregated in matrilocal and matrilineal kin groups",9 +EA014-10,EA014,Virilocal,"Virilocal. Equivalent to ""patrilocal"" but confined to instances where the husband's patrikin are not aggregated in patrilocal and patrilineal kin groups",10 +EA014-11,EA014,No alternate,No alternate form,11 +EA015-NA,EA015,Missing data,Missing data,99 +EA015-1,EA015,Demes,"Demes, i.e., communities revealing a marked tendency toward local endogamy but not segmented into clan-barrios",1 +EA015-2,EA015,"Segmented, no exogamy","Segmented communities, i.e., those divided into barrios, wards, or hamlets, each of which is essentially a localized kin group, a clan or ramage, in the absence of any indication of local exogamy. Large extended families (see ""Domestic organization""), are treated as clan-barrios if they are integrated by a rule of ambilineal, matrilineal, or patrilineal descent.",2 +EA015-3,EA015,Agamous,Agamous communities without localized clans or any marked tendency toward either local exogamy or local endogamy,3 +EA015-4,EA015,Exogamous,"Exogamous communities, i.e., those revealing a marked tendency toward local exogamy without having the specific structure of clans",4 +EA015-5,EA015,"Segmented, exogamy",Segmented communities where a marked tendency toward local exogamy is also specifically reported,5 +EA015-6,EA015,Clans,"Clan-communities, each consisting essentially of a single localized exogamous kin group or clan (see ""Organization of clan communities"" for more detail)",6 +EA016-NA,EA016,Missing data,Missing data,99 +EA016-1,EA016,Clans,Clan communities not segmented into clan barrios,1 +EA016-2,EA016,Clans with barrios,Clan communities segmented into clan barrios,2 +EA016-9,EA016,No exogamous clans,Communities not organized as exogamous clan communities,9 +EA017-NA,EA017,Missing data,Missing data,99 +EA017-1,EA017,None,None,1 +EA017-2,EA017,Exogamy only,"Absence of true patrilineal kin groups, but presence of patrilineal exogamy",2 +EA017-3,EA017,Lineages,"Lineages of modest size, i.e., patrilineal kin groups whose core membership is normally confined to a single community or a part thereof",3 +EA017-4,EA017,Sibs,"Sibs (""clans"" in British usage), i.e., lineages whose core membership normally comprises residents of more than one community",4 +EA017-5,EA017,Phratries,"Phratries, i.e., maximal lineages when there are more than two in the society and when sibs are also present. Segmentary lineage systems in which segments of a lower order of magnitude are equivalent to sibs are also included in this category.",5 +EA017-6,EA017,Moieties,"Moieties, i.e., maximal lineages when there are only two such in the society",6 +EA018-NA,EA018,Missing data,Missing data,99 +EA018-1,EA018,No exogamy,No patrilineal exogamy,1 +EA018-2,EA018,Extended taboo,"Extension of incest taboos to known patrilineal kinsmen, provided such extension does not apply generally to bilateral kinsmen of equal remoteness",2 +EA018-3,EA018,Lineages,"Lineages of modest size, i.e., patrilineal kin groups whose core membership is normally confined to a single community or a part thereof",3 +EA018-4,EA018,Sibs,"Sibs (""clans"" in British usage), i.e., lineages whose core membership normally comprises residents of more than one community",4 +EA018-5,EA018,Phratries,"Phratries, i.e., maximal lineages when there are more than two in the society and when sibs are also present. Segmentary lineage systems in which segments of a lower order of magnitude are equivalent to sibs are also included in this category.",5 +EA018-6,EA018,Moieties,"Moieties, i.e., maximal lineages when there are only two such in the society",6 +EA019-NA,EA019,Missing data,Missing data,99 +EA019-1,EA019,None,None,1 +EA019-2,EA019,Exogamy only,"Absence of true matrilineal kin groups, but presence of matrilineal exogamy",2 +EA019-3,EA019,Lineages,"Lineages of modest size, i.e., matrilineal kin groups whose core membership is normally confined to a single community or a part thereof",3 +EA019-4,EA019,Sibs,"Sibs (""clans"" in British usage), i.e., lineages whose core membership normally comprises residents of more than one community",4 +EA019-5,EA019,Phratries,"Phratries, i.e., maximal lineages when there are more than two in the society and when sibs are also present. Segmentary lineage systems in which segments of a lower order of magnitude are equivalent to sibs are also included in this category.",5 +EA019-6,EA019,Moieties,"Moieties, i.e., maximal lineages when there are only two such in the society",6 +EA020-NA,EA020,Missing data,Missing data,99 +EA020-1,EA020,No exogamy,No matrilineal exogamy,1 +EA020-2,EA020,Extended taboo,"Extension of incest taboos to known matrilineal kinsmen, provided extension does not apply generally to bilateral kinsmen of equal remoteness.",2 +EA020-3,EA020,Lineages,"Lineages of modest size, i.e., matrilineal kin groups whose core membership is normally confined to a single community or a part thereof",3 +EA020-4,EA020,Sibs,"Sibs (""clans"" in British usage), i.e., lineages whose core membership normally comprises residents of more than one community",4 +EA020-5,EA020,Phratries,"Phratries, i.e., maximal lineages when there are more than two in the society and when sibs are also present. Segmentary lineage systems in which segments of a lower order of magnitude are equivalent to sibs are also included in this category.",5 +EA020-6,EA020,Moieties,"Moieties, i.e., maximal lineages when there are only two such in the society",6 +EA021-NA,EA021,Missing data,Missing data,99 +EA021-1,EA021,Bilateral inferred,"Bilateral descent as inferred from the absence of reported ambilineal, matrilineal, or patrilineal kin groups, kindreds being absent or unreported",1 +EA021-2,EA021,Bilateral kindreds,"Kindreds: bilateral descent with specifically reported kindreds, i.e., Ego-oriented bilateral kin groups or categories",2 +EA021-3,EA021,Ambilineal,"Ambilineal descent inferred from the presence of ambilocal extended families, true ramages being absent or unreported",3 +EA021-4,EA021,Ramages,"Ramages, i.e., ancestor-oriented ambilineal kin groups, if they are agamous, endogamous, or not specifically stated to be exogamous",4 +EA021-5,EA021,Exogamous ramages,Exogamous ramages specifically reported,5 +EA021-6,EA021,Quasi-lineages,"Bilateral descent with reported or probable quasi-lineages, i.e., cognatic groups approximating the structure of lineages but based on filiation rather than on unilineal or ambilineal descent",6 +EA021-9,EA021,No cognatic kin,Absence of cognatic kin groups as inferred from the presence of unilineal descent,9 +EA022-NA,EA022,Missing data,Missing data,99 +EA022-2,EA022,Kindreds,"Kindreds: bilateral descent with specifically reported kindreds, i.e., Ego-oriented bilateral kin groups or categories",2 +EA022-4,EA022,Ramages,"Ramages, i.e., ancestor-oriented ambilineal kin groups, if they are agamous, endogamous, or not specifically stated to be exogamous",4 +EA022-9,EA022,No secondary groups,No secondary cognatic groups,9 +EA023-NA,EA023,Missing data,Missing data,99 +EA023-1,EA023,Cross-cousin,"Duolateral cross-cousin marriage permitted, i.e., marriage allowed with either MoBrDa or FaSiDa but forbidden with a parallel cousin",1 +EA023-2,EA023,Paternal only,Duolateral marriage permitted with paternal cousins only (FaBrDa or FaSiDa),2 +EA023-3,EA023,Maternal only,Duolateral marriage permitted with maternal cousins only (MoBrDa or MoSiDa),3 +EA023-4,EA023,FaBrDa/MoBrDa only,Duolateral marriage permitted with an uncle's daughter only (FaBrDa or MoBrDa),4 +EA023-5,EA023,FaSiDa/MoSiDa only,Duolateral marriage permitted with an aunt's daughter only (FaSiDa or MoSiDa),5 +EA023-6,EA023,Matrilateral cross only,"Unilateral: only matrilateral cross-cousin marriage permitted, i.e., with a MoBrDa",6 +EA023-7,EA023,No first/second cousins,"Nonlateral marriage, i.e., unions forbidden with any first or second cousin",7 +EA023-8,EA023,No first cousins,"Nonlateral marriage, evidence available only for first cousins",8 +EA023-9,EA023,Patrilateral cross only,"Unilateral: only patrilateral cross-cousin marriage permitted i.e., with a FaSiDa",9 +EA023-10,EA023,Any first cousins,"Quadrilateral marriage, i.e., marriage allowed with any first cousin",10 +EA023-11,EA023,Some second only,Nonlateral marriage in which all first cousins and some but not all second cousins are forbidden as spouses,11 +EA023-12,EA023,Only second cousins,Nonlateral marriage in which unions are forbidden with any first cousin but are permitted with any second cousin (or at least any who is not a lineage mate),12 +EA023-13,EA023,Trilateral,"Trilateral marriage, i.e., marriage allowed with any first cousin except an orthocousin or lineage mate",13 +EA024-NA,EA024,Missing data,Missing data,99 +EA024-1,EA024,Quadrilateral,"Quadrilateral marriage, i.e., marriage allowed with any first cousin",1 +EA024-2,EA024,Trilateral,"Trilateral marriage, i.e., marriage allowed with any first cousin except an orthocousin or lineage mate",2 +EA024-3,EA024,Duolateral,Two of four first cousins marriageable,3 +EA024-4,EA024,Unilateral,One of four first cousins marriageable,4 +EA024-5,EA024,Only second cousins,Nonlateral marriage in which unions are forbidden with any first cousin but are permitted with any second cousin (or at least any who is not a lineage mate),5 +EA024-6,EA024,Some second only,Nonlateral marriage in which all first cousins and some but not all second cousins are forbidden as spouses,6 +EA024-7,EA024,No first cousins,Nonlateral marriage when evidence is available only for first cousins,7 +EA024-8,EA024,No first/second cousins,"Nonlateral marriage, i.e., unions forbidden with any first or second cousin",8 +EA025-NA,EA025,Missing data,Missing data,99 +EA025-1,EA025,Cross-cousin: either,"Duolateral, symmetrical preference for MoBrDa or FaSiDa",1 +EA025-2,EA025,Cross-cousin: matri,"Duolateral, matrilateral preference (MoBrDa)",2 +EA025-3,EA025,Cross-cousin: patri,"Duolateral, patrilateral preference (FaSiDa)",3 +EA025-4,EA025,Maternal: MoBrDa,"Duolateral, with maternal cousins only and MoBrDa preferred",4 +EA025-5,EA025,Uni: MoBrDa,Unilateral: matrilateral cross-cousin marriage to MoBrDa preferred rather than merely permitted,5 +EA025-6,EA025,Uni: FaSiDa,Unilateral: patrilateral cross-cousin marriage to FaSiDa preferred rather than merely permitted,6 +EA025-7,EA025,All: FaBrDa,"Quadrilateral, where FaBrDa is the preferred mate",7 +EA025-8,EA025,All: cross,"Quadrilateral, symmetrical preference (FaSiDa or MoBrDa)",8 +EA025-9,EA025,All: matri,"Quadrilateral, matrilateral preference (MoSi__ or MoBr__)",9 +EA025-10,EA025,Some second only,"Nonlateral, with preference for particular second cross-cousins only, notably MoMoBrDaDa or FaMoBrSoDa, often reported of societies with subsection systems",10 +EA025-11,EA025,Second cousins preferred,"Nonlateral, with second-cousin marriage preferred rather than merely permitted",11 +EA025-12,EA025,Tri: bilateral,"Trilateral marriage, with preference for a bilateral cross-cousin (MoBrDa = FaSiDa).",12 +EA025-13,EA025,Tri: matrilateral,"Trilateral marriage, with preference for a matrilateral cross-cousin (MoBrDa)",13 +EA025-14,EA025,Tri: patrilateral,"Trilateral marriage, with preference for a patrilateral cross-cousin (FaSiDa)",14 +EA025-15,EA025,None preferred,No preferred cousin marriages,15 +EA026-NA,EA026,Missing data,Missing data,99 +EA026-1,EA026,Cross-cousin,A symmetrical cross-cousin is preferred spouse,1 +EA026-2,EA026,MoBrDa,MoBrDa is preferred spouse,2 +EA026-3,EA026,FaSiDa,FaSiDa is preferred spouse,3 +EA026-4,EA026,FaBrDa,FaBrDa is preferred spouse,4 +EA026-5,EA026,Second cousin,A second-cousin is preferred spouse,5 +EA026-9,EA026,None preferred,No preferred cousin marriage,9 +EA027-NA,EA027,Missing data,Missing data,99 +EA027-1,EA027,Crow,"Crow, i.e., FaSiCh equated with Fa or FaSi and/or MoBrCh with Ch or BrCh(ws)",1 +EA027-2,EA027,Descriptive,"Descriptive or derivative, rather than elementary, terms employed for all cousins",2 +EA027-3,EA027,Eskimo,"Eskimo, i.e., FaBrCh, FaSiCh, MoBrCh, and MoSiCh equated with each other but differentiated from siblings",3 +EA027-4,EA027,Hawaiian,"Hawaiian, i.e., all cousins equated with siblings or called by terms clearly derivative from those for siblings",4 +EA027-5,EA027,Iroquois,"Iroquois, i.e., FaSiCh equated with MoBrCh but differentiated from both siblings and parallel cousins",5 +EA027-6,EA027,Omaha,"Omaha, i.e., MoBrCh equated with MoBr or Mo and/or FaSiCh with SiCh(ms) or Ch",6 +EA027-7,EA027,Sudanese,"Sudanese, i.e., FaSiCh and MoBrCh distinguished alike from siblings, parallel cousins, and each other but without conforming to either the Crow, the descriptive, or the Omaha patterns",7 +EA027-8,EA027,Mixed,"Mixed or variant patterns not adequately represented by any of the foregoing symbols. The details are given under ""Classification by Clusters.""",8 +EA028-NA,EA028,Missing data,Missing data,99 +EA028-1,EA028,No agriculture,Complete absence of agriculture,1 +EA028-2,EA028,Casual,"Casual agriculture, i.e., the slight or sporadic cultivation of food or other plants incidental to a primary dependence upon other subsistence practices",2 +EA028-3,EA028,Extensive/shifting,"Extensive or shifting cultivation, as where new fields are cleared annually, cultivated for a year or two, and then allowed to revert to forest or brush for a long fallow period",3 +EA028-4,EA028,Horticulture,"Horticulture, i.e., semi-intensive agriculture limited mainly to vegetable gardens or groves of fruit trees rather than the cultivation of field crops",4 +EA028-5,EA028,Intensive,"Intensive agriculture on permanent fields, utilizing fertilization by compost or animal manure, crop rotation, or other techniques so that fallowing is either unnecessary or is confined to relatively short periods",5 +EA028-6,EA028,Intensive irrigated,Intensive cultivation where it is largely dependent upon irrigation,6 +EA029-NA,EA029,Missing data,Missing data,99 +EA029-1,EA029,No agriculture,No agriculture,1 +EA029-2,EA029,Non-food,"Non-food crops only, e.g., cotton or tobacco",2 +EA029-3,EA029,Vegetables,"Vegetables, e.g., cucurbits, greens, or legumes, when more important than other crops",3 +EA029-4,EA029,Tree-fruits,"Tree fruits, e.g., bananas, breadfruit, coconuts, or dates, when more important than cereal grains and root crops. Sago, unless specifically reported to be cultivated, is treated as a gathered product rather than a cultivated one",4 +EA029-5,EA029,Roots/tubers,"Roots or tubers, e.g., manioc, potatoes, taro, or yams, when more important than cereal grains and at least as important as tree crops or vegetables",5 +EA029-6,EA029,Cereals,"Cereal grains, e.g., maize, millet, rice, or wheat, when at least as important as any other type of crop",6 +EA030-NA,EA030,Missing data,Missing data,99 +EA030-1,EA030,Nomadic,Fully migratory or nomadic bands,1 +EA030-2,EA030,Seminomadic,"Seminomadic communities whose members wander in bands for at least half of the year but occupy a fixed settlement at some season or seasons, e.g., recurrently occupied winter quarters",2 +EA030-3,EA030,Semisedentary,"Semisedentary communities whose members shift from one to another fixed settlement at different seasons or who occupy more or less permanently a single settlement from which a substantial proportion of the population departs seasonally to occupy shifting camps, e.g., during transhumance",3 +EA030-4,EA030,Impermanent,"Compact but impermanent settlements, i.e., villages whose location is shifted every few years",4 +EA030-5,EA030,Dispersed homesteads,Neighborhoods of dispersed family homesteads,5 +EA030-6,EA030,Hamlets,Separated hamlets where several such form a more or less permanent single community,6 +EA030-7,EA030,Villages/towns,"Compact and relatively permanent settlements, i.e., nucleated villages or towns",7 +EA030-8,EA030,Complex permanent,Complex settlements consisting of a nucleated village or town with outlying homesteads or satellite hamlets. Urban aggregations of population are not separately indicated since EA031 deals with community size,8 +EA031-NA,EA031,Missing data,Missing data,99 +EA031-1,EA031,<50,Fewer than 50 persons,1 +EA031-2,EA031,50-99,From 50 to 99 persons,2 +EA031-3,EA031,100-199,From 100 to 199 persons,3 +EA031-4,EA031,200-399,From 200 to 399 persons,4 +EA031-5,EA031,400-1000,"From 400 to 1,000 persons",5 +EA031-6,EA031,1000-5000,"More than 1,000 persons in the absence of indigenous urban aggregations of more than 5,000",6 +EA031-7,EA031,5000-50000,"One or more indigenous towns of more than 5,000 inhabitants but none of more than 50,000",7 +EA031-8,EA031,50000+,"One or more indigenous cities with more than 50,000 inhabitants",8 +EA032-NA,EA032,Missing data,Missing data,99 +EA032-2,EA032,Independent families,Independent families (may be nuclear or polygynous),2 +EA032-3,EA032,Extended families,Extended families,3 +EA032-4,EA032,Clan-barrios,Clan-barrios,4 +EA033-NA,EA033,Missing data,Missing data,99 +EA033-1,EA033,Acephalous,"No political authority beyond community (e.g., autonomous bands and villages)",1 +EA033-2,EA033,One level,"One level (e.g., petty chiefdoms)",2 +EA033-3,EA033,Two levels,"Two levels (e.g., larger chiefdoms)",3 +EA033-4,EA033,Three levels,"Three levels (e.g., states)",4 +EA033-5,EA033,Four levels,"Four levels (e.g., large states)",5 +EA034-NA,EA034,Missing data,Missing data,99 +EA034-1,EA034,Absent,A high god absent or not reported in substantial descriptions of religious beliefs,1 +EA034-2,EA034,Otiose,A high god present but otiose or not concerned with human affairs,2 +EA034-3,EA034,"Active, but not supporting morality",A high god present and active in human affairs but not offering positive support to human morality,3 +EA034-4,EA034,"Active, supporting morality","A high god present, active, and specifically supportive of human morality",4 +EA035-NA,EA035,Missing data,Missing data,99 +EA035-1,EA035,No games,No games of any of the three types,1 +EA035-2,EA035,Physical skill only,"Games of physical skill only, whether or not they may also involve incidental elements of chance or strategy, e.g., foot racing, wrestling, the hoop-and-pole game",2 +EA035-3,EA035,Chance only,"Games of chance only, with no significant element of either physical skill or strategy involved, e.g., dice games",3 +EA035-4,EA035,Physical skill and chance,Games of physical skill and of chance both present,4 +EA035-5,EA035,Strategy only,"Games of strategy only, involving no significant element of physical skill, e.g., chess, go, poker. Whether or not an element of chance is also involved is considered irrelevant",5 +EA035-6,EA035,Strategy and physical skill,"Games of physical skill and of strategy present, but not games of chance",6 +EA035-7,EA035,Strategy and chance,"Games of chance and of strategy present, but not games of physical skill",7 +EA035-8,EA035,All types,Games of all three types present,8 +EA036-NA,EA036,Missing data,Missing data,99 +EA036-1,EA036,No taboo,"No taboo, especially where the husband is expected to have intercourse with his wife as soon as possible after childbirth for the alleged benefit of the child",1 +EA036-2,EA036,Up to one month,"Short post-partum taboo, lasting not more than one month",2 +EA036-3,EA036,One to six months,Duration of from more than a month to six months,3 +EA036-4,EA036,Six months to a year,Duration of from more than six months to one year,4 +EA036-5,EA036,A year to two years,Duration of from more than one year to two years,5 +EA036-6,EA036,More than two years,Duration of more than two years,6 +EA037-NA,EA037,Missing data,Missing data,99 +EA037-1,EA037,Absent,Absent or not generally practiced,1 +EA037-2,EA037,Shortly after birth,"Performed shortly after birth, i.e., within the first two months",2 +EA037-3,EA037,Infancy ,"Performed during infancy, i.e., from two months to two years of age",3 +EA037-4,EA037,Early childhood,"Performed during early childhood, i.e., from two to five years of age",4 +EA037-5,EA037,Late childhood,"Performed during late childhood, i.e., from six to ten years of age",5 +EA037-6,EA037,Adolescence,"Performed during adolescence, i.e., from eleven to fifteen years of age",6 +EA037-7,EA037,Early adulthood,"Performed during early adulthood, i.e., from sixteen to 25 years of age",7 +EA037-8,EA037,Maturity,"Performed during maturity, i.e., from 25 to 50 years of age",8 +EA037-9,EA037,Old age,"Performed in old age, i.e., after 50 years of age",9 +EA037-10,EA037,"Customary, age unclear","Circumcision customary, but the normal age is unspecified or unclear",10 +EA038-NA,EA038,Missing data,Missing data,99 +EA038-1,EA038,No segregation,"Absence of segregation, adolescent boys residing and sleeping in the same dwelling as their mothers and sisters",1 +EA038-2,EA038,Partial,"Partial segregation, adolescent boys residing or eating with their natal families but sleeping apart from them, e.g., in a special hut or in a cattle shed",2 +EA038-3,EA038,Complete: outside nuclear family,"Complete segregation, in which adolescent boys go to live as individuals with relatives outside the nuclear family, e.g., with grandparents or with a maternal or paternal uncle",3 +EA038-4,EA038,Complete: outside kin,"Complete segregation, in which adolescent boys go to live as individuals with non-relatives, e.g., as retainers to a chief or as apprentices to specialists",4 +EA038-5,EA038,Complete: own peers,"Complete segregation, in which boys reside with a group of their own peers, e.g., in bachelor dormitories, military regiments, or age-villages",5 +EA039-NA,EA039,Missing data,Missing data,99 +EA039-1,EA039,Absent,Absent (no plow animals),1 +EA039-2,EA039,Not aboriginal but present,Plow cultivation not aboriginal but well established at the period of observation,2 +EA039-3,EA039,Present,Animals employed in plow cultivation prior to the contact period,3 +EA040-NA,EA040,Missing data,Missing data,99 +EA040-1,EA040,Absence or near absence,"Absence or near absence of domestic animals other than bees, eats, dogs, fowl, guinea pigs, or the like",1 +EA040-2,EA040,Pigs,Pigs the only domestic animals of consequence,2 +EA040-3,EA040,Sheep/goats,Sheep and/or goats when larger domestic animals are absent or much less important,3 +EA040-4,EA040,Equine,"Equine animals, e.g., horses, donkeys",4 +EA040-5,EA040,Deer,"Deer, e.g., reindeer",5 +EA040-6,EA040,Camelids,"Camels or other animals of related genera, e.g., alpacas, llamas",6 +EA040-7,EA040,Bovine,"Bovine animals, e.g., cattle, mithun, water buffaloes, yaks",7 +EA041-NA,EA041,Missing data,Missing data,99 +EA041-1,EA041,Absence or near absence,Absence or near absence of milking,1 +EA041-2,EA041,More than sporadically,Domestic animals milked more often than sporadically,2 +EA042-NA,EA042,Missing for at least 1 activity,Missing data for at least one subsistence activity,99 +EA042-1,EA042,Gathering,Gathering contributes most,1 +EA042-2,EA042,Fishing,Fishing contributes most,2 +EA042-3,EA042,Hunting,Hunting contributes most,3 +EA042-4,EA042,Pastoralism,Pastoralism contributes most,4 +EA042-5,EA042,Casual agriculture,Casual agriculture contributes most,5 +EA042-6,EA042,Extensive agriculture,Extensive agriculture contributes most,6 +EA042-7,EA042,Intensive agriculture,Intensive agriculture contributes most,7 +EA042-8,EA042,Two or more sources,Two or more sources contribute equally,8 +EA042-9,EA042,"Agriculture, type unknown","Agriculture contributes most, type unknown",9 +EA043-NA,EA043,Missing data,Missing data,99 +EA043-1,EA043,Patrilineal,"Patrilineal (EA017 > 1, EA019 = 1, EA021 = 9)",1 +EA043-2,EA043,Duolateral,"Duolateral (EA017 > 1, EA019 > 1, EA021 = 9 or EA021 = 0)",2 +EA043-3,EA043,Matrilineal,"Matrilineal (EA017 = 1, EA019 > 1, EA021 = 9)",3 +EA043-4,EA043,Quasi-lineages,"Quasi-lineages (EA017 = 1, EA019 = 1, EA021 = 6)",4 +EA043-5,EA043,Ambilineal,"Ambilineal (EA017 = 1, EA019 = 1, EA021 = 3 or EA021 = 4 or EA021 = 5)",5 +EA043-6,EA043,Bilateral,"Bilateral (EA017 = 1, EA019 = 1, EA021 = 1 or EA021 = 2)",6 +EA043-7,EA043,Mixed,"Mixed (EA017 and/or EA019 > 1,and EA021 not equal to 9)",7 +EA044-NA,EA044,Missing data,Missing data,99 +EA044-1,EA044,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA044-2,EA044,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA044-3,EA044,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA044-4,EA044,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA044-5,EA044,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA044-6,EA044,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA044-7,EA044,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA044-8,EA044,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA044-9,EA044,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA045-NA,EA045,Missing data,Missing data,99 +EA045-1,EA045,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA045-2,EA045,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA045-3,EA045,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA045-4,EA045,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA045-5,EA045,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA045-6,EA045,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA045-7,EA045,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA045-8,EA045,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA045-9,EA045,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA046-NA,EA046,Missing data,Missing data,99 +EA046-1,EA046,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA046-2,EA046,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA046-3,EA046,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA046-4,EA046,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA046-5,EA046,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA046-6,EA046,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA046-7,EA046,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA046-8,EA046,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA046-9,EA046,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA047-NA,EA047,Missing data,Missing data,99 +EA047-1,EA047,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA047-2,EA047,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA047-3,EA047,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA047-4,EA047,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA047-5,EA047,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA047-6,EA047,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA047-7,EA047,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA047-8,EA047,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA047-9,EA047,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA048-NA,EA048,Missing data,Missing data,99 +EA048-1,EA048,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA048-2,EA048,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA048-3,EA048,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA048-4,EA048,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA048-5,EA048,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA048-6,EA048,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA048-7,EA048,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA048-8,EA048,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA048-9,EA048,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA049-NA,EA049,Missing data,Missing data,99 +EA049-1,EA049,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA049-2,EA049,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA049-3,EA049,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA049-4,EA049,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA049-5,EA049,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA049-6,EA049,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA049-7,EA049,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA049-8,EA049,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA049-9,EA049,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA050-NA,EA050,Missing data,Missing data,99 +EA050-1,EA050,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA050-2,EA050,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA050-3,EA050,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA050-4,EA050,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA050-5,EA050,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA050-6,EA050,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA050-7,EA050,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA050-8,EA050,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA050-9,EA050,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA051-NA,EA051,Missing data,Missing data,99 +EA051-1,EA051,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA051-2,EA051,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA051-3,EA051,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA051-4,EA051,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA051-5,EA051,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA051-6,EA051,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA051-7,EA051,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA051-8,EA051,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA051-9,EA051,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA052-NA,EA052,Missing data,Missing data,99 +EA052-1,EA052,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA052-2,EA052,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA052-3,EA052,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA052-4,EA052,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA052-5,EA052,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA052-6,EA052,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA052-7,EA052,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA052-8,EA052,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA052-9,EA052,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA053-NA,EA053,Missing data,Missing data,99 +EA053-1,EA053,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA053-2,EA053,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA053-3,EA053,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA053-4,EA053,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA053-5,EA053,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA053-6,EA053,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA053-7,EA053,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA053-8,EA053,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA053-9,EA053,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA054-NA,EA054,Missing data,Missing data,99 +EA054-1,EA054,Males alone,"Males alone perform the activity, female participation being negligible",1 +EA054-2,EA054,"Both, males more","Both sexes participate, but males do appreciably more than females",2 +EA054-3,EA054,Differentiated but equal,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,3 +EA054-4,EA054,Equal participation,Equal participation by both sexes without marked or reported differentiation in specific tasks,4 +EA054-5,EA054,"Both, females more","Both sexes participate, but females do appreciably more than males",5 +EA054-6,EA054,Females alone,"Females alone perform the activity, male participation being negligible",6 +EA054-7,EA054,Sex irrelevant,"Sex participation irrelevant, especially where production is industrialized",7 +EA054-8,EA054,"Activity present, sex diff. unspecified","The activity is present, but sex participation is unspecified in the sources consulted",8 +EA054-9,EA054,Activity is absent,The activity is absent or unimportant in the particular society,9 +EA055-NA,EA055,Missing data,Missing data,99 +EA055-1,EA055,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA055-2,EA055,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA055-3,EA055,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA055-4,EA055,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA055-9,EA055,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA055-10,EA055,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA056-NA,EA056,Missing data,Missing data,99 +EA056-1,EA056,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA056-2,EA056,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA056-3,EA056,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA056-4,EA056,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA056-9,EA056,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA056-10,EA056,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA057-NA,EA057,Missing data,Missing data,99 +EA057-1,EA057,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA057-2,EA057,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA057-3,EA057,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA057-4,EA057,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA057-9,EA057,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA057-10,EA057,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA058-NA,EA058,Missing data,Missing data,99 +EA058-1,EA058,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA058-2,EA058,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA058-3,EA058,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA058-4,EA058,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA058-9,EA058,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA058-10,EA058,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA059-NA,EA059,Missing data,Missing data,99 +EA059-1,EA059,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA059-2,EA059,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA059-3,EA059,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA059-4,EA059,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA059-9,EA059,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA059-10,EA059,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA060-NA,EA060,Missing data,Missing data,99 +EA060-1,EA060,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA060-2,EA060,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA060-3,EA060,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA060-4,EA060,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA060-9,EA060,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA060-10,EA060,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA061-NA,EA061,Missing data,Missing data,99 +EA061-1,EA061,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA061-2,EA061,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA061-3,EA061,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA061-4,EA061,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA061-9,EA061,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA061-10,EA061,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA062-NA,EA062,Missing data,Missing data,99 +EA062-1,EA062,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA062-2,EA062,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA062-3,EA062,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA062-4,EA062,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA062-9,EA062,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA062-10,EA062,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA063-NA,EA063,Missing data,Missing data,99 +EA063-1,EA063,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA063-2,EA063,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA063-3,EA063,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA063-4,EA063,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA063-9,EA063,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA063-10,EA063,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA064-NA,EA064,Missing data,Missing data,99 +EA064-1,EA064,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA064-2,EA064,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA064-3,EA064,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA064-4,EA064,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA064-9,EA064,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA064-10,EA064,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA065-NA,EA065,Missing data,Missing data,99 +EA065-1,EA065,Junior age,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",1 +EA065-2,EA065,Senior age,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",2 +EA065-3,EA065,Craft,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",3 +EA065-4,EA065,Industrial,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",4 +EA065-9,EA065,Most adults,"Normally performed by many or most adult men, women, or both",9 +EA065-10,EA065,Activity is absent,The activity is absent or unimportant in the particular society,10 +EA066-NA,EA066,Missing data,Missing data,99 +EA066-1,EA066,Absence of distinctions,"Absence of significant class distinctions among freemen (slavery is treated in EA070), ignoring variations in individual repute achieved through skill, valor, piety, or wisdom",1 +EA066-2,EA066,Wealth distinctions,"Wealth distinctions, based on the possession or distribution of property, present and socially important but not crystallized into distinct and hereditary social classes",2 +EA066-3,EA066,Elite stratification,"Elite stratification, in which an elite class derives its superior status from, and perpetuates it through, control over scarce resources, particularly land, and is thereby differentiated from a property-less proletariat or serf class",3 +EA066-4,EA066,Dual stratification,"Dual stratification into a hereditary aristocracy and a lower class of ordinary commoners or freemen, where traditionally ascribed noble status is at least as decisive as control over scarce resources",4 +EA066-5,EA066,Complex stratification,Complex stratification into social classes correlated in large measure with extensive differentiation of occupational statuses,5 +EA067-NA,EA067,Missing data,Missing data,99 +EA067-1,EA067,Absence of distinctions,"Absence of significant class distinctions among freemen (slavery is treated in EA070), ignoring variations in individual repute achieved through skill, valor, piety, or wisdom",1 +EA067-2,EA067,Wealth distinctions,"Wealth distinctions, based on the possession or distribution of property, present and socially important but not crystallized into distinct and hereditary social classes",2 +EA067-3,EA067,Elite stratification,"Elite stratification, in which an elite class derives its superior status from, and perpetuates it through, control over scarce resources, particularly land, and is thereby differentiated from a property-less proletariat or serf class",3 +EA067-4,EA067,Dual stratification,"Dual stratification into a hereditary aristocracy and a lower class of ordinary commoners or freemen, where traditionally ascribed noble status is at least as decisive as control over scarce resources",4 +EA067-5,EA067,Complex stratification,Complex stratification into social classes correlated in large measure with extensive differentiation of occupational statuses,5 +EA067-9,EA067,No secondary type,No secondary type,9 +EA068-NA,EA068,Missing data,Missing data,99 +EA068-1,EA068,Absence of distinctions,Caste distinctions absent or insignificant,1 +EA068-2,EA068,Despised occupation groups,"One or more despised occupational groups, e.g., smiths or leather workers, distinguished from the general population, regarded as outcastes by the latter, and characterized by strict endogamy",2 +EA068-3,EA068,Ethnic stratification,"Ethnic stratification, in which a superordinate caste withholds privileges from and refuses to intermarry with a subordinate caste (or castes) which it stigmatizes as ethnically alien, e.g., as descended from a conquered and culturally inferior indigenous population, from former slaves, or from foreign immigrants of different race and/or culture",3 +EA068-4,EA068,Complex caste stratification,Complex caste stratification in which occupational differentiation emphasizes hereditary ascription and endogamy to the near exclusion of achievable class statuses,4 +EA069-NA,EA069,Missing data,Missing data,99 +EA069-1,EA069,Absence of distinctions,Caste distinctions absent or insignificant,1 +EA069-2,EA069,Despised occupation groups,"One or more despised occupational groups, e.g., smiths or leather workers, distinguished from the general population, regarded as outcastes by the latter, and characterized by strict endogamy",2 +EA069-3,EA069,Ethnic stratification,"Ethnic stratification, in which a superordinate caste withholds privileges from and refuses to intermarry with a subordinate caste (or castes) which it stigmatizes as ethnically alien, e.g., as descended from a conquered and culturally inferior indigenous population, from former slaves, or from foreign immigrants of different race and/or culture",3 +EA069-4,EA069,Complex caste stratification,Complex caste stratification in which occupational differentiation emphasizes hereditary ascription and endogamy to the near exclusion of achievable class statuses,4 +EA069-9,EA069,No secondary type,No secondary type,9 +EA070-NA,EA070,Missing data,Missing data,99 +EA070-1,EA070,Absence of slavery,Absence or near absence of slavery,1 +EA070-2,EA070,"Slavery, nonhereditary","Incipient or nonhereditary slavery, i.e., where slave status is temporary and not transmitted to the children of slaves",2 +EA070-3,EA070,"Slavery, no info on heritability",Slavery reported but not identified as hereditary or nonhereditary,3 +EA070-4,EA070,"Slavery, hereditary",Hereditary slavery present and of at least modest social significance,4 +EA071-NA,EA071,Missing data,Missing data,99 +EA071-1,EA071,Slavery never practiced,Slavery never practiced,1 +EA071-2,EA071,Past slavery,"Slavery present in past, but not currently in existence",2 +EA071-3,EA071,Past and present slavery,Slavery present currently and in past,3 +EA072-NA,EA072,Missing data,Missing data,99 +EA072-1,EA072,Patrilineal heir,Patrilineal heir,1 +EA072-2,EA072,Matrilineal heir,Matrilineal heir,2 +EA072-3,EA072,Nonhered: appointed by auth.,Nonhereditary succession through appointment by some higher authority,3 +EA072-4,EA072,Nonhered: seniority,Nonhereditary succession on the basis primarily of seniority or age,4 +EA072-5,EA072,Nonhered: influence,"Nonhereditary succession through influence, e.g., of wealth or social status",5 +EA072-6,EA072,Nonhered: election,Nonhereditary succession through election or some other mode of formal consensus,6 +EA072-7,EA072,Nonhered: inf. consensus,Nonhereditary succession through informal consensus,7 +EA072-9,EA072,Absence of office,Absence of any office resembling that of a local headman,9 +EA073-NA,EA073,Missing data,Missing data,99 +EA073-1,EA073,Son,Hereditary succession by a son,1 +EA073-2,EA073,Patrilineal heir,Hereditary succession by a patrilineal heir who takes precedence over a son,2 +EA073-3,EA073,Sister's son,Hereditary succession by a sister's son,3 +EA073-4,EA073,Matrilineal heir,"Hereditary succession by a matrilineal heir who takes precedence over a sister's son, e.g., a younger brother",4 +EA073-5,EA073,Nonhereditary,Nonhereditary,5 +EA073-9,EA073,Absence of office,Absence of any office resembling that of a local headman,9 +EA074-NA,EA074,Missing data,Missing data,99 +EA074-1,EA074,No inher. of real property,Absence of individual property rights in land or of any rule of inheritance governing the transmission of such rights,1 +EA074-2,EA074,Matrilineal by sister's sons,Matrilineal inheritance by a sister's son or sons,2 +EA074-3,EA074,Matrilineal by heirs,Inheritance by matrilineal heirs who take precedence over sisters' sons,3 +EA074-4,EA074,"Children, less for daughters","Inheritance by children, but with daughters receiving less than sons",4 +EA074-5,EA074,Children,Inheritance by children of either sex or both,5 +EA074-6,EA074,Patrilineal by heirs,Inheritance by patrilineal heirs who take precedence over sons,6 +EA074-7,EA074,Patrilineal by sons,Patrilineal inheritance by a son or sons,7 +EA075-NA,EA075,Missing data,Missing data,99 +EA075-1,EA075,Equally distributed,Equal or relatively equal distribution among all members of the category,1 +EA075-2,EA075,Best qualified,"Exclusive or predominant inheritance by the member of the category adjudged best qualified, either by the deceased or by his surviving relatives",2 +EA075-3,EA075,Ultimogeniture,"Ultimogeniture, i.e., predominant inheritance by the junior member of the category",3 +EA075-4,EA075,Primogeniture,"Primogeniture, i.e., predominant inheritance by the senior member of the category",4 +EA075-9,EA075,No inher. of real property,Absence of inheritance of real property,9 +EA076-NA,EA076,Missing data,Missing data,99 +EA076-1,EA076,No inher. of mov. property,"Absence of individual rights to movable property or of any rule of inheritance governing the transmission of such rights. This includes the destruction, burial, or giving away of movable property",1 +EA076-2,EA076,Matrilineal by sister's sons,Matrilineal inheritance by a sister's son or sons,2 +EA076-3,EA076,Matrilineal by heirs,Inheritance by matrilineal heirs who take precedence over sisters' sons,3 +EA076-4,EA076,"Children, less for daughters","Inheritance by children, but with daughters receiving less than sons",4 +EA076-5,EA076,Children,Inheritance by children of either sex or both,5 +EA076-6,EA076,Patrilineal by heirs,Inheritance by patrilineal heirs who take precedence over sons,6 +EA076-7,EA076,Patrilineal by sons,Patrilineal inheritance by a son or sons,7 +EA077-NA,EA077,Missing data,Missing data,99 +EA077-1,EA077,Equally distributed,Equal or relatively equal distribution among all members of the category,1 +EA077-2,EA077,Best qualified,"Exclusive or predominant inheritance by the member of the category adjudged best qualified, either by the deceased or by his surviving relatives",2 +EA077-3,EA077,Ultimogeniture,"Ultimogeniture, i.e., predominant inheritance by the junior member of the category",3 +EA077-4,EA077,Primogeniture,"Primogeniture, i.e., predominant inheritance by the senior member of the category",4 +EA077-9,EA077,No inher. of mov. property,"Absence of inheritance of movable property; includes the destruction, burial, or giving away of movable property",9 +EA078-NA,EA078,Missing data,Missing data,99 +EA078-1,EA078,Precluded by early marriage,Premarital sex relations precluded by a very early age of marriage for females,1 +EA078-2,EA078,"Prohibited, strongly sanctioned","Insistence on virginity; premarital sex relations prohibited, strongly sanctioned, and in fact rare",2 +EA078-3,EA078,Prohibited but weakly sanctioned,Premarital sex relations prohibited but weakly sanctioned and not infrequent in fact,3 +EA078-4,EA078,"Permitted, sanction if pregnancy",Premarital sex relations allowed and not sanctioned unless pregnancy results,4 +EA078-5,EA078,Trial marriage,"Trial marriage; monogamous premarital sex relations permitted with the expectation of marriage if pregnancy results, promiscuous relations being prohibited and sanctioned",5 +EA078-6,EA078,"Permitted, no sanctions",Premarital sex relations freely permitted and subject to no sanctions,6 +EA079-NA,EA079,Missing data,Missing data,99 +EA079-1,EA079,Semicircular,Semicircular,1 +EA079-2,EA079,Circular,Circular,2 +EA079-3,EA079,Elliptical,Elliptical or elongated with rounded ends,3 +EA079-4,EA079,Polygonal,Polygonal,4 +EA079-5,EA079,Rectangular,Rectangular or square,5 +EA079-6,EA079,Quadrangular around interior,Quadrangular around (or partially around) an interior court,6 +EA080-NA,EA080,Missing data,Missing data,99 +EA080-1,EA080,Subterranean,"Subterranean or semi-subterranean, ignoring cellars beneath the living quarters",1 +EA080-2,EA080,Floor level with ground,Floor formed by or level with the ground itself,2 +EA080-3,EA080,Elevated slightly,"Elevated slightly above the ground on a raised platform of earth, stone, or wood",3 +EA080-4,EA080,Raised substantially,"Raised substantially above the ground on piles, posts, or piers",4 +EA081-NA,EA081,Missing data,Missing data,99 +EA081-1,EA081,"Stone, stucco or brick","Stone, stucco, concrete, or fired brick",1 +EA081-2,EA081,"Plaster, clay or similar","Plaster, mud and dung, or wattle and daub",2 +EA081-3,EA081,"Wood, incl. bamboo","Wood, including logs, planks, poles, bamboo, or shingles",3 +EA081-4,EA081,Bark,Bark,4 +EA081-5,EA081,Hides or skins,Hides or skins,5 +EA081-6,EA081,Fabric,"Felt, cloth, or other fabric",6 +EA081-7,EA081,Mats,"Mats, latticework, or wattle",7 +EA081-8,EA081,"Grass, leaves or thatch","Grass, leaves, or other thatch",8 +EA081-9,EA081,"Adobe, clay or brick","Adobe, clay, or dried brick",9 +EA081-10,EA081,Open walls,"Open walls, including cases where they can be temporarily closed by screens",10 +EA081-11,EA081,Walls not diff. from roof,"Walls indistinguishable from roof or merging into the latter (see ""Roofing materials"" for details)",11 +EA082-NA,EA082,Missing data,Missing data,99 +EA082-1,EA082,Rounded or semi-cylindrical,Rounded or semi-cylindrical,1 +EA082-2,EA082,Hemispherical,Dome shaped or hemispherical,2 +EA082-3,EA082,Beehive shaped,Beehive shaped with pointed peak,3 +EA082-4,EA082,Conical,Conical,4 +EA082-5,EA082,Semi-hemispherical,Semi-hemispherical,5 +EA082-6,EA082,One slope,"Shed, i.e., with one slope",6 +EA082-7,EA082,Flat,Flat or horizontal,7 +EA082-8,EA082,Two slopes,"Gabled, i.e., with two slopes",8 +EA082-9,EA082,Four slopes,"Hipped or pyramidal, i.e., with four slopes",9 +EA083-NA,EA083,Missing data,Missing data,99 +EA083-1,EA083,Stone or slate,Stone or slate,1 +EA083-2,EA083,"Plaster, clay or similar","Plaster, clay, mud and dung, or wattle and daub",2 +EA083-3,EA083,"Wood, incl. bamboo","Wood, including logs, planks, poles, bamboo, or shingles",3 +EA083-4,EA083,Bark,Bark,4 +EA083-5,EA083,Hides or skins,Hides or skins,5 +EA083-6,EA083,Fabric,"Felt, cloth, or other fabric",6 +EA083-7,EA083,Mats,Mats,7 +EA083-8,EA083,"Grass, leaves or thatch","Grass, leaves, brush, or other thatch",8 +EA083-9,EA083,Earth or turf,Earth or turf,9 +EA083-10,EA083,Ice or snow,Ice or snow,10 +EA083-11,EA083,Tile or fired brick,Tile or fired brick,11 +EA084-NA,EA084,Missing data,Missing data,99 +EA084-1,EA084,Semicircular,Semicircular,1 +EA084-2,EA084,Circular,Circular,2 +EA084-3,EA084,Elliptical,Elliptical or elongated with rounded ends,3 +EA084-4,EA084,Polygonal,Polygonal,4 +EA084-5,EA084,Rectangular,Rectangular or square,5 +EA084-6,EA084,Quadrangular around interior,Quadrangular around (or partially around) an interior court,6 +EA085-NA,EA085,Missing data,Missing data,99 +EA085-1,EA085,Subterranean,"Subterranean or semi-subterranean, ignoring cellars beneath the living quarters",1 +EA085-2,EA085,Floor level with ground,Floor formed by or level with the ground itself,2 +EA085-3,EA085,Elevated slightly,"Elevated slightly above the ground on a raised platform of earth, stone, or wood",3 +EA085-4,EA085,Raised substantially,"Raised substantially above the ground on piles, posts, or piers",4 +EA086-NA,EA086,Missing data,Missing data,99 +EA086-1,EA086,"Stone, stucco or brick","Stone, stucco, concrete, or fired brick",1 +EA086-2,EA086,"Plaster, clay or similar","Plaster, mud and dung, or wattle and daub",2 +EA086-3,EA086,"Wood, incl. bamboo","Wood, including logs, planks, poles, bamboo, or shingles",3 +EA086-4,EA086,Bark,Bark,4 +EA086-5,EA086,Hides or skins,Hides or skins,5 +EA086-6,EA086,Fabric,"Felt, cloth, or other fabric",6 +EA086-7,EA086,Mats,"Mats, latticework, or wattle",7 +EA086-8,EA086,"Grass, leaves or thatch","Grass, leaves, or other thatch",8 +EA086-9,EA086,"Adobe, clay or brick","Adobe, clay, or dried brick",9 +EA086-10,EA086,Open walls,"Open walls, including cases where they can be temporarily closed by screens",10 +EA086-11,EA086,Walls not diff. from roof,"Walls indistinguishable from roof or merging into the latter (see ""Roofing materials"" for details)",11 +EA087-NA,EA087,Missing data,Missing data,99 +EA087-1,EA087,Rounded or semi-cylindrical,Rounded or semi-cylindrical,1 +EA087-2,EA087,Hemispherical,Dome shaped or hemispherical,2 +EA087-3,EA087,Beehive shaped,Beehive shaped with pointed peak,3 +EA087-4,EA087,Conical,Conical,4 +EA087-5,EA087,Semi-hemispherical,Semi-hemispherical,5 +EA087-6,EA087,One slope,"Shed, i.e., with one slope",6 +EA087-7,EA087,Flat,Flat or horizontal,7 +EA087-8,EA087,Two slopes,"Gabled, i.e., with two slopes",8 +EA087-9,EA087,Four slopes,"Hipped or pyramidal, i.e., with four slopes",9 +EA088-NA,EA088,Missing data,Missing data,99 +EA088-1,EA088,Stone or slate,Stone or slate,1 +EA088-2,EA088,"Plaster, clay or similar","Plaster, clay, mud and dung, or wattle and daub",2 +EA088-3,EA088,"Wood, incl. bamboo","Wood, including logs, planks, poles, bamboo, or shingles",3 +EA088-4,EA088,Bark,Bark,4 +EA088-5,EA088,Hides or skins,Hides or skins,5 +EA088-6,EA088,Fabric,"Felt, cloth, or other fabric",6 +EA088-7,EA088,Mats,Mats,7 +EA088-8,EA088,"Grass, leaves or thatch","Grass, leaves, brush, or other thatch",8 +EA088-9,EA088,Earth or turf,Earth or turf,9 +EA088-10,EA088,Ice or snow,Ice or snow,10 +EA088-11,EA088,Tile or fired brick,Tile or fired brick,11 +EA090-NA,EA090,Missing data,Insufficient information or not coded,99 +EA090-1,EA090,"Absence, even locally","Absence of any politicdal organization even at local level, e.g., where family heads acknowledge no higher political authority",1 +EA090-2,EA090,Autonomous communities,"Autonomous local communities, i.e., politically independent groups which do not exceed 1500 in average population",2 +EA090-3,EA090,Peace groups among communities,"Peace groups transcending the local community where the basis of unity is other than political, e.g., derived from reciprocal trade relations, defensive military agreements, or a common cult or age-grade organization",3 +EA090-4,EA090,Minimal states,"Minimal states, i.e., political integration even at the local level, e.g., where family heads acknowledge no higher political authority (1500 ヨ 10,000)",4 +EA090-5,EA090,Little states,"Little states, i.e., political integration in independent units averaging between 10,000 and 100,000 in population",5 +EA090-6,EA090,States,"States, i.e., political integration in large independent units averaging at least 100,000 in population",6 +EA090-8,EA090,Dependent societies,"Dependent societies lacking any political organization of their own, e.g., those forming an integral part of some larger political system and those governed exclusively and directly by agents of another and politically dominant society. Colonial governments operating through indirect rule are ignored.",8 +EA094-NA,EA094,Missing data,Insufficient information or not coded,99 +EA094-11,EA094,"Patrilineal, son",Patrilineal succession where a son is preferred to a younger brother,11 +EA094-12,EA094,"Patrilineal, younger brother",Patrilineal succession where a younger brother is preferred to a son,12 +EA094-13,EA094,"Patrilineal, other/unspecified","Patrilineal succession other than younger brother or son, or where preference is unspecified",13 +EA094-24,EA094,"Matrilineal, sister's son",Matrilineal succession where a sister's son is preferred to a younger brother,24 +EA094-25,EA094,"Matrilineal, yonger brother",Matrilineal succession where a younger brother is preferred to a sister's son,25 +EA094-26,EA094,"Matrilineal, other/unspecified","Matrilineal succession other than sister's son or younger brother, or where preference is unspecified",26 +EA094-39,EA094,"Nonhered, appointed by auth.",Nonhereditary succession through appointment of headmen by some higher political authority,39 +EA094-49,EA094,"Nonhered, election",Nonhereditary succession through election or some other method of formal consensus,49 +EA094-59,EA094,"Nonhered, informal",Nonhereditary succession through informal consensus or personal influence,59 +EA094-69,EA094,"Nonhered, council","Councils, i.e., absence of true headmen, political authroity at the local level being exercised exclusively by a council or other collective body",69 +EA094-99,EA094,Absence of political auth.,"Absence of any indigenous political authority, as in societies lacking political integration even at the local level and in some dependent societies",99 +EA112-NA,EA112,Missing data,Missing data,99 +EA112-1,EA112,"Trance, no possession","Trance behavior is known to occur, but there is no belief in possession.",1 +EA112-2,EA112,Possession,A belief in possession exists.,2 +EA112-3,EA112,T due to P only; P causes T only,Trance behavior is known to occur and is explained as due to possession. There is no possession belief referring to other experiences and there are no trance states with other explanations.,3 +EA112-4,EA112,"Two T states, one due to P; P expl. T and others","Two types of trance states are known to occur. One which is explained as due to possession and one which is given another type of explanation. In addition to explaining trance, possession belief also refers to one or more other phenomena.",4 +EA112-5,EA112,"T and P, but T not due to P","There is both a trance state and a belief in possession, but this belief refers to phenomena other than trance, which is explained through other categories.",5 +EA112-6,EA112,T due to P only; P explains T and others,"Trance explained as due to possession is known to occur, and there are no other trance states, but cases of possession outside of trance are also believed to occur.",6 +EA112-7,EA112,"Two T states, one due to P; P explains T only","Trance states of two kinds are known to occur, some of which are explained by possession. No other phenomena are explained by possession.",7 +EA112-8,EA112,No trance or possession,"No trance states of any kind are known to occur, and there is no belief in possession.",8 +EA113-NA,EA113,Missing data,Missing data,99 +EA113-1,EA113,Rigid,"Rigid, characterized as: non-egalitarian, ascriptive status distinctions, autocratic, hierarchical political system, fixed residence and group membership, central authority, fixed religious rites.",1 +EA113-2,EA113,Flexible,"Flexible, characterized as: egalitarian, achieved status distinctions, autocratic, democratic, federated or stateless political system, ease in residence and group changes, individualized or flexible religious rites.",2 diff --git a/cldf/data.csv b/cldf/data.csv new file mode 100644 index 0000000..041a049 --- /dev/null +++ b/cldf/data.csv @@ -0,0 +1,121356 @@ +ID,Soc_ID,Var_ID,Value,Code_ID,Comment,Source,sub_case,year,source_coded_data,admin_comment +1,Aa1,EA001,76-85%,EA001-8,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +2,Aa2,EA001,36-45%,EA001-4,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +3,Aa3,EA001,6-15%,EA001-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +4,Aa4,EA001,36-45%,EA001-4,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +5,Aa5,EA001,26-35%,EA001-3,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +6,Aa6,EA001,6-15%,EA001-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +7,Aa7,EA001,66-75%,EA001-7,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +8,Aa8,EA001,46-55%,EA001-5,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +9,Aa9,EA001,56-65%,EA001-6,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +10,Ab1,EA001,6-15%,EA001-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +11,Ab10,EA001,0-5%,EA001-0,,hunter1936,,1936,EthnographicAtlas_1967_p62, +12,Ab11,EA001,6-15%,EA001-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +13,Ab12,EA001,0-5%,EA001-0,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +14,Ab13,EA001,0-5%,EA001-0,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +15,Ab14,EA001,6-15%,EA001-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +16,Ab15,EA001,0-5%,EA001-0,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +17,Ab16,EA001,6-15%,EA001-1,,earthy1933,,1930,EthnographicAtlas_1967_p62, +18,Ab17,EA001,0-5%,EA001-0,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +19,Ab18,EA001,6-15%,EA001-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +20,Ab19,EA001,0-5%,EA001-0,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +21,Ab2,EA001,6-15%,EA001-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +22,Ab20,EA001,0-5%,EA001-0,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +23,Ab21a,EA001,6-15%,EA001-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +24,Ab21b,EA001,0-5%,EA001-0,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +25,Ab22,EA001,0-5%,EA001-0,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +26,Ab3,EA001,6-15%,EA001-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +27,Ab4,EA001,0-5%,EA001-0,,junod1927,,1920,EthnographicAtlas_1967_p62, +28,Ab5,EA001,6-15%,EA001-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +29,Ab6,EA001,6-15%,EA001-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +30,Ab7,EA001,0-5%,EA001-0,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +31,Ab8,EA001,6-15%,EA001-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +32,Ab9,EA001,0-5%,EA001-0,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +33,Ac1,EA001,6-15%,EA001-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +34,Ac10,EA001,6-15%,EA001-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +35,Ac11,EA001,0-5%,EA001-0,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +36,Ac12,EA001,0-5%,EA001-0,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +37,Ac13,EA001,6-15%,EA001-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +38,Ac14,EA001,6-15%,EA001-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +39,Ac15,EA001,6-15%,EA001-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +40,Ac16,EA001,6-15%,EA001-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +41,Ac17,EA001,6-15%,EA001-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +42,Ac18,EA001,6-15%,EA001-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +43,Ac19,EA001,0-5%,EA001-0,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +44,Ac2,EA001,6-15%,EA001-1,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +45,Ac20,EA001,0-5%,EA001-0,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +46,Ac21,EA001,0-5%,EA001-0,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +47,Ac22,EA001,6-15%,EA001-1,,mertens1935,,1930,EthnographicAtlas_1967_p62, +48,Ac23,EA001,0-5%,EA001-0,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +49,Ac24,EA001,0-5%,EA001-0,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +50,Ac25,EA001,6-15%,EA001-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +51,Ac26,EA001,0-5%,EA001-0,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +52,Ac27,EA001,0-5%,EA001-0,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +53,Ac28,EA001,0-5%,EA001-0,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +54,Ac29,EA001,0-5%,EA001-0,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +55,Ac3,EA001,6-15%,EA001-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +56,Ac30,EA001,0-5%,EA001-0,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +57,Ac31,EA001,6-15%,EA001-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +58,Ac32,EA001,0-5%,EA001-0,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +59,Ac33,EA001,0-5%,EA001-0,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +60,Ac34,EA001,0-5%,EA001-0,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +61,Ac35,EA001,0-5%,EA001-0,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +62,Ac36,EA001,0-5%,EA001-0,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +63,Ac37,EA001,6-15%,EA001-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +64,Ac38,EA001,0-5%,EA001-0,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +65,Ac39,EA001,0-5%,EA001-0,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +66,Ac4,EA001,0-5%,EA001-0,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +67,Ac40,EA001,6-15%,EA001-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +68,Ac41,EA001,0-5%,EA001-0,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +69,Ac42,EA001,0-5%,EA001-0,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +70,Ac43,EA001,0-5%,EA001-0,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +71,Ac5,EA001,0-5%,EA001-0,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +72,Ac6,EA001,0-5%,EA001-0,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +73,Ac7,EA001,0-5%,EA001-0,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +74,Ac8,EA001,0-5%,EA001-0,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +75,Ac9,EA001,0-5%,EA001-0,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +76,Ad1,EA001,0-5%,EA001-0,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +77,Ad10,EA001,0-5%,EA001-0,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +78,Ad11,EA001,0-5%,EA001-0,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +79,Ad12,EA001,0-5%,EA001-0,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +80,Ad13,EA001,0-5%,EA001-0,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +81,Ad14,EA001,0-5%,EA001-0,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +82,Ad15,EA001,0-5%,EA001-0,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +83,Ad16,EA001,0-5%,EA001-0,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +84,Ad17,EA001,0-5%,EA001-0,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +85,Ad18,EA001,0-5%,EA001-0,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +86,Ad19,EA001,0-5%,EA001-0,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +87,Ad2,EA001,0-5%,EA001-0,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +88,Ad20,EA001,6-15%,EA001-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +89,Ad21,EA001,0-5%,EA001-0,,maurice193538,,1930,EthnographicAtlas_1967_p66, +90,Ad22,EA001,0-5%,EA001-0,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +91,Ad23,EA001,0-5%,EA001-0,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +92,Ad24,EA001,0-5%,EA001-0,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +93,Ad25,EA001,0-5%,EA001-0,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +94,Ad26,EA001,0-5%,EA001-0,,sick1916,,1910,EthnographicAtlas_1967_p66, +95,Ad27,EA001,0-5%,EA001-0,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +96,Ad28,EA001,0-5%,EA001-0,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +97,Ad29,EA001,0-5%,EA001-0,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +98,Ad3,EA001,0-5%,EA001-0,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +99,Ad30,EA001,0-5%,EA001-0,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +100,Ad31,EA001,0-5%,EA001-0,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +101,Ad32,EA001,0-5%,EA001-0,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +102,Ad33,EA001,0-5%,EA001-0,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +103,Ad34,EA001,0-5%,EA001-0,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +104,Ad35,EA001,0-5%,EA001-0,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +105,Ad36,EA001,0-5%,EA001-0,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +106,Ad37,EA001,0-5%,EA001-0,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +107,Ad38,EA001,0-5%,EA001-0,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +108,Ad39,EA001,0-5%,EA001-0,,gray1963,,1950,EthnographicAtlas_1967_p66, +109,Ad4,EA001,0-5%,EA001-0,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +110,Ad40,EA001,0-5%,EA001-0,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +111,Ad41,EA001,0-5%,EA001-0,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +112,Ad42,EA001,0-5%,EA001-0,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +113,Ad43,EA001,0-5%,EA001-0,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +114,Ad44,EA001,0-5%,EA001-0,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +115,Ad45,EA001,0-5%,EA001-0,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +116,Ad46,EA001,0-5%,EA001-0,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +117,Ad47,EA001,0-5%,EA001-0,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +118,Ad48,EA001,0-5%,EA001-0,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +119,Ad49,EA001,0-5%,EA001-0,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +120,Ad5,EA001,0-5%,EA001-0,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +121,Ad50,EA001,0-5%,EA001-0,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +122,Ad51,EA001,0-5%,EA001-0,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +123,Ad6,EA001,0-5%,EA001-0,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +124,Ad7,EA001,0-5%,EA001-0,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +125,Ad8,EA001,0-5%,EA001-0,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +126,Ad9,EA001,0-5%,EA001-0,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +127,Ae1,EA001,6-15%,EA001-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +128,Ae10,EA001,0-5%,EA001-0,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +129,Ae11,EA001,6-15%,EA001-1,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +130,Ae12,EA001,0-5%,EA001-0,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +131,Ae13,EA001,0-5%,EA001-0,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +132,Ae14,EA001,0-5%,EA001-0,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +133,Ae15,EA001,0-5%,EA001-0,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +134,Ae16,EA001,0-5%,EA001-0,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +135,Ae17,EA001,0-5%,EA001-0,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +136,Ae18,EA001,0-5%,EA001-0,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +137,Ae19,EA001,0-5%,EA001-0,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +138,Ae2,EA001,0-5%,EA001-0,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +139,Ae20,EA001,0-5%,EA001-0,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +140,Ae21,EA001,0-5%,EA001-0,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +141,Ae22,EA001,0-5%,EA001-0,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +142,Ae23,EA001,0-5%,EA001-0,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +143,Ae24,EA001,6-15%,EA001-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +144,Ae25,EA001,0-5%,EA001-0,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +145,Ae26,EA001,0-5%,EA001-0,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +146,Ae27,EA001,0-5%,EA001-0,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +147,Ae28,EA001,0-5%,EA001-0,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +148,Ae29,EA001,0-5%,EA001-0,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +149,Ae3,EA001,6-15%,EA001-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +150,Ae30,EA001,0-5%,EA001-0,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +151,Ae31,EA001,0-5%,EA001-0,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +152,Ae32,EA001,0-5%,EA001-0,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +153,Ae33,EA001,0-5%,EA001-0,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +154,Ae34,EA001,0-5%,EA001-0,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +155,Ae35,EA001,0-5%,EA001-0,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +156,Ae36,EA001,0-5%,EA001-0,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +157,Ae37,EA001,0-5%,EA001-0,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +158,Ae38,EA001,0-5%,EA001-0,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +159,Ae39,EA001,0-5%,EA001-0,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +160,Ae4,EA001,6-15%,EA001-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +161,Ae40,EA001,0-5%,EA001-0,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +162,Ae41,EA001,6-15%,EA001-1,,andersson1953,,1940,EthnographicAtlas_1967_p66, +163,Ae42,EA001,0-5%,EA001-0,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +164,Ae43,EA001,0-5%,EA001-0,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +165,Ae44,EA001,0-5%,EA001-0,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +166,Ae45,EA001,0-5%,EA001-0,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +167,Ae46,EA001,0-5%,EA001-0,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +168,Ae47,EA001,0-5%,EA001-0,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +169,Ae48,EA001,0-5%,EA001-0,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +170,Ae49,EA001,0-5%,EA001-0,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +171,Ae5,EA001,0-5%,EA001-0,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +172,Ae50,EA001,0-5%,EA001-0,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +173,Ae51,EA001,6-15%,EA001-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +174,Ae52,EA001,0-5%,EA001-0,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +175,Ae53,EA001,0-5%,EA001-0,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +176,Ae54,EA001,0-5%,EA001-0,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +177,Ae55,EA001,0-5%,EA001-0,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +178,Ae56,EA001,0-5%,EA001-0,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +179,Ae57,EA001,0-5%,EA001-0,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +180,Ae58,EA001,0-5%,EA001-0,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +181,Ae59,EA001,0-5%,EA001-0,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +182,Ae6,EA001,6-15%,EA001-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +183,Ae7,EA001,0-5%,EA001-0,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +184,Ae8,EA001,0-5%,EA001-0,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +185,Ae9,EA001,0-5%,EA001-0,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +186,Af1,EA001,0-5%,EA001-0,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +187,Af10,EA001,0-5%,EA001-0,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +188,Af11,EA001,0-5%,EA001-0,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +189,Af12,EA001,0-5%,EA001-0,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +190,Af13,EA001,6-15%,EA001-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +191,Af14,EA001,6-15%,EA001-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +192,Af15,EA001,6-15%,EA001-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +193,Af16,EA001,0-5%,EA001-0,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +194,Af17,EA001,0-5%,EA001-0,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +195,Af18,EA001,0-5%,EA001-0,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +196,Af19,EA001,0-5%,EA001-0,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +197,Af2,EA001,0-5%,EA001-0,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +198,Af20,EA001,0-5%,EA001-0,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +199,Af21,EA001,0-5%,EA001-0,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +200,Af22,EA001,6-15%,EA001-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +201,Af23,EA001,6-15%,EA001-1,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +202,Af24,EA001,6-15%,EA001-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +203,Af25,EA001,6-15%,EA001-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +204,Af26,EA001,0-5%,EA001-0,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +205,Af27,EA001,0-5%,EA001-0,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +206,Af28,EA001,6-15%,EA001-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +207,Af29,EA001,0-5%,EA001-0,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +208,Af3,EA001,0-5%,EA001-0,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +209,Af30,EA001,0-5%,EA001-0,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +210,Af31,EA001,0-5%,EA001-0,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +211,Af32,EA001,0-5%,EA001-0,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +212,Af33,EA001,0-5%,EA001-0,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +213,Af34,EA001,0-5%,EA001-0,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +214,Af35,EA001,0-5%,EA001-0,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +215,Af36,EA001,0-5%,EA001-0,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +216,Af37,EA001,0-5%,EA001-0,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +217,Af38,EA001,0-5%,EA001-0,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +218,Af39,EA001,0-5%,EA001-0,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +219,Af4,EA001,6-15%,EA001-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +220,Af40,EA001,0-5%,EA001-0,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +221,Af41,EA001,0-5%,EA001-0,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +222,Af42,EA001,0-5%,EA001-0,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +223,Af43,EA001,0-5%,EA001-0,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +224,Af44,EA001,0-5%,EA001-0,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +225,Af45,EA001,0-5%,EA001-0,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +226,Af46,EA001,0-5%,EA001-0,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +227,Af47,EA001,0-5%,EA001-0,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +228,Af48,EA001,0-5%,EA001-0,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +229,Af49,EA001,0-5%,EA001-0,,schwab1947,,1940,EthnographicAtlas_1967_p70, +230,Af5,EA001,6-15%,EA001-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +231,Af50,EA001,6-15%,EA001-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +232,Af51,EA001,6-15%,EA001-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +233,Af52,EA001,6-15%,EA001-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +234,Af53,EA001,6-15%,EA001-1,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +235,Af54,EA001,0-5%,EA001-0,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +236,Af55,EA001,0-5%,EA001-0,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +237,Af56,EA001,0-5%,EA001-0,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +238,Af57,EA001,0-5%,EA001-0,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +239,Af58,EA001,6-15%,EA001-1,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +240,Af6,EA001,0-5%,EA001-0,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +241,Af7,EA001,0-5%,EA001-0,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +242,Af8,EA001,6-15%,EA001-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +243,Af9,EA001,0-5%,EA001-0,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +244,Ag1,EA001,16-25%,EA001-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +245,Ag10,EA001,6-15%,EA001-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +246,Ag11,EA001,16-25%,EA001-2,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +247,Ag12,EA001,0-5%,EA001-0,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +248,Ag13,EA001,6-15%,EA001-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +249,Ag14,EA001,6-15%,EA001-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +250,Ag15,EA001,0-5%,EA001-0,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +251,Ag16,EA001,0-5%,EA001-0,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +252,Ag17,EA001,6-15%,EA001-1,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +253,Ag18,EA001,6-15%,EA001-1,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +254,Ag19,EA001,6-15%,EA001-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +255,Ag2,EA001,6-15%,EA001-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +256,Ag20,EA001,0-5%,EA001-0,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +257,Ag21,EA001,6-15%,EA001-1,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +258,Ag22,EA001,6-15%,EA001-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +259,Ag23,EA001,6-15%,EA001-1,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +260,Ag24,EA001,0-5%,EA001-0,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +261,Ag25,EA001,6-15%,EA001-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +262,Ag26,EA001,0-5%,EA001-0,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +263,Ag27,EA001,6-15%,EA001-1,But the economy is primarily mercantile,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +264,Ag28,EA001,6-15%,EA001-1,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +265,Ag29,EA001,6-15%,EA001-1,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +266,Ag3,EA001,16-25%,EA001-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +267,Ag30,EA001,0-5%,EA001-0,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +268,Ag31,EA001,6-15%,EA001-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +269,Ag32,EA001,16-25%,EA001-2,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +270,Ag33,EA001,6-15%,EA001-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +271,Ag34,EA001,6-15%,EA001-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +272,Ag35,EA001,6-15%,EA001-1,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +273,Ag36,EA001,6-15%,EA001-1,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +274,Ag37,EA001,0-5%,EA001-0,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +275,Ag38,EA001,0-5%,EA001-0,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +276,Ag39,EA001,0-5%,EA001-0,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +277,Ag4,EA001,6-15%,EA001-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +278,Ag40,EA001,0-5%,EA001-0,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +279,Ag41,EA001,0-5%,EA001-0,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +280,Ag42,EA001,6-15%,EA001-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +281,Ag43,EA001,0-5%,EA001-0,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +282,Ag44,EA001,0-5%,EA001-0,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +283,Ag45,EA001,0-5%,EA001-0,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +284,Ag46,EA001,0-5%,EA001-0,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +285,Ag47,EA001,6-15%,EA001-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +286,Ag48,EA001,0-5%,EA001-0,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +287,Ag49,EA001,0-5%,EA001-0,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +288,Ag5,EA001,6-15%,EA001-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +289,Ag50,EA001,0-5%,EA001-0,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +290,Ag51,EA001,0-5%,EA001-0,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +291,Ag52,EA001,0-5%,EA001-0,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +292,Ag53,EA001,6-15%,EA001-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +293,Ag54,EA001,0-5%,EA001-0,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +294,Ag6,EA001,0-5%,EA001-0,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +295,Ag7,EA001,6-15%,EA001-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +296,Ag8,EA001,16-25%,EA001-2,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +297,Ag9,EA001,6-15%,EA001-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +298,Ah1,EA001,16-25%,EA001-2,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +299,Ah10,EA001,0-5%,EA001-0,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +300,Ah11,EA001,0-5%,EA001-0,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +301,Ah12,EA001,0-5%,EA001-0,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +302,Ah13,EA001,6-15%,EA001-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +303,Ah14,EA001,0-5%,EA001-0,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +304,Ah15,EA001,0-5%,EA001-0,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +305,Ah16,EA001,6-15%,EA001-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +306,Ah17,EA001,6-15%,EA001-1,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +307,Ah18,EA001,6-15%,EA001-1,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +308,Ah19,EA001,0-5%,EA001-0,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +309,Ah2,EA001,0-5%,EA001-0,,meek1931a,,1920,EthnographicAtlas_1967_p74, +310,Ah20,EA001,0-5%,EA001-0,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +311,Ah21,EA001,6-15%,EA001-1,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +312,Ah22,EA001,0-5%,EA001-0,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +313,Ah23,EA001,0-5%,EA001-0,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +314,Ah24,EA001,0-5%,EA001-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +315,Ah25,EA001,0-5%,EA001-0,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +316,Ah26,EA001,0-5%,EA001-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +317,Ah27,EA001,0-5%,EA001-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +318,Ah28,EA001,0-5%,EA001-0,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +319,Ah29,EA001,0-5%,EA001-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +320,Ah3,EA001,6-15%,EA001-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +321,Ah30,EA001,0-5%,EA001-0,,meek1931b,,1920,EthnographicAtlas_1967_p74, +322,Ah31,EA001,0-5%,EA001-0,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +323,Ah32,EA001,0-5%,EA001-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +324,Ah33,EA001,0-5%,EA001-0,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +325,Ah34,EA001,0-5%,EA001-0,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +326,Ah35,EA001,0-5%,EA001-0,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +327,Ah36,EA001,0-5%,EA001-0,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +328,Ah37,EA001,0-5%,EA001-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +329,Ah38,EA001,0-5%,EA001-0,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +330,Ah39,EA001,0-5%,EA001-0,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +331,Ah4,EA001,0-5%,EA001-0,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +332,Ah5,EA001,0-5%,EA001-0,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +333,Ah6,EA001,6-15%,EA001-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +334,Ah7,EA001,0-5%,EA001-0,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +335,Ah8,EA001,6-15%,EA001-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +336,Ah9,EA001,6-15%,EA001-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +337,Ai1,EA001,0-5%,EA001-0,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +338,Ai10,EA001,0-5%,EA001-0,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +339,Ai11,EA001,0-5%,EA001-0,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +340,Ai12,EA001,6-15%,EA001-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +341,Ai13,EA001,0-5%,EA001-0,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +342,Ai14,EA001,0-5%,EA001-0,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +343,Ai15,EA001,0-5%,EA001-0,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +344,Ai16,EA001,0-5%,EA001-0,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +345,Ai17,EA001,0-5%,EA001-0,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +346,Ai18,EA001,0-5%,EA001-0,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +347,Ai19,EA001,0-5%,EA001-0,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +348,Ai2,EA001,0-5%,EA001-0,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +349,Ai20,EA001,0-5%,EA001-0,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +350,Ai21,EA001,6-15%,EA001-1,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +351,Ai22,EA001,0-5%,EA001-0,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +352,Ai23,EA001,0-5%,EA001-0,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +353,Ai24,EA001,0-5%,EA001-0,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +354,Ai25,EA001,0-5%,EA001-0,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +355,Ai26,EA001,0-5%,EA001-0,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +356,Ai27,EA001,0-5%,EA001-0,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +357,Ai28,EA001,0-5%,EA001-0,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +358,Ai29,EA001,0-5%,EA001-0,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +359,Ai3,EA001,6-15%,EA001-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +360,Ai30,EA001,0-5%,EA001-0,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +361,Ai31,EA001,0-5%,EA001-0,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +362,Ai32,EA001,6-15%,EA001-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +363,Ai33,EA001,0-5%,EA001-0,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +364,Ai34,EA001,0-5%,EA001-0,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +365,Ai35,EA001,16-25%,EA001-2,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +366,Ai36,EA001,0-5%,EA001-0,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +367,Ai37,EA001,0-5%,EA001-0,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +368,Ai38,EA001,0-5%,EA001-0,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +369,Ai39,EA001,0-5%,EA001-0,,nadel1947,,1940,EthnographicAtlas_1967_p74, +370,Ai4,EA001,0-5%,EA001-0,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +371,Ai40,EA001,0-5%,EA001-0,,nadel1947,,1940,EthnographicAtlas_1967_p74, +372,Ai41,EA001,0-5%,EA001-0,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +373,Ai42,EA001,0-5%,EA001-0,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +374,Ai43,EA001,0-5%,EA001-0,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +375,Ai44,EA001,0-5%,EA001-0,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +376,Ai45,EA001,0-5%,EA001-0,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +377,Ai46,EA001,0-5%,EA001-0,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +378,Ai47,EA001,6-15%,EA001-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +379,Ai5,EA001,6-15%,EA001-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +380,Ai6,EA001,6-15%,EA001-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +381,Ai7,EA001,6-15%,EA001-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +382,Ai8,EA001,6-15%,EA001-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +383,Ai9,EA001,0-5%,EA001-0,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +384,Aj1,EA001,0-5%,EA001-0,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +385,Aj10,EA001,6-15%,EA001-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +386,Aj11,EA001,0-5%,EA001-0,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +387,Aj12,EA001,0-5%,EA001-0,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +388,Aj13,EA001,0-5%,EA001-0,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +389,Aj14,EA001,0-5%,EA001-0,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +390,Aj15,EA001,0-5%,EA001-0,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +391,Aj16,EA001,0-5%,EA001-0,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +392,Aj17,EA001,0-5%,EA001-0,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +393,Aj18,EA001,0-5%,EA001-0,,jensen1959,,1950,EthnographicAtlas_1967_p78, +394,Aj19,EA001,0-5%,EA001-0,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +395,Aj2,EA001,0-5%,EA001-0,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +396,Aj20,EA001,0-5%,EA001-0,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +397,Aj21,EA001,0-5%,EA001-0,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +398,Aj22,EA001,0-5%,EA001-0,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +399,Aj23,EA001,0-5%,EA001-0,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +400,Aj24,EA001,6-15%,EA001-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +401,Aj25,EA001,6-15%,EA001-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +402,Aj26,EA001,0-5%,EA001-0,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +403,Aj27,EA001,0-5%,EA001-0,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +404,Aj28,EA001,0-5%,EA001-0,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +405,Aj29,EA001,0-5%,EA001-0,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +406,Aj3,EA001,0-5%,EA001-0,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +407,Aj30,EA001,0-5%,EA001-0,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +408,Aj31,EA001,0-5%,EA001-0,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +409,Aj4,EA001,0-5%,EA001-0,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +410,Aj5,EA001,16-25%,EA001-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +411,Aj6,EA001,0-5%,EA001-0,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +412,Aj7,EA001,0-5%,EA001-0,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +413,Aj8,EA001,0-5%,EA001-0,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +414,Aj9,EA001,0-5%,EA001-0,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +415,Ca1,EA001,0-5%,EA001-0,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +416,Ca10,EA001,0-5%,EA001-0,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +417,Ca11,EA001,0-5%,EA001-0,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +418,Ca12,EA001,0-5%,EA001-0,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +419,Ca13,EA001,0-5%,EA001-0,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +420,Ca14,EA001,0-5%,EA001-0,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +421,Ca15,EA001,0-5%,EA001-0,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +422,Ca16,EA001,0-5%,EA001-0,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +423,Ca17,EA001,0-5%,EA001-0,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +424,Ca18,EA001,0-5%,EA001-0,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +425,Ca19,EA001,0-5%,EA001-0,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +426,Ca2,EA001,0-5%,EA001-0,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +427,Ca20,EA001,0-5%,EA001-0,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +428,Ca21,EA001,0-5%,EA001-0,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +429,Ca22,EA001,0-5%,EA001-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +430,Ca23,EA001,0-5%,EA001-0,,jensen1959,,1950,EthnographicAtlas_1967_p78, +431,Ca24,EA001,0-5%,EA001-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +432,Ca25,EA001,0-5%,EA001-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +433,Ca26,EA001,0-5%,EA001-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +434,Ca27,EA001,6-15%,EA001-1,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +435,Ca28,EA001,0-5%,EA001-0,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +436,Ca29,EA001,0-5%,EA001-0,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +437,Ca3,EA001,0-5%,EA001-0,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +438,Ca30,EA001,6-15%,EA001-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +439,Ca31,EA001,0-5%,EA001-0,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +440,Ca32,EA001,6-15%,EA001-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +441,Ca33,EA001,6-15%,EA001-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +442,Ca34,EA001,0-5%,EA001-0,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +443,Ca35,EA001,0-5%,EA001-0,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +444,Ca36,EA001,0-5%,EA001-0,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +445,Ca37,EA001,0-5%,EA001-0,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +446,Ca38,EA001,0-5%,EA001-0,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +447,Ca39,EA001,0-5%,EA001-0,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +448,Ca4,EA001,0-5%,EA001-0,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +449,Ca40,EA001,0-5%,EA001-0,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +450,Ca41,EA001,0-5%,EA001-0,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +451,Ca42,EA001,0-5%,EA001-0,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +452,Ca43,EA001,6-15%,EA001-1,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +453,Ca5,EA001,0-5%,EA001-0,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +454,Ca6,EA001,6-15%,EA001-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +455,Ca7,EA001,0-5%,EA001-0,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +456,Ca8,EA001,0-5%,EA001-0,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +457,Ca9,EA001,0-5%,EA001-0,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +458,Cb1,EA001,0-5%,EA001-0,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +459,Cb10,EA001,6-15%,EA001-1,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +460,Cb11,EA001,0-5%,EA001-0,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +461,Cb12,EA001,0-5%,EA001-0,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +462,Cb13,EA001,6-15%,EA001-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +463,Cb14,EA001,0-5%,EA001-0,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +464,Cb15,EA001,0-5%,EA001-0,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +465,Cb16,EA001,6-15%,EA001-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +466,Cb17,EA001,0-5%,EA001-0,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +467,Cb18,EA001,0-5%,EA001-0,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +468,Cb19,EA001,6-15%,EA001-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +469,Cb2,EA001,0-5%,EA001-0,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +470,Cb20,EA001,0-5%,EA001-0,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +471,Cb21,EA001,0-5%,EA001-0,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +472,Cb22,EA001,0-5%,EA001-0,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +473,Cb23,EA001,0-5%,EA001-0,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +474,Cb24,EA001,0-5%,EA001-0,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +475,Cb25,EA001,0-5%,EA001-0,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +476,Cb26,EA001,6-15%,EA001-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +477,Cb27,EA001,0-5%,EA001-0,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +478,Cb28,EA001,0-5%,EA001-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +479,Cb29,EA001,6-15%,EA001-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +480,Cb3,EA001,0-5%,EA001-0,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +481,Cb4,EA001,0-5%,EA001-0,,reid1930,,1920,EthnographicAtlas_1967_p78, +482,Cb5,EA001,6-15%,EA001-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +483,Cb6,EA001,0-5%,EA001-0,,woodnd,,1920,EthnographicAtlas_1967_p78, +484,Cb7,EA001,6-15%,EA001-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +485,Cb8,EA001,0-5%,EA001-0,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +486,Cb9,EA001,6-15%,EA001-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +487,Cc1,EA001,0-5%,EA001-0,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +488,Cc10,EA001,6-15%,EA001-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +489,Cc11,EA001,6-15%,EA001-1,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +490,Cc12,EA001,16-25%,EA001-2,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +491,Cc13,EA001,16-25%,EA001-2,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +492,Cc14,EA001,6-15%,EA001-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +493,Cc15,EA001,0-5%,EA001-0,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +494,Cc16,EA001,0-5%,EA001-0,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +495,Cc17,EA001,0-5%,EA001-0,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +496,Cc18,EA001,16-25%,EA001-2,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +497,Cc19,EA001,0-5%,EA001-0,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +498,Cc2,EA001,16-25%,EA001-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +499,Cc20,EA001,0-5%,EA001-0,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +500,Cc3,EA001,0-5%,EA001-0,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +501,Cc4,EA001,0-5%,EA001-0,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +502,Cc5,EA001,0-5%,EA001-0,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +503,Cc6,EA001,0-5%,EA001-0,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +504,Cc7,EA001,0-5%,EA001-0,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +505,Cc8,EA001,0-5%,EA001-0,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +506,Cc9,EA001,6-15%,EA001-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +507,Cd1,EA001,0-5%,EA001-0,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +508,Cd10,EA001,0-5%,EA001-0,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +509,Cd11,EA001,0-5%,EA001-0,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +510,Cd12,EA001,0-5%,EA001-0,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +511,Cd13,EA001,0-5%,EA001-0,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +512,Cd14,EA001,0-5%,EA001-0,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +513,Cd15,EA001,0-5%,EA001-0,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +514,Cd16,EA001,0-5%,EA001-0,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +515,Cd17,EA001,0-5%,EA001-0,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +516,Cd18,EA001,0-5%,EA001-0,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +517,Cd19,EA001,0-5%,EA001-0,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +518,Cd2,EA001,0-5%,EA001-0,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +519,Cd20,EA001,0-5%,EA001-0,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +520,Cd21,EA001,0-5%,EA001-0,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +521,Cd3,EA001,0-5%,EA001-0,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +522,Cd4,EA001,0-5%,EA001-0,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +523,Cd5,EA001,6-15%,EA001-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +524,Cd6,EA001,0-5%,EA001-0,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +525,Cd7,EA001,0-5%,EA001-0,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +526,Cd8,EA001,6-15%,EA001-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +527,Cd9,EA001,0-5%,EA001-0,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +528,Ce1,EA001,0-5%,EA001-0,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +529,Ce2,EA001,0-5%,EA001-0,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +530,Ce3,EA001,0-5%,EA001-0,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +531,Ce4,EA001,0-5%,EA001-0,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +532,Ce5,EA001,0-5%,EA001-0,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +533,Ce6,EA001,0-5%,EA001-0,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +534,Ce7,EA001,0-5%,EA001-0,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +535,Ce8,EA001,0-5%,EA001-0,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +536,Cf1,EA001,0-5%,EA001-0,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +537,Cf2,EA001,0-5%,EA001-0,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +538,Cf3,EA001,6-15%,EA001-1,,munch1945,,1930,EthnographicAtlas_1967_p82, +539,Cf4,EA001,0-5%,EA001-0,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +540,Cf5,EA001,0-5%,EA001-0,,miner1939,,1930,EthnographicAtlas_1967_p82, +541,Cg1,EA001,0-5%,EA001-0,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +542,Cg2,EA001,0-5%,EA001-0,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +543,Cg3,EA001,0-5%,EA001-0,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +544,Cg4,EA001,0-5%,EA001-0,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +545,Cg5,EA001,0-5%,EA001-0,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +546,Ch1,EA001,0-5%,EA001-0,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +547,Ch10,EA001,0-5%,EA001-0,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +548,Ch11,EA001,0-5%,EA001-0,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +549,Ch2,EA001,0-5%,EA001-0,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +550,Ch3,EA001,0-5%,EA001-0,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +551,Ch4,EA001,0-5%,EA001-0,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +552,Ch5,EA001,0-5%,EA001-0,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +553,Ch6,EA001,0-5%,EA001-0,,ember1954,,1910,EthnographicAtlas_1967_p82, +554,Ch7,EA001,0-5%,EA001-0,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +555,Ch8,EA001,0-5%,EA001-0,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +556,Ch9,EA001,0-5%,EA001-0,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +557,Ci1,EA001,0-5%,EA001-0,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +558,Ci10,EA001,0-5%,EA001-0,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +559,Ci11,EA001,0-5%,EA001-0,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +560,Ci12,EA001,6-15%,EA001-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +561,Ci2,EA001,0-5%,EA001-0,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +562,Ci3,EA001,0-5%,EA001-0,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +563,Ci4,EA001,0-5%,EA001-0,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +564,Ci5,EA001,0-5%,EA001-0,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +565,Ci6,EA001,0-5%,EA001-0,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +566,Ci7,EA001,0-5%,EA001-0,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +567,Ci8,EA001,0-5%,EA001-0,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +568,Ci9,EA001,0-5%,EA001-0,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +569,Cj1,EA001,0-5%,EA001-0,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +570,Cj10,EA001,16-25%,EA001-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +571,Cj2,EA001,6-15%,EA001-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +572,Cj3,EA001,0-5%,EA001-0,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +573,Cj4,EA001,0-5%,EA001-0,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +574,Cj5,EA001,0-5%,EA001-0,,dickson1949,,1930,EthnographicAtlas_1967_p86, +575,Cj6,EA001,0-5%,EA001-0,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +576,Cj7,EA001,0-5%,EA001-0,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +577,Cj8,EA001,0-5%,EA001-0,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +578,Cj9,EA001,0-5%,EA001-0,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +579,Ea1,EA001,0-5%,EA001-0,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +580,Ea10,EA001,6-15%,EA001-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +581,Ea11,EA001,0-5%,EA001-0,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +582,Ea12,EA001,0-5%,EA001-0,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +583,Ea13,EA001,0-5%,EA001-0,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +584,Ea2,EA001,0-5%,EA001-0,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +585,Ea3,EA001,0-5%,EA001-0,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +586,Ea4,EA001,6-15%,EA001-1,,barth1956b,,1950,EthnographicAtlas_1967_p86, +587,Ea5,EA001,0-5%,EA001-0,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +588,Ea6,EA001,0-5%,EA001-0,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +589,Ea7,EA001,0-5%,EA001-0,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +590,Ea8,EA001,0-5%,EA001-0,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +591,Ea9,EA001,0-5%,EA001-0,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +592,Eb1,EA001,0-5%,EA001-0,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +593,Eb2,EA001,0-5%,EA001-0,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +594,Eb3,EA001,0-5%,EA001-0,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +595,Eb4,EA001,0-5%,EA001-0,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +596,Eb5,EA001,0-5%,EA001-0,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +597,Eb6,EA001,0-5%,EA001-0,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +598,Eb7,EA001,0-5%,EA001-0,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +599,Eb8,EA001,0-5%,EA001-0,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +600,Ec1,EA001,16-25%,EA001-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +601,Ec10,EA001,0-5%,EA001-0,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +602,Ec11,EA001,0-5%,EA001-0,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +603,Ec2,EA001,6-15%,EA001-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +604,Ec3,EA001,0-5%,EA001-0,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +605,Ec4,EA001,0-5%,EA001-0,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +606,Ec5,EA001,6-15%,EA001-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +607,Ec6,EA001,6-15%,EA001-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +608,Ec7,EA001,16-25%,EA001-2,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +609,Ec8,EA001,0-5%,EA001-0,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +610,Ec9,EA001,0-5%,EA001-0,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +611,Ed1,EA001,0-5%,EA001-0,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +612,Ed10,EA001,0-5%,EA001-0,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +613,Ed13,EA001,0-5%,EA001-0,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +614,Ed14,EA001,0-5%,EA001-0,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +615,Ed15a,EA001,0-5%,EA001-0,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +616,Ed15b,EA001,0-5%,EA001-0,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +617,Ed16,EA001,0-5%,EA001-0,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +618,Ed2,EA001,0-5%,EA001-0,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +619,Ed3,EA001,0-5%,EA001-0,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +620,Ed4,EA001,0-5%,EA001-0,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +621,Ed5,EA001,0-5%,EA001-0,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +622,Ed6,EA001,0-5%,EA001-0,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +623,Ed7,EA001,0-5%,EA001-0,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +624,Ed8,EA001,0-5%,EA001-0,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +625,Ed9,EA001,0-5%,EA001-0,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +626,Ee1,EA001,0-5%,EA001-0,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +627,Ee2,EA001,0-5%,EA001-0,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +628,Ee3,EA001,0-5%,EA001-0,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +629,Ee4,EA001,0-5%,EA001-0,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +630,Ee5,EA001,0-5%,EA001-0,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +631,Ee6,EA001,0-5%,EA001-0,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +632,Ee7,EA001,0-5%,EA001-0,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +633,Ee8,EA001,0-5%,EA001-0,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +634,Ef1,EA001,0-5%,EA001-0,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +635,Ef10,EA001,0-5%,EA001-0,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +636,Ef11,EA001,0-5%,EA001-0,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +637,Ef2,EA001,0-5%,EA001-0,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +638,Ef3,EA001,0-5%,EA001-0,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +639,Ef4,EA001,0-5%,EA001-0,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +640,Ef5,EA001,6-15%,EA001-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +641,Ef6,EA001,0-5%,EA001-0,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +642,Ef7,EA001,0-5%,EA001-0,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +643,Ef8,EA001,6-15%,EA001-1,But the Pandit themselves do not engage in food production,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +644,Ef9,EA001,0-5%,EA001-0,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +645,Eg1,EA001,76-85%,EA001-8,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +646,Eg10,EA001,0-5%,EA001-0,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +647,Eg11,EA001,6-15%,EA001-1,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +648,Eg12,EA001,0-5%,EA001-0,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +649,Eg13,EA001,6-15%,EA001-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +650,Eg14,EA001,16-25%,EA001-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +651,Eg2,EA001,0-5%,EA001-0,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +652,Eg3,EA001,16-25%,EA001-2,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +653,Eg4,EA001,6-15%,EA001-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +654,Eg5,EA001,0-5%,EA001-0,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +655,Eg6,EA001,0-5%,EA001-0,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +656,Eg7,EA001,6-15%,EA001-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +657,Eg8,EA001,6-15%,EA001-1,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +658,Eg9,EA001,6-15%,EA001-1,,elwin1939,,1930,EthnographicAtlas_1967_p90, +659,Eh1,EA001,36-45%,EA001-4,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +660,Eh10,EA001,0-5%,EA001-0,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +661,Eh2,EA001,0-5%,EA001-0,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +662,Eh3,EA001,0-5%,EA001-0,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +663,Eh4,EA001,36-45%,EA001-4,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +664,Eh5,EA001,6-15%,EA001-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +665,Eh6,EA001,0-5%,EA001-0,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +666,Eh7,EA001,16-25%,EA001-2,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +667,Eh8,EA001,0-5%,EA001-0,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +668,Eh9,EA001,0-5%,EA001-0,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +669,Ei1,EA001,0-5%,EA001-0,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +670,Ei10,EA001,0-5%,EA001-0,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +671,Ei11,EA001,0-5%,EA001-0,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +672,Ei12,EA001,0-5%,EA001-0,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +673,Ei13,EA001,0-5%,EA001-0,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +674,Ei14,EA001,0-5%,EA001-0,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +675,Ei15,EA001,0-5%,EA001-0,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +676,Ei16,EA001,0-5%,EA001-0,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +677,Ei17,EA001,0-5%,EA001-0,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +678,Ei18,EA001,0-5%,EA001-0,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +679,Ei19,EA001,0-5%,EA001-0,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +680,Ei2,EA001,6-15%,EA001-1,,mills1922,,1920,EthnographicAtlas_1967_p90, +681,Ei20,EA001,0-5%,EA001-0,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +682,Ei3,EA001,0-5%,EA001-0,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +683,Ei4,EA001,0-5%,EA001-0,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +684,Ei5,EA001,6-15%,EA001-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +685,Ei6,EA001,0-5%,EA001-0,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +686,Ei7,EA001,0-5%,EA001-0,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +687,Ei8,EA001,6-15%,EA001-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +688,Ei9,EA001,0-5%,EA001-0,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +689,Ej1,EA001,6-15%,EA001-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +690,Ej10,EA001,0-5%,EA001-0,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +691,Ej11,EA001,0-5%,EA001-0,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +692,Ej12,EA001,0-5%,EA001-0,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +693,Ej13,EA001,0-5%,EA001-0,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +694,Ej14,EA001,6-15%,EA001-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +695,Ej15,EA001,6-15%,EA001-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +696,Ej16,EA001,0-5%,EA001-0,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +697,Ej2,EA001,6-15%,EA001-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +698,Ej3,EA001,36-45%,EA001-4,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +699,Ej4,EA001,0-5%,EA001-0,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +700,Ej5,EA001,6-15%,EA001-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +701,Ej6,EA001,6-15%,EA001-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +702,Ej7,EA001,6-15%,EA001-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +703,Ej8,EA001,0-5%,EA001-0,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +704,Ej9,EA001,0-5%,EA001-0,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +705,Ia1,EA001,0-5%,EA001-0,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +706,Ia10,EA001,0-5%,EA001-0,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +707,Ia11,EA001,0-5%,EA001-0,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +708,Ia12,EA001,0-5%,EA001-0,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +709,Ia13,EA001,0-5%,EA001-0,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +710,Ia14,EA001,0-5%,EA001-0,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +711,Ia15,EA001,6-15%,EA001-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +712,Ia16,EA001,0-5%,EA001-0,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +713,Ia17,EA001,0-5%,EA001-0,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +714,Ia18,EA001,0-5%,EA001-0,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +715,Ia2,EA001,0-5%,EA001-0,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +716,Ia3,EA001,0-5%,EA001-0,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +717,Ia4,EA001,0-5%,EA001-0,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +718,Ia5,EA001,6-15%,EA001-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +719,Ia6,EA001,0-5%,EA001-0,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +720,Ia7,EA001,0-5%,EA001-0,,fox1954,,1950,EthnographicAtlas_1967_p90, +721,Ia8,EA001,0-5%,EA001-0,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +722,Ia9,EA001,0-5%,EA001-0,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +723,Ib1,EA001,0-5%,EA001-0,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +724,Ib2,EA001,0-5%,EA001-0,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +725,Ib3,EA001,0-5%,EA001-0,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +726,Ib4,EA001,0-5%,EA001-0,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +727,Ib5,EA001,0-5%,EA001-0,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +728,Ib6,EA001,0-5%,EA001-0,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +729,Ib7,EA001,0-5%,EA001-0,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +730,Ib8,EA001,26-35%,EA001-3,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +731,Ib9,EA001,0-5%,EA001-0,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +732,Ic1,EA001,0-5%,EA001-0,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +733,Ic10,EA001,6-15%,EA001-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +734,Ic11,EA001,0-5%,EA001-0,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +735,Ic12,EA001,0-5%,EA001-0,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +736,Ic13,EA001,0-5%,EA001-0,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +737,Ic2,EA001,16-25%,EA001-2,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +738,Ic3,EA001,0-5%,EA001-0,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +739,Ic4,EA001,0-5%,EA001-0,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +740,Ic5,EA001,0-5%,EA001-0,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +741,Ic6,EA001,6-15%,EA001-1,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +742,Ic7,EA001,0-5%,EA001-0,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +743,Ic8,EA001,6-15%,EA001-1,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +744,Ic9,EA001,0-5%,EA001-0,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +745,Id1,EA001,56-65%,EA001-6,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +746,Id10,EA001,56-65%,EA001-6,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +747,Id11,EA001,46-55%,EA001-5,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +748,Id12,EA001,46-55%,EA001-5,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +749,Id13,EA001,26-35%,EA001-3,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +750,Id2,EA001,46-55%,EA001-5,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +751,Id3,EA001,46-55%,EA001-5,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +752,Id4,EA001,66-75%,EA001-7,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +753,Id5,EA001,26-35%,EA001-3,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +754,Id6,EA001,36-45%,EA001-4,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +755,Id7,EA001,66-75%,EA001-7,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +756,Id8,EA001,36-45%,EA001-4,,roth1890,,1830,EthnographicAtlas_1967_p94, +757,Id9,EA001,26-35%,EA001-3,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +758,Ie1,EA001,0-5%,EA001-0,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +759,Ie10,EA001,6-15%,EA001-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +760,Ie11,EA001,6-15%,EA001-1,,bowers1964,,1950,EthnographicAtlas_1967_p94, +761,Ie12,EA001,26-35%,EA001-3,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +762,Ie13,EA001,6-15%,EA001-1,,landtman1927,,1920,EthnographicAtlas_1967_p94, +763,Ie14,EA001,0-5%,EA001-0,,haddon1908,,1900,EthnographicAtlas_1967_p94, +764,Ie15,EA001,16-25%,EA001-2,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +765,Ie16,EA001,36-45%,EA001-4,,williams194041,,1940,EthnographicAtlas_1967_p94, +766,Ie17,EA001,6-15%,EA001-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +767,Ie18,EA001,16-25%,EA001-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +768,Ie19,EA001,6-15%,EA001-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +769,Ie2,EA001,0-5%,EA001-0,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +770,Ie20,EA001,6-15%,EA001-1,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +771,Ie21,EA001,6-15%,EA001-1,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +772,Ie22,EA001,6-15%,EA001-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +773,Ie23,EA001,6-15%,EA001-1,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +774,Ie24,EA001,6-15%,EA001-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +775,Ie25,EA001,0-5%,EA001-0,,williamson1912,,1920,EthnographicAtlas_1967_p94, +776,Ie26,EA001,6-15%,EA001-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +777,Ie27,EA001,16-25%,EA001-2,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +778,Ie28,EA001,6-15%,EA001-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +779,Ie29,EA001,0-5%,EA001-0,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +780,Ie3,EA001,16-25%,EA001-2,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +781,Ie30,EA001,36-45%,EA001-4,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +782,Ie31,EA001,6-15%,EA001-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +783,Ie32,EA001,0-5%,EA001-0,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +784,Ie33,EA001,56-65%,EA001-6,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +785,Ie34,EA001,46-55%,EA001-5,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +786,Ie35,EA001,0-5%,EA001-0,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +787,Ie36,EA001,46-55%,EA001-5,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +788,Ie37,EA001,6-15%,EA001-1,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +789,Ie38,EA001,0-5%,EA001-0,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +790,Ie39,EA001,26-35%,EA001-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +791,Ie4,EA001,16-25%,EA001-2,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +792,Ie5,EA001,0-5%,EA001-0,,williams1936,,1930,EthnographicAtlas_1967_p94, +793,Ie6,EA001,26-35%,EA001-3,,held1947,,1930,EthnographicAtlas_1967_p94, +794,Ie7,EA001,0-5%,EA001-0,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +795,Ie8,EA001,36-45%,EA001-4,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +796,Ie9,EA001,6-15%,EA001-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +797,If1,EA001,0-5%,EA001-0,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +798,If10,EA001,0-5%,EA001-0,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +799,If11,EA001,0-5%,EA001-0,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +800,If12,EA001,0-5%,EA001-0,,mason1954,,1940,EthnographicAtlas_1967_p98, +801,If13,EA001,0-5%,EA001-0,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +802,If14,EA001,0-5%,EA001-0,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +803,If15,EA001,0-5%,EA001-0,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +804,If16,EA001,0-5%,EA001-0,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +805,If17,EA001,6-15%,EA001-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +806,If2,EA001,0-5%,EA001-0,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +807,If3,EA001,0-5%,EA001-0,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +808,If4,EA001,0-5%,EA001-0,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +809,If5,EA001,0-5%,EA001-0,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +810,If6,EA001,0-5%,EA001-0,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +811,If7,EA001,6-15%,EA001-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +812,If8,EA001,0-5%,EA001-0,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +813,If9,EA001,0-5%,EA001-0,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +814,Ig1,EA001,16-25%,EA001-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +815,Ig10,EA001,16-25%,EA001-2,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +816,Ig11,EA001,26-35%,EA001-3,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +817,Ig12,EA001,6-15%,EA001-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +818,Ig13,EA001,0-5%,EA001-0,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +819,Ig14,EA001,0-5%,EA001-0,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +820,Ig15,EA001,16-25%,EA001-2,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +821,Ig16,EA001,0-5%,EA001-0,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +822,Ig17,EA001,0-5%,EA001-0,Primarily traders,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +823,Ig18,EA001,0-5%,EA001-0,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +824,Ig19,EA001,0-5%,EA001-0,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +825,Ig2,EA001,6-15%,EA001-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +826,Ig20,EA001,0-5%,EA001-0,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +827,Ig21,EA001,0-5%,EA001-0,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +828,Ig3,EA001,6-15%,EA001-1,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +829,Ig4,EA001,0-5%,EA001-0,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +830,Ig5,EA001,0-5%,EA001-0,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +831,Ig6,EA001,0-5%,EA001-0,,ivens1927,,1900,EthnographicAtlas_1967_p98, +832,Ig7,EA001,16-25%,EA001-2,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +833,Ig8,EA001,0-5%,EA001-0,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +834,Ig9,EA001,0-5%,EA001-0,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +835,Ih1,EA001,0-5%,EA001-0,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +836,Ih10,EA001,0-5%,EA001-0,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +837,Ih11,EA001,0-5%,EA001-0,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +838,Ih12,EA001,0-5%,EA001-0,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +839,Ih13,EA001,0-5%,EA001-0,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +840,Ih14,EA001,6-15%,EA001-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +841,Ih2,EA001,0-5%,EA001-0,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +842,Ih3,EA001,6-15%,EA001-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +843,Ih4,EA001,0-5%,EA001-0,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +844,Ih5,EA001,0-5%,EA001-0,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +845,Ih6,EA001,0-5%,EA001-0,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +846,Ih7,EA001,6-15%,EA001-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +847,Ih8,EA001,0-5%,EA001-0,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +848,Ih9,EA001,0-5%,EA001-0,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +849,Ii1,EA001,0-5%,EA001-0,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +850,Ii10,EA001,0-5%,EA001-0,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +851,Ii12,EA001,0-5%,EA001-0,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +852,Ii13,EA001,0-5%,EA001-0,,burrows1937,,1830,EthnographicAtlas_1967_p98, +853,Ii14,EA001,0-5%,EA001-0,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +854,Ii2,EA001,0-5%,EA001-0,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +855,Ii3,EA001,0-5%,EA001-0,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +856,Ii4,EA001,0-5%,EA001-0,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +857,Ii5,EA001,0-5%,EA001-0,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +858,Ii6,EA001,0-5%,EA001-0,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +859,Ii7,EA001,0-5%,EA001-0,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +860,Ii8,EA001,0-5%,EA001-0,,burrows1936,,1840,EthnographicAtlas_1967_p98, +861,Ii9,EA001,0-5%,EA001-0,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +862,Ij1,EA001,0-5%,EA001-0,,buck1934,,1820,EthnographicAtlas_1967_p98, +863,Ij10,EA001,0-5%,EA001-0,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +864,Ij2,EA001,26-35%,EA001-3,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +865,Ij3,EA001,0-5%,EA001-0,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +866,Ij4,EA001,0-5%,EA001-0,,buck1932a,,1850,EthnographicAtlas_1967_p102, +867,Ij5,EA001,6-15%,EA001-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +868,Ij6,EA001,6-15%,EA001-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +869,Ij7,EA001,0-5%,EA001-0,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +870,Ij8,EA001,0-5%,EA001-0,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +871,Ij9,EA001,0-5%,EA001-0,,metraux1940,,1860,EthnographicAtlas_1967_p102, +872,Na1,EA001,16-25%,EA001-2,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +873,Na10,EA001,0-5%,EA001-0,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +874,Na11,EA001,0-5%,EA001-0,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +875,Na12,EA001,6-15%,EA001-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +876,Na13,EA001,0-5%,EA001-0,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +877,Na14,EA001,6-15%,EA001-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +878,Na15,EA001,16-25%,EA001-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +879,Na16,EA001,6-15%,EA001-1,,osgood1931,,1860,EthnographicAtlas_1967_p102, +880,Na17,EA001,6-15%,EA001-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +881,Na19,EA001,16-25%,EA001-2,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +882,Na2,EA001,0-5%,EA001-0,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +883,Na20,EA001,6-15%,EA001-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +884,Na21,EA001,6-15%,EA001-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +885,Na22,EA001,0-5%,EA001-0,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +886,Na23,EA001,0-5%,EA001-0,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +887,Na24,EA001,0-5%,EA001-0,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +888,Na25,EA001,6-15%,EA001-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +889,Na26,EA001,6-15%,EA001-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +890,Na27,EA001,6-15%,EA001-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +891,Na28,EA001,6-15%,EA001-1,,jenness1937,,1880,EthnographicAtlas_1967_p102, +892,Na29,EA001,26-35%,EA001-3,,goddard1916,,1850,EthnographicAtlas_1967_p102, +893,Na3,EA001,0-5%,EA001-0,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +894,Na30,EA001,0-5%,EA001-0,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +895,Na31,EA001,16-25%,EA001-2,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +896,Na32,EA001,16-25%,EA001-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +897,Na33,EA001,16-25%,EA001-2,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +898,Na34,EA001,16-25%,EA001-2,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +899,Na35,EA001,16-25%,EA001-2,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +900,Na36,EA001,16-25%,EA001-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +901,Na37,EA001,26-35%,EA001-3,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +902,Na38,EA001,26-35%,EA001-3,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +903,Na39,EA001,26-35%,EA001-3,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +904,Na4,EA001,6-15%,EA001-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +905,Na40,EA001,6-15%,EA001-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +906,Na41,EA001,6-15%,EA001-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +907,Na42,EA001,6-15%,EA001-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +908,Na43,EA001,0-5%,EA001-0,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +909,Na44,EA001,0-5%,EA001-0,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +910,Na45,EA001,6-15%,EA001-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +911,Na5,EA001,6-15%,EA001-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +912,Na6,EA001,6-15%,EA001-1,,lantis1946,,1930,EthnographicAtlas_1967_p102, +913,Na7,EA001,6-15%,EA001-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +914,Na8,EA001,6-15%,EA001-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +915,Na9,EA001,6-15%,EA001-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +916,Nb1,EA001,16-25%,EA001-2,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +917,Nb10,EA001,6-15%,EA001-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +918,Nb11,EA001,16-25%,EA001-2,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +919,Nb12,EA001,16-25%,EA001-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +920,Nb13,EA001,16-25%,EA001-2,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +921,Nb14,EA001,16-25%,EA001-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +922,Nb15,EA001,26-35%,EA001-3,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +923,Nb16,EA001,6-15%,EA001-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +924,Nb17,EA001,26-35%,EA001-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +925,Nb18,EA001,6-15%,EA001-1,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +926,Nb19,EA001,16-25%,EA001-2,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +927,Nb2,EA001,6-15%,EA001-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +928,Nb20,EA001,16-25%,EA001-2,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +929,Nb21,EA001,6-15%,EA001-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +930,Nb22,EA001,6-15%,EA001-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +931,Nb23,EA001,16-25%,EA001-2,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +932,Nb24,EA001,16-25%,EA001-2,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +933,Nb25,EA001,16-25%,EA001-2,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +934,Nb26,EA001,16-25%,EA001-2,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +935,Nb27,EA001,26-35%,EA001-3,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +936,Nb28,EA001,6-15%,EA001-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +937,Nb29,EA001,6-15%,EA001-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +938,Nb3,EA001,26-35%,EA001-3,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +939,Nb30,EA001,36-45%,EA001-4,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +940,Nb31,EA001,26-35%,EA001-3,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +941,Nb32,EA001,36-45%,EA001-4,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +942,Nb33,EA001,36-45%,EA001-4,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +943,Nb34,EA001,36-45%,EA001-4,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +944,Nb35,EA001,36-45%,EA001-4,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +945,Nb36,EA001,36-45%,EA001-4,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +946,Nb37,EA001,26-35%,EA001-3,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +947,Nb38,EA001,26-35%,EA001-3,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +948,Nb39,EA001,36-45%,EA001-4,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +949,Nb4,EA001,36-45%,EA001-4,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +950,Nb5,EA001,16-25%,EA001-2,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +951,Nb6,EA001,36-45%,EA001-4,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +952,Nb7,EA001,16-25%,EA001-2,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +953,Nb8,EA001,16-25%,EA001-2,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +954,Nb9,EA001,16-25%,EA001-2,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +955,Nc1,EA001,56-65%,EA001-6,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +956,Nc10,EA001,26-35%,EA001-3,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +957,Nc11,EA001,46-55%,EA001-5,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +958,Nc12,EA001,46-55%,EA001-5,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +959,Nc13,EA001,46-55%,EA001-5,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +960,Nc14,EA001,26-35%,EA001-3,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +961,Nc15,EA001,36-45%,EA001-4,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +962,Nc16,EA001,36-45%,EA001-4,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +963,Nc17,EA001,46-55%,EA001-5,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +964,Nc18,EA001,36-45%,EA001-4,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +965,Nc19,EA001,36-45%,EA001-4,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +966,Nc2,EA001,46-55%,EA001-5,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +967,Nc20,EA001,46-55%,EA001-5,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +968,Nc21,EA001,36-45%,EA001-4,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +969,Nc22,EA001,46-55%,EA001-5,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +970,Nc23,EA001,46-55%,EA001-5,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +971,Nc24,EA001,46-55%,EA001-5,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +972,Nc25,EA001,36-45%,EA001-4,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +973,Nc26,EA001,46-55%,EA001-5,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +974,Nc27,EA001,46-55%,EA001-5,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +975,Nc28,EA001,36-45%,EA001-4,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +976,Nc29,EA001,36-45%,EA001-4,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +977,Nc3,EA001,36-45%,EA001-4,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +978,Nc30,EA001,56-65%,EA001-6,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +979,Nc31,EA001,56-65%,EA001-6,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +980,Nc32,EA001,56-65%,EA001-6,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +981,Nc33,EA001,56-65%,EA001-6,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +982,Nc34,EA001,36-45%,EA001-4,,meigs1939,,1880,EthnographicAtlas_1967_p106, +983,Nc4,EA001,36-45%,EA001-4,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +984,Nc5,EA001,56-65%,EA001-6,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +985,Nc6,EA001,46-55%,EA001-5,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +986,Nc7,EA001,36-45%,EA001-4,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +987,Nc8,EA001,26-35%,EA001-3,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +988,Nc9,EA001,46-55%,EA001-5,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +989,Nd1,EA001,26-35%,EA001-3,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +990,Nd10,EA001,16-25%,EA001-2,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +991,Nd11,EA001,26-35%,EA001-3,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +992,Nd12,EA001,26-35%,EA001-3,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +993,Nd13,EA001,26-35%,EA001-3,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +994,Nd14,EA001,26-35%,EA001-3,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +995,Nd15,EA001,26-35%,EA001-3,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +996,Nd16,EA001,26-35%,EA001-3,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +997,Nd17,EA001,26-35%,EA001-3,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +998,Nd18,EA001,26-35%,EA001-3,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +999,Nd19,EA001,26-35%,EA001-3,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +1000,Nd2,EA001,26-35%,EA001-3,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +1001,Nd20,EA001,26-35%,EA001-3,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +1002,Nd21,EA001,36-45%,EA001-4,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +1003,Nd22,EA001,46-55%,EA001-5,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +1004,Nd23,EA001,46-55%,EA001-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +1005,Nd24,EA001,36-45%,EA001-4,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +1006,Nd25,EA001,46-55%,EA001-5,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +1007,Nd26,EA001,56-65%,EA001-6,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +1008,Nd27,EA001,46-55%,EA001-5,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +1009,Nd28,EA001,56-65%,EA001-6,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +1010,Nd29,EA001,56-65%,EA001-6,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +1011,Nd3,EA001,26-35%,EA001-3,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +1012,Nd30,EA001,46-55%,EA001-5,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +1013,Nd31,EA001,56-65%,EA001-6,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +1014,Nd32,EA001,56-65%,EA001-6,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +1015,Nd33,EA001,76-85%,EA001-8,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +1016,Nd34,EA001,56-65%,EA001-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +1017,Nd35,EA001,56-65%,EA001-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +1018,Nd36,EA001,66-75%,EA001-7,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +1019,Nd37,EA001,66-75%,EA001-7,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +1020,Nd38,EA001,56-65%,EA001-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +1021,Nd39,EA001,46-55%,EA001-5,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +1022,Nd4,EA001,26-35%,EA001-3,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +1023,Nd40,EA001,56-65%,EA001-6,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +1024,Nd41,EA001,56-65%,EA001-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +1025,Nd42,EA001,46-55%,EA001-5,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +1026,Nd43,EA001,46-55%,EA001-5,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +1027,Nd44,EA001,26-35%,EA001-3,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +1028,Nd45,EA001,26-35%,EA001-3,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +1029,Nd46,EA001,26-35%,EA001-3,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +1030,Nd47,EA001,26-35%,EA001-3,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +1031,Nd48,EA001,46-55%,EA001-5,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +1032,Nd49,EA001,46-55%,EA001-5,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +1033,Nd5,EA001,46-55%,EA001-5,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +1034,Nd50,EA001,56-65%,EA001-6,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +1035,Nd51,EA001,56-65%,EA001-6,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +1036,Nd52,EA001,46-55%,EA001-5,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +1037,Nd53,EA001,66-75%,EA001-7,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +1038,Nd54,EA001,56-65%,EA001-6,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1039,Nd55,EA001,56-65%,EA001-6,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +1040,Nd56,EA001,46-55%,EA001-5,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +1041,Nd57,EA001,26-35%,EA001-3,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +1042,Nd58,EA001,26-35%,EA001-3,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +1043,Nd59,EA001,26-35%,EA001-3,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +1044,Nd6,EA001,36-45%,EA001-4,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +1045,Nd60,EA001,36-45%,EA001-4,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +1046,Nd61,EA001,26-35%,EA001-3,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +1047,Nd62,EA001,36-45%,EA001-4,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +1048,Nd63,EA001,26-35%,EA001-3,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +1049,Nd64,EA001,26-35%,EA001-3,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +1050,Nd65,EA001,56-65%,EA001-6,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +1051,Nd66,EA001,56-65%,EA001-6,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +1052,Nd67,EA001,56-65%,EA001-6,,gifford1936,,1870,EthnographicAtlas_1967_p110, +1053,Nd7,EA001,26-35%,EA001-3,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +1054,Nd8,EA001,16-25%,EA001-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +1055,Nd9,EA001,16-25%,EA001-2,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +1056,Ne1,EA001,16-25%,EA001-2,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +1057,Ne10,EA001,0-5%,EA001-0,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +1058,Ne11,EA001,16-25%,EA001-2,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +1059,Ne12,EA001,16-25%,EA001-2,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +1060,Ne13,EA001,16-25%,EA001-2,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +1061,Ne14,EA001,16-25%,EA001-2,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +1062,Ne15,EA001,6-15%,EA001-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +1063,Ne16,EA001,26-35%,EA001-3,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +1064,Ne17,EA001,6-15%,EA001-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +1065,Ne18,EA001,16-25%,EA001-2,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +1066,Ne19,EA001,16-25%,EA001-2,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +1067,Ne2,EA001,16-25%,EA001-2,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +1068,Ne20,EA001,6-15%,EA001-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +1069,Ne21,EA001,36-45%,EA001-4,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968, +1070,Ne3,EA001,6-15%,EA001-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +1071,Ne4,EA001,16-25%,EA001-2,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +1072,Ne5,EA001,16-25%,EA001-2,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +1073,Ne6,EA001,0-5%,EA001-0,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +1074,Ne7,EA001,16-25%,EA001-2,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +1075,Ne8,EA001,6-15%,EA001-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +1076,Ne9,EA001,16-25%,EA001-2,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +1077,Nf10,EA001,0-5%,EA001-0,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +1078,Nf11,EA001,0-5%,EA001-0,,whitman1937,,1870,EthnographicAtlas_1967_p114, +1079,Nf12,EA001,16-25%,EA001-2,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +1080,Nf13,EA001,6-15%,EA001-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1081,Nf14,EA001,16-25%,EA001-2,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +1082,Nf15,EA001,16-25%,EA001-2,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +1083,Nf2,EA001,16-25%,EA001-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +1084,Nf3,EA001,6-15%,EA001-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +1085,Nf4,EA001,16-25%,EA001-2,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +1086,Nf5,EA001,6-15%,EA001-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +1087,Nf6,EA001,6-15%,EA001-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +1088,Nf7,EA001,6-15%,EA001-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1089,Nf8,EA001,6-15%,EA001-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +1090,Nf9,EA001,36-45%,EA001-4,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +1091,Ng1,EA001,6-15%,EA001-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +1092,Ng10,EA001,6-15%,EA001-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +1093,Ng11,EA001,6-15%,EA001-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +1094,Ng12,EA001,16-25%,EA001-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +1095,Ng13,EA001,6-15%,EA001-1,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +1096,Ng14,EA001,0-5%,EA001-0,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +1097,Ng15,EA001,16-25%,EA001-2,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +1098,Ng2,EA001,?,EA001-NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +1099,Ng3,EA001,16-25%,EA001-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +1100,Ng4,EA001,16-25%,EA001-2,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +1101,Ng5,EA001,6-15%,EA001-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +1102,Ng6,EA001,16-25%,EA001-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +1103,Ng7,EA001,0-5%,EA001-0,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +1104,Ng8,EA001,16-25%,EA001-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +1105,Ng9,EA001,0-5%,EA001-0,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +1106,Nh1,EA001,56-65%,EA001-6,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +1107,Nh10,EA001,6-15%,EA001-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +1108,Nh11,EA001,0-5%,EA001-0,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +1109,Nh12,EA001,6-15%,EA001-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +1110,Nh13,EA001,6-15%,EA001-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +1111,Nh14,EA001,6-15%,EA001-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +1112,Nh15,EA001,36-45%,EA001-4,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +1113,Nh16,EA001,26-35%,EA001-3,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1114,Nh17,EA001,26-35%,EA001-3,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +1115,Nh18,EA001,6-15%,EA001-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1116,Nh19,EA001,16-25%,EA001-2,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +1117,Nh2,EA001,0-5%,EA001-0,,dozier1954,,1950,EthnographicAtlas_1967_p114, +1118,Nh20,EA001,16-25%,EA001-2,,gifford1931,,1860,EthnographicAtlas_1967_p114, +1119,Nh21,EA001,26-35%,EA001-3,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1120,Nh22,EA001,16-25%,EA001-2,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +1121,Nh23,EA001,56-65%,EA001-6,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +1122,Nh24,EA001,56-65%,EA001-6,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +1123,Nh25,EA001,0-5%,EA001-0,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +1124,Nh26,EA001,0-5%,EA001-0,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +1125,Nh27,EA001,0-5%,EA001-0,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +1126,Nh3,EA001,16-25%,EA001-2,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +1127,Nh4,EA001,6-15%,EA001-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +1128,Nh5,EA001,36-45%,EA001-4,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +1129,Nh6,EA001,0-5%,EA001-0,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +1130,Nh7,EA001,0-5%,EA001-0,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +1131,Nh8,EA001,6-15%,EA001-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +1132,Nh9,EA001,0-5%,EA001-0,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +1133,Ni1,EA001,6-15%,EA001-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +1134,Ni2,EA001,26-35%,EA001-3,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +1135,Ni3,EA001,6-15%,EA001-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +1136,Ni4,EA001,16-25%,EA001-2,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +1137,Ni5,EA001,46-55%,EA001-5,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +1138,Ni6,EA001,26-35%,EA001-3,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +1139,Ni7,EA001,16-25%,EA001-2,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +1140,Ni8,EA001,16-25%,EA001-2,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +1141,Ni9,EA001,0-5%,EA001-0,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968, +1142,Nj1,EA001,0-5%,EA001-0,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1143,Nj10,EA001,0-5%,EA001-0,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1144,Nj11,EA001,0-5%,EA001-0,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +1145,Nj12,EA001,0-5%,EA001-0,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968, +1146,Nj13,EA001,0-5%,EA001-0,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +1147,Nj14,EA001,0-5%,EA001-0,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +1148,Nj2,EA001,0-5%,EA001-0,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +1149,Nj3,EA001,0-5%,EA001-0,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +1150,Nj4,EA001,6-15%,EA001-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +1151,Nj5,EA001,0-5%,EA001-0,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +1152,Nj6,EA001,0-5%,EA001-0,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +1153,Nj7,EA001,0-5%,EA001-0,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1154,Nj8,EA001,0-5%,EA001-0,,foster1948,,1500,EthnographicAtlas_1967_p118, +1155,Nj9,EA001,0-5%,EA001-0,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +1156,Sa1,EA001,0-5%,EA001-0,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +1157,Sa10,EA001,0-5%,EA001-0,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +1158,Sa11,EA001,0-5%,EA001-0,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +1159,Sa12,EA001,6-15%,EA001-1,,stone1948,,1948,EthnographicAtlas_1967_p118, +1160,Sa13,EA001,0-5%,EA001-0,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +1161,Sa14,EA001,16-25%,EA001-2,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +1162,Sa15,EA001,0-5%,EA001-0,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +1163,Sa16,EA001,0-5%,EA001-0,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +1164,Sa17,EA001,0-5%,EA001-0,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +1165,Sa2,EA001,0-5%,EA001-0,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1166,Sa3,EA001,0-5%,EA001-0,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +1167,Sa4,EA001,6-15%,EA001-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +1168,Sa5,EA001,6-15%,EA001-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +1169,Sa6,EA001,0-5%,EA001-0,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +1170,Sa7,EA001,0-5%,EA001-0,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +1171,Sa8,EA001,0-5%,EA001-0,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +1172,Sa9,EA001,26-35%,EA001-3,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +1173,Sb1,EA001,0-5%,EA001-0,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +1174,Sb2,EA001,0-5%,EA001-0,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +1175,Sb3,EA001,36-45%,EA001-4,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +1176,Sb4,EA001,0-5%,EA001-0,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +1177,Sb5,EA001,26-35%,EA001-3,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +1178,Sb6,EA001,0-5%,EA001-0,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +1179,Sb7,EA001,26-35%,EA001-3,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +1180,Sb8,EA001,6-15%,EA001-1,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +1181,Sb9,EA001,0-5%,EA001-0,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +1182,Sc1,EA001,36-45%,EA001-4,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +1183,Sc10,EA001,6-15%,EA001-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +1184,Sc11,EA001,0-5%,EA001-0,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +1185,Sc12,EA001,6-15%,EA001-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +1186,Sc13,EA001,0-5%,EA001-0,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +1187,Sc14,EA001,6-15%,EA001-1,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +1188,Sc15,EA001,6-15%,EA001-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +1189,Sc16,EA001,16-25%,EA001-2,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +1190,Sc17,EA001,0-5%,EA001-0,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +1191,Sc18,EA001,0-5%,EA001-0,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +1192,Sc2,EA001,16-25%,EA001-2,,leedsnd,,1950,EthnographicAtlas_1967_p118, +1193,Sc3,EA001,16-25%,EA001-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +1194,Sc4,EA001,6-15%,EA001-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +1195,Sc5,EA001,16-25%,EA001-2,,farabee1918,,1900,EthnographicAtlas_1967_p118, +1196,Sc6,EA001,6-15%,EA001-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1197,Sc7,EA001,6-15%,EA001-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +1198,Sc8,EA001,16-25%,EA001-2,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +1199,Sc9,EA001,0-5%,EA001-0,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +1200,Sd1,EA001,6-15%,EA001-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1201,Sd2,EA001,6-15%,EA001-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +1202,Sd3,EA001,0-5%,EA001-0,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +1203,Sd4,EA001,16-25%,EA001-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +1204,Sd5,EA001,6-15%,EA001-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +1205,Sd6,EA001,26-35%,EA001-3,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +1206,Sd7,EA001,6-15%,EA001-1,,fock1963,,1950,EthnographicAtlas_1967_p118, +1207,Sd8,EA001,26-35%,EA001-3,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +1208,Sd9,EA001,6-15%,EA001-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1209,Se1,EA001,26-35%,EA001-3,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +1210,Se10,EA001,0-5%,EA001-0,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +1211,Se11,EA001,16-25%,EA001-2,,prost1965,,1960,EthnographicAtlas_1967_p122, +1212,Se12,EA001,0-5%,EA001-0,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +1213,Se2,EA001,6-15%,EA001-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +1214,Se3,EA001,6-15%,EA001-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +1215,Se4,EA001,0-5%,EA001-0,,fejos1943,,1940,EthnographicAtlas_1967_p118, +1216,Se5,EA001,6-15%,EA001-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +1217,Se6,EA001,16-25%,EA001-2,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +1218,Se7,EA001,0-5%,EA001-0,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1219,Se8,EA001,0-5%,EA001-0,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +1220,Se9,EA001,6-15%,EA001-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +1221,Sf1,EA001,0-5%,EA001-0,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +1222,Sf2,EA001,0-5%,EA001-0,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +1223,Sf3,EA001,6-15%,EA001-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +1224,Sf4,EA001,6-15%,EA001-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +1225,Sf5,EA001,6-15%,EA001-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +1226,Sf6,EA001,0-5%,EA001-0,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +1227,Sf7,EA001,0-5%,EA001-0,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +1228,Sf8,EA001,0-5%,EA001-0,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +1229,Sf9,EA001,0-5%,EA001-0,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +1230,Sg1,EA001,6-15%,EA001-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +1231,Sg2,EA001,6-15%,EA001-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1232,Sg3,EA001,6-15%,EA001-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +1233,Sg4,EA001,16-25%,EA001-2,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +1234,Sg5,EA001,6-15%,EA001-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1235,Sh1,EA001,16-25%,EA001-2,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +1236,Sh2,EA001,16-25%,EA001-2,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +1237,Sh3,EA001,16-25%,EA001-2,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +1238,Sh4,EA001,0-5%,EA001-0,,oberg1949,,1940,EthnographicAtlas_1967_p122, +1239,Sh5,EA001,36-45%,EA001-4,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +1240,Sh6,EA001,56-65%,EA001-6,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +1241,Sh7,EA001,6-15%,EA001-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +1242,Sh8,EA001,16-25%,EA001-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +1243,Sh9,EA001,16-25%,EA001-2,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +1244,Si1,EA001,36-45%,EA001-4,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1245,Si10,EA001,6-15%,EA001-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +1246,Si2,EA001,16-25%,EA001-2,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +1247,Si3,EA001,0-5%,EA001-0,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1248,Si4,EA001,36-45%,EA001-4,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +1249,Si5,EA001,16-25%,EA001-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +1250,Si6,EA001,36-45%,EA001-4,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +1251,Si7,EA001,16-25%,EA001-2,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +1252,Si8,EA001,16-25%,EA001-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +1253,Si9,EA001,16-25%,EA001-2,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +1254,Sj1,EA001,16-25%,EA001-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +1255,Sj10,EA001,16-25%,EA001-2,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1256,Sj11,EA001,36-45%,EA001-4,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +1257,Sj2,EA001,16-25%,EA001-2,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +1258,Sj3,EA001,36-45%,EA001-4,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +1259,Sj4,EA001,16-25%,EA001-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +1260,Sj5,EA001,46-55%,EA001-5,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +1261,Sj6,EA001,6-15%,EA001-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1262,Sj7,EA001,16-25%,EA001-2,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +1263,Sj8,EA001,16-25%,EA001-2,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +1264,Sj9,EA001,6-15%,EA001-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +1265,ch12,EA001,0-5%,EA001-0,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +1266,ch13,EA001,0-5%,EA001-0,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +1267,ch14,EA001,0-5%,EA001-0,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +1268,ch15,EA001,0-5%,EA001-0,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +1269,ch16,EA001,0-5%,EA001-0,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +1270,ch17,EA001,0-5%,EA001-0,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +1271,ch18,EA001,0-5%,EA001-0,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +1272,ch19,EA001,0-5%,EA001-0,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +1273,ch20,EA001,0-5%,EA001-0,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +1274,ch21,EA001,0-5%,EA001-0,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +1275,ch22,EA001,0-5%,EA001-0,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +1276,ch23,EA001,0-5%,EA001-0,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +1277,ch24,EA001,0-5%,EA001-0,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +1278,ch25,EA001,0-5%,EA001-0,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +1279,ch26,EA001,0-5%,EA001-0,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +1280,ch27,EA001,6-15%,EA001-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +1281,ch28,EA001,0-5%,EA001-0,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +1282,ec12,EA001,0-5%,EA001-0,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +1283,ec13,EA001,26-35%,EA001-3,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +1284,ec14,EA001,6-15%,EA001-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +1285,ec15,EA001,16-25%,EA001-2,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +1286,ec16,EA001,16-25%,EA001-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +1287,ec17,EA001,16-25%,EA001-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +1288,ec18,EA001,16-25%,EA001-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +1289,ec19,EA001,16-25%,EA001-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +1290,ec20,EA001,16-25%,EA001-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +1291,ec21,EA001,16-25%,EA001-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +1292,Aa1,EA010,Uxorilocal,EA010-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +1293,Aa2,EA010,Patrilocal,EA010-8,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +1294,Aa3,EA010,Uxorilocal,EA010-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +1295,Aa4,EA010,Uxorilocal,EA010-9,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +1296,Aa5,EA010,Ambi-viri,EA010-12,"Entry follows Schebesta; Czekanowski reports Uxorilocal (code ""9""); Turnbull reports Ambilocal (code ""2"")",deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +1297,Aa6,EA010,Ambilocal,EA010-2,"Initial residence alternates between Uxorilocal (code ""9"") and Patrilocal (code ""8"")",dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +1298,Aa7,EA010,Ambilocal,EA010-2,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +1299,Aa8,EA010,Uxorilocal,EA010-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +1300,Aa9,EA010,Ambilocal,EA010-2,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +1301,Ab1,EA010,Virilocal,EA010-10,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +1302,Ab10,EA010,Patrilocal,EA010-8,,hunter1936,,1936,EthnographicAtlas_1967_p62, +1303,Ab11,EA010,Patrilocal,EA010-8,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +1304,Ab12,EA010,Patrilocal,EA010-8,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +1305,Ab13,EA010,Uxorilocal,EA010-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +1306,Ab14,EA010,Patrilocal,EA010-8,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +1307,Ab15,EA010,Uxorilocal,EA010-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +1308,Ab16,EA010,Patrilocal,EA010-8,,earthy1933,,1930,EthnographicAtlas_1967_p62, +1309,Ab17,EA010,Patrilocal,EA010-8,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +1310,Ab18,EA010,Patrilocal,EA010-8,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +1311,Ab19,EA010,Ambilocal,EA010-2,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +1312,Ab2,EA010,Patrilocal,EA010-8,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +1313,Ab20,EA010,Virilocal,EA010-10,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +1314,Ab21a,EA010,Patrilocal,EA010-8,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +1315,Ab21b,EA010,Patrilocal,EA010-8,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +1316,Ab22,EA010,Patrilocal,EA010-8,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +1317,Ab3,EA010,Uxorilocal,EA010-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +1318,Ab4,EA010,Patrilocal,EA010-8,,junod1927,,1920,EthnographicAtlas_1967_p62, +1319,Ab5,EA010,Patrilocal,EA010-8,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +1320,Ab6,EA010,Patrilocal,EA010-8,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +1321,Ab7,EA010,Virilocal,EA010-10,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +1322,Ab8,EA010,Uxorilocal,EA010-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +1323,Ab9,EA010,Patrilocal,EA010-8,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +1324,Ac1,EA010,Virilocal,EA010-10,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +1325,Ac10,EA010,Uxorilocal,EA010-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +1326,Ac11,EA010,Avunculocal,EA010-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +1327,Ac12,EA010,Avunculocal,EA010-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +1328,Ac13,EA010,Avunculocal,EA010-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +1329,Ac14,EA010,Avunculocal,EA010-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +1330,Ac15,EA010,Avunculocal,EA010-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +1331,Ac16,EA010,Avunculocal,EA010-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +1332,Ac17,EA010,Virilocal,EA010-10,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +1333,Ac18,EA010,Avunculocal,EA010-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +1334,Ac19,EA010,Virilocal,EA010-10,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +1335,Ac2,EA010,Virilocal,EA010-10,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +1336,Ac20,EA010,Avunculocal,EA010-1,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +1337,Ac21,EA010,Avunculocal,EA010-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +1338,Ac22,EA010,Avunculocal,EA010-1,,mertens1935,,1930,EthnographicAtlas_1967_p62, +1339,Ac23,EA010,Virilocal,EA010-10,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +1340,Ac24,EA010,Avunculocal,EA010-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +1341,Ac25,EA010,Avunculocal,EA010-1,"Entry follows Richards; Beaucorps reports Virilocal (code ""10"")",beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +1342,Ac26,EA010,Avunculocal,EA010-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +1343,Ac27,EA010,Avunculocal,EA010-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +1344,Ac28,EA010,Avuncu-virilocal,EA010-4,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +1345,Ac29,EA010,Avunculocal,EA010-1,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +1346,Ac3,EA010,Uxorilocal,EA010-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +1347,Ac30,EA010,Uxorilocal,EA010-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +1348,Ac31,EA010,Avunculocal,EA010-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +1349,Ac32,EA010,Uxorilocal,EA010-9,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +1350,Ac33,EA010,Uxorilocal,EA010-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +1351,Ac34,EA010,Uxorilocal,EA010-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +1352,Ac35,EA010,Uxorilocal,EA010-9,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +1353,Ac36,EA010,Patrilocal,EA010-8,"Formerly, early residence classified as 'Uxorilocal' (code ""9"")",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +1354,Ac37,EA010,Uxorilocal,EA010-9,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +1355,Ac38,EA010,Matrilocal,EA010-5,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +1356,Ac39,EA010,Matrilocal,EA010-5,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +1357,Ac4,EA010,Virilocal,EA010-10,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +1358,Ac40,EA010,Matrilocal,EA010-5,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +1359,Ac41,EA010,Avunculocal,EA010-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +1360,Ac42,EA010,Avuncu-uxorilocal,EA010-3,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +1361,Ac43,EA010,Uxorilocal,EA010-9,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +1362,Ac5,EA010,Uxorilocal,EA010-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +1363,Ac6,EA010,Uxorilocal,EA010-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +1364,Ac7,EA010,Matrilocal,EA010-5,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +1365,Ac8,EA010,Avunculocal,EA010-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +1366,Ac9,EA010,Ambi-viri,EA010-12,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +1367,Ad1,EA010,Uxorilocal,EA010-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +1368,Ad10,EA010,Patrilocal,EA010-8,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +1369,Ad11,EA010,Uxorilocal,EA010-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +1370,Ad12,EA010,Patrilocal,EA010-8,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +1371,Ad13,EA010,Patrilocal,EA010-8,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +1372,Ad14,EA010,Matrilocal,EA010-5,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +1373,Ad15,EA010,Patrilocal,EA010-8,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +1374,Ad16,EA010,Neolocal,EA010-6,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +1375,Ad17,EA010,Patrilocal,EA010-8,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +1376,Ad18,EA010,Patrilocal,EA010-8,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +1377,Ad19,EA010,Patrilocal,EA010-8,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +1378,Ad2,EA010,Patrilocal,EA010-8,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +1379,Ad20,EA010,Uxorilocal,EA010-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +1380,Ad21,EA010,Patrilocal,EA010-8,,maurice193538,,1930,EthnographicAtlas_1967_p66, +1381,Ad22,EA010,Uxorilocal,EA010-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +1382,Ad23,EA010,Patrilocal,EA010-8,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +1383,Ad24,EA010,Patrilocal,EA010-8,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +1384,Ad25,EA010,Patrilocal,EA010-8,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +1385,Ad26,EA010,Patrilocal,EA010-8,,sick1916,,1910,EthnographicAtlas_1967_p66, +1386,Ad27,EA010,Matrilocal,EA010-5,At least initially,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +1387,Ad28,EA010,Matrilocal,EA010-5,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +1388,Ad29,EA010,Patrilocal,EA010-8,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +1389,Ad3,EA010,Patrilocal,EA010-8,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +1390,Ad30,EA010,Patrilocal,EA010-8,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +1391,Ad31,EA010,Patrilocal,EA010-8,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +1392,Ad32,EA010,Patrilocal,EA010-8,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +1393,Ad33,EA010,Patrilocal,EA010-8,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +1394,Ad34,EA010,Patrilocal,EA010-8,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +1395,Ad35,EA010,Patrilocal,EA010-8,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +1396,Ad36,EA010,Patrilocal,EA010-8,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +1397,Ad37,EA010,Patrilocal,EA010-8,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +1398,Ad38,EA010,Patrilocal,EA010-8,Inferential from distributional evidence,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +1399,Ad39,EA010,Patrilocal,EA010-8,,gray1963,,1950,EthnographicAtlas_1967_p66, +1400,Ad4,EA010,Patrilocal,EA010-8,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +1401,Ad40,EA010,Patrilocal,EA010-8,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +1402,Ad41,EA010,Patrilocal,EA010-8,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +1403,Ad42,EA010,Patrilocal,EA010-8,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +1404,Ad43,EA010,Patrilocal,EA010-8,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +1405,Ad44,EA010,Patrilocal,EA010-8,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +1406,Ad45,EA010,Patrilocal,EA010-8,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +1407,Ad46,EA010,Patrilocal,EA010-8,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +1408,Ad47,EA010,Patrilocal,EA010-8,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +1409,Ad48,EA010,Patrilocal,EA010-8,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +1410,Ad49,EA010,Patrilocal,EA010-8,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +1411,Ad5,EA010,Patrilocal,EA010-8,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +1412,Ad50,EA010,Matrilocal,EA010-5,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +1413,Ad51,EA010,Uxorilocal,EA010-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +1414,Ad6,EA010,Neolocal,EA010-6,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +1415,Ad7,EA010,Neolocal,EA010-6,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +1416,Ad8,EA010,Patrilocal,EA010-8,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +1417,Ad9,EA010,Patrilocal,EA010-8,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +1418,Ae1,EA010,Patrilocal,EA010-8,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +1419,Ae10,EA010,Patrilocal,EA010-8,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +1420,Ae11,EA010,Patrilocal,EA010-8,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +1421,Ae12,EA010,Patrilocal,EA010-8,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +1422,Ae13,EA010,Patrilocal,EA010-8,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +1423,Ae14,EA010,Patrilocal,EA010-8,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +1424,Ae15,EA010,Patrilocal,EA010-8,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +1425,Ae16,EA010,Patrilocal,EA010-8,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +1426,Ae17,EA010,Patrilocal,EA010-8,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +1427,Ae18,EA010,Patrilocal,EA010-8,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +1428,Ae19,EA010,Uxorilocal,EA010-9,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +1429,Ae2,EA010,Patrilocal,EA010-8,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +1430,Ae20,EA010,Patrilocal,EA010-8,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +1431,Ae21,EA010,Patrilocal,EA010-8,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +1432,Ae22,EA010,Patrilocal,EA010-8,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +1433,Ae23,EA010,Patrilocal,EA010-8,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +1434,Ae24,EA010,Patrilocal,EA010-8,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +1435,Ae25,EA010,Patrilocal,EA010-8,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +1436,Ae26,EA010,Patrilocal,EA010-8,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +1437,Ae27,EA010,Patrilocal,EA010-8,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +1438,Ae28,EA010,Patrilocal,EA010-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +1439,Ae29,EA010,Patrilocal,EA010-8,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +1440,Ae3,EA010,Patrilocal,EA010-8,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +1441,Ae30,EA010,Patrilocal,EA010-8,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +1442,Ae31,EA010,Patrilocal,EA010-8,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +1443,Ae32,EA010,Patrilocal,EA010-8,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +1444,Ae33,EA010,Patrilocal,EA010-8,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +1445,Ae34,EA010,Patrilocal,EA010-8,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +1446,Ae35,EA010,Patrilocal,EA010-8,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +1447,Ae36,EA010,Patrilocal,EA010-8,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +1448,Ae37,EA010,Patrilocal,EA010-8,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +1449,Ae38,EA010,Avuncu-virilocal,EA010-4,The relative incidence of avunculocal and virilocal residence is unclear,wijnant192526,,1920,EthnographicAtlas_1967_p66, +1450,Ae39,EA010,Patrilocal,EA010-8,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +1451,Ae4,EA010,Patrilocal,EA010-8,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +1452,Ae40,EA010,Patrilocal,EA010-8,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +1453,Ae41,EA010,Patrilocal,EA010-8,,andersson1953,,1940,EthnographicAtlas_1967_p66, +1454,Ae42,EA010,Patrilocal,EA010-8,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +1455,Ae43,EA010,Patrilocal,EA010-8,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +1456,Ae44,EA010,Patrilocal,EA010-8,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +1457,Ae45,EA010,Patrilocal,EA010-8,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +1458,Ae46,EA010,Virilocal,EA010-10,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +1459,Ae47,EA010,Patrilocal,EA010-8,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +1460,Ae48,EA010,Patrilocal,EA010-8,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +1461,Ae49,EA010,Patrilocal,EA010-8,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +1462,Ae5,EA010,Patrilocal,EA010-8,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +1463,Ae50,EA010,Patrilocal,EA010-8,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +1464,Ae51,EA010,Patrilocal,EA010-8,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +1465,Ae52,EA010,Patrilocal,EA010-8,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +1466,Ae53,EA010,Patrilocal,EA010-8,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +1467,Ae54,EA010,Virilocal,EA010-10,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +1468,Ae55,EA010,Patrilocal,EA010-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +1469,Ae56,EA010,Patrilocal,EA010-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +1470,Ae57,EA010,Patrilocal,EA010-8,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +1471,Ae58,EA010,Patrilocal,EA010-8,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +1472,Ae59,EA010,Patrilocal,EA010-8,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +1473,Ae6,EA010,Patrilocal,EA010-8,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +1474,Ae7,EA010,Patrilocal,EA010-8,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +1475,Ae8,EA010,Patrilocal,EA010-8,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +1476,Ae9,EA010,Patrilocal,EA010-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +1477,Af1,EA010,Patrilocal,EA010-8,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +1478,Af10,EA010,Patrilocal,EA010-8,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +1479,Af11,EA010,Patrilocal,EA010-8,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +1480,Af12,EA010,?,EA010-NA,"Mix of Avunculocal (code ""1""), Nonestablishment of a common household (code ""7""), and Virilocal (code ""10"") with relative incidence unspecified",field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +1481,Af13,EA010,Patrilocal,EA010-8,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +1482,Af14,EA010,Virilocal,EA010-10,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +1483,Af15,EA010,Patrilocal,EA010-8,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +1484,Af16,EA010,Patrilocal,EA010-8,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +1485,Af17,EA010,Patrilocal,EA010-8,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +1486,Af18,EA010,Patrilocal,EA010-8,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +1487,Af19,EA010,Patrilocal,EA010-8,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +1488,Af2,EA010,Patrilocal,EA010-8,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +1489,Af20,EA010,Patrilocal,EA010-8,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +1490,Af21,EA010,Virilocal,EA010-10,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +1491,Af22,EA010,Patrilocal,EA010-8,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +1492,Af23,EA010,Patrilocal,EA010-8,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +1493,Af24,EA010,Patrilocal,EA010-8,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +1494,Af25,EA010,Patrilocal,EA010-8,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +1495,Af26,EA010,Virilocal,EA010-10,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +1496,Af27,EA010,Patrilocal,EA010-8,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +1497,Af28,EA010,Patrilocal,EA010-8,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +1498,Af29,EA010,Patrilocal,EA010-8,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +1499,Af3,EA010,Separate,EA010-7,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +1500,Af30,EA010,Patrilocal,EA010-8,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +1501,Af31,EA010,Patrilocal,EA010-8,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +1502,Af32,EA010,Patrilocal,EA010-8,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1503,Af33,EA010,Patrilocal,EA010-8,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1504,Af34,EA010,Patrilocal,EA010-8,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1505,Af35,EA010,Patrilocal,EA010-8,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +1506,Af36,EA010,Separate,EA010-7,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +1507,Af37,EA010,Patrilocal,EA010-8,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +1508,Af38,EA010,Virilocal,EA010-10,But a married woman commonly remains in her natal household instead of joining her husband,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +1509,Af39,EA010,Separate,EA010-7,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +1510,Af4,EA010,Uxorilocal,EA010-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +1511,Af40,EA010,Virilocal,EA010-10,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +1512,Af41,EA010,Virilocal,EA010-10,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +1513,Af42,EA010,Separate,EA010-7,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +1514,Af43,EA010,Separate,EA010-7,But most married women continue to reside in their natal household,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +1515,Af44,EA010,Uxorilocal,EA010-9,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +1516,Af45,EA010,Virilocal,EA010-10,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +1517,Af46,EA010,Patrilocal,EA010-8,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +1518,Af47,EA010,Patrilocal,EA010-8,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +1519,Af48,EA010,Patrilocal,EA010-8,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +1520,Af49,EA010,Patrilocal,EA010-8,,schwab1947,,1940,EthnographicAtlas_1967_p70, +1521,Af5,EA010,Patrilocal,EA010-8,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +1522,Af50,EA010,Patrilocal,EA010-8,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +1523,Af51,EA010,Patrilocal,EA010-8,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +1524,Af52,EA010,Patrilocal,EA010-8,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +1525,Af53,EA010,Patrilocal,EA010-8,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +1526,Af54,EA010,Patrilocal,EA010-8,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +1527,Af55,EA010,Patrilocal,EA010-8,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +1528,Af56,EA010,Patrilocal,EA010-8,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +1529,Af57,EA010,Patrilocal,EA010-8,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +1530,Af58,EA010,Patrilocal,EA010-8,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +1531,Af6,EA010,Patrilocal,EA010-8,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +1532,Af7,EA010,Patrilocal,EA010-8,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +1533,Af8,EA010,Patrilocal,EA010-8,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +1534,Af9,EA010,Avunculocal,EA010-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +1535,Ag1,EA010,Patrilocal,EA010-8,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +1536,Ag10,EA010,Patrilocal,EA010-8,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +1537,Ag11,EA010,Virilocal,EA010-10,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +1538,Ag12,EA010,Patrilocal,EA010-8,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +1539,Ag13,EA010,Patrilocal,EA010-8,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +1540,Ag14,EA010,Patrilocal,EA010-8,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +1541,Ag15,EA010,Patrilocal,EA010-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +1542,Ag16,EA010,Patrilocal,EA010-8,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +1543,Ag17,EA010,Patrilocal,EA010-8,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +1544,Ag18,EA010,Matrilocal,EA010-5,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +1545,Ag19,EA010,Patrilocal,EA010-8,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +1546,Ag2,EA010,Patrilocal,EA010-8,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +1547,Ag20,EA010,Patrilocal,EA010-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +1548,Ag21,EA010,Patrilocal,EA010-8,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +1549,Ag22,EA010,Patrilocal,EA010-8,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +1550,Ag23,EA010,Patrilocal,EA010-8,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +1551,Ag24,EA010,Patrilocal,EA010-8,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +1552,Ag25,EA010,Patrilocal,EA010-8,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +1553,Ag26,EA010,Patrilocal,EA010-8,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +1554,Ag27,EA010,Patrilocal,EA010-8,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +1555,Ag28,EA010,Patrilocal,EA010-8,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +1556,Ag29,EA010,Patrilocal,EA010-8,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +1557,Ag3,EA010,Patrilocal,EA010-8,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +1558,Ag30,EA010,Patrilocal,EA010-8,"Entry follows Tauxier; Cremer also reports early residence as Uxorilocal, but later residence as Patrilocal (i.e., EA012 would be code ""9"")",cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +1559,Ag31,EA010,Patrilocal,EA010-8,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +1560,Ag32,EA010,Patrilocal,EA010-8,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +1561,Ag33,EA010,Patrilocal,EA010-8,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +1562,Ag34,EA010,Patrilocal,EA010-8,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +1563,Ag35,EA010,Avuncu-virilocal,EA010-4,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +1564,Ag36,EA010,Patrilocal,EA010-8,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +1565,Ag37,EA010,Patrilocal,EA010-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +1566,Ag38,EA010,Patrilocal,EA010-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +1567,Ag39,EA010,Patrilocal,EA010-8,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +1568,Ag4,EA010,Patrilocal,EA010-8,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +1569,Ag40,EA010,Patrilocal,EA010-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +1570,Ag41,EA010,Patrilocal,EA010-8,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +1571,Ag42,EA010,Patrilocal,EA010-8,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +1572,Ag43,EA010,Patrilocal,EA010-8,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +1573,Ag44,EA010,?,EA010-NA,,,,,, +1574,Ag45,EA010,Patrilocal,EA010-8,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +1575,Ag46,EA010,Patrilocal,EA010-8,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +1576,Ag47,EA010,Patrilocal,EA010-8,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +1577,Ag48,EA010,Patrilocal,EA010-8,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +1578,Ag49,EA010,Patrilocal,EA010-8,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +1579,Ag5,EA010,Patrilocal,EA010-8,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +1580,Ag50,EA010,Patrilocal,EA010-8,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +1581,Ag51,EA010,Patrilocal,EA010-8,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +1582,Ag52,EA010,Patrilocal,EA010-8,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +1583,Ag53,EA010,Patrilocal,EA010-8,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +1584,Ag54,EA010,Patrilocal,EA010-8,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +1585,Ag6,EA010,Patrilocal,EA010-8,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +1586,Ag7,EA010,Patrilocal,EA010-8,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +1587,Ag8,EA010,Virilocal,EA010-10,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +1588,Ag9,EA010,Patrilocal,EA010-8,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +1589,Ah1,EA010,Patrilocal,EA010-8,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1590,Ah10,EA010,Patrilocal,EA010-8,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +1591,Ah11,EA010,Patrilocal,EA010-8,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +1592,Ah12,EA010,Patrilocal,EA010-8,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +1593,Ah13,EA010,Uxorilocal,EA010-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +1594,Ah14,EA010,Patrilocal,EA010-8,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +1595,Ah15,EA010,Patrilocal,EA010-8,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +1596,Ah16,EA010,Uxorilocal,EA010-9,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +1597,Ah17,EA010,Patrilocal,EA010-8,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +1598,Ah18,EA010,Patrilocal,EA010-8,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +1599,Ah19,EA010,Patrilocal,EA010-8,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +1600,Ah2,EA010,Avuncu-virilocal,EA010-4,,meek1931a,,1920,EthnographicAtlas_1967_p74, +1601,Ah20,EA010,Patrilocal,EA010-8,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +1602,Ah21,EA010,Patrilocal,EA010-8,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1603,Ah22,EA010,Uxorilocal,EA010-9,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +1604,Ah23,EA010,Uxorilocal,EA010-9,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1605,Ah24,EA010,Patrilocal,EA010-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1606,Ah25,EA010,Patrilocal,EA010-8,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1607,Ah26,EA010,Avunculocal,EA010-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1608,Ah27,EA010,Uxorilocal,EA010-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1609,Ah28,EA010,Avuncu-virilocal,EA010-4,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +1610,Ah29,EA010,Uxorilocal,EA010-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1611,Ah3,EA010,Virilocal,EA010-10,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +1612,Ah30,EA010,Uxorilocal,EA010-9,,meek1931b,,1920,EthnographicAtlas_1967_p74, +1613,Ah31,EA010,Uxorilocal,EA010-9,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +1614,Ah32,EA010,Avuncu-virilocal,EA010-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1615,Ah33,EA010,Uxorilocal,EA010-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +1616,Ah34,EA010,Patrilocal,EA010-8,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +1617,Ah35,EA010,Uxorilocal,EA010-9,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1618,Ah36,EA010,Uxorilocal,EA010-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +1619,Ah37,EA010,Patrilocal,EA010-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1620,Ah38,EA010,Patrilocal,EA010-8,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +1621,Ah39,EA010,Patrilocal,EA010-8,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +1622,Ah4,EA010,Virilocal,EA010-10,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +1623,Ah5,EA010,Patrilocal,EA010-8,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +1624,Ah6,EA010,Avunculocal,EA010-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +1625,Ah7,EA010,Patrilocal,EA010-8,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +1626,Ah8,EA010,Patrilocal,EA010-8,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +1627,Ah9,EA010,Patrilocal,EA010-8,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +1628,Ai1,EA010,Patrilocal,EA010-8,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +1629,Ai10,EA010,Patrilocal,EA010-8,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +1630,Ai11,EA010,Virilocal,EA010-10,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +1631,Ai12,EA010,Patrilocal,EA010-8,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +1632,Ai13,EA010,Patrilocal,EA010-8,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +1633,Ai14,EA010,Patrilocal,EA010-8,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +1634,Ai15,EA010,Patrilocal,EA010-8,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +1635,Ai16,EA010,Patrilocal,EA010-8,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +1636,Ai17,EA010,Patrilocal,EA010-8,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +1637,Ai18,EA010,Patrilocal,EA010-8,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +1638,Ai19,EA010,Patrilocal,EA010-8,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +1639,Ai2,EA010,Uxorilocal,EA010-9,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +1640,Ai20,EA010,Patrilocal,EA010-8,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +1641,Ai21,EA010,Patrilocal,EA010-8,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +1642,Ai22,EA010,Patrilocal,EA010-8,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +1643,Ai23,EA010,Patrilocal,EA010-8,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +1644,Ai24,EA010,Patrilocal,EA010-8,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +1645,Ai25,EA010,?,EA010-NA,,,,,, +1646,Ai26,EA010,Patrilocal,EA010-8,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +1647,Ai27,EA010,Patrilocal,EA010-8,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +1648,Ai28,EA010,Patrilocal,EA010-8,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +1649,Ai29,EA010,Patrilocal,EA010-8,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +1650,Ai3,EA010,Virilocal,EA010-10,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +1651,Ai30,EA010,Patrilocal,EA010-8,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +1652,Ai31,EA010,Patrilocal,EA010-8,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +1653,Ai32,EA010,Patrilocal,EA010-8,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +1654,Ai33,EA010,Patrilocal,EA010-8,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +1655,Ai34,EA010,Uxorilocal,EA010-9,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +1656,Ai35,EA010,Patrilocal,EA010-8,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +1657,Ai36,EA010,Patrilocal,EA010-8,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +1658,Ai37,EA010,Patrilocal,EA010-8,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +1659,Ai38,EA010,Uxorilocal,EA010-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +1660,Ai39,EA010,Uxorilocal,EA010-9,,nadel1947,,1940,EthnographicAtlas_1967_p74, +1661,Ai4,EA010,Uxorilocal,EA010-9,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +1662,Ai40,EA010,Patrilocal,EA010-8,,nadel1947,,1940,EthnographicAtlas_1967_p74, +1663,Ai41,EA010,Uxorilocal,EA010-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +1664,Ai42,EA010,Patrilocal,EA010-8,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +1665,Ai43,EA010,Patrilocal,EA010-8,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +1666,Ai44,EA010,Patrilocal,EA010-8,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +1667,Ai45,EA010,Patrilocal,EA010-8,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +1668,Ai46,EA010,Patrilocal,EA010-8,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +1669,Ai47,EA010,Patrilocal,EA010-8,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +1670,Ai5,EA010,Patrilocal,EA010-8,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +1671,Ai6,EA010,Patrilocal,EA010-8,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +1672,Ai7,EA010,Patrilocal,EA010-8,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +1673,Ai8,EA010,Uxorilocal,EA010-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +1674,Ai9,EA010,Patrilocal,EA010-8,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +1675,Aj1,EA010,Patrilocal,EA010-8,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +1676,Aj10,EA010,Uxorilocal,EA010-9,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +1677,Aj11,EA010,Ambilocal,EA010-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +1678,Aj12,EA010,Uxorilocal,EA010-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +1679,Aj13,EA010,Patrilocal,EA010-8,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +1680,Aj14,EA010,Uxorilocal,EA010-9,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +1681,Aj15,EA010,Patrilocal,EA010-8,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +1682,Aj16,EA010,Patrilocal,EA010-8,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +1683,Aj17,EA010,Patrilocal,EA010-8,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +1684,Aj18,EA010,?,EA010-NA,,,,,, +1685,Aj19,EA010,Patrilocal,EA010-8,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +1686,Aj2,EA010,Patrilocal,EA010-8,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +1687,Aj20,EA010,Patrilocal,EA010-8,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +1688,Aj21,EA010,Uxorilocal,EA010-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +1689,Aj22,EA010,?,EA010-NA,,,,,, +1690,Aj23,EA010,Patrilocal,EA010-8,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +1691,Aj24,EA010,Patrilocal,EA010-8,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +1692,Aj25,EA010,Patrilocal,EA010-8,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +1693,Aj26,EA010,Patrilocal,EA010-8,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +1694,Aj27,EA010,Patrilocal,EA010-8,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +1695,Aj28,EA010,Patrilocal,EA010-8,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +1696,Aj29,EA010,Patrilocal,EA010-8,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +1697,Aj3,EA010,Uxorilocal,EA010-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +1698,Aj30,EA010,Patrilocal,EA010-8,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +1699,Aj31,EA010,Patrilocal,EA010-8,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +1700,Aj4,EA010,Patrilocal,EA010-8,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +1701,Aj5,EA010,Patrilocal,EA010-8,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +1702,Aj6,EA010,Patrilocal,EA010-8,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +1703,Aj7,EA010,Patrilocal,EA010-8,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +1704,Aj8,EA010,Uxorilocal,EA010-9,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +1705,Aj9,EA010,Patrilocal,EA010-8,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +1706,Ca1,EA010,Neolocal,EA010-6,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +1707,Ca10,EA010,Patrilocal,EA010-8,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +1708,Ca11,EA010,Patrilocal,EA010-8,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +1709,Ca12,EA010,Patrilocal,EA010-8,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +1710,Ca13,EA010,Patrilocal,EA010-8,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +1711,Ca14,EA010,Patrilocal,EA010-8,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +1712,Ca15,EA010,Patrilocal,EA010-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +1713,Ca16,EA010,Patrilocal,EA010-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +1714,Ca17,EA010,Patrilocal,EA010-8,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +1715,Ca18,EA010,Patrilocal,EA010-8,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +1716,Ca19,EA010,Patrilocal,EA010-8,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +1717,Ca2,EA010,Patrilocal,EA010-8,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +1718,Ca20,EA010,Patrilocal,EA010-8,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +1719,Ca21,EA010,Patrilocal,EA010-8,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +1720,Ca22,EA010,Patrilocal,EA010-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +1721,Ca23,EA010,Patrilocal,EA010-8,,jensen1959,,1950,EthnographicAtlas_1967_p78, +1722,Ca24,EA010,Patrilocal,EA010-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +1723,Ca25,EA010,Patrilocal,EA010-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +1724,Ca26,EA010,Patrilocal,EA010-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +1725,Ca27,EA010,Patrilocal,EA010-8,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +1726,Ca28,EA010,Patrilocal,EA010-8,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +1727,Ca29,EA010,Patrilocal,EA010-8,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +1728,Ca3,EA010,Separate,EA010-7,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +1729,Ca30,EA010,Patrilocal,EA010-8,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +1730,Ca31,EA010,Virilocal,EA010-10,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +1731,Ca32,EA010,Uxorilocal,EA010-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +1732,Ca33,EA010,Uxorilocal,EA010-9,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +1733,Ca34,EA010,Uxorilocal,EA010-9,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +1734,Ca35,EA010,Uxorilocal,EA010-9,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +1735,Ca36,EA010,Patrilocal,EA010-8,"In the noble class; among serfs pattern is Uxorilocal early in marriage (this variable would be code ""9""); Patrilocal as prevailing pattern (EA012 code ""8""); and Uxorilocal as alternate (EA014 code ""9"")",munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +1736,Ca37,EA010,Patrilocal,EA010-8,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +1737,Ca38,EA010,Patrilocal,EA010-8,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +1738,Ca39,EA010,Patrilocal,EA010-8,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +1739,Ca4,EA010,Patrilocal,EA010-8,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +1740,Ca40,EA010,Patrilocal,EA010-8,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +1741,Ca41,EA010,Patrilocal,EA010-8,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +1742,Ca42,EA010,Patrilocal,EA010-8,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +1743,Ca43,EA010,Uxorilocal,EA010-9,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +1744,Ca5,EA010,Uxorilocal,EA010-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +1745,Ca6,EA010,Patrilocal,EA010-8,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +1746,Ca7,EA010,Ambi-viri,EA010-12,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +1747,Ca8,EA010,Patrilocal,EA010-8,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +1748,Ca9,EA010,Patrilocal,EA010-8,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +1749,Cb1,EA010,Patrilocal,EA010-8,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +1750,Cb10,EA010,Uxorilocal,EA010-9,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +1751,Cb11,EA010,?,EA010-NA,,,,,, +1752,Cb12,EA010,Patrilocal,EA010-8,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +1753,Cb13,EA010,Patrilocal,EA010-8,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +1754,Cb14,EA010,Patrilocal,EA010-8,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +1755,Cb15,EA010,Patrilocal,EA010-8,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +1756,Cb16,EA010,Patrilocal,EA010-8,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +1757,Cb17,EA010,Separate,EA010-7,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +1758,Cb18,EA010,Virilocal,EA010-10,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +1759,Cb19,EA010,Virilocal,EA010-10,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +1760,Cb2,EA010,Patrilocal,EA010-8,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +1761,Cb20,EA010,?,EA010-NA,,,,,, +1762,Cb21,EA010,Uxorilocal,EA010-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +1763,Cb22,EA010,Patrilocal,EA010-8,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +1764,Cb23,EA010,Patrilocal,EA010-8,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +1765,Cb24,EA010,Separate,EA010-7,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +1766,Cb25,EA010,Patrilocal,EA010-8,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +1767,Cb26,EA010,Patrilocal,EA010-8,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +1768,Cb27,EA010,Patrilocal,EA010-8,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1769,Cb28,EA010,Patrilocal,EA010-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1770,Cb29,EA010,Patrilocal,EA010-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +1771,Cb3,EA010,Patrilocal,EA010-8,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +1772,Cb4,EA010,Uxorilocal,EA010-9,,reid1930,,1920,EthnographicAtlas_1967_p78, +1773,Cb5,EA010,Patrilocal,EA010-8,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +1774,Cb6,EA010,Uxorilocal,EA010-9,,woodnd,,1920,EthnographicAtlas_1967_p78, +1775,Cb7,EA010,Patrilocal,EA010-8,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +1776,Cb8,EA010,Virilocal,EA010-10,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +1777,Cb9,EA010,Patrilocal,EA010-8,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +1778,Cc1,EA010,Patrilocal,EA010-8,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +1779,Cc10,EA010,Virilocal,EA010-10,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +1780,Cc11,EA010,?,EA010-NA,,,,,, +1781,Cc12,EA010,Uxorilocal,EA010-9,Ultimate residence is unclear and may be avunculocal,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +1782,Cc13,EA010,Virilocal,EA010-10,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +1783,Cc14,EA010,Uxorilocal,EA010-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +1784,Cc15,EA010,?,EA010-NA,,,,,, +1785,Cc16,EA010,Patrilocal,EA010-8,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +1786,Cc17,EA010,Patrilocal,EA010-8,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +1787,Cc18,EA010,Patrilocal,EA010-8,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +1788,Cc19,EA010,Patrilocal,EA010-8,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +1789,Cc2,EA010,Uxorilocal,EA010-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +1790,Cc20,EA010,Patrilocal,EA010-8,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +1791,Cc3,EA010,Patrilocal,EA010-8,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +1792,Cc4,EA010,Patrilocal,EA010-8,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +1793,Cc5,EA010,Virilocal,EA010-10,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +1794,Cc6,EA010,Patrilocal,EA010-8,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +1795,Cc7,EA010,Patrilocal,EA010-8,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1796,Cc8,EA010,?,EA010-NA,,,,,, +1797,Cc9,EA010,Uxorilocal,EA010-9,"Virilocal (code ""10"") after an initial period until death of HuFa, then Avunculocal (code ""1"")",benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +1798,Cd1,EA010,Uxorilocal,EA010-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +1799,Cd10,EA010,Patrilocal,EA010-8,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +1800,Cd11,EA010,Virilocal,EA010-10,Suggested rather than attested,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +1801,Cd12,EA010,Patrilocal,EA010-8,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +1802,Cd13,EA010,Patrilocal,EA010-8,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +1803,Cd14,EA010,Patrilocal,EA010-8,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +1804,Cd15,EA010,Patrilocal,EA010-8,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +1805,Cd16,EA010,Patrilocal,EA010-8,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +1806,Cd17,EA010,Patrilocal,EA010-8,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +1807,Cd18,EA010,Patrilocal,EA010-8,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +1808,Cd19,EA010,Patrilocal,EA010-8,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +1809,Cd2,EA010,Uxorilocal,EA010-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +1810,Cd20,EA010,Patrilocal,EA010-8,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +1811,Cd21,EA010,Patrilocal,EA010-8,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +1812,Cd3,EA010,Patrilocal,EA010-8,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +1813,Cd4,EA010,Patrilocal,EA010-8,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +1814,Cd5,EA010,Patrilocal,EA010-8,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +1815,Cd6,EA010,Neolocal,EA010-6,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +1816,Cd7,EA010,Patrilocal,EA010-8,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +1817,Cd8,EA010,Patrilocal,EA010-8,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +1818,Cd9,EA010,Patrilocal,EA010-8,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +1819,Ce1,EA010,Patrilocal,EA010-8,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +1820,Ce2,EA010,Virilocal,EA010-10,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +1821,Ce3,EA010,Neolocal,EA010-6,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +1822,Ce4,EA010,Ambilocal,EA010-2,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1823,Ce5,EA010,Neolocal,EA010-6,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +1824,Ce6,EA010,Neolocal,EA010-6,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +1825,Ce7,EA010,Virilocal,EA010-10,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +1826,Ce8,EA010,Ambi-viri,EA010-12,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +1827,Cf1,EA010,Neolocal,EA010-6,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +1828,Cf2,EA010,Virilocal,EA010-10,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +1829,Cf3,EA010,Neolocal,EA010-6,,munch1945,,1930,EthnographicAtlas_1967_p82, +1830,Cf4,EA010,Neolocal,EA010-6,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +1831,Cf5,EA010,Neolocal,EA010-6,,miner1939,,1930,EthnographicAtlas_1967_p82, +1832,Cg1,EA010,Ambilocal,EA010-2,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +1833,Cg2,EA010,Virilocal,EA010-10,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +1834,Cg3,EA010,Virilocal,EA010-10,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +1835,Cg4,EA010,Ambi-viri,EA010-12,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +1836,Cg5,EA010,Neolocal,EA010-6,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +1837,Ch1,EA010,Patrilocal,EA010-8,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +1838,Ch10,EA010,Neolocal,EA010-6,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +1839,Ch11,EA010,Virilocal,EA010-10,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +1840,Ch2,EA010,Virilocal,EA010-10,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +1841,Ch3,EA010,Virilocal,EA010-10,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +1842,Ch4,EA010,Neolocal,EA010-6,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +1843,Ch5,EA010,Virilocal,EA010-10,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +1844,Ch6,EA010,Ambilocal,EA010-2,,ember1954,,1910,EthnographicAtlas_1967_p82, +1845,Ch7,EA010,Virilocal,EA010-10,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +1846,Ch8,EA010,Virilocal,EA010-10,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +1847,Ch9,EA010,Virilocal,EA010-10,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +1848,Ci1,EA010,Patrilocal,EA010-8,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +1849,Ci10,EA010,Ambi-viri,EA010-12,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +1850,Ci11,EA010,Patrilocal,EA010-8,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +1851,Ci12,EA010,Patrilocal,EA010-8,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +1852,Ci2,EA010,Separate,EA010-7,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +1853,Ci3,EA010,Neolocal,EA010-6,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +1854,Ci4,EA010,Patrilocal,EA010-8,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +1855,Ci5,EA010,Patrilocal,EA010-8,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +1856,Ci6,EA010,Patrilocal,EA010-8,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +1857,Ci7,EA010,Patrilocal,EA010-8,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +1858,Ci8,EA010,Patrilocal,EA010-8,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +1859,Ci9,EA010,Patrilocal,EA010-8,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +1860,Cj1,EA010,Patrilocal,EA010-8,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +1861,Cj10,EA010,Patrilocal,EA010-8,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +1862,Cj2,EA010,Patrilocal,EA010-8,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +1863,Cj3,EA010,Patrilocal,EA010-8,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +1864,Cj4,EA010,Ambilocal,EA010-2,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +1865,Cj5,EA010,Patrilocal,EA010-8,,dickson1949,,1930,EthnographicAtlas_1967_p86, +1866,Cj6,EA010,Patrilocal,EA010-8,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +1867,Cj7,EA010,Patrilocal,EA010-8,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +1868,Cj8,EA010,Patrilocal,EA010-8,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +1869,Cj9,EA010,Patrilocal,EA010-8,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +1870,Ea1,EA010,Patrilocal,EA010-8,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +1871,Ea10,EA010,Patrilocal,EA010-8,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +1872,Ea11,EA010,Patrilocal,EA010-8,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +1873,Ea12,EA010,Patrilocal,EA010-8,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +1874,Ea13,EA010,Separate,EA010-7,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +1875,Ea2,EA010,Patrilocal,EA010-8,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +1876,Ea3,EA010,Patrilocal,EA010-8,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +1877,Ea4,EA010,Patrilocal,EA010-8,,barth1956b,,1950,EthnographicAtlas_1967_p86, +1878,Ea5,EA010,Patrilocal,EA010-8,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +1879,Ea6,EA010,Patrilocal,EA010-8,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +1880,Ea7,EA010,Patrilocal,EA010-8,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +1881,Ea8,EA010,Patrilocal,EA010-8,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +1882,Ea9,EA010,Virilocal,EA010-10,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +1883,Eb1,EA010,Patrilocal,EA010-8,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +1884,Eb2,EA010,Patrilocal,EA010-8,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +1885,Eb3,EA010,Patrilocal,EA010-8,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +1886,Eb4,EA010,Patrilocal,EA010-8,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +1887,Eb5,EA010,Patrilocal,EA010-8,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +1888,Eb6,EA010,Patrilocal,EA010-8,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +1889,Eb7,EA010,Patrilocal,EA010-8,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +1890,Eb8,EA010,Patrilocal,EA010-8,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +1891,Ec1,EA010,Patrilocal,EA010-8,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +1892,Ec10,EA010,Patrilocal,EA010-8,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +1893,Ec11,EA010,Patrilocal,EA010-8,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +1894,Ec2,EA010,Uxorilocal,EA010-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1895,Ec3,EA010,Uxorilocal,EA010-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +1896,Ec4,EA010,Patrilocal,EA010-8,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +1897,Ec5,EA010,Uxorilocal,EA010-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +1898,Ec6,EA010,Uxorilocal,EA010-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +1899,Ec7,EA010,Ambi-viri,EA010-12,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +1900,Ec8,EA010,Virilocal,EA010-10,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +1901,Ec9,EA010,Patrilocal,EA010-8,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +1902,Ed1,EA010,Patrilocal,EA010-8,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +1903,Ed10,EA010,Patrilocal,EA010-8,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +1904,Ed13,EA010,Patrilocal,EA010-8,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +1905,Ed14,EA010,Patrilocal,EA010-8,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +1906,Ed15a,EA010,Patrilocal,EA010-8,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +1907,Ed15b,EA010,Neolocal,EA010-6,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +1908,Ed16,EA010,Patrilocal,EA010-8,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +1909,Ed2,EA010,Separate,EA010-7,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +1910,Ed3,EA010,Patrilocal,EA010-8,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +1911,Ed4,EA010,Patrilocal,EA010-8,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +1912,Ed5,EA010,Virilocal,EA010-10,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1913,Ed6,EA010,Patrilocal,EA010-8,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +1914,Ed7,EA010,Patrilocal,EA010-8,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +1915,Ed8,EA010,Patrilocal,EA010-8,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +1916,Ed9,EA010,Separate,EA010-7,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +1917,Ee1,EA010,Virilocal,EA010-10,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +1918,Ee2,EA010,Patrilocal,EA010-8,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +1919,Ee3,EA010,Patrilocal,EA010-8,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +1920,Ee4,EA010,Patrilocal,EA010-8,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +1921,Ee5,EA010,Patrilocal,EA010-8,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +1922,Ee6,EA010,Patrilocal,EA010-8,Uxorilocal only if wife has no brothers,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +1923,Ee7,EA010,Patrilocal,EA010-8,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +1924,Ee8,EA010,Patrilocal,EA010-8,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +1925,Ef1,EA010,Patrilocal,EA010-8,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +1926,Ef10,EA010,Patrilocal,EA010-8,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1927,Ef11,EA010,Patrilocal,EA010-8,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +1928,Ef2,EA010,Patrilocal,EA010-8,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +1929,Ef3,EA010,Patrilocal,EA010-8,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +1930,Ef4,EA010,Patrilocal,EA010-8,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +1931,Ef5,EA010,Patrilocal,EA010-8,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +1932,Ef6,EA010,Patrilocal,EA010-8,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +1933,Ef7,EA010,Patrilocal,EA010-8,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +1934,Ef8,EA010,Patrilocal,EA010-8,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +1935,Ef9,EA010,Patrilocal,EA010-8,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1936,Eg1,EA010,Ambilocal,EA010-2,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1937,Eg10,EA010,Patrilocal,EA010-8,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +1938,Eg11,EA010,Patrilocal,EA010-8,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +1939,Eg12,EA010,Patrilocal,EA010-8,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +1940,Eg13,EA010,Patrilocal,EA010-8,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1941,Eg14,EA010,Patrilocal,EA010-8,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +1942,Eg2,EA010,Patrilocal,EA010-8,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +1943,Eg3,EA010,Patrilocal,EA010-8,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +1944,Eg4,EA010,Patrilocal,EA010-8,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +1945,Eg5,EA010,Patrilocal,EA010-8,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +1946,Eg6,EA010,Separate,EA010-7,Entry pertains to the Nayar; predominantly Matrilocal among the Mappilla and Virilocal or Neolocal among the Tiyyar,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +1947,Eg7,EA010,Patrilocal,EA010-8,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +1948,Eg8,EA010,Patrilocal,EA010-8,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +1949,Eg9,EA010,Patrilocal,EA010-8,,elwin1939,,1930,EthnographicAtlas_1967_p90, +1950,Eh1,EA010,Ambilocal,EA010-2,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +1951,Eh10,EA010,Patrilocal,EA010-8,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +1952,Eh2,EA010,Virilocal,EA010-10,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +1953,Eh3,EA010,Patrilocal,EA010-8,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +1954,Eh4,EA010,Matrilocal,EA010-5,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1955,Eh5,EA010,Ambi-uxo,EA010-11,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +1956,Eh6,EA010,Ambi-viri,EA010-12,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +1957,Eh7,EA010,Patrilocal,EA010-8,"But McLeod reports Ambilocal (code ""2"")",decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +1958,Eh8,EA010,Patrilocal,EA010-8,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +1959,Eh9,EA010,Patrilocal,EA010-8,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +1960,Ei1,EA010,Matrilocal,EA010-5,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1961,Ei10,EA010,Patrilocal,EA010-8,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +1962,Ei11,EA010,Patrilocal,EA010-8,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +1963,Ei12,EA010,Patrilocal,EA010-8,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +1964,Ei13,EA010,Patrilocal,EA010-8,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +1965,Ei14,EA010,Patrilocal,EA010-8,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +1966,Ei15,EA010,Patrilocal,EA010-8,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +1967,Ei16,EA010,Patrilocal,EA010-8,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +1968,Ei17,EA010,Patrilocal,EA010-8,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +1969,Ei18,EA010,Virilocal,EA010-10,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +1970,Ei19,EA010,Patrilocal,EA010-8,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +1971,Ei2,EA010,Uxorilocal,EA010-9,,mills1922,,1920,EthnographicAtlas_1967_p90, +1972,Ei20,EA010,Patrilocal,EA010-8,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +1973,Ei3,EA010,Uxorilocal,EA010-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +1974,Ei4,EA010,Patrilocal,EA010-8,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +1975,Ei5,EA010,Patrilocal,EA010-8,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +1976,Ei6,EA010,Uxorilocal,EA010-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +1977,Ei7,EA010,Uxorilocal,EA010-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +1978,Ei8,EA010,Matrilocal,EA010-5,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +1979,Ei9,EA010,Patrilocal,EA010-8,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +1980,Ej1,EA010,Uxorilocal,EA010-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +1981,Ej10,EA010,Matrilocal,EA010-5,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +1982,Ej11,EA010,Matrilocal,EA010-5,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +1983,Ej12,EA010,Patrilocal,EA010-8,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +1984,Ej13,EA010,Uxorilocal,EA010-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +1985,Ej14,EA010,Ambilocal,EA010-2,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +1986,Ej15,EA010,Neolocal,EA010-6,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +1987,Ej16,EA010,Matrilocal,EA010-5,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +1988,Ej2,EA010,Matrilocal,EA010-5,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +1989,Ej3,EA010,Uxorilocal,EA010-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +1990,Ej4,EA010,Patrilocal,EA010-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +1991,Ej5,EA010,Uxorilocal,EA010-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +1992,Ej6,EA010,Uxorilocal,EA010-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +1993,Ej7,EA010,Patrilocal,EA010-8,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +1994,Ej8,EA010,Uxorilocal,EA010-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +1995,Ej9,EA010,Ambilocal,EA010-2,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +1996,Ia1,EA010,Ambi-viri,EA010-12,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +1997,Ia10,EA010,Patrilocal,EA010-8,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +1998,Ia11,EA010,Ambi-uxo,EA010-11,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +1999,Ia12,EA010,Neolocal,EA010-6,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +2000,Ia13,EA010,Ambilocal,EA010-2,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +2001,Ia14,EA010,Virilocal,EA010-10,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +2002,Ia15,EA010,Uxorilocal,EA010-9,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +2003,Ia16,EA010,Uxorilocal,EA010-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +2004,Ia17,EA010,Neolocal,EA010-6,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +2005,Ia18,EA010,Neolocal,EA010-6,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +2006,Ia2,EA010,Ambilocal,EA010-2,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +2007,Ia3,EA010,Ambilocal,EA010-2,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +2008,Ia4,EA010,Uxorilocal,EA010-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +2009,Ia5,EA010,Ambi-uxo,EA010-11,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +2010,Ia6,EA010,Ambi-viri,EA010-12,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2011,Ia7,EA010,Ambi-uxo,EA010-11,,fox1954,,1950,EthnographicAtlas_1967_p90, +2012,Ia8,EA010,Ambi-viri,EA010-12,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +2013,Ia9,EA010,Matrilocal,EA010-5,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +2014,Ib1,EA010,Ambilocal,EA010-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2015,Ib2,EA010,Uxorilocal,EA010-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2016,Ib3,EA010,Patrilocal,EA010-8,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +2017,Ib4,EA010,Patrilocal,EA010-8,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +2018,Ib5,EA010,Ambi-viri,EA010-12,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +2019,Ib6,EA010,Separate,EA010-7,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +2020,Ib7,EA010,Ambi-viri,EA010-12,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +2021,Ib8,EA010,Uxorilocal,EA010-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +2022,Ib9,EA010,?,EA010-NA,,,,,, +2023,Ic1,EA010,Ambilocal,EA010-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2024,Ic10,EA010,Ambi-viri,EA010-12,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +2025,Ic11,EA010,Virilocal,EA010-10,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2026,Ic12,EA010,Uxorilocal,EA010-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +2027,Ic13,EA010,Patrilocal,EA010-8,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +2028,Ic2,EA010,Ambi-viri,EA010-12,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +2029,Ic3,EA010,Matrilocal,EA010-5,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +2030,Ic4,EA010,Patrilocal,EA010-8,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +2031,Ic5,EA010,Uxorilocal,EA010-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +2032,Ic6,EA010,Uxorilocal,EA010-9,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +2033,Ic7,EA010,Patrilocal,EA010-8,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +2034,Ic8,EA010,Patrilocal,EA010-8,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +2035,Ic9,EA010,Patrilocal,EA010-8,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +2036,Id1,EA010,Patrilocal,EA010-8,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +2037,Id10,EA010,Patrilocal,EA010-8,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +2038,Id11,EA010,Patrilocal,EA010-8,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +2039,Id12,EA010,Uxorilocal,EA010-9,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +2040,Id13,EA010,Uxorilocal,EA010-9,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +2041,Id2,EA010,Uxorilocal,EA010-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +2042,Id3,EA010,Ambi-viri,EA010-12,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +2043,Id4,EA010,Virilocal,EA010-10,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +2044,Id5,EA010,Patrilocal,EA010-8,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +2045,Id6,EA010,Patrilocal,EA010-8,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +2046,Id7,EA010,Patrilocal,EA010-8,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +2047,Id8,EA010,?,EA010-NA,,,,,, +2048,Id9,EA010,Patrilocal,EA010-8,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +2049,Ie1,EA010,Patrilocal,EA010-8,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2050,Ie10,EA010,Patrilocal,EA010-8,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +2051,Ie11,EA010,Patrilocal,EA010-8,,bowers1964,,1950,EthnographicAtlas_1967_p94, +2052,Ie12,EA010,Patrilocal,EA010-8,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2053,Ie13,EA010,Patrilocal,EA010-8,,landtman1927,,1920,EthnographicAtlas_1967_p94, +2054,Ie14,EA010,Patrilocal,EA010-8,,haddon1908,,1900,EthnographicAtlas_1967_p94, +2055,Ie15,EA010,Patrilocal,EA010-8,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2056,Ie16,EA010,Separate,EA010-7,,williams194041,,1940,EthnographicAtlas_1967_p94, +2057,Ie17,EA010,Separate,EA010-7,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +2058,Ie18,EA010,Ambi-viri,EA010-12,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +2059,Ie19,EA010,Separate,EA010-7,But normally patrilocal,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +2060,Ie2,EA010,Patrilocal,EA010-8,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +2061,Ie20,EA010,Patrilocal,EA010-8,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +2062,Ie21,EA010,Patrilocal,EA010-8,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +2063,Ie22,EA010,Patrilocal,EA010-8,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +2064,Ie23,EA010,Patrilocal,EA010-8,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +2065,Ie24,EA010,Patrilocal,EA010-8,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +2066,Ie25,EA010,Ambilocal,EA010-2,,williamson1912,,1920,EthnographicAtlas_1967_p94, +2067,Ie26,EA010,Patrilocal,EA010-8,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +2068,Ie27,EA010,Patrilocal,EA010-8,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +2069,Ie28,EA010,Virilocal,EA010-10,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +2070,Ie29,EA010,Patrilocal,EA010-8,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2071,Ie3,EA010,Patrilocal,EA010-8,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2072,Ie30,EA010,Matrilocal,EA010-5,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +2073,Ie31,EA010,Patrilocal,EA010-8,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +2074,Ie32,EA010,Patrilocal,EA010-8,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +2075,Ie33,EA010,Patrilocal,EA010-8,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +2076,Ie34,EA010,Ambilocal,EA010-2,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +2077,Ie35,EA010,Patrilocal,EA010-8,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +2078,Ie36,EA010,Patrilocal,EA010-8,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +2079,Ie37,EA010,Patrilocal,EA010-8,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +2080,Ie38,EA010,Virilocal,EA010-10,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +2081,Ie39,EA010,Patrilocal,EA010-8,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +2082,Ie4,EA010,Patrilocal,EA010-8,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2083,Ie5,EA010,Patrilocal,EA010-8,,williams1936,,1930,EthnographicAtlas_1967_p94, +2084,Ie6,EA010,Patrilocal,EA010-8,,held1947,,1930,EthnographicAtlas_1967_p94, +2085,Ie7,EA010,Patrilocal,EA010-8,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +2086,Ie8,EA010,Patrilocal,EA010-8,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +2087,Ie9,EA010,Patrilocal,EA010-8,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +2088,If1,EA010,Virilocal,EA010-10,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2089,If10,EA010,Matrilocal,EA010-5,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +2090,If11,EA010,Virilocal,EA010-10,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +2091,If12,EA010,Matrilocal,EA010-5,,mason1954,,1940,EthnographicAtlas_1967_p98, +2092,If13,EA010,Matrilocal,EA010-5,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +2093,If14,EA010,Ambi-viri,EA010-12,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +2094,If15,EA010,Matrilocal,EA010-5,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +2095,If16,EA010,Matrilocal,EA010-5,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +2096,If17,EA010,Matrilocal,EA010-5,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +2097,If2,EA010,Matrilocal,EA010-5,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +2098,If3,EA010,Ambilocal,EA010-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +2099,If4,EA010,Ambilocal,EA010-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +2100,If5,EA010,Matrilocal,EA010-5,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +2101,If6,EA010,Patrilocal,EA010-8,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +2102,If7,EA010,Ambi-viri,EA010-12,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +2103,If8,EA010,Neolocal,EA010-6,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +2104,If9,EA010,Ambi-viri,EA010-12,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +2105,Ig1,EA010,Virilocal,EA010-10,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +2106,Ig10,EA010,Patrilocal,EA010-8,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +2107,Ig11,EA010,Ambi-viri,EA010-12,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +2108,Ig12,EA010,Ambi-viri,EA010-12,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +2109,Ig13,EA010,Separate,EA010-7,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +2110,Ig14,EA010,Avuncu-virilocal,EA010-4,"Or possibly Ambilocal (code ""2"")",belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +2111,Ig15,EA010,Patrilocal,EA010-8,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +2112,Ig16,EA010,Virilocal,EA010-10,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +2113,Ig17,EA010,Patrilocal,EA010-8,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +2114,Ig18,EA010,Patrilocal,EA010-8,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +2115,Ig19,EA010,Virilocal,EA010-10,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +2116,Ig2,EA010,Avunculocal,EA010-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +2117,Ig20,EA010,Virilocal,EA010-10,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +2118,Ig21,EA010,Avunculocal,EA010-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +2119,Ig3,EA010,Ambilocal,EA010-2,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +2120,Ig4,EA010,Matrilocal,EA010-5,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +2121,Ig5,EA010,Avuncu-uxorilocal,EA010-3,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,,1920,EthnographicAtlas_1967_p98, +2122,Ig6,EA010,Virilocal,EA010-10,,ivens1927,,1900,EthnographicAtlas_1967_p98, +2123,Ig7,EA010,Virilocal,EA010-10,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +2124,Ig8,EA010,Uxorilocal,EA010-9,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +2125,Ig9,EA010,Patrilocal,EA010-8,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +2126,Ih1,EA010,Avunculocal,EA010-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +2127,Ih10,EA010,Patrilocal,EA010-8,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2128,Ih11,EA010,?,EA010-NA,,,,,, +2129,Ih12,EA010,Patrilocal,EA010-8,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +2130,Ih13,EA010,Patrilocal,EA010-8,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +2131,Ih14,EA010,Patrilocal,EA010-8,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +2132,Ih2,EA010,Patrilocal,EA010-8,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2133,Ih3,EA010,Patrilocal,EA010-8,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +2134,Ih4,EA010,Separate,EA010-7,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2135,Ih5,EA010,Patrilocal,EA010-8,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +2136,Ih6,EA010,Matrilocal,EA010-5,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +2137,Ih7,EA010,Patrilocal,EA010-8,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +2138,Ih8,EA010,Patrilocal,EA010-8,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +2139,Ih9,EA010,Virilocal,EA010-10,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2140,Ii1,EA010,Ambilocal,EA010-2,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +2141,Ii10,EA010,?,EA010-NA,,,,,, +2142,Ii12,EA010,Virilocal,EA010-10,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2143,Ii13,EA010,Ambi-viri,EA010-12,,burrows1937,,1830,EthnographicAtlas_1967_p98, +2144,Ii14,EA010,Ambi-viri,EA010-12,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +2145,Ii2,EA010,Patrilocal,EA010-8,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +2146,Ii3,EA010,Patrilocal,EA010-8,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +2147,Ii4,EA010,Ambi-viri,EA010-12,Residence rule inferred from data on inheritance,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +2148,Ii5,EA010,Ambi-uxo,EA010-11,Virilocal for part of the year in families possessing coconut groves in the outer islands,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to codes for post-marital residence (Col 16), not Col 19 as stated in Gray (1999)" +2149,Ii6,EA010,Ambi-uxo,EA010-11,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +2150,Ii7,EA010,Virilocal,EA010-10,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +2151,Ii8,EA010,Ambilocal,EA010-2,,burrows1936,,1840,EthnographicAtlas_1967_p98, +2152,Ii9,EA010,Ambi-viri,EA010-12,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +2153,Ij1,EA010,Ambi-viri,EA010-12,,buck1934,,1820,EthnographicAtlas_1967_p98, +2154,Ij10,EA010,Ambi-viri,EA010-12,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +2155,Ij2,EA010,Virilocal,EA010-10,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +2156,Ij3,EA010,Uxorilocal,EA010-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +2157,Ij4,EA010,Ambi-viri,EA010-12,,buck1932a,,1850,EthnographicAtlas_1967_p102, +2158,Ij5,EA010,Ambilocal,EA010-2,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +2159,Ij6,EA010,Ambilocal,EA010-2,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +2160,Ij7,EA010,Ambi-viri,EA010-12,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +2161,Ij8,EA010,Ambilocal,EA010-2,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +2162,Ij9,EA010,Ambi-viri,EA010-12,,metraux1940,,1860,EthnographicAtlas_1967_p102, +2163,Na1,EA010,Uxorilocal,EA010-9,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +2164,Na10,EA010,Uxorilocal,EA010-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +2165,Na11,EA010,Uxorilocal,EA010-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +2166,Na12,EA010,Uxorilocal,EA010-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +2167,Na13,EA010,Uxorilocal,EA010-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +2168,Na14,EA010,Ambilocal,EA010-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +2169,Na15,EA010,Uxorilocal,EA010-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +2170,Na16,EA010,Uxorilocal,EA010-9,,osgood1931,,1860,EthnographicAtlas_1967_p102, +2171,Na17,EA010,Uxorilocal,EA010-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2172,Na19,EA010,Uxorilocal,EA010-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +2173,Na2,EA010,Ambilocal,EA010-2,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +2174,Na20,EA010,Uxorilocal,EA010-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +2175,Na21,EA010,Ambilocal,EA010-2,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +2176,Na22,EA010,Ambi-viri,EA010-12,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +2177,Na23,EA010,Uxorilocal,EA010-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +2178,Na24,EA010,Ambi-viri,EA010-12,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +2179,Na25,EA010,Ambi-viri,EA010-12,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +2180,Na26,EA010,Uxorilocal,EA010-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +2181,Na27,EA010,Uxorilocal,EA010-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +2182,Na28,EA010,Uxorilocal,EA010-9,,jenness1937,,1880,EthnographicAtlas_1967_p102, +2183,Na29,EA010,Uxorilocal,EA010-9,,goddard1916,,1850,EthnographicAtlas_1967_p102, +2184,Na3,EA010,Neolocal,EA010-6,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +2185,Na30,EA010,Uxorilocal,EA010-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +2186,Na31,EA010,Ambi-uxo,EA010-11,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +2187,Na32,EA010,Virilocal,EA010-10,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +2188,Na33,EA010,Ambi-viri,EA010-12,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +2189,Na34,EA010,Uxorilocal,EA010-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +2190,Na35,EA010,Uxorilocal,EA010-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +2191,Na36,EA010,Uxorilocal,EA010-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +2192,Na37,EA010,Uxorilocal,EA010-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +2193,Na38,EA010,Virilocal,EA010-10,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +2194,Na39,EA010,Uxorilocal,EA010-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +2195,Na4,EA010,Matrilocal,EA010-5,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +2196,Na40,EA010,?,EA010-NA,,,,,, +2197,Na41,EA010,Uxorilocal,EA010-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +2198,Na42,EA010,Patrilocal,EA010-8,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +2199,Na43,EA010,Ambi-viri,EA010-12,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +2200,Na44,EA010,Uxorilocal,EA010-9,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +2201,Na45,EA010,Ambi-viri,EA010-12,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +2202,Na5,EA010,Ambilocal,EA010-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +2203,Na6,EA010,Uxorilocal,EA010-9,,lantis1946,,1930,EthnographicAtlas_1967_p102, +2204,Na7,EA010,Uxorilocal,EA010-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +2205,Na8,EA010,Ambi-uxo,EA010-11,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +2206,Na9,EA010,Uxorilocal,EA010-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2207,Nb1,EA010,Uxorilocal,EA010-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +2208,Nb10,EA010,Uxorilocal,EA010-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +2209,Nb11,EA010,Ambi-viri,EA010-12,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +2210,Nb12,EA010,Ambi-viri,EA010-12,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +2211,Nb13,EA010,Virilocal,EA010-10,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +2212,Nb14,EA010,Ambi-viri,EA010-12,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +2213,Nb15,EA010,Ambi-viri,EA010-12,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +2214,Nb16,EA010,Virilocal,EA010-10,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +2215,Nb17,EA010,Ambi-viri,EA010-12,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +2216,Nb18,EA010,Virilocal,EA010-10,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +2217,Nb19,EA010,Virilocal,EA010-10,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +2218,Nb2,EA010,Virilocal,EA010-10,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +2219,Nb20,EA010,Ambi-viri,EA010-12,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +2220,Nb21,EA010,Ambi-viri,EA010-12,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +2221,Nb22,EA010,Avunculocal,EA010-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +2222,Nb23,EA010,Ambi-viri,EA010-12,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +2223,Nb24,EA010,Virilocal,EA010-10,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +2224,Nb25,EA010,Ambi-viri,EA010-12,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +2225,Nb26,EA010,Ambi-viri,EA010-12,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +2226,Nb27,EA010,Ambi-viri,EA010-12,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +2227,Nb28,EA010,Ambi-viri,EA010-12,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +2228,Nb29,EA010,Ambi-viri,EA010-12,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +2229,Nb3,EA010,Ambi-viri,EA010-12,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +2230,Nb30,EA010,Virilocal,EA010-10,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +2231,Nb31,EA010,Patrilocal,EA010-8,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +2232,Nb32,EA010,Ambi-viri,EA010-12,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +2233,Nb33,EA010,Ambilocal,EA010-2,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +2234,Nb34,EA010,Ambi-viri,EA010-12,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +2235,Nb35,EA010,Ambi-viri,EA010-12,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +2236,Nb36,EA010,Ambi-viri,EA010-12,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +2237,Nb37,EA010,Uxorilocal,EA010-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +2238,Nb38,EA010,Ambi-viri,EA010-12,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +2239,Nb39,EA010,Uxorilocal,EA010-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +2240,Nb4,EA010,Ambi-viri,EA010-12,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +2241,Nb5,EA010,Uxorilocal,EA010-9,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +2242,Nb6,EA010,Patrilocal,EA010-8,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +2243,Nb7,EA010,Avunculocal,EA010-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +2244,Nb8,EA010,Uxorilocal,EA010-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +2245,Nb9,EA010,Ambi-viri,EA010-12,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +2246,Nc1,EA010,Uxorilocal,EA010-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +2247,Nc10,EA010,Uxorilocal,EA010-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +2248,Nc11,EA010,Uxorilocal,EA010-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +2249,Nc12,EA010,Ambilocal,EA010-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +2250,Nc13,EA010,Uxorilocal,EA010-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +2251,Nc14,EA010,Ambi-viri,EA010-12,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +2252,Nc15,EA010,Uxorilocal,EA010-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +2253,Nc16,EA010,Uxorilocal,EA010-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +2254,Nc17,EA010,Uxorilocal,EA010-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +2255,Nc18,EA010,Ambilocal,EA010-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +2256,Nc19,EA010,Uxorilocal,EA010-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +2257,Nc2,EA010,Ambi-viri,EA010-12,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +2258,Nc20,EA010,Ambilocal,EA010-2,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +2259,Nc21,EA010,?,EA010-NA,,,,,, +2260,Nc22,EA010,Uxorilocal,EA010-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +2261,Nc23,EA010,Uxorilocal,EA010-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +2262,Nc24,EA010,Uxorilocal,EA010-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +2263,Nc25,EA010,Uxorilocal,EA010-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +2264,Nc26,EA010,Patrilocal,EA010-8,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +2265,Nc27,EA010,Uxorilocal,EA010-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +2266,Nc28,EA010,Uxorilocal,EA010-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +2267,Nc29,EA010,Uxorilocal,EA010-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +2268,Nc3,EA010,Uxorilocal,EA010-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +2269,Nc30,EA010,Patrilocal,EA010-8,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +2270,Nc31,EA010,Patrilocal,EA010-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +2271,Nc32,EA010,Patrilocal,EA010-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +2272,Nc33,EA010,Patrilocal,EA010-8,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +2273,Nc34,EA010,Patrilocal,EA010-8,,meigs1939,,1880,EthnographicAtlas_1967_p106, +2274,Nc4,EA010,Uxorilocal,EA010-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +2275,Nc5,EA010,Patrilocal,EA010-8,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +2276,Nc6,EA010,Patrilocal,EA010-8,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +2277,Nc7,EA010,Uxorilocal,EA010-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +2278,Nc8,EA010,Ambi-viri,EA010-12,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +2279,Nc9,EA010,Uxorilocal,EA010-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +2280,Nd1,EA010,Ambi-viri,EA010-12,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +2281,Nd10,EA010,Ambi-viri,EA010-12,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +2282,Nd11,EA010,Virilocal,EA010-10,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +2283,Nd12,EA010,Ambi-viri,EA010-12,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +2284,Nd13,EA010,Ambi-viri,EA010-12,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +2285,Nd14,EA010,Virilocal,EA010-10,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +2286,Nd15,EA010,Virilocal,EA010-10,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +2287,Nd16,EA010,Virilocal,EA010-10,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +2288,Nd17,EA010,Ambi-uxo,EA010-11,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +2289,Nd18,EA010,Ambi-viri,EA010-12,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +2290,Nd19,EA010,Virilocal,EA010-10,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +2291,Nd2,EA010,Ambi-uxo,EA010-11,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +2292,Nd20,EA010,Ambi-viri,EA010-12,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +2293,Nd21,EA010,Uxorilocal,EA010-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +2294,Nd22,EA010,Uxorilocal,EA010-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +2295,Nd23,EA010,Ambilocal,EA010-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +2296,Nd24,EA010,Uxorilocal,EA010-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +2297,Nd25,EA010,Ambi-uxo,EA010-11,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +2298,Nd26,EA010,Uxorilocal,EA010-9,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +2299,Nd27,EA010,Uxorilocal,EA010-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +2300,Nd28,EA010,Ambilocal,EA010-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +2301,Nd29,EA010,Uxorilocal,EA010-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +2302,Nd3,EA010,Uxorilocal,EA010-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +2303,Nd30,EA010,Uxorilocal,EA010-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +2304,Nd31,EA010,Uxorilocal,EA010-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +2305,Nd32,EA010,Uxorilocal,EA010-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +2306,Nd33,EA010,Ambilocal,EA010-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +2307,Nd34,EA010,Ambilocal,EA010-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +2308,Nd35,EA010,Uxorilocal,EA010-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +2309,Nd36,EA010,Uxorilocal,EA010-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +2310,Nd37,EA010,Ambilocal,EA010-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +2311,Nd38,EA010,Ambilocal,EA010-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +2312,Nd39,EA010,Ambilocal,EA010-2,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +2313,Nd4,EA010,Virilocal,EA010-10,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +2314,Nd40,EA010,Uxorilocal,EA010-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +2315,Nd41,EA010,Uxorilocal,EA010-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +2316,Nd42,EA010,Uxorilocal,EA010-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +2317,Nd43,EA010,Ambi-uxo,EA010-11,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +2318,Nd44,EA010,Ambi-uxo,EA010-11,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +2319,Nd45,EA010,Ambilocal,EA010-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +2320,Nd46,EA010,Uxorilocal,EA010-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +2321,Nd47,EA010,Uxorilocal,EA010-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +2322,Nd48,EA010,Ambi-uxo,EA010-11,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +2323,Nd49,EA010,Uxorilocal,EA010-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +2324,Nd5,EA010,Ambilocal,EA010-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +2325,Nd50,EA010,?,EA010-NA,,,,,, +2326,Nd51,EA010,Uxorilocal,EA010-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +2327,Nd52,EA010,Uxorilocal,EA010-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +2328,Nd53,EA010,Uxorilocal,EA010-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +2329,Nd54,EA010,Ambilocal,EA010-2,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2330,Nd55,EA010,Ambilocal,EA010-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +2331,Nd56,EA010,Ambi-uxo,EA010-11,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +2332,Nd57,EA010,Ambi-uxo,EA010-11,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +2333,Nd58,EA010,Ambi-uxo,EA010-11,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +2334,Nd59,EA010,Uxorilocal,EA010-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +2335,Nd6,EA010,Uxorilocal,EA010-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +2336,Nd60,EA010,Uxorilocal,EA010-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +2337,Nd61,EA010,Uxorilocal,EA010-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +2338,Nd62,EA010,Uxorilocal,EA010-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +2339,Nd63,EA010,Ambi-uxo,EA010-11,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +2340,Nd64,EA010,Uxorilocal,EA010-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +2341,Nd65,EA010,Uxorilocal,EA010-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +2342,Nd66,EA010,Uxorilocal,EA010-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +2343,Nd67,EA010,Uxorilocal,EA010-9,,gifford1936,,1870,EthnographicAtlas_1967_p110, +2344,Nd7,EA010,Uxorilocal,EA010-9,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +2345,Nd8,EA010,Ambi-viri,EA010-12,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +2346,Nd9,EA010,Ambi-viri,EA010-12,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +2347,Ne1,EA010,Ambi-viri,EA010-12,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +2348,Ne10,EA010,Uxorilocal,EA010-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +2349,Ne11,EA010,Ambi-viri,EA010-12,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +2350,Ne12,EA010,Ambi-viri,EA010-12,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +2351,Ne13,EA010,Virilocal,EA010-10,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +2352,Ne14,EA010,?,EA010-NA,,,,,, +2353,Ne15,EA010,Matrilocal,EA010-5,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +2354,Ne16,EA010,Uxorilocal,EA010-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +2355,Ne17,EA010,Ambi-viri,EA010-12,"Entry follows Richardson; Mooney reports prevailing pattern as Uxorilocal (code ""9"") with Virilocal as alternate (EA014 would be code ""10"")",lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +2356,Ne18,EA010,Virilocal,EA010-10,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +2357,Ne19,EA010,Virilocal,EA010-10,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +2358,Ne2,EA010,Ambi-uxo,EA010-11,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +2359,Ne20,EA010,Uxorilocal,EA010-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +2360,Ne21,EA010,?,EA010-NA,,,,,, +2361,Ne3,EA010,Ambilocal,EA010-2,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +2362,Ne4,EA010,Virilocal,EA010-10,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +2363,Ne5,EA010,Ambi-uxo,EA010-11,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +2364,Ne6,EA010,Matrilocal,EA010-5,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +2365,Ne7,EA010,Virilocal,EA010-10,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +2366,Ne8,EA010,Ambi-viri,EA010-12,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +2367,Ne9,EA010,Uxorilocal,EA010-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +2368,Nf10,EA010,Uxorilocal,EA010-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +2369,Nf11,EA010,Uxorilocal,EA010-9,,whitman1937,,1870,EthnographicAtlas_1967_p114, +2370,Nf12,EA010,Patrilocal,EA010-8,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +2371,Nf13,EA010,Patrilocal,EA010-8,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2372,Nf14,EA010,Uxorilocal,EA010-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +2373,Nf15,EA010,Patrilocal,EA010-8,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +2374,Nf2,EA010,Uxorilocal,EA010-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +2375,Nf3,EA010,Uxorilocal,EA010-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +2376,Nf4,EA010,Patrilocal,EA010-8,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +2377,Nf5,EA010,Ambi-uxo,EA010-11,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +2378,Nf6,EA010,Matrilocal,EA010-5,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +2379,Nf7,EA010,Uxorilocal,EA010-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2380,Nf8,EA010,Ambi-uxo,EA010-11,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +2381,Nf9,EA010,Patrilocal,EA010-8,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +2382,Ng1,EA010,Matrilocal,EA010-5,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +2383,Ng10,EA010,Matrilocal,EA010-5,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +2384,Ng11,EA010,Neolocal,EA010-6,"At a late period, but probably originally Matrilocal (code ""5"")",eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +2385,Ng12,EA010,Matrilocal,EA010-5,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +2386,Ng13,EA010,Uxorilocal,EA010-9,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +2387,Ng14,EA010,Matrilocal,EA010-5,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +2388,Ng15,EA010,?,EA010-NA,,,,,, +2389,Ng2,EA010,Matrilocal,EA010-5,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +2390,Ng3,EA010,Matrilocal,EA010-5,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +2391,Ng4,EA010,Uxorilocal,EA010-9,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +2392,Ng5,EA010,Matrilocal,EA010-5,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +2393,Ng6,EA010,Matrilocal,EA010-5,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +2394,Ng7,EA010,Virilocal,EA010-10,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +2395,Ng8,EA010,Matrilocal,EA010-5,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +2396,Ng9,EA010,Neolocal,EA010-6,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +2397,Nh1,EA010,Ambi-uxo,EA010-11,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +2398,Nh10,EA010,Neolocal,EA010-6,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +2399,Nh11,EA010,Neolocal,EA010-6,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +2400,Nh12,EA010,Ambilocal,EA010-2,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +2401,Nh13,EA010,Ambilocal,EA010-2,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +2402,Nh14,EA010,Matrilocal,EA010-5,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +2403,Nh15,EA010,Uxorilocal,EA010-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +2404,Nh16,EA010,Uxorilocal,EA010-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2405,Nh17,EA010,Matrilocal,EA010-5,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +2406,Nh18,EA010,Matrilocal,EA010-5,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2407,Nh19,EA010,Uxorilocal,EA010-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +2408,Nh2,EA010,Matrilocal,EA010-5,,dozier1954,,1950,EthnographicAtlas_1967_p114, +2409,Nh20,EA010,Uxorilocal,EA010-9,,gifford1931,,1860,EthnographicAtlas_1967_p114, +2410,Nh21,EA010,Ambilocal,EA010-2,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2411,Nh22,EA010,Patrilocal,EA010-8,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +2412,Nh23,EA010,Ambilocal,EA010-2,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +2413,Nh24,EA010,Uxorilocal,EA010-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +2414,Nh25,EA010,Neolocal,EA010-6,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +2415,Nh26,EA010,Neolocal,EA010-6,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +2416,Nh27,EA010,Ambilocal,EA010-2,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +2417,Nh3,EA010,Matrilocal,EA010-5,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +2418,Nh4,EA010,Matrilocal,EA010-5,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +2419,Nh5,EA010,Patrilocal,EA010-8,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +2420,Nh6,EA010,Neolocal,EA010-6,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +2421,Nh7,EA010,Matrilocal,EA010-5,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +2422,Nh8,EA010,Ambilocal,EA010-2,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +2423,Nh9,EA010,Neolocal,EA010-6,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +2424,Ni1,EA010,Uxorilocal,EA010-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +2425,Ni2,EA010,Virilocal,EA010-10,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +2426,Ni3,EA010,Uxorilocal,EA010-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +2427,Ni4,EA010,Virilocal,EA010-10,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +2428,Ni5,EA010,Ambi-uxo,EA010-11,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +2429,Ni6,EA010,Virilocal,EA010-10,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +2430,Ni7,EA010,Virilocal,EA010-10,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +2431,Ni8,EA010,Neolocal,EA010-6,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +2432,Ni9,EA010,?,EA010-NA,,,,,, +2433,Nj1,EA010,Virilocal,EA010-10,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2434,Nj10,EA010,Virilocal,EA010-10,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2435,Nj11,EA010,Virilocal,EA010-10,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +2436,Nj12,EA010,?,EA010-NA,,,,,, +2437,Nj13,EA010,Neolocal,EA010-6,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +2438,Nj14,EA010,Patrilocal,EA010-8,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +2439,Nj2,EA010,Virilocal,EA010-10,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +2440,Nj3,EA010,Virilocal,EA010-10,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +2441,Nj4,EA010,Virilocal,EA010-10,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +2442,Nj5,EA010,Virilocal,EA010-10,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +2443,Nj6,EA010,Ambi-viri,EA010-12,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +2444,Nj7,EA010,Virilocal,EA010-10,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2445,Nj8,EA010,Virilocal,EA010-10,,foster1948,,1500,EthnographicAtlas_1967_p118, +2446,Nj9,EA010,Virilocal,EA010-10,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +2447,Sa1,EA010,Uxorilocal,EA010-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +2448,Sa10,EA010,Patrilocal,EA010-8,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +2449,Sa11,EA010,Patrilocal,EA010-8,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +2450,Sa12,EA010,Uxorilocal,EA010-9,,stone1948,,1948,EthnographicAtlas_1967_p118, +2451,Sa13,EA010,Patrilocal,EA010-8,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +2452,Sa14,EA010,Matrilocal,EA010-5,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +2453,Sa15,EA010,Patrilocal,EA010-8,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +2454,Sa16,EA010,Neolocal,EA010-6,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +2455,Sa17,EA010,Patrilocal,EA010-8,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +2456,Sa2,EA010,Uxorilocal,EA010-9,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2457,Sa3,EA010,Ambilocal,EA010-2,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +2458,Sa4,EA010,Uxorilocal,EA010-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +2459,Sa5,EA010,Uxorilocal,EA010-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +2460,Sa6,EA010,Uxorilocal,EA010-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +2461,Sa7,EA010,Neolocal,EA010-6,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +2462,Sa8,EA010,Patrilocal,EA010-8,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +2463,Sa9,EA010,Uxorilocal,EA010-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +2464,Sb1,EA010,Matrilocal,EA010-5,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +2465,Sb2,EA010,Uxorilocal,EA010-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +2466,Sb3,EA010,Ambi-uxo,EA010-11,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +2467,Sb4,EA010,Ambi-uxo,EA010-11,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +2468,Sb5,EA010,Ambilocal,EA010-2,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +2469,Sb6,EA010,Uxorilocal,EA010-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +2470,Sb7,EA010,Uxorilocal,EA010-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +2471,Sb8,EA010,Virilocal,EA010-10,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +2472,Sb9,EA010,Neolocal,EA010-6,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +2473,Sc1,EA010,Uxorilocal,EA010-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +2474,Sc10,EA010,Matrilocal,EA010-5,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +2475,Sc11,EA010,Virilocal,EA010-10,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +2476,Sc12,EA010,Uxorilocal,EA010-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +2477,Sc13,EA010,Ambi-uxo,EA010-11,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +2478,Sc14,EA010,Uxorilocal,EA010-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +2479,Sc15,EA010,Uxorilocal,EA010-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +2480,Sc16,EA010,Uxorilocal,EA010-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +2481,Sc17,EA010,Uxorilocal,EA010-9,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +2482,Sc18,EA010,Matrilocal,EA010-5,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +2483,Sc2,EA010,Uxorilocal,EA010-9,,leedsnd,,1950,EthnographicAtlas_1967_p118, +2484,Sc3,EA010,Uxorilocal,EA010-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +2485,Sc4,EA010,Uxorilocal,EA010-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +2486,Sc5,EA010,Uxorilocal,EA010-9,,farabee1918,,1900,EthnographicAtlas_1967_p118, +2487,Sc6,EA010,Avunculocal,EA010-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2488,Sc7,EA010,Uxorilocal,EA010-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +2489,Sc8,EA010,Uxorilocal,EA010-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +2490,Sc9,EA010,Virilocal,EA010-10,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +2491,Sd1,EA010,Ambi-uxo,EA010-11,But men sleep apart from their wives in a men's house,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2492,Sd2,EA010,Uxorilocal,EA010-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +2493,Sd3,EA010,Ambilocal,EA010-2,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +2494,Sd4,EA010,Ambilocal,EA010-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +2495,Sd5,EA010,Patrilocal,EA010-8,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +2496,Sd6,EA010,Uxorilocal,EA010-9,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +2497,Sd7,EA010,Uxorilocal,EA010-9,,fock1963,,1950,EthnographicAtlas_1967_p118, +2498,Sd8,EA010,Uxorilocal,EA010-9,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +2499,Sd9,EA010,Virilocal,EA010-10,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2500,Se1,EA010,Uxorilocal,EA010-9,"The entry assumes that the matrilocal extended families are organized around matrilineage cores; if there are actually no lineages, the entry should be Uxorilocal; Holmberg does not report lineages but admits, in personal discussion, that he may conceivably have overlooked their existence",holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +2501,Se10,EA010,Uxorilocal,EA010-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +2502,Se11,EA010,Uxorilocal,EA010-9,,prost1965,,1960,EthnographicAtlas_1967_p122, +2503,Se12,EA010,Patrilocal,EA010-8,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +2504,Se2,EA010,Uxorilocal,EA010-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +2505,Se3,EA010,Uxorilocal,EA010-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +2506,Se4,EA010,Uxorilocal,EA010-9,,fejos1943,,1940,EthnographicAtlas_1967_p118, +2507,Se5,EA010,Patrilocal,EA010-8,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +2508,Se6,EA010,Patrilocal,EA010-8,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +2509,Se7,EA010,Neolocal,EA010-6,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2510,Se8,EA010,Virilocal,EA010-10,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +2511,Se9,EA010,Uxorilocal,EA010-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +2512,Sf1,EA010,Virilocal,EA010-10,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +2513,Sf2,EA010,Patrilocal,EA010-8,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +2514,Sf3,EA010,Ambi-viri,EA010-12,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +2515,Sf4,EA010,Uxorilocal,EA010-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +2516,Sf5,EA010,Neolocal,EA010-6,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +2517,Sf6,EA010,Virilocal,EA010-10,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +2518,Sf7,EA010,Ambi-viri,EA010-12,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +2519,Sf8,EA010,Uxorilocal,EA010-9,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +2520,Sf9,EA010,Neolocal,EA010-6,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +2521,Sg1,EA010,Virilocal,EA010-10,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +2522,Sg2,EA010,Patrilocal,EA010-8,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2523,Sg3,EA010,Virilocal,EA010-10,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people""",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +2524,Sg4,EA010,Virilocal,EA010-10,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +2525,Sg5,EA010,Uxorilocal,EA010-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2526,Sh1,EA010,Uxorilocal,EA010-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +2527,Sh2,EA010,Uxorilocal,EA010-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +2528,Sh3,EA010,Uxorilocal,EA010-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +2529,Sh4,EA010,Uxorilocal,EA010-9,,oberg1949,,1940,EthnographicAtlas_1967_p122, +2530,Sh5,EA010,Uxorilocal,EA010-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +2531,Sh6,EA010,Ambi-uxo,EA010-11,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +2532,Sh7,EA010,Uxorilocal,EA010-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +2533,Sh8,EA010,Ambilocal,EA010-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +2534,Sh9,EA010,Ambi-uxo,EA010-11,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +2535,Si1,EA010,Matrilocal,EA010-5,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2536,Si10,EA010,Uxorilocal,EA010-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +2537,Si2,EA010,Virilocal,EA010-10,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +2538,Si3,EA010,Uxorilocal,EA010-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2539,Si4,EA010,Ambi-viri,EA010-12,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +2540,Si5,EA010,Uxorilocal,EA010-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +2541,Si6,EA010,Neolocal,EA010-6,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +2542,Si7,EA010,Ambi-uxo,EA010-11,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +2543,Si8,EA010,Uxorilocal,EA010-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +2544,Si9,EA010,?,EA010-NA,,,,,, +2545,Sj1,EA010,Uxorilocal,EA010-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +2546,Sj10,EA010,Virilocal,EA010-10,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2547,Sj11,EA010,Uxorilocal,EA010-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +2548,Sj2,EA010,Uxorilocal,EA010-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +2549,Sj3,EA010,Ambilocal,EA010-2,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +2550,Sj4,EA010,Matrilocal,EA010-5,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +2551,Sj5,EA010,?,EA010-NA,,,,,, +2552,Sj6,EA010,Uxorilocal,EA010-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2553,Sj7,EA010,Matrilocal,EA010-5,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +2554,Sj8,EA010,Uxorilocal,EA010-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +2555,Sj9,EA010,Uxorilocal,EA010-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +2556,ch12,EA010,Separate,EA010-7,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +2557,ch13,EA010,Patrilocal,EA010-8,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +2558,ch14,EA010,Virilocal,EA010-10,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +2559,ch15,EA010,Virilocal,EA010-10,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +2560,ch16,EA010,Ambi-viri,EA010-12,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +2561,ch17,EA010,Neolocal,EA010-6,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +2562,ch18,EA010,Virilocal,EA010-10,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +2563,ch19,EA010,Patrilocal,EA010-8,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +2564,ch20,EA010,Separate,EA010-7,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +2565,ch21,EA010,Virilocal,EA010-10,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +2566,ch22,EA010,Virilocal,EA010-10,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +2567,ch23,EA010,Ambi-viri,EA010-12,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +2568,ch24,EA010,Virilocal,EA010-10,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +2569,ch25,EA010,Virilocal,EA010-10,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +2570,ch26,EA010,Separate,EA010-7,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +2571,ch27,EA010,Virilocal,EA010-10,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +2572,ch28,EA010,Virilocal,EA010-10,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +2573,ec12,EA010,Virilocal,EA010-10,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +2574,ec13,EA010,Uxorilocal,EA010-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +2575,ec14,EA010,Uxorilocal,EA010-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +2576,ec15,EA010,Virilocal,EA010-10,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +2577,ec16,EA010,Virilocal,EA010-10,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +2578,ec17,EA010,Virilocal,EA010-10,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +2579,ec18,EA010,Virilocal,EA010-10,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +2580,ec19,EA010,Virilocal,EA010-10,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +2581,ec20,EA010,Virilocal,EA010-10,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +2582,ec21,EA010,Virilocal,EA010-10,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +2583,Aa1,EA011,Ambi/neo-local,EA011-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +2584,Aa2,EA011,Wife to husband,EA011-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +2585,Aa3,EA011,Wife to husband,EA011-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +2586,Aa4,EA011,Ambi/neo-local,EA011-2,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +2587,Aa5,EA011,Ambi/neo-local,EA011-2,"Entry follows Schebesta; Czekanowski reports Uxorilocal (code would be ""3""); Turnbull reports Ambilocal (code would be ""2"")",deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +2588,Aa6,EA011,Wife to husband,EA011-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +2589,Aa7,EA011,Ambi/neo-local,EA011-2,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +2590,Aa8,EA011,Ambi/neo-local,EA011-2,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +2591,Aa9,EA011,Ambi/neo-local,EA011-2,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +2592,Ab1,EA011,Wife to husband,EA011-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +2593,Ab10,EA011,Wife to husband,EA011-1,,hunter1936,,1936,EthnographicAtlas_1967_p62, +2594,Ab11,EA011,Wife to husband,EA011-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +2595,Ab12,EA011,Wife to husband,EA011-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +2596,Ab13,EA011,Wife to husband,EA011-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +2597,Ab14,EA011,Wife to husband,EA011-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +2598,Ab15,EA011,Wife to husband,EA011-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +2599,Ab16,EA011,Wife to husband,EA011-1,,earthy1933,,1930,EthnographicAtlas_1967_p62, +2600,Ab17,EA011,Wife to husband,EA011-1,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +2601,Ab18,EA011,Wife to husband,EA011-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +2602,Ab19,EA011,Wife to husband,EA011-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +2603,Ab2,EA011,Wife to husband,EA011-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +2604,Ab20,EA011,Wife to husband,EA011-1,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +2605,Ab21a,EA011,Wife to husband,EA011-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +2606,Ab21b,EA011,Wife to husband,EA011-1,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +2607,Ab22,EA011,Wife to husband,EA011-1,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +2608,Ab3,EA011,Wife to husband,EA011-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +2609,Ab4,EA011,Wife to husband,EA011-1,,junod1927,,1920,EthnographicAtlas_1967_p62, +2610,Ab5,EA011,Wife to husband,EA011-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +2611,Ab6,EA011,Wife to husband,EA011-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +2612,Ab7,EA011,Wife to husband,EA011-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2613,Ab8,EA011,Wife to husband,EA011-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +2614,Ab9,EA011,Wife to husband,EA011-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +2615,Ac1,EA011,Wife to husband,EA011-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +2616,Ac10,EA011,Wife to husband,EA011-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2617,Ac11,EA011,Wife to husband,EA011-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2618,Ac12,EA011,Wife to husband,EA011-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2619,Ac13,EA011,Wife to husband,EA011-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2620,Ac14,EA011,Wife to husband,EA011-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2621,Ac15,EA011,Wife to husband,EA011-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2622,Ac16,EA011,Wife to husband,EA011-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2623,Ac17,EA011,Wife to husband,EA011-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +2624,Ac18,EA011,Wife to husband,EA011-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2625,Ac19,EA011,Wife to husband,EA011-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +2626,Ac2,EA011,Wife to husband,EA011-1,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2627,Ac20,EA011,Wife to husband,EA011-1,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2628,Ac21,EA011,Wife to husband,EA011-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2629,Ac22,EA011,Wife to husband,EA011-1,,mertens1935,,1930,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2630,Ac23,EA011,Wife to husband,EA011-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2631,Ac24,EA011,Wife to husband,EA011-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2632,Ac25,EA011,Wife to husband,EA011-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2633,Ac26,EA011,Wife to husband,EA011-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2634,Ac27,EA011,Wife to husband,EA011-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2635,Ac28,EA011,Wife to husband,EA011-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2636,Ac29,EA011,Wife to husband,EA011-1,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2637,Ac3,EA011,Ambi/neo-local,EA011-2,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""uxorilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). THerefore, we have recoded this as ""2"", couple to either group (uxorilocal >> wife's group; avunculocal >> husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2638,Ac30,EA011,Wife to husband,EA011-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2639,Ac31,EA011,Wife to husband,EA011-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2640,Ac32,EA011,Wife to husband,EA011-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2641,Ac33,EA011,Wife to husband,EA011-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2642,Ac34,EA011,Wife to husband,EA011-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2643,Ac35,EA011,Wife to husband,EA011-1,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2644,Ac36,EA011,Wife to husband,EA011-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +2645,Ac37,EA011,Ambi/neo-local,EA011-2,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966,"This code is based on variable EA012, which for this society is coded as ""uxorilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). THerefore, we have recoded this as ""2"", couple to either group (uxorilocal >> wife's group; avunculocal >> husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2646,Ac38,EA011,Husband to wife,EA011-3,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +2647,Ac39,EA011,Husband to wife,EA011-3,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +2648,Ac4,EA011,Wife to husband,EA011-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2649,Ac40,EA011,Husband to wife,EA011-3,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +2650,Ac41,EA011,Wife to husband,EA011-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2651,Ac42,EA011,Ambi/neo-local,EA011-2,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966,"This code is based on variable EA012, which for this society is coded as ""uxorilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). THerefore, we have recoded this as ""2"", couple to either group (uxorilocal >> wife's group; avunculocal >> husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2652,Ac43,EA011,Wife to husband,EA011-1,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +2653,Ac5,EA011,Ambi/neo-local,EA011-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""uxorilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). THerefore, we have recoded this as ""2"", couple to either group (uxorilocal >> wife's group; avunculocal >> husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2654,Ac6,EA011,Wife to husband,EA011-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2655,Ac7,EA011,Husband to wife,EA011-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +2656,Ac8,EA011,Wife to husband,EA011-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2657,Ac9,EA011,Ambi/neo-local,EA011-2,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +2658,Ad1,EA011,Ambi/neo-local,EA011-2,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +2659,Ad10,EA011,Wife to husband,EA011-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +2660,Ad11,EA011,Ambi/neo-local,EA011-2,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +2661,Ad12,EA011,Wife to husband,EA011-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +2662,Ad13,EA011,Wife to husband,EA011-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +2663,Ad14,EA011,Husband to wife,EA011-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +2664,Ad15,EA011,Wife to husband,EA011-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +2665,Ad16,EA011,Ambi/neo-local,EA011-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +2666,Ad17,EA011,Wife to husband,EA011-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +2667,Ad18,EA011,Wife to husband,EA011-1,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +2668,Ad19,EA011,Wife to husband,EA011-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +2669,Ad2,EA011,Wife to husband,EA011-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +2670,Ad20,EA011,Wife to husband,EA011-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +2671,Ad21,EA011,Wife to husband,EA011-1,,maurice193538,,1930,EthnographicAtlas_1967_p66, +2672,Ad22,EA011,Wife to husband,EA011-1,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +2673,Ad23,EA011,Wife to husband,EA011-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +2674,Ad24,EA011,Wife to husband,EA011-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +2675,Ad25,EA011,Wife to husband,EA011-1,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +2676,Ad26,EA011,Wife to husband,EA011-1,,sick1916,,1910,EthnographicAtlas_1967_p66, +2677,Ad27,EA011,Husband to wife,EA011-3,At least initially,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +2678,Ad28,EA011,Husband to wife,EA011-3,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +2679,Ad29,EA011,Wife to husband,EA011-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +2680,Ad3,EA011,Wife to husband,EA011-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +2681,Ad30,EA011,Wife to husband,EA011-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +2682,Ad31,EA011,Wife to husband,EA011-1,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +2683,Ad32,EA011,Wife to husband,EA011-1,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +2684,Ad33,EA011,Wife to husband,EA011-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +2685,Ad34,EA011,Wife to husband,EA011-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +2686,Ad35,EA011,Wife to husband,EA011-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +2687,Ad36,EA011,Wife to husband,EA011-1,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +2688,Ad37,EA011,Wife to husband,EA011-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +2689,Ad38,EA011,Wife to husband,EA011-1,Inferential from distributional evidence,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +2690,Ad39,EA011,Wife to husband,EA011-1,,gray1963,,1950,EthnographicAtlas_1967_p66, +2691,Ad4,EA011,Wife to husband,EA011-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +2692,Ad40,EA011,Wife to husband,EA011-1,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +2693,Ad41,EA011,Wife to husband,EA011-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +2694,Ad42,EA011,Wife to husband,EA011-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +2695,Ad43,EA011,Wife to husband,EA011-1,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +2696,Ad44,EA011,Wife to husband,EA011-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +2697,Ad45,EA011,Wife to husband,EA011-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +2698,Ad46,EA011,Wife to husband,EA011-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +2699,Ad47,EA011,Wife to husband,EA011-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +2700,Ad48,EA011,Wife to husband,EA011-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +2701,Ad49,EA011,Wife to husband,EA011-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +2702,Ad5,EA011,Wife to husband,EA011-1,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +2703,Ad50,EA011,Husband to wife,EA011-3,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +2704,Ad51,EA011,Wife to husband,EA011-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2705,Ad6,EA011,Ambi/neo-local,EA011-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +2706,Ad7,EA011,Ambi/neo-local,EA011-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +2707,Ad8,EA011,Wife to husband,EA011-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +2708,Ad9,EA011,Wife to husband,EA011-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +2709,Ae1,EA011,Wife to husband,EA011-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +2710,Ae10,EA011,Wife to husband,EA011-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +2711,Ae11,EA011,Wife to husband,EA011-1,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +2712,Ae12,EA011,Wife to husband,EA011-1,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +2713,Ae13,EA011,Wife to husband,EA011-1,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +2714,Ae14,EA011,Wife to husband,EA011-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +2715,Ae15,EA011,Wife to husband,EA011-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +2716,Ae16,EA011,Wife to husband,EA011-1,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +2717,Ae17,EA011,Wife to husband,EA011-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +2718,Ae18,EA011,Wife to husband,EA011-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +2719,Ae19,EA011,Wife to husband,EA011-1,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +2720,Ae2,EA011,Wife to husband,EA011-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +2721,Ae20,EA011,Wife to husband,EA011-1,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +2722,Ae21,EA011,Wife to husband,EA011-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +2723,Ae22,EA011,Wife to husband,EA011-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +2724,Ae23,EA011,Wife to husband,EA011-1,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +2725,Ae24,EA011,Wife to husband,EA011-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +2726,Ae25,EA011,Wife to husband,EA011-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +2727,Ae26,EA011,Wife to husband,EA011-1,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +2728,Ae27,EA011,Wife to husband,EA011-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +2729,Ae28,EA011,Wife to husband,EA011-1,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +2730,Ae29,EA011,Wife to husband,EA011-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +2731,Ae3,EA011,Wife to husband,EA011-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +2732,Ae30,EA011,Wife to husband,EA011-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +2733,Ae31,EA011,Wife to husband,EA011-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +2734,Ae32,EA011,Wife to husband,EA011-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +2735,Ae33,EA011,Wife to husband,EA011-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +2736,Ae34,EA011,Wife to husband,EA011-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +2737,Ae35,EA011,Wife to husband,EA011-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +2738,Ae36,EA011,Wife to husband,EA011-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +2739,Ae37,EA011,Wife to husband,EA011-1,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +2740,Ae38,EA011,Wife to husband,EA011-1,The relative incidence of avunculocal and virilocal residence is unclear,wijnant192526,,1920,EthnographicAtlas_1967_p66,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2741,Ae39,EA011,Wife to husband,EA011-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +2742,Ae4,EA011,Wife to husband,EA011-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +2743,Ae40,EA011,Wife to husband,EA011-1,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +2744,Ae41,EA011,Wife to husband,EA011-1,,andersson1953,,1940,EthnographicAtlas_1967_p66, +2745,Ae42,EA011,Wife to husband,EA011-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +2746,Ae43,EA011,Wife to husband,EA011-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +2747,Ae44,EA011,Wife to husband,EA011-1,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +2748,Ae45,EA011,Wife to husband,EA011-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +2749,Ae46,EA011,Wife to husband,EA011-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +2750,Ae47,EA011,Wife to husband,EA011-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +2751,Ae48,EA011,Wife to husband,EA011-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +2752,Ae49,EA011,Wife to husband,EA011-1,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +2753,Ae5,EA011,Wife to husband,EA011-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +2754,Ae50,EA011,Wife to husband,EA011-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +2755,Ae51,EA011,Wife to husband,EA011-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +2756,Ae52,EA011,Wife to husband,EA011-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +2757,Ae53,EA011,Wife to husband,EA011-1,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +2758,Ae54,EA011,Wife to husband,EA011-1,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2759,Ae55,EA011,Wife to husband,EA011-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +2760,Ae56,EA011,Wife to husband,EA011-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +2761,Ae57,EA011,Wife to husband,EA011-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +2762,Ae58,EA011,Wife to husband,EA011-1,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +2763,Ae59,EA011,Wife to husband,EA011-1,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +2764,Ae6,EA011,Wife to husband,EA011-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +2765,Ae7,EA011,Wife to husband,EA011-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +2766,Ae8,EA011,Wife to husband,EA011-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +2767,Ae9,EA011,Wife to husband,EA011-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +2768,Af1,EA011,Wife to husband,EA011-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +2769,Af10,EA011,Wife to husband,EA011-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +2770,Af11,EA011,Wife to husband,EA011-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +2771,Af12,EA011,?,EA011-NA,"Residence pattern is a mix of 'Avunculocal', 'Nonestablishment of a common household', and 'Virilocal'with relative incidence unspecified; so, this variable would be either 'wife to husband's group' (code ""1"" or 'no common residence' (code ""9"")",field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +2772,Af13,EA011,Wife to husband,EA011-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +2773,Af14,EA011,Wife to husband,EA011-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +2774,Af15,EA011,Wife to husband,EA011-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +2775,Af16,EA011,Wife to husband,EA011-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +2776,Af17,EA011,Wife to husband,EA011-1,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +2777,Af18,EA011,Wife to husband,EA011-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +2778,Af19,EA011,Wife to husband,EA011-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +2779,Af2,EA011,Wife to husband,EA011-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +2780,Af20,EA011,Wife to husband,EA011-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +2781,Af21,EA011,Wife to husband,EA011-1,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +2782,Af22,EA011,Wife to husband,EA011-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +2783,Af23,EA011,Wife to husband,EA011-1,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +2784,Af24,EA011,Wife to husband,EA011-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +2785,Af25,EA011,Wife to husband,EA011-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +2786,Af26,EA011,Wife to husband,EA011-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +2787,Af27,EA011,Wife to husband,EA011-1,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +2788,Af28,EA011,Wife to husband,EA011-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +2789,Af29,EA011,Wife to husband,EA011-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +2790,Af3,EA011,Wife to husband,EA011-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2791,Af30,EA011,Wife to husband,EA011-1,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +2792,Af31,EA011,Wife to husband,EA011-1,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +2793,Af32,EA011,Wife to husband,EA011-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2794,Af33,EA011,Wife to husband,EA011-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2795,Af34,EA011,Wife to husband,EA011-1,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2796,Af35,EA011,Wife to husband,EA011-1,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +2797,Af36,EA011,Wife to husband,EA011-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +2798,Af37,EA011,Wife to husband,EA011-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +2799,Af38,EA011,Wife to husband,EA011-1,But a married woman commonly remains in her natal household instead of joining her husband,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +2800,Af39,EA011,Wife to husband,EA011-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +2801,Af4,EA011,Wife to husband,EA011-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +2802,Af40,EA011,Wife to husband,EA011-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +2803,Af41,EA011,Wife to husband,EA011-1,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +2804,Af42,EA011,Wife to husband,EA011-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2805,Af43,EA011,Separate,EA011-9,But most married women continue to reside in their natal household,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +2806,Af44,EA011,Wife to husband,EA011-1,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2807,Af45,EA011,Wife to husband,EA011-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +2808,Af46,EA011,Wife to husband,EA011-1,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +2809,Af47,EA011,Wife to husband,EA011-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +2810,Af48,EA011,Wife to husband,EA011-1,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +2811,Af49,EA011,Wife to husband,EA011-1,,schwab1947,,1940,EthnographicAtlas_1967_p70, +2812,Af5,EA011,Wife to husband,EA011-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +2813,Af50,EA011,Wife to husband,EA011-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +2814,Af51,EA011,Wife to husband,EA011-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +2815,Af52,EA011,Wife to husband,EA011-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +2816,Af53,EA011,Wife to husband,EA011-1,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +2817,Af54,EA011,Wife to husband,EA011-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +2818,Af55,EA011,Wife to husband,EA011-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +2819,Af56,EA011,Wife to husband,EA011-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +2820,Af57,EA011,Wife to husband,EA011-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +2821,Af58,EA011,Wife to husband,EA011-1,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +2822,Af6,EA011,Wife to husband,EA011-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +2823,Af7,EA011,Wife to husband,EA011-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +2824,Af8,EA011,Wife to husband,EA011-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +2825,Af9,EA011,Wife to husband,EA011-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2826,Ag1,EA011,Wife to husband,EA011-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +2827,Ag10,EA011,Wife to husband,EA011-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +2828,Ag11,EA011,Wife to husband,EA011-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +2829,Ag12,EA011,Wife to husband,EA011-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +2830,Ag13,EA011,Wife to husband,EA011-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +2831,Ag14,EA011,Wife to husband,EA011-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +2832,Ag15,EA011,Wife to husband,EA011-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +2833,Ag16,EA011,Wife to husband,EA011-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +2834,Ag17,EA011,Wife to husband,EA011-1,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +2835,Ag18,EA011,Husband to wife,EA011-3,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +2836,Ag19,EA011,Wife to husband,EA011-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +2837,Ag2,EA011,Wife to husband,EA011-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +2838,Ag20,EA011,Wife to husband,EA011-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +2839,Ag21,EA011,Wife to husband,EA011-1,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +2840,Ag22,EA011,Wife to husband,EA011-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +2841,Ag23,EA011,Wife to husband,EA011-1,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +2842,Ag24,EA011,Wife to husband,EA011-1,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +2843,Ag25,EA011,Wife to husband,EA011-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +2844,Ag26,EA011,Wife to husband,EA011-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +2845,Ag27,EA011,Wife to husband,EA011-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +2846,Ag28,EA011,Wife to husband,EA011-1,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +2847,Ag29,EA011,Wife to husband,EA011-1,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +2848,Ag3,EA011,Wife to husband,EA011-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +2849,Ag30,EA011,Wife to husband,EA011-1,"Entry follows Tauxier; Cremer reports prevailing pattern of residence as Patrilocal (i.e., EA012 would be code ""9""), so this code would be ""Husband to wife's group"" (code ""3"")",cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +2850,Ag31,EA011,Wife to husband,EA011-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +2851,Ag32,EA011,Wife to husband,EA011-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +2852,Ag33,EA011,Wife to husband,EA011-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +2853,Ag34,EA011,Wife to husband,EA011-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +2854,Ag35,EA011,Wife to husband,EA011-1,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2855,Ag36,EA011,Wife to husband,EA011-1,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +2856,Ag37,EA011,Wife to husband,EA011-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +2857,Ag38,EA011,Wife to husband,EA011-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +2858,Ag39,EA011,Wife to husband,EA011-1,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +2859,Ag4,EA011,Wife to husband,EA011-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +2860,Ag40,EA011,Wife to husband,EA011-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +2861,Ag41,EA011,Wife to husband,EA011-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +2862,Ag42,EA011,Wife to husband,EA011-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +2863,Ag43,EA011,Wife to husband,EA011-1,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +2864,Ag44,EA011,?,EA011-NA,,,,,, +2865,Ag45,EA011,Wife to husband,EA011-1,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +2866,Ag46,EA011,Wife to husband,EA011-1,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +2867,Ag47,EA011,Wife to husband,EA011-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +2868,Ag48,EA011,Wife to husband,EA011-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +2869,Ag49,EA011,Wife to husband,EA011-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +2870,Ag5,EA011,Wife to husband,EA011-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +2871,Ag50,EA011,Wife to husband,EA011-1,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +2872,Ag51,EA011,Wife to husband,EA011-1,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +2873,Ag52,EA011,Wife to husband,EA011-1,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +2874,Ag53,EA011,Wife to husband,EA011-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +2875,Ag54,EA011,Wife to husband,EA011-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +2876,Ag6,EA011,Wife to husband,EA011-1,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +2877,Ag7,EA011,Wife to husband,EA011-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +2878,Ag8,EA011,Wife to husband,EA011-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2879,Ag9,EA011,Wife to husband,EA011-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +2880,Ah1,EA011,Wife to husband,EA011-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +2881,Ah10,EA011,Wife to husband,EA011-1,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +2882,Ah11,EA011,Wife to husband,EA011-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +2883,Ah12,EA011,Wife to husband,EA011-1,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +2884,Ah13,EA011,Wife to husband,EA011-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +2885,Ah14,EA011,Wife to husband,EA011-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +2886,Ah15,EA011,Wife to husband,EA011-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +2887,Ah16,EA011,Wife to husband,EA011-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +2888,Ah17,EA011,Wife to husband,EA011-1,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +2889,Ah18,EA011,Wife to husband,EA011-1,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +2890,Ah19,EA011,Wife to husband,EA011-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +2891,Ah2,EA011,Wife to husband,EA011-1,,meek1931a,,1920,EthnographicAtlas_1967_p74,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2892,Ah20,EA011,Wife to husband,EA011-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +2893,Ah21,EA011,Wife to husband,EA011-1,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +2894,Ah22,EA011,Wife to husband,EA011-1,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +2895,Ah23,EA011,Husband to wife,EA011-3,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +2896,Ah24,EA011,Wife to husband,EA011-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +2897,Ah25,EA011,Wife to husband,EA011-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +2898,Ah26,EA011,Wife to husband,EA011-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2899,Ah27,EA011,Wife to husband,EA011-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +2900,Ah28,EA011,Wife to husband,EA011-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2901,Ah29,EA011,Husband to wife,EA011-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +2902,Ah3,EA011,Wife to husband,EA011-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +2903,Ah30,EA011,Wife to husband,EA011-1,,meek1931b,,1920,EthnographicAtlas_1967_p74,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2904,Ah31,EA011,Wife to husband,EA011-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +2905,Ah32,EA011,Wife to husband,EA011-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +2906,Ah33,EA011,Wife to husband,EA011-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +2907,Ah34,EA011,Wife to husband,EA011-1,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +2908,Ah35,EA011,Wife to husband,EA011-1,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +2909,Ah36,EA011,Wife to husband,EA011-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +2910,Ah37,EA011,Wife to husband,EA011-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +2911,Ah38,EA011,Wife to husband,EA011-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +2912,Ah39,EA011,Wife to husband,EA011-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +2913,Ah4,EA011,Wife to husband,EA011-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +2914,Ah5,EA011,Wife to husband,EA011-1,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +2915,Ah6,EA011,Wife to husband,EA011-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2916,Ah7,EA011,Wife to husband,EA011-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +2917,Ah8,EA011,Wife to husband,EA011-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +2918,Ah9,EA011,Wife to husband,EA011-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +2919,Ai1,EA011,Wife to husband,EA011-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +2920,Ai10,EA011,Wife to husband,EA011-1,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +2921,Ai11,EA011,Wife to husband,EA011-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +2922,Ai12,EA011,Wife to husband,EA011-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +2923,Ai13,EA011,Wife to husband,EA011-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +2924,Ai14,EA011,Wife to husband,EA011-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +2925,Ai15,EA011,Wife to husband,EA011-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +2926,Ai16,EA011,Wife to husband,EA011-1,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +2927,Ai17,EA011,Wife to husband,EA011-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +2928,Ai18,EA011,Wife to husband,EA011-1,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +2929,Ai19,EA011,Wife to husband,EA011-1,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +2930,Ai2,EA011,Wife to husband,EA011-1,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +2931,Ai20,EA011,Wife to husband,EA011-1,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +2932,Ai21,EA011,Wife to husband,EA011-1,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +2933,Ai22,EA011,Wife to husband,EA011-1,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +2934,Ai23,EA011,Wife to husband,EA011-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +2935,Ai24,EA011,Wife to husband,EA011-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +2936,Ai25,EA011,?,EA011-NA,,,,,, +2937,Ai26,EA011,Wife to husband,EA011-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +2938,Ai27,EA011,Wife to husband,EA011-1,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +2939,Ai28,EA011,Wife to husband,EA011-1,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +2940,Ai29,EA011,Wife to husband,EA011-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +2941,Ai3,EA011,Wife to husband,EA011-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +2942,Ai30,EA011,Wife to husband,EA011-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +2943,Ai31,EA011,Wife to husband,EA011-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +2944,Ai32,EA011,Wife to husband,EA011-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +2945,Ai33,EA011,Wife to husband,EA011-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +2946,Ai34,EA011,Wife to husband,EA011-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +2947,Ai35,EA011,Wife to husband,EA011-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +2948,Ai36,EA011,Wife to husband,EA011-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +2949,Ai37,EA011,Wife to husband,EA011-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +2950,Ai38,EA011,Wife to husband,EA011-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2951,Ai39,EA011,Wife to husband,EA011-1,,nadel1947,,1940,EthnographicAtlas_1967_p74,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +2952,Ai4,EA011,Ambi/neo-local,EA011-2,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +2953,Ai40,EA011,Wife to husband,EA011-1,,nadel1947,,1940,EthnographicAtlas_1967_p74, +2954,Ai41,EA011,Wife to husband,EA011-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +2955,Ai42,EA011,Wife to husband,EA011-1,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +2956,Ai43,EA011,Wife to husband,EA011-1,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +2957,Ai44,EA011,Wife to husband,EA011-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +2958,Ai45,EA011,Wife to husband,EA011-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +2959,Ai46,EA011,Wife to husband,EA011-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +2960,Ai47,EA011,Wife to husband,EA011-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +2961,Ai5,EA011,Wife to husband,EA011-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +2962,Ai6,EA011,Wife to husband,EA011-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +2963,Ai7,EA011,Wife to husband,EA011-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +2964,Ai8,EA011,Wife to husband,EA011-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +2965,Ai9,EA011,Wife to husband,EA011-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +2966,Aj1,EA011,Wife to husband,EA011-1,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +2967,Aj10,EA011,Wife to husband,EA011-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +2968,Aj11,EA011,Wife to husband,EA011-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +2969,Aj12,EA011,Wife to husband,EA011-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +2970,Aj13,EA011,Wife to husband,EA011-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +2971,Aj14,EA011,Wife to husband,EA011-1,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +2972,Aj15,EA011,Wife to husband,EA011-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +2973,Aj16,EA011,Wife to husband,EA011-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +2974,Aj17,EA011,Wife to husband,EA011-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +2975,Aj18,EA011,?,EA011-NA,,,,,, +2976,Aj19,EA011,Wife to husband,EA011-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +2977,Aj2,EA011,Wife to husband,EA011-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +2978,Aj20,EA011,Wife to husband,EA011-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +2979,Aj21,EA011,Wife to husband,EA011-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +2980,Aj22,EA011,?,EA011-NA,,,,,, +2981,Aj23,EA011,Wife to husband,EA011-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +2982,Aj24,EA011,Wife to husband,EA011-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +2983,Aj25,EA011,Wife to husband,EA011-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +2984,Aj26,EA011,Wife to husband,EA011-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +2985,Aj27,EA011,Wife to husband,EA011-1,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +2986,Aj28,EA011,Wife to husband,EA011-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +2987,Aj29,EA011,Wife to husband,EA011-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +2988,Aj3,EA011,Ambi/neo-local,EA011-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +2989,Aj30,EA011,Wife to husband,EA011-1,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +2990,Aj31,EA011,Wife to husband,EA011-1,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +2991,Aj4,EA011,Wife to husband,EA011-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +2992,Aj5,EA011,Wife to husband,EA011-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +2993,Aj6,EA011,Wife to husband,EA011-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +2994,Aj7,EA011,Wife to husband,EA011-1,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +2995,Aj8,EA011,Wife to husband,EA011-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +2996,Aj9,EA011,Wife to husband,EA011-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +2997,Ca1,EA011,Ambi/neo-local,EA011-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +2998,Ca10,EA011,Wife to husband,EA011-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +2999,Ca11,EA011,Wife to husband,EA011-1,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +3000,Ca12,EA011,Wife to husband,EA011-1,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +3001,Ca13,EA011,Wife to husband,EA011-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +3002,Ca14,EA011,Wife to husband,EA011-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +3003,Ca15,EA011,Wife to husband,EA011-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +3004,Ca16,EA011,Wife to husband,EA011-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +3005,Ca17,EA011,Wife to husband,EA011-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +3006,Ca18,EA011,Wife to husband,EA011-1,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +3007,Ca19,EA011,Wife to husband,EA011-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +3008,Ca2,EA011,Wife to husband,EA011-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +3009,Ca20,EA011,Wife to husband,EA011-1,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +3010,Ca21,EA011,Wife to husband,EA011-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +3011,Ca22,EA011,Wife to husband,EA011-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +3012,Ca23,EA011,Wife to husband,EA011-1,,jensen1959,,1950,EthnographicAtlas_1967_p78, +3013,Ca24,EA011,Wife to husband,EA011-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +3014,Ca25,EA011,Wife to husband,EA011-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +3015,Ca26,EA011,Wife to husband,EA011-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +3016,Ca27,EA011,Wife to husband,EA011-1,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +3017,Ca28,EA011,Wife to husband,EA011-1,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +3018,Ca29,EA011,Wife to husband,EA011-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +3019,Ca3,EA011,Wife to husband,EA011-1,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +3020,Ca30,EA011,Wife to husband,EA011-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +3021,Ca31,EA011,Wife to husband,EA011-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +3022,Ca32,EA011,Ambi/neo-local,EA011-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +3023,Ca33,EA011,Ambi/neo-local,EA011-2,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +3024,Ca34,EA011,Wife to husband,EA011-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +3025,Ca35,EA011,Wife to husband,EA011-1,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +3026,Ca36,EA011,Wife to husband,EA011-1,"In the noble class; among serfs prevailing pattern is Patrilocal (EA012 code ""8""), so this would be ""Wife to husband's group"" (code ""1"")",munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +3027,Ca37,EA011,Wife to husband,EA011-1,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +3028,Ca38,EA011,Wife to husband,EA011-1,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +3029,Ca39,EA011,Wife to husband,EA011-1,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +3030,Ca4,EA011,Wife to husband,EA011-1,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +3031,Ca40,EA011,Wife to husband,EA011-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +3032,Ca41,EA011,Wife to husband,EA011-1,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +3033,Ca42,EA011,Wife to husband,EA011-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +3034,Ca43,EA011,Wife to husband,EA011-1,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +3035,Ca5,EA011,Wife to husband,EA011-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +3036,Ca6,EA011,Wife to husband,EA011-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +3037,Ca7,EA011,Ambi/neo-local,EA011-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3038,Ca8,EA011,Wife to husband,EA011-1,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +3039,Ca9,EA011,Wife to husband,EA011-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +3040,Cb1,EA011,Wife to husband,EA011-1,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +3041,Cb10,EA011,Wife to husband,EA011-1,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +3042,Cb11,EA011,?,EA011-NA,,,,,, +3043,Cb12,EA011,Wife to husband,EA011-1,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +3044,Cb13,EA011,Wife to husband,EA011-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +3045,Cb14,EA011,Wife to husband,EA011-1,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +3046,Cb15,EA011,Wife to husband,EA011-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +3047,Cb16,EA011,Wife to husband,EA011-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +3048,Cb17,EA011,Separate,EA011-9,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +3049,Cb18,EA011,Wife to husband,EA011-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +3050,Cb19,EA011,Wife to husband,EA011-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +3051,Cb2,EA011,Wife to husband,EA011-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +3052,Cb20,EA011,?,EA011-NA,,,,,, +3053,Cb21,EA011,Wife to husband,EA011-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +3054,Cb22,EA011,Wife to husband,EA011-1,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +3055,Cb23,EA011,Wife to husband,EA011-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +3056,Cb24,EA011,Wife to husband,EA011-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +3057,Cb25,EA011,Wife to husband,EA011-1,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +3058,Cb26,EA011,Wife to husband,EA011-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +3059,Cb27,EA011,Wife to husband,EA011-1,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +3060,Cb28,EA011,Wife to husband,EA011-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +3061,Cb29,EA011,Wife to husband,EA011-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +3062,Cb3,EA011,Wife to husband,EA011-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +3063,Cb4,EA011,Wife to husband,EA011-1,,reid1930,,1920,EthnographicAtlas_1967_p78, +3064,Cb5,EA011,Wife to husband,EA011-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +3065,Cb6,EA011,Wife to husband,EA011-1,,woodnd,,1920,EthnographicAtlas_1967_p78, +3066,Cb7,EA011,Wife to husband,EA011-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +3067,Cb8,EA011,Wife to husband,EA011-1,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +3068,Cb9,EA011,Wife to husband,EA011-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +3069,Cc1,EA011,Wife to husband,EA011-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +3070,Cc10,EA011,Wife to husband,EA011-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +3071,Cc11,EA011,?,EA011-NA,,,,,, +3072,Cc12,EA011,Wife to husband,EA011-1,Ultimate residence is unclear and may be avunculocal,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +3073,Cc13,EA011,Wife to husband,EA011-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3074,Cc14,EA011,Wife to husband,EA011-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +3075,Cc15,EA011,?,EA011-NA,,,,,, +3076,Cc16,EA011,Wife to husband,EA011-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +3077,Cc17,EA011,Wife to husband,EA011-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +3078,Cc18,EA011,Wife to husband,EA011-1,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +3079,Cc19,EA011,Wife to husband,EA011-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +3080,Cc2,EA011,Wife to husband,EA011-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +3081,Cc20,EA011,Wife to husband,EA011-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +3082,Cc3,EA011,Wife to husband,EA011-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +3083,Cc4,EA011,Wife to husband,EA011-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +3084,Cc5,EA011,Wife to husband,EA011-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +3085,Cc6,EA011,Wife to husband,EA011-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +3086,Cc7,EA011,Wife to husband,EA011-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3087,Cc8,EA011,?,EA011-NA,,,,,, +3088,Cc9,EA011,Wife to husband,EA011-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +3089,Cd1,EA011,Wife to husband,EA011-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +3090,Cd10,EA011,Wife to husband,EA011-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +3091,Cd11,EA011,Wife to husband,EA011-1,Suggested rather than attested,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +3092,Cd12,EA011,Wife to husband,EA011-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +3093,Cd13,EA011,Wife to husband,EA011-1,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +3094,Cd14,EA011,Wife to husband,EA011-1,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +3095,Cd15,EA011,Wife to husband,EA011-1,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +3096,Cd16,EA011,Wife to husband,EA011-1,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +3097,Cd17,EA011,Wife to husband,EA011-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +3098,Cd18,EA011,Wife to husband,EA011-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +3099,Cd19,EA011,Wife to husband,EA011-1,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +3100,Cd2,EA011,Wife to husband,EA011-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +3101,Cd20,EA011,Wife to husband,EA011-1,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +3102,Cd21,EA011,Wife to husband,EA011-1,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +3103,Cd3,EA011,Wife to husband,EA011-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +3104,Cd4,EA011,Wife to husband,EA011-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +3105,Cd5,EA011,Wife to husband,EA011-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +3106,Cd6,EA011,Ambi/neo-local,EA011-2,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +3107,Cd7,EA011,Wife to husband,EA011-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +3108,Cd8,EA011,Wife to husband,EA011-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +3109,Cd9,EA011,Wife to husband,EA011-1,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +3110,Ce1,EA011,Wife to husband,EA011-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +3111,Ce2,EA011,Wife to husband,EA011-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +3112,Ce3,EA011,Ambi/neo-local,EA011-2,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +3113,Ce4,EA011,Ambi/neo-local,EA011-2,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3114,Ce5,EA011,Ambi/neo-local,EA011-2,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +3115,Ce6,EA011,Ambi/neo-local,EA011-2,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +3116,Ce7,EA011,Wife to husband,EA011-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +3117,Ce8,EA011,Ambi/neo-local,EA011-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3118,Cf1,EA011,Ambi/neo-local,EA011-2,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +3119,Cf2,EA011,Wife to husband,EA011-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +3120,Cf3,EA011,Ambi/neo-local,EA011-2,,munch1945,,1930,EthnographicAtlas_1967_p82, +3121,Cf4,EA011,Ambi/neo-local,EA011-2,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +3122,Cf5,EA011,Ambi/neo-local,EA011-2,,miner1939,,1930,EthnographicAtlas_1967_p82, +3123,Cg1,EA011,Ambi/neo-local,EA011-2,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +3124,Cg2,EA011,Wife to husband,EA011-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +3125,Cg3,EA011,Wife to husband,EA011-1,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +3126,Cg4,EA011,Ambi/neo-local,EA011-2,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3127,Cg5,EA011,Ambi/neo-local,EA011-2,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +3128,Ch1,EA011,Wife to husband,EA011-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +3129,Ch10,EA011,Ambi/neo-local,EA011-2,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +3130,Ch11,EA011,Ambi/neo-local,EA011-2,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +3131,Ch2,EA011,Ambi/neo-local,EA011-2,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +3132,Ch3,EA011,Wife to husband,EA011-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +3133,Ch4,EA011,Ambi/neo-local,EA011-2,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +3134,Ch5,EA011,Wife to husband,EA011-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +3135,Ch6,EA011,Ambi/neo-local,EA011-2,,ember1954,,1910,EthnographicAtlas_1967_p82, +3136,Ch7,EA011,Wife to husband,EA011-1,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +3137,Ch8,EA011,Wife to husband,EA011-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +3138,Ch9,EA011,Wife to husband,EA011-1,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +3139,Ci1,EA011,Wife to husband,EA011-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +3140,Ci10,EA011,Ambi/neo-local,EA011-2,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3141,Ci11,EA011,Wife to husband,EA011-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +3142,Ci12,EA011,Wife to husband,EA011-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +3143,Ci2,EA011,Wife to husband,EA011-1,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +3144,Ci3,EA011,Ambi/neo-local,EA011-2,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +3145,Ci4,EA011,Wife to husband,EA011-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +3146,Ci5,EA011,Wife to husband,EA011-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +3147,Ci6,EA011,Wife to husband,EA011-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +3148,Ci7,EA011,Wife to husband,EA011-1,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +3149,Ci8,EA011,Wife to husband,EA011-1,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +3150,Ci9,EA011,Wife to husband,EA011-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +3151,Cj1,EA011,Wife to husband,EA011-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +3152,Cj10,EA011,Wife to husband,EA011-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +3153,Cj2,EA011,Wife to husband,EA011-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +3154,Cj3,EA011,Wife to husband,EA011-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +3155,Cj4,EA011,Ambi/neo-local,EA011-2,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +3156,Cj5,EA011,Wife to husband,EA011-1,,dickson1949,,1930,EthnographicAtlas_1967_p86, +3157,Cj6,EA011,Wife to husband,EA011-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +3158,Cj7,EA011,Wife to husband,EA011-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +3159,Cj8,EA011,Wife to husband,EA011-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +3160,Cj9,EA011,Wife to husband,EA011-1,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +3161,Ea1,EA011,Wife to husband,EA011-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +3162,Ea10,EA011,Wife to husband,EA011-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +3163,Ea11,EA011,Wife to husband,EA011-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +3164,Ea12,EA011,Wife to husband,EA011-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +3165,Ea13,EA011,Wife to husband,EA011-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +3166,Ea2,EA011,Wife to husband,EA011-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +3167,Ea3,EA011,Wife to husband,EA011-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +3168,Ea4,EA011,Wife to husband,EA011-1,,barth1956b,,1950,EthnographicAtlas_1967_p86, +3169,Ea5,EA011,Wife to husband,EA011-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +3170,Ea6,EA011,Wife to husband,EA011-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +3171,Ea7,EA011,Wife to husband,EA011-1,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +3172,Ea8,EA011,Wife to husband,EA011-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +3173,Ea9,EA011,Wife to husband,EA011-1,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +3174,Eb1,EA011,Wife to husband,EA011-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +3175,Eb2,EA011,Wife to husband,EA011-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +3176,Eb3,EA011,Wife to husband,EA011-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +3177,Eb4,EA011,Wife to husband,EA011-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +3178,Eb5,EA011,Wife to husband,EA011-1,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +3179,Eb6,EA011,Wife to husband,EA011-1,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +3180,Eb7,EA011,Wife to husband,EA011-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +3181,Eb8,EA011,Wife to husband,EA011-1,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +3182,Ec1,EA011,Wife to husband,EA011-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +3183,Ec10,EA011,Wife to husband,EA011-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +3184,Ec11,EA011,Wife to husband,EA011-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +3185,Ec2,EA011,Wife to husband,EA011-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3186,Ec3,EA011,Ambi/neo-local,EA011-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3187,Ec4,EA011,Wife to husband,EA011-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +3188,Ec5,EA011,Ambi/neo-local,EA011-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3189,Ec6,EA011,Ambi/neo-local,EA011-2,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3190,Ec7,EA011,Ambi/neo-local,EA011-2,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3191,Ec8,EA011,Wife to husband,EA011-1,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +3192,Ec9,EA011,Wife to husband,EA011-1,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +3193,Ed1,EA011,Wife to husband,EA011-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +3194,Ed10,EA011,Wife to husband,EA011-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +3195,Ed13,EA011,Wife to husband,EA011-1,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +3196,Ed14,EA011,Wife to husband,EA011-1,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +3197,Ed15a,EA011,Wife to husband,EA011-1,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +3198,Ed15b,EA011,Ambi/neo-local,EA011-2,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +3199,Ed16,EA011,Wife to husband,EA011-1,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +3200,Ed2,EA011,Wife to husband,EA011-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +3201,Ed3,EA011,Wife to husband,EA011-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +3202,Ed4,EA011,Wife to husband,EA011-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +3203,Ed5,EA011,Wife to husband,EA011-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3204,Ed6,EA011,Wife to husband,EA011-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +3205,Ed7,EA011,Wife to husband,EA011-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +3206,Ed8,EA011,Wife to husband,EA011-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +3207,Ed9,EA011,Wife to husband,EA011-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +3208,Ee1,EA011,Wife to husband,EA011-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +3209,Ee2,EA011,Wife to husband,EA011-1,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +3210,Ee3,EA011,Wife to husband,EA011-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +3211,Ee4,EA011,Wife to husband,EA011-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +3212,Ee5,EA011,Wife to husband,EA011-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +3213,Ee6,EA011,Wife to husband,EA011-1,Uxorilocal only if wife has no brothers,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +3214,Ee7,EA011,Wife to husband,EA011-1,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +3215,Ee8,EA011,Wife to husband,EA011-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +3216,Ef1,EA011,Wife to husband,EA011-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +3217,Ef10,EA011,Wife to husband,EA011-1,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3218,Ef11,EA011,Wife to husband,EA011-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +3219,Ef2,EA011,Wife to husband,EA011-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +3220,Ef3,EA011,Wife to husband,EA011-1,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +3221,Ef4,EA011,Wife to husband,EA011-1,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +3222,Ef5,EA011,Wife to husband,EA011-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +3223,Ef6,EA011,Wife to husband,EA011-1,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +3224,Ef7,EA011,Wife to husband,EA011-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +3225,Ef8,EA011,Wife to husband,EA011-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +3226,Ef9,EA011,Wife to husband,EA011-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3227,Eg1,EA011,Ambi/neo-local,EA011-2,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3228,Eg10,EA011,Wife to husband,EA011-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +3229,Eg11,EA011,Wife to husband,EA011-1,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +3230,Eg12,EA011,Wife to husband,EA011-1,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +3231,Eg13,EA011,Wife to husband,EA011-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3232,Eg14,EA011,Wife to husband,EA011-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +3233,Eg2,EA011,Wife to husband,EA011-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +3234,Eg3,EA011,Wife to husband,EA011-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +3235,Eg4,EA011,Wife to husband,EA011-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +3236,Eg5,EA011,Wife to husband,EA011-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +3237,Eg6,EA011,Separate,EA011-9,Entry pertains to the Nayar; predominantly Matrilocal among the Mappilla and Virilocal or Neolocal among the Tiyyar,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +3238,Eg7,EA011,Wife to husband,EA011-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +3239,Eg8,EA011,Wife to husband,EA011-1,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +3240,Eg9,EA011,Wife to husband,EA011-1,,elwin1939,,1930,EthnographicAtlas_1967_p90, +3241,Eh1,EA011,Ambi/neo-local,EA011-2,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +3242,Eh10,EA011,Wife to husband,EA011-1,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +3243,Eh2,EA011,Wife to husband,EA011-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +3244,Eh3,EA011,Wife to husband,EA011-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +3245,Eh4,EA011,Husband to wife,EA011-3,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3246,Eh5,EA011,Ambi/neo-local,EA011-2,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3247,Eh6,EA011,Ambi/neo-local,EA011-2,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3248,Eh7,EA011,Wife to husband,EA011-1,"But McLeod reports Ambilocal (code ""2"")",decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +3249,Eh8,EA011,Wife to husband,EA011-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +3250,Eh9,EA011,Wife to husband,EA011-1,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +3251,Ei1,EA011,Husband to wife,EA011-3,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3252,Ei10,EA011,Wife to husband,EA011-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +3253,Ei11,EA011,Wife to husband,EA011-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +3254,Ei12,EA011,Wife to husband,EA011-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +3255,Ei13,EA011,Wife to husband,EA011-1,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +3256,Ei14,EA011,Wife to husband,EA011-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +3257,Ei15,EA011,Wife to husband,EA011-1,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +3258,Ei16,EA011,Wife to husband,EA011-1,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +3259,Ei17,EA011,Wife to husband,EA011-1,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +3260,Ei18,EA011,Wife to husband,EA011-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +3261,Ei19,EA011,Wife to husband,EA011-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +3262,Ei2,EA011,Wife to husband,EA011-1,,mills1922,,1920,EthnographicAtlas_1967_p90, +3263,Ei20,EA011,Wife to husband,EA011-1,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +3264,Ei3,EA011,Ambi/neo-local,EA011-2,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +3265,Ei4,EA011,Wife to husband,EA011-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +3266,Ei5,EA011,Wife to husband,EA011-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +3267,Ei6,EA011,Wife to husband,EA011-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +3268,Ei7,EA011,Husband to wife,EA011-3,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +3269,Ei8,EA011,Husband to wife,EA011-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +3270,Ei9,EA011,Wife to husband,EA011-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +3271,Ej1,EA011,Wife to husband,EA011-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +3272,Ej10,EA011,Husband to wife,EA011-3,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +3273,Ej11,EA011,Husband to wife,EA011-3,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +3274,Ej12,EA011,Wife to husband,EA011-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +3275,Ej13,EA011,Wife to husband,EA011-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +3276,Ej14,EA011,Ambi/neo-local,EA011-2,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3277,Ej15,EA011,Ambi/neo-local,EA011-2,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +3278,Ej16,EA011,Husband to wife,EA011-3,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +3279,Ej2,EA011,Husband to wife,EA011-3,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +3280,Ej3,EA011,Wife to husband,EA011-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +3281,Ej4,EA011,Wife to husband,EA011-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +3282,Ej5,EA011,Ambi/neo-local,EA011-2,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +3283,Ej6,EA011,Ambi/neo-local,EA011-2,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +3284,Ej7,EA011,Wife to husband,EA011-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +3285,Ej8,EA011,Wife to husband,EA011-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +3286,Ej9,EA011,Ambi/neo-local,EA011-2,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +3287,Ia1,EA011,Ambi/neo-local,EA011-2,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3288,Ia10,EA011,Wife to husband,EA011-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +3289,Ia11,EA011,Ambi/neo-local,EA011-2,,mabuchi1960,,1930,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3290,Ia12,EA011,Ambi/neo-local,EA011-2,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +3291,Ia13,EA011,Ambi/neo-local,EA011-2,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +3292,Ia14,EA011,Wife to husband,EA011-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +3293,Ia15,EA011,Wife to husband,EA011-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +3294,Ia16,EA011,Husband to wife,EA011-3,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +3295,Ia17,EA011,Ambi/neo-local,EA011-2,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +3296,Ia18,EA011,Ambi/neo-local,EA011-2,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +3297,Ia2,EA011,Ambi/neo-local,EA011-2,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +3298,Ia3,EA011,Ambi/neo-local,EA011-2,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +3299,Ia4,EA011,Ambi/neo-local,EA011-2,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +3300,Ia5,EA011,Ambi/neo-local,EA011-2,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3301,Ia6,EA011,Ambi/neo-local,EA011-2,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3302,Ia7,EA011,Ambi/neo-local,EA011-2,,fox1954,,1950,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3303,Ia8,EA011,Ambi/neo-local,EA011-2,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3304,Ia9,EA011,Husband to wife,EA011-3,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +3305,Ib1,EA011,Ambi/neo-local,EA011-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3306,Ib2,EA011,Ambi/neo-local,EA011-2,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3307,Ib3,EA011,Wife to husband,EA011-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +3308,Ib4,EA011,Wife to husband,EA011-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +3309,Ib5,EA011,Ambi/neo-local,EA011-2,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3310,Ib6,EA011,Separate,EA011-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +3311,Ib7,EA011,Ambi/neo-local,EA011-2,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3312,Ib8,EA011,Ambi/neo-local,EA011-2,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +3313,Ib9,EA011,?,EA011-NA,,,,,, +3314,Ic1,EA011,Ambi/neo-local,EA011-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3315,Ic10,EA011,Ambi/neo-local,EA011-2,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3316,Ic11,EA011,Wife to husband,EA011-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3317,Ic12,EA011,Ambi/neo-local,EA011-2,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +3318,Ic13,EA011,Wife to husband,EA011-1,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +3319,Ic2,EA011,Ambi/neo-local,EA011-2,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3320,Ic3,EA011,Husband to wife,EA011-3,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +3321,Ic4,EA011,Wife to husband,EA011-1,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +3322,Ic5,EA011,Husband to wife,EA011-3,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +3323,Ic6,EA011,Wife to husband,EA011-1,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +3324,Ic7,EA011,Wife to husband,EA011-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +3325,Ic8,EA011,Wife to husband,EA011-1,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +3326,Ic9,EA011,Wife to husband,EA011-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +3327,Id1,EA011,Wife to husband,EA011-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +3328,Id10,EA011,Wife to husband,EA011-1,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +3329,Id11,EA011,Wife to husband,EA011-1,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +3330,Id12,EA011,Wife to husband,EA011-1,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +3331,Id13,EA011,Wife to husband,EA011-1,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +3332,Id2,EA011,Wife to husband,EA011-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +3333,Id3,EA011,Ambi/neo-local,EA011-2,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3334,Id4,EA011,Wife to husband,EA011-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +3335,Id5,EA011,Wife to husband,EA011-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +3336,Id6,EA011,Wife to husband,EA011-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +3337,Id7,EA011,Wife to husband,EA011-1,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +3338,Id8,EA011,?,EA011-NA,,,,,, +3339,Id9,EA011,Wife to husband,EA011-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +3340,Ie1,EA011,Wife to husband,EA011-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3341,Ie10,EA011,Wife to husband,EA011-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +3342,Ie11,EA011,Wife to husband,EA011-1,,bowers1964,,1950,EthnographicAtlas_1967_p94, +3343,Ie12,EA011,Wife to husband,EA011-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3344,Ie13,EA011,Wife to husband,EA011-1,,landtman1927,,1920,EthnographicAtlas_1967_p94, +3345,Ie14,EA011,Wife to husband,EA011-1,,haddon1908,,1900,EthnographicAtlas_1967_p94, +3346,Ie15,EA011,Wife to husband,EA011-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3347,Ie16,EA011,Separate,EA011-9,,williams194041,,1940,EthnographicAtlas_1967_p94, +3348,Ie17,EA011,Separate,EA011-9,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +3349,Ie18,EA011,Ambi/neo-local,EA011-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3350,Ie19,EA011,Separate,EA011-9,But normally patrilocal,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +3351,Ie2,EA011,Wife to husband,EA011-1,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +3352,Ie20,EA011,Wife to husband,EA011-1,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +3353,Ie21,EA011,Wife to husband,EA011-1,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +3354,Ie22,EA011,Wife to husband,EA011-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +3355,Ie23,EA011,Wife to husband,EA011-1,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +3356,Ie24,EA011,Wife to husband,EA011-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +3357,Ie25,EA011,Wife to husband,EA011-1,,williamson1912,,1920,EthnographicAtlas_1967_p94, +3358,Ie26,EA011,Wife to husband,EA011-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +3359,Ie27,EA011,Wife to husband,EA011-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +3360,Ie28,EA011,Wife to husband,EA011-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +3361,Ie29,EA011,Wife to husband,EA011-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3362,Ie3,EA011,Wife to husband,EA011-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3363,Ie30,EA011,Husband to wife,EA011-3,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +3364,Ie31,EA011,Wife to husband,EA011-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +3365,Ie32,EA011,Wife to husband,EA011-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +3366,Ie33,EA011,Wife to husband,EA011-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +3367,Ie34,EA011,Ambi/neo-local,EA011-2,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +3368,Ie35,EA011,Wife to husband,EA011-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +3369,Ie36,EA011,Wife to husband,EA011-1,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +3370,Ie37,EA011,Wife to husband,EA011-1,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +3371,Ie38,EA011,Wife to husband,EA011-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +3372,Ie39,EA011,Wife to husband,EA011-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +3373,Ie4,EA011,Wife to husband,EA011-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3374,Ie5,EA011,Wife to husband,EA011-1,,williams1936,,1930,EthnographicAtlas_1967_p94, +3375,Ie6,EA011,Wife to husband,EA011-1,,held1947,,1930,EthnographicAtlas_1967_p94, +3376,Ie7,EA011,Wife to husband,EA011-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +3377,Ie8,EA011,Wife to husband,EA011-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +3378,Ie9,EA011,Wife to husband,EA011-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +3379,If1,EA011,Wife to husband,EA011-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3380,If10,EA011,Husband to wife,EA011-3,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +3381,If11,EA011,Wife to husband,EA011-1,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +3382,If12,EA011,Husband to wife,EA011-3,,mason1954,,1940,EthnographicAtlas_1967_p98, +3383,If13,EA011,Husband to wife,EA011-3,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +3384,If14,EA011,Ambi/neo-local,EA011-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3385,If15,EA011,Husband to wife,EA011-3,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +3386,If16,EA011,Husband to wife,EA011-3,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +3387,If17,EA011,Husband to wife,EA011-3,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +3388,If2,EA011,Husband to wife,EA011-3,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +3389,If3,EA011,Ambi/neo-local,EA011-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +3390,If4,EA011,Ambi/neo-local,EA011-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +3391,If5,EA011,Husband to wife,EA011-3,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +3392,If6,EA011,Wife to husband,EA011-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +3393,If7,EA011,Ambi/neo-local,EA011-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3394,If8,EA011,Ambi/neo-local,EA011-2,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +3395,If9,EA011,Ambi/neo-local,EA011-2,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3396,Ig1,EA011,Wife to husband,EA011-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3397,Ig10,EA011,Wife to husband,EA011-1,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +3398,Ig11,EA011,Ambi/neo-local,EA011-2,,armstrong1928,,1920,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3399,Ig12,EA011,Ambi/neo-local,EA011-2,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3400,Ig13,EA011,Separate,EA011-9,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +3401,Ig14,EA011,Wife to husband,EA011-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +3402,Ig15,EA011,Wife to husband,EA011-1,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +3403,Ig16,EA011,Wife to husband,EA011-1,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +3404,Ig17,EA011,Wife to husband,EA011-1,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +3405,Ig18,EA011,Wife to husband,EA011-1,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +3406,Ig19,EA011,Wife to husband,EA011-1,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +3407,Ig2,EA011,Wife to husband,EA011-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3408,Ig20,EA011,Wife to husband,EA011-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3409,Ig21,EA011,Wife to husband,EA011-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3410,Ig3,EA011,Ambi/neo-local,EA011-2,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +3411,Ig4,EA011,Husband to wife,EA011-3,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +3412,Ig5,EA011,Ambi/neo-local,EA011-2,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,,1920,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""uxorilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). THerefore, we have recoded this as ""2"", couple to either group (uxorilocal >> wife's group; avunculocal >> husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +3413,Ig6,EA011,Wife to husband,EA011-1,,ivens1927,,1900,EthnographicAtlas_1967_p98, +3414,Ig7,EA011,Wife to husband,EA011-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +3415,Ig8,EA011,Ambi/neo-local,EA011-2,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +3416,Ig9,EA011,Wife to husband,EA011-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +3417,Ih1,EA011,Wife to husband,EA011-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3418,Ih10,EA011,Wife to husband,EA011-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3419,Ih11,EA011,?,EA011-NA,,,,,, +3420,Ih12,EA011,Wife to husband,EA011-1,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +3421,Ih13,EA011,Wife to husband,EA011-1,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +3422,Ih14,EA011,Wife to husband,EA011-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +3423,Ih2,EA011,Wife to husband,EA011-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3424,Ih3,EA011,Wife to husband,EA011-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +3425,Ih4,EA011,Wife to husband,EA011-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3426,Ih5,EA011,Wife to husband,EA011-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +3427,Ih6,EA011,Husband to wife,EA011-3,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +3428,Ih7,EA011,Wife to husband,EA011-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +3429,Ih8,EA011,Wife to husband,EA011-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +3430,Ih9,EA011,Wife to husband,EA011-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3431,Ii1,EA011,Ambi/neo-local,EA011-2,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +3432,Ii10,EA011,?,EA011-NA,,,,,, +3433,Ii12,EA011,Wife to husband,EA011-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3434,Ii13,EA011,Ambi/neo-local,EA011-2,,burrows1937,,1830,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3435,Ii14,EA011,Ambi/neo-local,EA011-2,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3436,Ii2,EA011,Wife to husband,EA011-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +3437,Ii3,EA011,Wife to husband,EA011-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +3438,Ii4,EA011,Ambi/neo-local,EA011-2,Residence rule inferred from data on inheritance,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3439,Ii5,EA011,Ambi/neo-local,EA011-2,Virilocal for part of the year in families possessing coconut groves in the outer islands,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". Assume Murdock comment on Virilocality refers to codes for post-marital residence (Col 16), not Col 19 as stated in Gray (1999)" +3440,Ii6,EA011,Ambi/neo-local,EA011-2,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3441,Ii7,EA011,Ambi/neo-local,EA011-2,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +3442,Ii8,EA011,Ambi/neo-local,EA011-2,,burrows1936,,1840,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3443,Ii9,EA011,Ambi/neo-local,EA011-2,,loeb1926a,,1840,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3444,Ij1,EA011,Ambi/neo-local,EA011-2,,buck1934,,1820,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3445,Ij10,EA011,Ambi/neo-local,EA011-2,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3446,Ij2,EA011,Wife to husband,EA011-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +3447,Ij3,EA011,Wife to husband,EA011-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +3448,Ij4,EA011,Ambi/neo-local,EA011-2,,buck1932a,,1850,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3449,Ij5,EA011,Ambi/neo-local,EA011-2,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +3450,Ij6,EA011,Ambi/neo-local,EA011-2,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +3451,Ij7,EA011,Ambi/neo-local,EA011-2,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3452,Ij8,EA011,Ambi/neo-local,EA011-2,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +3453,Ij9,EA011,Ambi/neo-local,EA011-2,,metraux1940,,1860,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3454,Na1,EA011,Ambi/neo-local,EA011-2,,mckennan1959,,1930,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3455,Na10,EA011,Wife to husband,EA011-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +3456,Na11,EA011,Wife to husband,EA011-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +3457,Na12,EA011,Ambi/neo-local,EA011-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +3458,Na13,EA011,Ambi/neo-local,EA011-2,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +3459,Na14,EA011,Ambi/neo-local,EA011-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +3460,Na15,EA011,Wife to husband,EA011-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +3461,Na16,EA011,Ambi/neo-local,EA011-2,,osgood1931,,1860,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3462,Na17,EA011,Ambi/neo-local,EA011-2,"Entry follows Helm; Honigmann reports prevailing pattern as Uxorilocal (EA012 would be code ""9""), which would change this code to 'Husband to wife's group' (code ""3"")",helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3463,Na19,EA011,Husband to wife,EA011-3,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +3464,Na2,EA011,Ambi/neo-local,EA011-2,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +3465,Na20,EA011,Ambi/neo-local,EA011-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3466,Na21,EA011,Ambi/neo-local,EA011-2,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +3467,Na22,EA011,Ambi/neo-local,EA011-2,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3468,Na23,EA011,Wife to husband,EA011-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +3469,Na24,EA011,Ambi/neo-local,EA011-2,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3470,Na25,EA011,Ambi/neo-local,EA011-2,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3471,Na26,EA011,Wife to husband,EA011-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +3472,Na27,EA011,Wife to husband,EA011-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3473,Na28,EA011,Wife to husband,EA011-1,,jenness1937,,1880,EthnographicAtlas_1967_p102, +3474,Na29,EA011,Husband to wife,EA011-3,,goddard1916,,1850,EthnographicAtlas_1967_p102, +3475,Na3,EA011,Ambi/neo-local,EA011-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +3476,Na30,EA011,Wife to husband,EA011-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +3477,Na31,EA011,Ambi/neo-local,EA011-2,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3478,Na32,EA011,Wife to husband,EA011-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +3479,Na33,EA011,Ambi/neo-local,EA011-2,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3480,Na34,EA011,Wife to husband,EA011-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +3481,Na35,EA011,Ambi/neo-local,EA011-2,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3482,Na36,EA011,Ambi/neo-local,EA011-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +3483,Na37,EA011,Ambi/neo-local,EA011-2,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +3484,Na38,EA011,Wife to husband,EA011-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +3485,Na39,EA011,Ambi/neo-local,EA011-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3486,Na4,EA011,Husband to wife,EA011-3,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +3487,Na40,EA011,?,EA011-NA,,,,,, +3488,Na41,EA011,Wife to husband,EA011-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +3489,Na42,EA011,Wife to husband,EA011-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +3490,Na43,EA011,Ambi/neo-local,EA011-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3491,Na44,EA011,Ambi/neo-local,EA011-2,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3492,Na45,EA011,Ambi/neo-local,EA011-2,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3493,Na5,EA011,Ambi/neo-local,EA011-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +3494,Na6,EA011,Wife to husband,EA011-1,,lantis1946,,1930,EthnographicAtlas_1967_p102, +3495,Na7,EA011,Ambi/neo-local,EA011-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3496,Na8,EA011,Ambi/neo-local,EA011-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3497,Na9,EA011,Wife to husband,EA011-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3498,Nb1,EA011,Wife to husband,EA011-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3499,Nb10,EA011,Ambi/neo-local,EA011-2,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3500,Nb11,EA011,Ambi/neo-local,EA011-2,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3501,Nb12,EA011,Ambi/neo-local,EA011-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3502,Nb13,EA011,Wife to husband,EA011-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +3503,Nb14,EA011,Ambi/neo-local,EA011-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3504,Nb15,EA011,Ambi/neo-local,EA011-2,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3505,Nb16,EA011,Wife to husband,EA011-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +3506,Nb17,EA011,Ambi/neo-local,EA011-2,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3507,Nb18,EA011,Wife to husband,EA011-1,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +3508,Nb19,EA011,Wife to husband,EA011-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +3509,Nb2,EA011,Wife to husband,EA011-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +3510,Nb20,EA011,Ambi/neo-local,EA011-2,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3511,Nb21,EA011,Ambi/neo-local,EA011-2,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3512,Nb22,EA011,Wife to husband,EA011-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3513,Nb23,EA011,Ambi/neo-local,EA011-2,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3514,Nb24,EA011,Wife to husband,EA011-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +3515,Nb25,EA011,Ambi/neo-local,EA011-2,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3516,Nb26,EA011,Ambi/neo-local,EA011-2,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3517,Nb27,EA011,Ambi/neo-local,EA011-2,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3518,Nb28,EA011,Ambi/neo-local,EA011-2,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3519,Nb29,EA011,Ambi/neo-local,EA011-2,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3520,Nb3,EA011,Ambi/neo-local,EA011-2,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3521,Nb30,EA011,Wife to husband,EA011-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +3522,Nb31,EA011,Wife to husband,EA011-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +3523,Nb32,EA011,Ambi/neo-local,EA011-2,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3524,Nb33,EA011,Ambi/neo-local,EA011-2,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +3525,Nb34,EA011,Ambi/neo-local,EA011-2,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3526,Nb35,EA011,Ambi/neo-local,EA011-2,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3527,Nb36,EA011,Ambi/neo-local,EA011-2,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3528,Nb37,EA011,Ambi/neo-local,EA011-2,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +3529,Nb38,EA011,Ambi/neo-local,EA011-2,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3530,Nb39,EA011,Ambi/neo-local,EA011-2,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +3531,Nb4,EA011,Ambi/neo-local,EA011-2,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3532,Nb5,EA011,Wife to husband,EA011-1,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3533,Nb6,EA011,Wife to husband,EA011-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +3534,Nb7,EA011,Wife to husband,EA011-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3535,Nb8,EA011,Wife to husband,EA011-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3536,Nb9,EA011,Ambi/neo-local,EA011-2,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3537,Nc1,EA011,Wife to husband,EA011-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +3538,Nc10,EA011,Ambi/neo-local,EA011-2,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3539,Nc11,EA011,Wife to husband,EA011-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +3540,Nc12,EA011,Ambi/neo-local,EA011-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3541,Nc13,EA011,Ambi/neo-local,EA011-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3542,Nc14,EA011,Ambi/neo-local,EA011-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3543,Nc15,EA011,Ambi/neo-local,EA011-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +3544,Nc16,EA011,Wife to husband,EA011-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +3545,Nc17,EA011,Ambi/neo-local,EA011-2,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +3546,Nc18,EA011,Ambi/neo-local,EA011-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +3547,Nc19,EA011,Husband to wife,EA011-3,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +3548,Nc2,EA011,Ambi/neo-local,EA011-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3549,Nc20,EA011,Ambi/neo-local,EA011-2,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +3550,Nc21,EA011,?,EA011-NA,,,,,, +3551,Nc22,EA011,Ambi/neo-local,EA011-2,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +3552,Nc23,EA011,Wife to husband,EA011-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +3553,Nc24,EA011,Wife to husband,EA011-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +3554,Nc25,EA011,Wife to husband,EA011-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +3555,Nc26,EA011,Wife to husband,EA011-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +3556,Nc27,EA011,Wife to husband,EA011-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +3557,Nc28,EA011,Wife to husband,EA011-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +3558,Nc29,EA011,Wife to husband,EA011-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +3559,Nc3,EA011,Wife to husband,EA011-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +3560,Nc30,EA011,Wife to husband,EA011-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +3561,Nc31,EA011,Wife to husband,EA011-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +3562,Nc32,EA011,Wife to husband,EA011-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +3563,Nc33,EA011,Wife to husband,EA011-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +3564,Nc34,EA011,Wife to husband,EA011-1,,meigs1939,,1880,EthnographicAtlas_1967_p106, +3565,Nc4,EA011,Wife to husband,EA011-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +3566,Nc5,EA011,Wife to husband,EA011-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +3567,Nc6,EA011,Wife to husband,EA011-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +3568,Nc7,EA011,Wife to husband,EA011-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +3569,Nc8,EA011,Ambi/neo-local,EA011-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3570,Nc9,EA011,Ambi/neo-local,EA011-2,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3571,Nd1,EA011,Ambi/neo-local,EA011-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3572,Nd10,EA011,Ambi/neo-local,EA011-2,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3573,Nd11,EA011,Wife to husband,EA011-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +3574,Nd12,EA011,Ambi/neo-local,EA011-2,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3575,Nd13,EA011,Ambi/neo-local,EA011-2,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3576,Nd14,EA011,Wife to husband,EA011-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +3577,Nd15,EA011,Ambi/neo-local,EA011-2,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +3578,Nd16,EA011,Wife to husband,EA011-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +3579,Nd17,EA011,Ambi/neo-local,EA011-2,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3580,Nd18,EA011,Ambi/neo-local,EA011-2,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3581,Nd19,EA011,Wife to husband,EA011-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +3582,Nd2,EA011,Ambi/neo-local,EA011-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3583,Nd20,EA011,Ambi/neo-local,EA011-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3584,Nd21,EA011,Ambi/neo-local,EA011-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +3585,Nd22,EA011,Ambi/neo-local,EA011-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3586,Nd23,EA011,Ambi/neo-local,EA011-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +3587,Nd24,EA011,Ambi/neo-local,EA011-2,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +3588,Nd25,EA011,Ambi/neo-local,EA011-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3589,Nd26,EA011,Ambi/neo-local,EA011-2,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +3590,Nd27,EA011,Husband to wife,EA011-3,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +3591,Nd28,EA011,Ambi/neo-local,EA011-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +3592,Nd29,EA011,Ambi/neo-local,EA011-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +3593,Nd3,EA011,Wife to husband,EA011-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +3594,Nd30,EA011,Ambi/neo-local,EA011-2,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3595,Nd31,EA011,Wife to husband,EA011-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +3596,Nd32,EA011,Husband to wife,EA011-3,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +3597,Nd33,EA011,Ambi/neo-local,EA011-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +3598,Nd34,EA011,Ambi/neo-local,EA011-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +3599,Nd35,EA011,Ambi/neo-local,EA011-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3600,Nd36,EA011,Wife to husband,EA011-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +3601,Nd37,EA011,Ambi/neo-local,EA011-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +3602,Nd38,EA011,Ambi/neo-local,EA011-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +3603,Nd39,EA011,Ambi/neo-local,EA011-2,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +3604,Nd4,EA011,Wife to husband,EA011-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +3605,Nd40,EA011,Husband to wife,EA011-3,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +3606,Nd41,EA011,Ambi/neo-local,EA011-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3607,Nd42,EA011,Ambi/neo-local,EA011-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +3608,Nd43,EA011,Ambi/neo-local,EA011-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3609,Nd44,EA011,Ambi/neo-local,EA011-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3610,Nd45,EA011,Ambi/neo-local,EA011-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +3611,Nd46,EA011,Wife to husband,EA011-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +3612,Nd47,EA011,Ambi/neo-local,EA011-2,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3613,Nd48,EA011,Ambi/neo-local,EA011-2,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3614,Nd49,EA011,Husband to wife,EA011-3,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +3615,Nd5,EA011,Ambi/neo-local,EA011-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +3616,Nd50,EA011,?,EA011-NA,,,,,, +3617,Nd51,EA011,Husband to wife,EA011-3,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +3618,Nd52,EA011,Ambi/neo-local,EA011-2,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +3619,Nd53,EA011,Wife to husband,EA011-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +3620,Nd54,EA011,Ambi/neo-local,EA011-2,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3621,Nd55,EA011,Ambi/neo-local,EA011-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +3622,Nd56,EA011,Ambi/neo-local,EA011-2,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3623,Nd57,EA011,Ambi/neo-local,EA011-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3624,Nd58,EA011,Ambi/neo-local,EA011-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3625,Nd59,EA011,Husband to wife,EA011-3,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +3626,Nd6,EA011,Ambi/neo-local,EA011-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +3627,Nd60,EA011,Husband to wife,EA011-3,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +3628,Nd61,EA011,Husband to wife,EA011-3,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +3629,Nd62,EA011,Husband to wife,EA011-3,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +3630,Nd63,EA011,Ambi/neo-local,EA011-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3631,Nd64,EA011,Husband to wife,EA011-3,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +3632,Nd65,EA011,Ambi/neo-local,EA011-2,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3633,Nd66,EA011,Ambi/neo-local,EA011-2,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +3634,Nd67,EA011,Ambi/neo-local,EA011-2,,gifford1936,,1870,EthnographicAtlas_1967_p110, +3635,Nd7,EA011,Ambi/neo-local,EA011-2,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3636,Nd8,EA011,Ambi/neo-local,EA011-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3637,Nd9,EA011,Ambi/neo-local,EA011-2,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3638,Ne1,EA011,Ambi/neo-local,EA011-2,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3639,Ne10,EA011,Husband to wife,EA011-3,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +3640,Ne11,EA011,Ambi/neo-local,EA011-2,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3641,Ne12,EA011,Ambi/neo-local,EA011-2,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3642,Ne13,EA011,Wife to husband,EA011-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +3643,Ne14,EA011,?,EA011-NA,,,,,, +3644,Ne15,EA011,Husband to wife,EA011-3,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +3645,Ne16,EA011,Ambi/neo-local,EA011-2,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +3646,Ne17,EA011,Ambi/neo-local,EA011-2,"Entry follows Richardson; Mooney reports prevailing pattern as Uxorilocal (EA012 would be code ""9""), which would change this code to 'Husband to wife's group' (code ""3"")",lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3647,Ne18,EA011,Wife to husband,EA011-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +3648,Ne19,EA011,Wife to husband,EA011-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +3649,Ne2,EA011,Ambi/neo-local,EA011-2,,mcallister1937,,1870,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3650,Ne20,EA011,Ambi/neo-local,EA011-2,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3651,Ne21,EA011,?,EA011-NA,,,,,, +3652,Ne3,EA011,Ambi/neo-local,EA011-2,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +3653,Ne4,EA011,Wife to husband,EA011-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +3654,Ne5,EA011,Ambi/neo-local,EA011-2,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3655,Ne6,EA011,Husband to wife,EA011-3,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +3656,Ne7,EA011,Wife to husband,EA011-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +3657,Ne8,EA011,Ambi/neo-local,EA011-2,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3658,Ne9,EA011,Husband to wife,EA011-3,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +3659,Nf10,EA011,Wife to husband,EA011-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +3660,Nf11,EA011,Wife to husband,EA011-1,,whitman1937,,1870,EthnographicAtlas_1967_p114, +3661,Nf12,EA011,Wife to husband,EA011-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +3662,Nf13,EA011,Wife to husband,EA011-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3663,Nf14,EA011,Husband to wife,EA011-3,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +3664,Nf15,EA011,Wife to husband,EA011-1,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +3665,Nf2,EA011,Wife to husband,EA011-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +3666,Nf3,EA011,Wife to husband,EA011-1,"In hunting camps, but possibly Uxorilocal in the villages, which would make this 'Husband to wife's group' (code ""3"")",dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +3667,Nf4,EA011,Wife to husband,EA011-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +3668,Nf5,EA011,Ambi/neo-local,EA011-2,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3669,Nf6,EA011,Husband to wife,EA011-3,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +3670,Nf7,EA011,Ambi/neo-local,EA011-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3671,Nf8,EA011,Ambi/neo-local,EA011-2,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3672,Nf9,EA011,Wife to husband,EA011-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +3673,Ng1,EA011,Husband to wife,EA011-3,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +3674,Ng10,EA011,Husband to wife,EA011-3,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +3675,Ng11,EA011,Ambi/neo-local,EA011-2,"At a late period, but probably originally Matrilocal, which would make this 'Husband to wife's group' (code ""3"")",eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +3676,Ng12,EA011,Husband to wife,EA011-3,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +3677,Ng13,EA011,Wife to husband,EA011-1,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +3678,Ng14,EA011,Husband to wife,EA011-3,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +3679,Ng15,EA011,?,EA011-NA,,,,,, +3680,Ng2,EA011,Husband to wife,EA011-3,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +3681,Ng3,EA011,Husband to wife,EA011-3,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +3682,Ng4,EA011,Ambi/neo-local,EA011-2,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +3683,Ng5,EA011,Husband to wife,EA011-3,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +3684,Ng6,EA011,Husband to wife,EA011-3,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +3685,Ng7,EA011,Wife to husband,EA011-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +3686,Ng8,EA011,Husband to wife,EA011-3,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +3687,Ng9,EA011,Ambi/neo-local,EA011-2,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +3688,Nh1,EA011,Ambi/neo-local,EA011-2,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3689,Nh10,EA011,Ambi/neo-local,EA011-2,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +3690,Nh11,EA011,Ambi/neo-local,EA011-2,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +3691,Nh12,EA011,Ambi/neo-local,EA011-2,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +3692,Nh13,EA011,Ambi/neo-local,EA011-2,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +3693,Nh14,EA011,Husband to wife,EA011-3,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +3694,Nh15,EA011,Husband to wife,EA011-3,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +3695,Nh16,EA011,Husband to wife,EA011-3,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3696,Nh17,EA011,Husband to wife,EA011-3,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +3697,Nh18,EA011,Husband to wife,EA011-3,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3698,Nh19,EA011,Wife to husband,EA011-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +3699,Nh2,EA011,Husband to wife,EA011-3,,dozier1954,,1950,EthnographicAtlas_1967_p114, +3700,Nh20,EA011,Wife to husband,EA011-1,,gifford1931,,1860,EthnographicAtlas_1967_p114, +3701,Nh21,EA011,Ambi/neo-local,EA011-2,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3702,Nh22,EA011,Wife to husband,EA011-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +3703,Nh23,EA011,Ambi/neo-local,EA011-2,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +3704,Nh24,EA011,Husband to wife,EA011-3,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +3705,Nh25,EA011,Ambi/neo-local,EA011-2,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +3706,Nh26,EA011,Ambi/neo-local,EA011-2,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +3707,Nh27,EA011,Ambi/neo-local,EA011-2,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +3708,Nh3,EA011,Husband to wife,EA011-3,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +3709,Nh4,EA011,Husband to wife,EA011-3,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +3710,Nh5,EA011,Wife to husband,EA011-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +3711,Nh6,EA011,Ambi/neo-local,EA011-2,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +3712,Nh7,EA011,Husband to wife,EA011-3,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +3713,Nh8,EA011,Ambi/neo-local,EA011-2,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +3714,Nh9,EA011,Ambi/neo-local,EA011-2,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +3715,Ni1,EA011,Ambi/neo-local,EA011-2,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +3716,Ni2,EA011,Wife to husband,EA011-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +3717,Ni3,EA011,Ambi/neo-local,EA011-2,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +3718,Ni4,EA011,Wife to husband,EA011-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +3719,Ni5,EA011,Ambi/neo-local,EA011-2,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3720,Ni6,EA011,Wife to husband,EA011-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +3721,Ni7,EA011,Wife to husband,EA011-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +3722,Ni8,EA011,Ambi/neo-local,EA011-2,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +3723,Ni9,EA011,?,EA011-NA,,,,,, +3724,Nj1,EA011,Wife to husband,EA011-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3725,Nj10,EA011,Wife to husband,EA011-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3726,Nj11,EA011,Wife to husband,EA011-1,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +3727,Nj12,EA011,?,EA011-NA,,,,,, +3728,Nj13,EA011,Ambi/neo-local,EA011-2,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +3729,Nj14,EA011,Wife to husband,EA011-1,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +3730,Nj2,EA011,Wife to husband,EA011-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +3731,Nj3,EA011,Wife to husband,EA011-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +3732,Nj4,EA011,Wife to husband,EA011-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +3733,Nj5,EA011,Wife to husband,EA011-1,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +3734,Nj6,EA011,Ambi/neo-local,EA011-2,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3735,Nj7,EA011,Wife to husband,EA011-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3736,Nj8,EA011,Wife to husband,EA011-1,,foster1948,,1500,EthnographicAtlas_1967_p118, +3737,Nj9,EA011,Wife to husband,EA011-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +3738,Sa1,EA011,Husband to wife,EA011-3,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +3739,Sa10,EA011,Wife to husband,EA011-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +3740,Sa11,EA011,Wife to husband,EA011-1,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +3741,Sa12,EA011,Ambi/neo-local,EA011-2,,stone1948,,1948,EthnographicAtlas_1967_p118, +3742,Sa13,EA011,Wife to husband,EA011-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +3743,Sa14,EA011,Husband to wife,EA011-3,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +3744,Sa15,EA011,Wife to husband,EA011-1,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +3745,Sa16,EA011,Ambi/neo-local,EA011-2,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +3746,Sa17,EA011,Wife to husband,EA011-1,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +3747,Sa2,EA011,Wife to husband,EA011-1,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3748,Sa3,EA011,Ambi/neo-local,EA011-2,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +3749,Sa4,EA011,Ambi/neo-local,EA011-2,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +3750,Sa5,EA011,Ambi/neo-local,EA011-2,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +3751,Sa6,EA011,Wife to husband,EA011-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +3752,Sa7,EA011,Ambi/neo-local,EA011-2,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +3753,Sa8,EA011,Wife to husband,EA011-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +3754,Sa9,EA011,Husband to wife,EA011-3,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +3755,Sb1,EA011,Husband to wife,EA011-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +3756,Sb2,EA011,Husband to wife,EA011-3,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +3757,Sb3,EA011,Ambi/neo-local,EA011-2,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3758,Sb4,EA011,Ambi/neo-local,EA011-2,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3759,Sb5,EA011,Ambi/neo-local,EA011-2,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +3760,Sb6,EA011,Wife to husband,EA011-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +3761,Sb7,EA011,Husband to wife,EA011-3,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +3762,Sb8,EA011,Wife to husband,EA011-1,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +3763,Sb9,EA011,Ambi/neo-local,EA011-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +3764,Sc1,EA011,Husband to wife,EA011-3,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +3765,Sc10,EA011,Husband to wife,EA011-3,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +3766,Sc11,EA011,Wife to husband,EA011-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +3767,Sc12,EA011,Husband to wife,EA011-3,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +3768,Sc13,EA011,Ambi/neo-local,EA011-2,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3769,Sc14,EA011,Husband to wife,EA011-3,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +3770,Sc15,EA011,Husband to wife,EA011-3,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +3771,Sc16,EA011,Husband to wife,EA011-3,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +3772,Sc17,EA011,Wife to husband,EA011-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +3773,Sc18,EA011,Husband to wife,EA011-3,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +3774,Sc2,EA011,Husband to wife,EA011-3,,leedsnd,,1950,EthnographicAtlas_1967_p118, +3775,Sc3,EA011,Ambi/neo-local,EA011-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +3776,Sc4,EA011,Husband to wife,EA011-3,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +3777,Sc5,EA011,Wife to husband,EA011-1,,farabee1918,,1900,EthnographicAtlas_1967_p118, +3778,Sc6,EA011,Wife to husband,EA011-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3779,Sc7,EA011,Ambi/neo-local,EA011-2,,wilbert1959b,,1950,EthnographicAtlas_1967_p118,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3780,Sc8,EA011,Husband to wife,EA011-3,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +3781,Sc9,EA011,Wife to husband,EA011-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +3782,Sd1,EA011,Ambi/neo-local,EA011-2,But men sleep apart from their wives in a men's house,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3783,Sd2,EA011,Husband to wife,EA011-3,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +3784,Sd3,EA011,Wife to husband,EA011-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +3785,Sd4,EA011,Ambi/neo-local,EA011-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +3786,Sd5,EA011,Wife to husband,EA011-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +3787,Sd6,EA011,Husband to wife,EA011-3,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +3788,Sd7,EA011,Ambi/neo-local,EA011-2,,fock1963,,1950,EthnographicAtlas_1967_p118, +3789,Sd8,EA011,Ambi/neo-local,EA011-2,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +3790,Sd9,EA011,Wife to husband,EA011-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3791,Se1,EA011,Husband to wife,EA011-3,"The entry assumes that the matrilocal extended families are organized around matrilineage cores; if there are actually no lineages, the entry should be Uxorilocal; Holmberg does not report lineages but admits, in personal discussion, that he may conceivably have overlooked their existence",holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +3792,Se10,EA011,Wife to husband,EA011-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +3793,Se11,EA011,Wife to husband,EA011-1,,prost1965,,1960,EthnographicAtlas_1967_p122, +3794,Se12,EA011,Wife to husband,EA011-1,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +3795,Se2,EA011,Wife to husband,EA011-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +3796,Se3,EA011,Ambi/neo-local,EA011-2,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +3797,Se4,EA011,Wife to husband,EA011-1,,fejos1943,,1940,EthnographicAtlas_1967_p118, +3798,Se5,EA011,Wife to husband,EA011-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +3799,Se6,EA011,Wife to husband,EA011-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +3800,Se7,EA011,Ambi/neo-local,EA011-2,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3801,Se8,EA011,Wife to husband,EA011-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +3802,Se9,EA011,Husband to wife,EA011-3,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +3803,Sf1,EA011,Wife to husband,EA011-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +3804,Sf2,EA011,Wife to husband,EA011-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +3805,Sf3,EA011,Ambi/neo-local,EA011-2,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3806,Sf4,EA011,Ambi/neo-local,EA011-2,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3807,Sf5,EA011,Ambi/neo-local,EA011-2,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +3808,Sf6,EA011,Wife to husband,EA011-1,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +3809,Sf7,EA011,Ambi/neo-local,EA011-2,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3810,Sf8,EA011,Husband to wife,EA011-3,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +3811,Sf9,EA011,Ambi/neo-local,EA011-2,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +3812,Sg1,EA011,Wife to husband,EA011-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +3813,Sg2,EA011,Wife to husband,EA011-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3814,Sg3,EA011,Wife to husband,EA011-1,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people""",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +3815,Sg4,EA011,Wife to husband,EA011-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +3816,Sg5,EA011,Ambi/neo-local,EA011-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3817,Sh1,EA011,Ambi/neo-local,EA011-2,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3818,Sh2,EA011,Ambi/neo-local,EA011-2,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +3819,Sh3,EA011,Ambi/neo-local,EA011-2,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +3820,Sh4,EA011,Husband to wife,EA011-3,,oberg1949,,1940,EthnographicAtlas_1967_p122, +3821,Sh5,EA011,Husband to wife,EA011-3,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +3822,Sh6,EA011,Ambi/neo-local,EA011-2,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3823,Sh7,EA011,Wife to husband,EA011-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +3824,Sh8,EA011,Ambi/neo-local,EA011-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +3825,Sh9,EA011,Ambi/neo-local,EA011-2,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3826,Si1,EA011,Husband to wife,EA011-3,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3827,Si10,EA011,Wife to husband,EA011-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +3828,Si2,EA011,Wife to husband,EA011-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +3829,Si3,EA011,Wife to husband,EA011-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3830,Si4,EA011,Ambi/neo-local,EA011-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3831,Si5,EA011,Wife to husband,EA011-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +3832,Si6,EA011,Ambi/neo-local,EA011-2,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +3833,Si7,EA011,Ambi/neo-local,EA011-2,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3834,Si8,EA011,Wife to husband,EA011-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +3835,Si9,EA011,?,EA011-NA,,,,,, +3836,Sj1,EA011,Husband to wife,EA011-3,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +3837,Sj10,EA011,Wife to husband,EA011-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3838,Sj11,EA011,Husband to wife,EA011-3,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +3839,Sj2,EA011,Wife to husband,EA011-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +3840,Sj3,EA011,Ambi/neo-local,EA011-2,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +3841,Sj4,EA011,Husband to wife,EA011-3,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +3842,Sj5,EA011,?,EA011-NA,,,,,, +3843,Sj6,EA011,Husband to wife,EA011-3,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +3844,Sj7,EA011,Husband to wife,EA011-3,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +3845,Sj8,EA011,Ambi/neo-local,EA011-2,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +3846,Sj9,EA011,Husband to wife,EA011-3,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +3847,ch12,EA011,Wife to husband,EA011-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +3848,ch13,EA011,Wife to husband,EA011-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +3849,ch14,EA011,Wife to husband,EA011-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +3850,ch15,EA011,Wife to husband,EA011-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +3851,ch16,EA011,Ambi/neo-local,EA011-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3852,ch17,EA011,Ambi/neo-local,EA011-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +3853,ch18,EA011,Wife to husband,EA011-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +3854,ch19,EA011,Wife to husband,EA011-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +3855,ch20,EA011,Wife to husband,EA011-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +3856,ch21,EA011,Wife to husband,EA011-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +3857,ch22,EA011,Wife to husband,EA011-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +3858,ch23,EA011,Ambi/neo-local,EA011-2,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3859,ch24,EA011,Wife to husband,EA011-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +3860,ch25,EA011,Wife to husband,EA011-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +3861,ch26,EA011,Ambi/neo-local,EA011-2,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +3862,ch27,EA011,Wife to husband,EA011-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +3863,ch28,EA011,Wife to husband,EA011-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +3864,ec12,EA011,Wife to husband,EA011-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +3865,ec13,EA011,Wife to husband,EA011-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +3866,ec14,EA011,Wife to husband,EA011-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +3867,ec15,EA011,Wife to husband,EA011-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +3868,ec16,EA011,Wife to husband,EA011-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +3869,ec17,EA011,Wife to husband,EA011-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +3870,ec18,EA011,Wife to husband,EA011-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +3871,ec19,EA011,Wife to husband,EA011-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +3872,ec20,EA011,Wife to husband,EA011-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +3873,ec21,EA011,Wife to husband,EA011-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +3874,Aa1,EA112,"Trance, no possession",EA112-1,,,Nyai Nyae region,1950,Gray (1999); Bourguignon (1973), +3875,Aa2,EA112,No trance or possession,EA112-8,,,with special reference to Central Dorobo,1920,Gray (1999); Bourguignon (1973), +3876,Aa3,EA112,No trance or possession,EA112-8,,,Gei/Khauan tribe,1840,Gray (1999); Bourguignon (1973), +3877,Aa4,EA112,"Trance, no possession",EA112-1,,,,1920,Gray (1999); Bourguignon (1973), +3878,Aa5,EA112,No trance or possession,EA112-8,,,"Epulu net-hunters, Ituri forest",1930,Gray (1999); Bourguignon (1973), +3879,Aa6,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +3880,Aa7,EA112,?,EA112-NA,,,,,, +3881,Aa8,EA112,?,EA112-NA,,,,,, +3882,Aa9,EA112,?,EA112-NA,,,,,, +3883,Ab1,EA112,T due to P only; P causes T only,EA112-3,,,,1900,Gray (1999); Bourguignon (1973), +3884,Ab10,EA112,"Trance, no possession",EA112-1,,,,1936,Gray (1999); Bourguignon (1973), +3885,Ab11,EA112,T due to P only; P causes T only,EA112-3,,,,1850,Gray (1999); Bourguignon (1973), +3886,Ab12,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1830,Gray (1999); Bourguignon (1973), +3887,Ab13,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to the Kgatla (Bakxatla),1880,Gray (1999); Bourguignon (1973), +3888,Ab14,EA112,T due to P only; P explains T and others,EA112-6,,,,1930,Gray (1999); Bourguignon (1973), +3889,Ab15,EA112,?,EA112-NA,,,,,, +3890,Ab16,EA112,T due to P only; P explains T and others,EA112-6,,,,1930,Gray (1999); Bourguignon (1973), +3891,Ab17,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1920,Gray (1999); Bourguignon (1973), +3892,Ab18,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the Zezuru,1920,Gray (1999); Bourguignon (1973), +3893,Ab19,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the Kuanyama,1910,Gray (1999); Bourguignon (1973), +3894,Ab2,EA112,T due to P only; P explains T and others,EA112-6,,,,1880,Gray (1999); Bourguignon (1973), +3895,Ab20,EA112,?,EA112-NA,,,,,, +3896,Ab21a,EA112,?,EA112-NA,,,,,, +3897,Ab21b,EA112,?,EA112-NA,,,,,, +3898,Ab22,EA112,?,EA112-NA,,,,,, +3899,Ab3,EA112,T due to P only; P explains T and others,EA112-6,,,Ruling Luyana,1890,Gray (1999); Bourguignon (1973), +3900,Ab4,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +3901,Ab5,EA112,T due to P only; P explains T and others,EA112-6,,,,1930,Gray (1999); Bourguignon (1973), +3902,Ab6,EA112,T due to P only; P explains T and others,EA112-6,,,,1900,Gray (1999); Bourguignon (1973), +3903,Ab7,EA112,T due to P only; P causes T only,EA112-3,,,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,Gray (1999); Bourguignon (1973), +3904,Ab8,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Basuto,1860,Gray (1999); Bourguignon (1973), +3905,Ab9,EA112,"Trance, no possession",EA112-1,,,,1870,Gray (1999); Bourguignon (1973), +3906,Ac1,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +3907,Ac10,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +3908,Ac11,EA112,T due to P only; P explains T and others,EA112-6,,,,1930,Gray (1999); Bourguignon (1973), +3909,Ac12,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +3910,Ac13,EA112,T due to P only; P causes T only,EA112-3,,,,1950,Gray (1999); Bourguignon (1973), +3911,Ac14,EA112,T due to P only; P explains T and others,EA112-6,,,,1900,Gray (1999); Bourguignon (1973), +3912,Ac15,EA112,?,EA112-NA,,,,,, +3913,Ac16,EA112,?,EA112-NA,,,,,, +3914,Ac17,EA112,?,EA112-NA,,,,,, +3915,Ac18,EA112,?,EA112-NA,,,,,, +3916,Ac19,EA112,?,EA112-NA,,,,,, +3917,Ac2,EA112,Possession,EA112-2,,,,1920,Gray (1999); Bourguignon (1973), +3918,Ac20,EA112,?,EA112-NA,,,,,, +3919,Ac21,EA112,No trance or possession,EA112-8,,,,1910,Gray (1999); Bourguignon (1973), +3920,Ac22,EA112,?,EA112-NA,,,,,, +3921,Ac23,EA112,Possession,EA112-2,,,with special reference to the western Lele,1950,Gray (1999); Bourguignon (1973), +3922,Ac24,EA112,?,EA112-NA,,,,,, +3923,Ac25,EA112,T due to P only; P causes T only,EA112-3,,,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,Gray (1999); Bourguignon (1973), +3924,Ac26,EA112,?,EA112-NA,,,,,, +3925,Ac27,EA112,"T and P, but T not due to P",EA112-5,,,,1930,Gray (1999); Bourguignon (1973), +3926,Ac28,EA112,T due to P only; P causes T only,EA112-3,,,,1930,Gray (1999); Bourguignon (1973), +3927,Ac29,EA112,?,EA112-NA,,,,,, +3928,Ac3,EA112,T due to P only; P explains T and others,EA112-6,,,Zambia branch,1900,Gray (1999); Bourguignon (1973), +3929,Ac30,EA112,T due to P only; P explains T and others,EA112-6,,,,1940,Gray (1999); Bourguignon (1973), +3930,Ac31,EA112,?,EA112-NA,,,,,, +3931,Ac32,EA112,?,EA112-NA,,,,,, +3932,Ac33,EA112,?,EA112-NA,,,,,, +3933,Ac34,EA112,?,EA112-NA,,,,,, +3934,Ac35,EA112,?,EA112-NA,,,,,, +3935,Ac36,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +3936,Ac37,EA112,?,EA112-NA,,,,,, +3937,Ac38,EA112,Possession,EA112-2,,,,1910,Gray (1999); Bourguignon (1973), +3938,Ac39,EA112,?,EA112-NA,,,,,, +3939,Ac4,EA112,Possession,EA112-2,,,"with special reference to the Bushoong, the central subtribe",1910,Gray (1999); Bourguignon (1973), +3940,Ac40,EA112,?,EA112-NA,,,,,, +3941,Ac41,EA112,?,EA112-NA,,,,,, +3942,Ac42,EA112,?,EA112-NA,,,,,, +3943,Ac43,EA112,?,EA112-NA,,,,,, +3944,Ac5,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +3945,Ac6,EA112,T due to P only; P explains T and others,EA112-6,,,,1930,Gray (1999); Bourguignon (1973), +3946,Ac7,EA112,T due to P only; P causes T only,EA112-3,,,,1920,Gray (1999); Bourguignon (1973), +3947,Ac8,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +3948,Ac9,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to the Mpezeni group of Fort Jameson,1940,Gray (1999); Bourguignon (1973), +3949,Ad1,EA112,?,EA112-NA,,,,,, +3950,Ad10,EA112,?,EA112-NA,,,,,, +3951,Ad11,EA112,?,EA112-NA,,,,,, +3952,Ad12,EA112,T due to P only; P causes T only,EA112-3,,,,1940,Gray (1999); Bourguignon (1973), +3953,Ad13,EA112,T due to P only; P explains T and others,EA112-6,,,,1930,Gray (1999); Bourguignon (1973), +3954,Ad14,EA112,?,EA112-NA,,,,,, +3955,Ad15,EA112,?,EA112-NA,,,,,, +3956,Ad16,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1920,Gray (1999); Bourguignon (1973), +3957,Ad17,EA112,?,EA112-NA,,,,,, +3958,Ad18,EA112,?,EA112-NA,,,,,, +3959,Ad19,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1910,Gray (1999); Bourguignon (1973), +3960,Ad2,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1950,Gray (1999); Bourguignon (1973), +3961,Ad20,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1920,Gray (1999); Bourguignon (1973), +3962,Ad21,EA112,?,EA112-NA,,,,,, +3963,Ad22,EA112,T due to P only; P causes T only,EA112-3,,,,1950,Gray (1999); Bourguignon (1973), +3964,Ad23,EA112,?,EA112-NA,,,,,, +3965,Ad24,EA112,?,EA112-NA,,,,,, +3966,Ad25,EA112,?,EA112-NA,,,,,, +3967,Ad26,EA112,?,EA112-NA,,,,,, +3968,Ad27,EA112,?,EA112-NA,,,,,, +3969,Ad28,EA112,?,EA112-NA,,,,,, +3970,Ad29,EA112,"T and P, but T not due to P",EA112-5,,,,1930,Gray (1999); Bourguignon (1973), +3971,Ad3,EA112,Possession,EA112-2,,,,1910,Gray (1999); Bourguignon (1973), +3972,Ad30,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1890,Gray (1999); Bourguignon (1973), +3973,Ad31,EA112,?,EA112-NA,,,,,, +3974,Ad32,EA112,Possession,EA112-2,,,,1900,Gray (1999); Bourguignon (1973), +3975,Ad33,EA112,?,EA112-NA,,,,,, +3976,Ad34,EA112,?,EA112-NA,,,,,, +3977,Ad35,EA112,?,EA112-NA,,,,,, +3978,Ad36,EA112,?,EA112-NA,,,,,, +3979,Ad37,EA112,?,EA112-NA,,,,,, +3980,Ad38,EA112,?,EA112-NA,,,,,, +3981,Ad39,EA112,?,EA112-NA,,,,,, +3982,Ad4,EA112,"T and P, but T not due to P",EA112-5,,,Fort Hall or Metume district,1930,Gray (1999); Bourguignon (1973), +3983,Ad40,EA112,?,EA112-NA,,,,,, +3984,Ad41,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1930,Gray (1999); Bourguignon (1973), +3985,Ad42,EA112,?,EA112-NA,,,,,, +3986,Ad43,EA112,?,EA112-NA,,,,,, +3987,Ad44,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +3988,Ad45,EA112,?,EA112-NA,,,,,, +3989,Ad46,EA112,T due to P only; P explains T and others,EA112-6,,,,1950,Gray (1999); Bourguignon (1973), +3990,Ad47,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1900,Gray (1999); Bourguignon (1973), +3991,Ad48,EA112,T due to P only; P causes T only,EA112-3,,,,1950,Gray (1999); Bourguignon (1973), +3992,Ad49,EA112,?,EA112-NA,,,,,, +3993,Ad5,EA112,?,EA112-NA,,,,,, +3994,Ad50,EA112,?,EA112-NA,,,,,, +3995,Ad51,EA112,?,EA112-NA,,,,,, +3996,Ad6,EA112,T due to P only; P explains T and others,EA112-6,,,Age villages of Mwaya and Masoko,1930,Gray (1999); Bourguignon (1973), +3997,Ad7,EA112,T due to P only; P explains T and others,EA112-6,,,Kyaddondo district (V: Kampala),1880,Gray (1999); Bourguignon (1973), +3998,Ad8,EA112,"T and P, but T not due to P",EA112-5,,,with special reference to the northern or Iringa group,1910,Gray (1999); Bourguignon (1973), +3999,Ad9,EA112,T due to P only; P causes T only,EA112-3,,,,1900,Gray (1999); Bourguignon (1973), +4000,Ae1,EA112,"Trance, no possession",EA112-1,,,with special reference to those of Bwamba in Uganda,1950,Gray (1999); Bourguignon (1973), +4001,Ae10,EA112,T due to P only; P causes T only,EA112-3,,,,1910,Gray (1999); Bourguignon (1973), +4002,Ae11,EA112,?,EA112-NA,,,,,, +4003,Ae12,EA112,Possession,EA112-2,,,,1940,Gray (1999); Bourguignon (1973), +4004,Ae13,EA112,?,EA112-NA,,,,,, +4005,Ae14,EA112,?,EA112-NA,,,,,, +4006,Ae15,EA112,?,EA112-NA,,,,,, +4007,Ae16,EA112,?,EA112-NA,,,,,, +4008,Ae17,EA112,?,EA112-NA,,,,,, +4009,Ae18,EA112,Possession,EA112-2,,,,1900,Gray (1999); Bourguignon (1973), +4010,Ae19,EA112,?,EA112-NA,,,,,, +4011,Ae2,EA112,"Trance, no possession",EA112-1,,,,1950,Gray (1999); Bourguignon (1973), +4012,Ae20,EA112,No trance or possession,EA112-8,,,,1940,Gray (1999); Bourguignon (1973), +4013,Ae21,EA112,?,EA112-NA,,,,,, +4014,Ae22,EA112,Possession,EA112-2,,,with special reference to the Bankutu,1900,Gray (1999); Bourguignon (1973), +4015,Ae23,EA112,?,EA112-NA,,,,,, +4016,Ae24,EA112,"Trance, no possession",EA112-1,,,,1920,Gray (1999); Bourguignon (1973), +4017,Ae25,EA112,?,EA112-NA,,,,,, +4018,Ae26,EA112,?,EA112-NA,,,,,, +4019,Ae27,EA112,?,EA112-NA,,,,,, +4020,Ae28,EA112,T due to P only; P explains T and others,EA112-6,,,,1900,Gray (1999); Bourguignon (1973), +4021,Ae29,EA112,?,EA112-NA,,,,,, +4022,Ae3,EA112,"T and P, but T not due to P",EA112-5,,,,1910,Gray (1999); Bourguignon (1973), +4023,Ae30,EA112,?,EA112-NA,,,,,, +4024,Ae31,EA112,?,EA112-NA,,,,,, +4025,Ae32,EA112,?,EA112-NA,,,,,, +4026,Ae33,EA112,?,EA112-NA,,,,,, +4027,Ae34,EA112,?,EA112-NA,,,,,, +4028,Ae35,EA112,?,EA112-NA,,,,,, +4029,Ae36,EA112,?,EA112-NA,,,,,, +4030,Ae37,EA112,?,EA112-NA,,,,,, +4031,Ae38,EA112,?,EA112-NA,,,,,, +4032,Ae39,EA112,?,EA112-NA,,,,,, +4033,Ae4,EA112,?,EA112-NA,,,,,, +4034,Ae40,EA112,?,EA112-NA,,,,,, +4035,Ae41,EA112,?,EA112-NA,,,,,, +4036,Ae42,EA112,?,EA112-NA,,,,,, +4037,Ae43,EA112,?,EA112-NA,,,,,, +4038,Ae44,EA112,?,EA112-NA,,,,,, +4039,Ae45,EA112,?,EA112-NA,,,,,, +4040,Ae46,EA112,?,EA112-NA,,,,,, +4041,Ae47,EA112,?,EA112-NA,,,,,, +4042,Ae48,EA112,?,EA112-NA,,,,,, +4043,Ae49,EA112,?,EA112-NA,,,,,, +4044,Ae5,EA112,Possession,EA112-2,,,,1910,Gray (1999); Bourguignon (1973), +4045,Ae50,EA112,?,EA112-NA,,,,,, +4046,Ae51,EA112,?,EA112-NA,,,,,, +4047,Ae52,EA112,?,EA112-NA,,,,,, +4048,Ae53,EA112,?,EA112-NA,,,,,, +4049,Ae54,EA112,?,EA112-NA,,,,,, +4050,Ae55,EA112,?,EA112-NA,,,,,, +4051,Ae56,EA112,?,EA112-NA,,,,,, +4052,Ae57,EA112,?,EA112-NA,,,,,, +4053,Ae58,EA112,?,EA112-NA,,,,,, +4054,Ae59,EA112,?,EA112-NA,,,,,, +4055,Ae6,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to the Bena Kalundwe,1930,Gray (1999); Bourguignon (1973), +4056,Ae7,EA112,"Trance, no possession",EA112-1,,,,1910,Gray (1999); Bourguignon (1973), +4057,Ae8,EA112,Possession,EA112-2,,,,1910,Gray (1999); Bourguignon (1973), +4058,Ae9,EA112,?,EA112-NA,,,,,, +4059,Af1,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,City and environs of Abomey,1890,Gray (1999); Bourguignon (1973), +4060,Af10,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1930,Gray (1999); Bourguignon (1973), +4061,Af11,EA112,"T and P, but T not due to P",EA112-5,,,,1920,Gray (1999); Bourguignon (1973), +4062,Af12,EA112,?,EA112-NA,,,,,, +4063,Af13,EA112,T due to P only; P causes T only,EA112-3,,,,1920,Gray (1999); Bourguignon (1973), +4064,Af14,EA112,?,EA112-NA,,,,,, +4065,Af15,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +4066,Af16,EA112,?,EA112-NA,,,,,, +4067,Af17,EA112,?,EA112-NA,,,,,, +4068,Af18,EA112,?,EA112-NA,,,,,, +4069,Af19,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4070,Af2,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1950,Gray (1999); Bourguignon (1973), +4071,Af20,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1910,Gray (1999); Bourguignon (1973), +4072,Af21,EA112,"Trance, no possession",EA112-1,,,with special reference to the Kalabari,1920,Gray (1999); Bourguignon (1973), +4073,Af22,EA112,"T and P, but T not due to P",EA112-5,,,,1940,Gray (1999); Bourguignon (1973), +4074,Af23,EA112,?,EA112-NA,,,,,, +4075,Af24,EA112,T due to P only; P causes T only,EA112-3,,,,1900,Gray (1999); Bourguignon (1973), +4076,Af25,EA112,?,EA112-NA,,,,,, +4077,Af26,EA112,?,EA112-NA,,,,,, +4078,Af27,EA112,?,EA112-NA,,,,,, +4079,Af28,EA112,T due to P only; P causes T only,EA112-3,,,,1910,Gray (1999); Bourguignon (1973), +4080,Af29,EA112,?,EA112-NA,,,,,, +4081,Af3,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,Kumasi State,1900,Gray (1999); Bourguignon (1973), +4082,Af30,EA112,?,EA112-NA,,,,,, +4083,Af31,EA112,?,EA112-NA,,,,,, +4084,Af32,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,Abeouta Province and Benin,1920,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4085,Af33,EA112,?,EA112-NA,,,,,, +4086,Af34,EA112,?,EA112-NA,,,,,, +4087,Af35,EA112,?,EA112-NA,,,,,, +4088,Af36,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the Glidyi,1900,Gray (1999); Bourguignon (1973), +4089,Af37,EA112,?,EA112-NA,,,,,, +4090,Af38,EA112,?,EA112-NA,,,,,, +4091,Af39,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Ndenie,1900,Gray (1999); Bourguignon (1973), +4092,Af4,EA112,?,EA112-NA,,,,,, +4093,Af40,EA112,?,EA112-NA,,,,,, +4094,Af41,EA112,?,EA112-NA,,,,,, +4095,Af42,EA112,"Trance, no possession",EA112-1,,,,1900,Gray (1999); Bourguignon (1973), +4096,Af43,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1930,Gray (1999); Bourguignon (1973), +4097,Af44,EA112,?,EA112-NA,,,,,, +4098,Af45,EA112,?,EA112-NA,,,,,, +4099,Af46,EA112,?,EA112-NA,,,,,, +4100,Af47,EA112,?,EA112-NA,,,,,, +4101,Af48,EA112,?,EA112-NA,,,,,, +4102,Af49,EA112,Possession,EA112-2,,,,1940,Gray (1999); Bourguignon (1973), +4103,Af5,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1930,Gray (1999); Bourguignon (1973), +4104,Af50,EA112,?,EA112-NA,,,,,, +4105,Af51,EA112,?,EA112-NA,,,,,, +4106,Af52,EA112,?,EA112-NA,,,,,, +4107,Af53,EA112,?,EA112-NA,,,,,, +4108,Af54,EA112,"T and P, but T not due to P",EA112-5,,,,1930,Gray (1999); Bourguignon (1973), +4109,Af55,EA112,?,EA112-NA,,,,,, +4110,Af56,EA112,?,EA112-NA,,,,,, +4111,Af57,EA112,?,EA112-NA,,,,,, +4112,Af58,EA112,?,EA112-NA,,,,,, +4113,Af6,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,"Yoruba, with special reference to the Oyo",1950,Gray (1999); Bourguignon (1973), +4114,Af7,EA112,?,EA112-NA,,,,,, +4115,Af8,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4116,Af9,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1900,Gray (1999); Bourguignon (1973), +4117,Ag1,EA112,T due to P only; P causes T only,EA112-3,,,Segou to Bamako on Niger River,1920,Gray (1999); Bourguignon (1973), +4118,Ag10,EA112,No trance or possession,EA112-8,,,,1940,Gray (1999); Bourguignon (1973), +4119,Ag11,EA112,?,EA112-NA,,,,,, +4120,Ag12,EA112,?,EA112-NA,,,,,, +4121,Ag13,EA112,?,EA112-NA,,,,,, +4122,Ag14,EA112,?,EA112-NA,,,,,, +4123,Ag15,EA112,?,EA112-NA,,,,,, +4124,Ag16,EA112,?,EA112-NA,,,,,, +4125,Ag17,EA112,?,EA112-NA,,,,,, +4126,Ag18,EA112,?,EA112-NA,,,,,, +4127,Ag19,EA112,?,EA112-NA,,,,,, +4128,Ag2,EA112,?,EA112-NA,,,,,, +4129,Ag20,EA112,?,EA112-NA,,,,,, +4130,Ag21,EA112,?,EA112-NA,,,,,, +4131,Ag22,EA112,?,EA112-NA,,,,,, +4132,Ag23,EA112,?,EA112-NA,,,,,, +4133,Ag24,EA112,?,EA112-NA,,,,,, +4134,Ag25,EA112,?,EA112-NA,,,,,, +4135,Ag26,EA112,?,EA112-NA,,,,,, +4136,Ag27,EA112,?,EA112-NA,,,,,, +4137,Ag28,EA112,?,EA112-NA,,,,,, +4138,Ag29,EA112,?,EA112-NA,,,,,, +4139,Ag3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1930,Gray (1999); Bourguignon (1973), +4140,Ag30,EA112,?,EA112-NA,,,,,, +4141,Ag31,EA112,?,EA112-NA,,,,,, +4142,Ag32,EA112,?,EA112-NA,,,,,, +4143,Ag33,EA112,?,EA112-NA,,,,,, +4144,Ag34,EA112,?,EA112-NA,,,,,, +4145,Ag35,EA112,?,EA112-NA,,,,,, +4146,Ag36,EA112,?,EA112-NA,,,,,, +4147,Ag37,EA112,T due to P only; P causes T only,EA112-3,,,,1910,Gray (1999); Bourguignon (1973), +4148,Ag38,EA112,?,EA112-NA,,,,,, +4149,Ag39,EA112,?,EA112-NA,,,,,, +4150,Ag4,EA112,No trance or possession,EA112-8,,,Tallensi Tribe,1930,Gray (1999); Bourguignon (1973), +4151,Ag40,EA112,?,EA112-NA,,,,,, +4152,Ag41,EA112,?,EA112-NA,,,,,, +4153,Ag42,EA112,?,EA112-NA,,,,,, +4154,Ag43,EA112,?,EA112-NA,,,,,, +4155,Ag44,EA112,?,EA112-NA,,,,,, +4156,Ag45,EA112,?,EA112-NA,,,,,, +4157,Ag46,EA112,?,EA112-NA,,,,,, +4158,Ag47,EA112,No trance or possession,EA112-8,,,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,Gray (1999); Bourguignon (1973), +4159,Ag48,EA112,?,EA112-NA,,,,,, +4160,Ag49,EA112,?,EA112-NA,,,,,, +4161,Ag5,EA112,?,EA112-NA,,,,,, +4162,Ag50,EA112,?,EA112-NA,,,,,, +4163,Ag51,EA112,?,EA112-NA,,,,,, +4164,Ag52,EA112,?,EA112-NA,,,,,, +4165,Ag53,EA112,?,EA112-NA,,,,,, +4166,Ag54,EA112,?,EA112-NA,,,,,, +4167,Ag6,EA112,?,EA112-NA,,,,,, +4168,Ag7,EA112,?,EA112-NA,,,,,, +4169,Ag8,EA112,?,EA112-NA,,,,,, +4170,Ag9,EA112,?,EA112-NA,,,,,, +4171,Ah1,EA112,?,EA112-NA,,,,,, +4172,Ah10,EA112,?,EA112-NA,,,,,, +4173,Ah11,EA112,?,EA112-NA,,,,,, +4174,Ah12,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +4175,Ah13,EA112,?,EA112-NA,,,,,, +4176,Ah14,EA112,?,EA112-NA,,,,,, +4177,Ah15,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +4178,Ah16,EA112,?,EA112-NA,,,,,, +4179,Ah17,EA112,?,EA112-NA,,,,,, +4180,Ah18,EA112,?,EA112-NA,,,,,, +4181,Ah19,EA112,?,EA112-NA,,,,,, +4182,Ah2,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +4183,Ah20,EA112,?,EA112-NA,,,,,, +4184,Ah21,EA112,?,EA112-NA,,,,,, +4185,Ah22,EA112,?,EA112-NA,,,,,, +4186,Ah23,EA112,?,EA112-NA,,,,,, +4187,Ah24,EA112,?,EA112-NA,,,,,, +4188,Ah25,EA112,?,EA112-NA,,,,,, +4189,Ah26,EA112,?,EA112-NA,,,,,, +4190,Ah27,EA112,?,EA112-NA,,,,,, +4191,Ah28,EA112,?,EA112-NA,,,,,, +4192,Ah29,EA112,?,EA112-NA,,,,,, +4193,Ah3,EA112,No trance or possession,EA112-8,,,Tar of Benue Province,1920,Gray (1999); Bourguignon (1973), +4194,Ah30,EA112,?,EA112-NA,,,,,, +4195,Ah31,EA112,?,EA112-NA,,,,,, +4196,Ah32,EA112,?,EA112-NA,,,,,, +4197,Ah33,EA112,?,EA112-NA,,,,,, +4198,Ah34,EA112,?,EA112-NA,,,,,, +4199,Ah35,EA112,?,EA112-NA,,,,,, +4200,Ah36,EA112,?,EA112-NA,,,,,, +4201,Ah37,EA112,?,EA112-NA,,,,,, +4202,Ah38,EA112,?,EA112-NA,,,,,, +4203,Ah39,EA112,?,EA112-NA,,,,,, +4204,Ah4,EA112,?,EA112-NA,,,,,, +4205,Ah5,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4206,Ah6,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +4207,Ah7,EA112,No trance or possession,EA112-8,,,,1940,Gray (1999); Bourguignon (1973), +4208,Ah8,EA112,No trance or possession,EA112-8,,,,1910,Gray (1999); Bourguignon (1973), +4209,Ah9,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +4210,Ai1,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1920,Gray (1999); Bourguignon (1973), +4211,Ai10,EA112,No trance or possession,EA112-8,,,Nuba Hills,1940,Gray (1999); Bourguignon (1973), +4212,Ai11,EA112,?,EA112-NA,,,,,, +4213,Ai12,EA112,?,EA112-NA,,,,,, +4214,Ai13,EA112,?,EA112-NA,,,,,, +4215,Ai14,EA112,?,EA112-NA,,,,,, +4216,Ai15,EA112,?,EA112-NA,,,,,, +4217,Ai16,EA112,?,EA112-NA,,,,,, +4218,Ai17,EA112,?,EA112-NA,,,,,, +4219,Ai18,EA112,T due to P only; P explains T and others,EA112-6,,,,1880,Gray (1999); Bourguignon (1973), +4220,Ai19,EA112,?,EA112-NA,,,,,, +4221,Ai2,EA112,?,EA112-NA,,,,,, +4222,Ai20,EA112,?,EA112-NA,,,,,, +4223,Ai21,EA112,T due to P only; P causes T only,EA112-3,,,,1880,Gray (1999); Bourguignon (1973), +4224,Ai22,EA112,?,EA112-NA,,,,,, +4225,Ai23,EA112,"Trance, no possession",EA112-1,,,,1920,Gray (1999); Bourguignon (1973), +4226,Ai24,EA112,?,EA112-NA,,,,,, +4227,Ai25,EA112,?,EA112-NA,,,,,, +4228,Ai26,EA112,?,EA112-NA,,,,,, +4229,Ai27,EA112,T due to P only; P explains T and others,EA112-6,,,,1890,Gray (1999); Bourguignon (1973), +4230,Ai28,EA112,?,EA112-NA,,,,,, +4231,Ai29,EA112,?,EA112-NA,,,,,, +4232,Ai3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1920,Gray (1999); Bourguignon (1973), +4233,Ai30,EA112,?,EA112-NA,,,,,, +4234,Ai31,EA112,?,EA112-NA,,,,,, +4235,Ai32,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1920,Gray (1999); Bourguignon (1973), +4236,Ai33,EA112,?,EA112-NA,,,,,, +4237,Ai34,EA112,?,EA112-NA,,,,,, +4238,Ai35,EA112,T due to P only; P causes T only,EA112-3,,,,1870,Gray (1999); Bourguignon (1973), +4239,Ai36,EA112,?,EA112-NA,,,,,, +4240,Ai37,EA112,"T and P, but T not due to P",EA112-5,,,,1940,Gray (1999); Bourguignon (1973), +4241,Ai38,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4242,Ai39,EA112,No trance or possession,EA112-8,,,,1940,Gray (1999); Bourguignon (1973), +4243,Ai4,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +4244,Ai40,EA112,T due to P only; P causes T only,EA112-3,,,,1940,Gray (1999); Bourguignon (1973), +4245,Ai41,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4246,Ai42,EA112,No trance or possession,EA112-8,,,,1940,Gray (1999); Bourguignon (1973), +4247,Ai43,EA112,T due to P only; P causes T only,EA112-3,,,,1930,Gray (1999); Bourguignon (1973), +4248,Ai44,EA112,"Trance, no possession",EA112-1,,,,1920,Gray (1999); Bourguignon (1973), +4249,Ai45,EA112,?,EA112-NA,,,,,, +4250,Ai46,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4251,Ai47,EA112,"T and P, but T not due to P",EA112-5,,,Northern division,1939,Gray (1999); Bourguignon (1973), +4252,Ai5,EA112,?,EA112-NA,,,,,, +4253,Ai6,EA112,T due to P only; P explains T and others,EA112-6,,,Shilluk Kingdom,1900,Gray (1999); Bourguignon (1973), +4254,Ai7,EA112,T due to P only; P explains T and others,EA112-6,,,,1910,Gray (1999); Bourguignon (1973), +4255,Ai8,EA112,T due to P only; P causes T only,EA112-3,,,,1930,Gray (1999); Bourguignon (1973), +4256,Ai9,EA112,?,EA112-NA,,,,,, +4257,Aj1,EA112,?,EA112-NA,,,,,, +4258,Aj10,EA112,?,EA112-NA,,,,,, +4259,Aj11,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1900,Gray (1999); Bourguignon (1973), +4260,Aj12,EA112,"Trance, no possession",EA112-1,,,,1920,Gray (1999); Bourguignon (1973), +4261,Aj13,EA112,?,EA112-NA,,,,,, +4262,Aj14,EA112,?,EA112-NA,,,,,, +4263,Aj15,EA112,?,EA112-NA,,,,,, +4264,Aj16,EA112,?,EA112-NA,,,,,, +4265,Aj17,EA112,T due to P only; P explains T and others,EA112-6,,,,1890,Gray (1999); Bourguignon (1973), +4266,Aj18,EA112,?,EA112-NA,,,,,, +4267,Aj19,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +4268,Aj2,EA112,"Trance, no possession",EA112-1,,,Kisonko or Southern Masai of Tanzania,1900,Gray (1999); Bourguignon (1973), +4269,Aj20,EA112,?,EA112-NA,,,,,, +4270,Aj21,EA112,?,EA112-NA,,,,,, +4271,Aj22,EA112,?,EA112-NA,,,,,, +4272,Aj23,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4273,Aj24,EA112,?,EA112-NA,,,,,, +4274,Aj25,EA112,?,EA112-NA,,,,,, +4275,Aj26,EA112,?,EA112-NA,,,,,, +4276,Aj27,EA112,?,EA112-NA,,,,,, +4277,Aj28,EA112,?,EA112-NA,,,,,, +4278,Aj29,EA112,"Trance, no possession",EA112-1,,,,1950,Gray (1999); Bourguignon (1973), +4279,Aj3,EA112,T due to P only; P explains T and others,EA112-6,,,,1930,Gray (1999); Bourguignon (1973), +4280,Aj30,EA112,?,EA112-NA,,,,,, +4281,Aj31,EA112,?,EA112-NA,,,,,, +4282,Aj4,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +4283,Aj5,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +4284,Aj6,EA112,T due to P only; P explains T and others,EA112-6,,,,1940,Gray (1999); Bourguignon (1973), +4285,Aj7,EA112,"Trance, no possession",EA112-1,,,,1910,Gray (1999); Bourguignon (1973), +4286,Aj8,EA112,"Trance, no possession",EA112-1,,,,1920,Gray (1999); Bourguignon (1973), +4287,Aj9,EA112,"T and P, but T not due to P",EA112-5,,,,1920,Gray (1999); Bourguignon (1973), +4288,Ca1,EA112,Possession,EA112-2,,,Town of Buso,1930,Gray (1999); Bourguignon (1973), +4289,Ca10,EA112,?,EA112-NA,,,,,, +4290,Ca11,EA112,T due to P only; P causes T only,EA112-3,,,,1890,Gray (1999); Bourguignon (1973), +4291,Ca12,EA112,?,EA112-NA,,,,,, +4292,Ca13,EA112,?,EA112-NA,,,,,, +4293,Ca14,EA112,?,EA112-NA,,,,,, +4294,Ca15,EA112,Possession,EA112-2,,,,1930,Gray (1999); Bourguignon (1973), +4295,Ca16,EA112,T due to P only; P causes T only,EA112-3,,,,1930,Gray (1999); Bourguignon (1973), +4296,Ca17,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4297,Ca18,EA112,?,EA112-NA,,,,,, +4298,Ca19,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4299,Ca2,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Dolbahanta clan or subtribe,1950,Gray (1999); Bourguignon (1973), +4300,Ca20,EA112,?,EA112-NA,,,,,, +4301,Ca21,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4302,Ca22,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4303,Ca23,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4304,Ca24,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4305,Ca25,EA112,T due to P only; P causes T only,EA112-3,,,,1950,Gray (1999); Bourguignon (1973), +4306,Ca26,EA112,T due to P only; P causes T only,EA112-3,,,,1950,Gray (1999); Bourguignon (1973), +4307,Ca27,EA112,?,EA112-NA,,,,,, +4308,Ca28,EA112,T due to P only; P causes T only,EA112-3,,,,1950,Gray (1999); Bourguignon (1973), +4309,Ca29,EA112,?,EA112-NA,,,,,, +4310,Ca3,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4311,Ca30,EA112,T due to P only; P causes T only,EA112-3,,,Kafa Kingdom,1890,Gray (1999); Bourguignon (1973), +4312,Ca31,EA112,T due to P only; P causes T only,EA112-3,,,,1860,Gray (1999); Bourguignon (1973), +4313,Ca32,EA112,No trance or possession,EA112-8,,,,1860,Gray (1999); Bourguignon (1973), +4314,Ca33,EA112,T due to P only; P causes T only,EA112-3,,,,1860,Gray (1999); Bourguignon (1973), +4315,Ca34,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +4316,Ca35,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4317,Ca36,EA112,No trance or possession,EA112-8,,,,1860,Gray (1999); Bourguignon (1973), +4318,Ca37,EA112,?,EA112-NA,,,,,, +4319,Ca38,EA112,?,EA112-NA,,,,,, +4320,Ca39,EA112,?,EA112-NA,,,,,, +4321,Ca4,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4322,Ca40,EA112,?,EA112-NA,,,,,, +4323,Ca41,EA112,?,EA112-NA,,,,,, +4324,Ca42,EA112,?,EA112-NA,,,,,, +4325,Ca43,EA112,?,EA112-NA,,,,,, +4326,Ca5,EA112,Possession,EA112-2,,,,1930,Gray (1999); Bourguignon (1973), +4327,Ca6,EA112,T due to P only; P causes T only,EA112-3,,,,1880,Gray (1999); Bourguignon (1973), +4328,Ca7,EA112,T due to P only; P explains T and others,EA112-6,,,Gondar district,1950,Gray (1999); Bourguignon (1973), +4329,Ca8,EA112,Possession,EA112-2,,,,1940,Gray (1999); Bourguignon (1973), +4330,Ca9,EA112,?,EA112-NA,,,,,, +4331,Cb1,EA112,T due to P only; P explains T and others,EA112-6,,,,1940,Gray (1999); Bourguignon (1973), +4332,Cb10,EA112,?,EA112-NA,,,,,, +4333,Cb11,EA112,?,EA112-NA,,,,,, +4334,Cb12,EA112,?,EA112-NA,,,,,, +4335,Cb13,EA112,?,EA112-NA,,,,,, +4336,Cb14,EA112,?,EA112-NA,,,,,, +4337,Cb15,EA112,?,EA112-NA,,,,,, +4338,Cb16,EA112,?,EA112-NA,,,,,, +4339,Cb17,EA112,No trance or possession,EA112-8,,,Jebel Marra,1880,Gray (1999); Bourguignon (1973), +4340,Cb18,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4341,Cb19,EA112,?,EA112-NA,,,,,, +4342,Cb2,EA112,T due to P only; P explains T and others,EA112-6,,,Upper and lower Salum in Gambia,1950,Gray (1999); Bourguignon (1973), +4343,Cb20,EA112,?,EA112-NA,,,,,, +4344,Cb21,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4345,Cb22,EA112,?,EA112-NA,,,,,, +4346,Cb23,EA112,?,EA112-NA,,,,,, +4347,Cb24,EA112,No trance or possession,EA112-8,,,Wodaabe of Niger,1950,Gray (1999); Bourguignon (1973), +4348,Cb25,EA112,?,EA112-NA,,,,,, +4349,Cb26,EA112,T due to P only; P explains T and others,EA112-6,,,Zazzagawa of Zaria,1950,Gray (1999); Bourguignon (1973), +4350,Cb27,EA112,?,EA112-NA,,,,,, +4351,Cb28,EA112,?,EA112-NA,,,,,, +4352,Cb29,EA112,?,EA112-NA,,,,,, +4353,Cb3,EA112,T due to P only; P explains T and others,EA112-6,,,Bamba division,1940,Gray (1999); Bourguignon (1973), +4354,Cb4,EA112,?,EA112-NA,,,,,, +4355,Cb5,EA112,No trance or possession,EA112-8,,,,1910,Gray (1999); Bourguignon (1973), +4356,Cb6,EA112,?,EA112-NA,,,,,, +4357,Cb7,EA112,?,EA112-NA,,,,,, +4358,Cb8,EA112,No trance or possession,EA112-8,,,with special reference to the Bororo Fulani of Skoto,1920,Gray (1999); Bourguignon (1973), +4359,Cb9,EA112,T due to P only; P explains T and others,EA112-6,,,"Hausa, with special reference to the Kanawa",1940,Gray (1999); Bourguignon (1973), +4360,Cc1,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4361,Cc10,EA112,?,EA112-NA,,,,,, +4362,Cc11,EA112,?,EA112-NA,,,,,, +4363,Cc12,EA112,?,EA112-NA,,,,,, +4364,Cc13,EA112,?,EA112-NA,,,,,, +4365,Cc14,EA112,No trance or possession,EA112-8,,,,1880,Gray (1999); Bourguignon (1973), +4366,Cc15,EA112,?,EA112-NA,,,,,, +4367,Cc16,EA112,?,EA112-NA,,,,,, +4368,Cc17,EA112,?,EA112-NA,,,,,, +4369,Cc18,EA112,?,EA112-NA,,,,,, +4370,Cc19,EA112,?,EA112-NA,,,,,, +4371,Cc2,EA112,Possession,EA112-2,,,Nomads of Tibesti,1950,Gray (1999); Bourguignon (1973), +4372,Cc20,EA112,?,EA112-NA,,,,,, +4373,Cc3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,inhabitants of the oasis of Siwa,1920,Gray (1999); Bourguignon (1973), +4374,Cc4,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +4375,Cc5,EA112,T due to P only; P causes T only,EA112-3,,,,1910,Gray (1999); Bourguignon (1973), +4376,Cc6,EA112,No trance or possession,EA112-8,,,,1910,Gray (1999); Bourguignon (1973), +4377,Cc7,EA112,?,EA112-NA,,,,,, +4378,Cc8,EA112,?,EA112-NA,,,,,, +4379,Cc9,EA112,T due to P only; P explains T and others,EA112-6,,,Ahaggaren tribe,1920,Gray (1999); Bourguignon (1973), +4380,Cd1,EA112,No trance or possession,EA112-8,,,Kenuzi Nubians of Dahmit,1920,Gray (1999); Bourguignon (1973), +4381,Cd10,EA112,?,EA112-NA,,,,,, +4382,Cd11,EA112,No trance or possession,EA112-8,,,,1500,Gray (1999); Bourguignon (1973), +4383,Cd12,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1870,Gray (1999); Bourguignon (1973), +4384,Cd13,EA112,?,EA112-NA,,,,,, +4385,Cd14,EA112,?,EA112-NA,,,,,, +4386,Cd15,EA112,?,EA112-NA,,,,,, +4387,Cd16,EA112,?,EA112-NA,,,,,, +4388,Cd17,EA112,?,EA112-NA,,,,,, +4389,Cd18,EA112,?,EA112-NA,,,,,, +4390,Cd19,EA112,?,EA112-NA,,,,,, +4391,Cd2,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Town and environs of Silwa,1950,Gray (1999); Bourguignon (1973), +4392,Cd20,EA112,No trance or possession,EA112-8,,,,1940,Gray (1999); Bourguignon (1973), +4393,Cd21,EA112,"Trance, no possession",EA112-1,,,,1930,Gray (1999); Bourguignon (1973), +4394,Cd3,EA112,"T and P, but T not due to P",EA112-5,,,Entirety: Moroccan,1920,Gray (1999); Bourguignon (1973), +4395,Cd4,EA112,T due to P only; P explains T and others,EA112-6,,,,1890,Gray (1999); Bourguignon (1973), +4396,Cd5,EA112,No trance or possession,EA112-8,,,with special reference to those of the Grand Atlas Mountains,1920,Gray (1999); Bourguignon (1973), +4397,Cd6,EA112,Possession,EA112-2,,,with special reference to the New Empire,-1400,Gray (1999); Bourguignon (1973), +4398,Cd7,EA112,?,EA112-NA,,,,,, +4399,Cd8,EA112,?,EA112-NA,,,,,, +4400,Cd9,EA112,?,EA112-NA,,,,,, +4401,Ce1,EA112,?,EA112-NA,,,,,, +4402,Ce2,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to the village of Rio de Onor in the extreme northeast,1950,Gray (1999); Bourguignon (1973), +4403,Ce3,EA112,Possession,EA112-2,,,City and environs of Rome,100,Gray (1999); Bourguignon (1973), +4404,Ce4,EA112,No trance or possession,EA112-8,,,Labourd,1930,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4405,Ce5,EA112,?,EA112-NA,,,,,, +4406,Ce6,EA112,No trance or possession,EA112-8,,,with special reference to the inhabitants of Andalusia,1950,Gray (1999); Bourguignon (1973), +4407,Ce7,EA112,"T and P, but T not due to P",EA112-5,,,with special reference to the village of Vasilika,1950,Gray (1999); Bourguignon (1973), +4408,Ce8,EA112,?,EA112-NA,,,,,, +4409,Cf1,EA112,?,EA112-NA,,,,,, +4410,Cf2,EA112,?,EA112-NA,,,,,, +4411,Cf3,EA112,?,EA112-NA,,,,,, +4412,Cf4,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the village of Cruz das Almas near Sao Paulo,1940,Gray (1999); Bourguignon (1973), +4413,Cf5,EA112,?,EA112-NA,,,,,, +4414,Cg1,EA112,?,EA112-NA,,,,,, +4415,Cg2,EA112,"Trance, no possession",EA112-1,,,,1100,Gray (1999); Bourguignon (1973), +4416,Cg3,EA112,No trance or possession,EA112-8,,,County Clare,1930,Gray (1999); Bourguignon (1973), +4417,Cg4,EA112,"Trance, no possession",EA112-1,,,Konkama District,1950,Gray (1999); Bourguignon (1973), +4418,Cg5,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4419,Ch1,EA112,"Trance, no possession",EA112-1,,,with special reference to the village of Orasac,1950,Gray (1999); Bourguignon (1973), +4420,Ch10,EA112,?,EA112-NA,,,,,, +4421,Ch11,EA112,?,EA112-NA,,,,,, +4422,Ch2,EA112,No trance or possession,EA112-8,,,,1890,Gray (1999); Bourguignon (1973), +4423,Ch3,EA112,?,EA112-NA,,,,,, +4424,Ch4,EA112,"T and P, but T not due to P",EA112-5,,,,1900,Gray (1999); Bourguignon (1973), +4425,Ch5,EA112,"Trance, no possession",EA112-1,,,with special reference to the village of Dragelevtsy,1940,Gray (1999); Bourguignon (1973), +4426,Ch6,EA112,?,EA112-NA,,,,,, +4427,Ch7,EA112,?,EA112-NA,,,,,, +4428,Ch8,EA112,?,EA112-NA,,,,,, +4429,Ch9,EA112,?,EA112-NA,,,,,, +4430,Ci1,EA112,?,EA112-NA,,,,,, +4431,Ci10,EA112,No trance or possession,EA112-8,,,Vicinity of Erevan,1900,Gray (1999); Bourguignon (1973), +4432,Ci11,EA112,"T and P, but T not due to P",EA112-5,,,,1940,Gray (1999); Bourguignon (1973), +4433,Ci12,EA112,?,EA112-NA,,,,,, +4434,Ci2,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4435,Ci3,EA112,No trance or possession,EA112-8,,,with special reference to the Kayakent group of eastern Dagestan,1900,Gray (1999); Bourguignon (1973), +4436,Ci4,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +4437,Ci5,EA112,"T and P, but T not due to P",EA112-5,,,Northern Anatolian Plateau,1950,Gray (1999); Bourguignon (1973), +4438,Ci6,EA112,"Trance, no possession",EA112-1,,,,1880,Gray (1999); Bourguignon (1973), +4439,Ci7,EA112,No trance or possession,EA112-8,,,,1900,Gray (1999); Bourguignon (1973), +4440,Ci8,EA112,No trance or possession,EA112-8,,,,1850,Gray (1999); Bourguignon (1973), +4441,Ci9,EA112,No trance or possession,EA112-8,,,,1910,Gray (1999); Bourguignon (1973), +4442,Cj1,EA112,No trance or possession,EA112-8,,,with special reference to the village of Tell Toqaan,1950,Gray (1999); Bourguignon (1973), +4443,Cj10,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the village of ech-Chibayish,1950,Gray (1999); Bourguignon (1973), +4444,Cj2,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,Unspecified,1920,Gray (1999); Bourguignon (1973), +4445,Cj3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,-800,Gray (1999); Bourguignon (1973), +4446,Cj4,EA112,T due to P only; P explains T and others,EA112-6,,,City and environs of Babylon,-2000,Gray (1999); Bourguignon (1973), +4447,Cj5,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4448,Cj6,EA112,?,EA112-NA,,,,,, +4449,Cj7,EA112,No trance or possession,EA112-8,,,with special reference to the village of Munsif,1950,Gray (1999); Bourguignon (1973), +4450,Cj8,EA112,No trance or possession,EA112-8,,,with special reference to those of Mount Carmel in Israel,1930,Gray (1999); Bourguignon (1973), +4451,Cj9,EA112,"Trance, no possession",EA112-1,,,,1950,Gray (1999); Bourguignon (1973), +4452,Ea1,EA112,?,EA112-NA,,,,,, +4453,Ea10,EA112,?,EA112-NA,,,,,, +4454,Ea11,EA112,?,EA112-NA,,,,,, +4455,Ea12,EA112,?,EA112-NA,,,,,, +4456,Ea13,EA112,?,EA112-NA,,,,,, +4457,Ea2,EA112,No trance or possession,EA112-8,,,with special reference to the Yusufsai of Swat,1950,Gray (1999); Bourguignon (1973), +4458,Ea3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Urazgani,1930,Gray (1999); Bourguignon (1973), +4459,Ea4,EA112,?,EA112-NA,,,,,, +4460,Ea5,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1890,Gray (1999); Bourguignon (1973), +4461,Ea6,EA112,?,EA112-NA,,,,,, +4462,Ea7,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4463,Ea8,EA112,?,EA112-NA,,,,,, +4464,Ea9,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1950,Gray (1999); Bourguignon (1973), +4465,Eb1,EA112,T due to P only; P explains T and others,EA112-6,,,Great Horde,1910,Gray (1999); Bourguignon (1973), +4466,Eb2,EA112,T due to P only; P causes T only,EA112-3,,,,1920,Gray (1999); Bourguignon (1973), +4467,Eb3,EA112,No trance or possession,EA112-8,,,Narobanchin Territory,1940,Gray (1999); Bourguignon (1973), +4468,Eb4,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the Botaha area,1940,Gray (1999); Bourguignon (1973), +4469,Eb5,EA112,No trance or possession,EA112-8,,,with special reference to the sedentary Teke of the Merv oasis,1910,Gray (1999); Bourguignon (1973), +4470,Eb6,EA112,?,EA112-NA,,,,,, +4471,Eb7,EA112,?,EA112-NA,,,,,, +4472,Eb8,EA112,?,EA112-NA,,,,,, +4473,Ec1,EA112,"T and P, but T not due to P",EA112-5,,,Sakhalin Island,1920,Gray (1999); Bourguignon (1973), +4474,Ec10,EA112,"Trance, no possession",EA112-1,,,with special reference to those on the Ob River,1880,Gray (1999); Bourguignon (1973), +4475,Ec11,EA112,?,EA112-NA,,,,,, +4476,Ec2,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Yakutsk district,1900,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4477,Ec3,EA112,"Trance, no possession",EA112-1,,,Reindeer Division,1900,Gray (1999); Bourguignon (1973), +4478,Ec4,EA112,"Trance, no possession",EA112-1,,,Yurak Tribe,1900,Gray (1999); Bourguignon (1973), +4479,Ec5,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Maritime Koryak,1900,Gray (1999); Bourguignon (1973), +4480,Ec6,EA112,"T and P, but T not due to P",EA112-5,,,Upper Kolyma River,1850,Gray (1999); Bourguignon (1973), +4481,Ec7,EA112,T due to P only; P explains T and others,EA112-6,,,Saru Basin in Hokkaido,1900,Gray (1999); Bourguignon (1973), +4482,Ec8,EA112,"T and P, but T not due to P",EA112-5,,,,1900,Gray (1999); Bourguignon (1973), +4483,Ec9,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +4484,Ed1,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Kanghwa Island,1950,Gray (1999); Bourguignon (1973), +4485,Ed10,EA112,Possession,EA112-2,,,with special reference to the village of Taitou,1930,Gray (1999); Bourguignon (1973), +4486,Ed13,EA112,?,EA112-NA,,,,,, +4487,Ed14,EA112,?,EA112-NA,,,,,, +4488,Ed15a,EA112,?,EA112-NA,,,,,, +4489,Ed15b,EA112,?,EA112-NA,,,,,, +4490,Ed16,EA112,?,EA112-NA,,,,,, +4491,Ed2,EA112,T due to P only; P explains T and others,EA112-6,,,Liang Shan and Taliang S,1940,Gray (1999); Bourguignon (1973), +4492,Ed3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Aigun District,1920,Gray (1999); Bourguignon (1973), +4493,Ed4,EA112,"Trance, no possession",EA112-1,,,with special reference to the Magpie (Yachio) Miao,1940,Gray (1999); Bourguignon (1973), +4494,Ed5,EA112,T due to P only; P explains T and others,EA112-6,,,Okayama,1950,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4495,Ed6,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to those in the hinterland of Swatow,1920,Gray (1999); Bourguignon (1973), +4496,Ed7,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1950,Gray (1999); Bourguignon (1973), +4497,Ed8,EA112,Possession,EA112-2,,,,1930,Gray (1999); Bourguignon (1973), +4498,Ed9,EA112,?,EA112-NA,,,,,, +4499,Ee1,EA112,?,EA112-NA,,,,,, +4500,Ee2,EA112,?,EA112-NA,,,,,, +4501,Ee3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Lingthem and vicinity,1930,Gray (1999); Bourguignon (1973), +4502,Ee4,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to Central Tibet,1920,Gray (1999); Bourguignon (1973), +4503,Ee5,EA112,"Trance, no possession",EA112-1,,,with special reference to the Shina tribe,1870,Gray (1999); Bourguignon (1973), +4504,Ee6,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to those of Khumbu,1950,Gray (1999); Bourguignon (1973), +4505,Ee7,EA112,?,EA112-NA,,,,,, +4506,Ee8,EA112,?,EA112-NA,,,,,, +4507,Ef1,EA112,T due to P only; P causes T only,EA112-3,,,Bankura and Berghum Districts,1940,Gray (1999); Bourguignon (1973), +4508,Ef10,EA112,?,EA112-NA,,,,,, +4509,Ef11,EA112,?,EA112-NA,,,,,, +4510,Ef2,EA112,?,EA112-NA,,,,,, +4511,Ef3,EA112,?,EA112-NA,,,,,, +4512,Ef4,EA112,?,EA112-NA,,,,,, +4513,Ef5,EA112,T due to P only; P causes T only,EA112-3,,,,1900,Gray (1999); Bourguignon (1973), +4514,Ef6,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1940,Gray (1999); Bourguignon (1973), +4515,Ef7,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,Gray (1999); Bourguignon (1973), +4516,Ef8,EA112,"Trance, no possession",EA112-1,,,with special reference to the Pandit or Sarasvati Brahmans,1950,Gray (1999); Bourguignon (1973), +4517,Ef9,EA112,?,EA112-NA,,,,,, +4518,Eg1,EA112,No trance or possession,EA112-8,,,with special reference to the forest group,1940,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4519,Eg10,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the village of Shamirpet,1950,Gray (1999); Bourguignon (1973), +4520,Eg11,EA112,?,EA112-NA,,,,,, +4521,Eg12,EA112,?,EA112-NA,,,,,, +4522,Eg13,EA112,?,EA112-NA,,,,,, +4523,Eg14,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to those of the Bison Hills,1940,Gray (1999); Bourguignon (1973), +4524,Eg2,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the agricultural castes in Tanjore,1880,Gray (1999); Bourguignon (1973), +4525,Eg3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Hill Maria,1938,Gray (1999); Bourguignon (1973), +4526,Eg4,EA112,T due to P only; P causes T only,EA112-3,,,Toda Tribe,1900,Gray (1999); Bourguignon (1973), +4527,Eg5,EA112,T due to P only; P causes T only,EA112-3,,,,1930,Gray (1999); Bourguignon (1973), +4528,Eg6,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to Northern Kerala,1799,Gray (1999); Bourguignon (1973), +4529,Eg7,EA112,?,EA112-NA,,,,,, +4530,Eg8,EA112,?,EA112-NA,,,,,, +4531,Eg9,EA112,T due to P only; P explains T and others,EA112-6,,,,1930,Gray (1999); Bourguignon (1973), +4532,Eh1,EA112,No trance or possession,EA112-8,,,,1870,Gray (1999); Bourguignon (1973), +4533,Eh10,EA112,?,EA112-NA,,,,,, +4534,Eh2,EA112,?,EA112-NA,,,,,, +4535,Eh3,EA112,T due to P only; P explains T and others,EA112-6,,,Menabe subtribe,1930,Gray (1999); Bourguignon (1973), +4536,Eh4,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to the Rock Vedda,1900,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4537,Eh5,EA112,"T and P, but T not due to P",EA112-5,,,Car Nicobar of North Islands,1890,Gray (1999); Bourguignon (1973), +4538,Eh6,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Kandyan Sinhalese,1950,Gray (1999); Bourguignon (1973), +4539,Eh7,EA112,?,EA112-NA,,,,,, +4540,Eh8,EA112,T due to P only; P explains T and others,EA112-6,,,,1900,Gray (1999); Bourguignon (1973), +4541,Eh9,EA112,?,EA112-NA,,,,,, +4542,Ei1,EA112,Possession,EA112-2,,,Rengsanggr,1900,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4543,Ei10,EA112,?,EA112-NA,,,,,, +4544,Ei11,EA112,?,EA112-NA,,,,,, +4545,Ei12,EA112,?,EA112-NA,,,,,, +4546,Ei13,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1910,Gray (1999); Bourguignon (1973), +4547,Ei14,EA112,?,EA112-NA,,,,,, +4548,Ei15,EA112,?,EA112-NA,,,,,, +4549,Ei16,EA112,?,EA112-NA,,,,,, +4550,Ei17,EA112,?,EA112-NA,,,,,, +4551,Ei18,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Katur subtribe,1920,Gray (1999); Bourguignon (1973), +4552,Ei19,EA112,"Trance, no possession",EA112-1,,,,1940,Gray (1999); Bourguignon (1973), +4553,Ei2,EA112,"Trance, no possession",EA112-1,,,,1920,Gray (1999); Bourguignon (1973), +4554,Ei20,EA112,?,EA112-NA,,,,,, +4555,Ei3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Nondwin Village,1950,Gray (1999); Bourguignon (1973), +4556,Ei4,EA112,T due to P only; P explains T and others,EA112-6,,,Lakher Tribe,1930,Gray (1999); Bourguignon (1973), +4557,Ei5,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Jinghpaw,1940,Gray (1999); Bourguignon (1973), +4558,Ei6,EA112,?,EA112-NA,,,,,, +4559,Ei7,EA112,"Trance, no possession",EA112-1,,,,1910,Gray (1999); Bourguignon (1973), +4560,Ei8,EA112,Possession,EA112-2,,,with special reference to those of the Jaintia Hills,1900,Gray (1999); Bourguignon (1973), +4561,Ei9,EA112,?,EA112-NA,,,,,, +4562,Ej1,EA112,"T and P, but T not due to P",EA112-5,,,"Lamet Tribe, Northwestern Laos",1940,Gray (1999); Bourguignon (1973), +4563,Ej10,EA112,No trance or possession,EA112-8,,,Ko-Sier Village,1950,Gray (1999); Bourguignon (1973), +4564,Ej11,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to the non-Muslim Cham of Vietnam,1950,Gray (1999); Bourguignon (1973), +4565,Ej12,EA112,?,EA112-NA,,,,,, +4566,Ej13,EA112,?,EA112-NA,,,,,, +4567,Ej14,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the eastern Semai,1960,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4568,Ej15,EA112,?,EA112-NA,,,,,, +4569,Ej16,EA112,?,EA112-NA,,,,,, +4570,Ej2,EA112,"Trance, no possession",EA112-1,,,with special reference to the village of Sar Luk,1940,Gray (1999); Bourguignon (1973), +4571,Ej3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Jehai Group or subtribe,1920,Gray (1999); Bourguignon (1973), +4572,Ej4,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Red River Delta in Tonkin,1950,Gray (1999); Bourguignon (1973), +4573,Ej5,EA112,T due to P only; P causes T only,EA112-3,,,,1950,Gray (1999); Bourguignon (1973), +4574,Ej6,EA112,T due to P only; P causes T only,EA112-3,,,of the Mergui Archipelago,1920,Gray (1999); Bourguignon (1973), +4575,Ej7,EA112,T due to P only; P causes T only,EA112-3,,,,1950,Gray (1999); Bourguignon (1973), +4576,Ej8,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to those of Trengganu,1940,Gray (1999); Bourguignon (1973), +4577,Ej9,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1940,Gray (1999); Bourguignon (1973), +4578,Ia1,EA112,"Trance, no possession",EA112-1,,,Atayal Tribe (but exdluding Sedeq),1930,Gray (1999); Bourguignon (1973), +4579,Ia10,EA112,?,EA112-NA,,,,,, +4580,Ia11,EA112,T due to P only; P causes T only,EA112-3,,,,1930,Gray (1999); Bourguignon (1973), +4581,Ia12,EA112,"T and P, but T not due to P",EA112-5,,,,1950,Gray (1999); Bourguignon (1973), +4582,Ia13,EA112,?,EA112-NA,,,,,, +4583,Ia14,EA112,"T and P, but T not due to P",EA112-5,,,,1930,Gray (1999); Bourguignon (1973), +4584,Ia15,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to those of the Agusan Valley,1920,Gray (1999); Bourguignon (1973), +4585,Ia16,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the northern Kalinga,1910,Gray (1999); Bourguignon (1973), +4586,Ia17,EA112,?,EA112-NA,,,,,, +4587,Ia18,EA112,?,EA112-NA,,,,,, +4588,Ia2,EA112,"T and P, but T not due to P",EA112-5,,,,1950,Gray (1999); Bourguignon (1973), +4589,Ia3,EA112,T due to P only; P explains T and others,EA112-6,,,Kiangan Group,1920,Gray (1999); Bourguignon (1973), +4590,Ia4,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to the Eastern Subanun,1950,Gray (1999); Bourguignon (1973), +4591,Ia5,EA112,?,EA112-NA,,,,,, +4592,Ia6,EA112,"T and P, but T not due to P",EA112-5,,,Su-Paiwan Village,1930,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4593,Ia7,EA112,?,EA112-NA,,,,,, +4594,Ia8,EA112,Possession,EA112-2,,,,1900,Gray (1999); Bourguignon (1973), +4595,Ia9,EA112,"Trance, no possession",EA112-1,,,with special reference to the southern Ami,1930,Gray (1999); Bourguignon (1973), +4596,Ib1,EA112,"T and P, but T not due to P",EA112-5,,,"Ulu Ai Group, Baleh",1950,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4597,Ib2,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Town and environs of Pare; Modjokuto,1950,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4598,Ib3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Tihingan Village,1950,Gray (1999); Bourguignon (1973), +4599,Ib4,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Toba group,1930,Gray (1999); Bourguignon (1973), +4600,Ib5,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the village of Sensuron,1920,Gray (1999); Bourguignon (1973), +4601,Ib6,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1920,Gray (1999); Bourguignon (1973), +4602,Ib7,EA112,"Trance, no possession",EA112-1,,,with special reference to those of North Pageh,1920,Gray (1999); Bourguignon (1973), +4603,Ib8,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the Ridan group,1900,Gray (1999); Bourguignon (1973), +4604,Ib9,EA112,?,EA112-NA,,,,,, +4605,Ic1,EA112,"Trance, no possession",EA112-1,,,Borongloe,1940,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4606,Ic10,EA112,"Trance, no possession",EA112-1,,,Tobelo District,1910,Gray (1999); Bourguignon (1973), +4607,Ic11,EA112,T due to P only; P explains T and others,EA112-6,,,Allang,1950,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4608,Ic12,EA112,"Trance, no possession",EA112-1,,,with special reference to the village of Rarak in Western Sumbawa,1951,Gray (1999); Bourguignon (1973), +4609,Ic13,EA112,?,EA112-NA,,,,,, +4610,Ic2,EA112,T due to P only; P explains T and others,EA112-6,,,Abui of Atimelang Village,1940,Gray (1999); Bourguignon (1973), +4611,Ic3,EA112,"T and P, but T not due to P",EA112-5,,,with special reference to the Mountain Belu,1950,Gray (1999); Bourguignon (1973), +4612,Ic4,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +4613,Ic5,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Bare'e subgroup,1910,Gray (1999); Bourguignon (1973), +4614,Ic6,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4615,Ic7,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to the village of Leloba in E. Flores,1920,Gray (1999); Bourguignon (1973), +4616,Ic8,EA112,No trance or possession,EA112-8,,,,1890,Gray (1999); Bourguignon (1973), +4617,Ic9,EA112,?,EA112-NA,,,,,, +4618,Id1,EA112,"T and P, but T not due to P",EA112-5,,,Alice Springs and environs,1900,Gray (1999); Bourguignon (1973), +4619,Id10,EA112,Possession,EA112-2,,,,1930,Gray (1999); Bourguignon (1973), +4620,Id11,EA112,?,EA112-NA,,,,,, +4621,Id12,EA112,?,EA112-NA,,,,,, +4622,Id13,EA112,?,EA112-NA,,,,,, +4623,Id2,EA112,"T and P, but T not due to P",EA112-5,,,,1930,Gray (1999); Bourguignon (1973), +4624,Id3,EA112,"T and P, but T not due to P",EA112-5,,,Tiwi Tribe: Melville Island,1920,Gray (1999); Bourguignon (1973), +4625,Id4,EA112,"Trance, no possession",EA112-1,,,,1900,Gray (1999); Bourguignon (1973), +4626,Id5,EA112,No trance or possession,EA112-8,,,,1910,Gray (1999); Bourguignon (1973), +4627,Id6,EA112,?,EA112-NA,,,,,, +4628,Id7,EA112,?,EA112-NA,,,,,, +4629,Id8,EA112,T due to P only; P explains T and others,EA112-6,,,,1830,Gray (1999); Bourguignon (1973), +4630,Id9,EA112,No trance or possession,EA112-8,,,,1910,Gray (1999); Bourguignon (1973), +4631,Ie1,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4632,Ie10,EA112,Possession,EA112-2,,,with special reference to the Western Motu,1950,Gray (1999); Bourguignon (1973), +4633,Ie11,EA112,?,EA112-NA,,,,,, +4634,Ie12,EA112,T due to P only; P explains T and others,EA112-6,,,Hongwam subtribe; Rumbima,1930,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4635,Ie13,EA112,"T and P, but T not due to P",EA112-5,,,,1920,Gray (1999); Bourguignon (1973), +4636,Ie14,EA112,?,EA112-NA,,,,,, +4637,Ie15,EA112,T due to P only; P causes T only,EA112-3,,,Kalabu; Northern Abelam,1930,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4638,Ie16,EA112,"T and P, but T not due to P",EA112-5,,,,1940,Gray (1999); Bourguignon (1973), +4639,Ie17,EA112,T due to P only; P explains T and others,EA112-6,,,,1940,Gray (1999); Bourguignon (1973), +4640,Ie18,EA112,"Trance, no possession",EA112-1,,,Bamol Village,1940,Gray (1999); Bourguignon (1973), +4641,Ie19,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to the coastal inhabitants,1910,Gray (1999); Bourguignon (1973), +4642,Ie2,EA112,No trance or possession,EA112-8,,,,1920,Gray (1999); Bourguignon (1973), +4643,Ie20,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1900,Gray (1999); Bourguignon (1973), +4644,Ie21,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1900,Gray (1999); Bourguignon (1973), +4645,Ie22,EA112,No trance or possession,EA112-8,,,,1900,Gray (1999); Bourguignon (1973), +4646,Ie23,EA112,?,EA112-NA,,,,,, +4647,Ie24,EA112,?,EA112-NA,,,,,, +4648,Ie25,EA112,?,EA112-NA,,,,,, +4649,Ie26,EA112,?,EA112-NA,,,,,, +4650,Ie27,EA112,?,EA112-NA,,,,,, +4651,Ie28,EA112,No trance or possession,EA112-8,,,,1940,Gray (1999); Bourguignon (1973), +4652,Ie29,EA112,?,EA112-NA,,,,,, +4653,Ie3,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to the Mountain Arapesh (Alitoa),1930,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4654,Ie30,EA112,?,EA112-NA,,,,,, +4655,Ie31,EA112,?,EA112-NA,,,,,, +4656,Ie32,EA112,?,EA112-NA,,,,,, +4657,Ie33,EA112,?,EA112-NA,,,,,, +4658,Ie34,EA112,?,EA112-NA,,,,,, +4659,Ie35,EA112,T due to P only; P causes T only,EA112-3,,,,1930,Gray (1999); Bourguignon (1973), +4660,Ie36,EA112,?,EA112-NA,,,,,, +4661,Ie37,EA112,?,EA112-NA,,,,,, +4662,Ie38,EA112,?,EA112-NA,,,,,, +4663,Ie39,EA112,?,EA112-NA,,,,,, +4664,Ie4,EA112,No trance or possession,EA112-8,,,"Dap, Wonevaro district",1930,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4665,Ie5,EA112,No trance or possession,EA112-8,,,,1930,Gray (1999); Bourguignon (1973), +4666,Ie6,EA112,?,EA112-NA,,,,,, +4667,Ie7,EA112,"T and P, but T not due to P",EA112-5,,,with special reference to the Mae group,1950,Gray (1999); Bourguignon (1973), +4668,Ie8,EA112,Possession,EA112-2,,,with special reference to the Koriki,1910,Gray (1999); Bourguignon (1973), +4669,Ie9,EA112,T due to P only; P explains T and others,EA112-6,,,,1920,Gray (1999); Bourguignon (1973), +4670,If1,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,"Ulimang, Badeldaob Island",1940,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4671,If10,EA112,?,EA112-NA,,,,,, +4672,If11,EA112,?,EA112-NA,,,,,, +4673,If12,EA112,No trance or possession,EA112-8,,,,1940,Gray (1999); Bourguignon (1973), +4674,If13,EA112,?,EA112-NA,,,,,, +4675,If14,EA112,?,EA112-NA,,,,,, +4676,If15,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1930,Gray (1999); Bourguignon (1973), +4677,If16,EA112,?,EA112-NA,,,,,, +4678,If17,EA112,?,EA112-NA,,,,,, +4679,If2,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Romonum Island,1940,Gray (1999); Bourguignon (1973), +4680,If3,EA112,"T and P, but T not due to P",EA112-5,,,With special reference to the inhabitants of Majuro,1940,Gray (1999); Bourguignon (1973), +4681,If4,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the inhabitants of Ifaluk atoll,1940,Gray (1999); Bourguignon (1973), +4682,If5,EA112,T due to P only; P explains T and others,EA112-6,,,,1910,Gray (1999); Bourguignon (1973), +4683,If6,EA112,T due to P only; P causes T only,EA112-3,,,Island,1910,Gray (1999); Bourguignon (1973), +4684,If7,EA112,?,EA112-NA,,,,,, +4685,If8,EA112,"Trance, no possession",EA112-1,,,with special reference to those of Saipa,1950,Gray (1999); Bourguignon (1973), +4686,If9,EA112,T due to P only; P explains T and others,EA112-6,,,,1900,Gray (1999); Bourguignon (1973), +4687,Ig1,EA112,Possession,EA112-2,,,Northeastern group,1940,Gray (1999); Bourguignon (1973), +4688,Ig10,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1950,Gray (1999); Bourguignon (1973), +4689,Ig11,EA112,?,EA112-NA,,,,,, +4690,Ig12,EA112,?,EA112-NA,,,,,, +4691,Ig13,EA112,?,EA112-NA,,,,,, +4692,Ig14,EA112,?,EA112-NA,,,,,, +4693,Ig15,EA112,?,EA112-NA,,,,,, +4694,Ig16,EA112,?,EA112-NA,,,,,, +4695,Ig17,EA112,?,EA112-NA,,,,,, +4696,Ig18,EA112,?,EA112-NA,,,,,, +4697,Ig19,EA112,?,EA112-NA,,,,,, +4698,Ig2,EA112,"Trance, no possession",EA112-1,,,Kiriwina Island,1910,Gray (1999); Bourguignon (1973), +4699,Ig20,EA112,?,EA112-NA,,,,,, +4700,Ig21,EA112,?,EA112-NA,,,,,, +4701,Ig3,EA112,T due to P only; P causes T only,EA112-3,,,,1930,Gray (1999); Bourguignon (1973), +4702,Ig4,EA112,No trance or possession,EA112-8,,,Lesu Village,1930,Gray (1999); Bourguignon (1973), +4703,Ig5,EA112,"T and P, but T not due to P",EA112-5,,,,1920,Gray (1999); Bourguignon (1973), +4704,Ig6,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1900,Gray (1999); Bourguignon (1973), +4705,Ig7,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +4706,Ig8,EA112,"Trance, no possession",EA112-1,,,,1910,Gray (1999); Bourguignon (1973), +4707,Ig9,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,Peri Village,1920,Gray (1999); Bourguignon (1973), +4708,Ih1,EA112,T due to P only; P explains T and others,EA112-6,,,,1890,Gray (1999); Bourguignon (1973), +4709,Ih10,EA112,No trance or possession,EA112-8,,,Whitsands,1920,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4710,Ih11,EA112,?,EA112-NA,,,,,, +4711,Ih12,EA112,?,EA112-NA,,,,,, +4712,Ih13,EA112,?,EA112-NA,,,,,, +4713,Ih14,EA112,?,EA112-NA,,,,,, +4714,Ih2,EA112,"Trance, no possession",EA112-1,,,Malekula Island,1930,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4715,Ih3,EA112,?,EA112-NA,,,,,, +4716,Ih4,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Lau Island,1920,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4717,Ih5,EA112,"T and P, but T not due to P",EA112-5,,,Neje Chiefdom,1860,Gray (1999); Bourguignon (1973), +4718,Ih6,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1890,Gray (1999); Bourguignon (1973), +4719,Ih7,EA112,No trance or possession,EA112-8,,,,1910,Gray (1999); Bourguignon (1973), +4720,Ih8,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to the village of Nakaroka,1940,Gray (1999); Bourguignon (1973), +4721,Ih9,EA112,?,EA112-NA,,,,,, +4722,Ii1,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to American Samoa,1920,Gray (1999); Bourguignon (1973), +4723,Ii10,EA112,?,EA112-NA,,,,,, +4724,Ii12,EA112,T due to P only; P explains T and others,EA112-6,,,Pangai,1920,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4725,Ii13,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1830,Gray (1999); Bourguignon (1973), +4726,Ii14,EA112,?,EA112-NA,,,,,, +4727,Ii2,EA112,T due to P only; P explains T and others,EA112-6,,,Ravenga District,1930,Gray (1999); Bourguignon (1973), +4728,Ii3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1930,Gray (1999); Bourguignon (1973), +4729,Ii4,EA112,Possession,EA112-2,,,with special reference to the inhabitants of Vaitupu,1890,Gray (1999); Bourguignon (1973), +4730,Ii5,EA112,T due to P only; P causes T only,EA112-3,,,"Leuenuwa, Lord Howe's Islanders",1920,Gray (1999); Bourguignon (1973), +4731,Ii6,EA112,T due to P only; P causes T only,EA112-3,,,with special reference to Atafu,1900,Gray (1999); Bourguignon (1973), +4732,Ii7,EA112,T due to P only; P causes T only,EA112-3,,,,1910,Gray (1999); Bourguignon (1973), +4733,Ii8,EA112,T due to P only; P causes T only,EA112-3,,,,1840,Gray (1999); Bourguignon (1973), +4734,Ii9,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1840,Gray (1999); Bourguignon (1973), +4735,Ij1,EA112,T due to P only; P causes T only,EA112-3,,,,1820,Gray (1999); Bourguignon (1973), +4736,Ij10,EA112,T due to P only; P causes T only,EA112-3,,,,1900,Gray (1999); Bourguignon (1973), +4737,Ij2,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Nga Puhi Tribe,1820,Gray (1999); Bourguignon (1973), +4738,Ij3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1900,Gray (1999); Bourguignon (1973), +4739,Ij4,EA112,No trance or possession,EA112-8,,,,1850,Gray (1999); Bourguignon (1973), +4740,Ij5,EA112,No trance or possession,EA112-8,,,,1900,Gray (1999); Bourguignon (1973), +4741,Ij6,EA112,T due to P only; P explains T and others,EA112-6,,,,1800,Gray (1999); Bourguignon (1973), +4742,Ij7,EA112,T due to P only; P explains T and others,EA112-6,,,,1900,Gray (1999); Bourguignon (1973), +4743,Ij8,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1900,Gray (1999); Bourguignon (1973), +4744,Ij9,EA112,T due to P only; P explains T and others,EA112-6,,,,1860,Gray (1999); Bourguignon (1973), +4745,Na1,EA112,"T and P, but T not due to P",EA112-5,,,,1930,Gray (1999); Bourguignon (1973), +4746,Na10,EA112,?,EA112-NA,,,,,, +4747,Na11,EA112,?,EA112-NA,,,,,, +4748,Na12,EA112,"Trance, no possession",EA112-1,,,,1950,Gray (1999); Bourguignon (1973), +4749,Na13,EA112,No trance or possession,EA112-8,,,,1880,Gray (1999); Bourguignon (1973), +4750,Na14,EA112,"T and P, but T not due to P",EA112-5,,,,1880,Gray (1999); Bourguignon (1973), +4751,Na15,EA112,?,EA112-NA,,,,,, +4752,Na16,EA112,?,EA112-NA,,,,,, +4753,Na17,EA112,?,EA112-NA,,,,,, +4754,Na19,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the Hwitsowitenne,1880,Gray (1999); Bourguignon (1973), +4755,Na2,EA112,"Trance, no possession",EA112-1,,,,1880,Gray (1999); Bourguignon (1973), +4756,Na20,EA112,"Trance, no possession",EA112-1,,,with special reference to the Tatlit of Peel River Kutchin,1880,Gray (1999); Bourguignon (1973), +4757,Na21,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1900,Gray (1999); Bourguignon (1973), +4758,Na22,EA112,?,EA112-NA,,,,,, +4759,Na23,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Koksoagmiu,1890,Gray (1999); Bourguignon (1973), +4760,Na24,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1880,Gray (1999); Bourguignon (1973), +4761,Na25,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to the inhabitants of the Egesminde District,1910,Gray (1999); Bourguignon (1973), +4762,Na26,EA112,"T and P, but T not due to P",EA112-5,,,with special reference to the Iliamna,1870,Gray (1999); Bourguignon (1973), +4763,Na27,EA112,"T and P, but T not due to P",EA112-5,,,,1870,Gray (1999); Bourguignon (1973), +4764,Na28,EA112,Possession,EA112-2,,,,1880,Gray (1999); Bourguignon (1973), +4765,Na29,EA112,?,EA112-NA,,,,,, +4766,Na3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Coronation Gulf,1920,Gray (1999); Bourguignon (1973), +4767,Na30,EA112,?,EA112-NA,,,,,, +4768,Na31,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to those of Albany and Moose Creek,1850,Gray (1999); Bourguignon (1973), +4769,Na32,EA112,"Trance, no possession",EA112-1,,,Lake St. John & Mistassini Band,1880,Gray (1999); Bourguignon (1973), +4770,Na33,EA112,"T and P, but T not due to P",EA112-5,,,Berens River band,1870,Gray (1999); Bourguignon (1973), +4771,Na34,EA112,"T and P, but T not due to P",EA112-5,,,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,Gray (1999); Bourguignon (1973), +4772,Na35,EA112,"Trance, no possession",EA112-1,,,,1800,Gray (1999); Bourguignon (1973), +4773,Na36,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to the Red Lake and White Earth bands,1860,Gray (1999); Bourguignon (1973), +4774,Na37,EA112,?,EA112-NA,,,,,, +4775,Na38,EA112,"Trance, no possession",EA112-1,,,with special reference to the Lac Vieux Desert band,1800,Gray (1999); Bourguignon (1973), +4776,Na39,EA112,"Trance, no possession",EA112-1,,,with special reference to the Kitchibuan of Parry Island,1870,Gray (1999); Bourguignon (1973), +4777,Na4,EA112,"T and P, but T not due to P",EA112-5,,,Upper Liard and Dease River Group,1920,Gray (1999); Bourguignon (1973), +4778,Na40,EA112,?,EA112-NA,,,,,, +4779,Na41,EA112,"T and P, but T not due to P",EA112-5,,,Mainland division,1700,Gray (1999); Bourguignon (1973), +4780,Na42,EA112,?,EA112-NA,,,,,, +4781,Na43,EA112,?,EA112-NA,,,,,, +4782,Na44,EA112,?,EA112-NA,,,,,, +4783,Na45,EA112,?,EA112-NA,,,,,, +4784,Na5,EA112,?,EA112-NA,,,,,, +4785,Na6,EA112,"T and P, but T not due to P",EA112-5,,,,1930,Gray (1999); Bourguignon (1973), +4786,Na7,EA112,?,EA112-NA,,,,,, +4787,Na8,EA112,"T and P, but T not due to P",EA112-5,,,Shageluk Village,1880,Gray (1999); Bourguignon (1973), +4788,Na9,EA112,"T and P, but T not due to P",EA112-5,,,Unalaska Branch (Eastern Aleut),1830,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4789,Nb1,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Masset Town,1890,Gray (1999); Bourguignon (1973), +4790,Nb10,EA112,No trance or possession,EA112-8,,,,1865,Gray (1999); Bourguignon (1973), +4791,Nb11,EA112,"Trance, no possession",EA112-1,,,with special reference to the Central Nootka,1880,Gray (1999); Bourguignon (1973), +4792,Nb12,EA112,?,EA112-NA,,,,,, +4793,Nb13,EA112,?,EA112-NA,,,,,, +4794,Nb14,EA112,?,EA112-NA,,,,,, +4795,Nb15,EA112,"T and P, but T not due to P",EA112-5,,,,1880,Gray (1999); Bourguignon (1973), +4796,Nb16,EA112,"T and P, but T not due to P",EA112-5,,,,1860,Gray (1999); Bourguignon (1973), +4797,Nb17,EA112,?,EA112-NA,,,,,, +4798,Nb18,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1880,Gray (1999); Bourguignon (1973), +4799,Nb19,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1850,Gray (1999); Bourguignon (1973), +4800,Nb2,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Twana Tribe,1850,Gray (1999); Bourguignon (1973), +4801,Nb20,EA112,?,EA112-NA,,,,,, +4802,Nb21,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4803,Nb22,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Chilkat,1880,Gray (1999); Bourguignon (1973), +4804,Nb23,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1880,Gray (1999); Bourguignon (1973), +4805,Nb24,EA112,Possession,EA112-2,,,,1860,Gray (1999); Bourguignon (1973), +4806,Nb25,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1860,Gray (1999); Bourguignon (1973), +4807,Nb26,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1880,Gray (1999); Bourguignon (1973), +4808,Nb27,EA112,?,EA112-NA,,,,,, +4809,Nb28,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4810,Nb29,EA112,?,EA112-NA,,,,,, +4811,Nb3,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1890,Gray (1999); Bourguignon (1973), +4812,Nb30,EA112,Possession,EA112-2,,,,1860,Gray (1999); Bourguignon (1973), +4813,Nb31,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1870,Gray (1999); Bourguignon (1973), +4814,Nb32,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to the Shastika or eastern Shasta,1860,Gray (1999); Bourguignon (1973), +4815,Nb33,EA112,?,EA112-NA,,,,,, +4816,Nb34,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4817,Nb35,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1860,Gray (1999); Bourguignon (1973), +4818,Nb36,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1860,Gray (1999); Bourguignon (1973), +4819,Nb37,EA112,?,EA112-NA,,,,,, +4820,Nb38,EA112,?,EA112-NA,,,,,, +4821,Nb39,EA112,?,EA112-NA,,,,,, +4822,Nb4,EA112,"T and P, but T not due to P",EA112-5,,,,1850,Gray (1999); Bourguignon (1973), +4823,Nb5,EA112,"Trance, no possession",EA112-1,,,Eyak Tribe,1890,Gray (1999); Bourguignon (1973), +4824,Nb6,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1870,Gray (1999); Bourguignon (1973), +4825,Nb7,EA112,T due to P only; P explains T and others,EA112-6,,,,1880,Gray (1999); Bourguignon (1973), +4826,Nb8,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1880,Gray (1999); Bourguignon (1973), +4827,Nb9,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,"Central group, lower B.C. River",1880,Gray (1999); Bourguignon (1973), +4828,Nc1,EA112,"Trance, no possession",EA112-1,,,,1850,Gray (1999); Bourguignon (1973), +4829,Nc10,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4830,Nc11,EA112,?,EA112-NA,,,,,, +4831,Nc12,EA112,"Trance, no possession",EA112-1,,,with special reference to the Northeastern Mountain Maidu,1850,Gray (1999); Bourguignon (1973), +4832,Nc13,EA112,?,EA112-NA,,,,,, +4833,Nc14,EA112,Possession,EA112-2,,,with special reference to the northeastern Wintu,1860,Gray (1999); Bourguignon (1973), +4834,Nc15,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4835,Nc16,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4836,Nc17,EA112,"Trance, no possession",EA112-1,,,with special reference to those of Kalekau,1860,Gray (1999); Bourguignon (1973), +4837,Nc18,EA112,?,EA112-NA,,,,,, +4838,Nc19,EA112,?,EA112-NA,,,,,, +4839,Nc2,EA112,?,EA112-NA,,,,,, +4840,Nc20,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4841,Nc21,EA112,?,EA112-NA,,,,,, +4842,Nc22,EA112,"Trance, no possession",EA112-1,,,with special reference to the Hill Patwin,1850,Gray (1999); Bourguignon (1973), +4843,Nc23,EA112,"T and P, but T not due to P",EA112-5,,,,1870,Gray (1999); Bourguignon (1973), +4844,Nc24,EA112,?,EA112-NA,,,,,, +4845,Nc25,EA112,?,EA112-NA,,,,,, +4846,Nc26,EA112,?,EA112-NA,,,,,, +4847,Nc27,EA112,?,EA112-NA,,,,,, +4848,Nc28,EA112,?,EA112-NA,,,,,, +4849,Nc29,EA112,?,EA112-NA,,,,,, +4850,Nc3,EA112,"Trance, no possession",EA112-1,,,with special reference to those of the Northern Foothills,1850,Gray (1999); Bourguignon (1973), +4851,Nc30,EA112,?,EA112-NA,,,,,, +4852,Nc31,EA112,"Trance, no possession",EA112-1,,,with special reference to the Desert Cahuilla,1870,Gray (1999); Bourguignon (1973), +4853,Nc32,EA112,?,EA112-NA,,,,,, +4854,Nc33,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4855,Nc34,EA112,?,EA112-NA,,,,,, +4856,Nc4,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1860,Gray (1999); Bourguignon (1973), +4857,Nc5,EA112,"Trance, no possession",EA112-1,,,with special reference to the Central Sierra group,1850,Gray (1999); Bourguignon (1973), +4858,Nc6,EA112,"Trance, no possession",EA112-1,,,with special reference to the Southern Diegueno,1850,Gray (1999); Bourguignon (1973), +4859,Nc7,EA112,"Trance, no possession",EA112-1,,,,1850,Gray (1999); Bourguignon (1973), +4860,Nc8,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,Klamath Tribe,1860,Gray (1999); Bourguignon (1973), +4861,Nc9,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4862,Nd1,EA112,"T and P, but T not due to P",EA112-5,,,,1850,Gray (1999); Bourguignon (1973), +4863,Nd10,EA112,?,EA112-NA,,,,,, +4864,Nd11,EA112,?,EA112-NA,,,,,, +4865,Nd12,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4866,Nd13,EA112,?,EA112-NA,,,,,, +4867,Nd14,EA112,?,EA112-NA,,,,,, +4868,Nd15,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1880,Gray (1999); Bourguignon (1973), +4869,Nd16,EA112,?,EA112-NA,,,,,, +4870,Nd17,EA112,?,EA112-NA,,,,,, +4871,Nd18,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1860,Gray (1999); Bourguignon (1973), +4872,Nd19,EA112,?,EA112-NA,,,,,, +4873,Nd2,EA112,Possession,EA112-2,,,,1860,Gray (1999); Bourguignon (1973), +4874,Nd20,EA112,"Trance, no possession",EA112-1,,,,1850,Gray (1999); Bourguignon (1973), +4875,Nd21,EA112,?,EA112-NA,,,,,, +4876,Nd22,EA112,?,EA112-NA,,,,,, +4877,Nd23,EA112,?,EA112-NA,,,,,, +4878,Nd24,EA112,?,EA112-NA,,,,,, +4879,Nd25,EA112,?,EA112-NA,,,,,, +4880,Nd26,EA112,?,EA112-NA,,,,,, +4881,Nd27,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4882,Nd28,EA112,?,EA112-NA,,,,,, +4883,Nd29,EA112,?,EA112-NA,,,,,, +4884,Nd3,EA112,T due to P only; P explains T and others,EA112-6,,,Havasupai Tribe,1870,Gray (1999); Bourguignon (1973), +4885,Nd30,EA112,"Trance, no possession",EA112-1,,,,1870,Gray (1999); Bourguignon (1973), +4886,Nd31,EA112,?,EA112-NA,,,,,, +4887,Nd32,EA112,?,EA112-NA,,,,,, +4888,Nd33,EA112,?,EA112-NA,,,,,, +4889,Nd34,EA112,?,EA112-NA,,,,,, +4890,Nd35,EA112,?,EA112-NA,,,,,, +4891,Nd36,EA112,?,EA112-NA,,,,,, +4892,Nd37,EA112,?,EA112-NA,,,,,, +4893,Nd38,EA112,?,EA112-NA,,,,,, +4894,Nd39,EA112,?,EA112-NA,,,,,, +4895,Nd4,EA112,"T and P, but T not due to P",EA112-5,,,,1870,Gray (1999); Bourguignon (1973), +4896,Nd40,EA112,?,EA112-NA,,,,,, +4897,Nd41,EA112,?,EA112-NA,,,,,, +4898,Nd42,EA112,?,EA112-NA,,,,,, +4899,Nd43,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4900,Nd44,EA112,?,EA112-NA,,,,,, +4901,Nd45,EA112,?,EA112-NA,,,,,, +4902,Nd46,EA112,?,EA112-NA,,,,,, +4903,Nd47,EA112,?,EA112-NA,,,,,, +4904,Nd48,EA112,?,EA112-NA,,,,,, +4905,Nd49,EA112,?,EA112-NA,,,,,, +4906,Nd5,EA112,?,EA112-NA,,,,,, +4907,Nd50,EA112,?,EA112-NA,,,,,, +4908,Nd51,EA112,?,EA112-NA,,,,,, +4909,Nd52,EA112,?,EA112-NA,,,,,, +4910,Nd53,EA112,?,EA112-NA,,,,,, +4911,Nd54,EA112,?,EA112-NA,,,,,, +4912,Nd55,EA112,?,EA112-NA,,,,,, +4913,Nd56,EA112,?,EA112-NA,,,,,, +4914,Nd57,EA112,?,EA112-NA,,,,,, +4915,Nd58,EA112,?,EA112-NA,,,,,, +4916,Nd59,EA112,?,EA112-NA,,,,,, +4917,Nd6,EA112,"T and P, but T not due to P",EA112-5,,,,1850,Gray (1999); Bourguignon (1973), +4918,Nd60,EA112,?,EA112-NA,,,,,, +4919,Nd61,EA112,?,EA112-NA,,,,,, +4920,Nd62,EA112,?,EA112-NA,,,,,, +4921,Nd63,EA112,?,EA112-NA,,,,,, +4922,Nd64,EA112,"T and P, but T not due to P",EA112-5,,,with special reference to the Kucundika,1860,Gray (1999); Bourguignon (1973), +4923,Nd65,EA112,"Trance, no possession",EA112-1,,,,1870,Gray (1999); Bourguignon (1973), +4924,Nd66,EA112,"Trance, no possession",EA112-1,,,with exdlusive reference to the Northeastern Yavapai,1870,Gray (1999); Bourguignon (1973), +4925,Nd67,EA112,?,EA112-NA,,,,,, +4926,Nd7,EA112,?,EA112-NA,,,,,, +4927,Nd8,EA112,?,EA112-NA,,,,,, +4928,Nd9,EA112,?,EA112-NA,,,,,, +4929,Ne1,EA112,"Trance, no possession",EA112-1,,,Gros Ventre Tribe,1880,Gray (1999); Bourguignon (1973), +4930,Ne10,EA112,No trance or possession,EA112-8,,,,1860,Gray (1999); Bourguignon (1973), +4931,Ne11,EA112,"T and P, but T not due to P",EA112-5,,,,1870,Gray (1999); Bourguignon (1973), +4932,Ne12,EA112,"Trance, no possession",EA112-1,,,,1850,Gray (1999); Bourguignon (1973), +4933,Ne13,EA112,?,EA112-NA,,,,,, +4934,Ne14,EA112,?,EA112-NA,,,,,, +4935,Ne15,EA112,"T and P, but T not due to P",EA112-5,,,Hidatsa Village,1860,Gray (1999); Bourguignon (1973), +4936,Ne16,EA112,"Trance, no possession",EA112-1,,,,1800,Gray (1999); Bourguignon (1973), +4937,Ne17,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4938,Ne18,EA112,"Trance, no possession",EA112-1,,,,1850,Gray (1999); Bourguignon (1973), +4939,Ne19,EA112,"Trance, no possession",EA112-1,,,,1850,Gray (1999); Bourguignon (1973), +4940,Ne2,EA112,"T and P, but T not due to P",EA112-5,,,,1870,Gray (1999); Bourguignon (1973), +4941,Ne20,EA112,"Trance, no possession",EA112-1,,,,1850,Gray (1999); Bourguignon (1973), +4942,Ne21,EA112,?,EA112-NA,,,,,, +4943,Ne3,EA112,"T and P, but T not due to P",EA112-5,,,Comanche Tribe,1870,Gray (1999); Bourguignon (1973), +4944,Ne4,EA112,"T and P, but T not due to P",EA112-5,,,,1870,Gray (1999); Bourguignon (1973), +4945,Ne5,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4946,Ne6,EA112,"Trance, no possession",EA112-1,,,,1830,Gray (1999); Bourguignon (1973), +4947,Ne7,EA112,No trance or possession,EA112-8,,,,1880,Gray (1999); Bourguignon (1973), +4948,Ne8,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1870,Gray (1999); Bourguignon (1973), +4949,Ne9,EA112,"T and P, but T not due to P",EA112-5,,,,1860,Gray (1999); Bourguignon (1973), +4950,Nf10,EA112,"Trance, no possession",EA112-1,,,,1870,Gray (1999); Bourguignon (1973), +4951,Nf11,EA112,?,EA112-NA,,,,,, +4952,Nf12,EA112,"T and P, but T not due to P",EA112-5,,,,1850,Gray (1999); Bourguignon (1973), +4953,Nf13,EA112,"Trance, no possession",EA112-1,,,with special reference to the Kiskopotha band,1820,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4954,Nf14,EA112,?,EA112-NA,,,,,, +4955,Nf15,EA112,?,EA112-NA,,,,,, +4956,Nf2,EA112,"Trance, no possession",EA112-1,,,,1850,Gray (1999); Bourguignon (1973), +4957,Nf3,EA112,"Trance, no possession",EA112-1,,,Omaha Tribe,1850,Gray (1999); Bourguignon (1973), +4958,Nf4,EA112,?,EA112-NA,,,,,, +4959,Nf5,EA112,"Trance, no possession",EA112-1,,,,1860,Gray (1999); Bourguignon (1973), +4960,Nf6,EA112,"T and P, but T not due to P",EA112-5,,,Skidi Band or subtribe,1867,Gray (1999); Bourguignon (1973), +4961,Nf7,EA112,"Trance, no possession",EA112-1,,,Tama Reservation,1830,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4962,Nf8,EA112,"Trance, no possession",EA112-1,,,,1770,Gray (1999); Bourguignon (1973), +4963,Nf9,EA112,"Trance, no possession",EA112-1,,,,1870,Gray (1999); Bourguignon (1973), +4964,Ng1,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Bear and Cord Subtribes,1640,Gray (1999); Bourguignon (1973), +4965,Ng10,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to the Seneca tribe,1750,Gray (1999); Bourguignon (1973), +4966,Ng11,EA112,?,EA112-NA,,,,,, +4967,Ng12,EA112,No trance or possession,EA112-8,,,,1760,Gray (1999); Bourguignon (1973), +4968,Ng13,EA112,?,EA112-NA,,,,,, +4969,Ng14,EA112,?,EA112-NA,,,,,, +4970,Ng15,EA112,?,EA112-NA,,,,,, +4971,Ng2,EA112,?,EA112-NA,,,,,, +4972,Ng3,EA112,"Trance, no possession",EA112-1,,,Upper division in Alabama,1750,Gray (1999); Bourguignon (1973), +4973,Ng4,EA112,?,EA112-NA,,,,,, +4974,Ng5,EA112,Possession,EA112-2,,,,1750,Gray (1999); Bourguignon (1973), +4975,Ng6,EA112,"T and P, but T not due to P",EA112-5,,,with special reference to the Munsee,1700,Gray (1999); Bourguignon (1973), +4976,Ng7,EA112,"Trance, no possession",EA112-1,,,Natchez Kingdom,1700,Gray (1999); Bourguignon (1973), +4977,Ng8,EA112,?,EA112-NA,,,,,, +4978,Ng9,EA112,?,EA112-NA,,,,,, +4979,Nh1,EA112,"Trance, no possession",EA112-1,,,Central band,1880,Gray (1999); Bourguignon (1973), +4980,Nh10,EA112,"Trance, no possession",EA112-1,,,,1920,Gray (1999); Bourguignon (1973), +4981,Nh11,EA112,"Trance, no possession",EA112-1,,,with special reference to the pueblo of San Ildefonso,1900,Gray (1999); Bourguignon (1973), +4982,Nh12,EA112,?,EA112-NA,,,,,, +4983,Nh13,EA112,T due to P only; P causes T only,EA112-3,,,,1920,Gray (1999); Bourguignon (1973), +4984,Nh14,EA112,?,EA112-NA,,,,,, +4985,Nh15,EA112,"T and P, but T not due to P",EA112-5,,,,1870,Gray (1999); Bourguignon (1973), +4986,Nh16,EA112,"Trance, no possession",EA112-1,,,"Jicarilla Reservation, Dulce, New Mexico",1870,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4987,Nh17,EA112,No trance or possession,EA112-8,,,,1870,Gray (1999); Bourguignon (1973), +4988,Nh18,EA112,"T and P, but T not due to P",EA112-5,,,Old Oraiibi,1920,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4989,Nh19,EA112,?,EA112-NA,,,,,, +4990,Nh2,EA112,?,EA112-NA,,,,,, +4991,Nh20,EA112,?,EA112-NA,,,,,, +4992,Nh21,EA112,T due to P only; P explains T and others,EA112-6,,,Fort Mohave and Colorado River Reservation,1850,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +4993,Nh22,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1860,Gray (1999); Bourguignon (1973), +4994,Nh23,EA112,?,EA112-NA,,,,,, +4995,Nh24,EA112,"Trance, no possession",EA112-1,,,,1880,Gray (1999); Bourguignon (1973), +4996,Nh25,EA112,?,EA112-NA,,,,,, +4997,Nh26,EA112,?,EA112-NA,,,,,, +4998,Nh27,EA112,?,EA112-NA,,,,,, +4999,Nh3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1930,Gray (1999); Bourguignon (1973), +5000,Nh4,EA112,"T and P, but T not due to P",EA112-5,,,Pueblo,1910,Gray (1999); Bourguignon (1973), +5001,Nh5,EA112,?,EA112-NA,,,,,, +5002,Nh6,EA112,"Trance, no possession",EA112-1,,,,1890,Gray (1999); Bourguignon (1973), +5003,Nh7,EA112,?,EA112-NA,,,,,, +5004,Nh8,EA112,?,EA112-NA,,,,,, +5005,Nh9,EA112,?,EA112-NA,,,,,, +5006,Ni1,EA112,"Trance, no possession",EA112-1,,,,1930,Gray (1999); Bourguignon (1973), +5007,Ni2,EA112,"Trance, no possession",EA112-1,,,,1930,Gray (1999); Bourguignon (1973), +5008,Ni3,EA112,"Trance, no possession",EA112-1,,,Huichol Tribe,1920,Gray (1999); Bourguignon (1973), +5009,Ni4,EA112,?,EA112-NA,,,,,, +5010,Ni5,EA112,"Trance, no possession",EA112-1,,,,1570,Gray (1999); Bourguignon (1973), +5011,Ni6,EA112,No trance or possession,EA112-8,,,,1840,Gray (1999); Bourguignon (1973), +5012,Ni7,EA112,No trance or possession,EA112-8,,,,1870,Gray (1999); Bourguignon (1973), +5013,Ni8,EA112,?,EA112-NA,,,,,, +5014,Ni9,EA112,?,EA112-NA,,,,,, +5015,Nj1,EA112,"Trance, no possession",EA112-1,,,Ojitlan,1940,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +5016,Nj10,EA112,"Trance, no possession",EA112-1,,,mountain village of Yalagag,1940,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +5017,Nj11,EA112,?,EA112-NA,,,,,, +5018,Nj12,EA112,?,EA112-NA,,,,,, +5019,Nj13,EA112,?,EA112-NA,,,,,, +5020,Nj14,EA112,?,EA112-NA,,,,,, +5021,Nj2,EA112,"Trance, no possession",EA112-1,,,City & environs of Tenochtitlan,1520,Gray (1999); Bourguignon (1973), +5022,Nj3,EA112,No trance or possession,EA112-8,,,Town and environs of Soteapan,1940,Gray (1999); Bourguignon (1973), +5023,Nj4,EA112,No trance or possession,EA112-8,,,,1940,Gray (1999); Bourguignon (1973), +5024,Nj5,EA112,"Trance, no possession",EA112-1,,,,1940,Gray (1999); Bourguignon (1973), +5025,Nj6,EA112,?,EA112-NA,,,,,, +5026,Nj7,EA112,No trance or possession,EA112-8,,,with special reference to Ayutla,1930,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +5027,Nj8,EA112,"Trance, no possession",EA112-1,,,,1500,Gray (1999); Bourguignon (1973), +5028,Nj9,EA112,?,EA112-NA,,,,,, +5029,Sa1,EA112,Possession,EA112-2,,,San Blas Archipelago,1940,Gray (1999); Bourguignon (1973), +5030,Sa10,EA112,?,EA112-NA,,,,,, +5031,Sa11,EA112,?,EA112-NA,,,,,, +5032,Sa12,EA112,?,EA112-NA,,,,,, +5033,Sa13,EA112,T due to P only; P causes T only,EA112-3,,,Town of Chichicastenango,1930,Gray (1999); Bourguignon (1973), +5034,Sa14,EA112,?,EA112-NA,,,,,, +5035,Sa15,EA112,?,EA112-NA,,,,,, +5036,Sa16,EA112,?,EA112-NA,,,,,, +5037,Sa17,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to the village of Chinantla,1950,Gray (1999); Bourguignon (1973), +5038,Sa2,EA112,?,EA112-NA,,,,,, +5039,Sa3,EA112,?,EA112-NA,,,,,, +5040,Sa4,EA112,"T and P, but T not due to P",EA112-5,,,with special reference to those of Panama,1960,Gray (1999); Bourguignon (1973), +5041,Sa5,EA112,?,EA112-NA,,,,,, +5042,Sa6,EA112,"Trance, no possession",EA112-1,,,,1520,Gray (1999); Bourguignon (1973), +5043,Sa7,EA112,T due to P only; P explains T and others,EA112-6,,,,1940,Gray (1999); Bourguignon (1973), +5044,Sa8,EA112,No trance or possession,EA112-8,,,with special reference to the village of Santiago Chimaltenango,1930,Gray (1999); Bourguignon (1973), +5045,Sa9,EA112,"T and P, but T not due to P",EA112-5,,,Vicinity: Cape Gracias a Dios,1920,Gray (1999); Bourguignon (1973), +5046,Sb1,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Dominica Island,1650,Gray (1999); Bourguignon (1973), +5047,Sb2,EA112,No trance or possession,EA112-8,,,,1940,Gray (1999); Bourguignon (1973), +5048,Sb3,EA112,?,EA112-NA,,,,,, +5049,Sb4,EA112,?,EA112-NA,,,,,, +5050,Sb5,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +5051,Sb6,EA112,T due to P only; P causes T only,EA112-3,,,Goajiro Tribe,1940,Gray (1999); Bourguignon (1973), +5052,Sb7,EA112,?,EA112-NA,,,,,, +5053,Sb8,EA112,"Trance, no possession",EA112-1,,,,1520,Gray (1999); Bourguignon (1973), +5054,Sb9,EA112,T due to P only; P causes T only,EA112-3,,,,1930,Gray (1999); Bourguignon (1973), +5055,Sc1,EA112,"Trance, no possession",EA112-1,,,,1950,Gray (1999); Bourguignon (1973), +5056,Sc10,EA112,"T and P, but T not due to P",EA112-5,,,,1900,Gray (1999); Bourguignon (1973), +5057,Sc11,EA112,"T and P, but T not due to P",EA112-5,,,,1930,Gray (1999); Bourguignon (1973), +5058,Sc12,EA112,Possession,EA112-2,,,,1910,Gray (1999); Bourguignon (1973), +5059,Sc13,EA112,?,EA112-NA,,,,,, +5060,Sc14,EA112,?,EA112-NA,,,,,, +5061,Sc15,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1910,Gray (1999); Bourguignon (1973), +5062,Sc16,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to the Makitare,1920,Gray (1999); Bourguignon (1973), +5063,Sc17,EA112,?,EA112-NA,,,,,, +5064,Sc18,EA112,?,EA112-NA,,,,,, +5065,Sc2,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1950,Gray (1999); Bourguignon (1973), +5066,Sc3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Barama River,1930,Gray (1999); Bourguignon (1973), +5067,Sc4,EA112,?,EA112-NA,,,,,, +5068,Sc5,EA112,Possession,EA112-2,,,,1900,Gray (1999); Bourguignon (1973), +5069,Sc6,EA112,T due to P only; P causes T only,EA112-3,,,Upper Suriname River; Akwa on Morini River,1920,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +5070,Sc7,EA112,"Trance, no possession",EA112-1,,,,1950,Gray (1999); Bourguignon (1973), +5071,Sc8,EA112,?,EA112-NA,,,,,, +5072,Sc9,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +5073,Sd1,EA112,"Trance, no possession",EA112-1,,,Cabrura village,1950,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +5074,Sd2,EA112,"Trance, no possession",EA112-1,,,,1930,Gray (1999); Bourguignon (1973), +5075,Sd3,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1920,Gray (1999); Bourguignon (1973), +5076,Sd4,EA112,?,EA112-NA,,,,,, +5077,Sd5,EA112,?,EA112-NA,,,,,, +5078,Sd6,EA112,?,EA112-NA,,,,,, +5079,Sd7,EA112,"T and P, but T not due to P",EA112-5,,,,1950,Gray (1999); Bourguignon (1973), +5080,Sd8,EA112,?,EA112-NA,,,,,, +5081,Sd9,EA112,?,EA112-NA,,,,,, +5082,Se1,EA112,Possession,EA112-2,,,Vicinity of the Rio Blanco,1940,Gray (1999); Bourguignon (1973), +5083,Se10,EA112,"T and P, but T not due to P",EA112-5,,,,1670,Gray (1999); Bourguignon (1973), +5084,Se11,EA112,?,EA112-NA,,,,,, +5085,Se12,EA112,?,EA112-NA,,,,,, +5086,Se2,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,,1940,Gray (1999); Bourguignon (1973), +5087,Se3,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1930,Gray (1999); Bourguignon (1973), +5088,Se4,EA112,"T and P, but T not due to P",EA112-5,,,,1940,Gray (1999); Bourguignon (1973), +5089,Se5,EA112,?,EA112-NA,,,,,, +5090,Se6,EA112,"T and P, but T not due to P",EA112-5,,,,1910,Gray (1999); Bourguignon (1973), +5091,Se7,EA112,?,EA112-NA,,,,,, +5092,Se8,EA112,"Trance, no possession",EA112-1,,,Upper Inuya River,1950,Gray (1999); Bourguignon (1973), +5093,Se9,EA112,"Trance, no possession",EA112-1,,,,1920,Gray (1999); Bourguignon (1973), +5094,Sf1,EA112,"T and P, but T not due to P",EA112-5,,,City and environs of Cuzco,1530,Gray (1999); Bourguignon (1973), +5095,Sf2,EA112,Possession,EA112-2,,,Chucuito Clan community in Peru,1940,Gray (1999); Bourguignon (1973), +5096,Sf3,EA112,No trance or possession,EA112-8,,,Rio Cayapas Basin,1910,Gray (1999); Bourguignon (1973), +5097,Sf4,EA112,"Trance, no possession",EA112-1,,,,1950,Gray (1999); Bourguignon (1973), +5098,Sf5,EA112,Possession,EA112-2,,,,1900,Gray (1999); Bourguignon (1973), +5099,Sf6,EA112,"Trance, no possession",EA112-1,,,,1540,Gray (1999); Bourguignon (1973), +5100,Sf7,EA112,"Trance, no possession",EA112-1,,,,1900,Gray (1999); Bourguignon (1973), +5101,Sf8,EA112,Possession,EA112-2,,,,1950,Gray (1999); Bourguignon (1973), +5102,Sf9,EA112,?,EA112-NA,,,,,, +5103,Sg1,EA112,"Trance, no possession",EA112-1,,,Eastern and central,1870,Gray (1999); Bourguignon (1973), +5104,Sg2,EA112,?,EA112-NA,,,,,, +5105,Sg3,EA112,"Two T states, one due to P; P explains T only",EA112-7,,,with special reference to the Shelknam,1880,Gray (1999); Bourguignon (1973), +5106,Sg4,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Equestrian,1870,Gray (1999); Bourguignon (1973), +5107,Sg5,EA112,No trance or possession,EA112-8,,,with special reference to the southern bands,1900,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +5108,Sh1,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,,1860,Gray (1999); Bourguignon (1973), +5109,Sh2,EA112,"Trance, no possession",EA112-1,,,,1850,Gray (1999); Bourguignon (1973), +5110,Sh3,EA112,"Trance, no possession",EA112-1,,,Those in contact with mission,1800,Gray (1999); Bourguignon (1973), +5111,Sh4,EA112,"Trance, no possession",EA112-1,,,,1940,Gray (1999); Bourguignon (1973), +5112,Sh5,EA112,?,EA112-NA,,,,,, +5113,Sh6,EA112,Possession,EA112-2,,,,1890,Gray (1999); Bourguignon (1973), +5114,Sh7,EA112,No trance or possession,EA112-8,,,,1900,Gray (1999); Bourguignon (1973), +5115,Sh8,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,with special reference to those of the Argentine Chaco,1964,Gray (1999); Bourguignon (1973), +5116,Sh9,EA112,?,EA112-NA,,,,,, +5117,Si1,EA112,"Two T states, one due to P; P expl. T and others",EA112-4,,,Kejara,1920,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +5118,Si10,EA112,?,EA112-NA,,,,,, +5119,Si2,EA112,"Trance, no possession",EA112-1,,,Village of Vanivani,1930,Gray (1999); Bourguignon (1973), +5120,Si3,EA112,"Trance, no possession",EA112-1,,,Simao Lopes,1940,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +5121,Si4,EA112,"T and P, but T not due to P",EA112-5,,,Cocozu Group,1940,Gray (1999); Bourguignon (1973), +5122,Si5,EA112,"Trance, no possession",EA112-1,,,,1940,Gray (1999); Bourguignon (1973), +5123,Si6,EA112,No trance or possession,EA112-8,,,,1900,Gray (1999); Bourguignon (1973), +5124,Si7,EA112,No trance or possession,EA112-8,,,with special reference to the Cozarimi,1910,Gray (1999); Bourguignon (1973), +5125,Si8,EA112,Possession,EA112-2,,,,1940,Gray (1999); Bourguignon (1973), +5126,Si9,EA112,?,EA112-NA,,,,,, +5127,Sj1,EA112,"Trance, no possession",EA112-1,,,,1950,Gray (1999); Bourguignon (1973), +5128,Sj10,EA112,No trance or possession,EA112-8,,,Taquapiri,1950,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +5129,Sj11,EA112,?,EA112-NA,,,,,, +5130,Sj2,EA112,"Trance, no possession",EA112-1,,,,1850,Gray (1999); Bourguignon (1973), +5131,Sj3,EA112,"Trance, no possession",EA112-1,,,Duque de Caxias Reservation,1910,Gray (1999); Bourguignon (1973), +5132,Sj4,EA112,Possession,EA112-2,,,Ramcocamecra or Canella,1930,Gray (1999); Bourguignon (1973), +5133,Sj5,EA112,No trance or possession,EA112-8,,,Naknenuk subtribe,1880,Gray (1999); Bourguignon (1973), +5134,Sj6,EA112,T due to P only; P explains T and others,EA112-6,,,with special reference to the Guajajara subgroup,1930,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +5135,Sj7,EA112,"T and P, but T not due to P",EA112-5,,,,1920,Gray (1999); Bourguignon (1973), +5136,Sj8,EA112,"T and P, but T not due to P",EA112-5,,,Hinterland of Rio de Janeiro,1600,Gray (1999); Bourguignon (1973), +5137,Sj9,EA112,No trance or possession,EA112-8,,,,1950,Gray (1999); Bourguignon (1973), +5138,ch12,EA112,?,EA112-NA,,,,,, +5139,ch13,EA112,?,EA112-NA,,,,,, +5140,ch14,EA112,?,EA112-NA,,,,,, +5141,ch15,EA112,?,EA112-NA,,,,,, +5142,ch16,EA112,?,EA112-NA,,,,,, +5143,ch17,EA112,?,EA112-NA,,,,,, +5144,ch18,EA112,?,EA112-NA,,,,,, +5145,ch19,EA112,?,EA112-NA,,,,,, +5146,ch20,EA112,?,EA112-NA,,,,,, +5147,ch21,EA112,?,EA112-NA,,,,,, +5148,ch22,EA112,?,EA112-NA,,,,,, +5149,ch23,EA112,?,EA112-NA,,,,,, +5150,ch24,EA112,?,EA112-NA,,,,,, +5151,ch25,EA112,?,EA112-NA,,,,,, +5152,ch26,EA112,?,EA112-NA,,,,,, +5153,ch27,EA112,?,EA112-NA,,,,,, +5154,ch28,EA112,?,EA112-NA,,,,,, +5155,ec12,EA112,?,EA112-NA,,,,,, +5156,ec13,EA112,?,EA112-NA,,,,,, +5157,ec14,EA112,?,EA112-NA,,,,,, +5158,ec15,EA112,?,EA112-NA,,,,,, +5159,ec16,EA112,?,EA112-NA,,,,,, +5160,ec17,EA112,?,EA112-NA,,,,,, +5161,ec18,EA112,?,EA112-NA,,,,,, +5162,ec19,EA112,?,EA112-NA,,,,,, +5163,ec20,EA112,?,EA112-NA,,,,,, +5164,ec21,EA112,?,EA112-NA,,,,,, +5165,Aa1,EA113,Flexible,EA113-2,,,Nyai Nyae region,1950,Gray (1999); Greenbaum (1973), +5166,Aa2,EA113,?,EA113-NA,,,,,, +5167,Aa3,EA113,?,EA113-NA,,,,,, +5168,Aa4,EA113,?,EA113-NA,,,,,, +5169,Aa5,EA113,Flexible,EA113-2,,,"Epulu net-hunters, Ituri forest",1930,Gray (1999); Greenbaum (1973), +5170,Aa6,EA113,?,EA113-NA,,,,,, +5171,Aa7,EA113,?,EA113-NA,,,,,, +5172,Aa8,EA113,?,EA113-NA,,,,,, +5173,Aa9,EA113,?,EA113-NA,,,,,, +5174,Ab1,EA113,?,EA113-NA,,,,,, +5175,Ab10,EA113,?,EA113-NA,,,,,, +5176,Ab11,EA113,?,EA113-NA,,,,,, +5177,Ab12,EA113,Rigid,EA113-1,,,,1830,Gray (1999); Greenbaum (1973), +5178,Ab13,EA113,?,EA113-NA,,,,,, +5179,Ab14,EA113,Rigid,EA113-1,,,,1930,Gray (1999); Greenbaum (1973), +5180,Ab15,EA113,?,EA113-NA,,,,,, +5181,Ab16,EA113,?,EA113-NA,,,,,, +5182,Ab17,EA113,?,EA113-NA,,,,,, +5183,Ab18,EA113,?,EA113-NA,,,,,, +5184,Ab19,EA113,?,EA113-NA,,,,,, +5185,Ab2,EA113,?,EA113-NA,,,,,, +5186,Ab20,EA113,?,EA113-NA,,,,,, +5187,Ab21a,EA113,?,EA113-NA,,,,,, +5188,Ab21b,EA113,?,EA113-NA,,,,,, +5189,Ab22,EA113,?,EA113-NA,,,,,, +5190,Ab3,EA113,?,EA113-NA,,,,,, +5191,Ab4,EA113,?,EA113-NA,,,,,, +5192,Ab5,EA113,?,EA113-NA,,,,,, +5193,Ab6,EA113,Rigid,EA113-1,,,,1900,Gray (1999); Greenbaum (1973), +5194,Ab7,EA113,?,EA113-NA,,,,,, +5195,Ab8,EA113,?,EA113-NA,,,,,, +5196,Ab9,EA113,?,EA113-NA,,,,,, +5197,Ac1,EA113,?,EA113-NA,,,,,, +5198,Ac10,EA113,?,EA113-NA,,,,,, +5199,Ac11,EA113,?,EA113-NA,,,,,, +5200,Ac12,EA113,?,EA113-NA,,,,,, +5201,Ac13,EA113,?,EA113-NA,,,,,, +5202,Ac14,EA113,Flexible,EA113-2,,,,1900,Gray (1999); Greenbaum (1973), +5203,Ac15,EA113,?,EA113-NA,,,,,, +5204,Ac16,EA113,?,EA113-NA,,,,,, +5205,Ac17,EA113,?,EA113-NA,,,,,, +5206,Ac18,EA113,?,EA113-NA,,,,,, +5207,Ac19,EA113,?,EA113-NA,,,,,, +5208,Ac2,EA113,?,EA113-NA,,,,,, +5209,Ac20,EA113,?,EA113-NA,,,,,, +5210,Ac21,EA113,?,EA113-NA,,,,,, +5211,Ac22,EA113,?,EA113-NA,,,,,, +5212,Ac23,EA113,?,EA113-NA,,,,,, +5213,Ac24,EA113,?,EA113-NA,,,,,, +5214,Ac25,EA113,?,EA113-NA,,,,,, +5215,Ac26,EA113,?,EA113-NA,,,,,, +5216,Ac27,EA113,?,EA113-NA,,,,,, +5217,Ac28,EA113,?,EA113-NA,,,,,, +5218,Ac29,EA113,?,EA113-NA,,,,,, +5219,Ac3,EA113,Rigid,EA113-1,,,Zambia branch,1900,Gray (1999); Greenbaum (1973), +5220,Ac30,EA113,?,EA113-NA,,,,,, +5221,Ac31,EA113,?,EA113-NA,,,,,, +5222,Ac32,EA113,?,EA113-NA,,,,,, +5223,Ac33,EA113,?,EA113-NA,,,,,, +5224,Ac34,EA113,?,EA113-NA,,,,,, +5225,Ac35,EA113,?,EA113-NA,,,,,, +5226,Ac36,EA113,?,EA113-NA,,,,,, +5227,Ac37,EA113,?,EA113-NA,,,,,, +5228,Ac38,EA113,?,EA113-NA,,,,,, +5229,Ac39,EA113,?,EA113-NA,,,,,, +5230,Ac4,EA113,?,EA113-NA,,,,,, +5231,Ac40,EA113,?,EA113-NA,,,,,, +5232,Ac41,EA113,?,EA113-NA,,,,,, +5233,Ac42,EA113,?,EA113-NA,,,,,, +5234,Ac43,EA113,?,EA113-NA,,,,,, +5235,Ac5,EA113,?,EA113-NA,,,,,, +5236,Ac6,EA113,?,EA113-NA,,,,,, +5237,Ac7,EA113,Rigid,EA113-1,,,,1920,Gray (1999); Greenbaum (1973), +5238,Ac8,EA113,?,EA113-NA,,,,,, +5239,Ac9,EA113,?,EA113-NA,,,,,, +5240,Ad1,EA113,?,EA113-NA,,,,,, +5241,Ad10,EA113,?,EA113-NA,,,,,, +5242,Ad11,EA113,?,EA113-NA,,,,,, +5243,Ad12,EA113,?,EA113-NA,,,,,, +5244,Ad13,EA113,Flexible,EA113-2,,,,1930,Gray (1999); Greenbaum (1973), +5245,Ad14,EA113,?,EA113-NA,,,,,, +5246,Ad15,EA113,?,EA113-NA,,,,,, +5247,Ad16,EA113,?,EA113-NA,,,,,, +5248,Ad17,EA113,?,EA113-NA,,,,,, +5249,Ad18,EA113,?,EA113-NA,,,,,, +5250,Ad19,EA113,?,EA113-NA,,,,,, +5251,Ad2,EA113,Rigid,EA113-1,,,,1950,Gray (1999); Greenbaum (1973), +5252,Ad20,EA113,?,EA113-NA,,,,,, +5253,Ad21,EA113,?,EA113-NA,,,,,, +5254,Ad22,EA113,?,EA113-NA,,,,,, +5255,Ad23,EA113,?,EA113-NA,,,,,, +5256,Ad24,EA113,?,EA113-NA,,,,,, +5257,Ad25,EA113,?,EA113-NA,,,,,, +5258,Ad26,EA113,?,EA113-NA,,,,,, +5259,Ad27,EA113,?,EA113-NA,,,,,, +5260,Ad28,EA113,?,EA113-NA,,,,,, +5261,Ad29,EA113,?,EA113-NA,,,,,, +5262,Ad3,EA113,?,EA113-NA,,,,,, +5263,Ad30,EA113,?,EA113-NA,,,,,, +5264,Ad31,EA113,?,EA113-NA,,,,,, +5265,Ad32,EA113,?,EA113-NA,,,,,, +5266,Ad33,EA113,?,EA113-NA,,,,,, +5267,Ad34,EA113,?,EA113-NA,,,,,, +5268,Ad35,EA113,?,EA113-NA,,,,,, +5269,Ad36,EA113,?,EA113-NA,,,,,, +5270,Ad37,EA113,?,EA113-NA,,,,,, +5271,Ad38,EA113,?,EA113-NA,,,,,, +5272,Ad39,EA113,?,EA113-NA,,,,,, +5273,Ad4,EA113,Flexible,EA113-2,,,Fort Hall or Metume district,1930,Gray (1999); Greenbaum (1973), +5274,Ad40,EA113,?,EA113-NA,,,,,, +5275,Ad41,EA113,?,EA113-NA,,,,,, +5276,Ad42,EA113,?,EA113-NA,,,,,, +5277,Ad43,EA113,?,EA113-NA,,,,,, +5278,Ad44,EA113,?,EA113-NA,,,,,, +5279,Ad45,EA113,?,EA113-NA,,,,,, +5280,Ad46,EA113,?,EA113-NA,,,,,, +5281,Ad47,EA113,?,EA113-NA,,,,,, +5282,Ad48,EA113,?,EA113-NA,,,,,, +5283,Ad49,EA113,?,EA113-NA,,,,,, +5284,Ad5,EA113,?,EA113-NA,,,,,, +5285,Ad50,EA113,?,EA113-NA,,,,,, +5286,Ad51,EA113,?,EA113-NA,,,,,, +5287,Ad6,EA113,?,EA113-NA,,,,,, +5288,Ad7,EA113,Rigid,EA113-1,,,Kyaddondo district (V: Kampala),1880,Gray (1999); Greenbaum (1973), +5289,Ad8,EA113,Flexible,EA113-2,,,with special reference to the northern or Iringa group,1910,Gray (1999); Greenbaum (1973), +5290,Ad9,EA113,Flexible,EA113-2,,,,1900,Gray (1999); Greenbaum (1973), +5291,Ae1,EA113,Flexible,EA113-2,,,with special reference to those of Bwamba in Uganda,1950,Gray (1999); Greenbaum (1973), +5292,Ae10,EA113,?,EA113-NA,,,,,, +5293,Ae11,EA113,?,EA113-NA,,,,,, +5294,Ae12,EA113,?,EA113-NA,,,,,, +5295,Ae13,EA113,?,EA113-NA,,,,,, +5296,Ae14,EA113,?,EA113-NA,,,,,, +5297,Ae15,EA113,?,EA113-NA,,,,,, +5298,Ae16,EA113,?,EA113-NA,,,,,, +5299,Ae17,EA113,?,EA113-NA,,,,,, +5300,Ae18,EA113,?,EA113-NA,,,,,, +5301,Ae19,EA113,?,EA113-NA,,,,,, +5302,Ae2,EA113,Flexible,EA113-2,,,,1950,Gray (1999); Greenbaum (1973), +5303,Ae20,EA113,?,EA113-NA,,,,,, +5304,Ae21,EA113,?,EA113-NA,,,,,, +5305,Ae22,EA113,?,EA113-NA,,,,,, +5306,Ae23,EA113,?,EA113-NA,,,,,, +5307,Ae24,EA113,?,EA113-NA,,,,,, +5308,Ae25,EA113,?,EA113-NA,,,,,, +5309,Ae26,EA113,?,EA113-NA,,,,,, +5310,Ae27,EA113,?,EA113-NA,,,,,, +5311,Ae28,EA113,?,EA113-NA,,,,,, +5312,Ae29,EA113,?,EA113-NA,,,,,, +5313,Ae3,EA113,?,EA113-NA,,,,,, +5314,Ae30,EA113,?,EA113-NA,,,,,, +5315,Ae31,EA113,?,EA113-NA,,,,,, +5316,Ae32,EA113,?,EA113-NA,,,,,, +5317,Ae33,EA113,?,EA113-NA,,,,,, +5318,Ae34,EA113,?,EA113-NA,,,,,, +5319,Ae35,EA113,?,EA113-NA,,,,,, +5320,Ae36,EA113,?,EA113-NA,,,,,, +5321,Ae37,EA113,?,EA113-NA,,,,,, +5322,Ae38,EA113,?,EA113-NA,,,,,, +5323,Ae39,EA113,?,EA113-NA,,,,,, +5324,Ae4,EA113,?,EA113-NA,,,,,, +5325,Ae40,EA113,?,EA113-NA,,,,,, +5326,Ae41,EA113,?,EA113-NA,,,,,, +5327,Ae42,EA113,?,EA113-NA,,,,,, +5328,Ae43,EA113,?,EA113-NA,,,,,, +5329,Ae44,EA113,?,EA113-NA,,,,,, +5330,Ae45,EA113,?,EA113-NA,,,,,, +5331,Ae46,EA113,?,EA113-NA,,,,,, +5332,Ae47,EA113,?,EA113-NA,,,,,, +5333,Ae48,EA113,?,EA113-NA,,,,,, +5334,Ae49,EA113,?,EA113-NA,,,,,, +5335,Ae5,EA113,Flexible,EA113-2,,,,1910,Gray (1999); Greenbaum (1973), +5336,Ae50,EA113,?,EA113-NA,,,,,, +5337,Ae51,EA113,?,EA113-NA,,,,,, +5338,Ae52,EA113,?,EA113-NA,,,,,, +5339,Ae53,EA113,?,EA113-NA,,,,,, +5340,Ae54,EA113,?,EA113-NA,,,,,, +5341,Ae55,EA113,?,EA113-NA,,,,,, +5342,Ae56,EA113,?,EA113-NA,,,,,, +5343,Ae57,EA113,?,EA113-NA,,,,,, +5344,Ae58,EA113,?,EA113-NA,,,,,, +5345,Ae59,EA113,?,EA113-NA,,,,,, +5346,Ae6,EA113,?,EA113-NA,,,,,, +5347,Ae7,EA113,?,EA113-NA,,,,,, +5348,Ae8,EA113,?,EA113-NA,,,,,, +5349,Ae9,EA113,?,EA113-NA,,,,,, +5350,Af1,EA113,?,EA113-NA,,,,,, +5351,Af10,EA113,Flexible,EA113-2,,,,1930,Gray (1999); Greenbaum (1973), +5352,Af11,EA113,?,EA113-NA,,,,,, +5353,Af12,EA113,?,EA113-NA,,,,,, +5354,Af13,EA113,?,EA113-NA,,,,,, +5355,Af14,EA113,?,EA113-NA,,,,,, +5356,Af15,EA113,?,EA113-NA,,,,,, +5357,Af16,EA113,?,EA113-NA,,,,,, +5358,Af17,EA113,?,EA113-NA,,,,,, +5359,Af18,EA113,?,EA113-NA,,,,,, +5360,Af19,EA113,?,EA113-NA,,,,,, +5361,Af2,EA113,Rigid,EA113-1,,,,1950,Gray (1999); Greenbaum (1973), +5362,Af20,EA113,?,EA113-NA,,,,,, +5363,Af21,EA113,?,EA113-NA,,,,,, +5364,Af22,EA113,?,EA113-NA,,,,,, +5365,Af23,EA113,?,EA113-NA,,,,,, +5366,Af24,EA113,?,EA113-NA,,,,,, +5367,Af25,EA113,?,EA113-NA,,,,,, +5368,Af26,EA113,?,EA113-NA,,,,,, +5369,Af27,EA113,?,EA113-NA,,,,,, +5370,Af28,EA113,?,EA113-NA,,,,,, +5371,Af29,EA113,?,EA113-NA,,,,,, +5372,Af3,EA113,Flexible,EA113-2,,,Kumasi State,1900,Gray (1999); Greenbaum (1973), +5373,Af30,EA113,?,EA113-NA,,,,,, +5374,Af31,EA113,?,EA113-NA,,,,,, +5375,Af32,EA113,?,EA113-NA,,,,,, +5376,Af33,EA113,?,EA113-NA,,,,,, +5377,Af34,EA113,?,EA113-NA,,,,,, +5378,Af35,EA113,?,EA113-NA,,,,,, +5379,Af36,EA113,Flexible,EA113-2,,,with special reference to the Glidyi,1900,Gray (1999); Greenbaum (1973), +5380,Af37,EA113,?,EA113-NA,,,,,, +5381,Af38,EA113,?,EA113-NA,,,,,, +5382,Af39,EA113,?,EA113-NA,,,,,, +5383,Af4,EA113,?,EA113-NA,,,,,, +5384,Af40,EA113,?,EA113-NA,,,,,, +5385,Af41,EA113,?,EA113-NA,,,,,, +5386,Af42,EA113,?,EA113-NA,,,,,, +5387,Af43,EA113,?,EA113-NA,,,,,, +5388,Af44,EA113,?,EA113-NA,,,,,, +5389,Af45,EA113,?,EA113-NA,,,,,, +5390,Af46,EA113,?,EA113-NA,,,,,, +5391,Af47,EA113,?,EA113-NA,,,,,, +5392,Af48,EA113,?,EA113-NA,,,,,, +5393,Af49,EA113,?,EA113-NA,,,,,, +5394,Af5,EA113,Flexible,EA113-2,,,,1930,Gray (1999); Greenbaum (1973), +5395,Af50,EA113,?,EA113-NA,,,,,, +5396,Af51,EA113,?,EA113-NA,,,,,, +5397,Af52,EA113,?,EA113-NA,,,,,, +5398,Af53,EA113,?,EA113-NA,,,,,, +5399,Af54,EA113,?,EA113-NA,,,,,, +5400,Af55,EA113,?,EA113-NA,,,,,, +5401,Af56,EA113,?,EA113-NA,,,,,, +5402,Af57,EA113,?,EA113-NA,,,,,, +5403,Af58,EA113,?,EA113-NA,,,,,, +5404,Af6,EA113,?,EA113-NA,,,,,, +5405,Af7,EA113,?,EA113-NA,,,,,, +5406,Af8,EA113,Flexible,EA113-2,,,,1930,Gray (1999); Greenbaum (1973), +5407,Af9,EA113,?,EA113-NA,,,,,, +5408,Ag1,EA113,?,EA113-NA,,,,,, +5409,Ag10,EA113,?,EA113-NA,,,,,, +5410,Ag11,EA113,?,EA113-NA,,,,,, +5411,Ag12,EA113,?,EA113-NA,,,,,, +5412,Ag13,EA113,?,EA113-NA,,,,,, +5413,Ag14,EA113,?,EA113-NA,,,,,, +5414,Ag15,EA113,?,EA113-NA,,,,,, +5415,Ag16,EA113,?,EA113-NA,,,,,, +5416,Ag17,EA113,?,EA113-NA,,,,,, +5417,Ag18,EA113,?,EA113-NA,,,,,, +5418,Ag19,EA113,?,EA113-NA,,,,,, +5419,Ag2,EA113,?,EA113-NA,,,,,, +5420,Ag20,EA113,?,EA113-NA,,,,,, +5421,Ag21,EA113,?,EA113-NA,,,,,, +5422,Ag22,EA113,?,EA113-NA,,,,,, +5423,Ag23,EA113,?,EA113-NA,,,,,, +5424,Ag24,EA113,?,EA113-NA,,,,,, +5425,Ag25,EA113,?,EA113-NA,,,,,, +5426,Ag26,EA113,?,EA113-NA,,,,,, +5427,Ag27,EA113,?,EA113-NA,,,,,, +5428,Ag28,EA113,?,EA113-NA,,,,,, +5429,Ag29,EA113,?,EA113-NA,,,,,, +5430,Ag3,EA113,Rigid,EA113-1,,,,1930,Gray (1999); Greenbaum (1973), +5431,Ag30,EA113,?,EA113-NA,,,,,, +5432,Ag31,EA113,?,EA113-NA,,,,,, +5433,Ag32,EA113,?,EA113-NA,,,,,, +5434,Ag33,EA113,?,EA113-NA,,,,,, +5435,Ag34,EA113,?,EA113-NA,,,,,, +5436,Ag35,EA113,?,EA113-NA,,,,,, +5437,Ag36,EA113,?,EA113-NA,,,,,, +5438,Ag37,EA113,?,EA113-NA,,,,,, +5439,Ag38,EA113,?,EA113-NA,,,,,, +5440,Ag39,EA113,?,EA113-NA,,,,,, +5441,Ag4,EA113,Flexible,EA113-2,,,Tallensi Tribe,1930,Gray (1999); Greenbaum (1973), +5442,Ag40,EA113,?,EA113-NA,,,,,, +5443,Ag41,EA113,?,EA113-NA,,,,,, +5444,Ag42,EA113,?,EA113-NA,,,,,, +5445,Ag43,EA113,?,EA113-NA,,,,,, +5446,Ag44,EA113,?,EA113-NA,,,,,, +5447,Ag45,EA113,?,EA113-NA,,,,,, +5448,Ag46,EA113,?,EA113-NA,,,,,, +5449,Ag47,EA113,?,EA113-NA,,,,,, +5450,Ag48,EA113,?,EA113-NA,,,,,, +5451,Ag49,EA113,?,EA113-NA,,,,,, +5452,Ag5,EA113,?,EA113-NA,,,,,, +5453,Ag50,EA113,?,EA113-NA,,,,,, +5454,Ag51,EA113,?,EA113-NA,,,,,, +5455,Ag52,EA113,?,EA113-NA,,,,,, +5456,Ag53,EA113,?,EA113-NA,,,,,, +5457,Ag54,EA113,?,EA113-NA,,,,,, +5458,Ag6,EA113,?,EA113-NA,,,,,, +5459,Ag7,EA113,?,EA113-NA,,,,,, +5460,Ag8,EA113,?,EA113-NA,,,,,, +5461,Ag9,EA113,?,EA113-NA,,,,,, +5462,Ah1,EA113,?,EA113-NA,,,,,, +5463,Ah10,EA113,?,EA113-NA,,,,,, +5464,Ah11,EA113,?,EA113-NA,,,,,, +5465,Ah12,EA113,?,EA113-NA,,,,,, +5466,Ah13,EA113,?,EA113-NA,,,,,, +5467,Ah14,EA113,?,EA113-NA,,,,,, +5468,Ah15,EA113,?,EA113-NA,,,,,, +5469,Ah16,EA113,?,EA113-NA,,,,,, +5470,Ah17,EA113,?,EA113-NA,,,,,, +5471,Ah18,EA113,?,EA113-NA,,,,,, +5472,Ah19,EA113,?,EA113-NA,,,,,, +5473,Ah2,EA113,Rigid,EA113-1,,,,1920,Gray (1999); Greenbaum (1973), +5474,Ah20,EA113,?,EA113-NA,,,,,, +5475,Ah21,EA113,?,EA113-NA,,,,,, +5476,Ah22,EA113,?,EA113-NA,,,,,, +5477,Ah23,EA113,?,EA113-NA,,,,,, +5478,Ah24,EA113,?,EA113-NA,,,,,, +5479,Ah25,EA113,?,EA113-NA,,,,,, +5480,Ah26,EA113,?,EA113-NA,,,,,, +5481,Ah27,EA113,?,EA113-NA,,,,,, +5482,Ah28,EA113,?,EA113-NA,,,,,, +5483,Ah29,EA113,?,EA113-NA,,,,,, +5484,Ah3,EA113,Flexible,EA113-2,,,Tar of Benue Province,1920,Gray (1999); Greenbaum (1973), +5485,Ah30,EA113,?,EA113-NA,,,,,, +5486,Ah31,EA113,?,EA113-NA,,,,,, +5487,Ah32,EA113,?,EA113-NA,,,,,, +5488,Ah33,EA113,?,EA113-NA,,,,,, +5489,Ah34,EA113,?,EA113-NA,,,,,, +5490,Ah35,EA113,?,EA113-NA,,,,,, +5491,Ah36,EA113,?,EA113-NA,,,,,, +5492,Ah37,EA113,?,EA113-NA,,,,,, +5493,Ah38,EA113,?,EA113-NA,,,,,, +5494,Ah39,EA113,?,EA113-NA,,,,,, +5495,Ah4,EA113,?,EA113-NA,,,,,, +5496,Ah5,EA113,?,EA113-NA,,,,,, +5497,Ah6,EA113,?,EA113-NA,,,,,, +5498,Ah7,EA113,?,EA113-NA,,,,,, +5499,Ah8,EA113,?,EA113-NA,,,,,, +5500,Ah9,EA113,?,EA113-NA,,,,,, +5501,Ai1,EA113,?,EA113-NA,,,,,, +5502,Ai10,EA113,?,EA113-NA,,,,,, +5503,Ai11,EA113,?,EA113-NA,,,,,, +5504,Ai12,EA113,?,EA113-NA,,,,,, +5505,Ai13,EA113,?,EA113-NA,,,,,, +5506,Ai14,EA113,?,EA113-NA,,,,,, +5507,Ai15,EA113,?,EA113-NA,,,,,, +5508,Ai16,EA113,?,EA113-NA,,,,,, +5509,Ai17,EA113,?,EA113-NA,,,,,, +5510,Ai18,EA113,?,EA113-NA,,,,,, +5511,Ai19,EA113,?,EA113-NA,,,,,, +5512,Ai2,EA113,?,EA113-NA,,,,,, +5513,Ai20,EA113,?,EA113-NA,,,,,, +5514,Ai21,EA113,?,EA113-NA,,,,,, +5515,Ai22,EA113,?,EA113-NA,,,,,, +5516,Ai23,EA113,?,EA113-NA,,,,,, +5517,Ai24,EA113,?,EA113-NA,,,,,, +5518,Ai25,EA113,?,EA113-NA,,,,,, +5519,Ai26,EA113,?,EA113-NA,,,,,, +5520,Ai27,EA113,?,EA113-NA,,,,,, +5521,Ai28,EA113,?,EA113-NA,,,,,, +5522,Ai29,EA113,?,EA113-NA,,,,,, +5523,Ai3,EA113,Rigid,EA113-1,,,,1920,Gray (1999); Greenbaum (1973), +5524,Ai30,EA113,?,EA113-NA,,,,,, +5525,Ai31,EA113,?,EA113-NA,,,,,, +5526,Ai32,EA113,?,EA113-NA,,,,,, +5527,Ai33,EA113,?,EA113-NA,,,,,, +5528,Ai34,EA113,?,EA113-NA,,,,,, +5529,Ai35,EA113,?,EA113-NA,,,,,, +5530,Ai36,EA113,?,EA113-NA,,,,,, +5531,Ai37,EA113,?,EA113-NA,,,,,, +5532,Ai38,EA113,?,EA113-NA,,,,,, +5533,Ai39,EA113,?,EA113-NA,,,,,, +5534,Ai4,EA113,?,EA113-NA,,,,,, +5535,Ai40,EA113,?,EA113-NA,,,,,, +5536,Ai41,EA113,?,EA113-NA,,,,,, +5537,Ai42,EA113,?,EA113-NA,,,,,, +5538,Ai43,EA113,Rigid,EA113-1,,,,1930,Gray (1999); Greenbaum (1973), +5539,Ai44,EA113,?,EA113-NA,,,,,, +5540,Ai45,EA113,?,EA113-NA,,,,,, +5541,Ai46,EA113,?,EA113-NA,,,,,, +5542,Ai47,EA113,?,EA113-NA,,,,,, +5543,Ai5,EA113,?,EA113-NA,,,,,, +5544,Ai6,EA113,?,EA113-NA,,,,,, +5545,Ai7,EA113,?,EA113-NA,,,,,, +5546,Ai8,EA113,?,EA113-NA,,,,,, +5547,Ai9,EA113,?,EA113-NA,,,,,, +5548,Aj1,EA113,?,EA113-NA,,,,,, +5549,Aj10,EA113,?,EA113-NA,,,,,, +5550,Aj11,EA113,Rigid,EA113-1,,,,1900,Gray (1999); Greenbaum (1973), +5551,Aj12,EA113,?,EA113-NA,,,,,, +5552,Aj13,EA113,?,EA113-NA,,,,,, +5553,Aj14,EA113,?,EA113-NA,,,,,, +5554,Aj15,EA113,?,EA113-NA,,,,,, +5555,Aj16,EA113,?,EA113-NA,,,,,, +5556,Aj17,EA113,?,EA113-NA,,,,,, +5557,Aj18,EA113,?,EA113-NA,,,,,, +5558,Aj19,EA113,?,EA113-NA,,,,,, +5559,Aj2,EA113,?,EA113-NA,,,,,, +5560,Aj20,EA113,?,EA113-NA,,,,,, +5561,Aj21,EA113,?,EA113-NA,,,,,, +5562,Aj22,EA113,?,EA113-NA,,,,,, +5563,Aj23,EA113,?,EA113-NA,,,,,, +5564,Aj24,EA113,?,EA113-NA,,,,,, +5565,Aj25,EA113,?,EA113-NA,,,,,, +5566,Aj26,EA113,?,EA113-NA,,,,,, +5567,Aj27,EA113,?,EA113-NA,,,,,, +5568,Aj28,EA113,?,EA113-NA,,,,,, +5569,Aj29,EA113,?,EA113-NA,,,,,, +5570,Aj3,EA113,Flexible,EA113-2,,,,1930,Gray (1999); Greenbaum (1973), +5571,Aj30,EA113,?,EA113-NA,,,,,, +5572,Aj31,EA113,?,EA113-NA,,,,,, +5573,Aj4,EA113,?,EA113-NA,,,,,, +5574,Aj5,EA113,Flexible,EA113-2,,,,1920,Gray (1999); Greenbaum (1973), +5575,Aj6,EA113,?,EA113-NA,,,,,, +5576,Aj7,EA113,?,EA113-NA,,,,,, +5577,Aj8,EA113,?,EA113-NA,,,,,, +5578,Aj9,EA113,?,EA113-NA,,,,,, +5579,Ca1,EA113,?,EA113-NA,,,,,, +5580,Ca10,EA113,?,EA113-NA,,,,,, +5581,Ca11,EA113,?,EA113-NA,,,,,, +5582,Ca12,EA113,?,EA113-NA,,,,,, +5583,Ca13,EA113,?,EA113-NA,,,,,, +5584,Ca14,EA113,?,EA113-NA,,,,,, +5585,Ca15,EA113,?,EA113-NA,,,,,, +5586,Ca16,EA113,?,EA113-NA,,,,,, +5587,Ca17,EA113,?,EA113-NA,,,,,, +5588,Ca18,EA113,?,EA113-NA,,,,,, +5589,Ca19,EA113,?,EA113-NA,,,,,, +5590,Ca2,EA113,?,EA113-NA,,,,,, +5591,Ca20,EA113,?,EA113-NA,,,,,, +5592,Ca21,EA113,?,EA113-NA,,,,,, +5593,Ca22,EA113,?,EA113-NA,,,,,, +5594,Ca23,EA113,?,EA113-NA,,,,,, +5595,Ca24,EA113,?,EA113-NA,,,,,, +5596,Ca25,EA113,?,EA113-NA,,,,,, +5597,Ca26,EA113,?,EA113-NA,,,,,, +5598,Ca27,EA113,?,EA113-NA,,,,,, +5599,Ca28,EA113,?,EA113-NA,,,,,, +5600,Ca29,EA113,?,EA113-NA,,,,,, +5601,Ca3,EA113,?,EA113-NA,,,,,, +5602,Ca30,EA113,?,EA113-NA,,,,,, +5603,Ca31,EA113,?,EA113-NA,,,,,, +5604,Ca32,EA113,?,EA113-NA,,,,,, +5605,Ca33,EA113,?,EA113-NA,,,,,, +5606,Ca34,EA113,?,EA113-NA,,,,,, +5607,Ca35,EA113,?,EA113-NA,,,,,, +5608,Ca36,EA113,?,EA113-NA,,,,,, +5609,Ca37,EA113,?,EA113-NA,,,,,, +5610,Ca38,EA113,?,EA113-NA,,,,,, +5611,Ca39,EA113,?,EA113-NA,,,,,, +5612,Ca4,EA113,?,EA113-NA,,,,,, +5613,Ca40,EA113,?,EA113-NA,,,,,, +5614,Ca41,EA113,?,EA113-NA,,,,,, +5615,Ca42,EA113,?,EA113-NA,,,,,, +5616,Ca43,EA113,?,EA113-NA,,,,,, +5617,Ca5,EA113,?,EA113-NA,,,,,, +5618,Ca6,EA113,?,EA113-NA,,,,,, +5619,Ca7,EA113,?,EA113-NA,,,,,, +5620,Ca8,EA113,?,EA113-NA,,,,,, +5621,Ca9,EA113,?,EA113-NA,,,,,, +5622,Cb1,EA113,?,EA113-NA,,,,,, +5623,Cb10,EA113,?,EA113-NA,,,,,, +5624,Cb11,EA113,?,EA113-NA,,,,,, +5625,Cb12,EA113,?,EA113-NA,,,,,, +5626,Cb13,EA113,?,EA113-NA,,,,,, +5627,Cb14,EA113,?,EA113-NA,,,,,, +5628,Cb15,EA113,?,EA113-NA,,,,,, +5629,Cb16,EA113,?,EA113-NA,,,,,, +5630,Cb17,EA113,?,EA113-NA,,,,,, +5631,Cb18,EA113,?,EA113-NA,,,,,, +5632,Cb19,EA113,?,EA113-NA,,,,,, +5633,Cb2,EA113,?,EA113-NA,,,,,, +5634,Cb20,EA113,?,EA113-NA,,,,,, +5635,Cb21,EA113,?,EA113-NA,,,,,, +5636,Cb22,EA113,?,EA113-NA,,,,,, +5637,Cb23,EA113,?,EA113-NA,,,,,, +5638,Cb24,EA113,?,EA113-NA,,,,,, +5639,Cb25,EA113,?,EA113-NA,,,,,, +5640,Cb26,EA113,?,EA113-NA,,,,,, +5641,Cb27,EA113,?,EA113-NA,,,,,, +5642,Cb28,EA113,?,EA113-NA,,,,,, +5643,Cb29,EA113,?,EA113-NA,,,,,, +5644,Cb3,EA113,?,EA113-NA,,,,,, +5645,Cb4,EA113,?,EA113-NA,,,,,, +5646,Cb5,EA113,?,EA113-NA,,,,,, +5647,Cb6,EA113,?,EA113-NA,,,,,, +5648,Cb7,EA113,?,EA113-NA,,,,,, +5649,Cb8,EA113,?,EA113-NA,,,,,, +5650,Cb9,EA113,?,EA113-NA,,,,,, +5651,Cc1,EA113,?,EA113-NA,,,,,, +5652,Cc10,EA113,?,EA113-NA,,,,,, +5653,Cc11,EA113,?,EA113-NA,,,,,, +5654,Cc12,EA113,?,EA113-NA,,,,,, +5655,Cc13,EA113,?,EA113-NA,,,,,, +5656,Cc14,EA113,?,EA113-NA,,,,,, +5657,Cc15,EA113,?,EA113-NA,,,,,, +5658,Cc16,EA113,?,EA113-NA,,,,,, +5659,Cc17,EA113,?,EA113-NA,,,,,, +5660,Cc18,EA113,?,EA113-NA,,,,,, +5661,Cc19,EA113,?,EA113-NA,,,,,, +5662,Cc2,EA113,?,EA113-NA,,,,,, +5663,Cc20,EA113,?,EA113-NA,,,,,, +5664,Cc3,EA113,?,EA113-NA,,,,,, +5665,Cc4,EA113,?,EA113-NA,,,,,, +5666,Cc5,EA113,?,EA113-NA,,,,,, +5667,Cc6,EA113,?,EA113-NA,,,,,, +5668,Cc7,EA113,?,EA113-NA,,,,,, +5669,Cc8,EA113,?,EA113-NA,,,,,, +5670,Cc9,EA113,?,EA113-NA,,,,,, +5671,Cd1,EA113,?,EA113-NA,,,,,, +5672,Cd10,EA113,?,EA113-NA,,,,,, +5673,Cd11,EA113,?,EA113-NA,,,,,, +5674,Cd12,EA113,?,EA113-NA,,,,,, +5675,Cd13,EA113,?,EA113-NA,,,,,, +5676,Cd14,EA113,?,EA113-NA,,,,,, +5677,Cd15,EA113,?,EA113-NA,,,,,, +5678,Cd16,EA113,?,EA113-NA,,,,,, +5679,Cd17,EA113,?,EA113-NA,,,,,, +5680,Cd18,EA113,?,EA113-NA,,,,,, +5681,Cd19,EA113,?,EA113-NA,,,,,, +5682,Cd2,EA113,?,EA113-NA,,,,,, +5683,Cd20,EA113,?,EA113-NA,,,,,, +5684,Cd21,EA113,?,EA113-NA,,,,,, +5685,Cd3,EA113,?,EA113-NA,,,,,, +5686,Cd4,EA113,?,EA113-NA,,,,,, +5687,Cd5,EA113,?,EA113-NA,,,,,, +5688,Cd6,EA113,?,EA113-NA,,,,,, +5689,Cd7,EA113,?,EA113-NA,,,,,, +5690,Cd8,EA113,?,EA113-NA,,,,,, +5691,Cd9,EA113,?,EA113-NA,,,,,, +5692,Ce1,EA113,?,EA113-NA,,,,,, +5693,Ce2,EA113,?,EA113-NA,,,,,, +5694,Ce3,EA113,?,EA113-NA,,,,,, +5695,Ce4,EA113,?,EA113-NA,,,,,, +5696,Ce5,EA113,?,EA113-NA,,,,,, +5697,Ce6,EA113,?,EA113-NA,,,,,, +5698,Ce7,EA113,?,EA113-NA,,,,,, +5699,Ce8,EA113,?,EA113-NA,,,,,, +5700,Cf1,EA113,?,EA113-NA,,,,,, +5701,Cf2,EA113,?,EA113-NA,,,,,, +5702,Cf3,EA113,?,EA113-NA,,,,,, +5703,Cf4,EA113,?,EA113-NA,,,,,, +5704,Cf5,EA113,?,EA113-NA,,,,,, +5705,Cg1,EA113,?,EA113-NA,,,,,, +5706,Cg2,EA113,?,EA113-NA,,,,,, +5707,Cg3,EA113,?,EA113-NA,,,,,, +5708,Cg4,EA113,?,EA113-NA,,,,,, +5709,Cg5,EA113,?,EA113-NA,,,,,, +5710,Ch1,EA113,?,EA113-NA,,,,,, +5711,Ch10,EA113,?,EA113-NA,,,,,, +5712,Ch11,EA113,?,EA113-NA,,,,,, +5713,Ch2,EA113,?,EA113-NA,,,,,, +5714,Ch3,EA113,?,EA113-NA,,,,,, +5715,Ch4,EA113,?,EA113-NA,,,,,, +5716,Ch5,EA113,?,EA113-NA,,,,,, +5717,Ch6,EA113,?,EA113-NA,,,,,, +5718,Ch7,EA113,?,EA113-NA,,,,,, +5719,Ch8,EA113,?,EA113-NA,,,,,, +5720,Ch9,EA113,?,EA113-NA,,,,,, +5721,Ci1,EA113,?,EA113-NA,,,,,, +5722,Ci10,EA113,?,EA113-NA,,,,,, +5723,Ci11,EA113,?,EA113-NA,,,,,, +5724,Ci12,EA113,?,EA113-NA,,,,,, +5725,Ci2,EA113,?,EA113-NA,,,,,, +5726,Ci3,EA113,?,EA113-NA,,,,,, +5727,Ci4,EA113,?,EA113-NA,,,,,, +5728,Ci5,EA113,?,EA113-NA,,,,,, +5729,Ci6,EA113,?,EA113-NA,,,,,, +5730,Ci7,EA113,?,EA113-NA,,,,,, +5731,Ci8,EA113,?,EA113-NA,,,,,, +5732,Ci9,EA113,?,EA113-NA,,,,,, +5733,Cj1,EA113,?,EA113-NA,,,,,, +5734,Cj10,EA113,?,EA113-NA,,,,,, +5735,Cj2,EA113,?,EA113-NA,,,,,, +5736,Cj3,EA113,?,EA113-NA,,,,,, +5737,Cj4,EA113,?,EA113-NA,,,,,, +5738,Cj5,EA113,?,EA113-NA,,,,,, +5739,Cj6,EA113,?,EA113-NA,,,,,, +5740,Cj7,EA113,?,EA113-NA,,,,,, +5741,Cj8,EA113,?,EA113-NA,,,,,, +5742,Cj9,EA113,?,EA113-NA,,,,,, +5743,Ea1,EA113,?,EA113-NA,,,,,, +5744,Ea10,EA113,?,EA113-NA,,,,,, +5745,Ea11,EA113,?,EA113-NA,,,,,, +5746,Ea12,EA113,?,EA113-NA,,,,,, +5747,Ea13,EA113,?,EA113-NA,,,,,, +5748,Ea2,EA113,?,EA113-NA,,,,,, +5749,Ea3,EA113,?,EA113-NA,,,,,, +5750,Ea4,EA113,?,EA113-NA,,,,,, +5751,Ea5,EA113,?,EA113-NA,,,,,, +5752,Ea6,EA113,?,EA113-NA,,,,,, +5753,Ea7,EA113,?,EA113-NA,,,,,, +5754,Ea8,EA113,?,EA113-NA,,,,,, +5755,Ea9,EA113,?,EA113-NA,,,,,, +5756,Eb1,EA113,?,EA113-NA,,,,,, +5757,Eb2,EA113,?,EA113-NA,,,,,, +5758,Eb3,EA113,?,EA113-NA,,,,,, +5759,Eb4,EA113,?,EA113-NA,,,,,, +5760,Eb5,EA113,?,EA113-NA,,,,,, +5761,Eb6,EA113,?,EA113-NA,,,,,, +5762,Eb7,EA113,?,EA113-NA,,,,,, +5763,Eb8,EA113,?,EA113-NA,,,,,, +5764,Ec1,EA113,?,EA113-NA,,,,,, +5765,Ec10,EA113,?,EA113-NA,,,,,, +5766,Ec11,EA113,?,EA113-NA,,,,,, +5767,Ec2,EA113,?,EA113-NA,,,,,, +5768,Ec3,EA113,?,EA113-NA,,,,,, +5769,Ec4,EA113,?,EA113-NA,,,,,, +5770,Ec5,EA113,?,EA113-NA,,,,,, +5771,Ec6,EA113,?,EA113-NA,,,,,, +5772,Ec7,EA113,?,EA113-NA,,,,,, +5773,Ec8,EA113,?,EA113-NA,,,,,, +5774,Ec9,EA113,?,EA113-NA,,,,,, +5775,Ed1,EA113,?,EA113-NA,,,,,, +5776,Ed10,EA113,?,EA113-NA,,,,,, +5777,Ed13,EA113,?,EA113-NA,,,,,, +5778,Ed14,EA113,?,EA113-NA,,,,,, +5779,Ed15a,EA113,?,EA113-NA,,,,,, +5780,Ed15b,EA113,?,EA113-NA,,,,,, +5781,Ed16,EA113,?,EA113-NA,,,,,, +5782,Ed2,EA113,?,EA113-NA,,,,,, +5783,Ed3,EA113,?,EA113-NA,,,,,, +5784,Ed4,EA113,?,EA113-NA,,,,,, +5785,Ed5,EA113,?,EA113-NA,,,,,, +5786,Ed6,EA113,?,EA113-NA,,,,,, +5787,Ed7,EA113,?,EA113-NA,,,,,, +5788,Ed8,EA113,?,EA113-NA,,,,,, +5789,Ed9,EA113,?,EA113-NA,,,,,, +5790,Ee1,EA113,?,EA113-NA,,,,,, +5791,Ee2,EA113,?,EA113-NA,,,,,, +5792,Ee3,EA113,?,EA113-NA,,,,,, +5793,Ee4,EA113,?,EA113-NA,,,,,, +5794,Ee5,EA113,?,EA113-NA,,,,,, +5795,Ee6,EA113,?,EA113-NA,,,,,, +5796,Ee7,EA113,?,EA113-NA,,,,,, +5797,Ee8,EA113,?,EA113-NA,,,,,, +5798,Ef1,EA113,?,EA113-NA,,,,,, +5799,Ef10,EA113,?,EA113-NA,,,,,, +5800,Ef11,EA113,?,EA113-NA,,,,,, +5801,Ef2,EA113,?,EA113-NA,,,,,, +5802,Ef3,EA113,?,EA113-NA,,,,,, +5803,Ef4,EA113,?,EA113-NA,,,,,, +5804,Ef5,EA113,?,EA113-NA,,,,,, +5805,Ef6,EA113,?,EA113-NA,,,,,, +5806,Ef7,EA113,?,EA113-NA,,,,,, +5807,Ef8,EA113,?,EA113-NA,,,,,, +5808,Ef9,EA113,?,EA113-NA,,,,,, +5809,Eg1,EA113,?,EA113-NA,,,,,, +5810,Eg10,EA113,?,EA113-NA,,,,,, +5811,Eg11,EA113,?,EA113-NA,,,,,, +5812,Eg12,EA113,?,EA113-NA,,,,,, +5813,Eg13,EA113,?,EA113-NA,,,,,, +5814,Eg14,EA113,?,EA113-NA,,,,,, +5815,Eg2,EA113,?,EA113-NA,,,,,, +5816,Eg3,EA113,?,EA113-NA,,,,,, +5817,Eg4,EA113,?,EA113-NA,,,,,, +5818,Eg5,EA113,?,EA113-NA,,,,,, +5819,Eg6,EA113,?,EA113-NA,,,,,, +5820,Eg7,EA113,?,EA113-NA,,,,,, +5821,Eg8,EA113,?,EA113-NA,,,,,, +5822,Eg9,EA113,?,EA113-NA,,,,,, +5823,Eh1,EA113,?,EA113-NA,,,,,, +5824,Eh10,EA113,?,EA113-NA,,,,,, +5825,Eh2,EA113,?,EA113-NA,,,,,, +5826,Eh3,EA113,?,EA113-NA,,,,,, +5827,Eh4,EA113,?,EA113-NA,,,,,, +5828,Eh5,EA113,?,EA113-NA,,,,,, +5829,Eh6,EA113,?,EA113-NA,,,,,, +5830,Eh7,EA113,?,EA113-NA,,,,,, +5831,Eh8,EA113,?,EA113-NA,,,,,, +5832,Eh9,EA113,?,EA113-NA,,,,,, +5833,Ei1,EA113,?,EA113-NA,,,,,, +5834,Ei10,EA113,?,EA113-NA,,,,,, +5835,Ei11,EA113,?,EA113-NA,,,,,, +5836,Ei12,EA113,?,EA113-NA,,,,,, +5837,Ei13,EA113,?,EA113-NA,,,,,, +5838,Ei14,EA113,?,EA113-NA,,,,,, +5839,Ei15,EA113,?,EA113-NA,,,,,, +5840,Ei16,EA113,?,EA113-NA,,,,,, +5841,Ei17,EA113,?,EA113-NA,,,,,, +5842,Ei18,EA113,?,EA113-NA,,,,,, +5843,Ei19,EA113,?,EA113-NA,,,,,, +5844,Ei2,EA113,?,EA113-NA,,,,,, +5845,Ei20,EA113,?,EA113-NA,,,,,, +5846,Ei3,EA113,?,EA113-NA,,,,,, +5847,Ei4,EA113,?,EA113-NA,,,,,, +5848,Ei5,EA113,?,EA113-NA,,,,,, +5849,Ei6,EA113,?,EA113-NA,,,,,, +5850,Ei7,EA113,?,EA113-NA,,,,,, +5851,Ei8,EA113,?,EA113-NA,,,,,, +5852,Ei9,EA113,?,EA113-NA,,,,,, +5853,Ej1,EA113,?,EA113-NA,,,,,, +5854,Ej10,EA113,?,EA113-NA,,,,,, +5855,Ej11,EA113,?,EA113-NA,,,,,, +5856,Ej12,EA113,?,EA113-NA,,,,,, +5857,Ej13,EA113,?,EA113-NA,,,,,, +5858,Ej14,EA113,?,EA113-NA,,,,,, +5859,Ej15,EA113,?,EA113-NA,,,,,, +5860,Ej16,EA113,?,EA113-NA,,,,,, +5861,Ej2,EA113,?,EA113-NA,,,,,, +5862,Ej3,EA113,?,EA113-NA,,,,,, +5863,Ej4,EA113,?,EA113-NA,,,,,, +5864,Ej5,EA113,?,EA113-NA,,,,,, +5865,Ej6,EA113,?,EA113-NA,,,,,, +5866,Ej7,EA113,?,EA113-NA,,,,,, +5867,Ej8,EA113,?,EA113-NA,,,,,, +5868,Ej9,EA113,?,EA113-NA,,,,,, +5869,Ia1,EA113,?,EA113-NA,,,,,, +5870,Ia10,EA113,?,EA113-NA,,,,,, +5871,Ia11,EA113,?,EA113-NA,,,,,, +5872,Ia12,EA113,?,EA113-NA,,,,,, +5873,Ia13,EA113,?,EA113-NA,,,,,, +5874,Ia14,EA113,?,EA113-NA,,,,,, +5875,Ia15,EA113,?,EA113-NA,,,,,, +5876,Ia16,EA113,?,EA113-NA,,,,,, +5877,Ia17,EA113,?,EA113-NA,,,,,, +5878,Ia18,EA113,?,EA113-NA,,,,,, +5879,Ia2,EA113,?,EA113-NA,,,,,, +5880,Ia3,EA113,?,EA113-NA,,,,,, +5881,Ia4,EA113,?,EA113-NA,,,,,, +5882,Ia5,EA113,?,EA113-NA,,,,,, +5883,Ia6,EA113,?,EA113-NA,,,,,, +5884,Ia7,EA113,?,EA113-NA,,,,,, +5885,Ia8,EA113,?,EA113-NA,,,,,, +5886,Ia9,EA113,?,EA113-NA,,,,,, +5887,Ib1,EA113,?,EA113-NA,,,,,, +5888,Ib2,EA113,?,EA113-NA,,,,,, +5889,Ib3,EA113,?,EA113-NA,,,,,, +5890,Ib4,EA113,?,EA113-NA,,,,,, +5891,Ib5,EA113,?,EA113-NA,,,,,, +5892,Ib6,EA113,?,EA113-NA,,,,,, +5893,Ib7,EA113,?,EA113-NA,,,,,, +5894,Ib8,EA113,?,EA113-NA,,,,,, +5895,Ib9,EA113,?,EA113-NA,,,,,, +5896,Ic1,EA113,?,EA113-NA,,,,,, +5897,Ic10,EA113,?,EA113-NA,,,,,, +5898,Ic11,EA113,?,EA113-NA,,,,,, +5899,Ic12,EA113,?,EA113-NA,,,,,, +5900,Ic13,EA113,?,EA113-NA,,,,,, +5901,Ic2,EA113,?,EA113-NA,,,,,, +5902,Ic3,EA113,?,EA113-NA,,,,,, +5903,Ic4,EA113,?,EA113-NA,,,,,, +5904,Ic5,EA113,?,EA113-NA,,,,,, +5905,Ic6,EA113,?,EA113-NA,,,,,, +5906,Ic7,EA113,?,EA113-NA,,,,,, +5907,Ic8,EA113,?,EA113-NA,,,,,, +5908,Ic9,EA113,?,EA113-NA,,,,,, +5909,Id1,EA113,?,EA113-NA,,,,,, +5910,Id10,EA113,?,EA113-NA,,,,,, +5911,Id11,EA113,?,EA113-NA,,,,,, +5912,Id12,EA113,?,EA113-NA,,,,,, +5913,Id13,EA113,?,EA113-NA,,,,,, +5914,Id2,EA113,?,EA113-NA,,,,,, +5915,Id3,EA113,?,EA113-NA,,,,,, +5916,Id4,EA113,?,EA113-NA,,,,,, +5917,Id5,EA113,?,EA113-NA,,,,,, +5918,Id6,EA113,?,EA113-NA,,,,,, +5919,Id7,EA113,?,EA113-NA,,,,,, +5920,Id8,EA113,?,EA113-NA,,,,,, +5921,Id9,EA113,?,EA113-NA,,,,,, +5922,Ie1,EA113,?,EA113-NA,,,,,, +5923,Ie10,EA113,?,EA113-NA,,,,,, +5924,Ie11,EA113,?,EA113-NA,,,,,, +5925,Ie12,EA113,?,EA113-NA,,,,,, +5926,Ie13,EA113,?,EA113-NA,,,,,, +5927,Ie14,EA113,?,EA113-NA,,,,,, +5928,Ie15,EA113,?,EA113-NA,,,,,, +5929,Ie16,EA113,?,EA113-NA,,,,,, +5930,Ie17,EA113,?,EA113-NA,,,,,, +5931,Ie18,EA113,?,EA113-NA,,,,,, +5932,Ie19,EA113,?,EA113-NA,,,,,, +5933,Ie2,EA113,?,EA113-NA,,,,,, +5934,Ie20,EA113,?,EA113-NA,,,,,, +5935,Ie21,EA113,?,EA113-NA,,,,,, +5936,Ie22,EA113,?,EA113-NA,,,,,, +5937,Ie23,EA113,?,EA113-NA,,,,,, +5938,Ie24,EA113,?,EA113-NA,,,,,, +5939,Ie25,EA113,?,EA113-NA,,,,,, +5940,Ie26,EA113,?,EA113-NA,,,,,, +5941,Ie27,EA113,?,EA113-NA,,,,,, +5942,Ie28,EA113,?,EA113-NA,,,,,, +5943,Ie29,EA113,?,EA113-NA,,,,,, +5944,Ie3,EA113,?,EA113-NA,,,,,, +5945,Ie30,EA113,?,EA113-NA,,,,,, +5946,Ie31,EA113,?,EA113-NA,,,,,, +5947,Ie32,EA113,?,EA113-NA,,,,,, +5948,Ie33,EA113,?,EA113-NA,,,,,, +5949,Ie34,EA113,?,EA113-NA,,,,,, +5950,Ie35,EA113,?,EA113-NA,,,,,, +5951,Ie36,EA113,?,EA113-NA,,,,,, +5952,Ie37,EA113,?,EA113-NA,,,,,, +5953,Ie38,EA113,?,EA113-NA,,,,,, +5954,Ie39,EA113,?,EA113-NA,,,,,, +5955,Ie4,EA113,?,EA113-NA,,,,,, +5956,Ie5,EA113,?,EA113-NA,,,,,, +5957,Ie6,EA113,?,EA113-NA,,,,,, +5958,Ie7,EA113,?,EA113-NA,,,,,, +5959,Ie8,EA113,?,EA113-NA,,,,,, +5960,Ie9,EA113,?,EA113-NA,,,,,, +5961,If1,EA113,?,EA113-NA,,,,,, +5962,If10,EA113,?,EA113-NA,,,,,, +5963,If11,EA113,?,EA113-NA,,,,,, +5964,If12,EA113,?,EA113-NA,,,,,, +5965,If13,EA113,?,EA113-NA,,,,,, +5966,If14,EA113,?,EA113-NA,,,,,, +5967,If15,EA113,?,EA113-NA,,,,,, +5968,If16,EA113,?,EA113-NA,,,,,, +5969,If17,EA113,?,EA113-NA,,,,,, +5970,If2,EA113,?,EA113-NA,,,,,, +5971,If3,EA113,?,EA113-NA,,,,,, +5972,If4,EA113,?,EA113-NA,,,,,, +5973,If5,EA113,?,EA113-NA,,,,,, +5974,If6,EA113,?,EA113-NA,,,,,, +5975,If7,EA113,?,EA113-NA,,,,,, +5976,If8,EA113,?,EA113-NA,,,,,, +5977,If9,EA113,?,EA113-NA,,,,,, +5978,Ig1,EA113,?,EA113-NA,,,,,, +5979,Ig10,EA113,?,EA113-NA,,,,,, +5980,Ig11,EA113,?,EA113-NA,,,,,, +5981,Ig12,EA113,?,EA113-NA,,,,,, +5982,Ig13,EA113,?,EA113-NA,,,,,, +5983,Ig14,EA113,?,EA113-NA,,,,,, +5984,Ig15,EA113,?,EA113-NA,,,,,, +5985,Ig16,EA113,?,EA113-NA,,,,,, +5986,Ig17,EA113,?,EA113-NA,,,,,, +5987,Ig18,EA113,?,EA113-NA,,,,,, +5988,Ig19,EA113,?,EA113-NA,,,,,, +5989,Ig2,EA113,?,EA113-NA,,,,,, +5990,Ig20,EA113,?,EA113-NA,,,,,, +5991,Ig21,EA113,?,EA113-NA,,,,,, +5992,Ig3,EA113,?,EA113-NA,,,,,, +5993,Ig4,EA113,?,EA113-NA,,,,,, +5994,Ig5,EA113,?,EA113-NA,,,,,, +5995,Ig6,EA113,?,EA113-NA,,,,,, +5996,Ig7,EA113,?,EA113-NA,,,,,, +5997,Ig8,EA113,?,EA113-NA,,,,,, +5998,Ig9,EA113,?,EA113-NA,,,,,, +5999,Ih1,EA113,?,EA113-NA,,,,,, +6000,Ih10,EA113,?,EA113-NA,,,,,, +6001,Ih11,EA113,?,EA113-NA,,,,,, +6002,Ih12,EA113,?,EA113-NA,,,,,, +6003,Ih13,EA113,?,EA113-NA,,,,,, +6004,Ih14,EA113,?,EA113-NA,,,,,, +6005,Ih2,EA113,?,EA113-NA,,,,,, +6006,Ih3,EA113,?,EA113-NA,,,,,, +6007,Ih4,EA113,?,EA113-NA,,,,,, +6008,Ih5,EA113,?,EA113-NA,,,,,, +6009,Ih6,EA113,?,EA113-NA,,,,,, +6010,Ih7,EA113,?,EA113-NA,,,,,, +6011,Ih8,EA113,?,EA113-NA,,,,,, +6012,Ih9,EA113,?,EA113-NA,,,,,, +6013,Ii1,EA113,?,EA113-NA,,,,,, +6014,Ii10,EA113,?,EA113-NA,,,,,, +6015,Ii12,EA113,?,EA113-NA,,,,,, +6016,Ii13,EA113,?,EA113-NA,,,,,, +6017,Ii14,EA113,?,EA113-NA,,,,,, +6018,Ii2,EA113,?,EA113-NA,,,,,, +6019,Ii3,EA113,?,EA113-NA,,,,,, +6020,Ii4,EA113,?,EA113-NA,,,,,, +6021,Ii5,EA113,?,EA113-NA,,,,,, +6022,Ii6,EA113,?,EA113-NA,,,,,, +6023,Ii7,EA113,?,EA113-NA,,,,,, +6024,Ii8,EA113,?,EA113-NA,,,,,, +6025,Ii9,EA113,?,EA113-NA,,,,,, +6026,Ij1,EA113,?,EA113-NA,,,,,, +6027,Ij10,EA113,?,EA113-NA,,,,,, +6028,Ij2,EA113,?,EA113-NA,,,,,, +6029,Ij3,EA113,?,EA113-NA,,,,,, +6030,Ij4,EA113,?,EA113-NA,,,,,, +6031,Ij5,EA113,?,EA113-NA,,,,,, +6032,Ij6,EA113,?,EA113-NA,,,,,, +6033,Ij7,EA113,?,EA113-NA,,,,,, +6034,Ij8,EA113,?,EA113-NA,,,,,, +6035,Ij9,EA113,?,EA113-NA,,,,,, +6036,Na1,EA113,?,EA113-NA,,,,,, +6037,Na10,EA113,?,EA113-NA,,,,,, +6038,Na11,EA113,?,EA113-NA,,,,,, +6039,Na12,EA113,?,EA113-NA,,,,,, +6040,Na13,EA113,?,EA113-NA,,,,,, +6041,Na14,EA113,?,EA113-NA,,,,,, +6042,Na15,EA113,?,EA113-NA,,,,,, +6043,Na16,EA113,?,EA113-NA,,,,,, +6044,Na17,EA113,?,EA113-NA,,,,,, +6045,Na19,EA113,?,EA113-NA,,,,,, +6046,Na2,EA113,?,EA113-NA,,,,,, +6047,Na20,EA113,?,EA113-NA,,,,,, +6048,Na21,EA113,?,EA113-NA,,,,,, +6049,Na22,EA113,?,EA113-NA,,,,,, +6050,Na23,EA113,?,EA113-NA,,,,,, +6051,Na24,EA113,?,EA113-NA,,,,,, +6052,Na25,EA113,?,EA113-NA,,,,,, +6053,Na26,EA113,?,EA113-NA,,,,,, +6054,Na27,EA113,?,EA113-NA,,,,,, +6055,Na28,EA113,?,EA113-NA,,,,,, +6056,Na29,EA113,?,EA113-NA,,,,,, +6057,Na3,EA113,?,EA113-NA,,,,,, +6058,Na30,EA113,?,EA113-NA,,,,,, +6059,Na31,EA113,?,EA113-NA,,,,,, +6060,Na32,EA113,?,EA113-NA,,,,,, +6061,Na33,EA113,?,EA113-NA,,,,,, +6062,Na34,EA113,?,EA113-NA,,,,,, +6063,Na35,EA113,?,EA113-NA,,,,,, +6064,Na36,EA113,?,EA113-NA,,,,,, +6065,Na37,EA113,?,EA113-NA,,,,,, +6066,Na38,EA113,?,EA113-NA,,,,,, +6067,Na39,EA113,?,EA113-NA,,,,,, +6068,Na4,EA113,?,EA113-NA,,,,,, +6069,Na40,EA113,?,EA113-NA,,,,,, +6070,Na41,EA113,?,EA113-NA,,,,,, +6071,Na42,EA113,?,EA113-NA,,,,,, +6072,Na43,EA113,?,EA113-NA,,,,,, +6073,Na44,EA113,?,EA113-NA,,,,,, +6074,Na45,EA113,?,EA113-NA,,,,,, +6075,Na5,EA113,?,EA113-NA,,,,,, +6076,Na6,EA113,?,EA113-NA,,,,,, +6077,Na7,EA113,?,EA113-NA,,,,,, +6078,Na8,EA113,?,EA113-NA,,,,,, +6079,Na9,EA113,?,EA113-NA,,,,,, +6080,Nb1,EA113,?,EA113-NA,,,,,, +6081,Nb10,EA113,?,EA113-NA,,,,,, +6082,Nb11,EA113,?,EA113-NA,,,,,, +6083,Nb12,EA113,?,EA113-NA,,,,,, +6084,Nb13,EA113,?,EA113-NA,,,,,, +6085,Nb14,EA113,?,EA113-NA,,,,,, +6086,Nb15,EA113,?,EA113-NA,,,,,, +6087,Nb16,EA113,?,EA113-NA,,,,,, +6088,Nb17,EA113,?,EA113-NA,,,,,, +6089,Nb18,EA113,?,EA113-NA,,,,,, +6090,Nb19,EA113,?,EA113-NA,,,,,, +6091,Nb2,EA113,?,EA113-NA,,,,,, +6092,Nb20,EA113,?,EA113-NA,,,,,, +6093,Nb21,EA113,?,EA113-NA,,,,,, +6094,Nb22,EA113,?,EA113-NA,,,,,, +6095,Nb23,EA113,?,EA113-NA,,,,,, +6096,Nb24,EA113,?,EA113-NA,,,,,, +6097,Nb25,EA113,?,EA113-NA,,,,,, +6098,Nb26,EA113,?,EA113-NA,,,,,, +6099,Nb27,EA113,?,EA113-NA,,,,,, +6100,Nb28,EA113,?,EA113-NA,,,,,, +6101,Nb29,EA113,?,EA113-NA,,,,,, +6102,Nb3,EA113,?,EA113-NA,,,,,, +6103,Nb30,EA113,?,EA113-NA,,,,,, +6104,Nb31,EA113,?,EA113-NA,,,,,, +6105,Nb32,EA113,?,EA113-NA,,,,,, +6106,Nb33,EA113,?,EA113-NA,,,,,, +6107,Nb34,EA113,?,EA113-NA,,,,,, +6108,Nb35,EA113,?,EA113-NA,,,,,, +6109,Nb36,EA113,?,EA113-NA,,,,,, +6110,Nb37,EA113,?,EA113-NA,,,,,, +6111,Nb38,EA113,?,EA113-NA,,,,,, +6112,Nb39,EA113,?,EA113-NA,,,,,, +6113,Nb4,EA113,?,EA113-NA,,,,,, +6114,Nb5,EA113,?,EA113-NA,,,,,, +6115,Nb6,EA113,?,EA113-NA,,,,,, +6116,Nb7,EA113,?,EA113-NA,,,,,, +6117,Nb8,EA113,?,EA113-NA,,,,,, +6118,Nb9,EA113,?,EA113-NA,,,,,, +6119,Nc1,EA113,?,EA113-NA,,,,,, +6120,Nc10,EA113,?,EA113-NA,,,,,, +6121,Nc11,EA113,?,EA113-NA,,,,,, +6122,Nc12,EA113,?,EA113-NA,,,,,, +6123,Nc13,EA113,?,EA113-NA,,,,,, +6124,Nc14,EA113,?,EA113-NA,,,,,, +6125,Nc15,EA113,?,EA113-NA,,,,,, +6126,Nc16,EA113,?,EA113-NA,,,,,, +6127,Nc17,EA113,?,EA113-NA,,,,,, +6128,Nc18,EA113,?,EA113-NA,,,,,, +6129,Nc19,EA113,?,EA113-NA,,,,,, +6130,Nc2,EA113,?,EA113-NA,,,,,, +6131,Nc20,EA113,?,EA113-NA,,,,,, +6132,Nc21,EA113,?,EA113-NA,,,,,, +6133,Nc22,EA113,?,EA113-NA,,,,,, +6134,Nc23,EA113,?,EA113-NA,,,,,, +6135,Nc24,EA113,?,EA113-NA,,,,,, +6136,Nc25,EA113,?,EA113-NA,,,,,, +6137,Nc26,EA113,?,EA113-NA,,,,,, +6138,Nc27,EA113,?,EA113-NA,,,,,, +6139,Nc28,EA113,?,EA113-NA,,,,,, +6140,Nc29,EA113,?,EA113-NA,,,,,, +6141,Nc3,EA113,?,EA113-NA,,,,,, +6142,Nc30,EA113,?,EA113-NA,,,,,, +6143,Nc31,EA113,?,EA113-NA,,,,,, +6144,Nc32,EA113,?,EA113-NA,,,,,, +6145,Nc33,EA113,?,EA113-NA,,,,,, +6146,Nc34,EA113,?,EA113-NA,,,,,, +6147,Nc4,EA113,?,EA113-NA,,,,,, +6148,Nc5,EA113,?,EA113-NA,,,,,, +6149,Nc6,EA113,?,EA113-NA,,,,,, +6150,Nc7,EA113,?,EA113-NA,,,,,, +6151,Nc8,EA113,?,EA113-NA,,,,,, +6152,Nc9,EA113,?,EA113-NA,,,,,, +6153,Nd1,EA113,?,EA113-NA,,,,,, +6154,Nd10,EA113,?,EA113-NA,,,,,, +6155,Nd11,EA113,?,EA113-NA,,,,,, +6156,Nd12,EA113,?,EA113-NA,,,,,, +6157,Nd13,EA113,?,EA113-NA,,,,,, +6158,Nd14,EA113,?,EA113-NA,,,,,, +6159,Nd15,EA113,?,EA113-NA,,,,,, +6160,Nd16,EA113,?,EA113-NA,,,,,, +6161,Nd17,EA113,?,EA113-NA,,,,,, +6162,Nd18,EA113,?,EA113-NA,,,,,, +6163,Nd19,EA113,?,EA113-NA,,,,,, +6164,Nd2,EA113,?,EA113-NA,,,,,, +6165,Nd20,EA113,?,EA113-NA,,,,,, +6166,Nd21,EA113,?,EA113-NA,,,,,, +6167,Nd22,EA113,?,EA113-NA,,,,,, +6168,Nd23,EA113,?,EA113-NA,,,,,, +6169,Nd24,EA113,?,EA113-NA,,,,,, +6170,Nd25,EA113,?,EA113-NA,,,,,, +6171,Nd26,EA113,?,EA113-NA,,,,,, +6172,Nd27,EA113,?,EA113-NA,,,,,, +6173,Nd28,EA113,?,EA113-NA,,,,,, +6174,Nd29,EA113,?,EA113-NA,,,,,, +6175,Nd3,EA113,?,EA113-NA,,,,,, +6176,Nd30,EA113,?,EA113-NA,,,,,, +6177,Nd31,EA113,?,EA113-NA,,,,,, +6178,Nd32,EA113,?,EA113-NA,,,,,, +6179,Nd33,EA113,?,EA113-NA,,,,,, +6180,Nd34,EA113,?,EA113-NA,,,,,, +6181,Nd35,EA113,?,EA113-NA,,,,,, +6182,Nd36,EA113,?,EA113-NA,,,,,, +6183,Nd37,EA113,?,EA113-NA,,,,,, +6184,Nd38,EA113,?,EA113-NA,,,,,, +6185,Nd39,EA113,?,EA113-NA,,,,,, +6186,Nd4,EA113,?,EA113-NA,,,,,, +6187,Nd40,EA113,?,EA113-NA,,,,,, +6188,Nd41,EA113,?,EA113-NA,,,,,, +6189,Nd42,EA113,?,EA113-NA,,,,,, +6190,Nd43,EA113,?,EA113-NA,,,,,, +6191,Nd44,EA113,?,EA113-NA,,,,,, +6192,Nd45,EA113,?,EA113-NA,,,,,, +6193,Nd46,EA113,?,EA113-NA,,,,,, +6194,Nd47,EA113,?,EA113-NA,,,,,, +6195,Nd48,EA113,?,EA113-NA,,,,,, +6196,Nd49,EA113,?,EA113-NA,,,,,, +6197,Nd5,EA113,?,EA113-NA,,,,,, +6198,Nd50,EA113,?,EA113-NA,,,,,, +6199,Nd51,EA113,?,EA113-NA,,,,,, +6200,Nd52,EA113,?,EA113-NA,,,,,, +6201,Nd53,EA113,?,EA113-NA,,,,,, +6202,Nd54,EA113,?,EA113-NA,,,,,, +6203,Nd55,EA113,?,EA113-NA,,,,,, +6204,Nd56,EA113,?,EA113-NA,,,,,, +6205,Nd57,EA113,?,EA113-NA,,,,,, +6206,Nd58,EA113,?,EA113-NA,,,,,, +6207,Nd59,EA113,?,EA113-NA,,,,,, +6208,Nd6,EA113,?,EA113-NA,,,,,, +6209,Nd60,EA113,?,EA113-NA,,,,,, +6210,Nd61,EA113,?,EA113-NA,,,,,, +6211,Nd62,EA113,?,EA113-NA,,,,,, +6212,Nd63,EA113,?,EA113-NA,,,,,, +6213,Nd64,EA113,?,EA113-NA,,,,,, +6214,Nd65,EA113,?,EA113-NA,,,,,, +6215,Nd66,EA113,?,EA113-NA,,,,,, +6216,Nd67,EA113,?,EA113-NA,,,,,, +6217,Nd7,EA113,?,EA113-NA,,,,,, +6218,Nd8,EA113,?,EA113-NA,,,,,, +6219,Nd9,EA113,?,EA113-NA,,,,,, +6220,Ne1,EA113,?,EA113-NA,,,,,, +6221,Ne10,EA113,?,EA113-NA,,,,,, +6222,Ne11,EA113,?,EA113-NA,,,,,, +6223,Ne12,EA113,?,EA113-NA,,,,,, +6224,Ne13,EA113,?,EA113-NA,,,,,, +6225,Ne14,EA113,?,EA113-NA,,,,,, +6226,Ne15,EA113,?,EA113-NA,,,,,, +6227,Ne16,EA113,?,EA113-NA,,,,,, +6228,Ne17,EA113,?,EA113-NA,,,,,, +6229,Ne18,EA113,?,EA113-NA,,,,,, +6230,Ne19,EA113,?,EA113-NA,,,,,, +6231,Ne2,EA113,?,EA113-NA,,,,,, +6232,Ne20,EA113,?,EA113-NA,,,,,, +6233,Ne21,EA113,?,EA113-NA,,,,,, +6234,Ne3,EA113,?,EA113-NA,,,,,, +6235,Ne4,EA113,?,EA113-NA,,,,,, +6236,Ne5,EA113,?,EA113-NA,,,,,, +6237,Ne6,EA113,?,EA113-NA,,,,,, +6238,Ne7,EA113,?,EA113-NA,,,,,, +6239,Ne8,EA113,?,EA113-NA,,,,,, +6240,Ne9,EA113,?,EA113-NA,,,,,, +6241,Nf10,EA113,?,EA113-NA,,,,,, +6242,Nf11,EA113,?,EA113-NA,,,,,, +6243,Nf12,EA113,?,EA113-NA,,,,,, +6244,Nf13,EA113,?,EA113-NA,,,,,, +6245,Nf14,EA113,?,EA113-NA,,,,,, +6246,Nf15,EA113,?,EA113-NA,,,,,, +6247,Nf2,EA113,?,EA113-NA,,,,,, +6248,Nf3,EA113,?,EA113-NA,,,,,, +6249,Nf4,EA113,?,EA113-NA,,,,,, +6250,Nf5,EA113,?,EA113-NA,,,,,, +6251,Nf6,EA113,?,EA113-NA,,,,,, +6252,Nf7,EA113,?,EA113-NA,,,,,, +6253,Nf8,EA113,?,EA113-NA,,,,,, +6254,Nf9,EA113,?,EA113-NA,,,,,, +6255,Ng1,EA113,?,EA113-NA,,,,,, +6256,Ng10,EA113,?,EA113-NA,,,,,, +6257,Ng11,EA113,?,EA113-NA,,,,,, +6258,Ng12,EA113,?,EA113-NA,,,,,, +6259,Ng13,EA113,?,EA113-NA,,,,,, +6260,Ng14,EA113,?,EA113-NA,,,,,, +6261,Ng15,EA113,?,EA113-NA,,,,,, +6262,Ng2,EA113,?,EA113-NA,,,,,, +6263,Ng3,EA113,?,EA113-NA,,,,,, +6264,Ng4,EA113,?,EA113-NA,,,,,, +6265,Ng5,EA113,?,EA113-NA,,,,,, +6266,Ng6,EA113,?,EA113-NA,,,,,, +6267,Ng7,EA113,?,EA113-NA,,,,,, +6268,Ng8,EA113,?,EA113-NA,,,,,, +6269,Ng9,EA113,?,EA113-NA,,,,,, +6270,Nh1,EA113,?,EA113-NA,,,,,, +6271,Nh10,EA113,?,EA113-NA,,,,,, +6272,Nh11,EA113,?,EA113-NA,,,,,, +6273,Nh12,EA113,?,EA113-NA,,,,,, +6274,Nh13,EA113,?,EA113-NA,,,,,, +6275,Nh14,EA113,?,EA113-NA,,,,,, +6276,Nh15,EA113,?,EA113-NA,,,,,, +6277,Nh16,EA113,?,EA113-NA,,,,,, +6278,Nh17,EA113,?,EA113-NA,,,,,, +6279,Nh18,EA113,?,EA113-NA,,,,,, +6280,Nh19,EA113,?,EA113-NA,,,,,, +6281,Nh2,EA113,?,EA113-NA,,,,,, +6282,Nh20,EA113,?,EA113-NA,,,,,, +6283,Nh21,EA113,?,EA113-NA,,,,,, +6284,Nh22,EA113,?,EA113-NA,,,,,, +6285,Nh23,EA113,?,EA113-NA,,,,,, +6286,Nh24,EA113,?,EA113-NA,,,,,, +6287,Nh25,EA113,?,EA113-NA,,,,,, +6288,Nh26,EA113,?,EA113-NA,,,,,, +6289,Nh27,EA113,?,EA113-NA,,,,,, +6290,Nh3,EA113,?,EA113-NA,,,,,, +6291,Nh4,EA113,?,EA113-NA,,,,,, +6292,Nh5,EA113,?,EA113-NA,,,,,, +6293,Nh6,EA113,?,EA113-NA,,,,,, +6294,Nh7,EA113,?,EA113-NA,,,,,, +6295,Nh8,EA113,?,EA113-NA,,,,,, +6296,Nh9,EA113,?,EA113-NA,,,,,, +6297,Ni1,EA113,?,EA113-NA,,,,,, +6298,Ni2,EA113,?,EA113-NA,,,,,, +6299,Ni3,EA113,?,EA113-NA,,,,,, +6300,Ni4,EA113,?,EA113-NA,,,,,, +6301,Ni5,EA113,?,EA113-NA,,,,,, +6302,Ni6,EA113,?,EA113-NA,,,,,, +6303,Ni7,EA113,?,EA113-NA,,,,,, +6304,Ni8,EA113,?,EA113-NA,,,,,, +6305,Ni9,EA113,?,EA113-NA,,,,,, +6306,Nj1,EA113,?,EA113-NA,,,,,, +6307,Nj10,EA113,?,EA113-NA,,,,,, +6308,Nj11,EA113,?,EA113-NA,,,,,, +6309,Nj12,EA113,?,EA113-NA,,,,,, +6310,Nj13,EA113,?,EA113-NA,,,,,, +6311,Nj14,EA113,?,EA113-NA,,,,,, +6312,Nj2,EA113,?,EA113-NA,,,,,, +6313,Nj3,EA113,?,EA113-NA,,,,,, +6314,Nj4,EA113,?,EA113-NA,,,,,, +6315,Nj5,EA113,?,EA113-NA,,,,,, +6316,Nj6,EA113,?,EA113-NA,,,,,, +6317,Nj7,EA113,?,EA113-NA,,,,,, +6318,Nj8,EA113,?,EA113-NA,,,,,, +6319,Nj9,EA113,?,EA113-NA,,,,,, +6320,Sa1,EA113,?,EA113-NA,,,,,, +6321,Sa10,EA113,?,EA113-NA,,,,,, +6322,Sa11,EA113,?,EA113-NA,,,,,, +6323,Sa12,EA113,?,EA113-NA,,,,,, +6324,Sa13,EA113,?,EA113-NA,,,,,, +6325,Sa14,EA113,?,EA113-NA,,,,,, +6326,Sa15,EA113,?,EA113-NA,,,,,, +6327,Sa16,EA113,?,EA113-NA,,,,,, +6328,Sa17,EA113,?,EA113-NA,,,,,, +6329,Sa2,EA113,?,EA113-NA,,,,,, +6330,Sa3,EA113,?,EA113-NA,,,,,, +6331,Sa4,EA113,?,EA113-NA,,,,,, +6332,Sa5,EA113,?,EA113-NA,,,,,, +6333,Sa6,EA113,?,EA113-NA,,,,,, +6334,Sa7,EA113,?,EA113-NA,,,,,, +6335,Sa8,EA113,?,EA113-NA,,,,,, +6336,Sa9,EA113,?,EA113-NA,,,,,, +6337,Sb1,EA113,?,EA113-NA,,,,,, +6338,Sb2,EA113,?,EA113-NA,,,,,, +6339,Sb3,EA113,?,EA113-NA,,,,,, +6340,Sb4,EA113,?,EA113-NA,,,,,, +6341,Sb5,EA113,?,EA113-NA,,,,,, +6342,Sb6,EA113,?,EA113-NA,,,,,, +6343,Sb7,EA113,?,EA113-NA,,,,,, +6344,Sb8,EA113,?,EA113-NA,,,,,, +6345,Sb9,EA113,?,EA113-NA,,,,,, +6346,Sc1,EA113,?,EA113-NA,,,,,, +6347,Sc10,EA113,?,EA113-NA,,,,,, +6348,Sc11,EA113,?,EA113-NA,,,,,, +6349,Sc12,EA113,?,EA113-NA,,,,,, +6350,Sc13,EA113,?,EA113-NA,,,,,, +6351,Sc14,EA113,?,EA113-NA,,,,,, +6352,Sc15,EA113,?,EA113-NA,,,,,, +6353,Sc16,EA113,?,EA113-NA,,,,,, +6354,Sc17,EA113,?,EA113-NA,,,,,, +6355,Sc18,EA113,?,EA113-NA,,,,,, +6356,Sc2,EA113,?,EA113-NA,,,,,, +6357,Sc3,EA113,?,EA113-NA,,,,,, +6358,Sc4,EA113,?,EA113-NA,,,,,, +6359,Sc5,EA113,?,EA113-NA,,,,,, +6360,Sc6,EA113,?,EA113-NA,,,,,, +6361,Sc7,EA113,?,EA113-NA,,,,,, +6362,Sc8,EA113,?,EA113-NA,,,,,, +6363,Sc9,EA113,?,EA113-NA,,,,,, +6364,Sd1,EA113,?,EA113-NA,,,,,, +6365,Sd2,EA113,?,EA113-NA,,,,,, +6366,Sd3,EA113,?,EA113-NA,,,,,, +6367,Sd4,EA113,?,EA113-NA,,,,,, +6368,Sd5,EA113,?,EA113-NA,,,,,, +6369,Sd6,EA113,?,EA113-NA,,,,,, +6370,Sd7,EA113,?,EA113-NA,,,,,, +6371,Sd8,EA113,?,EA113-NA,,,,,, +6372,Sd9,EA113,?,EA113-NA,,,,,, +6373,Se1,EA113,?,EA113-NA,,,,,, +6374,Se10,EA113,?,EA113-NA,,,,,, +6375,Se11,EA113,?,EA113-NA,,,,,, +6376,Se12,EA113,?,EA113-NA,,,,,, +6377,Se2,EA113,?,EA113-NA,,,,,, +6378,Se3,EA113,?,EA113-NA,,,,,, +6379,Se4,EA113,?,EA113-NA,,,,,, +6380,Se5,EA113,?,EA113-NA,,,,,, +6381,Se6,EA113,?,EA113-NA,,,,,, +6382,Se7,EA113,?,EA113-NA,,,,,, +6383,Se8,EA113,?,EA113-NA,,,,,, +6384,Se9,EA113,?,EA113-NA,,,,,, +6385,Sf1,EA113,?,EA113-NA,,,,,, +6386,Sf2,EA113,?,EA113-NA,,,,,, +6387,Sf3,EA113,?,EA113-NA,,,,,, +6388,Sf4,EA113,?,EA113-NA,,,,,, +6389,Sf5,EA113,?,EA113-NA,,,,,, +6390,Sf6,EA113,?,EA113-NA,,,,,, +6391,Sf7,EA113,?,EA113-NA,,,,,, +6392,Sf8,EA113,?,EA113-NA,,,,,, +6393,Sf9,EA113,?,EA113-NA,,,,,, +6394,Sg1,EA113,?,EA113-NA,,,,,, +6395,Sg2,EA113,?,EA113-NA,,,,,, +6396,Sg3,EA113,?,EA113-NA,,,,,, +6397,Sg4,EA113,?,EA113-NA,,,,,, +6398,Sg5,EA113,?,EA113-NA,,,,,, +6399,Sh1,EA113,?,EA113-NA,,,,,, +6400,Sh2,EA113,?,EA113-NA,,,,,, +6401,Sh3,EA113,?,EA113-NA,,,,,, +6402,Sh4,EA113,?,EA113-NA,,,,,, +6403,Sh5,EA113,?,EA113-NA,,,,,, +6404,Sh6,EA113,?,EA113-NA,,,,,, +6405,Sh7,EA113,?,EA113-NA,,,,,, +6406,Sh8,EA113,?,EA113-NA,,,,,, +6407,Sh9,EA113,?,EA113-NA,,,,,, +6408,Si1,EA113,?,EA113-NA,,,,,, +6409,Si10,EA113,?,EA113-NA,,,,,, +6410,Si2,EA113,?,EA113-NA,,,,,, +6411,Si3,EA113,?,EA113-NA,,,,,, +6412,Si4,EA113,?,EA113-NA,,,,,, +6413,Si5,EA113,?,EA113-NA,,,,,, +6414,Si6,EA113,?,EA113-NA,,,,,, +6415,Si7,EA113,?,EA113-NA,,,,,, +6416,Si8,EA113,?,EA113-NA,,,,,, +6417,Si9,EA113,?,EA113-NA,,,,,, +6418,Sj1,EA113,?,EA113-NA,,,,,, +6419,Sj10,EA113,?,EA113-NA,,,,,, +6420,Sj11,EA113,?,EA113-NA,,,,,, +6421,Sj2,EA113,?,EA113-NA,,,,,, +6422,Sj3,EA113,?,EA113-NA,,,,,, +6423,Sj4,EA113,?,EA113-NA,,,,,, +6424,Sj5,EA113,?,EA113-NA,,,,,, +6425,Sj6,EA113,?,EA113-NA,,,,,, +6426,Sj7,EA113,?,EA113-NA,,,,,, +6427,Sj8,EA113,?,EA113-NA,,,,,, +6428,Sj9,EA113,?,EA113-NA,,,,,, +6429,ch12,EA113,?,EA113-NA,,,,,, +6430,ch13,EA113,?,EA113-NA,,,,,, +6431,ch14,EA113,?,EA113-NA,,,,,, +6432,ch15,EA113,?,EA113-NA,,,,,, +6433,ch16,EA113,?,EA113-NA,,,,,, +6434,ch17,EA113,?,EA113-NA,,,,,, +6435,ch18,EA113,?,EA113-NA,,,,,, +6436,ch19,EA113,?,EA113-NA,,,,,, +6437,ch20,EA113,?,EA113-NA,,,,,, +6438,ch21,EA113,?,EA113-NA,,,,,, +6439,ch22,EA113,?,EA113-NA,,,,,, +6440,ch23,EA113,?,EA113-NA,,,,,, +6441,ch24,EA113,?,EA113-NA,,,,,, +6442,ch25,EA113,?,EA113-NA,,,,,, +6443,ch26,EA113,?,EA113-NA,,,,,, +6444,ch27,EA113,?,EA113-NA,,,,,, +6445,ch28,EA113,?,EA113-NA,,,,,, +6446,ec12,EA113,?,EA113-NA,,,,,, +6447,ec13,EA113,?,EA113-NA,,,,,, +6448,ec14,EA113,?,EA113-NA,,,,,, +6449,ec15,EA113,?,EA113-NA,,,,,, +6450,ec16,EA113,?,EA113-NA,,,,,, +6451,ec17,EA113,?,EA113-NA,,,,,, +6452,ec18,EA113,?,EA113-NA,,,,,, +6453,ec19,EA113,?,EA113-NA,,,,,, +6454,ec20,EA113,?,EA113-NA,,,,,, +6455,ec21,EA113,?,EA113-NA,,,,,, +6456,Aa1,EA012,Ambilocal,EA012-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +6457,Aa2,EA012,Patrilocal,EA012-8,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +6458,Aa3,EA012,Patrilocal,EA012-8,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +6459,Aa4,EA012,Ambi-viri,EA012-12,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +6460,Aa5,EA012,Ambi-viri,EA012-12,"Entry follows Schebesta; Czekanowski reports Uxorilocal (code ""9""); Turnbull reports Ambilocal (code ""2"")",deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +6461,Aa6,EA012,Patrilocal,EA012-8,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +6462,Aa7,EA012,Ambi-viri,EA012-12,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +6463,Aa8,EA012,Ambilocal,EA012-2,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +6464,Aa9,EA012,Ambilocal,EA012-2,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +6465,Ab1,EA012,Virilocal,EA012-10,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +6466,Ab10,EA012,Patrilocal,EA012-8,,hunter1936,,1936,EthnographicAtlas_1967_p62, +6467,Ab11,EA012,Patrilocal,EA012-8,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +6468,Ab12,EA012,Patrilocal,EA012-8,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +6469,Ab13,EA012,Patrilocal,EA012-8,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +6470,Ab14,EA012,Patrilocal,EA012-8,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +6471,Ab15,EA012,Patrilocal,EA012-8,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +6472,Ab16,EA012,Patrilocal,EA012-8,,earthy1933,,1930,EthnographicAtlas_1967_p62, +6473,Ab17,EA012,Patrilocal,EA012-8,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +6474,Ab18,EA012,Patrilocal,EA012-8,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +6475,Ab19,EA012,Virilocal,EA012-10,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +6476,Ab2,EA012,Patrilocal,EA012-8,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +6477,Ab20,EA012,Virilocal,EA012-10,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +6478,Ab21a,EA012,Patrilocal,EA012-8,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +6479,Ab21b,EA012,Patrilocal,EA012-8,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +6480,Ab22,EA012,Patrilocal,EA012-8,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +6481,Ab3,EA012,Virilocal,EA012-10,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +6482,Ab4,EA012,Patrilocal,EA012-8,,junod1927,,1920,EthnographicAtlas_1967_p62, +6483,Ab5,EA012,Patrilocal,EA012-8,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +6484,Ab6,EA012,Patrilocal,EA012-8,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +6485,Ab7,EA012,Avunculocal,EA012-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +6486,Ab8,EA012,Patrilocal,EA012-8,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +6487,Ab9,EA012,Patrilocal,EA012-8,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +6488,Ac1,EA012,Virilocal,EA012-10,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +6489,Ac10,EA012,Avunculocal,EA012-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +6490,Ac11,EA012,Avunculocal,EA012-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +6491,Ac12,EA012,Avunculocal,EA012-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +6492,Ac13,EA012,Avunculocal,EA012-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +6493,Ac14,EA012,Avunculocal,EA012-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +6494,Ac15,EA012,Avunculocal,EA012-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +6495,Ac16,EA012,Avunculocal,EA012-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +6496,Ac17,EA012,Virilocal,EA012-10,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +6497,Ac18,EA012,Avunculocal,EA012-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +6498,Ac19,EA012,Virilocal,EA012-10,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +6499,Ac2,EA012,Avunculocal,EA012-1,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +6500,Ac20,EA012,Avunculocal,EA012-1,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +6501,Ac21,EA012,Avunculocal,EA012-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +6502,Ac22,EA012,Avunculocal,EA012-1,,mertens1935,,1930,EthnographicAtlas_1967_p62, +6503,Ac23,EA012,Avunculocal,EA012-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +6504,Ac24,EA012,Avunculocal,EA012-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +6505,Ac25,EA012,Avunculocal,EA012-1,"Entry follows Richards; Beaucorps reports Virilocal (code ""10"")",beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +6506,Ac26,EA012,Avunculocal,EA012-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +6507,Ac27,EA012,Avunculocal,EA012-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +6508,Ac28,EA012,Avuncu-virilocal,EA012-4,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +6509,Ac29,EA012,Avunculocal,EA012-1,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +6510,Ac3,EA012,Avuncu-uxorilocal,EA012-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +6511,Ac30,EA012,Avuncu-virilocal,EA012-4,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +6512,Ac31,EA012,Avunculocal,EA012-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +6513,Ac32,EA012,Avunculocal,EA012-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +6514,Ac33,EA012,Avunculocal,EA012-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +6515,Ac34,EA012,Avunculocal,EA012-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +6516,Ac35,EA012,Avunculocal,EA012-1,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +6517,Ac36,EA012,Patrilocal,EA012-8,"Formerly classified as 'Avunculocal' (code ""1"")",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +6518,Ac37,EA012,Avuncu-uxorilocal,EA012-3,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +6519,Ac38,EA012,Matrilocal,EA012-5,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +6520,Ac39,EA012,Matrilocal,EA012-5,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +6521,Ac4,EA012,Avunculocal,EA012-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +6522,Ac40,EA012,Matrilocal,EA012-5,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +6523,Ac41,EA012,Avunculocal,EA012-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +6524,Ac42,EA012,Avuncu-uxorilocal,EA012-3,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +6525,Ac43,EA012,Patrilocal,EA012-8,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +6526,Ac5,EA012,Avuncu-uxorilocal,EA012-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +6527,Ac6,EA012,Avunculocal,EA012-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +6528,Ac7,EA012,Matrilocal,EA012-5,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +6529,Ac8,EA012,Avunculocal,EA012-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +6530,Ac9,EA012,Ambi-viri,EA012-12,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +6531,Ad1,EA012,Neolocal,EA012-6,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +6532,Ad10,EA012,Patrilocal,EA012-8,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +6533,Ad11,EA012,Neolocal,EA012-6,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +6534,Ad12,EA012,Patrilocal,EA012-8,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +6535,Ad13,EA012,Patrilocal,EA012-8,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +6536,Ad14,EA012,Matrilocal,EA012-5,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +6537,Ad15,EA012,Patrilocal,EA012-8,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +6538,Ad16,EA012,Neolocal,EA012-6,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +6539,Ad17,EA012,Patrilocal,EA012-8,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +6540,Ad18,EA012,Patrilocal,EA012-8,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +6541,Ad19,EA012,Patrilocal,EA012-8,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +6542,Ad2,EA012,Patrilocal,EA012-8,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +6543,Ad20,EA012,Virilocal,EA012-10,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +6544,Ad21,EA012,Patrilocal,EA012-8,,maurice193538,,1930,EthnographicAtlas_1967_p66, +6545,Ad22,EA012,Virilocal,EA012-10,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +6546,Ad23,EA012,Patrilocal,EA012-8,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +6547,Ad24,EA012,Patrilocal,EA012-8,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +6548,Ad25,EA012,Patrilocal,EA012-8,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +6549,Ad26,EA012,Patrilocal,EA012-8,,sick1916,,1910,EthnographicAtlas_1967_p66, +6550,Ad27,EA012,Matrilocal,EA012-5,At least initially,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +6551,Ad28,EA012,Matrilocal,EA012-5,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +6552,Ad29,EA012,Patrilocal,EA012-8,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +6553,Ad3,EA012,Patrilocal,EA012-8,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +6554,Ad30,EA012,Patrilocal,EA012-8,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +6555,Ad31,EA012,Patrilocal,EA012-8,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +6556,Ad32,EA012,Patrilocal,EA012-8,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +6557,Ad33,EA012,Patrilocal,EA012-8,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +6558,Ad34,EA012,Patrilocal,EA012-8,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +6559,Ad35,EA012,Patrilocal,EA012-8,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +6560,Ad36,EA012,Patrilocal,EA012-8,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +6561,Ad37,EA012,Patrilocal,EA012-8,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +6562,Ad38,EA012,Patrilocal,EA012-8,Inferential from distributional evidence,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +6563,Ad39,EA012,Patrilocal,EA012-8,,gray1963,,1950,EthnographicAtlas_1967_p66, +6564,Ad4,EA012,Patrilocal,EA012-8,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +6565,Ad40,EA012,Patrilocal,EA012-8,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +6566,Ad41,EA012,Patrilocal,EA012-8,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +6567,Ad42,EA012,Patrilocal,EA012-8,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +6568,Ad43,EA012,Patrilocal,EA012-8,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +6569,Ad44,EA012,Patrilocal,EA012-8,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +6570,Ad45,EA012,Patrilocal,EA012-8,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +6571,Ad46,EA012,Patrilocal,EA012-8,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +6572,Ad47,EA012,Patrilocal,EA012-8,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +6573,Ad48,EA012,Patrilocal,EA012-8,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +6574,Ad49,EA012,Patrilocal,EA012-8,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +6575,Ad5,EA012,Patrilocal,EA012-8,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +6576,Ad50,EA012,Matrilocal,EA012-5,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +6577,Ad51,EA012,Avunculocal,EA012-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +6578,Ad6,EA012,Neolocal,EA012-6,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +6579,Ad7,EA012,Neolocal,EA012-6,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +6580,Ad8,EA012,Patrilocal,EA012-8,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +6581,Ad9,EA012,Patrilocal,EA012-8,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +6582,Ae1,EA012,Patrilocal,EA012-8,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +6583,Ae10,EA012,Patrilocal,EA012-8,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +6584,Ae11,EA012,Patrilocal,EA012-8,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +6585,Ae12,EA012,Patrilocal,EA012-8,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +6586,Ae13,EA012,Patrilocal,EA012-8,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +6587,Ae14,EA012,Patrilocal,EA012-8,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +6588,Ae15,EA012,Patrilocal,EA012-8,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +6589,Ae16,EA012,Patrilocal,EA012-8,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +6590,Ae17,EA012,Patrilocal,EA012-8,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +6591,Ae18,EA012,Patrilocal,EA012-8,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +6592,Ae19,EA012,Virilocal,EA012-10,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +6593,Ae2,EA012,Patrilocal,EA012-8,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +6594,Ae20,EA012,Patrilocal,EA012-8,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +6595,Ae21,EA012,Patrilocal,EA012-8,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +6596,Ae22,EA012,Patrilocal,EA012-8,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +6597,Ae23,EA012,Patrilocal,EA012-8,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +6598,Ae24,EA012,Patrilocal,EA012-8,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +6599,Ae25,EA012,Patrilocal,EA012-8,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +6600,Ae26,EA012,Patrilocal,EA012-8,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +6601,Ae27,EA012,Patrilocal,EA012-8,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +6602,Ae28,EA012,Patrilocal,EA012-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +6603,Ae29,EA012,Patrilocal,EA012-8,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +6604,Ae3,EA012,Patrilocal,EA012-8,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +6605,Ae30,EA012,Patrilocal,EA012-8,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +6606,Ae31,EA012,Patrilocal,EA012-8,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +6607,Ae32,EA012,Patrilocal,EA012-8,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +6608,Ae33,EA012,Patrilocal,EA012-8,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +6609,Ae34,EA012,Patrilocal,EA012-8,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +6610,Ae35,EA012,Patrilocal,EA012-8,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +6611,Ae36,EA012,Patrilocal,EA012-8,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +6612,Ae37,EA012,Patrilocal,EA012-8,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +6613,Ae38,EA012,Avuncu-virilocal,EA012-4,The relative incidence of avunculocal and virilocal residence is unclear,wijnant192526,,1920,EthnographicAtlas_1967_p66, +6614,Ae39,EA012,Patrilocal,EA012-8,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +6615,Ae4,EA012,Patrilocal,EA012-8,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +6616,Ae40,EA012,Patrilocal,EA012-8,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +6617,Ae41,EA012,Patrilocal,EA012-8,,andersson1953,,1940,EthnographicAtlas_1967_p66, +6618,Ae42,EA012,Patrilocal,EA012-8,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +6619,Ae43,EA012,Patrilocal,EA012-8,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +6620,Ae44,EA012,Patrilocal,EA012-8,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +6621,Ae45,EA012,Patrilocal,EA012-8,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +6622,Ae46,EA012,Virilocal,EA012-10,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +6623,Ae47,EA012,Patrilocal,EA012-8,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +6624,Ae48,EA012,Patrilocal,EA012-8,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +6625,Ae49,EA012,Patrilocal,EA012-8,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +6626,Ae5,EA012,Patrilocal,EA012-8,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +6627,Ae50,EA012,Patrilocal,EA012-8,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +6628,Ae51,EA012,Patrilocal,EA012-8,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +6629,Ae52,EA012,Patrilocal,EA012-8,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +6630,Ae53,EA012,Patrilocal,EA012-8,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +6631,Ae54,EA012,Avunculocal,EA012-1,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +6632,Ae55,EA012,Patrilocal,EA012-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +6633,Ae56,EA012,Patrilocal,EA012-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +6634,Ae57,EA012,Patrilocal,EA012-8,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +6635,Ae58,EA012,Patrilocal,EA012-8,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +6636,Ae59,EA012,Patrilocal,EA012-8,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +6637,Ae6,EA012,Patrilocal,EA012-8,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +6638,Ae7,EA012,Patrilocal,EA012-8,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +6639,Ae8,EA012,Patrilocal,EA012-8,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +6640,Ae9,EA012,Patrilocal,EA012-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +6641,Af1,EA012,Patrilocal,EA012-8,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +6642,Af10,EA012,Patrilocal,EA012-8,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +6643,Af11,EA012,Patrilocal,EA012-8,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +6644,Af12,EA012,?,EA012-NA,"Mix of Avunculocal (code ""1""), Nonestablishment of a common household (code ""7""), and Virilocal (code ""10"") with relative incidence unspecified",field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +6645,Af13,EA012,Patrilocal,EA012-8,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +6646,Af14,EA012,Virilocal,EA012-10,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +6647,Af15,EA012,Patrilocal,EA012-8,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +6648,Af16,EA012,Patrilocal,EA012-8,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +6649,Af17,EA012,Patrilocal,EA012-8,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +6650,Af18,EA012,Patrilocal,EA012-8,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +6651,Af19,EA012,Patrilocal,EA012-8,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +6652,Af2,EA012,Patrilocal,EA012-8,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +6653,Af20,EA012,Patrilocal,EA012-8,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +6654,Af21,EA012,Virilocal,EA012-10,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +6655,Af22,EA012,Patrilocal,EA012-8,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +6656,Af23,EA012,Patrilocal,EA012-8,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +6657,Af24,EA012,Patrilocal,EA012-8,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +6658,Af25,EA012,Patrilocal,EA012-8,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +6659,Af26,EA012,Virilocal,EA012-10,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +6660,Af27,EA012,Patrilocal,EA012-8,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +6661,Af28,EA012,Patrilocal,EA012-8,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +6662,Af29,EA012,Patrilocal,EA012-8,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +6663,Af3,EA012,Avunculocal,EA012-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +6664,Af30,EA012,Patrilocal,EA012-8,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +6665,Af31,EA012,Patrilocal,EA012-8,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +6666,Af32,EA012,Patrilocal,EA012-8,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +6667,Af33,EA012,Patrilocal,EA012-8,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +6668,Af34,EA012,Patrilocal,EA012-8,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +6669,Af35,EA012,Patrilocal,EA012-8,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +6670,Af36,EA012,Patrilocal,EA012-8,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +6671,Af37,EA012,Patrilocal,EA012-8,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +6672,Af38,EA012,Virilocal,EA012-10,But a married woman commonly remains in her natal household instead of joining her husband,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +6673,Af39,EA012,Virilocal,EA012-10,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +6674,Af4,EA012,Patrilocal,EA012-8,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +6675,Af40,EA012,Virilocal,EA012-10,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +6676,Af41,EA012,Virilocal,EA012-10,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +6677,Af42,EA012,Avuncu-virilocal,EA012-4,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +6678,Af43,EA012,Separate,EA012-7,But most married women continue to reside in their natal household,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +6679,Af44,EA012,Avunculocal,EA012-1,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +6680,Af45,EA012,Virilocal,EA012-10,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +6681,Af46,EA012,Patrilocal,EA012-8,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +6682,Af47,EA012,Patrilocal,EA012-8,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +6683,Af48,EA012,Patrilocal,EA012-8,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +6684,Af49,EA012,Patrilocal,EA012-8,,schwab1947,,1940,EthnographicAtlas_1967_p70, +6685,Af5,EA012,Patrilocal,EA012-8,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +6686,Af50,EA012,Patrilocal,EA012-8,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +6687,Af51,EA012,Patrilocal,EA012-8,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +6688,Af52,EA012,Patrilocal,EA012-8,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +6689,Af53,EA012,Patrilocal,EA012-8,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +6690,Af54,EA012,Patrilocal,EA012-8,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +6691,Af55,EA012,Patrilocal,EA012-8,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +6692,Af56,EA012,Patrilocal,EA012-8,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +6693,Af57,EA012,Patrilocal,EA012-8,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +6694,Af58,EA012,Patrilocal,EA012-8,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +6695,Af6,EA012,Patrilocal,EA012-8,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +6696,Af7,EA012,Patrilocal,EA012-8,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +6697,Af8,EA012,Patrilocal,EA012-8,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +6698,Af9,EA012,Avunculocal,EA012-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +6699,Ag1,EA012,Patrilocal,EA012-8,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +6700,Ag10,EA012,Patrilocal,EA012-8,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +6701,Ag11,EA012,Virilocal,EA012-10,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +6702,Ag12,EA012,Patrilocal,EA012-8,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +6703,Ag13,EA012,Patrilocal,EA012-8,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +6704,Ag14,EA012,Patrilocal,EA012-8,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +6705,Ag15,EA012,Patrilocal,EA012-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +6706,Ag16,EA012,Patrilocal,EA012-8,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +6707,Ag17,EA012,Patrilocal,EA012-8,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +6708,Ag18,EA012,Matrilocal,EA012-5,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +6709,Ag19,EA012,Patrilocal,EA012-8,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +6710,Ag2,EA012,Patrilocal,EA012-8,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +6711,Ag20,EA012,Patrilocal,EA012-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +6712,Ag21,EA012,Patrilocal,EA012-8,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +6713,Ag22,EA012,Patrilocal,EA012-8,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +6714,Ag23,EA012,Patrilocal,EA012-8,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +6715,Ag24,EA012,Patrilocal,EA012-8,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +6716,Ag25,EA012,Patrilocal,EA012-8,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +6717,Ag26,EA012,Patrilocal,EA012-8,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +6718,Ag27,EA012,Patrilocal,EA012-8,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +6719,Ag28,EA012,Patrilocal,EA012-8,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +6720,Ag29,EA012,Patrilocal,EA012-8,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +6721,Ag3,EA012,Patrilocal,EA012-8,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +6722,Ag30,EA012,Patrilocal,EA012-8,"Entry follows Tauxier; Cremer also reports early residence as Uxorilocal, but prevailing pattern of residence as Patrilocal (i.e., this would be code ""9"")",cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +6723,Ag31,EA012,Patrilocal,EA012-8,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +6724,Ag32,EA012,Patrilocal,EA012-8,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +6725,Ag33,EA012,Patrilocal,EA012-8,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +6726,Ag34,EA012,Patrilocal,EA012-8,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +6727,Ag35,EA012,Avuncu-virilocal,EA012-4,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +6728,Ag36,EA012,Patrilocal,EA012-8,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +6729,Ag37,EA012,Patrilocal,EA012-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +6730,Ag38,EA012,Patrilocal,EA012-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +6731,Ag39,EA012,Patrilocal,EA012-8,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +6732,Ag4,EA012,Patrilocal,EA012-8,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +6733,Ag40,EA012,Patrilocal,EA012-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +6734,Ag41,EA012,Patrilocal,EA012-8,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +6735,Ag42,EA012,Patrilocal,EA012-8,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +6736,Ag43,EA012,Patrilocal,EA012-8,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +6737,Ag44,EA012,?,EA012-NA,,,,,, +6738,Ag45,EA012,Patrilocal,EA012-8,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +6739,Ag46,EA012,Patrilocal,EA012-8,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +6740,Ag47,EA012,Patrilocal,EA012-8,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +6741,Ag48,EA012,Patrilocal,EA012-8,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +6742,Ag49,EA012,Patrilocal,EA012-8,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +6743,Ag5,EA012,Patrilocal,EA012-8,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +6744,Ag50,EA012,Patrilocal,EA012-8,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +6745,Ag51,EA012,Patrilocal,EA012-8,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +6746,Ag52,EA012,Patrilocal,EA012-8,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +6747,Ag53,EA012,Patrilocal,EA012-8,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +6748,Ag54,EA012,Patrilocal,EA012-8,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +6749,Ag6,EA012,Patrilocal,EA012-8,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +6750,Ag7,EA012,Patrilocal,EA012-8,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +6751,Ag8,EA012,Avunculocal,EA012-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +6752,Ag9,EA012,Patrilocal,EA012-8,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +6753,Ah1,EA012,Patrilocal,EA012-8,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +6754,Ah10,EA012,Patrilocal,EA012-8,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +6755,Ah11,EA012,Patrilocal,EA012-8,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +6756,Ah12,EA012,Patrilocal,EA012-8,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +6757,Ah13,EA012,Patrilocal,EA012-8,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +6758,Ah14,EA012,Patrilocal,EA012-8,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +6759,Ah15,EA012,Patrilocal,EA012-8,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +6760,Ah16,EA012,Patrilocal,EA012-8,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +6761,Ah17,EA012,Patrilocal,EA012-8,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +6762,Ah18,EA012,Patrilocal,EA012-8,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +6763,Ah19,EA012,Patrilocal,EA012-8,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +6764,Ah2,EA012,Avuncu-virilocal,EA012-4,,meek1931a,,1920,EthnographicAtlas_1967_p74, +6765,Ah20,EA012,Patrilocal,EA012-8,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +6766,Ah21,EA012,Patrilocal,EA012-8,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6767,Ah22,EA012,Patrilocal,EA012-8,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +6768,Ah23,EA012,Uxorilocal,EA012-9,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6769,Ah24,EA012,Patrilocal,EA012-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6770,Ah25,EA012,Patrilocal,EA012-8,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6771,Ah26,EA012,Avunculocal,EA012-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6772,Ah27,EA012,Patrilocal,EA012-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6773,Ah28,EA012,Avuncu-virilocal,EA012-4,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +6774,Ah29,EA012,Matrilocal,EA012-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6775,Ah3,EA012,Virilocal,EA012-10,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +6776,Ah30,EA012,Avunculocal,EA012-1,,meek1931b,,1920,EthnographicAtlas_1967_p74, +6777,Ah31,EA012,Patrilocal,EA012-8,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +6778,Ah32,EA012,Avuncu-virilocal,EA012-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6779,Ah33,EA012,Patrilocal,EA012-8,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +6780,Ah34,EA012,Patrilocal,EA012-8,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +6781,Ah35,EA012,Patrilocal,EA012-8,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6782,Ah36,EA012,Patrilocal,EA012-8,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +6783,Ah37,EA012,Patrilocal,EA012-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6784,Ah38,EA012,Patrilocal,EA012-8,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +6785,Ah39,EA012,Patrilocal,EA012-8,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +6786,Ah4,EA012,Virilocal,EA012-10,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +6787,Ah5,EA012,Patrilocal,EA012-8,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +6788,Ah6,EA012,Avunculocal,EA012-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +6789,Ah7,EA012,Patrilocal,EA012-8,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +6790,Ah8,EA012,Patrilocal,EA012-8,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +6791,Ah9,EA012,Patrilocal,EA012-8,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +6792,Ai1,EA012,Patrilocal,EA012-8,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +6793,Ai10,EA012,Patrilocal,EA012-8,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +6794,Ai11,EA012,Virilocal,EA012-10,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +6795,Ai12,EA012,Patrilocal,EA012-8,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +6796,Ai13,EA012,Patrilocal,EA012-8,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +6797,Ai14,EA012,Patrilocal,EA012-8,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +6798,Ai15,EA012,Patrilocal,EA012-8,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +6799,Ai16,EA012,Patrilocal,EA012-8,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +6800,Ai17,EA012,Patrilocal,EA012-8,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +6801,Ai18,EA012,Patrilocal,EA012-8,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +6802,Ai19,EA012,Patrilocal,EA012-8,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +6803,Ai2,EA012,Patrilocal,EA012-8,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +6804,Ai20,EA012,Patrilocal,EA012-8,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +6805,Ai21,EA012,Patrilocal,EA012-8,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +6806,Ai22,EA012,Patrilocal,EA012-8,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +6807,Ai23,EA012,Patrilocal,EA012-8,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +6808,Ai24,EA012,Patrilocal,EA012-8,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +6809,Ai25,EA012,?,EA012-NA,,,,,, +6810,Ai26,EA012,Patrilocal,EA012-8,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +6811,Ai27,EA012,Patrilocal,EA012-8,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +6812,Ai28,EA012,Patrilocal,EA012-8,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +6813,Ai29,EA012,Patrilocal,EA012-8,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +6814,Ai3,EA012,Virilocal,EA012-10,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +6815,Ai30,EA012,Patrilocal,EA012-8,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +6816,Ai31,EA012,Patrilocal,EA012-8,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +6817,Ai32,EA012,Patrilocal,EA012-8,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +6818,Ai33,EA012,Patrilocal,EA012-8,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +6819,Ai34,EA012,Patrilocal,EA012-8,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +6820,Ai35,EA012,Patrilocal,EA012-8,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +6821,Ai36,EA012,Patrilocal,EA012-8,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +6822,Ai37,EA012,Patrilocal,EA012-8,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +6823,Ai38,EA012,Avunculocal,EA012-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +6824,Ai39,EA012,Avunculocal,EA012-1,,nadel1947,,1940,EthnographicAtlas_1967_p74, +6825,Ai4,EA012,Ambilocal,EA012-2,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +6826,Ai40,EA012,Patrilocal,EA012-8,,nadel1947,,1940,EthnographicAtlas_1967_p74, +6827,Ai41,EA012,Patrilocal,EA012-8,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +6828,Ai42,EA012,Patrilocal,EA012-8,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +6829,Ai43,EA012,Patrilocal,EA012-8,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +6830,Ai44,EA012,Patrilocal,EA012-8,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +6831,Ai45,EA012,Patrilocal,EA012-8,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +6832,Ai46,EA012,Patrilocal,EA012-8,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +6833,Ai47,EA012,Patrilocal,EA012-8,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +6834,Ai5,EA012,Patrilocal,EA012-8,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +6835,Ai6,EA012,Patrilocal,EA012-8,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +6836,Ai7,EA012,Patrilocal,EA012-8,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +6837,Ai8,EA012,Patrilocal,EA012-8,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +6838,Ai9,EA012,Patrilocal,EA012-8,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +6839,Aj1,EA012,Patrilocal,EA012-8,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +6840,Aj10,EA012,Patrilocal,EA012-8,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +6841,Aj11,EA012,Patrilocal,EA012-8,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +6842,Aj12,EA012,Patrilocal,EA012-8,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +6843,Aj13,EA012,Patrilocal,EA012-8,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +6844,Aj14,EA012,Patrilocal,EA012-8,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +6845,Aj15,EA012,Patrilocal,EA012-8,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +6846,Aj16,EA012,Patrilocal,EA012-8,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +6847,Aj17,EA012,Patrilocal,EA012-8,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +6848,Aj18,EA012,?,EA012-NA,,,,,, +6849,Aj19,EA012,Patrilocal,EA012-8,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +6850,Aj2,EA012,Patrilocal,EA012-8,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +6851,Aj20,EA012,Patrilocal,EA012-8,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +6852,Aj21,EA012,Patrilocal,EA012-8,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +6853,Aj22,EA012,?,EA012-NA,,,,,, +6854,Aj23,EA012,Patrilocal,EA012-8,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +6855,Aj24,EA012,Patrilocal,EA012-8,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +6856,Aj25,EA012,Patrilocal,EA012-8,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +6857,Aj26,EA012,Patrilocal,EA012-8,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +6858,Aj27,EA012,Patrilocal,EA012-8,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +6859,Aj28,EA012,Patrilocal,EA012-8,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +6860,Aj29,EA012,Patrilocal,EA012-8,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +6861,Aj3,EA012,Ambi-viri,EA012-12,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +6862,Aj30,EA012,Patrilocal,EA012-8,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +6863,Aj31,EA012,Patrilocal,EA012-8,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +6864,Aj4,EA012,Patrilocal,EA012-8,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +6865,Aj5,EA012,Patrilocal,EA012-8,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +6866,Aj6,EA012,Patrilocal,EA012-8,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +6867,Aj7,EA012,Patrilocal,EA012-8,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +6868,Aj8,EA012,Patrilocal,EA012-8,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +6869,Aj9,EA012,Patrilocal,EA012-8,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +6870,Ca1,EA012,Neolocal,EA012-6,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +6871,Ca10,EA012,Patrilocal,EA012-8,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +6872,Ca11,EA012,Patrilocal,EA012-8,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +6873,Ca12,EA012,Patrilocal,EA012-8,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +6874,Ca13,EA012,Patrilocal,EA012-8,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +6875,Ca14,EA012,Patrilocal,EA012-8,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +6876,Ca15,EA012,Patrilocal,EA012-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +6877,Ca16,EA012,Patrilocal,EA012-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +6878,Ca17,EA012,Patrilocal,EA012-8,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +6879,Ca18,EA012,Patrilocal,EA012-8,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +6880,Ca19,EA012,Patrilocal,EA012-8,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +6881,Ca2,EA012,Patrilocal,EA012-8,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +6882,Ca20,EA012,Patrilocal,EA012-8,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +6883,Ca21,EA012,Patrilocal,EA012-8,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +6884,Ca22,EA012,Patrilocal,EA012-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +6885,Ca23,EA012,Patrilocal,EA012-8,,jensen1959,,1950,EthnographicAtlas_1967_p78, +6886,Ca24,EA012,Patrilocal,EA012-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +6887,Ca25,EA012,Patrilocal,EA012-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +6888,Ca26,EA012,Patrilocal,EA012-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +6889,Ca27,EA012,Patrilocal,EA012-8,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +6890,Ca28,EA012,Patrilocal,EA012-8,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +6891,Ca29,EA012,Patrilocal,EA012-8,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +6892,Ca3,EA012,Patrilocal,EA012-8,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +6893,Ca30,EA012,Patrilocal,EA012-8,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +6894,Ca31,EA012,Virilocal,EA012-10,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +6895,Ca32,EA012,Neolocal,EA012-6,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +6896,Ca33,EA012,Neolocal,EA012-6,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +6897,Ca34,EA012,Patrilocal,EA012-8,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +6898,Ca35,EA012,Patrilocal,EA012-8,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +6899,Ca36,EA012,Patrilocal,EA012-8,"In the noble class; among serfs prevailing pattern is Patrilocal (code ""8"")",munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +6900,Ca37,EA012,Patrilocal,EA012-8,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +6901,Ca38,EA012,Patrilocal,EA012-8,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +6902,Ca39,EA012,Patrilocal,EA012-8,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +6903,Ca4,EA012,Patrilocal,EA012-8,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +6904,Ca40,EA012,Patrilocal,EA012-8,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +6905,Ca41,EA012,Patrilocal,EA012-8,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +6906,Ca42,EA012,Patrilocal,EA012-8,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +6907,Ca43,EA012,Patrilocal,EA012-8,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +6908,Ca5,EA012,Patrilocal,EA012-8,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +6909,Ca6,EA012,Patrilocal,EA012-8,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +6910,Ca7,EA012,Ambi-viri,EA012-12,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +6911,Ca8,EA012,Patrilocal,EA012-8,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +6912,Ca9,EA012,Patrilocal,EA012-8,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +6913,Cb1,EA012,Patrilocal,EA012-8,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +6914,Cb10,EA012,Patrilocal,EA012-8,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +6915,Cb11,EA012,?,EA012-NA,,,,,, +6916,Cb12,EA012,Patrilocal,EA012-8,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +6917,Cb13,EA012,Patrilocal,EA012-8,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +6918,Cb14,EA012,Patrilocal,EA012-8,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +6919,Cb15,EA012,Patrilocal,EA012-8,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +6920,Cb16,EA012,Patrilocal,EA012-8,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +6921,Cb17,EA012,Separate,EA012-7,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +6922,Cb18,EA012,Virilocal,EA012-10,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +6923,Cb19,EA012,Virilocal,EA012-10,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +6924,Cb2,EA012,Patrilocal,EA012-8,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +6925,Cb20,EA012,?,EA012-NA,,,,,, +6926,Cb21,EA012,Patrilocal,EA012-8,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +6927,Cb22,EA012,Patrilocal,EA012-8,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +6928,Cb23,EA012,Patrilocal,EA012-8,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +6929,Cb24,EA012,Patrilocal,EA012-8,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +6930,Cb25,EA012,Patrilocal,EA012-8,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +6931,Cb26,EA012,Patrilocal,EA012-8,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +6932,Cb27,EA012,Patrilocal,EA012-8,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6933,Cb28,EA012,Patrilocal,EA012-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6934,Cb29,EA012,Patrilocal,EA012-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +6935,Cb3,EA012,Patrilocal,EA012-8,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +6936,Cb4,EA012,Patrilocal,EA012-8,,reid1930,,1920,EthnographicAtlas_1967_p78, +6937,Cb5,EA012,Patrilocal,EA012-8,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +6938,Cb6,EA012,Patrilocal,EA012-8,,woodnd,,1920,EthnographicAtlas_1967_p78, +6939,Cb7,EA012,Patrilocal,EA012-8,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +6940,Cb8,EA012,Virilocal,EA012-10,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +6941,Cb9,EA012,Patrilocal,EA012-8,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +6942,Cc1,EA012,Patrilocal,EA012-8,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +6943,Cc10,EA012,Virilocal,EA012-10,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +6944,Cc11,EA012,?,EA012-NA,,,,,, +6945,Cc12,EA012,Virilocal,EA012-10,Ultimate residence is unclear and may be avunculocal,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +6946,Cc13,EA012,Avunculocal,EA012-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +6947,Cc14,EA012,Patrilocal,EA012-8,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +6948,Cc15,EA012,?,EA012-NA,,,,,, +6949,Cc16,EA012,Patrilocal,EA012-8,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +6950,Cc17,EA012,Patrilocal,EA012-8,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +6951,Cc18,EA012,Patrilocal,EA012-8,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +6952,Cc19,EA012,Patrilocal,EA012-8,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +6953,Cc2,EA012,Patrilocal,EA012-8,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +6954,Cc20,EA012,Patrilocal,EA012-8,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +6955,Cc3,EA012,Patrilocal,EA012-8,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +6956,Cc4,EA012,Patrilocal,EA012-8,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +6957,Cc5,EA012,Virilocal,EA012-10,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +6958,Cc6,EA012,Patrilocal,EA012-8,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +6959,Cc7,EA012,Patrilocal,EA012-8,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +6960,Cc8,EA012,?,EA012-NA,,,,,, +6961,Cc9,EA012,Avuncu-virilocal,EA012-4,"Virilocal (code ""10"") after an initial period until death of HuFa, then Avunculocal (code ""1"")",benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +6962,Cd1,EA012,Patrilocal,EA012-8,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +6963,Cd10,EA012,Patrilocal,EA012-8,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +6964,Cd11,EA012,Virilocal,EA012-10,Suggested rather than attested,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +6965,Cd12,EA012,Patrilocal,EA012-8,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +6966,Cd13,EA012,Patrilocal,EA012-8,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +6967,Cd14,EA012,Patrilocal,EA012-8,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +6968,Cd15,EA012,Patrilocal,EA012-8,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +6969,Cd16,EA012,Patrilocal,EA012-8,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +6970,Cd17,EA012,Patrilocal,EA012-8,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +6971,Cd18,EA012,Patrilocal,EA012-8,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +6972,Cd19,EA012,Patrilocal,EA012-8,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +6973,Cd2,EA012,Patrilocal,EA012-8,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +6974,Cd20,EA012,Patrilocal,EA012-8,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +6975,Cd21,EA012,Patrilocal,EA012-8,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +6976,Cd3,EA012,Patrilocal,EA012-8,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +6977,Cd4,EA012,Patrilocal,EA012-8,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +6978,Cd5,EA012,Patrilocal,EA012-8,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +6979,Cd6,EA012,Neolocal,EA012-6,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +6980,Cd7,EA012,Patrilocal,EA012-8,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +6981,Cd8,EA012,Patrilocal,EA012-8,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +6982,Cd9,EA012,Patrilocal,EA012-8,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +6983,Ce1,EA012,Patrilocal,EA012-8,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +6984,Ce2,EA012,Virilocal,EA012-10,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +6985,Ce3,EA012,Neolocal,EA012-6,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +6986,Ce4,EA012,Ambilocal,EA012-2,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +6987,Ce5,EA012,Neolocal,EA012-6,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +6988,Ce6,EA012,Neolocal,EA012-6,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +6989,Ce7,EA012,Virilocal,EA012-10,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +6990,Ce8,EA012,Ambi-viri,EA012-12,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +6991,Cf1,EA012,Neolocal,EA012-6,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +6992,Cf2,EA012,Virilocal,EA012-10,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +6993,Cf3,EA012,Neolocal,EA012-6,,munch1945,,1930,EthnographicAtlas_1967_p82, +6994,Cf4,EA012,Neolocal,EA012-6,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +6995,Cf5,EA012,Neolocal,EA012-6,,miner1939,,1930,EthnographicAtlas_1967_p82, +6996,Cg1,EA012,Ambilocal,EA012-2,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +6997,Cg2,EA012,Virilocal,EA012-10,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +6998,Cg3,EA012,Virilocal,EA012-10,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +6999,Cg4,EA012,Ambi-viri,EA012-12,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +7000,Cg5,EA012,Neolocal,EA012-6,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +7001,Ch1,EA012,Patrilocal,EA012-8,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +7002,Ch10,EA012,Neolocal,EA012-6,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +7003,Ch11,EA012,Neolocal,EA012-6,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +7004,Ch2,EA012,Neolocal,EA012-6,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +7005,Ch3,EA012,Virilocal,EA012-10,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +7006,Ch4,EA012,Neolocal,EA012-6,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +7007,Ch5,EA012,Virilocal,EA012-10,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +7008,Ch6,EA012,Ambilocal,EA012-2,,ember1954,,1910,EthnographicAtlas_1967_p82, +7009,Ch7,EA012,Virilocal,EA012-10,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +7010,Ch8,EA012,Virilocal,EA012-10,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +7011,Ch9,EA012,Virilocal,EA012-10,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +7012,Ci1,EA012,Patrilocal,EA012-8,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +7013,Ci10,EA012,Ambi-viri,EA012-12,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +7014,Ci11,EA012,Patrilocal,EA012-8,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +7015,Ci12,EA012,Patrilocal,EA012-8,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +7016,Ci2,EA012,Patrilocal,EA012-8,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +7017,Ci3,EA012,Neolocal,EA012-6,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +7018,Ci4,EA012,Patrilocal,EA012-8,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +7019,Ci5,EA012,Patrilocal,EA012-8,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +7020,Ci6,EA012,Patrilocal,EA012-8,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +7021,Ci7,EA012,Patrilocal,EA012-8,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +7022,Ci8,EA012,Patrilocal,EA012-8,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +7023,Ci9,EA012,Patrilocal,EA012-8,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +7024,Cj1,EA012,Patrilocal,EA012-8,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +7025,Cj10,EA012,Patrilocal,EA012-8,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +7026,Cj2,EA012,Patrilocal,EA012-8,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +7027,Cj3,EA012,Patrilocal,EA012-8,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +7028,Cj4,EA012,Ambilocal,EA012-2,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +7029,Cj5,EA012,Patrilocal,EA012-8,,dickson1949,,1930,EthnographicAtlas_1967_p86, +7030,Cj6,EA012,Patrilocal,EA012-8,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +7031,Cj7,EA012,Patrilocal,EA012-8,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +7032,Cj8,EA012,Patrilocal,EA012-8,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +7033,Cj9,EA012,Patrilocal,EA012-8,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +7034,Ea1,EA012,Patrilocal,EA012-8,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +7035,Ea10,EA012,Patrilocal,EA012-8,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +7036,Ea11,EA012,Patrilocal,EA012-8,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +7037,Ea12,EA012,Patrilocal,EA012-8,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +7038,Ea13,EA012,Patrilocal,EA012-8,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +7039,Ea2,EA012,Patrilocal,EA012-8,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +7040,Ea3,EA012,Patrilocal,EA012-8,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +7041,Ea4,EA012,Patrilocal,EA012-8,,barth1956b,,1950,EthnographicAtlas_1967_p86, +7042,Ea5,EA012,Patrilocal,EA012-8,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +7043,Ea6,EA012,Patrilocal,EA012-8,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +7044,Ea7,EA012,Patrilocal,EA012-8,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +7045,Ea8,EA012,Patrilocal,EA012-8,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +7046,Ea9,EA012,Virilocal,EA012-10,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +7047,Eb1,EA012,Patrilocal,EA012-8,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +7048,Eb2,EA012,Patrilocal,EA012-8,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +7049,Eb3,EA012,Patrilocal,EA012-8,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +7050,Eb4,EA012,Patrilocal,EA012-8,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +7051,Eb5,EA012,Patrilocal,EA012-8,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +7052,Eb6,EA012,Patrilocal,EA012-8,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +7053,Eb7,EA012,Patrilocal,EA012-8,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +7054,Eb8,EA012,Patrilocal,EA012-8,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +7055,Ec1,EA012,Patrilocal,EA012-8,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +7056,Ec10,EA012,Patrilocal,EA012-8,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +7057,Ec11,EA012,Patrilocal,EA012-8,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +7058,Ec2,EA012,Patrilocal,EA012-8,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7059,Ec3,EA012,Ambi-viri,EA012-12,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +7060,Ec4,EA012,Patrilocal,EA012-8,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +7061,Ec5,EA012,Ambi-viri,EA012-12,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +7062,Ec6,EA012,Ambi-uxo,EA012-11,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +7063,Ec7,EA012,Ambi-viri,EA012-12,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +7064,Ec8,EA012,Virilocal,EA012-10,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +7065,Ec9,EA012,Patrilocal,EA012-8,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +7066,Ed1,EA012,Patrilocal,EA012-8,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +7067,Ed10,EA012,Patrilocal,EA012-8,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +7068,Ed13,EA012,Patrilocal,EA012-8,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +7069,Ed14,EA012,Patrilocal,EA012-8,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +7070,Ed15a,EA012,Patrilocal,EA012-8,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +7071,Ed15b,EA012,Neolocal,EA012-6,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +7072,Ed16,EA012,Patrilocal,EA012-8,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +7073,Ed2,EA012,Patrilocal,EA012-8,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +7074,Ed3,EA012,Patrilocal,EA012-8,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +7075,Ed4,EA012,Patrilocal,EA012-8,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +7076,Ed5,EA012,Virilocal,EA012-10,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7077,Ed6,EA012,Patrilocal,EA012-8,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +7078,Ed7,EA012,Patrilocal,EA012-8,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +7079,Ed8,EA012,Patrilocal,EA012-8,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +7080,Ed9,EA012,Patrilocal,EA012-8,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +7081,Ee1,EA012,Virilocal,EA012-10,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +7082,Ee2,EA012,Patrilocal,EA012-8,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +7083,Ee3,EA012,Patrilocal,EA012-8,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +7084,Ee4,EA012,Patrilocal,EA012-8,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +7085,Ee5,EA012,Patrilocal,EA012-8,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +7086,Ee6,EA012,Patrilocal,EA012-8,Uxorilocal only if wife has no brothers,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +7087,Ee7,EA012,Patrilocal,EA012-8,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +7088,Ee8,EA012,Patrilocal,EA012-8,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +7089,Ef1,EA012,Patrilocal,EA012-8,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +7090,Ef10,EA012,Patrilocal,EA012-8,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7091,Ef11,EA012,Patrilocal,EA012-8,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +7092,Ef2,EA012,Patrilocal,EA012-8,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +7093,Ef3,EA012,Patrilocal,EA012-8,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +7094,Ef4,EA012,Patrilocal,EA012-8,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +7095,Ef5,EA012,Patrilocal,EA012-8,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +7096,Ef6,EA012,Patrilocal,EA012-8,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +7097,Ef7,EA012,Patrilocal,EA012-8,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +7098,Ef8,EA012,Patrilocal,EA012-8,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +7099,Ef9,EA012,Patrilocal,EA012-8,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7100,Eg1,EA012,Ambilocal,EA012-2,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7101,Eg10,EA012,Patrilocal,EA012-8,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +7102,Eg11,EA012,Patrilocal,EA012-8,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +7103,Eg12,EA012,Patrilocal,EA012-8,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +7104,Eg13,EA012,Patrilocal,EA012-8,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7105,Eg14,EA012,Patrilocal,EA012-8,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +7106,Eg2,EA012,Patrilocal,EA012-8,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +7107,Eg3,EA012,Patrilocal,EA012-8,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +7108,Eg4,EA012,Patrilocal,EA012-8,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +7109,Eg5,EA012,Patrilocal,EA012-8,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +7110,Eg6,EA012,Separate,EA012-7,Entry pertains to the Nayar; predominantly Matrilocal among the Mappilla and Virilocal or Neolocal among the Tiyyar,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +7111,Eg7,EA012,Patrilocal,EA012-8,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +7112,Eg8,EA012,Patrilocal,EA012-8,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +7113,Eg9,EA012,Patrilocal,EA012-8,,elwin1939,,1930,EthnographicAtlas_1967_p90, +7114,Eh1,EA012,Ambilocal,EA012-2,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +7115,Eh10,EA012,Patrilocal,EA012-8,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +7116,Eh2,EA012,Virilocal,EA012-10,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +7117,Eh3,EA012,Patrilocal,EA012-8,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +7118,Eh4,EA012,Matrilocal,EA012-5,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7119,Eh5,EA012,Ambi-uxo,EA012-11,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +7120,Eh6,EA012,Ambi-viri,EA012-12,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +7121,Eh7,EA012,Patrilocal,EA012-8,"But McLeod reports Ambilocal (code ""2"")",decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +7122,Eh8,EA012,Patrilocal,EA012-8,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +7123,Eh9,EA012,Patrilocal,EA012-8,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +7124,Ei1,EA012,Matrilocal,EA012-5,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7125,Ei10,EA012,Patrilocal,EA012-8,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +7126,Ei11,EA012,Patrilocal,EA012-8,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +7127,Ei12,EA012,Patrilocal,EA012-8,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +7128,Ei13,EA012,Patrilocal,EA012-8,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +7129,Ei14,EA012,Patrilocal,EA012-8,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +7130,Ei15,EA012,Patrilocal,EA012-8,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +7131,Ei16,EA012,Patrilocal,EA012-8,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +7132,Ei17,EA012,Patrilocal,EA012-8,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +7133,Ei18,EA012,Virilocal,EA012-10,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +7134,Ei19,EA012,Patrilocal,EA012-8,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +7135,Ei2,EA012,Patrilocal,EA012-8,,mills1922,,1920,EthnographicAtlas_1967_p90, +7136,Ei20,EA012,Patrilocal,EA012-8,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +7137,Ei3,EA012,Neolocal,EA012-6,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +7138,Ei4,EA012,Patrilocal,EA012-8,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +7139,Ei5,EA012,Patrilocal,EA012-8,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +7140,Ei6,EA012,Patrilocal,EA012-8,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +7141,Ei7,EA012,Uxorilocal,EA012-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +7142,Ei8,EA012,Matrilocal,EA012-5,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +7143,Ei9,EA012,Patrilocal,EA012-8,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +7144,Ej1,EA012,Patrilocal,EA012-8,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +7145,Ej10,EA012,Matrilocal,EA012-5,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +7146,Ej11,EA012,Matrilocal,EA012-5,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +7147,Ej12,EA012,Patrilocal,EA012-8,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +7148,Ej13,EA012,Patrilocal,EA012-8,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +7149,Ej14,EA012,Ambilocal,EA012-2,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7150,Ej15,EA012,Neolocal,EA012-6,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +7151,Ej16,EA012,Matrilocal,EA012-5,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +7152,Ej2,EA012,Matrilocal,EA012-5,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +7153,Ej3,EA012,Virilocal,EA012-10,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +7154,Ej4,EA012,Patrilocal,EA012-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +7155,Ej5,EA012,Neolocal,EA012-6,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +7156,Ej6,EA012,Neolocal,EA012-6,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +7157,Ej7,EA012,Patrilocal,EA012-8,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +7158,Ej8,EA012,Virilocal,EA012-10,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +7159,Ej9,EA012,Neolocal,EA012-6,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +7160,Ia1,EA012,Ambi-viri,EA012-12,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +7161,Ia10,EA012,Patrilocal,EA012-8,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +7162,Ia11,EA012,Ambi-uxo,EA012-11,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +7163,Ia12,EA012,Neolocal,EA012-6,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +7164,Ia13,EA012,Ambilocal,EA012-2,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +7165,Ia14,EA012,Virilocal,EA012-10,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +7166,Ia15,EA012,Virilocal,EA012-10,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +7167,Ia16,EA012,Uxorilocal,EA012-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +7168,Ia17,EA012,Neolocal,EA012-6,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +7169,Ia18,EA012,Neolocal,EA012-6,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +7170,Ia2,EA012,Ambilocal,EA012-2,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +7171,Ia3,EA012,Ambilocal,EA012-2,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +7172,Ia4,EA012,Ambilocal,EA012-2,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +7173,Ia5,EA012,Ambi-uxo,EA012-11,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +7174,Ia6,EA012,Ambi-viri,EA012-12,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7175,Ia7,EA012,Ambi-uxo,EA012-11,,fox1954,,1950,EthnographicAtlas_1967_p90, +7176,Ia8,EA012,Ambi-viri,EA012-12,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +7177,Ia9,EA012,Matrilocal,EA012-5,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +7178,Ib1,EA012,Ambilocal,EA012-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7179,Ib2,EA012,Neolocal,EA012-6,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7180,Ib3,EA012,Patrilocal,EA012-8,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +7181,Ib4,EA012,Patrilocal,EA012-8,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +7182,Ib5,EA012,Ambi-viri,EA012-12,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +7183,Ib6,EA012,Separate,EA012-7,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +7184,Ib7,EA012,Ambi-viri,EA012-12,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +7185,Ib8,EA012,Ambilocal,EA012-2,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +7186,Ib9,EA012,?,EA012-NA,,,,,, +7187,Ic1,EA012,Ambilocal,EA012-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7188,Ic10,EA012,Ambi-viri,EA012-12,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +7189,Ic11,EA012,Virilocal,EA012-10,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7190,Ic12,EA012,Neolocal,EA012-6,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +7191,Ic13,EA012,Patrilocal,EA012-8,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +7192,Ic2,EA012,Ambi-viri,EA012-12,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +7193,Ic3,EA012,Matrilocal,EA012-5,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +7194,Ic4,EA012,Patrilocal,EA012-8,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +7195,Ic5,EA012,Uxorilocal,EA012-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +7196,Ic6,EA012,Patrilocal,EA012-8,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +7197,Ic7,EA012,Patrilocal,EA012-8,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +7198,Ic8,EA012,Patrilocal,EA012-8,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +7199,Ic9,EA012,Patrilocal,EA012-8,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +7200,Id1,EA012,Patrilocal,EA012-8,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +7201,Id10,EA012,Patrilocal,EA012-8,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +7202,Id11,EA012,Patrilocal,EA012-8,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +7203,Id12,EA012,Patrilocal,EA012-8,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +7204,Id13,EA012,Patrilocal,EA012-8,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +7205,Id2,EA012,Patrilocal,EA012-8,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +7206,Id3,EA012,Ambi-viri,EA012-12,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +7207,Id4,EA012,Virilocal,EA012-10,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +7208,Id5,EA012,Patrilocal,EA012-8,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +7209,Id6,EA012,Patrilocal,EA012-8,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +7210,Id7,EA012,Patrilocal,EA012-8,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +7211,Id8,EA012,?,EA012-NA,,,,,, +7212,Id9,EA012,Patrilocal,EA012-8,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +7213,Ie1,EA012,Patrilocal,EA012-8,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7214,Ie10,EA012,Patrilocal,EA012-8,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +7215,Ie11,EA012,Patrilocal,EA012-8,,bowers1964,,1950,EthnographicAtlas_1967_p94, +7216,Ie12,EA012,Patrilocal,EA012-8,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7217,Ie13,EA012,Patrilocal,EA012-8,,landtman1927,,1920,EthnographicAtlas_1967_p94, +7218,Ie14,EA012,Patrilocal,EA012-8,,haddon1908,,1900,EthnographicAtlas_1967_p94, +7219,Ie15,EA012,Patrilocal,EA012-8,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7220,Ie16,EA012,Separate,EA012-7,,williams194041,,1940,EthnographicAtlas_1967_p94, +7221,Ie17,EA012,Separate,EA012-7,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +7222,Ie18,EA012,Ambi-viri,EA012-12,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +7223,Ie19,EA012,Separate,EA012-7,But normally patrilocal,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +7224,Ie2,EA012,Patrilocal,EA012-8,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +7225,Ie20,EA012,Patrilocal,EA012-8,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +7226,Ie21,EA012,Patrilocal,EA012-8,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +7227,Ie22,EA012,Patrilocal,EA012-8,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +7228,Ie23,EA012,Patrilocal,EA012-8,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +7229,Ie24,EA012,Patrilocal,EA012-8,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +7230,Ie25,EA012,Patrilocal,EA012-8,,williamson1912,,1920,EthnographicAtlas_1967_p94, +7231,Ie26,EA012,Patrilocal,EA012-8,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +7232,Ie27,EA012,Patrilocal,EA012-8,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +7233,Ie28,EA012,Virilocal,EA012-10,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +7234,Ie29,EA012,Patrilocal,EA012-8,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7235,Ie3,EA012,Patrilocal,EA012-8,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7236,Ie30,EA012,Matrilocal,EA012-5,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +7237,Ie31,EA012,Patrilocal,EA012-8,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +7238,Ie32,EA012,Patrilocal,EA012-8,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +7239,Ie33,EA012,Patrilocal,EA012-8,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +7240,Ie34,EA012,Ambilocal,EA012-2,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +7241,Ie35,EA012,Patrilocal,EA012-8,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +7242,Ie36,EA012,Patrilocal,EA012-8,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +7243,Ie37,EA012,Patrilocal,EA012-8,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +7244,Ie38,EA012,Virilocal,EA012-10,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +7245,Ie39,EA012,Patrilocal,EA012-8,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +7246,Ie4,EA012,Patrilocal,EA012-8,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7247,Ie5,EA012,Patrilocal,EA012-8,,williams1936,,1930,EthnographicAtlas_1967_p94, +7248,Ie6,EA012,Patrilocal,EA012-8,,held1947,,1930,EthnographicAtlas_1967_p94, +7249,Ie7,EA012,Patrilocal,EA012-8,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +7250,Ie8,EA012,Patrilocal,EA012-8,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +7251,Ie9,EA012,Patrilocal,EA012-8,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +7252,If1,EA012,Avunculocal,EA012-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7253,If10,EA012,Matrilocal,EA012-5,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +7254,If11,EA012,Virilocal,EA012-10,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +7255,If12,EA012,Matrilocal,EA012-5,,mason1954,,1940,EthnographicAtlas_1967_p98, +7256,If13,EA012,Matrilocal,EA012-5,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +7257,If14,EA012,Ambi-viri,EA012-12,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +7258,If15,EA012,Matrilocal,EA012-5,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +7259,If16,EA012,Matrilocal,EA012-5,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +7260,If17,EA012,Matrilocal,EA012-5,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +7261,If2,EA012,Matrilocal,EA012-5,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +7262,If3,EA012,Ambilocal,EA012-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +7263,If4,EA012,Ambilocal,EA012-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +7264,If5,EA012,Matrilocal,EA012-5,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +7265,If6,EA012,Patrilocal,EA012-8,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +7266,If7,EA012,Ambi-viri,EA012-12,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +7267,If8,EA012,Neolocal,EA012-6,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +7268,If9,EA012,Ambi-viri,EA012-12,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +7269,Ig1,EA012,Avunculocal,EA012-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +7270,Ig10,EA012,Patrilocal,EA012-8,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +7271,Ig11,EA012,Ambi-viri,EA012-12,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +7272,Ig12,EA012,Ambi-viri,EA012-12,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +7273,Ig13,EA012,Separate,EA012-7,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +7274,Ig14,EA012,Avuncu-virilocal,EA012-4,"Or possibly Ambilocal (code ""2"")",belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +7275,Ig15,EA012,Patrilocal,EA012-8,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +7276,Ig16,EA012,Virilocal,EA012-10,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +7277,Ig17,EA012,Patrilocal,EA012-8,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +7278,Ig18,EA012,Patrilocal,EA012-8,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +7279,Ig19,EA012,Virilocal,EA012-10,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +7280,Ig2,EA012,Avunculocal,EA012-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +7281,Ig20,EA012,Avunculocal,EA012-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +7282,Ig21,EA012,Avunculocal,EA012-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +7283,Ig3,EA012,Ambilocal,EA012-2,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +7284,Ig4,EA012,Matrilocal,EA012-5,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +7285,Ig5,EA012,Avuncu-uxorilocal,EA012-3,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,,1920,EthnographicAtlas_1967_p98, +7286,Ig6,EA012,Virilocal,EA012-10,,ivens1927,,1900,EthnographicAtlas_1967_p98, +7287,Ig7,EA012,Avuncu-virilocal,EA012-4,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +7288,Ig8,EA012,Ambilocal,EA012-2,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +7289,Ig9,EA012,Patrilocal,EA012-8,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +7290,Ih1,EA012,Avunculocal,EA012-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +7291,Ih10,EA012,Patrilocal,EA012-8,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7292,Ih11,EA012,?,EA012-NA,,,,,, +7293,Ih12,EA012,Patrilocal,EA012-8,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +7294,Ih13,EA012,Patrilocal,EA012-8,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +7295,Ih14,EA012,Patrilocal,EA012-8,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +7296,Ih2,EA012,Patrilocal,EA012-8,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7297,Ih3,EA012,Patrilocal,EA012-8,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +7298,Ih4,EA012,Patrilocal,EA012-8,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7299,Ih5,EA012,Patrilocal,EA012-8,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +7300,Ih6,EA012,Matrilocal,EA012-5,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +7301,Ih7,EA012,Patrilocal,EA012-8,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +7302,Ih8,EA012,Patrilocal,EA012-8,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +7303,Ih9,EA012,Virilocal,EA012-10,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7304,Ii1,EA012,Ambilocal,EA012-2,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +7305,Ii10,EA012,?,EA012-NA,,,,,, +7306,Ii12,EA012,Virilocal,EA012-10,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7307,Ii13,EA012,Ambi-viri,EA012-12,,burrows1937,,1830,EthnographicAtlas_1967_p98, +7308,Ii14,EA012,Ambi-viri,EA012-12,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +7309,Ii2,EA012,Patrilocal,EA012-8,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +7310,Ii3,EA012,Patrilocal,EA012-8,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +7311,Ii4,EA012,Ambi-viri,EA012-12,Residence rule inferred from data on inheritance,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +7312,Ii5,EA012,Ambi-uxo,EA012-11,Virilocal for part of the year in families possessing coconut groves in the outer islands,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to codes for post-marital residence (Col 16), not Col 19 as stated in Gray (1999)" +7313,Ii6,EA012,Ambi-uxo,EA012-11,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +7314,Ii7,EA012,Ambilocal,EA012-2,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98,"Corrected Gray 1999, v12 was coded as ""1""" +7315,Ii8,EA012,Ambi-viri,EA012-12,,burrows1936,,1840,EthnographicAtlas_1967_p98, +7316,Ii9,EA012,Ambi-viri,EA012-12,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +7317,Ij1,EA012,Ambi-viri,EA012-12,,buck1934,,1820,EthnographicAtlas_1967_p98, +7318,Ij10,EA012,Ambi-viri,EA012-12,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +7319,Ij2,EA012,Virilocal,EA012-10,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +7320,Ij3,EA012,Virilocal,EA012-10,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +7321,Ij4,EA012,Ambi-viri,EA012-12,,buck1932a,,1850,EthnographicAtlas_1967_p102, +7322,Ij5,EA012,Ambilocal,EA012-2,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +7323,Ij6,EA012,Ambilocal,EA012-2,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +7324,Ij7,EA012,Ambi-viri,EA012-12,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +7325,Ij8,EA012,Ambilocal,EA012-2,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +7326,Ij9,EA012,Ambi-viri,EA012-12,,metraux1940,,1860,EthnographicAtlas_1967_p102, +7327,Na1,EA012,Ambi-uxo,EA012-11,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +7328,Na10,EA012,Virilocal,EA012-10,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +7329,Na11,EA012,Patrilocal,EA012-8,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +7330,Na12,EA012,Ambilocal,EA012-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +7331,Na13,EA012,Neolocal,EA012-6,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +7332,Na14,EA012,Ambilocal,EA012-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +7333,Na15,EA012,Virilocal,EA012-10,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +7334,Na16,EA012,Ambi-viri,EA012-12,,osgood1931,,1860,EthnographicAtlas_1967_p102, +7335,Na17,EA012,Ambi-viri,EA012-12,"Entry follows Helm; Honigmann reports prevailing pattern as Uxorilocal (code ""9"") with Virilocal as alternate (EA014 would be code ""10"")",helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7336,Na19,EA012,Matrilocal,EA012-5,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +7337,Na2,EA012,Ambilocal,EA012-2,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +7338,Na20,EA012,Ambi-viri,EA012-12,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +7339,Na21,EA012,Ambilocal,EA012-2,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +7340,Na22,EA012,Ambi-viri,EA012-12,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +7341,Na23,EA012,Virilocal,EA012-10,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +7342,Na24,EA012,Ambi-viri,EA012-12,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +7343,Na25,EA012,Ambi-viri,EA012-12,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +7344,Na26,EA012,Virilocal,EA012-10,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +7345,Na27,EA012,Avunculocal,EA012-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +7346,Na28,EA012,Virilocal,EA012-10,,jenness1937,,1880,EthnographicAtlas_1967_p102, +7347,Na29,EA012,Uxorilocal,EA012-9,,goddard1916,,1850,EthnographicAtlas_1967_p102, +7348,Na3,EA012,Neolocal,EA012-6,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +7349,Na30,EA012,Virilocal,EA012-10,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +7350,Na31,EA012,Ambi-uxo,EA012-11,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +7351,Na32,EA012,Virilocal,EA012-10,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +7352,Na33,EA012,Ambi-viri,EA012-12,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +7353,Na34,EA012,Patrilocal,EA012-8,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +7354,Na35,EA012,Ambi-viri,EA012-12,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +7355,Na36,EA012,Neolocal,EA012-6,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +7356,Na37,EA012,Ambilocal,EA012-2,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +7357,Na38,EA012,Virilocal,EA012-10,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +7358,Na39,EA012,Ambi-viri,EA012-12,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +7359,Na4,EA012,Matrilocal,EA012-5,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +7360,Na40,EA012,?,EA012-NA,,,,,, +7361,Na41,EA012,Virilocal,EA012-10,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +7362,Na42,EA012,Patrilocal,EA012-8,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +7363,Na43,EA012,Ambi-viri,EA012-12,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +7364,Na44,EA012,Ambi-viri,EA012-12,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +7365,Na45,EA012,Ambi-viri,EA012-12,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +7366,Na5,EA012,Ambilocal,EA012-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +7367,Na6,EA012,Virilocal,EA012-10,,lantis1946,,1930,EthnographicAtlas_1967_p102, +7368,Na7,EA012,Ambi-viri,EA012-12,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +7369,Na8,EA012,Ambi-uxo,EA012-11,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +7370,Na9,EA012,Virilocal,EA012-10,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7371,Nb1,EA012,Avunculocal,EA012-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +7372,Nb10,EA012,Ambi-viri,EA012-12,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +7373,Nb11,EA012,Ambi-viri,EA012-12,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +7374,Nb12,EA012,Ambi-viri,EA012-12,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +7375,Nb13,EA012,Virilocal,EA012-10,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +7376,Nb14,EA012,Ambi-viri,EA012-12,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +7377,Nb15,EA012,Ambi-viri,EA012-12,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +7378,Nb16,EA012,Virilocal,EA012-10,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +7379,Nb17,EA012,Ambi-viri,EA012-12,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +7380,Nb18,EA012,Virilocal,EA012-10,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +7381,Nb19,EA012,Virilocal,EA012-10,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +7382,Nb2,EA012,Virilocal,EA012-10,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +7383,Nb20,EA012,Ambi-viri,EA012-12,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +7384,Nb21,EA012,Ambi-viri,EA012-12,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +7385,Nb22,EA012,Avunculocal,EA012-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +7386,Nb23,EA012,Ambi-viri,EA012-12,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +7387,Nb24,EA012,Virilocal,EA012-10,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +7388,Nb25,EA012,Ambi-viri,EA012-12,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +7389,Nb26,EA012,Ambi-viri,EA012-12,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +7390,Nb27,EA012,Ambi-viri,EA012-12,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +7391,Nb28,EA012,Ambi-viri,EA012-12,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +7392,Nb29,EA012,Ambi-viri,EA012-12,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +7393,Nb3,EA012,Ambi-viri,EA012-12,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +7394,Nb30,EA012,Virilocal,EA012-10,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +7395,Nb31,EA012,Patrilocal,EA012-8,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +7396,Nb32,EA012,Ambi-viri,EA012-12,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +7397,Nb33,EA012,Ambilocal,EA012-2,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +7398,Nb34,EA012,Ambi-viri,EA012-12,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +7399,Nb35,EA012,Ambi-viri,EA012-12,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +7400,Nb36,EA012,Ambi-viri,EA012-12,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +7401,Nb37,EA012,Ambilocal,EA012-2,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +7402,Nb38,EA012,Ambi-viri,EA012-12,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +7403,Nb39,EA012,Ambilocal,EA012-2,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +7404,Nb4,EA012,Ambi-viri,EA012-12,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +7405,Nb5,EA012,Avunculocal,EA012-1,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +7406,Nb6,EA012,Patrilocal,EA012-8,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +7407,Nb7,EA012,Avunculocal,EA012-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +7408,Nb8,EA012,Avunculocal,EA012-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +7409,Nb9,EA012,Ambi-viri,EA012-12,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +7410,Nc1,EA012,Patrilocal,EA012-8,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +7411,Nc10,EA012,Ambi-viri,EA012-12,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +7412,Nc11,EA012,Virilocal,EA012-10,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +7413,Nc12,EA012,Ambi-viri,EA012-12,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +7414,Nc13,EA012,Ambi-viri,EA012-12,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +7415,Nc14,EA012,Ambi-viri,EA012-12,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +7416,Nc15,EA012,Ambilocal,EA012-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +7417,Nc16,EA012,Virilocal,EA012-10,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +7418,Nc17,EA012,Ambilocal,EA012-2,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +7419,Nc18,EA012,Ambilocal,EA012-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +7420,Nc19,EA012,Uxorilocal,EA012-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +7421,Nc2,EA012,Ambi-viri,EA012-12,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +7422,Nc20,EA012,Ambilocal,EA012-2,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +7423,Nc21,EA012,?,EA012-NA,,,,,, +7424,Nc22,EA012,Ambilocal,EA012-2,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +7425,Nc23,EA012,Patrilocal,EA012-8,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +7426,Nc24,EA012,Patrilocal,EA012-8,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +7427,Nc25,EA012,Patrilocal,EA012-8,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +7428,Nc26,EA012,Patrilocal,EA012-8,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +7429,Nc27,EA012,Virilocal,EA012-10,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +7430,Nc28,EA012,Virilocal,EA012-10,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +7431,Nc29,EA012,Patrilocal,EA012-8,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +7432,Nc3,EA012,Patrilocal,EA012-8,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +7433,Nc30,EA012,Patrilocal,EA012-8,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +7434,Nc31,EA012,Patrilocal,EA012-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +7435,Nc32,EA012,Patrilocal,EA012-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +7436,Nc33,EA012,Patrilocal,EA012-8,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +7437,Nc34,EA012,Patrilocal,EA012-8,,meigs1939,,1880,EthnographicAtlas_1967_p106, +7438,Nc4,EA012,Virilocal,EA012-10,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +7439,Nc5,EA012,Patrilocal,EA012-8,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +7440,Nc6,EA012,Patrilocal,EA012-8,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +7441,Nc7,EA012,Virilocal,EA012-10,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +7442,Nc8,EA012,Ambi-viri,EA012-12,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +7443,Nc9,EA012,Ambi-viri,EA012-12,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +7444,Nd1,EA012,Ambi-viri,EA012-12,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +7445,Nd10,EA012,Ambi-viri,EA012-12,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +7446,Nd11,EA012,Virilocal,EA012-10,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +7447,Nd12,EA012,Ambi-viri,EA012-12,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +7448,Nd13,EA012,Ambi-viri,EA012-12,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +7449,Nd14,EA012,Virilocal,EA012-10,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +7450,Nd15,EA012,Ambilocal,EA012-2,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +7451,Nd16,EA012,Virilocal,EA012-10,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +7452,Nd17,EA012,Ambi-uxo,EA012-11,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +7453,Nd18,EA012,Ambi-viri,EA012-12,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +7454,Nd19,EA012,Virilocal,EA012-10,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +7455,Nd2,EA012,Ambi-uxo,EA012-11,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +7456,Nd20,EA012,Ambi-viri,EA012-12,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +7457,Nd21,EA012,Ambilocal,EA012-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +7458,Nd22,EA012,Ambi-uxo,EA012-11,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +7459,Nd23,EA012,Ambilocal,EA012-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +7460,Nd24,EA012,Ambilocal,EA012-2,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +7461,Nd25,EA012,Ambi-uxo,EA012-11,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +7462,Nd26,EA012,Ambilocal,EA012-2,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +7463,Nd27,EA012,Uxorilocal,EA012-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +7464,Nd28,EA012,Ambilocal,EA012-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +7465,Nd29,EA012,Ambilocal,EA012-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +7466,Nd3,EA012,Virilocal,EA012-10,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +7467,Nd30,EA012,Ambi-viri,EA012-12,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +7468,Nd31,EA012,Virilocal,EA012-10,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +7469,Nd32,EA012,Uxorilocal,EA012-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +7470,Nd33,EA012,Ambilocal,EA012-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +7471,Nd34,EA012,Ambilocal,EA012-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +7472,Nd35,EA012,Ambi-viri,EA012-12,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +7473,Nd36,EA012,Virilocal,EA012-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +7474,Nd37,EA012,Ambilocal,EA012-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +7475,Nd38,EA012,Ambilocal,EA012-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +7476,Nd39,EA012,Ambilocal,EA012-2,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +7477,Nd4,EA012,Virilocal,EA012-10,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +7478,Nd40,EA012,Uxorilocal,EA012-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +7479,Nd41,EA012,Ambi-viri,EA012-12,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +7480,Nd42,EA012,Ambilocal,EA012-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +7481,Nd43,EA012,Ambi-uxo,EA012-11,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +7482,Nd44,EA012,Ambi-uxo,EA012-11,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +7483,Nd45,EA012,Ambilocal,EA012-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +7484,Nd46,EA012,Virilocal,EA012-10,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +7485,Nd47,EA012,Ambi-viri,EA012-12,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +7486,Nd48,EA012,Ambi-uxo,EA012-11,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +7487,Nd49,EA012,Uxorilocal,EA012-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +7488,Nd5,EA012,Ambilocal,EA012-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +7489,Nd50,EA012,?,EA012-NA,,,,,, +7490,Nd51,EA012,Uxorilocal,EA012-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +7491,Nd52,EA012,Ambilocal,EA012-2,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +7492,Nd53,EA012,Virilocal,EA012-10,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +7493,Nd54,EA012,Ambilocal,EA012-2,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7494,Nd55,EA012,Ambilocal,EA012-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +7495,Nd56,EA012,Ambi-uxo,EA012-11,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +7496,Nd57,EA012,Ambi-uxo,EA012-11,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +7497,Nd58,EA012,Ambi-uxo,EA012-11,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +7498,Nd59,EA012,Uxorilocal,EA012-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +7499,Nd6,EA012,Ambilocal,EA012-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +7500,Nd60,EA012,Uxorilocal,EA012-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +7501,Nd61,EA012,Uxorilocal,EA012-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +7502,Nd62,EA012,Uxorilocal,EA012-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +7503,Nd63,EA012,Ambi-uxo,EA012-11,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +7504,Nd64,EA012,Uxorilocal,EA012-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +7505,Nd65,EA012,Ambi-viri,EA012-12,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +7506,Nd66,EA012,Ambilocal,EA012-2,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +7507,Nd67,EA012,Ambilocal,EA012-2,,gifford1936,,1870,EthnographicAtlas_1967_p110, +7508,Nd7,EA012,Ambi-viri,EA012-12,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +7509,Nd8,EA012,Ambi-viri,EA012-12,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +7510,Nd9,EA012,Ambi-viri,EA012-12,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +7511,Ne1,EA012,Ambi-viri,EA012-12,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +7512,Ne10,EA012,Uxorilocal,EA012-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +7513,Ne11,EA012,Ambi-viri,EA012-12,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +7514,Ne12,EA012,Ambi-viri,EA012-12,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +7515,Ne13,EA012,Virilocal,EA012-10,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +7516,Ne14,EA012,?,EA012-NA,,,,,, +7517,Ne15,EA012,Matrilocal,EA012-5,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +7518,Ne16,EA012,Ambilocal,EA012-2,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +7519,Ne17,EA012,Ambi-viri,EA012-12,"Entry follows Richardson; Mooney reports prevailing pattern as Uxorilocal (code ""9"") with Virilocal as alternate (EA014 would be code ""10"")",lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +7520,Ne18,EA012,Virilocal,EA012-10,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +7521,Ne19,EA012,Virilocal,EA012-10,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +7522,Ne2,EA012,Ambi-uxo,EA012-11,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +7523,Ne20,EA012,Ambi-viri,EA012-12,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +7524,Ne21,EA012,?,EA012-NA,,,,,, +7525,Ne3,EA012,Ambilocal,EA012-2,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +7526,Ne4,EA012,Virilocal,EA012-10,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +7527,Ne5,EA012,Ambi-uxo,EA012-11,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +7528,Ne6,EA012,Matrilocal,EA012-5,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +7529,Ne7,EA012,Virilocal,EA012-10,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +7530,Ne8,EA012,Ambi-viri,EA012-12,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +7531,Ne9,EA012,Uxorilocal,EA012-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +7532,Nf10,EA012,Patrilocal,EA012-8,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +7533,Nf11,EA012,Patrilocal,EA012-8,,whitman1937,,1870,EthnographicAtlas_1967_p114, +7534,Nf12,EA012,Patrilocal,EA012-8,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +7535,Nf13,EA012,Patrilocal,EA012-8,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7536,Nf14,EA012,Uxorilocal,EA012-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +7537,Nf15,EA012,Patrilocal,EA012-8,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +7538,Nf2,EA012,Patrilocal,EA012-8,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +7539,Nf3,EA012,Patrilocal,EA012-8,"In hunting camps, but possibly Uxorilocal in the villages (code ""9"")",dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +7540,Nf4,EA012,Patrilocal,EA012-8,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +7541,Nf5,EA012,Ambi-uxo,EA012-11,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +7542,Nf6,EA012,Matrilocal,EA012-5,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +7543,Nf7,EA012,Ambilocal,EA012-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7544,Nf8,EA012,Ambi-uxo,EA012-11,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +7545,Nf9,EA012,Patrilocal,EA012-8,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +7546,Ng1,EA012,Matrilocal,EA012-5,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +7547,Ng10,EA012,Matrilocal,EA012-5,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +7548,Ng11,EA012,Neolocal,EA012-6,"At a late period, but probably originally Matrilocal (code ""5"")",eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +7549,Ng12,EA012,Matrilocal,EA012-5,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +7550,Ng13,EA012,Virilocal,EA012-10,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +7551,Ng14,EA012,Matrilocal,EA012-5,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +7552,Ng15,EA012,?,EA012-NA,,,,,, +7553,Ng2,EA012,Matrilocal,EA012-5,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +7554,Ng3,EA012,Matrilocal,EA012-5,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +7555,Ng4,EA012,Ambilocal,EA012-2,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +7556,Ng5,EA012,Matrilocal,EA012-5,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +7557,Ng6,EA012,Matrilocal,EA012-5,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +7558,Ng7,EA012,Virilocal,EA012-10,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +7559,Ng8,EA012,Matrilocal,EA012-5,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +7560,Ng9,EA012,Neolocal,EA012-6,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +7561,Nh1,EA012,Ambi-uxo,EA012-11,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +7562,Nh10,EA012,Neolocal,EA012-6,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +7563,Nh11,EA012,Neolocal,EA012-6,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +7564,Nh12,EA012,Ambilocal,EA012-2,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +7565,Nh13,EA012,Ambilocal,EA012-2,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +7566,Nh14,EA012,Matrilocal,EA012-5,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +7567,Nh15,EA012,Uxorilocal,EA012-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +7568,Nh16,EA012,Uxorilocal,EA012-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7569,Nh17,EA012,Matrilocal,EA012-5,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +7570,Nh18,EA012,Matrilocal,EA012-5,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7571,Nh19,EA012,Patrilocal,EA012-8,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +7572,Nh2,EA012,Matrilocal,EA012-5,,dozier1954,,1950,EthnographicAtlas_1967_p114, +7573,Nh20,EA012,Patrilocal,EA012-8,,gifford1931,,1860,EthnographicAtlas_1967_p114, +7574,Nh21,EA012,Ambilocal,EA012-2,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7575,Nh22,EA012,Patrilocal,EA012-8,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +7576,Nh23,EA012,Ambilocal,EA012-2,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +7577,Nh24,EA012,Uxorilocal,EA012-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +7578,Nh25,EA012,Neolocal,EA012-6,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +7579,Nh26,EA012,Neolocal,EA012-6,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +7580,Nh27,EA012,Ambilocal,EA012-2,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +7581,Nh3,EA012,Matrilocal,EA012-5,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +7582,Nh4,EA012,Matrilocal,EA012-5,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +7583,Nh5,EA012,Patrilocal,EA012-8,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +7584,Nh6,EA012,Neolocal,EA012-6,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +7585,Nh7,EA012,Matrilocal,EA012-5,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +7586,Nh8,EA012,Neolocal,EA012-6,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +7587,Nh9,EA012,Neolocal,EA012-6,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +7588,Ni1,EA012,Neolocal,EA012-6,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +7589,Ni2,EA012,Virilocal,EA012-10,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +7590,Ni3,EA012,Ambilocal,EA012-2,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +7591,Ni4,EA012,Virilocal,EA012-10,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +7592,Ni5,EA012,Ambi-uxo,EA012-11,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +7593,Ni6,EA012,Virilocal,EA012-10,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +7594,Ni7,EA012,Virilocal,EA012-10,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +7595,Ni8,EA012,Neolocal,EA012-6,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +7596,Ni9,EA012,?,EA012-NA,,,,,, +7597,Nj1,EA012,Virilocal,EA012-10,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7598,Nj10,EA012,Virilocal,EA012-10,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7599,Nj11,EA012,Virilocal,EA012-10,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +7600,Nj12,EA012,?,EA012-NA,,,,,, +7601,Nj13,EA012,Neolocal,EA012-6,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +7602,Nj14,EA012,Patrilocal,EA012-8,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +7603,Nj2,EA012,Virilocal,EA012-10,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +7604,Nj3,EA012,Virilocal,EA012-10,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +7605,Nj4,EA012,Virilocal,EA012-10,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +7606,Nj5,EA012,Virilocal,EA012-10,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +7607,Nj6,EA012,Ambi-viri,EA012-12,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +7608,Nj7,EA012,Virilocal,EA012-10,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7609,Nj8,EA012,Virilocal,EA012-10,,foster1948,,1500,EthnographicAtlas_1967_p118, +7610,Nj9,EA012,Virilocal,EA012-10,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +7611,Sa1,EA012,Uxorilocal,EA012-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +7612,Sa10,EA012,Patrilocal,EA012-8,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +7613,Sa11,EA012,Patrilocal,EA012-8,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +7614,Sa12,EA012,Neolocal,EA012-6,,stone1948,,1948,EthnographicAtlas_1967_p118, +7615,Sa13,EA012,Patrilocal,EA012-8,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +7616,Sa14,EA012,Matrilocal,EA012-5,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +7617,Sa15,EA012,Patrilocal,EA012-8,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +7618,Sa16,EA012,Neolocal,EA012-6,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +7619,Sa17,EA012,Patrilocal,EA012-8,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +7620,Sa2,EA012,Patrilocal,EA012-8,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7621,Sa3,EA012,Ambilocal,EA012-2,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +7622,Sa4,EA012,Neolocal,EA012-6,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +7623,Sa5,EA012,Neolocal,EA012-6,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +7624,Sa6,EA012,Virilocal,EA012-10,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +7625,Sa7,EA012,Neolocal,EA012-6,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +7626,Sa8,EA012,Patrilocal,EA012-8,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +7627,Sa9,EA012,Uxorilocal,EA012-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +7628,Sb1,EA012,Matrilocal,EA012-5,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +7629,Sb2,EA012,Uxorilocal,EA012-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +7630,Sb3,EA012,Ambi-uxo,EA012-11,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +7631,Sb4,EA012,Ambi-uxo,EA012-11,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +7632,Sb5,EA012,Ambilocal,EA012-2,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +7633,Sb6,EA012,Avunculocal,EA012-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +7634,Sb7,EA012,Uxorilocal,EA012-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +7635,Sb8,EA012,Virilocal,EA012-10,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +7636,Sb9,EA012,Neolocal,EA012-6,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +7637,Sc1,EA012,Uxorilocal,EA012-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +7638,Sc10,EA012,Matrilocal,EA012-5,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +7639,Sc11,EA012,Virilocal,EA012-10,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +7640,Sc12,EA012,Uxorilocal,EA012-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +7641,Sc13,EA012,Ambi-uxo,EA012-11,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +7642,Sc14,EA012,Uxorilocal,EA012-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +7643,Sc15,EA012,Uxorilocal,EA012-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +7644,Sc16,EA012,Uxorilocal,EA012-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +7645,Sc17,EA012,Virilocal,EA012-10,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +7646,Sc18,EA012,Matrilocal,EA012-5,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +7647,Sc2,EA012,Uxorilocal,EA012-9,,leedsnd,,1950,EthnographicAtlas_1967_p118, +7648,Sc3,EA012,Ambilocal,EA012-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +7649,Sc4,EA012,Uxorilocal,EA012-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +7650,Sc5,EA012,Virilocal,EA012-10,,farabee1918,,1900,EthnographicAtlas_1967_p118, +7651,Sc6,EA012,Avunculocal,EA012-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7652,Sc7,EA012,Ambi-uxo,EA012-11,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +7653,Sc8,EA012,Uxorilocal,EA012-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +7654,Sc9,EA012,Virilocal,EA012-10,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +7655,Sd1,EA012,Ambi-uxo,EA012-11,But men sleep apart from their wives in a men's house,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7656,Sd2,EA012,Uxorilocal,EA012-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +7657,Sd3,EA012,Patrilocal,EA012-8,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +7658,Sd4,EA012,Ambilocal,EA012-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +7659,Sd5,EA012,Patrilocal,EA012-8,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +7660,Sd6,EA012,Uxorilocal,EA012-9,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +7661,Sd7,EA012,Ambilocal,EA012-2,,fock1963,,1950,EthnographicAtlas_1967_p118, +7662,Sd8,EA012,Ambilocal,EA012-2,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +7663,Sd9,EA012,Virilocal,EA012-10,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7664,Se1,EA012,Uxorilocal,EA012-9,"The entry assumes that the matrilocal extended families are organized around matrilineage cores; if there are actually no lineages, the entry should be Uxorilocal; Holmberg does not report lineages but admits, in personal discussion, that he may conceivably have overlooked their existence",holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +7665,Se10,EA012,Virilocal,EA012-10,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +7666,Se11,EA012,Virilocal,EA012-10,,prost1965,,1960,EthnographicAtlas_1967_p122, +7667,Se12,EA012,Patrilocal,EA012-8,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +7668,Se2,EA012,Patrilocal,EA012-8,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +7669,Se3,EA012,Neolocal,EA012-6,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +7670,Se4,EA012,Patrilocal,EA012-8,,fejos1943,,1940,EthnographicAtlas_1967_p118, +7671,Se5,EA012,Patrilocal,EA012-8,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +7672,Se6,EA012,Patrilocal,EA012-8,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +7673,Se7,EA012,Neolocal,EA012-6,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7674,Se8,EA012,Virilocal,EA012-10,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +7675,Se9,EA012,Uxorilocal,EA012-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +7676,Sf1,EA012,Virilocal,EA012-10,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +7677,Sf2,EA012,Patrilocal,EA012-8,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +7678,Sf3,EA012,Ambi-viri,EA012-12,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +7679,Sf4,EA012,Ambi-viri,EA012-12,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +7680,Sf5,EA012,Neolocal,EA012-6,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +7681,Sf6,EA012,Virilocal,EA012-10,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +7682,Sf7,EA012,Ambi-viri,EA012-12,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +7683,Sf8,EA012,Uxorilocal,EA012-9,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +7684,Sf9,EA012,Neolocal,EA012-6,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +7685,Sg1,EA012,Virilocal,EA012-10,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +7686,Sg2,EA012,Patrilocal,EA012-8,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7687,Sg3,EA012,Virilocal,EA012-10,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people""",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +7688,Sg4,EA012,Virilocal,EA012-10,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +7689,Sg5,EA012,Ambilocal,EA012-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7690,Sh1,EA012,Ambi-uxo,EA012-11,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +7691,Sh2,EA012,Ambilocal,EA012-2,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +7692,Sh3,EA012,Neolocal,EA012-6,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +7693,Sh4,EA012,Uxorilocal,EA012-9,,oberg1949,,1940,EthnographicAtlas_1967_p122, +7694,Sh5,EA012,Uxorilocal,EA012-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +7695,Sh6,EA012,Ambi-uxo,EA012-11,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +7696,Sh7,EA012,Virilocal,EA012-10,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +7697,Sh8,EA012,Ambilocal,EA012-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +7698,Sh9,EA012,Ambi-uxo,EA012-11,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +7699,Si1,EA012,Matrilocal,EA012-5,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7700,Si10,EA012,Virilocal,EA012-10,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +7701,Si2,EA012,Virilocal,EA012-10,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +7702,Si3,EA012,Virilocal,EA012-10,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7703,Si4,EA012,Ambi-viri,EA012-12,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +7704,Si5,EA012,Virilocal,EA012-10,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +7705,Si6,EA012,Neolocal,EA012-6,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +7706,Si7,EA012,Ambi-uxo,EA012-11,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +7707,Si8,EA012,Virilocal,EA012-10,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +7708,Si9,EA012,?,EA012-NA,,,,,, +7709,Sj1,EA012,Uxorilocal,EA012-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +7710,Sj10,EA012,Virilocal,EA012-10,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7711,Sj11,EA012,Uxorilocal,EA012-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +7712,Sj2,EA012,Patrilocal,EA012-8,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +7713,Sj3,EA012,Ambilocal,EA012-2,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +7714,Sj4,EA012,Matrilocal,EA012-5,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +7715,Sj5,EA012,?,EA012-NA,,,,,, +7716,Sj6,EA012,Uxorilocal,EA012-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7717,Sj7,EA012,Matrilocal,EA012-5,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +7718,Sj8,EA012,Ambi-uxo,EA012-11,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +7719,Sj9,EA012,Uxorilocal,EA012-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +7720,ch12,EA012,Virilocal,EA012-10,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +7721,ch13,EA012,Patrilocal,EA012-8,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +7722,ch14,EA012,Virilocal,EA012-10,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +7723,ch15,EA012,Virilocal,EA012-10,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +7724,ch16,EA012,Ambi-viri,EA012-12,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +7725,ch17,EA012,Neolocal,EA012-6,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +7726,ch18,EA012,Virilocal,EA012-10,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +7727,ch19,EA012,Patrilocal,EA012-8,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +7728,ch20,EA012,Virilocal,EA012-10,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +7729,ch21,EA012,Virilocal,EA012-10,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +7730,ch22,EA012,Virilocal,EA012-10,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +7731,ch23,EA012,Ambi-viri,EA012-12,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +7732,ch24,EA012,Virilocal,EA012-10,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +7733,ch25,EA012,Virilocal,EA012-10,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +7734,ch26,EA012,Ambi-viri,EA012-12,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +7735,ch27,EA012,Virilocal,EA012-10,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +7736,ch28,EA012,Virilocal,EA012-10,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +7737,ec12,EA012,Patrilocal,EA012-8,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +7738,ec13,EA012,Patrilocal,EA012-8,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +7739,ec14,EA012,Patrilocal,EA012-8,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +7740,ec15,EA012,Virilocal,EA012-10,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +7741,ec16,EA012,Virilocal,EA012-10,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +7742,ec17,EA012,Virilocal,EA012-10,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +7743,ec18,EA012,Virilocal,EA012-10,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +7744,ec19,EA012,Virilocal,EA012-10,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +7745,ec20,EA012,Virilocal,EA012-10,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +7746,ec21,EA012,Virilocal,EA012-10,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +7747,Aa1,EA013,No alternate,EA013-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +7748,Aa2,EA013,No alternate,EA013-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +7749,Aa3,EA013,No alternate,EA013-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +7750,Aa4,EA013,Husband to wife,EA013-3,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +7751,Aa5,EA013,Husband to wife,EA013-3,"Note that Turnbull reports Ambilocal (code would be ""2"")",deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +7752,Aa6,EA013,No alternate,EA013-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +7753,Aa7,EA013,Husband to wife,EA013-3,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +7754,Aa8,EA013,No alternate,EA013-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +7755,Aa9,EA013,No alternate,EA013-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +7756,Ab1,EA013,No alternate,EA013-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7757,Ab10,EA013,No alternate,EA013-9,,hunter1936,,1936,EthnographicAtlas_1967_p62, +7758,Ab11,EA013,No alternate,EA013-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +7759,Ab12,EA013,No alternate,EA013-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +7760,Ab13,EA013,No alternate,EA013-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +7761,Ab14,EA013,No alternate,EA013-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +7762,Ab15,EA013,No alternate,EA013-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +7763,Ab16,EA013,No alternate,EA013-9,,earthy1933,,1930,EthnographicAtlas_1967_p62, +7764,Ab17,EA013,No alternate,EA013-9,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +7765,Ab18,EA013,Husband to wife,EA013-3,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +7766,Ab19,EA013,Ambi/neo-local,EA013-2,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +7767,Ab2,EA013,Ambi/neo-local,EA013-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +7768,Ab20,EA013,No alternate,EA013-9,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +7769,Ab21a,EA013,No alternate,EA013-9,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +7770,Ab21b,EA013,No alternate,EA013-9,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +7771,Ab22,EA013,No alternate,EA013-9,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +7772,Ab3,EA013,No alternate,EA013-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7773,Ab4,EA013,No alternate,EA013-9,,junod1927,,1920,EthnographicAtlas_1967_p62, +7774,Ab5,EA013,No alternate,EA013-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7775,Ab6,EA013,No alternate,EA013-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +7776,Ab7,EA013,No alternate,EA013-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +7777,Ab8,EA013,No alternate,EA013-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +7778,Ab9,EA013,No alternate,EA013-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +7779,Ac1,EA013,No alternate,EA013-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7780,Ac10,EA013,Husband to wife,EA013-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +7781,Ac11,EA013,No alternate,EA013-9,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7782,Ac12,EA013,No alternate,EA013-9,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +7783,Ac13,EA013,No alternate,EA013-9,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7784,Ac14,EA013,No alternate,EA013-9,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +7785,Ac15,EA013,No alternate,EA013-9,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7786,Ac16,EA013,No alternate,EA013-9,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +7787,Ac17,EA013,No alternate,EA013-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7788,Ac18,EA013,No alternate,EA013-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +7789,Ac19,EA013,No alternate,EA013-9,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7790,Ac2,EA013,No alternate,EA013-9,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7791,Ac20,EA013,No alternate,EA013-9,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +7792,Ac21,EA013,No alternate,EA013-9,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +7793,Ac22,EA013,No alternate,EA013-9,,mertens1935,,1930,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7794,Ac23,EA013,Ambi/neo-local,EA013-2,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +7795,Ac24,EA013,No alternate,EA013-9,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7796,Ac25,EA013,No alternate,EA013-9,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7797,Ac26,EA013,No alternate,EA013-9,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7798,Ac27,EA013,No alternate,EA013-9,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +7799,Ac28,EA013,No alternate,EA013-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +7800,Ac29,EA013,No alternate,EA013-9,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7801,Ac3,EA013,Wife to husband,EA013-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +7802,Ac30,EA013,Ambi/neo-local,EA013-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +7803,Ac31,EA013,No alternate,EA013-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +7804,Ac32,EA013,No alternate,EA013-9,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7805,Ac33,EA013,Ambi/neo-local,EA013-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +7806,Ac34,EA013,Ambi/neo-local,EA013-2,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +7807,Ac35,EA013,Husband to wife,EA013-3,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +7808,Ac36,EA013,No alternate,EA013-9,"Formerly, alternate pattern was reported as 'Uxorilocal' (EA014 code ""9""), which would make this 'Husband to wife's group' (code ""3"")",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +7809,Ac37,EA013,No alternate,EA013-9,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +7810,Ac38,EA013,Wife to husband,EA013-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7811,Ac39,EA013,Wife to husband,EA013-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7812,Ac4,EA013,No alternate,EA013-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +7813,Ac40,EA013,Wife to husband,EA013-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7814,Ac41,EA013,No alternate,EA013-9,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +7815,Ac42,EA013,No alternate,EA013-9,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +7816,Ac43,EA013,No alternate,EA013-9,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +7817,Ac5,EA013,Husband to wife,EA013-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +7818,Ac6,EA013,No alternate,EA013-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7819,Ac7,EA013,Wife to husband,EA013-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7820,Ac8,EA013,No alternate,EA013-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +7821,Ac9,EA013,Husband to wife,EA013-3,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +7822,Ad1,EA013,Husband to wife,EA013-3,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +7823,Ad10,EA013,No alternate,EA013-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +7824,Ad11,EA013,Husband to wife,EA013-3,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +7825,Ad12,EA013,No alternate,EA013-9,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +7826,Ad13,EA013,No alternate,EA013-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +7827,Ad14,EA013,Wife to husband,EA013-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7828,Ad15,EA013,No alternate,EA013-9,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +7829,Ad16,EA013,No alternate,EA013-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +7830,Ad17,EA013,Ambi/neo-local,EA013-2,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +7831,Ad18,EA013,No alternate,EA013-9,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +7832,Ad19,EA013,No alternate,EA013-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +7833,Ad2,EA013,No alternate,EA013-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +7834,Ad20,EA013,No alternate,EA013-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7835,Ad21,EA013,No alternate,EA013-9,,maurice193538,,1930,EthnographicAtlas_1967_p66, +7836,Ad22,EA013,No alternate,EA013-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7837,Ad23,EA013,No alternate,EA013-9,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +7838,Ad24,EA013,Ambi/neo-local,EA013-2,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +7839,Ad25,EA013,No alternate,EA013-9,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +7840,Ad26,EA013,No alternate,EA013-9,,sick1916,,1910,EthnographicAtlas_1967_p66, +7841,Ad27,EA013,No alternate,EA013-9,At least initially,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +7842,Ad28,EA013,Wife to husband,EA013-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +7843,Ad29,EA013,No alternate,EA013-9,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +7844,Ad3,EA013,Ambi/neo-local,EA013-2,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +7845,Ad30,EA013,Husband to wife,EA013-3,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +7846,Ad31,EA013,No alternate,EA013-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +7847,Ad32,EA013,No alternate,EA013-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +7848,Ad33,EA013,No alternate,EA013-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +7849,Ad34,EA013,No alternate,EA013-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +7850,Ad35,EA013,No alternate,EA013-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +7851,Ad36,EA013,No alternate,EA013-9,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +7852,Ad37,EA013,Husband to wife,EA013-3,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +7853,Ad38,EA013,No alternate,EA013-9,Inferential from distributional evidence,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +7854,Ad39,EA013,No alternate,EA013-9,,gray1963,,1950,EthnographicAtlas_1967_p66, +7855,Ad4,EA013,No alternate,EA013-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +7856,Ad40,EA013,No alternate,EA013-9,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +7857,Ad41,EA013,No alternate,EA013-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +7858,Ad42,EA013,No alternate,EA013-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +7859,Ad43,EA013,Ambi/neo-local,EA013-2,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +7860,Ad44,EA013,No alternate,EA013-9,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +7861,Ad45,EA013,Ambi/neo-local,EA013-2,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +7862,Ad46,EA013,No alternate,EA013-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +7863,Ad47,EA013,No alternate,EA013-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +7864,Ad48,EA013,No alternate,EA013-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +7865,Ad49,EA013,No alternate,EA013-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +7866,Ad5,EA013,No alternate,EA013-9,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +7867,Ad50,EA013,Wife to husband,EA013-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7868,Ad51,EA013,Ambi/neo-local,EA013-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +7869,Ad6,EA013,No alternate,EA013-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +7870,Ad7,EA013,Wife to husband,EA013-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +7871,Ad8,EA013,Ambi/neo-local,EA013-2,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +7872,Ad9,EA013,Ambi/neo-local,EA013-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +7873,Ae1,EA013,No alternate,EA013-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7874,Ae10,EA013,No alternate,EA013-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +7875,Ae11,EA013,No alternate,EA013-9,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +7876,Ae12,EA013,No alternate,EA013-9,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +7877,Ae13,EA013,No alternate,EA013-9,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +7878,Ae14,EA013,No alternate,EA013-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +7879,Ae15,EA013,No alternate,EA013-9,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +7880,Ae16,EA013,No alternate,EA013-9,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +7881,Ae17,EA013,No alternate,EA013-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +7882,Ae18,EA013,No alternate,EA013-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +7883,Ae19,EA013,No alternate,EA013-9,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +7884,Ae2,EA013,No alternate,EA013-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7885,Ae20,EA013,No alternate,EA013-9,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7886,Ae21,EA013,No alternate,EA013-9,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +7887,Ae22,EA013,No alternate,EA013-9,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +7888,Ae23,EA013,No alternate,EA013-9,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7889,Ae24,EA013,No alternate,EA013-9,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7890,Ae25,EA013,No alternate,EA013-9,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +7891,Ae26,EA013,No alternate,EA013-9,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +7892,Ae27,EA013,No alternate,EA013-9,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +7893,Ae28,EA013,No alternate,EA013-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +7894,Ae29,EA013,No alternate,EA013-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +7895,Ae3,EA013,No alternate,EA013-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +7896,Ae30,EA013,No alternate,EA013-9,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +7897,Ae31,EA013,No alternate,EA013-9,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +7898,Ae32,EA013,No alternate,EA013-9,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +7899,Ae33,EA013,No alternate,EA013-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +7900,Ae34,EA013,No alternate,EA013-9,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +7901,Ae35,EA013,No alternate,EA013-9,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +7902,Ae36,EA013,No alternate,EA013-9,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +7903,Ae37,EA013,No alternate,EA013-9,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +7904,Ae38,EA013,No alternate,EA013-9,The relative incidence of avunculocal and virilocal residence is unclear,wijnant192526,,1920,EthnographicAtlas_1967_p66, +7905,Ae39,EA013,No alternate,EA013-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +7906,Ae4,EA013,No alternate,EA013-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7907,Ae40,EA013,No alternate,EA013-9,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +7908,Ae41,EA013,No alternate,EA013-9,,andersson1953,,1940,EthnographicAtlas_1967_p66, +7909,Ae42,EA013,No alternate,EA013-9,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +7910,Ae43,EA013,No alternate,EA013-9,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +7911,Ae44,EA013,No alternate,EA013-9,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +7912,Ae45,EA013,No alternate,EA013-9,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +7913,Ae46,EA013,No alternate,EA013-9,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7914,Ae47,EA013,No alternate,EA013-9,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +7915,Ae48,EA013,No alternate,EA013-9,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7916,Ae49,EA013,No alternate,EA013-9,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +7917,Ae5,EA013,No alternate,EA013-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +7918,Ae50,EA013,No alternate,EA013-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +7919,Ae51,EA013,No alternate,EA013-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +7920,Ae52,EA013,No alternate,EA013-9,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +7921,Ae53,EA013,No alternate,EA013-9,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +7922,Ae54,EA013,No alternate,EA013-9,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7923,Ae55,EA013,No alternate,EA013-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +7924,Ae56,EA013,Ambi/neo-local,EA013-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +7925,Ae57,EA013,No alternate,EA013-9,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +7926,Ae58,EA013,No alternate,EA013-9,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +7927,Ae59,EA013,No alternate,EA013-9,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +7928,Ae6,EA013,No alternate,EA013-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +7929,Ae7,EA013,No alternate,EA013-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +7930,Ae8,EA013,Ambi/neo-local,EA013-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +7931,Ae9,EA013,No alternate,EA013-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +7932,Af1,EA013,Husband to wife,EA013-3,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +7933,Af10,EA013,No alternate,EA013-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +7934,Af11,EA013,No alternate,EA013-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +7935,Af12,EA013,?,EA013-NA,"Residence pattern is a mix of 'Avunculocal', 'Nonestablishment of a common household', and 'Virilocal'with relative incidence unspecified; so, this variable would be either 'wife to husband's group' (code ""1"" or 'no common residence' (code ""9"")",field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +7936,Af13,EA013,No alternate,EA013-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +7937,Af14,EA013,No alternate,EA013-9,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7938,Af15,EA013,Husband to wife,EA013-3,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +7939,Af16,EA013,No alternate,EA013-9,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +7940,Af17,EA013,No alternate,EA013-9,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +7941,Af18,EA013,No alternate,EA013-9,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +7942,Af19,EA013,No alternate,EA013-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +7943,Af2,EA013,No alternate,EA013-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +7944,Af20,EA013,No alternate,EA013-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +7945,Af21,EA013,No alternate,EA013-9,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7946,Af22,EA013,Ambi/neo-local,EA013-2,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +7947,Af23,EA013,No alternate,EA013-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +7948,Af24,EA013,No alternate,EA013-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +7949,Af25,EA013,No alternate,EA013-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +7950,Af26,EA013,No alternate,EA013-9,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7951,Af27,EA013,No alternate,EA013-9,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +7952,Af28,EA013,No alternate,EA013-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +7953,Af29,EA013,No alternate,EA013-9,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +7954,Af3,EA013,No alternate,EA013-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7955,Af30,EA013,No alternate,EA013-9,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +7956,Af31,EA013,No alternate,EA013-9,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +7957,Af32,EA013,No alternate,EA013-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7958,Af33,EA013,No alternate,EA013-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7959,Af34,EA013,No alternate,EA013-9,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +7960,Af35,EA013,No alternate,EA013-9,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +7961,Af36,EA013,No alternate,EA013-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +7962,Af37,EA013,No alternate,EA013-9,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +7963,Af38,EA013,No alternate,EA013-9,But a married woman commonly remains in her natal household instead of joining her husband,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7964,Af39,EA013,No alternate,EA013-9,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7965,Af4,EA013,No alternate,EA013-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7966,Af40,EA013,No alternate,EA013-9,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7967,Af41,EA013,No alternate,EA013-9,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7968,Af42,EA013,Ambi/neo-local,EA013-2,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +7969,Af43,EA013,Wife to husband,EA013-1,But most married women continue to reside in their natal household,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +7970,Af44,EA013,No alternate,EA013-9,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7971,Af45,EA013,No alternate,EA013-9,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7972,Af46,EA013,No alternate,EA013-9,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +7973,Af47,EA013,No alternate,EA013-9,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +7974,Af48,EA013,No alternate,EA013-9,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +7975,Af49,EA013,No alternate,EA013-9,,schwab1947,,1940,EthnographicAtlas_1967_p70, +7976,Af5,EA013,Ambi/neo-local,EA013-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7977,Af50,EA013,No alternate,EA013-9,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +7978,Af51,EA013,No alternate,EA013-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +7979,Af52,EA013,No alternate,EA013-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +7980,Af53,EA013,No alternate,EA013-9,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +7981,Af54,EA013,No alternate,EA013-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +7982,Af55,EA013,Husband to wife,EA013-3,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +7983,Af56,EA013,No alternate,EA013-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7984,Af57,EA013,No alternate,EA013-9,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7985,Af58,EA013,No alternate,EA013-9,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +7986,Af6,EA013,No alternate,EA013-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +7987,Af7,EA013,No alternate,EA013-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +7988,Af8,EA013,No alternate,EA013-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +7989,Af9,EA013,No alternate,EA013-9,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7990,Ag1,EA013,No alternate,EA013-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +7991,Ag10,EA013,No alternate,EA013-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +7992,Ag11,EA013,No alternate,EA013-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7993,Ag12,EA013,No alternate,EA013-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +7994,Ag13,EA013,No alternate,EA013-9,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +7995,Ag14,EA013,No alternate,EA013-9,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +7996,Ag15,EA013,No alternate,EA013-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +7997,Ag16,EA013,No alternate,EA013-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +7998,Ag17,EA013,No alternate,EA013-9,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +7999,Ag18,EA013,No alternate,EA013-9,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +8000,Ag19,EA013,No alternate,EA013-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +8001,Ag2,EA013,No alternate,EA013-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +8002,Ag20,EA013,No alternate,EA013-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +8003,Ag21,EA013,No alternate,EA013-9,,lestrange1950,,1910,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8004,Ag22,EA013,No alternate,EA013-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8005,Ag23,EA013,No alternate,EA013-9,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +8006,Ag24,EA013,No alternate,EA013-9,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +8007,Ag25,EA013,No alternate,EA013-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +8008,Ag26,EA013,No alternate,EA013-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +8009,Ag27,EA013,Ambi/neo-local,EA013-2,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +8010,Ag28,EA013,No alternate,EA013-9,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +8011,Ag29,EA013,No alternate,EA013-9,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +8012,Ag3,EA013,No alternate,EA013-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +8013,Ag30,EA013,No alternate,EA013-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +8014,Ag31,EA013,No alternate,EA013-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +8015,Ag32,EA013,No alternate,EA013-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +8016,Ag33,EA013,No alternate,EA013-9,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8017,Ag34,EA013,No alternate,EA013-9,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8018,Ag35,EA013,No alternate,EA013-9,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +8019,Ag36,EA013,No alternate,EA013-9,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8020,Ag37,EA013,No alternate,EA013-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +8021,Ag38,EA013,No alternate,EA013-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +8022,Ag39,EA013,No alternate,EA013-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +8023,Ag4,EA013,Ambi/neo-local,EA013-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +8024,Ag40,EA013,No alternate,EA013-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +8025,Ag41,EA013,No alternate,EA013-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +8026,Ag42,EA013,No alternate,EA013-9,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +8027,Ag43,EA013,No alternate,EA013-9,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8028,Ag44,EA013,?,EA013-NA,,,,,, +8029,Ag45,EA013,Ambi/neo-local,EA013-2,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +8030,Ag46,EA013,No alternate,EA013-9,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +8031,Ag47,EA013,No alternate,EA013-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8032,Ag48,EA013,No alternate,EA013-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +8033,Ag49,EA013,No alternate,EA013-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +8034,Ag5,EA013,No alternate,EA013-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8035,Ag50,EA013,No alternate,EA013-9,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +8036,Ag51,EA013,No alternate,EA013-9,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +8037,Ag52,EA013,No alternate,EA013-9,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +8038,Ag53,EA013,No alternate,EA013-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +8039,Ag54,EA013,No alternate,EA013-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +8040,Ag6,EA013,No alternate,EA013-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +8041,Ag7,EA013,No alternate,EA013-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +8042,Ag8,EA013,No alternate,EA013-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8043,Ag9,EA013,No alternate,EA013-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +8044,Ah1,EA013,No alternate,EA013-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember. " +8045,Ah10,EA013,No alternate,EA013-9,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +8046,Ah11,EA013,No alternate,EA013-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +8047,Ah12,EA013,Husband to wife,EA013-3,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +8048,Ah13,EA013,No alternate,EA013-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +8049,Ah14,EA013,No alternate,EA013-9,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +8050,Ah15,EA013,No alternate,EA013-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +8051,Ah16,EA013,No alternate,EA013-9,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +8052,Ah17,EA013,No alternate,EA013-9,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +8053,Ah18,EA013,No alternate,EA013-9,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +8054,Ah19,EA013,No alternate,EA013-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8055,Ah2,EA013,No alternate,EA013-9,,meek1931a,,1920,EthnographicAtlas_1967_p74, +8056,Ah20,EA013,No alternate,EA013-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8057,Ah21,EA013,No alternate,EA013-9,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8058,Ah22,EA013,No alternate,EA013-9,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8059,Ah23,EA013,Wife to husband,EA013-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8060,Ah24,EA013,No alternate,EA013-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +8061,Ah25,EA013,No alternate,EA013-9,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +8062,Ah26,EA013,No alternate,EA013-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8063,Ah27,EA013,No alternate,EA013-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +8064,Ah28,EA013,No alternate,EA013-9,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +8065,Ah29,EA013,Wife to husband,EA013-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8066,Ah3,EA013,No alternate,EA013-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8067,Ah30,EA013,No alternate,EA013-9,,meek1931b,,1920,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8068,Ah31,EA013,No alternate,EA013-9,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8069,Ah32,EA013,No alternate,EA013-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +8070,Ah33,EA013,No alternate,EA013-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +8071,Ah34,EA013,No alternate,EA013-9,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +8072,Ah35,EA013,No alternate,EA013-9,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +8073,Ah36,EA013,No alternate,EA013-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +8074,Ah37,EA013,No alternate,EA013-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8075,Ah38,EA013,No alternate,EA013-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +8076,Ah39,EA013,No alternate,EA013-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +8077,Ah4,EA013,No alternate,EA013-9,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8078,Ah5,EA013,No alternate,EA013-9,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8079,Ah6,EA013,No alternate,EA013-9,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +8080,Ah7,EA013,No alternate,EA013-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +8081,Ah8,EA013,No alternate,EA013-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8082,Ah9,EA013,No alternate,EA013-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +8083,Ai1,EA013,No alternate,EA013-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +8084,Ai10,EA013,Ambi/neo-local,EA013-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +8085,Ai11,EA013,Ambi/neo-local,EA013-2,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +8086,Ai12,EA013,No alternate,EA013-9,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +8087,Ai13,EA013,No alternate,EA013-9,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +8088,Ai14,EA013,No alternate,EA013-9,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +8089,Ai15,EA013,No alternate,EA013-9,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +8090,Ai16,EA013,No alternate,EA013-9,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +8091,Ai17,EA013,No alternate,EA013-9,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +8092,Ai18,EA013,No alternate,EA013-9,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +8093,Ai19,EA013,No alternate,EA013-9,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +8094,Ai2,EA013,No alternate,EA013-9,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +8095,Ai20,EA013,No alternate,EA013-9,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +8096,Ai21,EA013,No alternate,EA013-9,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +8097,Ai22,EA013,No alternate,EA013-9,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +8098,Ai23,EA013,No alternate,EA013-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +8099,Ai24,EA013,No alternate,EA013-9,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +8100,Ai25,EA013,?,EA013-NA,,,,,, +8101,Ai26,EA013,No alternate,EA013-9,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8102,Ai27,EA013,No alternate,EA013-9,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +8103,Ai28,EA013,No alternate,EA013-9,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +8104,Ai29,EA013,No alternate,EA013-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +8105,Ai3,EA013,Ambi/neo-local,EA013-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +8106,Ai30,EA013,No alternate,EA013-9,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +8107,Ai31,EA013,No alternate,EA013-9,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +8108,Ai32,EA013,No alternate,EA013-9,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +8109,Ai33,EA013,No alternate,EA013-9,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +8110,Ai34,EA013,No alternate,EA013-9,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +8111,Ai35,EA013,No alternate,EA013-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +8112,Ai36,EA013,No alternate,EA013-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +8113,Ai37,EA013,No alternate,EA013-9,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +8114,Ai38,EA013,No alternate,EA013-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8115,Ai39,EA013,No alternate,EA013-9,,nadel1947,,1940,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8116,Ai4,EA013,Wife to husband,EA013-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8117,Ai40,EA013,No alternate,EA013-9,,nadel1947,,1940,EthnographicAtlas_1967_p74, +8118,Ai41,EA013,Ambi/neo-local,EA013-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +8119,Ai42,EA013,No alternate,EA013-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +8120,Ai43,EA013,No alternate,EA013-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +8121,Ai44,EA013,No alternate,EA013-9,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8122,Ai45,EA013,No alternate,EA013-9,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +8123,Ai46,EA013,No alternate,EA013-9,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +8124,Ai47,EA013,No alternate,EA013-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +8125,Ai5,EA013,No alternate,EA013-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +8126,Ai6,EA013,No alternate,EA013-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +8127,Ai7,EA013,No alternate,EA013-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +8128,Ai8,EA013,Ambi/neo-local,EA013-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +8129,Ai9,EA013,No alternate,EA013-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +8130,Aj1,EA013,No alternate,EA013-9,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +8131,Aj10,EA013,No alternate,EA013-9,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +8132,Aj11,EA013,No alternate,EA013-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +8133,Aj12,EA013,No alternate,EA013-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +8134,Aj13,EA013,No alternate,EA013-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +8135,Aj14,EA013,No alternate,EA013-9,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +8136,Aj15,EA013,No alternate,EA013-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +8137,Aj16,EA013,No alternate,EA013-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +8138,Aj17,EA013,No alternate,EA013-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +8139,Aj18,EA013,?,EA013-NA,,,,,, +8140,Aj19,EA013,Ambi/neo-local,EA013-2,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +8141,Aj2,EA013,Ambi/neo-local,EA013-2,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +8142,Aj20,EA013,No alternate,EA013-9,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +8143,Aj21,EA013,No alternate,EA013-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +8144,Aj22,EA013,?,EA013-NA,,,,,, +8145,Aj23,EA013,Ambi/neo-local,EA013-2,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +8146,Aj24,EA013,No alternate,EA013-9,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +8147,Aj25,EA013,Ambi/neo-local,EA013-2,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +8148,Aj26,EA013,No alternate,EA013-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +8149,Aj27,EA013,No alternate,EA013-9,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +8150,Aj28,EA013,No alternate,EA013-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +8151,Aj29,EA013,Husband to wife,EA013-3,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +8152,Aj3,EA013,Husband to wife,EA013-3,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +8153,Aj30,EA013,Ambi/neo-local,EA013-2,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +8154,Aj31,EA013,No alternate,EA013-9,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +8155,Aj4,EA013,No alternate,EA013-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +8156,Aj5,EA013,Ambi/neo-local,EA013-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +8157,Aj6,EA013,Ambi/neo-local,EA013-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +8158,Aj7,EA013,Ambi/neo-local,EA013-2,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +8159,Aj8,EA013,Ambi/neo-local,EA013-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +8160,Aj9,EA013,No alternate,EA013-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +8161,Ca1,EA013,Wife to husband,EA013-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +8162,Ca10,EA013,No alternate,EA013-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +8163,Ca11,EA013,No alternate,EA013-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +8164,Ca12,EA013,No alternate,EA013-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +8165,Ca13,EA013,No alternate,EA013-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +8166,Ca14,EA013,No alternate,EA013-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +8167,Ca15,EA013,No alternate,EA013-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +8168,Ca16,EA013,No alternate,EA013-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +8169,Ca17,EA013,No alternate,EA013-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +8170,Ca18,EA013,No alternate,EA013-9,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +8171,Ca19,EA013,No alternate,EA013-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +8172,Ca2,EA013,No alternate,EA013-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +8173,Ca20,EA013,No alternate,EA013-9,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +8174,Ca21,EA013,No alternate,EA013-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +8175,Ca22,EA013,No alternate,EA013-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +8176,Ca23,EA013,No alternate,EA013-9,,jensen1959,,1950,EthnographicAtlas_1967_p78, +8177,Ca24,EA013,No alternate,EA013-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +8178,Ca25,EA013,No alternate,EA013-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +8179,Ca26,EA013,No alternate,EA013-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +8180,Ca27,EA013,No alternate,EA013-9,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +8181,Ca28,EA013,No alternate,EA013-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +8182,Ca29,EA013,No alternate,EA013-9,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +8183,Ca3,EA013,No alternate,EA013-9,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +8184,Ca30,EA013,No alternate,EA013-9,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +8185,Ca31,EA013,Ambi/neo-local,EA013-2,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +8186,Ca32,EA013,Husband to wife,EA013-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +8187,Ca33,EA013,No alternate,EA013-9,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +8188,Ca34,EA013,No alternate,EA013-9,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +8189,Ca35,EA013,No alternate,EA013-9,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +8190,Ca36,EA013,No alternate,EA013-9,"In the noble class; among serfs prevailing pattern is Patrilocal (EA012 code ""8""), with Uxorilocal as alternate (EA014 code ""9""), so this would be 'Husband to wife's group' (code ""3"")",munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +8191,Ca37,EA013,No alternate,EA013-9,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +8192,Ca38,EA013,No alternate,EA013-9,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +8193,Ca39,EA013,No alternate,EA013-9,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +8194,Ca4,EA013,Ambi/neo-local,EA013-2,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +8195,Ca40,EA013,No alternate,EA013-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +8196,Ca41,EA013,No alternate,EA013-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +8197,Ca42,EA013,No alternate,EA013-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +8198,Ca43,EA013,No alternate,EA013-9,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +8199,Ca5,EA013,No alternate,EA013-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +8200,Ca6,EA013,No alternate,EA013-9,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +8201,Ca7,EA013,Husband to wife,EA013-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +8202,Ca8,EA013,No alternate,EA013-9,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +8203,Ca9,EA013,No alternate,EA013-9,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +8204,Cb1,EA013,No alternate,EA013-9,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +8205,Cb10,EA013,No alternate,EA013-9,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +8206,Cb11,EA013,?,EA013-NA,,,,,, +8207,Cb12,EA013,No alternate,EA013-9,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +8208,Cb13,EA013,No alternate,EA013-9,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +8209,Cb14,EA013,No alternate,EA013-9,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +8210,Cb15,EA013,No alternate,EA013-9,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8211,Cb16,EA013,No alternate,EA013-9,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +8212,Cb17,EA013,No alternate,EA013-9,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +8213,Cb18,EA013,No alternate,EA013-9,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +8214,Cb19,EA013,Ambi/neo-local,EA013-2,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +8215,Cb2,EA013,No alternate,EA013-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8216,Cb20,EA013,?,EA013-NA,,,,,, +8217,Cb21,EA013,No alternate,EA013-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +8218,Cb22,EA013,No alternate,EA013-9,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +8219,Cb23,EA013,No alternate,EA013-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +8220,Cb24,EA013,No alternate,EA013-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +8221,Cb25,EA013,No alternate,EA013-9,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +8222,Cb26,EA013,No alternate,EA013-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +8223,Cb27,EA013,No alternate,EA013-9,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8224,Cb28,EA013,No alternate,EA013-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8225,Cb29,EA013,No alternate,EA013-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +8226,Cb3,EA013,Ambi/neo-local,EA013-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +8227,Cb4,EA013,No alternate,EA013-9,,reid1930,,1920,EthnographicAtlas_1967_p78, +8228,Cb5,EA013,No alternate,EA013-9,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +8229,Cb6,EA013,No alternate,EA013-9,,woodnd,,1920,EthnographicAtlas_1967_p78,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8230,Cb7,EA013,No alternate,EA013-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +8231,Cb8,EA013,No alternate,EA013-9,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +8232,Cb9,EA013,Ambi/neo-local,EA013-2,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +8233,Cc1,EA013,No alternate,EA013-9,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +8234,Cc10,EA013,No alternate,EA013-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8235,Cc11,EA013,?,EA013-NA,,,,,, +8236,Cc12,EA013,No alternate,EA013-9,Ultimate residence is unclear and may be avunculocal,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +8237,Cc13,EA013,No alternate,EA013-9,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8238,Cc14,EA013,No alternate,EA013-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +8239,Cc15,EA013,?,EA013-NA,,,,,, +8240,Cc16,EA013,No alternate,EA013-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +8241,Cc17,EA013,No alternate,EA013-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +8242,Cc18,EA013,No alternate,EA013-9,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +8243,Cc19,EA013,No alternate,EA013-9,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +8244,Cc2,EA013,No alternate,EA013-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +8245,Cc20,EA013,No alternate,EA013-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +8246,Cc3,EA013,No alternate,EA013-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +8247,Cc4,EA013,Ambi/neo-local,EA013-2,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +8248,Cc5,EA013,No alternate,EA013-9,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8249,Cc6,EA013,No alternate,EA013-9,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +8250,Cc7,EA013,No alternate,EA013-9,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8251,Cc8,EA013,?,EA013-NA,,,,,, +8252,Cc9,EA013,Husband to wife,EA013-3,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +8253,Cd1,EA013,No alternate,EA013-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +8254,Cd10,EA013,No alternate,EA013-9,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +8255,Cd11,EA013,No alternate,EA013-9,Suggested rather than attested,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +8256,Cd12,EA013,No alternate,EA013-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +8257,Cd13,EA013,No alternate,EA013-9,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +8258,Cd14,EA013,No alternate,EA013-9,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +8259,Cd15,EA013,No alternate,EA013-9,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +8260,Cd16,EA013,No alternate,EA013-9,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +8261,Cd17,EA013,No alternate,EA013-9,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +8262,Cd18,EA013,No alternate,EA013-9,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +8263,Cd19,EA013,No alternate,EA013-9,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +8264,Cd2,EA013,No alternate,EA013-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +8265,Cd20,EA013,No alternate,EA013-9,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +8266,Cd21,EA013,No alternate,EA013-9,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +8267,Cd3,EA013,Ambi/neo-local,EA013-2,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +8268,Cd4,EA013,No alternate,EA013-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +8269,Cd5,EA013,No alternate,EA013-9,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +8270,Cd6,EA013,Wife to husband,EA013-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +8271,Cd7,EA013,No alternate,EA013-9,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +8272,Cd8,EA013,No alternate,EA013-9,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +8273,Cd9,EA013,No alternate,EA013-9,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +8274,Ce1,EA013,No alternate,EA013-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +8275,Ce2,EA013,Ambi/neo-local,EA013-2,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +8276,Ce3,EA013,No alternate,EA013-9,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +8277,Ce4,EA013,No alternate,EA013-9,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8278,Ce5,EA013,Husband to wife,EA013-3,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +8279,Ce6,EA013,No alternate,EA013-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +8280,Ce7,EA013,Ambi/neo-local,EA013-2,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +8281,Ce8,EA013,Husband to wife,EA013-3,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +8282,Cf1,EA013,Wife to husband,EA013-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +8283,Cf2,EA013,Ambi/neo-local,EA013-2,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +8284,Cf3,EA013,No alternate,EA013-9,,munch1945,,1930,EthnographicAtlas_1967_p82, +8285,Cf4,EA013,Wife to husband,EA013-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +8286,Cf5,EA013,Wife to husband,EA013-1,,miner1939,,1930,EthnographicAtlas_1967_p82, +8287,Cg1,EA013,No alternate,EA013-9,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8288,Cg2,EA013,Ambi/neo-local,EA013-2,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +8289,Cg3,EA013,Ambi/neo-local,EA013-2,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +8290,Cg4,EA013,Husband to wife,EA013-3,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +8291,Cg5,EA013,No alternate,EA013-9,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +8292,Ch1,EA013,Ambi/neo-local,EA013-2,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +8293,Ch10,EA013,Wife to husband,EA013-1,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +8294,Ch11,EA013,No alternate,EA013-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +8295,Ch2,EA013,No alternate,EA013-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +8296,Ch3,EA013,Ambi/neo-local,EA013-2,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +8297,Ch4,EA013,No alternate,EA013-9,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +8298,Ch5,EA013,Ambi/neo-local,EA013-2,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +8299,Ch6,EA013,No alternate,EA013-9,,ember1954,,1910,EthnographicAtlas_1967_p82,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8300,Ch7,EA013,Ambi/neo-local,EA013-2,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +8301,Ch8,EA013,Ambi/neo-local,EA013-2,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +8302,Ch9,EA013,Ambi/neo-local,EA013-2,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +8303,Ci1,EA013,Ambi/neo-local,EA013-2,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +8304,Ci10,EA013,Husband to wife,EA013-3,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +8305,Ci11,EA013,No alternate,EA013-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +8306,Ci12,EA013,No alternate,EA013-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +8307,Ci2,EA013,No alternate,EA013-9,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +8308,Ci3,EA013,Wife to husband,EA013-1,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +8309,Ci4,EA013,Ambi/neo-local,EA013-2,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +8310,Ci5,EA013,No alternate,EA013-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +8311,Ci6,EA013,No alternate,EA013-9,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +8312,Ci7,EA013,No alternate,EA013-9,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +8313,Ci8,EA013,No alternate,EA013-9,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +8314,Ci9,EA013,No alternate,EA013-9,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +8315,Cj1,EA013,Ambi/neo-local,EA013-2,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +8316,Cj10,EA013,No alternate,EA013-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +8317,Cj2,EA013,No alternate,EA013-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +8318,Cj3,EA013,No alternate,EA013-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +8319,Cj4,EA013,No alternate,EA013-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +8320,Cj5,EA013,No alternate,EA013-9,,dickson1949,,1930,EthnographicAtlas_1967_p86, +8321,Cj6,EA013,Ambi/neo-local,EA013-2,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +8322,Cj7,EA013,Ambi/neo-local,EA013-2,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +8323,Cj8,EA013,No alternate,EA013-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +8324,Cj9,EA013,No alternate,EA013-9,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +8325,Ea1,EA013,No alternate,EA013-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +8326,Ea10,EA013,No alternate,EA013-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +8327,Ea11,EA013,No alternate,EA013-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +8328,Ea12,EA013,Ambi/neo-local,EA013-2,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +8329,Ea13,EA013,No alternate,EA013-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +8330,Ea2,EA013,No alternate,EA013-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +8331,Ea3,EA013,No alternate,EA013-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +8332,Ea4,EA013,No alternate,EA013-9,,barth1956b,,1950,EthnographicAtlas_1967_p86, +8333,Ea5,EA013,No alternate,EA013-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +8334,Ea6,EA013,Ambi/neo-local,EA013-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +8335,Ea7,EA013,No alternate,EA013-9,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +8336,Ea8,EA013,No alternate,EA013-9,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +8337,Ea9,EA013,Ambi/neo-local,EA013-2,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +8338,Eb1,EA013,No alternate,EA013-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +8339,Eb2,EA013,No alternate,EA013-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +8340,Eb3,EA013,Ambi/neo-local,EA013-2,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +8341,Eb4,EA013,No alternate,EA013-9,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +8342,Eb5,EA013,No alternate,EA013-9,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +8343,Eb6,EA013,No alternate,EA013-9,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +8344,Eb7,EA013,No alternate,EA013-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +8345,Eb8,EA013,No alternate,EA013-9,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +8346,Ec1,EA013,No alternate,EA013-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +8347,Ec10,EA013,No alternate,EA013-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +8348,Ec11,EA013,No alternate,EA013-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +8349,Ec2,EA013,No alternate,EA013-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8350,Ec3,EA013,Husband to wife,EA013-3,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +8351,Ec4,EA013,No alternate,EA013-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +8352,Ec5,EA013,Husband to wife,EA013-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +8353,Ec6,EA013,Wife to husband,EA013-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +8354,Ec7,EA013,Husband to wife,EA013-3,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +8355,Ec8,EA013,Ambi/neo-local,EA013-2,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +8356,Ec9,EA013,No alternate,EA013-9,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +8357,Ed1,EA013,Ambi/neo-local,EA013-2,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +8358,Ed10,EA013,No alternate,EA013-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +8359,Ed13,EA013,Ambi/neo-local,EA013-2,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +8360,Ed14,EA013,Husband to wife,EA013-3,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +8361,Ed15a,EA013,Ambi/neo-local,EA013-2,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +8362,Ed15b,EA013,Wife to husband,EA013-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +8363,Ed16,EA013,No alternate,EA013-9,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +8364,Ed2,EA013,No alternate,EA013-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +8365,Ed3,EA013,No alternate,EA013-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +8366,Ed4,EA013,No alternate,EA013-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +8367,Ed5,EA013,Ambi/neo-local,EA013-2,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8368,Ed6,EA013,No alternate,EA013-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +8369,Ed7,EA013,Ambi/neo-local,EA013-2,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +8370,Ed8,EA013,No alternate,EA013-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +8371,Ed9,EA013,No alternate,EA013-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +8372,Ee1,EA013,Ambi/neo-local,EA013-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +8373,Ee2,EA013,No alternate,EA013-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +8374,Ee3,EA013,No alternate,EA013-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +8375,Ee4,EA013,No alternate,EA013-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +8376,Ee5,EA013,No alternate,EA013-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +8377,Ee6,EA013,No alternate,EA013-9,Uxorilocal only if wife has no brothers,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +8378,Ee7,EA013,Ambi/neo-local,EA013-2,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +8379,Ee8,EA013,Ambi/neo-local,EA013-2,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +8380,Ef1,EA013,No alternate,EA013-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +8381,Ef10,EA013,No alternate,EA013-9,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8382,Ef11,EA013,No alternate,EA013-9,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +8383,Ef2,EA013,No alternate,EA013-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +8384,Ef3,EA013,No alternate,EA013-9,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +8385,Ef4,EA013,No alternate,EA013-9,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +8386,Ef5,EA013,No alternate,EA013-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +8387,Ef6,EA013,No alternate,EA013-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +8388,Ef7,EA013,No alternate,EA013-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +8389,Ef8,EA013,No alternate,EA013-9,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +8390,Ef9,EA013,No alternate,EA013-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8391,Eg1,EA013,No alternate,EA013-9,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8392,Eg10,EA013,No alternate,EA013-9,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +8393,Eg11,EA013,No alternate,EA013-9,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +8394,Eg12,EA013,No alternate,EA013-9,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +8395,Eg13,EA013,No alternate,EA013-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8396,Eg14,EA013,Husband to wife,EA013-3,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +8397,Eg2,EA013,No alternate,EA013-9,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +8398,Eg3,EA013,No alternate,EA013-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +8399,Eg4,EA013,No alternate,EA013-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +8400,Eg5,EA013,No alternate,EA013-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +8401,Eg6,EA013,No alternate,EA013-9,Entry pertains to the Nayar; predominantly Matrilocal among the Mappilla and Virilocal or Neolocal among the Tiyyar,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +8402,Eg7,EA013,No alternate,EA013-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +8403,Eg8,EA013,No alternate,EA013-9,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +8404,Eg9,EA013,No alternate,EA013-9,,elwin1939,,1930,EthnographicAtlas_1967_p90, +8405,Eh1,EA013,No alternate,EA013-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +8406,Eh10,EA013,No alternate,EA013-9,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +8407,Eh2,EA013,No alternate,EA013-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +8408,Eh3,EA013,No alternate,EA013-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +8409,Eh4,EA013,Ambi/neo-local,EA013-2,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8410,Eh5,EA013,Wife to husband,EA013-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +8411,Eh6,EA013,Husband to wife,EA013-3,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +8412,Eh7,EA013,Husband to wife,EA013-3,"But McLeod reports Ambilocal (code ""2"")",decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +8413,Eh8,EA013,No alternate,EA013-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +8414,Eh9,EA013,No alternate,EA013-9,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +8415,Ei1,EA013,Wife to husband,EA013-1,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember. Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8416,Ei10,EA013,Ambi/neo-local,EA013-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +8417,Ei11,EA013,No alternate,EA013-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +8418,Ei12,EA013,No alternate,EA013-9,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +8419,Ei13,EA013,No alternate,EA013-9,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +8420,Ei14,EA013,No alternate,EA013-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +8421,Ei15,EA013,No alternate,EA013-9,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +8422,Ei16,EA013,No alternate,EA013-9,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +8423,Ei17,EA013,No alternate,EA013-9,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +8424,Ei18,EA013,Ambi/neo-local,EA013-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +8425,Ei19,EA013,Ambi/neo-local,EA013-2,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +8426,Ei2,EA013,Ambi/neo-local,EA013-2,,mills1922,,1920,EthnographicAtlas_1967_p90, +8427,Ei20,EA013,No alternate,EA013-9,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +8428,Ei3,EA013,Wife to husband,EA013-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +8429,Ei4,EA013,No alternate,EA013-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +8430,Ei5,EA013,Ambi/neo-local,EA013-2,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +8431,Ei6,EA013,No alternate,EA013-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +8432,Ei7,EA013,No alternate,EA013-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +8433,Ei8,EA013,No alternate,EA013-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +8434,Ei9,EA013,No alternate,EA013-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +8435,Ej1,EA013,Ambi/neo-local,EA013-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +8436,Ej10,EA013,No alternate,EA013-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +8437,Ej11,EA013,No alternate,EA013-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +8438,Ej12,EA013,Husband to wife,EA013-3,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +8439,Ej13,EA013,No alternate,EA013-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +8440,Ej14,EA013,No alternate,EA013-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8441,Ej15,EA013,No alternate,EA013-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +8442,Ej16,EA013,No alternate,EA013-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +8443,Ej2,EA013,No alternate,EA013-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +8444,Ej3,EA013,No alternate,EA013-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +8445,Ej4,EA013,No alternate,EA013-9,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +8446,Ej5,EA013,No alternate,EA013-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8447,Ej6,EA013,Wife to husband,EA013-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +8448,Ej7,EA013,No alternate,EA013-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +8449,Ej8,EA013,Ambi/neo-local,EA013-2,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +8450,Ej9,EA013,No alternate,EA013-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +8451,Ia1,EA013,Husband to wife,EA013-3,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +8452,Ia10,EA013,No alternate,EA013-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +8453,Ia11,EA013,Wife to husband,EA013-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +8454,Ia12,EA013,No alternate,EA013-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +8455,Ia13,EA013,No alternate,EA013-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +8456,Ia14,EA013,No alternate,EA013-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +8457,Ia15,EA013,No alternate,EA013-9,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +8458,Ia16,EA013,Ambi/neo-local,EA013-2,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +8459,Ia17,EA013,No alternate,EA013-9,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +8460,Ia18,EA013,No alternate,EA013-9,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8461,Ia2,EA013,No alternate,EA013-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +8462,Ia3,EA013,No alternate,EA013-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +8463,Ia4,EA013,No alternate,EA013-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8464,Ia5,EA013,Wife to husband,EA013-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +8465,Ia6,EA013,Husband to wife,EA013-3,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8466,Ia7,EA013,Wife to husband,EA013-1,,fox1954,,1950,EthnographicAtlas_1967_p90, +8467,Ia8,EA013,Husband to wife,EA013-3,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +8468,Ia9,EA013,No alternate,EA013-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +8469,Ib1,EA013,No alternate,EA013-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8470,Ib2,EA013,No alternate,EA013-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8471,Ib3,EA013,Husband to wife,EA013-3,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +8472,Ib4,EA013,Husband to wife,EA013-3,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +8473,Ib5,EA013,Husband to wife,EA013-3,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +8474,Ib6,EA013,Husband to wife,EA013-3,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +8475,Ib7,EA013,Husband to wife,EA013-3,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +8476,Ib8,EA013,No alternate,EA013-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +8477,Ib9,EA013,?,EA013-NA,,,,,, +8478,Ic1,EA013,No alternate,EA013-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8479,Ic10,EA013,Husband to wife,EA013-3,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +8480,Ic11,EA013,Ambi/neo-local,EA013-2,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8481,Ic12,EA013,No alternate,EA013-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +8482,Ic13,EA013,No alternate,EA013-9,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +8483,Ic2,EA013,Husband to wife,EA013-3,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +8484,Ic3,EA013,No alternate,EA013-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +8485,Ic4,EA013,No alternate,EA013-9,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +8486,Ic5,EA013,No alternate,EA013-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +8487,Ic6,EA013,No alternate,EA013-9,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +8488,Ic7,EA013,Husband to wife,EA013-3,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +8489,Ic8,EA013,Husband to wife,EA013-3,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +8490,Ic9,EA013,No alternate,EA013-9,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +8491,Id1,EA013,No alternate,EA013-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +8492,Id10,EA013,No alternate,EA013-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +8493,Id11,EA013,No alternate,EA013-9,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +8494,Id12,EA013,No alternate,EA013-9,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +8495,Id13,EA013,No alternate,EA013-9,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +8496,Id2,EA013,No alternate,EA013-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +8497,Id3,EA013,Husband to wife,EA013-3,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +8498,Id4,EA013,No alternate,EA013-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +8499,Id5,EA013,No alternate,EA013-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +8500,Id6,EA013,No alternate,EA013-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +8501,Id7,EA013,No alternate,EA013-9,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8502,Id8,EA013,?,EA013-NA,,,,,, +8503,Id9,EA013,No alternate,EA013-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +8504,Ie1,EA013,No alternate,EA013-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8505,Ie10,EA013,Husband to wife,EA013-3,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +8506,Ie11,EA013,No alternate,EA013-9,,bowers1964,,1950,EthnographicAtlas_1967_p94, +8507,Ie12,EA013,No alternate,EA013-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8508,Ie13,EA013,No alternate,EA013-9,,landtman1927,,1920,EthnographicAtlas_1967_p94, +8509,Ie14,EA013,No alternate,EA013-9,,haddon1908,,1900,EthnographicAtlas_1967_p94, +8510,Ie15,EA013,No alternate,EA013-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8511,Ie16,EA013,Wife to husband,EA013-1,,williams194041,,1940,EthnographicAtlas_1967_p94, +8512,Ie17,EA013,Wife to husband,EA013-1,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +8513,Ie18,EA013,Husband to wife,EA013-3,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +8514,Ie19,EA013,Wife to husband,EA013-1,But normally patrilocal,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +8515,Ie2,EA013,No alternate,EA013-9,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +8516,Ie20,EA013,No alternate,EA013-9,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +8517,Ie21,EA013,No alternate,EA013-9,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +8518,Ie22,EA013,No alternate,EA013-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +8519,Ie23,EA013,No alternate,EA013-9,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +8520,Ie24,EA013,No alternate,EA013-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +8521,Ie25,EA013,No alternate,EA013-9,,williamson1912,,1920,EthnographicAtlas_1967_p94, +8522,Ie26,EA013,No alternate,EA013-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +8523,Ie27,EA013,No alternate,EA013-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +8524,Ie28,EA013,No alternate,EA013-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +8525,Ie29,EA013,Ambi/neo-local,EA013-2,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8526,Ie3,EA013,No alternate,EA013-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8527,Ie30,EA013,Wife to husband,EA013-1,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +8528,Ie31,EA013,No alternate,EA013-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +8529,Ie32,EA013,No alternate,EA013-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +8530,Ie33,EA013,No alternate,EA013-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +8531,Ie34,EA013,Wife to husband,EA013-1,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8532,Ie35,EA013,No alternate,EA013-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +8533,Ie36,EA013,No alternate,EA013-9,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +8534,Ie37,EA013,No alternate,EA013-9,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +8535,Ie38,EA013,Ambi/neo-local,EA013-2,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +8536,Ie39,EA013,No alternate,EA013-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +8537,Ie4,EA013,No alternate,EA013-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8538,Ie5,EA013,No alternate,EA013-9,,williams1936,,1930,EthnographicAtlas_1967_p94, +8539,Ie6,EA013,No alternate,EA013-9,,held1947,,1930,EthnographicAtlas_1967_p94, +8540,Ie7,EA013,Husband to wife,EA013-3,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +8541,Ie8,EA013,No alternate,EA013-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +8542,Ie9,EA013,No alternate,EA013-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +8543,If1,EA013,No alternate,EA013-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember. " +8544,If10,EA013,No alternate,EA013-9,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +8545,If11,EA013,Ambi/neo-local,EA013-2,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +8546,If12,EA013,No alternate,EA013-9,,mason1954,,1940,EthnographicAtlas_1967_p98, +8547,If13,EA013,No alternate,EA013-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +8548,If14,EA013,Husband to wife,EA013-3,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +8549,If15,EA013,No alternate,EA013-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +8550,If16,EA013,Wife to husband,EA013-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +8551,If17,EA013,No alternate,EA013-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +8552,If2,EA013,Wife to husband,EA013-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +8553,If3,EA013,No alternate,EA013-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +8554,If4,EA013,No alternate,EA013-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +8555,If5,EA013,Wife to husband,EA013-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8556,If6,EA013,No alternate,EA013-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8557,If7,EA013,Husband to wife,EA013-3,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +8558,If8,EA013,No alternate,EA013-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +8559,If9,EA013,Husband to wife,EA013-3,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +8560,Ig1,EA013,Husband to wife,EA013-3,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +8561,Ig10,EA013,No alternate,EA013-9,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +8562,Ig11,EA013,Husband to wife,EA013-3,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +8563,Ig12,EA013,Husband to wife,EA013-3,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +8564,Ig13,EA013,No alternate,EA013-9,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +8565,Ig14,EA013,No alternate,EA013-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +8566,Ig15,EA013,No alternate,EA013-9,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +8567,Ig16,EA013,No alternate,EA013-9,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8568,Ig17,EA013,No alternate,EA013-9,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +8569,Ig18,EA013,Husband to wife,EA013-3,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +8570,Ig19,EA013,No alternate,EA013-9,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8571,Ig2,EA013,No alternate,EA013-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8572,Ig20,EA013,No alternate,EA013-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8573,Ig21,EA013,No alternate,EA013-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +8574,Ig3,EA013,No alternate,EA013-9,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +8575,Ig4,EA013,No alternate,EA013-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +8576,Ig5,EA013,No alternate,EA013-9,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,,1920,EthnographicAtlas_1967_p98, +8577,Ig6,EA013,No alternate,EA013-9,,ivens1927,,1900,EthnographicAtlas_1967_p98, +8578,Ig7,EA013,Ambi/neo-local,EA013-2,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +8579,Ig8,EA013,No alternate,EA013-9,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +8580,Ig9,EA013,Ambi/neo-local,EA013-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +8581,Ih1,EA013,No alternate,EA013-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +8582,Ih10,EA013,No alternate,EA013-9,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8583,Ih11,EA013,?,EA013-NA,,,,,, +8584,Ih12,EA013,No alternate,EA013-9,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +8585,Ih13,EA013,No alternate,EA013-9,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +8586,Ih14,EA013,No alternate,EA013-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +8587,Ih2,EA013,No alternate,EA013-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8588,Ih3,EA013,No alternate,EA013-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +8589,Ih4,EA013,Husband to wife,EA013-3,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8590,Ih5,EA013,No alternate,EA013-9,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +8591,Ih6,EA013,Wife to husband,EA013-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8592,Ih7,EA013,No alternate,EA013-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +8593,Ih8,EA013,Husband to wife,EA013-3,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +8594,Ih9,EA013,Ambi/neo-local,EA013-2,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8595,Ii1,EA013,No alternate,EA013-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +8596,Ii10,EA013,?,EA013-NA,,,,,, +8597,Ii12,EA013,No alternate,EA013-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember. " +8598,Ii13,EA013,Husband to wife,EA013-3,,burrows1937,,1830,EthnographicAtlas_1967_p98, +8599,Ii14,EA013,Husband to wife,EA013-3,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +8600,Ii2,EA013,No alternate,EA013-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +8601,Ii3,EA013,No alternate,EA013-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +8602,Ii4,EA013,Husband to wife,EA013-3,Residence rule inferred from data on inheritance,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +8603,Ii5,EA013,Wife to husband,EA013-1,Virilocal for part of the year in families possessing coconut groves in the outer islands,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to codes for post-marital residence (Col 16), not Col 19 as stated in Gray (1999)" +8604,Ii6,EA013,Wife to husband,EA013-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +8605,Ii7,EA013,No alternate,EA013-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +8606,Ii8,EA013,Husband to wife,EA013-3,,burrows1936,,1840,EthnographicAtlas_1967_p98, +8607,Ii9,EA013,Husband to wife,EA013-3,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +8608,Ij1,EA013,Husband to wife,EA013-3,,buck1934,,1820,EthnographicAtlas_1967_p98, +8609,Ij10,EA013,Husband to wife,EA013-3,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +8610,Ij2,EA013,No alternate,EA013-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +8611,Ij3,EA013,Ambi/neo-local,EA013-2,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +8612,Ij4,EA013,Husband to wife,EA013-3,,buck1932a,,1850,EthnographicAtlas_1967_p102, +8613,Ij5,EA013,No alternate,EA013-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8614,Ij6,EA013,No alternate,EA013-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +8615,Ij7,EA013,Husband to wife,EA013-3,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +8616,Ij8,EA013,No alternate,EA013-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +8617,Ij9,EA013,Husband to wife,EA013-3,,metraux1940,,1860,EthnographicAtlas_1967_p102, +8618,Na1,EA013,Wife to husband,EA013-1,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +8619,Na10,EA013,No alternate,EA013-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +8620,Na11,EA013,No alternate,EA013-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +8621,Na12,EA013,No alternate,EA013-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +8622,Na13,EA013,No alternate,EA013-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +8623,Na14,EA013,No alternate,EA013-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8624,Na15,EA013,No alternate,EA013-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +8625,Na16,EA013,Husband to wife,EA013-3,,osgood1931,,1860,EthnographicAtlas_1967_p102, +8626,Na17,EA013,Husband to wife,EA013-3,"Entry follows Helm; Honigmann reports prevailing pattern as Uxorilocal (EA012 would be code ""9"") with Virilocal as alternate (this variable would be code ""10""), so this would be 'Wife to husband's group' (code ""1"")",helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8627,Na19,EA013,Wife to husband,EA013-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +8628,Na2,EA013,No alternate,EA013-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +8629,Na20,EA013,Husband to wife,EA013-3,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +8630,Na21,EA013,No alternate,EA013-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +8631,Na22,EA013,Husband to wife,EA013-3,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +8632,Na23,EA013,No alternate,EA013-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +8633,Na24,EA013,Husband to wife,EA013-3,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +8634,Na25,EA013,Husband to wife,EA013-3,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +8635,Na26,EA013,Ambi/neo-local,EA013-2,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +8636,Na27,EA013,Ambi/neo-local,EA013-2,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +8637,Na28,EA013,No alternate,EA013-9,,jenness1937,,1880,EthnographicAtlas_1967_p102, +8638,Na29,EA013,No alternate,EA013-9,,goddard1916,,1850,EthnographicAtlas_1967_p102, +8639,Na3,EA013,Wife to husband,EA013-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +8640,Na30,EA013,No alternate,EA013-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +8641,Na31,EA013,Wife to husband,EA013-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +8642,Na32,EA013,No alternate,EA013-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +8643,Na33,EA013,Husband to wife,EA013-3,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +8644,Na34,EA013,Husband to wife,EA013-3,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +8645,Na35,EA013,Husband to wife,EA013-3,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +8646,Na36,EA013,No alternate,EA013-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +8647,Na37,EA013,No alternate,EA013-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +8648,Na38,EA013,No alternate,EA013-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +8649,Na39,EA013,Husband to wife,EA013-3,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +8650,Na4,EA013,No alternate,EA013-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +8651,Na40,EA013,?,EA013-NA,,,,,, +8652,Na41,EA013,No alternate,EA013-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +8653,Na42,EA013,No alternate,EA013-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +8654,Na43,EA013,Husband to wife,EA013-3,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +8655,Na44,EA013,Husband to wife,EA013-3,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +8656,Na45,EA013,Husband to wife,EA013-3,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +8657,Na5,EA013,No alternate,EA013-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +8658,Na6,EA013,Ambi/neo-local,EA013-2,,lantis1946,,1930,EthnographicAtlas_1967_p102, +8659,Na7,EA013,Husband to wife,EA013-3,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +8660,Na8,EA013,Wife to husband,EA013-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +8661,Na9,EA013,No alternate,EA013-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8662,Nb1,EA013,No alternate,EA013-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +8663,Nb10,EA013,Husband to wife,EA013-3,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +8664,Nb11,EA013,Husband to wife,EA013-3,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +8665,Nb12,EA013,Husband to wife,EA013-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +8666,Nb13,EA013,No alternate,EA013-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +8667,Nb14,EA013,Husband to wife,EA013-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +8668,Nb15,EA013,Husband to wife,EA013-3,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +8669,Nb16,EA013,No alternate,EA013-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +8670,Nb17,EA013,Husband to wife,EA013-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +8671,Nb18,EA013,No alternate,EA013-9,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +8672,Nb19,EA013,No alternate,EA013-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +8673,Nb2,EA013,No alternate,EA013-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +8674,Nb20,EA013,Husband to wife,EA013-3,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +8675,Nb21,EA013,Husband to wife,EA013-3,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +8676,Nb22,EA013,No alternate,EA013-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +8677,Nb23,EA013,Husband to wife,EA013-3,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +8678,Nb24,EA013,No alternate,EA013-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +8679,Nb25,EA013,Husband to wife,EA013-3,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +8680,Nb26,EA013,Husband to wife,EA013-3,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +8681,Nb27,EA013,Husband to wife,EA013-3,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +8682,Nb28,EA013,Husband to wife,EA013-3,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +8683,Nb29,EA013,Husband to wife,EA013-3,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +8684,Nb3,EA013,Husband to wife,EA013-3,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +8685,Nb30,EA013,No alternate,EA013-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +8686,Nb31,EA013,Ambi/neo-local,EA013-2,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +8687,Nb32,EA013,Husband to wife,EA013-3,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +8688,Nb33,EA013,No alternate,EA013-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +8689,Nb34,EA013,Husband to wife,EA013-3,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +8690,Nb35,EA013,Husband to wife,EA013-3,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +8691,Nb36,EA013,Husband to wife,EA013-3,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +8692,Nb37,EA013,No alternate,EA013-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +8693,Nb38,EA013,Husband to wife,EA013-3,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +8694,Nb39,EA013,No alternate,EA013-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +8695,Nb4,EA013,Husband to wife,EA013-3,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +8696,Nb5,EA013,No alternate,EA013-9,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +8697,Nb6,EA013,Husband to wife,EA013-3,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +8698,Nb7,EA013,No alternate,EA013-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +8699,Nb8,EA013,No alternate,EA013-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8700,Nb9,EA013,Husband to wife,EA013-3,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +8701,Nc1,EA013,No alternate,EA013-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +8702,Nc10,EA013,Husband to wife,EA013-3,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +8703,Nc11,EA013,No alternate,EA013-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +8704,Nc12,EA013,Husband to wife,EA013-3,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +8705,Nc13,EA013,Husband to wife,EA013-3,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +8706,Nc14,EA013,Husband to wife,EA013-3,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +8707,Nc15,EA013,No alternate,EA013-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +8708,Nc16,EA013,No alternate,EA013-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +8709,Nc17,EA013,No alternate,EA013-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +8710,Nc18,EA013,No alternate,EA013-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +8711,Nc19,EA013,No alternate,EA013-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +8712,Nc2,EA013,Husband to wife,EA013-3,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +8713,Nc20,EA013,No alternate,EA013-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +8714,Nc21,EA013,?,EA013-NA,,,,,, +8715,Nc22,EA013,No alternate,EA013-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +8716,Nc23,EA013,Husband to wife,EA013-3,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +8717,Nc24,EA013,No alternate,EA013-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +8718,Nc25,EA013,No alternate,EA013-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +8719,Nc26,EA013,No alternate,EA013-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +8720,Nc27,EA013,No alternate,EA013-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +8721,Nc28,EA013,No alternate,EA013-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +8722,Nc29,EA013,No alternate,EA013-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +8723,Nc3,EA013,No alternate,EA013-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +8724,Nc30,EA013,No alternate,EA013-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +8725,Nc31,EA013,Husband to wife,EA013-3,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +8726,Nc32,EA013,Husband to wife,EA013-3,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +8727,Nc33,EA013,No alternate,EA013-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +8728,Nc34,EA013,No alternate,EA013-9,,meigs1939,,1880,EthnographicAtlas_1967_p106, +8729,Nc4,EA013,No alternate,EA013-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +8730,Nc5,EA013,No alternate,EA013-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +8731,Nc6,EA013,Husband to wife,EA013-3,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +8732,Nc7,EA013,Ambi/neo-local,EA013-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +8733,Nc8,EA013,Husband to wife,EA013-3,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +8734,Nc9,EA013,Husband to wife,EA013-3,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +8735,Nd1,EA013,Husband to wife,EA013-3,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +8736,Nd10,EA013,Husband to wife,EA013-3,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +8737,Nd11,EA013,No alternate,EA013-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +8738,Nd12,EA013,Husband to wife,EA013-3,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +8739,Nd13,EA013,Husband to wife,EA013-3,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +8740,Nd14,EA013,No alternate,EA013-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +8741,Nd15,EA013,No alternate,EA013-9,,clineetal1938,,1880,EthnographicAtlas_1967_p110,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8742,Nd16,EA013,No alternate,EA013-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +8743,Nd17,EA013,Wife to husband,EA013-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +8744,Nd18,EA013,Husband to wife,EA013-3,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +8745,Nd19,EA013,No alternate,EA013-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +8746,Nd2,EA013,Wife to husband,EA013-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +8747,Nd20,EA013,Husband to wife,EA013-3,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +8748,Nd21,EA013,No alternate,EA013-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +8749,Nd22,EA013,Wife to husband,EA013-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +8750,Nd23,EA013,No alternate,EA013-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +8751,Nd24,EA013,No alternate,EA013-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +8752,Nd25,EA013,Wife to husband,EA013-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +8753,Nd26,EA013,No alternate,EA013-9,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +8754,Nd27,EA013,No alternate,EA013-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +8755,Nd28,EA013,No alternate,EA013-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +8756,Nd29,EA013,No alternate,EA013-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +8757,Nd3,EA013,No alternate,EA013-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +8758,Nd30,EA013,Husband to wife,EA013-3,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +8759,Nd31,EA013,Ambi/neo-local,EA013-2,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +8760,Nd32,EA013,Ambi/neo-local,EA013-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +8761,Nd33,EA013,No alternate,EA013-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +8762,Nd34,EA013,No alternate,EA013-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +8763,Nd35,EA013,Husband to wife,EA013-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +8764,Nd36,EA013,No alternate,EA013-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +8765,Nd37,EA013,No alternate,EA013-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +8766,Nd38,EA013,No alternate,EA013-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +8767,Nd39,EA013,No alternate,EA013-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +8768,Nd4,EA013,No alternate,EA013-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +8769,Nd40,EA013,No alternate,EA013-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +8770,Nd41,EA013,Husband to wife,EA013-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +8771,Nd42,EA013,No alternate,EA013-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +8772,Nd43,EA013,Wife to husband,EA013-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +8773,Nd44,EA013,Wife to husband,EA013-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +8774,Nd45,EA013,No alternate,EA013-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +8775,Nd46,EA013,No alternate,EA013-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +8776,Nd47,EA013,Husband to wife,EA013-3,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +8777,Nd48,EA013,Wife to husband,EA013-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +8778,Nd49,EA013,No alternate,EA013-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +8779,Nd5,EA013,No alternate,EA013-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +8780,Nd50,EA013,?,EA013-NA,,,,,, +8781,Nd51,EA013,No alternate,EA013-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +8782,Nd52,EA013,No alternate,EA013-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +8783,Nd53,EA013,No alternate,EA013-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +8784,Nd54,EA013,No alternate,EA013-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8785,Nd55,EA013,No alternate,EA013-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +8786,Nd56,EA013,Wife to husband,EA013-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +8787,Nd57,EA013,Wife to husband,EA013-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +8788,Nd58,EA013,Wife to husband,EA013-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +8789,Nd59,EA013,No alternate,EA013-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +8790,Nd6,EA013,No alternate,EA013-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8791,Nd60,EA013,No alternate,EA013-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +8792,Nd61,EA013,No alternate,EA013-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +8793,Nd62,EA013,No alternate,EA013-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +8794,Nd63,EA013,Wife to husband,EA013-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +8795,Nd64,EA013,No alternate,EA013-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +8796,Nd65,EA013,Husband to wife,EA013-3,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +8797,Nd66,EA013,No alternate,EA013-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8798,Nd67,EA013,No alternate,EA013-9,,gifford1936,,1870,EthnographicAtlas_1967_p110, +8799,Nd7,EA013,Husband to wife,EA013-3,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +8800,Nd8,EA013,Husband to wife,EA013-3,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +8801,Nd9,EA013,Husband to wife,EA013-3,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +8802,Ne1,EA013,Husband to wife,EA013-3,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +8803,Ne10,EA013,No alternate,EA013-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +8804,Ne11,EA013,Husband to wife,EA013-3,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +8805,Ne12,EA013,Husband to wife,EA013-3,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +8806,Ne13,EA013,Ambi/neo-local,EA013-2,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +8807,Ne14,EA013,?,EA013-NA,,,,,, +8808,Ne15,EA013,No alternate,EA013-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +8809,Ne16,EA013,No alternate,EA013-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +8810,Ne17,EA013,Husband to wife,EA013-3,"Entry follows Richardson; Mooney reports prevailing pattern as Uxorilocal (EA012 would be code ""9"") with Virilocal as alternate (this variable would be code ""10""), so this would be 'Wife to husband's group' (code ""1"")",lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +8811,Ne18,EA013,Ambi/neo-local,EA013-2,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +8812,Ne19,EA013,Ambi/neo-local,EA013-2,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +8813,Ne2,EA013,Wife to husband,EA013-1,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +8814,Ne20,EA013,Husband to wife,EA013-3,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +8815,Ne21,EA013,?,EA013-NA,,,,,, +8816,Ne3,EA013,No alternate,EA013-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +8817,Ne4,EA013,No alternate,EA013-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +8818,Ne5,EA013,Wife to husband,EA013-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +8819,Ne6,EA013,Wife to husband,EA013-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +8820,Ne7,EA013,Ambi/neo-local,EA013-2,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +8821,Ne8,EA013,Husband to wife,EA013-3,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +8822,Ne9,EA013,No alternate,EA013-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +8823,Nf10,EA013,No alternate,EA013-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +8824,Nf11,EA013,Husband to wife,EA013-3,,whitman1937,,1870,EthnographicAtlas_1967_p114, +8825,Nf12,EA013,Husband to wife,EA013-3,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +8826,Nf13,EA013,No alternate,EA013-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8827,Nf14,EA013,No alternate,EA013-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +8828,Nf15,EA013,Ambi/neo-local,EA013-2,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +8829,Nf2,EA013,Ambi/neo-local,EA013-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +8830,Nf3,EA013,No alternate,EA013-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +8831,Nf4,EA013,Ambi/neo-local,EA013-2,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +8832,Nf5,EA013,Wife to husband,EA013-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +8833,Nf6,EA013,No alternate,EA013-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +8834,Nf7,EA013,No alternate,EA013-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8835,Nf8,EA013,Wife to husband,EA013-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +8836,Nf9,EA013,No alternate,EA013-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +8837,Ng1,EA013,No alternate,EA013-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +8838,Ng10,EA013,No alternate,EA013-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +8839,Ng11,EA013,Husband to wife,EA013-3,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +8840,Ng12,EA013,Ambi/neo-local,EA013-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +8841,Ng13,EA013,No alternate,EA013-9,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +8842,Ng14,EA013,No alternate,EA013-9,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +8843,Ng15,EA013,?,EA013-NA,,,,,, +8844,Ng2,EA013,No alternate,EA013-9,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +8845,Ng3,EA013,No alternate,EA013-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +8846,Ng4,EA013,No alternate,EA013-9,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +8847,Ng5,EA013,No alternate,EA013-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +8848,Ng6,EA013,Wife to husband,EA013-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +8849,Ng7,EA013,No alternate,EA013-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +8850,Ng8,EA013,No alternate,EA013-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +8851,Ng9,EA013,No alternate,EA013-9,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +8852,Nh1,EA013,Wife to husband,EA013-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +8853,Nh10,EA013,No alternate,EA013-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +8854,Nh11,EA013,No alternate,EA013-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +8855,Nh12,EA013,No alternate,EA013-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8856,Nh13,EA013,No alternate,EA013-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8857,Nh14,EA013,Wife to husband,EA013-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +8858,Nh15,EA013,No alternate,EA013-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +8859,Nh16,EA013,No alternate,EA013-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8860,Nh17,EA013,Wife to husband,EA013-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +8861,Nh18,EA013,No alternate,EA013-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8862,Nh19,EA013,No alternate,EA013-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +8863,Nh2,EA013,No alternate,EA013-9,,dozier1954,,1950,EthnographicAtlas_1967_p114, +8864,Nh20,EA013,No alternate,EA013-9,,gifford1931,,1860,EthnographicAtlas_1967_p114, +8865,Nh21,EA013,No alternate,EA013-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8866,Nh22,EA013,Husband to wife,EA013-3,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +8867,Nh23,EA013,No alternate,EA013-9,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +8868,Nh24,EA013,No alternate,EA013-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +8869,Nh25,EA013,No alternate,EA013-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +8870,Nh26,EA013,No alternate,EA013-9,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +8871,Nh27,EA013,No alternate,EA013-9,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8872,Nh3,EA013,Wife to husband,EA013-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +8873,Nh4,EA013,No alternate,EA013-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +8874,Nh5,EA013,No alternate,EA013-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +8875,Nh6,EA013,No alternate,EA013-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +8876,Nh7,EA013,Ambi/neo-local,EA013-2,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +8877,Nh8,EA013,No alternate,EA013-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +8878,Nh9,EA013,No alternate,EA013-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +8879,Ni1,EA013,No alternate,EA013-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8880,Ni2,EA013,No alternate,EA013-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +8881,Ni3,EA013,No alternate,EA013-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +8882,Ni4,EA013,No alternate,EA013-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +8883,Ni5,EA013,Wife to husband,EA013-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +8884,Ni6,EA013,No alternate,EA013-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +8885,Ni7,EA013,No alternate,EA013-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +8886,Ni8,EA013,No alternate,EA013-9,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +8887,Ni9,EA013,?,EA013-NA,,,,,, +8888,Nj1,EA013,No alternate,EA013-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8889,Nj10,EA013,Ambi/neo-local,EA013-2,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8890,Nj11,EA013,No alternate,EA013-9,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +8891,Nj12,EA013,?,EA013-NA,,,,,, +8892,Nj13,EA013,No alternate,EA013-9,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +8893,Nj14,EA013,No alternate,EA013-9,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +8894,Nj2,EA013,No alternate,EA013-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +8895,Nj3,EA013,No alternate,EA013-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +8896,Nj4,EA013,No alternate,EA013-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +8897,Nj5,EA013,No alternate,EA013-9,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +8898,Nj6,EA013,Husband to wife,EA013-3,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +8899,Nj7,EA013,No alternate,EA013-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8900,Nj8,EA013,No alternate,EA013-9,,foster1948,,1500,EthnographicAtlas_1967_p118, +8901,Nj9,EA013,No alternate,EA013-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +8902,Sa1,EA013,No alternate,EA013-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +8903,Sa10,EA013,No alternate,EA013-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +8904,Sa11,EA013,No alternate,EA013-9,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +8905,Sa12,EA013,No alternate,EA013-9,,stone1948,,1948,EthnographicAtlas_1967_p118, +8906,Sa13,EA013,No alternate,EA013-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +8907,Sa14,EA013,No alternate,EA013-9,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +8908,Sa15,EA013,No alternate,EA013-9,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +8909,Sa16,EA013,Wife to husband,EA013-1,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +8910,Sa17,EA013,Ambi/neo-local,EA013-2,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +8911,Sa2,EA013,No alternate,EA013-9,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8912,Sa3,EA013,No alternate,EA013-9,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +8913,Sa4,EA013,Wife to husband,EA013-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +8914,Sa5,EA013,Wife to husband,EA013-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +8915,Sa6,EA013,Ambi/neo-local,EA013-2,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +8916,Sa7,EA013,Separate,EA013-4,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +8917,Sa8,EA013,No alternate,EA013-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +8918,Sa9,EA013,Ambi/neo-local,EA013-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +8919,Sb1,EA013,No alternate,EA013-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +8920,Sb2,EA013,No alternate,EA013-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +8921,Sb3,EA013,Wife to husband,EA013-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +8922,Sb4,EA013,Wife to husband,EA013-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +8923,Sb5,EA013,No alternate,EA013-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8924,Sb6,EA013,No alternate,EA013-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +8925,Sb7,EA013,Ambi/neo-local,EA013-2,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +8926,Sb8,EA013,No alternate,EA013-9,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +8927,Sb9,EA013,No alternate,EA013-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +8928,Sc1,EA013,No alternate,EA013-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +8929,Sc10,EA013,No alternate,EA013-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +8930,Sc11,EA013,Ambi/neo-local,EA013-2,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +8931,Sc12,EA013,Ambi/neo-local,EA013-2,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +8932,Sc13,EA013,Wife to husband,EA013-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +8933,Sc14,EA013,No alternate,EA013-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +8934,Sc15,EA013,No alternate,EA013-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +8935,Sc16,EA013,No alternate,EA013-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +8936,Sc17,EA013,No alternate,EA013-9,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +8937,Sc18,EA013,Wife to husband,EA013-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8938,Sc2,EA013,Wife to husband,EA013-1,,leedsnd,,1950,EthnographicAtlas_1967_p118,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8939,Sc3,EA013,No alternate,EA013-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8940,Sc4,EA013,No alternate,EA013-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +8941,Sc5,EA013,No alternate,EA013-9,,farabee1918,,1900,EthnographicAtlas_1967_p118, +8942,Sc6,EA013,Husband to wife,EA013-3,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8943,Sc7,EA013,Wife to husband,EA013-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +8944,Sc8,EA013,No alternate,EA013-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +8945,Sc9,EA013,No alternate,EA013-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +8946,Sd1,EA013,Wife to husband,EA013-1,But men sleep apart from their wives in a men's house,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8947,Sd2,EA013,No alternate,EA013-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +8948,Sd3,EA013,Husband to wife,EA013-3,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +8949,Sd4,EA013,No alternate,EA013-9,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +8950,Sd5,EA013,Ambi/neo-local,EA013-2,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +8951,Sd6,EA013,No alternate,EA013-9,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +8952,Sd7,EA013,No alternate,EA013-9,,fock1963,,1950,EthnographicAtlas_1967_p118, +8953,Sd8,EA013,No alternate,EA013-9,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +8954,Sd9,EA013,Ambi/neo-local,EA013-2,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8955,Se1,EA013,No alternate,EA013-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +8956,Se10,EA013,No alternate,EA013-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +8957,Se11,EA013,No alternate,EA013-9,,prost1965,,1960,EthnographicAtlas_1967_p122, +8958,Se12,EA013,No alternate,EA013-9,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +8959,Se2,EA013,Husband to wife,EA013-3,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +8960,Se3,EA013,No alternate,EA013-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +8961,Se4,EA013,No alternate,EA013-9,,fejos1943,,1940,EthnographicAtlas_1967_p118, +8962,Se5,EA013,Husband to wife,EA013-3,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +8963,Se6,EA013,No alternate,EA013-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +8964,Se7,EA013,No alternate,EA013-9,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8965,Se8,EA013,Ambi/neo-local,EA013-2,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +8966,Se9,EA013,No alternate,EA013-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +8967,Sf1,EA013,Ambi/neo-local,EA013-2,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +8968,Sf2,EA013,No alternate,EA013-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +8969,Sf3,EA013,Husband to wife,EA013-3,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +8970,Sf4,EA013,Husband to wife,EA013-3,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +8971,Sf5,EA013,No alternate,EA013-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +8972,Sf6,EA013,No alternate,EA013-9,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +8973,Sf7,EA013,Husband to wife,EA013-3,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +8974,Sf8,EA013,No alternate,EA013-9,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +8975,Sf9,EA013,No alternate,EA013-9,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +8976,Sg1,EA013,No alternate,EA013-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +8977,Sg2,EA013,Ambi/neo-local,EA013-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8978,Sg3,EA013,Ambi/neo-local,EA013-2,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people""",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +8979,Sg4,EA013,No alternate,EA013-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +8980,Sg5,EA013,No alternate,EA013-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8981,Sh1,EA013,Wife to husband,EA013-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +8982,Sh2,EA013,No alternate,EA013-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +8983,Sh3,EA013,No alternate,EA013-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +8984,Sh4,EA013,No alternate,EA013-9,,oberg1949,,1940,EthnographicAtlas_1967_p122, +8985,Sh5,EA013,No alternate,EA013-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +8986,Sh6,EA013,Wife to husband,EA013-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +8987,Sh7,EA013,Ambi/neo-local,EA013-2,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +8988,Sh8,EA013,No alternate,EA013-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +8989,Sh9,EA013,Wife to husband,EA013-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +8990,Si1,EA013,No alternate,EA013-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8991,Si10,EA013,No alternate,EA013-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +8992,Si2,EA013,No alternate,EA013-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +8993,Si3,EA013,Ambi/neo-local,EA013-2,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +8994,Si4,EA013,Husband to wife,EA013-3,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +8995,Si5,EA013,No alternate,EA013-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +8996,Si6,EA013,No alternate,EA013-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +8997,Si7,EA013,Wife to husband,EA013-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +8998,Si8,EA013,No alternate,EA013-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +8999,Si9,EA013,?,EA013-NA,,,,,, +9000,Sj1,EA013,Ambi/neo-local,EA013-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +9001,Sj10,EA013,Ambi/neo-local,EA013-2,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9002,Sj11,EA013,No alternate,EA013-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +9003,Sj2,EA013,No alternate,EA013-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +9004,Sj3,EA013,No alternate,EA013-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +9005,Sj4,EA013,No alternate,EA013-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +9006,Sj5,EA013,?,EA013-NA,,,,,, +9007,Sj6,EA013,No alternate,EA013-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9008,Sj7,EA013,No alternate,EA013-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +9009,Sj8,EA013,Wife to husband,EA013-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +9010,Sj9,EA013,No alternate,EA013-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +9011,ch12,EA013,No alternate,EA013-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +9012,ch13,EA013,No alternate,EA013-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +9013,ch14,EA013,No alternate,EA013-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +9014,ch15,EA013,No alternate,EA013-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +9015,ch16,EA013,Husband to wife,EA013-3,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +9016,ch17,EA013,No alternate,EA013-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +9017,ch18,EA013,No alternate,EA013-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +9018,ch19,EA013,No alternate,EA013-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +9019,ch20,EA013,No alternate,EA013-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +9020,ch21,EA013,No alternate,EA013-9,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +9021,ch22,EA013,No alternate,EA013-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +9022,ch23,EA013,Husband to wife,EA013-3,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +9023,ch24,EA013,No alternate,EA013-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +9024,ch25,EA013,No alternate,EA013-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +9025,ch26,EA013,Husband to wife,EA013-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +9026,ch27,EA013,No alternate,EA013-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +9027,ch28,EA013,No alternate,EA013-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +9028,ec12,EA013,Husband to wife,EA013-3,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +9029,ec13,EA013,Ambi/neo-local,EA013-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +9030,ec14,EA013,Ambi/neo-local,EA013-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +9031,ec15,EA013,No alternate,EA013-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +9032,ec16,EA013,No alternate,EA013-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +9033,ec17,EA013,No alternate,EA013-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +9034,ec18,EA013,Ambi/neo-local,EA013-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +9035,ec19,EA013,Husband to wife,EA013-3,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +9036,ec20,EA013,Ambi/neo-local,EA013-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +9037,ec21,EA013,Ambi/neo-local,EA013-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +9038,Aa1,EA014,No alternate,EA014-11,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +9039,Aa2,EA014,No alternate,EA014-11,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +9040,Aa3,EA014,No alternate,EA014-11,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +9041,Aa4,EA014,Uxorilocal,EA014-9,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +9042,Aa5,EA014,Uxorilocal,EA014-9,"Note that Turnbull reports Ambilocal (code would be ""2"")",deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +9043,Aa6,EA014,No alternate,EA014-11,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +9044,Aa7,EA014,Uxorilocal,EA014-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +9045,Aa8,EA014,No alternate,EA014-11,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +9046,Aa9,EA014,No alternate,EA014-11,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +9047,Ab1,EA014,Avunculocal,EA014-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +9048,Ab10,EA014,No alternate,EA014-11,,hunter1936,,1936,EthnographicAtlas_1967_p62, +9049,Ab11,EA014,No alternate,EA014-11,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +9050,Ab12,EA014,No alternate,EA014-11,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +9051,Ab13,EA014,No alternate,EA014-11,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +9052,Ab14,EA014,No alternate,EA014-11,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +9053,Ab15,EA014,No alternate,EA014-11,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +9054,Ab16,EA014,No alternate,EA014-11,,earthy1933,,1930,EthnographicAtlas_1967_p62, +9055,Ab17,EA014,No alternate,EA014-11,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +9056,Ab18,EA014,Uxorilocal,EA014-9,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +9057,Ab19,EA014,Neolocal,EA014-6,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +9058,Ab2,EA014,Neolocal,EA014-6,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +9059,Ab20,EA014,No alternate,EA014-11,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +9060,Ab21a,EA014,No alternate,EA014-11,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +9061,Ab21b,EA014,No alternate,EA014-11,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +9062,Ab22,EA014,No alternate,EA014-11,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +9063,Ab3,EA014,Avunculocal,EA014-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +9064,Ab4,EA014,No alternate,EA014-11,,junod1927,,1920,EthnographicAtlas_1967_p62, +9065,Ab5,EA014,Avunculocal,EA014-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +9066,Ab6,EA014,No alternate,EA014-11,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +9067,Ab7,EA014,No alternate,EA014-11,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +9068,Ab8,EA014,No alternate,EA014-11,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +9069,Ab9,EA014,No alternate,EA014-11,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +9070,Ac1,EA014,Avunculocal,EA014-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +9071,Ac10,EA014,Uxorilocal,EA014-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +9072,Ac11,EA014,Virilocal,EA014-10,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +9073,Ac12,EA014,No alternate,EA014-11,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +9074,Ac13,EA014,Virilocal,EA014-10,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +9075,Ac14,EA014,No alternate,EA014-11,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +9076,Ac15,EA014,Virilocal,EA014-10,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +9077,Ac16,EA014,No alternate,EA014-11,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +9078,Ac17,EA014,Avunculocal,EA014-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +9079,Ac18,EA014,No alternate,EA014-11,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +9080,Ac19,EA014,Avunculocal,EA014-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +9081,Ac2,EA014,Virilocal,EA014-10,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +9082,Ac20,EA014,No alternate,EA014-11,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +9083,Ac21,EA014,No alternate,EA014-11,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +9084,Ac22,EA014,Virilocal,EA014-10,,mertens1935,,1930,EthnographicAtlas_1967_p62, +9085,Ac23,EA014,Neolocal,EA014-6,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +9086,Ac24,EA014,Virilocal,EA014-10,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +9087,Ac25,EA014,Virilocal,EA014-10,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +9088,Ac26,EA014,Virilocal,EA014-10,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +9089,Ac27,EA014,No alternate,EA014-11,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +9090,Ac28,EA014,No alternate,EA014-11,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +9091,Ac29,EA014,Virilocal,EA014-10,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +9092,Ac3,EA014,Virilocal,EA014-10,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +9093,Ac30,EA014,Neolocal,EA014-6,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +9094,Ac31,EA014,No alternate,EA014-11,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +9095,Ac32,EA014,Virilocal,EA014-10,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +9096,Ac33,EA014,Neolocal,EA014-6,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +9097,Ac34,EA014,Neolocal,EA014-6,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +9098,Ac35,EA014,Uxorilocal,EA014-9,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +9099,Ac36,EA014,No alternate,EA014-11,"Formerly, alternate pattern was reported as 'Uxorilocal' (code ""9"")",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +9100,Ac37,EA014,No alternate,EA014-11,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +9101,Ac38,EA014,Avunculocal,EA014-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +9102,Ac39,EA014,Avunculocal,EA014-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +9103,Ac4,EA014,No alternate,EA014-11,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +9104,Ac40,EA014,Avuncu-virilocal,EA014-4,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +9105,Ac41,EA014,No alternate,EA014-11,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +9106,Ac42,EA014,No alternate,EA014-11,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +9107,Ac43,EA014,No alternate,EA014-11,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +9108,Ac5,EA014,Uxorilocal,EA014-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +9109,Ac6,EA014,Virilocal,EA014-10,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +9110,Ac7,EA014,Avunculocal,EA014-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +9111,Ac8,EA014,No alternate,EA014-11,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +9112,Ac9,EA014,Uxorilocal,EA014-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +9113,Ad1,EA014,Uxorilocal,EA014-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +9114,Ad10,EA014,No alternate,EA014-11,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +9115,Ad11,EA014,Uxorilocal,EA014-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +9116,Ad12,EA014,No alternate,EA014-11,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +9117,Ad13,EA014,No alternate,EA014-11,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +9118,Ad14,EA014,Avunculocal,EA014-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +9119,Ad15,EA014,No alternate,EA014-11,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +9120,Ad16,EA014,No alternate,EA014-11,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +9121,Ad17,EA014,Neolocal,EA014-6,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +9122,Ad18,EA014,No alternate,EA014-11,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +9123,Ad19,EA014,No alternate,EA014-11,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +9124,Ad2,EA014,No alternate,EA014-11,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +9125,Ad20,EA014,Avunculocal,EA014-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +9126,Ad21,EA014,No alternate,EA014-11,,maurice193538,,1930,EthnographicAtlas_1967_p66, +9127,Ad22,EA014,Avunculocal,EA014-1,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +9128,Ad23,EA014,No alternate,EA014-11,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +9129,Ad24,EA014,Neolocal,EA014-6,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +9130,Ad25,EA014,No alternate,EA014-11,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +9131,Ad26,EA014,No alternate,EA014-11,,sick1916,,1910,EthnographicAtlas_1967_p66, +9132,Ad27,EA014,No alternate,EA014-11,At least initially,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +9133,Ad28,EA014,Virilocal,EA014-10,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +9134,Ad29,EA014,No alternate,EA014-11,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +9135,Ad3,EA014,Neolocal,EA014-6,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +9136,Ad30,EA014,Uxorilocal,EA014-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +9137,Ad31,EA014,No alternate,EA014-11,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +9138,Ad32,EA014,No alternate,EA014-11,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +9139,Ad33,EA014,No alternate,EA014-11,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +9140,Ad34,EA014,No alternate,EA014-11,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +9141,Ad35,EA014,No alternate,EA014-11,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +9142,Ad36,EA014,No alternate,EA014-11,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +9143,Ad37,EA014,Uxorilocal,EA014-9,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +9144,Ad38,EA014,No alternate,EA014-11,Inferential from distributional evidence,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +9145,Ad39,EA014,No alternate,EA014-11,,gray1963,,1950,EthnographicAtlas_1967_p66, +9146,Ad4,EA014,No alternate,EA014-11,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +9147,Ad40,EA014,No alternate,EA014-11,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +9148,Ad41,EA014,No alternate,EA014-11,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +9149,Ad42,EA014,No alternate,EA014-11,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +9150,Ad43,EA014,Neolocal,EA014-6,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +9151,Ad44,EA014,No alternate,EA014-11,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +9152,Ad45,EA014,Neolocal,EA014-6,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +9153,Ad46,EA014,No alternate,EA014-11,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +9154,Ad47,EA014,No alternate,EA014-11,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +9155,Ad48,EA014,No alternate,EA014-11,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +9156,Ad49,EA014,No alternate,EA014-11,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +9157,Ad5,EA014,No alternate,EA014-11,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +9158,Ad50,EA014,Avuncu-virilocal,EA014-4,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +9159,Ad51,EA014,Ambilocal,EA014-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +9160,Ad6,EA014,No alternate,EA014-11,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +9161,Ad7,EA014,Virilocal,EA014-10,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +9162,Ad8,EA014,Neolocal,EA014-6,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +9163,Ad9,EA014,Neolocal,EA014-6,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +9164,Ae1,EA014,Avunculocal,EA014-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +9165,Ae10,EA014,No alternate,EA014-11,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +9166,Ae11,EA014,No alternate,EA014-11,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +9167,Ae12,EA014,No alternate,EA014-11,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +9168,Ae13,EA014,No alternate,EA014-11,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +9169,Ae14,EA014,No alternate,EA014-11,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +9170,Ae15,EA014,No alternate,EA014-11,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +9171,Ae16,EA014,No alternate,EA014-11,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +9172,Ae17,EA014,No alternate,EA014-11,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +9173,Ae18,EA014,No alternate,EA014-11,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +9174,Ae19,EA014,No alternate,EA014-11,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +9175,Ae2,EA014,Avunculocal,EA014-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +9176,Ae20,EA014,Avunculocal,EA014-1,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +9177,Ae21,EA014,No alternate,EA014-11,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +9178,Ae22,EA014,No alternate,EA014-11,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +9179,Ae23,EA014,Avunculocal,EA014-1,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +9180,Ae24,EA014,Avunculocal,EA014-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +9181,Ae25,EA014,No alternate,EA014-11,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +9182,Ae26,EA014,No alternate,EA014-11,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +9183,Ae27,EA014,No alternate,EA014-11,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +9184,Ae28,EA014,No alternate,EA014-11,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +9185,Ae29,EA014,No alternate,EA014-11,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +9186,Ae3,EA014,No alternate,EA014-11,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +9187,Ae30,EA014,No alternate,EA014-11,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +9188,Ae31,EA014,No alternate,EA014-11,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +9189,Ae32,EA014,No alternate,EA014-11,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +9190,Ae33,EA014,No alternate,EA014-11,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +9191,Ae34,EA014,No alternate,EA014-11,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +9192,Ae35,EA014,No alternate,EA014-11,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +9193,Ae36,EA014,No alternate,EA014-11,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +9194,Ae37,EA014,No alternate,EA014-11,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +9195,Ae38,EA014,No alternate,EA014-11,The relative incidence of avunculocal and virilocal residence is unclear,wijnant192526,,1920,EthnographicAtlas_1967_p66, +9196,Ae39,EA014,No alternate,EA014-11,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +9197,Ae4,EA014,Avunculocal,EA014-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +9198,Ae40,EA014,No alternate,EA014-11,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +9199,Ae41,EA014,No alternate,EA014-11,,andersson1953,,1940,EthnographicAtlas_1967_p66, +9200,Ae42,EA014,No alternate,EA014-11,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +9201,Ae43,EA014,No alternate,EA014-11,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +9202,Ae44,EA014,No alternate,EA014-11,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +9203,Ae45,EA014,No alternate,EA014-11,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +9204,Ae46,EA014,Avunculocal,EA014-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +9205,Ae47,EA014,No alternate,EA014-11,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +9206,Ae48,EA014,Avunculocal,EA014-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +9207,Ae49,EA014,No alternate,EA014-11,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +9208,Ae5,EA014,No alternate,EA014-11,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +9209,Ae50,EA014,No alternate,EA014-11,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +9210,Ae51,EA014,No alternate,EA014-11,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +9211,Ae52,EA014,No alternate,EA014-11,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +9212,Ae53,EA014,No alternate,EA014-11,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +9213,Ae54,EA014,Virilocal,EA014-10,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +9214,Ae55,EA014,No alternate,EA014-11,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +9215,Ae56,EA014,Neolocal,EA014-6,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +9216,Ae57,EA014,No alternate,EA014-11,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +9217,Ae58,EA014,No alternate,EA014-11,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +9218,Ae59,EA014,No alternate,EA014-11,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +9219,Ae6,EA014,No alternate,EA014-11,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +9220,Ae7,EA014,No alternate,EA014-11,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +9221,Ae8,EA014,Neolocal,EA014-6,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +9222,Ae9,EA014,No alternate,EA014-11,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +9223,Af1,EA014,Uxorilocal,EA014-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +9224,Af10,EA014,No alternate,EA014-11,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +9225,Af11,EA014,No alternate,EA014-11,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +9226,Af12,EA014,?,EA014-NA,"Mix of Avunculocal (code ""1""), Nonestablishment of a common household (code ""7""), and Virilocal (code ""10"") with relative incidence unspecified",field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +9227,Af13,EA014,No alternate,EA014-11,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +9228,Af14,EA014,Avunculocal,EA014-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +9229,Af15,EA014,Uxorilocal,EA014-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +9230,Af16,EA014,No alternate,EA014-11,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +9231,Af17,EA014,No alternate,EA014-11,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +9232,Af18,EA014,No alternate,EA014-11,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +9233,Af19,EA014,No alternate,EA014-11,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +9234,Af2,EA014,No alternate,EA014-11,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +9235,Af20,EA014,No alternate,EA014-11,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +9236,Af21,EA014,Avunculocal,EA014-1,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +9237,Af22,EA014,Neolocal,EA014-6,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +9238,Af23,EA014,No alternate,EA014-11,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +9239,Af24,EA014,No alternate,EA014-11,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +9240,Af25,EA014,No alternate,EA014-11,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +9241,Af26,EA014,Avunculocal,EA014-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +9242,Af27,EA014,No alternate,EA014-11,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +9243,Af28,EA014,No alternate,EA014-11,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +9244,Af29,EA014,No alternate,EA014-11,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +9245,Af3,EA014,Virilocal,EA014-10,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +9246,Af30,EA014,No alternate,EA014-11,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +9247,Af31,EA014,No alternate,EA014-11,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +9248,Af32,EA014,No alternate,EA014-11,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9249,Af33,EA014,No alternate,EA014-11,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9250,Af34,EA014,No alternate,EA014-11,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9251,Af35,EA014,No alternate,EA014-11,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +9252,Af36,EA014,No alternate,EA014-11,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +9253,Af37,EA014,No alternate,EA014-11,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +9254,Af38,EA014,Avunculocal,EA014-1,But a married woman commonly remains in her natal household instead of joining her husband,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +9255,Af39,EA014,Avunculocal,EA014-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +9256,Af4,EA014,Avunculocal,EA014-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +9257,Af40,EA014,Avunculocal,EA014-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +9258,Af41,EA014,Avunculocal,EA014-1,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +9259,Af42,EA014,Neolocal,EA014-6,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +9260,Af43,EA014,Patrilocal,EA014-8,But most married women continue to reside in their natal household,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +9261,Af44,EA014,Virilocal,EA014-10,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +9262,Af45,EA014,Avunculocal,EA014-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +9263,Af46,EA014,No alternate,EA014-11,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +9264,Af47,EA014,No alternate,EA014-11,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +9265,Af48,EA014,No alternate,EA014-11,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +9266,Af49,EA014,No alternate,EA014-11,,schwab1947,,1940,EthnographicAtlas_1967_p70, +9267,Af5,EA014,Avuncu-uxorilocal,EA014-3,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +9268,Af50,EA014,No alternate,EA014-11,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +9269,Af51,EA014,No alternate,EA014-11,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +9270,Af52,EA014,No alternate,EA014-11,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +9271,Af53,EA014,No alternate,EA014-11,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +9272,Af54,EA014,No alternate,EA014-11,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +9273,Af55,EA014,Uxorilocal,EA014-9,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +9274,Af56,EA014,Avunculocal,EA014-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +9275,Af57,EA014,Avunculocal,EA014-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +9276,Af58,EA014,No alternate,EA014-11,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +9277,Af6,EA014,No alternate,EA014-11,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +9278,Af7,EA014,No alternate,EA014-11,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +9279,Af8,EA014,No alternate,EA014-11,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +9280,Af9,EA014,Virilocal,EA014-10,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +9281,Ag1,EA014,No alternate,EA014-11,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +9282,Ag10,EA014,No alternate,EA014-11,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +9283,Ag11,EA014,Avunculocal,EA014-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +9284,Ag12,EA014,Avunculocal,EA014-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +9285,Ag13,EA014,No alternate,EA014-11,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +9286,Ag14,EA014,No alternate,EA014-11,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +9287,Ag15,EA014,No alternate,EA014-11,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +9288,Ag16,EA014,No alternate,EA014-11,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +9289,Ag17,EA014,No alternate,EA014-11,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +9290,Ag18,EA014,No alternate,EA014-11,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +9291,Ag19,EA014,No alternate,EA014-11,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +9292,Ag2,EA014,No alternate,EA014-11,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +9293,Ag20,EA014,No alternate,EA014-11,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +9294,Ag21,EA014,Avunculocal,EA014-1,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +9295,Ag22,EA014,Avunculocal,EA014-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +9296,Ag23,EA014,No alternate,EA014-11,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +9297,Ag24,EA014,No alternate,EA014-11,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +9298,Ag25,EA014,No alternate,EA014-11,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +9299,Ag26,EA014,No alternate,EA014-11,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +9300,Ag27,EA014,Neolocal,EA014-6,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +9301,Ag28,EA014,No alternate,EA014-11,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +9302,Ag29,EA014,No alternate,EA014-11,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +9303,Ag3,EA014,No alternate,EA014-11,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +9304,Ag30,EA014,No alternate,EA014-11,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +9305,Ag31,EA014,No alternate,EA014-11,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +9306,Ag32,EA014,No alternate,EA014-11,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +9307,Ag33,EA014,Avunculocal,EA014-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +9308,Ag34,EA014,Avunculocal,EA014-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +9309,Ag35,EA014,No alternate,EA014-11,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +9310,Ag36,EA014,Avunculocal,EA014-1,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +9311,Ag37,EA014,No alternate,EA014-11,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +9312,Ag38,EA014,No alternate,EA014-11,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +9313,Ag39,EA014,No alternate,EA014-11,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +9314,Ag4,EA014,Neolocal,EA014-6,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +9315,Ag40,EA014,No alternate,EA014-11,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +9316,Ag41,EA014,No alternate,EA014-11,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +9317,Ag42,EA014,No alternate,EA014-11,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +9318,Ag43,EA014,Avunculocal,EA014-1,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +9319,Ag44,EA014,?,EA014-NA,,,,,, +9320,Ag45,EA014,Neolocal,EA014-6,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +9321,Ag46,EA014,No alternate,EA014-11,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +9322,Ag47,EA014,Avunculocal,EA014-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +9323,Ag48,EA014,No alternate,EA014-11,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +9324,Ag49,EA014,No alternate,EA014-11,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +9325,Ag5,EA014,Avunculocal,EA014-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +9326,Ag50,EA014,No alternate,EA014-11,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +9327,Ag51,EA014,No alternate,EA014-11,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +9328,Ag52,EA014,No alternate,EA014-11,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +9329,Ag53,EA014,No alternate,EA014-11,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +9330,Ag54,EA014,No alternate,EA014-11,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +9331,Ag6,EA014,No alternate,EA014-11,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +9332,Ag7,EA014,No alternate,EA014-11,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +9333,Ag8,EA014,Virilocal,EA014-10,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +9334,Ag9,EA014,No alternate,EA014-11,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +9335,Ah1,EA014,Avunculocal,EA014-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9336,Ah10,EA014,No alternate,EA014-11,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +9337,Ah11,EA014,No alternate,EA014-11,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +9338,Ah12,EA014,Uxorilocal,EA014-9,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +9339,Ah13,EA014,No alternate,EA014-11,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +9340,Ah14,EA014,No alternate,EA014-11,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +9341,Ah15,EA014,No alternate,EA014-11,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +9342,Ah16,EA014,No alternate,EA014-11,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +9343,Ah17,EA014,No alternate,EA014-11,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +9344,Ah18,EA014,No alternate,EA014-11,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +9345,Ah19,EA014,Avunculocal,EA014-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +9346,Ah2,EA014,No alternate,EA014-11,,meek1931a,,1920,EthnographicAtlas_1967_p74, +9347,Ah20,EA014,Avunculocal,EA014-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +9348,Ah21,EA014,Avunculocal,EA014-1,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9349,Ah22,EA014,Avunculocal,EA014-1,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +9350,Ah23,EA014,Avunculocal,EA014-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9351,Ah24,EA014,No alternate,EA014-11,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9352,Ah25,EA014,No alternate,EA014-11,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9353,Ah26,EA014,Virilocal,EA014-10,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9354,Ah27,EA014,No alternate,EA014-11,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9355,Ah28,EA014,No alternate,EA014-11,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +9356,Ah29,EA014,Avuncu-virilocal,EA014-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9357,Ah3,EA014,Avunculocal,EA014-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +9358,Ah30,EA014,Virilocal,EA014-10,,meek1931b,,1920,EthnographicAtlas_1967_p74, +9359,Ah31,EA014,Avunculocal,EA014-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +9360,Ah32,EA014,No alternate,EA014-11,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9361,Ah33,EA014,No alternate,EA014-11,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +9362,Ah34,EA014,No alternate,EA014-11,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +9363,Ah35,EA014,No alternate,EA014-11,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9364,Ah36,EA014,No alternate,EA014-11,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +9365,Ah37,EA014,Avunculocal,EA014-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9366,Ah38,EA014,No alternate,EA014-11,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +9367,Ah39,EA014,No alternate,EA014-11,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +9368,Ah4,EA014,Avunculocal,EA014-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +9369,Ah5,EA014,Avunculocal,EA014-1,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +9370,Ah6,EA014,No alternate,EA014-11,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +9371,Ah7,EA014,No alternate,EA014-11,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +9372,Ah8,EA014,Avunculocal,EA014-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +9373,Ah9,EA014,No alternate,EA014-11,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +9374,Ai1,EA014,No alternate,EA014-11,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +9375,Ai10,EA014,Neolocal,EA014-6,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +9376,Ai11,EA014,Neolocal,EA014-6,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +9377,Ai12,EA014,No alternate,EA014-11,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +9378,Ai13,EA014,No alternate,EA014-11,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +9379,Ai14,EA014,No alternate,EA014-11,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +9380,Ai15,EA014,No alternate,EA014-11,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +9381,Ai16,EA014,No alternate,EA014-11,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +9382,Ai17,EA014,No alternate,EA014-11,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +9383,Ai18,EA014,No alternate,EA014-11,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +9384,Ai19,EA014,No alternate,EA014-11,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +9385,Ai2,EA014,No alternate,EA014-11,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +9386,Ai20,EA014,No alternate,EA014-11,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +9387,Ai21,EA014,No alternate,EA014-11,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +9388,Ai22,EA014,No alternate,EA014-11,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +9389,Ai23,EA014,No alternate,EA014-11,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +9390,Ai24,EA014,No alternate,EA014-11,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +9391,Ai25,EA014,?,EA014-NA,,,,,, +9392,Ai26,EA014,Avunculocal,EA014-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +9393,Ai27,EA014,No alternate,EA014-11,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +9394,Ai28,EA014,No alternate,EA014-11,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +9395,Ai29,EA014,No alternate,EA014-11,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +9396,Ai3,EA014,Neolocal,EA014-6,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +9397,Ai30,EA014,No alternate,EA014-11,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +9398,Ai31,EA014,No alternate,EA014-11,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +9399,Ai32,EA014,No alternate,EA014-11,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +9400,Ai33,EA014,No alternate,EA014-11,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +9401,Ai34,EA014,No alternate,EA014-11,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +9402,Ai35,EA014,No alternate,EA014-11,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +9403,Ai36,EA014,No alternate,EA014-11,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +9404,Ai37,EA014,No alternate,EA014-11,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +9405,Ai38,EA014,Virilocal,EA014-10,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +9406,Ai39,EA014,Virilocal,EA014-10,,nadel1947,,1940,EthnographicAtlas_1967_p74, +9407,Ai4,EA014,Avunculocal,EA014-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +9408,Ai40,EA014,No alternate,EA014-11,,nadel1947,,1940,EthnographicAtlas_1967_p74, +9409,Ai41,EA014,Neolocal,EA014-6,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +9410,Ai42,EA014,No alternate,EA014-11,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +9411,Ai43,EA014,No alternate,EA014-11,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +9412,Ai44,EA014,Avunculocal,EA014-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +9413,Ai45,EA014,No alternate,EA014-11,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +9414,Ai46,EA014,No alternate,EA014-11,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +9415,Ai47,EA014,No alternate,EA014-11,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +9416,Ai5,EA014,No alternate,EA014-11,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +9417,Ai6,EA014,No alternate,EA014-11,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +9418,Ai7,EA014,No alternate,EA014-11,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +9419,Ai8,EA014,Neolocal,EA014-6,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +9420,Ai9,EA014,No alternate,EA014-11,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +9421,Aj1,EA014,No alternate,EA014-11,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +9422,Aj10,EA014,No alternate,EA014-11,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +9423,Aj11,EA014,No alternate,EA014-11,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +9424,Aj12,EA014,No alternate,EA014-11,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +9425,Aj13,EA014,No alternate,EA014-11,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +9426,Aj14,EA014,No alternate,EA014-11,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +9427,Aj15,EA014,No alternate,EA014-11,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +9428,Aj16,EA014,No alternate,EA014-11,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +9429,Aj17,EA014,No alternate,EA014-11,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +9430,Aj18,EA014,?,EA014-NA,,,,,, +9431,Aj19,EA014,Neolocal,EA014-6,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +9432,Aj2,EA014,Neolocal,EA014-6,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +9433,Aj20,EA014,No alternate,EA014-11,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +9434,Aj21,EA014,No alternate,EA014-11,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +9435,Aj22,EA014,?,EA014-NA,,,,,, +9436,Aj23,EA014,Neolocal,EA014-6,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +9437,Aj24,EA014,No alternate,EA014-11,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +9438,Aj25,EA014,Neolocal,EA014-6,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +9439,Aj26,EA014,No alternate,EA014-11,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +9440,Aj27,EA014,No alternate,EA014-11,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +9441,Aj28,EA014,No alternate,EA014-11,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +9442,Aj29,EA014,Uxorilocal,EA014-9,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +9443,Aj3,EA014,Uxorilocal,EA014-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +9444,Aj30,EA014,Neolocal,EA014-6,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +9445,Aj31,EA014,No alternate,EA014-11,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +9446,Aj4,EA014,No alternate,EA014-11,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +9447,Aj5,EA014,Neolocal,EA014-6,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +9448,Aj6,EA014,Neolocal,EA014-6,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +9449,Aj7,EA014,Neolocal,EA014-6,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +9450,Aj8,EA014,Neolocal,EA014-6,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +9451,Aj9,EA014,No alternate,EA014-11,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +9452,Ca1,EA014,Patrilocal,EA014-8,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +9453,Ca10,EA014,No alternate,EA014-11,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +9454,Ca11,EA014,No alternate,EA014-11,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +9455,Ca12,EA014,No alternate,EA014-11,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +9456,Ca13,EA014,No alternate,EA014-11,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +9457,Ca14,EA014,No alternate,EA014-11,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +9458,Ca15,EA014,No alternate,EA014-11,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +9459,Ca16,EA014,No alternate,EA014-11,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +9460,Ca17,EA014,No alternate,EA014-11,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +9461,Ca18,EA014,No alternate,EA014-11,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +9462,Ca19,EA014,No alternate,EA014-11,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +9463,Ca2,EA014,No alternate,EA014-11,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +9464,Ca20,EA014,No alternate,EA014-11,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +9465,Ca21,EA014,No alternate,EA014-11,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +9466,Ca22,EA014,No alternate,EA014-11,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +9467,Ca23,EA014,No alternate,EA014-11,,jensen1959,,1950,EthnographicAtlas_1967_p78, +9468,Ca24,EA014,No alternate,EA014-11,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +9469,Ca25,EA014,No alternate,EA014-11,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +9470,Ca26,EA014,No alternate,EA014-11,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +9471,Ca27,EA014,No alternate,EA014-11,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +9472,Ca28,EA014,No alternate,EA014-11,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +9473,Ca29,EA014,No alternate,EA014-11,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +9474,Ca3,EA014,No alternate,EA014-11,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +9475,Ca30,EA014,No alternate,EA014-11,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +9476,Ca31,EA014,Neolocal,EA014-6,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +9477,Ca32,EA014,Uxorilocal,EA014-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +9478,Ca33,EA014,No alternate,EA014-11,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +9479,Ca34,EA014,No alternate,EA014-11,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +9480,Ca35,EA014,No alternate,EA014-11,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +9481,Ca36,EA014,No alternate,EA014-11,"In the noble class; among serfs prevailing pattern is Patrilocal (EA012 code ""8""), with Uxorilocal as alternate (this variable would be code ""9"")",munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +9482,Ca37,EA014,No alternate,EA014-11,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +9483,Ca38,EA014,No alternate,EA014-11,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +9484,Ca39,EA014,No alternate,EA014-11,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +9485,Ca4,EA014,Neolocal,EA014-6,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +9486,Ca40,EA014,No alternate,EA014-11,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +9487,Ca41,EA014,No alternate,EA014-11,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +9488,Ca42,EA014,No alternate,EA014-11,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +9489,Ca43,EA014,No alternate,EA014-11,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +9490,Ca5,EA014,No alternate,EA014-11,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +9491,Ca6,EA014,No alternate,EA014-11,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +9492,Ca7,EA014,Uxorilocal,EA014-9,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +9493,Ca8,EA014,No alternate,EA014-11,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +9494,Ca9,EA014,No alternate,EA014-11,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +9495,Cb1,EA014,No alternate,EA014-11,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +9496,Cb10,EA014,No alternate,EA014-11,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +9497,Cb11,EA014,?,EA014-NA,,,,,, +9498,Cb12,EA014,No alternate,EA014-11,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +9499,Cb13,EA014,No alternate,EA014-11,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +9500,Cb14,EA014,No alternate,EA014-11,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +9501,Cb15,EA014,Avunculocal,EA014-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +9502,Cb16,EA014,No alternate,EA014-11,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +9503,Cb17,EA014,No alternate,EA014-11,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +9504,Cb18,EA014,No alternate,EA014-11,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +9505,Cb19,EA014,Neolocal,EA014-6,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +9506,Cb2,EA014,Avunculocal,EA014-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +9507,Cb20,EA014,?,EA014-NA,,,,,, +9508,Cb21,EA014,No alternate,EA014-11,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +9509,Cb22,EA014,No alternate,EA014-11,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +9510,Cb23,EA014,No alternate,EA014-11,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +9511,Cb24,EA014,No alternate,EA014-11,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +9512,Cb25,EA014,No alternate,EA014-11,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +9513,Cb26,EA014,No alternate,EA014-11,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +9514,Cb27,EA014,Avunculocal,EA014-1,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9515,Cb28,EA014,Avunculocal,EA014-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9516,Cb29,EA014,No alternate,EA014-11,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +9517,Cb3,EA014,Neolocal,EA014-6,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +9518,Cb4,EA014,No alternate,EA014-11,,reid1930,,1920,EthnographicAtlas_1967_p78, +9519,Cb5,EA014,No alternate,EA014-11,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +9520,Cb6,EA014,Avunculocal,EA014-1,,woodnd,,1920,EthnographicAtlas_1967_p78, +9521,Cb7,EA014,No alternate,EA014-11,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +9522,Cb8,EA014,No alternate,EA014-11,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +9523,Cb9,EA014,Neolocal,EA014-6,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +9524,Cc1,EA014,No alternate,EA014-11,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +9525,Cc10,EA014,Avunculocal,EA014-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +9526,Cc11,EA014,?,EA014-NA,,,,,, +9527,Cc12,EA014,No alternate,EA014-11,Ultimate residence is unclear and may be avunculocal,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +9528,Cc13,EA014,Virilocal,EA014-10,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +9529,Cc14,EA014,No alternate,EA014-11,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +9530,Cc15,EA014,?,EA014-NA,,,,,, +9531,Cc16,EA014,No alternate,EA014-11,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +9532,Cc17,EA014,No alternate,EA014-11,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +9533,Cc18,EA014,No alternate,EA014-11,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +9534,Cc19,EA014,No alternate,EA014-11,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +9535,Cc2,EA014,No alternate,EA014-11,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +9536,Cc20,EA014,No alternate,EA014-11,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +9537,Cc3,EA014,No alternate,EA014-11,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +9538,Cc4,EA014,Neolocal,EA014-6,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +9539,Cc5,EA014,Avunculocal,EA014-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +9540,Cc6,EA014,No alternate,EA014-11,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +9541,Cc7,EA014,No alternate,EA014-11,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9542,Cc8,EA014,?,EA014-NA,,,,,, +9543,Cc9,EA014,Uxorilocal,EA014-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +9544,Cd1,EA014,No alternate,EA014-11,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +9545,Cd10,EA014,No alternate,EA014-11,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +9546,Cd11,EA014,No alternate,EA014-11,Suggested rather than attested,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +9547,Cd12,EA014,No alternate,EA014-11,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +9548,Cd13,EA014,No alternate,EA014-11,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +9549,Cd14,EA014,No alternate,EA014-11,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +9550,Cd15,EA014,No alternate,EA014-11,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +9551,Cd16,EA014,No alternate,EA014-11,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +9552,Cd17,EA014,No alternate,EA014-11,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +9553,Cd18,EA014,No alternate,EA014-11,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +9554,Cd19,EA014,No alternate,EA014-11,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +9555,Cd2,EA014,No alternate,EA014-11,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +9556,Cd20,EA014,No alternate,EA014-11,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +9557,Cd21,EA014,No alternate,EA014-11,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +9558,Cd3,EA014,Neolocal,EA014-6,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +9559,Cd4,EA014,No alternate,EA014-11,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +9560,Cd5,EA014,No alternate,EA014-11,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +9561,Cd6,EA014,Virilocal,EA014-10,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +9562,Cd7,EA014,No alternate,EA014-11,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +9563,Cd8,EA014,No alternate,EA014-11,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +9564,Cd9,EA014,No alternate,EA014-11,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +9565,Ce1,EA014,No alternate,EA014-11,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +9566,Ce2,EA014,Neolocal,EA014-6,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +9567,Ce3,EA014,No alternate,EA014-11,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +9568,Ce4,EA014,Neolocal,EA014-6,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9569,Ce5,EA014,Uxorilocal,EA014-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +9570,Ce6,EA014,No alternate,EA014-11,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +9571,Ce7,EA014,Neolocal,EA014-6,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +9572,Ce8,EA014,Uxorilocal,EA014-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +9573,Cf1,EA014,Virilocal,EA014-10,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +9574,Cf2,EA014,Neolocal,EA014-6,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +9575,Cf3,EA014,No alternate,EA014-11,,munch1945,,1930,EthnographicAtlas_1967_p82, +9576,Cf4,EA014,Virilocal,EA014-10,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +9577,Cf5,EA014,Virilocal,EA014-10,,miner1939,,1930,EthnographicAtlas_1967_p82, +9578,Cg1,EA014,Neolocal,EA014-6,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +9579,Cg2,EA014,Neolocal,EA014-6,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +9580,Cg3,EA014,Neolocal,EA014-6,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +9581,Cg4,EA014,Uxorilocal,EA014-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +9582,Cg5,EA014,No alternate,EA014-11,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +9583,Ch1,EA014,Neolocal,EA014-6,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +9584,Ch10,EA014,Patrilocal,EA014-8,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +9585,Ch11,EA014,No alternate,EA014-11,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +9586,Ch2,EA014,No alternate,EA014-11,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +9587,Ch3,EA014,Neolocal,EA014-6,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +9588,Ch4,EA014,No alternate,EA014-11,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +9589,Ch5,EA014,Neolocal,EA014-6,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +9590,Ch6,EA014,Neolocal,EA014-6,,ember1954,,1910,EthnographicAtlas_1967_p82, +9591,Ch7,EA014,Neolocal,EA014-6,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +9592,Ch8,EA014,Neolocal,EA014-6,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +9593,Ch9,EA014,Neolocal,EA014-6,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +9594,Ci1,EA014,Neolocal,EA014-6,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +9595,Ci10,EA014,Uxorilocal,EA014-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +9596,Ci11,EA014,No alternate,EA014-11,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +9597,Ci12,EA014,No alternate,EA014-11,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +9598,Ci2,EA014,No alternate,EA014-11,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +9599,Ci3,EA014,Virilocal,EA014-10,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +9600,Ci4,EA014,Neolocal,EA014-6,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +9601,Ci5,EA014,No alternate,EA014-11,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +9602,Ci6,EA014,No alternate,EA014-11,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +9603,Ci7,EA014,No alternate,EA014-11,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +9604,Ci8,EA014,No alternate,EA014-11,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +9605,Ci9,EA014,No alternate,EA014-11,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +9606,Cj1,EA014,Neolocal,EA014-6,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +9607,Cj10,EA014,No alternate,EA014-11,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +9608,Cj2,EA014,No alternate,EA014-11,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +9609,Cj3,EA014,No alternate,EA014-11,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +9610,Cj4,EA014,No alternate,EA014-11,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +9611,Cj5,EA014,No alternate,EA014-11,,dickson1949,,1930,EthnographicAtlas_1967_p86, +9612,Cj6,EA014,Neolocal,EA014-6,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +9613,Cj7,EA014,Neolocal,EA014-6,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +9614,Cj8,EA014,No alternate,EA014-11,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +9615,Cj9,EA014,No alternate,EA014-11,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +9616,Ea1,EA014,No alternate,EA014-11,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +9617,Ea10,EA014,No alternate,EA014-11,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +9618,Ea11,EA014,No alternate,EA014-11,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +9619,Ea12,EA014,Neolocal,EA014-6,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +9620,Ea13,EA014,No alternate,EA014-11,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +9621,Ea2,EA014,No alternate,EA014-11,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +9622,Ea3,EA014,No alternate,EA014-11,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +9623,Ea4,EA014,No alternate,EA014-11,,barth1956b,,1950,EthnographicAtlas_1967_p86, +9624,Ea5,EA014,No alternate,EA014-11,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +9625,Ea6,EA014,Neolocal,EA014-6,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +9626,Ea7,EA014,No alternate,EA014-11,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +9627,Ea8,EA014,No alternate,EA014-11,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +9628,Ea9,EA014,Neolocal,EA014-6,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +9629,Eb1,EA014,No alternate,EA014-11,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +9630,Eb2,EA014,No alternate,EA014-11,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +9631,Eb3,EA014,Neolocal,EA014-6,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +9632,Eb4,EA014,No alternate,EA014-11,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +9633,Eb5,EA014,No alternate,EA014-11,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +9634,Eb6,EA014,No alternate,EA014-11,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +9635,Eb7,EA014,No alternate,EA014-11,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +9636,Eb8,EA014,No alternate,EA014-11,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +9637,Ec1,EA014,No alternate,EA014-11,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +9638,Ec10,EA014,No alternate,EA014-11,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +9639,Ec11,EA014,No alternate,EA014-11,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +9640,Ec2,EA014,No alternate,EA014-11,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9641,Ec3,EA014,Uxorilocal,EA014-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +9642,Ec4,EA014,No alternate,EA014-11,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +9643,Ec5,EA014,Uxorilocal,EA014-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +9644,Ec6,EA014,Virilocal,EA014-10,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +9645,Ec7,EA014,Uxorilocal,EA014-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +9646,Ec8,EA014,Neolocal,EA014-6,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +9647,Ec9,EA014,No alternate,EA014-11,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +9648,Ed1,EA014,Neolocal,EA014-6,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +9649,Ed10,EA014,No alternate,EA014-11,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +9650,Ed13,EA014,Neolocal,EA014-6,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +9651,Ed14,EA014,Uxorilocal,EA014-9,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +9652,Ed15a,EA014,Neolocal,EA014-6,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +9653,Ed15b,EA014,Patrilocal,EA014-8,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +9654,Ed16,EA014,No alternate,EA014-11,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +9655,Ed2,EA014,No alternate,EA014-11,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +9656,Ed3,EA014,No alternate,EA014-11,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +9657,Ed4,EA014,No alternate,EA014-11,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +9658,Ed5,EA014,Neolocal,EA014-6,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9659,Ed6,EA014,No alternate,EA014-11,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +9660,Ed7,EA014,Neolocal,EA014-6,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +9661,Ed8,EA014,No alternate,EA014-11,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +9662,Ed9,EA014,No alternate,EA014-11,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +9663,Ee1,EA014,Neolocal,EA014-6,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +9664,Ee2,EA014,No alternate,EA014-11,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +9665,Ee3,EA014,No alternate,EA014-11,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +9666,Ee4,EA014,No alternate,EA014-11,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +9667,Ee5,EA014,No alternate,EA014-11,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +9668,Ee6,EA014,No alternate,EA014-11,Uxorilocal only if wife has no brothers,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +9669,Ee7,EA014,Neolocal,EA014-6,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +9670,Ee8,EA014,Neolocal,EA014-6,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +9671,Ef1,EA014,No alternate,EA014-11,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +9672,Ef10,EA014,No alternate,EA014-11,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9673,Ef11,EA014,No alternate,EA014-11,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +9674,Ef2,EA014,No alternate,EA014-11,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +9675,Ef3,EA014,No alternate,EA014-11,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +9676,Ef4,EA014,No alternate,EA014-11,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +9677,Ef5,EA014,No alternate,EA014-11,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +9678,Ef6,EA014,No alternate,EA014-11,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +9679,Ef7,EA014,No alternate,EA014-11,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +9680,Ef8,EA014,No alternate,EA014-11,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +9681,Ef9,EA014,No alternate,EA014-11,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9682,Eg1,EA014,No alternate,EA014-11,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9683,Eg10,EA014,No alternate,EA014-11,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +9684,Eg11,EA014,No alternate,EA014-11,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +9685,Eg12,EA014,No alternate,EA014-11,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +9686,Eg13,EA014,No alternate,EA014-11,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9687,Eg14,EA014,Uxorilocal,EA014-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +9688,Eg2,EA014,No alternate,EA014-11,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +9689,Eg3,EA014,No alternate,EA014-11,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +9690,Eg4,EA014,No alternate,EA014-11,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +9691,Eg5,EA014,No alternate,EA014-11,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +9692,Eg6,EA014,No alternate,EA014-11,Entry pertains to the Nayar; predominantly Matrilocal among the Mappilla and Virilocal or Neolocal among the Tiyyar,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +9693,Eg7,EA014,No alternate,EA014-11,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +9694,Eg8,EA014,No alternate,EA014-11,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +9695,Eg9,EA014,No alternate,EA014-11,,elwin1939,,1930,EthnographicAtlas_1967_p90, +9696,Eh1,EA014,No alternate,EA014-11,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +9697,Eh10,EA014,No alternate,EA014-11,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +9698,Eh2,EA014,No alternate,EA014-11,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +9699,Eh3,EA014,No alternate,EA014-11,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +9700,Eh4,EA014,Neolocal,EA014-6,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9701,Eh5,EA014,Virilocal,EA014-10,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +9702,Eh6,EA014,Uxorilocal,EA014-9,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +9703,Eh7,EA014,Uxorilocal,EA014-9,"But McLeod reports Ambilocal (code ""2"")",decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +9704,Eh8,EA014,No alternate,EA014-11,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +9705,Eh9,EA014,No alternate,EA014-11,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +9706,Ei1,EA014,Avunculocal,EA014-1,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9707,Ei10,EA014,Neolocal,EA014-6,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +9708,Ei11,EA014,No alternate,EA014-11,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +9709,Ei12,EA014,No alternate,EA014-11,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +9710,Ei13,EA014,No alternate,EA014-11,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +9711,Ei14,EA014,No alternate,EA014-11,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +9712,Ei15,EA014,No alternate,EA014-11,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +9713,Ei16,EA014,No alternate,EA014-11,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +9714,Ei17,EA014,No alternate,EA014-11,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +9715,Ei18,EA014,Neolocal,EA014-6,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +9716,Ei19,EA014,Neolocal,EA014-6,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +9717,Ei2,EA014,Neolocal,EA014-6,,mills1922,,1920,EthnographicAtlas_1967_p90, +9718,Ei20,EA014,No alternate,EA014-11,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +9719,Ei3,EA014,Virilocal,EA014-10,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +9720,Ei4,EA014,No alternate,EA014-11,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +9721,Ei5,EA014,Neolocal,EA014-6,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +9722,Ei6,EA014,No alternate,EA014-11,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +9723,Ei7,EA014,No alternate,EA014-11,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +9724,Ei8,EA014,No alternate,EA014-11,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +9725,Ei9,EA014,No alternate,EA014-11,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +9726,Ej1,EA014,Neolocal,EA014-6,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +9727,Ej10,EA014,No alternate,EA014-11,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +9728,Ej11,EA014,No alternate,EA014-11,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +9729,Ej12,EA014,Uxorilocal,EA014-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +9730,Ej13,EA014,No alternate,EA014-11,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +9731,Ej14,EA014,No alternate,EA014-11,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9732,Ej15,EA014,No alternate,EA014-11,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +9733,Ej16,EA014,No alternate,EA014-11,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +9734,Ej2,EA014,No alternate,EA014-11,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +9735,Ej3,EA014,No alternate,EA014-11,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +9736,Ej4,EA014,No alternate,EA014-11,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +9737,Ej5,EA014,Ambilocal,EA014-2,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +9738,Ej6,EA014,Virilocal,EA014-10,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +9739,Ej7,EA014,No alternate,EA014-11,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +9740,Ej8,EA014,Neolocal,EA014-6,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +9741,Ej9,EA014,No alternate,EA014-11,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +9742,Ia1,EA014,Uxorilocal,EA014-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +9743,Ia10,EA014,No alternate,EA014-11,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +9744,Ia11,EA014,Virilocal,EA014-10,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +9745,Ia12,EA014,No alternate,EA014-11,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +9746,Ia13,EA014,No alternate,EA014-11,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +9747,Ia14,EA014,No alternate,EA014-11,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +9748,Ia15,EA014,No alternate,EA014-11,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +9749,Ia16,EA014,Neolocal,EA014-6,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +9750,Ia17,EA014,No alternate,EA014-11,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +9751,Ia18,EA014,Ambilocal,EA014-2,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +9752,Ia2,EA014,No alternate,EA014-11,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +9753,Ia3,EA014,No alternate,EA014-11,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +9754,Ia4,EA014,Neolocal,EA014-6,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +9755,Ia5,EA014,Virilocal,EA014-10,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +9756,Ia6,EA014,Uxorilocal,EA014-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9757,Ia7,EA014,Virilocal,EA014-10,,fox1954,,1950,EthnographicAtlas_1967_p90, +9758,Ia8,EA014,Uxorilocal,EA014-9,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +9759,Ia9,EA014,No alternate,EA014-11,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +9760,Ib1,EA014,No alternate,EA014-11,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9761,Ib2,EA014,No alternate,EA014-11,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9762,Ib3,EA014,Uxorilocal,EA014-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +9763,Ib4,EA014,Uxorilocal,EA014-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +9764,Ib5,EA014,Uxorilocal,EA014-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +9765,Ib6,EA014,Matrilocal,EA014-5,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +9766,Ib7,EA014,Uxorilocal,EA014-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +9767,Ib8,EA014,No alternate,EA014-11,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +9768,Ib9,EA014,?,EA014-NA,,,,,, +9769,Ic1,EA014,Neolocal,EA014-6,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9770,Ic10,EA014,Uxorilocal,EA014-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +9771,Ic11,EA014,Neolocal,EA014-6,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9772,Ic12,EA014,No alternate,EA014-11,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +9773,Ic13,EA014,No alternate,EA014-11,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +9774,Ic2,EA014,Uxorilocal,EA014-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +9775,Ic3,EA014,No alternate,EA014-11,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +9776,Ic4,EA014,No alternate,EA014-11,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +9777,Ic5,EA014,No alternate,EA014-11,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +9778,Ic6,EA014,No alternate,EA014-11,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +9779,Ic7,EA014,Uxorilocal,EA014-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +9780,Ic8,EA014,Uxorilocal,EA014-9,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +9781,Ic9,EA014,No alternate,EA014-11,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +9782,Id1,EA014,No alternate,EA014-11,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +9783,Id10,EA014,No alternate,EA014-11,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +9784,Id11,EA014,No alternate,EA014-11,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +9785,Id12,EA014,No alternate,EA014-11,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +9786,Id13,EA014,No alternate,EA014-11,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +9787,Id2,EA014,No alternate,EA014-11,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +9788,Id3,EA014,Uxorilocal,EA014-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +9789,Id4,EA014,No alternate,EA014-11,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +9790,Id5,EA014,No alternate,EA014-11,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +9791,Id6,EA014,No alternate,EA014-11,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +9792,Id7,EA014,Avunculocal,EA014-1,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +9793,Id8,EA014,?,EA014-NA,,,,,, +9794,Id9,EA014,No alternate,EA014-11,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +9795,Ie1,EA014,No alternate,EA014-11,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9796,Ie10,EA014,Uxorilocal,EA014-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +9797,Ie11,EA014,No alternate,EA014-11,,bowers1964,,1950,EthnographicAtlas_1967_p94, +9798,Ie12,EA014,No alternate,EA014-11,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9799,Ie13,EA014,No alternate,EA014-11,,landtman1927,,1920,EthnographicAtlas_1967_p94, +9800,Ie14,EA014,No alternate,EA014-11,,haddon1908,,1900,EthnographicAtlas_1967_p94, +9801,Ie15,EA014,No alternate,EA014-11,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9802,Ie16,EA014,Patrilocal,EA014-8,,williams194041,,1940,EthnographicAtlas_1967_p94, +9803,Ie17,EA014,Patrilocal,EA014-8,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +9804,Ie18,EA014,Uxorilocal,EA014-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +9805,Ie19,EA014,Patrilocal,EA014-8,But normally patrilocal,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +9806,Ie2,EA014,No alternate,EA014-11,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +9807,Ie20,EA014,No alternate,EA014-11,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +9808,Ie21,EA014,No alternate,EA014-11,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +9809,Ie22,EA014,No alternate,EA014-11,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +9810,Ie23,EA014,No alternate,EA014-11,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +9811,Ie24,EA014,No alternate,EA014-11,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +9812,Ie25,EA014,No alternate,EA014-11,,williamson1912,,1920,EthnographicAtlas_1967_p94, +9813,Ie26,EA014,No alternate,EA014-11,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +9814,Ie27,EA014,No alternate,EA014-11,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +9815,Ie28,EA014,No alternate,EA014-11,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +9816,Ie29,EA014,Neolocal,EA014-6,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9817,Ie3,EA014,No alternate,EA014-11,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9818,Ie30,EA014,Virilocal,EA014-10,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +9819,Ie31,EA014,No alternate,EA014-11,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +9820,Ie32,EA014,No alternate,EA014-11,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +9821,Ie33,EA014,No alternate,EA014-11,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +9822,Ie34,EA014,Avunculocal,EA014-1,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +9823,Ie35,EA014,No alternate,EA014-11,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +9824,Ie36,EA014,No alternate,EA014-11,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +9825,Ie37,EA014,No alternate,EA014-11,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +9826,Ie38,EA014,Neolocal,EA014-6,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +9827,Ie39,EA014,No alternate,EA014-11,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +9828,Ie4,EA014,No alternate,EA014-11,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9829,Ie5,EA014,No alternate,EA014-11,,williams1936,,1930,EthnographicAtlas_1967_p94, +9830,Ie6,EA014,No alternate,EA014-11,,held1947,,1930,EthnographicAtlas_1967_p94, +9831,Ie7,EA014,Uxorilocal,EA014-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +9832,Ie8,EA014,No alternate,EA014-11,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +9833,Ie9,EA014,No alternate,EA014-11,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +9834,If1,EA014,Virilocal,EA014-10,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9835,If10,EA014,No alternate,EA014-11,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +9836,If11,EA014,Neolocal,EA014-6,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +9837,If12,EA014,No alternate,EA014-11,,mason1954,,1940,EthnographicAtlas_1967_p98, +9838,If13,EA014,No alternate,EA014-11,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +9839,If14,EA014,Uxorilocal,EA014-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +9840,If15,EA014,No alternate,EA014-11,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +9841,If16,EA014,Virilocal,EA014-10,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +9842,If17,EA014,No alternate,EA014-11,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +9843,If2,EA014,Virilocal,EA014-10,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +9844,If3,EA014,No alternate,EA014-11,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +9845,If4,EA014,No alternate,EA014-11,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +9846,If5,EA014,Avunculocal,EA014-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +9847,If6,EA014,Avunculocal,EA014-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +9848,If7,EA014,Uxorilocal,EA014-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +9849,If8,EA014,No alternate,EA014-11,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +9850,If9,EA014,Uxorilocal,EA014-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +9851,Ig1,EA014,Uxorilocal,EA014-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +9852,Ig10,EA014,No alternate,EA014-11,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +9853,Ig11,EA014,Uxorilocal,EA014-9,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +9854,Ig12,EA014,Uxorilocal,EA014-9,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +9855,Ig13,EA014,No alternate,EA014-11,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +9856,Ig14,EA014,No alternate,EA014-11,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +9857,Ig15,EA014,No alternate,EA014-11,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +9858,Ig16,EA014,Avunculocal,EA014-1,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +9859,Ig17,EA014,No alternate,EA014-11,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +9860,Ig18,EA014,Uxorilocal,EA014-9,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +9861,Ig19,EA014,Avunculocal,EA014-1,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +9862,Ig2,EA014,Virilocal,EA014-10,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +9863,Ig20,EA014,Virilocal,EA014-10,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +9864,Ig21,EA014,No alternate,EA014-11,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +9865,Ig3,EA014,No alternate,EA014-11,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +9866,Ig4,EA014,No alternate,EA014-11,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +9867,Ig5,EA014,No alternate,EA014-11,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,,1920,EthnographicAtlas_1967_p98, +9868,Ig6,EA014,No alternate,EA014-11,,ivens1927,,1900,EthnographicAtlas_1967_p98, +9869,Ig7,EA014,Neolocal,EA014-6,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +9870,Ig8,EA014,No alternate,EA014-11,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +9871,Ig9,EA014,Neolocal,EA014-6,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +9872,Ih1,EA014,No alternate,EA014-11,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +9873,Ih10,EA014,No alternate,EA014-11,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9874,Ih11,EA014,?,EA014-NA,,,,,, +9875,Ih12,EA014,No alternate,EA014-11,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +9876,Ih13,EA014,No alternate,EA014-11,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +9877,Ih14,EA014,No alternate,EA014-11,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +9878,Ih2,EA014,No alternate,EA014-11,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9879,Ih3,EA014,No alternate,EA014-11,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +9880,Ih4,EA014,Uxorilocal,EA014-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9881,Ih5,EA014,No alternate,EA014-11,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +9882,Ih6,EA014,Avunculocal,EA014-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +9883,Ih7,EA014,No alternate,EA014-11,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +9884,Ih8,EA014,Uxorilocal,EA014-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +9885,Ih9,EA014,Neolocal,EA014-6,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9886,Ii1,EA014,No alternate,EA014-11,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +9887,Ii10,EA014,?,EA014-NA,,,,,, +9888,Ii12,EA014,Avunculocal,EA014-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9889,Ii13,EA014,Uxorilocal,EA014-9,,burrows1937,,1830,EthnographicAtlas_1967_p98, +9890,Ii14,EA014,Uxorilocal,EA014-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +9891,Ii2,EA014,No alternate,EA014-11,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +9892,Ii3,EA014,No alternate,EA014-11,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +9893,Ii4,EA014,Uxorilocal,EA014-9,Residence rule inferred from data on inheritance,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +9894,Ii5,EA014,Virilocal,EA014-10,Virilocal for part of the year in families possessing coconut groves in the outer islands,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to codes for post-marital residence (Col 16), not Col 19 as stated in Gray (1999)" +9895,Ii6,EA014,Virilocal,EA014-10,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +9896,Ii7,EA014,No alternate,EA014-11,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +9897,Ii8,EA014,Uxorilocal,EA014-9,,burrows1936,,1840,EthnographicAtlas_1967_p98, +9898,Ii9,EA014,Uxorilocal,EA014-9,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +9899,Ij1,EA014,Uxorilocal,EA014-9,,buck1934,,1820,EthnographicAtlas_1967_p98, +9900,Ij10,EA014,Uxorilocal,EA014-9,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +9901,Ij2,EA014,No alternate,EA014-11,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +9902,Ij3,EA014,Neolocal,EA014-6,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +9903,Ij4,EA014,Uxorilocal,EA014-9,,buck1932a,,1850,EthnographicAtlas_1967_p102, +9904,Ij5,EA014,Neolocal,EA014-6,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +9905,Ij6,EA014,No alternate,EA014-11,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +9906,Ij7,EA014,Uxorilocal,EA014-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +9907,Ij8,EA014,No alternate,EA014-11,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +9908,Ij9,EA014,Uxorilocal,EA014-9,,metraux1940,,1860,EthnographicAtlas_1967_p102, +9909,Na1,EA014,Virilocal,EA014-10,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +9910,Na10,EA014,No alternate,EA014-11,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +9911,Na11,EA014,No alternate,EA014-11,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +9912,Na12,EA014,No alternate,EA014-11,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +9913,Na13,EA014,No alternate,EA014-11,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +9914,Na14,EA014,Neolocal,EA014-6,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +9915,Na15,EA014,No alternate,EA014-11,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +9916,Na16,EA014,Uxorilocal,EA014-9,,osgood1931,,1860,EthnographicAtlas_1967_p102, +9917,Na17,EA014,Uxorilocal,EA014-9,"Entry follows Helm; Honigmann reports prevailing pattern as Uxorilocal (EA012 would be code ""9"") with Virilocal as alternate (this variable would be code ""10"")",helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9918,Na19,EA014,Virilocal,EA014-10,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +9919,Na2,EA014,No alternate,EA014-11,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +9920,Na20,EA014,Uxorilocal,EA014-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +9921,Na21,EA014,No alternate,EA014-11,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +9922,Na22,EA014,Uxorilocal,EA014-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +9923,Na23,EA014,No alternate,EA014-11,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +9924,Na24,EA014,Uxorilocal,EA014-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +9925,Na25,EA014,Uxorilocal,EA014-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +9926,Na26,EA014,Neolocal,EA014-6,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +9927,Na27,EA014,Ambilocal,EA014-2,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +9928,Na28,EA014,No alternate,EA014-11,,jenness1937,,1880,EthnographicAtlas_1967_p102, +9929,Na29,EA014,No alternate,EA014-11,,goddard1916,,1850,EthnographicAtlas_1967_p102, +9930,Na3,EA014,Virilocal,EA014-10,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +9931,Na30,EA014,No alternate,EA014-11,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +9932,Na31,EA014,Virilocal,EA014-10,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +9933,Na32,EA014,No alternate,EA014-11,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +9934,Na33,EA014,Uxorilocal,EA014-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +9935,Na34,EA014,Uxorilocal,EA014-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +9936,Na35,EA014,Uxorilocal,EA014-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +9937,Na36,EA014,No alternate,EA014-11,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +9938,Na37,EA014,No alternate,EA014-11,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +9939,Na38,EA014,No alternate,EA014-11,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +9940,Na39,EA014,Uxorilocal,EA014-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +9941,Na4,EA014,No alternate,EA014-11,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +9942,Na40,EA014,?,EA014-NA,,,,,, +9943,Na41,EA014,No alternate,EA014-11,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +9944,Na42,EA014,No alternate,EA014-11,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +9945,Na43,EA014,Uxorilocal,EA014-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +9946,Na44,EA014,Uxorilocal,EA014-9,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +9947,Na45,EA014,Uxorilocal,EA014-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +9948,Na5,EA014,No alternate,EA014-11,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +9949,Na6,EA014,Neolocal,EA014-6,,lantis1946,,1930,EthnographicAtlas_1967_p102, +9950,Na7,EA014,Uxorilocal,EA014-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +9951,Na8,EA014,Virilocal,EA014-10,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +9952,Na9,EA014,No alternate,EA014-11,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +9953,Nb1,EA014,No alternate,EA014-11,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +9954,Nb10,EA014,Uxorilocal,EA014-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +9955,Nb11,EA014,Uxorilocal,EA014-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +9956,Nb12,EA014,Uxorilocal,EA014-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +9957,Nb13,EA014,No alternate,EA014-11,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +9958,Nb14,EA014,Uxorilocal,EA014-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +9959,Nb15,EA014,Uxorilocal,EA014-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +9960,Nb16,EA014,No alternate,EA014-11,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +9961,Nb17,EA014,Uxorilocal,EA014-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +9962,Nb18,EA014,No alternate,EA014-11,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +9963,Nb19,EA014,No alternate,EA014-11,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +9964,Nb2,EA014,No alternate,EA014-11,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +9965,Nb20,EA014,Uxorilocal,EA014-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +9966,Nb21,EA014,Uxorilocal,EA014-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +9967,Nb22,EA014,No alternate,EA014-11,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +9968,Nb23,EA014,Uxorilocal,EA014-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +9969,Nb24,EA014,No alternate,EA014-11,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +9970,Nb25,EA014,Uxorilocal,EA014-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +9971,Nb26,EA014,Uxorilocal,EA014-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +9972,Nb27,EA014,Uxorilocal,EA014-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +9973,Nb28,EA014,Uxorilocal,EA014-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +9974,Nb29,EA014,Uxorilocal,EA014-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +9975,Nb3,EA014,Uxorilocal,EA014-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +9976,Nb30,EA014,No alternate,EA014-11,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +9977,Nb31,EA014,Neolocal,EA014-6,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +9978,Nb32,EA014,Uxorilocal,EA014-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +9979,Nb33,EA014,No alternate,EA014-11,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +9980,Nb34,EA014,Uxorilocal,EA014-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +9981,Nb35,EA014,Uxorilocal,EA014-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +9982,Nb36,EA014,Uxorilocal,EA014-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +9983,Nb37,EA014,No alternate,EA014-11,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +9984,Nb38,EA014,Uxorilocal,EA014-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +9985,Nb39,EA014,No alternate,EA014-11,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +9986,Nb4,EA014,Uxorilocal,EA014-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +9987,Nb5,EA014,No alternate,EA014-11,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +9988,Nb6,EA014,Uxorilocal,EA014-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +9989,Nb7,EA014,No alternate,EA014-11,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +9990,Nb8,EA014,Virilocal,EA014-10,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +9991,Nb9,EA014,Uxorilocal,EA014-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +9992,Nc1,EA014,No alternate,EA014-11,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +9993,Nc10,EA014,Uxorilocal,EA014-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +9994,Nc11,EA014,No alternate,EA014-11,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +9995,Nc12,EA014,Uxorilocal,EA014-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +9996,Nc13,EA014,Uxorilocal,EA014-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +9997,Nc14,EA014,Uxorilocal,EA014-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +9998,Nc15,EA014,No alternate,EA014-11,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +9999,Nc16,EA014,No alternate,EA014-11,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +10000,Nc17,EA014,No alternate,EA014-11,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +10001,Nc18,EA014,No alternate,EA014-11,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +10002,Nc19,EA014,No alternate,EA014-11,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +10003,Nc2,EA014,Uxorilocal,EA014-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +10004,Nc20,EA014,No alternate,EA014-11,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +10005,Nc21,EA014,?,EA014-NA,,,,,, +10006,Nc22,EA014,No alternate,EA014-11,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +10007,Nc23,EA014,Uxorilocal,EA014-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +10008,Nc24,EA014,No alternate,EA014-11,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +10009,Nc25,EA014,No alternate,EA014-11,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +10010,Nc26,EA014,No alternate,EA014-11,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +10011,Nc27,EA014,No alternate,EA014-11,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +10012,Nc28,EA014,No alternate,EA014-11,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +10013,Nc29,EA014,No alternate,EA014-11,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +10014,Nc3,EA014,No alternate,EA014-11,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +10015,Nc30,EA014,No alternate,EA014-11,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +10016,Nc31,EA014,Uxorilocal,EA014-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +10017,Nc32,EA014,Uxorilocal,EA014-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +10018,Nc33,EA014,No alternate,EA014-11,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +10019,Nc34,EA014,No alternate,EA014-11,,meigs1939,,1880,EthnographicAtlas_1967_p106, +10020,Nc4,EA014,No alternate,EA014-11,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +10021,Nc5,EA014,No alternate,EA014-11,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +10022,Nc6,EA014,Uxorilocal,EA014-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +10023,Nc7,EA014,Neolocal,EA014-6,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +10024,Nc8,EA014,Uxorilocal,EA014-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +10025,Nc9,EA014,Uxorilocal,EA014-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +10026,Nd1,EA014,Uxorilocal,EA014-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +10027,Nd10,EA014,Uxorilocal,EA014-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +10028,Nd11,EA014,No alternate,EA014-11,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +10029,Nd12,EA014,Uxorilocal,EA014-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +10030,Nd13,EA014,Uxorilocal,EA014-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +10031,Nd14,EA014,No alternate,EA014-11,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +10032,Nd15,EA014,Neolocal,EA014-6,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +10033,Nd16,EA014,No alternate,EA014-11,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +10034,Nd17,EA014,Virilocal,EA014-10,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +10035,Nd18,EA014,Uxorilocal,EA014-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +10036,Nd19,EA014,No alternate,EA014-11,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +10037,Nd2,EA014,Virilocal,EA014-10,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +10038,Nd20,EA014,Uxorilocal,EA014-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +10039,Nd21,EA014,No alternate,EA014-11,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +10040,Nd22,EA014,Virilocal,EA014-10,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +10041,Nd23,EA014,No alternate,EA014-11,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +10042,Nd24,EA014,No alternate,EA014-11,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +10043,Nd25,EA014,Virilocal,EA014-10,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +10044,Nd26,EA014,No alternate,EA014-11,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +10045,Nd27,EA014,No alternate,EA014-11,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +10046,Nd28,EA014,No alternate,EA014-11,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +10047,Nd29,EA014,No alternate,EA014-11,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +10048,Nd3,EA014,No alternate,EA014-11,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +10049,Nd30,EA014,Uxorilocal,EA014-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +10050,Nd31,EA014,Neolocal,EA014-6,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +10051,Nd32,EA014,Neolocal,EA014-6,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +10052,Nd33,EA014,No alternate,EA014-11,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +10053,Nd34,EA014,No alternate,EA014-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +10054,Nd35,EA014,Uxorilocal,EA014-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +10055,Nd36,EA014,No alternate,EA014-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +10056,Nd37,EA014,No alternate,EA014-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +10057,Nd38,EA014,No alternate,EA014-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +10058,Nd39,EA014,No alternate,EA014-11,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +10059,Nd4,EA014,No alternate,EA014-11,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +10060,Nd40,EA014,No alternate,EA014-11,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +10061,Nd41,EA014,Uxorilocal,EA014-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +10062,Nd42,EA014,No alternate,EA014-11,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +10063,Nd43,EA014,Virilocal,EA014-10,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +10064,Nd44,EA014,Virilocal,EA014-10,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +10065,Nd45,EA014,No alternate,EA014-11,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +10066,Nd46,EA014,No alternate,EA014-11,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +10067,Nd47,EA014,Uxorilocal,EA014-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +10068,Nd48,EA014,Virilocal,EA014-10,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +10069,Nd49,EA014,No alternate,EA014-11,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +10070,Nd5,EA014,No alternate,EA014-11,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +10071,Nd50,EA014,?,EA014-NA,,,,,, +10072,Nd51,EA014,No alternate,EA014-11,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +10073,Nd52,EA014,No alternate,EA014-11,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +10074,Nd53,EA014,No alternate,EA014-11,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +10075,Nd54,EA014,No alternate,EA014-11,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10076,Nd55,EA014,No alternate,EA014-11,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +10077,Nd56,EA014,Virilocal,EA014-10,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +10078,Nd57,EA014,Virilocal,EA014-10,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +10079,Nd58,EA014,Virilocal,EA014-10,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +10080,Nd59,EA014,No alternate,EA014-11,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +10081,Nd6,EA014,Neolocal,EA014-6,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +10082,Nd60,EA014,No alternate,EA014-11,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +10083,Nd61,EA014,No alternate,EA014-11,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +10084,Nd62,EA014,No alternate,EA014-11,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +10085,Nd63,EA014,Virilocal,EA014-10,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +10086,Nd64,EA014,No alternate,EA014-11,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +10087,Nd65,EA014,Uxorilocal,EA014-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +10088,Nd66,EA014,Neolocal,EA014-6,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +10089,Nd67,EA014,No alternate,EA014-11,,gifford1936,,1870,EthnographicAtlas_1967_p110, +10090,Nd7,EA014,Uxorilocal,EA014-9,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +10091,Nd8,EA014,Uxorilocal,EA014-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +10092,Nd9,EA014,Uxorilocal,EA014-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +10093,Ne1,EA014,Uxorilocal,EA014-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +10094,Ne10,EA014,No alternate,EA014-11,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +10095,Ne11,EA014,Uxorilocal,EA014-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +10096,Ne12,EA014,Uxorilocal,EA014-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +10097,Ne13,EA014,Neolocal,EA014-6,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +10098,Ne14,EA014,?,EA014-NA,,,,,, +10099,Ne15,EA014,No alternate,EA014-11,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +10100,Ne16,EA014,No alternate,EA014-11,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +10101,Ne17,EA014,Uxorilocal,EA014-9,"Entry follows Richardson; Mooney reports prevailing pattern as Uxorilocal (EA012 would be code ""9"") with Virilocal as alternate (this variable would be code ""10"")",lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +10102,Ne18,EA014,Neolocal,EA014-6,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +10103,Ne19,EA014,Neolocal,EA014-6,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +10104,Ne2,EA014,Virilocal,EA014-10,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +10105,Ne20,EA014,Uxorilocal,EA014-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +10106,Ne21,EA014,?,EA014-NA,,,,,, +10107,Ne3,EA014,No alternate,EA014-11,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +10108,Ne4,EA014,No alternate,EA014-11,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +10109,Ne5,EA014,Virilocal,EA014-10,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +10110,Ne6,EA014,Virilocal,EA014-10,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +10111,Ne7,EA014,Neolocal,EA014-6,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +10112,Ne8,EA014,Uxorilocal,EA014-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +10113,Ne9,EA014,No alternate,EA014-11,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +10114,Nf10,EA014,No alternate,EA014-11,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +10115,Nf11,EA014,Uxorilocal,EA014-9,,whitman1937,,1870,EthnographicAtlas_1967_p114, +10116,Nf12,EA014,Uxorilocal,EA014-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +10117,Nf13,EA014,No alternate,EA014-11,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10118,Nf14,EA014,No alternate,EA014-11,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +10119,Nf15,EA014,Neolocal,EA014-6,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +10120,Nf2,EA014,Neolocal,EA014-6,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +10121,Nf3,EA014,No alternate,EA014-11,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +10122,Nf4,EA014,Neolocal,EA014-6,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +10123,Nf5,EA014,Virilocal,EA014-10,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +10124,Nf6,EA014,No alternate,EA014-11,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +10125,Nf7,EA014,No alternate,EA014-11,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10126,Nf8,EA014,Virilocal,EA014-10,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +10127,Nf9,EA014,No alternate,EA014-11,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +10128,Ng1,EA014,No alternate,EA014-11,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +10129,Ng10,EA014,No alternate,EA014-11,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +10130,Ng11,EA014,Uxorilocal,EA014-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +10131,Ng12,EA014,Neolocal,EA014-6,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +10132,Ng13,EA014,No alternate,EA014-11,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +10133,Ng14,EA014,No alternate,EA014-11,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +10134,Ng15,EA014,?,EA014-NA,,,,,, +10135,Ng2,EA014,No alternate,EA014-11,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +10136,Ng3,EA014,No alternate,EA014-11,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +10137,Ng4,EA014,No alternate,EA014-11,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +10138,Ng5,EA014,No alternate,EA014-11,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +10139,Ng6,EA014,Virilocal,EA014-10,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +10140,Ng7,EA014,No alternate,EA014-11,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +10141,Ng8,EA014,No alternate,EA014-11,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +10142,Ng9,EA014,No alternate,EA014-11,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +10143,Nh1,EA014,Virilocal,EA014-10,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +10144,Nh10,EA014,No alternate,EA014-11,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +10145,Nh11,EA014,No alternate,EA014-11,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +10146,Nh12,EA014,Neolocal,EA014-6,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +10147,Nh13,EA014,Neolocal,EA014-6,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +10148,Nh14,EA014,Virilocal,EA014-10,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +10149,Nh15,EA014,No alternate,EA014-11,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +10150,Nh16,EA014,No alternate,EA014-11,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10151,Nh17,EA014,Virilocal,EA014-10,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +10152,Nh18,EA014,No alternate,EA014-11,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10153,Nh19,EA014,No alternate,EA014-11,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +10154,Nh2,EA014,No alternate,EA014-11,,dozier1954,,1950,EthnographicAtlas_1967_p114, +10155,Nh20,EA014,No alternate,EA014-11,,gifford1931,,1860,EthnographicAtlas_1967_p114, +10156,Nh21,EA014,No alternate,EA014-11,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10157,Nh22,EA014,Uxorilocal,EA014-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +10158,Nh23,EA014,No alternate,EA014-11,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +10159,Nh24,EA014,No alternate,EA014-11,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +10160,Nh25,EA014,No alternate,EA014-11,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +10161,Nh26,EA014,No alternate,EA014-11,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +10162,Nh27,EA014,Neolocal,EA014-6,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +10163,Nh3,EA014,Virilocal,EA014-10,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +10164,Nh4,EA014,No alternate,EA014-11,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +10165,Nh5,EA014,No alternate,EA014-11,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +10166,Nh6,EA014,No alternate,EA014-11,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +10167,Nh7,EA014,Neolocal,EA014-6,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +10168,Nh8,EA014,No alternate,EA014-11,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +10169,Nh9,EA014,No alternate,EA014-11,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +10170,Ni1,EA014,Ambilocal,EA014-2,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +10171,Ni2,EA014,No alternate,EA014-11,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +10172,Ni3,EA014,No alternate,EA014-11,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +10173,Ni4,EA014,No alternate,EA014-11,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +10174,Ni5,EA014,Virilocal,EA014-10,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +10175,Ni6,EA014,No alternate,EA014-11,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +10176,Ni7,EA014,No alternate,EA014-11,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +10177,Ni8,EA014,No alternate,EA014-11,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +10178,Ni9,EA014,?,EA014-NA,,,,,, +10179,Nj1,EA014,No alternate,EA014-11,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10180,Nj10,EA014,Neolocal,EA014-6,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10181,Nj11,EA014,No alternate,EA014-11,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +10182,Nj12,EA014,?,EA014-NA,,,,,, +10183,Nj13,EA014,No alternate,EA014-11,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +10184,Nj14,EA014,No alternate,EA014-11,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +10185,Nj2,EA014,No alternate,EA014-11,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +10186,Nj3,EA014,No alternate,EA014-11,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +10187,Nj4,EA014,No alternate,EA014-11,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +10188,Nj5,EA014,No alternate,EA014-11,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +10189,Nj6,EA014,Uxorilocal,EA014-9,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +10190,Nj7,EA014,No alternate,EA014-11,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10191,Nj8,EA014,No alternate,EA014-11,,foster1948,,1500,EthnographicAtlas_1967_p118, +10192,Nj9,EA014,No alternate,EA014-11,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +10193,Sa1,EA014,No alternate,EA014-11,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +10194,Sa10,EA014,No alternate,EA014-11,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +10195,Sa11,EA014,No alternate,EA014-11,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +10196,Sa12,EA014,No alternate,EA014-11,,stone1948,,1948,EthnographicAtlas_1967_p118, +10197,Sa13,EA014,No alternate,EA014-11,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +10198,Sa14,EA014,No alternate,EA014-11,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +10199,Sa15,EA014,No alternate,EA014-11,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +10200,Sa16,EA014,Patrilocal,EA014-8,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +10201,Sa17,EA014,Neolocal,EA014-6,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +10202,Sa2,EA014,No alternate,EA014-11,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10203,Sa3,EA014,No alternate,EA014-11,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +10204,Sa4,EA014,Virilocal,EA014-10,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +10205,Sa5,EA014,Virilocal,EA014-10,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +10206,Sa6,EA014,Neolocal,EA014-6,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +10207,Sa7,EA014,Separate,EA014-7,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +10208,Sa8,EA014,No alternate,EA014-11,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +10209,Sa9,EA014,Neolocal,EA014-6,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +10210,Sb1,EA014,No alternate,EA014-11,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +10211,Sb2,EA014,No alternate,EA014-11,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +10212,Sb3,EA014,Virilocal,EA014-10,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +10213,Sb4,EA014,Virilocal,EA014-10,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +10214,Sb5,EA014,Neolocal,EA014-6,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +10215,Sb6,EA014,No alternate,EA014-11,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +10216,Sb7,EA014,Neolocal,EA014-6,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +10217,Sb8,EA014,No alternate,EA014-11,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +10218,Sb9,EA014,No alternate,EA014-11,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +10219,Sc1,EA014,No alternate,EA014-11,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +10220,Sc10,EA014,No alternate,EA014-11,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +10221,Sc11,EA014,Neolocal,EA014-6,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +10222,Sc12,EA014,Neolocal,EA014-6,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +10223,Sc13,EA014,Virilocal,EA014-10,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +10224,Sc14,EA014,No alternate,EA014-11,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +10225,Sc15,EA014,No alternate,EA014-11,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +10226,Sc16,EA014,No alternate,EA014-11,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +10227,Sc17,EA014,No alternate,EA014-11,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +10228,Sc18,EA014,Avunculocal,EA014-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +10229,Sc2,EA014,Avunculocal,EA014-1,,leedsnd,,1950,EthnographicAtlas_1967_p118, +10230,Sc3,EA014,Neolocal,EA014-6,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +10231,Sc4,EA014,No alternate,EA014-11,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +10232,Sc5,EA014,No alternate,EA014-11,,farabee1918,,1900,EthnographicAtlas_1967_p118, +10233,Sc6,EA014,Uxorilocal,EA014-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10234,Sc7,EA014,Virilocal,EA014-10,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +10235,Sc8,EA014,No alternate,EA014-11,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +10236,Sc9,EA014,No alternate,EA014-11,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +10237,Sd1,EA014,Virilocal,EA014-10,But men sleep apart from their wives in a men's house,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10238,Sd2,EA014,No alternate,EA014-11,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +10239,Sd3,EA014,Uxorilocal,EA014-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +10240,Sd4,EA014,No alternate,EA014-11,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +10241,Sd5,EA014,Neolocal,EA014-6,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +10242,Sd6,EA014,No alternate,EA014-11,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +10243,Sd7,EA014,No alternate,EA014-11,,fock1963,,1950,EthnographicAtlas_1967_p118, +10244,Sd8,EA014,No alternate,EA014-11,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +10245,Sd9,EA014,Neolocal,EA014-6,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10246,Se1,EA014,No alternate,EA014-11,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +10247,Se10,EA014,No alternate,EA014-11,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +10248,Se11,EA014,No alternate,EA014-11,,prost1965,,1960,EthnographicAtlas_1967_p122, +10249,Se12,EA014,No alternate,EA014-11,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +10250,Se2,EA014,Uxorilocal,EA014-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +10251,Se3,EA014,No alternate,EA014-11,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +10252,Se4,EA014,No alternate,EA014-11,,fejos1943,,1940,EthnographicAtlas_1967_p118, +10253,Se5,EA014,Uxorilocal,EA014-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +10254,Se6,EA014,No alternate,EA014-11,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +10255,Se7,EA014,Ambilocal,EA014-2,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10256,Se8,EA014,Neolocal,EA014-6,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +10257,Se9,EA014,No alternate,EA014-11,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +10258,Sf1,EA014,Neolocal,EA014-6,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +10259,Sf2,EA014,No alternate,EA014-11,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +10260,Sf3,EA014,Uxorilocal,EA014-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +10261,Sf4,EA014,Uxorilocal,EA014-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +10262,Sf5,EA014,No alternate,EA014-11,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +10263,Sf6,EA014,No alternate,EA014-11,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +10264,Sf7,EA014,Uxorilocal,EA014-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +10265,Sf8,EA014,No alternate,EA014-11,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +10266,Sf9,EA014,No alternate,EA014-11,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +10267,Sg1,EA014,No alternate,EA014-11,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +10268,Sg2,EA014,Neolocal,EA014-6,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10269,Sg3,EA014,Neolocal,EA014-6,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people""",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +10270,Sg4,EA014,No alternate,EA014-11,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +10271,Sg5,EA014,Neolocal,EA014-6,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10272,Sh1,EA014,Virilocal,EA014-10,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +10273,Sh2,EA014,Neolocal,EA014-6,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +10274,Sh3,EA014,No alternate,EA014-11,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +10275,Sh4,EA014,No alternate,EA014-11,,oberg1949,,1940,EthnographicAtlas_1967_p122, +10276,Sh5,EA014,No alternate,EA014-11,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +10277,Sh6,EA014,Virilocal,EA014-10,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +10278,Sh7,EA014,Neolocal,EA014-6,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +10279,Sh8,EA014,No alternate,EA014-11,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +10280,Sh9,EA014,Virilocal,EA014-10,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +10281,Si1,EA014,No alternate,EA014-11,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10282,Si10,EA014,No alternate,EA014-11,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +10283,Si2,EA014,No alternate,EA014-11,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +10284,Si3,EA014,Neolocal,EA014-6,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10285,Si4,EA014,Uxorilocal,EA014-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +10286,Si5,EA014,No alternate,EA014-11,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +10287,Si6,EA014,No alternate,EA014-11,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +10288,Si7,EA014,Virilocal,EA014-10,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +10289,Si8,EA014,No alternate,EA014-11,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +10290,Si9,EA014,?,EA014-NA,,,,,, +10291,Sj1,EA014,Neolocal,EA014-6,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +10292,Sj10,EA014,Neolocal,EA014-6,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10293,Sj11,EA014,No alternate,EA014-11,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +10294,Sj2,EA014,No alternate,EA014-11,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +10295,Sj3,EA014,No alternate,EA014-11,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +10296,Sj4,EA014,No alternate,EA014-11,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +10297,Sj5,EA014,?,EA014-NA,,,,,, +10298,Sj6,EA014,No alternate,EA014-11,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10299,Sj7,EA014,No alternate,EA014-11,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +10300,Sj8,EA014,Virilocal,EA014-10,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +10301,Sj9,EA014,No alternate,EA014-11,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +10302,ch12,EA014,Patrilocal,EA014-8,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +10303,ch13,EA014,No alternate,EA014-11,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +10304,ch14,EA014,Patrilocal,EA014-8,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +10305,ch15,EA014,No alternate,EA014-11,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +10306,ch16,EA014,Uxorilocal,EA014-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +10307,ch17,EA014,No alternate,EA014-11,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +10308,ch18,EA014,No alternate,EA014-11,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +10309,ch19,EA014,No alternate,EA014-11,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +10310,ch20,EA014,No alternate,EA014-11,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +10311,ch21,EA014,No alternate,EA014-11,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +10312,ch22,EA014,No alternate,EA014-11,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +10313,ch23,EA014,Uxorilocal,EA014-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +10314,ch24,EA014,No alternate,EA014-11,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +10315,ch25,EA014,No alternate,EA014-11,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +10316,ch26,EA014,Uxorilocal,EA014-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +10317,ch27,EA014,No alternate,EA014-11,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +10318,ch28,EA014,No alternate,EA014-11,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +10319,ec12,EA014,Matrilocal,EA014-5,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +10320,ec13,EA014,Avuncu-uxorilocal,EA014-3,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +10321,ec14,EA014,Avuncu-uxorilocal,EA014-3,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +10322,ec15,EA014,No alternate,EA014-11,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +10323,ec16,EA014,No alternate,EA014-11,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +10324,ec17,EA014,No alternate,EA014-11,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +10325,ec18,EA014,Avuncu-uxorilocal,EA014-3,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +10326,ec19,EA014,Matrilocal,EA014-5,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +10327,ec20,EA014,Avuncu-uxorilocal,EA014-3,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +10328,ec21,EA014,Avuncu-uxorilocal,EA014-3,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +10329,Aa1,EA015,Exogamous,EA015-4,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +10330,Aa2,EA015,Clans,EA015-6,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +10331,Aa3,EA015,Clans,EA015-6,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +10332,Aa4,EA015,Exogamous,EA015-4,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +10333,Aa5,EA015,Exogamous,EA015-4,Entry follows Schebesta; Czekanowski denies clans,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +10334,Aa6,EA015,Clans,EA015-6,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +10335,Aa7,EA015,Exogamous,EA015-4,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +10336,Aa8,EA015,?,EA015-NA,,,,,, +10337,Aa9,EA015,Agamous,EA015-3,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +10338,Ab1,EA015,Exogamous,EA015-4,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +10339,Ab10,EA015,Exogamous,EA015-4,,hunter1936,,1936,EthnographicAtlas_1967_p62, +10340,Ab11,EA015,Agamous,EA015-3,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +10341,Ab12,EA015,Clans,EA015-6,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +10342,Ab13,EA015,"Segmented, no exogamy",EA015-2,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +10343,Ab14,EA015,Clans,EA015-6,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +10344,Ab15,EA015,Clans,EA015-6,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +10345,Ab16,EA015,Clans,EA015-6,,earthy1933,,1930,EthnographicAtlas_1967_p62, +10346,Ab17,EA015,Clans,EA015-6,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +10347,Ab18,EA015,Clans,EA015-6,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +10348,Ab19,EA015,?,EA015-NA,,,,,, +10349,Ab2,EA015,Clans,EA015-6,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +10350,Ab20,EA015,?,EA015-NA,,,,,, +10351,Ab21a,EA015,Clans,EA015-6,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +10352,Ab21b,EA015,?,EA015-NA,,,,,, +10353,Ab22,EA015,Clans,EA015-6,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +10354,Ab3,EA015,Agamous,EA015-3,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +10355,Ab4,EA015,Clans,EA015-6,,junod1927,,1920,EthnographicAtlas_1967_p62, +10356,Ab5,EA015,Clans,EA015-6,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +10357,Ab6,EA015,"Segmented, no exogamy",EA015-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +10358,Ab7,EA015,Clans,EA015-6,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +10359,Ab8,EA015,Agamous,EA015-3,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +10360,Ab9,EA015,Agamous,EA015-3,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +10361,Ac1,EA015,Agamous,EA015-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +10362,Ac10,EA015,"Segmented, no exogamy",EA015-2,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +10363,Ac11,EA015,Clans,EA015-6,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +10364,Ac12,EA015,Clans,EA015-6,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +10365,Ac13,EA015,"Segmented, no exogamy",EA015-2,One lineage is predominant in each community,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +10366,Ac14,EA015,Clans,EA015-6,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +10367,Ac15,EA015,Clans,EA015-6,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +10368,Ac16,EA015,Clans,EA015-6,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +10369,Ac17,EA015,Agamous,EA015-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +10370,Ac18,EA015,Clans,EA015-6,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +10371,Ac19,EA015,Agamous,EA015-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +10372,Ac2,EA015,Clans,EA015-6,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +10373,Ac20,EA015,Clans,EA015-6,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +10374,Ac21,EA015,Clans,EA015-6,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +10375,Ac22,EA015,Exogamous,EA015-4,,mertens1935,,1930,EthnographicAtlas_1967_p62, +10376,Ac23,EA015,Agamous,EA015-3,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +10377,Ac24,EA015,Clans,EA015-6,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +10378,Ac25,EA015,Exogamous,EA015-4,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +10379,Ac26,EA015,Agamous,EA015-3,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +10380,Ac27,EA015,Clans,EA015-6,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +10381,Ac28,EA015,Exogamous,EA015-4,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +10382,Ac29,EA015,Exogamous,EA015-4,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +10383,Ac3,EA015,Agamous,EA015-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +10384,Ac30,EA015,Agamous,EA015-3,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +10385,Ac31,EA015,Agamous,EA015-3,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +10386,Ac32,EA015,Exogamous,EA015-4,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +10387,Ac33,EA015,Clans,EA015-6,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +10388,Ac34,EA015,Agamous,EA015-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +10389,Ac35,EA015,?,EA015-NA,,,,,, +10390,Ac36,EA015,Exogamous,EA015-4,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +10391,Ac37,EA015,Agamous,EA015-3,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +10392,Ac38,EA015,Agamous,EA015-3,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +10393,Ac39,EA015,Exogamous,EA015-4,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +10394,Ac4,EA015,"Segmented, no exogamy",EA015-2,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +10395,Ac40,EA015,Exogamous,EA015-4,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +10396,Ac41,EA015,"Segmented, no exogamy",EA015-2,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +10397,Ac42,EA015,"Segmented, no exogamy",EA015-2,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +10398,Ac43,EA015,?,EA015-NA,,,,,, +10399,Ac5,EA015,Agamous,EA015-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +10400,Ac6,EA015,Clans,EA015-6,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +10401,Ac7,EA015,"Segmented, no exogamy",EA015-2,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +10402,Ac8,EA015,Clans,EA015-6,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +10403,Ac9,EA015,Agamous,EA015-3,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +10404,Ad1,EA015,Agamous,EA015-3,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +10405,Ad10,EA015,Clans,EA015-6,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +10406,Ad11,EA015,Agamous,EA015-3,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +10407,Ad12,EA015,Clans,EA015-6,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +10408,Ad13,EA015,Clans,EA015-6,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +10409,Ad14,EA015,"Segmented, no exogamy",EA015-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +10410,Ad15,EA015,Clans,EA015-6,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +10411,Ad16,EA015,Exogamous,EA015-4,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +10412,Ad17,EA015,Exogamous,EA015-4,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +10413,Ad18,EA015,?,EA015-NA,,,,,, +10414,Ad19,EA015,?,EA015-NA,,,,,, +10415,Ad2,EA015,"Segmented, no exogamy",EA015-2,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +10416,Ad20,EA015,Exogamous,EA015-4,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +10417,Ad21,EA015,?,EA015-NA,,,,,, +10418,Ad22,EA015,Agamous,EA015-3,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +10419,Ad23,EA015,?,EA015-NA,,,,,, +10420,Ad24,EA015,Clans,EA015-6,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +10421,Ad25,EA015,?,EA015-NA,,,,,, +10422,Ad26,EA015,Clans,EA015-6,,sick1916,,1910,EthnographicAtlas_1967_p66, +10423,Ad27,EA015,"Segmented, no exogamy",EA015-2,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +10424,Ad28,EA015,?,EA015-NA,,,,,, +10425,Ad29,EA015,?,EA015-NA,,,,,, +10426,Ad3,EA015,Clans,EA015-6,"Lineage localization is, however, uncommon today",abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +10427,Ad30,EA015,"Segmented, no exogamy",EA015-2,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +10428,Ad31,EA015,"Segmented, no exogamy",EA015-2,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +10429,Ad32,EA015,Exogamous,EA015-4,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +10430,Ad33,EA015,Agamous,EA015-3,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +10431,Ad34,EA015,"Segmented, no exogamy",EA015-2,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +10432,Ad35,EA015,Clans,EA015-6,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +10433,Ad36,EA015,?,EA015-NA,,,,,, +10434,Ad37,EA015,Clans,EA015-6,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +10435,Ad38,EA015,?,EA015-NA,,,,,, +10436,Ad39,EA015,"Segmented, no exogamy",EA015-2,,gray1963,,1950,EthnographicAtlas_1967_p66, +10437,Ad4,EA015,Clans,EA015-6,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +10438,Ad40,EA015,?,EA015-NA,,,,,, +10439,Ad41,EA015,Clans,EA015-6,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +10440,Ad42,EA015,Exogamous,EA015-4,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +10441,Ad43,EA015,?,EA015-NA,,,,,, +10442,Ad44,EA015,Clans,EA015-6,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +10443,Ad45,EA015,?,EA015-NA,,,,,, +10444,Ad46,EA015,Agamous,EA015-3,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +10445,Ad47,EA015,?,EA015-NA,,,,,, +10446,Ad48,EA015,Agamous,EA015-3,"Formerly probably clans (code ""6"")",taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +10447,Ad49,EA015,Agamous,EA015-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +10448,Ad5,EA015,Agamous,EA015-3,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +10449,Ad50,EA015,"Segmented, no exogamy",EA015-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +10450,Ad51,EA015,"Segmented, no exogamy",EA015-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +10451,Ad6,EA015,Agamous,EA015-3,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +10452,Ad7,EA015,Exogamous,EA015-4,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +10453,Ad8,EA015,Clans,EA015-6,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +10454,Ad9,EA015,Clans,EA015-6,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +10455,Ae1,EA015,Clans,EA015-6,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +10456,Ae10,EA015,"Segmented, no exogamy",EA015-2,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +10457,Ae11,EA015,Clans,EA015-6,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +10458,Ae12,EA015,Clans,EA015-6,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +10459,Ae13,EA015,Clans,EA015-6,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +10460,Ae14,EA015,Clans,EA015-6,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +10461,Ae15,EA015,Clans,EA015-6,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +10462,Ae16,EA015,Clans,EA015-6,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +10463,Ae17,EA015,Agamous,EA015-3,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +10464,Ae18,EA015,Agamous,EA015-3,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +10465,Ae19,EA015,?,EA015-NA,,,,,, +10466,Ae2,EA015,"Segmented, no exogamy",EA015-2,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +10467,Ae20,EA015,Agamous,EA015-3,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +10468,Ae21,EA015,Clans,EA015-6,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +10469,Ae22,EA015,Agamous,EA015-3,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +10470,Ae23,EA015,Clans,EA015-6,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +10471,Ae24,EA015,Clans,EA015-6,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +10472,Ae25,EA015,Clans,EA015-6,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +10473,Ae26,EA015,?,EA015-NA,,,,,, +10474,Ae27,EA015,Clans,EA015-6,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +10475,Ae28,EA015,Agamous,EA015-3,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +10476,Ae29,EA015,Clans,EA015-6,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +10477,Ae3,EA015,Clans,EA015-6,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +10478,Ae30,EA015,Clans,EA015-6,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +10479,Ae31,EA015,Clans,EA015-6,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +10480,Ae32,EA015,Clans,EA015-6,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +10481,Ae33,EA015,Clans,EA015-6,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +10482,Ae34,EA015,Clans,EA015-6,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +10483,Ae35,EA015,Clans,EA015-6,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +10484,Ae36,EA015,Clans,EA015-6,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +10485,Ae37,EA015,Clans,EA015-6,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +10486,Ae38,EA015,Exogamous,EA015-4,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +10487,Ae39,EA015,"Segmented, no exogamy",EA015-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +10488,Ae4,EA015,Clans,EA015-6,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +10489,Ae40,EA015,Clans,EA015-6,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +10490,Ae41,EA015,"Segmented, no exogamy",EA015-2,,andersson1953,,1940,EthnographicAtlas_1967_p66, +10491,Ae42,EA015,Clans,EA015-6,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +10492,Ae43,EA015,Clans,EA015-6,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +10493,Ae44,EA015,"Segmented, no exogamy",EA015-2,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +10494,Ae45,EA015,"Segmented, no exogamy",EA015-2,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +10495,Ae46,EA015,"Segmented, no exogamy",EA015-2,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +10496,Ae47,EA015,Clans,EA015-6,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +10497,Ae48,EA015,Clans,EA015-6,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +10498,Ae49,EA015,"Segmented, no exogamy",EA015-2,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +10499,Ae5,EA015,"Segmented, no exogamy",EA015-2,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +10500,Ae50,EA015,"Segmented, no exogamy",EA015-2,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +10501,Ae51,EA015,Clans,EA015-6,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +10502,Ae52,EA015,"Segmented, no exogamy",EA015-2,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +10503,Ae53,EA015,Clans,EA015-6,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +10504,Ae54,EA015,"Segmented, no exogamy",EA015-2,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +10505,Ae55,EA015,"Segmented, no exogamy",EA015-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +10506,Ae56,EA015,"Segmented, no exogamy",EA015-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +10507,Ae57,EA015,"Segmented, no exogamy",EA015-2,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +10508,Ae58,EA015,?,EA015-NA,,,,,, +10509,Ae59,EA015,Clans,EA015-6,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +10510,Ae6,EA015,Agamous,EA015-3,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +10511,Ae7,EA015,Clans,EA015-6,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +10512,Ae8,EA015,"Segmented, no exogamy",EA015-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +10513,Ae9,EA015,"Segmented, no exogamy",EA015-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +10514,Af1,EA015,"Segmented, no exogamy",EA015-2,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +10515,Af10,EA015,"Segmented, no exogamy",EA015-2,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +10516,Af11,EA015,Clans,EA015-6,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +10517,Af12,EA015,"Segmented, no exogamy",EA015-2,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +10518,Af13,EA015,"Segmented, no exogamy",EA015-2,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +10519,Af14,EA015,?,EA015-NA,,,,,, +10520,Af15,EA015,"Segmented, no exogamy",EA015-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +10521,Af16,EA015,Clans,EA015-6,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +10522,Af17,EA015,"Segmented, no exogamy",EA015-2,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +10523,Af18,EA015,"Segmented, no exogamy",EA015-2,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +10524,Af19,EA015,"Segmented, no exogamy",EA015-2,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +10525,Af2,EA015,"Segmented, exogamy",EA015-5,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +10526,Af20,EA015,"Segmented, no exogamy",EA015-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +10527,Af21,EA015,?,EA015-NA,,,,,, +10528,Af22,EA015,"Segmented, no exogamy",EA015-2,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +10529,Af23,EA015,"Segmented, no exogamy",EA015-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +10530,Af24,EA015,"Segmented, no exogamy",EA015-2,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +10531,Af25,EA015,"Segmented, no exogamy",EA015-2,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +10532,Af26,EA015,"Segmented, no exogamy",EA015-2,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +10533,Af27,EA015,Agamous,EA015-3,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +10534,Af28,EA015,"Segmented, no exogamy",EA015-2,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +10535,Af29,EA015,Agamous,EA015-3,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +10536,Af3,EA015,Agamous,EA015-3,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +10537,Af30,EA015,?,EA015-NA,,,,,, +10538,Af31,EA015,Agamous,EA015-3,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +10539,Af32,EA015,"Segmented, no exogamy",EA015-2,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10540,Af33,EA015,"Segmented, no exogamy",EA015-2,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10541,Af34,EA015,"Segmented, no exogamy",EA015-2,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10542,Af35,EA015,"Segmented, no exogamy",EA015-2,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +10543,Af36,EA015,"Segmented, no exogamy",EA015-2,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +10544,Af37,EA015,"Segmented, no exogamy",EA015-2,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +10545,Af38,EA015,Agamous,EA015-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +10546,Af39,EA015,"Segmented, no exogamy",EA015-2,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +10547,Af4,EA015,"Segmented, no exogamy",EA015-2,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +10548,Af40,EA015,?,EA015-NA,,,,,, +10549,Af41,EA015,?,EA015-NA,,,,,, +10550,Af42,EA015,Agamous,EA015-3,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +10551,Af43,EA015,"Segmented, no exogamy",EA015-2,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +10552,Af44,EA015,"Segmented, no exogamy",EA015-2,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +10553,Af45,EA015,?,EA015-NA,,,,,, +10554,Af46,EA015,Clans,EA015-6,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +10555,Af47,EA015,Clans,EA015-6,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +10556,Af48,EA015,?,EA015-NA,,,,,, +10557,Af49,EA015,Clans,EA015-6,,schwab1947,,1940,EthnographicAtlas_1967_p70, +10558,Af5,EA015,"Segmented, no exogamy",EA015-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +10559,Af50,EA015,?,EA015-NA,,,,,, +10560,Af51,EA015,"Segmented, no exogamy",EA015-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +10561,Af52,EA015,Clans,EA015-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +10562,Af53,EA015,Clans,EA015-6,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +10563,Af54,EA015,"Segmented, no exogamy",EA015-2,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +10564,Af55,EA015,"Segmented, no exogamy",EA015-2,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +10565,Af56,EA015,"Segmented, no exogamy",EA015-2,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +10566,Af57,EA015,Clans,EA015-6,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +10567,Af58,EA015,?,EA015-NA,,,,,, +10568,Af6,EA015,"Segmented, no exogamy",EA015-2,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +10569,Af7,EA015,Clans,EA015-6,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +10570,Af8,EA015,"Segmented, no exogamy",EA015-2,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +10571,Af9,EA015,"Segmented, no exogamy",EA015-2,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +10572,Ag1,EA015,"Segmented, no exogamy",EA015-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +10573,Ag10,EA015,Clans,EA015-6,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +10574,Ag11,EA015,Agamous,EA015-3,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +10575,Ag12,EA015,Clans,EA015-6,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +10576,Ag13,EA015,Clans,EA015-6,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +10577,Ag14,EA015,"Segmented, no exogamy",EA015-2,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +10578,Ag15,EA015,?,EA015-NA,,,,,, +10579,Ag16,EA015,?,EA015-NA,,,,,, +10580,Ag17,EA015,?,EA015-NA,,,,,, +10581,Ag18,EA015,?,EA015-NA,,,,,, +10582,Ag19,EA015,?,EA015-NA,,,,,, +10583,Ag2,EA015,"Segmented, no exogamy",EA015-2,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +10584,Ag20,EA015,?,EA015-NA,,,,,, +10585,Ag21,EA015,Agamous,EA015-3,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +10586,Ag22,EA015,Agamous,EA015-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +10587,Ag23,EA015,?,EA015-NA,,,,,, +10588,Ag24,EA015,?,EA015-NA,,,,,, +10589,Ag25,EA015,Agamous,EA015-3,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +10590,Ag26,EA015,"Segmented, no exogamy",EA015-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +10591,Ag27,EA015,"Segmented, no exogamy",EA015-2,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +10592,Ag28,EA015,"Segmented, no exogamy",EA015-2,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +10593,Ag29,EA015,"Segmented, no exogamy",EA015-2,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +10594,Ag3,EA015,"Segmented, exogamy",EA015-5,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +10595,Ag30,EA015,"Segmented, no exogamy",EA015-2,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +10596,Ag31,EA015,"Segmented, no exogamy",EA015-2,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +10597,Ag32,EA015,"Segmented, no exogamy",EA015-2,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +10598,Ag33,EA015,?,EA015-NA,,,,,, +10599,Ag34,EA015,?,EA015-NA,,,,,, +10600,Ag35,EA015,Agamous,EA015-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +10601,Ag36,EA015,Clans,EA015-6,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +10602,Ag37,EA015,"Segmented, no exogamy",EA015-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +10603,Ag38,EA015,"Segmented, no exogamy",EA015-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +10604,Ag39,EA015,"Segmented, no exogamy",EA015-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +10605,Ag4,EA015,Clans,EA015-6,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +10606,Ag40,EA015,Clans,EA015-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +10607,Ag41,EA015,Clans,EA015-6,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +10608,Ag42,EA015,Clans,EA015-6,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +10609,Ag43,EA015,"Segmented, no exogamy",EA015-2,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +10610,Ag44,EA015,?,EA015-NA,,,,,, +10611,Ag45,EA015,"Segmented, no exogamy",EA015-2,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +10612,Ag46,EA015,?,EA015-NA,,,,,, +10613,Ag47,EA015,"Segmented, no exogamy",EA015-2,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +10614,Ag48,EA015,Clans,EA015-6,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +10615,Ag49,EA015,"Segmented, no exogamy",EA015-2,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +10616,Ag5,EA015,Clans,EA015-6,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +10617,Ag50,EA015,?,EA015-NA,,,,,, +10618,Ag51,EA015,Clans,EA015-6,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +10619,Ag52,EA015,"Segmented, no exogamy",EA015-2,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +10620,Ag53,EA015,Clans,EA015-6,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +10621,Ag54,EA015,"Segmented, no exogamy",EA015-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +10622,Ag6,EA015,"Segmented, no exogamy",EA015-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +10623,Ag7,EA015,?,EA015-NA,,,,,, +10624,Ag8,EA015,Agamous,EA015-3,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +10625,Ag9,EA015,Agamous,EA015-3,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +10626,Ah1,EA015,Clans,EA015-6,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10627,Ah10,EA015,"Segmented, exogamy",EA015-5,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +10628,Ah11,EA015,?,EA015-NA,,,,,, +10629,Ah12,EA015,"Segmented, no exogamy",EA015-2,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +10630,Ah13,EA015,?,EA015-NA,,,,,, +10631,Ah14,EA015,"Segmented, no exogamy",EA015-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +10632,Ah15,EA015,Agamous,EA015-3,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +10633,Ah16,EA015,?,EA015-NA,,,,,, +10634,Ah17,EA015,"Segmented, no exogamy",EA015-2,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +10635,Ah18,EA015,?,EA015-NA,,,,,, +10636,Ah19,EA015,"Segmented, no exogamy",EA015-2,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +10637,Ah2,EA015,Agamous,EA015-3,,meek1931a,,1920,EthnographicAtlas_1967_p74, +10638,Ah20,EA015,Clans,EA015-6,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +10639,Ah21,EA015,"Segmented, no exogamy",EA015-2,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +10640,Ah22,EA015,?,EA015-NA,,,,,, +10641,Ah23,EA015,?,EA015-NA,,,,,, +10642,Ah24,EA015,Agamous,EA015-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +10643,Ah25,EA015,"Segmented, no exogamy",EA015-2,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +10644,Ah26,EA015,Agamous,EA015-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +10645,Ah27,EA015,"Segmented, no exogamy",EA015-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +10646,Ah28,EA015,?,EA015-NA,,,,,, +10647,Ah29,EA015,?,EA015-NA,,,,,, +10648,Ah3,EA015,Clans,EA015-6,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +10649,Ah30,EA015,"Segmented, no exogamy",EA015-2,,meek1931b,,1920,EthnographicAtlas_1967_p74, +10650,Ah31,EA015,"Segmented, no exogamy",EA015-2,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +10651,Ah32,EA015,?,EA015-NA,,,,,, +10652,Ah33,EA015,"Segmented, no exogamy",EA015-2,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +10653,Ah34,EA015,?,EA015-NA,,,,,, +10654,Ah35,EA015,?,EA015-NA,,,,,, +10655,Ah36,EA015,"Segmented, no exogamy",EA015-2,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +10656,Ah37,EA015,"Segmented, no exogamy",EA015-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +10657,Ah38,EA015,Clans,EA015-6,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +10658,Ah39,EA015,Clans,EA015-6,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +10659,Ah4,EA015,"Segmented, no exogamy",EA015-2,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +10660,Ah5,EA015,"Segmented, no exogamy",EA015-2,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +10661,Ah6,EA015,"Segmented, no exogamy",EA015-2,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +10662,Ah7,EA015,Clans,EA015-6,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +10663,Ah8,EA015,"Segmented, no exogamy",EA015-2,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +10664,Ah9,EA015,"Segmented, no exogamy",EA015-2,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +10665,Ai1,EA015,Clans,EA015-6,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +10666,Ai10,EA015,"Segmented, no exogamy",EA015-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +10667,Ai11,EA015,Agamous,EA015-3,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +10668,Ai12,EA015,"Segmented, no exogamy",EA015-2,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +10669,Ai13,EA015,?,EA015-NA,,,,,, +10670,Ai14,EA015,?,EA015-NA,,,,,, +10671,Ai15,EA015,"Segmented, no exogamy",EA015-2,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +10672,Ai16,EA015,?,EA015-NA,,,,,, +10673,Ai17,EA015,"Segmented, no exogamy",EA015-2,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +10674,Ai18,EA015,"Segmented, no exogamy",EA015-2,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +10675,Ai19,EA015,?,EA015-NA,,,,,, +10676,Ai2,EA015,"Segmented, no exogamy",EA015-2,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +10677,Ai20,EA015,Clans,EA015-6,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +10678,Ai21,EA015,?,EA015-NA,,,,,, +10679,Ai22,EA015,Clans,EA015-6,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +10680,Ai23,EA015,Clans,EA015-6,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +10681,Ai24,EA015,Clans,EA015-6,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +10682,Ai25,EA015,Clans,EA015-6,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +10683,Ai26,EA015,Clans,EA015-6,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +10684,Ai27,EA015,Clans,EA015-6,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +10685,Ai28,EA015,"Segmented, no exogamy",EA015-2,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +10686,Ai29,EA015,Exogamous,EA015-4,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +10687,Ai3,EA015,Agamous,EA015-3,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +10688,Ai30,EA015,Clans,EA015-6,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +10689,Ai31,EA015,?,EA015-NA,,,,,, +10690,Ai32,EA015,Clans,EA015-6,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +10691,Ai33,EA015,Clans,EA015-6,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +10692,Ai34,EA015,Clans,EA015-6,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +10693,Ai35,EA015,Clans,EA015-6,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +10694,Ai36,EA015,Clans,EA015-6,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +10695,Ai37,EA015,"Segmented, no exogamy",EA015-2,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +10696,Ai38,EA015,Agamous,EA015-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +10697,Ai39,EA015,Agamous,EA015-3,,nadel1947,,1940,EthnographicAtlas_1967_p74, +10698,Ai4,EA015,Demes,EA015-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +10699,Ai40,EA015,"Segmented, no exogamy",EA015-2,,nadel1947,,1940,EthnographicAtlas_1967_p74, +10700,Ai41,EA015,"Segmented, no exogamy",EA015-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +10701,Ai42,EA015,Agamous,EA015-3,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +10702,Ai43,EA015,Agamous,EA015-3,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +10703,Ai44,EA015,Clans,EA015-6,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +10704,Ai45,EA015,?,EA015-NA,,,,,, +10705,Ai46,EA015,Clans,EA015-6,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +10706,Ai47,EA015,Clans,EA015-6,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +10707,Ai5,EA015,Clans,EA015-6,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +10708,Ai6,EA015,"Segmented, no exogamy",EA015-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +10709,Ai7,EA015,Clans,EA015-6,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +10710,Ai8,EA015,"Segmented, no exogamy",EA015-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +10711,Ai9,EA015,Clans,EA015-6,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +10712,Aj1,EA015,"Segmented, no exogamy",EA015-2,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +10713,Aj10,EA015,Agamous,EA015-3,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +10714,Aj11,EA015,"Segmented, no exogamy",EA015-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +10715,Aj12,EA015,"Segmented, no exogamy",EA015-2,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +10716,Aj13,EA015,Clans,EA015-6,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +10717,Aj14,EA015,Clans,EA015-6,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +10718,Aj15,EA015,Clans,EA015-6,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +10719,Aj16,EA015,Clans,EA015-6,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +10720,Aj17,EA015,Clans,EA015-6,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +10721,Aj18,EA015,?,EA015-NA,,,,,, +10722,Aj19,EA015,Agamous,EA015-3,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +10723,Aj2,EA015,Agamous,EA015-3,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +10724,Aj20,EA015,Agamous,EA015-3,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +10725,Aj21,EA015,Agamous,EA015-3,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +10726,Aj22,EA015,?,EA015-NA,,,,,, +10727,Aj23,EA015,Clans,EA015-6,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +10728,Aj24,EA015,?,EA015-NA,,,,,, +10729,Aj25,EA015,Agamous,EA015-3,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +10730,Aj26,EA015,Agamous,EA015-3,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +10731,Aj27,EA015,Clans,EA015-6,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +10732,Aj28,EA015,Exogamous,EA015-4,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +10733,Aj29,EA015,Clans,EA015-6,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +10734,Aj3,EA015,Clans,EA015-6,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +10735,Aj30,EA015,?,EA015-NA,,,,,, +10736,Aj31,EA015,?,EA015-NA,,,,,, +10737,Aj4,EA015,Agamous,EA015-3,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +10738,Aj5,EA015,Exogamous,EA015-4,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +10739,Aj6,EA015,Clans,EA015-6,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +10740,Aj7,EA015,Agamous,EA015-3,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +10741,Aj8,EA015,Clans,EA015-6,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +10742,Aj9,EA015,Agamous,EA015-3,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +10743,Ca1,EA015,"Segmented, no exogamy",EA015-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +10744,Ca10,EA015,Clans,EA015-6,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +10745,Ca11,EA015,?,EA015-NA,,,,,, +10746,Ca12,EA015,?,EA015-NA,,,,,, +10747,Ca13,EA015,"Segmented, no exogamy",EA015-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +10748,Ca14,EA015,Exogamous,EA015-4,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +10749,Ca15,EA015,Agamous,EA015-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +10750,Ca16,EA015,Agamous,EA015-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +10751,Ca17,EA015,?,EA015-NA,,,,,, +10752,Ca18,EA015,?,EA015-NA,,,,,, +10753,Ca19,EA015,Clans,EA015-6,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +10754,Ca2,EA015,Clans,EA015-6,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +10755,Ca20,EA015,?,EA015-NA,,,,,, +10756,Ca21,EA015,Clans,EA015-6,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +10757,Ca22,EA015,?,EA015-NA,,,,,, +10758,Ca23,EA015,?,EA015-NA,,,,,, +10759,Ca24,EA015,?,EA015-NA,,,,,, +10760,Ca25,EA015,?,EA015-NA,,,,,, +10761,Ca26,EA015,?,EA015-NA,,,,,, +10762,Ca27,EA015,Agamous,EA015-3,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +10763,Ca28,EA015,?,EA015-NA,,,,,, +10764,Ca29,EA015,?,EA015-NA,,,,,, +10765,Ca3,EA015,Agamous,EA015-3,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +10766,Ca30,EA015,?,EA015-NA,,,,,, +10767,Ca31,EA015,?,EA015-NA,,,,,, +10768,Ca32,EA015,?,EA015-NA,,,,,, +10769,Ca33,EA015,?,EA015-NA,,,,,, +10770,Ca34,EA015,Agamous,EA015-3,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +10771,Ca35,EA015,Agamous,EA015-3,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +10772,Ca36,EA015,Agamous,EA015-3,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +10773,Ca37,EA015,Exogamous,EA015-4,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +10774,Ca38,EA015,Agamous,EA015-3,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +10775,Ca39,EA015,?,EA015-NA,,,,,, +10776,Ca4,EA015,?,EA015-NA,,,,,, +10777,Ca40,EA015,?,EA015-NA,,,,,, +10778,Ca41,EA015,?,EA015-NA,,,,,, +10779,Ca42,EA015,"Segmented, no exogamy",EA015-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +10780,Ca43,EA015,?,EA015-NA,,,,,, +10781,Ca5,EA015,Clans,EA015-6,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +10782,Ca6,EA015,Clans,EA015-6,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +10783,Ca7,EA015,Exogamous,EA015-4,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +10784,Ca8,EA015,Clans,EA015-6,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +10785,Ca9,EA015,?,EA015-NA,,,,,, +10786,Cb1,EA015,Agamous,EA015-3,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +10787,Cb10,EA015,Clans,EA015-6,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +10788,Cb11,EA015,?,EA015-NA,,,,,, +10789,Cb12,EA015,Agamous,EA015-3,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +10790,Cb13,EA015,Agamous,EA015-3,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +10791,Cb14,EA015,?,EA015-NA,,,,,, +10792,Cb15,EA015,Demes,EA015-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +10793,Cb16,EA015,Agamous,EA015-3,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +10794,Cb17,EA015,Exogamous,EA015-4,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +10795,Cb18,EA015,Agamous,EA015-3,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +10796,Cb19,EA015,"Segmented, no exogamy",EA015-2,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +10797,Cb2,EA015,Clans,EA015-6,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +10798,Cb20,EA015,"Segmented, no exogamy",EA015-2,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +10799,Cb21,EA015,Agamous,EA015-3,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +10800,Cb22,EA015,"Segmented, no exogamy",EA015-2,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +10801,Cb23,EA015,?,EA015-NA,,,,,, +10802,Cb24,EA015,Demes,EA015-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +10803,Cb25,EA015,Agamous,EA015-3,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +10804,Cb26,EA015,"Segmented, no exogamy",EA015-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +10805,Cb27,EA015,"Segmented, no exogamy",EA015-2,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +10806,Cb28,EA015,Clans,EA015-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +10807,Cb29,EA015,Clans,EA015-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +10808,Cb3,EA015,Agamous,EA015-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +10809,Cb4,EA015,Agamous,EA015-3,,reid1930,,1920,EthnographicAtlas_1967_p78, +10810,Cb5,EA015,?,EA015-NA,,,,,, +10811,Cb6,EA015,"Segmented, no exogamy",EA015-2,"Formerly 'segmented communities, no exogamy' (code ""2"")",woodnd,,1920,EthnographicAtlas_1967_p78, +10812,Cb7,EA015,Agamous,EA015-3,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +10813,Cb8,EA015,Exogamous,EA015-4,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +10814,Cb9,EA015,"Segmented, no exogamy",EA015-2,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +10815,Cc1,EA015,Clans,EA015-6,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +10816,Cc10,EA015,Agamous,EA015-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +10817,Cc11,EA015,Agamous,EA015-3,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +10818,Cc12,EA015,?,EA015-NA,,,,,, +10819,Cc13,EA015,Agamous,EA015-3,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +10820,Cc14,EA015,Exogamous,EA015-4,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +10821,Cc15,EA015,"Segmented, no exogamy",EA015-2,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +10822,Cc16,EA015,?,EA015-NA,,,,,, +10823,Cc17,EA015,Agamous,EA015-3,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +10824,Cc18,EA015,"Segmented, no exogamy",EA015-2,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +10825,Cc19,EA015,?,EA015-NA,,,,,, +10826,Cc2,EA015,Exogamous,EA015-4,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +10827,Cc20,EA015,?,EA015-NA,,,,,, +10828,Cc3,EA015,Demes,EA015-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +10829,Cc4,EA015,"Segmented, no exogamy",EA015-2,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +10830,Cc5,EA015,Agamous,EA015-3,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +10831,Cc6,EA015,?,EA015-NA,The band is a patriclan but is not exogamous,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +10832,Cc7,EA015,"Segmented, no exogamy",EA015-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10833,Cc8,EA015,Agamous,EA015-3,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +10834,Cc9,EA015,Clans,EA015-6,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +10835,Cd1,EA015,Agamous,EA015-3,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +10836,Cd10,EA015,?,EA015-NA,,,,,, +10837,Cd11,EA015,?,EA015-NA,,,,,, +10838,Cd12,EA015,"Segmented, no exogamy",EA015-2,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +10839,Cd13,EA015,Agamous,EA015-3,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +10840,Cd14,EA015,Agamous,EA015-3,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +10841,Cd15,EA015,Agamous,EA015-3,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +10842,Cd16,EA015,?,EA015-NA,,,,,, +10843,Cd17,EA015,Demes,EA015-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +10844,Cd18,EA015,Demes,EA015-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +10845,Cd19,EA015,?,EA015-NA,,,,,, +10846,Cd2,EA015,Demes,EA015-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +10847,Cd20,EA015,?,EA015-NA,,,,,, +10848,Cd21,EA015,"Segmented, no exogamy",EA015-2,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +10849,Cd3,EA015,Clans,EA015-6,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +10850,Cd4,EA015,"Segmented, no exogamy",EA015-2,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +10851,Cd5,EA015,"Segmented, no exogamy",EA015-2,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +10852,Cd6,EA015,?,EA015-NA,,,,,, +10853,Cd7,EA015,Agamous,EA015-3,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +10854,Cd8,EA015,Agamous,EA015-3,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +10855,Cd9,EA015,?,EA015-NA,,,,,, +10856,Ce1,EA015,Exogamous,EA015-4,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +10857,Ce2,EA015,Demes,EA015-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +10858,Ce3,EA015,Agamous,EA015-3,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +10859,Ce4,EA015,Agamous,EA015-3,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10860,Ce5,EA015,Demes,EA015-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +10861,Ce6,EA015,Agamous,EA015-3,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +10862,Ce7,EA015,Agamous,EA015-3,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +10863,Ce8,EA015,Agamous,EA015-3,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +10864,Cf1,EA015,Agamous,EA015-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +10865,Cf2,EA015,Agamous,EA015-3,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +10866,Cf3,EA015,Demes,EA015-1,,munch1945,,1930,EthnographicAtlas_1967_p82, +10867,Cf4,EA015,Agamous,EA015-3,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +10868,Cf5,EA015,Agamous,EA015-3,,miner1939,,1930,EthnographicAtlas_1967_p82, +10869,Cg1,EA015,Agamous,EA015-3,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +10870,Cg2,EA015,Agamous,EA015-3,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +10871,Cg3,EA015,Agamous,EA015-3,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +10872,Cg4,EA015,Exogamous,EA015-4,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +10873,Cg5,EA015,Agamous,EA015-3,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +10874,Ch1,EA015,"Segmented, no exogamy",EA015-2,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +10875,Ch10,EA015,Agamous,EA015-3,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +10876,Ch11,EA015,Agamous,EA015-3,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +10877,Ch2,EA015,Demes,EA015-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +10878,Ch3,EA015,Agamous,EA015-3,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +10879,Ch4,EA015,Agamous,EA015-3,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +10880,Ch5,EA015,Agamous,EA015-3,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +10881,Ch6,EA015,Agamous,EA015-3,,ember1954,,1910,EthnographicAtlas_1967_p82, +10882,Ch7,EA015,Demes,EA015-1,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +10883,Ch8,EA015,Demes,EA015-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +10884,Ch9,EA015,Agamous,EA015-3,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +10885,Ci1,EA015,Clans,EA015-6,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +10886,Ci10,EA015,Agamous,EA015-3,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +10887,Ci11,EA015,Demes,EA015-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +10888,Ci12,EA015,Clans,EA015-6,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +10889,Ci2,EA015,Clans,EA015-6,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +10890,Ci3,EA015,Demes,EA015-1,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +10891,Ci4,EA015,Agamous,EA015-3,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +10892,Ci5,EA015,Agamous,EA015-3,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971,"Corrected Gray 1999: v15 was coded as ""5""" +10893,Ci6,EA015,Clans,EA015-6,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +10894,Ci7,EA015,Clans,EA015-6,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +10895,Ci8,EA015,?,EA015-NA,,,,,, +10896,Ci9,EA015,Clans,EA015-6,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +10897,Cj1,EA015,Agamous,EA015-3,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +10898,Cj10,EA015,"Segmented, no exogamy",EA015-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +10899,Cj2,EA015,Agamous,EA015-3,"The local clan, however, shows a tendency toward endogamy",ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +10900,Cj3,EA015,Agamous,EA015-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +10901,Cj4,EA015,?,EA015-NA,,,,,, +10902,Cj5,EA015,Demes,EA015-1,,dickson1949,,1930,EthnographicAtlas_1967_p86, +10903,Cj6,EA015,Agamous,EA015-3,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +10904,Cj7,EA015,Demes,EA015-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +10905,Cj8,EA015,"Segmented, no exogamy",EA015-2,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +10906,Cj9,EA015,?,EA015-NA,,,,,, +10907,Ea1,EA015,Demes,EA015-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +10908,Ea10,EA015,Clans,EA015-6,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +10909,Ea11,EA015,?,EA015-NA,,,,,, +10910,Ea12,EA015,?,EA015-NA,,,,,, +10911,Ea13,EA015,"Segmented, no exogamy",EA015-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +10912,Ea2,EA015,Agamous,EA015-3,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +10913,Ea3,EA015,Agamous,EA015-3,But with a marked tendency toward local endogamy,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +10914,Ea4,EA015,"Segmented, no exogamy",EA015-2,,barth1956b,,1950,EthnographicAtlas_1967_p86, +10915,Ea5,EA015,Agamous,EA015-3,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +10916,Ea6,EA015,Demes,EA015-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +10917,Ea7,EA015,Demes,EA015-1,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +10918,Ea8,EA015,Clans,EA015-6,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +10919,Ea9,EA015,Agamous,EA015-3,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +10920,Eb1,EA015,Clans,EA015-6,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +10921,Eb2,EA015,"Segmented, no exogamy",EA015-2,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +10922,Eb3,EA015,Agamous,EA015-3,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +10923,Eb4,EA015,Clans,EA015-6,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +10924,Eb5,EA015,?,EA015-NA,Freikin mentions localized clans,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +10925,Eb6,EA015,Clans,EA015-6,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +10926,Eb7,EA015,Agamous,EA015-3,But with a tendency toward local exogamy,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +10927,Eb8,EA015,?,EA015-NA,,,,,, +10928,Ec1,EA015,"Segmented, no exogamy",EA015-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +10929,Ec10,EA015,Agamous,EA015-3,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +10930,Ec11,EA015,?,EA015-NA,,,,,, +10931,Ec2,EA015,Clans,EA015-6,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10932,Ec3,EA015,Agamous,EA015-3,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +10933,Ec4,EA015,Exogamous,EA015-4,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +10934,Ec5,EA015,Agamous,EA015-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +10935,Ec6,EA015,Exogamous,EA015-4,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +10936,Ec7,EA015,Demes,EA015-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +10937,Ec8,EA015,?,EA015-NA,,,,,, +10938,Ec9,EA015,?,EA015-NA,,,,,, +10939,Ed1,EA015,Exogamous,EA015-4,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +10940,Ed10,EA015,"Segmented, no exogamy",EA015-2,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +10941,Ed13,EA015,?,EA015-NA,,,,,, +10942,Ed14,EA015,Agamous,EA015-3,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +10943,Ed15a,EA015,Demes,EA015-1,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +10944,Ed15b,EA015,Agamous,EA015-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +10945,Ed16,EA015,Agamous,EA015-3,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +10946,Ed2,EA015,Clans,EA015-6,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +10947,Ed3,EA015,Clans,EA015-6,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +10948,Ed4,EA015,"Segmented, no exogamy",EA015-2,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +10949,Ed5,EA015,Exogamous,EA015-4,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10950,Ed6,EA015,Demes,EA015-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +10951,Ed7,EA015,Agamous,EA015-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +10952,Ed8,EA015,Demes,EA015-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +10953,Ed9,EA015,Exogamous,EA015-4,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +10954,Ee1,EA015,Agamous,EA015-3,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +10955,Ee2,EA015,Agamous,EA015-3,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +10956,Ee3,EA015,Exogamous,EA015-4,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +10957,Ee4,EA015,Agamous,EA015-3,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +10958,Ee5,EA015,Agamous,EA015-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +10959,Ee6,EA015,Agamous,EA015-3,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +10960,Ee7,EA015,?,EA015-NA,,,,,, +10961,Ee8,EA015,Agamous,EA015-3,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +10962,Ef1,EA015,Exogamous,EA015-4,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +10963,Ef10,EA015,?,EA015-NA,,,,,, +10964,Ef11,EA015,Exogamous,EA015-4,But locally exogamous sibs for the Thakur caste,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +10965,Ef2,EA015,"Segmented, no exogamy",EA015-2,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968,"Corrected Gray 1999: v15 was coded as ""1""" +10966,Ef3,EA015,"Segmented, no exogamy",EA015-2,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +10967,Ef4,EA015,Clans,EA015-6,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +10968,Ef5,EA015,Exogamous,EA015-4,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +10969,Ef6,EA015,Exogamous,EA015-4,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +10970,Ef7,EA015,Agamous,EA015-3,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +10971,Ef8,EA015,Agamous,EA015-3,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +10972,Ef9,EA015,"Segmented, exogamy",EA015-5,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10973,Eg1,EA015,Exogamous,EA015-4,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10974,Eg10,EA015,Agamous,EA015-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +10975,Eg11,EA015,"Segmented, no exogamy",EA015-2,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +10976,Eg12,EA015,Clans,EA015-6,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +10977,Eg13,EA015,Agamous,EA015-3,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10978,Eg14,EA015,Agamous,EA015-3,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +10979,Eg2,EA015,Agamous,EA015-3,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +10980,Eg3,EA015,Clans,EA015-6,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +10981,Eg4,EA015,Clans,EA015-6,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +10982,Eg5,EA015,"Segmented, exogamy",EA015-5,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +10983,Eg6,EA015,Agamous,EA015-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +10984,Eg7,EA015,Clans,EA015-6,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +10985,Eg8,EA015,Exogamous,EA015-4,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +10986,Eg9,EA015,Clans,EA015-6,,elwin1939,,1930,EthnographicAtlas_1967_p90, +10987,Eh1,EA015,Agamous,EA015-3,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +10988,Eh10,EA015,Agamous,EA015-3,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +10989,Eh2,EA015,Agamous,EA015-3,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +10990,Eh3,EA015,"Segmented, exogamy",EA015-5,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +10991,Eh4,EA015,Clans,EA015-6,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10992,Eh5,EA015,Agamous,EA015-3,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +10993,Eh6,EA015,Agamous,EA015-3,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +10994,Eh7,EA015,Demes,EA015-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +10995,Eh8,EA015,Clans,EA015-6,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +10996,Eh9,EA015,Clans,EA015-6,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +10997,Ei1,EA015,Agamous,EA015-3,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +10998,Ei10,EA015,Clans,EA015-6,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +10999,Ei11,EA015,Agamous,EA015-3,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +11000,Ei12,EA015,?,EA015-NA,,,,,, +11001,Ei13,EA015,"Segmented, no exogamy",EA015-2,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +11002,Ei14,EA015,"Segmented, no exogamy",EA015-2,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +11003,Ei15,EA015,"Segmented, no exogamy",EA015-2,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +11004,Ei16,EA015,"Segmented, no exogamy",EA015-2,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +11005,Ei17,EA015,?,EA015-NA,,,,,, +11006,Ei18,EA015,Demes,EA015-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +11007,Ei19,EA015,Agamous,EA015-3,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +11008,Ei2,EA015,"Segmented, no exogamy",EA015-2,,mills1922,,1920,EthnographicAtlas_1967_p90, +11009,Ei20,EA015,Clans,EA015-6,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +11010,Ei3,EA015,Demes,EA015-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +11011,Ei4,EA015,Agamous,EA015-3,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +11012,Ei5,EA015,"Segmented, no exogamy",EA015-2,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +11013,Ei6,EA015,Agamous,EA015-3,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +11014,Ei7,EA015,Agamous,EA015-3,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +11015,Ei8,EA015,"Segmented, no exogamy",EA015-2,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +11016,Ei9,EA015,Agamous,EA015-3,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +11017,Ej1,EA015,"Segmented, no exogamy",EA015-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +11018,Ej10,EA015,"Segmented, no exogamy",EA015-2,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +11019,Ej11,EA015,Agamous,EA015-3,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +11020,Ej12,EA015,"Segmented, no exogamy",EA015-2,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +11021,Ej13,EA015,Clans,EA015-6,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +11022,Ej14,EA015,Agamous,EA015-3,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11023,Ej15,EA015,?,EA015-NA,,,,,, +11024,Ej16,EA015,Clans,EA015-6,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +11025,Ej2,EA015,"Segmented, no exogamy",EA015-2,The component long houses of a village are organized only in part on a kinship basis,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +11026,Ej3,EA015,Exogamous,EA015-4,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +11027,Ej4,EA015,"Segmented, no exogamy",EA015-2,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +11028,Ej5,EA015,Agamous,EA015-3,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +11029,Ej6,EA015,Agamous,EA015-3,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +11030,Ej7,EA015,Agamous,EA015-3,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +11031,Ej8,EA015,Agamous,EA015-3,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +11032,Ej9,EA015,Agamous,EA015-3,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +11033,Ia1,EA015,Agamous,EA015-3,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +11034,Ia10,EA015,"Segmented, no exogamy",EA015-2,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +11035,Ia11,EA015,Demes,EA015-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +11036,Ia12,EA015,Agamous,EA015-3,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +11037,Ia13,EA015,Agamous,EA015-3,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +11038,Ia14,EA015,Agamous,EA015-3,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +11039,Ia15,EA015,Exogamous,EA015-4,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +11040,Ia16,EA015,Agamous,EA015-3,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +11041,Ia17,EA015,?,EA015-NA,,,,,, +11042,Ia18,EA015,Agamous,EA015-3,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +11043,Ia2,EA015,Agamous,EA015-3,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +11044,Ia3,EA015,Agamous,EA015-3,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +11045,Ia4,EA015,Agamous,EA015-3,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +11046,Ia5,EA015,Agamous,EA015-3,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +11047,Ia6,EA015,Demes,EA015-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11048,Ia7,EA015,Demes,EA015-1,,fox1954,,1950,EthnographicAtlas_1967_p90, +11049,Ia8,EA015,Demes,EA015-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +11050,Ia9,EA015,"Segmented, no exogamy",EA015-2,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +11051,Ib1,EA015,Agamous,EA015-3,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11052,Ib2,EA015,Agamous,EA015-3,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11053,Ib3,EA015,"Segmented, no exogamy",EA015-2,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +11054,Ib4,EA015,Agamous,EA015-3,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +11055,Ib5,EA015,Demes,EA015-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +11056,Ib6,EA015,"Segmented, no exogamy",EA015-2,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +11057,Ib7,EA015,"Segmented, no exogamy",EA015-2,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +11058,Ib8,EA015,?,EA015-NA,,,,,, +11059,Ib9,EA015,?,EA015-NA,,,,,, +11060,Ic1,EA015,"Segmented, no exogamy",EA015-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11061,Ic10,EA015,Exogamous,EA015-4,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +11062,Ic11,EA015,"Segmented, no exogamy",EA015-2,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11063,Ic12,EA015,Agamous,EA015-3,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +11064,Ic13,EA015,Clans,EA015-6,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +11065,Ic2,EA015,Exogamous,EA015-4,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +11066,Ic3,EA015,"Segmented, no exogamy",EA015-2,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +11067,Ic4,EA015,?,EA015-NA,,,,,, +11068,Ic5,EA015,Agamous,EA015-3,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +11069,Ic6,EA015,Agamous,EA015-3,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +11070,Ic7,EA015,"Segmented, no exogamy",EA015-2,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +11071,Ic8,EA015,?,EA015-NA,,,,,, +11072,Ic9,EA015,Clans,EA015-6,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +11073,Id1,EA015,Clans,EA015-6,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +11074,Id10,EA015,Agamous,EA015-3,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +11075,Id11,EA015,Agamous,EA015-3,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +11076,Id12,EA015,Clans,EA015-6,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +11077,Id13,EA015,Clans,EA015-6,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +11078,Id2,EA015,Clans,EA015-6,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +11079,Id3,EA015,Agamous,EA015-3,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +11080,Id4,EA015,Exogamous,EA015-4,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +11081,Id5,EA015,Clans,EA015-6,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +11082,Id6,EA015,Clans,EA015-6,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +11083,Id7,EA015,Clans,EA015-6,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +11084,Id8,EA015,Exogamous,EA015-4,,roth1890,,1830,EthnographicAtlas_1967_p94, +11085,Id9,EA015,Clans,EA015-6,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +11086,Ie1,EA015,Clans,EA015-6,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11087,Ie10,EA015,"Segmented, no exogamy",EA015-2,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +11088,Ie11,EA015,Clans,EA015-6,,bowers1964,,1950,EthnographicAtlas_1967_p94, +11089,Ie12,EA015,Clans,EA015-6,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11090,Ie13,EA015,"Segmented, no exogamy",EA015-2,,landtman1927,,1920,EthnographicAtlas_1967_p94, +11091,Ie14,EA015,Clans,EA015-6,,haddon1908,,1900,EthnographicAtlas_1967_p94, +11092,Ie15,EA015,"Segmented, no exogamy",EA015-2,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11093,Ie16,EA015,Agamous,EA015-3,,williams194041,,1940,EthnographicAtlas_1967_p94, +11094,Ie17,EA015,Clans,EA015-6,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +11095,Ie18,EA015,"Segmented, no exogamy",EA015-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +11096,Ie19,EA015,"Segmented, no exogamy",EA015-2,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +11097,Ie2,EA015,Clans,EA015-6,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +11098,Ie20,EA015,Agamous,EA015-3,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +11099,Ie21,EA015,"Segmented, no exogamy",EA015-2,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +11100,Ie22,EA015,"Segmented, no exogamy",EA015-2,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +11101,Ie23,EA015,Clans,EA015-6,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +11102,Ie24,EA015,"Segmented, no exogamy",EA015-2,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +11103,Ie25,EA015,"Segmented, no exogamy",EA015-2,,williamson1912,,1920,EthnographicAtlas_1967_p94, +11104,Ie26,EA015,"Segmented, no exogamy",EA015-2,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +11105,Ie27,EA015,"Segmented, no exogamy",EA015-2,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +11106,Ie28,EA015,"Segmented, no exogamy",EA015-2,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +11107,Ie29,EA015,"Segmented, no exogamy",EA015-2,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11108,Ie3,EA015,"Segmented, no exogamy",EA015-2,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11109,Ie30,EA015,Agamous,EA015-3,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +11110,Ie31,EA015,Clans,EA015-6,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +11111,Ie32,EA015,"Segmented, no exogamy",EA015-2,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +11112,Ie33,EA015,"Segmented, no exogamy",EA015-2,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +11113,Ie34,EA015,?,EA015-NA,,,,,, +11114,Ie35,EA015,"Segmented, no exogamy",EA015-2,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +11115,Ie36,EA015,Agamous,EA015-3,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +11116,Ie37,EA015,Agamous,EA015-3,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +11117,Ie38,EA015,Agamous,EA015-3,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +11118,Ie39,EA015,Agamous,EA015-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +11119,Ie4,EA015,"Segmented, exogamy",EA015-5,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11120,Ie5,EA015,Clans,EA015-6,,williams1936,,1930,EthnographicAtlas_1967_p94, +11121,Ie6,EA015,"Segmented, no exogamy",EA015-2,,held1947,,1930,EthnographicAtlas_1967_p94, +11122,Ie7,EA015,Clans,EA015-6,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +11123,Ie8,EA015,"Segmented, no exogamy",EA015-2,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +11124,Ie9,EA015,"Segmented, no exogamy",EA015-2,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +11125,If1,EA015,"Segmented, no exogamy",EA015-2,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11126,If10,EA015,"Segmented, no exogamy",EA015-2,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +11127,If11,EA015,Agamous,EA015-3,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +11128,If12,EA015,"Segmented, no exogamy",EA015-2,,mason1954,,1940,EthnographicAtlas_1967_p98, +11129,If13,EA015,Agamous,EA015-3,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +11130,If14,EA015,"Segmented, no exogamy",EA015-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +11131,If15,EA015,"Segmented, no exogamy",EA015-2,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +11132,If16,EA015,"Segmented, no exogamy",EA015-2,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +11133,If17,EA015,Exogamous,EA015-4,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +11134,If2,EA015,"Segmented, no exogamy",EA015-2,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +11135,If3,EA015,"Segmented, no exogamy",EA015-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +11136,If4,EA015,"Segmented, no exogamy",EA015-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +11137,If5,EA015,Agamous,EA015-3,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +11138,If6,EA015,"Segmented, no exogamy",EA015-2,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +11139,If7,EA015,"Segmented, no exogamy",EA015-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +11140,If8,EA015,Agamous,EA015-3,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +11141,If9,EA015,Demes,EA015-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +11142,Ig1,EA015,"Segmented, no exogamy",EA015-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +11143,Ig10,EA015,"Segmented, no exogamy",EA015-2,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +11144,Ig11,EA015,Agamous,EA015-3,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +11145,Ig12,EA015,"Segmented, no exogamy",EA015-2,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +11146,Ig13,EA015,"Segmented, no exogamy",EA015-2,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +11147,Ig14,EA015,Agamous,EA015-3,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +11148,Ig15,EA015,?,EA015-NA,,,,,, +11149,Ig16,EA015,?,EA015-NA,,,,,, +11150,Ig17,EA015,"Segmented, no exogamy",EA015-2,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +11151,Ig18,EA015,Agamous,EA015-3,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +11152,Ig19,EA015,"Segmented, no exogamy",EA015-2,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +11153,Ig2,EA015,"Segmented, no exogamy",EA015-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +11154,Ig20,EA015,"Segmented, no exogamy",EA015-2,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +11155,Ig21,EA015,Clans,EA015-6,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +11156,Ig3,EA015,Exogamous,EA015-4,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +11157,Ig4,EA015,"Segmented, no exogamy",EA015-2,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +11158,Ig5,EA015,Clans,EA015-6,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +11159,Ig6,EA015,"Segmented, no exogamy",EA015-2,,ivens1927,,1900,EthnographicAtlas_1967_p98, +11160,Ig7,EA015,"Segmented, no exogamy",EA015-2,"Goodenough characterizes the local group as a ""nodal kindred,"" composed basically of sibling sets linked by consanguineal or affinal ties",chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +11161,Ig8,EA015,"Segmented, no exogamy",EA015-2,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +11162,Ig9,EA015,"Segmented, no exogamy",EA015-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +11163,Ih1,EA015,"Segmented, no exogamy",EA015-2,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +11164,Ih10,EA015,Clans,EA015-6,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11165,Ih11,EA015,Clans,EA015-6,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +11166,Ih12,EA015,Clans,EA015-6,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +11167,Ih13,EA015,"Segmented, no exogamy",EA015-2,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +11168,Ih14,EA015,Exogamous,EA015-4,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +11169,Ih2,EA015,Clans,EA015-6,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11170,Ih3,EA015,"Segmented, no exogamy",EA015-2,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +11171,Ih4,EA015,Clans,EA015-6,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11172,Ih5,EA015,Clans,EA015-6,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +11173,Ih6,EA015,"Segmented, no exogamy",EA015-2,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +11174,Ih7,EA015,Clans,EA015-6,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +11175,Ih8,EA015,"Segmented, no exogamy",EA015-2,"Formerly clans (code ""6"")",quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +11176,Ih9,EA015,Agamous,EA015-3,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11177,Ii1,EA015,"Segmented, no exogamy",EA015-2,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +11178,Ii10,EA015,?,EA015-NA,,,,,, +11179,Ii12,EA015,"Segmented, no exogamy",EA015-2,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11180,Ii13,EA015,?,EA015-NA,,,,,, +11181,Ii14,EA015,"Segmented, no exogamy",EA015-2,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +11182,Ii2,EA015,Agamous,EA015-3,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +11183,Ii3,EA015,"Segmented, no exogamy",EA015-2,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +11184,Ii4,EA015,"Segmented, no exogamy",EA015-2,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +11185,Ii5,EA015,Agamous,EA015-3,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to Col 16, not Col 19 as stated in Gray (1999)" +11186,Ii6,EA015,"Segmented, no exogamy",EA015-2,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +11187,Ii7,EA015,Agamous,EA015-3,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +11188,Ii8,EA015,?,EA015-NA,,,,,, +11189,Ii9,EA015,"Segmented, no exogamy",EA015-2,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +11190,Ij1,EA015,Exogamous,EA015-4,,buck1934,,1820,EthnographicAtlas_1967_p98, +11191,Ij10,EA015,?,EA015-NA,,,,,, +11192,Ij2,EA015,"Segmented, no exogamy",EA015-2,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +11193,Ij3,EA015,Agamous,EA015-3,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +11194,Ij4,EA015,?,EA015-NA,,,,,, +11195,Ij5,EA015,Agamous,EA015-3,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +11196,Ij6,EA015,"Segmented, no exogamy",EA015-2,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +11197,Ij7,EA015,Agamous,EA015-3,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +11198,Ij8,EA015,Agamous,EA015-3,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +11199,Ij9,EA015,?,EA015-NA,,,,,, +11200,Na1,EA015,Agamous,EA015-3,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +11201,Na10,EA015,Agamous,EA015-3,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +11202,Na11,EA015,"Segmented, no exogamy",EA015-2,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +11203,Na12,EA015,Agamous,EA015-3,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +11204,Na13,EA015,Agamous,EA015-3,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +11205,Na14,EA015,Agamous,EA015-3,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +11206,Na15,EA015,Agamous,EA015-3,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +11207,Na16,EA015,Agamous,EA015-3,,osgood1931,,1860,EthnographicAtlas_1967_p102, +11208,Na17,EA015,Agamous,EA015-3,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11209,Na19,EA015,Agamous,EA015-3,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +11210,Na2,EA015,Agamous,EA015-3,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +11211,Na20,EA015,Agamous,EA015-3,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +11212,Na21,EA015,Agamous,EA015-3,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +11213,Na22,EA015,Exogamous,EA015-4,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +11214,Na23,EA015,Agamous,EA015-3,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +11215,Na24,EA015,Agamous,EA015-3,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +11216,Na25,EA015,Agamous,EA015-3,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +11217,Na26,EA015,Agamous,EA015-3,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +11218,Na27,EA015,Exogamous,EA015-4,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +11219,Na28,EA015,?,EA015-NA,,,,,, +11220,Na29,EA015,Demes,EA015-1,,goddard1916,,1850,EthnographicAtlas_1967_p102, +11221,Na3,EA015,Demes,EA015-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +11222,Na30,EA015,Agamous,EA015-3,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +11223,Na31,EA015,Agamous,EA015-3,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +11224,Na32,EA015,Agamous,EA015-3,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +11225,Na33,EA015,Agamous,EA015-3,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +11226,Na34,EA015,Clans,EA015-6,"The ""co-residential group"" approximates a patri-clan",dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +11227,Na35,EA015,?,EA015-NA,,,,,, +11228,Na36,EA015,Agamous,EA015-3,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +11229,Na37,EA015,Agamous,EA015-3,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +11230,Na38,EA015,Exogamous,EA015-4,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +11231,Na39,EA015,Clans,EA015-6,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +11232,Na4,EA015,"Segmented, no exogamy",EA015-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +11233,Na40,EA015,?,EA015-NA,,,,,, +11234,Na41,EA015,Agamous,EA015-3,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +11235,Na42,EA015,?,EA015-NA,,,,,, +11236,Na43,EA015,Agamous,EA015-3,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +11237,Na44,EA015,Agamous,EA015-3,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +11238,Na45,EA015,Agamous,EA015-3,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +11239,Na5,EA015,Agamous,EA015-3,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +11240,Na6,EA015,Agamous,EA015-3,,lantis1946,,1930,EthnographicAtlas_1967_p102, +11241,Na7,EA015,Agamous,EA015-3,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +11242,Na8,EA015,Agamous,EA015-3,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +11243,Na9,EA015,Agamous,EA015-3,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11244,Nb1,EA015,Clans,EA015-6,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +11245,Nb10,EA015,Agamous,EA015-3,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +11246,Nb11,EA015,Exogamous,EA015-4,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +11247,Nb12,EA015,Exogamous,EA015-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +11248,Nb13,EA015,Exogamous,EA015-4,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +11249,Nb14,EA015,Exogamous,EA015-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +11250,Nb15,EA015,Exogamous,EA015-4,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +11251,Nb16,EA015,Exogamous,EA015-4,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +11252,Nb17,EA015,Agamous,EA015-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +11253,Nb18,EA015,Exogamous,EA015-4,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +11254,Nb19,EA015,?,EA015-NA,,,,,, +11255,Nb2,EA015,Exogamous,EA015-4,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +11256,Nb20,EA015,Exogamous,EA015-4,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +11257,Nb21,EA015,Exogamous,EA015-4,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +11258,Nb22,EA015,Clans,EA015-6,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +11259,Nb23,EA015,Agamous,EA015-3,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +11260,Nb24,EA015,Exogamous,EA015-4,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +11261,Nb25,EA015,Exogamous,EA015-4,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +11262,Nb26,EA015,Exogamous,EA015-4,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +11263,Nb27,EA015,Exogamous,EA015-4,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +11264,Nb28,EA015,Exogamous,EA015-4,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +11265,Nb29,EA015,Exogamous,EA015-4,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +11266,Nb3,EA015,Exogamous,EA015-4,The village tends to be a localized ramage,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +11267,Nb30,EA015,Exogamous,EA015-4,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +11268,Nb31,EA015,Clans,EA015-6,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +11269,Nb32,EA015,Exogamous,EA015-4,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +11270,Nb33,EA015,Agamous,EA015-3,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +11271,Nb34,EA015,Exogamous,EA015-4,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +11272,Nb35,EA015,Exogamous,EA015-4,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +11273,Nb36,EA015,Exogamous,EA015-4,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +11274,Nb37,EA015,Exogamous,EA015-4,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +11275,Nb38,EA015,Exogamous,EA015-4,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +11276,Nb39,EA015,Agamous,EA015-3,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +11277,Nb4,EA015,Exogamous,EA015-4,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +11278,Nb5,EA015,Agamous,EA015-3,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +11279,Nb6,EA015,Clans,EA015-6,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +11280,Nb7,EA015,Agamous,EA015-3,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +11281,Nb8,EA015,Agamous,EA015-3,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +11282,Nb9,EA015,Agamous,EA015-3,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +11283,Nc1,EA015,Clans,EA015-6,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +11284,Nc10,EA015,Agamous,EA015-3,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +11285,Nc11,EA015,Agamous,EA015-3,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +11286,Nc12,EA015,Agamous,EA015-3,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +11287,Nc13,EA015,Agamous,EA015-3,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +11288,Nc14,EA015,Exogamous,EA015-4,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +11289,Nc15,EA015,Exogamous,EA015-4,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +11290,Nc16,EA015,Agamous,EA015-3,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +11291,Nc17,EA015,Agamous,EA015-3,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +11292,Nc18,EA015,Agamous,EA015-3,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +11293,Nc19,EA015,Agamous,EA015-3,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +11294,Nc2,EA015,Agamous,EA015-3,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +11295,Nc20,EA015,Agamous,EA015-3,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +11296,Nc21,EA015,Agamous,EA015-3,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +11297,Nc22,EA015,Agamous,EA015-3,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +11298,Nc23,EA015,Agamous,EA015-3,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +11299,Nc24,EA015,Clans,EA015-6,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +11300,Nc25,EA015,Agamous,EA015-3,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +11301,Nc26,EA015,?,EA015-NA,,,,,, +11302,Nc27,EA015,Agamous,EA015-3,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +11303,Nc28,EA015,Agamous,EA015-3,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +11304,Nc29,EA015,Clans,EA015-6,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +11305,Nc3,EA015,"Segmented, no exogamy",EA015-2,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +11306,Nc30,EA015,Clans,EA015-6,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +11307,Nc31,EA015,Clans,EA015-6,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +11308,Nc32,EA015,Clans,EA015-6,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +11309,Nc33,EA015,Clans,EA015-6,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +11310,Nc34,EA015,Clans,EA015-6,,meigs1939,,1880,EthnographicAtlas_1967_p106, +11311,Nc4,EA015,Exogamous,EA015-4,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +11312,Nc5,EA015,Clans,EA015-6,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +11313,Nc6,EA015,Clans,EA015-6,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +11314,Nc7,EA015,Agamous,EA015-3,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +11315,Nc8,EA015,Agamous,EA015-3,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +11316,Nc9,EA015,Agamous,EA015-3,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +11317,Nd1,EA015,Exogamous,EA015-4,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +11318,Nd10,EA015,Exogamous,EA015-4,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +11319,Nd11,EA015,Agamous,EA015-3,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +11320,Nd12,EA015,Agamous,EA015-3,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +11321,Nd13,EA015,Agamous,EA015-3,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +11322,Nd14,EA015,Agamous,EA015-3,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +11323,Nd15,EA015,Demes,EA015-1,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +11324,Nd16,EA015,Agamous,EA015-3,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +11325,Nd17,EA015,Agamous,EA015-3,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +11326,Nd18,EA015,Agamous,EA015-3,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +11327,Nd19,EA015,Exogamous,EA015-4,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +11328,Nd2,EA015,Agamous,EA015-3,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +11329,Nd20,EA015,Exogamous,EA015-4,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +11330,Nd21,EA015,?,EA015-NA,,,,,, +11331,Nd22,EA015,Agamous,EA015-3,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +11332,Nd23,EA015,?,EA015-NA,,,,,, +11333,Nd24,EA015,Agamous,EA015-3,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +11334,Nd25,EA015,?,EA015-NA,,,,,, +11335,Nd26,EA015,?,EA015-NA,,,,,, +11336,Nd27,EA015,Agamous,EA015-3,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +11337,Nd28,EA015,?,EA015-NA,,,,,, +11338,Nd29,EA015,Agamous,EA015-3,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +11339,Nd3,EA015,Demes,EA015-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +11340,Nd30,EA015,Exogamous,EA015-4,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +11341,Nd31,EA015,Agamous,EA015-3,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +11342,Nd32,EA015,Agamous,EA015-3,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +11343,Nd33,EA015,Agamous,EA015-3,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +11344,Nd34,EA015,?,EA015-NA,,,,,, +11345,Nd35,EA015,Agamous,EA015-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +11346,Nd36,EA015,Agamous,EA015-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +11347,Nd37,EA015,Agamous,EA015-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +11348,Nd38,EA015,Agamous,EA015-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +11349,Nd39,EA015,Agamous,EA015-3,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +11350,Nd4,EA015,Agamous,EA015-3,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +11351,Nd40,EA015,Agamous,EA015-3,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +11352,Nd41,EA015,Agamous,EA015-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +11353,Nd42,EA015,Agamous,EA015-3,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +11354,Nd43,EA015,Agamous,EA015-3,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +11355,Nd44,EA015,Agamous,EA015-3,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +11356,Nd45,EA015,Agamous,EA015-3,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +11357,Nd46,EA015,Agamous,EA015-3,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +11358,Nd47,EA015,Agamous,EA015-3,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +11359,Nd48,EA015,Agamous,EA015-3,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +11360,Nd49,EA015,?,EA015-NA,,,,,, +11361,Nd5,EA015,Demes,EA015-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +11362,Nd50,EA015,Agamous,EA015-3,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +11363,Nd51,EA015,?,EA015-NA,,,,,, +11364,Nd52,EA015,Agamous,EA015-3,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +11365,Nd53,EA015,Agamous,EA015-3,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +11366,Nd54,EA015,Agamous,EA015-3,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11367,Nd55,EA015,Agamous,EA015-3,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +11368,Nd56,EA015,?,EA015-NA,,,,,, +11369,Nd57,EA015,?,EA015-NA,,,,,, +11370,Nd58,EA015,Agamous,EA015-3,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +11371,Nd59,EA015,?,EA015-NA,,,,,, +11372,Nd6,EA015,Agamous,EA015-3,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +11373,Nd60,EA015,?,EA015-NA,,,,,, +11374,Nd61,EA015,?,EA015-NA,,,,,, +11375,Nd62,EA015,Agamous,EA015-3,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +11376,Nd63,EA015,Exogamous,EA015-4,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +11377,Nd64,EA015,Agamous,EA015-3,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +11378,Nd65,EA015,Agamous,EA015-3,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +11379,Nd66,EA015,Agamous,EA015-3,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +11380,Nd67,EA015,Agamous,EA015-3,,gifford1936,,1870,EthnographicAtlas_1967_p110, +11381,Nd7,EA015,Agamous,EA015-3,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +11382,Nd8,EA015,Agamous,EA015-3,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +11383,Nd9,EA015,Exogamous,EA015-4,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +11384,Ne1,EA015,Exogamous,EA015-4,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +11385,Ne10,EA015,?,EA015-NA,,,,,, +11386,Ne11,EA015,Exogamous,EA015-4,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +11387,Ne12,EA015,Exogamous,EA015-4,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +11388,Ne13,EA015,Exogamous,EA015-4,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +11389,Ne14,EA015,Agamous,EA015-3,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +11390,Ne15,EA015,Agamous,EA015-3,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +11391,Ne16,EA015,?,EA015-NA,,,,,, +11392,Ne17,EA015,Agamous,EA015-3,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +11393,Ne18,EA015,Exogamous,EA015-4,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +11394,Ne19,EA015,Agamous,EA015-3,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +11395,Ne2,EA015,Agamous,EA015-3,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +11396,Ne20,EA015,?,EA015-NA,,,,,, +11397,Ne21,EA015,?,EA015-NA,,,,,, +11398,Ne3,EA015,Demes,EA015-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +11399,Ne4,EA015,Exogamous,EA015-4,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +11400,Ne5,EA015,Exogamous,EA015-4,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +11401,Ne6,EA015,Agamous,EA015-3,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +11402,Ne7,EA015,Agamous,EA015-3,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +11403,Ne8,EA015,Exogamous,EA015-4,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +11404,Ne9,EA015,Exogamous,EA015-4,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +11405,Nf10,EA015,?,EA015-NA,,,,,, +11406,Nf11,EA015,?,EA015-NA,,,,,, +11407,Nf12,EA015,?,EA015-NA,,,,,, +11408,Nf13,EA015,Agamous,EA015-3,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11409,Nf14,EA015,Agamous,EA015-3,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +11410,Nf15,EA015,Agamous,EA015-3,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +11411,Nf2,EA015,"Segmented, no exogamy",EA015-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +11412,Nf3,EA015,"Segmented, no exogamy",EA015-2,At least in camps,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +11413,Nf4,EA015,?,EA015-NA,,,,,, +11414,Nf5,EA015,Agamous,EA015-3,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +11415,Nf6,EA015,Demes,EA015-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +11416,Nf7,EA015,Agamous,EA015-3,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11417,Nf8,EA015,Agamous,EA015-3,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +11418,Nf9,EA015,Clans,EA015-6,Specifically reported by Radin,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +11419,Ng1,EA015,"Segmented, no exogamy",EA015-2,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +11420,Ng10,EA015,"Segmented, no exogamy",EA015-2,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +11421,Ng11,EA015,Agamous,EA015-3,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +11422,Ng12,EA015,Agamous,EA015-3,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +11423,Ng13,EA015,?,EA015-NA,,,,,, +11424,Ng14,EA015,Agamous,EA015-3,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +11425,Ng15,EA015,?,EA015-NA,,,,,, +11426,Ng2,EA015,Clans,EA015-6,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +11427,Ng3,EA015,"Segmented, no exogamy",EA015-2,"Probably originally 'segmented communities, no exogamy' (code ""2"")",bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +11428,Ng4,EA015,Agamous,EA015-3,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +11429,Ng5,EA015,"Segmented, no exogamy",EA015-2,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +11430,Ng6,EA015,"Segmented, no exogamy",EA015-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +11431,Ng7,EA015,Agamous,EA015-3,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +11432,Ng8,EA015,"Segmented, no exogamy",EA015-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +11433,Ng9,EA015,?,EA015-NA,,,,,, +11434,Nh1,EA015,Agamous,EA015-3,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +11435,Nh10,EA015,Demes,EA015-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +11436,Nh11,EA015,Demes,EA015-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +11437,Nh12,EA015,Demes,EA015-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +11438,Nh13,EA015,Demes,EA015-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +11439,Nh14,EA015,Agamous,EA015-3,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +11440,Nh15,EA015,Agamous,EA015-3,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +11441,Nh16,EA015,Agamous,EA015-3,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11442,Nh17,EA015,"Segmented, no exogamy",EA015-2,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +11443,Nh18,EA015,Agamous,EA015-3,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11444,Nh19,EA015,Agamous,EA015-3,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +11445,Nh2,EA015,"Segmented, no exogamy",EA015-2,,dozier1954,,1950,EthnographicAtlas_1967_p114, +11446,Nh20,EA015,Agamous,EA015-3,,gifford1931,,1860,EthnographicAtlas_1967_p114, +11447,Nh21,EA015,Agamous,EA015-3,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11448,Nh22,EA015,Clans,EA015-6,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +11449,Nh23,EA015,Agamous,EA015-3,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +11450,Nh24,EA015,Agamous,EA015-3,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +11451,Nh25,EA015,Demes,EA015-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +11452,Nh26,EA015,Agamous,EA015-3,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +11453,Nh27,EA015,Demes,EA015-1,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +11454,Nh3,EA015,Agamous,EA015-3,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +11455,Nh4,EA015,"Segmented, no exogamy",EA015-2,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +11456,Nh5,EA015,Agamous,EA015-3,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +11457,Nh6,EA015,Demes,EA015-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +11458,Nh7,EA015,Demes,EA015-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +11459,Nh8,EA015,Demes,EA015-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +11460,Nh9,EA015,Demes,EA015-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +11461,Ni1,EA015,Demes,EA015-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +11462,Ni2,EA015,Agamous,EA015-3,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +11463,Ni3,EA015,Demes,EA015-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +11464,Ni4,EA015,Agamous,EA015-3,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +11465,Ni5,EA015,Agamous,EA015-3,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +11466,Ni6,EA015,Agamous,EA015-3,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +11467,Ni7,EA015,Agamous,EA015-3,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +11468,Ni8,EA015,?,EA015-NA,,,,,, +11469,Ni9,EA015,?,EA015-NA,,,,,, +11470,Nj1,EA015,Demes,EA015-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11471,Nj10,EA015,Demes,EA015-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11472,Nj11,EA015,?,EA015-NA,,,,,, +11473,Nj12,EA015,?,EA015-NA,,,,,, +11474,Nj13,EA015,?,EA015-NA,,,,,, +11475,Nj14,EA015,"Segmented, no exogamy",EA015-2,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +11476,Nj2,EA015,"Segmented, no exogamy",EA015-2,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +11477,Nj3,EA015,?,EA015-NA,,,,,, +11478,Nj4,EA015,?,EA015-NA,,,,,, +11479,Nj5,EA015,Agamous,EA015-3,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +11480,Nj6,EA015,Demes,EA015-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +11481,Nj7,EA015,"Segmented, no exogamy",EA015-2,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11482,Nj8,EA015,"Segmented, no exogamy",EA015-2,,foster1948,,1500,EthnographicAtlas_1967_p118, +11483,Nj9,EA015,Clans,EA015-6,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +11484,Sa1,EA015,Demes,EA015-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +11485,Sa10,EA015,Clans,EA015-6,"Tozzer reports that ""the members of one line of descent generally live in the same neighborhood""",baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +11486,Sa11,EA015,"Segmented, no exogamy",EA015-2,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +11487,Sa12,EA015,Demes,EA015-1,,stone1948,,1948,EthnographicAtlas_1967_p118, +11488,Sa13,EA015,"Segmented, no exogamy",EA015-2,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +11489,Sa14,EA015,?,EA015-NA,,,,,, +11490,Sa15,EA015,?,EA015-NA,,,,,, +11491,Sa16,EA015,Agamous,EA015-3,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +11492,Sa17,EA015,"Segmented, no exogamy",EA015-2,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +11493,Sa2,EA015,Agamous,EA015-3,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11494,Sa3,EA015,Exogamous,EA015-4,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +11495,Sa4,EA015,Demes,EA015-1,But local exogamy occurs in default of marriageable persons within the local community,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +11496,Sa5,EA015,Agamous,EA015-3,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +11497,Sa6,EA015,Agamous,EA015-3,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +11498,Sa7,EA015,Agamous,EA015-3,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +11499,Sa8,EA015,"Segmented, no exogamy",EA015-2,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +11500,Sa9,EA015,Agamous,EA015-3,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +11501,Sb1,EA015,"Segmented, no exogamy",EA015-2,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +11502,Sb2,EA015,Agamous,EA015-3,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +11503,Sb3,EA015,Agamous,EA015-3,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +11504,Sb4,EA015,Agamous,EA015-3,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +11505,Sb5,EA015,Demes,EA015-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +11506,Sb6,EA015,Agamous,EA015-3,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +11507,Sb7,EA015,Agamous,EA015-3,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +11508,Sb8,EA015,?,EA015-NA,,,,,, +11509,Sb9,EA015,Agamous,EA015-3,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +11510,Sc1,EA015,Demes,EA015-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +11511,Sc10,EA015,Agamous,EA015-3,"But Kirchhoff reports 'exogamous communities without specific structure of clans' (code ""4"")",coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +11512,Sc11,EA015,Agamous,EA015-3,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +11513,Sc12,EA015,Agamous,EA015-3,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +11514,Sc13,EA015,Demes,EA015-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +11515,Sc14,EA015,?,EA015-NA,,,,,, +11516,Sc15,EA015,?,EA015-NA,,,,,, +11517,Sc16,EA015,Exogamous,EA015-4,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +11518,Sc17,EA015,Exogamous,EA015-4,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +11519,Sc18,EA015,Clans,EA015-6,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +11520,Sc2,EA015,Demes,EA015-1,,leedsnd,,1950,EthnographicAtlas_1967_p118, +11521,Sc3,EA015,Agamous,EA015-3,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +11522,Sc4,EA015,Agamous,EA015-3,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +11523,Sc5,EA015,Exogamous,EA015-4,,farabee1918,,1900,EthnographicAtlas_1967_p118, +11524,Sc6,EA015,"Segmented, no exogamy",EA015-2,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11525,Sc7,EA015,Exogamous,EA015-4,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +11526,Sc8,EA015,Exogamous,EA015-4,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +11527,Sc9,EA015,Demes,EA015-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +11528,Sd1,EA015,Agamous,EA015-3,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11529,Sd2,EA015,Demes,EA015-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +11530,Sd3,EA015,?,EA015-NA,,,,,, +11531,Sd4,EA015,Agamous,EA015-3,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +11532,Sd5,EA015,?,EA015-NA,,,,,, +11533,Sd6,EA015,Demes,EA015-1,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +11534,Sd7,EA015,Agamous,EA015-3,,fock1963,,1950,EthnographicAtlas_1967_p118, +11535,Sd8,EA015,"Segmented, no exogamy",EA015-2,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +11536,Sd9,EA015,"Segmented, no exogamy",EA015-2,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11537,Se1,EA015,"Segmented, no exogamy",EA015-2,"The entry assumes that the matrilocal extended families are organized around matrilineage cores; if there are actually no lineages, the entry should be U; Holmberg does not report lineages but admits, in personal discussion, that he may conceivably have overlooked their existence",holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +11538,Se10,EA015,?,EA015-NA,,,,,, +11539,Se11,EA015,Agamous,EA015-3,,prost1965,,1960,EthnographicAtlas_1967_p122, +11540,Se12,EA015,Clans,EA015-6,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +11541,Se2,EA015,Clans,EA015-6,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +11542,Se3,EA015,Agamous,EA015-3,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +11543,Se4,EA015,Clans,EA015-6,,fejos1943,,1940,EthnographicAtlas_1967_p118, +11544,Se5,EA015,Clans,EA015-6,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +11545,Se6,EA015,Clans,EA015-6,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +11546,Se7,EA015,Agamous,EA015-3,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11547,Se8,EA015,Exogamous,EA015-4,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +11548,Se9,EA015,Exogamous,EA015-4,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +11549,Sf1,EA015,Demes,EA015-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +11550,Sf2,EA015,Demes,EA015-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +11551,Sf3,EA015,Demes,EA015-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +11552,Sf4,EA015,Demes,EA015-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +11553,Sf5,EA015,?,EA015-NA,,,,,, +11554,Sf6,EA015,?,EA015-NA,,,,,, +11555,Sf7,EA015,Agamous,EA015-3,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +11556,Sf8,EA015,?,EA015-NA,,,,,, +11557,Sf9,EA015,Demes,EA015-1,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +11558,Sg1,EA015,Exogamous,EA015-4,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +11559,Sg2,EA015,"Segmented, exogamy",EA015-5,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11560,Sg3,EA015,Exogamous,EA015-4,Entry would be 'clans' if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock (1965c)),baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +11561,Sg4,EA015,Agamous,EA015-3,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +11562,Sg5,EA015,Agamous,EA015-3,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11563,Sh1,EA015,Exogamous,EA015-4,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +11564,Sh2,EA015,Demes,EA015-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +11565,Sh3,EA015,Agamous,EA015-3,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +11566,Sh4,EA015,?,EA015-NA,,,,,, +11567,Sh5,EA015,Exogamous,EA015-4,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +11568,Sh6,EA015,Agamous,EA015-3,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +11569,Sh7,EA015,Agamous,EA015-3,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +11570,Sh8,EA015,Agamous,EA015-3,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +11571,Sh9,EA015,Agamous,EA015-3,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +11572,Si1,EA015,"Segmented, no exogamy",EA015-2,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11573,Si10,EA015,Agamous,EA015-3,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +11574,Si2,EA015,Agamous,EA015-3,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +11575,Si3,EA015,Demes,EA015-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11576,Si4,EA015,Agamous,EA015-3,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +11577,Si5,EA015,Agamous,EA015-3,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +11578,Si6,EA015,?,EA015-NA,,,,,, +11579,Si7,EA015,?,EA015-NA,,,,,, +11580,Si8,EA015,Demes,EA015-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +11581,Si9,EA015,?,EA015-NA,,,,,, +11582,Sj1,EA015,Demes,EA015-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +11583,Sj10,EA015,Agamous,EA015-3,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11584,Sj11,EA015,Agamous,EA015-3,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +11585,Sj2,EA015,"Segmented, no exogamy",EA015-2,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +11586,Sj3,EA015,Demes,EA015-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +11587,Sj4,EA015,"Segmented, no exogamy",EA015-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +11588,Sj5,EA015,Exogamous,EA015-4,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +11589,Sj6,EA015,Demes,EA015-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11590,Sj7,EA015,"Segmented, no exogamy",EA015-2,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +11591,Sj8,EA015,Agamous,EA015-3,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +11592,Sj9,EA015,Demes,EA015-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +11593,ch12,EA015,Demes,EA015-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +11594,ch13,EA015,Agamous,EA015-3,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +11595,ch14,EA015,"Segmented, no exogamy",EA015-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +11596,ch15,EA015,Agamous,EA015-3,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +11597,ch16,EA015,Agamous,EA015-3,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +11598,ch17,EA015,Demes,EA015-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +11599,ch18,EA015,Agamous,EA015-3,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +11600,ch19,EA015,"Segmented, no exogamy",EA015-2,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +11601,ch20,EA015,Agamous,EA015-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +11602,ch21,EA015,Agamous,EA015-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +11603,ch22,EA015,Demes,EA015-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +11604,ch23,EA015,Demes,EA015-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +11605,ch24,EA015,Clans,EA015-6,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +11606,ch25,EA015,Agamous,EA015-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +11607,ch26,EA015,Exogamous,EA015-4,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +11608,ch27,EA015,?,EA015-NA,,,,,, +11609,ch28,EA015,Agamous,EA015-3,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +11610,ec12,EA015,Demes,EA015-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +11611,ec13,EA015,Agamous,EA015-3,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +11612,ec14,EA015,Demes,EA015-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +11613,ec15,EA015,Exogamous,EA015-4,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +11614,ec16,EA015,Clans,EA015-6,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +11615,ec17,EA015,Clans,EA015-6,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +11616,ec18,EA015,Clans,EA015-6,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +11617,ec19,EA015,Clans,EA015-6,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +11618,ec20,EA015,Clans,EA015-6,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +11619,ec21,EA015,Clans,EA015-6,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +11620,Aa1,EA016,No exogamous clans,EA016-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +11621,Aa2,EA016,Clans,EA016-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +11622,Aa3,EA016,Clans,EA016-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +11623,Aa4,EA016,No exogamous clans,EA016-9,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +11624,Aa5,EA016,No exogamous clans,EA016-9,Entry follows Schebesta; Czekanowski denies clans,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +11625,Aa6,EA016,Clans,EA016-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +11626,Aa7,EA016,No exogamous clans,EA016-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +11627,Aa8,EA016,?,EA016-NA,,,,,, +11628,Aa9,EA016,No exogamous clans,EA016-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +11629,Ab1,EA016,No exogamous clans,EA016-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +11630,Ab10,EA016,No exogamous clans,EA016-9,,hunter1936,,1936,EthnographicAtlas_1967_p62, +11631,Ab11,EA016,No exogamous clans,EA016-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +11632,Ab12,EA016,Clans,EA016-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +11633,Ab13,EA016,No exogamous clans,EA016-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +11634,Ab14,EA016,Clans,EA016-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +11635,Ab15,EA016,Clans,EA016-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +11636,Ab16,EA016,Clans,EA016-1,,earthy1933,,1930,EthnographicAtlas_1967_p62, +11637,Ab17,EA016,Clans,EA016-1,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +11638,Ab18,EA016,Clans,EA016-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +11639,Ab19,EA016,?,EA016-NA,,,,,, +11640,Ab2,EA016,Clans with barrios,EA016-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +11641,Ab20,EA016,?,EA016-NA,,,,,, +11642,Ab21a,EA016,Clans,EA016-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +11643,Ab21b,EA016,?,EA016-NA,,,,,, +11644,Ab22,EA016,Clans,EA016-1,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +11645,Ab3,EA016,No exogamous clans,EA016-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +11646,Ab4,EA016,Clans,EA016-1,,junod1927,,1920,EthnographicAtlas_1967_p62, +11647,Ab5,EA016,Clans with barrios,EA016-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +11648,Ab6,EA016,No exogamous clans,EA016-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +11649,Ab7,EA016,Clans,EA016-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +11650,Ab8,EA016,No exogamous clans,EA016-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +11651,Ab9,EA016,No exogamous clans,EA016-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +11652,Ac1,EA016,No exogamous clans,EA016-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +11653,Ac10,EA016,No exogamous clans,EA016-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +11654,Ac11,EA016,Clans,EA016-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +11655,Ac12,EA016,Clans,EA016-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +11656,Ac13,EA016,No exogamous clans,EA016-9,One lineage is predominant in each community,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +11657,Ac14,EA016,Clans,EA016-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +11658,Ac15,EA016,Clans,EA016-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +11659,Ac16,EA016,Clans with barrios,EA016-2,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +11660,Ac17,EA016,No exogamous clans,EA016-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +11661,Ac18,EA016,Clans,EA016-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +11662,Ac19,EA016,No exogamous clans,EA016-9,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +11663,Ac2,EA016,Clans with barrios,EA016-2,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +11664,Ac20,EA016,Clans,EA016-1,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +11665,Ac21,EA016,Clans,EA016-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +11666,Ac22,EA016,No exogamous clans,EA016-9,,mertens1935,,1930,EthnographicAtlas_1967_p62, +11667,Ac23,EA016,No exogamous clans,EA016-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +11668,Ac24,EA016,Clans,EA016-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +11669,Ac25,EA016,No exogamous clans,EA016-9,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +11670,Ac26,EA016,No exogamous clans,EA016-9,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +11671,Ac27,EA016,Clans,EA016-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +11672,Ac28,EA016,No exogamous clans,EA016-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +11673,Ac29,EA016,No exogamous clans,EA016-9,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +11674,Ac3,EA016,No exogamous clans,EA016-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +11675,Ac30,EA016,No exogamous clans,EA016-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +11676,Ac31,EA016,No exogamous clans,EA016-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +11677,Ac32,EA016,No exogamous clans,EA016-9,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +11678,Ac33,EA016,Clans,EA016-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +11679,Ac34,EA016,No exogamous clans,EA016-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +11680,Ac35,EA016,?,EA016-NA,,,,,, +11681,Ac36,EA016,No exogamous clans,EA016-9,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +11682,Ac37,EA016,No exogamous clans,EA016-9,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +11683,Ac38,EA016,No exogamous clans,EA016-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +11684,Ac39,EA016,No exogamous clans,EA016-9,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +11685,Ac4,EA016,No exogamous clans,EA016-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +11686,Ac40,EA016,No exogamous clans,EA016-9,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +11687,Ac41,EA016,No exogamous clans,EA016-9,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +11688,Ac42,EA016,No exogamous clans,EA016-9,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +11689,Ac43,EA016,?,EA016-NA,,,,,, +11690,Ac5,EA016,No exogamous clans,EA016-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +11691,Ac6,EA016,Clans,EA016-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +11692,Ac7,EA016,No exogamous clans,EA016-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +11693,Ac8,EA016,Clans,EA016-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +11694,Ac9,EA016,No exogamous clans,EA016-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +11695,Ad1,EA016,No exogamous clans,EA016-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +11696,Ad10,EA016,Clans,EA016-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +11697,Ad11,EA016,No exogamous clans,EA016-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +11698,Ad12,EA016,Clans,EA016-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +11699,Ad13,EA016,Clans,EA016-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +11700,Ad14,EA016,No exogamous clans,EA016-9,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +11701,Ad15,EA016,Clans,EA016-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +11702,Ad16,EA016,No exogamous clans,EA016-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +11703,Ad17,EA016,No exogamous clans,EA016-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +11704,Ad18,EA016,?,EA016-NA,,,,,, +11705,Ad19,EA016,?,EA016-NA,,,,,, +11706,Ad2,EA016,No exogamous clans,EA016-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +11707,Ad20,EA016,No exogamous clans,EA016-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +11708,Ad21,EA016,?,EA016-NA,,,,,, +11709,Ad22,EA016,No exogamous clans,EA016-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +11710,Ad23,EA016,?,EA016-NA,,,,,, +11711,Ad24,EA016,Clans,EA016-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +11712,Ad25,EA016,?,EA016-NA,,,,,, +11713,Ad26,EA016,Clans,EA016-1,,sick1916,,1910,EthnographicAtlas_1967_p66, +11714,Ad27,EA016,No exogamous clans,EA016-9,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +11715,Ad28,EA016,?,EA016-NA,,,,,, +11716,Ad29,EA016,?,EA016-NA,,,,,, +11717,Ad3,EA016,Clans,EA016-1,"Lineage localization is, however, uncommon today",abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +11718,Ad30,EA016,No exogamous clans,EA016-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +11719,Ad31,EA016,No exogamous clans,EA016-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +11720,Ad32,EA016,No exogamous clans,EA016-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +11721,Ad33,EA016,No exogamous clans,EA016-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +11722,Ad34,EA016,No exogamous clans,EA016-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +11723,Ad35,EA016,Clans,EA016-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +11724,Ad36,EA016,?,EA016-NA,,,,,, +11725,Ad37,EA016,Clans,EA016-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +11726,Ad38,EA016,?,EA016-NA,,,,,, +11727,Ad39,EA016,No exogamous clans,EA016-9,,gray1963,,1950,EthnographicAtlas_1967_p66, +11728,Ad4,EA016,Clans,EA016-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +11729,Ad40,EA016,?,EA016-NA,,,,,, +11730,Ad41,EA016,Clans,EA016-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +11731,Ad42,EA016,No exogamous clans,EA016-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +11732,Ad43,EA016,?,EA016-NA,,,,,, +11733,Ad44,EA016,Clans,EA016-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +11734,Ad45,EA016,?,EA016-NA,,,,,, +11735,Ad46,EA016,No exogamous clans,EA016-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +11736,Ad47,EA016,?,EA016-NA,,,,,, +11737,Ad48,EA016,No exogamous clans,EA016-9,"Formerly probably clan communities not segmented into barrios (code ""1"")",taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +11738,Ad49,EA016,No exogamous clans,EA016-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +11739,Ad5,EA016,No exogamous clans,EA016-9,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +11740,Ad50,EA016,No exogamous clans,EA016-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +11741,Ad51,EA016,No exogamous clans,EA016-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +11742,Ad6,EA016,No exogamous clans,EA016-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +11743,Ad7,EA016,No exogamous clans,EA016-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +11744,Ad8,EA016,Clans,EA016-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +11745,Ad9,EA016,Clans,EA016-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +11746,Ae1,EA016,Clans,EA016-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +11747,Ae10,EA016,No exogamous clans,EA016-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +11748,Ae11,EA016,Clans,EA016-1,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +11749,Ae12,EA016,Clans with barrios,EA016-2,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +11750,Ae13,EA016,Clans,EA016-1,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +11751,Ae14,EA016,Clans,EA016-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +11752,Ae15,EA016,Clans,EA016-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +11753,Ae16,EA016,Clans with barrios,EA016-2,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +11754,Ae17,EA016,No exogamous clans,EA016-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +11755,Ae18,EA016,No exogamous clans,EA016-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +11756,Ae19,EA016,?,EA016-NA,,,,,, +11757,Ae2,EA016,No exogamous clans,EA016-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +11758,Ae20,EA016,No exogamous clans,EA016-9,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +11759,Ae21,EA016,Clans,EA016-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +11760,Ae22,EA016,No exogamous clans,EA016-9,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +11761,Ae23,EA016,Clans with barrios,EA016-2,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +11762,Ae24,EA016,Clans with barrios,EA016-2,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +11763,Ae25,EA016,Clans,EA016-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +11764,Ae26,EA016,?,EA016-NA,,,,,, +11765,Ae27,EA016,Clans,EA016-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +11766,Ae28,EA016,No exogamous clans,EA016-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +11767,Ae29,EA016,Clans with barrios,EA016-2,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +11768,Ae3,EA016,Clans with barrios,EA016-2,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +11769,Ae30,EA016,Clans,EA016-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +11770,Ae31,EA016,Clans,EA016-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +11771,Ae32,EA016,Clans,EA016-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +11772,Ae33,EA016,Clans with barrios,EA016-2,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +11773,Ae34,EA016,Clans,EA016-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +11774,Ae35,EA016,Clans,EA016-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +11775,Ae36,EA016,Clans with barrios,EA016-2,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +11776,Ae37,EA016,Clans,EA016-1,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +11777,Ae38,EA016,No exogamous clans,EA016-9,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +11778,Ae39,EA016,No exogamous clans,EA016-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +11779,Ae4,EA016,Clans with barrios,EA016-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +11780,Ae40,EA016,Clans,EA016-1,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +11781,Ae41,EA016,No exogamous clans,EA016-9,,andersson1953,,1940,EthnographicAtlas_1967_p66, +11782,Ae42,EA016,Clans,EA016-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +11783,Ae43,EA016,Clans,EA016-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +11784,Ae44,EA016,No exogamous clans,EA016-9,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +11785,Ae45,EA016,No exogamous clans,EA016-9,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +11786,Ae46,EA016,No exogamous clans,EA016-9,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +11787,Ae47,EA016,Clans,EA016-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +11788,Ae48,EA016,Clans,EA016-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +11789,Ae49,EA016,No exogamous clans,EA016-9,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +11790,Ae5,EA016,No exogamous clans,EA016-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +11791,Ae50,EA016,No exogamous clans,EA016-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +11792,Ae51,EA016,Clans,EA016-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +11793,Ae52,EA016,No exogamous clans,EA016-9,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +11794,Ae53,EA016,Clans,EA016-1,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +11795,Ae54,EA016,No exogamous clans,EA016-9,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +11796,Ae55,EA016,No exogamous clans,EA016-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +11797,Ae56,EA016,No exogamous clans,EA016-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +11798,Ae57,EA016,No exogamous clans,EA016-9,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +11799,Ae58,EA016,?,EA016-NA,,,,,, +11800,Ae59,EA016,Clans with barrios,EA016-2,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +11801,Ae6,EA016,No exogamous clans,EA016-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +11802,Ae7,EA016,Clans with barrios,EA016-2,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +11803,Ae8,EA016,No exogamous clans,EA016-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +11804,Ae9,EA016,No exogamous clans,EA016-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +11805,Af1,EA016,No exogamous clans,EA016-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +11806,Af10,EA016,No exogamous clans,EA016-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +11807,Af11,EA016,Clans with barrios,EA016-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +11808,Af12,EA016,No exogamous clans,EA016-9,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +11809,Af13,EA016,No exogamous clans,EA016-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +11810,Af14,EA016,?,EA016-NA,,,,,, +11811,Af15,EA016,No exogamous clans,EA016-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +11812,Af16,EA016,Clans with barrios,EA016-2,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +11813,Af17,EA016,No exogamous clans,EA016-9,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +11814,Af18,EA016,No exogamous clans,EA016-9,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +11815,Af19,EA016,No exogamous clans,EA016-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +11816,Af2,EA016,No exogamous clans,EA016-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +11817,Af20,EA016,No exogamous clans,EA016-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +11818,Af21,EA016,?,EA016-NA,,,,,, +11819,Af22,EA016,No exogamous clans,EA016-9,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +11820,Af23,EA016,No exogamous clans,EA016-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +11821,Af24,EA016,No exogamous clans,EA016-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +11822,Af25,EA016,No exogamous clans,EA016-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +11823,Af26,EA016,No exogamous clans,EA016-9,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +11824,Af27,EA016,No exogamous clans,EA016-9,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +11825,Af28,EA016,No exogamous clans,EA016-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +11826,Af29,EA016,No exogamous clans,EA016-9,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +11827,Af3,EA016,No exogamous clans,EA016-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +11828,Af30,EA016,?,EA016-NA,,,,,, +11829,Af31,EA016,No exogamous clans,EA016-9,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +11830,Af32,EA016,No exogamous clans,EA016-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11831,Af33,EA016,No exogamous clans,EA016-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11832,Af34,EA016,No exogamous clans,EA016-9,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11833,Af35,EA016,No exogamous clans,EA016-9,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +11834,Af36,EA016,No exogamous clans,EA016-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +11835,Af37,EA016,No exogamous clans,EA016-9,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +11836,Af38,EA016,No exogamous clans,EA016-9,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +11837,Af39,EA016,No exogamous clans,EA016-9,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +11838,Af4,EA016,No exogamous clans,EA016-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +11839,Af40,EA016,?,EA016-NA,,,,,, +11840,Af41,EA016,?,EA016-NA,,,,,, +11841,Af42,EA016,No exogamous clans,EA016-9,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +11842,Af43,EA016,No exogamous clans,EA016-9,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +11843,Af44,EA016,No exogamous clans,EA016-9,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +11844,Af45,EA016,?,EA016-NA,,,,,, +11845,Af46,EA016,Clans,EA016-1,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +11846,Af47,EA016,Clans with barrios,EA016-2,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +11847,Af48,EA016,?,EA016-NA,,,,,, +11848,Af49,EA016,Clans with barrios,EA016-2,,schwab1947,,1940,EthnographicAtlas_1967_p70, +11849,Af5,EA016,No exogamous clans,EA016-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +11850,Af50,EA016,?,EA016-NA,,,,,, +11851,Af51,EA016,No exogamous clans,EA016-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +11852,Af52,EA016,Clans,EA016-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +11853,Af53,EA016,Clans,EA016-1,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +11854,Af54,EA016,No exogamous clans,EA016-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +11855,Af55,EA016,No exogamous clans,EA016-9,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +11856,Af56,EA016,No exogamous clans,EA016-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +11857,Af57,EA016,Clans,EA016-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +11858,Af58,EA016,?,EA016-NA,,,,,, +11859,Af6,EA016,No exogamous clans,EA016-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +11860,Af7,EA016,Clans with barrios,EA016-2,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +11861,Af8,EA016,No exogamous clans,EA016-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +11862,Af9,EA016,No exogamous clans,EA016-9,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +11863,Ag1,EA016,No exogamous clans,EA016-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +11864,Ag10,EA016,Clans with barrios,EA016-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +11865,Ag11,EA016,No exogamous clans,EA016-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +11866,Ag12,EA016,Clans with barrios,EA016-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +11867,Ag13,EA016,Clans with barrios,EA016-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +11868,Ag14,EA016,No exogamous clans,EA016-9,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +11869,Ag15,EA016,?,EA016-NA,,,,,, +11870,Ag16,EA016,?,EA016-NA,,,,,, +11871,Ag17,EA016,?,EA016-NA,,,,,, +11872,Ag18,EA016,?,EA016-NA,,,,,, +11873,Ag19,EA016,?,EA016-NA,,,,,, +11874,Ag2,EA016,No exogamous clans,EA016-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +11875,Ag20,EA016,?,EA016-NA,,,,,, +11876,Ag21,EA016,No exogamous clans,EA016-9,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +11877,Ag22,EA016,No exogamous clans,EA016-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +11878,Ag23,EA016,?,EA016-NA,,,,,, +11879,Ag24,EA016,?,EA016-NA,,,,,, +11880,Ag25,EA016,No exogamous clans,EA016-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +11881,Ag26,EA016,No exogamous clans,EA016-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +11882,Ag27,EA016,No exogamous clans,EA016-9,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +11883,Ag28,EA016,No exogamous clans,EA016-9,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +11884,Ag29,EA016,No exogamous clans,EA016-9,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +11885,Ag3,EA016,No exogamous clans,EA016-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +11886,Ag30,EA016,No exogamous clans,EA016-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +11887,Ag31,EA016,No exogamous clans,EA016-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +11888,Ag32,EA016,No exogamous clans,EA016-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +11889,Ag33,EA016,?,EA016-NA,,,,,, +11890,Ag34,EA016,?,EA016-NA,,,,,, +11891,Ag35,EA016,No exogamous clans,EA016-9,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +11892,Ag36,EA016,Clans,EA016-1,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +11893,Ag37,EA016,No exogamous clans,EA016-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +11894,Ag38,EA016,No exogamous clans,EA016-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +11895,Ag39,EA016,No exogamous clans,EA016-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +11896,Ag4,EA016,Clans,EA016-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +11897,Ag40,EA016,Clans with barrios,EA016-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +11898,Ag41,EA016,Clans,EA016-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +11899,Ag42,EA016,Clans with barrios,EA016-2,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +11900,Ag43,EA016,No exogamous clans,EA016-9,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +11901,Ag44,EA016,?,EA016-NA,,,,,, +11902,Ag45,EA016,No exogamous clans,EA016-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +11903,Ag46,EA016,?,EA016-NA,,,,,, +11904,Ag47,EA016,No exogamous clans,EA016-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +11905,Ag48,EA016,Clans,EA016-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +11906,Ag49,EA016,No exogamous clans,EA016-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +11907,Ag5,EA016,Clans,EA016-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +11908,Ag50,EA016,?,EA016-NA,,,,,, +11909,Ag51,EA016,Clans,EA016-1,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +11910,Ag52,EA016,No exogamous clans,EA016-9,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +11911,Ag53,EA016,Clans with barrios,EA016-2,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +11912,Ag54,EA016,No exogamous clans,EA016-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +11913,Ag6,EA016,No exogamous clans,EA016-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +11914,Ag7,EA016,?,EA016-NA,,,,,, +11915,Ag8,EA016,No exogamous clans,EA016-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +11916,Ag9,EA016,No exogamous clans,EA016-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +11917,Ah1,EA016,Clans with barrios,EA016-2,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +11918,Ah10,EA016,No exogamous clans,EA016-9,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +11919,Ah11,EA016,?,EA016-NA,,,,,, +11920,Ah12,EA016,No exogamous clans,EA016-9,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +11921,Ah13,EA016,?,EA016-NA,,,,,, +11922,Ah14,EA016,No exogamous clans,EA016-9,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +11923,Ah15,EA016,No exogamous clans,EA016-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +11924,Ah16,EA016,?,EA016-NA,,,,,, +11925,Ah17,EA016,No exogamous clans,EA016-9,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +11926,Ah18,EA016,?,EA016-NA,,,,,, +11927,Ah19,EA016,No exogamous clans,EA016-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +11928,Ah2,EA016,No exogamous clans,EA016-9,,meek1931a,,1920,EthnographicAtlas_1967_p74, +11929,Ah20,EA016,Clans with barrios,EA016-2,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +11930,Ah21,EA016,No exogamous clans,EA016-9,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +11931,Ah22,EA016,?,EA016-NA,,,,,, +11932,Ah23,EA016,?,EA016-NA,,,,,, +11933,Ah24,EA016,No exogamous clans,EA016-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +11934,Ah25,EA016,No exogamous clans,EA016-9,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +11935,Ah26,EA016,No exogamous clans,EA016-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +11936,Ah27,EA016,No exogamous clans,EA016-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +11937,Ah28,EA016,?,EA016-NA,,,,,, +11938,Ah29,EA016,?,EA016-NA,,,,,, +11939,Ah3,EA016,Clans,EA016-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +11940,Ah30,EA016,No exogamous clans,EA016-9,,meek1931b,,1920,EthnographicAtlas_1967_p74, +11941,Ah31,EA016,No exogamous clans,EA016-9,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +11942,Ah32,EA016,?,EA016-NA,,,,,, +11943,Ah33,EA016,No exogamous clans,EA016-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +11944,Ah34,EA016,?,EA016-NA,,,,,, +11945,Ah35,EA016,?,EA016-NA,,,,,, +11946,Ah36,EA016,No exogamous clans,EA016-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +11947,Ah37,EA016,No exogamous clans,EA016-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +11948,Ah38,EA016,Clans,EA016-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +11949,Ah39,EA016,Clans,EA016-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +11950,Ah4,EA016,No exogamous clans,EA016-9,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +11951,Ah5,EA016,No exogamous clans,EA016-9,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +11952,Ah6,EA016,No exogamous clans,EA016-9,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +11953,Ah7,EA016,Clans with barrios,EA016-2,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +11954,Ah8,EA016,No exogamous clans,EA016-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +11955,Ah9,EA016,No exogamous clans,EA016-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +11956,Ai1,EA016,Clans,EA016-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +11957,Ai10,EA016,No exogamous clans,EA016-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +11958,Ai11,EA016,No exogamous clans,EA016-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +11959,Ai12,EA016,No exogamous clans,EA016-9,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +11960,Ai13,EA016,?,EA016-NA,,,,,, +11961,Ai14,EA016,?,EA016-NA,,,,,, +11962,Ai15,EA016,No exogamous clans,EA016-9,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +11963,Ai16,EA016,?,EA016-NA,,,,,, +11964,Ai17,EA016,No exogamous clans,EA016-9,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +11965,Ai18,EA016,No exogamous clans,EA016-9,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +11966,Ai19,EA016,?,EA016-NA,,,,,, +11967,Ai2,EA016,No exogamous clans,EA016-9,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +11968,Ai20,EA016,Clans,EA016-1,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +11969,Ai21,EA016,?,EA016-NA,,,,,, +11970,Ai22,EA016,Clans,EA016-1,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +11971,Ai23,EA016,Clans with barrios,EA016-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +11972,Ai24,EA016,Clans,EA016-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +11973,Ai25,EA016,Clans,EA016-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +11974,Ai26,EA016,Clans,EA016-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +11975,Ai27,EA016,Clans,EA016-1,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +11976,Ai28,EA016,No exogamous clans,EA016-9,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +11977,Ai29,EA016,No exogamous clans,EA016-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +11978,Ai3,EA016,No exogamous clans,EA016-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +11979,Ai30,EA016,Clans,EA016-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +11980,Ai31,EA016,?,EA016-NA,,,,,, +11981,Ai32,EA016,Clans,EA016-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +11982,Ai33,EA016,Clans with barrios,EA016-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +11983,Ai34,EA016,Clans,EA016-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +11984,Ai35,EA016,Clans,EA016-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +11985,Ai36,EA016,Clans,EA016-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +11986,Ai37,EA016,No exogamous clans,EA016-9,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +11987,Ai38,EA016,No exogamous clans,EA016-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +11988,Ai39,EA016,No exogamous clans,EA016-9,,nadel1947,,1940,EthnographicAtlas_1967_p74, +11989,Ai4,EA016,No exogamous clans,EA016-9,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +11990,Ai40,EA016,No exogamous clans,EA016-9,,nadel1947,,1940,EthnographicAtlas_1967_p74, +11991,Ai41,EA016,No exogamous clans,EA016-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +11992,Ai42,EA016,No exogamous clans,EA016-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +11993,Ai43,EA016,No exogamous clans,EA016-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +11994,Ai44,EA016,Clans,EA016-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +11995,Ai45,EA016,?,EA016-NA,,,,,, +11996,Ai46,EA016,Clans,EA016-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +11997,Ai47,EA016,Clans,EA016-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +11998,Ai5,EA016,Clans,EA016-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +11999,Ai6,EA016,No exogamous clans,EA016-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +12000,Ai7,EA016,Clans,EA016-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +12001,Ai8,EA016,No exogamous clans,EA016-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +12002,Ai9,EA016,Clans,EA016-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +12003,Aj1,EA016,No exogamous clans,EA016-9,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +12004,Aj10,EA016,No exogamous clans,EA016-9,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +12005,Aj11,EA016,No exogamous clans,EA016-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +12006,Aj12,EA016,No exogamous clans,EA016-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +12007,Aj13,EA016,Clans,EA016-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +12008,Aj14,EA016,Clans,EA016-1,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +12009,Aj15,EA016,Clans,EA016-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +12010,Aj16,EA016,Clans,EA016-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +12011,Aj17,EA016,Clans with barrios,EA016-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +12012,Aj18,EA016,?,EA016-NA,,,,,, +12013,Aj19,EA016,No exogamous clans,EA016-9,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +12014,Aj2,EA016,No exogamous clans,EA016-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +12015,Aj20,EA016,No exogamous clans,EA016-9,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +12016,Aj21,EA016,No exogamous clans,EA016-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +12017,Aj22,EA016,?,EA016-NA,,,,,, +12018,Aj23,EA016,Clans,EA016-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +12019,Aj24,EA016,?,EA016-NA,,,,,, +12020,Aj25,EA016,No exogamous clans,EA016-9,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +12021,Aj26,EA016,No exogamous clans,EA016-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +12022,Aj27,EA016,Clans,EA016-1,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +12023,Aj28,EA016,No exogamous clans,EA016-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +12024,Aj29,EA016,Clans,EA016-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +12025,Aj3,EA016,Clans,EA016-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +12026,Aj30,EA016,?,EA016-NA,,,,,, +12027,Aj31,EA016,?,EA016-NA,,,,,, +12028,Aj4,EA016,No exogamous clans,EA016-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +12029,Aj5,EA016,No exogamous clans,EA016-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +12030,Aj6,EA016,Clans with barrios,EA016-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +12031,Aj7,EA016,No exogamous clans,EA016-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +12032,Aj8,EA016,Clans,EA016-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +12033,Aj9,EA016,No exogamous clans,EA016-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +12034,Ca1,EA016,No exogamous clans,EA016-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +12035,Ca10,EA016,Clans with barrios,EA016-2,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +12036,Ca11,EA016,?,EA016-NA,,,,,, +12037,Ca12,EA016,?,EA016-NA,,,,,, +12038,Ca13,EA016,No exogamous clans,EA016-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +12039,Ca14,EA016,No exogamous clans,EA016-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +12040,Ca15,EA016,No exogamous clans,EA016-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +12041,Ca16,EA016,No exogamous clans,EA016-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +12042,Ca17,EA016,?,EA016-NA,,,,,, +12043,Ca18,EA016,?,EA016-NA,,,,,, +12044,Ca19,EA016,Clans with barrios,EA016-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +12045,Ca2,EA016,Clans,EA016-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +12046,Ca20,EA016,?,EA016-NA,,,,,, +12047,Ca21,EA016,Clans,EA016-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +12048,Ca22,EA016,?,EA016-NA,,,,,, +12049,Ca23,EA016,?,EA016-NA,,,,,, +12050,Ca24,EA016,?,EA016-NA,,,,,, +12051,Ca25,EA016,?,EA016-NA,,,,,, +12052,Ca26,EA016,?,EA016-NA,,,,,, +12053,Ca27,EA016,No exogamous clans,EA016-9,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +12054,Ca28,EA016,?,EA016-NA,,,,,, +12055,Ca29,EA016,?,EA016-NA,,,,,, +12056,Ca3,EA016,No exogamous clans,EA016-9,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +12057,Ca30,EA016,?,EA016-NA,,,,,, +12058,Ca31,EA016,?,EA016-NA,,,,,, +12059,Ca32,EA016,?,EA016-NA,,,,,, +12060,Ca33,EA016,?,EA016-NA,,,,,, +12061,Ca34,EA016,No exogamous clans,EA016-9,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +12062,Ca35,EA016,No exogamous clans,EA016-9,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +12063,Ca36,EA016,No exogamous clans,EA016-9,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +12064,Ca37,EA016,No exogamous clans,EA016-9,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +12065,Ca38,EA016,No exogamous clans,EA016-9,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +12066,Ca39,EA016,?,EA016-NA,,,,,, +12067,Ca4,EA016,?,EA016-NA,,,,,, +12068,Ca40,EA016,?,EA016-NA,,,,,, +12069,Ca41,EA016,?,EA016-NA,,,,,, +12070,Ca42,EA016,No exogamous clans,EA016-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +12071,Ca43,EA016,?,EA016-NA,,,,,, +12072,Ca5,EA016,Clans,EA016-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +12073,Ca6,EA016,Clans,EA016-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +12074,Ca7,EA016,No exogamous clans,EA016-9,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +12075,Ca8,EA016,Clans,EA016-1,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +12076,Ca9,EA016,?,EA016-NA,,,,,, +12077,Cb1,EA016,No exogamous clans,EA016-9,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +12078,Cb10,EA016,Clans with barrios,EA016-2,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +12079,Cb11,EA016,?,EA016-NA,,,,,, +12080,Cb12,EA016,No exogamous clans,EA016-9,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +12081,Cb13,EA016,No exogamous clans,EA016-9,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +12082,Cb14,EA016,?,EA016-NA,,,,,, +12083,Cb15,EA016,No exogamous clans,EA016-9,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +12084,Cb16,EA016,No exogamous clans,EA016-9,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +12085,Cb17,EA016,No exogamous clans,EA016-9,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +12086,Cb18,EA016,No exogamous clans,EA016-9,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +12087,Cb19,EA016,No exogamous clans,EA016-9,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +12088,Cb2,EA016,Clans,EA016-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +12089,Cb20,EA016,No exogamous clans,EA016-9,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +12090,Cb21,EA016,No exogamous clans,EA016-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +12091,Cb22,EA016,No exogamous clans,EA016-9,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +12092,Cb23,EA016,?,EA016-NA,,,,,, +12093,Cb24,EA016,No exogamous clans,EA016-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +12094,Cb25,EA016,No exogamous clans,EA016-9,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +12095,Cb26,EA016,No exogamous clans,EA016-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +12096,Cb27,EA016,No exogamous clans,EA016-9,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +12097,Cb28,EA016,Clans,EA016-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +12098,Cb29,EA016,Clans,EA016-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +12099,Cb3,EA016,No exogamous clans,EA016-9,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +12100,Cb4,EA016,No exogamous clans,EA016-9,,reid1930,,1920,EthnographicAtlas_1967_p78, +12101,Cb5,EA016,?,EA016-NA,,,,,, +12102,Cb6,EA016,No exogamous clans,EA016-9,,woodnd,,1920,EthnographicAtlas_1967_p78, +12103,Cb7,EA016,No exogamous clans,EA016-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +12104,Cb8,EA016,No exogamous clans,EA016-9,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +12105,Cb9,EA016,No exogamous clans,EA016-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +12106,Cc1,EA016,Clans,EA016-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +12107,Cc10,EA016,No exogamous clans,EA016-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +12108,Cc11,EA016,No exogamous clans,EA016-9,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +12109,Cc12,EA016,?,EA016-NA,,,,,, +12110,Cc13,EA016,No exogamous clans,EA016-9,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +12111,Cc14,EA016,No exogamous clans,EA016-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +12112,Cc15,EA016,No exogamous clans,EA016-9,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +12113,Cc16,EA016,?,EA016-NA,,,,,, +12114,Cc17,EA016,No exogamous clans,EA016-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +12115,Cc18,EA016,No exogamous clans,EA016-9,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +12116,Cc19,EA016,?,EA016-NA,,,,,, +12117,Cc2,EA016,No exogamous clans,EA016-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +12118,Cc20,EA016,?,EA016-NA,,,,,, +12119,Cc3,EA016,No exogamous clans,EA016-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +12120,Cc4,EA016,No exogamous clans,EA016-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +12121,Cc5,EA016,No exogamous clans,EA016-9,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +12122,Cc6,EA016,?,EA016-NA,The band is a patriclan but is not exogamous,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +12123,Cc7,EA016,No exogamous clans,EA016-9,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12124,Cc8,EA016,No exogamous clans,EA016-9,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +12125,Cc9,EA016,Clans,EA016-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +12126,Cd1,EA016,No exogamous clans,EA016-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +12127,Cd10,EA016,?,EA016-NA,,,,,, +12128,Cd11,EA016,?,EA016-NA,,,,,, +12129,Cd12,EA016,No exogamous clans,EA016-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +12130,Cd13,EA016,No exogamous clans,EA016-9,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +12131,Cd14,EA016,No exogamous clans,EA016-9,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +12132,Cd15,EA016,No exogamous clans,EA016-9,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +12133,Cd16,EA016,?,EA016-NA,,,,,, +12134,Cd17,EA016,No exogamous clans,EA016-9,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +12135,Cd18,EA016,No exogamous clans,EA016-9,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +12136,Cd19,EA016,?,EA016-NA,,,,,, +12137,Cd2,EA016,No exogamous clans,EA016-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +12138,Cd20,EA016,?,EA016-NA,,,,,, +12139,Cd21,EA016,No exogamous clans,EA016-9,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +12140,Cd3,EA016,Clans,EA016-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +12141,Cd4,EA016,No exogamous clans,EA016-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +12142,Cd5,EA016,No exogamous clans,EA016-9,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +12143,Cd6,EA016,?,EA016-NA,,,,,, +12144,Cd7,EA016,No exogamous clans,EA016-9,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +12145,Cd8,EA016,No exogamous clans,EA016-9,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +12146,Cd9,EA016,?,EA016-NA,,,,,, +12147,Ce1,EA016,No exogamous clans,EA016-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +12148,Ce2,EA016,No exogamous clans,EA016-9,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +12149,Ce3,EA016,No exogamous clans,EA016-9,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +12150,Ce4,EA016,No exogamous clans,EA016-9,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12151,Ce5,EA016,No exogamous clans,EA016-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +12152,Ce6,EA016,No exogamous clans,EA016-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +12153,Ce7,EA016,No exogamous clans,EA016-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +12154,Ce8,EA016,No exogamous clans,EA016-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +12155,Cf1,EA016,No exogamous clans,EA016-9,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +12156,Cf2,EA016,No exogamous clans,EA016-9,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +12157,Cf3,EA016,No exogamous clans,EA016-9,,munch1945,,1930,EthnographicAtlas_1967_p82, +12158,Cf4,EA016,No exogamous clans,EA016-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +12159,Cf5,EA016,No exogamous clans,EA016-9,,miner1939,,1930,EthnographicAtlas_1967_p82, +12160,Cg1,EA016,No exogamous clans,EA016-9,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +12161,Cg2,EA016,No exogamous clans,EA016-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +12162,Cg3,EA016,No exogamous clans,EA016-9,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +12163,Cg4,EA016,No exogamous clans,EA016-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +12164,Cg5,EA016,No exogamous clans,EA016-9,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +12165,Ch1,EA016,No exogamous clans,EA016-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +12166,Ch10,EA016,No exogamous clans,EA016-9,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +12167,Ch11,EA016,No exogamous clans,EA016-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +12168,Ch2,EA016,No exogamous clans,EA016-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +12169,Ch3,EA016,No exogamous clans,EA016-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +12170,Ch4,EA016,No exogamous clans,EA016-9,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +12171,Ch5,EA016,No exogamous clans,EA016-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +12172,Ch6,EA016,No exogamous clans,EA016-9,,ember1954,,1910,EthnographicAtlas_1967_p82, +12173,Ch7,EA016,No exogamous clans,EA016-9,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +12174,Ch8,EA016,No exogamous clans,EA016-9,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +12175,Ch9,EA016,No exogamous clans,EA016-9,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +12176,Ci1,EA016,Clans,EA016-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +12177,Ci10,EA016,No exogamous clans,EA016-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +12178,Ci11,EA016,No exogamous clans,EA016-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +12179,Ci12,EA016,Clans,EA016-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +12180,Ci2,EA016,Clans,EA016-1,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +12181,Ci3,EA016,No exogamous clans,EA016-9,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +12182,Ci4,EA016,No exogamous clans,EA016-9,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +12183,Ci5,EA016,No exogamous clans,EA016-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +12184,Ci6,EA016,Clans with barrios,EA016-2,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +12185,Ci7,EA016,Clans,EA016-1,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +12186,Ci8,EA016,?,EA016-NA,,,,,, +12187,Ci9,EA016,Clans,EA016-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +12188,Cj1,EA016,No exogamous clans,EA016-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +12189,Cj10,EA016,No exogamous clans,EA016-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +12190,Cj2,EA016,No exogamous clans,EA016-9,"The local clan, however, shows a tendency toward endogamy",ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +12191,Cj3,EA016,No exogamous clans,EA016-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +12192,Cj4,EA016,?,EA016-NA,,,,,, +12193,Cj5,EA016,No exogamous clans,EA016-9,,dickson1949,,1930,EthnographicAtlas_1967_p86, +12194,Cj6,EA016,No exogamous clans,EA016-9,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +12195,Cj7,EA016,No exogamous clans,EA016-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +12196,Cj8,EA016,No exogamous clans,EA016-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +12197,Cj9,EA016,?,EA016-NA,,,,,, +12198,Ea1,EA016,No exogamous clans,EA016-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +12199,Ea10,EA016,Clans,EA016-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +12200,Ea11,EA016,?,EA016-NA,,,,,, +12201,Ea12,EA016,?,EA016-NA,,,,,, +12202,Ea13,EA016,No exogamous clans,EA016-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +12203,Ea2,EA016,No exogamous clans,EA016-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +12204,Ea3,EA016,No exogamous clans,EA016-9,But with a marked tendency toward local endogamy,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +12205,Ea4,EA016,No exogamous clans,EA016-9,,barth1956b,,1950,EthnographicAtlas_1967_p86, +12206,Ea5,EA016,No exogamous clans,EA016-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +12207,Ea6,EA016,No exogamous clans,EA016-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +12208,Ea7,EA016,No exogamous clans,EA016-9,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +12209,Ea8,EA016,Clans,EA016-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +12210,Ea9,EA016,No exogamous clans,EA016-9,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +12211,Eb1,EA016,Clans,EA016-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +12212,Eb2,EA016,No exogamous clans,EA016-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +12213,Eb3,EA016,No exogamous clans,EA016-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +12214,Eb4,EA016,Clans,EA016-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +12215,Eb5,EA016,?,EA016-NA,Freikin mentions localized clans,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +12216,Eb6,EA016,Clans,EA016-1,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +12217,Eb7,EA016,No exogamous clans,EA016-9,But with a tendency toward local exogamy,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +12218,Eb8,EA016,?,EA016-NA,,,,,, +12219,Ec1,EA016,No exogamous clans,EA016-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +12220,Ec10,EA016,No exogamous clans,EA016-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +12221,Ec11,EA016,?,EA016-NA,,,,,, +12222,Ec2,EA016,Clans,EA016-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12223,Ec3,EA016,No exogamous clans,EA016-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +12224,Ec4,EA016,No exogamous clans,EA016-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +12225,Ec5,EA016,No exogamous clans,EA016-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +12226,Ec6,EA016,No exogamous clans,EA016-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +12227,Ec7,EA016,No exogamous clans,EA016-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +12228,Ec8,EA016,?,EA016-NA,,,,,, +12229,Ec9,EA016,?,EA016-NA,,,,,, +12230,Ed1,EA016,No exogamous clans,EA016-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +12231,Ed10,EA016,No exogamous clans,EA016-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +12232,Ed13,EA016,?,EA016-NA,,,,,, +12233,Ed14,EA016,No exogamous clans,EA016-9,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +12234,Ed15a,EA016,No exogamous clans,EA016-9,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +12235,Ed15b,EA016,No exogamous clans,EA016-9,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +12236,Ed16,EA016,No exogamous clans,EA016-9,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +12237,Ed2,EA016,Clans,EA016-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +12238,Ed3,EA016,Clans,EA016-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +12239,Ed4,EA016,No exogamous clans,EA016-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +12240,Ed5,EA016,No exogamous clans,EA016-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12241,Ed6,EA016,No exogamous clans,EA016-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +12242,Ed7,EA016,No exogamous clans,EA016-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +12243,Ed8,EA016,No exogamous clans,EA016-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +12244,Ed9,EA016,No exogamous clans,EA016-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +12245,Ee1,EA016,No exogamous clans,EA016-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +12246,Ee2,EA016,No exogamous clans,EA016-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +12247,Ee3,EA016,No exogamous clans,EA016-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +12248,Ee4,EA016,No exogamous clans,EA016-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +12249,Ee5,EA016,No exogamous clans,EA016-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +12250,Ee6,EA016,No exogamous clans,EA016-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +12251,Ee7,EA016,?,EA016-NA,,,,,, +12252,Ee8,EA016,No exogamous clans,EA016-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +12253,Ef1,EA016,No exogamous clans,EA016-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +12254,Ef10,EA016,?,EA016-NA,,,,,, +12255,Ef11,EA016,No exogamous clans,EA016-9,But locally exogamous sibs for the Thakur caste,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +12256,Ef2,EA016,No exogamous clans,EA016-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +12257,Ef3,EA016,No exogamous clans,EA016-9,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +12258,Ef4,EA016,Clans,EA016-1,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +12259,Ef5,EA016,No exogamous clans,EA016-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +12260,Ef6,EA016,No exogamous clans,EA016-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +12261,Ef7,EA016,No exogamous clans,EA016-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +12262,Ef8,EA016,No exogamous clans,EA016-9,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +12263,Ef9,EA016,No exogamous clans,EA016-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12264,Eg1,EA016,No exogamous clans,EA016-9,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12265,Eg10,EA016,No exogamous clans,EA016-9,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +12266,Eg11,EA016,No exogamous clans,EA016-9,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +12267,Eg12,EA016,Clans,EA016-1,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +12268,Eg13,EA016,No exogamous clans,EA016-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12269,Eg14,EA016,No exogamous clans,EA016-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +12270,Eg2,EA016,No exogamous clans,EA016-9,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +12271,Eg3,EA016,Clans,EA016-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +12272,Eg4,EA016,Clans,EA016-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +12273,Eg5,EA016,No exogamous clans,EA016-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +12274,Eg6,EA016,No exogamous clans,EA016-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +12275,Eg7,EA016,Clans,EA016-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +12276,Eg8,EA016,No exogamous clans,EA016-9,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +12277,Eg9,EA016,Clans,EA016-1,,elwin1939,,1930,EthnographicAtlas_1967_p90, +12278,Eh1,EA016,No exogamous clans,EA016-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +12279,Eh10,EA016,No exogamous clans,EA016-9,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +12280,Eh2,EA016,No exogamous clans,EA016-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +12281,Eh3,EA016,No exogamous clans,EA016-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +12282,Eh4,EA016,Clans,EA016-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12283,Eh5,EA016,No exogamous clans,EA016-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +12284,Eh6,EA016,No exogamous clans,EA016-9,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +12285,Eh7,EA016,No exogamous clans,EA016-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +12286,Eh8,EA016,Clans,EA016-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +12287,Eh9,EA016,Clans with barrios,EA016-2,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +12288,Ei1,EA016,No exogamous clans,EA016-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12289,Ei10,EA016,Clans,EA016-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +12290,Ei11,EA016,No exogamous clans,EA016-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +12291,Ei12,EA016,?,EA016-NA,,,,,, +12292,Ei13,EA016,No exogamous clans,EA016-9,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +12293,Ei14,EA016,No exogamous clans,EA016-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +12294,Ei15,EA016,No exogamous clans,EA016-9,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +12295,Ei16,EA016,No exogamous clans,EA016-9,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +12296,Ei17,EA016,?,EA016-NA,,,,,, +12297,Ei18,EA016,No exogamous clans,EA016-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +12298,Ei19,EA016,No exogamous clans,EA016-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +12299,Ei2,EA016,No exogamous clans,EA016-9,,mills1922,,1920,EthnographicAtlas_1967_p90, +12300,Ei20,EA016,Clans,EA016-1,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +12301,Ei3,EA016,No exogamous clans,EA016-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +12302,Ei4,EA016,No exogamous clans,EA016-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +12303,Ei5,EA016,No exogamous clans,EA016-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +12304,Ei6,EA016,No exogamous clans,EA016-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +12305,Ei7,EA016,No exogamous clans,EA016-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +12306,Ei8,EA016,No exogamous clans,EA016-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +12307,Ei9,EA016,No exogamous clans,EA016-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +12308,Ej1,EA016,No exogamous clans,EA016-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +12309,Ej10,EA016,No exogamous clans,EA016-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +12310,Ej11,EA016,No exogamous clans,EA016-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +12311,Ej12,EA016,No exogamous clans,EA016-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +12312,Ej13,EA016,Clans,EA016-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +12313,Ej14,EA016,No exogamous clans,EA016-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12314,Ej15,EA016,?,EA016-NA,,,,,, +12315,Ej16,EA016,Clans,EA016-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +12316,Ej2,EA016,No exogamous clans,EA016-9,The component long houses of a village are organized only in part on a kinship basis,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +12317,Ej3,EA016,No exogamous clans,EA016-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +12318,Ej4,EA016,No exogamous clans,EA016-9,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +12319,Ej5,EA016,No exogamous clans,EA016-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +12320,Ej6,EA016,No exogamous clans,EA016-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +12321,Ej7,EA016,No exogamous clans,EA016-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +12322,Ej8,EA016,No exogamous clans,EA016-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +12323,Ej9,EA016,No exogamous clans,EA016-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +12324,Ia1,EA016,No exogamous clans,EA016-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +12325,Ia10,EA016,No exogamous clans,EA016-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +12326,Ia11,EA016,No exogamous clans,EA016-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +12327,Ia12,EA016,No exogamous clans,EA016-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +12328,Ia13,EA016,No exogamous clans,EA016-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +12329,Ia14,EA016,No exogamous clans,EA016-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +12330,Ia15,EA016,No exogamous clans,EA016-9,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +12331,Ia16,EA016,No exogamous clans,EA016-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +12332,Ia17,EA016,?,EA016-NA,,,,,, +12333,Ia18,EA016,No exogamous clans,EA016-9,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +12334,Ia2,EA016,No exogamous clans,EA016-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +12335,Ia3,EA016,No exogamous clans,EA016-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +12336,Ia4,EA016,No exogamous clans,EA016-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +12337,Ia5,EA016,No exogamous clans,EA016-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +12338,Ia6,EA016,No exogamous clans,EA016-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12339,Ia7,EA016,No exogamous clans,EA016-9,,fox1954,,1950,EthnographicAtlas_1967_p90, +12340,Ia8,EA016,No exogamous clans,EA016-9,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +12341,Ia9,EA016,No exogamous clans,EA016-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +12342,Ib1,EA016,No exogamous clans,EA016-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12343,Ib2,EA016,No exogamous clans,EA016-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12344,Ib3,EA016,No exogamous clans,EA016-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +12345,Ib4,EA016,No exogamous clans,EA016-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +12346,Ib5,EA016,No exogamous clans,EA016-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +12347,Ib6,EA016,No exogamous clans,EA016-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +12348,Ib7,EA016,No exogamous clans,EA016-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +12349,Ib8,EA016,?,EA016-NA,,,,,, +12350,Ib9,EA016,?,EA016-NA,,,,,, +12351,Ic1,EA016,No exogamous clans,EA016-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12352,Ic10,EA016,No exogamous clans,EA016-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +12353,Ic11,EA016,No exogamous clans,EA016-9,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12354,Ic12,EA016,No exogamous clans,EA016-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +12355,Ic13,EA016,Clans,EA016-1,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +12356,Ic2,EA016,No exogamous clans,EA016-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +12357,Ic3,EA016,No exogamous clans,EA016-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +12358,Ic4,EA016,?,EA016-NA,,,,,, +12359,Ic5,EA016,No exogamous clans,EA016-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +12360,Ic6,EA016,No exogamous clans,EA016-9,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +12361,Ic7,EA016,No exogamous clans,EA016-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +12362,Ic8,EA016,?,EA016-NA,,,,,, +12363,Ic9,EA016,Clans,EA016-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +12364,Id1,EA016,Clans,EA016-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +12365,Id10,EA016,No exogamous clans,EA016-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +12366,Id11,EA016,No exogamous clans,EA016-9,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +12367,Id12,EA016,Clans,EA016-1,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +12368,Id13,EA016,Clans,EA016-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +12369,Id2,EA016,Clans,EA016-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +12370,Id3,EA016,No exogamous clans,EA016-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +12371,Id4,EA016,No exogamous clans,EA016-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +12372,Id5,EA016,Clans,EA016-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +12373,Id6,EA016,Clans,EA016-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +12374,Id7,EA016,Clans,EA016-1,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +12375,Id8,EA016,No exogamous clans,EA016-9,,roth1890,,1830,EthnographicAtlas_1967_p94, +12376,Id9,EA016,Clans,EA016-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +12377,Ie1,EA016,Clans,EA016-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12378,Ie10,EA016,No exogamous clans,EA016-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +12379,Ie11,EA016,Clans,EA016-1,,bowers1964,,1950,EthnographicAtlas_1967_p94, +12380,Ie12,EA016,Clans with barrios,EA016-2,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12381,Ie13,EA016,No exogamous clans,EA016-9,,landtman1927,,1920,EthnographicAtlas_1967_p94, +12382,Ie14,EA016,Clans,EA016-1,,haddon1908,,1900,EthnographicAtlas_1967_p94, +12383,Ie15,EA016,No exogamous clans,EA016-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12384,Ie16,EA016,No exogamous clans,EA016-9,,williams194041,,1940,EthnographicAtlas_1967_p94, +12385,Ie17,EA016,Clans with barrios,EA016-2,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +12386,Ie18,EA016,No exogamous clans,EA016-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +12387,Ie19,EA016,No exogamous clans,EA016-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +12388,Ie2,EA016,Clans,EA016-1,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +12389,Ie20,EA016,No exogamous clans,EA016-9,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +12390,Ie21,EA016,No exogamous clans,EA016-9,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +12391,Ie22,EA016,No exogamous clans,EA016-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +12392,Ie23,EA016,Clans,EA016-1,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +12393,Ie24,EA016,No exogamous clans,EA016-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +12394,Ie25,EA016,No exogamous clans,EA016-9,,williamson1912,,1920,EthnographicAtlas_1967_p94, +12395,Ie26,EA016,No exogamous clans,EA016-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +12396,Ie27,EA016,No exogamous clans,EA016-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +12397,Ie28,EA016,No exogamous clans,EA016-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +12398,Ie29,EA016,No exogamous clans,EA016-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12399,Ie3,EA016,No exogamous clans,EA016-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12400,Ie30,EA016,No exogamous clans,EA016-9,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +12401,Ie31,EA016,Clans with barrios,EA016-2,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +12402,Ie32,EA016,No exogamous clans,EA016-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +12403,Ie33,EA016,No exogamous clans,EA016-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +12404,Ie34,EA016,?,EA016-NA,,,,,, +12405,Ie35,EA016,No exogamous clans,EA016-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +12406,Ie36,EA016,No exogamous clans,EA016-9,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +12407,Ie37,EA016,No exogamous clans,EA016-9,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +12408,Ie38,EA016,No exogamous clans,EA016-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +12409,Ie39,EA016,No exogamous clans,EA016-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +12410,Ie4,EA016,No exogamous clans,EA016-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12411,Ie5,EA016,Clans,EA016-1,,williams1936,,1930,EthnographicAtlas_1967_p94, +12412,Ie6,EA016,No exogamous clans,EA016-9,,held1947,,1930,EthnographicAtlas_1967_p94, +12413,Ie7,EA016,Clans with barrios,EA016-2,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +12414,Ie8,EA016,No exogamous clans,EA016-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +12415,Ie9,EA016,No exogamous clans,EA016-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +12416,If1,EA016,No exogamous clans,EA016-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12417,If10,EA016,No exogamous clans,EA016-9,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +12418,If11,EA016,No exogamous clans,EA016-9,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +12419,If12,EA016,No exogamous clans,EA016-9,,mason1954,,1940,EthnographicAtlas_1967_p98, +12420,If13,EA016,No exogamous clans,EA016-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +12421,If14,EA016,No exogamous clans,EA016-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +12422,If15,EA016,No exogamous clans,EA016-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +12423,If16,EA016,No exogamous clans,EA016-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +12424,If17,EA016,No exogamous clans,EA016-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +12425,If2,EA016,No exogamous clans,EA016-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +12426,If3,EA016,No exogamous clans,EA016-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +12427,If4,EA016,No exogamous clans,EA016-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +12428,If5,EA016,No exogamous clans,EA016-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +12429,If6,EA016,No exogamous clans,EA016-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +12430,If7,EA016,No exogamous clans,EA016-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +12431,If8,EA016,No exogamous clans,EA016-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +12432,If9,EA016,No exogamous clans,EA016-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +12433,Ig1,EA016,No exogamous clans,EA016-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +12434,Ig10,EA016,No exogamous clans,EA016-9,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +12435,Ig11,EA016,No exogamous clans,EA016-9,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +12436,Ig12,EA016,No exogamous clans,EA016-9,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +12437,Ig13,EA016,No exogamous clans,EA016-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +12438,Ig14,EA016,No exogamous clans,EA016-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +12439,Ig15,EA016,?,EA016-NA,,,,,, +12440,Ig16,EA016,?,EA016-NA,,,,,, +12441,Ig17,EA016,No exogamous clans,EA016-9,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +12442,Ig18,EA016,No exogamous clans,EA016-9,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +12443,Ig19,EA016,No exogamous clans,EA016-9,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +12444,Ig2,EA016,No exogamous clans,EA016-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +12445,Ig20,EA016,No exogamous clans,EA016-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +12446,Ig21,EA016,Clans with barrios,EA016-2,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +12447,Ig3,EA016,No exogamous clans,EA016-9,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +12448,Ig4,EA016,No exogamous clans,EA016-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +12449,Ig5,EA016,Clans,EA016-1,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +12450,Ig6,EA016,No exogamous clans,EA016-9,,ivens1927,,1900,EthnographicAtlas_1967_p98, +12451,Ig7,EA016,No exogamous clans,EA016-9,"Goodenough characterizes the local group as a ""nodal kindred,"" composed basically of sibling sets linked by consanguineal or affinal ties",chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +12452,Ig8,EA016,No exogamous clans,EA016-9,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +12453,Ig9,EA016,No exogamous clans,EA016-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +12454,Ih1,EA016,No exogamous clans,EA016-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +12455,Ih10,EA016,Clans,EA016-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12456,Ih11,EA016,Clans,EA016-1,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +12457,Ih12,EA016,Clans,EA016-1,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +12458,Ih13,EA016,No exogamous clans,EA016-9,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +12459,Ih14,EA016,No exogamous clans,EA016-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +12460,Ih2,EA016,Clans,EA016-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12461,Ih3,EA016,No exogamous clans,EA016-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +12462,Ih4,EA016,Clans,EA016-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12463,Ih5,EA016,Clans,EA016-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +12464,Ih6,EA016,No exogamous clans,EA016-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +12465,Ih7,EA016,Clans,EA016-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +12466,Ih8,EA016,No exogamous clans,EA016-9,"Formerly clan communities not segmented into barrios (code ""1"")",quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +12467,Ih9,EA016,No exogamous clans,EA016-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12468,Ii1,EA016,No exogamous clans,EA016-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +12469,Ii10,EA016,?,EA016-NA,,,,,, +12470,Ii12,EA016,No exogamous clans,EA016-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12471,Ii13,EA016,?,EA016-NA,,,,,, +12472,Ii14,EA016,No exogamous clans,EA016-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +12473,Ii2,EA016,No exogamous clans,EA016-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +12474,Ii3,EA016,No exogamous clans,EA016-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +12475,Ii4,EA016,No exogamous clans,EA016-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +12476,Ii5,EA016,No exogamous clans,EA016-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to Col 16, not Col 19 as stated in Gray (1999)" +12477,Ii6,EA016,No exogamous clans,EA016-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +12478,Ii7,EA016,No exogamous clans,EA016-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +12479,Ii8,EA016,?,EA016-NA,,,,,, +12480,Ii9,EA016,No exogamous clans,EA016-9,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +12481,Ij1,EA016,No exogamous clans,EA016-9,,buck1934,,1820,EthnographicAtlas_1967_p98, +12482,Ij10,EA016,?,EA016-NA,,,,,, +12483,Ij2,EA016,No exogamous clans,EA016-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +12484,Ij3,EA016,No exogamous clans,EA016-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +12485,Ij4,EA016,?,EA016-NA,,,,,, +12486,Ij5,EA016,No exogamous clans,EA016-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +12487,Ij6,EA016,No exogamous clans,EA016-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +12488,Ij7,EA016,No exogamous clans,EA016-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +12489,Ij8,EA016,No exogamous clans,EA016-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +12490,Ij9,EA016,?,EA016-NA,,,,,, +12491,Na1,EA016,No exogamous clans,EA016-9,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +12492,Na10,EA016,No exogamous clans,EA016-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +12493,Na11,EA016,No exogamous clans,EA016-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +12494,Na12,EA016,No exogamous clans,EA016-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +12495,Na13,EA016,No exogamous clans,EA016-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +12496,Na14,EA016,No exogamous clans,EA016-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +12497,Na15,EA016,No exogamous clans,EA016-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +12498,Na16,EA016,No exogamous clans,EA016-9,,osgood1931,,1860,EthnographicAtlas_1967_p102, +12499,Na17,EA016,No exogamous clans,EA016-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12500,Na19,EA016,No exogamous clans,EA016-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +12501,Na2,EA016,No exogamous clans,EA016-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +12502,Na20,EA016,No exogamous clans,EA016-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +12503,Na21,EA016,No exogamous clans,EA016-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +12504,Na22,EA016,No exogamous clans,EA016-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +12505,Na23,EA016,No exogamous clans,EA016-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +12506,Na24,EA016,No exogamous clans,EA016-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +12507,Na25,EA016,No exogamous clans,EA016-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +12508,Na26,EA016,No exogamous clans,EA016-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +12509,Na27,EA016,No exogamous clans,EA016-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +12510,Na28,EA016,?,EA016-NA,,,,,, +12511,Na29,EA016,No exogamous clans,EA016-9,,goddard1916,,1850,EthnographicAtlas_1967_p102, +12512,Na3,EA016,No exogamous clans,EA016-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +12513,Na30,EA016,No exogamous clans,EA016-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +12514,Na31,EA016,No exogamous clans,EA016-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +12515,Na32,EA016,No exogamous clans,EA016-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +12516,Na33,EA016,No exogamous clans,EA016-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +12517,Na34,EA016,Clans,EA016-1,"The ""co-residential group"" approximates a patri-clan",dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +12518,Na35,EA016,?,EA016-NA,,,,,, +12519,Na36,EA016,No exogamous clans,EA016-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +12520,Na37,EA016,No exogamous clans,EA016-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +12521,Na38,EA016,No exogamous clans,EA016-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +12522,Na39,EA016,Clans,EA016-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +12523,Na4,EA016,No exogamous clans,EA016-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +12524,Na40,EA016,?,EA016-NA,,,,,, +12525,Na41,EA016,No exogamous clans,EA016-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +12526,Na42,EA016,?,EA016-NA,,,,,, +12527,Na43,EA016,No exogamous clans,EA016-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +12528,Na44,EA016,No exogamous clans,EA016-9,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +12529,Na45,EA016,No exogamous clans,EA016-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +12530,Na5,EA016,No exogamous clans,EA016-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +12531,Na6,EA016,No exogamous clans,EA016-9,,lantis1946,,1930,EthnographicAtlas_1967_p102, +12532,Na7,EA016,No exogamous clans,EA016-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +12533,Na8,EA016,No exogamous clans,EA016-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +12534,Na9,EA016,No exogamous clans,EA016-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12535,Nb1,EA016,Clans,EA016-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +12536,Nb10,EA016,No exogamous clans,EA016-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +12537,Nb11,EA016,No exogamous clans,EA016-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +12538,Nb12,EA016,No exogamous clans,EA016-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +12539,Nb13,EA016,No exogamous clans,EA016-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +12540,Nb14,EA016,No exogamous clans,EA016-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +12541,Nb15,EA016,No exogamous clans,EA016-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +12542,Nb16,EA016,No exogamous clans,EA016-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +12543,Nb17,EA016,No exogamous clans,EA016-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +12544,Nb18,EA016,No exogamous clans,EA016-9,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +12545,Nb19,EA016,?,EA016-NA,,,,,, +12546,Nb2,EA016,No exogamous clans,EA016-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +12547,Nb20,EA016,No exogamous clans,EA016-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +12548,Nb21,EA016,No exogamous clans,EA016-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +12549,Nb22,EA016,Clans,EA016-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +12550,Nb23,EA016,No exogamous clans,EA016-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +12551,Nb24,EA016,No exogamous clans,EA016-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +12552,Nb25,EA016,No exogamous clans,EA016-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +12553,Nb26,EA016,No exogamous clans,EA016-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +12554,Nb27,EA016,No exogamous clans,EA016-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +12555,Nb28,EA016,No exogamous clans,EA016-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +12556,Nb29,EA016,No exogamous clans,EA016-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +12557,Nb3,EA016,No exogamous clans,EA016-9,The village tends to be a localized ramage,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +12558,Nb30,EA016,No exogamous clans,EA016-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +12559,Nb31,EA016,Clans,EA016-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +12560,Nb32,EA016,No exogamous clans,EA016-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +12561,Nb33,EA016,No exogamous clans,EA016-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +12562,Nb34,EA016,No exogamous clans,EA016-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +12563,Nb35,EA016,No exogamous clans,EA016-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +12564,Nb36,EA016,No exogamous clans,EA016-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +12565,Nb37,EA016,No exogamous clans,EA016-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +12566,Nb38,EA016,No exogamous clans,EA016-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +12567,Nb39,EA016,No exogamous clans,EA016-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +12568,Nb4,EA016,No exogamous clans,EA016-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +12569,Nb5,EA016,No exogamous clans,EA016-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +12570,Nb6,EA016,Clans,EA016-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +12571,Nb7,EA016,No exogamous clans,EA016-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +12572,Nb8,EA016,No exogamous clans,EA016-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +12573,Nb9,EA016,No exogamous clans,EA016-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +12574,Nc1,EA016,Clans,EA016-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +12575,Nc10,EA016,No exogamous clans,EA016-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +12576,Nc11,EA016,No exogamous clans,EA016-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +12577,Nc12,EA016,No exogamous clans,EA016-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +12578,Nc13,EA016,No exogamous clans,EA016-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +12579,Nc14,EA016,No exogamous clans,EA016-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +12580,Nc15,EA016,No exogamous clans,EA016-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +12581,Nc16,EA016,No exogamous clans,EA016-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +12582,Nc17,EA016,No exogamous clans,EA016-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +12583,Nc18,EA016,No exogamous clans,EA016-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +12584,Nc19,EA016,No exogamous clans,EA016-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +12585,Nc2,EA016,No exogamous clans,EA016-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +12586,Nc20,EA016,No exogamous clans,EA016-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +12587,Nc21,EA016,No exogamous clans,EA016-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +12588,Nc22,EA016,No exogamous clans,EA016-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +12589,Nc23,EA016,No exogamous clans,EA016-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +12590,Nc24,EA016,Clans,EA016-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +12591,Nc25,EA016,No exogamous clans,EA016-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +12592,Nc26,EA016,?,EA016-NA,,,,,, +12593,Nc27,EA016,No exogamous clans,EA016-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +12594,Nc28,EA016,No exogamous clans,EA016-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +12595,Nc29,EA016,Clans,EA016-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +12596,Nc3,EA016,No exogamous clans,EA016-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +12597,Nc30,EA016,Clans,EA016-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +12598,Nc31,EA016,Clans,EA016-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +12599,Nc32,EA016,Clans,EA016-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +12600,Nc33,EA016,Clans,EA016-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +12601,Nc34,EA016,Clans,EA016-1,,meigs1939,,1880,EthnographicAtlas_1967_p106, +12602,Nc4,EA016,No exogamous clans,EA016-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +12603,Nc5,EA016,Clans,EA016-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +12604,Nc6,EA016,Clans,EA016-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +12605,Nc7,EA016,No exogamous clans,EA016-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +12606,Nc8,EA016,No exogamous clans,EA016-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +12607,Nc9,EA016,No exogamous clans,EA016-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +12608,Nd1,EA016,No exogamous clans,EA016-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +12609,Nd10,EA016,No exogamous clans,EA016-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +12610,Nd11,EA016,No exogamous clans,EA016-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +12611,Nd12,EA016,No exogamous clans,EA016-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +12612,Nd13,EA016,No exogamous clans,EA016-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +12613,Nd14,EA016,No exogamous clans,EA016-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +12614,Nd15,EA016,No exogamous clans,EA016-9,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +12615,Nd16,EA016,No exogamous clans,EA016-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +12616,Nd17,EA016,No exogamous clans,EA016-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +12617,Nd18,EA016,No exogamous clans,EA016-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +12618,Nd19,EA016,No exogamous clans,EA016-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +12619,Nd2,EA016,No exogamous clans,EA016-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +12620,Nd20,EA016,No exogamous clans,EA016-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +12621,Nd21,EA016,?,EA016-NA,,,,,, +12622,Nd22,EA016,No exogamous clans,EA016-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +12623,Nd23,EA016,?,EA016-NA,,,,,, +12624,Nd24,EA016,No exogamous clans,EA016-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +12625,Nd25,EA016,?,EA016-NA,,,,,, +12626,Nd26,EA016,?,EA016-NA,,,,,, +12627,Nd27,EA016,No exogamous clans,EA016-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +12628,Nd28,EA016,?,EA016-NA,,,,,, +12629,Nd29,EA016,No exogamous clans,EA016-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +12630,Nd3,EA016,No exogamous clans,EA016-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +12631,Nd30,EA016,No exogamous clans,EA016-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +12632,Nd31,EA016,No exogamous clans,EA016-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +12633,Nd32,EA016,No exogamous clans,EA016-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +12634,Nd33,EA016,No exogamous clans,EA016-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +12635,Nd34,EA016,?,EA016-NA,,,,,, +12636,Nd35,EA016,No exogamous clans,EA016-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +12637,Nd36,EA016,No exogamous clans,EA016-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +12638,Nd37,EA016,No exogamous clans,EA016-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +12639,Nd38,EA016,No exogamous clans,EA016-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +12640,Nd39,EA016,No exogamous clans,EA016-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +12641,Nd4,EA016,No exogamous clans,EA016-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +12642,Nd40,EA016,No exogamous clans,EA016-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +12643,Nd41,EA016,No exogamous clans,EA016-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +12644,Nd42,EA016,No exogamous clans,EA016-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +12645,Nd43,EA016,No exogamous clans,EA016-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +12646,Nd44,EA016,No exogamous clans,EA016-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +12647,Nd45,EA016,No exogamous clans,EA016-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +12648,Nd46,EA016,No exogamous clans,EA016-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +12649,Nd47,EA016,No exogamous clans,EA016-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +12650,Nd48,EA016,No exogamous clans,EA016-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +12651,Nd49,EA016,?,EA016-NA,,,,,, +12652,Nd5,EA016,No exogamous clans,EA016-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +12653,Nd50,EA016,No exogamous clans,EA016-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +12654,Nd51,EA016,?,EA016-NA,,,,,, +12655,Nd52,EA016,No exogamous clans,EA016-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +12656,Nd53,EA016,No exogamous clans,EA016-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +12657,Nd54,EA016,No exogamous clans,EA016-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12658,Nd55,EA016,No exogamous clans,EA016-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +12659,Nd56,EA016,?,EA016-NA,,,,,, +12660,Nd57,EA016,?,EA016-NA,,,,,, +12661,Nd58,EA016,No exogamous clans,EA016-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +12662,Nd59,EA016,?,EA016-NA,,,,,, +12663,Nd6,EA016,No exogamous clans,EA016-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +12664,Nd60,EA016,?,EA016-NA,,,,,, +12665,Nd61,EA016,?,EA016-NA,,,,,, +12666,Nd62,EA016,No exogamous clans,EA016-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +12667,Nd63,EA016,No exogamous clans,EA016-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +12668,Nd64,EA016,No exogamous clans,EA016-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +12669,Nd65,EA016,No exogamous clans,EA016-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +12670,Nd66,EA016,No exogamous clans,EA016-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +12671,Nd67,EA016,No exogamous clans,EA016-9,,gifford1936,,1870,EthnographicAtlas_1967_p110, +12672,Nd7,EA016,No exogamous clans,EA016-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +12673,Nd8,EA016,No exogamous clans,EA016-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +12674,Nd9,EA016,No exogamous clans,EA016-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +12675,Ne1,EA016,No exogamous clans,EA016-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +12676,Ne10,EA016,?,EA016-NA,,,,,, +12677,Ne11,EA016,No exogamous clans,EA016-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +12678,Ne12,EA016,No exogamous clans,EA016-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +12679,Ne13,EA016,No exogamous clans,EA016-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +12680,Ne14,EA016,No exogamous clans,EA016-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +12681,Ne15,EA016,No exogamous clans,EA016-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +12682,Ne16,EA016,?,EA016-NA,,,,,, +12683,Ne17,EA016,No exogamous clans,EA016-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +12684,Ne18,EA016,No exogamous clans,EA016-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +12685,Ne19,EA016,No exogamous clans,EA016-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +12686,Ne2,EA016,No exogamous clans,EA016-9,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +12687,Ne20,EA016,?,EA016-NA,,,,,, +12688,Ne21,EA016,?,EA016-NA,,,,,, +12689,Ne3,EA016,No exogamous clans,EA016-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +12690,Ne4,EA016,No exogamous clans,EA016-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +12691,Ne5,EA016,No exogamous clans,EA016-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +12692,Ne6,EA016,No exogamous clans,EA016-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +12693,Ne7,EA016,No exogamous clans,EA016-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +12694,Ne8,EA016,No exogamous clans,EA016-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +12695,Ne9,EA016,No exogamous clans,EA016-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +12696,Nf10,EA016,?,EA016-NA,,,,,, +12697,Nf11,EA016,?,EA016-NA,,,,,, +12698,Nf12,EA016,?,EA016-NA,,,,,, +12699,Nf13,EA016,No exogamous clans,EA016-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12700,Nf14,EA016,No exogamous clans,EA016-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +12701,Nf15,EA016,No exogamous clans,EA016-9,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +12702,Nf2,EA016,No exogamous clans,EA016-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +12703,Nf3,EA016,No exogamous clans,EA016-9,At least in camps,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +12704,Nf4,EA016,?,EA016-NA,,,,,, +12705,Nf5,EA016,No exogamous clans,EA016-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +12706,Nf6,EA016,No exogamous clans,EA016-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +12707,Nf7,EA016,No exogamous clans,EA016-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12708,Nf8,EA016,No exogamous clans,EA016-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +12709,Nf9,EA016,Clans,EA016-1,Specifically reported by Radin,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +12710,Ng1,EA016,No exogamous clans,EA016-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +12711,Ng10,EA016,No exogamous clans,EA016-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +12712,Ng11,EA016,No exogamous clans,EA016-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +12713,Ng12,EA016,No exogamous clans,EA016-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +12714,Ng13,EA016,?,EA016-NA,,,,,, +12715,Ng14,EA016,No exogamous clans,EA016-9,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +12716,Ng15,EA016,?,EA016-NA,,,,,, +12717,Ng2,EA016,Clans,EA016-1,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +12718,Ng3,EA016,No exogamous clans,EA016-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +12719,Ng4,EA016,No exogamous clans,EA016-9,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +12720,Ng5,EA016,No exogamous clans,EA016-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +12721,Ng6,EA016,No exogamous clans,EA016-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +12722,Ng7,EA016,No exogamous clans,EA016-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +12723,Ng8,EA016,No exogamous clans,EA016-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +12724,Ng9,EA016,?,EA016-NA,,,,,, +12725,Nh1,EA016,No exogamous clans,EA016-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +12726,Nh10,EA016,No exogamous clans,EA016-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +12727,Nh11,EA016,No exogamous clans,EA016-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +12728,Nh12,EA016,No exogamous clans,EA016-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +12729,Nh13,EA016,No exogamous clans,EA016-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +12730,Nh14,EA016,No exogamous clans,EA016-9,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +12731,Nh15,EA016,No exogamous clans,EA016-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +12732,Nh16,EA016,No exogamous clans,EA016-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12733,Nh17,EA016,No exogamous clans,EA016-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +12734,Nh18,EA016,No exogamous clans,EA016-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12735,Nh19,EA016,No exogamous clans,EA016-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +12736,Nh2,EA016,No exogamous clans,EA016-9,,dozier1954,,1950,EthnographicAtlas_1967_p114, +12737,Nh20,EA016,No exogamous clans,EA016-9,,gifford1931,,1860,EthnographicAtlas_1967_p114, +12738,Nh21,EA016,No exogamous clans,EA016-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12739,Nh22,EA016,Clans,EA016-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +12740,Nh23,EA016,No exogamous clans,EA016-9,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +12741,Nh24,EA016,No exogamous clans,EA016-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +12742,Nh25,EA016,No exogamous clans,EA016-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +12743,Nh26,EA016,No exogamous clans,EA016-9,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +12744,Nh27,EA016,No exogamous clans,EA016-9,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +12745,Nh3,EA016,No exogamous clans,EA016-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +12746,Nh4,EA016,No exogamous clans,EA016-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +12747,Nh5,EA016,No exogamous clans,EA016-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +12748,Nh6,EA016,No exogamous clans,EA016-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +12749,Nh7,EA016,No exogamous clans,EA016-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +12750,Nh8,EA016,No exogamous clans,EA016-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +12751,Nh9,EA016,No exogamous clans,EA016-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +12752,Ni1,EA016,No exogamous clans,EA016-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +12753,Ni2,EA016,No exogamous clans,EA016-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +12754,Ni3,EA016,No exogamous clans,EA016-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +12755,Ni4,EA016,No exogamous clans,EA016-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +12756,Ni5,EA016,No exogamous clans,EA016-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +12757,Ni6,EA016,No exogamous clans,EA016-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +12758,Ni7,EA016,No exogamous clans,EA016-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +12759,Ni8,EA016,?,EA016-NA,,,,,, +12760,Ni9,EA016,?,EA016-NA,,,,,, +12761,Nj1,EA016,No exogamous clans,EA016-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12762,Nj10,EA016,No exogamous clans,EA016-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12763,Nj11,EA016,?,EA016-NA,,,,,, +12764,Nj12,EA016,?,EA016-NA,,,,,, +12765,Nj13,EA016,?,EA016-NA,,,,,, +12766,Nj14,EA016,No exogamous clans,EA016-9,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +12767,Nj2,EA016,No exogamous clans,EA016-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +12768,Nj3,EA016,?,EA016-NA,,,,,, +12769,Nj4,EA016,?,EA016-NA,,,,,, +12770,Nj5,EA016,No exogamous clans,EA016-9,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +12771,Nj6,EA016,No exogamous clans,EA016-9,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +12772,Nj7,EA016,No exogamous clans,EA016-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12773,Nj8,EA016,No exogamous clans,EA016-9,,foster1948,,1500,EthnographicAtlas_1967_p118, +12774,Nj9,EA016,Clans,EA016-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +12775,Sa1,EA016,No exogamous clans,EA016-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +12776,Sa10,EA016,Clans,EA016-1,"Tozzer reports that ""the members of one line of descent generally live in the same neighborhood""",baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +12777,Sa11,EA016,No exogamous clans,EA016-9,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +12778,Sa12,EA016,No exogamous clans,EA016-9,,stone1948,,1948,EthnographicAtlas_1967_p118, +12779,Sa13,EA016,No exogamous clans,EA016-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +12780,Sa14,EA016,?,EA016-NA,,,,,, +12781,Sa15,EA016,?,EA016-NA,,,,,, +12782,Sa16,EA016,No exogamous clans,EA016-9,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +12783,Sa17,EA016,No exogamous clans,EA016-9,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +12784,Sa2,EA016,No exogamous clans,EA016-9,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12785,Sa3,EA016,No exogamous clans,EA016-9,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +12786,Sa4,EA016,No exogamous clans,EA016-9,But local exogamy occurs in default of marriageable persons within the local community,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +12787,Sa5,EA016,No exogamous clans,EA016-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +12788,Sa6,EA016,No exogamous clans,EA016-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +12789,Sa7,EA016,No exogamous clans,EA016-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +12790,Sa8,EA016,No exogamous clans,EA016-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +12791,Sa9,EA016,No exogamous clans,EA016-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +12792,Sb1,EA016,No exogamous clans,EA016-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +12793,Sb2,EA016,No exogamous clans,EA016-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +12794,Sb3,EA016,No exogamous clans,EA016-9,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +12795,Sb4,EA016,No exogamous clans,EA016-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +12796,Sb5,EA016,No exogamous clans,EA016-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +12797,Sb6,EA016,No exogamous clans,EA016-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +12798,Sb7,EA016,No exogamous clans,EA016-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +12799,Sb8,EA016,?,EA016-NA,,,,,, +12800,Sb9,EA016,No exogamous clans,EA016-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +12801,Sc1,EA016,No exogamous clans,EA016-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +12802,Sc10,EA016,No exogamous clans,EA016-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +12803,Sc11,EA016,No exogamous clans,EA016-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +12804,Sc12,EA016,No exogamous clans,EA016-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +12805,Sc13,EA016,No exogamous clans,EA016-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +12806,Sc14,EA016,?,EA016-NA,,,,,, +12807,Sc15,EA016,?,EA016-NA,,,,,, +12808,Sc16,EA016,No exogamous clans,EA016-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +12809,Sc17,EA016,No exogamous clans,EA016-9,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +12810,Sc18,EA016,Clans,EA016-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +12811,Sc2,EA016,No exogamous clans,EA016-9,,leedsnd,,1950,EthnographicAtlas_1967_p118, +12812,Sc3,EA016,No exogamous clans,EA016-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +12813,Sc4,EA016,No exogamous clans,EA016-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +12814,Sc5,EA016,No exogamous clans,EA016-9,,farabee1918,,1900,EthnographicAtlas_1967_p118, +12815,Sc6,EA016,No exogamous clans,EA016-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12816,Sc7,EA016,No exogamous clans,EA016-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +12817,Sc8,EA016,No exogamous clans,EA016-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +12818,Sc9,EA016,No exogamous clans,EA016-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +12819,Sd1,EA016,No exogamous clans,EA016-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12820,Sd2,EA016,No exogamous clans,EA016-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +12821,Sd3,EA016,?,EA016-NA,,,,,, +12822,Sd4,EA016,No exogamous clans,EA016-9,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +12823,Sd5,EA016,?,EA016-NA,,,,,, +12824,Sd6,EA016,No exogamous clans,EA016-9,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +12825,Sd7,EA016,No exogamous clans,EA016-9,,fock1963,,1950,EthnographicAtlas_1967_p118, +12826,Sd8,EA016,No exogamous clans,EA016-9,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +12827,Sd9,EA016,No exogamous clans,EA016-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12828,Se1,EA016,No exogamous clans,EA016-9,"The entry assumes that the matrilocal extended families are organized around matrilineage cores; if there are actually no lineages, the entry should be U; Holmberg does not report lineages but admits, in personal discussion, that he may conceivably have overlooked their existence",holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +12829,Se10,EA016,?,EA016-NA,,,,,, +12830,Se11,EA016,No exogamous clans,EA016-9,,prost1965,,1960,EthnographicAtlas_1967_p122, +12831,Se12,EA016,Clans,EA016-1,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +12832,Se2,EA016,Clans,EA016-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +12833,Se3,EA016,No exogamous clans,EA016-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +12834,Se4,EA016,Clans,EA016-1,,fejos1943,,1940,EthnographicAtlas_1967_p118, +12835,Se5,EA016,Clans,EA016-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +12836,Se6,EA016,Clans,EA016-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +12837,Se7,EA016,No exogamous clans,EA016-9,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12838,Se8,EA016,No exogamous clans,EA016-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +12839,Se9,EA016,No exogamous clans,EA016-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +12840,Sf1,EA016,No exogamous clans,EA016-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +12841,Sf2,EA016,No exogamous clans,EA016-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +12842,Sf3,EA016,No exogamous clans,EA016-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +12843,Sf4,EA016,No exogamous clans,EA016-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +12844,Sf5,EA016,?,EA016-NA,,,,,, +12845,Sf6,EA016,?,EA016-NA,,,,,, +12846,Sf7,EA016,No exogamous clans,EA016-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +12847,Sf8,EA016,?,EA016-NA,,,,,, +12848,Sf9,EA016,No exogamous clans,EA016-9,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +12849,Sg1,EA016,No exogamous clans,EA016-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +12850,Sg2,EA016,No exogamous clans,EA016-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12851,Sg3,EA016,No exogamous clans,EA016-9,"Entry would be 'clan communities not segmented into barrios' (code ""1"") if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock (1965c))",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +12852,Sg4,EA016,No exogamous clans,EA016-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +12853,Sg5,EA016,No exogamous clans,EA016-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12854,Sh1,EA016,No exogamous clans,EA016-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +12855,Sh2,EA016,No exogamous clans,EA016-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +12856,Sh3,EA016,No exogamous clans,EA016-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +12857,Sh4,EA016,?,EA016-NA,,,,,, +12858,Sh5,EA016,No exogamous clans,EA016-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +12859,Sh6,EA016,No exogamous clans,EA016-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +12860,Sh7,EA016,No exogamous clans,EA016-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +12861,Sh8,EA016,No exogamous clans,EA016-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +12862,Sh9,EA016,No exogamous clans,EA016-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +12863,Si1,EA016,No exogamous clans,EA016-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12864,Si10,EA016,No exogamous clans,EA016-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +12865,Si2,EA016,No exogamous clans,EA016-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +12866,Si3,EA016,No exogamous clans,EA016-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12867,Si4,EA016,No exogamous clans,EA016-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +12868,Si5,EA016,No exogamous clans,EA016-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +12869,Si6,EA016,?,EA016-NA,,,,,, +12870,Si7,EA016,?,EA016-NA,,,,,, +12871,Si8,EA016,No exogamous clans,EA016-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +12872,Si9,EA016,?,EA016-NA,,,,,, +12873,Sj1,EA016,No exogamous clans,EA016-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +12874,Sj10,EA016,No exogamous clans,EA016-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12875,Sj11,EA016,No exogamous clans,EA016-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +12876,Sj2,EA016,No exogamous clans,EA016-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +12877,Sj3,EA016,No exogamous clans,EA016-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +12878,Sj4,EA016,No exogamous clans,EA016-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +12879,Sj5,EA016,No exogamous clans,EA016-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +12880,Sj6,EA016,No exogamous clans,EA016-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +12881,Sj7,EA016,No exogamous clans,EA016-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +12882,Sj8,EA016,No exogamous clans,EA016-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +12883,Sj9,EA016,No exogamous clans,EA016-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +12884,ch12,EA016,No exogamous clans,EA016-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +12885,ch13,EA016,No exogamous clans,EA016-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +12886,ch14,EA016,No exogamous clans,EA016-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +12887,ch15,EA016,No exogamous clans,EA016-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +12888,ch16,EA016,No exogamous clans,EA016-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +12889,ch17,EA016,No exogamous clans,EA016-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +12890,ch18,EA016,No exogamous clans,EA016-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +12891,ch19,EA016,No exogamous clans,EA016-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +12892,ch20,EA016,No exogamous clans,EA016-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +12893,ch21,EA016,No exogamous clans,EA016-9,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +12894,ch22,EA016,No exogamous clans,EA016-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +12895,ch23,EA016,No exogamous clans,EA016-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +12896,ch24,EA016,Clans,EA016-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +12897,ch25,EA016,No exogamous clans,EA016-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +12898,ch26,EA016,No exogamous clans,EA016-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +12899,ch27,EA016,?,EA016-NA,,,,,, +12900,ch28,EA016,No exogamous clans,EA016-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +12901,ec12,EA016,No exogamous clans,EA016-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +12902,ec13,EA016,No exogamous clans,EA016-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +12903,ec14,EA016,No exogamous clans,EA016-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +12904,ec15,EA016,No exogamous clans,EA016-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +12905,ec16,EA016,Clans,EA016-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +12906,ec17,EA016,Clans,EA016-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +12907,ec18,EA016,Clans,EA016-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +12908,ec19,EA016,Clans,EA016-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +12909,ec20,EA016,Clans,EA016-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +12910,ec21,EA016,Clans,EA016-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +12911,Aa1,EA017,None,EA017-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +12912,Aa2,EA017,Sibs,EA017-4,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +12913,Aa3,EA017,Sibs,EA017-4,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +12914,Aa4,EA017,None,EA017-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +12915,Aa5,EA017,None,EA017-1,Entry follows Schebesta; Czekanowski denies unilineal descent groups,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +12916,Aa6,EA017,Lineages,EA017-3,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +12917,Aa7,EA017,None,EA017-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +12918,Aa8,EA017,None,EA017-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +12919,Aa9,EA017,None,EA017-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +12920,Ab1,EA017,Phratries,EA017-5,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +12921,Ab10,EA017,Sibs,EA017-4,,hunter1936,,1936,EthnographicAtlas_1967_p62, +12922,Ab11,EA017,Sibs,EA017-4,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +12923,Ab12,EA017,Sibs,EA017-4,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +12924,Ab13,EA017,None,EA017-1,Quasi-lineages inferred from the patrilocal but basically territorial ward organization and from vestigial patrisibs,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +12925,Ab14,EA017,Sibs,EA017-4,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +12926,Ab15,EA017,Sibs,EA017-4,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +12927,Ab16,EA017,Sibs,EA017-4,,earthy1933,,1930,EthnographicAtlas_1967_p62, +12928,Ab17,EA017,Sibs,EA017-4,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +12929,Ab18,EA017,Sibs,EA017-4,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +12930,Ab19,EA017,None,EA017-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +12931,Ab2,EA017,Sibs,EA017-4,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +12932,Ab20,EA017,None,EA017-1,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +12933,Ab21a,EA017,Sibs,EA017-4,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +12934,Ab21b,EA017,Sibs,EA017-4,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +12935,Ab22,EA017,Sibs,EA017-4,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +12936,Ab3,EA017,None,EA017-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +12937,Ab4,EA017,Sibs,EA017-4,,junod1927,,1920,EthnographicAtlas_1967_p62, +12938,Ab5,EA017,Lineages,EA017-3,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +12939,Ab6,EA017,Sibs,EA017-4,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +12940,Ab7,EA017,None,EA017-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +12941,Ab8,EA017,Sibs,EA017-4,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +12942,Ab9,EA017,Sibs,EA017-4,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +12943,Ac1,EA017,Lineages,EA017-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +12944,Ac10,EA017,None,EA017-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +12945,Ac11,EA017,None,EA017-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +12946,Ac12,EA017,None,EA017-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +12947,Ac13,EA017,None,EA017-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +12948,Ac14,EA017,None,EA017-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +12949,Ac15,EA017,None,EA017-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +12950,Ac16,EA017,None,EA017-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +12951,Ac17,EA017,None,EA017-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +12952,Ac18,EA017,None,EA017-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +12953,Ac19,EA017,None,EA017-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +12954,Ac2,EA017,None,EA017-1,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +12955,Ac20,EA017,None,EA017-1,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +12956,Ac21,EA017,None,EA017-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +12957,Ac22,EA017,None,EA017-1,,mertens1935,,1930,EthnographicAtlas_1967_p62, +12958,Ac23,EA017,None,EA017-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +12959,Ac24,EA017,None,EA017-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +12960,Ac25,EA017,None,EA017-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +12961,Ac26,EA017,None,EA017-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +12962,Ac27,EA017,None,EA017-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +12963,Ac28,EA017,None,EA017-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +12964,Ac29,EA017,None,EA017-1,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +12965,Ac3,EA017,None,EA017-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +12966,Ac30,EA017,None,EA017-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +12967,Ac31,EA017,None,EA017-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +12968,Ac32,EA017,None,EA017-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +12969,Ac33,EA017,None,EA017-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +12970,Ac34,EA017,None,EA017-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +12971,Ac35,EA017,None,EA017-1,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +12972,Ac36,EA017,Sibs,EA017-4,"Formerly 'none' (code ""1"")",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +12973,Ac37,EA017,None,EA017-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +12974,Ac38,EA017,None,EA017-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +12975,Ac39,EA017,None,EA017-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +12976,Ac4,EA017,None,EA017-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +12977,Ac40,EA017,None,EA017-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +12978,Ac41,EA017,None,EA017-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +12979,Ac42,EA017,None,EA017-1,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +12980,Ac43,EA017,Sibs,EA017-4,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +12981,Ac5,EA017,None,EA017-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +12982,Ac6,EA017,None,EA017-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +12983,Ac7,EA017,None,EA017-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +12984,Ac8,EA017,None,EA017-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +12985,Ac9,EA017,None,EA017-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +12986,Ad1,EA017,Lineages,EA017-3,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +12987,Ad10,EA017,Sibs,EA017-4,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +12988,Ad11,EA017,Sibs,EA017-4,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +12989,Ad12,EA017,Sibs,EA017-4,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +12990,Ad13,EA017,Sibs,EA017-4,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +12991,Ad14,EA017,None,EA017-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +12992,Ad15,EA017,Sibs,EA017-4,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +12993,Ad16,EA017,Lineages,EA017-3,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +12994,Ad17,EA017,Sibs,EA017-4,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +12995,Ad18,EA017,Sibs,EA017-4,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +12996,Ad19,EA017,Sibs,EA017-4,Uncertain since succession is reported to be matrilineal,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +12997,Ad2,EA017,Sibs,EA017-4,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +12998,Ad20,EA017,None,EA017-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +12999,Ad21,EA017,Sibs,EA017-4,"""A man belongs to the kin group (uluko) of his father's father or his son's son, but not to that of his father or of his son (who both belong to another uluko). There is perpetual alternation of two uluko-names in each patrilineage.""",maurice193538,,1930,EthnographicAtlas_1967_p66, +13000,Ad22,EA017,None,EA017-1,The incompletely exogamous patrisibs are better classed as ramages since affiliation is to a considerable extent ambilineal,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +13001,Ad23,EA017,Sibs,EA017-4,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +13002,Ad24,EA017,Sibs,EA017-4,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +13003,Ad25,EA017,None,EA017-1,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +13004,Ad26,EA017,Sibs,EA017-4,,sick1916,,1910,EthnographicAtlas_1967_p66, +13005,Ad27,EA017,None,EA017-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +13006,Ad28,EA017,None,EA017-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +13007,Ad29,EA017,None,EA017-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +13008,Ad3,EA017,Sibs,EA017-4,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +13009,Ad30,EA017,Sibs,EA017-4,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +13010,Ad31,EA017,Sibs,EA017-4,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +13011,Ad32,EA017,Phratries,EA017-5,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +13012,Ad33,EA017,Sibs,EA017-4,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +13013,Ad34,EA017,Sibs,EA017-4,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +13014,Ad35,EA017,Sibs,EA017-4,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +13015,Ad36,EA017,Sibs,EA017-4,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +13016,Ad37,EA017,Sibs,EA017-4,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +13017,Ad38,EA017,Sibs,EA017-4,Inferential from distributional evidence,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +13018,Ad39,EA017,Sibs,EA017-4,,gray1963,,1950,EthnographicAtlas_1967_p66, +13019,Ad4,EA017,Sibs,EA017-4,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +13020,Ad40,EA017,Sibs,EA017-4,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +13021,Ad41,EA017,Sibs,EA017-4,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +13022,Ad42,EA017,Sibs,EA017-4,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +13023,Ad43,EA017,Sibs,EA017-4,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +13024,Ad44,EA017,Sibs,EA017-4,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +13025,Ad45,EA017,Sibs,EA017-4,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +13026,Ad46,EA017,Sibs,EA017-4,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +13027,Ad47,EA017,Sibs,EA017-4,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +13028,Ad48,EA017,Sibs,EA017-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +13029,Ad49,EA017,Sibs,EA017-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +13030,Ad5,EA017,Lineages,EA017-3,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +13031,Ad50,EA017,None,EA017-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +13032,Ad51,EA017,None,EA017-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +13033,Ad6,EA017,Lineages,EA017-3,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +13034,Ad7,EA017,Sibs,EA017-4,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +13035,Ad8,EA017,Sibs,EA017-4,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +13036,Ad9,EA017,Sibs,EA017-4,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +13037,Ae1,EA017,Sibs,EA017-4,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +13038,Ae10,EA017,Sibs,EA017-4,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +13039,Ae11,EA017,Sibs,EA017-4,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +13040,Ae12,EA017,Sibs,EA017-4,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +13041,Ae13,EA017,Sibs,EA017-4,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +13042,Ae14,EA017,Sibs,EA017-4,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +13043,Ae15,EA017,Sibs,EA017-4,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +13044,Ae16,EA017,Sibs,EA017-4,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +13045,Ae17,EA017,Sibs,EA017-4,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +13046,Ae18,EA017,Sibs,EA017-4,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +13047,Ae19,EA017,Sibs,EA017-4,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +13048,Ae2,EA017,Sibs,EA017-4,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +13049,Ae20,EA017,Sibs,EA017-4,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +13050,Ae21,EA017,Sibs,EA017-4,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +13051,Ae22,EA017,Sibs,EA017-4,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +13052,Ae23,EA017,Sibs,EA017-4,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +13053,Ae24,EA017,Sibs,EA017-4,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +13054,Ae25,EA017,Sibs,EA017-4,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +13055,Ae26,EA017,Sibs,EA017-4,Patrilineal descent is inferential,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +13056,Ae27,EA017,Moieties,EA017-6,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +13057,Ae28,EA017,Sibs,EA017-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +13058,Ae29,EA017,Sibs,EA017-4,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +13059,Ae3,EA017,Sibs,EA017-4,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +13060,Ae30,EA017,Lineages,EA017-3,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +13061,Ae31,EA017,Sibs,EA017-4,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +13062,Ae32,EA017,Sibs,EA017-4,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +13063,Ae33,EA017,Sibs,EA017-4,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +13064,Ae34,EA017,Lineages,EA017-3,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +13065,Ae35,EA017,Sibs,EA017-4,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +13066,Ae36,EA017,Sibs,EA017-4,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +13067,Ae37,EA017,Sibs,EA017-4,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +13068,Ae38,EA017,None,EA017-1,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +13069,Ae39,EA017,Sibs,EA017-4,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +13070,Ae4,EA017,Sibs,EA017-4,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +13071,Ae40,EA017,Sibs,EA017-4,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +13072,Ae41,EA017,Sibs,EA017-4,,andersson1953,,1940,EthnographicAtlas_1967_p66, +13073,Ae42,EA017,Lineages,EA017-3,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +13074,Ae43,EA017,Sibs,EA017-4,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +13075,Ae44,EA017,?,EA017-NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +13076,Ae45,EA017,Lineages,EA017-3,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +13077,Ae46,EA017,None,EA017-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +13078,Ae47,EA017,Lineages,EA017-3,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +13079,Ae48,EA017,Phratries,EA017-5,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +13080,Ae49,EA017,Lineages,EA017-3,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +13081,Ae5,EA017,Lineages,EA017-3,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +13082,Ae50,EA017,Lineages,EA017-3,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +13083,Ae51,EA017,Lineages,EA017-3,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +13084,Ae52,EA017,Lineages,EA017-3,"But descent is matrilineal in the extreme south, adjacent to the Kom",kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +13085,Ae53,EA017,Lineages,EA017-3,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +13086,Ae54,EA017,None,EA017-1,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +13087,Ae55,EA017,Lineages,EA017-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +13088,Ae56,EA017,Sibs,EA017-4,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +13089,Ae57,EA017,Lineages,EA017-3,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +13090,Ae58,EA017,Lineages,EA017-3,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +13091,Ae59,EA017,Phratries,EA017-5,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +13092,Ae6,EA017,Lineages,EA017-3,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +13093,Ae7,EA017,Lineages,EA017-3,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +13094,Ae8,EA017,Sibs,EA017-4,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +13095,Ae9,EA017,Lineages,EA017-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +13096,Af1,EA017,Phratries,EA017-5,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +13097,Af10,EA017,Moieties,EA017-6,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +13098,Af11,EA017,Sibs,EA017-4,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +13099,Af12,EA017,None,EA017-1,Patrilineages (ntoro groups) formerly existed but are now extinct,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +13100,Af13,EA017,Lineages,EA017-3,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +13101,Af14,EA017,None,EA017-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +13102,Af15,EA017,Sibs,EA017-4,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +13103,Af16,EA017,Sibs,EA017-4,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +13104,Af17,EA017,?,EA017-NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +13105,Af18,EA017,Lineages,EA017-3,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +13106,Af19,EA017,Sibs,EA017-4,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +13107,Af2,EA017,Sibs,EA017-4,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +13108,Af20,EA017,Lineages,EA017-3,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +13109,Af21,EA017,None,EA017-1,"The so-called ""houses"" are presumably ramages rather than patrilineages in view of the reported avunculocal residence and matrilineal affiliation in cases where only a token bride-price is paid",granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +13110,Af22,EA017,Lineages,EA017-3,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +13111,Af23,EA017,Lineages,EA017-3,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +13112,Af24,EA017,Sibs,EA017-4,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +13113,Af25,EA017,Lineages,EA017-3,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +13114,Af26,EA017,None,EA017-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +13115,Af27,EA017,Lineages,EA017-3,But formerly children by other than an exchange wife belonged to their mother's kin group,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +13116,Af28,EA017,Lineages,EA017-3,But Gunn and Conant suspect ambilineal descent,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +13117,Af29,EA017,Sibs,EA017-4,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +13118,Af3,EA017,Sibs,EA017-4,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +13119,Af30,EA017,Sibs,EA017-4,Inferential rather than attested,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +13120,Af31,EA017,Sibs,EA017-4,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +13121,Af32,EA017,Sibs,EA017-4,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13122,Af33,EA017,Sibs,EA017-4,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13123,Af34,EA017,Sibs,EA017-4,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13124,Af35,EA017,Sibs,EA017-4,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +13125,Af36,EA017,Sibs,EA017-4,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +13126,Af37,EA017,Sibs,EA017-4,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +13127,Af38,EA017,None,EA017-1,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +13128,Af39,EA017,None,EA017-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +13129,Af4,EA017,Lineages,EA017-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +13130,Af40,EA017,None,EA017-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +13131,Af41,EA017,?,EA017-NA,"There are lineages, formerly matrilineal but more recently patrilineal",crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +13132,Af42,EA017,Lineages,EA017-3,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +13133,Af43,EA017,Lineages,EA017-3,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +13134,Af44,EA017,None,EA017-1,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +13135,Af45,EA017,None,EA017-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +13136,Af46,EA017,Lineages,EA017-3,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +13137,Af47,EA017,Sibs,EA017-4,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +13138,Af48,EA017,Lineages,EA017-3,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +13139,Af49,EA017,Sibs,EA017-4,,schwab1947,,1940,EthnographicAtlas_1967_p70, +13140,Af5,EA017,Lineages,EA017-3,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +13141,Af50,EA017,Lineages,EA017-3,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +13142,Af51,EA017,Lineages,EA017-3,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +13143,Af52,EA017,Lineages,EA017-3,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +13144,Af53,EA017,Sibs,EA017-4,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +13145,Af54,EA017,Sibs,EA017-4,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +13146,Af55,EA017,Sibs,EA017-4,"Since children are affiliated with the mother's group in cases of uxorilocal residence, descent groups are in a measure ambilineal",dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +13147,Af56,EA017,Sibs,EA017-4,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +13148,Af57,EA017,Sibs,EA017-4,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +13149,Af58,EA017,Sibs,EA017-4,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +13150,Af6,EA017,Sibs,EA017-4,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +13151,Af7,EA017,Sibs,EA017-4,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +13152,Af8,EA017,Lineages,EA017-3,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +13153,Af9,EA017,None,EA017-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +13154,Ag1,EA017,Sibs,EA017-4,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +13155,Ag10,EA017,Sibs,EA017-4,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +13156,Ag11,EA017,None,EA017-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +13157,Ag12,EA017,Sibs,EA017-4,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +13158,Ag13,EA017,Sibs,EA017-4,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +13159,Ag14,EA017,Lineages,EA017-3,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +13160,Ag15,EA017,Lineages,EA017-3,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +13161,Ag16,EA017,Lineages,EA017-3,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +13162,Ag17,EA017,Lineages,EA017-3,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +13163,Ag18,EA017,None,EA017-1,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +13164,Ag19,EA017,Lineages,EA017-3,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +13165,Ag2,EA017,Sibs,EA017-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +13166,Ag20,EA017,Lineages,EA017-3,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +13167,Ag21,EA017,None,EA017-1,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +13168,Ag22,EA017,Exogamy only,EA017-2,But patrilineal exogamy extends only to second cousins,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +13169,Ag23,EA017,Sibs,EA017-4,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +13170,Ag24,EA017,Sibs,EA017-4,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +13171,Ag25,EA017,Sibs,EA017-4,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +13172,Ag26,EA017,Sibs,EA017-4,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +13173,Ag27,EA017,Sibs,EA017-4,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +13174,Ag28,EA017,?,EA017-NA,,,,,, +13175,Ag29,EA017,Lineages,EA017-3,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +13176,Ag3,EA017,Lineages,EA017-3,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +13177,Ag30,EA017,Lineages,EA017-3,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +13178,Ag31,EA017,Lineages,EA017-3,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +13179,Ag32,EA017,Sibs,EA017-4,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +13180,Ag33,EA017,Moieties,EA017-6,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +13181,Ag34,EA017,None,EA017-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +13182,Ag35,EA017,None,EA017-1,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +13183,Ag36,EA017,Sibs,EA017-4,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +13184,Ag37,EA017,Sibs,EA017-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +13185,Ag38,EA017,Sibs,EA017-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +13186,Ag39,EA017,Sibs,EA017-4,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +13187,Ag4,EA017,Sibs,EA017-4,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +13188,Ag40,EA017,Sibs,EA017-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +13189,Ag41,EA017,Sibs,EA017-4,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +13190,Ag42,EA017,Sibs,EA017-4,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +13191,Ag43,EA017,Lineages,EA017-3,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +13192,Ag44,EA017,Sibs,EA017-4,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +13193,Ag45,EA017,Sibs,EA017-4,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +13194,Ag46,EA017,Lineages,EA017-3,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +13195,Ag47,EA017,Sibs,EA017-4,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +13196,Ag48,EA017,Sibs,EA017-4,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +13197,Ag49,EA017,Lineages,EA017-3,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +13198,Ag5,EA017,Sibs,EA017-4,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +13199,Ag50,EA017,Sibs,EA017-4,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +13200,Ag51,EA017,Sibs,EA017-4,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +13201,Ag52,EA017,Sibs,EA017-4,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +13202,Ag53,EA017,Sibs,EA017-4,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +13203,Ag54,EA017,Lineages,EA017-3,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +13204,Ag6,EA017,Lineages,EA017-3,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +13205,Ag7,EA017,Lineages,EA017-3,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +13206,Ag8,EA017,None,EA017-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +13207,Ag9,EA017,Sibs,EA017-4,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +13208,Ah1,EA017,Lineages,EA017-3,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13209,Ah10,EA017,Lineages,EA017-3,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +13210,Ah11,EA017,Sibs,EA017-4,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +13211,Ah12,EA017,Sibs,EA017-4,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +13212,Ah13,EA017,?,EA017-NA,Probably patrilineal,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +13213,Ah14,EA017,Sibs,EA017-4,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +13214,Ah15,EA017,Sibs,EA017-4,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +13215,Ah16,EA017,Sibs,EA017-4,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +13216,Ah17,EA017,Lineages,EA017-3,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +13217,Ah18,EA017,Sibs,EA017-4,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +13218,Ah19,EA017,Sibs,EA017-4,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +13219,Ah2,EA017,None,EA017-1,,meek1931a,,1920,EthnographicAtlas_1967_p74, +13220,Ah20,EA017,Moieties,EA017-6,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +13221,Ah21,EA017,Sibs,EA017-4,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13222,Ah22,EA017,?,EA017-NA,"The reported ""clans"" are presumably patrilineal, though Ames mentions very strong survivals of matrilineal descent",ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +13223,Ah23,EA017,None,EA017-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13224,Ah24,EA017,Lineages,EA017-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13225,Ah25,EA017,Sibs,EA017-4,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13226,Ah26,EA017,None,EA017-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13227,Ah27,EA017,Lineages,EA017-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13228,Ah28,EA017,Lineages,EA017-3,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +13229,Ah29,EA017,None,EA017-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13230,Ah3,EA017,Phratries,EA017-5,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +13231,Ah30,EA017,None,EA017-1,Patrilineal lineages and moieties have exclusively religious functions,meek1931b,,1920,EthnographicAtlas_1967_p74, +13232,Ah31,EA017,Sibs,EA017-4,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +13233,Ah32,EA017,None,EA017-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13234,Ah33,EA017,Sibs,EA017-4,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +13235,Ah34,EA017,Sibs,EA017-4,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +13236,Ah35,EA017,Phratries,EA017-5,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13237,Ah36,EA017,Lineages,EA017-3,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +13238,Ah37,EA017,Lineages,EA017-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13239,Ah38,EA017,Lineages,EA017-3,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +13240,Ah39,EA017,Sibs,EA017-4,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +13241,Ah4,EA017,None,EA017-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +13242,Ah5,EA017,Lineages,EA017-3,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +13243,Ah6,EA017,None,EA017-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +13244,Ah7,EA017,Sibs,EA017-4,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +13245,Ah8,EA017,Phratries,EA017-5,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +13246,Ah9,EA017,Lineages,EA017-3,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +13247,Ai1,EA017,Lineages,EA017-3,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +13248,Ai10,EA017,Sibs,EA017-4,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +13249,Ai11,EA017,Lineages,EA017-3,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +13250,Ai12,EA017,Lineages,EA017-3,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +13251,Ai13,EA017,Lineages,EA017-3,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +13252,Ai14,EA017,Lineages,EA017-3,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +13253,Ai15,EA017,Sibs,EA017-4,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +13254,Ai16,EA017,?,EA017-NA,Presumably patrilineal,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +13255,Ai17,EA017,Lineages,EA017-3,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +13256,Ai18,EA017,?,EA017-NA,Inferentially patrilineal,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +13257,Ai19,EA017,Sibs,EA017-4,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +13258,Ai2,EA017,Lineages,EA017-3,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +13259,Ai20,EA017,Sibs,EA017-4,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +13260,Ai21,EA017,Lineages,EA017-3,Inferential,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +13261,Ai22,EA017,Lineages,EA017-3,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +13262,Ai23,EA017,Lineages,EA017-3,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +13263,Ai24,EA017,Sibs,EA017-4,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +13264,Ai25,EA017,Sibs,EA017-4,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +13265,Ai26,EA017,Sibs,EA017-4,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +13266,Ai27,EA017,Sibs,EA017-4,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +13267,Ai28,EA017,Lineages,EA017-3,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +13268,Ai29,EA017,Sibs,EA017-4,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +13269,Ai3,EA017,Sibs,EA017-4,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +13270,Ai30,EA017,Sibs,EA017-4,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +13271,Ai31,EA017,Sibs,EA017-4,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +13272,Ai32,EA017,Sibs,EA017-4,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +13273,Ai33,EA017,Sibs,EA017-4,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +13274,Ai34,EA017,Lineages,EA017-3,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +13275,Ai35,EA017,Sibs,EA017-4,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +13276,Ai36,EA017,Sibs,EA017-4,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +13277,Ai37,EA017,Sibs,EA017-4,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +13278,Ai38,EA017,None,EA017-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +13279,Ai39,EA017,None,EA017-1,,nadel1947,,1940,EthnographicAtlas_1967_p74, +13280,Ai4,EA017,None,EA017-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +13281,Ai40,EA017,Lineages,EA017-3,,nadel1947,,1940,EthnographicAtlas_1967_p74, +13282,Ai41,EA017,Sibs,EA017-4,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +13283,Ai42,EA017,Lineages,EA017-3,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +13284,Ai43,EA017,Phratries,EA017-5,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +13285,Ai44,EA017,Sibs,EA017-4,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +13286,Ai45,EA017,Sibs,EA017-4,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +13287,Ai46,EA017,Sibs,EA017-4,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +13288,Ai47,EA017,Sibs,EA017-4,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +13289,Ai5,EA017,Lineages,EA017-3,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +13290,Ai6,EA017,Sibs,EA017-4,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +13291,Ai7,EA017,Lineages,EA017-3,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +13292,Ai8,EA017,Phratries,EA017-5,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +13293,Ai9,EA017,Sibs,EA017-4,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +13294,Aj1,EA017,Sibs,EA017-4,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +13295,Aj10,EA017,Sibs,EA017-4,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +13296,Aj11,EA017,Sibs,EA017-4,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +13297,Aj12,EA017,Sibs,EA017-4,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +13298,Aj13,EA017,Sibs,EA017-4,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +13299,Aj14,EA017,Lineages,EA017-3,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +13300,Aj15,EA017,Sibs,EA017-4,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +13301,Aj16,EA017,Sibs,EA017-4,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +13302,Aj17,EA017,Sibs,EA017-4,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +13303,Aj18,EA017,Sibs,EA017-4,,jensen1959,,1950,EthnographicAtlas_1967_p78, +13304,Aj19,EA017,Sibs,EA017-4,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +13305,Aj2,EA017,Sibs,EA017-4,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +13306,Aj20,EA017,Sibs,EA017-4,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +13307,Aj21,EA017,Lineages,EA017-3,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +13308,Aj22,EA017,Sibs,EA017-4,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +13309,Aj23,EA017,Sibs,EA017-4,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +13310,Aj24,EA017,Sibs,EA017-4,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +13311,Aj25,EA017,Sibs,EA017-4,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +13312,Aj26,EA017,Sibs,EA017-4,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +13313,Aj27,EA017,Lineages,EA017-3,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +13314,Aj28,EA017,Sibs,EA017-4,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +13315,Aj29,EA017,Phratries,EA017-5,"The phratries are grouped into moieties, which have ""no very great significance""",spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +13316,Aj3,EA017,Sibs,EA017-4,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +13317,Aj30,EA017,Sibs,EA017-4,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +13318,Aj31,EA017,Lineages,EA017-3,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +13319,Aj4,EA017,Sibs,EA017-4,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +13320,Aj5,EA017,Sibs,EA017-4,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +13321,Aj6,EA017,Sibs,EA017-4,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +13322,Aj7,EA017,Sibs,EA017-4,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +13323,Aj8,EA017,Sibs,EA017-4,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +13324,Aj9,EA017,Sibs,EA017-4,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +13325,Ca1,EA017,Sibs,EA017-4,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +13326,Ca10,EA017,Sibs,EA017-4,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +13327,Ca11,EA017,Lineages,EA017-3,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +13328,Ca12,EA017,Lineages,EA017-3,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +13329,Ca13,EA017,Sibs,EA017-4,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +13330,Ca14,EA017,Sibs,EA017-4,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +13331,Ca15,EA017,Sibs,EA017-4,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +13332,Ca16,EA017,Sibs,EA017-4,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +13333,Ca17,EA017,Sibs,EA017-4,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +13334,Ca18,EA017,Sibs,EA017-4,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +13335,Ca19,EA017,Moieties,EA017-6,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +13336,Ca2,EA017,Phratries,EA017-5,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +13337,Ca20,EA017,Sibs,EA017-4,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +13338,Ca21,EA017,Moieties,EA017-6,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +13339,Ca22,EA017,Moieties,EA017-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +13340,Ca23,EA017,Sibs,EA017-4,,jensen1959,,1950,EthnographicAtlas_1967_p78, +13341,Ca24,EA017,Sibs,EA017-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +13342,Ca25,EA017,Moieties,EA017-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +13343,Ca26,EA017,Sibs,EA017-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +13344,Ca27,EA017,Sibs,EA017-4,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +13345,Ca28,EA017,Sibs,EA017-4,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +13346,Ca29,EA017,Sibs,EA017-4,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +13347,Ca3,EA017,Lineages,EA017-3,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +13348,Ca30,EA017,Sibs,EA017-4,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +13349,Ca31,EA017,None,EA017-1,Bilateral descent inferred from lack of mention of unilineal kin groups in any source,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +13350,Ca32,EA017,None,EA017-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +13351,Ca33,EA017,None,EA017-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +13352,Ca34,EA017,Sibs,EA017-4,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +13353,Ca35,EA017,Sibs,EA017-4,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +13354,Ca36,EA017,Sibs,EA017-4,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +13355,Ca37,EA017,?,EA017-NA,"No data on descent, but distributional evidence suggests the patrilineal rule",munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +13356,Ca38,EA017,Sibs,EA017-4,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +13357,Ca39,EA017,Sibs,EA017-4,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +13358,Ca4,EA017,Sibs,EA017-4,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +13359,Ca40,EA017,Moieties,EA017-6,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +13360,Ca41,EA017,Sibs,EA017-4,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +13361,Ca42,EA017,Sibs,EA017-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +13362,Ca43,EA017,Sibs,EA017-4,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +13363,Ca5,EA017,Phratries,EA017-5,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +13364,Ca6,EA017,Sibs,EA017-4,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +13365,Ca7,EA017,None,EA017-1,Patronymic but probably not patrilineal,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +13366,Ca8,EA017,Phratries,EA017-5,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +13367,Ca9,EA017,Sibs,EA017-4,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +13368,Cb1,EA017,Sibs,EA017-4,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +13369,Cb10,EA017,Sibs,EA017-4,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +13370,Cb11,EA017,None,EA017-1,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +13371,Cb12,EA017,Sibs,EA017-4,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +13372,Cb13,EA017,Sibs,EA017-4,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +13373,Cb14,EA017,Sibs,EA017-4,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +13374,Cb15,EA017,Phratries,EA017-5,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +13375,Cb16,EA017,Sibs,EA017-4,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +13376,Cb17,EA017,None,EA017-1,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +13377,Cb18,EA017,None,EA017-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +13378,Cb19,EA017,None,EA017-1,"Descent, though patrilineal prior to 1850, is now ""bilateral with an agnatic bias"" (Cohen)",cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +13379,Cb2,EA017,Lineages,EA017-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +13380,Cb20,EA017,Lineages,EA017-3,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +13381,Cb21,EA017,Lineages,EA017-3,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +13382,Cb22,EA017,Sibs,EA017-4,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +13383,Cb23,EA017,Sibs,EA017-4,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +13384,Cb24,EA017,Sibs,EA017-4,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +13385,Cb25,EA017,Lineages,EA017-3,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +13386,Cb26,EA017,Lineages,EA017-3,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +13387,Cb27,EA017,Sibs,EA017-4,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13388,Cb28,EA017,Lineages,EA017-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13389,Cb29,EA017,Lineages,EA017-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +13390,Cb3,EA017,Lineages,EA017-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +13391,Cb4,EA017,Phratries,EA017-5,,reid1930,,1920,EthnographicAtlas_1967_p78, +13392,Cb5,EA017,Sibs,EA017-4,"Descent uncertain, though reported as patrilineal by Bouillie",bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +13393,Cb6,EA017,Lineages,EA017-3,,woodnd,,1920,EthnographicAtlas_1967_p78, +13394,Cb7,EA017,Lineages,EA017-3,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +13395,Cb8,EA017,None,EA017-1,But one source speaks of patrilineages,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +13396,Cb9,EA017,Lineages,EA017-3,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +13397,Cc1,EA017,Phratries,EA017-5,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +13398,Cc10,EA017,None,EA017-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +13399,Cc11,EA017,None,EA017-1,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +13400,Cc12,EA017,?,EA017-NA,"Although descent is specifically reported as patrilineal, it may well be matrilineal as among other Tuareg",cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +13401,Cc13,EA017,None,EA017-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +13402,Cc14,EA017,Sibs,EA017-4,Patrilineal descent is inferential,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +13403,Cc15,EA017,Lineages,EA017-3,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +13404,Cc16,EA017,Sibs,EA017-4,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +13405,Cc17,EA017,Sibs,EA017-4,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +13406,Cc18,EA017,Sibs,EA017-4,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +13407,Cc19,EA017,Sibs,EA017-4,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +13408,Cc2,EA017,Sibs,EA017-4,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +13409,Cc20,EA017,Sibs,EA017-4,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +13410,Cc3,EA017,Sibs,EA017-4,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +13411,Cc4,EA017,Lineages,EA017-3,The prevalence of sib or lineage exogamy is not reported,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +13412,Cc5,EA017,None,EA017-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +13413,Cc6,EA017,Sibs,EA017-4,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +13414,Cc7,EA017,Phratries,EA017-5,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13415,Cc8,EA017,?,EA017-NA,Said to have shifted from matrilineal to patrilineal descent,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +13416,Cc9,EA017,None,EA017-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +13417,Cd1,EA017,Sibs,EA017-4,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +13418,Cd10,EA017,Sibs,EA017-4,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +13419,Cd11,EA017,None,EA017-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +13420,Cd12,EA017,Sibs,EA017-4,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +13421,Cd13,EA017,Sibs,EA017-4,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +13422,Cd14,EA017,Sibs,EA017-4,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +13423,Cd15,EA017,Sibs,EA017-4,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +13424,Cd16,EA017,Sibs,EA017-4,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +13425,Cd17,EA017,Sibs,EA017-4,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +13426,Cd18,EA017,Sibs,EA017-4,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +13427,Cd19,EA017,Sibs,EA017-4,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +13428,Cd2,EA017,Phratries,EA017-5,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +13429,Cd20,EA017,Sibs,EA017-4,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +13430,Cd21,EA017,Sibs,EA017-4,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +13431,Cd3,EA017,Sibs,EA017-4,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +13432,Cd4,EA017,Sibs,EA017-4,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +13433,Cd5,EA017,Lineages,EA017-3,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +13434,Cd6,EA017,None,EA017-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +13435,Cd7,EA017,Sibs,EA017-4,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +13436,Cd8,EA017,Sibs,EA017-4,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +13437,Cd9,EA017,Sibs,EA017-4,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +13438,Ce1,EA017,Sibs,EA017-4,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +13439,Ce2,EA017,None,EA017-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +13440,Ce3,EA017,None,EA017-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +13441,Ce4,EA017,None,EA017-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13442,Ce5,EA017,None,EA017-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +13443,Ce6,EA017,None,EA017-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +13444,Ce7,EA017,None,EA017-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +13445,Ce8,EA017,None,EA017-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +13446,Cf1,EA017,None,EA017-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +13447,Cf2,EA017,None,EA017-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +13448,Cf3,EA017,None,EA017-1,,munch1945,,1930,EthnographicAtlas_1967_p82, +13449,Cf4,EA017,None,EA017-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +13450,Cf5,EA017,None,EA017-1,,miner1939,,1930,EthnographicAtlas_1967_p82, +13451,Cg1,EA017,None,EA017-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +13452,Cg2,EA017,None,EA017-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +13453,Cg3,EA017,None,EA017-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +13454,Cg4,EA017,None,EA017-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +13455,Cg5,EA017,None,EA017-1,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +13456,Ch1,EA017,Lineages,EA017-3,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +13457,Ch10,EA017,None,EA017-1,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +13458,Ch11,EA017,None,EA017-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +13459,Ch2,EA017,None,EA017-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +13460,Ch3,EA017,None,EA017-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +13461,Ch4,EA017,None,EA017-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +13462,Ch5,EA017,None,EA017-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +13463,Ch6,EA017,None,EA017-1,,ember1954,,1910,EthnographicAtlas_1967_p82, +13464,Ch7,EA017,None,EA017-1,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +13465,Ch8,EA017,None,EA017-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +13466,Ch9,EA017,None,EA017-1,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +13467,Ci1,EA017,Phratries,EA017-5,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +13468,Ci10,EA017,None,EA017-1,Formerly patrilineal and still patronymic,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +13469,Ci11,EA017,Sibs,EA017-4,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +13470,Ci12,EA017,Sibs,EA017-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +13471,Ci2,EA017,Sibs,EA017-4,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +13472,Ci3,EA017,None,EA017-1,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +13473,Ci4,EA017,Sibs,EA017-4,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +13474,Ci5,EA017,Lineages,EA017-3,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +13475,Ci6,EA017,Sibs,EA017-4,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +13476,Ci7,EA017,Sibs,EA017-4,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +13477,Ci8,EA017,?,EA017-NA,,,,,, +13478,Ci9,EA017,Sibs,EA017-4,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +13479,Cj1,EA017,Lineages,EA017-3,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +13480,Cj10,EA017,Sibs,EA017-4,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +13481,Cj2,EA017,Phratries,EA017-5,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +13482,Cj3,EA017,Phratries,EA017-5,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +13483,Cj4,EA017,None,EA017-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +13484,Cj5,EA017,Sibs,EA017-4,,dickson1949,,1930,EthnographicAtlas_1967_p86, +13485,Cj6,EA017,Sibs,EA017-4,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +13486,Cj7,EA017,Lineages,EA017-3,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +13487,Cj8,EA017,Lineages,EA017-3,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +13488,Cj9,EA017,Sibs,EA017-4,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +13489,Ea1,EA017,Lineages,EA017-3,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +13490,Ea10,EA017,Phratries,EA017-5,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +13491,Ea11,EA017,Phratries,EA017-5,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +13492,Ea12,EA017,Sibs,EA017-4,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +13493,Ea13,EA017,Sibs,EA017-4,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +13494,Ea2,EA017,Phratries,EA017-5,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +13495,Ea3,EA017,Phratries,EA017-5,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +13496,Ea4,EA017,Phratries,EA017-5,,barth1956b,,1950,EthnographicAtlas_1967_p86, +13497,Ea5,EA017,Sibs,EA017-4,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +13498,Ea6,EA017,Phratries,EA017-5,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +13499,Ea7,EA017,Sibs,EA017-4,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +13500,Ea8,EA017,Sibs,EA017-4,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +13501,Ea9,EA017,Lineages,EA017-3,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +13502,Eb1,EA017,Phratries,EA017-5,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +13503,Eb2,EA017,Sibs,EA017-4,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +13504,Eb3,EA017,Sibs,EA017-4,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +13505,Eb4,EA017,Phratries,EA017-5,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +13506,Eb5,EA017,Phratries,EA017-5,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +13507,Eb6,EA017,Sibs,EA017-4,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +13508,Eb7,EA017,Sibs,EA017-4,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +13509,Eb8,EA017,Phratries,EA017-5,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +13510,Ec1,EA017,Sibs,EA017-4,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +13511,Ec10,EA017,Sibs,EA017-4,But Steinitz reports agamous patrimoieties,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +13512,Ec11,EA017,Phratries,EA017-5,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +13513,Ec2,EA017,Phratries,EA017-5,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13514,Ec3,EA017,None,EA017-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +13515,Ec4,EA017,Phratries,EA017-5,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +13516,Ec5,EA017,None,EA017-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +13517,Ec6,EA017,None,EA017-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +13518,Ec7,EA017,None,EA017-1,But there are patrilineal kin groups consisting of males only,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +13519,Ec8,EA017,Sibs,EA017-4,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +13520,Ec9,EA017,Sibs,EA017-4,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +13521,Ed1,EA017,Sibs,EA017-4,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +13522,Ed10,EA017,Sibs,EA017-4,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +13523,Ed13,EA017,Sibs,EA017-4,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +13524,Ed14,EA017,Sibs,EA017-4,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +13525,Ed15a,EA017,None,EA017-1,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +13526,Ed15b,EA017,Sibs,EA017-4,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +13527,Ed16,EA017,Sibs,EA017-4,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +13528,Ed2,EA017,Phratries,EA017-5,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +13529,Ed3,EA017,Sibs,EA017-4,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +13530,Ed4,EA017,Sibs,EA017-4,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +13531,Ed5,EA017,None,EA017-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13532,Ed6,EA017,Sibs,EA017-4,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +13533,Ed7,EA017,Sibs,EA017-4,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +13534,Ed8,EA017,Lineages,EA017-3,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +13535,Ed9,EA017,Sibs,EA017-4,Patronymic name groups resembling those of the Chinese,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +13536,Ee1,EA017,Moieties,EA017-6,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +13537,Ee2,EA017,Sibs,EA017-4,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +13538,Ee3,EA017,Sibs,EA017-4,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +13539,Ee4,EA017,Sibs,EA017-4,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +13540,Ee5,EA017,Sibs,EA017-4,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +13541,Ee6,EA017,Sibs,EA017-4,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +13542,Ee7,EA017,Sibs,EA017-4,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +13543,Ee8,EA017,Sibs,EA017-4,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +13544,Ef1,EA017,Sibs,EA017-4,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +13545,Ef10,EA017,Phratries,EA017-5,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13546,Ef11,EA017,Moieties,EA017-6,But locally exogamous sibs for the Thakur caste,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +13547,Ef2,EA017,Lineages,EA017-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +13548,Ef3,EA017,Sibs,EA017-4,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +13549,Ef4,EA017,Sibs,EA017-4,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +13550,Ef5,EA017,Sibs,EA017-4,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +13551,Ef6,EA017,Sibs,EA017-4,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +13552,Ef7,EA017,Sibs,EA017-4,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +13553,Ef8,EA017,Phratries,EA017-5,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +13554,Ef9,EA017,Phratries,EA017-5,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13555,Eg1,EA017,Phratries,EA017-5,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13556,Eg10,EA017,Sibs,EA017-4,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +13557,Eg11,EA017,Phratries,EA017-5,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +13558,Eg12,EA017,Moieties,EA017-6,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +13559,Eg13,EA017,Phratries,EA017-5,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13560,Eg14,EA017,Sibs,EA017-4,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +13561,Eg2,EA017,Lineages,EA017-3,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +13562,Eg3,EA017,Phratries,EA017-5,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +13563,Eg4,EA017,Sibs,EA017-4,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +13564,Eg5,EA017,Sibs,EA017-4,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +13565,Eg6,EA017,None,EA017-1,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +13566,Eg7,EA017,Sibs,EA017-4,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +13567,Eg8,EA017,None,EA017-1,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +13568,Eg9,EA017,Sibs,EA017-4,,elwin1939,,1930,EthnographicAtlas_1967_p90, +13569,Eh1,EA017,None,EA017-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +13570,Eh10,EA017,Sibs,EA017-4,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +13571,Eh2,EA017,Phratries,EA017-5,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +13572,Eh3,EA017,Sibs,EA017-4,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +13573,Eh4,EA017,None,EA017-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13574,Eh5,EA017,None,EA017-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +13575,Eh6,EA017,None,EA017-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +13576,Eh7,EA017,Lineages,EA017-3,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +13577,Eh8,EA017,Lineages,EA017-3,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +13578,Eh9,EA017,Sibs,EA017-4,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +13579,Ei1,EA017,None,EA017-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13580,Ei10,EA017,Sibs,EA017-4,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +13581,Ei11,EA017,Moieties,EA017-6,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +13582,Ei12,EA017,Sibs,EA017-4,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +13583,Ei13,EA017,Moieties,EA017-6,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +13584,Ei14,EA017,Phratries,EA017-5,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +13585,Ei15,EA017,Phratries,EA017-5,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +13586,Ei16,EA017,Sibs,EA017-4,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +13587,Ei17,EA017,Phratries,EA017-5,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +13588,Ei18,EA017,None,EA017-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +13589,Ei19,EA017,Sibs,EA017-4,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +13590,Ei2,EA017,Phratries,EA017-5,,mills1922,,1920,EthnographicAtlas_1967_p90, +13591,Ei20,EA017,Moieties,EA017-6,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +13592,Ei3,EA017,None,EA017-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +13593,Ei4,EA017,Sibs,EA017-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +13594,Ei5,EA017,Sibs,EA017-4,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +13595,Ei6,EA017,Sibs,EA017-4,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +13596,Ei7,EA017,None,EA017-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +13597,Ei8,EA017,None,EA017-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +13598,Ei9,EA017,Sibs,EA017-4,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +13599,Ej1,EA017,Sibs,EA017-4,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +13600,Ej10,EA017,None,EA017-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +13601,Ej11,EA017,None,EA017-1,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +13602,Ej12,EA017,Lineages,EA017-3,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +13603,Ej13,EA017,Sibs,EA017-4,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +13604,Ej14,EA017,None,EA017-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13605,Ej15,EA017,None,EA017-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +13606,Ej16,EA017,None,EA017-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +13607,Ej2,EA017,None,EA017-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +13608,Ej3,EA017,None,EA017-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +13609,Ej4,EA017,Sibs,EA017-4,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +13610,Ej5,EA017,None,EA017-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +13611,Ej6,EA017,None,EA017-1,Nomadic boat communities,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +13612,Ej7,EA017,Lineages,EA017-3,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +13613,Ej8,EA017,None,EA017-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +13614,Ej9,EA017,None,EA017-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +13615,Ia1,EA017,Lineages,EA017-3,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +13616,Ia10,EA017,Phratries,EA017-5,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +13617,Ia11,EA017,None,EA017-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +13618,Ia12,EA017,None,EA017-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +13619,Ia13,EA017,None,EA017-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +13620,Ia14,EA017,None,EA017-1,"But Wei and Liu, unlike other sources, report patrilineages",kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +13621,Ia15,EA017,None,EA017-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +13622,Ia16,EA017,None,EA017-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +13623,Ia17,EA017,None,EA017-1,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +13624,Ia18,EA017,None,EA017-1,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +13625,Ia2,EA017,None,EA017-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +13626,Ia3,EA017,None,EA017-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +13627,Ia4,EA017,None,EA017-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +13628,Ia5,EA017,None,EA017-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +13629,Ia6,EA017,None,EA017-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13630,Ia7,EA017,None,EA017-1,,fox1954,,1950,EthnographicAtlas_1967_p90, +13631,Ia8,EA017,None,EA017-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +13632,Ia9,EA017,None,EA017-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +13633,Ib1,EA017,None,EA017-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13634,Ib2,EA017,None,EA017-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13635,Ib3,EA017,Phratries,EA017-5,"But 'none' (code ""1"") in upper castes",belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +13636,Ib4,EA017,Sibs,EA017-4,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +13637,Ib5,EA017,None,EA017-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +13638,Ib6,EA017,None,EA017-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +13639,Ib7,EA017,None,EA017-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +13640,Ib8,EA017,None,EA017-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +13641,Ib9,EA017,None,EA017-1,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +13642,Ic1,EA017,None,EA017-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13643,Ic10,EA017,None,EA017-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +13644,Ic11,EA017,Lineages,EA017-3,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13645,Ic12,EA017,None,EA017-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +13646,Ic13,EA017,Sibs,EA017-4,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +13647,Ic2,EA017,Sibs,EA017-4,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +13648,Ic3,EA017,None,EA017-1,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +13649,Ic4,EA017,Sibs,EA017-4,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +13650,Ic5,EA017,None,EA017-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +13651,Ic6,EA017,Lineages,EA017-3,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +13652,Ic7,EA017,Sibs,EA017-4,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +13653,Ic8,EA017,Sibs,EA017-4,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +13654,Ic9,EA017,Sibs,EA017-4,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +13655,Id1,EA017,Moieties,EA017-6,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +13656,Id10,EA017,Moieties,EA017-6,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +13657,Id11,EA017,Moieties,EA017-6,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +13658,Id12,EA017,Sibs,EA017-4,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +13659,Id13,EA017,Moieties,EA017-6,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +13660,Id2,EA017,Moieties,EA017-6,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +13661,Id3,EA017,None,EA017-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +13662,Id4,EA017,None,EA017-1,"But there are localized totemic groups which do not regulate marriages; in addition, analysis suggests implicit intersecting patrimoieties",berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +13663,Id5,EA017,Moieties,EA017-6,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +13664,Id6,EA017,Moieties,EA017-6,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +13665,Id7,EA017,Moieties,EA017-6,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +13666,Id8,EA017,?,EA017-NA,,,,,, +13667,Id9,EA017,Moieties,EA017-6,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +13668,Ie1,EA017,Phratries,EA017-5,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13669,Ie10,EA017,Lineages,EA017-3,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +13670,Ie11,EA017,Phratries,EA017-5,,bowers1964,,1950,EthnographicAtlas_1967_p94, +13671,Ie12,EA017,Lineages,EA017-3,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13672,Ie13,EA017,Lineages,EA017-3,,landtman1927,,1920,EthnographicAtlas_1967_p94, +13673,Ie14,EA017,Sibs,EA017-4,,haddon1908,,1900,EthnographicAtlas_1967_p94, +13674,Ie15,EA017,Sibs,EA017-4,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13675,Ie16,EA017,Phratries,EA017-5,,williams194041,,1940,EthnographicAtlas_1967_p94, +13676,Ie17,EA017,Phratries,EA017-5,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +13677,Ie18,EA017,Lineages,EA017-3,"Though exogamous, lineages are only incompletely patrilineal and, within a village, tend to be grouped into local moieties",serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +13678,Ie19,EA017,Moieties,EA017-6,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +13679,Ie2,EA017,Sibs,EA017-4,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +13680,Ie20,EA017,Sibs,EA017-4,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +13681,Ie21,EA017,Lineages,EA017-3,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +13682,Ie22,EA017,Phratries,EA017-5,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +13683,Ie23,EA017,Lineages,EA017-3,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +13684,Ie24,EA017,Lineages,EA017-3,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +13685,Ie25,EA017,Lineages,EA017-3,,williamson1912,,1920,EthnographicAtlas_1967_p94, +13686,Ie26,EA017,Lineages,EA017-3,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +13687,Ie27,EA017,Sibs,EA017-4,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +13688,Ie28,EA017,Lineages,EA017-3,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +13689,Ie29,EA017,Lineages,EA017-3,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13690,Ie3,EA017,Moieties,EA017-6,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13691,Ie30,EA017,None,EA017-1,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +13692,Ie31,EA017,Sibs,EA017-4,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +13693,Ie32,EA017,Lineages,EA017-3,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +13694,Ie33,EA017,Moieties,EA017-6,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +13695,Ie34,EA017,None,EA017-1,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +13696,Ie35,EA017,Moieties,EA017-6,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +13697,Ie36,EA017,None,EA017-1,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +13698,Ie37,EA017,Sibs,EA017-4,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +13699,Ie38,EA017,Moieties,EA017-6,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +13700,Ie39,EA017,Lineages,EA017-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +13701,Ie4,EA017,Lineages,EA017-3,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13702,Ie5,EA017,Moieties,EA017-6,,williams1936,,1930,EthnographicAtlas_1967_p94, +13703,Ie6,EA017,Sibs,EA017-4,,held1947,,1930,EthnographicAtlas_1967_p94, +13704,Ie7,EA017,Phratries,EA017-5,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +13705,Ie8,EA017,Moieties,EA017-6,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +13706,Ie9,EA017,Sibs,EA017-4,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +13707,If1,EA017,None,EA017-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13708,If10,EA017,None,EA017-1,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +13709,If11,EA017,None,EA017-1,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +13710,If12,EA017,None,EA017-1,,mason1954,,1940,EthnographicAtlas_1967_p98, +13711,If13,EA017,None,EA017-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +13712,If14,EA017,None,EA017-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +13713,If15,EA017,None,EA017-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +13714,If16,EA017,None,EA017-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +13715,If17,EA017,None,EA017-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +13716,If2,EA017,None,EA017-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +13717,If3,EA017,None,EA017-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +13718,If4,EA017,None,EA017-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +13719,If5,EA017,None,EA017-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +13720,If6,EA017,Lineages,EA017-3,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +13721,If7,EA017,None,EA017-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +13722,If8,EA017,None,EA017-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +13723,If9,EA017,None,EA017-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +13724,Ig1,EA017,None,EA017-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +13725,Ig10,EA017,Lineages,EA017-3,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +13726,Ig11,EA017,None,EA017-1,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +13727,Ig12,EA017,None,EA017-1,There is some emphasis on patrifiliation,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +13728,Ig13,EA017,None,EA017-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +13729,Ig14,EA017,None,EA017-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +13730,Ig15,EA017,Sibs,EA017-4,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +13731,Ig16,EA017,None,EA017-1,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +13732,Ig17,EA017,Sibs,EA017-4,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +13733,Ig18,EA017,Sibs,EA017-4,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +13734,Ig19,EA017,None,EA017-1,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +13735,Ig2,EA017,None,EA017-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +13736,Ig20,EA017,None,EA017-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +13737,Ig21,EA017,None,EA017-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +13738,Ig3,EA017,None,EA017-1,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +13739,Ig4,EA017,None,EA017-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +13740,Ig5,EA017,None,EA017-1,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +13741,Ig6,EA017,None,EA017-1,,ivens1927,,1900,EthnographicAtlas_1967_p98, +13742,Ig7,EA017,None,EA017-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +13743,Ig8,EA017,None,EA017-1,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +13744,Ig9,EA017,Lineages,EA017-3,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +13745,Ih1,EA017,None,EA017-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +13746,Ih10,EA017,Lineages,EA017-3,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13747,Ih11,EA017,Lineages,EA017-3,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +13748,Ih12,EA017,Lineages,EA017-3,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +13749,Ih13,EA017,Phratries,EA017-5,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +13750,Ih14,EA017,Lineages,EA017-3,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +13751,Ih2,EA017,Phratries,EA017-5,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13752,Ih3,EA017,Sibs,EA017-4,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +13753,Ih4,EA017,Phratries,EA017-5,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13754,Ih5,EA017,Phratries,EA017-5,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +13755,Ih6,EA017,None,EA017-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +13756,Ih7,EA017,Lineages,EA017-3,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +13757,Ih8,EA017,Lineages,EA017-3,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +13758,Ih9,EA017,None,EA017-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13759,Ii1,EA017,None,EA017-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +13760,Ii10,EA017,None,EA017-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +13761,Ii12,EA017,None,EA017-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13762,Ii13,EA017,None,EA017-1,,burrows1937,,1830,EthnographicAtlas_1967_p98, +13763,Ii14,EA017,None,EA017-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +13764,Ii2,EA017,Sibs,EA017-4,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +13765,Ii3,EA017,Sibs,EA017-4,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +13766,Ii4,EA017,None,EA017-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +13767,Ii5,EA017,None,EA017-1,"The exogamous patrilineages of six generations' depth reported by Hogbin, who calls them ""joint families,"" are presumably ambilineal ramages, since affiliation is reported to be matrilineal for about 10 per cent of their membership",hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +13768,Ii6,EA017,None,EA017-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +13769,Ii7,EA017,None,EA017-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +13770,Ii8,EA017,None,EA017-1,,burrows1936,,1840,EthnographicAtlas_1967_p98, +13771,Ii9,EA017,None,EA017-1,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +13772,Ij1,EA017,None,EA017-1,,buck1934,,1820,EthnographicAtlas_1967_p98, +13773,Ij10,EA017,None,EA017-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +13774,Ij2,EA017,None,EA017-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +13775,Ij3,EA017,None,EA017-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +13776,Ij4,EA017,None,EA017-1,,buck1932a,,1850,EthnographicAtlas_1967_p102, +13777,Ij5,EA017,None,EA017-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +13778,Ij6,EA017,None,EA017-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +13779,Ij7,EA017,None,EA017-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +13780,Ij8,EA017,None,EA017-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +13781,Ij9,EA017,None,EA017-1,,metraux1940,,1860,EthnographicAtlas_1967_p102, +13782,Na1,EA017,None,EA017-1,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +13783,Na10,EA017,None,EA017-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +13784,Na11,EA017,Lineages,EA017-3,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +13785,Na12,EA017,None,EA017-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +13786,Na13,EA017,None,EA017-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +13787,Na14,EA017,None,EA017-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +13788,Na15,EA017,None,EA017-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +13789,Na16,EA017,None,EA017-1,,osgood1931,,1860,EthnographicAtlas_1967_p102, +13790,Na17,EA017,None,EA017-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13791,Na19,EA017,None,EA017-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +13792,Na2,EA017,None,EA017-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +13793,Na20,EA017,None,EA017-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +13794,Na21,EA017,None,EA017-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +13795,Na22,EA017,None,EA017-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +13796,Na23,EA017,None,EA017-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +13797,Na24,EA017,None,EA017-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +13798,Na25,EA017,None,EA017-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +13799,Na26,EA017,None,EA017-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +13800,Na27,EA017,None,EA017-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +13801,Na28,EA017,None,EA017-1,,jenness1937,,1880,EthnographicAtlas_1967_p102, +13802,Na29,EA017,None,EA017-1,,goddard1916,,1850,EthnographicAtlas_1967_p102, +13803,Na3,EA017,None,EA017-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +13804,Na30,EA017,None,EA017-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +13805,Na31,EA017,None,EA017-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +13806,Na32,EA017,None,EA017-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +13807,Na33,EA017,Sibs,EA017-4,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +13808,Na34,EA017,Lineages,EA017-3,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +13809,Na35,EA017,Sibs,EA017-4,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +13810,Na36,EA017,Sibs,EA017-4,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +13811,Na37,EA017,Sibs,EA017-4,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +13812,Na38,EA017,Sibs,EA017-4,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +13813,Na39,EA017,Sibs,EA017-4,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +13814,Na4,EA017,None,EA017-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +13815,Na40,EA017,Sibs,EA017-4,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +13816,Na41,EA017,None,EA017-1,"Follows Speck and Bock; Jenness postulates 'sibs' (code ""4"")",bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +13817,Na42,EA017,Moieties,EA017-6,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +13818,Na43,EA017,None,EA017-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +13819,Na44,EA017,None,EA017-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +13820,Na45,EA017,None,EA017-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +13821,Na5,EA017,None,EA017-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +13822,Na6,EA017,None,EA017-1,,lantis1946,,1930,EthnographicAtlas_1967_p102, +13823,Na7,EA017,None,EA017-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +13824,Na8,EA017,None,EA017-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +13825,Na9,EA017,None,EA017-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13826,Nb1,EA017,None,EA017-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +13827,Nb10,EA017,None,EA017-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +13828,Nb11,EA017,None,EA017-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +13829,Nb12,EA017,None,EA017-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +13830,Nb13,EA017,None,EA017-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +13831,Nb14,EA017,None,EA017-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +13832,Nb15,EA017,None,EA017-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +13833,Nb16,EA017,None,EA017-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +13834,Nb17,EA017,None,EA017-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +13835,Nb18,EA017,None,EA017-1,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +13836,Nb19,EA017,None,EA017-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +13837,Nb2,EA017,None,EA017-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +13838,Nb20,EA017,None,EA017-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +13839,Nb21,EA017,None,EA017-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +13840,Nb22,EA017,None,EA017-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +13841,Nb23,EA017,None,EA017-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +13842,Nb24,EA017,None,EA017-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +13843,Nb25,EA017,None,EA017-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +13844,Nb26,EA017,None,EA017-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +13845,Nb27,EA017,None,EA017-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +13846,Nb28,EA017,None,EA017-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +13847,Nb29,EA017,None,EA017-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +13848,Nb3,EA017,None,EA017-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +13849,Nb30,EA017,None,EA017-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +13850,Nb31,EA017,Lineages,EA017-3,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +13851,Nb32,EA017,None,EA017-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +13852,Nb33,EA017,None,EA017-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +13853,Nb34,EA017,None,EA017-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +13854,Nb35,EA017,None,EA017-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +13855,Nb36,EA017,None,EA017-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +13856,Nb37,EA017,None,EA017-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +13857,Nb38,EA017,None,EA017-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +13858,Nb39,EA017,None,EA017-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +13859,Nb4,EA017,None,EA017-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +13860,Nb5,EA017,None,EA017-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +13861,Nb6,EA017,Lineages,EA017-3,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +13862,Nb7,EA017,None,EA017-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +13863,Nb8,EA017,None,EA017-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +13864,Nb9,EA017,None,EA017-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +13865,Nc1,EA017,Lineages,EA017-3,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +13866,Nc10,EA017,None,EA017-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +13867,Nc11,EA017,None,EA017-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +13868,Nc12,EA017,None,EA017-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +13869,Nc13,EA017,None,EA017-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +13870,Nc14,EA017,None,EA017-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +13871,Nc15,EA017,None,EA017-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +13872,Nc16,EA017,None,EA017-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +13873,Nc17,EA017,None,EA017-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +13874,Nc18,EA017,None,EA017-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +13875,Nc19,EA017,None,EA017-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +13876,Nc2,EA017,None,EA017-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +13877,Nc20,EA017,None,EA017-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +13878,Nc21,EA017,None,EA017-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +13879,Nc22,EA017,Lineages,EA017-3,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +13880,Nc23,EA017,Lineages,EA017-3,"Moieties (code ""6"") in some subgroups",aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +13881,Nc24,EA017,Moieties,EA017-6,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +13882,Nc25,EA017,Lineages,EA017-3,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +13883,Nc26,EA017,Moieties,EA017-6,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +13884,Nc27,EA017,None,EA017-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +13885,Nc28,EA017,Lineages,EA017-3,"Or possibly moieties (code ""6"")",harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +13886,Nc29,EA017,Moieties,EA017-6,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +13887,Nc3,EA017,Moieties,EA017-6,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +13888,Nc30,EA017,Moieties,EA017-6,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +13889,Nc31,EA017,Moieties,EA017-6,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +13890,Nc32,EA017,Moieties,EA017-6,"But Strong reports moieties (code ""6"")",drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +13891,Nc33,EA017,Moieties,EA017-6,But White suggests that the moieties were matrilineal,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +13892,Nc34,EA017,Sibs,EA017-4,,meigs1939,,1880,EthnographicAtlas_1967_p106, +13893,Nc4,EA017,None,EA017-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +13894,Nc5,EA017,Moieties,EA017-6,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +13895,Nc6,EA017,Sibs,EA017-4,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +13896,Nc7,EA017,None,EA017-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +13897,Nc8,EA017,None,EA017-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +13898,Nc9,EA017,None,EA017-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +13899,Nd1,EA017,None,EA017-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +13900,Nd10,EA017,None,EA017-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +13901,Nd11,EA017,None,EA017-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +13902,Nd12,EA017,None,EA017-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +13903,Nd13,EA017,None,EA017-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +13904,Nd14,EA017,None,EA017-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +13905,Nd15,EA017,None,EA017-1,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +13906,Nd16,EA017,None,EA017-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +13907,Nd17,EA017,None,EA017-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +13908,Nd18,EA017,None,EA017-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +13909,Nd19,EA017,None,EA017-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +13910,Nd2,EA017,None,EA017-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +13911,Nd20,EA017,None,EA017-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +13912,Nd21,EA017,None,EA017-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +13913,Nd22,EA017,None,EA017-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +13914,Nd23,EA017,None,EA017-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +13915,Nd24,EA017,None,EA017-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +13916,Nd25,EA017,None,EA017-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +13917,Nd26,EA017,None,EA017-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +13918,Nd27,EA017,None,EA017-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +13919,Nd28,EA017,None,EA017-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +13920,Nd29,EA017,None,EA017-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +13921,Nd3,EA017,None,EA017-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +13922,Nd30,EA017,None,EA017-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +13923,Nd31,EA017,None,EA017-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +13924,Nd32,EA017,None,EA017-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +13925,Nd33,EA017,None,EA017-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +13926,Nd34,EA017,None,EA017-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +13927,Nd35,EA017,None,EA017-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +13928,Nd36,EA017,None,EA017-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +13929,Nd37,EA017,None,EA017-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +13930,Nd38,EA017,None,EA017-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +13931,Nd39,EA017,None,EA017-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +13932,Nd4,EA017,None,EA017-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +13933,Nd40,EA017,None,EA017-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +13934,Nd41,EA017,None,EA017-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +13935,Nd42,EA017,None,EA017-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +13936,Nd43,EA017,None,EA017-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +13937,Nd44,EA017,None,EA017-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +13938,Nd45,EA017,None,EA017-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +13939,Nd46,EA017,None,EA017-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +13940,Nd47,EA017,None,EA017-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +13941,Nd48,EA017,None,EA017-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +13942,Nd49,EA017,None,EA017-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +13943,Nd5,EA017,None,EA017-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +13944,Nd50,EA017,None,EA017-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +13945,Nd51,EA017,None,EA017-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +13946,Nd52,EA017,None,EA017-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +13947,Nd53,EA017,None,EA017-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +13948,Nd54,EA017,None,EA017-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13949,Nd55,EA017,None,EA017-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +13950,Nd56,EA017,None,EA017-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +13951,Nd57,EA017,None,EA017-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +13952,Nd58,EA017,None,EA017-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +13953,Nd59,EA017,None,EA017-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +13954,Nd6,EA017,None,EA017-1,There are weak agamous patrimoieties whose sole function is to oppose each other in games,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +13955,Nd60,EA017,None,EA017-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +13956,Nd61,EA017,None,EA017-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +13957,Nd62,EA017,None,EA017-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +13958,Nd63,EA017,None,EA017-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +13959,Nd64,EA017,None,EA017-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +13960,Nd65,EA017,None,EA017-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +13961,Nd66,EA017,None,EA017-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +13962,Nd67,EA017,None,EA017-1,,gifford1936,,1870,EthnographicAtlas_1967_p110, +13963,Nd7,EA017,None,EA017-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +13964,Nd8,EA017,None,EA017-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +13965,Nd9,EA017,None,EA017-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +13966,Ne1,EA017,None,EA017-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +13967,Ne10,EA017,None,EA017-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +13968,Ne11,EA017,None,EA017-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +13969,Ne12,EA017,None,EA017-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +13970,Ne13,EA017,None,EA017-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +13971,Ne14,EA017,Sibs,EA017-4,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +13972,Ne15,EA017,None,EA017-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +13973,Ne16,EA017,None,EA017-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +13974,Ne17,EA017,None,EA017-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +13975,Ne18,EA017,None,EA017-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +13976,Ne19,EA017,None,EA017-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +13977,Ne2,EA017,None,EA017-1,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +13978,Ne20,EA017,None,EA017-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +13979,Ne21,EA017,None,EA017-1,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968, +13980,Ne3,EA017,None,EA017-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +13981,Ne4,EA017,None,EA017-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +13982,Ne5,EA017,None,EA017-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +13983,Ne6,EA017,None,EA017-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +13984,Ne7,EA017,None,EA017-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +13985,Ne8,EA017,None,EA017-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +13986,Ne9,EA017,None,EA017-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +13987,Nf10,EA017,Moieties,EA017-6,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +13988,Nf11,EA017,Sibs,EA017-4,,whitman1937,,1870,EthnographicAtlas_1967_p114, +13989,Nf12,EA017,Sibs,EA017-4,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +13990,Nf13,EA017,Sibs,EA017-4,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13991,Nf14,EA017,None,EA017-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +13992,Nf15,EA017,Moieties,EA017-6,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +13993,Nf2,EA017,Moieties,EA017-6,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +13994,Nf3,EA017,Moieties,EA017-6,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +13995,Nf4,EA017,Sibs,EA017-4,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +13996,Nf5,EA017,None,EA017-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +13997,Nf6,EA017,None,EA017-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +13998,Nf7,EA017,Sibs,EA017-4,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +13999,Nf8,EA017,None,EA017-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +14000,Nf9,EA017,Moieties,EA017-6,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +14001,Ng1,EA017,None,EA017-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +14002,Ng10,EA017,None,EA017-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +14003,Ng11,EA017,None,EA017-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +14004,Ng12,EA017,None,EA017-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +14005,Ng13,EA017,None,EA017-1,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +14006,Ng14,EA017,None,EA017-1,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +14007,Ng15,EA017,None,EA017-1,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +14008,Ng2,EA017,None,EA017-1,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +14009,Ng3,EA017,None,EA017-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +14010,Ng4,EA017,None,EA017-1,Agamous patrilineages are possible,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +14011,Ng5,EA017,None,EA017-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +14012,Ng6,EA017,None,EA017-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +14013,Ng7,EA017,None,EA017-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +14014,Ng8,EA017,None,EA017-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +14015,Ng9,EA017,None,EA017-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +14016,Nh1,EA017,None,EA017-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +14017,Nh10,EA017,None,EA017-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +14018,Nh11,EA017,None,EA017-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +14019,Nh12,EA017,None,EA017-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +14020,Nh13,EA017,None,EA017-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +14021,Nh14,EA017,None,EA017-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +14022,Nh15,EA017,None,EA017-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +14023,Nh16,EA017,None,EA017-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14024,Nh17,EA017,None,EA017-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +14025,Nh18,EA017,None,EA017-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14026,Nh19,EA017,Sibs,EA017-4,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +14027,Nh2,EA017,None,EA017-1,,dozier1954,,1950,EthnographicAtlas_1967_p114, +14028,Nh20,EA017,Sibs,EA017-4,,gifford1931,,1860,EthnographicAtlas_1967_p114, +14029,Nh21,EA017,Sibs,EA017-4,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14030,Nh22,EA017,Sibs,EA017-4,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +14031,Nh23,EA017,None,EA017-1,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +14032,Nh24,EA017,None,EA017-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +14033,Nh25,EA017,None,EA017-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +14034,Nh26,EA017,None,EA017-1,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +14035,Nh27,EA017,None,EA017-1,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +14036,Nh3,EA017,None,EA017-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +14037,Nh4,EA017,None,EA017-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +14038,Nh5,EA017,Sibs,EA017-4,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +14039,Nh6,EA017,None,EA017-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +14040,Nh7,EA017,None,EA017-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +14041,Nh8,EA017,None,EA017-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +14042,Nh9,EA017,None,EA017-1,But there were agamous ceremonial patrimoieties,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +14043,Ni1,EA017,None,EA017-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +14044,Ni2,EA017,None,EA017-1,But there are five agamous and nearly functionless patronymic name groups,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +14045,Ni3,EA017,None,EA017-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +14046,Ni4,EA017,None,EA017-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +14047,Ni5,EA017,None,EA017-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +14048,Ni6,EA017,None,EA017-1,But there were five agamous patronymic name groups and agamous patrimoieties,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +14049,Ni7,EA017,None,EA017-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +14050,Ni8,EA017,None,EA017-1,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +14051,Ni9,EA017,None,EA017-1,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968, +14052,Nj1,EA017,None,EA017-1,"In Ojitlan, persons bearing the same patronym and living in the same community may not marry",merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14053,Nj10,EA017,None,EA017-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14054,Nj11,EA017,None,EA017-1,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +14055,Nj12,EA017,None,EA017-1,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968, +14056,Nj13,EA017,None,EA017-1,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +14057,Nj14,EA017,Lineages,EA017-3,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +14058,Nj2,EA017,None,EA017-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +14059,Nj3,EA017,None,EA017-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +14060,Nj4,EA017,None,EA017-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +14061,Nj5,EA017,None,EA017-1,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +14062,Nj6,EA017,None,EA017-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +14063,Nj7,EA017,None,EA017-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14064,Nj8,EA017,None,EA017-1,,foster1948,,1500,EthnographicAtlas_1967_p118, +14065,Nj9,EA017,Sibs,EA017-4,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +14066,Sa1,EA017,None,EA017-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +14067,Sa10,EA017,Lineages,EA017-3,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +14068,Sa11,EA017,Sibs,EA017-4,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +14069,Sa12,EA017,None,EA017-1,,stone1948,,1948,EthnographicAtlas_1967_p118, +14070,Sa13,EA017,Lineages,EA017-3,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +14071,Sa14,EA017,None,EA017-1,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +14072,Sa15,EA017,Lineages,EA017-3,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +14073,Sa16,EA017,None,EA017-1,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +14074,Sa17,EA017,Lineages,EA017-3,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +14075,Sa2,EA017,Sibs,EA017-4,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14076,Sa3,EA017,None,EA017-1,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +14077,Sa4,EA017,None,EA017-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +14078,Sa5,EA017,None,EA017-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +14079,Sa6,EA017,Lineages,EA017-3,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +14080,Sa7,EA017,None,EA017-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +14081,Sa8,EA017,Lineages,EA017-3,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +14082,Sa9,EA017,None,EA017-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +14083,Sb1,EA017,None,EA017-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +14084,Sb2,EA017,None,EA017-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +14085,Sb3,EA017,None,EA017-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +14086,Sb4,EA017,None,EA017-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +14087,Sb5,EA017,None,EA017-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +14088,Sb6,EA017,None,EA017-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +14089,Sb7,EA017,None,EA017-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +14090,Sb8,EA017,None,EA017-1,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +14091,Sb9,EA017,None,EA017-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +14092,Sc1,EA017,None,EA017-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +14093,Sc10,EA017,None,EA017-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +14094,Sc11,EA017,None,EA017-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +14095,Sc12,EA017,None,EA017-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +14096,Sc13,EA017,None,EA017-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +14097,Sc14,EA017,None,EA017-1,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +14098,Sc15,EA017,None,EA017-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +14099,Sc16,EA017,None,EA017-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +14100,Sc17,EA017,None,EA017-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +14101,Sc18,EA017,None,EA017-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +14102,Sc2,EA017,None,EA017-1,,leedsnd,,1950,EthnographicAtlas_1967_p118, +14103,Sc3,EA017,None,EA017-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +14104,Sc4,EA017,None,EA017-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +14105,Sc5,EA017,None,EA017-1,,farabee1918,,1900,EthnographicAtlas_1967_p118, +14106,Sc6,EA017,None,EA017-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14107,Sc7,EA017,None,EA017-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +14108,Sc8,EA017,None,EA017-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +14109,Sc9,EA017,None,EA017-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +14110,Sd1,EA017,Moieties,EA017-6,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14111,Sd2,EA017,None,EA017-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +14112,Sd3,EA017,Moieties,EA017-6,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +14113,Sd4,EA017,None,EA017-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +14114,Sd5,EA017,Sibs,EA017-4,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +14115,Sd6,EA017,None,EA017-1,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +14116,Sd7,EA017,None,EA017-1,,fock1963,,1950,EthnographicAtlas_1967_p118, +14117,Sd8,EA017,None,EA017-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +14118,Sd9,EA017,None,EA017-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14119,Se1,EA017,None,EA017-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +14120,Se10,EA017,Lineages,EA017-3,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +14121,Se11,EA017,None,EA017-1,,prost1965,,1960,EthnographicAtlas_1967_p122, +14122,Se12,EA017,Phratries,EA017-5,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +14123,Se2,EA017,Moieties,EA017-6,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +14124,Se3,EA017,None,EA017-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +14125,Se4,EA017,Lineages,EA017-3,,fejos1943,,1940,EthnographicAtlas_1967_p118, +14126,Se5,EA017,Phratries,EA017-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +14127,Se6,EA017,Lineages,EA017-3,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +14128,Se7,EA017,None,EA017-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14129,Se8,EA017,None,EA017-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +14130,Se9,EA017,None,EA017-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +14131,Sf1,EA017,None,EA017-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +14132,Sf2,EA017,Lineages,EA017-3,Patrilineages are presumably a pot-contact development,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +14133,Sf3,EA017,None,EA017-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +14134,Sf4,EA017,None,EA017-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +14135,Sf5,EA017,None,EA017-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +14136,Sf6,EA017,None,EA017-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +14137,Sf7,EA017,None,EA017-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +14138,Sf8,EA017,None,EA017-1,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +14139,Sf9,EA017,None,EA017-1,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +14140,Sg1,EA017,None,EA017-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +14141,Sg2,EA017,Lineages,EA017-3,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14142,Sg3,EA017,None,EA017-1,"But some scholars have inferred patrilineal descent. Entry would be 'lineages' (code ""3"") if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock (1965c))",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +14143,Sg4,EA017,None,EA017-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +14144,Sg5,EA017,None,EA017-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14145,Sh1,EA017,None,EA017-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +14146,Sh2,EA017,None,EA017-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +14147,Sh3,EA017,None,EA017-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +14148,Sh4,EA017,None,EA017-1,,oberg1949,,1940,EthnographicAtlas_1967_p122, +14149,Sh5,EA017,None,EA017-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +14150,Sh6,EA017,None,EA017-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +14151,Sh7,EA017,None,EA017-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +14152,Sh8,EA017,None,EA017-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +14153,Sh9,EA017,None,EA017-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +14154,Si1,EA017,None,EA017-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14155,Si10,EA017,None,EA017-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +14156,Si2,EA017,None,EA017-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +14157,Si3,EA017,None,EA017-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14158,Si4,EA017,None,EA017-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +14159,Si5,EA017,None,EA017-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +14160,Si6,EA017,None,EA017-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +14161,Si7,EA017,None,EA017-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +14162,Si8,EA017,None,EA017-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +14163,Si9,EA017,None,EA017-1,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +14164,Sj1,EA017,None,EA017-1,But there are three agamous patrilineal groups which function only in the ceremonial and political life of men,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +14165,Sj10,EA017,None,EA017-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14166,Sj11,EA017,Sibs,EA017-4,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +14167,Sj2,EA017,Moieties,EA017-6,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +14168,Sj3,EA017,None,EA017-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +14169,Sj4,EA017,None,EA017-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +14170,Sj5,EA017,None,EA017-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +14171,Sj6,EA017,None,EA017-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14172,Sj7,EA017,?,EA017-NA,"Parallel descent, i.e., patrilineal for males and matrilineal for females",mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +14173,Sj8,EA017,None,EA017-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +14174,Sj9,EA017,None,EA017-1,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +14175,ch12,EA017,Lineages,EA017-3,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +14176,ch13,EA017,Lineages,EA017-3,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +14177,ch14,EA017,None,EA017-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +14178,ch15,EA017,Sibs,EA017-4,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +14179,ch16,EA017,None,EA017-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +14180,ch17,EA017,None,EA017-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +14181,ch18,EA017,None,EA017-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +14182,ch19,EA017,Lineages,EA017-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +14183,ch20,EA017,None,EA017-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +14184,ch21,EA017,None,EA017-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +14185,ch22,EA017,None,EA017-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +14186,ch23,EA017,None,EA017-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +14187,ch24,EA017,None,EA017-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +14188,ch25,EA017,None,EA017-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +14189,ch26,EA017,Sibs,EA017-4,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +14190,ch27,EA017,None,EA017-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +14191,ch28,EA017,None,EA017-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +14192,ec12,EA017,None,EA017-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +14193,ec13,EA017,None,EA017-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +14194,ec14,EA017,None,EA017-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +14195,ec15,EA017,Moieties,EA017-6,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +14196,ec16,EA017,Sibs,EA017-4,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +14197,ec17,EA017,Sibs,EA017-4,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +14198,ec18,EA017,Sibs,EA017-4,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +14199,ec19,EA017,Sibs,EA017-4,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +14200,ec20,EA017,Sibs,EA017-4,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +14201,ec21,EA017,Sibs,EA017-4,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +14202,Aa1,EA018,No exogamy,EA018-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14203,Aa2,EA018,Sibs,EA018-4,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +14204,Aa3,EA018,Sibs,EA018-4,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +14205,Aa4,EA018,No exogamy,EA018-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14206,Aa5,EA018,No exogamy,EA018-1,Entry follows Schebesta; Czekanowski denies unilineal descent groups,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14207,Aa6,EA018,Lineages,EA018-3,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +14208,Aa7,EA018,No exogamy,EA018-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14209,Aa8,EA018,No exogamy,EA018-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14210,Aa9,EA018,No exogamy,EA018-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14211,Ab1,EA018,Sibs,EA018-4,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +14212,Ab10,EA018,Sibs,EA018-4,,hunter1936,,1936,EthnographicAtlas_1967_p62, +14213,Ab11,EA018,Sibs,EA018-4,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +14214,Ab12,EA018,Sibs,EA018-4,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +14215,Ab13,EA018,No exogamy,EA018-1,Quasi-lineages inferred from the patrilocal but basically territorial ward organization and from vestigial patrisibs,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14216,Ab14,EA018,Lineages,EA018-3,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +14217,Ab15,EA018,Sibs,EA018-4,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +14218,Ab16,EA018,Sibs,EA018-4,,earthy1933,,1930,EthnographicAtlas_1967_p62, +14219,Ab17,EA018,Lineages,EA018-3,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +14220,Ab18,EA018,Lineages,EA018-3,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +14221,Ab19,EA018,No exogamy,EA018-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14222,Ab2,EA018,Sibs,EA018-4,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +14223,Ab20,EA018,No exogamy,EA018-1,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14224,Ab21a,EA018,Sibs,EA018-4,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +14225,Ab21b,EA018,Sibs,EA018-4,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +14226,Ab22,EA018,Sibs,EA018-4,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +14227,Ab3,EA018,No exogamy,EA018-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14228,Ab4,EA018,Lineages,EA018-3,,junod1927,,1920,EthnographicAtlas_1967_p62, +14229,Ab5,EA018,No exogamy,EA018-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +14230,Ab6,EA018,Lineages,EA018-3,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +14231,Ab7,EA018,No exogamy,EA018-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14232,Ab8,EA018,No exogamy,EA018-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14233,Ab9,EA018,Sibs,EA018-4,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +14234,Ac1,EA018,Lineages,EA018-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +14235,Ac10,EA018,No exogamy,EA018-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14236,Ac11,EA018,No exogamy,EA018-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14237,Ac12,EA018,No exogamy,EA018-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14238,Ac13,EA018,No exogamy,EA018-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14239,Ac14,EA018,No exogamy,EA018-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14240,Ac15,EA018,No exogamy,EA018-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14241,Ac16,EA018,No exogamy,EA018-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14242,Ac17,EA018,No exogamy,EA018-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14243,Ac18,EA018,No exogamy,EA018-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14244,Ac19,EA018,No exogamy,EA018-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14245,Ac2,EA018,No exogamy,EA018-1,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14246,Ac20,EA018,No exogamy,EA018-1,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14247,Ac21,EA018,No exogamy,EA018-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14248,Ac22,EA018,No exogamy,EA018-1,,mertens1935,,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14249,Ac23,EA018,No exogamy,EA018-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14250,Ac24,EA018,No exogamy,EA018-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14251,Ac25,EA018,No exogamy,EA018-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14252,Ac26,EA018,No exogamy,EA018-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14253,Ac27,EA018,No exogamy,EA018-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14254,Ac28,EA018,No exogamy,EA018-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14255,Ac29,EA018,No exogamy,EA018-1,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14256,Ac3,EA018,No exogamy,EA018-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14257,Ac30,EA018,No exogamy,EA018-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14258,Ac31,EA018,No exogamy,EA018-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14259,Ac32,EA018,No exogamy,EA018-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14260,Ac33,EA018,No exogamy,EA018-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14261,Ac34,EA018,No exogamy,EA018-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14262,Ac35,EA018,No exogamy,EA018-1,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14263,Ac36,EA018,Sibs,EA018-4,"Formerly 'no patrilineal exogamy' (code ""1"")",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +14264,Ac37,EA018,No exogamy,EA018-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14265,Ac38,EA018,No exogamy,EA018-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14266,Ac39,EA018,No exogamy,EA018-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14267,Ac4,EA018,No exogamy,EA018-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14268,Ac40,EA018,No exogamy,EA018-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14269,Ac41,EA018,No exogamy,EA018-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14270,Ac42,EA018,No exogamy,EA018-1,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14271,Ac43,EA018,Sibs,EA018-4,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +14272,Ac5,EA018,No exogamy,EA018-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14273,Ac6,EA018,No exogamy,EA018-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14274,Ac7,EA018,No exogamy,EA018-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14275,Ac8,EA018,No exogamy,EA018-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14276,Ac9,EA018,No exogamy,EA018-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14277,Ad1,EA018,No exogamy,EA018-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14278,Ad10,EA018,Sibs,EA018-4,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +14279,Ad11,EA018,Sibs,EA018-4,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +14280,Ad12,EA018,Sibs,EA018-4,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +14281,Ad13,EA018,Sibs,EA018-4,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +14282,Ad14,EA018,No exogamy,EA018-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14283,Ad15,EA018,Sibs,EA018-4,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +14284,Ad16,EA018,No exogamy,EA018-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14285,Ad17,EA018,Sibs,EA018-4,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +14286,Ad18,EA018,Sibs,EA018-4,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +14287,Ad19,EA018,Lineages,EA018-3,Uncertain since succession is reported to be matrilineal,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +14288,Ad2,EA018,Sibs,EA018-4,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +14289,Ad20,EA018,No exogamy,EA018-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14290,Ad21,EA018,Sibs,EA018-4,"""A man belongs to the kin group (uluko) of his father's father or his son's son, but not to that of his father or of his son (who both belong to another uluko). There is perpetual alternation of two uluko-names in each patrilineage.""",maurice193538,,1930,EthnographicAtlas_1967_p66, +14291,Ad22,EA018,No exogamy,EA018-1,The incompletely exogamous patrisibs are better classed as ramages since affiliation is to a considerable extent ambilineal,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14292,Ad23,EA018,Sibs,EA018-4,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +14293,Ad24,EA018,Lineages,EA018-3,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +14294,Ad25,EA018,No exogamy,EA018-1,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14295,Ad26,EA018,Sibs,EA018-4,,sick1916,,1910,EthnographicAtlas_1967_p66, +14296,Ad27,EA018,No exogamy,EA018-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14297,Ad28,EA018,No exogamy,EA018-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14298,Ad29,EA018,No exogamy,EA018-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14299,Ad3,EA018,Sibs,EA018-4,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +14300,Ad30,EA018,Sibs,EA018-4,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +14301,Ad31,EA018,Sibs,EA018-4,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +14302,Ad32,EA018,Phratries,EA018-5,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +14303,Ad33,EA018,Sibs,EA018-4,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +14304,Ad34,EA018,Sibs,EA018-4,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +14305,Ad35,EA018,Sibs,EA018-4,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +14306,Ad36,EA018,Sibs,EA018-4,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +14307,Ad37,EA018,Sibs,EA018-4,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +14308,Ad38,EA018,Sibs,EA018-4,Inferential from distributional evidence,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +14309,Ad39,EA018,Sibs,EA018-4,,gray1963,,1950,EthnographicAtlas_1967_p66, +14310,Ad4,EA018,Sibs,EA018-4,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +14311,Ad40,EA018,Sibs,EA018-4,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +14312,Ad41,EA018,Sibs,EA018-4,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +14313,Ad42,EA018,Sibs,EA018-4,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +14314,Ad43,EA018,Sibs,EA018-4,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +14315,Ad44,EA018,Lineages,EA018-3,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +14316,Ad45,EA018,Lineages,EA018-3,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +14317,Ad46,EA018,Sibs,EA018-4,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +14318,Ad47,EA018,Sibs,EA018-4,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +14319,Ad48,EA018,Sibs,EA018-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +14320,Ad49,EA018,Sibs,EA018-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +14321,Ad5,EA018,Lineages,EA018-3,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +14322,Ad50,EA018,No exogamy,EA018-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14323,Ad51,EA018,No exogamy,EA018-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14324,Ad6,EA018,No exogamy,EA018-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14325,Ad7,EA018,Sibs,EA018-4,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +14326,Ad8,EA018,Sibs,EA018-4,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +14327,Ad9,EA018,Lineages,EA018-3,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +14328,Ae1,EA018,Sibs,EA018-4,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +14329,Ae10,EA018,Lineages,EA018-3,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +14330,Ae11,EA018,Sibs,EA018-4,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +14331,Ae12,EA018,Lineages,EA018-3,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +14332,Ae13,EA018,Sibs,EA018-4,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +14333,Ae14,EA018,Sibs,EA018-4,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +14334,Ae15,EA018,Sibs,EA018-4,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +14335,Ae16,EA018,Lineages,EA018-3,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +14336,Ae17,EA018,Sibs,EA018-4,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +14337,Ae18,EA018,Sibs,EA018-4,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +14338,Ae19,EA018,Sibs,EA018-4,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +14339,Ae2,EA018,Lineages,EA018-3,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +14340,Ae20,EA018,Sibs,EA018-4,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +14341,Ae21,EA018,Sibs,EA018-4,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +14342,Ae22,EA018,Sibs,EA018-4,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +14343,Ae23,EA018,Sibs,EA018-4,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +14344,Ae24,EA018,Sibs,EA018-4,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +14345,Ae25,EA018,Sibs,EA018-4,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +14346,Ae26,EA018,Sibs,EA018-4,Patrilineal descent is inferential,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +14347,Ae27,EA018,Sibs,EA018-4,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +14348,Ae28,EA018,Sibs,EA018-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +14349,Ae29,EA018,Sibs,EA018-4,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +14350,Ae3,EA018,Sibs,EA018-4,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +14351,Ae30,EA018,Lineages,EA018-3,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +14352,Ae31,EA018,Sibs,EA018-4,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +14353,Ae32,EA018,Sibs,EA018-4,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +14354,Ae33,EA018,Lineages,EA018-3,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +14355,Ae34,EA018,Lineages,EA018-3,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +14356,Ae35,EA018,Sibs,EA018-4,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +14357,Ae36,EA018,Sibs,EA018-4,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +14358,Ae37,EA018,Sibs,EA018-4,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +14359,Ae38,EA018,No exogamy,EA018-1,,wijnant192526,,1920,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14360,Ae39,EA018,Lineages,EA018-3,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +14361,Ae4,EA018,Sibs,EA018-4,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +14362,Ae40,EA018,Sibs,EA018-4,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +14363,Ae41,EA018,Sibs,EA018-4,,andersson1953,,1940,EthnographicAtlas_1967_p66, +14364,Ae42,EA018,Lineages,EA018-3,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +14365,Ae43,EA018,Sibs,EA018-4,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +14366,Ae44,EA018,?,EA018-NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +14367,Ae45,EA018,Lineages,EA018-3,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +14368,Ae46,EA018,No exogamy,EA018-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14369,Ae47,EA018,Lineages,EA018-3,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +14370,Ae48,EA018,Lineages,EA018-3,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +14371,Ae49,EA018,Lineages,EA018-3,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +14372,Ae5,EA018,Lineages,EA018-3,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +14373,Ae50,EA018,Lineages,EA018-3,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +14374,Ae51,EA018,Lineages,EA018-3,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +14375,Ae52,EA018,Lineages,EA018-3,"But descent is matrilineal in the extreme south, adjacent to the Kom",kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +14376,Ae53,EA018,Lineages,EA018-3,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +14377,Ae54,EA018,No exogamy,EA018-1,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14378,Ae55,EA018,Lineages,EA018-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +14379,Ae56,EA018,Lineages,EA018-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +14380,Ae57,EA018,Lineages,EA018-3,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +14381,Ae58,EA018,No exogamy,EA018-1,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14382,Ae59,EA018,Lineages,EA018-3,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +14383,Ae6,EA018,Lineages,EA018-3,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +14384,Ae7,EA018,Lineages,EA018-3,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +14385,Ae8,EA018,Sibs,EA018-4,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +14386,Ae9,EA018,Lineages,EA018-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +14387,Af1,EA018,Phratries,EA018-5,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +14388,Af10,EA018,Lineages,EA018-3,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +14389,Af11,EA018,Lineages,EA018-3,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +14390,Af12,EA018,No exogamy,EA018-1,Patrilineages (ntoro groups) formerly existed but are now extinct,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14391,Af13,EA018,Lineages,EA018-3,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +14392,Af14,EA018,No exogamy,EA018-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14393,Af15,EA018,Lineages,EA018-3,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +14394,Af16,EA018,Sibs,EA018-4,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +14395,Af17,EA018,?,EA018-NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +14396,Af18,EA018,No exogamy,EA018-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14397,Af19,EA018,Sibs,EA018-4,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +14398,Af2,EA018,Lineages,EA018-3,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +14399,Af20,EA018,Lineages,EA018-3,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +14400,Af21,EA018,No exogamy,EA018-1,"The so-called ""houses"" are presumably ramages rather than patrilineages in view of the reported avunculocal residence and matrilineal affiliation in cases where only a token bride-price is paid",granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14401,Af22,EA018,No exogamy,EA018-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14402,Af23,EA018,No exogamy,EA018-1,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +14403,Af24,EA018,Sibs,EA018-4,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +14404,Af25,EA018,Lineages,EA018-3,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +14405,Af26,EA018,No exogamy,EA018-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14406,Af27,EA018,Lineages,EA018-3,But formerly children by other than an exchange wife belonged to their mother's kin group,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +14407,Af28,EA018,Lineages,EA018-3,But Gunn and Conant suspect ambilineal descent,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +14408,Af29,EA018,No exogamy,EA018-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14409,Af3,EA018,Lineages,EA018-3,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +14410,Af30,EA018,Sibs,EA018-4,Inferential rather than attested,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +14411,Af31,EA018,Lineages,EA018-3,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +14412,Af32,EA018,Sibs,EA018-4,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14413,Af33,EA018,Sibs,EA018-4,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14414,Af34,EA018,Sibs,EA018-4,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14415,Af35,EA018,No exogamy,EA018-1,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14416,Af36,EA018,Lineages,EA018-3,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +14417,Af37,EA018,Lineages,EA018-3,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +14418,Af38,EA018,No exogamy,EA018-1,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14419,Af39,EA018,No exogamy,EA018-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14420,Af4,EA018,Lineages,EA018-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +14421,Af40,EA018,No exogamy,EA018-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14422,Af41,EA018,?,EA018-NA,"There are lineages, formerly matrilineal but more recently patrilineal",crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +14423,Af42,EA018,Lineages,EA018-3,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +14424,Af43,EA018,No exogamy,EA018-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14425,Af44,EA018,No exogamy,EA018-1,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14426,Af45,EA018,No exogamy,EA018-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14427,Af46,EA018,Lineages,EA018-3,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +14428,Af47,EA018,Lineages,EA018-3,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +14429,Af48,EA018,Lineages,EA018-3,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +14430,Af49,EA018,Lineages,EA018-3,,schwab1947,,1940,EthnographicAtlas_1967_p70, +14431,Af5,EA018,Lineages,EA018-3,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +14432,Af50,EA018,Lineages,EA018-3,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +14433,Af51,EA018,Lineages,EA018-3,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +14434,Af52,EA018,Lineages,EA018-3,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +14435,Af53,EA018,Sibs,EA018-4,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +14436,Af54,EA018,Lineages,EA018-3,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +14437,Af55,EA018,Lineages,EA018-3,"Since children are affiliated with the mother's group in cases of uxorilocal residence, descent groups are in a measure ambilineal",dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +14438,Af56,EA018,Lineages,EA018-3,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +14439,Af57,EA018,Lineages,EA018-3,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +14440,Af58,EA018,Lineages,EA018-3,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +14441,Af6,EA018,Sibs,EA018-4,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +14442,Af7,EA018,Lineages,EA018-3,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +14443,Af8,EA018,No exogamy,EA018-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14444,Af9,EA018,No exogamy,EA018-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14445,Ag1,EA018,Lineages,EA018-3,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +14446,Ag10,EA018,Lineages,EA018-3,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +14447,Ag11,EA018,No exogamy,EA018-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14448,Ag12,EA018,Sibs,EA018-4,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +14449,Ag13,EA018,Sibs,EA018-4,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +14450,Ag14,EA018,Lineages,EA018-3,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +14451,Ag15,EA018,Lineages,EA018-3,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +14452,Ag16,EA018,Lineages,EA018-3,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +14453,Ag17,EA018,Lineages,EA018-3,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +14454,Ag18,EA018,No exogamy,EA018-1,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14455,Ag19,EA018,Lineages,EA018-3,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +14456,Ag2,EA018,Sibs,EA018-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +14457,Ag20,EA018,Lineages,EA018-3,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +14458,Ag21,EA018,No exogamy,EA018-1,,lestrange1950,,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14459,Ag22,EA018,Extended taboo,EA018-2,But patrilineal exogamy extends only to second cousins,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +14460,Ag23,EA018,Sibs,EA018-4,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +14461,Ag24,EA018,Sibs,EA018-4,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +14462,Ag25,EA018,No exogamy,EA018-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14463,Ag26,EA018,Lineages,EA018-3,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +14464,Ag27,EA018,No exogamy,EA018-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14465,Ag28,EA018,?,EA018-NA,,,,,, +14466,Ag29,EA018,Lineages,EA018-3,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +14467,Ag3,EA018,Lineages,EA018-3,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +14468,Ag30,EA018,Lineages,EA018-3,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +14469,Ag31,EA018,Lineages,EA018-3,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +14470,Ag32,EA018,Lineages,EA018-3,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +14471,Ag33,EA018,Lineages,EA018-3,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +14472,Ag34,EA018,No exogamy,EA018-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14473,Ag35,EA018,No exogamy,EA018-1,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14474,Ag36,EA018,Sibs,EA018-4,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +14475,Ag37,EA018,Sibs,EA018-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +14476,Ag38,EA018,Sibs,EA018-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +14477,Ag39,EA018,Sibs,EA018-4,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +14478,Ag4,EA018,Sibs,EA018-4,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +14479,Ag40,EA018,Sibs,EA018-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +14480,Ag41,EA018,Sibs,EA018-4,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +14481,Ag42,EA018,Sibs,EA018-4,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +14482,Ag43,EA018,Lineages,EA018-3,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +14483,Ag44,EA018,Lineages,EA018-3,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +14484,Ag45,EA018,Lineages,EA018-3,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +14485,Ag46,EA018,Lineages,EA018-3,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +14486,Ag47,EA018,Sibs,EA018-4,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +14487,Ag48,EA018,Sibs,EA018-4,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +14488,Ag49,EA018,Lineages,EA018-3,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +14489,Ag5,EA018,Sibs,EA018-4,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +14490,Ag50,EA018,Sibs,EA018-4,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +14491,Ag51,EA018,Sibs,EA018-4,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +14492,Ag52,EA018,Sibs,EA018-4,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +14493,Ag53,EA018,Sibs,EA018-4,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +14494,Ag54,EA018,Lineages,EA018-3,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +14495,Ag6,EA018,No exogamy,EA018-1,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14496,Ag7,EA018,No exogamy,EA018-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14497,Ag8,EA018,No exogamy,EA018-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14498,Ag9,EA018,Lineages,EA018-3,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +14499,Ah1,EA018,Lineages,EA018-3,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14500,Ah10,EA018,Lineages,EA018-3,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +14501,Ah11,EA018,Sibs,EA018-4,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +14502,Ah12,EA018,Lineages,EA018-3,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +14503,Ah13,EA018,?,EA018-NA,Probably patrilineal,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +14504,Ah14,EA018,Sibs,EA018-4,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +14505,Ah15,EA018,Lineages,EA018-3,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +14506,Ah16,EA018,Sibs,EA018-4,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +14507,Ah17,EA018,Lineages,EA018-3,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +14508,Ah18,EA018,Sibs,EA018-4,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +14509,Ah19,EA018,Sibs,EA018-4,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +14510,Ah2,EA018,No exogamy,EA018-1,,meek1931a,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14511,Ah20,EA018,Sibs,EA018-4,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +14512,Ah21,EA018,Lineages,EA018-3,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +14513,Ah22,EA018,?,EA018-NA,"The reported ""clans"" are presumably patrilineal, though Ames mentions very strong survivals of matrilineal descent",ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +14514,Ah23,EA018,No exogamy,EA018-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14515,Ah24,EA018,No exogamy,EA018-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14516,Ah25,EA018,Lineages,EA018-3,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +14517,Ah26,EA018,No exogamy,EA018-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14518,Ah27,EA018,Lineages,EA018-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +14519,Ah28,EA018,No exogamy,EA018-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +14520,Ah29,EA018,No exogamy,EA018-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14521,Ah3,EA018,Lineages,EA018-3,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +14522,Ah30,EA018,No exogamy,EA018-1,Patrilineal lineages and moieties have exclusively religious functions,meek1931b,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14523,Ah31,EA018,Lineages,EA018-3,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +14524,Ah32,EA018,No exogamy,EA018-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14525,Ah33,EA018,Lineages,EA018-3,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +14526,Ah34,EA018,Sibs,EA018-4,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +14527,Ah35,EA018,Sibs,EA018-4,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +14528,Ah36,EA018,Lineages,EA018-3,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +14529,Ah37,EA018,Lineages,EA018-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +14530,Ah38,EA018,Lineages,EA018-3,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +14531,Ah39,EA018,Sibs,EA018-4,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +14532,Ah4,EA018,No exogamy,EA018-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14533,Ah5,EA018,Lineages,EA018-3,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +14534,Ah6,EA018,No exogamy,EA018-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14535,Ah7,EA018,Sibs,EA018-4,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +14536,Ah8,EA018,Lineages,EA018-3,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +14537,Ah9,EA018,Lineages,EA018-3,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +14538,Ai1,EA018,Lineages,EA018-3,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +14539,Ai10,EA018,Lineages,EA018-3,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +14540,Ai11,EA018,Lineages,EA018-3,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +14541,Ai12,EA018,Lineages,EA018-3,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +14542,Ai13,EA018,Lineages,EA018-3,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +14543,Ai14,EA018,Lineages,EA018-3,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +14544,Ai15,EA018,Sibs,EA018-4,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +14545,Ai16,EA018,?,EA018-NA,Presumably patrilineal,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +14546,Ai17,EA018,Lineages,EA018-3,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +14547,Ai18,EA018,?,EA018-NA,Inferentially patrilineal,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +14548,Ai19,EA018,Sibs,EA018-4,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +14549,Ai2,EA018,Lineages,EA018-3,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +14550,Ai20,EA018,Sibs,EA018-4,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +14551,Ai21,EA018,Lineages,EA018-3,Inferential,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +14552,Ai22,EA018,Lineages,EA018-3,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +14553,Ai23,EA018,Lineages,EA018-3,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +14554,Ai24,EA018,Sibs,EA018-4,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +14555,Ai25,EA018,Sibs,EA018-4,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +14556,Ai26,EA018,Sibs,EA018-4,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +14557,Ai27,EA018,Sibs,EA018-4,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +14558,Ai28,EA018,Lineages,EA018-3,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +14559,Ai29,EA018,Lineages,EA018-3,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +14560,Ai3,EA018,Sibs,EA018-4,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +14561,Ai30,EA018,Sibs,EA018-4,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +14562,Ai31,EA018,Sibs,EA018-4,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +14563,Ai32,EA018,Sibs,EA018-4,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +14564,Ai33,EA018,Lineages,EA018-3,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +14565,Ai34,EA018,Lineages,EA018-3,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +14566,Ai35,EA018,Sibs,EA018-4,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +14567,Ai36,EA018,Sibs,EA018-4,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +14568,Ai37,EA018,Sibs,EA018-4,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +14569,Ai38,EA018,No exogamy,EA018-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14570,Ai39,EA018,No exogamy,EA018-1,,nadel1947,,1940,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14571,Ai4,EA018,No exogamy,EA018-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14572,Ai40,EA018,Lineages,EA018-3,,nadel1947,,1940,EthnographicAtlas_1967_p74, +14573,Ai41,EA018,Lineages,EA018-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +14574,Ai42,EA018,No exogamy,EA018-1,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +14575,Ai43,EA018,Phratries,EA018-5,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +14576,Ai44,EA018,Lineages,EA018-3,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +14577,Ai45,EA018,Sibs,EA018-4,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +14578,Ai46,EA018,Lineages,EA018-3,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +14579,Ai47,EA018,Sibs,EA018-4,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +14580,Ai5,EA018,Lineages,EA018-3,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +14581,Ai6,EA018,Sibs,EA018-4,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +14582,Ai7,EA018,Lineages,EA018-3,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +14583,Ai8,EA018,Phratries,EA018-5,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +14584,Ai9,EA018,Lineages,EA018-3,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +14585,Aj1,EA018,Sibs,EA018-4,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +14586,Aj10,EA018,Sibs,EA018-4,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +14587,Aj11,EA018,Sibs,EA018-4,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +14588,Aj12,EA018,Sibs,EA018-4,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +14589,Aj13,EA018,Sibs,EA018-4,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +14590,Aj14,EA018,Lineages,EA018-3,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +14591,Aj15,EA018,Sibs,EA018-4,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +14592,Aj16,EA018,Sibs,EA018-4,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +14593,Aj17,EA018,Sibs,EA018-4,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +14594,Aj18,EA018,Sibs,EA018-4,,jensen1959,,1950,EthnographicAtlas_1967_p78, +14595,Aj19,EA018,Sibs,EA018-4,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +14596,Aj2,EA018,Sibs,EA018-4,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +14597,Aj20,EA018,Sibs,EA018-4,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +14598,Aj21,EA018,No exogamy,EA018-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14599,Aj22,EA018,Sibs,EA018-4,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +14600,Aj23,EA018,Sibs,EA018-4,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +14601,Aj24,EA018,Sibs,EA018-4,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +14602,Aj25,EA018,Sibs,EA018-4,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +14603,Aj26,EA018,Sibs,EA018-4,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +14604,Aj27,EA018,Lineages,EA018-3,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +14605,Aj28,EA018,Sibs,EA018-4,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +14606,Aj29,EA018,Phratries,EA018-5,"The phratries are grouped into moieties, which have ""no very great significance""",spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +14607,Aj3,EA018,Sibs,EA018-4,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +14608,Aj30,EA018,Lineages,EA018-3,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +14609,Aj31,EA018,Lineages,EA018-3,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +14610,Aj4,EA018,Sibs,EA018-4,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +14611,Aj5,EA018,Sibs,EA018-4,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +14612,Aj6,EA018,Sibs,EA018-4,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +14613,Aj7,EA018,Sibs,EA018-4,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +14614,Aj8,EA018,Sibs,EA018-4,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +14615,Aj9,EA018,Lineages,EA018-3,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +14616,Ca1,EA018,Sibs,EA018-4,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +14617,Ca10,EA018,Lineages,EA018-3,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +14618,Ca11,EA018,Lineages,EA018-3,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +14619,Ca12,EA018,Lineages,EA018-3,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +14620,Ca13,EA018,Lineages,EA018-3,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +14621,Ca14,EA018,Sibs,EA018-4,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +14622,Ca15,EA018,No exogamy,EA018-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14623,Ca16,EA018,No exogamy,EA018-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14624,Ca17,EA018,Sibs,EA018-4,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +14625,Ca18,EA018,Sibs,EA018-4,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +14626,Ca19,EA018,Moieties,EA018-6,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +14627,Ca2,EA018,Lineages,EA018-3,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +14628,Ca20,EA018,Sibs,EA018-4,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +14629,Ca21,EA018,Moieties,EA018-6,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +14630,Ca22,EA018,Moieties,EA018-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +14631,Ca23,EA018,Sibs,EA018-4,,jensen1959,,1950,EthnographicAtlas_1967_p78, +14632,Ca24,EA018,Sibs,EA018-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +14633,Ca25,EA018,Moieties,EA018-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +14634,Ca26,EA018,Sibs,EA018-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +14635,Ca27,EA018,Sibs,EA018-4,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +14636,Ca28,EA018,Sibs,EA018-4,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +14637,Ca29,EA018,Sibs,EA018-4,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +14638,Ca3,EA018,Lineages,EA018-3,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +14639,Ca30,EA018,Sibs,EA018-4,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +14640,Ca31,EA018,No exogamy,EA018-1,Bilateral descent inferred from lack of mention of unilineal kin groups in any source,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14641,Ca32,EA018,No exogamy,EA018-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14642,Ca33,EA018,No exogamy,EA018-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14643,Ca34,EA018,No exogamy,EA018-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14644,Ca35,EA018,No exogamy,EA018-1,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14645,Ca36,EA018,No exogamy,EA018-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14646,Ca37,EA018,?,EA018-NA,"No data on descent, but distributional evidence suggests the patrilineal rule",munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +14647,Ca38,EA018,No exogamy,EA018-1,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14648,Ca39,EA018,Sibs,EA018-4,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +14649,Ca4,EA018,Sibs,EA018-4,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +14650,Ca40,EA018,Moieties,EA018-6,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +14651,Ca41,EA018,Sibs,EA018-4,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +14652,Ca42,EA018,Sibs,EA018-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +14653,Ca43,EA018,No exogamy,EA018-1,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14654,Ca5,EA018,No exogamy,EA018-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14655,Ca6,EA018,No exogamy,EA018-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14656,Ca7,EA018,No exogamy,EA018-1,Patronymic but probably not patrilineal,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14657,Ca8,EA018,Phratries,EA018-5,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +14658,Ca9,EA018,Sibs,EA018-4,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +14659,Cb1,EA018,Sibs,EA018-4,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +14660,Cb10,EA018,Sibs,EA018-4,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +14661,Cb11,EA018,No exogamy,EA018-1,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14662,Cb12,EA018,No exogamy,EA018-1,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14663,Cb13,EA018,No exogamy,EA018-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14664,Cb14,EA018,No exogamy,EA018-1,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14665,Cb15,EA018,No exogamy,EA018-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14666,Cb16,EA018,No exogamy,EA018-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14667,Cb17,EA018,No exogamy,EA018-1,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14668,Cb18,EA018,No exogamy,EA018-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14669,Cb19,EA018,No exogamy,EA018-1,"Descent, though patrilineal prior to 1850, is now ""bilateral with an agnatic bias"" (Cohen)",cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14670,Cb2,EA018,Lineages,EA018-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +14671,Cb20,EA018,No exogamy,EA018-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14672,Cb21,EA018,Lineages,EA018-3,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +14673,Cb22,EA018,No exogamy,EA018-1,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14674,Cb23,EA018,Sibs,EA018-4,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +14675,Cb24,EA018,No exogamy,EA018-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14676,Cb25,EA018,No exogamy,EA018-1,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14677,Cb26,EA018,No exogamy,EA018-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14678,Cb27,EA018,Lineages,EA018-3,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +14679,Cb28,EA018,Lineages,EA018-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +14680,Cb29,EA018,Lineages,EA018-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +14681,Cb3,EA018,No exogamy,EA018-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14682,Cb4,EA018,No exogamy,EA018-1,,reid1930,,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14683,Cb5,EA018,No exogamy,EA018-1,"Descent uncertain, though reported as patrilineal by Bouillie",bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14684,Cb6,EA018,Lineages,EA018-3,,woodnd,,1920,EthnographicAtlas_1967_p78, +14685,Cb7,EA018,No exogamy,EA018-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14686,Cb8,EA018,No exogamy,EA018-1,But one source speaks of patrilineages,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14687,Cb9,EA018,No exogamy,EA018-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14688,Cc1,EA018,No exogamy,EA018-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14689,Cc10,EA018,No exogamy,EA018-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14690,Cc11,EA018,No exogamy,EA018-1,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14691,Cc12,EA018,?,EA018-NA,"Although descent is specifically reported as patrilineal, it may well be matrilineal as among other Tuareg",cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +14692,Cc13,EA018,No exogamy,EA018-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14693,Cc14,EA018,No exogamy,EA018-1,Patrilineal descent is inferential,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14694,Cc15,EA018,No exogamy,EA018-1,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14695,Cc16,EA018,No exogamy,EA018-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14696,Cc17,EA018,No exogamy,EA018-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14697,Cc18,EA018,No exogamy,EA018-1,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14698,Cc19,EA018,No exogamy,EA018-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14699,Cc2,EA018,Lineages,EA018-3,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +14700,Cc20,EA018,No exogamy,EA018-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14701,Cc3,EA018,No exogamy,EA018-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14702,Cc4,EA018,No exogamy,EA018-1,The prevalence of sib or lineage exogamy is not reported,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14703,Cc5,EA018,No exogamy,EA018-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14704,Cc6,EA018,No exogamy,EA018-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14705,Cc7,EA018,No exogamy,EA018-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14706,Cc8,EA018,?,EA018-NA,Said to have shifted from matrilineal to patrilineal descent,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +14707,Cc9,EA018,No exogamy,EA018-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14708,Cd1,EA018,No exogamy,EA018-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14709,Cd10,EA018,No exogamy,EA018-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14710,Cd11,EA018,No exogamy,EA018-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14711,Cd12,EA018,No exogamy,EA018-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14712,Cd13,EA018,No exogamy,EA018-1,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14713,Cd14,EA018,No exogamy,EA018-1,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14714,Cd15,EA018,No exogamy,EA018-1,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14715,Cd16,EA018,No exogamy,EA018-1,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14716,Cd17,EA018,No exogamy,EA018-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14717,Cd18,EA018,No exogamy,EA018-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14718,Cd19,EA018,No exogamy,EA018-1,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14719,Cd2,EA018,No exogamy,EA018-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14720,Cd20,EA018,No exogamy,EA018-1,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14721,Cd21,EA018,No exogamy,EA018-1,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14722,Cd3,EA018,Lineages,EA018-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +14723,Cd4,EA018,No exogamy,EA018-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14724,Cd5,EA018,Lineages,EA018-3,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +14725,Cd6,EA018,No exogamy,EA018-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14726,Cd7,EA018,No exogamy,EA018-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14727,Cd8,EA018,No exogamy,EA018-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14728,Cd9,EA018,No exogamy,EA018-1,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14729,Ce1,EA018,Sibs,EA018-4,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +14730,Ce2,EA018,No exogamy,EA018-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14731,Ce3,EA018,No exogamy,EA018-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14732,Ce4,EA018,No exogamy,EA018-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14733,Ce5,EA018,No exogamy,EA018-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14734,Ce6,EA018,No exogamy,EA018-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14735,Ce7,EA018,No exogamy,EA018-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14736,Ce8,EA018,No exogamy,EA018-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14737,Cf1,EA018,No exogamy,EA018-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14738,Cf2,EA018,No exogamy,EA018-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14739,Cf3,EA018,No exogamy,EA018-1,,munch1945,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14740,Cf4,EA018,No exogamy,EA018-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14741,Cf5,EA018,No exogamy,EA018-1,,miner1939,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14742,Cg1,EA018,No exogamy,EA018-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14743,Cg2,EA018,No exogamy,EA018-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14744,Cg3,EA018,No exogamy,EA018-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14745,Cg4,EA018,No exogamy,EA018-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14746,Cg5,EA018,No exogamy,EA018-1,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14747,Ch1,EA018,Lineages,EA018-3,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +14748,Ch10,EA018,No exogamy,EA018-1,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14749,Ch11,EA018,No exogamy,EA018-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14750,Ch2,EA018,No exogamy,EA018-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14751,Ch3,EA018,No exogamy,EA018-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14752,Ch4,EA018,No exogamy,EA018-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14753,Ch5,EA018,No exogamy,EA018-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14754,Ch6,EA018,No exogamy,EA018-1,,ember1954,,1910,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14755,Ch7,EA018,No exogamy,EA018-1,,friedrich1954,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14756,Ch8,EA018,No exogamy,EA018-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14757,Ch9,EA018,No exogamy,EA018-1,,maciuika1955,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14758,Ci1,EA018,Sibs,EA018-4,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +14759,Ci10,EA018,No exogamy,EA018-1,Formerly patrilineal and still patronymic,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14760,Ci11,EA018,No exogamy,EA018-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14761,Ci12,EA018,Sibs,EA018-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +14762,Ci2,EA018,Sibs,EA018-4,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +14763,Ci3,EA018,No exogamy,EA018-1,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14764,Ci4,EA018,Sibs,EA018-4,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +14765,Ci5,EA018,No exogamy,EA018-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14766,Ci6,EA018,Sibs,EA018-4,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +14767,Ci7,EA018,Sibs,EA018-4,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +14768,Ci8,EA018,?,EA018-NA,,,,,, +14769,Ci9,EA018,Sibs,EA018-4,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +14770,Cj1,EA018,No exogamy,EA018-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14771,Cj10,EA018,No exogamy,EA018-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14772,Cj2,EA018,No exogamy,EA018-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14773,Cj3,EA018,No exogamy,EA018-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14774,Cj4,EA018,No exogamy,EA018-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14775,Cj5,EA018,No exogamy,EA018-1,,dickson1949,,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14776,Cj6,EA018,No exogamy,EA018-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14777,Cj7,EA018,No exogamy,EA018-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14778,Cj8,EA018,No exogamy,EA018-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14779,Cj9,EA018,No exogamy,EA018-1,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14780,Ea1,EA018,No exogamy,EA018-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14781,Ea10,EA018,No exogamy,EA018-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14782,Ea11,EA018,No exogamy,EA018-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14783,Ea12,EA018,No exogamy,EA018-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14784,Ea13,EA018,No exogamy,EA018-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14785,Ea2,EA018,No exogamy,EA018-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14786,Ea3,EA018,No exogamy,EA018-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14787,Ea4,EA018,No exogamy,EA018-1,,barth1956b,,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14788,Ea5,EA018,Sibs,EA018-4,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +14789,Ea6,EA018,No exogamy,EA018-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14790,Ea7,EA018,No exogamy,EA018-1,,schurmann1962,,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14791,Ea8,EA018,No exogamy,EA018-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14792,Ea9,EA018,No exogamy,EA018-1,,vreeland1957,,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14793,Eb1,EA018,Sibs,EA018-4,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +14794,Eb2,EA018,Sibs,EA018-4,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +14795,Eb3,EA018,Lineages,EA018-3,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +14796,Eb4,EA018,Phratries,EA018-5,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +14797,Eb5,EA018,Lineages,EA018-3,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +14798,Eb6,EA018,Sibs,EA018-4,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +14799,Eb7,EA018,Lineages,EA018-3,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +14800,Eb8,EA018,No exogamy,EA018-1,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14801,Ec1,EA018,Sibs,EA018-4,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +14802,Ec10,EA018,Sibs,EA018-4,But Steinitz reports agamous patrimoieties,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +14803,Ec11,EA018,Phratries,EA018-5,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +14804,Ec2,EA018,Phratries,EA018-5,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14805,Ec3,EA018,No exogamy,EA018-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14806,Ec4,EA018,Phratries,EA018-5,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +14807,Ec5,EA018,No exogamy,EA018-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14808,Ec6,EA018,No exogamy,EA018-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14809,Ec7,EA018,No exogamy,EA018-1,But there are patrilineal kin groups consisting of males only,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14810,Ec8,EA018,Sibs,EA018-4,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +14811,Ec9,EA018,Sibs,EA018-4,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +14812,Ed1,EA018,Sibs,EA018-4,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +14813,Ed10,EA018,Sibs,EA018-4,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +14814,Ed13,EA018,No exogamy,EA018-1,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14815,Ed14,EA018,Sibs,EA018-4,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +14816,Ed15a,EA018,No exogamy,EA018-1,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14817,Ed15b,EA018,Sibs,EA018-4,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +14818,Ed16,EA018,Sibs,EA018-4,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +14819,Ed2,EA018,Phratries,EA018-5,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +14820,Ed3,EA018,Sibs,EA018-4,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +14821,Ed4,EA018,Sibs,EA018-4,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +14822,Ed5,EA018,No exogamy,EA018-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14823,Ed6,EA018,Lineages,EA018-3,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +14824,Ed7,EA018,No exogamy,EA018-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14825,Ed8,EA018,No exogamy,EA018-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14826,Ed9,EA018,No exogamy,EA018-1,Patronymic name groups resembling those of the Chinese,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14827,Ee1,EA018,Sibs,EA018-4,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +14828,Ee2,EA018,Sibs,EA018-4,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +14829,Ee3,EA018,Sibs,EA018-4,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +14830,Ee4,EA018,Sibs,EA018-4,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +14831,Ee5,EA018,Sibs,EA018-4,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +14832,Ee6,EA018,Sibs,EA018-4,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +14833,Ee7,EA018,No exogamy,EA018-1,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14834,Ee8,EA018,Sibs,EA018-4,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +14835,Ef1,EA018,Sibs,EA018-4,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +14836,Ef10,EA018,Phratries,EA018-5,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14837,Ef11,EA018,Sibs,EA018-4,But locally exogamous sibs for the Thakur caste,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +14838,Ef2,EA018,Lineages,EA018-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +14839,Ef3,EA018,Lineages,EA018-3,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +14840,Ef4,EA018,Sibs,EA018-4,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +14841,Ef5,EA018,Sibs,EA018-4,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +14842,Ef6,EA018,Sibs,EA018-4,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +14843,Ef7,EA018,Sibs,EA018-4,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +14844,Ef8,EA018,No exogamy,EA018-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14845,Ef9,EA018,Phratries,EA018-5,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14846,Eg1,EA018,Phratries,EA018-5,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14847,Eg10,EA018,Sibs,EA018-4,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +14848,Eg11,EA018,Phratries,EA018-5,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +14849,Eg12,EA018,Sibs,EA018-4,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +14850,Eg13,EA018,Phratries,EA018-5,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14851,Eg14,EA018,Sibs,EA018-4,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +14852,Eg2,EA018,Lineages,EA018-3,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +14853,Eg3,EA018,Phratries,EA018-5,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +14854,Eg4,EA018,Sibs,EA018-4,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +14855,Eg5,EA018,Sibs,EA018-4,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +14856,Eg6,EA018,No exogamy,EA018-1,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14857,Eg7,EA018,Sibs,EA018-4,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +14858,Eg8,EA018,No exogamy,EA018-1,,griffiths1946,,1940,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14859,Eg9,EA018,Sibs,EA018-4,,elwin1939,,1930,EthnographicAtlas_1967_p90, +14860,Eh1,EA018,No exogamy,EA018-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14861,Eh10,EA018,Sibs,EA018-4,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +14862,Eh2,EA018,No exogamy,EA018-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +14863,Eh3,EA018,Lineages,EA018-3,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +14864,Eh4,EA018,No exogamy,EA018-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14865,Eh5,EA018,No exogamy,EA018-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14866,Eh6,EA018,No exogamy,EA018-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14867,Eh7,EA018,No exogamy,EA018-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14868,Eh8,EA018,Lineages,EA018-3,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +14869,Eh9,EA018,Sibs,EA018-4,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +14870,Ei1,EA018,No exogamy,EA018-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14871,Ei10,EA018,Lineages,EA018-3,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +14872,Ei11,EA018,Lineages,EA018-3,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +14873,Ei12,EA018,Sibs,EA018-4,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +14874,Ei13,EA018,Sibs,EA018-4,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +14875,Ei14,EA018,Phratries,EA018-5,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +14876,Ei15,EA018,Phratries,EA018-5,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +14877,Ei16,EA018,Sibs,EA018-4,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +14878,Ei17,EA018,Phratries,EA018-5,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +14879,Ei18,EA018,No exogamy,EA018-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14880,Ei19,EA018,Lineages,EA018-3,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +14881,Ei2,EA018,Sibs,EA018-4,,mills1922,,1920,EthnographicAtlas_1967_p90, +14882,Ei20,EA018,Lineages,EA018-3,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +14883,Ei3,EA018,No exogamy,EA018-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14884,Ei4,EA018,No exogamy,EA018-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14885,Ei5,EA018,Lineages,EA018-3,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +14886,Ei6,EA018,Lineages,EA018-3,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +14887,Ei7,EA018,No exogamy,EA018-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14888,Ei8,EA018,No exogamy,EA018-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14889,Ei9,EA018,Sibs,EA018-4,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +14890,Ej1,EA018,Sibs,EA018-4,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +14891,Ej10,EA018,No exogamy,EA018-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14892,Ej11,EA018,No exogamy,EA018-1,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14893,Ej12,EA018,Lineages,EA018-3,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +14894,Ej13,EA018,Sibs,EA018-4,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +14895,Ej14,EA018,No exogamy,EA018-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14896,Ej15,EA018,No exogamy,EA018-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14897,Ej16,EA018,No exogamy,EA018-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14898,Ej2,EA018,No exogamy,EA018-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14899,Ej3,EA018,No exogamy,EA018-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14900,Ej4,EA018,Sibs,EA018-4,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +14901,Ej5,EA018,No exogamy,EA018-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14902,Ej6,EA018,No exogamy,EA018-1,Nomadic boat communities,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14903,Ej7,EA018,Lineages,EA018-3,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +14904,Ej8,EA018,No exogamy,EA018-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14905,Ej9,EA018,No exogamy,EA018-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14906,Ia1,EA018,No exogamy,EA018-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14907,Ia10,EA018,Phratries,EA018-5,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +14908,Ia11,EA018,No exogamy,EA018-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14909,Ia12,EA018,No exogamy,EA018-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14910,Ia13,EA018,No exogamy,EA018-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14911,Ia14,EA018,No exogamy,EA018-1,"But Wei and Liu, unlike other sources, report patrilineages",kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14912,Ia15,EA018,No exogamy,EA018-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14913,Ia16,EA018,No exogamy,EA018-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14914,Ia17,EA018,No exogamy,EA018-1,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14915,Ia18,EA018,No exogamy,EA018-1,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14916,Ia2,EA018,No exogamy,EA018-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14917,Ia3,EA018,No exogamy,EA018-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14918,Ia4,EA018,No exogamy,EA018-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14919,Ia5,EA018,No exogamy,EA018-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14920,Ia6,EA018,No exogamy,EA018-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14921,Ia7,EA018,No exogamy,EA018-1,,fox1954,,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14922,Ia8,EA018,No exogamy,EA018-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14923,Ia9,EA018,No exogamy,EA018-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14924,Ib1,EA018,No exogamy,EA018-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14925,Ib2,EA018,No exogamy,EA018-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14926,Ib3,EA018,Phratries,EA018-5,"But no patrilineal exogamy (code ""1"") in upper castes",belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +14927,Ib4,EA018,Sibs,EA018-4,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +14928,Ib5,EA018,No exogamy,EA018-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14929,Ib6,EA018,No exogamy,EA018-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14930,Ib7,EA018,No exogamy,EA018-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14931,Ib8,EA018,No exogamy,EA018-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14932,Ib9,EA018,No exogamy,EA018-1,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14933,Ic1,EA018,No exogamy,EA018-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14934,Ic10,EA018,No exogamy,EA018-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14935,Ic11,EA018,Lineages,EA018-3,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14936,Ic12,EA018,No exogamy,EA018-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14937,Ic13,EA018,Sibs,EA018-4,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +14938,Ic2,EA018,No exogamy,EA018-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14939,Ic3,EA018,No exogamy,EA018-1,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14940,Ic4,EA018,Sibs,EA018-4,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +14941,Ic5,EA018,No exogamy,EA018-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14942,Ic6,EA018,Lineages,EA018-3,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +14943,Ic7,EA018,Sibs,EA018-4,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +14944,Ic8,EA018,Sibs,EA018-4,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +14945,Ic9,EA018,Sibs,EA018-4,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +14946,Id1,EA018,Moieties,EA018-6,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +14947,Id10,EA018,Sibs,EA018-4,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +14948,Id11,EA018,Moieties,EA018-6,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +14949,Id12,EA018,Sibs,EA018-4,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +14950,Id13,EA018,Moieties,EA018-6,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +14951,Id2,EA018,Moieties,EA018-6,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +14952,Id3,EA018,No exogamy,EA018-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14953,Id4,EA018,No exogamy,EA018-1,"But there are localized totemic groups which do not regulate marriages; in addition, analysis suggests implicit intersecting patrimoieties",berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14954,Id5,EA018,Moieties,EA018-6,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +14955,Id6,EA018,Moieties,EA018-6,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +14956,Id7,EA018,Sibs,EA018-4,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +14957,Id8,EA018,?,EA018-NA,,,,,, +14958,Id9,EA018,Moieties,EA018-6,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +14959,Ie1,EA018,Sibs,EA018-4,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14960,Ie10,EA018,Lineages,EA018-3,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +14961,Ie11,EA018,Phratries,EA018-5,,bowers1964,,1950,EthnographicAtlas_1967_p94, +14962,Ie12,EA018,Lineages,EA018-3,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14963,Ie13,EA018,Lineages,EA018-3,,landtman1927,,1920,EthnographicAtlas_1967_p94, +14964,Ie14,EA018,Sibs,EA018-4,,haddon1908,,1900,EthnographicAtlas_1967_p94, +14965,Ie15,EA018,Sibs,EA018-4,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14966,Ie16,EA018,Phratries,EA018-5,,williams194041,,1940,EthnographicAtlas_1967_p94, +14967,Ie17,EA018,Phratries,EA018-5,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +14968,Ie18,EA018,Lineages,EA018-3,"Though exogamous, lineages are only incompletely patrilineal and, within a village, tend to be grouped into local moieties",serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +14969,Ie19,EA018,Sibs,EA018-4,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +14970,Ie2,EA018,Lineages,EA018-3,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +14971,Ie20,EA018,Sibs,EA018-4,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +14972,Ie21,EA018,Lineages,EA018-3,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +14973,Ie22,EA018,Phratries,EA018-5,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +14974,Ie23,EA018,Lineages,EA018-3,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +14975,Ie24,EA018,Lineages,EA018-3,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +14976,Ie25,EA018,Lineages,EA018-3,,williamson1912,,1920,EthnographicAtlas_1967_p94, +14977,Ie26,EA018,Lineages,EA018-3,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +14978,Ie27,EA018,Sibs,EA018-4,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +14979,Ie28,EA018,Lineages,EA018-3,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +14980,Ie29,EA018,Lineages,EA018-3,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14981,Ie3,EA018,Lineages,EA018-3,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14982,Ie30,EA018,No exogamy,EA018-1,,pouwer1955,,1950,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14983,Ie31,EA018,Lineages,EA018-3,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +14984,Ie32,EA018,Lineages,EA018-3,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +14985,Ie33,EA018,Lineages,EA018-3,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +14986,Ie34,EA018,No exogamy,EA018-1,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14987,Ie35,EA018,Sibs,EA018-4,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +14988,Ie36,EA018,No exogamy,EA018-1,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +14989,Ie37,EA018,Lineages,EA018-3,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +14990,Ie38,EA018,Moieties,EA018-6,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +14991,Ie39,EA018,Lineages,EA018-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +14992,Ie4,EA018,Lineages,EA018-3,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14993,Ie5,EA018,Moieties,EA018-6,,williams1936,,1930,EthnographicAtlas_1967_p94, +14994,Ie6,EA018,Lineages,EA018-3,,held1947,,1930,EthnographicAtlas_1967_p94, +14995,Ie7,EA018,Sibs,EA018-4,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +14996,Ie8,EA018,Moieties,EA018-6,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +14997,Ie9,EA018,Sibs,EA018-4,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +14998,If1,EA018,No exogamy,EA018-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +14999,If10,EA018,No exogamy,EA018-1,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15000,If11,EA018,No exogamy,EA018-1,,sarfert1919,,1860,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15001,If12,EA018,No exogamy,EA018-1,,mason1954,,1940,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15002,If13,EA018,No exogamy,EA018-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15003,If14,EA018,No exogamy,EA018-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15004,If15,EA018,No exogamy,EA018-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15005,If16,EA018,No exogamy,EA018-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15006,If17,EA018,No exogamy,EA018-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15007,If2,EA018,No exogamy,EA018-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15008,If3,EA018,No exogamy,EA018-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15009,If4,EA018,No exogamy,EA018-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15010,If5,EA018,No exogamy,EA018-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15011,If6,EA018,Lineages,EA018-3,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +15012,If7,EA018,No exogamy,EA018-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15013,If8,EA018,No exogamy,EA018-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15014,If9,EA018,No exogamy,EA018-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15015,Ig1,EA018,No exogamy,EA018-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15016,Ig10,EA018,Lineages,EA018-3,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +15017,Ig11,EA018,No exogamy,EA018-1,,armstrong1928,,1920,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15018,Ig12,EA018,No exogamy,EA018-1,There is some emphasis on patrifiliation,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15019,Ig13,EA018,No exogamy,EA018-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15020,Ig14,EA018,No exogamy,EA018-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15021,Ig15,EA018,Sibs,EA018-4,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +15022,Ig16,EA018,No exogamy,EA018-1,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15023,Ig17,EA018,Sibs,EA018-4,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +15024,Ig18,EA018,Sibs,EA018-4,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +15025,Ig19,EA018,No exogamy,EA018-1,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15026,Ig2,EA018,No exogamy,EA018-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15027,Ig20,EA018,No exogamy,EA018-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15028,Ig21,EA018,No exogamy,EA018-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15029,Ig3,EA018,No exogamy,EA018-1,,blackwood1935,,1930,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15030,Ig4,EA018,No exogamy,EA018-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15031,Ig5,EA018,No exogamy,EA018-1,,fortune1932b,,1920,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15032,Ig6,EA018,No exogamy,EA018-1,,ivens1927,,1900,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15033,Ig7,EA018,No exogamy,EA018-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15034,Ig8,EA018,No exogamy,EA018-1,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15035,Ig9,EA018,Lineages,EA018-3,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +15036,Ih1,EA018,No exogamy,EA018-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15037,Ih10,EA018,Lineages,EA018-3,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15038,Ih11,EA018,Lineages,EA018-3,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +15039,Ih12,EA018,Lineages,EA018-3,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +15040,Ih13,EA018,Phratries,EA018-5,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +15041,Ih14,EA018,Lineages,EA018-3,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +15042,Ih2,EA018,Phratries,EA018-5,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15043,Ih3,EA018,Sibs,EA018-4,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +15044,Ih4,EA018,Sibs,EA018-4,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15045,Ih5,EA018,Sibs,EA018-4,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +15046,Ih6,EA018,No exogamy,EA018-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15047,Ih7,EA018,Lineages,EA018-3,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +15048,Ih8,EA018,Lineages,EA018-3,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +15049,Ih9,EA018,No exogamy,EA018-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15050,Ii1,EA018,No exogamy,EA018-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15051,Ii10,EA018,No exogamy,EA018-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15052,Ii12,EA018,No exogamy,EA018-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15053,Ii13,EA018,No exogamy,EA018-1,,burrows1937,,1830,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15054,Ii14,EA018,No exogamy,EA018-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15055,Ii2,EA018,Lineages,EA018-3,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +15056,Ii3,EA018,No exogamy,EA018-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +15057,Ii4,EA018,No exogamy,EA018-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15058,Ii5,EA018,No exogamy,EA018-1,"The exogamous patrilineages of six generations' depth reported by Hogbin, who calls them ""joint families,"" are presumably ambilineal ramages, since affiliation is reported to be matrilineal for about 10 per cent of their membership",hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15059,Ii6,EA018,No exogamy,EA018-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15060,Ii7,EA018,No exogamy,EA018-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15061,Ii8,EA018,No exogamy,EA018-1,,burrows1936,,1840,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15062,Ii9,EA018,No exogamy,EA018-1,,loeb1926a,,1840,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15063,Ij1,EA018,No exogamy,EA018-1,,buck1934,,1820,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15064,Ij10,EA018,No exogamy,EA018-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15065,Ij2,EA018,No exogamy,EA018-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15066,Ij3,EA018,No exogamy,EA018-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15067,Ij4,EA018,No exogamy,EA018-1,,buck1932a,,1850,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15068,Ij5,EA018,No exogamy,EA018-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15069,Ij6,EA018,No exogamy,EA018-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15070,Ij7,EA018,No exogamy,EA018-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15071,Ij8,EA018,No exogamy,EA018-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15072,Ij9,EA018,No exogamy,EA018-1,,metraux1940,,1860,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15073,Na1,EA018,No exogamy,EA018-1,,mckennan1959,,1930,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15074,Na10,EA018,No exogamy,EA018-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15075,Na11,EA018,Lineages,EA018-3,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +15076,Na12,EA018,No exogamy,EA018-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15077,Na13,EA018,No exogamy,EA018-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15078,Na14,EA018,No exogamy,EA018-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15079,Na15,EA018,No exogamy,EA018-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15080,Na16,EA018,No exogamy,EA018-1,,osgood1931,,1860,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15081,Na17,EA018,No exogamy,EA018-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15082,Na19,EA018,No exogamy,EA018-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15083,Na2,EA018,No exogamy,EA018-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15084,Na20,EA018,No exogamy,EA018-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15085,Na21,EA018,No exogamy,EA018-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15086,Na22,EA018,No exogamy,EA018-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15087,Na23,EA018,No exogamy,EA018-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15088,Na24,EA018,No exogamy,EA018-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15089,Na25,EA018,No exogamy,EA018-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15090,Na26,EA018,No exogamy,EA018-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15091,Na27,EA018,No exogamy,EA018-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15092,Na28,EA018,No exogamy,EA018-1,,jenness1937,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15093,Na29,EA018,No exogamy,EA018-1,,goddard1916,,1850,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15094,Na3,EA018,No exogamy,EA018-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15095,Na30,EA018,No exogamy,EA018-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15096,Na31,EA018,No exogamy,EA018-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15097,Na32,EA018,No exogamy,EA018-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15098,Na33,EA018,Sibs,EA018-4,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +15099,Na34,EA018,No exogamy,EA018-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15100,Na35,EA018,Sibs,EA018-4,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +15101,Na36,EA018,Sibs,EA018-4,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +15102,Na37,EA018,Sibs,EA018-4,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +15103,Na38,EA018,Sibs,EA018-4,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +15104,Na39,EA018,Sibs,EA018-4,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +15105,Na4,EA018,No exogamy,EA018-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15106,Na40,EA018,Sibs,EA018-4,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +15107,Na41,EA018,No exogamy,EA018-1,"Follows Speck and Bock; Jenness postulates 'sibs' (code ""4"")",bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15108,Na42,EA018,Sibs,EA018-4,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +15109,Na43,EA018,No exogamy,EA018-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15110,Na44,EA018,No exogamy,EA018-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15111,Na45,EA018,No exogamy,EA018-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15112,Na5,EA018,No exogamy,EA018-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15113,Na6,EA018,No exogamy,EA018-1,,lantis1946,,1930,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15114,Na7,EA018,No exogamy,EA018-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15115,Na8,EA018,No exogamy,EA018-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15116,Na9,EA018,No exogamy,EA018-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15117,Nb1,EA018,No exogamy,EA018-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15118,Nb10,EA018,No exogamy,EA018-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15119,Nb11,EA018,No exogamy,EA018-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15120,Nb12,EA018,No exogamy,EA018-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15121,Nb13,EA018,No exogamy,EA018-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15122,Nb14,EA018,No exogamy,EA018-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15123,Nb15,EA018,No exogamy,EA018-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15124,Nb16,EA018,No exogamy,EA018-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15125,Nb17,EA018,No exogamy,EA018-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15126,Nb18,EA018,No exogamy,EA018-1,,pettitt1950,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15127,Nb19,EA018,No exogamy,EA018-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15128,Nb2,EA018,No exogamy,EA018-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15129,Nb20,EA018,No exogamy,EA018-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15130,Nb21,EA018,No exogamy,EA018-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15131,Nb22,EA018,No exogamy,EA018-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15132,Nb23,EA018,No exogamy,EA018-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15133,Nb24,EA018,No exogamy,EA018-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15134,Nb25,EA018,No exogamy,EA018-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15135,Nb26,EA018,No exogamy,EA018-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15136,Nb27,EA018,No exogamy,EA018-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15137,Nb28,EA018,No exogamy,EA018-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15138,Nb29,EA018,No exogamy,EA018-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15139,Nb3,EA018,No exogamy,EA018-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15140,Nb30,EA018,No exogamy,EA018-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15141,Nb31,EA018,Lineages,EA018-3,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +15142,Nb32,EA018,No exogamy,EA018-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15143,Nb33,EA018,No exogamy,EA018-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15144,Nb34,EA018,No exogamy,EA018-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15145,Nb35,EA018,No exogamy,EA018-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15146,Nb36,EA018,No exogamy,EA018-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15147,Nb37,EA018,No exogamy,EA018-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15148,Nb38,EA018,No exogamy,EA018-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15149,Nb39,EA018,No exogamy,EA018-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15150,Nb4,EA018,No exogamy,EA018-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15151,Nb5,EA018,No exogamy,EA018-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15152,Nb6,EA018,Lineages,EA018-3,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +15153,Nb7,EA018,No exogamy,EA018-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15154,Nb8,EA018,No exogamy,EA018-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15155,Nb9,EA018,No exogamy,EA018-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15156,Nc1,EA018,Lineages,EA018-3,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +15157,Nc10,EA018,No exogamy,EA018-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15158,Nc11,EA018,No exogamy,EA018-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15159,Nc12,EA018,No exogamy,EA018-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15160,Nc13,EA018,No exogamy,EA018-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15161,Nc14,EA018,No exogamy,EA018-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15162,Nc15,EA018,No exogamy,EA018-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15163,Nc16,EA018,No exogamy,EA018-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15164,Nc17,EA018,No exogamy,EA018-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15165,Nc18,EA018,No exogamy,EA018-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15166,Nc19,EA018,No exogamy,EA018-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15167,Nc2,EA018,No exogamy,EA018-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15168,Nc20,EA018,No exogamy,EA018-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15169,Nc21,EA018,No exogamy,EA018-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15170,Nc22,EA018,No exogamy,EA018-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15171,Nc23,EA018,No exogamy,EA018-1,"No patrilineal exogamy' (code ""1"") in some subgroups",aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15172,Nc24,EA018,Moieties,EA018-6,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +15173,Nc25,EA018,Lineages,EA018-3,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +15174,Nc26,EA018,Moieties,EA018-6,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +15175,Nc27,EA018,No exogamy,EA018-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15176,Nc28,EA018,Lineages,EA018-3,"Or possibly moieties (code ""6"")",harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +15177,Nc29,EA018,Moieties,EA018-6,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +15178,Nc3,EA018,Lineages,EA018-3,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +15179,Nc30,EA018,Moieties,EA018-6,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +15180,Nc31,EA018,Moieties,EA018-6,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +15181,Nc32,EA018,Moieties,EA018-6,"But Strong reports lineages (code ""3"")",drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +15182,Nc33,EA018,Moieties,EA018-6,But White suggests that the moieties were matrilineal,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +15183,Nc34,EA018,Sibs,EA018-4,,meigs1939,,1880,EthnographicAtlas_1967_p106, +15184,Nc4,EA018,No exogamy,EA018-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15185,Nc5,EA018,Lineages,EA018-3,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +15186,Nc6,EA018,Sibs,EA018-4,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +15187,Nc7,EA018,No exogamy,EA018-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15188,Nc8,EA018,No exogamy,EA018-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15189,Nc9,EA018,No exogamy,EA018-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15190,Nd1,EA018,No exogamy,EA018-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15191,Nd10,EA018,No exogamy,EA018-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15192,Nd11,EA018,No exogamy,EA018-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15193,Nd12,EA018,No exogamy,EA018-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15194,Nd13,EA018,No exogamy,EA018-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15195,Nd14,EA018,No exogamy,EA018-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15196,Nd15,EA018,No exogamy,EA018-1,,clineetal1938,,1880,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15197,Nd16,EA018,No exogamy,EA018-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15198,Nd17,EA018,No exogamy,EA018-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15199,Nd18,EA018,No exogamy,EA018-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15200,Nd19,EA018,No exogamy,EA018-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15201,Nd2,EA018,No exogamy,EA018-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15202,Nd20,EA018,No exogamy,EA018-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15203,Nd21,EA018,No exogamy,EA018-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15204,Nd22,EA018,No exogamy,EA018-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15205,Nd23,EA018,No exogamy,EA018-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15206,Nd24,EA018,No exogamy,EA018-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15207,Nd25,EA018,No exogamy,EA018-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15208,Nd26,EA018,No exogamy,EA018-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15209,Nd27,EA018,No exogamy,EA018-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15210,Nd28,EA018,No exogamy,EA018-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15211,Nd29,EA018,No exogamy,EA018-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15212,Nd3,EA018,No exogamy,EA018-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15213,Nd30,EA018,No exogamy,EA018-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15214,Nd31,EA018,No exogamy,EA018-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15215,Nd32,EA018,No exogamy,EA018-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15216,Nd33,EA018,No exogamy,EA018-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15217,Nd34,EA018,No exogamy,EA018-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15218,Nd35,EA018,No exogamy,EA018-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15219,Nd36,EA018,No exogamy,EA018-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15220,Nd37,EA018,No exogamy,EA018-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15221,Nd38,EA018,No exogamy,EA018-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15222,Nd39,EA018,No exogamy,EA018-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15223,Nd4,EA018,No exogamy,EA018-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15224,Nd40,EA018,No exogamy,EA018-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15225,Nd41,EA018,No exogamy,EA018-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15226,Nd42,EA018,No exogamy,EA018-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15227,Nd43,EA018,No exogamy,EA018-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15228,Nd44,EA018,No exogamy,EA018-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15229,Nd45,EA018,No exogamy,EA018-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15230,Nd46,EA018,No exogamy,EA018-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15231,Nd47,EA018,No exogamy,EA018-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15232,Nd48,EA018,No exogamy,EA018-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15233,Nd49,EA018,No exogamy,EA018-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15234,Nd5,EA018,No exogamy,EA018-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15235,Nd50,EA018,No exogamy,EA018-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15236,Nd51,EA018,No exogamy,EA018-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15237,Nd52,EA018,No exogamy,EA018-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15238,Nd53,EA018,No exogamy,EA018-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15239,Nd54,EA018,No exogamy,EA018-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15240,Nd55,EA018,No exogamy,EA018-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15241,Nd56,EA018,No exogamy,EA018-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15242,Nd57,EA018,No exogamy,EA018-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15243,Nd58,EA018,No exogamy,EA018-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15244,Nd59,EA018,No exogamy,EA018-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15245,Nd6,EA018,No exogamy,EA018-1,There are weak agamous patrimoieties whose sole function is to oppose each other in games,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15246,Nd60,EA018,No exogamy,EA018-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15247,Nd61,EA018,No exogamy,EA018-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15248,Nd62,EA018,No exogamy,EA018-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15249,Nd63,EA018,No exogamy,EA018-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15250,Nd64,EA018,No exogamy,EA018-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15251,Nd65,EA018,No exogamy,EA018-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15252,Nd66,EA018,No exogamy,EA018-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15253,Nd67,EA018,No exogamy,EA018-1,,gifford1936,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15254,Nd7,EA018,No exogamy,EA018-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15255,Nd8,EA018,No exogamy,EA018-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15256,Nd9,EA018,No exogamy,EA018-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15257,Ne1,EA018,No exogamy,EA018-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15258,Ne10,EA018,No exogamy,EA018-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15259,Ne11,EA018,No exogamy,EA018-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15260,Ne12,EA018,No exogamy,EA018-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15261,Ne13,EA018,No exogamy,EA018-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15262,Ne14,EA018,Sibs,EA018-4,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +15263,Ne15,EA018,No exogamy,EA018-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15264,Ne16,EA018,No exogamy,EA018-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15265,Ne17,EA018,No exogamy,EA018-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15266,Ne18,EA018,No exogamy,EA018-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15267,Ne19,EA018,No exogamy,EA018-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15268,Ne2,EA018,No exogamy,EA018-1,,mcallister1937,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15269,Ne20,EA018,No exogamy,EA018-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15270,Ne21,EA018,No exogamy,EA018-1,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15271,Ne3,EA018,No exogamy,EA018-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15272,Ne4,EA018,No exogamy,EA018-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15273,Ne5,EA018,No exogamy,EA018-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15274,Ne6,EA018,No exogamy,EA018-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15275,Ne7,EA018,No exogamy,EA018-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15276,Ne8,EA018,No exogamy,EA018-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15277,Ne9,EA018,No exogamy,EA018-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15278,Nf10,EA018,Sibs,EA018-4,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +15279,Nf11,EA018,Sibs,EA018-4,,whitman1937,,1870,EthnographicAtlas_1967_p114, +15280,Nf12,EA018,Sibs,EA018-4,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +15281,Nf13,EA018,Sibs,EA018-4,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15282,Nf14,EA018,No exogamy,EA018-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15283,Nf15,EA018,Phratries,EA018-5,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +15284,Nf2,EA018,Moieties,EA018-6,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +15285,Nf3,EA018,Sibs,EA018-4,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +15286,Nf4,EA018,Sibs,EA018-4,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +15287,Nf5,EA018,No exogamy,EA018-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15288,Nf6,EA018,No exogamy,EA018-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15289,Nf7,EA018,Sibs,EA018-4,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15290,Nf8,EA018,No exogamy,EA018-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15291,Nf9,EA018,Moieties,EA018-6,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +15292,Ng1,EA018,No exogamy,EA018-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15293,Ng10,EA018,No exogamy,EA018-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15294,Ng11,EA018,No exogamy,EA018-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15295,Ng12,EA018,No exogamy,EA018-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15296,Ng13,EA018,No exogamy,EA018-1,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15297,Ng14,EA018,No exogamy,EA018-1,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15298,Ng15,EA018,No exogamy,EA018-1,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15299,Ng2,EA018,No exogamy,EA018-1,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15300,Ng3,EA018,No exogamy,EA018-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15301,Ng4,EA018,No exogamy,EA018-1,Agamous patrilineages are possible,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15302,Ng5,EA018,No exogamy,EA018-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15303,Ng6,EA018,No exogamy,EA018-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15304,Ng7,EA018,No exogamy,EA018-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15305,Ng8,EA018,No exogamy,EA018-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15306,Ng9,EA018,No exogamy,EA018-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15307,Nh1,EA018,No exogamy,EA018-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15308,Nh10,EA018,No exogamy,EA018-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15309,Nh11,EA018,No exogamy,EA018-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15310,Nh12,EA018,No exogamy,EA018-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15311,Nh13,EA018,No exogamy,EA018-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15312,Nh14,EA018,No exogamy,EA018-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15313,Nh15,EA018,No exogamy,EA018-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15314,Nh16,EA018,No exogamy,EA018-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15315,Nh17,EA018,No exogamy,EA018-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15316,Nh18,EA018,No exogamy,EA018-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15317,Nh19,EA018,Sibs,EA018-4,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +15318,Nh2,EA018,No exogamy,EA018-1,,dozier1954,,1950,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15319,Nh20,EA018,Sibs,EA018-4,,gifford1931,,1860,EthnographicAtlas_1967_p114, +15320,Nh21,EA018,Sibs,EA018-4,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15321,Nh22,EA018,Sibs,EA018-4,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +15322,Nh23,EA018,No exogamy,EA018-1,,gifford1932a,,1870,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15323,Nh24,EA018,No exogamy,EA018-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15324,Nh25,EA018,No exogamy,EA018-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15325,Nh26,EA018,No exogamy,EA018-1,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15326,Nh27,EA018,No exogamy,EA018-1,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15327,Nh3,EA018,No exogamy,EA018-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15328,Nh4,EA018,No exogamy,EA018-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15329,Nh5,EA018,Sibs,EA018-4,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +15330,Nh6,EA018,No exogamy,EA018-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15331,Nh7,EA018,No exogamy,EA018-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15332,Nh8,EA018,No exogamy,EA018-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15333,Nh9,EA018,No exogamy,EA018-1,But there were agamous ceremonial patrimoieties,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15334,Ni1,EA018,No exogamy,EA018-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15335,Ni2,EA018,No exogamy,EA018-1,But there are five agamous and nearly functionless patronymic name groups,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15336,Ni3,EA018,No exogamy,EA018-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15337,Ni4,EA018,No exogamy,EA018-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15338,Ni5,EA018,No exogamy,EA018-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15339,Ni6,EA018,No exogamy,EA018-1,But there were five agamous patronymic name groups and agamous patrimoieties,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15340,Ni7,EA018,No exogamy,EA018-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15341,Ni8,EA018,No exogamy,EA018-1,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15342,Ni9,EA018,No exogamy,EA018-1,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15343,Nj1,EA018,No exogamy,EA018-1,"In Ojitlan, persons bearing the same patronym and living in the same community may not marry",merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15344,Nj10,EA018,No exogamy,EA018-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15345,Nj11,EA018,No exogamy,EA018-1,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15346,Nj12,EA018,No exogamy,EA018-1,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15347,Nj13,EA018,No exogamy,EA018-1,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15348,Nj14,EA018,Lineages,EA018-3,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +15349,Nj2,EA018,No exogamy,EA018-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15350,Nj3,EA018,No exogamy,EA018-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15351,Nj4,EA018,No exogamy,EA018-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15352,Nj5,EA018,No exogamy,EA018-1,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15353,Nj6,EA018,No exogamy,EA018-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15354,Nj7,EA018,No exogamy,EA018-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15355,Nj8,EA018,No exogamy,EA018-1,,foster1948,,1500,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15356,Nj9,EA018,Sibs,EA018-4,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +15357,Sa1,EA018,No exogamy,EA018-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15358,Sa10,EA018,Lineages,EA018-3,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +15359,Sa11,EA018,Sibs,EA018-4,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +15360,Sa12,EA018,No exogamy,EA018-1,,stone1948,,1948,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15361,Sa13,EA018,Lineages,EA018-3,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +15362,Sa14,EA018,No exogamy,EA018-1,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15363,Sa15,EA018,Lineages,EA018-3,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +15364,Sa16,EA018,No exogamy,EA018-1,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15365,Sa17,EA018,Lineages,EA018-3,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +15366,Sa2,EA018,Sibs,EA018-4,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15367,Sa3,EA018,No exogamy,EA018-1,,wisdom1940,,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15368,Sa4,EA018,No exogamy,EA018-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15369,Sa5,EA018,No exogamy,EA018-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15370,Sa6,EA018,Lineages,EA018-3,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +15371,Sa7,EA018,No exogamy,EA018-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15372,Sa8,EA018,Lineages,EA018-3,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +15373,Sa9,EA018,No exogamy,EA018-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15374,Sb1,EA018,No exogamy,EA018-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15375,Sb2,EA018,No exogamy,EA018-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15376,Sb3,EA018,No exogamy,EA018-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15377,Sb4,EA018,No exogamy,EA018-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15378,Sb5,EA018,No exogamy,EA018-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15379,Sb6,EA018,No exogamy,EA018-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15380,Sb7,EA018,No exogamy,EA018-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15381,Sb8,EA018,No exogamy,EA018-1,,rouse1948a,,1520,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15382,Sb9,EA018,No exogamy,EA018-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15383,Sc1,EA018,No exogamy,EA018-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15384,Sc10,EA018,No exogamy,EA018-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15385,Sc11,EA018,No exogamy,EA018-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15386,Sc12,EA018,No exogamy,EA018-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15387,Sc13,EA018,No exogamy,EA018-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15388,Sc14,EA018,No exogamy,EA018-1,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15389,Sc15,EA018,No exogamy,EA018-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15390,Sc16,EA018,No exogamy,EA018-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15391,Sc17,EA018,No exogamy,EA018-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15392,Sc18,EA018,No exogamy,EA018-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15393,Sc2,EA018,No exogamy,EA018-1,,leedsnd,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15394,Sc3,EA018,No exogamy,EA018-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15395,Sc4,EA018,No exogamy,EA018-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15396,Sc5,EA018,No exogamy,EA018-1,,farabee1918,,1900,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15397,Sc6,EA018,No exogamy,EA018-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15398,Sc7,EA018,No exogamy,EA018-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15399,Sc8,EA018,No exogamy,EA018-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15400,Sc9,EA018,No exogamy,EA018-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15401,Sd1,EA018,Moieties,EA018-6,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15402,Sd2,EA018,No exogamy,EA018-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15403,Sd3,EA018,Sibs,EA018-4,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +15404,Sd4,EA018,No exogamy,EA018-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15405,Sd5,EA018,Sibs,EA018-4,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +15406,Sd6,EA018,No exogamy,EA018-1,,migliazza1964,,1960,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15407,Sd7,EA018,No exogamy,EA018-1,,fock1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15408,Sd8,EA018,No exogamy,EA018-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15409,Sd9,EA018,No exogamy,EA018-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15410,Se1,EA018,No exogamy,EA018-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15411,Se10,EA018,Lineages,EA018-3,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +15412,Se11,EA018,No exogamy,EA018-1,,prost1965,,1960,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15413,Se12,EA018,Sibs,EA018-4,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +15414,Se2,EA018,Moieties,EA018-6,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +15415,Se3,EA018,No exogamy,EA018-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15416,Se4,EA018,Lineages,EA018-3,,fejos1943,,1940,EthnographicAtlas_1967_p118, +15417,Se5,EA018,Phratries,EA018-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +15418,Se6,EA018,Lineages,EA018-3,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +15419,Se7,EA018,No exogamy,EA018-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15420,Se8,EA018,No exogamy,EA018-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15421,Se9,EA018,No exogamy,EA018-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15422,Sf1,EA018,No exogamy,EA018-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15423,Sf2,EA018,Lineages,EA018-3,Patrilineages are presumably a pot-contact development,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +15424,Sf3,EA018,No exogamy,EA018-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15425,Sf4,EA018,No exogamy,EA018-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15426,Sf5,EA018,No exogamy,EA018-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15427,Sf6,EA018,No exogamy,EA018-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15428,Sf7,EA018,No exogamy,EA018-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15429,Sf8,EA018,No exogamy,EA018-1,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15430,Sf9,EA018,No exogamy,EA018-1,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15431,Sg1,EA018,No exogamy,EA018-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15432,Sg2,EA018,Lineages,EA018-3,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15433,Sg3,EA018,No exogamy,EA018-1,"But some scholars have inferred patrilineal descent. Entry would be 'lineages' (code ""3"") if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock (1965c))",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15434,Sg4,EA018,No exogamy,EA018-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15435,Sg5,EA018,No exogamy,EA018-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15436,Sh1,EA018,No exogamy,EA018-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15437,Sh2,EA018,No exogamy,EA018-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15438,Sh3,EA018,No exogamy,EA018-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15439,Sh4,EA018,No exogamy,EA018-1,,oberg1949,,1940,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15440,Sh5,EA018,No exogamy,EA018-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15441,Sh6,EA018,No exogamy,EA018-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15442,Sh7,EA018,No exogamy,EA018-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15443,Sh8,EA018,No exogamy,EA018-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15444,Sh9,EA018,No exogamy,EA018-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15445,Si1,EA018,No exogamy,EA018-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15446,Si10,EA018,No exogamy,EA018-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15447,Si2,EA018,No exogamy,EA018-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15448,Si3,EA018,No exogamy,EA018-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15449,Si4,EA018,No exogamy,EA018-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15450,Si5,EA018,No exogamy,EA018-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15451,Si6,EA018,No exogamy,EA018-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15452,Si7,EA018,No exogamy,EA018-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15453,Si8,EA018,No exogamy,EA018-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15454,Si9,EA018,No exogamy,EA018-1,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15455,Sj1,EA018,No exogamy,EA018-1,But there are three agamous patrilineal groups which function only in the ceremonial and political life of men,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15456,Sj10,EA018,No exogamy,EA018-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15457,Sj11,EA018,Sibs,EA018-4,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +15458,Sj2,EA018,Moieties,EA018-6,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +15459,Sj3,EA018,No exogamy,EA018-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15460,Sj4,EA018,No exogamy,EA018-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15461,Sj5,EA018,No exogamy,EA018-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15462,Sj6,EA018,No exogamy,EA018-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15463,Sj7,EA018,?,EA018-NA,"Parallel descent, i.e., patrilineal for males and matrilineal for females",mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +15464,Sj8,EA018,No exogamy,EA018-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15465,Sj9,EA018,No exogamy,EA018-1,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +15466,ch12,EA018,Lineages,EA018-3,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +15467,ch13,EA018,No exogamy,EA018-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +15468,ch14,EA018,No exogamy,EA018-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +15469,ch15,EA018,Lineages,EA018-3,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +15470,ch16,EA018,No exogamy,EA018-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +15471,ch17,EA018,No exogamy,EA018-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +15472,ch18,EA018,No exogamy,EA018-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +15473,ch19,EA018,No exogamy,EA018-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +15474,ch20,EA018,No exogamy,EA018-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +15475,ch21,EA018,No exogamy,EA018-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +15476,ch22,EA018,No exogamy,EA018-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +15477,ch23,EA018,No exogamy,EA018-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +15478,ch24,EA018,No exogamy,EA018-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +15479,ch25,EA018,No exogamy,EA018-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +15480,ch26,EA018,Lineages,EA018-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +15481,ch27,EA018,No exogamy,EA018-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +15482,ch28,EA018,No exogamy,EA018-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +15483,ec12,EA018,No exogamy,EA018-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +15484,ec13,EA018,No exogamy,EA018-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +15485,ec14,EA018,No exogamy,EA018-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +15486,ec15,EA018,Moieties,EA018-6,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +15487,ec16,EA018,Sibs,EA018-4,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +15488,ec17,EA018,Sibs,EA018-4,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +15489,ec18,EA018,Sibs,EA018-4,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +15490,ec19,EA018,Sibs,EA018-4,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +15491,ec20,EA018,Sibs,EA018-4,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +15492,ec21,EA018,Sibs,EA018-4,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +15493,Aa1,EA019,None,EA019-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +15494,Aa2,EA019,None,EA019-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +15495,Aa3,EA019,None,EA019-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +15496,Aa4,EA019,None,EA019-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +15497,Aa5,EA019,None,EA019-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +15498,Aa6,EA019,None,EA019-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +15499,Aa7,EA019,None,EA019-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +15500,Aa8,EA019,None,EA019-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +15501,Aa9,EA019,None,EA019-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +15502,Ab1,EA019,Sibs,EA019-4,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +15503,Ab10,EA019,None,EA019-1,,hunter1936,,1936,EthnographicAtlas_1967_p62, +15504,Ab11,EA019,None,EA019-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +15505,Ab12,EA019,None,EA019-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +15506,Ab13,EA019,None,EA019-1,Quasi-lineages inferred from the patrilocal but basically territorial ward organization and from vestigial patrisibs,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +15507,Ab14,EA019,None,EA019-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +15508,Ab15,EA019,None,EA019-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +15509,Ab16,EA019,None,EA019-1,,earthy1933,,1930,EthnographicAtlas_1967_p62, +15510,Ab17,EA019,Exogamy only,EA019-2,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +15511,Ab18,EA019,None,EA019-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +15512,Ab19,EA019,Sibs,EA019-4,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +15513,Ab2,EA019,None,EA019-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +15514,Ab20,EA019,Sibs,EA019-4,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +15515,Ab21a,EA019,None,EA019-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +15516,Ab21b,EA019,None,EA019-1,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +15517,Ab22,EA019,None,EA019-1,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +15518,Ab3,EA019,None,EA019-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +15519,Ab4,EA019,None,EA019-1,,junod1927,,1920,EthnographicAtlas_1967_p62, +15520,Ab5,EA019,Lineages,EA019-3,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +15521,Ab6,EA019,Lineages,EA019-3,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +15522,Ab7,EA019,Sibs,EA019-4,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +15523,Ab8,EA019,None,EA019-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +15524,Ab9,EA019,None,EA019-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +15525,Ac1,EA019,Sibs,EA019-4,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +15526,Ac10,EA019,Sibs,EA019-4,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +15527,Ac11,EA019,Sibs,EA019-4,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +15528,Ac12,EA019,Sibs,EA019-4,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +15529,Ac13,EA019,Sibs,EA019-4,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +15530,Ac14,EA019,Sibs,EA019-4,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +15531,Ac15,EA019,Lineages,EA019-3,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +15532,Ac16,EA019,Sibs,EA019-4,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +15533,Ac17,EA019,Sibs,EA019-4,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +15534,Ac18,EA019,Sibs,EA019-4,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +15535,Ac19,EA019,Lineages,EA019-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +15536,Ac2,EA019,Sibs,EA019-4,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +15537,Ac20,EA019,Lineages,EA019-3,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +15538,Ac21,EA019,Sibs,EA019-4,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +15539,Ac22,EA019,Sibs,EA019-4,,mertens1935,,1930,EthnographicAtlas_1967_p62, +15540,Ac23,EA019,Sibs,EA019-4,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +15541,Ac24,EA019,Sibs,EA019-4,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +15542,Ac25,EA019,Lineages,EA019-3,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +15543,Ac26,EA019,Sibs,EA019-4,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +15544,Ac27,EA019,Sibs,EA019-4,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +15545,Ac28,EA019,Sibs,EA019-4,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +15546,Ac29,EA019,Sibs,EA019-4,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +15547,Ac3,EA019,Sibs,EA019-4,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +15548,Ac30,EA019,Sibs,EA019-4,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +15549,Ac31,EA019,Sibs,EA019-4,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +15550,Ac32,EA019,Sibs,EA019-4,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +15551,Ac33,EA019,Sibs,EA019-4,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +15552,Ac34,EA019,Sibs,EA019-4,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +15553,Ac35,EA019,Sibs,EA019-4,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +15554,Ac36,EA019,None,EA019-1,"Formerly sibs (code ""4"")",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +15555,Ac37,EA019,Sibs,EA019-4,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +15556,Ac38,EA019,Sibs,EA019-4,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +15557,Ac39,EA019,Sibs,EA019-4,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +15558,Ac4,EA019,Sibs,EA019-4,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +15559,Ac40,EA019,Sibs,EA019-4,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +15560,Ac41,EA019,Sibs,EA019-4,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +15561,Ac42,EA019,Sibs,EA019-4,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +15562,Ac43,EA019,None,EA019-1,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +15563,Ac5,EA019,Sibs,EA019-4,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +15564,Ac6,EA019,Sibs,EA019-4,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +15565,Ac7,EA019,Sibs,EA019-4,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +15566,Ac8,EA019,Sibs,EA019-4,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +15567,Ac9,EA019,None,EA019-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +15568,Ad1,EA019,None,EA019-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +15569,Ad10,EA019,None,EA019-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +15570,Ad11,EA019,None,EA019-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +15571,Ad12,EA019,None,EA019-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +15572,Ad13,EA019,None,EA019-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +15573,Ad14,EA019,Sibs,EA019-4,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +15574,Ad15,EA019,None,EA019-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +15575,Ad16,EA019,None,EA019-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +15576,Ad17,EA019,None,EA019-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +15577,Ad18,EA019,None,EA019-1,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +15578,Ad19,EA019,None,EA019-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +15579,Ad2,EA019,None,EA019-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +15580,Ad20,EA019,None,EA019-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +15581,Ad21,EA019,None,EA019-1,"""A man belongs to the kin group (uluko) of his father's father or his son's son, but not to that of his father or of his son (who both belong to another uluko). There is perpetual alternation of two uluko-names in each patrilineage.""",maurice193538,,1930,EthnographicAtlas_1967_p66, +15582,Ad22,EA019,None,EA019-1,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +15583,Ad23,EA019,None,EA019-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +15584,Ad24,EA019,None,EA019-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +15585,Ad25,EA019,Sibs,EA019-4,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +15586,Ad26,EA019,None,EA019-1,,sick1916,,1910,EthnographicAtlas_1967_p66, +15587,Ad27,EA019,Sibs,EA019-4,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +15588,Ad28,EA019,Sibs,EA019-4,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +15589,Ad29,EA019,None,EA019-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +15590,Ad3,EA019,None,EA019-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +15591,Ad30,EA019,Lineages,EA019-3,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +15592,Ad31,EA019,Lineages,EA019-3,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +15593,Ad32,EA019,None,EA019-1,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +15594,Ad33,EA019,None,EA019-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +15595,Ad34,EA019,None,EA019-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +15596,Ad35,EA019,None,EA019-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +15597,Ad36,EA019,None,EA019-1,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +15598,Ad37,EA019,None,EA019-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +15599,Ad38,EA019,None,EA019-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +15600,Ad39,EA019,None,EA019-1,,gray1963,,1950,EthnographicAtlas_1967_p66, +15601,Ad4,EA019,None,EA019-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +15602,Ad40,EA019,None,EA019-1,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +15603,Ad41,EA019,None,EA019-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +15604,Ad42,EA019,None,EA019-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +15605,Ad43,EA019,None,EA019-1,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +15606,Ad44,EA019,None,EA019-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +15607,Ad45,EA019,None,EA019-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +15608,Ad46,EA019,None,EA019-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +15609,Ad47,EA019,None,EA019-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +15610,Ad48,EA019,None,EA019-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +15611,Ad49,EA019,None,EA019-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +15612,Ad5,EA019,Sibs,EA019-4,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +15613,Ad50,EA019,Sibs,EA019-4,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +15614,Ad51,EA019,Sibs,EA019-4,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +15615,Ad6,EA019,None,EA019-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +15616,Ad7,EA019,None,EA019-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +15617,Ad8,EA019,None,EA019-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +15618,Ad9,EA019,None,EA019-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +15619,Ae1,EA019,None,EA019-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +15620,Ae10,EA019,None,EA019-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +15621,Ae11,EA019,None,EA019-1,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +15622,Ae12,EA019,None,EA019-1,Matrilineal descent was formerly recognized,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +15623,Ae13,EA019,None,EA019-1,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +15624,Ae14,EA019,None,EA019-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +15625,Ae15,EA019,None,EA019-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +15626,Ae16,EA019,None,EA019-1,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +15627,Ae17,EA019,None,EA019-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +15628,Ae18,EA019,None,EA019-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +15629,Ae19,EA019,None,EA019-1,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +15630,Ae2,EA019,Lineages,EA019-3,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +15631,Ae20,EA019,None,EA019-1,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +15632,Ae21,EA019,None,EA019-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +15633,Ae22,EA019,None,EA019-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +15634,Ae23,EA019,None,EA019-1,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +15635,Ae24,EA019,None,EA019-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +15636,Ae25,EA019,None,EA019-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +15637,Ae26,EA019,None,EA019-1,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +15638,Ae27,EA019,None,EA019-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +15639,Ae28,EA019,None,EA019-1,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +15640,Ae29,EA019,None,EA019-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +15641,Ae3,EA019,None,EA019-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +15642,Ae30,EA019,None,EA019-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +15643,Ae31,EA019,None,EA019-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +15644,Ae32,EA019,None,EA019-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +15645,Ae33,EA019,None,EA019-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +15646,Ae34,EA019,None,EA019-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +15647,Ae35,EA019,None,EA019-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +15648,Ae36,EA019,None,EA019-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +15649,Ae37,EA019,None,EA019-1,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +15650,Ae38,EA019,Sibs,EA019-4,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +15651,Ae39,EA019,None,EA019-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +15652,Ae4,EA019,Exogamy only,EA019-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +15653,Ae40,EA019,Lineages,EA019-3,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +15654,Ae41,EA019,None,EA019-1,,andersson1953,,1940,EthnographicAtlas_1967_p66, +15655,Ae42,EA019,None,EA019-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +15656,Ae43,EA019,None,EA019-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +15657,Ae44,EA019,?,EA019-NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +15658,Ae45,EA019,None,EA019-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +15659,Ae46,EA019,Sibs,EA019-4,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +15660,Ae47,EA019,None,EA019-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +15661,Ae48,EA019,None,EA019-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +15662,Ae49,EA019,None,EA019-1,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +15663,Ae5,EA019,None,EA019-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +15664,Ae50,EA019,None,EA019-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +15665,Ae51,EA019,None,EA019-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +15666,Ae52,EA019,None,EA019-1,"But descent is matrilineal in the extreme south, adjacent to the Kom",kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +15667,Ae53,EA019,None,EA019-1,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +15668,Ae54,EA019,Sibs,EA019-4,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +15669,Ae55,EA019,None,EA019-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +15670,Ae56,EA019,None,EA019-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +15671,Ae57,EA019,None,EA019-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +15672,Ae58,EA019,None,EA019-1,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +15673,Ae59,EA019,None,EA019-1,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +15674,Ae6,EA019,None,EA019-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +15675,Ae7,EA019,None,EA019-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +15676,Ae8,EA019,None,EA019-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +15677,Ae9,EA019,None,EA019-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +15678,Af1,EA019,None,EA019-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +15679,Af10,EA019,None,EA019-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +15680,Af11,EA019,None,EA019-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +15681,Af12,EA019,Sibs,EA019-4,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +15682,Af13,EA019,None,EA019-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +15683,Af14,EA019,Lineages,EA019-3,"From a recent report, matrilineages have apparently become converted into ambilineal ramages",hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +15684,Af15,EA019,None,EA019-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +15685,Af16,EA019,None,EA019-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +15686,Af17,EA019,?,EA019-NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +15687,Af18,EA019,None,EA019-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +15688,Af19,EA019,None,EA019-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +15689,Af2,EA019,None,EA019-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +15690,Af20,EA019,None,EA019-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +15691,Af21,EA019,None,EA019-1,"The so-called ""houses"" are presumably ramages rather than patrilineages in view of the reported avunculocal residence and matrilineal affiliation in cases where only a token bride-price is paid",granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +15692,Af22,EA019,None,EA019-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +15693,Af23,EA019,Sibs,EA019-4,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +15694,Af24,EA019,None,EA019-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +15695,Af25,EA019,None,EA019-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +15696,Af26,EA019,None,EA019-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +15697,Af27,EA019,None,EA019-1,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +15698,Af28,EA019,None,EA019-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +15699,Af29,EA019,None,EA019-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +15700,Af3,EA019,Sibs,EA019-4,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +15701,Af30,EA019,None,EA019-1,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +15702,Af31,EA019,None,EA019-1,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +15703,Af32,EA019,None,EA019-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15704,Af33,EA019,None,EA019-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15705,Af34,EA019,None,EA019-1,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15706,Af35,EA019,Exogamy only,EA019-2,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +15707,Af36,EA019,None,EA019-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +15708,Af37,EA019,None,EA019-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +15709,Af38,EA019,Lineages,EA019-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +15710,Af39,EA019,Sibs,EA019-4,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +15711,Af4,EA019,Lineages,EA019-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +15712,Af40,EA019,Lineages,EA019-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +15713,Af41,EA019,?,EA019-NA,"There are lineages, formerly matrilineal but more recently patrilineal",crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +15714,Af42,EA019,Sibs,EA019-4,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +15715,Af43,EA019,None,EA019-1,"But Daniell reports exogamy (code ""2"")",daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +15716,Af44,EA019,Lineages,EA019-3,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +15717,Af45,EA019,Lineages,EA019-3,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +15718,Af46,EA019,None,EA019-1,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +15719,Af47,EA019,None,EA019-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +15720,Af48,EA019,None,EA019-1,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +15721,Af49,EA019,None,EA019-1,,schwab1947,,1940,EthnographicAtlas_1967_p70, +15722,Af5,EA019,None,EA019-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +15723,Af50,EA019,None,EA019-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +15724,Af51,EA019,None,EA019-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +15725,Af52,EA019,None,EA019-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +15726,Af53,EA019,None,EA019-1,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +15727,Af54,EA019,None,EA019-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +15728,Af55,EA019,None,EA019-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +15729,Af56,EA019,None,EA019-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +15730,Af57,EA019,None,EA019-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +15731,Af58,EA019,None,EA019-1,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +15732,Af6,EA019,None,EA019-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +15733,Af7,EA019,None,EA019-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +15734,Af8,EA019,None,EA019-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +15735,Af9,EA019,Sibs,EA019-4,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +15736,Ag1,EA019,None,EA019-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +15737,Ag10,EA019,None,EA019-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +15738,Ag11,EA019,Sibs,EA019-4,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +15739,Ag12,EA019,Exogamy only,EA019-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +15740,Ag13,EA019,None,EA019-1,But witchcraft powers are matrilineally transmitted,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +15741,Ag14,EA019,None,EA019-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +15742,Ag15,EA019,None,EA019-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +15743,Ag16,EA019,None,EA019-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +15744,Ag17,EA019,None,EA019-1,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +15745,Ag18,EA019,Sibs,EA019-4,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +15746,Ag19,EA019,None,EA019-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +15747,Ag2,EA019,None,EA019-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +15748,Ag20,EA019,None,EA019-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +15749,Ag21,EA019,Sibs,EA019-4,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +15750,Ag22,EA019,Sibs,EA019-4,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +15751,Ag23,EA019,None,EA019-1,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +15752,Ag24,EA019,None,EA019-1,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +15753,Ag25,EA019,None,EA019-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +15754,Ag26,EA019,None,EA019-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +15755,Ag27,EA019,None,EA019-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +15756,Ag28,EA019,?,EA019-NA,,,,,, +15757,Ag29,EA019,None,EA019-1,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +15758,Ag3,EA019,None,EA019-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +15759,Ag30,EA019,None,EA019-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +15760,Ag31,EA019,None,EA019-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +15761,Ag32,EA019,None,EA019-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +15762,Ag33,EA019,?,EA019-NA,,,,,, +15763,Ag34,EA019,Sibs,EA019-4,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +15764,Ag35,EA019,Lineages,EA019-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +15765,Ag36,EA019,Sibs,EA019-4,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +15766,Ag37,EA019,None,EA019-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +15767,Ag38,EA019,Exogamy only,EA019-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +15768,Ag39,EA019,Exogamy only,EA019-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +15769,Ag4,EA019,Exogamy only,EA019-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +15770,Ag40,EA019,Exogamy only,EA019-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +15771,Ag41,EA019,Exogamy only,EA019-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +15772,Ag42,EA019,None,EA019-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +15773,Ag43,EA019,None,EA019-1,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +15774,Ag44,EA019,Exogamy only,EA019-2,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +15775,Ag45,EA019,None,EA019-1,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +15776,Ag46,EA019,Exogamy only,EA019-2,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +15777,Ag47,EA019,None,EA019-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +15778,Ag48,EA019,None,EA019-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +15779,Ag49,EA019,None,EA019-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +15780,Ag5,EA019,Moieties,EA019-6,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +15781,Ag50,EA019,None,EA019-1,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +15782,Ag51,EA019,None,EA019-1,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +15783,Ag52,EA019,None,EA019-1,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +15784,Ag53,EA019,None,EA019-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +15785,Ag54,EA019,None,EA019-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +15786,Ag6,EA019,None,EA019-1,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +15787,Ag7,EA019,None,EA019-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +15788,Ag8,EA019,Sibs,EA019-4,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +15789,Ag9,EA019,None,EA019-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +15790,Ah1,EA019,None,EA019-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15791,Ah10,EA019,None,EA019-1,"But Gunn reports matrilineal ""clans"" as well as patrilineages",gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +15792,Ah11,EA019,None,EA019-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +15793,Ah12,EA019,None,EA019-1,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +15794,Ah13,EA019,?,EA019-NA,,,,,, +15795,Ah14,EA019,None,EA019-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +15796,Ah15,EA019,None,EA019-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +15797,Ah16,EA019,None,EA019-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +15798,Ah17,EA019,None,EA019-1,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +15799,Ah18,EA019,None,EA019-1,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +15800,Ah19,EA019,None,EA019-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +15801,Ah2,EA019,None,EA019-1,,meek1931a,,1920,EthnographicAtlas_1967_p74, +15802,Ah20,EA019,None,EA019-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +15803,Ah21,EA019,None,EA019-1,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15804,Ah22,EA019,?,EA019-NA,"The reported ""clans"" are presumably patrilineal, though Ames mentions very strong survivals of matrilineal descent",ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +15805,Ah23,EA019,None,EA019-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15806,Ah24,EA019,None,EA019-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15807,Ah25,EA019,None,EA019-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15808,Ah26,EA019,Lineages,EA019-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15809,Ah27,EA019,None,EA019-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15810,Ah28,EA019,Lineages,EA019-3,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +15811,Ah29,EA019,Sibs,EA019-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15812,Ah3,EA019,None,EA019-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +15813,Ah30,EA019,Sibs,EA019-4,,meek1931b,,1920,EthnographicAtlas_1967_p74, +15814,Ah31,EA019,None,EA019-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +15815,Ah32,EA019,None,EA019-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15816,Ah33,EA019,None,EA019-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +15817,Ah34,EA019,None,EA019-1,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +15818,Ah35,EA019,None,EA019-1,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15819,Ah36,EA019,None,EA019-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +15820,Ah37,EA019,None,EA019-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15821,Ah38,EA019,None,EA019-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +15822,Ah39,EA019,None,EA019-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +15823,Ah4,EA019,None,EA019-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +15824,Ah5,EA019,None,EA019-1,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +15825,Ah6,EA019,Sibs,EA019-4,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +15826,Ah7,EA019,None,EA019-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +15827,Ah8,EA019,None,EA019-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +15828,Ah9,EA019,None,EA019-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +15829,Ai1,EA019,None,EA019-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +15830,Ai10,EA019,None,EA019-1,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +15831,Ai11,EA019,None,EA019-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +15832,Ai12,EA019,None,EA019-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +15833,Ai13,EA019,None,EA019-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +15834,Ai14,EA019,None,EA019-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +15835,Ai15,EA019,None,EA019-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +15836,Ai16,EA019,?,EA019-NA,,,,,, +15837,Ai17,EA019,None,EA019-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +15838,Ai18,EA019,?,EA019-NA,,,,,, +15839,Ai19,EA019,None,EA019-1,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +15840,Ai2,EA019,Lineages,EA019-3,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +15841,Ai20,EA019,None,EA019-1,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +15842,Ai21,EA019,None,EA019-1,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +15843,Ai22,EA019,None,EA019-1,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +15844,Ai23,EA019,None,EA019-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +15845,Ai24,EA019,None,EA019-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +15846,Ai25,EA019,None,EA019-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +15847,Ai26,EA019,None,EA019-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +15848,Ai27,EA019,None,EA019-1,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +15849,Ai28,EA019,None,EA019-1,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +15850,Ai29,EA019,None,EA019-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +15851,Ai3,EA019,None,EA019-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +15852,Ai30,EA019,None,EA019-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +15853,Ai31,EA019,None,EA019-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +15854,Ai32,EA019,None,EA019-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +15855,Ai33,EA019,None,EA019-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +15856,Ai34,EA019,None,EA019-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +15857,Ai35,EA019,None,EA019-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +15858,Ai36,EA019,None,EA019-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +15859,Ai37,EA019,None,EA019-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +15860,Ai38,EA019,Sibs,EA019-4,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +15861,Ai39,EA019,Sibs,EA019-4,,nadel1947,,1940,EthnographicAtlas_1967_p74, +15862,Ai4,EA019,None,EA019-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +15863,Ai40,EA019,None,EA019-1,,nadel1947,,1940,EthnographicAtlas_1967_p74, +15864,Ai41,EA019,None,EA019-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +15865,Ai42,EA019,Sibs,EA019-4,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +15866,Ai43,EA019,None,EA019-1,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +15867,Ai44,EA019,None,EA019-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +15868,Ai45,EA019,None,EA019-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +15869,Ai46,EA019,None,EA019-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +15870,Ai47,EA019,None,EA019-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +15871,Ai5,EA019,None,EA019-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +15872,Ai6,EA019,None,EA019-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +15873,Ai7,EA019,None,EA019-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +15874,Ai8,EA019,None,EA019-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +15875,Ai9,EA019,None,EA019-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +15876,Aj1,EA019,None,EA019-1,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +15877,Aj10,EA019,None,EA019-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +15878,Aj11,EA019,None,EA019-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +15879,Aj12,EA019,None,EA019-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +15880,Aj13,EA019,None,EA019-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +15881,Aj14,EA019,None,EA019-1,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +15882,Aj15,EA019,None,EA019-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +15883,Aj16,EA019,None,EA019-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +15884,Aj17,EA019,None,EA019-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +15885,Aj18,EA019,None,EA019-1,,jensen1959,,1950,EthnographicAtlas_1967_p78, +15886,Aj19,EA019,None,EA019-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +15887,Aj2,EA019,None,EA019-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +15888,Aj20,EA019,None,EA019-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +15889,Aj21,EA019,None,EA019-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +15890,Aj22,EA019,None,EA019-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +15891,Aj23,EA019,None,EA019-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +15892,Aj24,EA019,None,EA019-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +15893,Aj25,EA019,None,EA019-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +15894,Aj26,EA019,None,EA019-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +15895,Aj27,EA019,None,EA019-1,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +15896,Aj28,EA019,None,EA019-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +15897,Aj29,EA019,None,EA019-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +15898,Aj3,EA019,None,EA019-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +15899,Aj30,EA019,None,EA019-1,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +15900,Aj31,EA019,None,EA019-1,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +15901,Aj4,EA019,None,EA019-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +15902,Aj5,EA019,None,EA019-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +15903,Aj6,EA019,None,EA019-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +15904,Aj7,EA019,None,EA019-1,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +15905,Aj8,EA019,None,EA019-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +15906,Aj9,EA019,None,EA019-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +15907,Ca1,EA019,None,EA019-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +15908,Ca10,EA019,None,EA019-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +15909,Ca11,EA019,None,EA019-1,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +15910,Ca12,EA019,None,EA019-1,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +15911,Ca13,EA019,None,EA019-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +15912,Ca14,EA019,None,EA019-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +15913,Ca15,EA019,None,EA019-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +15914,Ca16,EA019,None,EA019-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +15915,Ca17,EA019,None,EA019-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +15916,Ca18,EA019,None,EA019-1,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +15917,Ca19,EA019,None,EA019-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +15918,Ca2,EA019,None,EA019-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +15919,Ca20,EA019,None,EA019-1,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +15920,Ca21,EA019,None,EA019-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +15921,Ca22,EA019,None,EA019-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +15922,Ca23,EA019,None,EA019-1,,jensen1959,,1950,EthnographicAtlas_1967_p78, +15923,Ca24,EA019,None,EA019-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +15924,Ca25,EA019,None,EA019-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +15925,Ca26,EA019,None,EA019-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +15926,Ca27,EA019,None,EA019-1,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +15927,Ca28,EA019,None,EA019-1,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +15928,Ca29,EA019,None,EA019-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +15929,Ca3,EA019,None,EA019-1,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +15930,Ca30,EA019,None,EA019-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +15931,Ca31,EA019,None,EA019-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +15932,Ca32,EA019,Sibs,EA019-4,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +15933,Ca33,EA019,Sibs,EA019-4,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +15934,Ca34,EA019,None,EA019-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +15935,Ca35,EA019,None,EA019-1,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +15936,Ca36,EA019,None,EA019-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +15937,Ca37,EA019,?,EA019-NA,,,,,, +15938,Ca38,EA019,None,EA019-1,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +15939,Ca39,EA019,None,EA019-1,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +15940,Ca4,EA019,Lineages,EA019-3,"Matrilineages are unnamed, unimportant, and not specifically reported to be exogamous",huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +15941,Ca40,EA019,None,EA019-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +15942,Ca41,EA019,None,EA019-1,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +15943,Ca42,EA019,None,EA019-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +15944,Ca43,EA019,None,EA019-1,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +15945,Ca5,EA019,None,EA019-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +15946,Ca6,EA019,None,EA019-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +15947,Ca7,EA019,None,EA019-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +15948,Ca8,EA019,None,EA019-1,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +15949,Ca9,EA019,None,EA019-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +15950,Cb1,EA019,None,EA019-1,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +15951,Cb10,EA019,None,EA019-1,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +15952,Cb11,EA019,Sibs,EA019-4,Inferred from matrilineal inheritance and succession,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +15953,Cb12,EA019,None,EA019-1,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +15954,Cb13,EA019,None,EA019-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +15955,Cb14,EA019,None,EA019-1,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +15956,Cb15,EA019,None,EA019-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +15957,Cb16,EA019,None,EA019-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +15958,Cb17,EA019,Lineages,EA019-3,"Inferred from prohibition of marriage with a maternal cousin, from the matrilocal rule of residence, and from the report of ""totemism""",barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +15959,Cb18,EA019,None,EA019-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +15960,Cb19,EA019,None,EA019-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +15961,Cb2,EA019,Lineages,EA019-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +15962,Cb20,EA019,None,EA019-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +15963,Cb21,EA019,None,EA019-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +15964,Cb22,EA019,None,EA019-1,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +15965,Cb23,EA019,None,EA019-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +15966,Cb24,EA019,None,EA019-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +15967,Cb25,EA019,None,EA019-1,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +15968,Cb26,EA019,None,EA019-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +15969,Cb27,EA019,None,EA019-1,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15970,Cb28,EA019,Lineages,EA019-3,Matrilineal exogamy extends only to second cousins,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15971,Cb29,EA019,None,EA019-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +15972,Cb3,EA019,None,EA019-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +15973,Cb4,EA019,None,EA019-1,,reid1930,,1920,EthnographicAtlas_1967_p78, +15974,Cb5,EA019,None,EA019-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +15975,Cb6,EA019,None,EA019-1,,woodnd,,1920,EthnographicAtlas_1967_p78, +15976,Cb7,EA019,None,EA019-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +15977,Cb8,EA019,None,EA019-1,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +15978,Cb9,EA019,None,EA019-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +15979,Cc1,EA019,None,EA019-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +15980,Cc10,EA019,Sibs,EA019-4,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +15981,Cc11,EA019,Lineages,EA019-3,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +15982,Cc12,EA019,?,EA019-NA,"Although descent is specifically reported as patrilineal, it may well be matrilineal as among other Tuareg",cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +15983,Cc13,EA019,Sibs,EA019-4,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +15984,Cc14,EA019,None,EA019-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +15985,Cc15,EA019,None,EA019-1,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +15986,Cc16,EA019,None,EA019-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +15987,Cc17,EA019,None,EA019-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +15988,Cc18,EA019,None,EA019-1,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +15989,Cc19,EA019,None,EA019-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +15990,Cc2,EA019,None,EA019-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +15991,Cc20,EA019,None,EA019-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +15992,Cc3,EA019,None,EA019-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +15993,Cc4,EA019,None,EA019-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +15994,Cc5,EA019,Lineages,EA019-3,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +15995,Cc6,EA019,None,EA019-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +15996,Cc7,EA019,None,EA019-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +15997,Cc8,EA019,None,EA019-1,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +15998,Cc9,EA019,Sibs,EA019-4,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +15999,Cd1,EA019,None,EA019-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +16000,Cd10,EA019,None,EA019-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +16001,Cd11,EA019,Lineages,EA019-3,All authorities accept matrilineal descent on the basis of reported matrilineal inheritance and succession,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +16002,Cd12,EA019,None,EA019-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +16003,Cd13,EA019,None,EA019-1,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +16004,Cd14,EA019,None,EA019-1,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +16005,Cd15,EA019,None,EA019-1,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +16006,Cd16,EA019,None,EA019-1,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +16007,Cd17,EA019,None,EA019-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +16008,Cd18,EA019,None,EA019-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +16009,Cd19,EA019,None,EA019-1,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +16010,Cd2,EA019,None,EA019-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +16011,Cd20,EA019,None,EA019-1,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +16012,Cd21,EA019,None,EA019-1,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +16013,Cd3,EA019,None,EA019-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +16014,Cd4,EA019,None,EA019-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +16015,Cd5,EA019,None,EA019-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +16016,Cd6,EA019,None,EA019-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +16017,Cd7,EA019,None,EA019-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +16018,Cd8,EA019,None,EA019-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +16019,Cd9,EA019,None,EA019-1,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +16020,Ce1,EA019,None,EA019-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +16021,Ce2,EA019,None,EA019-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +16022,Ce3,EA019,None,EA019-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +16023,Ce4,EA019,None,EA019-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16024,Ce5,EA019,None,EA019-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +16025,Ce6,EA019,None,EA019-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +16026,Ce7,EA019,None,EA019-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +16027,Ce8,EA019,None,EA019-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +16028,Cf1,EA019,None,EA019-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +16029,Cf2,EA019,None,EA019-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +16030,Cf3,EA019,None,EA019-1,,munch1945,,1930,EthnographicAtlas_1967_p82, +16031,Cf4,EA019,None,EA019-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +16032,Cf5,EA019,None,EA019-1,,miner1939,,1930,EthnographicAtlas_1967_p82, +16033,Cg1,EA019,None,EA019-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +16034,Cg2,EA019,None,EA019-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +16035,Cg3,EA019,None,EA019-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +16036,Cg4,EA019,None,EA019-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +16037,Cg5,EA019,None,EA019-1,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +16038,Ch1,EA019,None,EA019-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +16039,Ch10,EA019,None,EA019-1,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +16040,Ch11,EA019,None,EA019-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +16041,Ch2,EA019,None,EA019-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +16042,Ch3,EA019,None,EA019-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +16043,Ch4,EA019,None,EA019-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +16044,Ch5,EA019,None,EA019-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +16045,Ch6,EA019,None,EA019-1,,ember1954,,1910,EthnographicAtlas_1967_p82, +16046,Ch7,EA019,None,EA019-1,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +16047,Ch8,EA019,None,EA019-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +16048,Ch9,EA019,None,EA019-1,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +16049,Ci1,EA019,None,EA019-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +16050,Ci10,EA019,None,EA019-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +16051,Ci11,EA019,None,EA019-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +16052,Ci12,EA019,None,EA019-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +16053,Ci2,EA019,None,EA019-1,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +16054,Ci3,EA019,None,EA019-1,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +16055,Ci4,EA019,None,EA019-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +16056,Ci5,EA019,None,EA019-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +16057,Ci6,EA019,None,EA019-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +16058,Ci7,EA019,None,EA019-1,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +16059,Ci8,EA019,None,EA019-1,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +16060,Ci9,EA019,None,EA019-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +16061,Cj1,EA019,None,EA019-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +16062,Cj10,EA019,None,EA019-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +16063,Cj2,EA019,None,EA019-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +16064,Cj3,EA019,None,EA019-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +16065,Cj4,EA019,None,EA019-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +16066,Cj5,EA019,None,EA019-1,,dickson1949,,1930,EthnographicAtlas_1967_p86, +16067,Cj6,EA019,None,EA019-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +16068,Cj7,EA019,None,EA019-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +16069,Cj8,EA019,None,EA019-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +16070,Cj9,EA019,None,EA019-1,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +16071,Ea1,EA019,None,EA019-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +16072,Ea10,EA019,None,EA019-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +16073,Ea11,EA019,None,EA019-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +16074,Ea12,EA019,None,EA019-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +16075,Ea13,EA019,None,EA019-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +16076,Ea2,EA019,None,EA019-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +16077,Ea3,EA019,None,EA019-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +16078,Ea4,EA019,None,EA019-1,,barth1956b,,1950,EthnographicAtlas_1967_p86, +16079,Ea5,EA019,None,EA019-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +16080,Ea6,EA019,None,EA019-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +16081,Ea7,EA019,None,EA019-1,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +16082,Ea8,EA019,None,EA019-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +16083,Ea9,EA019,None,EA019-1,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +16084,Eb1,EA019,None,EA019-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +16085,Eb2,EA019,None,EA019-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +16086,Eb3,EA019,None,EA019-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +16087,Eb4,EA019,None,EA019-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +16088,Eb5,EA019,None,EA019-1,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +16089,Eb6,EA019,None,EA019-1,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +16090,Eb7,EA019,None,EA019-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +16091,Eb8,EA019,None,EA019-1,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +16092,Ec1,EA019,None,EA019-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +16093,Ec10,EA019,None,EA019-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +16094,Ec11,EA019,None,EA019-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +16095,Ec2,EA019,None,EA019-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16096,Ec3,EA019,None,EA019-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +16097,Ec4,EA019,None,EA019-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +16098,Ec5,EA019,None,EA019-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +16099,Ec6,EA019,None,EA019-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +16100,Ec7,EA019,Lineages,EA019-3,But there are patrilineal kin groups consisting of males only,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +16101,Ec8,EA019,None,EA019-1,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +16102,Ec9,EA019,None,EA019-1,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +16103,Ed1,EA019,None,EA019-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +16104,Ed10,EA019,None,EA019-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +16105,Ed13,EA019,None,EA019-1,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +16106,Ed14,EA019,None,EA019-1,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +16107,Ed15a,EA019,None,EA019-1,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +16108,Ed15b,EA019,None,EA019-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +16109,Ed16,EA019,None,EA019-1,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +16110,Ed2,EA019,None,EA019-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +16111,Ed3,EA019,None,EA019-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +16112,Ed4,EA019,None,EA019-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +16113,Ed5,EA019,None,EA019-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16114,Ed6,EA019,None,EA019-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +16115,Ed7,EA019,None,EA019-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +16116,Ed8,EA019,None,EA019-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +16117,Ed9,EA019,None,EA019-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +16118,Ee1,EA019,None,EA019-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +16119,Ee2,EA019,None,EA019-1,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +16120,Ee3,EA019,None,EA019-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +16121,Ee4,EA019,None,EA019-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +16122,Ee5,EA019,None,EA019-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +16123,Ee6,EA019,None,EA019-1,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +16124,Ee7,EA019,None,EA019-1,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +16125,Ee8,EA019,None,EA019-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +16126,Ef1,EA019,None,EA019-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +16127,Ef10,EA019,None,EA019-1,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16128,Ef11,EA019,None,EA019-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +16129,Ef2,EA019,None,EA019-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +16130,Ef3,EA019,None,EA019-1,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +16131,Ef4,EA019,None,EA019-1,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +16132,Ef5,EA019,None,EA019-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +16133,Ef6,EA019,None,EA019-1,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +16134,Ef7,EA019,None,EA019-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +16135,Ef8,EA019,None,EA019-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +16136,Ef9,EA019,None,EA019-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16137,Eg1,EA019,None,EA019-1,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16138,Eg10,EA019,None,EA019-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +16139,Eg11,EA019,None,EA019-1,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +16140,Eg12,EA019,None,EA019-1,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +16141,Eg13,EA019,None,EA019-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16142,Eg14,EA019,None,EA019-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +16143,Eg2,EA019,None,EA019-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +16144,Eg3,EA019,None,EA019-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +16145,Eg4,EA019,Sibs,EA019-4,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +16146,Eg5,EA019,None,EA019-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +16147,Eg6,EA019,Sibs,EA019-4,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +16148,Eg7,EA019,None,EA019-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +16149,Eg8,EA019,None,EA019-1,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +16150,Eg9,EA019,None,EA019-1,,elwin1939,,1930,EthnographicAtlas_1967_p90, +16151,Eh1,EA019,None,EA019-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +16152,Eh10,EA019,None,EA019-1,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +16153,Eh2,EA019,Exogamy only,EA019-2,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +16154,Eh3,EA019,Exogamy only,EA019-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +16155,Eh4,EA019,Sibs,EA019-4,"Leach, on questionable evidence (see discussion Murdock (1965a)), denies the occurrence of matrilineal sibs",bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16156,Eh5,EA019,None,EA019-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +16157,Eh6,EA019,None,EA019-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +16158,Eh7,EA019,None,EA019-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +16159,Eh8,EA019,None,EA019-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +16160,Eh9,EA019,None,EA019-1,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +16161,Ei1,EA019,Moieties,EA019-6,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16162,Ei10,EA019,None,EA019-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +16163,Ei11,EA019,None,EA019-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +16164,Ei12,EA019,None,EA019-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +16165,Ei13,EA019,None,EA019-1,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +16166,Ei14,EA019,None,EA019-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +16167,Ei15,EA019,None,EA019-1,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +16168,Ei16,EA019,None,EA019-1,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +16169,Ei17,EA019,None,EA019-1,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +16170,Ei18,EA019,None,EA019-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +16171,Ei19,EA019,None,EA019-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +16172,Ei2,EA019,None,EA019-1,,mills1922,,1920,EthnographicAtlas_1967_p90, +16173,Ei20,EA019,None,EA019-1,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +16174,Ei3,EA019,None,EA019-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +16175,Ei4,EA019,None,EA019-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +16176,Ei5,EA019,None,EA019-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +16177,Ei6,EA019,None,EA019-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +16178,Ei7,EA019,None,EA019-1,But there are agamous matrilineages which function in ancestor worship,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +16179,Ei8,EA019,Phratries,EA019-5,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +16180,Ei9,EA019,None,EA019-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +16181,Ej1,EA019,None,EA019-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +16182,Ej10,EA019,Phratries,EA019-5,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +16183,Ej11,EA019,Lineages,EA019-3,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +16184,Ej12,EA019,None,EA019-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +16185,Ej13,EA019,None,EA019-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +16186,Ej14,EA019,None,EA019-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16187,Ej15,EA019,None,EA019-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +16188,Ej16,EA019,Sibs,EA019-4,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +16189,Ej2,EA019,Sibs,EA019-4,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +16190,Ej3,EA019,None,EA019-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +16191,Ej4,EA019,None,EA019-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +16192,Ej5,EA019,None,EA019-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +16193,Ej6,EA019,None,EA019-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +16194,Ej7,EA019,None,EA019-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +16195,Ej8,EA019,None,EA019-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +16196,Ej9,EA019,None,EA019-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +16197,Ia1,EA019,None,EA019-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +16198,Ia10,EA019,None,EA019-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +16199,Ia11,EA019,None,EA019-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +16200,Ia12,EA019,None,EA019-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +16201,Ia13,EA019,None,EA019-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +16202,Ia14,EA019,None,EA019-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +16203,Ia15,EA019,None,EA019-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +16204,Ia16,EA019,None,EA019-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +16205,Ia17,EA019,None,EA019-1,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +16206,Ia18,EA019,None,EA019-1,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +16207,Ia2,EA019,None,EA019-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +16208,Ia3,EA019,None,EA019-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +16209,Ia4,EA019,None,EA019-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +16210,Ia5,EA019,None,EA019-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +16211,Ia6,EA019,None,EA019-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16212,Ia7,EA019,None,EA019-1,,fox1954,,1950,EthnographicAtlas_1967_p90, +16213,Ia8,EA019,None,EA019-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +16214,Ia9,EA019,Sibs,EA019-4,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +16215,Ib1,EA019,None,EA019-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16216,Ib2,EA019,None,EA019-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16217,Ib3,EA019,None,EA019-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +16218,Ib4,EA019,None,EA019-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +16219,Ib5,EA019,None,EA019-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +16220,Ib6,EA019,Phratries,EA019-5,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +16221,Ib7,EA019,None,EA019-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +16222,Ib8,EA019,None,EA019-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +16223,Ib9,EA019,None,EA019-1,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +16224,Ic1,EA019,None,EA019-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16225,Ic10,EA019,None,EA019-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +16226,Ic11,EA019,None,EA019-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16227,Ic12,EA019,None,EA019-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +16228,Ic13,EA019,Lineages,EA019-3,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +16229,Ic2,EA019,None,EA019-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +16230,Ic3,EA019,Lineages,EA019-3,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +16231,Ic4,EA019,None,EA019-1,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +16232,Ic5,EA019,None,EA019-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +16233,Ic6,EA019,None,EA019-1,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +16234,Ic7,EA019,None,EA019-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +16235,Ic8,EA019,None,EA019-1,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +16236,Ic9,EA019,None,EA019-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +16237,Id1,EA019,Moieties,EA019-6,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +16238,Id10,EA019,Moieties,EA019-6,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +16239,Id11,EA019,Moieties,EA019-6,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +16240,Id12,EA019,None,EA019-1,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +16241,Id13,EA019,Moieties,EA019-6,Implicit matrimoieties,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +16242,Id2,EA019,Moieties,EA019-6,The matrimoieties are implicit and unnamed,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +16243,Id3,EA019,Phratries,EA019-5,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +16244,Id4,EA019,Moieties,EA019-6,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +16245,Id5,EA019,Moieties,EA019-6,Implicit matrimoieties intersecting the patrimoieties to form four sections,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +16246,Id6,EA019,None,EA019-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +16247,Id7,EA019,None,EA019-1,"Although subsections were borrowed about 1915, they have not yet been integrated into the social system, and implicit matrimoieties have therefore not been established",falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +16248,Id8,EA019,?,EA019-NA,,,,,, +16249,Id9,EA019,Moieties,EA019-6,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +16250,Ie1,EA019,None,EA019-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16251,Ie10,EA019,None,EA019-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +16252,Ie11,EA019,None,EA019-1,,bowers1964,,1950,EthnographicAtlas_1967_p94, +16253,Ie12,EA019,None,EA019-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16254,Ie13,EA019,None,EA019-1,,landtman1927,,1920,EthnographicAtlas_1967_p94, +16255,Ie14,EA019,None,EA019-1,,haddon1908,,1900,EthnographicAtlas_1967_p94, +16256,Ie15,EA019,None,EA019-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16257,Ie16,EA019,None,EA019-1,,williams194041,,1940,EthnographicAtlas_1967_p94, +16258,Ie17,EA019,None,EA019-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +16259,Ie18,EA019,None,EA019-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +16260,Ie19,EA019,None,EA019-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +16261,Ie2,EA019,None,EA019-1,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +16262,Ie20,EA019,None,EA019-1,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +16263,Ie21,EA019,None,EA019-1,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +16264,Ie22,EA019,None,EA019-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +16265,Ie23,EA019,None,EA019-1,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +16266,Ie24,EA019,None,EA019-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +16267,Ie25,EA019,None,EA019-1,,williamson1912,,1920,EthnographicAtlas_1967_p94, +16268,Ie26,EA019,None,EA019-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +16269,Ie27,EA019,None,EA019-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +16270,Ie28,EA019,Lineages,EA019-3,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +16271,Ie29,EA019,None,EA019-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16272,Ie3,EA019,None,EA019-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16273,Ie30,EA019,Sibs,EA019-4,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +16274,Ie31,EA019,None,EA019-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +16275,Ie32,EA019,None,EA019-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +16276,Ie33,EA019,None,EA019-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +16277,Ie34,EA019,None,EA019-1,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +16278,Ie35,EA019,None,EA019-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +16279,Ie36,EA019,None,EA019-1,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +16280,Ie37,EA019,None,EA019-1,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +16281,Ie38,EA019,None,EA019-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +16282,Ie39,EA019,None,EA019-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +16283,Ie4,EA019,Moieties,EA019-6,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16284,Ie5,EA019,None,EA019-1,,williams1936,,1930,EthnographicAtlas_1967_p94, +16285,Ie6,EA019,None,EA019-1,,held1947,,1930,EthnographicAtlas_1967_p94, +16286,Ie7,EA019,None,EA019-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +16287,Ie8,EA019,None,EA019-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +16288,Ie9,EA019,None,EA019-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +16289,If1,EA019,Phratries,EA019-5,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16290,If10,EA019,Sibs,EA019-4,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +16291,If11,EA019,Sibs,EA019-4,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +16292,If12,EA019,Sibs,EA019-4,,mason1954,,1940,EthnographicAtlas_1967_p98, +16293,If13,EA019,Sibs,EA019-4,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +16294,If14,EA019,None,EA019-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +16295,If15,EA019,Sibs,EA019-4,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +16296,If16,EA019,Sibs,EA019-4,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +16297,If17,EA019,Sibs,EA019-4,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +16298,If2,EA019,Sibs,EA019-4,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +16299,If3,EA019,Sibs,EA019-4,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +16300,If4,EA019,Sibs,EA019-4,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +16301,If5,EA019,Sibs,EA019-4,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +16302,If6,EA019,Sibs,EA019-4,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +16303,If7,EA019,None,EA019-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +16304,If8,EA019,None,EA019-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +16305,If9,EA019,Lineages,EA019-3,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +16306,Ig1,EA019,Sibs,EA019-4,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +16307,Ig10,EA019,Lineages,EA019-3,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +16308,Ig11,EA019,Sibs,EA019-4,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +16309,Ig12,EA019,None,EA019-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +16310,Ig13,EA019,Lineages,EA019-3,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +16311,Ig14,EA019,Sibs,EA019-4,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +16312,Ig15,EA019,None,EA019-1,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +16313,Ig16,EA019,None,EA019-1,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +16314,Ig17,EA019,None,EA019-1,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +16315,Ig18,EA019,None,EA019-1,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +16316,Ig19,EA019,None,EA019-1,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +16317,Ig2,EA019,Phratries,EA019-5,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +16318,Ig20,EA019,Sibs,EA019-4,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +16319,Ig21,EA019,Sibs,EA019-4,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +16320,Ig3,EA019,Sibs,EA019-4,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +16321,Ig4,EA019,Moieties,EA019-6,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +16322,Ig5,EA019,Sibs,EA019-4,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +16323,Ig6,EA019,None,EA019-1,,ivens1927,,1900,EthnographicAtlas_1967_p98, +16324,Ig7,EA019,Phratries,EA019-5,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +16325,Ig8,EA019,None,EA019-1,"Though descent is actually ambilineal, matrilineal ties are considered stronger than patrilineal ones",hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +16326,Ig9,EA019,Lineages,EA019-3,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +16327,Ih1,EA019,Moieties,EA019-6,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +16328,Ih10,EA019,None,EA019-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16329,Ih11,EA019,None,EA019-1,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +16330,Ih12,EA019,None,EA019-1,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +16331,Ih13,EA019,Moieties,EA019-6,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +16332,Ih14,EA019,None,EA019-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +16333,Ih2,EA019,None,EA019-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16334,Ih3,EA019,Moieties,EA019-6,The matrimoieties are implicit,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +16335,Ih4,EA019,None,EA019-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16336,Ih5,EA019,None,EA019-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +16337,Ih6,EA019,Lineages,EA019-3,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +16338,Ih7,EA019,None,EA019-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +16339,Ih8,EA019,Moieties,EA019-6,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +16340,Ih9,EA019,Phratries,EA019-5,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16341,Ii1,EA019,None,EA019-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +16342,Ii10,EA019,None,EA019-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +16343,Ii12,EA019,None,EA019-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16344,Ii13,EA019,None,EA019-1,,burrows1937,,1830,EthnographicAtlas_1967_p98, +16345,Ii14,EA019,None,EA019-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +16346,Ii2,EA019,None,EA019-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +16347,Ii3,EA019,Sibs,EA019-4,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +16348,Ii4,EA019,None,EA019-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +16349,Ii5,EA019,None,EA019-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +16350,Ii6,EA019,None,EA019-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +16351,Ii7,EA019,None,EA019-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +16352,Ii8,EA019,None,EA019-1,,burrows1936,,1840,EthnographicAtlas_1967_p98, +16353,Ii9,EA019,None,EA019-1,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +16354,Ij1,EA019,None,EA019-1,,buck1934,,1820,EthnographicAtlas_1967_p98, +16355,Ij10,EA019,None,EA019-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +16356,Ij2,EA019,None,EA019-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +16357,Ij3,EA019,None,EA019-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +16358,Ij4,EA019,None,EA019-1,,buck1932a,,1850,EthnographicAtlas_1967_p102, +16359,Ij5,EA019,None,EA019-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +16360,Ij6,EA019,None,EA019-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +16361,Ij7,EA019,None,EA019-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +16362,Ij8,EA019,None,EA019-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +16363,Ij9,EA019,None,EA019-1,,metraux1940,,1860,EthnographicAtlas_1967_p102, +16364,Na1,EA019,Phratries,EA019-5,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +16365,Na10,EA019,None,EA019-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +16366,Na11,EA019,None,EA019-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +16367,Na12,EA019,None,EA019-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +16368,Na13,EA019,None,EA019-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +16369,Na14,EA019,None,EA019-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +16370,Na15,EA019,None,EA019-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +16371,Na16,EA019,None,EA019-1,,osgood1931,,1860,EthnographicAtlas_1967_p102, +16372,Na17,EA019,None,EA019-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16373,Na19,EA019,Phratries,EA019-5,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +16374,Na2,EA019,None,EA019-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +16375,Na20,EA019,Sibs,EA019-4,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +16376,Na21,EA019,None,EA019-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +16377,Na22,EA019,None,EA019-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +16378,Na23,EA019,None,EA019-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +16379,Na24,EA019,None,EA019-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +16380,Na25,EA019,None,EA019-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +16381,Na26,EA019,Moieties,EA019-6,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +16382,Na27,EA019,Sibs,EA019-4,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +16383,Na28,EA019,None,EA019-1,,jenness1937,,1880,EthnographicAtlas_1967_p102, +16384,Na29,EA019,None,EA019-1,,goddard1916,,1850,EthnographicAtlas_1967_p102, +16385,Na3,EA019,None,EA019-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +16386,Na30,EA019,None,EA019-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +16387,Na31,EA019,None,EA019-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +16388,Na32,EA019,None,EA019-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +16389,Na33,EA019,None,EA019-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +16390,Na34,EA019,None,EA019-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +16391,Na35,EA019,None,EA019-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +16392,Na36,EA019,None,EA019-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +16393,Na37,EA019,None,EA019-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +16394,Na38,EA019,None,EA019-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +16395,Na39,EA019,None,EA019-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +16396,Na4,EA019,Moieties,EA019-6,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +16397,Na40,EA019,None,EA019-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +16398,Na41,EA019,None,EA019-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +16399,Na42,EA019,None,EA019-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +16400,Na43,EA019,None,EA019-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +16401,Na44,EA019,None,EA019-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +16402,Na45,EA019,None,EA019-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +16403,Na5,EA019,None,EA019-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +16404,Na6,EA019,None,EA019-1,,lantis1946,,1930,EthnographicAtlas_1967_p102, +16405,Na7,EA019,None,EA019-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +16406,Na8,EA019,None,EA019-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +16407,Na9,EA019,None,EA019-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16408,Nb1,EA019,Moieties,EA019-6,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +16409,Nb10,EA019,None,EA019-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +16410,Nb11,EA019,None,EA019-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +16411,Nb12,EA019,None,EA019-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +16412,Nb13,EA019,None,EA019-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +16413,Nb14,EA019,None,EA019-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +16414,Nb15,EA019,None,EA019-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +16415,Nb16,EA019,None,EA019-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +16416,Nb17,EA019,None,EA019-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +16417,Nb18,EA019,None,EA019-1,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +16418,Nb19,EA019,None,EA019-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +16419,Nb2,EA019,None,EA019-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +16420,Nb20,EA019,None,EA019-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +16421,Nb21,EA019,None,EA019-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +16422,Nb22,EA019,Moieties,EA019-6,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +16423,Nb23,EA019,None,EA019-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +16424,Nb24,EA019,None,EA019-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +16425,Nb25,EA019,None,EA019-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +16426,Nb26,EA019,None,EA019-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +16427,Nb27,EA019,None,EA019-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +16428,Nb28,EA019,None,EA019-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +16429,Nb29,EA019,None,EA019-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +16430,Nb3,EA019,None,EA019-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +16431,Nb30,EA019,None,EA019-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +16432,Nb31,EA019,None,EA019-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +16433,Nb32,EA019,None,EA019-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +16434,Nb33,EA019,None,EA019-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +16435,Nb34,EA019,None,EA019-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +16436,Nb35,EA019,None,EA019-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +16437,Nb36,EA019,None,EA019-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +16438,Nb37,EA019,None,EA019-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +16439,Nb38,EA019,None,EA019-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +16440,Nb39,EA019,None,EA019-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +16441,Nb4,EA019,None,EA019-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +16442,Nb5,EA019,Moieties,EA019-6,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +16443,Nb6,EA019,None,EA019-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +16444,Nb7,EA019,Phratries,EA019-5,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +16445,Nb8,EA019,Sibs,EA019-4,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +16446,Nb9,EA019,None,EA019-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +16447,Nc1,EA019,None,EA019-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +16448,Nc10,EA019,None,EA019-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +16449,Nc11,EA019,None,EA019-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +16450,Nc12,EA019,None,EA019-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +16451,Nc13,EA019,None,EA019-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +16452,Nc14,EA019,None,EA019-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +16453,Nc15,EA019,None,EA019-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +16454,Nc16,EA019,None,EA019-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +16455,Nc17,EA019,None,EA019-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +16456,Nc18,EA019,None,EA019-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +16457,Nc19,EA019,None,EA019-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +16458,Nc2,EA019,None,EA019-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +16459,Nc20,EA019,None,EA019-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +16460,Nc21,EA019,None,EA019-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +16461,Nc22,EA019,None,EA019-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +16462,Nc23,EA019,None,EA019-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +16463,Nc24,EA019,None,EA019-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +16464,Nc25,EA019,None,EA019-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +16465,Nc26,EA019,None,EA019-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +16466,Nc27,EA019,None,EA019-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +16467,Nc28,EA019,None,EA019-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +16468,Nc29,EA019,None,EA019-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +16469,Nc3,EA019,None,EA019-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +16470,Nc30,EA019,None,EA019-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +16471,Nc31,EA019,None,EA019-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +16472,Nc32,EA019,None,EA019-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +16473,Nc33,EA019,None,EA019-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +16474,Nc34,EA019,None,EA019-1,,meigs1939,,1880,EthnographicAtlas_1967_p106, +16475,Nc4,EA019,None,EA019-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +16476,Nc5,EA019,None,EA019-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +16477,Nc6,EA019,None,EA019-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +16478,Nc7,EA019,None,EA019-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +16479,Nc8,EA019,None,EA019-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +16480,Nc9,EA019,None,EA019-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +16481,Nd1,EA019,None,EA019-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +16482,Nd10,EA019,None,EA019-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +16483,Nd11,EA019,None,EA019-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +16484,Nd12,EA019,None,EA019-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +16485,Nd13,EA019,None,EA019-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +16486,Nd14,EA019,None,EA019-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +16487,Nd15,EA019,None,EA019-1,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +16488,Nd16,EA019,None,EA019-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +16489,Nd17,EA019,None,EA019-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +16490,Nd18,EA019,None,EA019-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +16491,Nd19,EA019,None,EA019-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +16492,Nd2,EA019,None,EA019-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +16493,Nd20,EA019,None,EA019-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +16494,Nd21,EA019,None,EA019-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +16495,Nd22,EA019,None,EA019-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +16496,Nd23,EA019,None,EA019-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +16497,Nd24,EA019,None,EA019-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +16498,Nd25,EA019,None,EA019-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +16499,Nd26,EA019,None,EA019-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +16500,Nd27,EA019,None,EA019-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +16501,Nd28,EA019,None,EA019-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +16502,Nd29,EA019,None,EA019-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +16503,Nd3,EA019,None,EA019-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +16504,Nd30,EA019,None,EA019-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +16505,Nd31,EA019,None,EA019-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +16506,Nd32,EA019,None,EA019-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +16507,Nd33,EA019,None,EA019-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +16508,Nd34,EA019,None,EA019-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +16509,Nd35,EA019,None,EA019-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +16510,Nd36,EA019,None,EA019-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +16511,Nd37,EA019,None,EA019-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +16512,Nd38,EA019,None,EA019-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +16513,Nd39,EA019,None,EA019-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +16514,Nd4,EA019,None,EA019-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +16515,Nd40,EA019,None,EA019-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +16516,Nd41,EA019,None,EA019-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +16517,Nd42,EA019,None,EA019-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +16518,Nd43,EA019,None,EA019-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +16519,Nd44,EA019,None,EA019-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +16520,Nd45,EA019,None,EA019-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +16521,Nd46,EA019,None,EA019-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +16522,Nd47,EA019,None,EA019-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +16523,Nd48,EA019,None,EA019-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +16524,Nd49,EA019,None,EA019-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +16525,Nd5,EA019,None,EA019-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +16526,Nd50,EA019,None,EA019-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +16527,Nd51,EA019,None,EA019-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +16528,Nd52,EA019,None,EA019-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +16529,Nd53,EA019,None,EA019-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +16530,Nd54,EA019,None,EA019-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16531,Nd55,EA019,None,EA019-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +16532,Nd56,EA019,None,EA019-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +16533,Nd57,EA019,None,EA019-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +16534,Nd58,EA019,None,EA019-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +16535,Nd59,EA019,None,EA019-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +16536,Nd6,EA019,None,EA019-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +16537,Nd60,EA019,None,EA019-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +16538,Nd61,EA019,None,EA019-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +16539,Nd62,EA019,None,EA019-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +16540,Nd63,EA019,None,EA019-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +16541,Nd64,EA019,None,EA019-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +16542,Nd65,EA019,None,EA019-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +16543,Nd66,EA019,None,EA019-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +16544,Nd67,EA019,None,EA019-1,,gifford1936,,1870,EthnographicAtlas_1967_p110, +16545,Nd7,EA019,None,EA019-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +16546,Nd8,EA019,None,EA019-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +16547,Nd9,EA019,None,EA019-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +16548,Ne1,EA019,None,EA019-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +16549,Ne10,EA019,None,EA019-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +16550,Ne11,EA019,None,EA019-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +16551,Ne12,EA019,None,EA019-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +16552,Ne13,EA019,None,EA019-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +16553,Ne14,EA019,None,EA019-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +16554,Ne15,EA019,Moieties,EA019-6,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +16555,Ne16,EA019,None,EA019-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +16556,Ne17,EA019,None,EA019-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +16557,Ne18,EA019,None,EA019-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +16558,Ne19,EA019,None,EA019-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +16559,Ne2,EA019,None,EA019-1,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +16560,Ne20,EA019,None,EA019-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +16561,Ne21,EA019,None,EA019-1,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968, +16562,Ne3,EA019,None,EA019-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +16563,Ne4,EA019,Phratries,EA019-5,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +16564,Ne5,EA019,None,EA019-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +16565,Ne6,EA019,Moieties,EA019-6,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +16566,Ne7,EA019,None,EA019-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +16567,Ne8,EA019,None,EA019-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +16568,Ne9,EA019,None,EA019-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +16569,Nf10,EA019,None,EA019-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +16570,Nf11,EA019,None,EA019-1,,whitman1937,,1870,EthnographicAtlas_1967_p114, +16571,Nf12,EA019,None,EA019-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +16572,Nf13,EA019,None,EA019-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16573,Nf14,EA019,None,EA019-1,"But castes were matrilineal, much as among the Natchez",parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +16574,Nf15,EA019,None,EA019-1,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +16575,Nf2,EA019,None,EA019-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +16576,Nf3,EA019,None,EA019-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +16577,Nf4,EA019,None,EA019-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +16578,Nf5,EA019,None,EA019-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +16579,Nf6,EA019,Lineages,EA019-3,"Though not specifically attested, matrilineages are suggested by analysis of the kinship terminology",dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +16580,Nf7,EA019,None,EA019-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16581,Nf8,EA019,None,EA019-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +16582,Nf9,EA019,None,EA019-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +16583,Ng1,EA019,Sibs,EA019-4,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +16584,Ng10,EA019,Moieties,EA019-6,But the kindred Mohawk and Oneida tribes lacked moieties,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +16585,Ng11,EA019,Sibs,EA019-4,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +16586,Ng12,EA019,Moieties,EA019-6,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +16587,Ng13,EA019,None,EA019-1,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +16588,Ng14,EA019,Moieties,EA019-6,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +16589,Ng15,EA019,None,EA019-1,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +16590,Ng2,EA019,Phratries,EA019-5,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +16591,Ng3,EA019,Moieties,EA019-6,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +16592,Ng4,EA019,None,EA019-1,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +16593,Ng5,EA019,Sibs,EA019-4,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +16594,Ng6,EA019,Sibs,EA019-4,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +16595,Ng7,EA019,None,EA019-1,"Matrilineages were subsequently borrowed from the Creek, but descent was always matrilineal with respect to social classes",macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +16596,Ng8,EA019,Phratries,EA019-5,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +16597,Ng9,EA019,None,EA019-1,"Sturtevant questions the note that the Catawba were ""probably matrilineal aborginally,"" doubting the reliability of Lederer on the basis of whom the statement was made",speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +16598,Nh1,EA019,None,EA019-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +16599,Nh10,EA019,None,EA019-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +16600,Nh11,EA019,None,EA019-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +16601,Nh12,EA019,Lineages,EA019-3,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +16602,Nh13,EA019,Lineages,EA019-3,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +16603,Nh14,EA019,Lineages,EA019-3,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +16604,Nh15,EA019,None,EA019-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +16605,Nh16,EA019,None,EA019-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16606,Nh17,EA019,Phratries,EA019-5,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +16607,Nh18,EA019,Sibs,EA019-4,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16608,Nh19,EA019,None,EA019-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +16609,Nh2,EA019,Lineages,EA019-3,,dozier1954,,1950,EthnographicAtlas_1967_p114, +16610,Nh20,EA019,None,EA019-1,,gifford1931,,1860,EthnographicAtlas_1967_p114, +16611,Nh21,EA019,None,EA019-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16612,Nh22,EA019,None,EA019-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +16613,Nh23,EA019,Sibs,EA019-4,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +16614,Nh24,EA019,None,EA019-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +16615,Nh25,EA019,Sibs,EA019-4,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +16616,Nh26,EA019,None,EA019-1,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +16617,Nh27,EA019,Sibs,EA019-4,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +16618,Nh3,EA019,Phratries,EA019-5,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +16619,Nh4,EA019,Phratries,EA019-5,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +16620,Nh5,EA019,None,EA019-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +16621,Nh6,EA019,None,EA019-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +16622,Nh7,EA019,Sibs,EA019-4,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +16623,Nh8,EA019,Lineages,EA019-3,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +16624,Nh9,EA019,None,EA019-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +16625,Ni1,EA019,None,EA019-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +16626,Ni2,EA019,None,EA019-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +16627,Ni3,EA019,None,EA019-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +16628,Ni4,EA019,None,EA019-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +16629,Ni5,EA019,None,EA019-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +16630,Ni6,EA019,None,EA019-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +16631,Ni7,EA019,None,EA019-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +16632,Ni8,EA019,None,EA019-1,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +16633,Ni9,EA019,None,EA019-1,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968, +16634,Nj1,EA019,None,EA019-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16635,Nj10,EA019,None,EA019-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16636,Nj11,EA019,None,EA019-1,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +16637,Nj12,EA019,None,EA019-1,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968, +16638,Nj13,EA019,None,EA019-1,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +16639,Nj14,EA019,None,EA019-1,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +16640,Nj2,EA019,None,EA019-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +16641,Nj3,EA019,None,EA019-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +16642,Nj4,EA019,None,EA019-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +16643,Nj5,EA019,None,EA019-1,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +16644,Nj6,EA019,None,EA019-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +16645,Nj7,EA019,None,EA019-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16646,Nj8,EA019,None,EA019-1,,foster1948,,1500,EthnographicAtlas_1967_p118, +16647,Nj9,EA019,None,EA019-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +16648,Sa1,EA019,None,EA019-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +16649,Sa10,EA019,None,EA019-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +16650,Sa11,EA019,None,EA019-1,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +16651,Sa12,EA019,None,EA019-1,,stone1948,,1948,EthnographicAtlas_1967_p118, +16652,Sa13,EA019,None,EA019-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +16653,Sa14,EA019,Sibs,EA019-4,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +16654,Sa15,EA019,None,EA019-1,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +16655,Sa16,EA019,None,EA019-1,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +16656,Sa17,EA019,None,EA019-1,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +16657,Sa2,EA019,None,EA019-1,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16658,Sa3,EA019,None,EA019-1,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +16659,Sa4,EA019,None,EA019-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +16660,Sa5,EA019,Moieties,EA019-6,"Formerly moieties (code ""6"")",gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +16661,Sa6,EA019,None,EA019-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +16662,Sa7,EA019,None,EA019-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +16663,Sa8,EA019,None,EA019-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +16664,Sa9,EA019,None,EA019-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +16665,Sb1,EA019,Lineages,EA019-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +16666,Sb2,EA019,None,EA019-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +16667,Sb3,EA019,None,EA019-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +16668,Sb4,EA019,None,EA019-1,"But Schwerin reports lineages (code ""3"")",schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +16669,Sb5,EA019,None,EA019-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +16670,Sb6,EA019,Sibs,EA019-4,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +16671,Sb7,EA019,None,EA019-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +16672,Sb8,EA019,?,EA019-NA,"Descent may have been matrilineal, like inheritance",rouse1948a,,1520,EthnographicAtlas_1967_p118, +16673,Sb9,EA019,None,EA019-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +16674,Sc1,EA019,None,EA019-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +16675,Sc10,EA019,Sibs,EA019-4,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +16676,Sc11,EA019,None,EA019-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +16677,Sc12,EA019,None,EA019-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +16678,Sc13,EA019,None,EA019-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +16679,Sc14,EA019,None,EA019-1,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +16680,Sc15,EA019,None,EA019-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +16681,Sc16,EA019,None,EA019-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +16682,Sc17,EA019,None,EA019-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +16683,Sc18,EA019,Sibs,EA019-4,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +16684,Sc2,EA019,None,EA019-1,,leedsnd,,1950,EthnographicAtlas_1967_p118, +16685,Sc3,EA019,None,EA019-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +16686,Sc4,EA019,None,EA019-1,"The ""extended families"" are conceivably localized matrilineages",wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +16687,Sc5,EA019,None,EA019-1,,farabee1918,,1900,EthnographicAtlas_1967_p118, +16688,Sc6,EA019,Sibs,EA019-4,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16689,Sc7,EA019,None,EA019-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +16690,Sc8,EA019,None,EA019-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +16691,Sc9,EA019,None,EA019-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +16692,Sd1,EA019,None,EA019-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16693,Sd2,EA019,None,EA019-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +16694,Sd3,EA019,None,EA019-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +16695,Sd4,EA019,None,EA019-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +16696,Sd5,EA019,None,EA019-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +16697,Sd6,EA019,None,EA019-1,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +16698,Sd7,EA019,None,EA019-1,,fock1963,,1950,EthnographicAtlas_1967_p118, +16699,Sd8,EA019,None,EA019-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +16700,Sd9,EA019,None,EA019-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16701,Se1,EA019,None,EA019-1,"Possibly lineages (code ""3""), though descent is specifically reported to be bilateral",holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +16702,Se10,EA019,None,EA019-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +16703,Se11,EA019,None,EA019-1,,prost1965,,1960,EthnographicAtlas_1967_p122, +16704,Se12,EA019,None,EA019-1,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +16705,Se2,EA019,None,EA019-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +16706,Se3,EA019,None,EA019-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +16707,Se4,EA019,None,EA019-1,,fejos1943,,1940,EthnographicAtlas_1967_p118, +16708,Se5,EA019,None,EA019-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +16709,Se6,EA019,None,EA019-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +16710,Se7,EA019,None,EA019-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16711,Se8,EA019,None,EA019-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +16712,Se9,EA019,None,EA019-1,But some authors infer matrilineal descent,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +16713,Sf1,EA019,None,EA019-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +16714,Sf2,EA019,None,EA019-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +16715,Sf3,EA019,None,EA019-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +16716,Sf4,EA019,None,EA019-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +16717,Sf5,EA019,None,EA019-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +16718,Sf6,EA019,None,EA019-1,"Possibly lineages (code ""3"") in view of reported matrilineal succession",ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +16719,Sf7,EA019,None,EA019-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +16720,Sf8,EA019,None,EA019-1,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +16721,Sf9,EA019,None,EA019-1,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +16722,Sg1,EA019,None,EA019-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +16723,Sg2,EA019,None,EA019-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16724,Sg3,EA019,None,EA019-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +16725,Sg4,EA019,None,EA019-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +16726,Sg5,EA019,None,EA019-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16727,Sh1,EA019,None,EA019-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +16728,Sh2,EA019,None,EA019-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +16729,Sh3,EA019,None,EA019-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +16730,Sh4,EA019,None,EA019-1,,oberg1949,,1940,EthnographicAtlas_1967_p122, +16731,Sh5,EA019,None,EA019-1,But Karsten dubiously reports matrilineal descent,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +16732,Sh6,EA019,None,EA019-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +16733,Sh7,EA019,None,EA019-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +16734,Sh8,EA019,None,EA019-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +16735,Sh9,EA019,None,EA019-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +16736,Si1,EA019,Moieties,EA019-6,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16737,Si10,EA019,None,EA019-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +16738,Si2,EA019,None,EA019-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +16739,Si3,EA019,None,EA019-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16740,Si4,EA019,None,EA019-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +16741,Si5,EA019,None,EA019-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +16742,Si6,EA019,None,EA019-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +16743,Si7,EA019,None,EA019-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +16744,Si8,EA019,None,EA019-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +16745,Si9,EA019,None,EA019-1,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +16746,Sj1,EA019,None,EA019-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +16747,Sj10,EA019,None,EA019-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16748,Sj11,EA019,None,EA019-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +16749,Sj2,EA019,None,EA019-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +16750,Sj3,EA019,None,EA019-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +16751,Sj4,EA019,Moieties,EA019-6,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +16752,Sj5,EA019,None,EA019-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +16753,Sj6,EA019,None,EA019-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16754,Sj7,EA019,?,EA019-NA,"Parallel descent, i.e., patrilineal for males and matrilineal for females",mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +16755,Sj8,EA019,None,EA019-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +16756,Sj9,EA019,None,EA019-1,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +16757,ch12,EA019,None,EA019-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +16758,ch13,EA019,None,EA019-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +16759,ch14,EA019,Exogamy only,EA019-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +16760,ch15,EA019,None,EA019-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +16761,ch16,EA019,None,EA019-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +16762,ch17,EA019,None,EA019-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +16763,ch18,EA019,None,EA019-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +16764,ch19,EA019,None,EA019-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +16765,ch20,EA019,None,EA019-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +16766,ch21,EA019,None,EA019-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +16767,ch22,EA019,None,EA019-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +16768,ch23,EA019,None,EA019-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +16769,ch24,EA019,None,EA019-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +16770,ch25,EA019,None,EA019-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +16771,ch26,EA019,Sibs,EA019-4,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +16772,ch27,EA019,None,EA019-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +16773,ch28,EA019,None,EA019-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +16774,ec12,EA019,None,EA019-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +16775,ec13,EA019,None,EA019-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +16776,ec14,EA019,None,EA019-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +16777,ec15,EA019,None,EA019-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +16778,ec16,EA019,None,EA019-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +16779,ec17,EA019,None,EA019-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +16780,ec18,EA019,None,EA019-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +16781,ec19,EA019,None,EA019-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +16782,ec20,EA019,None,EA019-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +16783,ec21,EA019,None,EA019-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +16784,Aa1,EA002,16-25%,EA002-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +16785,Aa2,EA002,56-65%,EA002-6,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +16786,Aa3,EA002,26-35%,EA002-3,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +16787,Aa4,EA002,26-35%,EA002-3,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +16788,Aa5,EA002,66-75%,EA002-7,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +16789,Aa6,EA002,6-15%,EA002-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +16790,Aa7,EA002,26-35%,EA002-3,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +16791,Aa8,EA002,36-45%,EA002-4,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +16792,Aa9,EA002,36-45%,EA002-4,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +16793,Ab1,EA002,26-35%,EA002-3,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +16794,Ab10,EA002,0-5%,EA002-0,,hunter1936,,1936,EthnographicAtlas_1967_p62, +16795,Ab11,EA002,6-15%,EA002-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +16796,Ab12,EA002,6-15%,EA002-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +16797,Ab13,EA002,6-15%,EA002-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +16798,Ab14,EA002,0-5%,EA002-0,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +16799,Ab15,EA002,6-15%,EA002-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +16800,Ab16,EA002,6-15%,EA002-1,,earthy1933,,1930,EthnographicAtlas_1967_p62, +16801,Ab17,EA002,6-15%,EA002-1,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +16802,Ab18,EA002,6-15%,EA002-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +16803,Ab19,EA002,6-15%,EA002-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +16804,Ab2,EA002,6-15%,EA002-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +16805,Ab20,EA002,6-15%,EA002-1,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +16806,Ab21a,EA002,16-25%,EA002-2,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +16807,Ab21b,EA002,0-5%,EA002-0,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +16808,Ab22,EA002,6-15%,EA002-1,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +16809,Ab3,EA002,16-25%,EA002-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +16810,Ab4,EA002,6-15%,EA002-1,,junod1927,,1920,EthnographicAtlas_1967_p62, +16811,Ab5,EA002,6-15%,EA002-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +16812,Ab6,EA002,6-15%,EA002-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +16813,Ab7,EA002,6-15%,EA002-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +16814,Ab8,EA002,6-15%,EA002-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +16815,Ab9,EA002,6-15%,EA002-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +16816,Ac1,EA002,0-5%,EA002-0,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +16817,Ac10,EA002,16-25%,EA002-2,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +16818,Ac11,EA002,6-15%,EA002-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +16819,Ac12,EA002,26-35%,EA002-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +16820,Ac13,EA002,0-5%,EA002-0,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +16821,Ac14,EA002,6-15%,EA002-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +16822,Ac15,EA002,0-5%,EA002-0,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +16823,Ac16,EA002,6-15%,EA002-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +16824,Ac17,EA002,16-25%,EA002-2,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +16825,Ac18,EA002,6-15%,EA002-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +16826,Ac19,EA002,6-15%,EA002-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +16827,Ac2,EA002,0-5%,EA002-0,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +16828,Ac20,EA002,16-25%,EA002-2,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +16829,Ac21,EA002,6-15%,EA002-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +16830,Ac22,EA002,16-25%,EA002-2,,mertens1935,,1930,EthnographicAtlas_1967_p62, +16831,Ac23,EA002,6-15%,EA002-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +16832,Ac24,EA002,6-15%,EA002-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +16833,Ac25,EA002,16-25%,EA002-2,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +16834,Ac26,EA002,16-25%,EA002-2,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +16835,Ac27,EA002,6-15%,EA002-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +16836,Ac28,EA002,16-25%,EA002-2,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +16837,Ac29,EA002,6-15%,EA002-1,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +16838,Ac3,EA002,6-15%,EA002-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +16839,Ac30,EA002,6-15%,EA002-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +16840,Ac31,EA002,6-15%,EA002-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +16841,Ac32,EA002,26-35%,EA002-3,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +16842,Ac33,EA002,6-15%,EA002-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +16843,Ac34,EA002,6-15%,EA002-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +16844,Ac35,EA002,6-15%,EA002-1,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +16845,Ac36,EA002,16-25%,EA002-2,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +16846,Ac37,EA002,6-15%,EA002-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +16847,Ac38,EA002,6-15%,EA002-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +16848,Ac39,EA002,0-5%,EA002-0,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +16849,Ac4,EA002,6-15%,EA002-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +16850,Ac40,EA002,6-15%,EA002-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +16851,Ac41,EA002,6-15%,EA002-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +16852,Ac42,EA002,6-15%,EA002-1,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +16853,Ac43,EA002,6-15%,EA002-1,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +16854,Ac5,EA002,16-25%,EA002-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +16855,Ac6,EA002,16-25%,EA002-2,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +16856,Ac7,EA002,6-15%,EA002-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +16857,Ac8,EA002,16-25%,EA002-2,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +16858,Ac9,EA002,6-15%,EA002-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +16859,Ad1,EA002,6-15%,EA002-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +16860,Ad10,EA002,6-15%,EA002-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +16861,Ad11,EA002,6-15%,EA002-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +16862,Ad12,EA002,0-5%,EA002-0,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +16863,Ad13,EA002,16-25%,EA002-2,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +16864,Ad14,EA002,6-15%,EA002-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +16865,Ad15,EA002,6-15%,EA002-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +16866,Ad16,EA002,6-15%,EA002-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +16867,Ad17,EA002,6-15%,EA002-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +16868,Ad18,EA002,16-25%,EA002-2,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +16869,Ad19,EA002,0-5%,EA002-0,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +16870,Ad2,EA002,6-15%,EA002-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +16871,Ad20,EA002,6-15%,EA002-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +16872,Ad21,EA002,6-15%,EA002-1,,maurice193538,,1930,EthnographicAtlas_1967_p66, +16873,Ad22,EA002,0-5%,EA002-0,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +16874,Ad23,EA002,6-15%,EA002-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +16875,Ad24,EA002,6-15%,EA002-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +16876,Ad25,EA002,16-25%,EA002-2,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +16877,Ad26,EA002,0-5%,EA002-0,,sick1916,,1910,EthnographicAtlas_1967_p66, +16878,Ad27,EA002,6-15%,EA002-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +16879,Ad28,EA002,6-15%,EA002-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +16880,Ad29,EA002,0-5%,EA002-0,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +16881,Ad3,EA002,6-15%,EA002-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +16882,Ad30,EA002,6-15%,EA002-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +16883,Ad31,EA002,6-15%,EA002-1,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +16884,Ad32,EA002,6-15%,EA002-1,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +16885,Ad33,EA002,6-15%,EA002-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +16886,Ad34,EA002,6-15%,EA002-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +16887,Ad35,EA002,6-15%,EA002-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +16888,Ad36,EA002,0-5%,EA002-0,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +16889,Ad37,EA002,6-15%,EA002-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +16890,Ad38,EA002,0-5%,EA002-0,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +16891,Ad39,EA002,0-5%,EA002-0,,gray1963,,1950,EthnographicAtlas_1967_p66, +16892,Ad4,EA002,0-5%,EA002-0,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +16893,Ad40,EA002,0-5%,EA002-0,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +16894,Ad41,EA002,0-5%,EA002-0,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +16895,Ad42,EA002,0-5%,EA002-0,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +16896,Ad43,EA002,0-5%,EA002-0,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +16897,Ad44,EA002,6-15%,EA002-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +16898,Ad45,EA002,6-15%,EA002-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +16899,Ad46,EA002,0-5%,EA002-0,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +16900,Ad47,EA002,6-15%,EA002-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +16901,Ad48,EA002,0-5%,EA002-0,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +16902,Ad49,EA002,0-5%,EA002-0,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +16903,Ad5,EA002,16-25%,EA002-2,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +16904,Ad50,EA002,6-15%,EA002-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +16905,Ad51,EA002,6-15%,EA002-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +16906,Ad6,EA002,6-15%,EA002-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +16907,Ad7,EA002,6-15%,EA002-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +16908,Ad8,EA002,6-15%,EA002-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +16909,Ad9,EA002,6-15%,EA002-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +16910,Ae1,EA002,6-15%,EA002-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +16911,Ae10,EA002,6-15%,EA002-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +16912,Ae11,EA002,16-25%,EA002-2,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +16913,Ae12,EA002,0-5%,EA002-0,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +16914,Ae13,EA002,0-5%,EA002-0,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +16915,Ae14,EA002,0-5%,EA002-0,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +16916,Ae15,EA002,6-15%,EA002-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +16917,Ae16,EA002,6-15%,EA002-1,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +16918,Ae17,EA002,16-25%,EA002-2,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +16919,Ae18,EA002,6-15%,EA002-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +16920,Ae19,EA002,16-25%,EA002-2,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +16921,Ae2,EA002,6-15%,EA002-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +16922,Ae20,EA002,0-5%,EA002-0,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +16923,Ae21,EA002,36-45%,EA002-4,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +16924,Ae22,EA002,16-25%,EA002-2,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +16925,Ae23,EA002,6-15%,EA002-1,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +16926,Ae24,EA002,6-15%,EA002-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +16927,Ae25,EA002,6-15%,EA002-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +16928,Ae26,EA002,16-25%,EA002-2,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +16929,Ae27,EA002,0-5%,EA002-0,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +16930,Ae28,EA002,6-15%,EA002-1,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +16931,Ae29,EA002,0-5%,EA002-0,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +16932,Ae3,EA002,6-15%,EA002-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +16933,Ae30,EA002,0-5%,EA002-0,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +16934,Ae31,EA002,26-35%,EA002-3,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +16935,Ae32,EA002,36-45%,EA002-4,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +16936,Ae33,EA002,6-15%,EA002-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +16937,Ae34,EA002,16-25%,EA002-2,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +16938,Ae35,EA002,6-15%,EA002-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +16939,Ae36,EA002,6-15%,EA002-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +16940,Ae37,EA002,0-5%,EA002-0,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +16941,Ae38,EA002,6-15%,EA002-1,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +16942,Ae39,EA002,16-25%,EA002-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +16943,Ae4,EA002,6-15%,EA002-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +16944,Ae40,EA002,6-15%,EA002-1,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +16945,Ae41,EA002,16-25%,EA002-2,,andersson1953,,1940,EthnographicAtlas_1967_p66, +16946,Ae42,EA002,6-15%,EA002-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +16947,Ae43,EA002,6-15%,EA002-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +16948,Ae44,EA002,6-15%,EA002-1,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +16949,Ae45,EA002,6-15%,EA002-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +16950,Ae46,EA002,6-15%,EA002-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +16951,Ae47,EA002,6-15%,EA002-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +16952,Ae48,EA002,0-5%,EA002-0,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +16953,Ae49,EA002,16-25%,EA002-2,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +16954,Ae5,EA002,6-15%,EA002-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +16955,Ae50,EA002,6-15%,EA002-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +16956,Ae51,EA002,6-15%,EA002-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +16957,Ae52,EA002,6-15%,EA002-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +16958,Ae53,EA002,16-25%,EA002-2,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +16959,Ae54,EA002,6-15%,EA002-1,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +16960,Ae55,EA002,6-15%,EA002-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +16961,Ae56,EA002,6-15%,EA002-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +16962,Ae57,EA002,6-15%,EA002-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +16963,Ae58,EA002,6-15%,EA002-1,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +16964,Ae59,EA002,6-15%,EA002-1,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +16965,Ae6,EA002,16-25%,EA002-2,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +16966,Ae7,EA002,16-25%,EA002-2,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +16967,Ae8,EA002,0-5%,EA002-0,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +16968,Ae9,EA002,6-15%,EA002-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +16969,Af1,EA002,16-25%,EA002-2,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +16970,Af10,EA002,0-5%,EA002-0,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +16971,Af11,EA002,6-15%,EA002-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +16972,Af12,EA002,6-15%,EA002-1,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +16973,Af13,EA002,6-15%,EA002-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +16974,Af14,EA002,0-5%,EA002-0,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +16975,Af15,EA002,6-15%,EA002-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +16976,Af16,EA002,6-15%,EA002-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +16977,Af17,EA002,6-15%,EA002-1,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +16978,Af18,EA002,6-15%,EA002-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +16979,Af19,EA002,6-15%,EA002-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +16980,Af2,EA002,0-5%,EA002-0,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +16981,Af20,EA002,6-15%,EA002-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +16982,Af21,EA002,0-5%,EA002-0,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +16983,Af22,EA002,6-15%,EA002-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +16984,Af23,EA002,0-5%,EA002-0,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +16985,Af24,EA002,6-15%,EA002-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +16986,Af25,EA002,0-5%,EA002-0,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +16987,Af26,EA002,6-15%,EA002-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +16988,Af27,EA002,0-5%,EA002-0,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +16989,Af28,EA002,6-15%,EA002-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +16990,Af29,EA002,6-15%,EA002-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +16991,Af3,EA002,6-15%,EA002-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +16992,Af30,EA002,6-15%,EA002-1,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +16993,Af31,EA002,6-15%,EA002-1,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +16994,Af32,EA002,6-15%,EA002-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16995,Af33,EA002,0-5%,EA002-0,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16996,Af34,EA002,0-5%,EA002-0,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +16997,Af35,EA002,6-15%,EA002-1,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +16998,Af36,EA002,6-15%,EA002-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +16999,Af37,EA002,16-25%,EA002-2,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +17000,Af38,EA002,6-15%,EA002-1,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +17001,Af39,EA002,6-15%,EA002-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +17002,Af4,EA002,6-15%,EA002-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +17003,Af40,EA002,6-15%,EA002-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +17004,Af41,EA002,6-15%,EA002-1,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +17005,Af42,EA002,6-15%,EA002-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +17006,Af43,EA002,6-15%,EA002-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +17007,Af44,EA002,6-15%,EA002-1,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +17008,Af45,EA002,6-15%,EA002-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +17009,Af46,EA002,6-15%,EA002-1,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +17010,Af47,EA002,6-15%,EA002-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +17011,Af48,EA002,0-5%,EA002-0,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +17012,Af49,EA002,6-15%,EA002-1,,schwab1947,,1940,EthnographicAtlas_1967_p70, +17013,Af5,EA002,0-5%,EA002-0,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +17014,Af50,EA002,6-15%,EA002-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +17015,Af51,EA002,26-35%,EA002-3,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +17016,Af52,EA002,16-25%,EA002-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +17017,Af53,EA002,0-5%,EA002-0,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +17018,Af54,EA002,6-15%,EA002-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +17019,Af55,EA002,6-15%,EA002-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +17020,Af56,EA002,0-5%,EA002-0,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +17021,Af57,EA002,0-5%,EA002-0,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +17022,Af58,EA002,0-5%,EA002-0,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +17023,Af6,EA002,0-5%,EA002-0,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +17024,Af7,EA002,6-15%,EA002-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +17025,Af8,EA002,0-5%,EA002-0,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +17026,Af9,EA002,6-15%,EA002-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +17027,Ag1,EA002,0-5%,EA002-0,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +17028,Ag10,EA002,6-15%,EA002-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +17029,Ag11,EA002,6-15%,EA002-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +17030,Ag12,EA002,6-15%,EA002-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +17031,Ag13,EA002,6-15%,EA002-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +17032,Ag14,EA002,6-15%,EA002-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +17033,Ag15,EA002,6-15%,EA002-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +17034,Ag16,EA002,0-5%,EA002-0,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +17035,Ag17,EA002,0-5%,EA002-0,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +17036,Ag18,EA002,0-5%,EA002-0,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +17037,Ag19,EA002,0-5%,EA002-0,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +17038,Ag2,EA002,0-5%,EA002-0,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +17039,Ag20,EA002,0-5%,EA002-0,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +17040,Ag21,EA002,6-15%,EA002-1,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +17041,Ag22,EA002,0-5%,EA002-0,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +17042,Ag23,EA002,0-5%,EA002-0,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +17043,Ag24,EA002,6-15%,EA002-1,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +17044,Ag25,EA002,0-5%,EA002-0,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +17045,Ag26,EA002,6-15%,EA002-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +17046,Ag27,EA002,6-15%,EA002-1,But the economy is primarily mercantile,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +17047,Ag28,EA002,0-5%,EA002-0,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +17048,Ag29,EA002,6-15%,EA002-1,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +17049,Ag3,EA002,0-5%,EA002-0,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +17050,Ag30,EA002,6-15%,EA002-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +17051,Ag31,EA002,6-15%,EA002-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +17052,Ag32,EA002,0-5%,EA002-0,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +17053,Ag33,EA002,0-5%,EA002-0,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +17054,Ag34,EA002,0-5%,EA002-0,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +17055,Ag35,EA002,6-15%,EA002-1,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +17056,Ag36,EA002,0-5%,EA002-0,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +17057,Ag37,EA002,6-15%,EA002-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +17058,Ag38,EA002,0-5%,EA002-0,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +17059,Ag39,EA002,0-5%,EA002-0,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +17060,Ag4,EA002,0-5%,EA002-0,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +17061,Ag40,EA002,6-15%,EA002-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +17062,Ag41,EA002,0-5%,EA002-0,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +17063,Ag42,EA002,6-15%,EA002-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +17064,Ag43,EA002,0-5%,EA002-0,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +17065,Ag44,EA002,0-5%,EA002-0,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +17066,Ag45,EA002,6-15%,EA002-1,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +17067,Ag46,EA002,0-5%,EA002-0,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +17068,Ag47,EA002,6-15%,EA002-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +17069,Ag48,EA002,6-15%,EA002-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +17070,Ag49,EA002,6-15%,EA002-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +17071,Ag5,EA002,6-15%,EA002-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +17072,Ag50,EA002,6-15%,EA002-1,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +17073,Ag51,EA002,0-5%,EA002-0,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +17074,Ag52,EA002,6-15%,EA002-1,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +17075,Ag53,EA002,6-15%,EA002-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +17076,Ag54,EA002,0-5%,EA002-0,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +17077,Ag6,EA002,0-5%,EA002-0,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +17078,Ag7,EA002,0-5%,EA002-0,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +17079,Ag8,EA002,6-15%,EA002-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +17080,Ag9,EA002,6-15%,EA002-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +17081,Ah1,EA002,6-15%,EA002-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17082,Ah10,EA002,6-15%,EA002-1,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +17083,Ah11,EA002,6-15%,EA002-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +17084,Ah12,EA002,6-15%,EA002-1,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +17085,Ah13,EA002,6-15%,EA002-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +17086,Ah14,EA002,0-5%,EA002-0,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +17087,Ah15,EA002,0-5%,EA002-0,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +17088,Ah16,EA002,0-5%,EA002-0,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +17089,Ah17,EA002,0-5%,EA002-0,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +17090,Ah18,EA002,0-5%,EA002-0,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +17091,Ah19,EA002,6-15%,EA002-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +17092,Ah2,EA002,6-15%,EA002-1,,meek1931a,,1920,EthnographicAtlas_1967_p74, +17093,Ah20,EA002,6-15%,EA002-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +17094,Ah21,EA002,6-15%,EA002-1,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17095,Ah22,EA002,0-5%,EA002-0,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +17096,Ah23,EA002,0-5%,EA002-0,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17097,Ah24,EA002,6-15%,EA002-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17098,Ah25,EA002,6-15%,EA002-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17099,Ah26,EA002,6-15%,EA002-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17100,Ah27,EA002,6-15%,EA002-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17101,Ah28,EA002,6-15%,EA002-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +17102,Ah29,EA002,0-5%,EA002-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17103,Ah3,EA002,16-25%,EA002-2,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +17104,Ah30,EA002,0-5%,EA002-0,,meek1931b,,1920,EthnographicAtlas_1967_p74, +17105,Ah31,EA002,6-15%,EA002-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +17106,Ah32,EA002,0-5%,EA002-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17107,Ah33,EA002,6-15%,EA002-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +17108,Ah34,EA002,0-5%,EA002-0,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +17109,Ah35,EA002,0-5%,EA002-0,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17110,Ah36,EA002,0-5%,EA002-0,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +17111,Ah37,EA002,0-5%,EA002-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17112,Ah38,EA002,0-5%,EA002-0,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +17113,Ah39,EA002,0-5%,EA002-0,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +17114,Ah4,EA002,0-5%,EA002-0,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +17115,Ah5,EA002,6-15%,EA002-1,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +17116,Ah6,EA002,16-25%,EA002-2,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +17117,Ah7,EA002,0-5%,EA002-0,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +17118,Ah8,EA002,6-15%,EA002-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +17119,Ah9,EA002,6-15%,EA002-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +17120,Ai1,EA002,16-25%,EA002-2,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +17121,Ai10,EA002,16-25%,EA002-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +17122,Ai11,EA002,16-25%,EA002-2,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +17123,Ai12,EA002,6-15%,EA002-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +17124,Ai13,EA002,6-15%,EA002-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +17125,Ai14,EA002,26-35%,EA002-3,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +17126,Ai15,EA002,0-5%,EA002-0,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +17127,Ai16,EA002,6-15%,EA002-1,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +17128,Ai17,EA002,6-15%,EA002-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +17129,Ai18,EA002,0-5%,EA002-0,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +17130,Ai19,EA002,0-5%,EA002-0,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +17131,Ai2,EA002,6-15%,EA002-1,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +17132,Ai20,EA002,0-5%,EA002-0,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +17133,Ai21,EA002,0-5%,EA002-0,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +17134,Ai22,EA002,6-15%,EA002-1,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +17135,Ai23,EA002,0-5%,EA002-0,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +17136,Ai24,EA002,0-5%,EA002-0,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +17137,Ai25,EA002,6-15%,EA002-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +17138,Ai26,EA002,6-15%,EA002-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +17139,Ai27,EA002,16-25%,EA002-2,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +17140,Ai28,EA002,16-25%,EA002-2,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +17141,Ai29,EA002,6-15%,EA002-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +17142,Ai3,EA002,16-25%,EA002-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +17143,Ai30,EA002,0-5%,EA002-0,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +17144,Ai31,EA002,16-25%,EA002-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +17145,Ai32,EA002,0-5%,EA002-0,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +17146,Ai33,EA002,6-15%,EA002-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +17147,Ai34,EA002,16-25%,EA002-2,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +17148,Ai35,EA002,6-15%,EA002-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +17149,Ai36,EA002,6-15%,EA002-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +17150,Ai37,EA002,0-5%,EA002-0,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +17151,Ai38,EA002,6-15%,EA002-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +17152,Ai39,EA002,6-15%,EA002-1,,nadel1947,,1940,EthnographicAtlas_1967_p74, +17153,Ai4,EA002,6-15%,EA002-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +17154,Ai40,EA002,6-15%,EA002-1,,nadel1947,,1940,EthnographicAtlas_1967_p74, +17155,Ai41,EA002,6-15%,EA002-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +17156,Ai42,EA002,6-15%,EA002-1,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +17157,Ai43,EA002,6-15%,EA002-1,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +17158,Ai44,EA002,6-15%,EA002-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +17159,Ai45,EA002,6-15%,EA002-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +17160,Ai46,EA002,6-15%,EA002-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +17161,Ai47,EA002,6-15%,EA002-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +17162,Ai5,EA002,6-15%,EA002-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +17163,Ai6,EA002,6-15%,EA002-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +17164,Ai7,EA002,6-15%,EA002-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +17165,Ai8,EA002,6-15%,EA002-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +17166,Ai9,EA002,6-15%,EA002-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +17167,Aj1,EA002,6-15%,EA002-1,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +17168,Aj10,EA002,6-15%,EA002-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +17169,Aj11,EA002,6-15%,EA002-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +17170,Aj12,EA002,16-25%,EA002-2,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +17171,Aj13,EA002,6-15%,EA002-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +17172,Aj14,EA002,0-5%,EA002-0,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +17173,Aj15,EA002,6-15%,EA002-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +17174,Aj16,EA002,6-15%,EA002-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +17175,Aj17,EA002,6-15%,EA002-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +17176,Aj18,EA002,16-25%,EA002-2,,jensen1959,,1950,EthnographicAtlas_1967_p78, +17177,Aj19,EA002,16-25%,EA002-2,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +17178,Aj2,EA002,6-15%,EA002-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +17179,Aj20,EA002,6-15%,EA002-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +17180,Aj21,EA002,0-5%,EA002-0,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +17181,Aj22,EA002,6-15%,EA002-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +17182,Aj23,EA002,6-15%,EA002-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +17183,Aj24,EA002,6-15%,EA002-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +17184,Aj25,EA002,6-15%,EA002-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +17185,Aj26,EA002,6-15%,EA002-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +17186,Aj27,EA002,16-25%,EA002-2,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +17187,Aj28,EA002,6-15%,EA002-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +17188,Aj29,EA002,6-15%,EA002-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +17189,Aj3,EA002,0-5%,EA002-0,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +17190,Aj30,EA002,0-5%,EA002-0,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +17191,Aj31,EA002,6-15%,EA002-1,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +17192,Aj4,EA002,6-15%,EA002-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +17193,Aj5,EA002,6-15%,EA002-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +17194,Aj6,EA002,6-15%,EA002-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +17195,Aj7,EA002,0-5%,EA002-0,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +17196,Aj8,EA002,6-15%,EA002-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +17197,Aj9,EA002,6-15%,EA002-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +17198,Ca1,EA002,0-5%,EA002-0,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +17199,Ca10,EA002,0-5%,EA002-0,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +17200,Ca11,EA002,6-15%,EA002-1,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +17201,Ca12,EA002,6-15%,EA002-1,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +17202,Ca13,EA002,6-15%,EA002-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +17203,Ca14,EA002,6-15%,EA002-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +17204,Ca15,EA002,6-15%,EA002-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +17205,Ca16,EA002,6-15%,EA002-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +17206,Ca17,EA002,6-15%,EA002-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +17207,Ca18,EA002,0-5%,EA002-0,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +17208,Ca19,EA002,6-15%,EA002-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +17209,Ca2,EA002,0-5%,EA002-0,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +17210,Ca20,EA002,6-15%,EA002-1,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +17211,Ca21,EA002,6-15%,EA002-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +17212,Ca22,EA002,0-5%,EA002-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +17213,Ca23,EA002,0-5%,EA002-0,,jensen1959,,1950,EthnographicAtlas_1967_p78, +17214,Ca24,EA002,6-15%,EA002-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +17215,Ca25,EA002,0-5%,EA002-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +17216,Ca26,EA002,0-5%,EA002-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +17217,Ca27,EA002,0-5%,EA002-0,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +17218,Ca28,EA002,0-5%,EA002-0,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +17219,Ca29,EA002,0-5%,EA002-0,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +17220,Ca3,EA002,0-5%,EA002-0,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +17221,Ca30,EA002,6-15%,EA002-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +17222,Ca31,EA002,0-5%,EA002-0,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +17223,Ca32,EA002,0-5%,EA002-0,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +17224,Ca33,EA002,6-15%,EA002-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +17225,Ca34,EA002,6-15%,EA002-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +17226,Ca35,EA002,0-5%,EA002-0,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +17227,Ca36,EA002,6-15%,EA002-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +17228,Ca37,EA002,0-5%,EA002-0,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +17229,Ca38,EA002,0-5%,EA002-0,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +17230,Ca39,EA002,0-5%,EA002-0,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +17231,Ca4,EA002,0-5%,EA002-0,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +17232,Ca40,EA002,0-5%,EA002-0,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +17233,Ca41,EA002,0-5%,EA002-0,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +17234,Ca42,EA002,6-15%,EA002-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +17235,Ca43,EA002,6-15%,EA002-1,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +17236,Ca5,EA002,0-5%,EA002-0,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +17237,Ca6,EA002,0-5%,EA002-0,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +17238,Ca7,EA002,0-5%,EA002-0,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +17239,Ca8,EA002,0-5%,EA002-0,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +17240,Ca9,EA002,0-5%,EA002-0,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +17241,Cb1,EA002,0-5%,EA002-0,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +17242,Cb10,EA002,6-15%,EA002-1,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +17243,Cb11,EA002,0-5%,EA002-0,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +17244,Cb12,EA002,0-5%,EA002-0,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +17245,Cb13,EA002,6-15%,EA002-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +17246,Cb14,EA002,0-5%,EA002-0,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +17247,Cb15,EA002,0-5%,EA002-0,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +17248,Cb16,EA002,6-15%,EA002-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +17249,Cb17,EA002,0-5%,EA002-0,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +17250,Cb18,EA002,0-5%,EA002-0,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +17251,Cb19,EA002,0-5%,EA002-0,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +17252,Cb2,EA002,0-5%,EA002-0,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +17253,Cb20,EA002,0-5%,EA002-0,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +17254,Cb21,EA002,0-5%,EA002-0,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +17255,Cb22,EA002,0-5%,EA002-0,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +17256,Cb23,EA002,0-5%,EA002-0,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +17257,Cb24,EA002,0-5%,EA002-0,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +17258,Cb25,EA002,0-5%,EA002-0,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +17259,Cb26,EA002,0-5%,EA002-0,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +17260,Cb27,EA002,6-15%,EA002-1,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17261,Cb28,EA002,0-5%,EA002-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17262,Cb29,EA002,0-5%,EA002-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +17263,Cb3,EA002,0-5%,EA002-0,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +17264,Cb4,EA002,0-5%,EA002-0,,reid1930,,1920,EthnographicAtlas_1967_p78, +17265,Cb5,EA002,0-5%,EA002-0,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +17266,Cb6,EA002,6-15%,EA002-1,,woodnd,,1920,EthnographicAtlas_1967_p78, +17267,Cb7,EA002,6-15%,EA002-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +17268,Cb8,EA002,0-5%,EA002-0,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +17269,Cb9,EA002,0-5%,EA002-0,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +17270,Cc1,EA002,6-15%,EA002-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +17271,Cc10,EA002,6-15%,EA002-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +17272,Cc11,EA002,6-15%,EA002-1,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +17273,Cc12,EA002,6-15%,EA002-1,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +17274,Cc13,EA002,0-5%,EA002-0,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +17275,Cc14,EA002,6-15%,EA002-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +17276,Cc15,EA002,0-5%,EA002-0,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +17277,Cc16,EA002,6-15%,EA002-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +17278,Cc17,EA002,16-25%,EA002-2,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +17279,Cc18,EA002,0-5%,EA002-0,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +17280,Cc19,EA002,6-15%,EA002-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +17281,Cc2,EA002,0-5%,EA002-0,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +17282,Cc20,EA002,0-5%,EA002-0,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +17283,Cc3,EA002,0-5%,EA002-0,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +17284,Cc4,EA002,0-5%,EA002-0,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +17285,Cc5,EA002,6-15%,EA002-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +17286,Cc6,EA002,6-15%,EA002-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +17287,Cc7,EA002,0-5%,EA002-0,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17288,Cc8,EA002,6-15%,EA002-1,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +17289,Cc9,EA002,6-15%,EA002-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +17290,Cd1,EA002,0-5%,EA002-0,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +17291,Cd10,EA002,6-15%,EA002-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +17292,Cd11,EA002,0-5%,EA002-0,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +17293,Cd12,EA002,0-5%,EA002-0,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +17294,Cd13,EA002,0-5%,EA002-0,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +17295,Cd14,EA002,0-5%,EA002-0,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +17296,Cd15,EA002,0-5%,EA002-0,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +17297,Cd16,EA002,0-5%,EA002-0,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +17298,Cd17,EA002,6-15%,EA002-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +17299,Cd18,EA002,6-15%,EA002-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +17300,Cd19,EA002,0-5%,EA002-0,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +17301,Cd2,EA002,0-5%,EA002-0,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +17302,Cd20,EA002,0-5%,EA002-0,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +17303,Cd21,EA002,0-5%,EA002-0,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +17304,Cd3,EA002,6-15%,EA002-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +17305,Cd4,EA002,0-5%,EA002-0,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +17306,Cd5,EA002,0-5%,EA002-0,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +17307,Cd6,EA002,0-5%,EA002-0,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +17308,Cd7,EA002,6-15%,EA002-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +17309,Cd8,EA002,0-5%,EA002-0,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +17310,Cd9,EA002,0-5%,EA002-0,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +17311,Ce1,EA002,0-5%,EA002-0,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +17312,Ce2,EA002,0-5%,EA002-0,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +17313,Ce3,EA002,0-5%,EA002-0,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +17314,Ce4,EA002,0-5%,EA002-0,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17315,Ce5,EA002,0-5%,EA002-0,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +17316,Ce6,EA002,0-5%,EA002-0,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +17317,Ce7,EA002,0-5%,EA002-0,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +17318,Ce8,EA002,0-5%,EA002-0,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +17319,Cf1,EA002,0-5%,EA002-0,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +17320,Cf2,EA002,6-15%,EA002-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +17321,Cf3,EA002,0-5%,EA002-0,,munch1945,,1930,EthnographicAtlas_1967_p82, +17322,Cf4,EA002,6-15%,EA002-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +17323,Cf5,EA002,0-5%,EA002-0,,miner1939,,1930,EthnographicAtlas_1967_p82, +17324,Cg1,EA002,0-5%,EA002-0,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +17325,Cg2,EA002,16-25%,EA002-2,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +17326,Cg3,EA002,6-15%,EA002-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +17327,Cg4,EA002,16-25%,EA002-2,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +17328,Cg5,EA002,0-5%,EA002-0,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +17329,Ch1,EA002,0-5%,EA002-0,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +17330,Ch10,EA002,0-5%,EA002-0,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +17331,Ch11,EA002,0-5%,EA002-0,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +17332,Ch2,EA002,6-15%,EA002-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +17333,Ch3,EA002,0-5%,EA002-0,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +17334,Ch4,EA002,0-5%,EA002-0,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +17335,Ch5,EA002,0-5%,EA002-0,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +17336,Ch6,EA002,0-5%,EA002-0,,ember1954,,1910,EthnographicAtlas_1967_p82, +17337,Ch7,EA002,0-5%,EA002-0,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +17338,Ch8,EA002,0-5%,EA002-0,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +17339,Ch9,EA002,0-5%,EA002-0,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +17340,Ci1,EA002,6-15%,EA002-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +17341,Ci10,EA002,0-5%,EA002-0,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +17342,Ci11,EA002,0-5%,EA002-0,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +17343,Ci12,EA002,0-5%,EA002-0,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +17344,Ci2,EA002,6-15%,EA002-1,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +17345,Ci3,EA002,0-5%,EA002-0,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +17346,Ci4,EA002,6-15%,EA002-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +17347,Ci5,EA002,0-5%,EA002-0,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +17348,Ci6,EA002,6-15%,EA002-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +17349,Ci7,EA002,0-5%,EA002-0,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +17350,Ci8,EA002,0-5%,EA002-0,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +17351,Ci9,EA002,6-15%,EA002-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +17352,Cj1,EA002,0-5%,EA002-0,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +17353,Cj10,EA002,0-5%,EA002-0,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +17354,Cj2,EA002,6-15%,EA002-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +17355,Cj3,EA002,16-25%,EA002-2,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +17356,Cj4,EA002,0-5%,EA002-0,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +17357,Cj5,EA002,6-15%,EA002-1,,dickson1949,,1930,EthnographicAtlas_1967_p86, +17358,Cj6,EA002,0-5%,EA002-0,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +17359,Cj7,EA002,0-5%,EA002-0,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +17360,Cj8,EA002,0-5%,EA002-0,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +17361,Cj9,EA002,0-5%,EA002-0,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +17362,Ea1,EA002,0-5%,EA002-0,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +17363,Ea10,EA002,0-5%,EA002-0,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +17364,Ea11,EA002,0-5%,EA002-0,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +17365,Ea12,EA002,6-15%,EA002-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +17366,Ea13,EA002,0-5%,EA002-0,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +17367,Ea2,EA002,0-5%,EA002-0,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +17368,Ea3,EA002,0-5%,EA002-0,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +17369,Ea4,EA002,6-15%,EA002-1,,barth1956b,,1950,EthnographicAtlas_1967_p86, +17370,Ea5,EA002,6-15%,EA002-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +17371,Ea6,EA002,6-15%,EA002-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +17372,Ea7,EA002,0-5%,EA002-0,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +17373,Ea8,EA002,6-15%,EA002-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +17374,Ea9,EA002,0-5%,EA002-0,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +17375,Eb1,EA002,6-15%,EA002-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +17376,Eb2,EA002,0-5%,EA002-0,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +17377,Eb3,EA002,6-15%,EA002-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +17378,Eb4,EA002,6-15%,EA002-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +17379,Eb5,EA002,0-5%,EA002-0,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +17380,Eb6,EA002,16-25%,EA002-2,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +17381,Eb7,EA002,6-15%,EA002-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +17382,Eb8,EA002,6-15%,EA002-1,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +17383,Ec1,EA002,26-35%,EA002-3,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +17384,Ec10,EA002,26-35%,EA002-3,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +17385,Ec11,EA002,16-25%,EA002-2,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +17386,Ec2,EA002,16-25%,EA002-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17387,Ec3,EA002,16-25%,EA002-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +17388,Ec4,EA002,26-35%,EA002-3,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +17389,Ec5,EA002,6-15%,EA002-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +17390,Ec6,EA002,46-55%,EA002-5,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +17391,Ec7,EA002,26-35%,EA002-3,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +17392,Ec8,EA002,26-35%,EA002-3,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +17393,Ec9,EA002,26-35%,EA002-3,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +17394,Ed1,EA002,0-5%,EA002-0,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +17395,Ed10,EA002,0-5%,EA002-0,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +17396,Ed13,EA002,0-5%,EA002-0,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +17397,Ed14,EA002,6-15%,EA002-1,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +17398,Ed15a,EA002,0-5%,EA002-0,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +17399,Ed15b,EA002,0-5%,EA002-0,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +17400,Ed16,EA002,0-5%,EA002-0,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +17401,Ed2,EA002,6-15%,EA002-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +17402,Ed3,EA002,0-5%,EA002-0,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +17403,Ed4,EA002,6-15%,EA002-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +17404,Ed5,EA002,0-5%,EA002-0,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17405,Ed6,EA002,0-5%,EA002-0,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +17406,Ed7,EA002,0-5%,EA002-0,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +17407,Ed8,EA002,0-5%,EA002-0,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +17408,Ed9,EA002,6-15%,EA002-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +17409,Ee1,EA002,16-25%,EA002-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +17410,Ee2,EA002,0-5%,EA002-0,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +17411,Ee3,EA002,6-15%,EA002-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +17412,Ee4,EA002,0-5%,EA002-0,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +17413,Ee5,EA002,6-15%,EA002-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +17414,Ee6,EA002,0-5%,EA002-0,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +17415,Ee7,EA002,6-15%,EA002-1,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +17416,Ee8,EA002,0-5%,EA002-0,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +17417,Ef1,EA002,6-15%,EA002-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +17418,Ef10,EA002,0-5%,EA002-0,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17419,Ef11,EA002,0-5%,EA002-0,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +17420,Ef2,EA002,0-5%,EA002-0,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +17421,Ef3,EA002,6-15%,EA002-1,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +17422,Ef4,EA002,6-15%,EA002-1,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +17423,Ef5,EA002,6-15%,EA002-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +17424,Ef6,EA002,0-5%,EA002-0,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +17425,Ef7,EA002,0-5%,EA002-0,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +17426,Ef8,EA002,0-5%,EA002-0,But the Pandit themselves do not engage in food production,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +17427,Ef9,EA002,0-5%,EA002-0,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17428,Eg1,EA002,6-15%,EA002-1,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17429,Eg10,EA002,0-5%,EA002-0,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +17430,Eg11,EA002,0-5%,EA002-0,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +17431,Eg12,EA002,0-5%,EA002-0,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +17432,Eg13,EA002,16-25%,EA002-2,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17433,Eg14,EA002,0-5%,EA002-0,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +17434,Eg2,EA002,0-5%,EA002-0,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +17435,Eg3,EA002,6-15%,EA002-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +17436,Eg4,EA002,0-5%,EA002-0,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +17437,Eg5,EA002,6-15%,EA002-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +17438,Eg6,EA002,0-5%,EA002-0,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +17439,Eg7,EA002,6-15%,EA002-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +17440,Eg8,EA002,0-5%,EA002-0,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +17441,Eg9,EA002,6-15%,EA002-1,,elwin1939,,1930,EthnographicAtlas_1967_p90, +17442,Eh1,EA002,16-25%,EA002-2,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +17443,Eh10,EA002,0-5%,EA002-0,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +17444,Eh2,EA002,0-5%,EA002-0,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +17445,Eh3,EA002,0-5%,EA002-0,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +17446,Eh4,EA002,26-35%,EA002-3,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17447,Eh5,EA002,6-15%,EA002-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +17448,Eh6,EA002,0-5%,EA002-0,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +17449,Eh7,EA002,0-5%,EA002-0,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +17450,Eh8,EA002,0-5%,EA002-0,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +17451,Eh9,EA002,0-5%,EA002-0,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +17452,Ei1,EA002,0-5%,EA002-0,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17453,Ei10,EA002,6-15%,EA002-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +17454,Ei11,EA002,16-25%,EA002-2,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +17455,Ei12,EA002,16-25%,EA002-2,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +17456,Ei13,EA002,6-15%,EA002-1,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +17457,Ei14,EA002,6-15%,EA002-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +17458,Ei15,EA002,16-25%,EA002-2,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +17459,Ei16,EA002,6-15%,EA002-1,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +17460,Ei17,EA002,16-25%,EA002-2,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +17461,Ei18,EA002,0-5%,EA002-0,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +17462,Ei19,EA002,16-25%,EA002-2,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +17463,Ei2,EA002,6-15%,EA002-1,,mills1922,,1920,EthnographicAtlas_1967_p90, +17464,Ei20,EA002,6-15%,EA002-1,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +17465,Ei3,EA002,0-5%,EA002-0,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +17466,Ei4,EA002,16-25%,EA002-2,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +17467,Ei5,EA002,6-15%,EA002-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +17468,Ei6,EA002,6-15%,EA002-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +17469,Ei7,EA002,6-15%,EA002-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +17470,Ei8,EA002,6-15%,EA002-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +17471,Ei9,EA002,6-15%,EA002-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +17472,Ej1,EA002,16-25%,EA002-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +17473,Ej10,EA002,6-15%,EA002-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +17474,Ej11,EA002,0-5%,EA002-0,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +17475,Ej12,EA002,0-5%,EA002-0,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +17476,Ej13,EA002,6-15%,EA002-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +17477,Ej14,EA002,6-15%,EA002-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17478,Ej15,EA002,0-5%,EA002-0,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +17479,Ej16,EA002,0-5%,EA002-0,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +17480,Ej2,EA002,0-5%,EA002-0,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +17481,Ej3,EA002,26-35%,EA002-3,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +17482,Ej4,EA002,0-5%,EA002-0,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +17483,Ej5,EA002,0-5%,EA002-0,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +17484,Ej6,EA002,6-15%,EA002-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +17485,Ej7,EA002,16-25%,EA002-2,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +17486,Ej8,EA002,0-5%,EA002-0,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +17487,Ej9,EA002,0-5%,EA002-0,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +17488,Ia1,EA002,16-25%,EA002-2,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +17489,Ia10,EA002,26-35%,EA002-3,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +17490,Ia11,EA002,6-15%,EA002-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +17491,Ia12,EA002,0-5%,EA002-0,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +17492,Ia13,EA002,0-5%,EA002-0,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +17493,Ia14,EA002,0-5%,EA002-0,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +17494,Ia15,EA002,6-15%,EA002-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +17495,Ia16,EA002,16-25%,EA002-2,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +17496,Ia17,EA002,6-15%,EA002-1,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +17497,Ia18,EA002,0-5%,EA002-0,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +17498,Ia2,EA002,0-5%,EA002-0,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +17499,Ia3,EA002,16-25%,EA002-2,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +17500,Ia4,EA002,0-5%,EA002-0,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +17501,Ia5,EA002,0-5%,EA002-0,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +17502,Ia6,EA002,16-25%,EA002-2,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17503,Ia7,EA002,6-15%,EA002-1,,fox1954,,1950,EthnographicAtlas_1967_p90, +17504,Ia8,EA002,6-15%,EA002-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +17505,Ia9,EA002,6-15%,EA002-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +17506,Ib1,EA002,0-5%,EA002-0,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17507,Ib2,EA002,0-5%,EA002-0,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17508,Ib3,EA002,0-5%,EA002-0,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +17509,Ib4,EA002,0-5%,EA002-0,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +17510,Ib5,EA002,6-15%,EA002-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +17511,Ib6,EA002,0-5%,EA002-0,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +17512,Ib7,EA002,6-15%,EA002-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +17513,Ib8,EA002,26-35%,EA002-3,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +17514,Ib9,EA002,6-15%,EA002-1,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +17515,Ic1,EA002,0-5%,EA002-0,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17516,Ic10,EA002,6-15%,EA002-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +17517,Ic11,EA002,0-5%,EA002-0,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17518,Ic12,EA002,6-15%,EA002-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +17519,Ic13,EA002,0-5%,EA002-0,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +17520,Ic2,EA002,0-5%,EA002-0,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +17521,Ic3,EA002,0-5%,EA002-0,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +17522,Ic4,EA002,0-5%,EA002-0,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +17523,Ic5,EA002,16-25%,EA002-2,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +17524,Ic6,EA002,6-15%,EA002-1,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +17525,Ic7,EA002,6-15%,EA002-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +17526,Ic8,EA002,6-15%,EA002-1,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +17527,Ic9,EA002,6-15%,EA002-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +17528,Id1,EA002,36-45%,EA002-4,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +17529,Id10,EA002,36-45%,EA002-4,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +17530,Id11,EA002,26-35%,EA002-3,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +17531,Id12,EA002,26-35%,EA002-3,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +17532,Id13,EA002,6-15%,EA002-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +17533,Id2,EA002,26-35%,EA002-3,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +17534,Id3,EA002,26-35%,EA002-3,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +17535,Id4,EA002,26-35%,EA002-3,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +17536,Id5,EA002,46-55%,EA002-5,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +17537,Id6,EA002,36-45%,EA002-4,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +17538,Id7,EA002,16-25%,EA002-2,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +17539,Id8,EA002,36-45%,EA002-4,,roth1890,,1830,EthnographicAtlas_1967_p94, +17540,Id9,EA002,26-35%,EA002-3,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +17541,Ie1,EA002,6-15%,EA002-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17542,Ie10,EA002,0-5%,EA002-0,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +17543,Ie11,EA002,6-15%,EA002-1,,bowers1964,,1950,EthnographicAtlas_1967_p94, +17544,Ie12,EA002,16-25%,EA002-2,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17545,Ie13,EA002,16-25%,EA002-2,,landtman1927,,1920,EthnographicAtlas_1967_p94, +17546,Ie14,EA002,0-5%,EA002-0,,haddon1908,,1900,EthnographicAtlas_1967_p94, +17547,Ie15,EA002,6-15%,EA002-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17548,Ie16,EA002,6-15%,EA002-1,,williams194041,,1940,EthnographicAtlas_1967_p94, +17549,Ie17,EA002,6-15%,EA002-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +17550,Ie18,EA002,6-15%,EA002-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +17551,Ie19,EA002,16-25%,EA002-2,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +17552,Ie2,EA002,16-25%,EA002-2,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +17553,Ie20,EA002,16-25%,EA002-2,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +17554,Ie21,EA002,0-5%,EA002-0,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +17555,Ie22,EA002,6-15%,EA002-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +17556,Ie23,EA002,6-15%,EA002-1,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +17557,Ie24,EA002,16-25%,EA002-2,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +17558,Ie25,EA002,6-15%,EA002-1,,williamson1912,,1920,EthnographicAtlas_1967_p94, +17559,Ie26,EA002,16-25%,EA002-2,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +17560,Ie27,EA002,6-15%,EA002-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +17561,Ie28,EA002,6-15%,EA002-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +17562,Ie29,EA002,0-5%,EA002-0,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17563,Ie3,EA002,6-15%,EA002-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17564,Ie30,EA002,6-15%,EA002-1,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +17565,Ie31,EA002,6-15%,EA002-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +17566,Ie32,EA002,6-15%,EA002-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +17567,Ie33,EA002,16-25%,EA002-2,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +17568,Ie34,EA002,16-25%,EA002-2,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +17569,Ie35,EA002,0-5%,EA002-0,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +17570,Ie36,EA002,26-35%,EA002-3,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +17571,Ie37,EA002,16-25%,EA002-2,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +17572,Ie38,EA002,0-5%,EA002-0,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +17573,Ie39,EA002,6-15%,EA002-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +17574,Ie4,EA002,0-5%,EA002-0,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17575,Ie5,EA002,6-15%,EA002-1,,williams1936,,1930,EthnographicAtlas_1967_p94, +17576,Ie6,EA002,6-15%,EA002-1,,held1947,,1930,EthnographicAtlas_1967_p94, +17577,Ie7,EA002,6-15%,EA002-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +17578,Ie8,EA002,6-15%,EA002-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +17579,Ie9,EA002,6-15%,EA002-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +17580,If1,EA002,0-5%,EA002-0,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17581,If10,EA002,0-5%,EA002-0,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +17582,If11,EA002,0-5%,EA002-0,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +17583,If12,EA002,0-5%,EA002-0,,mason1954,,1940,EthnographicAtlas_1967_p98, +17584,If13,EA002,0-5%,EA002-0,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +17585,If14,EA002,6-15%,EA002-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +17586,If15,EA002,0-5%,EA002-0,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +17587,If16,EA002,0-5%,EA002-0,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +17588,If17,EA002,0-5%,EA002-0,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +17589,If2,EA002,0-5%,EA002-0,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +17590,If3,EA002,0-5%,EA002-0,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +17591,If4,EA002,0-5%,EA002-0,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +17592,If5,EA002,0-5%,EA002-0,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +17593,If6,EA002,0-5%,EA002-0,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +17594,If7,EA002,0-5%,EA002-0,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +17595,If8,EA002,0-5%,EA002-0,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +17596,If9,EA002,0-5%,EA002-0,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +17597,Ig1,EA002,6-15%,EA002-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +17598,Ig10,EA002,0-5%,EA002-0,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +17599,Ig11,EA002,6-15%,EA002-1,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +17600,Ig12,EA002,6-15%,EA002-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +17601,Ig13,EA002,6-15%,EA002-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +17602,Ig14,EA002,6-15%,EA002-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +17603,Ig15,EA002,6-15%,EA002-1,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +17604,Ig16,EA002,0-5%,EA002-0,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +17605,Ig17,EA002,0-5%,EA002-0,Primarily traders,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +17606,Ig18,EA002,16-25%,EA002-2,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +17607,Ig19,EA002,0-5%,EA002-0,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +17608,Ig2,EA002,0-5%,EA002-0,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +17609,Ig20,EA002,0-5%,EA002-0,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +17610,Ig21,EA002,0-5%,EA002-0,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +17611,Ig3,EA002,6-15%,EA002-1,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +17612,Ig4,EA002,6-15%,EA002-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +17613,Ig5,EA002,0-5%,EA002-0,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +17614,Ig6,EA002,6-15%,EA002-1,,ivens1927,,1900,EthnographicAtlas_1967_p98, +17615,Ig7,EA002,6-15%,EA002-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +17616,Ig8,EA002,0-5%,EA002-0,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +17617,Ig9,EA002,0-5%,EA002-0,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +17618,Ih1,EA002,0-5%,EA002-0,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +17619,Ih10,EA002,0-5%,EA002-0,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17620,Ih11,EA002,0-5%,EA002-0,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +17621,Ih12,EA002,0-5%,EA002-0,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +17622,Ih13,EA002,0-5%,EA002-0,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +17623,Ih14,EA002,0-5%,EA002-0,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +17624,Ih2,EA002,6-15%,EA002-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17625,Ih3,EA002,0-5%,EA002-0,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +17626,Ih4,EA002,0-5%,EA002-0,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17627,Ih5,EA002,0-5%,EA002-0,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +17628,Ih6,EA002,0-5%,EA002-0,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +17629,Ih7,EA002,0-5%,EA002-0,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +17630,Ih8,EA002,6-15%,EA002-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +17631,Ih9,EA002,6-15%,EA002-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17632,Ii1,EA002,0-5%,EA002-0,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +17633,Ii10,EA002,0-5%,EA002-0,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +17634,Ii12,EA002,0-5%,EA002-0,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17635,Ii13,EA002,0-5%,EA002-0,,burrows1937,,1830,EthnographicAtlas_1967_p98, +17636,Ii14,EA002,0-5%,EA002-0,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +17637,Ii2,EA002,0-5%,EA002-0,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +17638,Ii3,EA002,0-5%,EA002-0,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +17639,Ii4,EA002,0-5%,EA002-0,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +17640,Ii5,EA002,0-5%,EA002-0,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +17641,Ii6,EA002,0-5%,EA002-0,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +17642,Ii7,EA002,0-5%,EA002-0,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +17643,Ii8,EA002,0-5%,EA002-0,,burrows1936,,1840,EthnographicAtlas_1967_p98, +17644,Ii9,EA002,0-5%,EA002-0,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +17645,Ij1,EA002,0-5%,EA002-0,,buck1934,,1820,EthnographicAtlas_1967_p98, +17646,Ij10,EA002,0-5%,EA002-0,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +17647,Ij2,EA002,6-15%,EA002-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +17648,Ij3,EA002,0-5%,EA002-0,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +17649,Ij4,EA002,0-5%,EA002-0,,buck1932a,,1850,EthnographicAtlas_1967_p102, +17650,Ij5,EA002,0-5%,EA002-0,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +17651,Ij6,EA002,0-5%,EA002-0,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +17652,Ij7,EA002,0-5%,EA002-0,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +17653,Ij8,EA002,0-5%,EA002-0,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +17654,Ij9,EA002,6-15%,EA002-1,,metraux1940,,1860,EthnographicAtlas_1967_p102, +17655,Na1,EA002,56-65%,EA002-6,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +17656,Na10,EA002,16-25%,EA002-2,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +17657,Na11,EA002,16-25%,EA002-2,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +17658,Na12,EA002,66-75%,EA002-7,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +17659,Na13,EA002,16-25%,EA002-2,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +17660,Na14,EA002,36-45%,EA002-4,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +17661,Na15,EA002,26-35%,EA002-3,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +17662,Na16,EA002,36-45%,EA002-4,,osgood1931,,1860,EthnographicAtlas_1967_p102, +17663,Na17,EA002,46-55%,EA002-5,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17664,Na19,EA002,36-45%,EA002-4,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +17665,Na2,EA002,26-35%,EA002-3,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +17666,Na20,EA002,36-45%,EA002-4,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +17667,Na21,EA002,46-55%,EA002-5,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +17668,Na22,EA002,46-55%,EA002-5,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +17669,Na23,EA002,36-45%,EA002-4,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +17670,Na24,EA002,16-25%,EA002-2,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +17671,Na25,EA002,16-25%,EA002-2,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +17672,Na26,EA002,36-45%,EA002-4,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +17673,Na27,EA002,46-55%,EA002-5,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +17674,Na28,EA002,46-55%,EA002-5,,jenness1937,,1880,EthnographicAtlas_1967_p102, +17675,Na29,EA002,46-55%,EA002-5,,goddard1916,,1850,EthnographicAtlas_1967_p102, +17676,Na3,EA002,36-45%,EA002-4,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +17677,Na30,EA002,56-65%,EA002-6,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +17678,Na31,EA002,46-55%,EA002-5,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +17679,Na32,EA002,56-65%,EA002-6,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +17680,Na33,EA002,36-45%,EA002-4,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +17681,Na34,EA002,36-45%,EA002-4,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +17682,Na35,EA002,46-55%,EA002-5,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +17683,Na36,EA002,16-25%,EA002-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +17684,Na37,EA002,36-45%,EA002-4,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +17685,Na38,EA002,26-35%,EA002-3,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +17686,Na39,EA002,26-35%,EA002-3,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +17687,Na4,EA002,36-45%,EA002-4,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +17688,Na40,EA002,36-45%,EA002-4,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +17689,Na41,EA002,46-55%,EA002-5,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +17690,Na42,EA002,46-55%,EA002-5,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +17691,Na43,EA002,36-45%,EA002-4,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +17692,Na44,EA002,56-65%,EA002-6,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +17693,Na45,EA002,56-65%,EA002-6,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +17694,Na5,EA002,66-75%,EA002-7,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +17695,Na6,EA002,26-35%,EA002-3,,lantis1946,,1930,EthnographicAtlas_1967_p102, +17696,Na7,EA002,26-35%,EA002-3,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +17697,Na8,EA002,36-45%,EA002-4,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +17698,Na9,EA002,26-35%,EA002-3,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17699,Nb1,EA002,16-25%,EA002-2,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +17700,Nb10,EA002,36-45%,EA002-4,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +17701,Nb11,EA002,16-25%,EA002-2,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +17702,Nb12,EA002,26-35%,EA002-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +17703,Nb13,EA002,26-35%,EA002-3,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +17704,Nb14,EA002,26-35%,EA002-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +17705,Nb15,EA002,16-25%,EA002-2,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +17706,Nb16,EA002,26-35%,EA002-3,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +17707,Nb17,EA002,16-25%,EA002-2,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +17708,Nb18,EA002,26-35%,EA002-3,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +17709,Nb19,EA002,16-25%,EA002-2,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +17710,Nb2,EA002,26-35%,EA002-3,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +17711,Nb20,EA002,26-35%,EA002-3,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +17712,Nb21,EA002,26-35%,EA002-3,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +17713,Nb22,EA002,26-35%,EA002-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +17714,Nb23,EA002,26-35%,EA002-3,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +17715,Nb24,EA002,16-25%,EA002-2,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +17716,Nb25,EA002,26-35%,EA002-3,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +17717,Nb26,EA002,26-35%,EA002-3,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +17718,Nb27,EA002,26-35%,EA002-3,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +17719,Nb28,EA002,16-25%,EA002-2,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +17720,Nb29,EA002,26-35%,EA002-3,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +17721,Nb3,EA002,16-25%,EA002-2,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +17722,Nb30,EA002,26-35%,EA002-3,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +17723,Nb31,EA002,16-25%,EA002-2,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +17724,Nb32,EA002,26-35%,EA002-3,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +17725,Nb33,EA002,26-35%,EA002-3,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +17726,Nb34,EA002,6-15%,EA002-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +17727,Nb35,EA002,6-15%,EA002-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +17728,Nb36,EA002,6-15%,EA002-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +17729,Nb37,EA002,26-35%,EA002-3,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +17730,Nb38,EA002,36-45%,EA002-4,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +17731,Nb39,EA002,26-35%,EA002-3,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +17732,Nb4,EA002,6-15%,EA002-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +17733,Nb5,EA002,26-35%,EA002-3,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +17734,Nb6,EA002,16-25%,EA002-2,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +17735,Nb7,EA002,16-25%,EA002-2,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +17736,Nb8,EA002,26-35%,EA002-3,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +17737,Nb9,EA002,16-25%,EA002-2,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +17738,Nc1,EA002,26-35%,EA002-3,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +17739,Nc10,EA002,36-45%,EA002-4,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +17740,Nc11,EA002,16-25%,EA002-2,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +17741,Nc12,EA002,26-35%,EA002-3,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +17742,Nc13,EA002,26-35%,EA002-3,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +17743,Nc14,EA002,26-35%,EA002-3,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +17744,Nc15,EA002,16-25%,EA002-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +17745,Nc16,EA002,26-35%,EA002-3,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +17746,Nc17,EA002,26-35%,EA002-3,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +17747,Nc18,EA002,26-35%,EA002-3,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +17748,Nc19,EA002,26-35%,EA002-3,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +17749,Nc2,EA002,26-35%,EA002-3,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +17750,Nc20,EA002,26-35%,EA002-3,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +17751,Nc21,EA002,26-35%,EA002-3,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +17752,Nc22,EA002,26-35%,EA002-3,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +17753,Nc23,EA002,26-35%,EA002-3,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +17754,Nc24,EA002,16-25%,EA002-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +17755,Nc25,EA002,26-35%,EA002-3,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +17756,Nc26,EA002,26-35%,EA002-3,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +17757,Nc27,EA002,26-35%,EA002-3,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +17758,Nc28,EA002,6-15%,EA002-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +17759,Nc29,EA002,16-25%,EA002-2,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +17760,Nc3,EA002,26-35%,EA002-3,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +17761,Nc30,EA002,36-45%,EA002-4,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +17762,Nc31,EA002,36-45%,EA002-4,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +17763,Nc32,EA002,36-45%,EA002-4,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +17764,Nc33,EA002,16-25%,EA002-2,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +17765,Nc34,EA002,26-35%,EA002-3,,meigs1939,,1880,EthnographicAtlas_1967_p106, +17766,Nc4,EA002,26-35%,EA002-3,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +17767,Nc5,EA002,26-35%,EA002-3,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +17768,Nc6,EA002,36-45%,EA002-4,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +17769,Nc7,EA002,26-35%,EA002-3,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +17770,Nc8,EA002,16-25%,EA002-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +17771,Nc9,EA002,26-35%,EA002-3,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +17772,Nd1,EA002,16-25%,EA002-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +17773,Nd10,EA002,26-35%,EA002-3,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +17774,Nd11,EA002,26-35%,EA002-3,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +17775,Nd12,EA002,36-45%,EA002-4,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +17776,Nd13,EA002,36-45%,EA002-4,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +17777,Nd14,EA002,36-45%,EA002-4,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +17778,Nd15,EA002,26-35%,EA002-3,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +17779,Nd16,EA002,26-35%,EA002-3,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +17780,Nd17,EA002,26-35%,EA002-3,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +17781,Nd18,EA002,16-25%,EA002-2,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +17782,Nd19,EA002,26-35%,EA002-3,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +17783,Nd2,EA002,56-65%,EA002-6,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +17784,Nd20,EA002,26-35%,EA002-3,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +17785,Nd21,EA002,26-35%,EA002-3,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +17786,Nd22,EA002,26-35%,EA002-3,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +17787,Nd23,EA002,26-35%,EA002-3,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +17788,Nd24,EA002,36-45%,EA002-4,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +17789,Nd25,EA002,26-35%,EA002-3,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +17790,Nd26,EA002,26-35%,EA002-3,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +17791,Nd27,EA002,16-25%,EA002-2,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +17792,Nd28,EA002,26-35%,EA002-3,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +17793,Nd29,EA002,26-35%,EA002-3,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +17794,Nd3,EA002,16-25%,EA002-2,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +17795,Nd30,EA002,36-45%,EA002-4,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +17796,Nd31,EA002,26-35%,EA002-3,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +17797,Nd32,EA002,36-45%,EA002-4,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +17798,Nd33,EA002,16-25%,EA002-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +17799,Nd34,EA002,36-45%,EA002-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +17800,Nd35,EA002,26-35%,EA002-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +17801,Nd36,EA002,26-35%,EA002-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +17802,Nd37,EA002,26-35%,EA002-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +17803,Nd38,EA002,26-35%,EA002-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +17804,Nd39,EA002,36-45%,EA002-4,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +17805,Nd4,EA002,16-25%,EA002-2,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +17806,Nd40,EA002,26-35%,EA002-3,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +17807,Nd41,EA002,26-35%,EA002-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +17808,Nd42,EA002,16-25%,EA002-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +17809,Nd43,EA002,36-45%,EA002-4,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +17810,Nd44,EA002,16-25%,EA002-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +17811,Nd45,EA002,46-55%,EA002-5,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +17812,Nd46,EA002,26-35%,EA002-3,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +17813,Nd47,EA002,36-45%,EA002-4,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +17814,Nd48,EA002,36-45%,EA002-4,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +17815,Nd49,EA002,26-35%,EA002-3,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +17816,Nd5,EA002,26-35%,EA002-3,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +17817,Nd50,EA002,26-35%,EA002-3,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +17818,Nd51,EA002,36-45%,EA002-4,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +17819,Nd52,EA002,36-45%,EA002-4,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +17820,Nd53,EA002,26-35%,EA002-3,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +17821,Nd54,EA002,26-35%,EA002-3,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17822,Nd55,EA002,26-35%,EA002-3,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +17823,Nd56,EA002,26-35%,EA002-3,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +17824,Nd57,EA002,46-55%,EA002-5,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +17825,Nd58,EA002,36-45%,EA002-4,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +17826,Nd59,EA002,46-55%,EA002-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +17827,Nd6,EA002,26-35%,EA002-3,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +17828,Nd60,EA002,46-55%,EA002-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +17829,Nd61,EA002,46-55%,EA002-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +17830,Nd62,EA002,46-55%,EA002-5,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +17831,Nd63,EA002,46-55%,EA002-5,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +17832,Nd64,EA002,46-55%,EA002-5,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +17833,Nd65,EA002,36-45%,EA002-4,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +17834,Nd66,EA002,36-45%,EA002-4,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +17835,Nd67,EA002,26-35%,EA002-3,,gifford1936,,1870,EthnographicAtlas_1967_p110, +17836,Nd7,EA002,26-35%,EA002-3,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +17837,Nd8,EA002,26-35%,EA002-3,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +17838,Nd9,EA002,26-35%,EA002-3,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +17839,Ne1,EA002,76-85%,EA002-8,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +17840,Ne10,EA002,26-35%,EA002-3,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +17841,Ne11,EA002,66-75%,EA002-7,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +17842,Ne12,EA002,76-85%,EA002-8,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +17843,Ne13,EA002,76-85%,EA002-8,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +17844,Ne14,EA002,56-65%,EA002-6,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +17845,Ne15,EA002,16-25%,EA002-2,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +17846,Ne16,EA002,26-35%,EA002-3,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +17847,Ne17,EA002,86-100%,EA002-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +17848,Ne18,EA002,76-85%,EA002-8,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +17849,Ne19,EA002,56-65%,EA002-6,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +17850,Ne2,EA002,76-85%,EA002-8,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +17851,Ne20,EA002,66-75%,EA002-7,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +17852,Ne21,EA002,46-55%,EA002-5,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968, +17853,Ne3,EA002,86-100%,EA002-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +17854,Ne4,EA002,76-85%,EA002-8,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +17855,Ne5,EA002,76-85%,EA002-8,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +17856,Ne6,EA002,26-35%,EA002-3,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +17857,Ne7,EA002,76-85%,EA002-8,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +17858,Ne8,EA002,86-100%,EA002-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +17859,Ne9,EA002,76-85%,EA002-8,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +17860,Nf10,EA002,46-55%,EA002-5,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +17861,Nf11,EA002,46-55%,EA002-5,,whitman1937,,1870,EthnographicAtlas_1967_p114, +17862,Nf12,EA002,36-45%,EA002-4,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +17863,Nf13,EA002,36-45%,EA002-4,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17864,Nf14,EA002,16-25%,EA002-2,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +17865,Nf15,EA002,36-45%,EA002-4,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +17866,Nf2,EA002,26-35%,EA002-3,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +17867,Nf3,EA002,36-45%,EA002-4,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +17868,Nf4,EA002,26-35%,EA002-3,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +17869,Nf5,EA002,36-45%,EA002-4,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +17870,Nf6,EA002,36-45%,EA002-4,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +17871,Nf7,EA002,36-45%,EA002-4,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17872,Nf8,EA002,26-35%,EA002-3,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +17873,Nf9,EA002,16-25%,EA002-2,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +17874,Ng1,EA002,6-15%,EA002-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +17875,Ng10,EA002,26-35%,EA002-3,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +17876,Ng11,EA002,6-15%,EA002-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +17877,Ng12,EA002,16-25%,EA002-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +17878,Ng13,EA002,36-45%,EA002-4,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +17879,Ng14,EA002,26-35%,EA002-3,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +17880,Ng15,EA002,16-25%,EA002-2,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +17881,Ng2,EA002,?,EA002-NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +17882,Ng3,EA002,16-25%,EA002-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +17883,Ng4,EA002,36-45%,EA002-4,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +17884,Ng5,EA002,16-25%,EA002-2,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +17885,Ng6,EA002,16-25%,EA002-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +17886,Ng7,EA002,26-35%,EA002-3,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +17887,Ng8,EA002,16-25%,EA002-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +17888,Ng9,EA002,6-15%,EA002-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +17889,Nh1,EA002,36-45%,EA002-4,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +17890,Nh10,EA002,6-15%,EA002-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +17891,Nh11,EA002,6-15%,EA002-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +17892,Nh12,EA002,6-15%,EA002-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +17893,Nh13,EA002,6-15%,EA002-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +17894,Nh14,EA002,6-15%,EA002-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +17895,Nh15,EA002,36-45%,EA002-4,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +17896,Nh16,EA002,36-45%,EA002-4,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17897,Nh17,EA002,36-45%,EA002-4,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +17898,Nh18,EA002,6-15%,EA002-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17899,Nh19,EA002,16-25%,EA002-2,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +17900,Nh2,EA002,0-5%,EA002-0,,dozier1954,,1950,EthnographicAtlas_1967_p114, +17901,Nh20,EA002,16-25%,EA002-2,,gifford1931,,1860,EthnographicAtlas_1967_p114, +17902,Nh21,EA002,16-25%,EA002-2,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17903,Nh22,EA002,6-15%,EA002-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +17904,Nh23,EA002,26-35%,EA002-3,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +17905,Nh24,EA002,36-45%,EA002-4,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +17906,Nh25,EA002,6-15%,EA002-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +17907,Nh26,EA002,6-15%,EA002-1,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +17908,Nh27,EA002,6-15%,EA002-1,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +17909,Nh3,EA002,6-15%,EA002-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +17910,Nh4,EA002,6-15%,EA002-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +17911,Nh5,EA002,6-15%,EA002-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +17912,Nh6,EA002,16-25%,EA002-2,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +17913,Nh7,EA002,16-25%,EA002-2,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +17914,Nh8,EA002,16-25%,EA002-2,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +17915,Nh9,EA002,16-25%,EA002-2,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +17916,Ni1,EA002,6-15%,EA002-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +17917,Ni2,EA002,16-25%,EA002-2,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +17918,Ni3,EA002,16-25%,EA002-2,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +17919,Ni4,EA002,16-25%,EA002-2,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +17920,Ni5,EA002,36-45%,EA002-4,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +17921,Ni6,EA002,6-15%,EA002-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +17922,Ni7,EA002,6-15%,EA002-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +17923,Ni8,EA002,16-25%,EA002-2,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +17924,Ni9,EA002,16-25%,EA002-2,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968, +17925,Nj1,EA002,0-5%,EA002-0,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17926,Nj10,EA002,0-5%,EA002-0,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17927,Nj11,EA002,16-25%,EA002-2,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +17928,Nj12,EA002,0-5%,EA002-0,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968, +17929,Nj13,EA002,6-15%,EA002-1,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +17930,Nj14,EA002,6-15%,EA002-1,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +17931,Nj2,EA002,6-15%,EA002-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +17932,Nj3,EA002,6-15%,EA002-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +17933,Nj4,EA002,6-15%,EA002-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +17934,Nj5,EA002,0-5%,EA002-0,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +17935,Nj6,EA002,0-5%,EA002-0,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +17936,Nj7,EA002,6-15%,EA002-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17937,Nj8,EA002,6-15%,EA002-1,,foster1948,,1500,EthnographicAtlas_1967_p118, +17938,Nj9,EA002,0-5%,EA002-0,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +17939,Sa1,EA002,6-15%,EA002-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +17940,Sa10,EA002,16-25%,EA002-2,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +17941,Sa11,EA002,6-15%,EA002-1,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +17942,Sa12,EA002,6-15%,EA002-1,,stone1948,,1948,EthnographicAtlas_1967_p118, +17943,Sa13,EA002,0-5%,EA002-0,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +17944,Sa14,EA002,16-25%,EA002-2,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +17945,Sa15,EA002,6-15%,EA002-1,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +17946,Sa16,EA002,6-15%,EA002-1,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +17947,Sa17,EA002,0-5%,EA002-0,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +17948,Sa2,EA002,0-5%,EA002-0,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17949,Sa3,EA002,6-15%,EA002-1,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +17950,Sa4,EA002,16-25%,EA002-2,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +17951,Sa5,EA002,6-15%,EA002-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +17952,Sa6,EA002,6-15%,EA002-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +17953,Sa7,EA002,6-15%,EA002-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +17954,Sa8,EA002,0-5%,EA002-0,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +17955,Sa9,EA002,16-25%,EA002-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +17956,Sb1,EA002,6-15%,EA002-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +17957,Sb2,EA002,0-5%,EA002-0,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +17958,Sb3,EA002,6-15%,EA002-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +17959,Sb4,EA002,6-15%,EA002-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +17960,Sb5,EA002,6-15%,EA002-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +17961,Sb6,EA002,6-15%,EA002-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +17962,Sb7,EA002,6-15%,EA002-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +17963,Sb8,EA002,6-15%,EA002-1,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +17964,Sb9,EA002,0-5%,EA002-0,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +17965,Sc1,EA002,26-35%,EA002-3,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +17966,Sc10,EA002,6-15%,EA002-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +17967,Sc11,EA002,16-25%,EA002-2,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +17968,Sc12,EA002,16-25%,EA002-2,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +17969,Sc13,EA002,26-35%,EA002-3,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +17970,Sc14,EA002,16-25%,EA002-2,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +17971,Sc15,EA002,16-25%,EA002-2,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +17972,Sc16,EA002,26-35%,EA002-3,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +17973,Sc17,EA002,16-25%,EA002-2,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +17974,Sc18,EA002,6-15%,EA002-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +17975,Sc2,EA002,16-25%,EA002-2,,leedsnd,,1950,EthnographicAtlas_1967_p118, +17976,Sc3,EA002,16-25%,EA002-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +17977,Sc4,EA002,26-35%,EA002-3,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +17978,Sc5,EA002,16-25%,EA002-2,,farabee1918,,1900,EthnographicAtlas_1967_p118, +17979,Sc6,EA002,16-25%,EA002-2,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17980,Sc7,EA002,26-35%,EA002-3,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +17981,Sc8,EA002,36-45%,EA002-4,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +17982,Sc9,EA002,16-25%,EA002-2,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +17983,Sd1,EA002,26-35%,EA002-3,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17984,Sd2,EA002,6-15%,EA002-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +17985,Sd3,EA002,16-25%,EA002-2,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +17986,Sd4,EA002,26-35%,EA002-3,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +17987,Sd5,EA002,16-25%,EA002-2,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +17988,Sd6,EA002,36-45%,EA002-4,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +17989,Sd7,EA002,16-25%,EA002-2,,fock1963,,1950,EthnographicAtlas_1967_p118, +17990,Sd8,EA002,36-45%,EA002-4,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +17991,Sd9,EA002,0-5%,EA002-0,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +17992,Se1,EA002,46-55%,EA002-5,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +17993,Se10,EA002,6-15%,EA002-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +17994,Se11,EA002,16-25%,EA002-2,,prost1965,,1960,EthnographicAtlas_1967_p122, +17995,Se12,EA002,16-25%,EA002-2,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +17996,Se2,EA002,6-15%,EA002-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +17997,Se3,EA002,16-25%,EA002-2,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +17998,Se4,EA002,46-55%,EA002-5,,fejos1943,,1940,EthnographicAtlas_1967_p118, +17999,Se5,EA002,6-15%,EA002-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +18000,Se6,EA002,16-25%,EA002-2,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +18001,Se7,EA002,6-15%,EA002-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18002,Se8,EA002,36-45%,EA002-4,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +18003,Se9,EA002,16-25%,EA002-2,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +18004,Sf1,EA002,6-15%,EA002-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +18005,Sf2,EA002,0-5%,EA002-0,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +18006,Sf3,EA002,6-15%,EA002-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +18007,Sf4,EA002,6-15%,EA002-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +18008,Sf5,EA002,6-15%,EA002-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +18009,Sf6,EA002,6-15%,EA002-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +18010,Sf7,EA002,26-35%,EA002-3,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +18011,Sf8,EA002,16-25%,EA002-2,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +18012,Sf9,EA002,6-15%,EA002-1,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +18013,Sg1,EA002,16-25%,EA002-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +18014,Sg2,EA002,0-5%,EA002-0,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18015,Sg3,EA002,56-65%,EA002-6,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +18016,Sg4,EA002,66-75%,EA002-7,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +18017,Sg5,EA002,16-25%,EA002-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18018,Sh1,EA002,16-25%,EA002-2,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +18019,Sh2,EA002,6-15%,EA002-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +18020,Sh3,EA002,56-65%,EA002-6,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +18021,Sh4,EA002,36-45%,EA002-4,,oberg1949,,1940,EthnographicAtlas_1967_p122, +18022,Sh5,EA002,26-35%,EA002-3,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +18023,Sh6,EA002,36-45%,EA002-4,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +18024,Sh7,EA002,6-15%,EA002-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +18025,Sh8,EA002,26-35%,EA002-3,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +18026,Sh9,EA002,46-55%,EA002-5,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +18027,Si1,EA002,46-55%,EA002-5,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18028,Si10,EA002,0-5%,EA002-0,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +18029,Si2,EA002,6-15%,EA002-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +18030,Si3,EA002,16-25%,EA002-2,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18031,Si4,EA002,26-35%,EA002-3,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +18032,Si5,EA002,6-15%,EA002-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +18033,Si6,EA002,16-25%,EA002-2,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +18034,Si7,EA002,16-25%,EA002-2,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +18035,Si8,EA002,16-25%,EA002-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +18036,Si9,EA002,16-25%,EA002-2,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +18037,Sj1,EA002,16-25%,EA002-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +18038,Sj10,EA002,16-25%,EA002-2,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18039,Sj11,EA002,26-35%,EA002-3,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +18040,Sj2,EA002,26-35%,EA002-3,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +18041,Sj3,EA002,56-65%,EA002-6,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +18042,Sj4,EA002,26-35%,EA002-3,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +18043,Sj5,EA002,36-45%,EA002-4,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +18044,Sj6,EA002,16-25%,EA002-2,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18045,Sj7,EA002,16-25%,EA002-2,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +18046,Sj8,EA002,16-25%,EA002-2,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +18047,Sj9,EA002,16-25%,EA002-2,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +18048,ch12,EA002,0-5%,EA002-0,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +18049,ch13,EA002,0-5%,EA002-0,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +18050,ch14,EA002,0-5%,EA002-0,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +18051,ch15,EA002,0-5%,EA002-0,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +18052,ch16,EA002,0-5%,EA002-0,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +18053,ch17,EA002,0-5%,EA002-0,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +18054,ch18,EA002,0-5%,EA002-0,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +18055,ch19,EA002,16-25%,EA002-2,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +18056,ch20,EA002,0-5%,EA002-0,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +18057,ch21,EA002,0-5%,EA002-0,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +18058,ch22,EA002,0-5%,EA002-0,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +18059,ch23,EA002,0-5%,EA002-0,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +18060,ch24,EA002,0-5%,EA002-0,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +18061,ch25,EA002,0-5%,EA002-0,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +18062,ch26,EA002,0-5%,EA002-0,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +18063,ch27,EA002,6-15%,EA002-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +18064,ch28,EA002,0-5%,EA002-0,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +18065,ec12,EA002,76-85%,EA002-8,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +18066,ec13,EA002,16-25%,EA002-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +18067,ec14,EA002,16-25%,EA002-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +18068,ec15,EA002,26-35%,EA002-3,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +18069,ec16,EA002,46-55%,EA002-5,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +18070,ec17,EA002,26-35%,EA002-3,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +18071,ec18,EA002,26-35%,EA002-3,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +18072,ec19,EA002,26-35%,EA002-3,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +18073,ec20,EA002,26-35%,EA002-3,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +18074,ec21,EA002,36-45%,EA002-4,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +18075,Aa1,EA020,No exogamy,EA020-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18076,Aa2,EA020,No exogamy,EA020-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18077,Aa3,EA020,No exogamy,EA020-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18078,Aa4,EA020,No exogamy,EA020-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18079,Aa5,EA020,No exogamy,EA020-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18080,Aa6,EA020,No exogamy,EA020-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18081,Aa7,EA020,No exogamy,EA020-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18082,Aa8,EA020,No exogamy,EA020-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18083,Aa9,EA020,No exogamy,EA020-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18084,Ab1,EA020,Sibs,EA020-4,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +18085,Ab10,EA020,No exogamy,EA020-1,,hunter1936,,1936,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18086,Ab11,EA020,No exogamy,EA020-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18087,Ab12,EA020,No exogamy,EA020-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18088,Ab13,EA020,No exogamy,EA020-1,Quasi-lineages inferred from the patrilocal but basically territorial ward organization and from vestigial patrisibs,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18089,Ab14,EA020,No exogamy,EA020-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18090,Ab15,EA020,No exogamy,EA020-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18091,Ab16,EA020,No exogamy,EA020-1,,earthy1933,,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18092,Ab17,EA020,Extended taboo,EA020-2,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +18093,Ab18,EA020,No exogamy,EA020-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18094,Ab19,EA020,Sibs,EA020-4,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +18095,Ab2,EA020,No exogamy,EA020-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18096,Ab20,EA020,Sibs,EA020-4,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +18097,Ab21a,EA020,No exogamy,EA020-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18098,Ab21b,EA020,No exogamy,EA020-1,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18099,Ab22,EA020,No exogamy,EA020-1,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18100,Ab3,EA020,No exogamy,EA020-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18101,Ab4,EA020,No exogamy,EA020-1,,junod1927,,1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18102,Ab5,EA020,No exogamy,EA020-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +18103,Ab6,EA020,No exogamy,EA020-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +18104,Ab7,EA020,Sibs,EA020-4,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +18105,Ab8,EA020,No exogamy,EA020-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18106,Ab9,EA020,No exogamy,EA020-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18107,Ac1,EA020,Sibs,EA020-4,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +18108,Ac10,EA020,Sibs,EA020-4,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +18109,Ac11,EA020,Sibs,EA020-4,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +18110,Ac12,EA020,Sibs,EA020-4,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +18111,Ac13,EA020,Lineages,EA020-3,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +18112,Ac14,EA020,Sibs,EA020-4,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +18113,Ac15,EA020,Lineages,EA020-3,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +18114,Ac16,EA020,Sibs,EA020-4,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +18115,Ac17,EA020,No exogamy,EA020-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +18116,Ac18,EA020,Lineages,EA020-3,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +18117,Ac19,EA020,Lineages,EA020-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +18118,Ac2,EA020,Lineages,EA020-3,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +18119,Ac20,EA020,Lineages,EA020-3,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +18120,Ac21,EA020,Sibs,EA020-4,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +18121,Ac22,EA020,Sibs,EA020-4,,mertens1935,,1930,EthnographicAtlas_1967_p62, +18122,Ac23,EA020,Sibs,EA020-4,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +18123,Ac24,EA020,Lineages,EA020-3,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +18124,Ac25,EA020,Lineages,EA020-3,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +18125,Ac26,EA020,Sibs,EA020-4,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +18126,Ac27,EA020,Sibs,EA020-4,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +18127,Ac28,EA020,Sibs,EA020-4,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +18128,Ac29,EA020,Sibs,EA020-4,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +18129,Ac3,EA020,Sibs,EA020-4,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +18130,Ac30,EA020,Sibs,EA020-4,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +18131,Ac31,EA020,Sibs,EA020-4,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +18132,Ac32,EA020,Sibs,EA020-4,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +18133,Ac33,EA020,Sibs,EA020-4,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +18134,Ac34,EA020,Lineages,EA020-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +18135,Ac35,EA020,Sibs,EA020-4,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +18136,Ac36,EA020,No exogamy,EA020-1,"Formerly sibs (code ""4"")",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18137,Ac37,EA020,Sibs,EA020-4,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +18138,Ac38,EA020,Sibs,EA020-4,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +18139,Ac39,EA020,Sibs,EA020-4,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +18140,Ac4,EA020,Sibs,EA020-4,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +18141,Ac40,EA020,Sibs,EA020-4,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +18142,Ac41,EA020,Sibs,EA020-4,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +18143,Ac42,EA020,Sibs,EA020-4,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +18144,Ac43,EA020,No exogamy,EA020-1,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18145,Ac5,EA020,Sibs,EA020-4,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +18146,Ac6,EA020,Lineages,EA020-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +18147,Ac7,EA020,Lineages,EA020-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +18148,Ac8,EA020,Lineages,EA020-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +18149,Ac9,EA020,No exogamy,EA020-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18150,Ad1,EA020,No exogamy,EA020-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18151,Ad10,EA020,No exogamy,EA020-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18152,Ad11,EA020,No exogamy,EA020-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18153,Ad12,EA020,No exogamy,EA020-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18154,Ad13,EA020,No exogamy,EA020-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18155,Ad14,EA020,Sibs,EA020-4,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +18156,Ad15,EA020,No exogamy,EA020-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18157,Ad16,EA020,No exogamy,EA020-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18158,Ad17,EA020,No exogamy,EA020-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18159,Ad18,EA020,No exogamy,EA020-1,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18160,Ad19,EA020,No exogamy,EA020-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18161,Ad2,EA020,No exogamy,EA020-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18162,Ad20,EA020,No exogamy,EA020-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18163,Ad21,EA020,No exogamy,EA020-1,"""A man belongs to the kin group (uluko) of his father's father or his son's son, but not to that of his father or of his son (who both belong to another uluko). There is perpetual alternation of two uluko-names in each patrilineage.""",maurice193538,,1930,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18164,Ad22,EA020,No exogamy,EA020-1,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18165,Ad23,EA020,No exogamy,EA020-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18166,Ad24,EA020,No exogamy,EA020-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18167,Ad25,EA020,Sibs,EA020-4,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +18168,Ad26,EA020,No exogamy,EA020-1,,sick1916,,1910,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18169,Ad27,EA020,Lineages,EA020-3,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +18170,Ad28,EA020,Sibs,EA020-4,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +18171,Ad29,EA020,No exogamy,EA020-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18172,Ad3,EA020,No exogamy,EA020-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18173,Ad30,EA020,Lineages,EA020-3,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +18174,Ad31,EA020,Lineages,EA020-3,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +18175,Ad32,EA020,No exogamy,EA020-1,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18176,Ad33,EA020,No exogamy,EA020-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18177,Ad34,EA020,No exogamy,EA020-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18178,Ad35,EA020,No exogamy,EA020-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18179,Ad36,EA020,No exogamy,EA020-1,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18180,Ad37,EA020,No exogamy,EA020-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18181,Ad38,EA020,No exogamy,EA020-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18182,Ad39,EA020,No exogamy,EA020-1,,gray1963,,1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18183,Ad4,EA020,No exogamy,EA020-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18184,Ad40,EA020,No exogamy,EA020-1,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18185,Ad41,EA020,No exogamy,EA020-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18186,Ad42,EA020,No exogamy,EA020-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18187,Ad43,EA020,No exogamy,EA020-1,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18188,Ad44,EA020,No exogamy,EA020-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18189,Ad45,EA020,No exogamy,EA020-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18190,Ad46,EA020,No exogamy,EA020-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18191,Ad47,EA020,No exogamy,EA020-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18192,Ad48,EA020,No exogamy,EA020-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18193,Ad49,EA020,No exogamy,EA020-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18194,Ad5,EA020,Lineages,EA020-3,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +18195,Ad50,EA020,Sibs,EA020-4,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +18196,Ad51,EA020,Sibs,EA020-4,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +18197,Ad6,EA020,No exogamy,EA020-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18198,Ad7,EA020,No exogamy,EA020-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18199,Ad8,EA020,No exogamy,EA020-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18200,Ad9,EA020,No exogamy,EA020-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18201,Ae1,EA020,No exogamy,EA020-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18202,Ae10,EA020,No exogamy,EA020-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18203,Ae11,EA020,No exogamy,EA020-1,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18204,Ae12,EA020,No exogamy,EA020-1,Matrilineal descent was formerly recognized,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18205,Ae13,EA020,No exogamy,EA020-1,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18206,Ae14,EA020,No exogamy,EA020-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18207,Ae15,EA020,No exogamy,EA020-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18208,Ae16,EA020,No exogamy,EA020-1,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18209,Ae17,EA020,No exogamy,EA020-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18210,Ae18,EA020,No exogamy,EA020-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18211,Ae19,EA020,No exogamy,EA020-1,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18212,Ae2,EA020,Lineages,EA020-3,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +18213,Ae20,EA020,No exogamy,EA020-1,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18214,Ae21,EA020,No exogamy,EA020-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18215,Ae22,EA020,No exogamy,EA020-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18216,Ae23,EA020,No exogamy,EA020-1,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18217,Ae24,EA020,No exogamy,EA020-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18218,Ae25,EA020,No exogamy,EA020-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18219,Ae26,EA020,No exogamy,EA020-1,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18220,Ae27,EA020,No exogamy,EA020-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18221,Ae28,EA020,No exogamy,EA020-1,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18222,Ae29,EA020,No exogamy,EA020-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18223,Ae3,EA020,No exogamy,EA020-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18224,Ae30,EA020,No exogamy,EA020-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18225,Ae31,EA020,No exogamy,EA020-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18226,Ae32,EA020,No exogamy,EA020-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18227,Ae33,EA020,No exogamy,EA020-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18228,Ae34,EA020,No exogamy,EA020-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18229,Ae35,EA020,No exogamy,EA020-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18230,Ae36,EA020,No exogamy,EA020-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18231,Ae37,EA020,No exogamy,EA020-1,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18232,Ae38,EA020,Sibs,EA020-4,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +18233,Ae39,EA020,No exogamy,EA020-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18234,Ae4,EA020,Extended taboo,EA020-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +18235,Ae40,EA020,Lineages,EA020-3,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +18236,Ae41,EA020,No exogamy,EA020-1,,andersson1953,,1940,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18237,Ae42,EA020,No exogamy,EA020-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18238,Ae43,EA020,No exogamy,EA020-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18239,Ae44,EA020,?,EA020-NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +18240,Ae45,EA020,No exogamy,EA020-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18241,Ae46,EA020,Sibs,EA020-4,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +18242,Ae47,EA020,No exogamy,EA020-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18243,Ae48,EA020,No exogamy,EA020-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18244,Ae49,EA020,No exogamy,EA020-1,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18245,Ae5,EA020,No exogamy,EA020-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18246,Ae50,EA020,No exogamy,EA020-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18247,Ae51,EA020,No exogamy,EA020-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18248,Ae52,EA020,No exogamy,EA020-1,"But descent is matrilineal in the extreme south, adjacent to the Kom",kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18249,Ae53,EA020,No exogamy,EA020-1,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18250,Ae54,EA020,Lineages,EA020-3,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +18251,Ae55,EA020,No exogamy,EA020-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18252,Ae56,EA020,No exogamy,EA020-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18253,Ae57,EA020,No exogamy,EA020-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18254,Ae58,EA020,No exogamy,EA020-1,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18255,Ae59,EA020,No exogamy,EA020-1,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18256,Ae6,EA020,No exogamy,EA020-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18257,Ae7,EA020,No exogamy,EA020-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18258,Ae8,EA020,No exogamy,EA020-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18259,Ae9,EA020,No exogamy,EA020-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18260,Af1,EA020,No exogamy,EA020-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18261,Af10,EA020,No exogamy,EA020-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18262,Af11,EA020,No exogamy,EA020-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18263,Af12,EA020,Sibs,EA020-4,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +18264,Af13,EA020,No exogamy,EA020-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18265,Af14,EA020,Lineages,EA020-3,"From a recent report, matrilineages have apparently become converted into ambilineal ramages",hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +18266,Af15,EA020,No exogamy,EA020-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18267,Af16,EA020,No exogamy,EA020-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18268,Af17,EA020,?,EA020-NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +18269,Af18,EA020,No exogamy,EA020-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18270,Af19,EA020,No exogamy,EA020-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18271,Af2,EA020,No exogamy,EA020-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18272,Af20,EA020,No exogamy,EA020-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18273,Af21,EA020,No exogamy,EA020-1,"The so-called ""houses"" are presumably ramages rather than patrilineages in view of the reported avunculocal residence and matrilineal affiliation in cases where only a token bride-price is paid",granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18274,Af22,EA020,No exogamy,EA020-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18275,Af23,EA020,Sibs,EA020-4,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +18276,Af24,EA020,No exogamy,EA020-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18277,Af25,EA020,No exogamy,EA020-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18278,Af26,EA020,No exogamy,EA020-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18279,Af27,EA020,No exogamy,EA020-1,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18280,Af28,EA020,No exogamy,EA020-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18281,Af29,EA020,No exogamy,EA020-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18282,Af3,EA020,Sibs,EA020-4,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +18283,Af30,EA020,No exogamy,EA020-1,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18284,Af31,EA020,No exogamy,EA020-1,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18285,Af32,EA020,No exogamy,EA020-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18286,Af33,EA020,No exogamy,EA020-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18287,Af34,EA020,No exogamy,EA020-1,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18288,Af35,EA020,Extended taboo,EA020-2,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +18289,Af36,EA020,No exogamy,EA020-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18290,Af37,EA020,No exogamy,EA020-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18291,Af38,EA020,Lineages,EA020-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +18292,Af39,EA020,Sibs,EA020-4,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +18293,Af4,EA020,Lineages,EA020-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +18294,Af40,EA020,Lineages,EA020-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +18295,Af41,EA020,?,EA020-NA,"There are lineages, formerly matrilineal but more recently patrilineal",crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +18296,Af42,EA020,Lineages,EA020-3,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +18297,Af43,EA020,No exogamy,EA020-1,"But Daniell reports exogamy (code ""2"")",daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18298,Af44,EA020,Lineages,EA020-3,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +18299,Af45,EA020,Lineages,EA020-3,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +18300,Af46,EA020,No exogamy,EA020-1,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18301,Af47,EA020,No exogamy,EA020-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18302,Af48,EA020,No exogamy,EA020-1,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18303,Af49,EA020,No exogamy,EA020-1,,schwab1947,,1940,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18304,Af5,EA020,No exogamy,EA020-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18305,Af50,EA020,No exogamy,EA020-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18306,Af51,EA020,No exogamy,EA020-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18307,Af52,EA020,No exogamy,EA020-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18308,Af53,EA020,No exogamy,EA020-1,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18309,Af54,EA020,No exogamy,EA020-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18310,Af55,EA020,No exogamy,EA020-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18311,Af56,EA020,No exogamy,EA020-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18312,Af57,EA020,No exogamy,EA020-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18313,Af58,EA020,No exogamy,EA020-1,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18314,Af6,EA020,No exogamy,EA020-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18315,Af7,EA020,No exogamy,EA020-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18316,Af8,EA020,No exogamy,EA020-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18317,Af9,EA020,Lineages,EA020-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +18318,Ag1,EA020,No exogamy,EA020-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18319,Ag10,EA020,No exogamy,EA020-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18320,Ag11,EA020,Lineages,EA020-3,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +18321,Ag12,EA020,Extended taboo,EA020-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +18322,Ag13,EA020,No exogamy,EA020-1,But witchcraft powers are matrilineally transmitted,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18323,Ag14,EA020,No exogamy,EA020-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18324,Ag15,EA020,No exogamy,EA020-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18325,Ag16,EA020,No exogamy,EA020-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18326,Ag17,EA020,No exogamy,EA020-1,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18327,Ag18,EA020,Sibs,EA020-4,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +18328,Ag19,EA020,No exogamy,EA020-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18329,Ag2,EA020,No exogamy,EA020-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18330,Ag20,EA020,No exogamy,EA020-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18331,Ag21,EA020,Lineages,EA020-3,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +18332,Ag22,EA020,Sibs,EA020-4,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +18333,Ag23,EA020,No exogamy,EA020-1,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18334,Ag24,EA020,No exogamy,EA020-1,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18335,Ag25,EA020,No exogamy,EA020-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18336,Ag26,EA020,No exogamy,EA020-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18337,Ag27,EA020,No exogamy,EA020-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18338,Ag28,EA020,?,EA020-NA,,,,,, +18339,Ag29,EA020,No exogamy,EA020-1,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18340,Ag3,EA020,No exogamy,EA020-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18341,Ag30,EA020,No exogamy,EA020-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18342,Ag31,EA020,No exogamy,EA020-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18343,Ag32,EA020,No exogamy,EA020-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18344,Ag33,EA020,?,EA020-NA,,,,,, +18345,Ag34,EA020,Lineages,EA020-3,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +18346,Ag35,EA020,Lineages,EA020-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +18347,Ag36,EA020,Lineages,EA020-3,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +18348,Ag37,EA020,No exogamy,EA020-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18349,Ag38,EA020,Extended taboo,EA020-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +18350,Ag39,EA020,Extended taboo,EA020-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +18351,Ag4,EA020,Extended taboo,EA020-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +18352,Ag40,EA020,Extended taboo,EA020-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +18353,Ag41,EA020,Extended taboo,EA020-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +18354,Ag42,EA020,No exogamy,EA020-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18355,Ag43,EA020,No exogamy,EA020-1,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18356,Ag44,EA020,Extended taboo,EA020-2,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +18357,Ag45,EA020,No exogamy,EA020-1,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18358,Ag46,EA020,Extended taboo,EA020-2,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +18359,Ag47,EA020,No exogamy,EA020-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18360,Ag48,EA020,No exogamy,EA020-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18361,Ag49,EA020,No exogamy,EA020-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18362,Ag5,EA020,Lineages,EA020-3,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +18363,Ag50,EA020,No exogamy,EA020-1,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18364,Ag51,EA020,No exogamy,EA020-1,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18365,Ag52,EA020,No exogamy,EA020-1,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18366,Ag53,EA020,No exogamy,EA020-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18367,Ag54,EA020,No exogamy,EA020-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18368,Ag6,EA020,No exogamy,EA020-1,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18369,Ag7,EA020,No exogamy,EA020-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18370,Ag8,EA020,Lineages,EA020-3,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +18371,Ag9,EA020,No exogamy,EA020-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18372,Ah1,EA020,No exogamy,EA020-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18373,Ah10,EA020,No exogamy,EA020-1,"But Gunn reports matrilineal ""clans"" as well as patrilineages",gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18374,Ah11,EA020,No exogamy,EA020-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18375,Ah12,EA020,No exogamy,EA020-1,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18376,Ah13,EA020,?,EA020-NA,,,,,, +18377,Ah14,EA020,No exogamy,EA020-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18378,Ah15,EA020,No exogamy,EA020-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18379,Ah16,EA020,No exogamy,EA020-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18380,Ah17,EA020,No exogamy,EA020-1,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18381,Ah18,EA020,No exogamy,EA020-1,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18382,Ah19,EA020,No exogamy,EA020-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18383,Ah2,EA020,No exogamy,EA020-1,,meek1931a,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18384,Ah20,EA020,No exogamy,EA020-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18385,Ah21,EA020,No exogamy,EA020-1,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18386,Ah22,EA020,?,EA020-NA,"The reported ""clans"" are presumably patrilineal, though Ames mentions very strong survivals of matrilineal descent",ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +18387,Ah23,EA020,No exogamy,EA020-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18388,Ah24,EA020,No exogamy,EA020-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18389,Ah25,EA020,No exogamy,EA020-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18390,Ah26,EA020,Lineages,EA020-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +18391,Ah27,EA020,No exogamy,EA020-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18392,Ah28,EA020,Lineages,EA020-3,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +18393,Ah29,EA020,Sibs,EA020-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +18394,Ah3,EA020,No exogamy,EA020-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18395,Ah30,EA020,Lineages,EA020-3,,meek1931b,,1920,EthnographicAtlas_1967_p74, +18396,Ah31,EA020,No exogamy,EA020-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18397,Ah32,EA020,No exogamy,EA020-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18398,Ah33,EA020,No exogamy,EA020-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18399,Ah34,EA020,No exogamy,EA020-1,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18400,Ah35,EA020,No exogamy,EA020-1,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18401,Ah36,EA020,No exogamy,EA020-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18402,Ah37,EA020,No exogamy,EA020-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18403,Ah38,EA020,No exogamy,EA020-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18404,Ah39,EA020,No exogamy,EA020-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18405,Ah4,EA020,No exogamy,EA020-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18406,Ah5,EA020,No exogamy,EA020-1,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18407,Ah6,EA020,Lineages,EA020-3,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +18408,Ah7,EA020,No exogamy,EA020-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18409,Ah8,EA020,No exogamy,EA020-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18410,Ah9,EA020,No exogamy,EA020-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18411,Ai1,EA020,No exogamy,EA020-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18412,Ai10,EA020,No exogamy,EA020-1,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18413,Ai11,EA020,No exogamy,EA020-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18414,Ai12,EA020,No exogamy,EA020-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18415,Ai13,EA020,No exogamy,EA020-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18416,Ai14,EA020,No exogamy,EA020-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18417,Ai15,EA020,No exogamy,EA020-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18418,Ai16,EA020,?,EA020-NA,,,,,, +18419,Ai17,EA020,No exogamy,EA020-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18420,Ai18,EA020,?,EA020-NA,,,,,, +18421,Ai19,EA020,No exogamy,EA020-1,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18422,Ai2,EA020,Lineages,EA020-3,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +18423,Ai20,EA020,No exogamy,EA020-1,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18424,Ai21,EA020,No exogamy,EA020-1,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18425,Ai22,EA020,No exogamy,EA020-1,,delafosse1897,,1890,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18426,Ai23,EA020,No exogamy,EA020-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18427,Ai24,EA020,No exogamy,EA020-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18428,Ai25,EA020,No exogamy,EA020-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18429,Ai26,EA020,No exogamy,EA020-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18430,Ai27,EA020,No exogamy,EA020-1,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18431,Ai28,EA020,No exogamy,EA020-1,,delhaise1912,,1910,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18432,Ai29,EA020,No exogamy,EA020-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18433,Ai3,EA020,No exogamy,EA020-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18434,Ai30,EA020,No exogamy,EA020-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18435,Ai31,EA020,No exogamy,EA020-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18436,Ai32,EA020,No exogamy,EA020-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18437,Ai33,EA020,No exogamy,EA020-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18438,Ai34,EA020,No exogamy,EA020-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18439,Ai35,EA020,No exogamy,EA020-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18440,Ai36,EA020,No exogamy,EA020-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18441,Ai37,EA020,No exogamy,EA020-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18442,Ai38,EA020,Lineages,EA020-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +18443,Ai39,EA020,No exogamy,EA020-1,,nadel1947,,1940,EthnographicAtlas_1967_p74, +18444,Ai4,EA020,No exogamy,EA020-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18445,Ai40,EA020,No exogamy,EA020-1,,nadel1947,,1940,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18446,Ai41,EA020,No exogamy,EA020-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18447,Ai42,EA020,Lineages,EA020-3,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +18448,Ai43,EA020,No exogamy,EA020-1,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18449,Ai44,EA020,No exogamy,EA020-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18450,Ai45,EA020,No exogamy,EA020-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18451,Ai46,EA020,No exogamy,EA020-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18452,Ai47,EA020,No exogamy,EA020-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18453,Ai5,EA020,No exogamy,EA020-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18454,Ai6,EA020,No exogamy,EA020-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18455,Ai7,EA020,No exogamy,EA020-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18456,Ai8,EA020,No exogamy,EA020-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18457,Ai9,EA020,No exogamy,EA020-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18458,Aj1,EA020,No exogamy,EA020-1,,lawrance1957,,1950,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18459,Aj10,EA020,No exogamy,EA020-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18460,Aj11,EA020,No exogamy,EA020-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18461,Aj12,EA020,No exogamy,EA020-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18462,Aj13,EA020,No exogamy,EA020-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18463,Aj14,EA020,No exogamy,EA020-1,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18464,Aj15,EA020,No exogamy,EA020-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18465,Aj16,EA020,No exogamy,EA020-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18466,Aj17,EA020,No exogamy,EA020-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18467,Aj18,EA020,No exogamy,EA020-1,,jensen1959,,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18468,Aj19,EA020,No exogamy,EA020-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18469,Aj2,EA020,No exogamy,EA020-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18470,Aj20,EA020,No exogamy,EA020-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18471,Aj21,EA020,No exogamy,EA020-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18472,Aj22,EA020,No exogamy,EA020-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18473,Aj23,EA020,No exogamy,EA020-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18474,Aj24,EA020,No exogamy,EA020-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18475,Aj25,EA020,No exogamy,EA020-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18476,Aj26,EA020,No exogamy,EA020-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18477,Aj27,EA020,No exogamy,EA020-1,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18478,Aj28,EA020,No exogamy,EA020-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18479,Aj29,EA020,No exogamy,EA020-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18480,Aj3,EA020,No exogamy,EA020-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18481,Aj30,EA020,No exogamy,EA020-1,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18482,Aj31,EA020,No exogamy,EA020-1,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18483,Aj4,EA020,No exogamy,EA020-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18484,Aj5,EA020,No exogamy,EA020-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18485,Aj6,EA020,No exogamy,EA020-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18486,Aj7,EA020,No exogamy,EA020-1,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18487,Aj8,EA020,No exogamy,EA020-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18488,Aj9,EA020,No exogamy,EA020-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18489,Ca1,EA020,No exogamy,EA020-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18490,Ca10,EA020,No exogamy,EA020-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18491,Ca11,EA020,No exogamy,EA020-1,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18492,Ca12,EA020,No exogamy,EA020-1,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18493,Ca13,EA020,No exogamy,EA020-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18494,Ca14,EA020,No exogamy,EA020-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18495,Ca15,EA020,No exogamy,EA020-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18496,Ca16,EA020,No exogamy,EA020-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18497,Ca17,EA020,No exogamy,EA020-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18498,Ca18,EA020,No exogamy,EA020-1,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18499,Ca19,EA020,No exogamy,EA020-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18500,Ca2,EA020,No exogamy,EA020-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18501,Ca20,EA020,No exogamy,EA020-1,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18502,Ca21,EA020,No exogamy,EA020-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18503,Ca22,EA020,No exogamy,EA020-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18504,Ca23,EA020,No exogamy,EA020-1,,jensen1959,,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18505,Ca24,EA020,No exogamy,EA020-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18506,Ca25,EA020,No exogamy,EA020-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18507,Ca26,EA020,No exogamy,EA020-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18508,Ca27,EA020,No exogamy,EA020-1,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18509,Ca28,EA020,No exogamy,EA020-1,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18510,Ca29,EA020,No exogamy,EA020-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18511,Ca3,EA020,No exogamy,EA020-1,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18512,Ca30,EA020,No exogamy,EA020-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18513,Ca31,EA020,No exogamy,EA020-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18514,Ca32,EA020,Sibs,EA020-4,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +18515,Ca33,EA020,Sibs,EA020-4,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +18516,Ca34,EA020,No exogamy,EA020-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18517,Ca35,EA020,No exogamy,EA020-1,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18518,Ca36,EA020,No exogamy,EA020-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18519,Ca37,EA020,?,EA020-NA,,,,,, +18520,Ca38,EA020,No exogamy,EA020-1,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18521,Ca39,EA020,No exogamy,EA020-1,,lewis1965b,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18522,Ca4,EA020,Lineages,EA020-3,"Matrilineages are unnamed, unimportant, and not specifically reported to be exogamous",huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +18523,Ca40,EA020,No exogamy,EA020-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18524,Ca41,EA020,No exogamy,EA020-1,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18525,Ca42,EA020,No exogamy,EA020-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18526,Ca43,EA020,No exogamy,EA020-1,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18527,Ca5,EA020,No exogamy,EA020-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18528,Ca6,EA020,No exogamy,EA020-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18529,Ca7,EA020,No exogamy,EA020-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18530,Ca8,EA020,No exogamy,EA020-1,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18531,Ca9,EA020,No exogamy,EA020-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18532,Cb1,EA020,No exogamy,EA020-1,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18533,Cb10,EA020,No exogamy,EA020-1,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18534,Cb11,EA020,Sibs,EA020-4,Inferred from matrilineal inheritance and succession,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +18535,Cb12,EA020,No exogamy,EA020-1,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18536,Cb13,EA020,No exogamy,EA020-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18537,Cb14,EA020,No exogamy,EA020-1,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18538,Cb15,EA020,No exogamy,EA020-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18539,Cb16,EA020,No exogamy,EA020-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18540,Cb17,EA020,Lineages,EA020-3,"Inferred from prohibition of marriage with a maternal cousin, from the matrilocal rule of residence, and from the report of ""totemism""",barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +18541,Cb18,EA020,No exogamy,EA020-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18542,Cb19,EA020,No exogamy,EA020-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18543,Cb2,EA020,Lineages,EA020-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +18544,Cb20,EA020,No exogamy,EA020-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18545,Cb21,EA020,No exogamy,EA020-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18546,Cb22,EA020,No exogamy,EA020-1,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18547,Cb23,EA020,No exogamy,EA020-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18548,Cb24,EA020,No exogamy,EA020-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18549,Cb25,EA020,No exogamy,EA020-1,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18550,Cb26,EA020,No exogamy,EA020-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18551,Cb27,EA020,No exogamy,EA020-1,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18552,Cb28,EA020,Lineages,EA020-3,Matrilineal exogamy extends only to second cousins,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +18553,Cb29,EA020,No exogamy,EA020-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18554,Cb3,EA020,No exogamy,EA020-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18555,Cb4,EA020,No exogamy,EA020-1,,reid1930,,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18556,Cb5,EA020,No exogamy,EA020-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18557,Cb6,EA020,No exogamy,EA020-1,,woodnd,,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18558,Cb7,EA020,No exogamy,EA020-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18559,Cb8,EA020,No exogamy,EA020-1,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18560,Cb9,EA020,No exogamy,EA020-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18561,Cc1,EA020,No exogamy,EA020-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18562,Cc10,EA020,No exogamy,EA020-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +18563,Cc11,EA020,No exogamy,EA020-1,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +18564,Cc12,EA020,?,EA020-NA,"Although descent is specifically reported as patrilineal, it may well be matrilineal as among other Tuareg",cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +18565,Cc13,EA020,No exogamy,EA020-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +18566,Cc14,EA020,No exogamy,EA020-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18567,Cc15,EA020,No exogamy,EA020-1,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18568,Cc16,EA020,No exogamy,EA020-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18569,Cc17,EA020,No exogamy,EA020-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18570,Cc18,EA020,No exogamy,EA020-1,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18571,Cc19,EA020,No exogamy,EA020-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18572,Cc2,EA020,No exogamy,EA020-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18573,Cc20,EA020,No exogamy,EA020-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18574,Cc3,EA020,No exogamy,EA020-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18575,Cc4,EA020,No exogamy,EA020-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18576,Cc5,EA020,No exogamy,EA020-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +18577,Cc6,EA020,No exogamy,EA020-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18578,Cc7,EA020,No exogamy,EA020-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18579,Cc8,EA020,No exogamy,EA020-1,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18580,Cc9,EA020,No exogamy,EA020-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +18581,Cd1,EA020,No exogamy,EA020-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18582,Cd10,EA020,No exogamy,EA020-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18583,Cd11,EA020,No exogamy,EA020-1,All authorities accept matrilineal descent on the basis of reported matrilineal inheritance and succession,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +18584,Cd12,EA020,No exogamy,EA020-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18585,Cd13,EA020,No exogamy,EA020-1,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18586,Cd14,EA020,No exogamy,EA020-1,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18587,Cd15,EA020,No exogamy,EA020-1,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18588,Cd16,EA020,No exogamy,EA020-1,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18589,Cd17,EA020,No exogamy,EA020-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18590,Cd18,EA020,No exogamy,EA020-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18591,Cd19,EA020,No exogamy,EA020-1,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18592,Cd2,EA020,No exogamy,EA020-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18593,Cd20,EA020,No exogamy,EA020-1,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18594,Cd21,EA020,No exogamy,EA020-1,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18595,Cd3,EA020,No exogamy,EA020-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18596,Cd4,EA020,No exogamy,EA020-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18597,Cd5,EA020,No exogamy,EA020-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18598,Cd6,EA020,No exogamy,EA020-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18599,Cd7,EA020,No exogamy,EA020-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18600,Cd8,EA020,No exogamy,EA020-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18601,Cd9,EA020,No exogamy,EA020-1,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18602,Ce1,EA020,No exogamy,EA020-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18603,Ce2,EA020,No exogamy,EA020-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18604,Ce3,EA020,No exogamy,EA020-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18605,Ce4,EA020,No exogamy,EA020-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18606,Ce5,EA020,No exogamy,EA020-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18607,Ce6,EA020,No exogamy,EA020-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18608,Ce7,EA020,No exogamy,EA020-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18609,Ce8,EA020,No exogamy,EA020-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18610,Cf1,EA020,No exogamy,EA020-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18611,Cf2,EA020,No exogamy,EA020-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18612,Cf3,EA020,No exogamy,EA020-1,,munch1945,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18613,Cf4,EA020,No exogamy,EA020-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18614,Cf5,EA020,No exogamy,EA020-1,,miner1939,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18615,Cg1,EA020,No exogamy,EA020-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18616,Cg2,EA020,No exogamy,EA020-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18617,Cg3,EA020,No exogamy,EA020-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18618,Cg4,EA020,No exogamy,EA020-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18619,Cg5,EA020,No exogamy,EA020-1,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18620,Ch1,EA020,No exogamy,EA020-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18621,Ch10,EA020,No exogamy,EA020-1,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18622,Ch11,EA020,No exogamy,EA020-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18623,Ch2,EA020,No exogamy,EA020-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18624,Ch3,EA020,No exogamy,EA020-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18625,Ch4,EA020,No exogamy,EA020-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18626,Ch5,EA020,No exogamy,EA020-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18627,Ch6,EA020,No exogamy,EA020-1,,ember1954,,1910,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18628,Ch7,EA020,No exogamy,EA020-1,,friedrich1954,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18629,Ch8,EA020,No exogamy,EA020-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18630,Ch9,EA020,No exogamy,EA020-1,,maciuika1955,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18631,Ci1,EA020,No exogamy,EA020-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18632,Ci10,EA020,No exogamy,EA020-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18633,Ci11,EA020,No exogamy,EA020-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18634,Ci12,EA020,No exogamy,EA020-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18635,Ci2,EA020,No exogamy,EA020-1,,grigolia1939,,1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18636,Ci3,EA020,No exogamy,EA020-1,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18637,Ci4,EA020,No exogamy,EA020-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18638,Ci5,EA020,No exogamy,EA020-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18639,Ci6,EA020,No exogamy,EA020-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18640,Ci7,EA020,No exogamy,EA020-1,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18641,Ci8,EA020,No exogamy,EA020-1,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18642,Ci9,EA020,No exogamy,EA020-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18643,Cj1,EA020,No exogamy,EA020-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18644,Cj10,EA020,No exogamy,EA020-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18645,Cj2,EA020,No exogamy,EA020-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18646,Cj3,EA020,No exogamy,EA020-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18647,Cj4,EA020,No exogamy,EA020-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18648,Cj5,EA020,No exogamy,EA020-1,,dickson1949,,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18649,Cj6,EA020,No exogamy,EA020-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18650,Cj7,EA020,No exogamy,EA020-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18651,Cj8,EA020,No exogamy,EA020-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18652,Cj9,EA020,No exogamy,EA020-1,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18653,Ea1,EA020,No exogamy,EA020-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18654,Ea10,EA020,No exogamy,EA020-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18655,Ea11,EA020,No exogamy,EA020-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18656,Ea12,EA020,No exogamy,EA020-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18657,Ea13,EA020,No exogamy,EA020-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18658,Ea2,EA020,No exogamy,EA020-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18659,Ea3,EA020,No exogamy,EA020-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18660,Ea4,EA020,No exogamy,EA020-1,,barth1956b,,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18661,Ea5,EA020,No exogamy,EA020-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18662,Ea6,EA020,No exogamy,EA020-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18663,Ea7,EA020,No exogamy,EA020-1,,schurmann1962,,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18664,Ea8,EA020,No exogamy,EA020-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18665,Ea9,EA020,No exogamy,EA020-1,,vreeland1957,,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18666,Eb1,EA020,No exogamy,EA020-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18667,Eb2,EA020,No exogamy,EA020-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18668,Eb3,EA020,No exogamy,EA020-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18669,Eb4,EA020,No exogamy,EA020-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18670,Eb5,EA020,No exogamy,EA020-1,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18671,Eb6,EA020,No exogamy,EA020-1,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18672,Eb7,EA020,No exogamy,EA020-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18673,Eb8,EA020,No exogamy,EA020-1,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18674,Ec1,EA020,No exogamy,EA020-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18675,Ec10,EA020,No exogamy,EA020-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18676,Ec11,EA020,No exogamy,EA020-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18677,Ec2,EA020,No exogamy,EA020-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18678,Ec3,EA020,No exogamy,EA020-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18679,Ec4,EA020,No exogamy,EA020-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18680,Ec5,EA020,No exogamy,EA020-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18681,Ec6,EA020,No exogamy,EA020-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18682,Ec7,EA020,Lineages,EA020-3,But there are patrilineal kin groups consisting of males only,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +18683,Ec8,EA020,No exogamy,EA020-1,,shimkin1939,,1900,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18684,Ec9,EA020,No exogamy,EA020-1,,lattimore1933,,1920,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18685,Ed1,EA020,No exogamy,EA020-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18686,Ed10,EA020,No exogamy,EA020-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18687,Ed13,EA020,No exogamy,EA020-1,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18688,Ed14,EA020,No exogamy,EA020-1,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18689,Ed15a,EA020,No exogamy,EA020-1,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18690,Ed15b,EA020,No exogamy,EA020-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18691,Ed16,EA020,No exogamy,EA020-1,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18692,Ed2,EA020,No exogamy,EA020-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18693,Ed3,EA020,No exogamy,EA020-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18694,Ed4,EA020,No exogamy,EA020-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18695,Ed5,EA020,No exogamy,EA020-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18696,Ed6,EA020,No exogamy,EA020-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18697,Ed7,EA020,No exogamy,EA020-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18698,Ed8,EA020,No exogamy,EA020-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18699,Ed9,EA020,No exogamy,EA020-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18700,Ee1,EA020,No exogamy,EA020-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18701,Ee2,EA020,No exogamy,EA020-1,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18702,Ee3,EA020,No exogamy,EA020-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18703,Ee4,EA020,No exogamy,EA020-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18704,Ee5,EA020,No exogamy,EA020-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18705,Ee6,EA020,No exogamy,EA020-1,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18706,Ee7,EA020,No exogamy,EA020-1,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18707,Ee8,EA020,No exogamy,EA020-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18708,Ef1,EA020,No exogamy,EA020-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18709,Ef10,EA020,No exogamy,EA020-1,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18710,Ef11,EA020,No exogamy,EA020-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18711,Ef2,EA020,No exogamy,EA020-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18712,Ef3,EA020,No exogamy,EA020-1,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18713,Ef4,EA020,No exogamy,EA020-1,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18714,Ef5,EA020,No exogamy,EA020-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18715,Ef6,EA020,No exogamy,EA020-1,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18716,Ef7,EA020,No exogamy,EA020-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18717,Ef8,EA020,No exogamy,EA020-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18718,Ef9,EA020,No exogamy,EA020-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18719,Eg1,EA020,No exogamy,EA020-1,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18720,Eg10,EA020,No exogamy,EA020-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18721,Eg11,EA020,No exogamy,EA020-1,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18722,Eg12,EA020,No exogamy,EA020-1,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18723,Eg13,EA020,No exogamy,EA020-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18724,Eg14,EA020,No exogamy,EA020-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18725,Eg2,EA020,No exogamy,EA020-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18726,Eg3,EA020,No exogamy,EA020-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18727,Eg4,EA020,Sibs,EA020-4,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +18728,Eg5,EA020,No exogamy,EA020-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18729,Eg6,EA020,Sibs,EA020-4,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +18730,Eg7,EA020,No exogamy,EA020-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18731,Eg8,EA020,No exogamy,EA020-1,,griffiths1946,,1940,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18732,Eg9,EA020,No exogamy,EA020-1,,elwin1939,,1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18733,Eh1,EA020,No exogamy,EA020-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18734,Eh10,EA020,No exogamy,EA020-1,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18735,Eh2,EA020,Extended taboo,EA020-2,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +18736,Eh3,EA020,Extended taboo,EA020-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +18737,Eh4,EA020,Sibs,EA020-4,"Leach, on questionable evidence (see discussion Murdock (1965a)), denies the occurrence of matrilineal sibs",bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18738,Eh5,EA020,No exogamy,EA020-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18739,Eh6,EA020,No exogamy,EA020-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18740,Eh7,EA020,No exogamy,EA020-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18741,Eh8,EA020,No exogamy,EA020-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18742,Eh9,EA020,No exogamy,EA020-1,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18743,Ei1,EA020,Moieties,EA020-6,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18744,Ei10,EA020,No exogamy,EA020-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18745,Ei11,EA020,No exogamy,EA020-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18746,Ei12,EA020,No exogamy,EA020-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18747,Ei13,EA020,No exogamy,EA020-1,,hutton1921a,,1910,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18748,Ei14,EA020,No exogamy,EA020-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18749,Ei15,EA020,No exogamy,EA020-1,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18750,Ei16,EA020,No exogamy,EA020-1,,hutton1921b,,1910,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18751,Ei17,EA020,No exogamy,EA020-1,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18752,Ei18,EA020,No exogamy,EA020-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18753,Ei19,EA020,No exogamy,EA020-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18754,Ei2,EA020,No exogamy,EA020-1,,mills1922,,1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18755,Ei20,EA020,No exogamy,EA020-1,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18756,Ei3,EA020,No exogamy,EA020-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18757,Ei4,EA020,No exogamy,EA020-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18758,Ei5,EA020,No exogamy,EA020-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18759,Ei6,EA020,No exogamy,EA020-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18760,Ei7,EA020,No exogamy,EA020-1,But there are agamous matrilineages which function in ancestor worship,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18761,Ei8,EA020,Phratries,EA020-5,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +18762,Ei9,EA020,No exogamy,EA020-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18763,Ej1,EA020,No exogamy,EA020-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18764,Ej10,EA020,Phratries,EA020-5,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +18765,Ej11,EA020,Lineages,EA020-3,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +18766,Ej12,EA020,No exogamy,EA020-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18767,Ej13,EA020,No exogamy,EA020-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18768,Ej14,EA020,No exogamy,EA020-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18769,Ej15,EA020,No exogamy,EA020-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18770,Ej16,EA020,Sibs,EA020-4,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +18771,Ej2,EA020,Sibs,EA020-4,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +18772,Ej3,EA020,No exogamy,EA020-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18773,Ej4,EA020,No exogamy,EA020-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18774,Ej5,EA020,No exogamy,EA020-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18775,Ej6,EA020,No exogamy,EA020-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18776,Ej7,EA020,No exogamy,EA020-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18777,Ej8,EA020,No exogamy,EA020-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18778,Ej9,EA020,No exogamy,EA020-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18779,Ia1,EA020,No exogamy,EA020-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18780,Ia10,EA020,No exogamy,EA020-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18781,Ia11,EA020,No exogamy,EA020-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18782,Ia12,EA020,No exogamy,EA020-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18783,Ia13,EA020,No exogamy,EA020-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18784,Ia14,EA020,No exogamy,EA020-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18785,Ia15,EA020,No exogamy,EA020-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18786,Ia16,EA020,No exogamy,EA020-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18787,Ia17,EA020,No exogamy,EA020-1,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18788,Ia18,EA020,No exogamy,EA020-1,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18789,Ia2,EA020,No exogamy,EA020-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18790,Ia3,EA020,No exogamy,EA020-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18791,Ia4,EA020,No exogamy,EA020-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18792,Ia5,EA020,No exogamy,EA020-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18793,Ia6,EA020,No exogamy,EA020-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18794,Ia7,EA020,No exogamy,EA020-1,,fox1954,,1950,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18795,Ia8,EA020,No exogamy,EA020-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18796,Ia9,EA020,Lineages,EA020-3,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +18797,Ib1,EA020,No exogamy,EA020-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18798,Ib2,EA020,No exogamy,EA020-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18799,Ib3,EA020,No exogamy,EA020-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18800,Ib4,EA020,No exogamy,EA020-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18801,Ib5,EA020,No exogamy,EA020-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18802,Ib6,EA020,Sibs,EA020-4,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +18803,Ib7,EA020,No exogamy,EA020-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18804,Ib8,EA020,No exogamy,EA020-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18805,Ib9,EA020,No exogamy,EA020-1,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18806,Ic1,EA020,No exogamy,EA020-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18807,Ic10,EA020,No exogamy,EA020-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18808,Ic11,EA020,No exogamy,EA020-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18809,Ic12,EA020,No exogamy,EA020-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18810,Ic13,EA020,Lineages,EA020-3,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +18811,Ic2,EA020,No exogamy,EA020-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18812,Ic3,EA020,Lineages,EA020-3,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +18813,Ic4,EA020,No exogamy,EA020-1,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18814,Ic5,EA020,No exogamy,EA020-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18815,Ic6,EA020,No exogamy,EA020-1,,drabbe1940,,1930,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18816,Ic7,EA020,No exogamy,EA020-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18817,Ic8,EA020,No exogamy,EA020-1,,pleyte1893,,1890,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18818,Ic9,EA020,No exogamy,EA020-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18819,Id1,EA020,Moieties,EA020-6,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +18820,Id10,EA020,Sibs,EA020-4,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +18821,Id11,EA020,Moieties,EA020-6,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +18822,Id12,EA020,No exogamy,EA020-1,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18823,Id13,EA020,Moieties,EA020-6,Implicit matrimoieties,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +18824,Id2,EA020,Moieties,EA020-6,The matrimoieties are implicit and unnamed,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +18825,Id3,EA020,Phratries,EA020-5,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +18826,Id4,EA020,Moieties,EA020-6,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +18827,Id5,EA020,Moieties,EA020-6,Implicit matrimoieties intersecting the patrimoieties to form four sections,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +18828,Id6,EA020,No exogamy,EA020-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18829,Id7,EA020,No exogamy,EA020-1,"Although subsections were borrowed about 1915, they have not yet been integrated into the social system, and implicit matrimoieties have therefore not been established",falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18830,Id8,EA020,?,EA020-NA,,,,,, +18831,Id9,EA020,Moieties,EA020-6,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +18832,Ie1,EA020,No exogamy,EA020-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18833,Ie10,EA020,No exogamy,EA020-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18834,Ie11,EA020,No exogamy,EA020-1,,bowers1964,,1950,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18835,Ie12,EA020,No exogamy,EA020-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18836,Ie13,EA020,No exogamy,EA020-1,,landtman1927,,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18837,Ie14,EA020,No exogamy,EA020-1,,haddon1908,,1900,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18838,Ie15,EA020,No exogamy,EA020-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18839,Ie16,EA020,No exogamy,EA020-1,,williams194041,,1940,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18840,Ie17,EA020,No exogamy,EA020-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18841,Ie18,EA020,No exogamy,EA020-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18842,Ie19,EA020,No exogamy,EA020-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18843,Ie2,EA020,No exogamy,EA020-1,,schmitz1960,,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18844,Ie20,EA020,No exogamy,EA020-1,,seligmann1910,,1900,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18845,Ie21,EA020,No exogamy,EA020-1,,malinowski1916,,1900,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18846,Ie22,EA020,No exogamy,EA020-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18847,Ie23,EA020,No exogamy,EA020-1,,schoorl1957,,1950,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18848,Ie24,EA020,No exogamy,EA020-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18849,Ie25,EA020,No exogamy,EA020-1,,williamson1912,,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18850,Ie26,EA020,No exogamy,EA020-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18851,Ie27,EA020,No exogamy,EA020-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18852,Ie28,EA020,Lineages,EA020-3,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +18853,Ie29,EA020,No exogamy,EA020-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18854,Ie3,EA020,No exogamy,EA020-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18855,Ie30,EA020,Lineages,EA020-3,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +18856,Ie31,EA020,No exogamy,EA020-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18857,Ie32,EA020,No exogamy,EA020-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18858,Ie33,EA020,No exogamy,EA020-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18859,Ie34,EA020,No exogamy,EA020-1,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18860,Ie35,EA020,No exogamy,EA020-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18861,Ie36,EA020,No exogamy,EA020-1,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18862,Ie37,EA020,No exogamy,EA020-1,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18863,Ie38,EA020,No exogamy,EA020-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18864,Ie39,EA020,No exogamy,EA020-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18865,Ie4,EA020,Moieties,EA020-6,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18866,Ie5,EA020,No exogamy,EA020-1,,williams1936,,1930,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18867,Ie6,EA020,No exogamy,EA020-1,,held1947,,1930,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18868,Ie7,EA020,No exogamy,EA020-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18869,Ie8,EA020,No exogamy,EA020-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18870,Ie9,EA020,No exogamy,EA020-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18871,If1,EA020,Sibs,EA020-4,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18872,If10,EA020,Sibs,EA020-4,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +18873,If11,EA020,Lineages,EA020-3,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +18874,If12,EA020,Sibs,EA020-4,,mason1954,,1940,EthnographicAtlas_1967_p98, +18875,If13,EA020,Sibs,EA020-4,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +18876,If14,EA020,No exogamy,EA020-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18877,If15,EA020,Sibs,EA020-4,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +18878,If16,EA020,Sibs,EA020-4,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +18879,If17,EA020,Sibs,EA020-4,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +18880,If2,EA020,Sibs,EA020-4,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +18881,If3,EA020,Sibs,EA020-4,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +18882,If4,EA020,Sibs,EA020-4,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +18883,If5,EA020,Sibs,EA020-4,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +18884,If6,EA020,Sibs,EA020-4,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +18885,If7,EA020,No exogamy,EA020-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18886,If8,EA020,No exogamy,EA020-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18887,If9,EA020,Lineages,EA020-3,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +18888,Ig1,EA020,Sibs,EA020-4,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +18889,Ig10,EA020,Lineages,EA020-3,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +18890,Ig11,EA020,Sibs,EA020-4,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +18891,Ig12,EA020,No exogamy,EA020-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18892,Ig13,EA020,No exogamy,EA020-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +18893,Ig14,EA020,Sibs,EA020-4,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +18894,Ig15,EA020,No exogamy,EA020-1,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18895,Ig16,EA020,No exogamy,EA020-1,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18896,Ig17,EA020,No exogamy,EA020-1,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18897,Ig18,EA020,No exogamy,EA020-1,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18898,Ig19,EA020,No exogamy,EA020-1,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18899,Ig2,EA020,Phratries,EA020-5,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +18900,Ig20,EA020,Sibs,EA020-4,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +18901,Ig21,EA020,Sibs,EA020-4,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +18902,Ig3,EA020,Sibs,EA020-4,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +18903,Ig4,EA020,Moieties,EA020-6,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +18904,Ig5,EA020,Sibs,EA020-4,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +18905,Ig6,EA020,No exogamy,EA020-1,,ivens1927,,1900,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18906,Ig7,EA020,Phratries,EA020-5,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +18907,Ig8,EA020,No exogamy,EA020-1,"Though descent is actually ambilineal, matrilineal ties are considered stronger than patrilineal ones",hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18908,Ig9,EA020,Lineages,EA020-3,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +18909,Ih1,EA020,Sibs,EA020-4,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +18910,Ih10,EA020,No exogamy,EA020-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18911,Ih11,EA020,No exogamy,EA020-1,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18912,Ih12,EA020,No exogamy,EA020-1,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18913,Ih13,EA020,Moieties,EA020-6,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +18914,Ih14,EA020,No exogamy,EA020-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18915,Ih2,EA020,No exogamy,EA020-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18916,Ih3,EA020,Moieties,EA020-6,The matrimoieties are implicit,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +18917,Ih4,EA020,No exogamy,EA020-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18918,Ih5,EA020,No exogamy,EA020-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18919,Ih6,EA020,Lineages,EA020-3,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +18920,Ih7,EA020,No exogamy,EA020-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18921,Ih8,EA020,Moieties,EA020-6,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +18922,Ih9,EA020,Sibs,EA020-4,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18923,Ii1,EA020,No exogamy,EA020-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18924,Ii10,EA020,No exogamy,EA020-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18925,Ii12,EA020,No exogamy,EA020-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18926,Ii13,EA020,No exogamy,EA020-1,,burrows1937,,1830,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18927,Ii14,EA020,No exogamy,EA020-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18928,Ii2,EA020,No exogamy,EA020-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18929,Ii3,EA020,Lineages,EA020-3,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +18930,Ii4,EA020,No exogamy,EA020-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18931,Ii5,EA020,No exogamy,EA020-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18932,Ii6,EA020,No exogamy,EA020-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18933,Ii7,EA020,No exogamy,EA020-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18934,Ii8,EA020,No exogamy,EA020-1,,burrows1936,,1840,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18935,Ii9,EA020,No exogamy,EA020-1,,loeb1926a,,1840,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18936,Ij1,EA020,No exogamy,EA020-1,,buck1934,,1820,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18937,Ij10,EA020,No exogamy,EA020-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18938,Ij2,EA020,No exogamy,EA020-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18939,Ij3,EA020,No exogamy,EA020-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18940,Ij4,EA020,No exogamy,EA020-1,,buck1932a,,1850,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18941,Ij5,EA020,No exogamy,EA020-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18942,Ij6,EA020,No exogamy,EA020-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18943,Ij7,EA020,No exogamy,EA020-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18944,Ij8,EA020,No exogamy,EA020-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18945,Ij9,EA020,No exogamy,EA020-1,,metraux1940,,1860,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18946,Na1,EA020,Phratries,EA020-5,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +18947,Na10,EA020,No exogamy,EA020-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18948,Na11,EA020,No exogamy,EA020-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18949,Na12,EA020,No exogamy,EA020-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18950,Na13,EA020,No exogamy,EA020-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18951,Na14,EA020,No exogamy,EA020-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18952,Na15,EA020,No exogamy,EA020-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18953,Na16,EA020,No exogamy,EA020-1,,osgood1931,,1860,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18954,Na17,EA020,No exogamy,EA020-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18955,Na19,EA020,Phratries,EA020-5,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +18956,Na2,EA020,No exogamy,EA020-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18957,Na20,EA020,Sibs,EA020-4,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +18958,Na21,EA020,No exogamy,EA020-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18959,Na22,EA020,No exogamy,EA020-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18960,Na23,EA020,No exogamy,EA020-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18961,Na24,EA020,No exogamy,EA020-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18962,Na25,EA020,No exogamy,EA020-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18963,Na26,EA020,Moieties,EA020-6,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +18964,Na27,EA020,Sibs,EA020-4,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +18965,Na28,EA020,No exogamy,EA020-1,,jenness1937,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18966,Na29,EA020,No exogamy,EA020-1,,goddard1916,,1850,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18967,Na3,EA020,No exogamy,EA020-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18968,Na30,EA020,No exogamy,EA020-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18969,Na31,EA020,No exogamy,EA020-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18970,Na32,EA020,No exogamy,EA020-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18971,Na33,EA020,No exogamy,EA020-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18972,Na34,EA020,No exogamy,EA020-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18973,Na35,EA020,No exogamy,EA020-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18974,Na36,EA020,No exogamy,EA020-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18975,Na37,EA020,No exogamy,EA020-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18976,Na38,EA020,No exogamy,EA020-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18977,Na39,EA020,No exogamy,EA020-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18978,Na4,EA020,Moieties,EA020-6,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +18979,Na40,EA020,No exogamy,EA020-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18980,Na41,EA020,No exogamy,EA020-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18981,Na42,EA020,No exogamy,EA020-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18982,Na43,EA020,No exogamy,EA020-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18983,Na44,EA020,No exogamy,EA020-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18984,Na45,EA020,No exogamy,EA020-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18985,Na5,EA020,No exogamy,EA020-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18986,Na6,EA020,No exogamy,EA020-1,,lantis1946,,1930,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18987,Na7,EA020,No exogamy,EA020-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18988,Na8,EA020,No exogamy,EA020-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18989,Na9,EA020,No exogamy,EA020-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +18990,Nb1,EA020,Moieties,EA020-6,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +18991,Nb10,EA020,No exogamy,EA020-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18992,Nb11,EA020,No exogamy,EA020-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18993,Nb12,EA020,No exogamy,EA020-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18994,Nb13,EA020,No exogamy,EA020-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18995,Nb14,EA020,No exogamy,EA020-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18996,Nb15,EA020,No exogamy,EA020-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18997,Nb16,EA020,No exogamy,EA020-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18998,Nb17,EA020,No exogamy,EA020-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +18999,Nb18,EA020,No exogamy,EA020-1,,pettitt1950,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19000,Nb19,EA020,No exogamy,EA020-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19001,Nb2,EA020,No exogamy,EA020-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19002,Nb20,EA020,No exogamy,EA020-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19003,Nb21,EA020,No exogamy,EA020-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19004,Nb22,EA020,Moieties,EA020-6,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +19005,Nb23,EA020,No exogamy,EA020-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19006,Nb24,EA020,No exogamy,EA020-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19007,Nb25,EA020,No exogamy,EA020-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19008,Nb26,EA020,No exogamy,EA020-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19009,Nb27,EA020,No exogamy,EA020-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19010,Nb28,EA020,No exogamy,EA020-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19011,Nb29,EA020,No exogamy,EA020-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19012,Nb3,EA020,No exogamy,EA020-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19013,Nb30,EA020,No exogamy,EA020-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19014,Nb31,EA020,No exogamy,EA020-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19015,Nb32,EA020,No exogamy,EA020-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19016,Nb33,EA020,No exogamy,EA020-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19017,Nb34,EA020,No exogamy,EA020-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19018,Nb35,EA020,No exogamy,EA020-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19019,Nb36,EA020,No exogamy,EA020-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19020,Nb37,EA020,No exogamy,EA020-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19021,Nb38,EA020,No exogamy,EA020-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19022,Nb39,EA020,No exogamy,EA020-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19023,Nb4,EA020,No exogamy,EA020-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19024,Nb5,EA020,Moieties,EA020-6,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +19025,Nb6,EA020,No exogamy,EA020-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19026,Nb7,EA020,Phratries,EA020-5,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +19027,Nb8,EA020,Sibs,EA020-4,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +19028,Nb9,EA020,No exogamy,EA020-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19029,Nc1,EA020,No exogamy,EA020-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19030,Nc10,EA020,No exogamy,EA020-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19031,Nc11,EA020,No exogamy,EA020-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19032,Nc12,EA020,No exogamy,EA020-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19033,Nc13,EA020,No exogamy,EA020-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19034,Nc14,EA020,No exogamy,EA020-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19035,Nc15,EA020,No exogamy,EA020-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19036,Nc16,EA020,No exogamy,EA020-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19037,Nc17,EA020,No exogamy,EA020-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19038,Nc18,EA020,No exogamy,EA020-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19039,Nc19,EA020,No exogamy,EA020-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19040,Nc2,EA020,No exogamy,EA020-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19041,Nc20,EA020,No exogamy,EA020-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19042,Nc21,EA020,No exogamy,EA020-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19043,Nc22,EA020,No exogamy,EA020-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19044,Nc23,EA020,No exogamy,EA020-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19045,Nc24,EA020,No exogamy,EA020-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19046,Nc25,EA020,No exogamy,EA020-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19047,Nc26,EA020,No exogamy,EA020-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19048,Nc27,EA020,No exogamy,EA020-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19049,Nc28,EA020,No exogamy,EA020-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19050,Nc29,EA020,No exogamy,EA020-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19051,Nc3,EA020,No exogamy,EA020-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19052,Nc30,EA020,No exogamy,EA020-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19053,Nc31,EA020,No exogamy,EA020-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19054,Nc32,EA020,No exogamy,EA020-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19055,Nc33,EA020,No exogamy,EA020-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19056,Nc34,EA020,No exogamy,EA020-1,,meigs1939,,1880,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19057,Nc4,EA020,No exogamy,EA020-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19058,Nc5,EA020,No exogamy,EA020-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19059,Nc6,EA020,No exogamy,EA020-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19060,Nc7,EA020,No exogamy,EA020-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19061,Nc8,EA020,No exogamy,EA020-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19062,Nc9,EA020,No exogamy,EA020-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19063,Nd1,EA020,No exogamy,EA020-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19064,Nd10,EA020,No exogamy,EA020-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19065,Nd11,EA020,No exogamy,EA020-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19066,Nd12,EA020,No exogamy,EA020-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19067,Nd13,EA020,No exogamy,EA020-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19068,Nd14,EA020,No exogamy,EA020-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19069,Nd15,EA020,No exogamy,EA020-1,,clineetal1938,,1880,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19070,Nd16,EA020,No exogamy,EA020-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19071,Nd17,EA020,No exogamy,EA020-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19072,Nd18,EA020,No exogamy,EA020-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19073,Nd19,EA020,No exogamy,EA020-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19074,Nd2,EA020,No exogamy,EA020-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19075,Nd20,EA020,No exogamy,EA020-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19076,Nd21,EA020,No exogamy,EA020-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19077,Nd22,EA020,No exogamy,EA020-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19078,Nd23,EA020,No exogamy,EA020-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19079,Nd24,EA020,No exogamy,EA020-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19080,Nd25,EA020,No exogamy,EA020-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19081,Nd26,EA020,No exogamy,EA020-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19082,Nd27,EA020,No exogamy,EA020-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19083,Nd28,EA020,No exogamy,EA020-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19084,Nd29,EA020,No exogamy,EA020-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19085,Nd3,EA020,No exogamy,EA020-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19086,Nd30,EA020,No exogamy,EA020-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19087,Nd31,EA020,No exogamy,EA020-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19088,Nd32,EA020,No exogamy,EA020-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19089,Nd33,EA020,No exogamy,EA020-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19090,Nd34,EA020,No exogamy,EA020-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19091,Nd35,EA020,No exogamy,EA020-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19092,Nd36,EA020,No exogamy,EA020-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19093,Nd37,EA020,No exogamy,EA020-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19094,Nd38,EA020,No exogamy,EA020-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19095,Nd39,EA020,No exogamy,EA020-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19096,Nd4,EA020,No exogamy,EA020-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19097,Nd40,EA020,No exogamy,EA020-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19098,Nd41,EA020,No exogamy,EA020-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19099,Nd42,EA020,No exogamy,EA020-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19100,Nd43,EA020,No exogamy,EA020-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19101,Nd44,EA020,No exogamy,EA020-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19102,Nd45,EA020,No exogamy,EA020-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19103,Nd46,EA020,No exogamy,EA020-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19104,Nd47,EA020,No exogamy,EA020-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19105,Nd48,EA020,No exogamy,EA020-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19106,Nd49,EA020,No exogamy,EA020-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19107,Nd5,EA020,No exogamy,EA020-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19108,Nd50,EA020,No exogamy,EA020-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19109,Nd51,EA020,No exogamy,EA020-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19110,Nd52,EA020,No exogamy,EA020-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19111,Nd53,EA020,No exogamy,EA020-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19112,Nd54,EA020,No exogamy,EA020-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19113,Nd55,EA020,No exogamy,EA020-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19114,Nd56,EA020,No exogamy,EA020-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19115,Nd57,EA020,No exogamy,EA020-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19116,Nd58,EA020,No exogamy,EA020-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19117,Nd59,EA020,No exogamy,EA020-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19118,Nd6,EA020,No exogamy,EA020-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19119,Nd60,EA020,No exogamy,EA020-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19120,Nd61,EA020,No exogamy,EA020-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19121,Nd62,EA020,No exogamy,EA020-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19122,Nd63,EA020,No exogamy,EA020-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19123,Nd64,EA020,No exogamy,EA020-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19124,Nd65,EA020,No exogamy,EA020-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19125,Nd66,EA020,No exogamy,EA020-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19126,Nd67,EA020,No exogamy,EA020-1,,gifford1936,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19127,Nd7,EA020,No exogamy,EA020-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19128,Nd8,EA020,No exogamy,EA020-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19129,Nd9,EA020,No exogamy,EA020-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19130,Ne1,EA020,No exogamy,EA020-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19131,Ne10,EA020,No exogamy,EA020-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19132,Ne11,EA020,No exogamy,EA020-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19133,Ne12,EA020,No exogamy,EA020-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19134,Ne13,EA020,No exogamy,EA020-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19135,Ne14,EA020,No exogamy,EA020-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19136,Ne15,EA020,Sibs,EA020-4,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +19137,Ne16,EA020,No exogamy,EA020-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19138,Ne17,EA020,No exogamy,EA020-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19139,Ne18,EA020,No exogamy,EA020-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19140,Ne19,EA020,No exogamy,EA020-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19141,Ne2,EA020,No exogamy,EA020-1,,mcallister1937,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19142,Ne20,EA020,No exogamy,EA020-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19143,Ne21,EA020,No exogamy,EA020-1,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19144,Ne3,EA020,No exogamy,EA020-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19145,Ne4,EA020,Sibs,EA020-4,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +19146,Ne5,EA020,No exogamy,EA020-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19147,Ne6,EA020,Sibs,EA020-4,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +19148,Ne7,EA020,No exogamy,EA020-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19149,Ne8,EA020,No exogamy,EA020-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19150,Ne9,EA020,No exogamy,EA020-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19151,Nf10,EA020,No exogamy,EA020-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19152,Nf11,EA020,No exogamy,EA020-1,,whitman1937,,1870,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19153,Nf12,EA020,No exogamy,EA020-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19154,Nf13,EA020,No exogamy,EA020-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19155,Nf14,EA020,No exogamy,EA020-1,"But castes were matrilineal, much as among the Natchez",parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19156,Nf15,EA020,No exogamy,EA020-1,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19157,Nf2,EA020,No exogamy,EA020-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19158,Nf3,EA020,No exogamy,EA020-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19159,Nf4,EA020,No exogamy,EA020-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19160,Nf5,EA020,No exogamy,EA020-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19161,Nf6,EA020,Lineages,EA020-3,"Though not specifically attested, matrilineages are suggested by analysis of the kinship terminology",dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +19162,Nf7,EA020,No exogamy,EA020-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19163,Nf8,EA020,No exogamy,EA020-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19164,Nf9,EA020,No exogamy,EA020-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19165,Ng1,EA020,Sibs,EA020-4,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +19166,Ng10,EA020,Moieties,EA020-6,But the kindred Mohawk and Oneida tribes lacked moieties,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +19167,Ng11,EA020,Sibs,EA020-4,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +19168,Ng12,EA020,Moieties,EA020-6,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +19169,Ng13,EA020,No exogamy,EA020-1,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19170,Ng14,EA020,Sibs,EA020-4,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +19171,Ng15,EA020,No exogamy,EA020-1,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19172,Ng2,EA020,Sibs,EA020-4,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +19173,Ng3,EA020,Sibs,EA020-4,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +19174,Ng4,EA020,No exogamy,EA020-1,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19175,Ng5,EA020,Sibs,EA020-4,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +19176,Ng6,EA020,Sibs,EA020-4,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +19177,Ng7,EA020,No exogamy,EA020-1,"Matrilineages were subsequently borrowed from the Creek, but descent was always matrilineal with respect to social classes",macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19178,Ng8,EA020,Phratries,EA020-5,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +19179,Ng9,EA020,No exogamy,EA020-1,"Sturtevant questions the note that the Catawba were ""probably matrilineal aborginally,"" doubting the reliability of Lederer on the basis of whom the statement was made",speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19180,Nh1,EA020,No exogamy,EA020-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19181,Nh10,EA020,No exogamy,EA020-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19182,Nh11,EA020,No exogamy,EA020-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19183,Nh12,EA020,Lineages,EA020-3,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +19184,Nh13,EA020,Lineages,EA020-3,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +19185,Nh14,EA020,Lineages,EA020-3,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +19186,Nh15,EA020,No exogamy,EA020-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19187,Nh16,EA020,No exogamy,EA020-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19188,Nh17,EA020,Sibs,EA020-4,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +19189,Nh18,EA020,Sibs,EA020-4,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19190,Nh19,EA020,No exogamy,EA020-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19191,Nh2,EA020,Lineages,EA020-3,,dozier1954,,1950,EthnographicAtlas_1967_p114, +19192,Nh20,EA020,No exogamy,EA020-1,,gifford1931,,1860,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19193,Nh21,EA020,No exogamy,EA020-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19194,Nh22,EA020,No exogamy,EA020-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19195,Nh23,EA020,Sibs,EA020-4,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +19196,Nh24,EA020,No exogamy,EA020-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19197,Nh25,EA020,Sibs,EA020-4,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +19198,Nh26,EA020,No exogamy,EA020-1,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19199,Nh27,EA020,Sibs,EA020-4,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +19200,Nh3,EA020,Sibs,EA020-4,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +19201,Nh4,EA020,Lineages,EA020-3,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +19202,Nh5,EA020,No exogamy,EA020-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19203,Nh6,EA020,No exogamy,EA020-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19204,Nh7,EA020,Sibs,EA020-4,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +19205,Nh8,EA020,Lineages,EA020-3,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +19206,Nh9,EA020,No exogamy,EA020-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19207,Ni1,EA020,No exogamy,EA020-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19208,Ni2,EA020,No exogamy,EA020-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19209,Ni3,EA020,No exogamy,EA020-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19210,Ni4,EA020,No exogamy,EA020-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19211,Ni5,EA020,No exogamy,EA020-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19212,Ni6,EA020,No exogamy,EA020-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19213,Ni7,EA020,No exogamy,EA020-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19214,Ni8,EA020,No exogamy,EA020-1,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19215,Ni9,EA020,No exogamy,EA020-1,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19216,Nj1,EA020,No exogamy,EA020-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19217,Nj10,EA020,No exogamy,EA020-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19218,Nj11,EA020,No exogamy,EA020-1,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19219,Nj12,EA020,No exogamy,EA020-1,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19220,Nj13,EA020,No exogamy,EA020-1,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19221,Nj14,EA020,No exogamy,EA020-1,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19222,Nj2,EA020,No exogamy,EA020-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19223,Nj3,EA020,No exogamy,EA020-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19224,Nj4,EA020,No exogamy,EA020-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19225,Nj5,EA020,No exogamy,EA020-1,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19226,Nj6,EA020,No exogamy,EA020-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19227,Nj7,EA020,No exogamy,EA020-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19228,Nj8,EA020,No exogamy,EA020-1,,foster1948,,1500,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19229,Nj9,EA020,No exogamy,EA020-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19230,Sa1,EA020,No exogamy,EA020-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19231,Sa10,EA020,No exogamy,EA020-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19232,Sa11,EA020,No exogamy,EA020-1,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19233,Sa12,EA020,No exogamy,EA020-1,,stone1948,,1948,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19234,Sa13,EA020,No exogamy,EA020-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19235,Sa14,EA020,Sibs,EA020-4,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +19236,Sa15,EA020,No exogamy,EA020-1,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19237,Sa16,EA020,No exogamy,EA020-1,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19238,Sa17,EA020,No exogamy,EA020-1,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19239,Sa2,EA020,No exogamy,EA020-1,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19240,Sa3,EA020,No exogamy,EA020-1,,wisdom1940,,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19241,Sa4,EA020,No exogamy,EA020-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19242,Sa5,EA020,Moieties,EA020-6,"Formerly moieties (code ""6"")",gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +19243,Sa6,EA020,No exogamy,EA020-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19244,Sa7,EA020,No exogamy,EA020-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19245,Sa8,EA020,No exogamy,EA020-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19246,Sa9,EA020,No exogamy,EA020-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19247,Sb1,EA020,Lineages,EA020-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +19248,Sb2,EA020,No exogamy,EA020-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19249,Sb3,EA020,No exogamy,EA020-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19250,Sb4,EA020,No exogamy,EA020-1,"But Schwerin reports no matrilineal exogamy (code ""1"")",schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19251,Sb5,EA020,No exogamy,EA020-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19252,Sb6,EA020,Lineages,EA020-3,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +19253,Sb7,EA020,No exogamy,EA020-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19254,Sb8,EA020,?,EA020-NA,"Descent may have been matrilineal, like inheritance",rouse1948a,,1520,EthnographicAtlas_1967_p118, +19255,Sb9,EA020,No exogamy,EA020-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19256,Sc1,EA020,No exogamy,EA020-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19257,Sc10,EA020,Sibs,EA020-4,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +19258,Sc11,EA020,No exogamy,EA020-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19259,Sc12,EA020,No exogamy,EA020-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19260,Sc13,EA020,No exogamy,EA020-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19261,Sc14,EA020,No exogamy,EA020-1,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19262,Sc15,EA020,No exogamy,EA020-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19263,Sc16,EA020,No exogamy,EA020-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19264,Sc17,EA020,No exogamy,EA020-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19265,Sc18,EA020,Sibs,EA020-4,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +19266,Sc2,EA020,No exogamy,EA020-1,,leedsnd,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19267,Sc3,EA020,No exogamy,EA020-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19268,Sc4,EA020,No exogamy,EA020-1,"The ""extended families"" are conceivably localized matrilineages",wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19269,Sc5,EA020,No exogamy,EA020-1,,farabee1918,,1900,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19270,Sc6,EA020,Sibs,EA020-4,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19271,Sc7,EA020,No exogamy,EA020-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19272,Sc8,EA020,No exogamy,EA020-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19273,Sc9,EA020,No exogamy,EA020-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19274,Sd1,EA020,No exogamy,EA020-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19275,Sd2,EA020,No exogamy,EA020-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19276,Sd3,EA020,No exogamy,EA020-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19277,Sd4,EA020,No exogamy,EA020-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19278,Sd5,EA020,No exogamy,EA020-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19279,Sd6,EA020,No exogamy,EA020-1,,migliazza1964,,1960,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19280,Sd7,EA020,No exogamy,EA020-1,,fock1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19281,Sd8,EA020,No exogamy,EA020-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19282,Sd9,EA020,No exogamy,EA020-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19283,Se1,EA020,No exogamy,EA020-1,"Possibly lineages (code ""3""), though descent is specifically reported to be bilateral",holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19284,Se10,EA020,No exogamy,EA020-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19285,Se11,EA020,No exogamy,EA020-1,,prost1965,,1960,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19286,Se12,EA020,No exogamy,EA020-1,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19287,Se2,EA020,No exogamy,EA020-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19288,Se3,EA020,No exogamy,EA020-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19289,Se4,EA020,No exogamy,EA020-1,,fejos1943,,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19290,Se5,EA020,No exogamy,EA020-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19291,Se6,EA020,No exogamy,EA020-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19292,Se7,EA020,No exogamy,EA020-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19293,Se8,EA020,No exogamy,EA020-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19294,Se9,EA020,No exogamy,EA020-1,But some authors infer matrilineal descent,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19295,Sf1,EA020,No exogamy,EA020-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19296,Sf2,EA020,No exogamy,EA020-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19297,Sf3,EA020,No exogamy,EA020-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19298,Sf4,EA020,No exogamy,EA020-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19299,Sf5,EA020,No exogamy,EA020-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19300,Sf6,EA020,No exogamy,EA020-1,"Possibly lineages (code ""3"") in view of reported matrilineal succession",ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19301,Sf7,EA020,No exogamy,EA020-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19302,Sf8,EA020,No exogamy,EA020-1,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19303,Sf9,EA020,No exogamy,EA020-1,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19304,Sg1,EA020,No exogamy,EA020-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19305,Sg2,EA020,No exogamy,EA020-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19306,Sg3,EA020,No exogamy,EA020-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19307,Sg4,EA020,No exogamy,EA020-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19308,Sg5,EA020,No exogamy,EA020-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19309,Sh1,EA020,No exogamy,EA020-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19310,Sh2,EA020,No exogamy,EA020-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19311,Sh3,EA020,No exogamy,EA020-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19312,Sh4,EA020,No exogamy,EA020-1,,oberg1949,,1940,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19313,Sh5,EA020,No exogamy,EA020-1,But Karsten dubiously reports matrilineal descent,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19314,Sh6,EA020,No exogamy,EA020-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19315,Sh7,EA020,No exogamy,EA020-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19316,Sh8,EA020,No exogamy,EA020-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19317,Sh9,EA020,No exogamy,EA020-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19318,Si1,EA020,Moieties,EA020-6,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19319,Si10,EA020,No exogamy,EA020-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19320,Si2,EA020,No exogamy,EA020-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19321,Si3,EA020,No exogamy,EA020-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19322,Si4,EA020,No exogamy,EA020-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19323,Si5,EA020,No exogamy,EA020-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19324,Si6,EA020,No exogamy,EA020-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19325,Si7,EA020,No exogamy,EA020-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19326,Si8,EA020,No exogamy,EA020-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19327,Si9,EA020,No exogamy,EA020-1,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19328,Sj1,EA020,No exogamy,EA020-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19329,Sj10,EA020,No exogamy,EA020-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19330,Sj11,EA020,No exogamy,EA020-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19331,Sj2,EA020,No exogamy,EA020-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19332,Sj3,EA020,No exogamy,EA020-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19333,Sj4,EA020,Moieties,EA020-6,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +19334,Sj5,EA020,No exogamy,EA020-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19335,Sj6,EA020,No exogamy,EA020-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19336,Sj7,EA020,?,EA020-NA,"Parallel descent, i.e., patrilineal for males and matrilineal for females",mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +19337,Sj8,EA020,No exogamy,EA020-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19338,Sj9,EA020,No exogamy,EA020-1,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +19339,ch12,EA020,No exogamy,EA020-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +19340,ch13,EA020,No exogamy,EA020-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +19341,ch14,EA020,Extended taboo,EA020-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005,"Comment: originally coded using non-existant code ""Oe"", recoded as ""E""" +19342,ch15,EA020,No exogamy,EA020-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +19343,ch16,EA020,No exogamy,EA020-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +19344,ch17,EA020,No exogamy,EA020-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +19345,ch18,EA020,No exogamy,EA020-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +19346,ch19,EA020,No exogamy,EA020-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +19347,ch20,EA020,No exogamy,EA020-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +19348,ch21,EA020,No exogamy,EA020-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +19349,ch22,EA020,No exogamy,EA020-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +19350,ch23,EA020,No exogamy,EA020-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +19351,ch24,EA020,No exogamy,EA020-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +19352,ch25,EA020,No exogamy,EA020-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +19353,ch26,EA020,Lineages,EA020-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +19354,ch27,EA020,No exogamy,EA020-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +19355,ch28,EA020,No exogamy,EA020-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +19356,ec12,EA020,No exogamy,EA020-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +19357,ec13,EA020,No exogamy,EA020-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +19358,ec14,EA020,No exogamy,EA020-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +19359,ec15,EA020,No exogamy,EA020-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +19360,ec16,EA020,No exogamy,EA020-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +19361,ec17,EA020,No exogamy,EA020-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +19362,ec18,EA020,No exogamy,EA020-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +19363,ec19,EA020,No exogamy,EA020-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +19364,ec20,EA020,No exogamy,EA020-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +19365,ec21,EA020,No exogamy,EA020-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +19366,Aa1,EA201,Different,EA201-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +19367,Aa2,EA201,Same,EA201-2,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +19368,Aa3,EA201,Different,EA201-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +19369,Aa4,EA201,Different,EA201-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +19370,Aa5,EA201,Same,EA201-2,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +19371,Aa6,EA201,Different,EA201-1,Initial residence alternates between Uxorilocal and Patrilocal,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +19372,Aa7,EA201,Different,EA201-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +19373,Aa8,EA201,Different,EA201-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +19374,Aa9,EA201,Same,EA201-2,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +19375,Ab1,EA201,Same,EA201-2,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +19376,Ab10,EA201,Same,EA201-2,,hunter1936,,1936,EthnographicAtlas_1967_p62, +19377,Ab11,EA201,Same,EA201-2,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +19378,Ab12,EA201,Same,EA201-2,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +19379,Ab13,EA201,Different,EA201-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +19380,Ab14,EA201,Same,EA201-2,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +19381,Ab15,EA201,Different,EA201-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +19382,Ab16,EA201,Same,EA201-2,,earthy1933,,1930,EthnographicAtlas_1967_p62, +19383,Ab17,EA201,Same,EA201-2,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +19384,Ab18,EA201,Same,EA201-2,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +19385,Ab19,EA201,Different,EA201-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +19386,Ab2,EA201,Same,EA201-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +19387,Ab20,EA201,Same,EA201-2,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +19388,Ab21a,EA201,Same,EA201-2,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +19389,Ab21b,EA201,Same,EA201-2,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +19390,Ab22,EA201,Same,EA201-2,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +19391,Ab3,EA201,Different,EA201-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +19392,Ab4,EA201,Same,EA201-2,,junod1927,,1920,EthnographicAtlas_1967_p62, +19393,Ab5,EA201,Same,EA201-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +19394,Ab6,EA201,Same,EA201-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +19395,Ab7,EA201,Different,EA201-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +19396,Ab8,EA201,Different,EA201-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +19397,Ab9,EA201,Same,EA201-2,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +19398,Ac1,EA201,Same,EA201-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +19399,Ac10,EA201,Different,EA201-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +19400,Ac11,EA201,Same,EA201-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +19401,Ac12,EA201,Same,EA201-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +19402,Ac13,EA201,Same,EA201-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +19403,Ac14,EA201,Same,EA201-2,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +19404,Ac15,EA201,Same,EA201-2,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +19405,Ac16,EA201,Same,EA201-2,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +19406,Ac17,EA201,Same,EA201-2,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +19407,Ac18,EA201,Same,EA201-2,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +19408,Ac19,EA201,Same,EA201-2,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +19409,Ac2,EA201,Different,EA201-1,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +19410,Ac20,EA201,Same,EA201-2,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +19411,Ac21,EA201,Same,EA201-2,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +19412,Ac22,EA201,Same,EA201-2,,mertens1935,,1930,EthnographicAtlas_1967_p62, +19413,Ac23,EA201,Different,EA201-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +19414,Ac24,EA201,Same,EA201-2,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +19415,Ac25,EA201,Same,EA201-2,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +19416,Ac26,EA201,Same,EA201-2,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +19417,Ac27,EA201,Same,EA201-2,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +19418,Ac28,EA201,Same,EA201-2,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +19419,Ac29,EA201,Same,EA201-2,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +19420,Ac3,EA201,Different,EA201-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +19421,Ac30,EA201,Different,EA201-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +19422,Ac31,EA201,Same,EA201-2,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +19423,Ac32,EA201,Different,EA201-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +19424,Ac33,EA201,Different,EA201-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +19425,Ac34,EA201,Different,EA201-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +19426,Ac35,EA201,Different,EA201-1,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +19427,Ac36,EA201,Same,EA201-2,"Formerly, early residence classified as 'Uxorilocal' and prevailing pattern as ""Avunculocal"", now both classified as ""Patrilocal""",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +19428,Ac37,EA201,Different,EA201-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +19429,Ac38,EA201,Same,EA201-2,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +19430,Ac39,EA201,Same,EA201-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +19431,Ac4,EA201,Different,EA201-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +19432,Ac40,EA201,Same,EA201-2,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +19433,Ac41,EA201,Same,EA201-2,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +19434,Ac42,EA201,Same,EA201-2,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +19435,Ac43,EA201,Different,EA201-1,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +19436,Ac5,EA201,Different,EA201-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +19437,Ac6,EA201,Different,EA201-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +19438,Ac7,EA201,Same,EA201-2,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +19439,Ac8,EA201,Same,EA201-2,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +19440,Ac9,EA201,Same,EA201-2,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +19441,Ad1,EA201,Different,EA201-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +19442,Ad10,EA201,Same,EA201-2,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +19443,Ad11,EA201,Different,EA201-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +19444,Ad12,EA201,Same,EA201-2,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +19445,Ad13,EA201,Same,EA201-2,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +19446,Ad14,EA201,Same,EA201-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +19447,Ad15,EA201,Same,EA201-2,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +19448,Ad16,EA201,Same,EA201-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +19449,Ad17,EA201,Same,EA201-2,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +19450,Ad18,EA201,Same,EA201-2,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +19451,Ad19,EA201,Same,EA201-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +19452,Ad2,EA201,Same,EA201-2,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +19453,Ad20,EA201,Different,EA201-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +19454,Ad21,EA201,Same,EA201-2,,maurice193538,,1930,EthnographicAtlas_1967_p66, +19455,Ad22,EA201,Different,EA201-1,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +19456,Ad23,EA201,Same,EA201-2,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +19457,Ad24,EA201,Same,EA201-2,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +19458,Ad25,EA201,Same,EA201-2,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +19459,Ad26,EA201,Same,EA201-2,,sick1916,,1910,EthnographicAtlas_1967_p66, +19460,Ad27,EA201,Same,EA201-2,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +19461,Ad28,EA201,Same,EA201-2,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +19462,Ad29,EA201,Same,EA201-2,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +19463,Ad3,EA201,Same,EA201-2,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +19464,Ad30,EA201,Same,EA201-2,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +19465,Ad31,EA201,Same,EA201-2,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +19466,Ad32,EA201,Same,EA201-2,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +19467,Ad33,EA201,Same,EA201-2,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +19468,Ad34,EA201,Same,EA201-2,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +19469,Ad35,EA201,Same,EA201-2,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +19470,Ad36,EA201,Same,EA201-2,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +19471,Ad37,EA201,Same,EA201-2,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +19472,Ad38,EA201,Same,EA201-2,Inferential from distributional evidence,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +19473,Ad39,EA201,Same,EA201-2,,gray1963,,1950,EthnographicAtlas_1967_p66, +19474,Ad4,EA201,Same,EA201-2,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +19475,Ad40,EA201,Same,EA201-2,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +19476,Ad41,EA201,Same,EA201-2,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +19477,Ad42,EA201,Same,EA201-2,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +19478,Ad43,EA201,Same,EA201-2,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +19479,Ad44,EA201,Same,EA201-2,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +19480,Ad45,EA201,Same,EA201-2,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +19481,Ad46,EA201,Same,EA201-2,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +19482,Ad47,EA201,Same,EA201-2,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +19483,Ad48,EA201,Same,EA201-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +19484,Ad49,EA201,Same,EA201-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +19485,Ad5,EA201,Same,EA201-2,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +19486,Ad50,EA201,Same,EA201-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +19487,Ad51,EA201,Different,EA201-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +19488,Ad6,EA201,Same,EA201-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +19489,Ad7,EA201,Same,EA201-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +19490,Ad8,EA201,Same,EA201-2,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +19491,Ad9,EA201,Same,EA201-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +19492,Ae1,EA201,Same,EA201-2,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +19493,Ae10,EA201,Same,EA201-2,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +19494,Ae11,EA201,Same,EA201-2,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +19495,Ae12,EA201,Same,EA201-2,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +19496,Ae13,EA201,Same,EA201-2,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +19497,Ae14,EA201,Same,EA201-2,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +19498,Ae15,EA201,Same,EA201-2,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +19499,Ae16,EA201,Same,EA201-2,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +19500,Ae17,EA201,Same,EA201-2,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +19501,Ae18,EA201,Same,EA201-2,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +19502,Ae19,EA201,Different,EA201-1,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +19503,Ae2,EA201,Same,EA201-2,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +19504,Ae20,EA201,Same,EA201-2,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +19505,Ae21,EA201,Same,EA201-2,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +19506,Ae22,EA201,Same,EA201-2,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +19507,Ae23,EA201,Same,EA201-2,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +19508,Ae24,EA201,Same,EA201-2,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +19509,Ae25,EA201,Same,EA201-2,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +19510,Ae26,EA201,Same,EA201-2,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +19511,Ae27,EA201,Same,EA201-2,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +19512,Ae28,EA201,Same,EA201-2,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +19513,Ae29,EA201,Same,EA201-2,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +19514,Ae3,EA201,Same,EA201-2,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +19515,Ae30,EA201,Same,EA201-2,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +19516,Ae31,EA201,Same,EA201-2,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +19517,Ae32,EA201,Same,EA201-2,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +19518,Ae33,EA201,Same,EA201-2,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +19519,Ae34,EA201,Same,EA201-2,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +19520,Ae35,EA201,Same,EA201-2,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +19521,Ae36,EA201,Same,EA201-2,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +19522,Ae37,EA201,Same,EA201-2,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +19523,Ae38,EA201,Same,EA201-2,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +19524,Ae39,EA201,Same,EA201-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +19525,Ae4,EA201,Same,EA201-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +19526,Ae40,EA201,Same,EA201-2,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +19527,Ae41,EA201,Same,EA201-2,,andersson1953,,1940,EthnographicAtlas_1967_p66, +19528,Ae42,EA201,Same,EA201-2,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +19529,Ae43,EA201,Same,EA201-2,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +19530,Ae44,EA201,Same,EA201-2,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +19531,Ae45,EA201,Same,EA201-2,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +19532,Ae46,EA201,Same,EA201-2,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +19533,Ae47,EA201,Same,EA201-2,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +19534,Ae48,EA201,Same,EA201-2,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +19535,Ae49,EA201,Same,EA201-2,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +19536,Ae5,EA201,Same,EA201-2,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +19537,Ae50,EA201,Same,EA201-2,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +19538,Ae51,EA201,Same,EA201-2,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +19539,Ae52,EA201,Same,EA201-2,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +19540,Ae53,EA201,Same,EA201-2,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +19541,Ae54,EA201,Different,EA201-1,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +19542,Ae55,EA201,Same,EA201-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +19543,Ae56,EA201,Same,EA201-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +19544,Ae57,EA201,Same,EA201-2,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +19545,Ae58,EA201,Same,EA201-2,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +19546,Ae59,EA201,Same,EA201-2,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +19547,Ae6,EA201,Same,EA201-2,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +19548,Ae7,EA201,Same,EA201-2,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +19549,Ae8,EA201,Same,EA201-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +19550,Ae9,EA201,Same,EA201-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +19551,Af1,EA201,Same,EA201-2,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +19552,Af10,EA201,Same,EA201-2,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +19553,Af11,EA201,Same,EA201-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +19554,Af12,EA201,?,EA201-NA,,,,,, +19555,Af13,EA201,Same,EA201-2,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +19556,Af14,EA201,Same,EA201-2,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +19557,Af15,EA201,Same,EA201-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +19558,Af16,EA201,Same,EA201-2,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +19559,Af17,EA201,Same,EA201-2,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +19560,Af18,EA201,Same,EA201-2,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +19561,Af19,EA201,Same,EA201-2,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +19562,Af2,EA201,Same,EA201-2,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +19563,Af20,EA201,Same,EA201-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +19564,Af21,EA201,Same,EA201-2,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +19565,Af22,EA201,Same,EA201-2,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +19566,Af23,EA201,Same,EA201-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +19567,Af24,EA201,Same,EA201-2,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +19568,Af25,EA201,Same,EA201-2,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +19569,Af26,EA201,Same,EA201-2,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +19570,Af27,EA201,Same,EA201-2,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +19571,Af28,EA201,Same,EA201-2,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +19572,Af29,EA201,Same,EA201-2,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +19573,Af3,EA201,Different,EA201-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +19574,Af30,EA201,Same,EA201-2,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +19575,Af31,EA201,Same,EA201-2,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +19576,Af32,EA201,Same,EA201-2,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19577,Af33,EA201,Same,EA201-2,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19578,Af34,EA201,Same,EA201-2,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19579,Af35,EA201,Same,EA201-2,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +19580,Af36,EA201,Different,EA201-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +19581,Af37,EA201,Same,EA201-2,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +19582,Af38,EA201,Same,EA201-2,But a married woman commonly remains in her natal household instead of joining her husband,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +19583,Af39,EA201,Different,EA201-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +19584,Af4,EA201,Different,EA201-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +19585,Af40,EA201,Same,EA201-2,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +19586,Af41,EA201,Same,EA201-2,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +19587,Af42,EA201,Different,EA201-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +19588,Af43,EA201,Same,EA201-2,But most married women continue to reside in their natal household,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +19589,Af44,EA201,Different,EA201-1,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +19590,Af45,EA201,Same,EA201-2,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +19591,Af46,EA201,Same,EA201-2,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +19592,Af47,EA201,Same,EA201-2,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +19593,Af48,EA201,Same,EA201-2,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +19594,Af49,EA201,Same,EA201-2,,schwab1947,,1940,EthnographicAtlas_1967_p70, +19595,Af5,EA201,Same,EA201-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +19596,Af50,EA201,Same,EA201-2,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +19597,Af51,EA201,Same,EA201-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +19598,Af52,EA201,Same,EA201-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +19599,Af53,EA201,Same,EA201-2,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +19600,Af54,EA201,Same,EA201-2,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +19601,Af55,EA201,Same,EA201-2,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +19602,Af56,EA201,Same,EA201-2,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +19603,Af57,EA201,Same,EA201-2,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +19604,Af58,EA201,Same,EA201-2,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +19605,Af6,EA201,Same,EA201-2,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +19606,Af7,EA201,Same,EA201-2,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +19607,Af8,EA201,Same,EA201-2,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +19608,Af9,EA201,Same,EA201-2,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +19609,Ag1,EA201,Same,EA201-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +19610,Ag10,EA201,Same,EA201-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +19611,Ag11,EA201,Same,EA201-2,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +19612,Ag12,EA201,Same,EA201-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +19613,Ag13,EA201,Same,EA201-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +19614,Ag14,EA201,Same,EA201-2,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +19615,Ag15,EA201,Same,EA201-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +19616,Ag16,EA201,Same,EA201-2,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +19617,Ag17,EA201,Same,EA201-2,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +19618,Ag18,EA201,Same,EA201-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +19619,Ag19,EA201,Same,EA201-2,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +19620,Ag2,EA201,Same,EA201-2,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +19621,Ag20,EA201,Same,EA201-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +19622,Ag21,EA201,Same,EA201-2,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +19623,Ag22,EA201,Same,EA201-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +19624,Ag23,EA201,Same,EA201-2,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +19625,Ag24,EA201,Same,EA201-2,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +19626,Ag25,EA201,Same,EA201-2,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +19627,Ag26,EA201,Same,EA201-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +19628,Ag27,EA201,Same,EA201-2,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +19629,Ag28,EA201,Same,EA201-2,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +19630,Ag29,EA201,Same,EA201-2,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +19631,Ag3,EA201,Same,EA201-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +19632,Ag30,EA201,Same,EA201-2,"Entry follows Tauxier; Cremer also reports early residence as Uxorilocal, but later residence as Patrilocal (i.e., this would be code ""1"")",cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +19633,Ag31,EA201,Same,EA201-2,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +19634,Ag32,EA201,Same,EA201-2,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +19635,Ag33,EA201,Same,EA201-2,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +19636,Ag34,EA201,Same,EA201-2,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +19637,Ag35,EA201,Same,EA201-2,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +19638,Ag36,EA201,Same,EA201-2,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +19639,Ag37,EA201,Same,EA201-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +19640,Ag38,EA201,Same,EA201-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +19641,Ag39,EA201,Same,EA201-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +19642,Ag4,EA201,Same,EA201-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +19643,Ag40,EA201,Same,EA201-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +19644,Ag41,EA201,Same,EA201-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +19645,Ag42,EA201,Same,EA201-2,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +19646,Ag43,EA201,Same,EA201-2,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +19647,Ag44,EA201,?,EA201-NA,,,,,, +19648,Ag45,EA201,Same,EA201-2,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +19649,Ag46,EA201,Same,EA201-2,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +19650,Ag47,EA201,Same,EA201-2,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +19651,Ag48,EA201,Same,EA201-2,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +19652,Ag49,EA201,Same,EA201-2,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +19653,Ag5,EA201,Same,EA201-2,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +19654,Ag50,EA201,Same,EA201-2,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +19655,Ag51,EA201,Same,EA201-2,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +19656,Ag52,EA201,Same,EA201-2,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +19657,Ag53,EA201,Same,EA201-2,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +19658,Ag54,EA201,Same,EA201-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +19659,Ag6,EA201,Same,EA201-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +19660,Ag7,EA201,Same,EA201-2,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +19661,Ag8,EA201,Different,EA201-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +19662,Ag9,EA201,Same,EA201-2,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +19663,Ah1,EA201,Same,EA201-2,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19664,Ah10,EA201,Same,EA201-2,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +19665,Ah11,EA201,Same,EA201-2,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +19666,Ah12,EA201,Same,EA201-2,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +19667,Ah13,EA201,Different,EA201-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +19668,Ah14,EA201,Same,EA201-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +19669,Ah15,EA201,Same,EA201-2,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +19670,Ah16,EA201,Different,EA201-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +19671,Ah17,EA201,Same,EA201-2,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +19672,Ah18,EA201,Same,EA201-2,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +19673,Ah19,EA201,Same,EA201-2,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +19674,Ah2,EA201,Same,EA201-2,,meek1931a,,1920,EthnographicAtlas_1967_p74, +19675,Ah20,EA201,Same,EA201-2,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +19676,Ah21,EA201,Same,EA201-2,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19677,Ah22,EA201,Different,EA201-1,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +19678,Ah23,EA201,Same,EA201-2,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19679,Ah24,EA201,Same,EA201-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19680,Ah25,EA201,Same,EA201-2,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19681,Ah26,EA201,Same,EA201-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19682,Ah27,EA201,Different,EA201-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19683,Ah28,EA201,Same,EA201-2,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +19684,Ah29,EA201,Different,EA201-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19685,Ah3,EA201,Same,EA201-2,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +19686,Ah30,EA201,Different,EA201-1,,meek1931b,,1920,EthnographicAtlas_1967_p74, +19687,Ah31,EA201,Different,EA201-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +19688,Ah32,EA201,Same,EA201-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19689,Ah33,EA201,Different,EA201-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +19690,Ah34,EA201,Same,EA201-2,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +19691,Ah35,EA201,Different,EA201-1,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19692,Ah36,EA201,Different,EA201-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +19693,Ah37,EA201,Same,EA201-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19694,Ah38,EA201,Same,EA201-2,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +19695,Ah39,EA201,Same,EA201-2,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +19696,Ah4,EA201,Same,EA201-2,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +19697,Ah5,EA201,Same,EA201-2,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +19698,Ah6,EA201,Same,EA201-2,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +19699,Ah7,EA201,Same,EA201-2,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +19700,Ah8,EA201,Same,EA201-2,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +19701,Ah9,EA201,Same,EA201-2,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +19702,Ai1,EA201,Same,EA201-2,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +19703,Ai10,EA201,Same,EA201-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +19704,Ai11,EA201,Same,EA201-2,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +19705,Ai12,EA201,Same,EA201-2,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +19706,Ai13,EA201,Same,EA201-2,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +19707,Ai14,EA201,Same,EA201-2,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +19708,Ai15,EA201,Same,EA201-2,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +19709,Ai16,EA201,Same,EA201-2,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +19710,Ai17,EA201,Same,EA201-2,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +19711,Ai18,EA201,Same,EA201-2,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +19712,Ai19,EA201,Same,EA201-2,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +19713,Ai2,EA201,Different,EA201-1,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +19714,Ai20,EA201,Same,EA201-2,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +19715,Ai21,EA201,Same,EA201-2,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +19716,Ai22,EA201,Same,EA201-2,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +19717,Ai23,EA201,Same,EA201-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +19718,Ai24,EA201,Same,EA201-2,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +19719,Ai25,EA201,?,EA201-NA,,,,,, +19720,Ai26,EA201,Same,EA201-2,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +19721,Ai27,EA201,Same,EA201-2,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +19722,Ai28,EA201,Same,EA201-2,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +19723,Ai29,EA201,Same,EA201-2,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +19724,Ai3,EA201,Same,EA201-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +19725,Ai30,EA201,Same,EA201-2,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +19726,Ai31,EA201,Same,EA201-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +19727,Ai32,EA201,Same,EA201-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +19728,Ai33,EA201,Same,EA201-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +19729,Ai34,EA201,Different,EA201-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +19730,Ai35,EA201,Same,EA201-2,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +19731,Ai36,EA201,Same,EA201-2,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +19732,Ai37,EA201,Same,EA201-2,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +19733,Ai38,EA201,Different,EA201-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +19734,Ai39,EA201,Different,EA201-1,,nadel1947,,1940,EthnographicAtlas_1967_p74, +19735,Ai4,EA201,Different,EA201-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +19736,Ai40,EA201,Same,EA201-2,,nadel1947,,1940,EthnographicAtlas_1967_p74, +19737,Ai41,EA201,Different,EA201-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +19738,Ai42,EA201,Same,EA201-2,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +19739,Ai43,EA201,Same,EA201-2,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +19740,Ai44,EA201,Same,EA201-2,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +19741,Ai45,EA201,Same,EA201-2,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +19742,Ai46,EA201,Same,EA201-2,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +19743,Ai47,EA201,Same,EA201-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +19744,Ai5,EA201,Same,EA201-2,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +19745,Ai6,EA201,Same,EA201-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +19746,Ai7,EA201,Same,EA201-2,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +19747,Ai8,EA201,Different,EA201-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +19748,Ai9,EA201,Same,EA201-2,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +19749,Aj1,EA201,Same,EA201-2,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +19750,Aj10,EA201,Different,EA201-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +19751,Aj11,EA201,Different,EA201-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +19752,Aj12,EA201,Different,EA201-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +19753,Aj13,EA201,Same,EA201-2,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +19754,Aj14,EA201,Different,EA201-1,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +19755,Aj15,EA201,Same,EA201-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +19756,Aj16,EA201,Same,EA201-2,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +19757,Aj17,EA201,Same,EA201-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +19758,Aj18,EA201,?,EA201-NA,,,,,, +19759,Aj19,EA201,Same,EA201-2,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +19760,Aj2,EA201,Same,EA201-2,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +19761,Aj20,EA201,Same,EA201-2,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +19762,Aj21,EA201,Different,EA201-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +19763,Aj22,EA201,?,EA201-NA,,,,,, +19764,Aj23,EA201,Same,EA201-2,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +19765,Aj24,EA201,Same,EA201-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +19766,Aj25,EA201,Same,EA201-2,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +19767,Aj26,EA201,Same,EA201-2,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +19768,Aj27,EA201,Same,EA201-2,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +19769,Aj28,EA201,Same,EA201-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +19770,Aj29,EA201,Same,EA201-2,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +19771,Aj3,EA201,Different,EA201-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +19772,Aj30,EA201,Same,EA201-2,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +19773,Aj31,EA201,Same,EA201-2,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +19774,Aj4,EA201,Same,EA201-2,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +19775,Aj5,EA201,Same,EA201-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +19776,Aj6,EA201,Same,EA201-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +19777,Aj7,EA201,Same,EA201-2,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +19778,Aj8,EA201,Different,EA201-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +19779,Aj9,EA201,Same,EA201-2,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +19780,Ca1,EA201,Same,EA201-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +19781,Ca10,EA201,Same,EA201-2,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +19782,Ca11,EA201,Same,EA201-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +19783,Ca12,EA201,Same,EA201-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +19784,Ca13,EA201,Same,EA201-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +19785,Ca14,EA201,Same,EA201-2,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +19786,Ca15,EA201,Same,EA201-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +19787,Ca16,EA201,Same,EA201-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +19788,Ca17,EA201,Same,EA201-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +19789,Ca18,EA201,Same,EA201-2,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +19790,Ca19,EA201,Same,EA201-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +19791,Ca2,EA201,Same,EA201-2,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +19792,Ca20,EA201,Same,EA201-2,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +19793,Ca21,EA201,Same,EA201-2,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +19794,Ca22,EA201,Same,EA201-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +19795,Ca23,EA201,Same,EA201-2,,jensen1959,,1950,EthnographicAtlas_1967_p78, +19796,Ca24,EA201,Same,EA201-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +19797,Ca25,EA201,Same,EA201-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +19798,Ca26,EA201,Same,EA201-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +19799,Ca27,EA201,Same,EA201-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +19800,Ca28,EA201,Same,EA201-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +19801,Ca29,EA201,Same,EA201-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +19802,Ca3,EA201,Different,EA201-1,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +19803,Ca30,EA201,Same,EA201-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +19804,Ca31,EA201,Same,EA201-2,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +19805,Ca32,EA201,Different,EA201-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +19806,Ca33,EA201,Different,EA201-1,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +19807,Ca34,EA201,Different,EA201-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +19808,Ca35,EA201,Different,EA201-1,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +19809,Ca36,EA201,Same,EA201-2,"In the noble class; among serfs pattern is Uxorilocal early in marriage and Patrilocal as prevailing pattern (i.e., this would be code ""1"")",munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +19810,Ca37,EA201,Same,EA201-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +19811,Ca38,EA201,Same,EA201-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +19812,Ca39,EA201,Same,EA201-2,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +19813,Ca4,EA201,Same,EA201-2,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +19814,Ca40,EA201,Same,EA201-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +19815,Ca41,EA201,Same,EA201-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +19816,Ca42,EA201,Same,EA201-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +19817,Ca43,EA201,Different,EA201-1,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +19818,Ca5,EA201,Different,EA201-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +19819,Ca6,EA201,Same,EA201-2,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +19820,Ca7,EA201,Same,EA201-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +19821,Ca8,EA201,Same,EA201-2,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +19822,Ca9,EA201,Same,EA201-2,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +19823,Cb1,EA201,Same,EA201-2,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +19824,Cb10,EA201,Different,EA201-1,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +19825,Cb11,EA201,?,EA201-NA,,,,,, +19826,Cb12,EA201,Same,EA201-2,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +19827,Cb13,EA201,Same,EA201-2,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +19828,Cb14,EA201,Same,EA201-2,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +19829,Cb15,EA201,Same,EA201-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +19830,Cb16,EA201,Same,EA201-2,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +19831,Cb17,EA201,Same,EA201-2,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +19832,Cb18,EA201,Same,EA201-2,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +19833,Cb19,EA201,Same,EA201-2,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +19834,Cb2,EA201,Same,EA201-2,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +19835,Cb20,EA201,?,EA201-NA,,,,,, +19836,Cb21,EA201,Different,EA201-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +19837,Cb22,EA201,Same,EA201-2,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +19838,Cb23,EA201,Same,EA201-2,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +19839,Cb24,EA201,Different,EA201-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +19840,Cb25,EA201,Same,EA201-2,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +19841,Cb26,EA201,Same,EA201-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +19842,Cb27,EA201,Same,EA201-2,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19843,Cb28,EA201,Same,EA201-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19844,Cb29,EA201,Same,EA201-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +19845,Cb3,EA201,Same,EA201-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +19846,Cb4,EA201,Different,EA201-1,,reid1930,,1920,EthnographicAtlas_1967_p78, +19847,Cb5,EA201,Same,EA201-2,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +19848,Cb6,EA201,Different,EA201-1,,woodnd,,1920,EthnographicAtlas_1967_p78, +19849,Cb7,EA201,Same,EA201-2,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +19850,Cb8,EA201,Same,EA201-2,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +19851,Cb9,EA201,Same,EA201-2,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +19852,Cc1,EA201,Same,EA201-2,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +19853,Cc10,EA201,Same,EA201-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +19854,Cc11,EA201,?,EA201-NA,,,,,, +19855,Cc12,EA201,Different,EA201-1,"Ultimate residence is unclear and may be avunculocal (this variable would still be code ""1"" in this case)",cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +19856,Cc13,EA201,Different,EA201-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +19857,Cc14,EA201,Different,EA201-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +19858,Cc15,EA201,?,EA201-NA,,,,,, +19859,Cc16,EA201,Same,EA201-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +19860,Cc17,EA201,Same,EA201-2,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +19861,Cc18,EA201,Same,EA201-2,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +19862,Cc19,EA201,Same,EA201-2,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +19863,Cc2,EA201,Different,EA201-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +19864,Cc20,EA201,Same,EA201-2,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +19865,Cc3,EA201,Same,EA201-2,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +19866,Cc4,EA201,Same,EA201-2,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +19867,Cc5,EA201,Same,EA201-2,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +19868,Cc6,EA201,Same,EA201-2,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +19869,Cc7,EA201,Same,EA201-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19870,Cc8,EA201,?,EA201-NA,,,,,, +19871,Cc9,EA201,Different,EA201-1,"Virilocal after an initial period until death of HuFa, then Avunculocal",benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +19872,Cd1,EA201,Different,EA201-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +19873,Cd10,EA201,Same,EA201-2,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +19874,Cd11,EA201,Same,EA201-2,Suggested rather than attested,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +19875,Cd12,EA201,Same,EA201-2,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +19876,Cd13,EA201,Same,EA201-2,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +19877,Cd14,EA201,Same,EA201-2,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +19878,Cd15,EA201,Same,EA201-2,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +19879,Cd16,EA201,Same,EA201-2,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +19880,Cd17,EA201,Same,EA201-2,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +19881,Cd18,EA201,Same,EA201-2,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +19882,Cd19,EA201,Same,EA201-2,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +19883,Cd2,EA201,Different,EA201-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +19884,Cd20,EA201,Same,EA201-2,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +19885,Cd21,EA201,Same,EA201-2,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +19886,Cd3,EA201,Same,EA201-2,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +19887,Cd4,EA201,Same,EA201-2,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +19888,Cd5,EA201,Same,EA201-2,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +19889,Cd6,EA201,Same,EA201-2,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +19890,Cd7,EA201,Same,EA201-2,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +19891,Cd8,EA201,Same,EA201-2,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +19892,Cd9,EA201,Same,EA201-2,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +19893,Ce1,EA201,Same,EA201-2,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +19894,Ce2,EA201,Same,EA201-2,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +19895,Ce3,EA201,Same,EA201-2,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +19896,Ce4,EA201,Same,EA201-2,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19897,Ce5,EA201,Same,EA201-2,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +19898,Ce6,EA201,Same,EA201-2,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +19899,Ce7,EA201,Same,EA201-2,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +19900,Ce8,EA201,Same,EA201-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +19901,Cf1,EA201,Same,EA201-2,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +19902,Cf2,EA201,Same,EA201-2,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +19903,Cf3,EA201,Same,EA201-2,,munch1945,,1930,EthnographicAtlas_1967_p82, +19904,Cf4,EA201,Same,EA201-2,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +19905,Cf5,EA201,Same,EA201-2,,miner1939,,1930,EthnographicAtlas_1967_p82, +19906,Cg1,EA201,Same,EA201-2,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +19907,Cg2,EA201,Same,EA201-2,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +19908,Cg3,EA201,Same,EA201-2,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +19909,Cg4,EA201,Same,EA201-2,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +19910,Cg5,EA201,Same,EA201-2,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +19911,Ch1,EA201,Same,EA201-2,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +19912,Ch10,EA201,Same,EA201-2,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +19913,Ch11,EA201,Different,EA201-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +19914,Ch2,EA201,Different,EA201-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +19915,Ch3,EA201,Same,EA201-2,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +19916,Ch4,EA201,Same,EA201-2,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +19917,Ch5,EA201,Same,EA201-2,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +19918,Ch6,EA201,Same,EA201-2,,ember1954,,1910,EthnographicAtlas_1967_p82, +19919,Ch7,EA201,Same,EA201-2,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +19920,Ch8,EA201,Same,EA201-2,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +19921,Ch9,EA201,Same,EA201-2,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +19922,Ci1,EA201,Same,EA201-2,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +19923,Ci10,EA201,Same,EA201-2,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +19924,Ci11,EA201,Same,EA201-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +19925,Ci12,EA201,Same,EA201-2,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +19926,Ci2,EA201,Different,EA201-1,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +19927,Ci3,EA201,Same,EA201-2,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +19928,Ci4,EA201,Same,EA201-2,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +19929,Ci5,EA201,Same,EA201-2,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +19930,Ci6,EA201,Same,EA201-2,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +19931,Ci7,EA201,Same,EA201-2,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +19932,Ci8,EA201,Same,EA201-2,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +19933,Ci9,EA201,Same,EA201-2,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +19934,Cj1,EA201,Same,EA201-2,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +19935,Cj10,EA201,Same,EA201-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +19936,Cj2,EA201,Same,EA201-2,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +19937,Cj3,EA201,Same,EA201-2,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +19938,Cj4,EA201,Same,EA201-2,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +19939,Cj5,EA201,Same,EA201-2,,dickson1949,,1930,EthnographicAtlas_1967_p86, +19940,Cj6,EA201,Same,EA201-2,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +19941,Cj7,EA201,Same,EA201-2,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +19942,Cj8,EA201,Same,EA201-2,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +19943,Cj9,EA201,Same,EA201-2,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +19944,Ea1,EA201,Same,EA201-2,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +19945,Ea10,EA201,Same,EA201-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +19946,Ea11,EA201,Same,EA201-2,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +19947,Ea12,EA201,Same,EA201-2,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +19948,Ea13,EA201,Different,EA201-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +19949,Ea2,EA201,Same,EA201-2,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +19950,Ea3,EA201,Same,EA201-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +19951,Ea4,EA201,Same,EA201-2,,barth1956b,,1950,EthnographicAtlas_1967_p86, +19952,Ea5,EA201,Same,EA201-2,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +19953,Ea6,EA201,Same,EA201-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +19954,Ea7,EA201,Same,EA201-2,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +19955,Ea8,EA201,Same,EA201-2,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +19956,Ea9,EA201,Same,EA201-2,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +19957,Eb1,EA201,Same,EA201-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +19958,Eb2,EA201,Same,EA201-2,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +19959,Eb3,EA201,Same,EA201-2,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +19960,Eb4,EA201,Same,EA201-2,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +19961,Eb5,EA201,Same,EA201-2,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +19962,Eb6,EA201,Same,EA201-2,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +19963,Eb7,EA201,Same,EA201-2,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +19964,Eb8,EA201,Same,EA201-2,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +19965,Ec1,EA201,Same,EA201-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +19966,Ec10,EA201,Same,EA201-2,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +19967,Ec11,EA201,Same,EA201-2,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +19968,Ec2,EA201,Different,EA201-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19969,Ec3,EA201,Different,EA201-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +19970,Ec4,EA201,Same,EA201-2,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +19971,Ec5,EA201,Different,EA201-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +19972,Ec6,EA201,Different,EA201-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +19973,Ec7,EA201,Same,EA201-2,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +19974,Ec8,EA201,Same,EA201-2,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +19975,Ec9,EA201,Same,EA201-2,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +19976,Ed1,EA201,Same,EA201-2,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +19977,Ed10,EA201,Same,EA201-2,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +19978,Ed13,EA201,Same,EA201-2,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +19979,Ed14,EA201,Same,EA201-2,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +19980,Ed15a,EA201,Same,EA201-2,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +19981,Ed15b,EA201,Same,EA201-2,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +19982,Ed16,EA201,Same,EA201-2,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +19983,Ed2,EA201,Different,EA201-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +19984,Ed3,EA201,Same,EA201-2,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +19985,Ed4,EA201,Same,EA201-2,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +19986,Ed5,EA201,Same,EA201-2,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +19987,Ed6,EA201,Same,EA201-2,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +19988,Ed7,EA201,Same,EA201-2,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +19989,Ed8,EA201,Same,EA201-2,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +19990,Ed9,EA201,Different,EA201-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +19991,Ee1,EA201,Same,EA201-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +19992,Ee2,EA201,Same,EA201-2,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +19993,Ee3,EA201,Same,EA201-2,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +19994,Ee4,EA201,Same,EA201-2,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +19995,Ee5,EA201,Same,EA201-2,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +19996,Ee6,EA201,Same,EA201-2,Uxorilocal only if wife has no brothers,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +19997,Ee7,EA201,Same,EA201-2,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +19998,Ee8,EA201,Same,EA201-2,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +19999,Ef1,EA201,Same,EA201-2,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +20000,Ef10,EA201,Same,EA201-2,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20001,Ef11,EA201,Same,EA201-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +20002,Ef2,EA201,Same,EA201-2,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +20003,Ef3,EA201,Same,EA201-2,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +20004,Ef4,EA201,Same,EA201-2,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +20005,Ef5,EA201,Same,EA201-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +20006,Ef6,EA201,Same,EA201-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +20007,Ef7,EA201,Same,EA201-2,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +20008,Ef8,EA201,Same,EA201-2,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +20009,Ef9,EA201,Same,EA201-2,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20010,Eg1,EA201,Same,EA201-2,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20011,Eg10,EA201,Same,EA201-2,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +20012,Eg11,EA201,Same,EA201-2,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +20013,Eg12,EA201,Same,EA201-2,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +20014,Eg13,EA201,Same,EA201-2,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20015,Eg14,EA201,Same,EA201-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +20016,Eg2,EA201,Same,EA201-2,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +20017,Eg3,EA201,Same,EA201-2,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +20018,Eg4,EA201,Same,EA201-2,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +20019,Eg5,EA201,Same,EA201-2,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +20020,Eg6,EA201,Same,EA201-2,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +20021,Eg7,EA201,Same,EA201-2,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +20022,Eg8,EA201,Same,EA201-2,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +20023,Eg9,EA201,Same,EA201-2,,elwin1939,,1930,EthnographicAtlas_1967_p90, +20024,Eh1,EA201,Same,EA201-2,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +20025,Eh10,EA201,Same,EA201-2,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +20026,Eh2,EA201,Same,EA201-2,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +20027,Eh3,EA201,Same,EA201-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +20028,Eh4,EA201,Same,EA201-2,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20029,Eh5,EA201,Same,EA201-2,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +20030,Eh6,EA201,Same,EA201-2,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +20031,Eh7,EA201,Same,EA201-2,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +20032,Eh8,EA201,Same,EA201-2,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +20033,Eh9,EA201,Same,EA201-2,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +20034,Ei1,EA201,Same,EA201-2,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20035,Ei10,EA201,Same,EA201-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +20036,Ei11,EA201,Same,EA201-2,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +20037,Ei12,EA201,Same,EA201-2,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +20038,Ei13,EA201,Same,EA201-2,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +20039,Ei14,EA201,Same,EA201-2,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +20040,Ei15,EA201,Same,EA201-2,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +20041,Ei16,EA201,Same,EA201-2,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +20042,Ei17,EA201,Same,EA201-2,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +20043,Ei18,EA201,Same,EA201-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +20044,Ei19,EA201,Same,EA201-2,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +20045,Ei2,EA201,Different,EA201-1,,mills1922,,1920,EthnographicAtlas_1967_p90, +20046,Ei20,EA201,Same,EA201-2,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +20047,Ei3,EA201,Different,EA201-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +20048,Ei4,EA201,Same,EA201-2,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +20049,Ei5,EA201,Same,EA201-2,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +20050,Ei6,EA201,Different,EA201-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +20051,Ei7,EA201,Same,EA201-2,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +20052,Ei8,EA201,Same,EA201-2,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +20053,Ei9,EA201,Same,EA201-2,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +20054,Ej1,EA201,Different,EA201-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +20055,Ej10,EA201,Same,EA201-2,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +20056,Ej11,EA201,Same,EA201-2,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +20057,Ej12,EA201,Same,EA201-2,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +20058,Ej13,EA201,Different,EA201-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +20059,Ej14,EA201,Same,EA201-2,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20060,Ej15,EA201,Same,EA201-2,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +20061,Ej16,EA201,Same,EA201-2,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +20062,Ej2,EA201,Same,EA201-2,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +20063,Ej3,EA201,Different,EA201-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +20064,Ej4,EA201,Same,EA201-2,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +20065,Ej5,EA201,Different,EA201-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +20066,Ej6,EA201,Different,EA201-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +20067,Ej7,EA201,Same,EA201-2,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +20068,Ej8,EA201,Different,EA201-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +20069,Ej9,EA201,Different,EA201-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +20070,Ia1,EA201,Same,EA201-2,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +20071,Ia10,EA201,Same,EA201-2,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +20072,Ia11,EA201,Same,EA201-2,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +20073,Ia12,EA201,Same,EA201-2,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +20074,Ia13,EA201,Same,EA201-2,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +20075,Ia14,EA201,Same,EA201-2,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +20076,Ia15,EA201,Different,EA201-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +20077,Ia16,EA201,Same,EA201-2,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +20078,Ia17,EA201,Same,EA201-2,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +20079,Ia18,EA201,Same,EA201-2,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +20080,Ia2,EA201,Same,EA201-2,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +20081,Ia3,EA201,Same,EA201-2,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +20082,Ia4,EA201,Different,EA201-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +20083,Ia5,EA201,Same,EA201-2,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +20084,Ia6,EA201,Same,EA201-2,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20085,Ia7,EA201,Same,EA201-2,,fox1954,,1950,EthnographicAtlas_1967_p90, +20086,Ia8,EA201,Same,EA201-2,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +20087,Ia9,EA201,Same,EA201-2,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +20088,Ib1,EA201,Same,EA201-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20089,Ib2,EA201,Different,EA201-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20090,Ib3,EA201,Same,EA201-2,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +20091,Ib4,EA201,Same,EA201-2,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +20092,Ib5,EA201,Same,EA201-2,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +20093,Ib6,EA201,Same,EA201-2,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +20094,Ib7,EA201,Same,EA201-2,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +20095,Ib8,EA201,Different,EA201-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +20096,Ib9,EA201,?,EA201-NA,,,,,, +20097,Ic1,EA201,Same,EA201-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20098,Ic10,EA201,Same,EA201-2,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +20099,Ic11,EA201,Same,EA201-2,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20100,Ic12,EA201,Different,EA201-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +20101,Ic13,EA201,Same,EA201-2,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +20102,Ic2,EA201,Same,EA201-2,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +20103,Ic3,EA201,Same,EA201-2,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +20104,Ic4,EA201,Same,EA201-2,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +20105,Ic5,EA201,Same,EA201-2,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +20106,Ic6,EA201,Different,EA201-1,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +20107,Ic7,EA201,Same,EA201-2,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +20108,Ic8,EA201,Same,EA201-2,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +20109,Ic9,EA201,Same,EA201-2,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +20110,Id1,EA201,Same,EA201-2,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +20111,Id10,EA201,Same,EA201-2,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +20112,Id11,EA201,Same,EA201-2,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +20113,Id12,EA201,Different,EA201-1,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +20114,Id13,EA201,Different,EA201-1,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +20115,Id2,EA201,Different,EA201-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +20116,Id3,EA201,Same,EA201-2,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +20117,Id4,EA201,Same,EA201-2,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +20118,Id5,EA201,Same,EA201-2,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +20119,Id6,EA201,Same,EA201-2,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +20120,Id7,EA201,Same,EA201-2,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +20121,Id8,EA201,?,EA201-NA,,,,,, +20122,Id9,EA201,Same,EA201-2,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +20123,Ie1,EA201,Same,EA201-2,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20124,Ie10,EA201,Same,EA201-2,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +20125,Ie11,EA201,Same,EA201-2,,bowers1964,,1950,EthnographicAtlas_1967_p94, +20126,Ie12,EA201,Same,EA201-2,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20127,Ie13,EA201,Same,EA201-2,,landtman1927,,1920,EthnographicAtlas_1967_p94, +20128,Ie14,EA201,Same,EA201-2,,haddon1908,,1900,EthnographicAtlas_1967_p94, +20129,Ie15,EA201,Same,EA201-2,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20130,Ie16,EA201,Same,EA201-2,,williams194041,,1940,EthnographicAtlas_1967_p94, +20131,Ie17,EA201,Same,EA201-2,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +20132,Ie18,EA201,Same,EA201-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +20133,Ie19,EA201,Same,EA201-2,But normally patrilocal,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +20134,Ie2,EA201,Same,EA201-2,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +20135,Ie20,EA201,Same,EA201-2,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +20136,Ie21,EA201,Same,EA201-2,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +20137,Ie22,EA201,Same,EA201-2,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +20138,Ie23,EA201,Same,EA201-2,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +20139,Ie24,EA201,Same,EA201-2,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +20140,Ie25,EA201,Different,EA201-1,,williamson1912,,1920,EthnographicAtlas_1967_p94, +20141,Ie26,EA201,Same,EA201-2,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +20142,Ie27,EA201,Same,EA201-2,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +20143,Ie28,EA201,Same,EA201-2,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +20144,Ie29,EA201,Same,EA201-2,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20145,Ie3,EA201,Same,EA201-2,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20146,Ie30,EA201,Same,EA201-2,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +20147,Ie31,EA201,Same,EA201-2,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +20148,Ie32,EA201,Same,EA201-2,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +20149,Ie33,EA201,Same,EA201-2,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +20150,Ie34,EA201,Same,EA201-2,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +20151,Ie35,EA201,Same,EA201-2,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +20152,Ie36,EA201,Same,EA201-2,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +20153,Ie37,EA201,Same,EA201-2,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +20154,Ie38,EA201,Same,EA201-2,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +20155,Ie39,EA201,Same,EA201-2,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +20156,Ie4,EA201,Same,EA201-2,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20157,Ie5,EA201,Same,EA201-2,,williams1936,,1930,EthnographicAtlas_1967_p94, +20158,Ie6,EA201,Same,EA201-2,,held1947,,1930,EthnographicAtlas_1967_p94, +20159,Ie7,EA201,Same,EA201-2,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +20160,Ie8,EA201,Same,EA201-2,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +20161,Ie9,EA201,Same,EA201-2,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +20162,If1,EA201,Different,EA201-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20163,If10,EA201,Same,EA201-2,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +20164,If11,EA201,Same,EA201-2,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +20165,If12,EA201,Same,EA201-2,,mason1954,,1940,EthnographicAtlas_1967_p98, +20166,If13,EA201,Same,EA201-2,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +20167,If14,EA201,Same,EA201-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +20168,If15,EA201,Same,EA201-2,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +20169,If16,EA201,Same,EA201-2,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +20170,If17,EA201,Same,EA201-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +20171,If2,EA201,Same,EA201-2,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +20172,If3,EA201,Same,EA201-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +20173,If4,EA201,Same,EA201-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +20174,If5,EA201,Same,EA201-2,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +20175,If6,EA201,Same,EA201-2,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +20176,If7,EA201,Same,EA201-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +20177,If8,EA201,Same,EA201-2,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +20178,If9,EA201,Same,EA201-2,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +20179,Ig1,EA201,Different,EA201-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +20180,Ig10,EA201,Same,EA201-2,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +20181,Ig11,EA201,Same,EA201-2,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +20182,Ig12,EA201,Same,EA201-2,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +20183,Ig13,EA201,Same,EA201-2,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +20184,Ig14,EA201,Same,EA201-2,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +20185,Ig15,EA201,Same,EA201-2,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +20186,Ig16,EA201,Same,EA201-2,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +20187,Ig17,EA201,Same,EA201-2,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +20188,Ig18,EA201,Same,EA201-2,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +20189,Ig19,EA201,Same,EA201-2,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +20190,Ig2,EA201,Same,EA201-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +20191,Ig20,EA201,Different,EA201-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +20192,Ig21,EA201,Same,EA201-2,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +20193,Ig3,EA201,Same,EA201-2,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +20194,Ig4,EA201,Same,EA201-2,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +20195,Ig5,EA201,Same,EA201-2,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,,1920,EthnographicAtlas_1967_p98, +20196,Ig6,EA201,Same,EA201-2,,ivens1927,,1900,EthnographicAtlas_1967_p98, +20197,Ig7,EA201,Different,EA201-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +20198,Ig8,EA201,Different,EA201-1,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +20199,Ig9,EA201,Same,EA201-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +20200,Ih1,EA201,Same,EA201-2,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +20201,Ih10,EA201,Same,EA201-2,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20202,Ih11,EA201,?,EA201-NA,,,,,, +20203,Ih12,EA201,Same,EA201-2,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +20204,Ih13,EA201,Same,EA201-2,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +20205,Ih14,EA201,Same,EA201-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +20206,Ih2,EA201,Same,EA201-2,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20207,Ih3,EA201,Same,EA201-2,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +20208,Ih4,EA201,Different,EA201-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20209,Ih5,EA201,Same,EA201-2,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +20210,Ih6,EA201,Same,EA201-2,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +20211,Ih7,EA201,Same,EA201-2,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +20212,Ih8,EA201,Same,EA201-2,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +20213,Ih9,EA201,Same,EA201-2,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20214,Ii1,EA201,Same,EA201-2,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +20215,Ii10,EA201,?,EA201-NA,,,,,, +20216,Ii12,EA201,Same,EA201-2,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20217,Ii13,EA201,Same,EA201-2,,burrows1937,,1830,EthnographicAtlas_1967_p98, +20218,Ii14,EA201,Same,EA201-2,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +20219,Ii2,EA201,Same,EA201-2,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +20220,Ii3,EA201,Same,EA201-2,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +20221,Ii4,EA201,Same,EA201-2,Residence rule inferred from data on inheritance,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +20222,Ii5,EA201,Same,EA201-2,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +20223,Ii6,EA201,Same,EA201-2,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +20224,Ii7,EA201,Different,EA201-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +20225,Ii8,EA201,Different,EA201-1,,burrows1936,,1840,EthnographicAtlas_1967_p98, +20226,Ii9,EA201,Same,EA201-2,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +20227,Ij1,EA201,Same,EA201-2,,buck1934,,1820,EthnographicAtlas_1967_p98, +20228,Ij10,EA201,Same,EA201-2,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +20229,Ij2,EA201,Same,EA201-2,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +20230,Ij3,EA201,Different,EA201-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +20231,Ij4,EA201,Same,EA201-2,,buck1932a,,1850,EthnographicAtlas_1967_p102, +20232,Ij5,EA201,Same,EA201-2,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +20233,Ij6,EA201,Same,EA201-2,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +20234,Ij7,EA201,Same,EA201-2,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +20235,Ij8,EA201,Same,EA201-2,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +20236,Ij9,EA201,Same,EA201-2,,metraux1940,,1860,EthnographicAtlas_1967_p102, +20237,Na1,EA201,Different,EA201-1,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +20238,Na10,EA201,Different,EA201-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +20239,Na11,EA201,Different,EA201-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +20240,Na12,EA201,Different,EA201-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +20241,Na13,EA201,Different,EA201-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +20242,Na14,EA201,Same,EA201-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +20243,Na15,EA201,Different,EA201-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +20244,Na16,EA201,Different,EA201-1,,osgood1931,,1860,EthnographicAtlas_1967_p102, +20245,Na17,EA201,Different,EA201-1,"Entry follows Helm; Honigmann reports prevailing pattern as Uxorilocal, so this would be code ""2""",helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20246,Na19,EA201,Different,EA201-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +20247,Na2,EA201,Same,EA201-2,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +20248,Na20,EA201,Different,EA201-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +20249,Na21,EA201,Same,EA201-2,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +20250,Na22,EA201,Same,EA201-2,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +20251,Na23,EA201,Different,EA201-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +20252,Na24,EA201,Same,EA201-2,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +20253,Na25,EA201,Same,EA201-2,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +20254,Na26,EA201,Different,EA201-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +20255,Na27,EA201,Different,EA201-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +20256,Na28,EA201,Different,EA201-1,,jenness1937,,1880,EthnographicAtlas_1967_p102, +20257,Na29,EA201,Same,EA201-2,,goddard1916,,1850,EthnographicAtlas_1967_p102, +20258,Na3,EA201,Same,EA201-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +20259,Na30,EA201,Different,EA201-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +20260,Na31,EA201,Same,EA201-2,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +20261,Na32,EA201,Same,EA201-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +20262,Na33,EA201,Same,EA201-2,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +20263,Na34,EA201,Different,EA201-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +20264,Na35,EA201,Different,EA201-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +20265,Na36,EA201,Different,EA201-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +20266,Na37,EA201,Different,EA201-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +20267,Na38,EA201,Same,EA201-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +20268,Na39,EA201,Different,EA201-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +20269,Na4,EA201,Same,EA201-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +20270,Na40,EA201,?,EA201-NA,,,,,, +20271,Na41,EA201,Different,EA201-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +20272,Na42,EA201,Same,EA201-2,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +20273,Na43,EA201,Same,EA201-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +20274,Na44,EA201,Different,EA201-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +20275,Na45,EA201,Same,EA201-2,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +20276,Na5,EA201,Same,EA201-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +20277,Na6,EA201,Different,EA201-1,,lantis1946,,1930,EthnographicAtlas_1967_p102, +20278,Na7,EA201,Different,EA201-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +20279,Na8,EA201,Same,EA201-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +20280,Na9,EA201,Different,EA201-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20281,Nb1,EA201,Different,EA201-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +20282,Nb10,EA201,Different,EA201-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +20283,Nb11,EA201,Same,EA201-2,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +20284,Nb12,EA201,Same,EA201-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +20285,Nb13,EA201,Same,EA201-2,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +20286,Nb14,EA201,Same,EA201-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +20287,Nb15,EA201,Same,EA201-2,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +20288,Nb16,EA201,Same,EA201-2,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +20289,Nb17,EA201,Same,EA201-2,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +20290,Nb18,EA201,Same,EA201-2,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +20291,Nb19,EA201,Same,EA201-2,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +20292,Nb2,EA201,Same,EA201-2,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +20293,Nb20,EA201,Same,EA201-2,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +20294,Nb21,EA201,Same,EA201-2,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +20295,Nb22,EA201,Same,EA201-2,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +20296,Nb23,EA201,Same,EA201-2,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +20297,Nb24,EA201,Same,EA201-2,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +20298,Nb25,EA201,Same,EA201-2,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +20299,Nb26,EA201,Same,EA201-2,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +20300,Nb27,EA201,Same,EA201-2,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +20301,Nb28,EA201,Same,EA201-2,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +20302,Nb29,EA201,Same,EA201-2,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +20303,Nb3,EA201,Same,EA201-2,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +20304,Nb30,EA201,Same,EA201-2,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +20305,Nb31,EA201,Same,EA201-2,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +20306,Nb32,EA201,Same,EA201-2,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +20307,Nb33,EA201,Same,EA201-2,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +20308,Nb34,EA201,Same,EA201-2,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +20309,Nb35,EA201,Same,EA201-2,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +20310,Nb36,EA201,Same,EA201-2,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +20311,Nb37,EA201,Different,EA201-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +20312,Nb38,EA201,Same,EA201-2,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +20313,Nb39,EA201,Different,EA201-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +20314,Nb4,EA201,Same,EA201-2,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +20315,Nb5,EA201,Different,EA201-1,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +20316,Nb6,EA201,Same,EA201-2,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +20317,Nb7,EA201,Same,EA201-2,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +20318,Nb8,EA201,Different,EA201-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +20319,Nb9,EA201,Same,EA201-2,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +20320,Nc1,EA201,Different,EA201-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +20321,Nc10,EA201,Different,EA201-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +20322,Nc11,EA201,Different,EA201-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +20323,Nc12,EA201,Different,EA201-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +20324,Nc13,EA201,Different,EA201-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +20325,Nc14,EA201,Same,EA201-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +20326,Nc15,EA201,Different,EA201-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +20327,Nc16,EA201,Different,EA201-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +20328,Nc17,EA201,Different,EA201-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +20329,Nc18,EA201,Same,EA201-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +20330,Nc19,EA201,Same,EA201-2,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +20331,Nc2,EA201,Same,EA201-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +20332,Nc20,EA201,Same,EA201-2,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +20333,Nc21,EA201,?,EA201-NA,,,,,, +20334,Nc22,EA201,Different,EA201-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +20335,Nc23,EA201,Different,EA201-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +20336,Nc24,EA201,Different,EA201-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +20337,Nc25,EA201,Different,EA201-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +20338,Nc26,EA201,Same,EA201-2,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +20339,Nc27,EA201,Different,EA201-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +20340,Nc28,EA201,Different,EA201-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +20341,Nc29,EA201,Different,EA201-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +20342,Nc3,EA201,Different,EA201-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +20343,Nc30,EA201,Same,EA201-2,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +20344,Nc31,EA201,Same,EA201-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +20345,Nc32,EA201,Same,EA201-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +20346,Nc33,EA201,Same,EA201-2,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +20347,Nc34,EA201,Same,EA201-2,,meigs1939,,1880,EthnographicAtlas_1967_p106, +20348,Nc4,EA201,Different,EA201-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +20349,Nc5,EA201,Same,EA201-2,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +20350,Nc6,EA201,Same,EA201-2,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +20351,Nc7,EA201,Different,EA201-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +20352,Nc8,EA201,Same,EA201-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +20353,Nc9,EA201,Different,EA201-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +20354,Nd1,EA201,Same,EA201-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +20355,Nd10,EA201,Same,EA201-2,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +20356,Nd11,EA201,Same,EA201-2,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +20357,Nd12,EA201,Same,EA201-2,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +20358,Nd13,EA201,Same,EA201-2,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +20359,Nd14,EA201,Same,EA201-2,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +20360,Nd15,EA201,Different,EA201-1,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +20361,Nd16,EA201,Same,EA201-2,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +20362,Nd17,EA201,Same,EA201-2,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +20363,Nd18,EA201,Same,EA201-2,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +20364,Nd19,EA201,Same,EA201-2,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +20365,Nd2,EA201,Same,EA201-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +20366,Nd20,EA201,Same,EA201-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +20367,Nd21,EA201,Different,EA201-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +20368,Nd22,EA201,Different,EA201-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +20369,Nd23,EA201,Same,EA201-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +20370,Nd24,EA201,Different,EA201-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +20371,Nd25,EA201,Same,EA201-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +20372,Nd26,EA201,Different,EA201-1,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +20373,Nd27,EA201,Same,EA201-2,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +20374,Nd28,EA201,Same,EA201-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +20375,Nd29,EA201,Different,EA201-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +20376,Nd3,EA201,Different,EA201-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +20377,Nd30,EA201,Different,EA201-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +20378,Nd31,EA201,Different,EA201-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +20379,Nd32,EA201,Same,EA201-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +20380,Nd33,EA201,Same,EA201-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +20381,Nd34,EA201,Same,EA201-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +20382,Nd35,EA201,Different,EA201-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +20383,Nd36,EA201,Different,EA201-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +20384,Nd37,EA201,Same,EA201-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +20385,Nd38,EA201,Same,EA201-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +20386,Nd39,EA201,Same,EA201-2,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +20387,Nd4,EA201,Same,EA201-2,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +20388,Nd40,EA201,Same,EA201-2,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +20389,Nd41,EA201,Different,EA201-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +20390,Nd42,EA201,Different,EA201-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +20391,Nd43,EA201,Same,EA201-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +20392,Nd44,EA201,Same,EA201-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +20393,Nd45,EA201,Same,EA201-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +20394,Nd46,EA201,Different,EA201-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +20395,Nd47,EA201,Different,EA201-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +20396,Nd48,EA201,Same,EA201-2,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +20397,Nd49,EA201,Same,EA201-2,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +20398,Nd5,EA201,Same,EA201-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +20399,Nd50,EA201,?,EA201-NA,,,,,, +20400,Nd51,EA201,Same,EA201-2,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +20401,Nd52,EA201,Different,EA201-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +20402,Nd53,EA201,Different,EA201-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +20403,Nd54,EA201,Same,EA201-2,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20404,Nd55,EA201,Same,EA201-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +20405,Nd56,EA201,Same,EA201-2,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +20406,Nd57,EA201,Same,EA201-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +20407,Nd58,EA201,Same,EA201-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +20408,Nd59,EA201,Same,EA201-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +20409,Nd6,EA201,Different,EA201-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +20410,Nd60,EA201,Same,EA201-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +20411,Nd61,EA201,Same,EA201-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +20412,Nd62,EA201,Same,EA201-2,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +20413,Nd63,EA201,Same,EA201-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +20414,Nd64,EA201,Same,EA201-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +20415,Nd65,EA201,Different,EA201-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +20416,Nd66,EA201,Different,EA201-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +20417,Nd67,EA201,Different,EA201-1,,gifford1936,,1870,EthnographicAtlas_1967_p110, +20418,Nd7,EA201,Different,EA201-1,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +20419,Nd8,EA201,Same,EA201-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +20420,Nd9,EA201,Same,EA201-2,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +20421,Ne1,EA201,Same,EA201-2,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +20422,Ne10,EA201,Same,EA201-2,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +20423,Ne11,EA201,Same,EA201-2,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +20424,Ne12,EA201,Same,EA201-2,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +20425,Ne13,EA201,Same,EA201-2,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +20426,Ne14,EA201,?,EA201-NA,,,,,, +20427,Ne15,EA201,Same,EA201-2,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +20428,Ne16,EA201,Different,EA201-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +20429,Ne17,EA201,Same,EA201-2,"Entry follows Richardson; Mooney reports early and prevailing residence as Uxorilocal (this would still be code ""2"")",lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +20430,Ne18,EA201,Same,EA201-2,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +20431,Ne19,EA201,Same,EA201-2,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +20432,Ne2,EA201,Same,EA201-2,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +20433,Ne20,EA201,Different,EA201-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +20434,Ne21,EA201,?,EA201-NA,,,,,, +20435,Ne3,EA201,Same,EA201-2,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +20436,Ne4,EA201,Same,EA201-2,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +20437,Ne5,EA201,Same,EA201-2,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +20438,Ne6,EA201,Same,EA201-2,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +20439,Ne7,EA201,Same,EA201-2,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +20440,Ne8,EA201,Same,EA201-2,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +20441,Ne9,EA201,Same,EA201-2,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +20442,Nf10,EA201,Different,EA201-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +20443,Nf11,EA201,Different,EA201-1,,whitman1937,,1870,EthnographicAtlas_1967_p114, +20444,Nf12,EA201,Same,EA201-2,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +20445,Nf13,EA201,Same,EA201-2,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20446,Nf14,EA201,Same,EA201-2,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +20447,Nf15,EA201,Same,EA201-2,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +20448,Nf2,EA201,Different,EA201-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +20449,Nf3,EA201,Different,EA201-1,"Patrilocal in hunting camps, but possibly Uxorilocal in the villages, in which case this would be code ""2"" for village residence",dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +20450,Nf4,EA201,Same,EA201-2,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +20451,Nf5,EA201,Same,EA201-2,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +20452,Nf6,EA201,Same,EA201-2,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +20453,Nf7,EA201,Different,EA201-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20454,Nf8,EA201,Same,EA201-2,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +20455,Nf9,EA201,Same,EA201-2,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +20456,Ng1,EA201,Same,EA201-2,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +20457,Ng10,EA201,Same,EA201-2,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +20458,Ng11,EA201,Same,EA201-2,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +20459,Ng12,EA201,Same,EA201-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +20460,Ng13,EA201,Different,EA201-1,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +20461,Ng14,EA201,Same,EA201-2,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +20462,Ng15,EA201,?,EA201-NA,,,,,, +20463,Ng2,EA201,Same,EA201-2,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +20464,Ng3,EA201,Same,EA201-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +20465,Ng4,EA201,Different,EA201-1,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +20466,Ng5,EA201,Same,EA201-2,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +20467,Ng6,EA201,Same,EA201-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +20468,Ng7,EA201,Same,EA201-2,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +20469,Ng8,EA201,Same,EA201-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +20470,Ng9,EA201,Same,EA201-2,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +20471,Nh1,EA201,Same,EA201-2,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +20472,Nh10,EA201,Same,EA201-2,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +20473,Nh11,EA201,Same,EA201-2,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +20474,Nh12,EA201,Same,EA201-2,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +20475,Nh13,EA201,Same,EA201-2,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +20476,Nh14,EA201,Same,EA201-2,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +20477,Nh15,EA201,Same,EA201-2,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +20478,Nh16,EA201,Same,EA201-2,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20479,Nh17,EA201,Same,EA201-2,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +20480,Nh18,EA201,Same,EA201-2,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20481,Nh19,EA201,Different,EA201-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +20482,Nh2,EA201,Same,EA201-2,,dozier1954,,1950,EthnographicAtlas_1967_p114, +20483,Nh20,EA201,Different,EA201-1,,gifford1931,,1860,EthnographicAtlas_1967_p114, +20484,Nh21,EA201,Same,EA201-2,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20485,Nh22,EA201,Same,EA201-2,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +20486,Nh23,EA201,Same,EA201-2,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +20487,Nh24,EA201,Same,EA201-2,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +20488,Nh25,EA201,Same,EA201-2,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +20489,Nh26,EA201,Same,EA201-2,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +20490,Nh27,EA201,Same,EA201-2,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +20491,Nh3,EA201,Same,EA201-2,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +20492,Nh4,EA201,Same,EA201-2,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +20493,Nh5,EA201,Same,EA201-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +20494,Nh6,EA201,Same,EA201-2,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +20495,Nh7,EA201,Same,EA201-2,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +20496,Nh8,EA201,Different,EA201-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +20497,Nh9,EA201,Same,EA201-2,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +20498,Ni1,EA201,Different,EA201-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +20499,Ni2,EA201,Same,EA201-2,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +20500,Ni3,EA201,Different,EA201-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +20501,Ni4,EA201,Same,EA201-2,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +20502,Ni5,EA201,Same,EA201-2,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +20503,Ni6,EA201,Same,EA201-2,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +20504,Ni7,EA201,Same,EA201-2,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +20505,Ni8,EA201,Same,EA201-2,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +20506,Ni9,EA201,?,EA201-NA,,,,,, +20507,Nj1,EA201,Same,EA201-2,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20508,Nj10,EA201,Same,EA201-2,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20509,Nj11,EA201,Same,EA201-2,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +20510,Nj12,EA201,?,EA201-NA,,,,,, +20511,Nj13,EA201,Same,EA201-2,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +20512,Nj14,EA201,Same,EA201-2,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +20513,Nj2,EA201,Same,EA201-2,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +20514,Nj3,EA201,Same,EA201-2,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +20515,Nj4,EA201,Same,EA201-2,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +20516,Nj5,EA201,Same,EA201-2,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +20517,Nj6,EA201,Same,EA201-2,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +20518,Nj7,EA201,Same,EA201-2,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20519,Nj8,EA201,Same,EA201-2,,foster1948,,1500,EthnographicAtlas_1967_p118, +20520,Nj9,EA201,Same,EA201-2,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +20521,Sa1,EA201,Same,EA201-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +20522,Sa10,EA201,Same,EA201-2,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +20523,Sa11,EA201,Same,EA201-2,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +20524,Sa12,EA201,Different,EA201-1,,stone1948,,1948,EthnographicAtlas_1967_p118, +20525,Sa13,EA201,Same,EA201-2,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +20526,Sa14,EA201,Same,EA201-2,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +20527,Sa15,EA201,Same,EA201-2,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +20528,Sa16,EA201,Same,EA201-2,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +20529,Sa17,EA201,Same,EA201-2,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +20530,Sa2,EA201,Different,EA201-1,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20531,Sa3,EA201,Same,EA201-2,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +20532,Sa4,EA201,Different,EA201-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +20533,Sa5,EA201,Different,EA201-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +20534,Sa6,EA201,Different,EA201-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +20535,Sa7,EA201,Same,EA201-2,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +20536,Sa8,EA201,Same,EA201-2,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +20537,Sa9,EA201,Same,EA201-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +20538,Sb1,EA201,Same,EA201-2,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +20539,Sb2,EA201,Same,EA201-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +20540,Sb3,EA201,Same,EA201-2,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +20541,Sb4,EA201,Same,EA201-2,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +20542,Sb5,EA201,Same,EA201-2,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +20543,Sb6,EA201,Different,EA201-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +20544,Sb7,EA201,Same,EA201-2,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +20545,Sb8,EA201,Same,EA201-2,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +20546,Sb9,EA201,Same,EA201-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +20547,Sc1,EA201,Same,EA201-2,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +20548,Sc10,EA201,Same,EA201-2,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +20549,Sc11,EA201,Same,EA201-2,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +20550,Sc12,EA201,Different,EA201-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +20551,Sc13,EA201,Same,EA201-2,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +20552,Sc14,EA201,Same,EA201-2,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +20553,Sc15,EA201,Same,EA201-2,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +20554,Sc16,EA201,Same,EA201-2,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +20555,Sc17,EA201,Different,EA201-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +20556,Sc18,EA201,Same,EA201-2,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +20557,Sc2,EA201,Same,EA201-2,,leedsnd,,1950,EthnographicAtlas_1967_p118, +20558,Sc3,EA201,Different,EA201-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +20559,Sc4,EA201,Same,EA201-2,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +20560,Sc5,EA201,Different,EA201-1,,farabee1918,,1900,EthnographicAtlas_1967_p118, +20561,Sc6,EA201,Same,EA201-2,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20562,Sc7,EA201,Different,EA201-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +20563,Sc8,EA201,Same,EA201-2,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +20564,Sc9,EA201,Same,EA201-2,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +20565,Sd1,EA201,Same,EA201-2,But men sleep apart from their wives in a men's house,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20566,Sd2,EA201,Same,EA201-2,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +20567,Sd3,EA201,Different,EA201-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +20568,Sd4,EA201,Same,EA201-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +20569,Sd5,EA201,Same,EA201-2,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +20570,Sd6,EA201,Same,EA201-2,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +20571,Sd7,EA201,Different,EA201-1,,fock1963,,1950,EthnographicAtlas_1967_p118, +20572,Sd8,EA201,Different,EA201-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +20573,Sd9,EA201,Same,EA201-2,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20574,Se1,EA201,Same,EA201-2,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +20575,Se10,EA201,Different,EA201-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +20576,Se11,EA201,Different,EA201-1,,prost1965,,1960,EthnographicAtlas_1967_p122, +20577,Se12,EA201,Same,EA201-2,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +20578,Se2,EA201,Different,EA201-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +20579,Se3,EA201,Different,EA201-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +20580,Se4,EA201,Different,EA201-1,,fejos1943,,1940,EthnographicAtlas_1967_p118, +20581,Se5,EA201,Same,EA201-2,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +20582,Se6,EA201,Same,EA201-2,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +20583,Se7,EA201,Same,EA201-2,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20584,Se8,EA201,Same,EA201-2,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +20585,Se9,EA201,Same,EA201-2,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +20586,Sf1,EA201,Same,EA201-2,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +20587,Sf2,EA201,Same,EA201-2,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +20588,Sf3,EA201,Same,EA201-2,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +20589,Sf4,EA201,Different,EA201-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +20590,Sf5,EA201,Same,EA201-2,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +20591,Sf6,EA201,Same,EA201-2,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +20592,Sf7,EA201,Same,EA201-2,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +20593,Sf8,EA201,Same,EA201-2,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +20594,Sf9,EA201,Same,EA201-2,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +20595,Sg1,EA201,Same,EA201-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +20596,Sg2,EA201,Same,EA201-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20597,Sg3,EA201,Same,EA201-2,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people"", in which case this would be code ""1""",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +20598,Sg4,EA201,Same,EA201-2,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +20599,Sg5,EA201,Different,EA201-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20600,Sh1,EA201,Different,EA201-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +20601,Sh2,EA201,Different,EA201-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +20602,Sh3,EA201,Different,EA201-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +20603,Sh4,EA201,Same,EA201-2,,oberg1949,,1940,EthnographicAtlas_1967_p122, +20604,Sh5,EA201,Same,EA201-2,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +20605,Sh6,EA201,Same,EA201-2,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +20606,Sh7,EA201,Different,EA201-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +20607,Sh8,EA201,Same,EA201-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +20608,Sh9,EA201,Same,EA201-2,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +20609,Si1,EA201,Same,EA201-2,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20610,Si10,EA201,Different,EA201-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +20611,Si2,EA201,Same,EA201-2,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +20612,Si3,EA201,Different,EA201-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20613,Si4,EA201,Same,EA201-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +20614,Si5,EA201,Different,EA201-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +20615,Si6,EA201,Same,EA201-2,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +20616,Si7,EA201,Same,EA201-2,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +20617,Si8,EA201,Different,EA201-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +20618,Si9,EA201,?,EA201-NA,,,,,, +20619,Sj1,EA201,Same,EA201-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +20620,Sj10,EA201,Same,EA201-2,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20621,Sj11,EA201,Same,EA201-2,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +20622,Sj2,EA201,Different,EA201-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +20623,Sj3,EA201,Same,EA201-2,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +20624,Sj4,EA201,Same,EA201-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +20625,Sj5,EA201,?,EA201-NA,,,,,, +20626,Sj6,EA201,Same,EA201-2,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20627,Sj7,EA201,Same,EA201-2,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +20628,Sj8,EA201,Different,EA201-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +20629,Sj9,EA201,Same,EA201-2,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +20630,ch12,EA201,Different,EA201-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +20631,ch13,EA201,Same,EA201-2,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +20632,ch14,EA201,Same,EA201-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +20633,ch15,EA201,Same,EA201-2,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +20634,ch16,EA201,Same,EA201-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +20635,ch17,EA201,Same,EA201-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +20636,ch18,EA201,Same,EA201-2,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +20637,ch19,EA201,Same,EA201-2,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +20638,ch20,EA201,Different,EA201-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +20639,ch21,EA201,Same,EA201-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +20640,ch22,EA201,Same,EA201-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +20641,ch23,EA201,Same,EA201-2,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +20642,ch24,EA201,Same,EA201-2,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +20643,ch25,EA201,Same,EA201-2,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +20644,ch26,EA201,Different,EA201-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +20645,ch27,EA201,Same,EA201-2,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +20646,ch28,EA201,Same,EA201-2,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +20647,ec12,EA201,Different,EA201-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +20648,ec13,EA201,Different,EA201-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +20649,ec14,EA201,Different,EA201-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +20650,ec15,EA201,Same,EA201-2,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +20651,ec16,EA201,Same,EA201-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +20652,ec17,EA201,Same,EA201-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +20653,ec18,EA201,Same,EA201-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +20654,ec19,EA201,Same,EA201-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +20655,ec20,EA201,Same,EA201-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +20656,ec21,EA201,Same,EA201-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +20657,Aa1,EA202,3500,,"Of this total, 1,000 were located in the Nyae Nyae region.",,Nyai Nyae region,1953,Carol Ember's Concordance Database, +20658,Aa2,EA202,1100,,221 Central Dorobo in 1942,,with special reference to Central Dorobo,1925,EA Bibliography, +20659,Aa3,EA202,2500,,in 1876; See HRAF reference 4:7; note focal year for cultural data is 1840,,Gei/Khauan tribe,1876,Carol Ember's Concordance Database, +20660,Aa4,EA202,29000,,in 1946; note focal year for cultural data is 1920,,,1946,EA Bibliography, +20661,Aa5,EA202,40000,,in 1951; See HRAF reference 2:26; note focal year for cultural data is 1930,,"Epulu net-hunters, Ituri forest",1951,Carol Ember's Concordance Database, +20662,Aa6,EA202,23400,,in 1948; note focal year for cultural data is 1920,,,1948,EA Bibliography, +20663,Aa7,EA202,300,,Date for population estimate missing,,,,EA Bibliography, +20664,Aa8,EA202,?,,,,,,, +20665,Aa9,EA202,600,,Date for population estimate missing; This population figure is taken from EA-Summary,,Hatsa Kindiga Tribe,,Carol Ember's Concordance Database, +20666,Ab1,EA202,100000,,,,,1900,EA Bibliography, +20667,Ab10,EA202,260000,,,,,1936,EA Bibliography, +20668,Ab11,EA202,?,,,,,,, +20669,Ab12,EA202,250000,,in 1921; note focal year for cultural data is 1830,,,1921,EA Bibliography, +20670,Ab13,EA202,580000,,"in 1946; 12,000 Kgatla; note focal year for cultural data is 1880",,with special reference to the Kgatla (Bakxatla),1946,EA Bibliography, +20671,Ab14,EA202,40000,,Date for population estimate missing,,,,EA Bibliography, +20672,Ab15,EA202,100000,,in 1930; note focal year for cultural data is 1860,,,1930,EA Bibliography, +20673,Ab16,EA202,?,,,,,,, +20674,Ab17,EA202,100000,,"Date for population estimate missing; Data source gives population number as ""more than 100,000 in Mozambique""",,,,EA Bibliography, +20675,Ab18,EA202,700000,,in 1931; note focal year for cultural data is 1920,,with special reference to the Zezuru,1931,EA Bibliography, +20676,Ab19,EA202,60000,,in 1948; Kuanyama; note focal year for cultural data is 1910,,with special reference to the Kuanyama,1948,EA Bibliography, +20677,Ab2,EA202,180000,,in 1946; note focal year for cultural data is 1880,,,1946,EA Bibliography, +20678,Ab20,EA202,80000,,"10,000 after severe famines in 1912 and 1915, 80,000 prior",,,1880,EA Bibliography, +20679,Ab21a,EA202,10000,,,,,1930,EA Bibliography, +20680,Ab21b,EA202,?,,,,,,, +20681,Ab22,EA202,?,,,,,,, +20682,Ab3,EA202,67200,,in 1934; See HRAF reference 2:87; note focal year for cultural data is 1890,,Ruling Luyana,1934,Carol Ember's Concordance Database, +20683,Ab4,EA202,?,,,,,,, +20684,Ab5,EA202,1200000,,See EA-Summary,,,1940,Carol Ember's Concordance Database, +20685,Ab6,EA202,150000,,in 1930; note focal year for cultural data is 1900,,,1930,EA Bibliography, +20686,Ab7,EA202,40000,,,,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA Bibliography, +20687,Ab8,EA202,900000,,in 1953; note focal year for cultural data is 1860,,Basuto,1953,EA Bibliography, +20688,Ab9,EA202,300000,,in 1948; note focal year for cultural data is 1870,,,1948,EA Bibliography, +20689,Ac1,EA202,22000,,in 1957; note focal year for cultural data is 1920,,,1957,EA Bibliography, +20690,Ac10,EA202,750000,,in 1955; note focal year for cultural data is 1920,,,1955,EA Bibliography, +20691,Ac11,EA202,90000,,,,,1940,EA Bibliography, +20692,Ac12,EA202,600000,,in 1940; note focal year for cultural data is 1920,,,1940,EA Bibliography, +20693,Ac13,EA202,50000,,,,,1953,EA Bibliography, +20694,Ac14,EA202,?,,,,,,, +20695,Ac15,EA202,?,,,,,,, +20696,Ac16,EA202,?,,,,,,, +20697,Ac17,EA202,80000,,in 1949; No population data is available for +1920; note focal year for cultural data is 1910,,Feshi territory lineage center,1949,Carol Ember's Concordance Database, +20698,Ac18,EA202,65000,,in 1953; note focal year for cultural data is 1910,,,1953,EA Bibliography, +20699,Ac19,EA202,?,,,,,,, +20700,Ac2,EA202,27000,,in 1955; note focal year for cultural data is 1920,,,1955,EA Bibliography, +20701,Ac20,EA202,?,,,,,,, +20702,Ac21,EA202,?,,,,,,, +20703,Ac22,EA202,?,,,,,,, +20704,Ac23,EA202,10000,,,,with special reference to the western Lele,1947,EA Bibliography, +20705,Ac24,EA202,?,,,,,,, +20706,Ac25,EA202,?,,,,,,, +20707,Ac26,EA202,?,,,,,,, +20708,Ac27,EA202,?,,,,,,, +20709,Ac28,EA202,40000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +20710,Ac29,EA202,?,,,,,,, +20711,Ac3,EA202,100000,,in 1930; See HRAF reference 1:2; note focal year for cultural data is 1900,,Zambia branch,1930,Carol Ember's Concordance Database, +20712,Ac30,EA202,90000,,,,,1948,EA Bibliography, +20713,Ac31,EA202,?,,,,,,, +20714,Ac32,EA202,38000,,in 1934; note focal year for cultural data is 1920,,,1934,EA Bibliography, +20715,Ac33,EA202,60000,,,,,1946,EA Bibliography, +20716,Ac34,EA202,100000,,Date for population estimate missing,,,,EA Bibliography, +20717,Ac35,EA202,?,,,,,,, +20718,Ac36,EA202,115000,,in 1945; note focal year for cultural data is 1920,,,1945,EA Bibliography, +20719,Ac37,EA202,20000,,,,,1950,EA Bibliography, +20720,Ac38,EA202,575000,,in 1945; note focal year for cultural data is 1910,,,1945,EA Bibliography, +20721,Ac39,EA202,?,,,,,,, +20722,Ac4,EA202,73000,,in 1947; note focal year for cultural data is 1910,,"with special reference to the Bushoong, the central subtribe",1947,EA Bibliography, +20723,Ac40,EA202,?,,,,,,, +20724,Ac41,EA202,?,,,,,,, +20725,Ac42,EA202,800000,,in 1950; note focal year for cultural data is 1900,,,1950,EA Bibliography, +20726,Ac43,EA202,25000,,in 1958; note focal year for cultural data is 1910,,,1958,EA Bibliography, +20727,Ac5,EA202,70000,,Date for population estimate missing,,,,EA Bibliography, +20728,Ac6,EA202,63000,,Date for population estimate missing,,,,EA Bibliography, +20729,Ac7,EA202,360000,,in 1945; exclusive of a large number of Yao in Mozambique; note focal year for cultural data is 1920,,,1945,EA Bibliography, +20730,Ac8,EA202,170000,,,,,1933,EA Bibliography, +20731,Ac9,EA202,85000,,Mpezeni Ngoni,,with special reference to the Mpezeni group of Fort Jameson,1950,EA Bibliography, +20732,Ad1,EA202,2000,,,,,1950,EA Bibliography, +20733,Ad10,EA202,220000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20734,Ad11,EA202,16000,,,,,1931,EA Bibliography, +20735,Ad12,EA202,238000,,,,,1950,EA Bibliography, +20736,Ad13,EA202,100000,,"310,000 in 1959",,,1940,EA Bibliography, +20737,Ad14,EA202,200000,,in 1960; Population data is unavailable for +1920; note focal year for cultural data is 1930,,Morogoro District,1960,Carol Ember's Concordance Database, +20738,Ad15,EA202,12250,,in 1953; note focal year for cultural data is 1900,,,1953,EA Bibliography, +20739,Ad16,EA202,62000,,in 1945; note focal year for cultural data is 1920,,,1945,EA Bibliography, +20740,Ad17,EA202,45000,,in 1950; note focal year for cultural data is 1920,,,1950,EA Bibliography, +20741,Ad18,EA202,?,,,,,,, +20742,Ad19,EA202,15000,,,,,1910,EA Bibliography, +20743,Ad2,EA202,110000,,,,,1957,EA Bibliography, +20744,Ad20,EA202,?,,,,,,, +20745,Ad21,EA202,11000,,in 1957; note focal year for cultural data is 1930,,,1957,EA Bibliography, +20746,Ad22,EA202,1000000,,,,,1948,EA Bibliography, +20747,Ad23,EA202,?,,,,,,, +20748,Ad24,EA202,110000,,Date for population estimate missing; early report,,,,EA Bibliography, +20749,Ad25,EA202,80000,,Date for population estimate missing,,,,EA Bibliography, +20750,Ad26,EA202,145000,,in 1949; note focal year for cultural data is 1910,,,1949,EA Bibliography, +20751,Ad27,EA202,40000,,in 1957; note focal year for cultural data is 1880,,,1957,EA Bibliography, +20752,Ad28,EA202,135000,,in 1957; note focal year for cultural data is 1880,,,1957,EA Bibliography, +20753,Ad29,EA202,100000,,,,,1924,EA Bibliography, +20754,Ad3,EA202,237000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20755,Ad30,EA202,112000,,in 1948; note focal year for cultural data is 1890,,,1948,EA Bibliography, +20756,Ad31,EA202,37000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20757,Ad32,EA202,120000,,in 1948; note focal year for cultural data is 1900,,,1948,EA Bibliography, +20758,Ad33,EA202,20000,,in 1948; note focal year for cultural data is 1900,,,1948,EA Bibliography, +20759,Ad34,EA202,600000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20760,Ad35,EA202,255000,,,,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1948,EA Bibliography, +20761,Ad36,EA202,100000,,in 1948; note focal year for cultural data is 1890,,,1948,EA Bibliography, +20762,Ad37,EA202,60000,,,,,1948,EA Bibliography, +20763,Ad38,EA202,20000,,Date for population estimate missing,,,,EA Bibliography, +20764,Ad39,EA202,4500,,,,,1957,EA Bibliography, +20765,Ad4,EA202,1026300,,in 1948; See HRAF reference 1:12; note focal year for cultural data is 1930,,Fort Hall or Metume district,1948,Carol Ember's Concordance Database, +20766,Ad40,EA202,40000,,,,,1955,EA Bibliography, +20767,Ad41,EA202,50000,,,,,1937,EA Bibliography, +20768,Ad42,EA202,325000,,in 1957; note focal year for cultural data is 1900,,,1957,EA Bibliography, +20769,Ad43,EA202,40000,,Date for population estimate missing,,,,EA Bibliography, +20770,Ad44,EA202,375000,,in 1959; note focal year for cultural data is 1920,,,1959,EA Bibliography, +20771,Ad45,EA202,520000,,in 1959; note focal year for cultural data is 1920,,,1959,EA Bibliography, +20772,Ad46,EA202,425000,,,,,1948,EA Bibliography, +20773,Ad47,EA202,76000,,in 1957; note focal year for cultural data is 1900,,,1957,EA Bibliography, +20774,Ad48,EA202,200000,,,,,1959,EA Bibliography, +20775,Ad49,EA202,55000,,,,,1957,EA Bibliography, +20776,Ad5,EA202,7500,,,,,1948,EA Bibliography, +20777,Ad50,EA202,87000,,in 1957; note focal year for cultural data is 1900,,with special reference to the Mountain Kaguru,1957,EA Bibliography, +20778,Ad51,EA202,53000,,in 1957; note focal year for cultural data is 1930,,,1957,EA Bibliography, +20779,Ad6,EA202,163000,,This figure reflects the total number of Nyakyusa in Tanzania and Malawi (EA-Summary).,,Age villages of Mwaya and Masoko,1931,Carol Ember's Concordance Database, +20780,Ad7,EA202,600000,,in 1900; See HRAF reference 2:6; note focal year for cultural data is 1880,,Kyaddondo district (V: Kampala),1900,Carol Ember's Concordance Database, +20781,Ad8,EA202,85000,,in 1930; note focal year for cultural data is 1910,,with special reference to the northern or Iringa group,1930,EA Bibliography, +20782,Ad9,EA202,250000,,in 1948; note focal year for cultural data is 1900,,,1948,EA Bibliography, +20783,Ae1,EA202,18000,,in Bwamba,,with special reference to those of Bwamba in Uganda,1948,EA Bibliography, +20784,Ae10,EA202,2133000,,in 1952; note focal year for cultural data is 1910,,,1952,EA Bibliography, +20785,Ae11,EA202,100000,,"Date for population estimate missing; Data source gives population data as ""more than 100,000""",,,,EA Bibliography, +20786,Ae12,EA202,40000,,,,,1947,EA Bibliography, +20787,Ae13,EA202,?,,,,,,, +20788,Ae14,EA202,200000,,,,,1948,EA Bibliography, +20789,Ae15,EA202,?,,,,,,, +20790,Ae16,EA202,?,,,,,,, +20791,Ae17,EA202,?,,,,,,, +20792,Ae18,EA202,?,,,,,,, +20793,Ae19,EA202,?,,,,,,, +20794,Ae2,EA202,38000,,,,,1953,EA Bibliography, +20795,Ae20,EA202,200000,,,,,1944,EA Bibliography, +20796,Ae21,EA202,24000,,,,,1920,EA Bibliography, +20797,Ae22,EA202,?,,,,,,, +20798,Ae23,EA202,100000,,,,,1940,EA Bibliography, +20799,Ae24,EA202,200000,,"in 1940; Not to be confused with the kindred Nkundo (Ae4), previously designated as Mongo. Data source gives population data as ""more than 200,000""; note focal year for cultural data is 1920",,,1940,EA Bibliography, +20800,Ae25,EA202,?,,,,,,, +20801,Ae26,EA202,?,,,,,,, +20802,Ae27,EA202,25000,,Date for population estimate missing,,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",,EA Bibliography, +20803,Ae28,EA202,125000,,in 1950; note focal year for cultural data is 1900,,,1950,EA Bibliography, +20804,Ae29,EA202,?,,,,,,, +20805,Ae3,EA202,850000,,in 1950; note focal year for cultural data is 1910,,,1950,EA Bibliography, +20806,Ae30,EA202,?,,,,,,, +20807,Ae31,EA202,?,,,,,,, +20808,Ae32,EA202,21000,,,,,1927,EA Bibliography, +20809,Ae33,EA202,300000,,Date for population estimate missing,,,,EA Bibliography, +20810,Ae34,EA202,?,,,,,,, +20811,Ae35,EA202,8350,,in 1949; note focal year for cultural data is 1900,,,1949,EA Bibliography, +20812,Ae36,EA202,?,,,,,,, +20813,Ae37,EA202,?,,,,,,, +20814,Ae38,EA202,?,,,,,,, +20815,Ae39,EA202,?,,,,,,, +20816,Ae4,EA202,1000000,,"The population during 1930 was reported to be in excess of 1,000,000 (2:2).",,Ilanga group,1930,Carol Ember's Concordance Database, +20817,Ae40,EA202,6000,,in 1949; note focal year for cultural data is 1910,,,1949,EA Bibliography, +20818,Ae41,EA202,?,,,,,,, +20819,Ae42,EA202,9000,,in 1949; note focal year for cultural data is 1900,,,1949,EA Bibliography, +20820,Ae43,EA202,?,,,,,,, +20821,Ae44,EA202,9350,,in 1945; note focal year for cultural data is 1920,,,1945,EA Bibliography, +20822,Ae45,EA202,35000,,Date for population estimate missing,,,,EA Bibliography, +20823,Ae46,EA202,?,,,,,,, +20824,Ae47,EA202,713,,in 1949; note focal year for cultural data is 1900,,,1949,EA Bibliography, +20825,Ae48,EA202,12000,,in 1949; note focal year for cultural data is 1930,,,1949,EA Bibliography, +20826,Ae49,EA202,23000,,in 1953; note focal year for cultural data is 1900,,,1953,EA Bibliography, +20827,Ae5,EA202,455000,,in 1951; note focal year for cultural data is 1910,,,1951,EA Bibliography, +20828,Ae50,EA202,80000,,in 1951; note focal year for cultural data is 1920,,,1951,EA Bibliography, +20829,Ae51,EA202,25000,,,,Ndiki subtribe,1949,Carol Ember's Concordance Database, +20830,Ae52,EA202,20000,,,,,1953,EA Bibliography, +20831,Ae53,EA202,40000,,,,,1929,EA Bibliography, +20832,Ae54,EA202,27000,,,,,1953,EA Bibliography, +20833,Ae55,EA202,44000,,,,,1953,EA Bibliography, +20834,Ae56,EA202,60000,,,,,1953,EA Bibliography, +20835,Ae57,EA202,36000,,in 1952; note focal year for cultural data is 1930,,,1952,EA Bibliography, +20836,Ae58,EA202,10000,,in 1949; note focal year for cultural data is 1910,,,1949,EA Bibliography, +20837,Ae59,EA202,93000,,,,with special reference to the Ngie subtribe,1948,EA Bibliography, +20838,Ae6,EA202,?,,,,,,, +20839,Ae7,EA202,16000,,in 1924; note focal year for cultural data is 1910,,,1924,EA Bibliography, +20840,Ae8,EA202,2000000,,Date for population estimate missing,,,,EA Bibliography, +20841,Ae9,EA202,34000,,,,,1953,EA Bibliography, +20842,Af1,EA202,250000,,Date for population estimate missing; This is the population figure found in EA-Summary,,City and environs of Abomey,,Carol Ember's Concordance Database, +20843,Af10,EA202,4000000,,See HRAF reference 8:v.,,,1929,Carol Ember's Concordance Database, +20844,Af11,EA202,150000,,in 1950; note focal year for cultural data is 1920,,,1950,EA Bibliography, +20845,Af12,EA202,65000,,in 1948; note focal year for cultural data is 1930,,with special reference to the Kwahu,1948,EA Bibliography, +20846,Af13,EA202,150000,,in 1952; note focal year for cultural data is 1920,,,1952,EA Bibliography, +20847,Af14,EA202,100000,,in 1948; note focal year for cultural data is 1930,,,1948,EA Bibliography, +20848,Af15,EA202,175000,,in 1950; note focal year for cultural data is 1920,,,1950,EA Bibliography, +20849,Af16,EA202,25000,,in 1956; note focal year for cultural data is 1910,,,1956,EA Bibliography, +20850,Af17,EA202,?,,,,,,, +20851,Af18,EA202,90000,,in 1921; note focal year for cultural data is 1900,,,1921,EA Bibliography, +20852,Af19,EA202,30000,,,,,1945,EA Bibliography, +20853,Af2,EA202,200000,,,,,1954,EA Bibliography, +20854,Af20,EA202,1000000,,Date for population estimate missing,,,,EA Bibliography, +20855,Af21,EA202,175000,,,,with special reference to the Kalabari,1921,EA Bibliography, +20856,Af22,EA202,33000,,in 1952; note focal year for cultural data is 1940,,,1952,EA Bibliography, +20857,Af23,EA202,35000,,Date for population estimate missing,,with special reference to the village of Mgbom,,Carol Ember's Concordance Database, +20858,Af24,EA202,200000,,in 1952; note focal year for cultural data is 1900,,,1952,EA Bibliography, +20859,Af25,EA202,435000,,in 1952; note focal year for cultural data is 1930,,,1952,EA Bibliography, +20860,Af26,EA202,193000,,"in 1952; including 88,000 Etsako; note focal year for cultural data is 1900",,with special reference to the Etsako,1952,EA Bibliography, +20861,Af27,EA202,7600,,,,,1955,EA Bibliography, +20862,Af28,EA202,200000,,in 1960; note focal year for cultural data is 1910,,,1960,EA Bibliography, +20863,Af29,EA202,200000,,,,,1952,EA Bibliography, +20864,Af3,EA202,?,,,,,,, +20865,Af30,EA202,200000,,in 1944; note focal year for cultural data is 1920,,,1944,EA Bibliography, +20866,Af31,EA202,30000,,,,with special reference to the Lafia,1960,EA Bibliography, +20867,Af32,EA202,500000,,Date for population estimate missing,,Abeouta Province and Benin,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20868,Af33,EA202,220000,,Date for population estimate missing,,"Ekiti Division, Ondo Prov.",,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20869,Af34,EA202,170000,,Date for population estimate missing,,"Ife Ilesha Division, Oyo Prov.",,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20870,Af35,EA202,100000,,,,with special reference to the Krobo,1940,EA Bibliography, +20871,Af36,EA202,700000,,in 1948; note focal year for cultural data is 1900,,with special reference to the Glidyi,1948,EA Bibliography, +20872,Af37,EA202,1500,,in 1950; Akpafu; note focal year for cultural data is 1900,,with special reference to the Akpafu,1950,EA Bibliography, +20873,Af38,EA202,75000,,in 1950; note focal year for cultural data is 1900,,,1950,EA Bibliography, +20874,Af39,EA202,100000,,in 1956; note focal year for cultural data is 1900,,with special reference to the Ndenie,1956,EA Bibliography, +20875,Af4,EA202,20000,,Date for population estimate missing,,,,EA Bibliography, +20876,Af40,EA202,2000,,in 1950; Abure in; note focal year for cultural data is 1890,,"with special reference to the Abure (Akapless, Asoko, Esuma)",1950,EA Bibliography, +20877,Af41,EA202,60000,,in 1955; note focal year for cultural data is 1890,,,1955,EA Bibliography, +20878,Af42,EA202,200000,,in 1950; note focal year for cultural data is 1900,,,1950,EA Bibliography, +20879,Af43,EA202,?,,,,,,, +20880,Af44,EA202,5000,,in 1950; note focal year for cultural data is 1900,,,1950,EA Bibliography, +20881,Af45,EA202,5000,,in 1950; note focal year for cultural data is 1900,,,1950,EA Bibliography, +20882,Af46,EA202,16000,,in 1920; note focal year for cultural data is 1900,,,1920,EA Bibliography, +20883,Af47,EA202,15000,,,,,1940,EA Bibliography, +20884,Af48,EA202,?,,,,,,, +20885,Af49,EA202,?,,,,,,, +20886,Af5,EA202,?,,,,,,, +20887,Af50,EA202,100000,,in 1950; note focal year for cultural data is 1920,,,1950,EA Bibliography, +20888,Af51,EA202,13000,,in 1950; note focal year for cultural data is 1920,,,1950,EA Bibliography, +20889,Af52,EA202,110000,,in 1950; note focal year for cultural data is 1920,,,1950,EA Bibliography, +20890,Af53,EA202,10600,,,,,1950,EA Bibliography, +20891,Af54,EA202,25000,,,,,1930,EA Bibliography, +20892,Af55,EA202,8500,,,,,1948,EA Bibliography, +20893,Af56,EA202,72000,,in 1950; note focal year for cultural data is 1930,,with special reference to the Gio of the Ivory Coast,1950,EA Bibliography, +20894,Af57,EA202,525000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20895,Af58,EA202,40000,,in 1948; note focal year for cultural data is 1900,,,1948,EA Bibliography, +20896,Af6,EA202,5500000,,"Date for population estimate missing; 220,000 in 1931",,"Yoruba, with special reference to the Oyo",,EA Bibliography, +20897,Af7,EA202,150000,,"Two different population sizes (150,000 in 1956 and 180,000 in 1956)",,,1956,EA Bibliography, +20898,Af8,EA202,360000,,in 1955; note focal year for cultural data is 1930,,,1955,EA Bibliography, +20899,Af9,EA202,383000,,in 1950; note focal year for cultural data is 1900,,,1950,EA Bibliography, +20900,Ag1,EA202,500000,,in 1902; See HRAF reference 2:1; note focal year for cultural data is 1920,,Segou to Bamako on Niger River,1902,Carol Ember's Concordance Database, +20901,Ag10,EA202,60000,,,,,1948,EA Bibliography, +20902,Ag11,EA202,100000,,Date for population estimate missing,,,,EA Bibliography, +20903,Ag12,EA202,70000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20904,Ag13,EA202,40000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20905,Ag14,EA202,43000,,,,,1950,EA Bibliography, +20906,Ag15,EA202,167000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +20907,Ag16,EA202,7500,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +20908,Ag17,EA202,10000,,,,,1950,EA Bibliography, +20909,Ag18,EA202,20000,,in 1945; note focal year for cultural data is 1930,,,1945,EA Bibliography, +20910,Ag19,EA202,155000,,"in 1950; including 50,000 Felup; note focal year for cultural data is 1930",,with special reference to the Felup,1950,EA Bibliography, +20911,Ag2,EA202,1700000,,"400,000 in Yatenga",,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA Bibliography, +20912,Ag20,EA202,36000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +20913,Ag21,EA202,7600,,in 1945; note focal year for cultural data is 1910,,,1945,EA Bibliography, +20914,Ag22,EA202,300000,,in 1950; note focal year for cultural data is 1920,,with special reference to those of Sine,1950,EA Bibliography, +20915,Ag23,EA202,75000,,in 1950; note focal year for cultural data is 1910,,,1950,EA Bibliography, +20916,Ag24,EA202,125000,,in 1950; note focal year for cultural data is 1910,,,1950,EA Bibliography, +20917,Ag25,EA202,360000,,in 1950; note focal year for cultural data is 1900,,,1950,EA Bibliography, +20918,Ag26,EA202,300000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +20919,Ag27,EA202,160000,,in 1950; note focal year for cultural data is 1910,,,1950,EA Bibliography, +20920,Ag28,EA202,?,,,,,,, +20921,Ag29,EA202,95000,,in 1950; note focal year for cultural data is 1910,,,1950,EA Bibliography, +20922,Ag3,EA202,225000,,in 1957; note focal year for cultural data is 1930,,,1957,EA Bibliography, +20923,Ag30,EA202,240000,,in 1942; note focal year for cultural data is 1910,,,1942,EA Bibliography, +20924,Ag31,EA202,154000,,in 1942; note focal year for cultural data is 1910,,,1942,EA Bibliography, +20925,Ag32,EA202,540000,,in 1948; note focal year for cultural data is 1900,,,1948,EA Bibliography, +20926,Ag33,EA202,10500,,in 1950; note focal year for cultural data is 1920,,,1950,EA Bibliography, +20927,Ag34,EA202,8000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +20928,Ag35,EA202,25000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20929,Ag36,EA202,?,,,,,,, +20930,Ag37,EA202,?,,,,,,, +20931,Ag38,EA202,55000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20932,Ag39,EA202,120000,,in 1949; note focal year for cultural data is 1910,,,1949,EA Bibliography, +20933,Ag4,EA202,35000,,See EA-Summary,,Tallensi Tribe,1931,Carol Ember's Concordance Database, +20934,Ag40,EA202,45000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20935,Ag41,EA202,93000,,in 1940; note focal year for cultural data is 1920,,,1940,EA Bibliography, +20936,Ag42,EA202,34000,,in 1950; note focal year for cultural data is 1910,,,1950,EA Bibliography, +20937,Ag43,EA202,1000,,,,,1930,EA Bibliography, +20938,Ag44,EA202,175000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +20939,Ag45,EA202,150000,,"in 1912; 250,000 in 1965; note focal year for cultural data is 1930",,with special reference to those in the Diapaga region,1912,EA Bibliography, +20940,Ag46,EA202,50000,,in 1948; note focal year for cultural data is 1920,,,1948,EA Bibliography, +20941,Ag47,EA202,1300000,,in 1950; note focal year for cultural data is 1900,,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1950,EA Bibliography, +20942,Ag48,EA202,40000,,in 1950; note focal year for cultural data is 1890,,,1950,EA Bibliography, +20943,Ag49,EA202,157000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +20944,Ag5,EA202,85000,,Date for population estimate missing,,,,EA Bibliography, +20945,Ag50,EA202,48000,,in 1950; note focal year for cultural data is 1910,,,1950,EA Bibliography, +20946,Ag51,EA202,50000,,,,,1950,EA Bibliography, +20947,Ag52,EA202,87000,,,,,1958,EA Bibliography, +20948,Ag53,EA202,200000,,"Data source gives population data as ""more than 200,000""",,with special reference to those of Garango,1960,EA Bibliography, +20949,Ag54,EA202,115000,,"in 1950; 20,000 in Sierra Leone; note focal year for cultural data is 1910",,,1950,EA Bibliography, +20950,Ag6,EA202,720000,,in 1940; note focal year for cultural data is 1890,,,1940,EA Bibliography, +20951,Ag7,EA202,29000,,in 1942; note focal year for cultural data is 1930,,,1942,EA Bibliography, +20952,Ag8,EA202,18000,,"in 1945; 11,000 Coniagui; note focal year for cultural data is 1910",,with special reference to the Coniagui,1945,EA Bibliography, +20953,Ag9,EA202,830000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +20954,Ah1,EA202,18000,,in 1949; note focal year for cultural data is 1930,,Zaria Province,1949,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +20955,Ah10,EA202,8500,,in 1948; note focal year for cultural data is 1920,,,1948,EA Bibliography, +20956,Ah11,EA202,70000,,,,,1960,EA Bibliography, +20957,Ah12,EA202,12300,,,,,1921,EA Bibliography, +20958,Ah13,EA202,47000,,in 1949; note focal year for cultural data is 1930,,with special reference to the Liliwa,1949,EA Bibliography, +20959,Ah14,EA202,22000,,in 1949; note focal year for cultural data is 1920,,,1949,EA Bibliography, +20960,Ah15,EA202,20000,,in 1931; note focal year for cultural data is 1920,,,1931,EA Bibliography, +20961,Ah16,EA202,55000,,in 1930; note focal year for cultural data is 1900,,,1930,EA Bibliography, +20962,Ah17,EA202,60000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +20963,Ah18,EA202,23000,,,,,1934,EA Bibliography, +20964,Ah19,EA202,10000,,,,,1921,EA Bibliography, +20965,Ah2,EA202,25000,,in 1931; note focal year for cultural data is 1920,,,1931,EA Bibliography, +20966,Ah20,EA202,10500,,in 1950; note focal year for cultural data is 1920,,,1950,EA Bibliography, +20967,Ah21,EA202,25000,,in 1949; note focal year for cultural data is 1920,,,1949,EA Bibliography, +20968,Ah22,EA202,30000,,in 1930; note focal year for cultural data is 1900,,,1930,EA Bibliography, +20969,Ah23,EA202,5000,,,,,1930,EA Bibliography, +20970,Ah24,EA202,5000,,,,,1921,EA Bibliography, +20971,Ah25,EA202,4000,,in 1950; note focal year for cultural data is 1920,,,1950,EA Bibliography, +20972,Ah26,EA202,1700,,,,,1921,EA Bibliography, +20973,Ah27,EA202,1000,,in 1947; note focal year for cultural data is 1920,,,1947,EA Bibliography, +20974,Ah28,EA202,20000,,,,with special reference to the Lekon subtribe,1921,EA Bibliography, +20975,Ah29,EA202,5000,,Date for population estimate missing,,,,EA Bibliography, +20976,Ah3,EA202,530000,,Date for population estimate missing; See 1:13.,,Tar of Benue Province,,Carol Ember's Concordance Database, +20977,Ah30,EA202,12000,,,,,1921,EA Bibliography, +20978,Ah31,EA202,65000,,in 1932; note focal year for cultural data is 1910,,,1932,EA Bibliography, +20979,Ah32,EA202,10000,,,,,1921,EA Bibliography, +20980,Ah33,EA202,9000,,,,,1921,EA Bibliography, +20981,Ah34,EA202,30000,,"including 2,000 Malabu",,with special reference to the Malabu,1921,EA Bibliography, +20982,Ah35,EA202,81000,,,,,1922,EA Bibliography, +20983,Ah36,EA202,30000,,in 1958; note focal year for cultural data is 1920,,,1958,EA Bibliography, +20984,Ah37,EA202,4500,,,,,1921,EA Bibliography, +20985,Ah38,EA202,25000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +20986,Ah39,EA202,10000,,,,,1950,EA Bibliography, +20987,Ah4,EA202,18000,,in 1931; note focal year for cultural data is 1920,,,1931,EA Bibliography, +20988,Ah5,EA202,50000,,,,,1931,EA Bibliography, +20989,Ah6,EA202,4000,,in 1948; note focal year for cultural data is 1920,,,1948,EA Bibliography, +20990,Ah7,EA202,100000,,in 1958; note focal year for cultural data is 1940,,,1958,EA Bibliography, +20991,Ah8,EA202,30000,,Date for population estimate missing,,,,EA Bibliography, +20992,Ah9,EA202,5730,,in 1934; note focal year for cultural data is 1920,,,1934,EA Bibliography, +20993,Ai1,EA202,?,,,,,,, +20994,Ai10,EA202,?,,,,,,, +20995,Ai11,EA202,500000,,Date for population estimate missing,,,,EA Bibliography, +20996,Ai12,EA202,20000,,,,,1952,EA Bibliography, +20997,Ai13,EA202,?,,,,,,, +20998,Ai14,EA202,25000,,in 1960; note focal year for cultural data is 1920,,,1960,EA Bibliography, +20999,Ai15,EA202,90000,,in 1960; note focal year for cultural data is 1900,,,1960,EA Bibliography, +21000,Ai16,EA202,15000,,in 1926; note focal year for cultural data is 1910,,,1926,EA Bibliography, +21001,Ai17,EA202,44000,,in 1960; note focal year for cultural data is 1930,,,1960,EA Bibliography, +21002,Ai18,EA202,30000,,in 1950; note focal year for cultural data is 1880,,,1950,EA Bibliography, +21003,Ai19,EA202,?,,,,,,, +21004,Ai2,EA202,2000,,Date for population estimate missing,,,,EA Bibliography, +21005,Ai20,EA202,65000,,in 1950; note focal year for cultural data is 1910,,,1950,EA Bibliography, +21006,Ai21,EA202,26000,,in 1954; note focal year for cultural data is 1880,,,1954,EA Bibliography, +21007,Ai22,EA202,?,,,,,,, +21008,Ai23,EA202,180000,,in 1940; note focal year for cultural data is 1920,,,1940,EA Bibliography, +21009,Ai24,EA202,24000,,,,,1904,EA Bibliography, +21010,Ai25,EA202,80000,,Date for population estimate missing,,,,EA Bibliography, +21011,Ai26,EA202,115000,,in 1958; note focal year for cultural data is 1920,,,1958,EA Bibliography, +21012,Ai27,EA202,50000,,Date for population estimate missing,,,,EA Bibliography, +21013,Ai28,EA202,5500,,,,,1912,EA Bibliography, +21014,Ai29,EA202,150000,,Date for population estimate missing,,,,EA Bibliography, +21015,Ai3,EA202,2000000,,,,,1926,Carol Ember's Concordance Database, +21016,Ai30,EA202,19000,,in 1949; note focal year for cultural data is 1920,,,1949,EA Bibliography, +21017,Ai31,EA202,50000,,in 1947; note focal year for cultural data is 1920,,,1947,EA Bibliography, +21018,Ai32,EA202,240000,,in 1948; note focal year for cultural data is 1920,,,1948,EA Bibliography, +21019,Ai33,EA202,66000,,,,,1948,EA Bibliography, +21020,Ai34,EA202,20000,,in 1940; note focal year for cultural data is 1880,,,1940,EA Bibliography, +21021,Ai35,EA202,5000,,in 1929; note focal year for cultural data is 1870,,,1929,EA Bibliography, +21022,Ai36,EA202,?,,,,,,, +21023,Ai37,EA202,20000,,,,,1940,EA Bibliography, +21024,Ai38,EA202,14000,,in 1947; note focal year for cultural data is 1930,,,1947,EA Bibliography, +21025,Ai39,EA202,6000,,,,,1947,EA Bibliography, +21026,Ai4,EA202,12000,,,,,1927,EA Bibliography, +21027,Ai40,EA202,20000,,,,,1947,EA Bibliography, +21028,Ai41,EA202,8000,,in 1947; note focal year for cultural data is 1930,,,1947,EA Bibliography, +21029,Ai42,EA202,3500,,,,,1947,EA Bibliography, +21030,Ai43,EA202,37000,,in 1947; note focal year for cultural data is 1930,,,1947,EA Bibliography, +21031,Ai44,EA202,35000,,in 1957; note focal year for cultural data is 1920,,,1957,EA Bibliography, +21032,Ai45,EA202,?,,,,,,, +21033,Ai46,EA202,3000,,,,,1938,EA Bibliography, +21034,Ai47,EA202,?,,,,,,, +21035,Ai5,EA202,33000,,in 1949; note focal year for cultural data is 1920,,,1949,EA Bibliography, +21036,Ai6,EA202,100000,,See HRAF reference 2:37.,,Shilluk Kingdom,1909,Carol Ember's Concordance Database, +21037,Ai7,EA202,200000,,in 1930; note focal year for cultural data is 1910,,,1930,EA Bibliography, +21038,Ai8,EA202,8000,,Date for population estimate missing,,,,EA Bibliography, +21039,Ai9,EA202,?,,,,,,, +21040,Aj1,EA202,560000,,,,,1948,EA Bibliography, +21041,Aj10,EA202,200000,,"Date for population estimate missing; Data source gives population data as ""more than 200,000""",,,,EA Bibliography, +21042,Aj11,EA202,500000,,in 1952; note focal year for cultural data is 1900,,,1952,EA Bibliography, +21043,Aj12,EA202,60000,,in 1940; note focal year for cultural data is 1920,,,1940,EA Bibliography, +21044,Aj13,EA202,25000,,in 1952; note focal year for cultural data is 1930,,,1952,EA Bibliography, +21045,Aj14,EA202,45000,,in 1952; note focal year for cultural data is 1931,,,1952,EA Bibliography, +21046,Aj15,EA202,26000,,in 1952; note focal year for cultural data is 1900,,,1952,EA Bibliography, +21047,Aj16,EA202,22000,,in 1962; note focal year for cultural data is 1930,,with special reference to the Riverain Mondari,1962,EA Bibliography, +21048,Aj17,EA202,200000,,Date for population estimate missing,,,,EA Bibliography, +21049,Aj18,EA202,2600,,Date for population estimate missing,,,,EA Bibliography, +21050,Aj19,EA202,25000,,,,,1920,EA Bibliography, +21051,Aj2,EA202,12500,,See HRAF reference 1:xiv.,,Kisonko or Southern Masai of Tanzania,1894,Carol Ember's Concordance Database, +21052,Aj20,EA202,4000,,,,,1947,EA Bibliography, +21053,Aj21,EA202,18000,,in 1948; note focal year for cultural data is 1930,,,1948,EA Bibliography, +21054,Aj22,EA202,5200,,in 1948; note focal year for cultural data is 1930,,,1948,EA Bibliography, +21055,Aj23,EA202,42000,,,,,1948,EA Bibliography, +21056,Aj24,EA202,34000,,in 1948; note focal year for cultural data is 1930,,,1948,EA Bibliography, +21057,Aj25,EA202,40000,,in 1948; note focal year for cultural data is 1920,,,1948,EA Bibliography, +21058,Aj26,EA202,20000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +21059,Aj27,EA202,24000,,in 1948; note focal year for cultural data is 1920,,,1948,EA Bibliography, +21060,Aj28,EA202,20000,,,,,1948,EA Bibliography, +21061,Aj29,EA202,30000,,in 1965; note focal year for cultural data is 1950,,,1965,EA Bibliography, +21062,Aj3,EA202,430000,,,,,1931,EA Bibliography, +21063,Aj30,EA202,60000,,,,,1960,EA Bibliography, +21064,Aj31,EA202,7000,,Date for population estimate missing,,,,EA Bibliography, +21065,Aj4,EA202,275000,,in 1947; note focal year for cultural data is 1920,,,1947,EA Bibliography, +21066,Aj5,EA202,80000,,in 1951; note focal year for cultural data is 1920,,,1951,EA Bibliography, +21067,Aj6,EA202,800000,,,,,1947,EA Bibliography, +21068,Aj7,EA202,113000,,in 1948; note focal year for cultural data is 1910,,,1948,EA Bibliography, +21069,Aj8,EA202,35000,,in 1952; note focal year for cultural data is 1920,,,1952,EA Bibliography, +21070,Aj9,EA202,157000,,in 1948; note focal year for cultural data is 1920,,,1948,EA Bibliography, +21071,Ca1,EA202,?,,,,,,, +21072,Ca10,EA202,70000,,in 1950; note focal year for cultural data is 1880,,,1950,EA Bibliography, +21073,Ca11,EA202,?,,,,,,, +21074,Ca12,EA202,?,,,,,,, +21075,Ca13,EA202,?,,,,,,, +21076,Ca14,EA202,?,,,,,,, +21077,Ca15,EA202,?,,,,,,, +21078,Ca16,EA202,?,,,,,,, +21079,Ca17,EA202,1000,,,,,1951,EA Bibliography, +21080,Ca18,EA202,1500,,,,,1950,EA Bibliography, +21081,Ca19,EA202,5000,,"Data source gives population data as ""more than 5,000""",,,1959,EA Bibliography, +21082,Ca2,EA202,?,,,,,,, +21083,Ca20,EA202,2500,,,,,1890,EA Bibliography, +21084,Ca21,EA202,9000,,,,,1950,EA Bibliography, +21085,Ca22,EA202,3800,,,,,1950,EA Bibliography, +21086,Ca23,EA202,?,,,,,,, +21087,Ca24,EA202,2000,,,,,1951,EA Bibliography, +21088,Ca25,EA202,3500,,,,,1951,EA Bibliography, +21089,Ca26,EA202,7000,,Date for population estimate missing,,,,EA Bibliography, +21090,Ca27,EA202,?,,,,,,, +21091,Ca28,EA202,5000,,,,,1951,EA Bibliography, +21092,Ca29,EA202,?,,,,,,, +21093,Ca3,EA202,1000000,,Date for population estimate missing,,,,EA Bibliography, +21094,Ca30,EA202,?,,,,,,, +21095,Ca31,EA202,20000,,Date for population estimate missing,,,,EA Bibliography, +21096,Ca32,EA202,9500,,in 1937; note focal year for cultural data is 1860,,,1937,EA Bibliography, +21097,Ca33,EA202,17000,,in 1937; note focal year for cultural data is 1860,,,1937,EA Bibliography, +21098,Ca34,EA202,13000,,,,,1927,EA Bibliography, +21099,Ca35,EA202,40000,,,,,1935,EA Bibliography, +21100,Ca36,EA202,90000,,in 1950; note focal year for cultural data is 1860,,,1950,EA Bibliography, +21101,Ca37,EA202,?,,,,,,, +21102,Ca38,EA202,25000,,in 1940; Maria; note focal year for cultural data is 1860,,"with special reference to the Maria (Marea, Marya) subtribe in the north",1940,EA Bibliography, +21103,Ca39,EA202,300000,,,,,1936,EA Bibliography, +21104,Ca4,EA202,100000,,,,,1948,EA Bibliography, +21105,Ca40,EA202,?,,,,,,, +21106,Ca41,EA202,?,,,,,,, +21107,Ca42,EA202,15000,,,,,1951,EA Bibliography, +21108,Ca43,EA202,70000,,,,,1935,EA Bibliography, +21109,Ca5,EA202,15000,,,,,1933,EA Bibliography, +21110,Ca6,EA202,110000,,in 1950; note focal year for cultural data is 1880,,,1950,EA Bibliography, +21111,Ca7,EA202,22000,,,,Gondar district,1953,Carol Ember's Concordance Database, +21112,Ca8,EA202,350000,,in 1960; note focal year for cultural data is 1940,,,1960,EA Bibliography, +21113,Ca9,EA202,17500,,in 1948; note focal year for cultural data is 1890,,,1948,EA Bibliography, +21114,Cb1,EA202,?,,"Date for population estimate missing; Data source gives population data as ""a relatively small minority of the total Hausa population of over 5,000,000"" +",,,,EA Bibliography, +21115,Cb10,EA202,37000,,in 1931; note focal year for cultural data is 1920,,,1931,EA Bibliography, +21116,Cb11,EA202,?,,,,,,, +21117,Cb12,EA202,?,,,,,,, +21118,Cb13,EA202,?,,,,,,, +21119,Cb14,EA202,?,,,,,,, +21120,Cb15,EA202,?,,,,,,, +21121,Cb16,EA202,700000,,"Date for population estimate missing; Data source gives population number as ""several hundred thousand""",,,,EA Bibliography, +21122,Cb17,EA202,?,,,,,,, +21123,Cb18,EA202,30000,,,,,1937,EA Bibliography, +21124,Cb19,EA202,750000,,in 1952; note focal year for cultural data is 1870,,,1952,EA Bibliography, +21125,Cb2,EA202,660000,,See HRAF 1:12,,Upper and lower Salum in Gambia,1949,Carol Ember's Concordance Database, +21126,Cb20,EA202,250000,,in 1954; note focal year for cultural data is 1920,,,1954,EA Bibliography, +21127,Cb21,EA202,?,,,,,,, +21128,Cb22,EA202,70000,,in 1939; note focal year for cultural data is 1920,,,1939,EA Bibliography, +21129,Cb23,EA202,275000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +21130,Cb24,EA202,?,,,,,,, +21131,Cb25,EA202,50000,,,,,1940,EA Bibliography, +21132,Cb26,EA202,260000,,"This is the population of Hausa in Zaria. All together 5,000,000 Hausa in 1952 (HRAF Source #3 p. 7).",,Zazzagawa of Zaria,1948,Carol Ember's Concordance Database, +21133,Cb27,EA202,11000,,,,,1930,EA Bibliography, +21134,Cb28,EA202,8000,,,,,1922,EA Bibliography, +21135,Cb29,EA202,21000,,,,,1921,EA Bibliography, +21136,Cb3,EA202,400000,,in 1953; This figure is taken from EA-Summary; note focal year for cultural data is 1940,,Bamba division,1953,Carol Ember's Concordance Database, +21137,Cb4,EA202,?,,,,,,, +21138,Cb5,EA202,16000,,in 1937; note focal year for cultural data is 1910,,,1937,EA Bibliography, +21139,Cb6,EA202,38000,,in 1948; note focal year for cultural data is 1920,,,1948,EA Bibliography, +21140,Cb7,EA202,33000,,in 1933; note focal year for cultural data is 1920,,,1933,EA Bibliography, +21141,Cb8,EA202,450000,,Date for population estimate missing,,with special reference to the Bororo Fulani of Skoto,,EA Bibliography, +21142,Cb9,EA202,1000000,,Date for population estimate missing,,"Hausa, with special reference to the Kanawa",,EA Bibliography, +21143,Cc1,EA202,35000,,Date for population estimate missing,,,,EA Bibliography, +21144,Cc10,EA202,28000,,in 1944; note focal year for cultural data is 1900,,,1944,EA Bibliography, +21145,Cc11,EA202,2000,,in 1944; note focal year for cultural data is 1860,,,1944,EA Bibliography, +21146,Cc12,EA202,4200,,,,,1944,EA Bibliography, +21147,Cc13,EA202,11600,,in 1939; note focal year for cultural data is 1920,,,1939,EA Bibliography, +21148,Cc14,EA202,20000,,Date for population estimate missing,,,,EA Bibliography, +21149,Cc15,EA202,120000,,,,,1925,EA Bibliography, +21150,Cc16,EA202,20000,,,,,1936,EA Bibliography, +21151,Cc17,EA202,6000,,in 1915; note focal year for cultural data is 1930,,,1915,EA Bibliography, +21152,Cc18,EA202,?,,,,,,, +21153,Cc19,EA202,75000,,in 1938; note focal year for cultural data is 1950,,,1938,EA Bibliography, +21154,Cc2,EA202,10000,,The population figure is taken from EA-Summary,,Nomads of Tibesti,1950,Carol Ember's Concordance Database, +21155,Cc20,EA202,?,,,,,,, +21156,Cc3,EA202,3800,,in 1937; note focal year for cultural data is 1920,,inhabitants of the oasis of Siwa,1937,EA Bibliography, +21157,Cc4,EA202,32000,,in 1939; note focal year for cultural data is 1920,,,1939,EA Bibliography, +21158,Cc5,EA202,10000,,in 1941; note focal year for cultural data is 1910,,,1941,EA Bibliography, +21159,Cc6,EA202,?,,,,,,, +21160,Cc7,EA202,15000,,in 1912; note focal year for cultural data is 1950,,Timbuctoo,1912,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21161,Cc8,EA202,7000,,in 1909; note focal year for cultural data is 1890,,,1909,EA Bibliography, +21162,Cc9,EA202,?,,,,,,, +21163,Cd1,EA202,?,,,,,,, +21164,Cd10,EA202,17000,,,,,1905,EA Bibliography, +21165,Cd11,EA202,?,,Date for population estimate missing; extinct,,,,EA Bibliography, +21166,Cd12,EA202,?,,,,,,, +21167,Cd13,EA202,100000,,Date for population estimate missing,,,,EA Bibliography, +21168,Cd14,EA202,1000000,,Date for population estimate missing,,,,EA Bibliography, +21169,Cd15,EA202,500000,,Date for population estimate missing,,,,EA Bibliography, +21170,Cd16,EA202,1200000,,western Morocco,,with special reference to those in the hinterlandof Casablanca,1925,EA Bibliography, +21171,Cd17,EA202,?,,,,,,, +21172,Cd18,EA202,38000,,"Total-38,928 (HRAF 9:277)",,,1927,Carol Ember's Concordance Database, +21173,Cd19,EA202,1000000,,"Date for population estimate missing; Data source gives population data as ""more than 1,000,000""",,,,EA Bibliography, +21174,Cd2,EA202,23000000,,,,Town and environs of Silwa,1957,Carol Ember's Concordance Database, +21175,Cd20,EA202,150000,,,,,1940,EA Bibliography, +21176,Cd21,EA202,7000000,,"Date for population estimate missing; Data source gives population number as ""several millions""",,,,EA Bibliography, +21177,Cd3,EA202,400000,,,,Entirety: Moroccan,1921,Carol Ember's Concordance Database, +21178,Cd4,EA202,1000000,,in 1930; note focal year for cultural data is 1890,,,1930,EA Bibliography, +21179,Cd5,EA202,600000,,,,with special reference to those of the Grand Atlas Mountains,1921,EA Bibliography, +21180,Cd6,EA202,2000000,,"Date for population estimate missing; Data source gives population data as ""2,000,000 or more""",,with special reference to the New Empire,,EA Bibliography, +21181,Cd7,EA202,450000,,in 1925; note focal year for cultural data is 1910,,with special reference to the Zemmur tribe,1925,EA Bibliography, +21182,Cd8,EA202,126000,,in 1926; note focal year for cultural data is 1910,,,1926,EA Bibliography, +21183,Cd9,EA202,?,,,,,,, +21184,Ce1,EA202,?,,,,,,, +21185,Ce2,EA202,?,,,,,,, +21186,Ce3,EA202,?,,,,,,, +21187,Ce4,EA202,?,,,,,,, +21188,Ce5,EA202,?,,,,,,, +21189,Ce6,EA202,?,,,,,,, +21190,Ce7,EA202,?,,,,,,, +21191,Ce8,EA202,?,,,,,,, +21192,Cf1,EA202,?,,,,,,, +21193,Cf2,EA202,?,,,,,,, +21194,Cf3,EA202,188,,population evacuated in 1961 because of a volcanic eruption.,,,1938,EA Bibliography, +21195,Cf4,EA202,2700,,,,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA Bibliography, +21196,Cf5,EA202,?,,,,,,, +21197,Cg1,EA202,?,,,,,,, +21198,Cg2,EA202,50000,,in 1950; note focal year for cultural data is 1100,,,1950,EA Bibliography, +21199,Cg3,EA202,2963000,,See HRAF reference 1:98.,,County Clare,1926,Carol Ember's Concordance Database, +21200,Cg4,EA202,200,,The actual figure is 191 (EA-Summary).,,Konkama District,1951,Carol Ember's Concordance Database, +21201,Cg5,EA202,?,,,,,,, +21202,Ch1,EA202,2200,,"The actual number is 2,182 (3:41).",,with special reference to the village of Orasac,1953,Carol Ember's Concordance Database, +21203,Ch10,EA202,16000000,,in 1950; note focal year for cultural data is 1910,,,1950,EA Bibliography, +21204,Ch11,EA202,?,,,,,,, +21205,Ch2,EA202,60000,,,,,1890,EA Bibliography, +21206,Ch3,EA202,8800000,,,,with special reference to the Hana district of central Moravia,1950,EA Bibliography, +21207,Ch4,EA202,400000,,in 1941; note focal year for cultural data is 1900,,,1941,EA Bibliography, +21208,Ch5,EA202,1700,,"The actual figure is 1,669 (2:6).",,with special reference to the village of Dragelevtsy,1934,Carol Ember's Concordance Database, +21209,Ch6,EA202,?,,,,,,, +21210,Ch7,EA202,?,,,,,,, +21211,Ch8,EA202,9400000,,,,,1950,EA Bibliography, +21212,Ch9,EA202,217000,,in 1950; note focal year for cultural data is 1930,,,1950,Carol Ember's Concordance Database, +21213,Ci1,EA202,134000,,"in 1939; 70,000 in Baga Dorbed; note focal year for cultural data is 1920",,with special reference to the Baga Dorbed group,1939,EA Bibliography, +21214,Ci10,EA202,?,,,,,,, +21215,Ci11,EA202,30000000,,in 1951; This figure is taken from HRAF/PSF A:245; note focal year for cultural data is 1940,,,1951,Carol Ember's Concordance Database, +21216,Ci12,EA202,?,,,,,,, +21217,Ci2,EA202,3500,,,,,1927,EA Bibliography, +21218,Ci3,EA202,135000,,in 1959; note focal year for cultural data is 1900,,with special reference to the Kayakent group of eastern Dagestan,1959,EA Bibliography, +21219,Ci4,EA202,250000,,Date for population estimate missing,,,,EA Bibliography, +21220,Ci5,EA202,?,,,,,,, +21221,Ci6,EA202,350000,,in 1939; note focal year for cultural data is 1880,,,1939,EA Bibliography, +21222,Ci7,EA202,400000,,in 1939; note focal year for cultural data is 1900,,,1939,EA Bibliography, +21223,Ci8,EA202,1600000,,in 1926; note focal year for cultural data is 1850,,,1926,EA Bibliography, +21224,Ci9,EA202,23000,,in 1944; note focal year for cultural data is 1910,,,1944,EA Bibliography, +21225,Cj1,EA202,?,,,,,,, +21226,Cj10,EA202,400000,,"Date for population estimate missing; 11,000 ech-Chibayish",,with special reference to the village of ech-Chibayish,,EA Bibliography, +21227,Cj2,EA202,35000,,See EA-Summary,,Unspecified,1920,Carol Ember's Concordance Database, +21228,Cj3,EA202,?,,,,,,, +21229,Cj4,EA202,?,,,,,,, +21230,Cj5,EA202,?,,,,,,, +21231,Cj6,EA202,1440000,,,,with special reference to the sedentary population,1956,EA Bibliography, +21232,Cj7,EA202,1575000,,581 in Munsif,,with special reference to the village of Munsif,1956,EA Bibliography, +21233,Cj8,EA202,600,,in the Mount Carmel region,,with special reference to those of Mount Carmel in Israel,1930,EA Bibliography, +21234,Cj9,EA202,4000000,,"This figure is taken from HRAF 2:12, which lists no field date. Since the publication date is 1947, one may assume that the figure is taken from a point in time prior to this time.",,,1947,Carol Ember's Concordance Database, +21235,Ea1,EA202,9500000,,in 1961; note focal year for cultural data is 1950,,,1961,EA Bibliography, +21236,Ea10,EA202,60000,,,,with special reference to the more nomadic groups,1955,EA Bibliography, +21237,Ea11,EA202,4500000,,,,with special reference to the Ghilzai tribe,1950,EA Bibliography, +21238,Ea12,EA202,400000,,Date for population estimate missing,,,,EA Bibliography, +21239,Ea13,EA202,300,,The actual figure is 350 (EA).,,Mohla Village,1950,Carol Ember's Concordance Database, +21240,Ea2,EA202,450000,,Date for population estimate missing; This is the population figure for Swat.,,with special reference to the Yusufsai of Swat,,Carol Ember's Concordance Database, +21241,Ea3,EA202,500000,,"Date for population estimate missing; 65,000 Urazgani",,with special reference to the Urazgani,,EA Bibliography, +21242,Ea4,EA202,15000,,Date for population estimate missing,,,,EA Bibliography, +21243,Ea5,EA202,60000,,Date for population estimate missing,,,,EA Bibliography, +21244,Ea6,EA202,?,,,,,,, +21245,Ea7,EA202,3000,,"Date for population estimate missing; Data source gives population number as ""a few thousand""",,,,EA Bibliography, +21246,Ea8,EA202,?,,,,,,, +21247,Ea9,EA202,10000000,,Date for population estimate missing,,,,EA Bibliography, +21248,Eb1,EA202,?,,,,,,, +21249,Eb2,EA202,55000,,in 1909; note focal year for cultural data is 1920,,,1909,EA Bibliography, +21250,Eb3,EA202,?,,,,,,, +21251,Eb4,EA202,?,,,,,,, +21252,Eb5,EA202,800000,,in 1939; note focal year for cultural data is 1910,,with special reference to the sedentary Teke of the Merv oasis,1939,EA Bibliography, +21253,Eb6,EA202,300000,,,,with special reference to those southeast of Lake Baikal,1900,EA Bibliography, +21254,Eb7,EA202,2300,,in 1943; note focal year for cultural data is 1930,,,1943,EA Bibliography, +21255,Eb8,EA202,16750,,in 1924; note focal year for cultural data is 1800,,with special reference to the Kongrat tribe,1924,EA Bibliography, +21256,Ec1,EA202,?,,,,,,, +21257,Ec10,EA202,17000,,in 1897; note focal year for cultural data is 1880,,with special reference to those on the Ob River,1897,EA Bibliography, +21258,Ec11,EA202,6000,,Date for population estimate missing,,,,EA Bibliography, +21259,Ec2,EA202,245000,,in 1911; note focal year for cultural data is 1900,,with special reference to the Yakutsk district,1911,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21260,Ec3,EA202,9000,,,,Reindeer Division,1900,Carol Ember's Concordance Database, +21261,Ec4,EA202,?,,,,,,, +21262,Ec5,EA202,7500,,Date for population estimate missing,,with special reference to the Maritime Koryak,,EA Bibliography, +21263,Ec6,EA202,?,,,,,,, +21264,Ec7,EA202,15500,,"in 1923; The actual figure is 15,461 (2:5); note focal year for cultural data is 1900",,Saru Basin in Hokkaido,1923,Carol Ember's Concordance Database, +21265,Ec8,EA202,1300,,Date for population estimate missing,,,,EA Bibliography, +21266,Ec9,EA202,100,,,,,1930,EA Bibliography, +21267,Ed1,EA202,200,,The actual population of Sondup'o is 169 persons.,,Kanghwa Island,1947,Carol Ember's Concordance Database, +21268,Ed10,EA202,?,,,,,,, +21269,Ed13,EA202,21000,,,,with special reference to the town of Kabira,1940,EA Bibliography, +21270,Ed14,EA202,?,,,,,,, +21271,Ed15a,EA202,52000,,,,with special reference to the village of Karimata,1940,EA Bibliography, +21272,Ed15b,EA202,?,,,,,,, +21273,Ed16,EA202,?,,,,,,, +21274,Ed2,EA202,?,,,,,,, +21275,Ed3,EA202,?,,,,,,, +21276,Ed4,EA202,2500000,,"in 1954; 10,000 Magpie Miao; note focal year for cultural data is 1940",,with special reference to the Magpie (Yachio) Miao,1954,EA Bibliography, +21277,Ed5,EA202,80000000,,Date for population estimate missing,,Okayama,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21278,Ed6,EA202,600,,See HRAF reference 1:29.,,with special reference to those in the hinterland of Swatow,1919,Carol Ember's Concordance Database, +21279,Ed7,EA202,517000,,,,,1950,EA Bibliography, +21280,Ed8,EA202,400000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +21281,Ed9,EA202,220000,,in 1954; note focal year for cultural data is 1930,,,1954,EA Bibliography, +21282,Ee1,EA202,?,,,,,,, +21283,Ee2,EA202,?,,,,,,, +21284,Ee3,EA202,25800,,"The actual figure is 25,780.",,Lingthem and vicinity,1931,Carol Ember's Concordance Database, +21285,Ee4,EA202,4000000,,,,with special reference to Central Tibet,1915,EA Bibliography, +21286,Ee5,EA202,?,,,,,,, +21287,Ee6,EA202,?,,,,,,, +21288,Ee7,EA202,?,,,,,,, +21289,Ee8,EA202,3000,,inhabitants of Banyan Hill,,with special reference to the sedentary inhabitants of Banyan Hill,1960,EA Bibliography, +21290,Ef1,EA202,2500000,,See HRAF reference 4:2.,,Bankura and Berghum Districts,1931,Carol Ember's Concordance Database, +21291,Ef10,EA202,24200000,,,,Ganges River Valley,1880,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21292,Ef11,EA202,1400,,See HRAF reference 5:465a.,,Village and environs of Senapur,1941,Carol Ember's Concordance Database, +21293,Ef2,EA202,?,,,,,,, +21294,Ef3,EA202,?,,,,,,, +21295,Ef4,EA202,523000,,in 1931; note focal year for cultural data is 1920,,,1931,EA Bibliography, +21296,Ef5,EA202,1250000,,Date for population estimate missing,,,,EA Bibliography, +21297,Ef6,EA202,650000,,in 1951; note focal year for cultural data is 1940,,,1951,EA Bibliography, +21298,Ef7,EA202,5000000,,Date for population estimate missing,,with special reference to the village of Sirkanda in western Uttar Pradesh,,EA Bibliography, +21299,Ef8,EA202,1900000,,in 1961; Hindu Kashmiri; note focal year for cultural data is 1950,,with special reference to the Pandit or Sarasvati Brahmans,1961,EA Bibliography, +21300,Ef9,EA202,?,,,,,,, +21301,Eg1,EA202,3820,,,,with special reference to the forest group,1941,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21302,Eg10,EA202,2500,,See HRAF reference 1:19.,,with special reference to the village of Shamirpet,1951,Carol Ember's Concordance Database, +21303,Eg11,EA202,75000,,,,with special reference to the Gommu Koya,1960,EA Bibliography, +21304,Eg12,EA202,2500,,Bondo,,with special reference to the Bondo,1941,EA Bibliography, +21305,Eg13,EA202,219700,,"The actual figure is 219,654 (2:630).",,Bastar State,1941,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21306,Eg14,EA202,?,,,,,,, +21307,Eg2,EA202,3000000,,Date for population estimate missing; in Tanjore,,with special reference to the agricultural castes in Tanjore,,EA Bibliography, +21308,Eg3,EA202,11500,,in 1927; See HRAF reference 1:28; note focal year for cultural data is 1938,,Hill Maria,1927,Carol Ember's Concordance Database, +21309,Eg4,EA202,700,,The actual figure is 736 (1:469).,,Toda Tribe,1901,Carol Ember's Concordance Database, +21310,Eg5,EA202,40000,,,,,1936,EA Bibliography, +21311,Eg6,EA202,?,,,,,,, +21312,Eg7,EA202,2000000,,Date for population estimate missing,,with special reference to the Pauri or Hill Bhuiya,,EA Bibliography, +21313,Eg8,EA202,94000,,,,,1941,EA Bibliography, +21314,Eg9,EA202,?,,,,,,, +21315,Eh1,EA202,?,,,,,,, +21316,Eh10,EA202,?,,,,,,, +21317,Eh2,EA202,1000000,,in 1951; note focal year for cultural data is 1900,,,1951,EA Bibliography, +21318,Eh3,EA202,170000,,in 1951; See EA-Summary; note focal year for cultural data is 1930,,Menabe subtribe,1951,Carol Ember's Concordance Database, +21319,Eh4,EA202,200,,in 1882; See HRAF reference 1:42; note focal year for cultural data is 1900,,with special reference to the Rock Vedda,1882,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21320,Eh5,EA202,?,,,,,,, +21321,Eh6,EA202,2157000,,See HRAF reference 4:13.,,with special reference to the Kandyan Sinhalese,1954,Carol Ember's Concordance Database, +21322,Eh7,EA202,255000,,in 1951; note focal year for cultural data is 1900,,,1951,EA Bibliography, +21323,Eh8,EA202,275000,,in 1951; note focal year for cultural data is 1900,,,1951,EA Bibliography, +21324,Eh9,EA202,225000,,in 1951; note focal year for cultural data is 1930,,,1951,EA Bibliography, +21325,Ei1,EA202,?,,,,,,, +21326,Ei10,EA202,125000,,in 1951; note focal year for cultural data is 1870,,,1951,EA Bibliography, +21327,Ei11,EA202,500,,in 1931; note focal year for cultural data is 1910,,,1931,EA Bibliography, +21328,Ei12,EA202,50000,,in 1921; note focal year for cultural data is 1910,,,1921,EA Bibliography, +21329,Ei13,EA202,?,,,,,,, +21330,Ei14,EA202,30000,,,,with special reference to the Chongli,1921,EA Bibliography, +21331,Ei15,EA202,?,,,,,,, +21332,Ei16,EA202,?,,,,,,, +21333,Ei17,EA202,90000,,,,,1901,EA Bibliography, +21334,Ei18,EA202,100000,,Date for population estimate missing; in Burma and others in China,,with special reference to the Katur subtribe,,EA Bibliography, +21335,Ei19,EA202,350000,,,,,1943,EA Bibliography, +21336,Ei2,EA202,20000,,,,,1922,EA Bibliography, +21337,Ei20,EA202,?,,,,,,, +21338,Ei3,EA202,?,,,,,,, +21339,Ei4,EA202,?,,,,,,, +21340,Ei5,EA202,300000,,Date for population estimate missing,,with special reference to the Jinghpaw,,EA Bibliography, +21341,Ei6,EA202,300,,,,,1936,EA Bibliography, +21342,Ei7,EA202,2000000,,Date for population estimate missing,,,,EA Bibliography, +21343,Ei8,EA202,175000,,,,with special reference to those of the Jaintia Hills,1901,EA Bibliography, +21344,Ei9,EA202,66000,,in 1951; note focal year for cultural data is 1880,,,1951,EA Bibliography, +21345,Ej1,EA202,?,,,,,,, +21346,Ej10,EA202,?,,,,,,, +21347,Ej11,EA202,40000,,"Date for population estimate missing; in Vietnam, 60,000 others in Cambodia",,with special reference to the non-Muslim Cham of Vietnam,,EA Bibliography, +21348,Ej12,EA202,9000,,,,,1961,EA Bibliography, +21349,Ej13,EA202,250000,,,,,1946,EA Bibliography, +21350,Ej14,EA202,12000,,,,with special reference to the eastern Semai,1961,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21351,Ej15,EA202,?,,,,,,, +21352,Ej16,EA202,?,,,,,,, +21353,Ej2,EA202,100,,,,with special reference to the village of Sar Luk,1948,Carol Ember's Concordance Database, +21354,Ej3,EA202,2000,,,,Jehai Group or subtribe,1920,Carol Ember's Concordance Database, +21355,Ej4,EA202,22000000,,Date for population estimate missing; This is the total number of Vietnamese.,,Red River Delta in Tonkin,,Carol Ember's Concordance Database, +21356,Ej5,EA202,3500000,,,,,1950,Carol Ember's Concordance Database, +21357,Ej6,EA202,?,,,,,,, +21358,Ej7,EA202,40000,,"Date for population estimate missing; Two pop numbers given: ""40,000 in Burma, others in China and Laos"" and ""65,000 in Burma and Thailand, others in China""",,,,EA Bibliography, +21359,Ej8,EA202,1250000,,Date for population estimate missing,,with special reference to those of Trengganu,,EA Bibliography, +21360,Ej9,EA202,10000000,,,,,1940,Carol Ember's Concordance Database, +21361,Ia1,EA202,?,,,,,,, +21362,Ia10,EA202,18000,,,,,1931,EA Bibliography, +21363,Ia11,EA202,5300,,,,,1931,EA Bibliography, +21364,Ia12,EA202,2225000,,in 1964; note focal year for cultural data is 1950,,,1964,EA Bibliography, +21365,Ia13,EA202,?,,,,,,, +21366,Ia14,EA202,1560,,in 1960; note focal year for cultural data is 1930,,,1960,EA Bibliography, +21367,Ia15,EA202,?,,,,,,, +21368,Ia16,EA202,40000,,,,with special reference to the northern Kalinga,1919,EA Bibliography, +21369,Ia17,EA202,?,,,,,,, +21370,Ia18,EA202,?,,,,,,, +21371,Ia2,EA202,10000,,"Date for population estimate missing; 3,000 in Sagada",,,,EA Bibliography, +21372,Ia3,EA202,130000,,in 1908; note focal year for cultural data is 1920,,Kiangan Group,1908,Carol Ember's Concordance Database, +21373,Ia4,EA202,70000,,"55,550 Eastern Subanun",,with special reference to the Eastern Subanun,1950,EA Bibliography, +21374,Ia5,EA202,6000,,,,,1950,EA Bibliography, +21375,Ia6,EA202,35000,,in 1960; note focal year for cultural data is 1930,,Su-Paiwan Village,1960,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21376,Ia7,EA202,7000,,Date for population estimate missing,,,,EA Bibliography, +21377,Ia8,EA202,40000,,Date for population estimate missing,,,,EA Bibliography, +21378,Ia9,EA202,55000,,in 1960; note focal year for cultural data is 1930,,with special reference to the southern Ami,1960,EA Bibliography, +21379,Ib1,EA202,11500,,,,"Ulu Ai Group, Baleh",1949,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21380,Ib2,EA202,24000,,,,Town and environs of Pare; Modjokuto,1952,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21381,Ib3,EA202,1000000,,,,Tihingan Village,1959,EA Bibliography, +21382,Ib4,EA202,1000000,,in 1959; note focal year for cultural data is 1930,,with special reference to the Toba group,1959,Carol Ember's Concordance Database, +21383,Ib5,EA202,145000,,Date for population estimate missing,,with special reference to the village of Sensuron,,EA Bibliography, +21384,Ib6,EA202,2000000,,,,,1930,Carol Ember's Concordance Database, +21385,Ib7,EA202,10000,,Date for population estimate missing,,with special reference to those of North Pageh,,EA Bibliography, +21386,Ib8,EA202,7000,,"in 1925; Data source gives population data as ""7,000 Ridan in 1925""; note focal year for cultural data is 1900",,with special reference to the Ridan group,1925,EA Bibliography, +21387,Ib9,EA202,?,,,,,,, +21388,Ic1,EA202,4000000,,,,Borongloe,1950,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21389,Ic10,EA202,?,,,,,,, +21390,Ic11,EA202,?,,,,,,, +21391,Ic12,EA202,135000,,,,with special reference to the village of Rarak in Western Sumbawa,1941,EA Bibliography, +21392,Ic13,EA202,?,,,,,,, +21393,Ic2,EA202,10000,,,,Abui of Atimelang Village,1940,Carol Ember's Concordance Database, +21394,Ic3,EA202,82000,,exclusive of those in Portuguese territory,,with special reference to the Mountain Belu,1952,EA Bibliography, +21395,Ic4,EA202,53000,,in 1885; note focal year for cultural data is 1920,,,1885,EA Bibliography, +21396,Ic5,EA202,25000,,Date for population estimate missing,,Bare'e subgroup,,EA Bibliography, +21397,Ic6,EA202,25000,,Date for population estimate missing,,,,Carol Ember's Concordance Database, +21398,Ic7,EA202,?,,,,,,, +21399,Ic8,EA202,30000,,in 1930; note focal year for cultural data is 1890,,,1930,EA Bibliography, +21400,Ic9,EA202,100000,,,,with special reference to eastern Sumba,1940,EA Bibliography, +21401,Id1,EA202,2000,,The population in +1927 was roughly 300 to 400 (1:1).,,Alice Springs and environs,1900,Carol Ember's Concordance Database, +21402,Id10,EA202,1400,,in 1954; note focal year for cultural data is 1930,,,1954,EA Bibliography, +21403,Id11,EA202,294,,,,,1960,EA Bibliography, +21404,Id12,EA202,?,,,,,,, +21405,Id13,EA202,300,,in 1941; note focal year for cultural data is 1930,,,1941,EA Bibliography, +21406,Id2,EA202,2000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +21407,Id3,EA202,1000,,,,Tiwi Tribe: Melville Island,1928,Carol Ember's Concordance Database, +21408,Id4,EA202,?,,,,,,, +21409,Id5,EA202,650,,in 1865; note focal year for cultural data is 1910,,,1865,EA Bibliography, +21410,Id6,EA202,150,,"1,500 aboriginally",,with special reference to the Archer River group,1929,EA Bibliography, +21411,Id7,EA202,176,,,,,1950,EA Bibliography, +21412,Id8,EA202,2000,,See EA-Summary,,,1830,Carol Ember's Concordance Database, +21413,Id9,EA202,?,,,,,,, +21414,Ie1,EA202,200,,The total population of Botukebo was 181 in +1954.,,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1954,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21415,Ie10,EA202,7000,,,,with special reference to the Western Motu,1954,EA Bibliography, +21416,Ie11,EA202,?,,,,,,, +21417,Ie12,EA202,300,,See HRAF reference 1:5,,Hongwam subtribe; Rumbima,1936,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21418,Ie13,EA202,?,,,,,,, +21419,Ie14,EA202,?,,,,,,, +21420,Ie15,EA202,?,,,,,,, +21421,Ie16,EA202,400,,,,,1940,EA Bibliography, +21422,Ie17,EA202,15000,,in 1953; note focal year for cultural data is 1940,,,1953,EA Bibliography, +21423,Ie18,EA202,?,,,,,,, +21424,Ie19,EA202,13000,,,,with special reference to the coastal inhabitants,1910,EA Bibliography, +21425,Ie2,EA202,5157,,in 1954; note focal year for cultural data is 1920,,,1954,EA Bibliography, +21426,Ie20,EA202,2000,,,,,1909,EA Bibliography, +21427,Ie21,EA202,?,,,,,,, +21428,Ie22,EA202,3100,,,,,1897,EA Bibliography, +21429,Ie23,EA202,?,,,,,,, +21430,Ie24,EA202,?,,,,,,, +21431,Ie25,EA202,9000,,Date for population estimate missing,,,,EA Bibliography, +21432,Ie26,EA202,600,,,,,1945,EA Bibliography, +21433,Ie27,EA202,?,,,,,,, +21434,Ie28,EA202,1300,,,,,1946,EA Bibliography, +21435,Ie29,EA202,3500,,,,principally Tsogari,1933,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21436,Ie3,EA202,?,,,,,,, +21437,Ie30,EA202,8500,,Date for population estimate missing,,,,EA Bibliography, +21438,Ie31,EA202,10000,,,,,1955,EA Bibliography, +21439,Ie32,EA202,1500,,,,,1964,EA Bibliography, +21440,Ie33,EA202,?,,,,,,, +21441,Ie34,EA202,480,,in 1864; note focal year for cultural data is 1960,,,1864,EA Bibliography, +21442,Ie35,EA202,?,,,,,,, +21443,Ie36,EA202,68,,,,,1955,EA Bibliography, +21444,Ie37,EA202,10000,,,,,1960,EA Bibliography, +21445,Ie38,EA202,50000,,,,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA Bibliography, +21446,Ie39,EA202,?,,,,,,, +21447,Ie4,EA202,1000,,Date for population estimate missing,,"Dap, Wonevaro district",,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21448,Ie5,EA202,700,,,,,1926,EA Bibliography, +21449,Ie6,EA202,6000,,,,,1937,EA Bibliography, +21450,Ie7,EA202,90000,,"Date for population estimate missing; 26,000 Mae",,with special reference to the Mae group,,EA Bibliography, +21451,Ie8,EA202,8000,,Date for population estimate missing,,with special reference to the Koriki,,EA Bibliography, +21452,Ie9,EA202,9000,,See HRAF reference 1:7,,,1923,Carol Ember's Concordance Database, +21453,If1,EA202,6000,,in 1960; note focal year for cultural data is 1940,,"Ulimang, Badeldaob Island",1960,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21454,If10,EA202,900,,,,,1935,EA Bibliography, +21455,If11,EA202,500,,in 1905; note focal year for cultural data is 1860,,,1905,EA Bibliography, +21456,If12,EA202,170,,,,,1935,EA Bibliography, +21457,If13,EA202,3300,,Date for population estimate missing,,,,EA Bibliography, +21458,If14,EA202,2000,,,,Makin and Butiritari Islands (N),1890,Carol Ember's Concordance Database, +21459,If15,EA202,1100,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +21460,If16,EA202,200,,See HRAF reference EA.,,,1962,Carol Ember's Concordance Database, +21461,If17,EA202,10000,,in 1947; 900 on Majuro; note focal year for cultural data is 1900,,with special reference to the island of Jaluit,1947,EA Bibliography, +21462,If2,EA202,10000,,This total reflects the population on the island of Romonum.,,Romonum Island,1947,Carol Ember's Concordance Database, +21463,If3,EA202,900,,See EA-Summary,,With special reference to the inhabitants of Majuro,1947,Carol Ember's Concordance Database, +21464,If4,EA202,250,,,,with special reference to the inhabitants of Ifaluk atoll,1948,EA Bibliography, +21465,If5,EA202,8000,,in 1935; note focal year for cultural data is 1910,,,1935,EA Bibliography, +21466,If6,EA202,7000,,The actual estimate of the population was between 7000 and 8000 (2:129).,,Island,1900,Carol Ember's Concordance Database, +21467,If7,EA202,450,,Date for population estimate missing; on Onotoa,,with special reference to the inhabitants of Onotoa,,EA Bibliography, +21468,If8,EA202,3850,,on Saipan,,with special reference to those of Saipa,1950,EA Bibliography, +21469,If9,EA202,421,,in 1949; note focal year for cultural data is 1900,,,1949,EA Bibliography, +21470,Ig1,EA202,?,,,,,,, +21471,Ig10,EA202,?,,,,,,, +21472,Ig11,EA202,1500,,,,,1925,EA Bibliography, +21473,Ig12,EA202,5700,,"in 1956; 1,000 Varisi; note focal year for cultural data is 1900",,with special reference to the Varisi,1956,EA Bibliography, +21474,Ig13,EA202,?,,,,,,, +21475,Ig14,EA202,200,,in 1951; note focal year for cultural data is 1900,,,1951,EA Bibliography, +21476,Ig15,EA202,?,,,,,,, +21477,Ig16,EA202,?,,,,,,, +21478,Ig17,EA202,?,,,,,,, +21479,Ig18,EA202,6000,,,,,1965,EA Bibliography, +21480,Ig19,EA202,1400,,,,,1950,EA Bibliography, +21481,Ig2,EA202,9000,,See HRAF reference 16:139,,Kiriwina Island,1920,Carol Ember's Concordance Database, +21482,Ig20,EA202,?,,,,,,, +21483,Ig21,EA202,1200,,,,with special reference to Boieng Island,1932,EA Bibliography, +21484,Ig3,EA202,?,,,,,,, +21485,Ig4,EA202,200,,The actual figure is 232 (1:15).,,Lesu Village,1929,Carol Ember's Concordance Database, +21486,Ig5,EA202,?,,,,,,, +21487,Ig6,EA202,1200,,,,,1909,EA Bibliography, +21488,Ig7,EA202,?,,,,,,, +21489,Ig8,EA202,800,,in 1960; note focal year for cultural data is 1910,,,1960,EA Bibliography, +21490,Ig9,EA202,2000,,See HRAF reference 2:21.,,Peri Village,1928,Carol Ember's Concordance Database, +21491,Ih1,EA202,?,,,,,,, +21492,Ih10,EA202,?,,,,,,, +21493,Ih11,EA202,?,,,,,,, +21494,Ih12,EA202,?,,,,,,, +21495,Ih13,EA202,?,,,,,,, +21496,Ih14,EA202,?,,,,,,, +21497,Ih2,EA202,?,,,,,,, +21498,Ih3,EA202,?,,,,,,, +21499,Ih4,EA202,?,,,,,,, +21500,Ih5,EA202,?,,,,,,, +21501,Ih6,EA202,3000,,in 1960; note focal year for cultural data is 1890,,,1960,EA Bibliography, +21502,Ih7,EA202,?,,,,,,, +21503,Ih8,EA202,?,,,,,,, +21504,Ih9,EA202,2500,,in 1958; See EA-Summary for the figure above. Note also that in 1912 the population was between 1000 and 1500 (2:155); note focal year for cultural data is 1930,,Graciosa Bay,1958,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21505,Ii1,EA202,45000,,"8,000 in American Samoa",,with special reference to American Samoa,1926,EA Bibliography, +21506,Ii10,EA202,1000,,,,,1950,EA Bibliography, +21507,Ii12,EA202,24000,,,,Pangai,1921,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21508,Ii13,EA202,4400,,in 1919; note focal year for cultural data is 1830,,,1919,EA Bibliography, +21509,Ii14,EA202,?,,,,,,, +21510,Ii2,EA202,1300,,See EA-Summary,,Ravenga District,1929,Carol Ember's Concordance Database, +21511,Ii3,EA202,500,,Date for population estimate missing,,,,EA Bibliography, +21512,Ii4,EA202,?,,,,,,, +21513,Ii5,EA202,700,,,,"Leuenuwa, Lord Howe's Islanders",1928,EA Bibliography, +21514,Ii6,EA202,400,,Date for population estimate missing,,with special reference to Atafu,,EA Bibliography, +21515,Ii7,EA202,482,,in 1950; note focal year for cultural data is 1910,,,1950,EA Bibliography, +21516,Ii8,EA202,1500,,in 1923; note focal year for cultural data is 1840,,,1923,EA Bibliography, +21517,Ii9,EA202,3720,,in 1921; note focal year for cultural data is 1840,,,1921,EA Bibliography, +21518,Ij1,EA202,1250,,in 1926; note focal year for cultural data is 1820,,,1926,EA Bibliography, +21519,Ij10,EA202,400,,"in 1926; Data source gives population number as ""under 400""; note focal year for cultural data is 1900",,,1926,EA Bibliography, +21520,Ij2,EA202,42100,,"in 1896; The actual figure is 42,113 (3:414); note focal year for cultural data is 1820",,Nga Puhi Tribe,1896,Carol Ember's Concordance Database, +21521,Ij3,EA202,1800,,in 1921; note focal year for cultural data is 1900,,,1921,Carol Ember's Concordance Database, +21522,Ij4,EA202,400,,in 1926; note focal year for cultural data is 1850,,,1926,EA Bibliography, +21523,Ij5,EA202,109,,in 1950; note focal year for cultural data is 1900,,,1950,EA Bibliography, +21524,Ij6,EA202,?,,,,,,, +21525,Ij7,EA202,3000,,"Date for population estimate missing; Data source gives population number as ""never more than a few thousand""",,,,EA Bibliography, +21526,Ij8,EA202,?,,,,,,, +21527,Ij9,EA202,450,,in 1936; note focal year for cultural data is 1860,,,1936,EA Bibliography, +21528,Na1,EA202,152,,,,,1930,EA Bibliography, +21529,Na10,EA202,200,,,,,1933,EA Bibliography, +21530,Na11,EA202,293,,in 1955; note focal year for cultural data is 1920,,,1955,EA Bibliography, +21531,Na12,EA202,200,,,,,1953,EA Bibliography, +21532,Na13,EA202,?,,,,,,, +21533,Na14,EA202,271,,in 1926; note focal year for cultural data is 1880,,,1926,EA Bibliography, +21534,Na15,EA202,900,,in 1959; note focal year for cultural data is 1860,,,1959,EA Bibliography, +21535,Na16,EA202,?,,,,,,, +21536,Na17,EA202,?,,,,,,, +21537,Na19,EA202,300,,"in 1925; Data source gives population number as ""more than 300""; note focal year for cultural data is 1880",,with special reference to the Hwitsowitenne,1925,EA Bibliography, +21538,Na2,EA202,1000,,,,,1880,EA Bibliography, +21539,Na20,EA202,1274,,in 1858; 337 Tatlit; note focal year for cultural data is 1880,,with special reference to the Tatlit of Peel River Kutchin,1858,EA Bibliography, +21540,Na21,EA202,500,,in 1923; note focal year for cultural data is 1900,,,1923,EA Bibliography, +21541,Na22,EA202,500,,,,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA Bibliography, +21542,Na23,EA202,1100,,,,with special reference to the Koksoagmiu,1890,EA Bibliography, +21543,Na24,EA202,400,,,,,1884,EA Bibliography, +21544,Na25,EA202,1600,,Egesminde District,,with special reference to the inhabitants of the Egesminde District,1918,EA Bibliography, +21545,Na26,EA202,650,,in 1932; note focal year for cultural data is 1870,,with special reference to the Iliamna,1932,EA Bibliography, +21546,Na27,EA202,50,,in 1885; note focal year for cultural data is 1870,,,1885,EA Bibliography, +21547,Na28,EA202,160,,in 1923; note focal year for cultural data is 1880,,,1923,EA Bibliography, +21548,Na29,EA202,380,,in 1914; note focal year for cultural data is 1850,,,1914,EA Bibliography, +21549,Na3,EA202,800,,,,Coronation Gulf,1915,Carol Ember's Concordance Database, +21550,Na30,EA202,?,,,,,,, +21551,Na31,EA202,?,,,,,,, +21552,Na32,EA202,700,,in 1929; Source is EA-Summary; note focal year for cultural data is 1880,,Lake St. John & Mistassini Band,1929,Carol Ember's Concordance Database, +21553,Na33,EA202,900,,"in 1930; Berens River band only, source is SCCS-186; note focal year for cultural data is 1870",,Berens River band,1930,Carol Ember's Concordance Database, +21554,Na34,EA202,342,,,,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1949,EA Bibliography, +21555,Na35,EA202,820,,in 1880; note focal year for cultural data is 1800,,,1880,EA Bibliography, +21556,Na36,EA202,35000,,"in 1750; Population estimate is very rough, source is HRAF 14: Kinietz, p. 14; note focal year for cultural data is 1860",,with special reference to the Red Lake and White Earth bands,1750,Carol Ember's Concordance Database, +21557,Na37,EA202,244,,in 1917; note focal year for cultural data is 1880,,,1917,EA Bibliography, +21558,Na38,EA202,76,,in 1940; note focal year for cultural data is 1800,,with special reference to the Lac Vieux Desert band,1940,EA Bibliography, +21559,Na39,EA202,150,,in 1929; note focal year for cultural data is 1870,,with special reference to the Kitchibuan of Parry Island,1929,EA Bibliography, +21560,Na4,EA202,300,,Date for population estimate missing; Source is HRAF:1 p. 37.,,Upper Liard and Dease River Group,,Carol Ember's Concordance Database, +21561,Na40,EA202,1500,,in 1670; note focal year for cultural data is 1650,,,1670,EA Bibliography, +21562,Na41,EA202,300,,in 1630; Source is Handbook of North American Indians vol. 15 p. 117; note focal year for cultural data is 1700,,Mainland division,1630,Carol Ember's Concordance Database, +21563,Na42,EA202,2000,,,,Prairie Potawatomi,1760,EA Bibliography, +21564,Na43,EA202,260,,,,,1923,EA Bibliography, +21565,Na44,EA202,400,,,,,1916,EA Bibliography, +21566,Na45,EA202,187,,in 1914; note focal year for cultural data is 1900,,,1914,EA Bibliography, +21567,Na5,EA202,?,,,,,,, +21568,Na6,EA202,?,,,,,,, +21569,Na7,EA202,?,,,,,,, +21570,Na8,EA202,?,,,,,,, +21571,Na9,EA202,2200,,Source is SCCS-186.,,Unalaska Branch (Eastern Aleut),1840,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21572,Nb1,EA202,?,,,,,,, +21573,Nb10,EA202,100,,in 1936; note focal year for cultural data is 1865,,,1936,Carol Ember's Concordance Database, +21574,Nb11,EA202,6000,,Aboriginally; Note focal year for cultural data is 1880,,with special reference to the Central Nootka,,EA Bibliography, +21575,Nb12,EA202,?,,,,,,, +21576,Nb13,EA202,?,,,,,,, +21577,Nb14,EA202,?,,,,,,, +21578,Nb15,EA202,?,,,,,,, +21579,Nb16,EA202,485,,in 1881; note focal year for cultural data is 1860,,,1881,EA Bibliography, +21580,Nb17,EA202,?,,,,,,, +21581,Nb18,EA202,285,,in 1945; note focal year for cultural data is 1880,,,1945,EA Bibliography, +21582,Nb19,EA202,100,,,,,1853,EA Bibliography, +21583,Nb2,EA202,?,,,,,,, +21584,Nb20,EA202,?,,,,,,, +21585,Nb21,EA202,?,,,,,,, +21586,Nb22,EA202,6750,,,,with special reference to the Chilkat,1880,EA Bibliography, +21587,Nb23,EA202,330,,in 1901; note focal year for cultural data is 1880,,,1901,EA Bibliography, +21588,Nb24,EA202,654,,,,,1861,EA Bibliography, +21589,Nb25,EA202,200,,in 1925; note focal year for cultural data is 1860,,,1925,EA Bibliography, +21590,Nb26,EA202,?,,,,,,, +21591,Nb27,EA202,1700,,in 1951; note focal year for cultural data is 1880,,with special reference to the Tait,1951,EA Bibliography, +21592,Nb28,EA202,?,,,,,,, +21593,Nb29,EA202,?,,,,,,, +21594,Nb3,EA202,1000,,in 1920; note focal year for cultural data is 1890,,,1920,EA Bibliography, +21595,Nb30,EA202,27,,in 1884; note focal year for cultural data is 1860,,,1884,EA Bibliography, +21596,Nb31,EA202,?,,,,,,, +21597,Nb32,EA202,2000,,,,with special reference to the Shastika or eastern Shasta,1850,EA Bibliography, +21598,Nb33,EA202,250,,in 1849; note focal year for cultural data is 1860,,,1849,EA Bibliography, +21599,Nb34,EA202,600,,in 1905; note focal year for cultural data is 1860,,,1905,EA Bibliography, +21600,Nb35,EA202,640,,,,,1870,EA Bibliography, +21601,Nb36,EA202,800,,,,,1853,EA Bibliography, +21602,Nb37,EA202,?,,,,,,, +21603,Nb38,EA202,?,,,,,,, +21604,Nb39,EA202,?,,,,,,, +21605,Nb4,EA202,700,,"in 1910; HRAF 9:Kroeber, p. 19; note focal year for cultural data is 1850",,,1910,Carol Ember's Concordance Database, +21606,Nb5,EA202,?,,,,,,, +21607,Nb6,EA202,?,,,,,,, +21608,Nb7,EA202,?,,,,,,, +21609,Nb8,EA202,400,,in 1930; note focal year for cultural data is 1880,,,1930,EA Bibliography, +21610,Nb9,EA202,400,,Date for population estimate missing; Source is HRAF:1 p. v.,,"Central group, lower B.C. River",,Carol Ember's Concordance Database, +21611,Nc1,EA202,300,,in 1954; note focal year for cultural data is 1850,,,1954,EA Bibliography, +21612,Nc10,EA202,100,,in 1936; note focal year for cultural data is 1860,,,1936,EA Bibliography, +21613,Nc11,EA202,35,,in 1884; note focal year for cultural data is 1860,,,1884,EA Bibliography, +21614,Nc12,EA202,250,,in 1905; Northern Maidu; note focal year for cultural data is 1850,,with special reference to the Northeastern Mountain Maidu,1905,EA Bibliography, +21615,Nc13,EA202,?,,,,,,, +21616,Nc14,EA202,?,,,,,,, +21617,Nc15,EA202,500,,in 1950; 15 in 1910; note focal year for cultural data is 1860,,,1950,EA Bibliography, +21618,Nc16,EA202,500,,Aboriginally; 8 in 1910; Note focal year for cultural data is 1860,,,,EA Bibliography, +21619,Nc17,EA202,1000,,"Source is HRAF 1:Kroeber, p. 237 (Northern Pomo).",,with special reference to those of Kalekau,1850,Carol Ember's Concordance Database, +21620,Nc18,EA202,1000,,in 1840; Source is HRAF 1:Kroeber p. 237 (Clear Lake Pomo only); note focal year for cultural data is 1860,,"Clear Lake, Village of Cignon",1840,Carol Ember's Concordance Database, +21621,Nc19,EA202,1000,,"Source is HRAF 1:Kroeber, p. 237 (Southern Pomo).",,with special reference to those near Santa Rosa,1850,Carol Ember's Concordance Database, +21622,Nc2,EA202,300,,Aboriginally; 145 in 1932; Note focal year for cultural data is 1850,,,,EA Bibliography, +21623,Nc20,EA202,?,,,,,,, +21624,Nc21,EA202,500,,Aboriginally; 8 in 1910; Note focal year for cultural data is 1860,,,,EA Bibliography, +21625,Nc22,EA202,150,,in 1924; note focal year for cultural data is 1850,,with special reference to the Hill Patwin,1924,EA Bibliography, +21626,Nc23,EA202,500,,"in 1920; Data source gives population number as ""more than 500""; note focal year for cultural data is 1870",,,1920,EA Bibliography, +21627,Nc24,EA202,1100,,"Source is HRAF 12:Cook, p. 44B. Number refers to population of Tulare Lake region only.",,Tulare Lake,1850,Carol Ember's Concordance Database, +21628,Nc25,EA202,8600,,"Source is HRAF 12:Cook, p. 34B, for Yokuts as a whole.",,,1851,Carol Ember's Concordance Database, +21629,Nc26,EA202,2000,,40 in 1910,,,1771,EA Bibliography, +21630,Nc27,EA202,?,,,,,,, +21631,Nc28,EA202,1800,,Aboriginally; Note focal year for cultural data is 1800,,,,EA Bibliography, +21632,Nc29,EA202,5000,,,,,1770,EA Bibliography, +21633,Nc3,EA202,4000,,in 1806; 550 in 1910; note focal year for cultural data is 1850,,with special reference to those of the Northern Foothills,1806,EA Bibliography, +21634,Nc30,EA202,100,,"in 1910; Data source gives population number as ""slightly more than 100""; note focal year for cultural data is 1870",,,1910,EA Bibliography, +21635,Nc31,EA202,750,,in 1920; note focal year for cultural data is 1870,,with special reference to the Desert Cahuilla,1920,EA Bibliography, +21636,Nc32,EA202,200,,in 1910; note focal year for cultural data is 1870,,,1910,EA Bibliography, +21637,Nc33,EA202,1300,,,,,1870,EA Bibliography, +21638,Nc34,EA202,36,,in 1929; note focal year for cultural data is 1880,,,1929,EA Bibliography, +21639,Nc4,EA202,?,,,,,,, +21640,Nc5,EA202,?,,,,,,, +21641,Nc6,EA202,700,,Date for population estimate missing,,with special reference to the Southern Diegueno,,EA Bibliography, +21642,Nc7,EA202,2000,,Aboriginally; Note focal year for cultural data is 1850,,,,EA Bibliography, +21643,Nc8,EA202,1400,,"Reconstructions cover the Klamath from 1826 to ""the present."" Population is estimated as between 800 and 1,400 ""aboriginally."" Population count thus has no specific time focus.",,Klamath Tribe,1850,Carol Ember's Concordance Database, +21644,Nc9,EA202,300,,in 1910; note focal year for cultural data is 1860,,,1910,EA Bibliography, +21645,Nd1,EA202,1200,,,,,1850,EA Bibliography, +21646,Nd10,EA202,?,,,,,,, +21647,Nd11,EA202,?,,,,,,, +21648,Nd12,EA202,600,,in 1906; Source is HRAF 7:Teit p. 315; note focal year for cultural data is 1860,,,1906,Carol Ember's Concordance Database, +21649,Nd13,EA202,300,,in 1905; note focal year for cultural data is 1860,,,1905,EA Bibliography, +21650,Nd14,EA202,500,,in 1905; note focal year for cultural data is 1860,,,1905,EA Bibliography, +21651,Nd15,EA202,300,,in 1930; note focal year for cultural data is 1880,,,1930,EA Bibliography, +21652,Nd16,EA202,?,,,,,,, +21653,Nd17,EA202,?,,,,,,, +21654,Nd18,EA202,1000,,in 1800; note focal year for cultural data is 1860,,,1800,EA Bibliography, +21655,Nd19,EA202,?,,,,,,, +21656,Nd2,EA202,1000,,Date for population estimate missing,,,,EA Bibliography, +21657,Nd20,EA202,6000,,in 1800; note focal year for cultural data is 1850,,,1800,EA Bibliography, +21658,Nd21,EA202,200,,in 1890; note focal year for cultural data is 1870,,,1890,EA Bibliography, +21659,Nd22,EA202,?,,,,,,, +21660,Nd23,EA202,140,,,,,1870,EA Bibliography, +21661,Nd24,EA202,150,,,,,1873,EA Bibliography, +21662,Nd25,EA202,?,,,,,,, +21663,Nd26,EA202,200,,in 1850; note focal year for cultural data is 1870,,,1850,EA Bibliography, +21664,Nd27,EA202,700,,,,,1866,EA Bibliography, +21665,Nd28,EA202,800,,,,,1866,EA Bibliography, +21666,Nd29,EA202,125,,,,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA Bibliography, +21667,Nd3,EA202,200,,in 1919; Source is HRAF 1:Spier p. 98; note focal year for cultural data is 1870,,Havasupai Tribe,1919,Carol Ember's Concordance Database, +21668,Nd30,EA202,1000,,,,,1870,EA Bibliography, +21669,Nd31,EA202,?,,,,,,, +21670,Nd32,EA202,100,,in 1870; Only 65 people in 1870; note focal year for cultural data is 1850,,with special reference to those of Saline Valley,1870,Carol Ember's Concordance Database, +21671,Nd33,EA202,70,,,,including the Belted Range group,1875,EA Bibliography, +21672,Nd34,EA202,?,,,,,,, +21673,Nd35,EA202,530,,,,,1874,EA Bibliography, +21674,Nd36,EA202,400,,,,,1870,EA Bibliography, +21675,Nd37,EA202,250,,,,,1875,EA Bibliography, +21676,Nd38,EA202,?,,,,,,, +21677,Nd39,EA202,450,,in 1885; note focal year for cultural data is 1870,,including the Shoshoni of Snake and Antelope Valleys,1885,EA Bibliography, +21678,Nd4,EA202,660,,,,,1860,EA Bibliography, +21679,Nd40,EA202,200,,,,,1875,EA Bibliography, +21680,Nd41,EA202,1100,,,,,1875,EA Bibliography, +21681,Nd42,EA202,600,,,,"including the Carlin, Halleck, and Wells groups",1872,EA Bibliography, +21682,Nd43,EA202,800,,Aboriginally; Note focal year for cultural data is 1860,,,,EA Bibliography, +21683,Nd44,EA202,?,,,,,,, +21684,Nd45,EA202,1500,,,,,1867,EA Bibliography, +21685,Nd46,EA202,600,,,,,1860,EA Bibliography, +21686,Nd47,EA202,500,,,,,1860,EA Bibliography, +21687,Nd48,EA202,?,,,,,,, +21688,Nd49,EA202,?,,,,,,, +21689,Nd5,EA202,?,,,,,,, +21690,Nd50,EA202,68,,,,,1870,EA Bibliography, +21691,Nd51,EA202,?,,,,,,, +21692,Nd52,EA202,300,,in 1873; note focal year for cultural data is 1860,,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1873,EA Bibliography, +21693,Nd53,EA202,600,,,,,1850,EA Bibliography, +21694,Nd54,EA202,350,,in 1920; note focal year for cultural data is 1860,,Colorado River Reservation,1920,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21695,Nd55,EA202,330,,in 1874; note focal year for cultural data is 1860,,"including the Pahrump, Ash Medows, and Tule Springs groups",1874,EA Bibliography, +21696,Nd56,EA202,?,,,,,,, +21697,Nd57,EA202,134,,,,,1870,EA Bibliography, +21698,Nd58,EA202,?,,,,,,, +21699,Nd59,EA202,?,,,,,,, +21700,Nd6,EA202,1000,,850 in 1960,,,1845,EA Bibliography, +21701,Nd60,EA202,?,,,,,,, +21702,Nd61,EA202,?,,,,,,, +21703,Nd62,EA202,?,,,,,,, +21704,Nd63,EA202,600,,,,with special reference to the Eastern Bannock,1869,EA Bibliography, +21705,Nd64,EA202,1600,,,,with special reference to the Kucundika,1869,EA Bibliography, +21706,Nd65,EA202,1000,,,,,1870,EA Bibliography, +21707,Nd66,EA202,500,,,,with exdlusive reference to the Northeastern Yavapai,1870,Carol Ember's Concordance Database, +21708,Nd67,EA202,500,,,,,1870,EA Bibliography, +21709,Nd7,EA202,?,,,,,,, +21710,Nd8,EA202,600,,in 1840; note focal year for cultural data is 1880,,with special reference to the Alexis Creek and Redstone bands,1840,EA Bibliography, +21711,Nd9,EA202,4000,,,,,1850,EA Bibliography, +21712,Ne1,EA202,2000,,Population is estimated as between 800 and 2000 in 1880 (see HRAF:4 p. 411 and SCCS-186 print-out).,,Gros Ventre Tribe,1880,Carol Ember's Concordance Database, +21713,Ne10,EA202,1650,,in 1871; note focal year for cultural data is 1860,,,1871,EA Bibliography, +21714,Ne11,EA202,3000,,in 1890; note focal year for cultural data is 1870,,,1890,EA Bibliography, +21715,Ne12,EA202,1600,,in 1809; note focal year for cultural data is 1850,,,1809,EA Bibliography, +21716,Ne13,EA202,800,,in 1809; note focal year for cultural data is 1850,,,1809,EA Bibliography, +21717,Ne14,EA202,17000,,in 1958; Source is HRAF 24:Howard p 174a; note focal year for cultural data is 1850,,,1958,Carol Ember's Concordance Database, +21718,Ne15,EA202,?,,,,,,, +21719,Ne16,EA202,200,,"in 1814; Data source gives population number as ""fewer than 200""; note focal year for cultural data is 1800",,,1814,EA Bibliography, +21720,Ne17,EA202,1165,,in 1905; note focal year for cultural data is 1860,,,1905,EA Bibliography, +21721,Ne18,EA202,2800,,in 1809; note focal year for cultural data is 1850,,,1809,EA Bibliography, +21722,Ne19,EA202,12500,,,,,1860,EA Bibliography, +21723,Ne2,EA202,200,,in 1934; note focal year for cultural data is 1870,,,1934,EA Bibliography, +21724,Ne20,EA202,?,,,,,,, +21725,Ne21,EA202,?,,,,,,, +21726,Ne3,EA202,4700,,Source is SCCS-186 print-out,,Comanche Tribe,1866,Carol Ember's Concordance Database, +21727,Ne4,EA202,1800,,in 1935; note focal year for cultural data is 1870,,,1935,EA Bibliography, +21728,Ne5,EA202,4700,,,,,1870,EA Bibliography, +21729,Ne6,EA202,300,,"in 1870; Source is HRAF 2:Bowers, p. 1; note focal year for cultural data is 1830",,,1870,Carol Ember's Concordance Database, +21730,Ne7,EA202,?,,,,,,, +21731,Ne8,EA202,?,,,,,,, +21732,Ne9,EA202,2300,,in 1904; note focal year for cultural data is 1860,,,1904,EA Bibliography, +21733,Nf10,EA202,?,,,,,,, +21734,Nf11,EA202,?,,,,,,, +21735,Nf12,EA202,825,,in 1880; note focal year for cultural data is 1850,,,1880,EA Bibliography, +21736,Nf13,EA202,1100,,in 1930; note focal year for cultural data is 1820,,with special reference to the Kiskopotha band,1930,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21737,Nf14,EA202,?,,,,,,, +21738,Nf15,EA202,?,,,,,,, +21739,Nf2,EA202,?,,,,,,, +21740,Nf3,EA202,1400,,"Source is HRAF 33:Steffens, p.2",,Omaha Tribe,1851,Carol Ember's Concordance Database, +21741,Nf4,EA202,6000,,,,,1718,EA Bibliography, +21742,Nf5,EA202,500,,in 1950; note focal year for cultural data is 1860,,,1950,EA Bibliography, +21743,Nf6,EA202,3400,,Source is SCCS-186 print-out.,,Skidi Band or subtribe,1859,Carol Ember's Concordance Database, +21744,Nf7,EA202,2000,,,,Tama Reservation,1820,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21745,Nf8,EA202,?,,,,,,, +21746,Nf9,EA202,1600,,in 1900; note focal year for cultural data is 1870,,,1900,EA Bibliography, +21747,Ng1,EA202,?,,,,,,, +21748,Ng10,EA202,10000,,in 1650; See HRAF reference 1:25; note focal year for cultural data is 1750,,with special reference to the Seneca tribe,1650,Carol Ember's Concordance Database, +21749,Ng11,EA202,1139,,in 1832; note focal year for cultural data is 1750,,,1832,EA Bibliography, +21750,Ng12,EA202,15000,,Date for population estimate missing,,,,EA Bibliography, +21751,Ng13,EA202,?,,,,,,, +21752,Ng14,EA202,8000,,"Aboriginally; Note that data source gives population number as ""nearly 8000""; Note focal year for cultural data is NA",,,,EA Bibliography, +21753,Ng15,EA202,4000,,18th century,,,1750,EA Bibliography, +21754,Ng2,EA202,175,,,,with special reference to the Cow Creek band,1939,EA Bibliography, +21755,Ng3,EA202,19000,,Source is EA-Summary,,Upper division in Alabama,1750,Carol Ember's Concordance Database, +21756,Ng4,EA202,300,,in 1930; note focal year for cultural data is 1900,,,1930,EA Bibliography, +21757,Ng5,EA202,20000,,in 1729; note focal year for cultural data is 1750,,,1729,EA Bibliography, +21758,Ng6,EA202,8000,,in 1600; note focal year for cultural data is 1700,,with special reference to the Munsee,1600,EA Bibliography, +21759,Ng7,EA202,?,,,,,,, +21760,Ng8,EA202,?,,,,,,, +21761,Ng9,EA202,124,,,,,1910,EA Bibliography, +21762,Nh1,EA202,1000,,Source is HRAF 1:Opler p. 4.,,Central band,1870,Carol Ember's Concordance Database, +21763,Nh10,EA202,1036,,,,,1930,EA Bibliography, +21764,Nh11,EA202,1400,,in 1937; 126 in San lldefonso; note focal year for cultural data is 1900,,with special reference to the pueblo of San Ildefonso,1937,EA Bibliography, +21765,Nh12,EA202,242,,in 1934; note focal year for cultural data is 1920,,,1934,EA Bibliography, +21766,Nh13,EA202,1250,,in 1941; note focal year for cultural data is 1920,,,1941,EA Bibliography, +21767,Nh14,EA202,2600,,in 1941; note focal year for cultural data is 1920,,,1941,EA Bibliography, +21768,Nh15,EA202,?,,,,,,, +21769,Nh16,EA202,800,,in 1805; note focal year for cultural data is 1870,,"Jicarilla Reservation, Dulce, New Mexico",1805,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21770,Nh17,EA202,4700,,in 1940; note focal year for cultural data is 1870,,,1940,EA Bibliography, +21771,Nh18,EA202,3500,,in 1950; note focal year for cultural data is 1920,,Old Oraiibi,1950,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21772,Nh19,EA202,?,,,,,,, +21773,Nh2,EA202,400,,,,,1950,EA Bibliography, +21774,Nh20,EA202,250,,in 1849; note focal year for cultural data is 1860,,,1849,EA Bibliography, +21775,Nh21,EA202,4000,,"in 1834; See HRAF 10 Slip, #3; note focal year for cultural data is 1850",,Fort Mohave and Colorado River Reservation,1834,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21776,Nh22,EA202,?,,,,,,, +21777,Nh23,EA202,?,,,,,,, +21778,Nh24,EA202,?,,,,,,, +21779,Nh25,EA202,327,,in 1957; note focal year for cultural data is 1920,,,1957,EA Bibliography, +21780,Nh26,EA202,350,,in 1926; note focal year for cultural data is 1910,,,1926,EA Bibliography, +21781,Nh27,EA202,900,,,,,1931,EA Bibliography, +21782,Nh3,EA202,50000,,in 1950; note focal year for cultural data is 1930,,,1950,EA Bibliography, +21783,Nh4,EA202,1700,,"in 1880; Source is HRAF 7:Cushing, p. 126; note focal year for cultural data is 1910",,Pueblo,1880,Carol Ember's Concordance Database, +21784,Nh5,EA202,700,,,,,1850,EA Bibliography, +21785,Nh6,EA202,700,,in 1930; note focal year for cultural data is 1890,,,1930,EA Bibliography, +21786,Nh7,EA202,600,,Date for population estimate missing,,,,EA Bibliography, +21787,Nh8,EA202,650,,in 1937; note focal year for cultural data is 1920,,,1937,EA Bibliography, +21788,Nh9,EA202,100,,"Date for population estimate missing; Data source gives population data as ""slightly more than 100""",,,,EA Bibliography, +21789,Ni1,EA202,40000,,"Source is HRAF 1:Bennett, p. vii.",,,1927,Carol Ember's Concordance Database, +21790,Ni2,EA202,5000,,Source is HRAF 2:Underhill p. v.,,,1935,Carol Ember's Concordance Database, +21791,Ni3,EA202,?,,,,,,, +21792,Ni4,EA202,200,,"in 1960; 2,000 aboriginally; note focal year for cultural data is 1900",,,1960,EA Bibliography, +21793,Ni5,EA202,?,,,,,,, +21794,Ni6,EA202,20000,,Date for population estimate missing,,,,EA Bibliography, +21795,Ni7,EA202,?,,,,,,, +21796,Ni8,EA202,60000,,16th century,,,1550,EA Bibliography, +21797,Ni9,EA202,?,,,,,,, +21798,Nj1,EA202,40000,,Date for population estimate missing,,Ojitlan,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21799,Nj10,EA202,?,,,,,,, +21800,Nj11,EA202,40000,,Date for population estimate missing,,,,EA Bibliography, +21801,Nj12,EA202,?,,,,,,, +21802,Nj13,EA202,?,,,,,,, +21803,Nj14,EA202,5000,,,,,1960,EA Bibliography, +21804,Nj2,EA202,300000,,Population of Tenochtitlan only. Population of Aztec empire as a whole is estimated at several million.,,City & environs of Tenochtitlan,1520,Carol Ember's Concordance Database, +21805,Nj3,EA202,?,,,,,,, +21806,Nj4,EA202,100000,,Date for population estimate missing,,,,EA Bibliography, +21807,Nj5,EA202,55000,,,,,1946,EA Bibliography, +21808,Nj6,EA202,3500,,San Mateo,,with special reference to San Mateo,1950,EA Bibliography, +21809,Nj7,EA202,?,,,,,,, +21810,Nj8,EA202,?,,,,,,, +21811,Nj9,EA202,300000,,,,,1960,EA Bibliography, +21812,Sa1,EA202,?,,,,,,, +21813,Sa10,EA202,200000,,,,,1900,EA Bibliography, +21814,Sa11,EA202,?,,,,,,, +21815,Sa12,EA202,?,,,,,,, +21816,Sa13,EA202,?,,,,,,, +21817,Sa14,EA202,18000,,"in 1950, note that focal year for cultural data is missing",,,1950,EA Bibliography, +21818,Sa15,EA202,?,,,,,,, +21819,Sa16,EA202,?,,,,,,, +21820,Sa17,EA202,?,,,,,,, +21821,Sa2,EA202,40000,,,,with special reference to the town of Canuc; some data apply to the group more generally,1947,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21822,Sa3,EA202,?,,,,,,, +21823,Sa4,EA202,5000,,Date for population estimate missing,,with special reference to those of Panama,,EA Bibliography, +21824,Sa5,EA202,?,,,,,,, +21825,Sa6,EA202,?,,,,,,, +21826,Sa7,EA202,30000,,Date for population estimate missing,,,,EA Bibliography, +21827,Sa8,EA202,1300,,Source is HRAF 2: Wagley p. 11.,,with special reference to the village of Santiago Chimaltenango,1937,Carol Ember's Concordance Database, +21828,Sa9,EA202,15000,,See HRAF reference 1:13.,,Vicinity: Cape Gracias a Dios,1921,Carol Ember's Concordance Database, +21829,Sb1,EA202,?,,,,,,, +21830,Sb2,EA202,2000,,,,,1941,EA Bibliography, +21831,Sb3,EA202,3000,,Date for population estimate missing,,with special reference to the Iroka,,EA Bibliography, +21832,Sb4,EA202,1300,,Date for population estimate missing; 1300 or 3700? (2 total population numbers given for 1962). 400 Cachama,,with special reference to the Cachama group,,EA Bibliography, +21833,Sb5,EA202,1350,,,,,1958,EA Bibliography, +21834,Sb6,EA202,?,,,,,,, +21835,Sb7,EA202,156,,,,with special reference to the Pariri,1954,EA Bibliography, +21836,Sb8,EA202,?,,,,,,, +21837,Sb9,EA202,?,,,,,,, +21838,Sc1,EA202,8000,,See HRAF reference 6:6.,,,1941,Carol Ember's Concordance Database, +21839,Sc10,EA202,?,,,,,,, +21840,Sc11,EA202,2500,,,,,1933,EA Bibliography, +21841,Sc12,EA202,?,,,,,,, +21842,Sc13,EA202,750,,,,,1954,EA Bibliography, +21843,Sc14,EA202,?,,,,,,, +21844,Sc15,EA202,?,,,,,,, +21845,Sc16,EA202,?,,,,,,, +21846,Sc17,EA202,300,,"Date for population estimate missing; Data source gives population number as ""a few thousand""",,,,EA Bibliography, +21847,Sc18,EA202,15000,,,,,1960,EA Bibliography, +21848,Sc2,EA202,500,,The actual figure is 519.,,,1947,Carol Ember's Concordance Database, +21849,Sc3,EA202,600,,See HRAF reference 1:13.,,Barama River,1932,Carol Ember's Concordance Database, +21850,Sc4,EA202,5000,,,,with special reference to the non-agricultural groups,1950,EA Bibliography, +21851,Sc5,EA202,?,,,,,,, +21852,Sc6,EA202,14000,,See HRAF reference 2:92.,,Upper Suriname River; Akwa on Morini River,1922,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21853,Sc7,EA202,?,,,,,,, +21854,Sc8,EA202,4000,,Date for population estimate missing,,,,EA Bibliography, +21855,Sc9,EA202,?,,,,,,, +21856,Sd1,EA202,1200,,,,Cabrura village,1952,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21857,Sd2,EA202,147,,recently extinct,,,1939,EA Bibliography, +21858,Sd3,EA202,240,,Date for population estimate missing,,,,EA Bibliography, +21859,Sd4,EA202,50000,,See HRAF reference 1:114.,,,1954,Carol Ember's Concordance Database, +21860,Sd5,EA202,1400,,,,,1958,EA Bibliography, +21861,Sd6,EA202,5000,,,,,1960,EA Bibliography, +21862,Sd7,EA202,180,,,,,1954,EA Bibliography, +21863,Sd8,EA202,2500,,Date for population estimate missing,,,,EA Bibliography, +21864,Sd9,EA202,?,,,,,,, +21865,Se1,EA202,2000,,See EA-Summary,,Vicinity of the Rio Blanco,1940,Carol Ember's Concordance Database, +21866,Se10,EA202,?,,,,,,, +21867,Se11,EA202,100,,The actual population figure was 145 as of the date cited.,,,1960,Carol Ember's Concordance Database, +21868,Se12,EA202,?,,,,,,, +21869,Se2,EA202,3000,,,,,1940,EA Bibliography, +21870,Se3,EA202,12600,,"The actual figure is 12,586 (2:36-38).",,,1930,Carol Ember's Concordance Database, +21871,Se4,EA202,1000,,,,,1940,EA Bibliography, +21872,Se5,EA202,2500,,See HRAF reference 5:25.,,Village on Caduiari River,1939,Carol Ember's Concordance Database, +21873,Se6,EA202,15000,,Date for population estimate missing,,,,EA Bibliography, +21874,Se7,EA202,?,,,,,,, +21875,Se8,EA202,?,,,,,,, +21876,Se9,EA202,1200,,in 1940; note focal year for cultural data is 1920,,,1940,EA Bibliography, +21877,Sf1,EA202,1500000,,in 1571; note focal year for cultural data is 1530,,City and environs of Cuzco,1571,Carol Ember's Concordance Database, +21878,Sf2,EA202,600000,,,,Chucuito Clan community in Peru,1936,Carol Ember's Concordance Database, +21879,Sf3,EA202,1500,,"The population figure is between 1,500 and 2,000 (3:1).",,Rio Cayapas Basin,1908,Carol Ember's Concordance Database, +21880,Sf4,EA202,2000,,Date for population estimate missing,,,,EA Bibliography, +21881,Sf5,EA202,?,,,,,,, +21882,Sf6,EA202,1000000,,Aboriginally; Note focal year for cultural data is 1540,,,,EA Bibliography, +21883,Sf7,EA202,5000,,"in 1930; 10,000 in 1958; note focal year for cultural data is 1900",,,1930,EA Bibliography, +21884,Sf8,EA202,450,,,,,1952,EA Bibliography, +21885,Sf9,EA202,99,,"Data source gives population number as ""fewer than 100""",,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1931,EA Bibliography, +21886,Sg1,EA202,2500,,,,Eastern and central,1866,Carol Ember's Concordance Database, +21887,Sg2,EA202,?,,,,,,, +21888,Sg3,EA202,2000,,300 in 1910,,with special reference to the Shelknam,1880,EA Bibliography, +21889,Sg4,EA202,1400,,,,Equestrian,1869,Carol Ember's Concordance Database, +21890,Sg5,EA202,200,,,,with special reference to the southern bands,1900,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21891,Sh1,EA202,20000,,in 1900; note focal year for cultural data is 1860,,,1900,EA Bibliography, +21892,Sh2,EA202,3000,,in 1946; note focal year for cultural data is 1850,,,1946,EA Bibliography, +21893,Sh3,EA202,5000,,in 1760; See HRAF reference 1:96; note focal year for cultural data is 1800,,Those in contact with mission,1760,Carol Ember's Concordance Database, +21894,Sh4,EA202,150,,,,,1937,EA Bibliography, +21895,Sh5,EA202,2500,,,,,1915,EA Bibliography, +21896,Sh6,EA202,?,,,,,,, +21897,Sh7,EA202,?,,,,,,, +21898,Sh8,EA202,10000,,,,with special reference to those of the Argentine Chaco,1964,EA Bibliography, +21899,Sh9,EA202,?,,,,,,, +21900,Si1,EA202,1000,,in 1936; note focal year for cultural data is 1920,,Kejara,1936,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21901,Si10,EA202,145,,,,,1954,EA Bibliography, +21902,Si2,EA202,?,,,,,,, +21903,Si3,EA202,250,,,,Simao Lopes,1947,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21904,Si4,EA202,?,,,,,,, +21905,Si5,EA202,110,,,,,1948,EA Bibliography, +21906,Si6,EA202,100,,,,,1901,EA Bibliography, +21907,Si7,EA202,340,,,,with special reference to the Cozarimi,1908,EA Bibliography, +21908,Si8,EA202,100,,The actual figure was 65 as of the date cited.,,,1949,Carol Ember's Concordance Database, +21909,Si9,EA202,?,,,,,,, +21910,Sj1,EA202,800,,in 1939; note focal year for cultural data is 1950,,,1939,EA Bibliography, +21911,Sj10,EA202,2000,,"The population totals between 2,000 and 4,000 (PSF-A:147).",,Taquapiri,1943,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21912,Sj11,EA202,?,,,,,,, +21913,Sj2,EA202,2139,,in 1951; note focal year for cultural data is 1850,,,1951,EA Bibliography, +21914,Sj3,EA202,100,,in 1934; The actual figure is 106; note focal year for cultural data is 1910,,Duque de Caxias Reservation,1934,Carol Ember's Concordance Database, +21915,Sj4,EA202,300,,See EA-Summary,,Ramcocamecra or Canella,1930,Carol Ember's Concordance Database, +21916,Sj5,EA202,5000,,,,Naknenuk subtribe,1880,Carol Ember's Concordance Database, +21917,Sj6,EA202,2000,,Date for population estimate missing,,with special reference to the Guajajara subgroup,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +21918,Sj7,EA202,160,,in 1937; note focal year for cultural data is 1920,,,1937,EA Bibliography, +21919,Sj8,EA202,?,,,,,,, +21920,Sj9,EA202,?,,,,,,, +21921,ch12,EA202,1320000,,all,,with special reference to the Birskij Uezd Bashkir,1897,EA Bibliography, +21922,ch13,EA202,10034,,in 1926; note focal year for cultural data is 1894,,with special reference to the Glazovskij Uezd Besermyan,1926,"Bondarenko et al., 2005", +21923,ch14,EA202,845000,,in 1897; note focal year for cultural data is 1908,,with special reference to the Virjal group,1897,"Bondarenko et al., 2005", +21924,ch15,EA202,1025000,,,,with special reference to those of the Boklinskij Uezd,1897,"Bondarenko et al., 2005", +21925,ch16,EA202,350000,,in 1897; within the territory of present-day Estonia; note focal year for cultural data is 1908,,with special reference to the Valkskij Uezd,1897,"Bondarenko et al., 2005", +21926,ch17,EA202,36127,,,,with special reference to those of the Benderskij Uezd,1897,"Bondarenko et al., 2005", +21927,ch18,EA202,26137,,,,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1926,"Bondarenko et al., 2005", +21928,ch19,EA202,208100,,in 1897; note focal year for cultural data is 1874,,with special reference to the Livvikjoj group of the Olonetskij Uezd,1897,"Bondarenko et al., 2005", +21929,ch20,EA202,675419,,in 1897; note focal year for cultural data is 1910,,with special reference to those of the Altayrskij Uezd,1897,"Bondarenko et al., 2005", +21930,ch21,EA202,1312000,,in 1897; note focal year for cultural data is 1881,,with special reference to the Vidzeme group,1897,"Bondarenko et al., 2005", +21931,ch22,EA202,800,,in 1987; note focal year for cultural data is 1895,,with special reference to those of the Trakaj area,1987,"Bondarenko et al., 2005", +21932,ch23,EA202,4499,,"Source says <4,500",,with special reference to those of the Vilenskaja Gubernija,1897,"Bondarenko et al., 2005", +21933,ch24,EA202,3000,,in 1860; note focal year for cultural data is 1847,,with special reference to the Northwest Courland,1860,"Bondarenko et al., 2005", +21934,ch25,EA202,921000,,within Bessarabia.,,with special reference to the Beletskij Uezd,1897,"Bondarenko et al., 2005", +21935,ch26,EA202,504000,,in 1926; note focal year for cultural data is 1890,,with special reference to those of the Sarapul'skij Uezd,1926,"Bondarenko et al., 2005", +21936,ch27,EA202,32773,,in 1926; note focal year for cultural data is 1900,,with special reference to the Petrozavodskij Uezd Veps,1926,"Bondarenko et al., 2005", +21937,ch28,EA202,1000,,"in 1917; 5,148 in 1848; note focal year for cultural data is 1900",,with special reference to those of the Yamburg Uezd,1917,"Bondarenko et al., 2005", +21938,ec12,EA202,500,,Avam group,,Avam (Western) group,1930,"Korotayev et al., 2004", +21939,ec13,EA202,12000,,,,those of Eastern Kamchatka,1710,"Korotayev et al., 2004", +21940,ec14,EA202,1000,,,,those of South-Eastern Chukotka,1880,"Korotayev et al., 2004", +21941,ec15,EA202,1300,,the Middle Northern Sos'va group.,,Middle Northern Sos'va group,1880,"Korotayev et al., 2004", +21942,ec16,EA202,1000,,Barguzin group,,Barguzin group,1890,"Korotayev et al., 2004", +21943,ec17,EA202,420,,Upper Amgun River group,,Upper Amgun' River group,1890,"Korotayev et al., 2004", +21944,ec18,EA202,3000,,,,Ulch people as a whole,1890,"Korotayev et al., 2004", +21945,ec19,EA202,500,,,,Northern group,1890,"Korotayev et al., 2004", +21946,ec20,EA202,800,,,,Oroch people as a whole,1890,"Korotayev et al., 2004", +21947,ec21,EA202,1300,,,,Hor River group,1890,"Korotayev et al., 2004", +21948,Aa1,EA021,Bilateral kindreds,EA021-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +21949,Aa2,EA021,No cognatic kin,EA021-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +21950,Aa3,EA021,No cognatic kin,EA021-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +21951,Aa4,EA021,Bilateral inferred,EA021-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +21952,Aa5,EA021,Bilateral inferred,EA021-1,"Entry follows Schebesta; Czekanowski reports bilateral (inferred) (code ""1"")",deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +21953,Aa6,EA021,No cognatic kin,EA021-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +21954,Aa7,EA021,Bilateral inferred,EA021-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +21955,Aa8,EA021,Bilateral inferred,EA021-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +21956,Aa9,EA021,Bilateral inferred,EA021-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +21957,Ab1,EA021,No cognatic kin,EA021-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +21958,Ab10,EA021,No cognatic kin,EA021-9,,hunter1936,,1936,EthnographicAtlas_1967_p62, +21959,Ab11,EA021,No cognatic kin,EA021-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +21960,Ab12,EA021,No cognatic kin,EA021-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +21961,Ab13,EA021,Quasi-lineages,EA021-6,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +21962,Ab14,EA021,No cognatic kin,EA021-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +21963,Ab15,EA021,No cognatic kin,EA021-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +21964,Ab16,EA021,No cognatic kin,EA021-9,,earthy1933,,1930,EthnographicAtlas_1967_p62, +21965,Ab17,EA021,No cognatic kin,EA021-9,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +21966,Ab18,EA021,Bilateral kindreds,EA021-2,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +21967,Ab19,EA021,No cognatic kin,EA021-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +21968,Ab2,EA021,No cognatic kin,EA021-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +21969,Ab20,EA021,No cognatic kin,EA021-9,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +21970,Ab21a,EA021,No cognatic kin,EA021-9,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +21971,Ab21b,EA021,No cognatic kin,EA021-9,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +21972,Ab22,EA021,No cognatic kin,EA021-9,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +21973,Ab3,EA021,Ramages,EA021-4,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +21974,Ab4,EA021,No cognatic kin,EA021-9,,junod1927,,1920,EthnographicAtlas_1967_p62, +21975,Ab5,EA021,No cognatic kin,EA021-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +21976,Ab6,EA021,No cognatic kin,EA021-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +21977,Ab7,EA021,No cognatic kin,EA021-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +21978,Ab8,EA021,No cognatic kin,EA021-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +21979,Ab9,EA021,No cognatic kin,EA021-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +21980,Ac1,EA021,No cognatic kin,EA021-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +21981,Ac10,EA021,No cognatic kin,EA021-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +21982,Ac11,EA021,No cognatic kin,EA021-9,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +21983,Ac12,EA021,No cognatic kin,EA021-9,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +21984,Ac13,EA021,No cognatic kin,EA021-9,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +21985,Ac14,EA021,No cognatic kin,EA021-9,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +21986,Ac15,EA021,No cognatic kin,EA021-9,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +21987,Ac16,EA021,No cognatic kin,EA021-9,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +21988,Ac17,EA021,No cognatic kin,EA021-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +21989,Ac18,EA021,No cognatic kin,EA021-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +21990,Ac19,EA021,No cognatic kin,EA021-9,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +21991,Ac2,EA021,No cognatic kin,EA021-9,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +21992,Ac20,EA021,No cognatic kin,EA021-9,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +21993,Ac21,EA021,No cognatic kin,EA021-9,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +21994,Ac22,EA021,No cognatic kin,EA021-9,,mertens1935,,1930,EthnographicAtlas_1967_p62, +21995,Ac23,EA021,No cognatic kin,EA021-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +21996,Ac24,EA021,No cognatic kin,EA021-9,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +21997,Ac25,EA021,No cognatic kin,EA021-9,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +21998,Ac26,EA021,No cognatic kin,EA021-9,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +21999,Ac27,EA021,No cognatic kin,EA021-9,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +22000,Ac28,EA021,No cognatic kin,EA021-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +22001,Ac29,EA021,No cognatic kin,EA021-9,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +22002,Ac3,EA021,Bilateral kindreds,EA021-2,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +22003,Ac30,EA021,No cognatic kin,EA021-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +22004,Ac31,EA021,No cognatic kin,EA021-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +22005,Ac32,EA021,No cognatic kin,EA021-9,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +22006,Ac33,EA021,No cognatic kin,EA021-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +22007,Ac34,EA021,No cognatic kin,EA021-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +22008,Ac35,EA021,No cognatic kin,EA021-9,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +22009,Ac36,EA021,No cognatic kin,EA021-9,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +22010,Ac37,EA021,No cognatic kin,EA021-9,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +22011,Ac38,EA021,No cognatic kin,EA021-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +22012,Ac39,EA021,No cognatic kin,EA021-9,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +22013,Ac4,EA021,No cognatic kin,EA021-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +22014,Ac40,EA021,No cognatic kin,EA021-9,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +22015,Ac41,EA021,No cognatic kin,EA021-9,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +22016,Ac42,EA021,No cognatic kin,EA021-9,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +22017,Ac43,EA021,No cognatic kin,EA021-9,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +22018,Ac5,EA021,No cognatic kin,EA021-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +22019,Ac6,EA021,No cognatic kin,EA021-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +22020,Ac7,EA021,No cognatic kin,EA021-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +22021,Ac8,EA021,No cognatic kin,EA021-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +22022,Ac9,EA021,Quasi-lineages,EA021-6,There are vestigial patrisibs,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +22023,Ad1,EA021,No cognatic kin,EA021-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +22024,Ad10,EA021,No cognatic kin,EA021-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +22025,Ad11,EA021,Bilateral kindreds,EA021-2,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +22026,Ad12,EA021,No cognatic kin,EA021-9,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +22027,Ad13,EA021,No cognatic kin,EA021-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +22028,Ad14,EA021,No cognatic kin,EA021-9,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +22029,Ad15,EA021,No cognatic kin,EA021-9,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +22030,Ad16,EA021,No cognatic kin,EA021-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +22031,Ad17,EA021,No cognatic kin,EA021-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +22032,Ad18,EA021,No cognatic kin,EA021-9,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +22033,Ad19,EA021,No cognatic kin,EA021-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +22034,Ad2,EA021,No cognatic kin,EA021-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +22035,Ad20,EA021,Ramages,EA021-4,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +22036,Ad21,EA021,No cognatic kin,EA021-9,,maurice193538,,1930,EthnographicAtlas_1967_p66, +22037,Ad22,EA021,Ramages,EA021-4,The incompletely exogamous patrisibs are better classed as ramages since affiliation is to a considerable extent ambilineal,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +22038,Ad23,EA021,No cognatic kin,EA021-9,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +22039,Ad24,EA021,No cognatic kin,EA021-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +22040,Ad25,EA021,No cognatic kin,EA021-9,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +22041,Ad26,EA021,No cognatic kin,EA021-9,,sick1916,,1910,EthnographicAtlas_1967_p66, +22042,Ad27,EA021,No cognatic kin,EA021-9,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +22043,Ad28,EA021,No cognatic kin,EA021-9,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +22044,Ad29,EA021,Ramages,EA021-4,But with patrilineal bias,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +22045,Ad3,EA021,No cognatic kin,EA021-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +22046,Ad30,EA021,No cognatic kin,EA021-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +22047,Ad31,EA021,No cognatic kin,EA021-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +22048,Ad32,EA021,No cognatic kin,EA021-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +22049,Ad33,EA021,No cognatic kin,EA021-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +22050,Ad34,EA021,No cognatic kin,EA021-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +22051,Ad35,EA021,No cognatic kin,EA021-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +22052,Ad36,EA021,No cognatic kin,EA021-9,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +22053,Ad37,EA021,No cognatic kin,EA021-9,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +22054,Ad38,EA021,No cognatic kin,EA021-9,Inferential from distributional evidence,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +22055,Ad39,EA021,No cognatic kin,EA021-9,,gray1963,,1950,EthnographicAtlas_1967_p66, +22056,Ad4,EA021,No cognatic kin,EA021-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +22057,Ad40,EA021,No cognatic kin,EA021-9,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +22058,Ad41,EA021,No cognatic kin,EA021-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +22059,Ad42,EA021,No cognatic kin,EA021-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +22060,Ad43,EA021,No cognatic kin,EA021-9,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +22061,Ad44,EA021,No cognatic kin,EA021-9,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +22062,Ad45,EA021,Bilateral kindreds,EA021-2,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +22063,Ad46,EA021,No cognatic kin,EA021-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +22064,Ad47,EA021,No cognatic kin,EA021-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +22065,Ad48,EA021,No cognatic kin,EA021-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +22066,Ad49,EA021,No cognatic kin,EA021-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +22067,Ad5,EA021,No cognatic kin,EA021-9,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +22068,Ad50,EA021,No cognatic kin,EA021-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +22069,Ad51,EA021,No cognatic kin,EA021-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +22070,Ad6,EA021,Bilateral kindreds,EA021-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +22071,Ad7,EA021,No cognatic kin,EA021-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +22072,Ad8,EA021,No cognatic kin,EA021-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +22073,Ad9,EA021,No cognatic kin,EA021-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +22074,Ae1,EA021,No cognatic kin,EA021-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +22075,Ae10,EA021,No cognatic kin,EA021-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +22076,Ae11,EA021,No cognatic kin,EA021-9,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +22077,Ae12,EA021,No cognatic kin,EA021-9,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +22078,Ae13,EA021,No cognatic kin,EA021-9,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +22079,Ae14,EA021,No cognatic kin,EA021-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +22080,Ae15,EA021,No cognatic kin,EA021-9,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +22081,Ae16,EA021,No cognatic kin,EA021-9,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +22082,Ae17,EA021,No cognatic kin,EA021-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +22083,Ae18,EA021,No cognatic kin,EA021-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +22084,Ae19,EA021,No cognatic kin,EA021-9,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +22085,Ae2,EA021,No cognatic kin,EA021-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +22086,Ae20,EA021,No cognatic kin,EA021-9,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +22087,Ae21,EA021,No cognatic kin,EA021-9,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +22088,Ae22,EA021,No cognatic kin,EA021-9,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +22089,Ae23,EA021,No cognatic kin,EA021-9,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +22090,Ae24,EA021,No cognatic kin,EA021-9,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +22091,Ae25,EA021,No cognatic kin,EA021-9,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +22092,Ae26,EA021,No cognatic kin,EA021-9,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +22093,Ae27,EA021,No cognatic kin,EA021-9,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +22094,Ae28,EA021,No cognatic kin,EA021-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +22095,Ae29,EA021,No cognatic kin,EA021-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +22096,Ae3,EA021,No cognatic kin,EA021-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +22097,Ae30,EA021,No cognatic kin,EA021-9,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +22098,Ae31,EA021,No cognatic kin,EA021-9,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +22099,Ae32,EA021,No cognatic kin,EA021-9,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +22100,Ae33,EA021,No cognatic kin,EA021-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +22101,Ae34,EA021,No cognatic kin,EA021-9,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +22102,Ae35,EA021,No cognatic kin,EA021-9,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +22103,Ae36,EA021,No cognatic kin,EA021-9,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +22104,Ae37,EA021,No cognatic kin,EA021-9,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +22105,Ae38,EA021,No cognatic kin,EA021-9,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +22106,Ae39,EA021,No cognatic kin,EA021-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +22107,Ae4,EA021,No cognatic kin,EA021-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +22108,Ae40,EA021,No cognatic kin,EA021-9,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +22109,Ae41,EA021,No cognatic kin,EA021-9,,andersson1953,,1940,EthnographicAtlas_1967_p66, +22110,Ae42,EA021,No cognatic kin,EA021-9,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +22111,Ae43,EA021,No cognatic kin,EA021-9,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +22112,Ae44,EA021,?,EA021-NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +22113,Ae45,EA021,No cognatic kin,EA021-9,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +22114,Ae46,EA021,No cognatic kin,EA021-9,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +22115,Ae47,EA021,No cognatic kin,EA021-9,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +22116,Ae48,EA021,No cognatic kin,EA021-9,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +22117,Ae49,EA021,No cognatic kin,EA021-9,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +22118,Ae5,EA021,No cognatic kin,EA021-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +22119,Ae50,EA021,No cognatic kin,EA021-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +22120,Ae51,EA021,No cognatic kin,EA021-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +22121,Ae52,EA021,No cognatic kin,EA021-9,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +22122,Ae53,EA021,No cognatic kin,EA021-9,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +22123,Ae54,EA021,No cognatic kin,EA021-9,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +22124,Ae55,EA021,No cognatic kin,EA021-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +22125,Ae56,EA021,No cognatic kin,EA021-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +22126,Ae57,EA021,No cognatic kin,EA021-9,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +22127,Ae58,EA021,No cognatic kin,EA021-9,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +22128,Ae59,EA021,No cognatic kin,EA021-9,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +22129,Ae6,EA021,No cognatic kin,EA021-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +22130,Ae7,EA021,No cognatic kin,EA021-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +22131,Ae8,EA021,No cognatic kin,EA021-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +22132,Ae9,EA021,No cognatic kin,EA021-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +22133,Af1,EA021,No cognatic kin,EA021-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +22134,Af10,EA021,No cognatic kin,EA021-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +22135,Af11,EA021,No cognatic kin,EA021-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +22136,Af12,EA021,No cognatic kin,EA021-9,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +22137,Af13,EA021,No cognatic kin,EA021-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +22138,Af14,EA021,No cognatic kin,EA021-9,"From a recent report, matrilineages have apparently become converted into ambilineal ramages",hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +22139,Af15,EA021,No cognatic kin,EA021-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +22140,Af16,EA021,No cognatic kin,EA021-9,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +22141,Af17,EA021,?,EA021-NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +22142,Af18,EA021,No cognatic kin,EA021-9,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +22143,Af19,EA021,No cognatic kin,EA021-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +22144,Af2,EA021,No cognatic kin,EA021-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +22145,Af20,EA021,No cognatic kin,EA021-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +22146,Af21,EA021,Ramages,EA021-4,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +22147,Af22,EA021,Ramages,EA021-4,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +22148,Af23,EA021,No cognatic kin,EA021-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +22149,Af24,EA021,No cognatic kin,EA021-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +22150,Af25,EA021,No cognatic kin,EA021-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +22151,Af26,EA021,Exogamous ramages,EA021-5,"Descent is ambilineal, depending mainly on the mode of marriage",bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +22152,Af27,EA021,No cognatic kin,EA021-9,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +22153,Af28,EA021,No cognatic kin,EA021-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +22154,Af29,EA021,No cognatic kin,EA021-9,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +22155,Af3,EA021,No cognatic kin,EA021-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +22156,Af30,EA021,No cognatic kin,EA021-9,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +22157,Af31,EA021,No cognatic kin,EA021-9,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +22158,Af32,EA021,No cognatic kin,EA021-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22159,Af33,EA021,No cognatic kin,EA021-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22160,Af34,EA021,No cognatic kin,EA021-9,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22161,Af35,EA021,No cognatic kin,EA021-9,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +22162,Af36,EA021,No cognatic kin,EA021-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +22163,Af37,EA021,No cognatic kin,EA021-9,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +22164,Af38,EA021,No cognatic kin,EA021-9,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +22165,Af39,EA021,No cognatic kin,EA021-9,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +22166,Af4,EA021,No cognatic kin,EA021-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +22167,Af40,EA021,No cognatic kin,EA021-9,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +22168,Af41,EA021,No cognatic kin,EA021-9,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +22169,Af42,EA021,No cognatic kin,EA021-9,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +22170,Af43,EA021,No cognatic kin,EA021-9,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +22171,Af44,EA021,No cognatic kin,EA021-9,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +22172,Af45,EA021,No cognatic kin,EA021-9,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +22173,Af46,EA021,No cognatic kin,EA021-9,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +22174,Af47,EA021,No cognatic kin,EA021-9,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +22175,Af48,EA021,No cognatic kin,EA021-9,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +22176,Af49,EA021,No cognatic kin,EA021-9,,schwab1947,,1940,EthnographicAtlas_1967_p70, +22177,Af5,EA021,No cognatic kin,EA021-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +22178,Af50,EA021,No cognatic kin,EA021-9,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +22179,Af51,EA021,No cognatic kin,EA021-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +22180,Af52,EA021,No cognatic kin,EA021-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +22181,Af53,EA021,No cognatic kin,EA021-9,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +22182,Af54,EA021,No cognatic kin,EA021-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +22183,Af55,EA021,No cognatic kin,EA021-9,"Since children are affiliated with the mother's group in cases of uxorilocal residence, descent groups are in a measure ambilineal",dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +22184,Af56,EA021,No cognatic kin,EA021-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +22185,Af57,EA021,No cognatic kin,EA021-9,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +22186,Af58,EA021,No cognatic kin,EA021-9,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +22187,Af6,EA021,Bilateral kindreds,EA021-2,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +22188,Af7,EA021,No cognatic kin,EA021-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +22189,Af8,EA021,No cognatic kin,EA021-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +22190,Af9,EA021,No cognatic kin,EA021-9,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +22191,Ag1,EA021,No cognatic kin,EA021-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +22192,Ag10,EA021,No cognatic kin,EA021-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +22193,Ag11,EA021,No cognatic kin,EA021-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +22194,Ag12,EA021,No cognatic kin,EA021-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +22195,Ag13,EA021,No cognatic kin,EA021-9,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +22196,Ag14,EA021,No cognatic kin,EA021-9,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +22197,Ag15,EA021,No cognatic kin,EA021-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +22198,Ag16,EA021,No cognatic kin,EA021-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +22199,Ag17,EA021,No cognatic kin,EA021-9,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +22200,Ag18,EA021,No cognatic kin,EA021-9,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +22201,Ag19,EA021,No cognatic kin,EA021-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +22202,Ag2,EA021,No cognatic kin,EA021-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +22203,Ag20,EA021,No cognatic kin,EA021-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +22204,Ag21,EA021,No cognatic kin,EA021-9,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +22205,Ag22,EA021,No cognatic kin,EA021-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +22206,Ag23,EA021,No cognatic kin,EA021-9,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +22207,Ag24,EA021,No cognatic kin,EA021-9,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +22208,Ag25,EA021,No cognatic kin,EA021-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +22209,Ag26,EA021,No cognatic kin,EA021-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +22210,Ag27,EA021,No cognatic kin,EA021-9,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +22211,Ag28,EA021,?,EA021-NA,,,,,, +22212,Ag29,EA021,No cognatic kin,EA021-9,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +22213,Ag3,EA021,No cognatic kin,EA021-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +22214,Ag30,EA021,No cognatic kin,EA021-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +22215,Ag31,EA021,No cognatic kin,EA021-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +22216,Ag32,EA021,No cognatic kin,EA021-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +22217,Ag33,EA021,?,EA021-NA,,,,,, +22218,Ag34,EA021,No cognatic kin,EA021-9,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +22219,Ag35,EA021,No cognatic kin,EA021-9,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +22220,Ag36,EA021,No cognatic kin,EA021-9,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +22221,Ag37,EA021,No cognatic kin,EA021-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +22222,Ag38,EA021,No cognatic kin,EA021-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +22223,Ag39,EA021,No cognatic kin,EA021-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +22224,Ag4,EA021,No cognatic kin,EA021-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +22225,Ag40,EA021,No cognatic kin,EA021-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +22226,Ag41,EA021,No cognatic kin,EA021-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +22227,Ag42,EA021,No cognatic kin,EA021-9,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +22228,Ag43,EA021,No cognatic kin,EA021-9,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +22229,Ag44,EA021,No cognatic kin,EA021-9,There are exogamous ramages in the chiefly class,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +22230,Ag45,EA021,No cognatic kin,EA021-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +22231,Ag46,EA021,No cognatic kin,EA021-9,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +22232,Ag47,EA021,No cognatic kin,EA021-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +22233,Ag48,EA021,No cognatic kin,EA021-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +22234,Ag49,EA021,No cognatic kin,EA021-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +22235,Ag5,EA021,No cognatic kin,EA021-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +22236,Ag50,EA021,No cognatic kin,EA021-9,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +22237,Ag51,EA021,No cognatic kin,EA021-9,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +22238,Ag52,EA021,No cognatic kin,EA021-9,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +22239,Ag53,EA021,No cognatic kin,EA021-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +22240,Ag54,EA021,No cognatic kin,EA021-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +22241,Ag6,EA021,No cognatic kin,EA021-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +22242,Ag7,EA021,No cognatic kin,EA021-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +22243,Ag8,EA021,No cognatic kin,EA021-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +22244,Ag9,EA021,No cognatic kin,EA021-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +22245,Ah1,EA021,No cognatic kin,EA021-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22246,Ah10,EA021,No cognatic kin,EA021-9,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +22247,Ah11,EA021,No cognatic kin,EA021-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +22248,Ah12,EA021,No cognatic kin,EA021-9,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +22249,Ah13,EA021,?,EA021-NA,,,,,, +22250,Ah14,EA021,No cognatic kin,EA021-9,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +22251,Ah15,EA021,No cognatic kin,EA021-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +22252,Ah16,EA021,No cognatic kin,EA021-9,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +22253,Ah17,EA021,No cognatic kin,EA021-9,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +22254,Ah18,EA021,No cognatic kin,EA021-9,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +22255,Ah19,EA021,No cognatic kin,EA021-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +22256,Ah2,EA021,Ramages,EA021-4,,meek1931a,,1920,EthnographicAtlas_1967_p74, +22257,Ah20,EA021,No cognatic kin,EA021-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +22258,Ah21,EA021,No cognatic kin,EA021-9,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22259,Ah22,EA021,No cognatic kin,EA021-9,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +22260,Ah23,EA021,Ambilineal,EA021-3,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22261,Ah24,EA021,No cognatic kin,EA021-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22262,Ah25,EA021,No cognatic kin,EA021-9,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22263,Ah26,EA021,No cognatic kin,EA021-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22264,Ah27,EA021,No cognatic kin,EA021-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22265,Ah28,EA021,?,EA021-NA,Descent may possibly be ambilineal rather than double,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +22266,Ah29,EA021,No cognatic kin,EA021-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22267,Ah3,EA021,Ramages,EA021-4,A form of ramage resulted from ambilocal residence (virilocal and avunculocal) and the ambilineal affiliation associated therewith,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +22268,Ah30,EA021,No cognatic kin,EA021-9,,meek1931b,,1920,EthnographicAtlas_1967_p74, +22269,Ah31,EA021,No cognatic kin,EA021-9,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +22270,Ah32,EA021,Ambilineal,EA021-3,"Inferred from the attested absence of either patrilineal or matrilineal kin groups and from the report that children belong to the father's group if a high bride-price has been paid, otherwise to the group of their MoBr",meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22271,Ah33,EA021,No cognatic kin,EA021-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +22272,Ah34,EA021,No cognatic kin,EA021-9,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +22273,Ah35,EA021,No cognatic kin,EA021-9,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22274,Ah36,EA021,No cognatic kin,EA021-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +22275,Ah37,EA021,No cognatic kin,EA021-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22276,Ah38,EA021,No cognatic kin,EA021-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +22277,Ah39,EA021,No cognatic kin,EA021-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +22278,Ah4,EA021,Ramages,EA021-4,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +22279,Ah5,EA021,No cognatic kin,EA021-9,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +22280,Ah6,EA021,No cognatic kin,EA021-9,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +22281,Ah7,EA021,No cognatic kin,EA021-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +22282,Ah8,EA021,No cognatic kin,EA021-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +22283,Ah9,EA021,No cognatic kin,EA021-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +22284,Ai1,EA021,No cognatic kin,EA021-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +22285,Ai10,EA021,No cognatic kin,EA021-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +22286,Ai11,EA021,No cognatic kin,EA021-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +22287,Ai12,EA021,No cognatic kin,EA021-9,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +22288,Ai13,EA021,No cognatic kin,EA021-9,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +22289,Ai14,EA021,No cognatic kin,EA021-9,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +22290,Ai15,EA021,No cognatic kin,EA021-9,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +22291,Ai16,EA021,?,EA021-NA,,,,,, +22292,Ai17,EA021,No cognatic kin,EA021-9,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +22293,Ai18,EA021,?,EA021-NA,,,,,, +22294,Ai19,EA021,No cognatic kin,EA021-9,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +22295,Ai2,EA021,No cognatic kin,EA021-9,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +22296,Ai20,EA021,No cognatic kin,EA021-9,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +22297,Ai21,EA021,No cognatic kin,EA021-9,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +22298,Ai22,EA021,No cognatic kin,EA021-9,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +22299,Ai23,EA021,No cognatic kin,EA021-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +22300,Ai24,EA021,No cognatic kin,EA021-9,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +22301,Ai25,EA021,No cognatic kin,EA021-9,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +22302,Ai26,EA021,No cognatic kin,EA021-9,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +22303,Ai27,EA021,No cognatic kin,EA021-9,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +22304,Ai28,EA021,No cognatic kin,EA021-9,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +22305,Ai29,EA021,No cognatic kin,EA021-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +22306,Ai3,EA021,No cognatic kin,EA021-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +22307,Ai30,EA021,No cognatic kin,EA021-9,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +22308,Ai31,EA021,No cognatic kin,EA021-9,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +22309,Ai32,EA021,No cognatic kin,EA021-9,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +22310,Ai33,EA021,No cognatic kin,EA021-9,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +22311,Ai34,EA021,No cognatic kin,EA021-9,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +22312,Ai35,EA021,No cognatic kin,EA021-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +22313,Ai36,EA021,No cognatic kin,EA021-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +22314,Ai37,EA021,No cognatic kin,EA021-9,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +22315,Ai38,EA021,No cognatic kin,EA021-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +22316,Ai39,EA021,No cognatic kin,EA021-9,,nadel1947,,1940,EthnographicAtlas_1967_p74, +22317,Ai4,EA021,Ambilineal,EA021-3,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +22318,Ai40,EA021,No cognatic kin,EA021-9,,nadel1947,,1940,EthnographicAtlas_1967_p74, +22319,Ai41,EA021,No cognatic kin,EA021-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +22320,Ai42,EA021,No cognatic kin,EA021-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +22321,Ai43,EA021,No cognatic kin,EA021-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +22322,Ai44,EA021,No cognatic kin,EA021-9,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +22323,Ai45,EA021,No cognatic kin,EA021-9,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +22324,Ai46,EA021,No cognatic kin,EA021-9,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +22325,Ai47,EA021,No cognatic kin,EA021-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +22326,Ai5,EA021,No cognatic kin,EA021-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +22327,Ai6,EA021,No cognatic kin,EA021-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +22328,Ai7,EA021,No cognatic kin,EA021-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +22329,Ai8,EA021,No cognatic kin,EA021-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +22330,Ai9,EA021,No cognatic kin,EA021-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +22331,Aj1,EA021,No cognatic kin,EA021-9,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +22332,Aj10,EA021,No cognatic kin,EA021-9,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +22333,Aj11,EA021,No cognatic kin,EA021-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +22334,Aj12,EA021,No cognatic kin,EA021-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +22335,Aj13,EA021,No cognatic kin,EA021-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +22336,Aj14,EA021,No cognatic kin,EA021-9,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +22337,Aj15,EA021,No cognatic kin,EA021-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +22338,Aj16,EA021,No cognatic kin,EA021-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +22339,Aj17,EA021,No cognatic kin,EA021-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +22340,Aj18,EA021,No cognatic kin,EA021-9,,jensen1959,,1950,EthnographicAtlas_1967_p78, +22341,Aj19,EA021,No cognatic kin,EA021-9,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +22342,Aj2,EA021,No cognatic kin,EA021-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +22343,Aj20,EA021,No cognatic kin,EA021-9,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +22344,Aj21,EA021,No cognatic kin,EA021-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +22345,Aj22,EA021,No cognatic kin,EA021-9,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +22346,Aj23,EA021,No cognatic kin,EA021-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +22347,Aj24,EA021,No cognatic kin,EA021-9,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +22348,Aj25,EA021,No cognatic kin,EA021-9,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +22349,Aj26,EA021,No cognatic kin,EA021-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +22350,Aj27,EA021,No cognatic kin,EA021-9,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +22351,Aj28,EA021,No cognatic kin,EA021-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +22352,Aj29,EA021,No cognatic kin,EA021-9,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +22353,Aj3,EA021,No cognatic kin,EA021-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +22354,Aj30,EA021,No cognatic kin,EA021-9,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +22355,Aj31,EA021,No cognatic kin,EA021-9,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +22356,Aj4,EA021,No cognatic kin,EA021-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +22357,Aj5,EA021,No cognatic kin,EA021-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +22358,Aj6,EA021,No cognatic kin,EA021-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +22359,Aj7,EA021,Bilateral kindreds,EA021-2,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +22360,Aj8,EA021,No cognatic kin,EA021-9,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +22361,Aj9,EA021,No cognatic kin,EA021-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +22362,Ca1,EA021,No cognatic kin,EA021-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +22363,Ca10,EA021,No cognatic kin,EA021-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +22364,Ca11,EA021,No cognatic kin,EA021-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +22365,Ca12,EA021,No cognatic kin,EA021-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +22366,Ca13,EA021,Bilateral kindreds,EA021-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +22367,Ca14,EA021,No cognatic kin,EA021-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +22368,Ca15,EA021,No cognatic kin,EA021-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +22369,Ca16,EA021,No cognatic kin,EA021-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +22370,Ca17,EA021,No cognatic kin,EA021-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +22371,Ca18,EA021,No cognatic kin,EA021-9,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +22372,Ca19,EA021,No cognatic kin,EA021-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +22373,Ca2,EA021,No cognatic kin,EA021-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +22374,Ca20,EA021,No cognatic kin,EA021-9,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +22375,Ca21,EA021,No cognatic kin,EA021-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +22376,Ca22,EA021,No cognatic kin,EA021-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +22377,Ca23,EA021,No cognatic kin,EA021-9,,jensen1959,,1950,EthnographicAtlas_1967_p78, +22378,Ca24,EA021,No cognatic kin,EA021-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +22379,Ca25,EA021,No cognatic kin,EA021-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +22380,Ca26,EA021,No cognatic kin,EA021-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +22381,Ca27,EA021,No cognatic kin,EA021-9,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +22382,Ca28,EA021,No cognatic kin,EA021-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +22383,Ca29,EA021,No cognatic kin,EA021-9,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +22384,Ca3,EA021,Bilateral kindreds,EA021-2,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +22385,Ca30,EA021,No cognatic kin,EA021-9,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +22386,Ca31,EA021,Bilateral inferred,EA021-1,Bilateral descent inferred from lack of mention of unilineal kin groups in any source,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +22387,Ca32,EA021,No cognatic kin,EA021-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +22388,Ca33,EA021,No cognatic kin,EA021-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +22389,Ca34,EA021,No cognatic kin,EA021-9,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +22390,Ca35,EA021,No cognatic kin,EA021-9,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +22391,Ca36,EA021,No cognatic kin,EA021-9,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +22392,Ca37,EA021,?,EA021-NA,,,,,, +22393,Ca38,EA021,No cognatic kin,EA021-9,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +22394,Ca39,EA021,No cognatic kin,EA021-9,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +22395,Ca4,EA021,No cognatic kin,EA021-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +22396,Ca40,EA021,No cognatic kin,EA021-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +22397,Ca41,EA021,No cognatic kin,EA021-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +22398,Ca42,EA021,No cognatic kin,EA021-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +22399,Ca43,EA021,No cognatic kin,EA021-9,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +22400,Ca5,EA021,No cognatic kin,EA021-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +22401,Ca6,EA021,No cognatic kin,EA021-9,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +22402,Ca7,EA021,Bilateral inferred,EA021-1,Patronymic but probably not patrilineal,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +22403,Ca8,EA021,No cognatic kin,EA021-9,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +22404,Ca9,EA021,No cognatic kin,EA021-9,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +22405,Cb1,EA021,No cognatic kin,EA021-9,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +22406,Cb10,EA021,No cognatic kin,EA021-9,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +22407,Cb11,EA021,No cognatic kin,EA021-9,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +22408,Cb12,EA021,No cognatic kin,EA021-9,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +22409,Cb13,EA021,No cognatic kin,EA021-9,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +22410,Cb14,EA021,No cognatic kin,EA021-9,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +22411,Cb15,EA021,No cognatic kin,EA021-9,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +22412,Cb16,EA021,No cognatic kin,EA021-9,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +22413,Cb17,EA021,No cognatic kin,EA021-9,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +22414,Cb18,EA021,Bilateral inferred,EA021-1,Probably though not certainly,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +22415,Cb19,EA021,Bilateral inferred,EA021-1,"Descent, though patrilineal prior to 1850, is now ""bilateral with an agnatic bias"" (Cohen)",cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +22416,Cb2,EA021,No cognatic kin,EA021-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +22417,Cb20,EA021,No cognatic kin,EA021-9,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +22418,Cb21,EA021,No cognatic kin,EA021-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +22419,Cb22,EA021,No cognatic kin,EA021-9,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +22420,Cb23,EA021,No cognatic kin,EA021-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +22421,Cb24,EA021,No cognatic kin,EA021-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +22422,Cb25,EA021,No cognatic kin,EA021-9,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +22423,Cb26,EA021,No cognatic kin,EA021-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +22424,Cb27,EA021,No cognatic kin,EA021-9,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22425,Cb28,EA021,No cognatic kin,EA021-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22426,Cb29,EA021,No cognatic kin,EA021-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +22427,Cb3,EA021,No cognatic kin,EA021-9,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +22428,Cb4,EA021,No cognatic kin,EA021-9,,reid1930,,1920,EthnographicAtlas_1967_p78, +22429,Cb5,EA021,No cognatic kin,EA021-9,"Descent uncertain, though reported as patrilineal by Bouillie",bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +22430,Cb6,EA021,No cognatic kin,EA021-9,,woodnd,,1920,EthnographicAtlas_1967_p78, +22431,Cb7,EA021,No cognatic kin,EA021-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +22432,Cb8,EA021,Bilateral inferred,EA021-1,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +22433,Cb9,EA021,No cognatic kin,EA021-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +22434,Cc1,EA021,No cognatic kin,EA021-9,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +22435,Cc10,EA021,No cognatic kin,EA021-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +22436,Cc11,EA021,No cognatic kin,EA021-9,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +22437,Cc12,EA021,No cognatic kin,EA021-9,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +22438,Cc13,EA021,No cognatic kin,EA021-9,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +22439,Cc14,EA021,No cognatic kin,EA021-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +22440,Cc15,EA021,No cognatic kin,EA021-9,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +22441,Cc16,EA021,No cognatic kin,EA021-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +22442,Cc17,EA021,No cognatic kin,EA021-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +22443,Cc18,EA021,No cognatic kin,EA021-9,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +22444,Cc19,EA021,No cognatic kin,EA021-9,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +22445,Cc2,EA021,No cognatic kin,EA021-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +22446,Cc20,EA021,No cognatic kin,EA021-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +22447,Cc3,EA021,No cognatic kin,EA021-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +22448,Cc4,EA021,No cognatic kin,EA021-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +22449,Cc5,EA021,No cognatic kin,EA021-9,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +22450,Cc6,EA021,No cognatic kin,EA021-9,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +22451,Cc7,EA021,No cognatic kin,EA021-9,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22452,Cc8,EA021,No cognatic kin,EA021-9,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +22453,Cc9,EA021,No cognatic kin,EA021-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +22454,Cd1,EA021,No cognatic kin,EA021-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +22455,Cd10,EA021,No cognatic kin,EA021-9,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +22456,Cd11,EA021,No cognatic kin,EA021-9,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +22457,Cd12,EA021,No cognatic kin,EA021-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +22458,Cd13,EA021,No cognatic kin,EA021-9,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +22459,Cd14,EA021,No cognatic kin,EA021-9,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +22460,Cd15,EA021,No cognatic kin,EA021-9,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +22461,Cd16,EA021,No cognatic kin,EA021-9,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +22462,Cd17,EA021,No cognatic kin,EA021-9,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +22463,Cd18,EA021,No cognatic kin,EA021-9,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +22464,Cd19,EA021,No cognatic kin,EA021-9,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +22465,Cd2,EA021,No cognatic kin,EA021-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +22466,Cd20,EA021,No cognatic kin,EA021-9,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +22467,Cd21,EA021,No cognatic kin,EA021-9,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +22468,Cd3,EA021,No cognatic kin,EA021-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +22469,Cd4,EA021,No cognatic kin,EA021-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +22470,Cd5,EA021,No cognatic kin,EA021-9,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +22471,Cd6,EA021,Bilateral inferred,EA021-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +22472,Cd7,EA021,No cognatic kin,EA021-9,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +22473,Cd8,EA021,No cognatic kin,EA021-9,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +22474,Cd9,EA021,No cognatic kin,EA021-9,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +22475,Ce1,EA021,Bilateral kindreds,EA021-2,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +22476,Ce2,EA021,Bilateral inferred,EA021-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +22477,Ce3,EA021,Bilateral inferred,EA021-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +22478,Ce4,EA021,Bilateral inferred,EA021-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22479,Ce5,EA021,Bilateral kindreds,EA021-2,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +22480,Ce6,EA021,Bilateral inferred,EA021-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +22481,Ce7,EA021,Bilateral kindreds,EA021-2,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +22482,Ce8,EA021,Bilateral kindreds,EA021-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +22483,Cf1,EA021,Bilateral kindreds,EA021-2,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +22484,Cf2,EA021,Bilateral inferred,EA021-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +22485,Cf3,EA021,Bilateral kindreds,EA021-2,,munch1945,,1930,EthnographicAtlas_1967_p82, +22486,Cf4,EA021,Bilateral inferred,EA021-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +22487,Cf5,EA021,Bilateral kindreds,EA021-2,,miner1939,,1930,EthnographicAtlas_1967_p82, +22488,Cg1,EA021,Bilateral kindreds,EA021-2,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +22489,Cg2,EA021,Bilateral kindreds,EA021-2,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +22490,Cg3,EA021,Bilateral kindreds,EA021-2,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +22491,Cg4,EA021,Bilateral kindreds,EA021-2,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +22492,Cg5,EA021,Bilateral kindreds,EA021-2,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +22493,Ch1,EA021,No cognatic kin,EA021-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +22494,Ch10,EA021,Bilateral inferred,EA021-1,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +22495,Ch11,EA021,Bilateral kindreds,EA021-2,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +22496,Ch2,EA021,Bilateral kindreds,EA021-2,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +22497,Ch3,EA021,Bilateral kindreds,EA021-2,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +22498,Ch4,EA021,Bilateral inferred,EA021-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +22499,Ch5,EA021,Bilateral inferred,EA021-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +22500,Ch6,EA021,Bilateral kindreds,EA021-2,,ember1954,,1910,EthnographicAtlas_1967_p82, +22501,Ch7,EA021,Bilateral kindreds,EA021-2,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +22502,Ch8,EA021,Bilateral inferred,EA021-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +22503,Ch9,EA021,Bilateral kindreds,EA021-2,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +22504,Ci1,EA021,No cognatic kin,EA021-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +22505,Ci10,EA021,Bilateral inferred,EA021-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +22506,Ci11,EA021,Bilateral kindreds,EA021-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +22507,Ci12,EA021,No cognatic kin,EA021-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +22508,Ci2,EA021,No cognatic kin,EA021-9,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +22509,Ci3,EA021,Bilateral kindreds,EA021-2,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +22510,Ci4,EA021,No cognatic kin,EA021-9,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +22511,Ci5,EA021,No cognatic kin,EA021-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +22512,Ci6,EA021,No cognatic kin,EA021-9,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +22513,Ci7,EA021,No cognatic kin,EA021-9,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +22514,Ci8,EA021,?,EA021-NA,,,,,, +22515,Ci9,EA021,No cognatic kin,EA021-9,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +22516,Cj1,EA021,No cognatic kin,EA021-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +22517,Cj10,EA021,No cognatic kin,EA021-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +22518,Cj2,EA021,Bilateral kindreds,EA021-2,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +22519,Cj3,EA021,No cognatic kin,EA021-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +22520,Cj4,EA021,Bilateral inferred,EA021-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +22521,Cj5,EA021,No cognatic kin,EA021-9,,dickson1949,,1930,EthnographicAtlas_1967_p86, +22522,Cj6,EA021,No cognatic kin,EA021-9,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +22523,Cj7,EA021,No cognatic kin,EA021-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +22524,Cj8,EA021,No cognatic kin,EA021-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +22525,Cj9,EA021,No cognatic kin,EA021-9,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +22526,Ea1,EA021,No cognatic kin,EA021-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +22527,Ea10,EA021,No cognatic kin,EA021-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +22528,Ea11,EA021,No cognatic kin,EA021-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +22529,Ea12,EA021,No cognatic kin,EA021-9,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +22530,Ea13,EA021,No cognatic kin,EA021-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +22531,Ea2,EA021,Bilateral kindreds,EA021-2,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +22532,Ea3,EA021,No cognatic kin,EA021-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +22533,Ea4,EA021,No cognatic kin,EA021-9,,barth1956b,,1950,EthnographicAtlas_1967_p86, +22534,Ea5,EA021,No cognatic kin,EA021-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +22535,Ea6,EA021,No cognatic kin,EA021-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +22536,Ea7,EA021,No cognatic kin,EA021-9,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +22537,Ea8,EA021,No cognatic kin,EA021-9,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +22538,Ea9,EA021,No cognatic kin,EA021-9,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +22539,Eb1,EA021,No cognatic kin,EA021-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +22540,Eb2,EA021,No cognatic kin,EA021-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +22541,Eb3,EA021,Bilateral kindreds,EA021-2,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +22542,Eb4,EA021,No cognatic kin,EA021-9,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +22543,Eb5,EA021,No cognatic kin,EA021-9,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +22544,Eb6,EA021,No cognatic kin,EA021-9,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +22545,Eb7,EA021,No cognatic kin,EA021-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +22546,Eb8,EA021,No cognatic kin,EA021-9,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +22547,Ec1,EA021,No cognatic kin,EA021-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +22548,Ec10,EA021,No cognatic kin,EA021-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +22549,Ec11,EA021,No cognatic kin,EA021-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +22550,Ec2,EA021,No cognatic kin,EA021-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22551,Ec3,EA021,Bilateral inferred,EA021-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +22552,Ec4,EA021,No cognatic kin,EA021-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +22553,Ec5,EA021,Bilateral inferred,EA021-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +22554,Ec6,EA021,Bilateral inferred,EA021-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +22555,Ec7,EA021,No cognatic kin,EA021-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +22556,Ec8,EA021,No cognatic kin,EA021-9,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +22557,Ec9,EA021,No cognatic kin,EA021-9,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +22558,Ed1,EA021,No cognatic kin,EA021-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +22559,Ed10,EA021,No cognatic kin,EA021-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +22560,Ed13,EA021,No cognatic kin,EA021-9,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +22561,Ed14,EA021,No cognatic kin,EA021-9,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +22562,Ed15a,EA021,Bilateral inferred,EA021-1,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +22563,Ed15b,EA021,No cognatic kin,EA021-9,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +22564,Ed16,EA021,No cognatic kin,EA021-9,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +22565,Ed2,EA021,No cognatic kin,EA021-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +22566,Ed3,EA021,No cognatic kin,EA021-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +22567,Ed4,EA021,Bilateral kindreds,EA021-2,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +22568,Ed5,EA021,Bilateral inferred,EA021-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22569,Ed6,EA021,No cognatic kin,EA021-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +22570,Ed7,EA021,Bilateral kindreds,EA021-2,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +22571,Ed8,EA021,No cognatic kin,EA021-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +22572,Ed9,EA021,No cognatic kin,EA021-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +22573,Ee1,EA021,No cognatic kin,EA021-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +22574,Ee2,EA021,No cognatic kin,EA021-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +22575,Ee3,EA021,No cognatic kin,EA021-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +22576,Ee4,EA021,No cognatic kin,EA021-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +22577,Ee5,EA021,No cognatic kin,EA021-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +22578,Ee6,EA021,No cognatic kin,EA021-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +22579,Ee7,EA021,No cognatic kin,EA021-9,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +22580,Ee8,EA021,No cognatic kin,EA021-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +22581,Ef1,EA021,No cognatic kin,EA021-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +22582,Ef10,EA021,No cognatic kin,EA021-9,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22583,Ef11,EA021,Bilateral kindreds,EA021-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +22584,Ef2,EA021,Bilateral kindreds,EA021-2,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +22585,Ef3,EA021,Bilateral kindreds,EA021-2,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +22586,Ef4,EA021,No cognatic kin,EA021-9,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +22587,Ef5,EA021,No cognatic kin,EA021-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +22588,Ef6,EA021,No cognatic kin,EA021-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +22589,Ef7,EA021,Bilateral kindreds,EA021-2,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +22590,Ef8,EA021,No cognatic kin,EA021-9,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +22591,Ef9,EA021,No cognatic kin,EA021-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22592,Eg1,EA021,No cognatic kin,EA021-9,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22593,Eg10,EA021,No cognatic kin,EA021-9,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +22594,Eg11,EA021,No cognatic kin,EA021-9,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +22595,Eg12,EA021,No cognatic kin,EA021-9,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +22596,Eg13,EA021,No cognatic kin,EA021-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22597,Eg14,EA021,No cognatic kin,EA021-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +22598,Eg2,EA021,No cognatic kin,EA021-9,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +22599,Eg3,EA021,No cognatic kin,EA021-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +22600,Eg4,EA021,No cognatic kin,EA021-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +22601,Eg5,EA021,No cognatic kin,EA021-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +22602,Eg6,EA021,No cognatic kin,EA021-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +22603,Eg7,EA021,No cognatic kin,EA021-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +22604,Eg8,EA021,Ramages,EA021-4,"The groups called ""endogamous septs"" are apparently not unilineal",griffiths1946,,1940,EthnographicAtlas_1967_p90, +22605,Eg9,EA021,No cognatic kin,EA021-9,,elwin1939,,1930,EthnographicAtlas_1967_p90, +22606,Eh1,EA021,Bilateral inferred,EA021-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +22607,Eh10,EA021,No cognatic kin,EA021-9,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +22608,Eh2,EA021,No cognatic kin,EA021-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +22609,Eh3,EA021,No cognatic kin,EA021-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +22610,Eh4,EA021,No cognatic kin,EA021-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22611,Eh5,EA021,Bilateral inferred,EA021-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +22612,Eh6,EA021,Quasi-lineages,EA021-6,"Inferred from the preference for virilocal residence and the existence of endogamous ""kindreds"" with a fiction of ""common ancestry""",ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +22613,Eh7,EA021,No cognatic kin,EA021-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +22614,Eh8,EA021,No cognatic kin,EA021-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +22615,Eh9,EA021,No cognatic kin,EA021-9,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +22616,Ei1,EA021,No cognatic kin,EA021-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22617,Ei10,EA021,No cognatic kin,EA021-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +22618,Ei11,EA021,No cognatic kin,EA021-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +22619,Ei12,EA021,No cognatic kin,EA021-9,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +22620,Ei13,EA021,No cognatic kin,EA021-9,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +22621,Ei14,EA021,No cognatic kin,EA021-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +22622,Ei15,EA021,No cognatic kin,EA021-9,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +22623,Ei16,EA021,No cognatic kin,EA021-9,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +22624,Ei17,EA021,No cognatic kin,EA021-9,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +22625,Ei18,EA021,Bilateral inferred,EA021-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +22626,Ei19,EA021,No cognatic kin,EA021-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +22627,Ei2,EA021,No cognatic kin,EA021-9,,mills1922,,1920,EthnographicAtlas_1967_p90, +22628,Ei20,EA021,No cognatic kin,EA021-9,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +22629,Ei3,EA021,Bilateral kindreds,EA021-2,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +22630,Ei4,EA021,No cognatic kin,EA021-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +22631,Ei5,EA021,No cognatic kin,EA021-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +22632,Ei6,EA021,No cognatic kin,EA021-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +22633,Ei7,EA021,Bilateral inferred,EA021-1,But there are agamous matrilineages which function in ancestor worship,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +22634,Ei8,EA021,No cognatic kin,EA021-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +22635,Ei9,EA021,No cognatic kin,EA021-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +22636,Ej1,EA021,No cognatic kin,EA021-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +22637,Ej10,EA021,No cognatic kin,EA021-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +22638,Ej11,EA021,No cognatic kin,EA021-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +22639,Ej12,EA021,No cognatic kin,EA021-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +22640,Ej13,EA021,No cognatic kin,EA021-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +22641,Ej14,EA021,Bilateral kindreds,EA021-2,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22642,Ej15,EA021,Bilateral inferred,EA021-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +22643,Ej16,EA021,No cognatic kin,EA021-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +22644,Ej2,EA021,No cognatic kin,EA021-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +22645,Ej3,EA021,Bilateral inferred,EA021-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +22646,Ej4,EA021,No cognatic kin,EA021-9,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +22647,Ej5,EA021,Bilateral kindreds,EA021-2,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +22648,Ej6,EA021,Bilateral inferred,EA021-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +22649,Ej7,EA021,No cognatic kin,EA021-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +22650,Ej8,EA021,Bilateral kindreds,EA021-2,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +22651,Ej9,EA021,Bilateral kindreds,EA021-2,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +22652,Ia1,EA021,Ramages,EA021-4,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +22653,Ia10,EA021,No cognatic kin,EA021-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +22654,Ia11,EA021,Ramages,EA021-4,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +22655,Ia12,EA021,Bilateral inferred,EA021-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +22656,Ia13,EA021,Bilateral kindreds,EA021-2,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +22657,Ia14,EA021,Bilateral kindreds,EA021-2,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +22658,Ia15,EA021,Bilateral inferred,EA021-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +22659,Ia16,EA021,Bilateral kindreds,EA021-2,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +22660,Ia17,EA021,Bilateral inferred,EA021-1,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +22661,Ia18,EA021,Bilateral kindreds,EA021-2,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +22662,Ia2,EA021,Bilateral kindreds,EA021-2,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +22663,Ia3,EA021,Bilateral kindreds,EA021-2,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +22664,Ia4,EA021,Bilateral kindreds,EA021-2,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +22665,Ia5,EA021,Bilateral kindreds,EA021-2,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +22666,Ia6,EA021,Ramages,EA021-4,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22667,Ia7,EA021,Bilateral kindreds,EA021-2,,fox1954,,1950,EthnographicAtlas_1967_p90, +22668,Ia8,EA021,Bilateral kindreds,EA021-2,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +22669,Ia9,EA021,No cognatic kin,EA021-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +22670,Ib1,EA021,Bilateral kindreds,EA021-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22671,Ib2,EA021,Bilateral inferred,EA021-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22672,Ib3,EA021,No cognatic kin,EA021-9,"Geertz speaks of clans with a ""noticeable ambilineal element""",belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +22673,Ib4,EA021,No cognatic kin,EA021-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +22674,Ib5,EA021,Bilateral kindreds,EA021-2,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +22675,Ib6,EA021,No cognatic kin,EA021-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +22676,Ib7,EA021,Exogamous ramages,EA021-5,"The uma, though possibly a localized quasi-patrilineage, is more probably a ramage",kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +22677,Ib8,EA021,Bilateral inferred,EA021-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +22678,Ib9,EA021,Bilateral inferred,EA021-1,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +22679,Ic1,EA021,Ramages,EA021-4,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22680,Ic10,EA021,Bilateral inferred,EA021-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +22681,Ic11,EA021,Bilateral kindreds,EA021-2,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22682,Ic12,EA021,Bilateral kindreds,EA021-2,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +22683,Ic13,EA021,No cognatic kin,EA021-9,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +22684,Ic2,EA021,Bilateral kindreds,EA021-2,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +22685,Ic3,EA021,No cognatic kin,EA021-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +22686,Ic4,EA021,No cognatic kin,EA021-9,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +22687,Ic5,EA021,Bilateral inferred,EA021-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +22688,Ic6,EA021,No cognatic kin,EA021-9,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +22689,Ic7,EA021,No cognatic kin,EA021-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +22690,Ic8,EA021,No cognatic kin,EA021-9,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +22691,Ic9,EA021,No cognatic kin,EA021-9,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +22692,Id1,EA021,No cognatic kin,EA021-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +22693,Id10,EA021,No cognatic kin,EA021-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +22694,Id11,EA021,No cognatic kin,EA021-9,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +22695,Id12,EA021,No cognatic kin,EA021-9,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +22696,Id13,EA021,No cognatic kin,EA021-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +22697,Id2,EA021,No cognatic kin,EA021-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +22698,Id3,EA021,No cognatic kin,EA021-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +22699,Id4,EA021,No cognatic kin,EA021-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +22700,Id5,EA021,No cognatic kin,EA021-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +22701,Id6,EA021,No cognatic kin,EA021-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +22702,Id7,EA021,No cognatic kin,EA021-9,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +22703,Id8,EA021,?,EA021-NA,,,,,, +22704,Id9,EA021,No cognatic kin,EA021-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +22705,Ie1,EA021,No cognatic kin,EA021-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22706,Ie10,EA021,Bilateral kindreds,EA021-2,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +22707,Ie11,EA021,No cognatic kin,EA021-9,,bowers1964,,1950,EthnographicAtlas_1967_p94, +22708,Ie12,EA021,No cognatic kin,EA021-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22709,Ie13,EA021,No cognatic kin,EA021-9,,landtman1927,,1920,EthnographicAtlas_1967_p94, +22710,Ie14,EA021,No cognatic kin,EA021-9,,haddon1908,,1900,EthnographicAtlas_1967_p94, +22711,Ie15,EA021,No cognatic kin,EA021-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22712,Ie16,EA021,No cognatic kin,EA021-9,,williams194041,,1940,EthnographicAtlas_1967_p94, +22713,Ie17,EA021,No cognatic kin,EA021-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +22714,Ie18,EA021,Bilateral kindreds,EA021-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +22715,Ie19,EA021,No cognatic kin,EA021-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +22716,Ie2,EA021,Bilateral kindreds,EA021-2,"A ""skewed kindred"" consisting of parts of both Ego's and his mother's patrilineages",schmitz1960,,1920,EthnographicAtlas_1967_p94, +22717,Ie20,EA021,No cognatic kin,EA021-9,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +22718,Ie21,EA021,No cognatic kin,EA021-9,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +22719,Ie22,EA021,No cognatic kin,EA021-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +22720,Ie23,EA021,No cognatic kin,EA021-9,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +22721,Ie24,EA021,No cognatic kin,EA021-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +22722,Ie25,EA021,No cognatic kin,EA021-9,,williamson1912,,1920,EthnographicAtlas_1967_p94, +22723,Ie26,EA021,No cognatic kin,EA021-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +22724,Ie27,EA021,No cognatic kin,EA021-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +22725,Ie28,EA021,No cognatic kin,EA021-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +22726,Ie29,EA021,No cognatic kin,EA021-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22727,Ie3,EA021,No cognatic kin,EA021-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22728,Ie30,EA021,No cognatic kin,EA021-9,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +22729,Ie31,EA021,No cognatic kin,EA021-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +22730,Ie32,EA021,Bilateral kindreds,EA021-2,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +22731,Ie33,EA021,No cognatic kin,EA021-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +22732,Ie34,EA021,Bilateral inferred,EA021-1,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +22733,Ie35,EA021,No cognatic kin,EA021-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +22734,Ie36,EA021,Bilateral inferred,EA021-1,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +22735,Ie37,EA021,No cognatic kin,EA021-9,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +22736,Ie38,EA021,No cognatic kin,EA021-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +22737,Ie39,EA021,No cognatic kin,EA021-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +22738,Ie4,EA021,No cognatic kin,EA021-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22739,Ie5,EA021,No cognatic kin,EA021-9,,williams1936,,1930,EthnographicAtlas_1967_p94, +22740,Ie6,EA021,No cognatic kin,EA021-9,,held1947,,1930,EthnographicAtlas_1967_p94, +22741,Ie7,EA021,No cognatic kin,EA021-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +22742,Ie8,EA021,No cognatic kin,EA021-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +22743,Ie9,EA021,No cognatic kin,EA021-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +22744,If1,EA021,Exogamous ramages,EA021-5,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22745,If10,EA021,No cognatic kin,EA021-9,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +22746,If11,EA021,No cognatic kin,EA021-9,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +22747,If12,EA021,No cognatic kin,EA021-9,,mason1954,,1940,EthnographicAtlas_1967_p98, +22748,If13,EA021,Bilateral kindreds,EA021-2,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +22749,If14,EA021,Ramages,EA021-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +22750,If15,EA021,No cognatic kin,EA021-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +22751,If16,EA021,No cognatic kin,EA021-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +22752,If17,EA021,No cognatic kin,EA021-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +22753,If2,EA021,Bilateral kindreds,EA021-2,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +22754,If3,EA021,Bilateral kindreds,EA021-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +22755,If4,EA021,Bilateral kindreds,EA021-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +22756,If5,EA021,No cognatic kin,EA021-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +22757,If6,EA021,No cognatic kin,EA021-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +22758,If7,EA021,Ramages,EA021-4,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +22759,If8,EA021,Bilateral inferred,EA021-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +22760,If9,EA021,No cognatic kin,EA021-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +22761,Ig1,EA021,No cognatic kin,EA021-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +22762,Ig10,EA021,No cognatic kin,EA021-9,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +22763,Ig11,EA021,No cognatic kin,EA021-9,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +22764,Ig12,EA021,Ramages,EA021-4,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +22765,Ig13,EA021,No cognatic kin,EA021-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +22766,Ig14,EA021,No cognatic kin,EA021-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +22767,Ig15,EA021,No cognatic kin,EA021-9,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +22768,Ig16,EA021,Ramages,EA021-4,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +22769,Ig17,EA021,No cognatic kin,EA021-9,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +22770,Ig18,EA021,Bilateral kindreds,EA021-2,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +22771,Ig19,EA021,Ramages,EA021-4,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +22772,Ig2,EA021,No cognatic kin,EA021-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +22773,Ig20,EA021,No cognatic kin,EA021-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +22774,Ig21,EA021,No cognatic kin,EA021-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +22775,Ig3,EA021,Bilateral kindreds,EA021-2,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +22776,Ig4,EA021,No cognatic kin,EA021-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +22777,Ig5,EA021,No cognatic kin,EA021-9,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +22778,Ig6,EA021,Ramages,EA021-4,,ivens1927,,1900,EthnographicAtlas_1967_p98, +22779,Ig7,EA021,Bilateral kindreds,EA021-2,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +22780,Ig8,EA021,Ramages,EA021-4,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +22781,Ig9,EA021,No cognatic kin,EA021-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +22782,Ih1,EA021,No cognatic kin,EA021-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +22783,Ih10,EA021,No cognatic kin,EA021-9,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22784,Ih11,EA021,No cognatic kin,EA021-9,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +22785,Ih12,EA021,No cognatic kin,EA021-9,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +22786,Ih13,EA021,No cognatic kin,EA021-9,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +22787,Ih14,EA021,No cognatic kin,EA021-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +22788,Ih2,EA021,No cognatic kin,EA021-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22789,Ih3,EA021,No cognatic kin,EA021-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +22790,Ih4,EA021,No cognatic kin,EA021-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22791,Ih5,EA021,No cognatic kin,EA021-9,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +22792,Ih6,EA021,Bilateral kindreds,EA021-2,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +22793,Ih7,EA021,No cognatic kin,EA021-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +22794,Ih8,EA021,No cognatic kin,EA021-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +22795,Ih9,EA021,No cognatic kin,EA021-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22796,Ii1,EA021,Exogamous ramages,EA021-5,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +22797,Ii10,EA021,Bilateral inferred,EA021-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +22798,Ii12,EA021,Ramages,EA021-4,"Or localized ""stem kindreds""",beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22799,Ii13,EA021,Exogamous ramages,EA021-5,,burrows1937,,1830,EthnographicAtlas_1967_p98, +22800,Ii14,EA021,Exogamous ramages,EA021-5,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +22801,Ii2,EA021,Bilateral kindreds,EA021-2,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +22802,Ii3,EA021,Bilateral kindreds,EA021-2,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +22803,Ii4,EA021,Exogamous ramages,EA021-5,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +22804,Ii5,EA021,Exogamous ramages,EA021-5,"The exogamous patrilineages of six generations' depth reported by Hogbin, who calls them ""joint families,"" are presumably ambilineal ramages, since affiliation is reported to be matrilineal for about 10 per cent of their membership",hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +22805,Ii6,EA021,Ramages,EA021-4,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +22806,Ii7,EA021,Bilateral kindreds,EA021-2,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +22807,Ii8,EA021,Ramages,EA021-4,,burrows1936,,1840,EthnographicAtlas_1967_p98, +22808,Ii9,EA021,Ramages,EA021-4,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +22809,Ij1,EA021,Exogamous ramages,EA021-5,,buck1934,,1820,EthnographicAtlas_1967_p98, +22810,Ij10,EA021,Bilateral inferred,EA021-1,Or very possibly ambilineal,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +22811,Ij2,EA021,Ramages,EA021-4,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +22812,Ij3,EA021,Bilateral inferred,EA021-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +22813,Ij4,EA021,Bilateral inferred,EA021-1,"Or very probably ramages (code ""4"")",buck1932a,,1850,EthnographicAtlas_1967_p102, +22814,Ij5,EA021,Ramages,EA021-4,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +22815,Ij6,EA021,Ramages,EA021-4,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +22816,Ij7,EA021,Ramages,EA021-4,"But called ""extended families"" by Buck",buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +22817,Ij8,EA021,Ramages,EA021-4,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +22818,Ij9,EA021,Ramages,EA021-4,,metraux1940,,1860,EthnographicAtlas_1967_p102, +22819,Na1,EA021,No cognatic kin,EA021-9,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +22820,Na10,EA021,Bilateral inferred,EA021-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +22821,Na11,EA021,Bilateral kindreds,EA021-2,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +22822,Na12,EA021,Bilateral kindreds,EA021-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +22823,Na13,EA021,Bilateral inferred,EA021-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +22824,Na14,EA021,Bilateral inferred,EA021-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +22825,Na15,EA021,Bilateral kindreds,EA021-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +22826,Na16,EA021,Bilateral inferred,EA021-1,,osgood1931,,1860,EthnographicAtlas_1967_p102, +22827,Na17,EA021,Bilateral kindreds,EA021-2,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22828,Na19,EA021,No cognatic kin,EA021-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +22829,Na2,EA021,Bilateral kindreds,EA021-2,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +22830,Na20,EA021,No cognatic kin,EA021-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +22831,Na21,EA021,Bilateral inferred,EA021-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +22832,Na22,EA021,Bilateral kindreds,EA021-2,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +22833,Na23,EA021,Bilateral inferred,EA021-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +22834,Na24,EA021,Bilateral inferred,EA021-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +22835,Na25,EA021,Bilateral inferred,EA021-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +22836,Na26,EA021,No cognatic kin,EA021-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +22837,Na27,EA021,No cognatic kin,EA021-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +22838,Na28,EA021,Bilateral inferred,EA021-1,,jenness1937,,1880,EthnographicAtlas_1967_p102, +22839,Na29,EA021,Bilateral inferred,EA021-1,,goddard1916,,1850,EthnographicAtlas_1967_p102, +22840,Na3,EA021,Bilateral inferred,EA021-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +22841,Na30,EA021,Bilateral inferred,EA021-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +22842,Na31,EA021,Bilateral inferred,EA021-1,"Or possibly quasi-lineages (code ""6"")",skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +22843,Na32,EA021,Bilateral inferred,EA021-1,"Or possibly quasi-lineages (code ""6"")",burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +22844,Na33,EA021,No cognatic kin,EA021-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +22845,Na34,EA021,Quasi-lineages,EA021-6,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +22846,Na35,EA021,No cognatic kin,EA021-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +22847,Na36,EA021,No cognatic kin,EA021-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +22848,Na37,EA021,No cognatic kin,EA021-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +22849,Na38,EA021,No cognatic kin,EA021-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +22850,Na39,EA021,No cognatic kin,EA021-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +22851,Na4,EA021,No cognatic kin,EA021-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +22852,Na40,EA021,No cognatic kin,EA021-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +22853,Na41,EA021,Bilateral inferred,EA021-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +22854,Na42,EA021,No cognatic kin,EA021-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +22855,Na43,EA021,Bilateral kindreds,EA021-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +22856,Na44,EA021,Bilateral kindreds,EA021-2,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +22857,Na45,EA021,Bilateral inferred,EA021-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +22858,Na5,EA021,Bilateral inferred,EA021-1,"Or possibly quasi-lineages (code ""6"")",lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +22859,Na6,EA021,Quasi-lineages,EA021-6,,lantis1946,,1930,EthnographicAtlas_1967_p102, +22860,Na7,EA021,Quasi-lineages,EA021-6,Patrilocal bands,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +22861,Na8,EA021,Bilateral inferred,EA021-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +22862,Na9,EA021,Quasi-lineages,EA021-6,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22863,Nb1,EA021,No cognatic kin,EA021-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +22864,Nb10,EA021,Ramages,EA021-4,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +22865,Nb11,EA021,Bilateral inferred,EA021-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +22866,Nb12,EA021,Bilateral inferred,EA021-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +22867,Nb13,EA021,Bilateral inferred,EA021-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +22868,Nb14,EA021,Ramages,EA021-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +22869,Nb15,EA021,Bilateral inferred,EA021-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +22870,Nb16,EA021,Bilateral inferred,EA021-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +22871,Nb17,EA021,Bilateral kindreds,EA021-2,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +22872,Nb18,EA021,Bilateral inferred,EA021-1,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +22873,Nb19,EA021,Bilateral inferred,EA021-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +22874,Nb2,EA021,Bilateral kindreds,EA021-2,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +22875,Nb20,EA021,Bilateral inferred,EA021-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +22876,Nb21,EA021,Bilateral inferred,EA021-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +22877,Nb22,EA021,No cognatic kin,EA021-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +22878,Nb23,EA021,Ramages,EA021-4,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +22879,Nb24,EA021,Ramages,EA021-4,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +22880,Nb25,EA021,Bilateral kindreds,EA021-2,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +22881,Nb26,EA021,Bilateral inferred,EA021-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +22882,Nb27,EA021,Bilateral inferred,EA021-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +22883,Nb28,EA021,Bilateral inferred,EA021-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +22884,Nb29,EA021,Bilateral inferred,EA021-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +22885,Nb3,EA021,Ramages,EA021-4,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +22886,Nb30,EA021,Bilateral inferred,EA021-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +22887,Nb31,EA021,No cognatic kin,EA021-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +22888,Nb32,EA021,Bilateral inferred,EA021-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +22889,Nb33,EA021,Bilateral inferred,EA021-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +22890,Nb34,EA021,Bilateral inferred,EA021-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +22891,Nb35,EA021,Bilateral inferred,EA021-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +22892,Nb36,EA021,Bilateral inferred,EA021-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +22893,Nb37,EA021,Bilateral inferred,EA021-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +22894,Nb38,EA021,Bilateral kindreds,EA021-2,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +22895,Nb39,EA021,Bilateral inferred,EA021-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +22896,Nb4,EA021,Bilateral inferred,EA021-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +22897,Nb5,EA021,No cognatic kin,EA021-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +22898,Nb6,EA021,No cognatic kin,EA021-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +22899,Nb7,EA021,No cognatic kin,EA021-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +22900,Nb8,EA021,No cognatic kin,EA021-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +22901,Nb9,EA021,Ramages,EA021-4,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +22902,Nc1,EA021,No cognatic kin,EA021-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +22903,Nc10,EA021,Bilateral inferred,EA021-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +22904,Nc11,EA021,Bilateral inferred,EA021-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +22905,Nc12,EA021,Bilateral inferred,EA021-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +22906,Nc13,EA021,Bilateral inferred,EA021-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +22907,Nc14,EA021,Bilateral inferred,EA021-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +22908,Nc15,EA021,Bilateral inferred,EA021-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +22909,Nc16,EA021,Bilateral inferred,EA021-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +22910,Nc17,EA021,Bilateral inferred,EA021-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +22911,Nc18,EA021,Bilateral inferred,EA021-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +22912,Nc19,EA021,Bilateral inferred,EA021-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +22913,Nc2,EA021,Bilateral inferred,EA021-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +22914,Nc20,EA021,Bilateral inferred,EA021-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +22915,Nc21,EA021,Bilateral inferred,EA021-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +22916,Nc22,EA021,No cognatic kin,EA021-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +22917,Nc23,EA021,No cognatic kin,EA021-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +22918,Nc24,EA021,No cognatic kin,EA021-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +22919,Nc25,EA021,No cognatic kin,EA021-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +22920,Nc26,EA021,No cognatic kin,EA021-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +22921,Nc27,EA021,Bilateral inferred,EA021-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +22922,Nc28,EA021,No cognatic kin,EA021-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +22923,Nc29,EA021,No cognatic kin,EA021-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +22924,Nc3,EA021,No cognatic kin,EA021-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +22925,Nc30,EA021,No cognatic kin,EA021-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +22926,Nc31,EA021,No cognatic kin,EA021-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +22927,Nc32,EA021,No cognatic kin,EA021-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +22928,Nc33,EA021,No cognatic kin,EA021-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +22929,Nc34,EA021,No cognatic kin,EA021-9,,meigs1939,,1880,EthnographicAtlas_1967_p106, +22930,Nc4,EA021,Bilateral inferred,EA021-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +22931,Nc5,EA021,No cognatic kin,EA021-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +22932,Nc6,EA021,No cognatic kin,EA021-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +22933,Nc7,EA021,Bilateral inferred,EA021-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +22934,Nc8,EA021,Bilateral inferred,EA021-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +22935,Nc9,EA021,Bilateral inferred,EA021-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +22936,Nd1,EA021,Bilateral kindreds,EA021-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +22937,Nd10,EA021,Bilateral inferred,EA021-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +22938,Nd11,EA021,Bilateral inferred,EA021-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +22939,Nd12,EA021,Bilateral kindreds,EA021-2,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +22940,Nd13,EA021,Bilateral kindreds,EA021-2,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +22941,Nd14,EA021,Bilateral inferred,EA021-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +22942,Nd15,EA021,Bilateral kindreds,EA021-2,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +22943,Nd16,EA021,Bilateral inferred,EA021-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +22944,Nd17,EA021,Bilateral inferred,EA021-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +22945,Nd18,EA021,Bilateral inferred,EA021-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +22946,Nd19,EA021,Bilateral inferred,EA021-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +22947,Nd2,EA021,Bilateral inferred,EA021-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +22948,Nd20,EA021,Bilateral kindreds,EA021-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +22949,Nd21,EA021,Bilateral inferred,EA021-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +22950,Nd22,EA021,Bilateral inferred,EA021-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +22951,Nd23,EA021,Bilateral inferred,EA021-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +22952,Nd24,EA021,Bilateral inferred,EA021-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +22953,Nd25,EA021,Bilateral inferred,EA021-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +22954,Nd26,EA021,Bilateral inferred,EA021-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +22955,Nd27,EA021,Bilateral inferred,EA021-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +22956,Nd28,EA021,Bilateral inferred,EA021-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +22957,Nd29,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +22958,Nd3,EA021,Quasi-lineages,EA021-6,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +22959,Nd30,EA021,Bilateral inferred,EA021-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +22960,Nd31,EA021,Bilateral inferred,EA021-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +22961,Nd32,EA021,Bilateral inferred,EA021-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +22962,Nd33,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +22963,Nd34,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +22964,Nd35,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +22965,Nd36,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +22966,Nd37,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +22967,Nd38,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +22968,Nd39,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +22969,Nd4,EA021,Bilateral inferred,EA021-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +22970,Nd40,EA021,Bilateral inferred,EA021-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +22971,Nd41,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +22972,Nd42,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +22973,Nd43,EA021,Bilateral inferred,EA021-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +22974,Nd44,EA021,Bilateral inferred,EA021-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +22975,Nd45,EA021,Bilateral inferred,EA021-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +22976,Nd46,EA021,Bilateral inferred,EA021-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +22977,Nd47,EA021,Bilateral inferred,EA021-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +22978,Nd48,EA021,Bilateral inferred,EA021-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +22979,Nd49,EA021,Bilateral inferred,EA021-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +22980,Nd5,EA021,Bilateral inferred,EA021-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +22981,Nd50,EA021,Bilateral inferred,EA021-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +22982,Nd51,EA021,Bilateral inferred,EA021-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +22983,Nd52,EA021,Bilateral inferred,EA021-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +22984,Nd53,EA021,Bilateral inferred,EA021-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +22985,Nd54,EA021,Bilateral inferred,EA021-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +22986,Nd55,EA021,Bilateral inferred,EA021-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +22987,Nd56,EA021,Bilateral inferred,EA021-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +22988,Nd57,EA021,Bilateral inferred,EA021-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +22989,Nd58,EA021,Bilateral inferred,EA021-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +22990,Nd59,EA021,Bilateral inferred,EA021-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +22991,Nd6,EA021,Bilateral inferred,EA021-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +22992,Nd60,EA021,Bilateral inferred,EA021-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +22993,Nd61,EA021,Bilateral inferred,EA021-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +22994,Nd62,EA021,Bilateral inferred,EA021-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +22995,Nd63,EA021,Bilateral inferred,EA021-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +22996,Nd64,EA021,Bilateral inferred,EA021-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +22997,Nd65,EA021,Bilateral inferred,EA021-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +22998,Nd66,EA021,Bilateral inferred,EA021-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +22999,Nd67,EA021,Bilateral inferred,EA021-1,,gifford1936,,1870,EthnographicAtlas_1967_p110, +23000,Nd7,EA021,Bilateral inferred,EA021-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +23001,Nd8,EA021,Bilateral kindreds,EA021-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +23002,Nd9,EA021,Bilateral kindreds,EA021-2,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +23003,Ne1,EA021,Bilateral inferred,EA021-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +23004,Ne10,EA021,Bilateral inferred,EA021-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +23005,Ne11,EA021,Bilateral inferred,EA021-1,"Possibly quasi-lineages (code ""6""), if the band is regarded as a quasi-lineage",denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +23006,Ne12,EA021,Bilateral inferred,EA021-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +23007,Ne13,EA021,Bilateral inferred,EA021-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +23008,Ne14,EA021,No cognatic kin,EA021-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +23009,Ne15,EA021,No cognatic kin,EA021-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +23010,Ne16,EA021,Bilateral inferred,EA021-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +23011,Ne17,EA021,Bilateral kindreds,EA021-2,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +23012,Ne18,EA021,Bilateral inferred,EA021-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +23013,Ne19,EA021,Bilateral inferred,EA021-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +23014,Ne2,EA021,Bilateral kindreds,EA021-2,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +23015,Ne20,EA021,Bilateral inferred,EA021-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +23016,Ne21,EA021,Bilateral inferred,EA021-1,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968, +23017,Ne3,EA021,Bilateral inferred,EA021-1,"Or quite possibly bilateral (inferred) (code ""1"")",gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +23018,Ne4,EA021,No cognatic kin,EA021-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +23019,Ne5,EA021,Bilateral kindreds,EA021-2,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +23020,Ne6,EA021,No cognatic kin,EA021-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +23021,Ne7,EA021,Bilateral inferred,EA021-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +23022,Ne8,EA021,Bilateral kindreds,EA021-2,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +23023,Ne9,EA021,Bilateral inferred,EA021-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +23024,Nf10,EA021,No cognatic kin,EA021-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +23025,Nf11,EA021,No cognatic kin,EA021-9,,whitman1937,,1870,EthnographicAtlas_1967_p114, +23026,Nf12,EA021,No cognatic kin,EA021-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +23027,Nf13,EA021,No cognatic kin,EA021-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23028,Nf14,EA021,Bilateral inferred,EA021-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +23029,Nf15,EA021,No cognatic kin,EA021-9,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +23030,Nf2,EA021,No cognatic kin,EA021-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +23031,Nf3,EA021,No cognatic kin,EA021-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +23032,Nf4,EA021,No cognatic kin,EA021-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +23033,Nf5,EA021,Bilateral kindreds,EA021-2,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +23034,Nf6,EA021,No cognatic kin,EA021-9,"Or perhaps 'bilateral (inferred)' (code ""1"")",dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +23035,Nf7,EA021,Bilateral kindreds,EA021-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23036,Nf8,EA021,Bilateral inferred,EA021-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +23037,Nf9,EA021,No cognatic kin,EA021-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +23038,Ng1,EA021,No cognatic kin,EA021-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +23039,Ng10,EA021,Bilateral kindreds,EA021-2,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +23040,Ng11,EA021,No cognatic kin,EA021-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +23041,Ng12,EA021,No cognatic kin,EA021-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +23042,Ng13,EA021,Bilateral inferred,EA021-1,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +23043,Ng14,EA021,No cognatic kin,EA021-9,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +23044,Ng15,EA021,Bilateral inferred,EA021-1,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +23045,Ng2,EA021,No cognatic kin,EA021-9,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +23046,Ng3,EA021,No cognatic kin,EA021-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +23047,Ng4,EA021,Bilateral inferred,EA021-1,Agamous patrilineages are possible,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +23048,Ng5,EA021,No cognatic kin,EA021-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +23049,Ng6,EA021,No cognatic kin,EA021-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +23050,Ng7,EA021,Bilateral inferred,EA021-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +23051,Ng8,EA021,No cognatic kin,EA021-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +23052,Ng9,EA021,Bilateral inferred,EA021-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +23053,Nh1,EA021,Bilateral inferred,EA021-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +23054,Nh10,EA021,Bilateral inferred,EA021-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +23055,Nh11,EA021,Bilateral inferred,EA021-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +23056,Nh12,EA021,No cognatic kin,EA021-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +23057,Nh13,EA021,No cognatic kin,EA021-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +23058,Nh14,EA021,No cognatic kin,EA021-9,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +23059,Nh15,EA021,Bilateral inferred,EA021-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +23060,Nh16,EA021,Bilateral inferred,EA021-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23061,Nh17,EA021,No cognatic kin,EA021-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +23062,Nh18,EA021,No cognatic kin,EA021-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23063,Nh19,EA021,No cognatic kin,EA021-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +23064,Nh2,EA021,No cognatic kin,EA021-9,,dozier1954,,1950,EthnographicAtlas_1967_p114, +23065,Nh20,EA021,No cognatic kin,EA021-9,,gifford1931,,1860,EthnographicAtlas_1967_p114, +23066,Nh21,EA021,No cognatic kin,EA021-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23067,Nh22,EA021,No cognatic kin,EA021-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +23068,Nh23,EA021,No cognatic kin,EA021-9,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +23069,Nh24,EA021,Bilateral inferred,EA021-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +23070,Nh25,EA021,No cognatic kin,EA021-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +23071,Nh26,EA021,Bilateral inferred,EA021-1,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +23072,Nh27,EA021,No cognatic kin,EA021-9,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +23073,Nh3,EA021,No cognatic kin,EA021-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +23074,Nh4,EA021,No cognatic kin,EA021-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +23075,Nh5,EA021,No cognatic kin,EA021-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +23076,Nh6,EA021,Bilateral inferred,EA021-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +23077,Nh7,EA021,No cognatic kin,EA021-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +23078,Nh8,EA021,No cognatic kin,EA021-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +23079,Nh9,EA021,Bilateral inferred,EA021-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +23080,Ni1,EA021,Bilateral kindreds,EA021-2,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +23081,Ni2,EA021,Bilateral inferred,EA021-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +23082,Ni3,EA021,Bilateral kindreds,EA021-2,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +23083,Ni4,EA021,Bilateral inferred,EA021-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +23084,Ni5,EA021,Bilateral inferred,EA021-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +23085,Ni6,EA021,Bilateral inferred,EA021-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +23086,Ni7,EA021,Bilateral inferred,EA021-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +23087,Ni8,EA021,Bilateral inferred,EA021-1,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +23088,Ni9,EA021,Bilateral inferred,EA021-1,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968, +23089,Nj1,EA021,Bilateral inferred,EA021-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23090,Nj10,EA021,Bilateral inferred,EA021-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23091,Nj11,EA021,Bilateral inferred,EA021-1,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +23092,Nj12,EA021,Bilateral inferred,EA021-1,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968, +23093,Nj13,EA021,Bilateral inferred,EA021-1,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +23094,Nj14,EA021,No cognatic kin,EA021-9,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +23095,Nj2,EA021,Ramages,EA021-4,"The ""calpulli"" since they were definitely agamous and nonunilineal, are classed as ramages",holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +23096,Nj3,EA021,Bilateral inferred,EA021-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +23097,Nj4,EA021,Bilateral inferred,EA021-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +23098,Nj5,EA021,Bilateral inferred,EA021-1,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +23099,Nj6,EA021,Bilateral kindreds,EA021-2,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +23100,Nj7,EA021,Bilateral inferred,EA021-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23101,Nj8,EA021,Bilateral inferred,EA021-1,,foster1948,,1500,EthnographicAtlas_1967_p118, +23102,Nj9,EA021,No cognatic kin,EA021-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +23103,Sa1,EA021,Bilateral inferred,EA021-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +23104,Sa10,EA021,No cognatic kin,EA021-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +23105,Sa11,EA021,No cognatic kin,EA021-9,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +23106,Sa12,EA021,Bilateral inferred,EA021-1,,stone1948,,1948,EthnographicAtlas_1967_p118, +23107,Sa13,EA021,No cognatic kin,EA021-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +23108,Sa14,EA021,No cognatic kin,EA021-9,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +23109,Sa15,EA021,?,EA021-NA,,,,,, +23110,Sa16,EA021,Bilateral inferred,EA021-1,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +23111,Sa17,EA021,No cognatic kin,EA021-9,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +23112,Sa2,EA021,No cognatic kin,EA021-9,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23113,Sa3,EA021,Bilateral inferred,EA021-1,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +23114,Sa4,EA021,Bilateral kindreds,EA021-2,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +23115,Sa5,EA021,No cognatic kin,EA021-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +23116,Sa6,EA021,No cognatic kin,EA021-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +23117,Sa7,EA021,Ramages,EA021-4,"Solien reports ""nonunilineal descent groups""",solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +23118,Sa8,EA021,No cognatic kin,EA021-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +23119,Sa9,EA021,Bilateral inferred,EA021-1,"Or possibly quasi-lineages (code ""6"")",conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +23120,Sb1,EA021,No cognatic kin,EA021-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +23121,Sb2,EA021,Bilateral inferred,EA021-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +23122,Sb3,EA021,Quasi-lineages,EA021-6,Assuming the core of a matrilocal extended family to be quasi- patrilineage,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +23123,Sb4,EA021,Bilateral inferred,EA021-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +23124,Sb5,EA021,Bilateral inferred,EA021-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +23125,Sb6,EA021,No cognatic kin,EA021-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +23126,Sb7,EA021,Bilateral inferred,EA021-1,"Or possibly quasi-lineages (code ""6"")",wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +23127,Sb8,EA021,?,EA021-NA,,,,,, +23128,Sb9,EA021,Bilateral kindreds,EA021-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +23129,Sc1,EA021,Bilateral inferred,EA021-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +23130,Sc10,EA021,No cognatic kin,EA021-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +23131,Sc11,EA021,Bilateral inferred,EA021-1,"Or possibly quasi-lineages (code ""6"")",simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +23132,Sc12,EA021,Bilateral inferred,EA021-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +23133,Sc13,EA021,Bilateral inferred,EA021-1,"Or quite possibly 'quasilineages' (code ""6"") from Wilbert's ""familias extensivas matrilineales""",riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +23134,Sc14,EA021,Bilateral inferred,EA021-1,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +23135,Sc15,EA021,Bilateral inferred,EA021-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +23136,Sc16,EA021,Bilateral inferred,EA021-1,"Or possibly quasi-lineages (code ""6"")",barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +23137,Sc17,EA021,Bilateral inferred,EA021-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +23138,Sc18,EA021,No cognatic kin,EA021-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +23139,Sc2,EA021,Bilateral inferred,EA021-1,,leedsnd,,1950,EthnographicAtlas_1967_p118, +23140,Sc3,EA021,Quasi-lineages,EA021-6,From statement that brothers tend to live together in a settlement,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +23141,Sc4,EA021,Bilateral inferred,EA021-1,"The ""extended families"" are conceivably localized matrilineages",wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +23142,Sc5,EA021,Bilateral inferred,EA021-1,"Or quite possibly quasi-lineages (code ""6"")",farabee1918,,1900,EthnographicAtlas_1967_p118, +23143,Sc6,EA021,No cognatic kin,EA021-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23144,Sc7,EA021,Bilateral inferred,EA021-1,"Or possibly quasi-lineages (code ""6"")",wilbert1959b,,1950,EthnographicAtlas_1967_p118, +23145,Sc8,EA021,Bilateral inferred,EA021-1,"Or perhaps quasi-lineages (code ""6"")",wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +23146,Sc9,EA021,Bilateral inferred,EA021-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +23147,Sd1,EA021,No cognatic kin,EA021-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23148,Sd2,EA021,Bilateral inferred,EA021-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +23149,Sd3,EA021,No cognatic kin,EA021-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +23150,Sd4,EA021,Bilateral inferred,EA021-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +23151,Sd5,EA021,No cognatic kin,EA021-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +23152,Sd6,EA021,Bilateral inferred,EA021-1,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +23153,Sd7,EA021,Bilateral inferred,EA021-1,,fock1963,,1950,EthnographicAtlas_1967_p118, +23154,Sd8,EA021,Bilateral inferred,EA021-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +23155,Sd9,EA021,Bilateral inferred,EA021-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23156,Se1,EA021,Bilateral inferred,EA021-1,"Possibly 'no cognatic kin' (code ""9""), though descent is specifically reported to be bilateral",holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +23157,Se10,EA021,No cognatic kin,EA021-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +23158,Se11,EA021,Bilateral inferred,EA021-1,,prost1965,,1960,EthnographicAtlas_1967_p122, +23159,Se12,EA021,No cognatic kin,EA021-9,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +23160,Se2,EA021,No cognatic kin,EA021-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +23161,Se3,EA021,Bilateral kindreds,EA021-2,Description of patrifamilies suggests quasi-patrilineages,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +23162,Se4,EA021,No cognatic kin,EA021-9,,fejos1943,,1940,EthnographicAtlas_1967_p118, +23163,Se5,EA021,No cognatic kin,EA021-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +23164,Se6,EA021,No cognatic kin,EA021-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +23165,Se7,EA021,Bilateral inferred,EA021-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23166,Se8,EA021,Bilateral inferred,EA021-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +23167,Se9,EA021,Bilateral inferred,EA021-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +23168,Sf1,EA021,Bilateral inferred,EA021-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +23169,Sf2,EA021,No cognatic kin,EA021-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +23170,Sf3,EA021,Bilateral kindreds,EA021-2,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +23171,Sf4,EA021,Bilateral inferred,EA021-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +23172,Sf5,EA021,Bilateral inferred,EA021-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +23173,Sf6,EA021,Bilateral inferred,EA021-1,"Possibly no cognatic kin groups (code ""9"") in view of reported matrilineal succession",ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +23174,Sf7,EA021,Bilateral inferred,EA021-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +23175,Sf8,EA021,Bilateral inferred,EA021-1,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +23176,Sf9,EA021,Bilateral inferred,EA021-1,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +23177,Sg1,EA021,Bilateral inferred,EA021-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +23178,Sg2,EA021,No cognatic kin,EA021-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23179,Sg3,EA021,Bilateral inferred,EA021-1,"Entry would be 'no cognatic kin groups' (code ""9"") if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock 1965c)",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +23180,Sg4,EA021,Bilateral inferred,EA021-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +23181,Sg5,EA021,Bilateral inferred,EA021-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23182,Sh1,EA021,Bilateral inferred,EA021-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +23183,Sh2,EA021,Ambilineal,EA021-3,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +23184,Sh3,EA021,Bilateral inferred,EA021-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +23185,Sh4,EA021,Bilateral inferred,EA021-1,,oberg1949,,1940,EthnographicAtlas_1967_p122, +23186,Sh5,EA021,Bilateral inferred,EA021-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +23187,Sh6,EA021,Bilateral inferred,EA021-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +23188,Sh7,EA021,Bilateral inferred,EA021-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +23189,Sh8,EA021,Bilateral inferred,EA021-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +23190,Sh9,EA021,Bilateral inferred,EA021-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +23191,Si1,EA021,No cognatic kin,EA021-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23192,Si10,EA021,Bilateral inferred,EA021-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +23193,Si2,EA021,Quasi-lineages,EA021-6,"An inference from the ""tendency for patrilineally related males to live together"" and from the statement that ""the establishment of a patrilineal lineage"" was prevented by the high death rate",levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +23194,Si3,EA021,Quasi-lineages,EA021-6,Patrifamilies strongly suggest quasi-lineages,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23195,Si4,EA021,Bilateral inferred,EA021-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +23196,Si5,EA021,Bilateral inferred,EA021-1,"Or possibly quasi-lineages (code ""6"")",oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +23197,Si6,EA021,Bilateral inferred,EA021-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +23198,Si7,EA021,Bilateral inferred,EA021-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +23199,Si8,EA021,Bilateral inferred,EA021-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +23200,Si9,EA021,Bilateral inferred,EA021-1,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +23201,Sj1,EA021,Bilateral kindreds,EA021-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +23202,Sj10,EA021,Bilateral inferred,EA021-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23203,Sj11,EA021,No cognatic kin,EA021-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +23204,Sj2,EA021,No cognatic kin,EA021-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +23205,Sj3,EA021,Bilateral inferred,EA021-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +23206,Sj4,EA021,No cognatic kin,EA021-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +23207,Sj5,EA021,Bilateral inferred,EA021-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +23208,Sj6,EA021,Bilateral inferred,EA021-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23209,Sj7,EA021,No cognatic kin,EA021-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +23210,Sj8,EA021,Bilateral inferred,EA021-1,Inference from extended families with communal dwellings,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +23211,Sj9,EA021,Bilateral inferred,EA021-1,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +23212,ch12,EA021,Bilateral kindreds,EA021-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +23213,ch13,EA021,Bilateral kindreds,EA021-2,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +23214,ch14,EA021,Bilateral kindreds,EA021-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +23215,ch15,EA021,Bilateral kindreds,EA021-2,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +23216,ch16,EA021,Bilateral inferred,EA021-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +23217,ch17,EA021,Bilateral kindreds,EA021-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +23218,ch18,EA021,Bilateral inferred,EA021-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +23219,ch19,EA021,Bilateral inferred,EA021-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +23220,ch20,EA021,Bilateral kindreds,EA021-2,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +23221,ch21,EA021,Bilateral kindreds,EA021-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +23222,ch22,EA021,Bilateral kindreds,EA021-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +23223,ch23,EA021,Bilateral kindreds,EA021-2,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +23224,ch24,EA021,Bilateral inferred,EA021-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +23225,ch25,EA021,Bilateral kindreds,EA021-2,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +23226,ch26,EA021,Bilateral kindreds,EA021-2,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +23227,ch27,EA021,Bilateral kindreds,EA021-2,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +23228,ch28,EA021,Bilateral inferred,EA021-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +23229,ec12,EA021,Quasi-lineages,EA021-6,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +23230,ec13,EA021,Bilateral kindreds,EA021-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +23231,ec14,EA021,Bilateral kindreds,EA021-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +23232,ec15,EA021,Bilateral inferred,EA021-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +23233,ec16,EA021,No cognatic kin,EA021-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +23234,ec17,EA021,No cognatic kin,EA021-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +23235,ec18,EA021,No cognatic kin,EA021-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +23236,ec19,EA021,No cognatic kin,EA021-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +23237,ec20,EA021,No cognatic kin,EA021-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +23238,ec21,EA021,No cognatic kin,EA021-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +23239,Aa1,EA022,No secondary groups,EA022-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +23240,Aa2,EA022,No secondary groups,EA022-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +23241,Aa3,EA022,No secondary groups,EA022-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +23242,Aa4,EA022,No secondary groups,EA022-9,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +23243,Aa5,EA022,No secondary groups,EA022-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +23244,Aa6,EA022,No secondary groups,EA022-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +23245,Aa7,EA022,No secondary groups,EA022-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +23246,Aa8,EA022,No secondary groups,EA022-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +23247,Aa9,EA022,No secondary groups,EA022-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +23248,Ab1,EA022,No secondary groups,EA022-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +23249,Ab10,EA022,No secondary groups,EA022-9,,hunter1936,,1936,EthnographicAtlas_1967_p62, +23250,Ab11,EA022,No secondary groups,EA022-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +23251,Ab12,EA022,No secondary groups,EA022-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +23252,Ab13,EA022,No secondary groups,EA022-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +23253,Ab14,EA022,No secondary groups,EA022-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +23254,Ab15,EA022,No secondary groups,EA022-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +23255,Ab16,EA022,No secondary groups,EA022-9,,earthy1933,,1930,EthnographicAtlas_1967_p62, +23256,Ab17,EA022,No secondary groups,EA022-9,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +23257,Ab18,EA022,No secondary groups,EA022-9,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +23258,Ab19,EA022,No secondary groups,EA022-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +23259,Ab2,EA022,No secondary groups,EA022-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +23260,Ab20,EA022,No secondary groups,EA022-9,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +23261,Ab21a,EA022,No secondary groups,EA022-9,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +23262,Ab21b,EA022,No secondary groups,EA022-9,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +23263,Ab22,EA022,No secondary groups,EA022-9,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +23264,Ab3,EA022,Kindreds,EA022-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +23265,Ab4,EA022,No secondary groups,EA022-9,,junod1927,,1920,EthnographicAtlas_1967_p62, +23266,Ab5,EA022,No secondary groups,EA022-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +23267,Ab6,EA022,No secondary groups,EA022-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +23268,Ab7,EA022,No secondary groups,EA022-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +23269,Ab8,EA022,No secondary groups,EA022-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +23270,Ab9,EA022,No secondary groups,EA022-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +23271,Ac1,EA022,No secondary groups,EA022-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +23272,Ac10,EA022,No secondary groups,EA022-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +23273,Ac11,EA022,No secondary groups,EA022-9,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +23274,Ac12,EA022,No secondary groups,EA022-9,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +23275,Ac13,EA022,No secondary groups,EA022-9,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +23276,Ac14,EA022,No secondary groups,EA022-9,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +23277,Ac15,EA022,No secondary groups,EA022-9,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +23278,Ac16,EA022,No secondary groups,EA022-9,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +23279,Ac17,EA022,No secondary groups,EA022-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +23280,Ac18,EA022,No secondary groups,EA022-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +23281,Ac19,EA022,No secondary groups,EA022-9,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +23282,Ac2,EA022,No secondary groups,EA022-9,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +23283,Ac20,EA022,No secondary groups,EA022-9,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +23284,Ac21,EA022,No secondary groups,EA022-9,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +23285,Ac22,EA022,No secondary groups,EA022-9,,mertens1935,,1930,EthnographicAtlas_1967_p62, +23286,Ac23,EA022,No secondary groups,EA022-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +23287,Ac24,EA022,No secondary groups,EA022-9,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +23288,Ac25,EA022,No secondary groups,EA022-9,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +23289,Ac26,EA022,No secondary groups,EA022-9,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +23290,Ac27,EA022,No secondary groups,EA022-9,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +23291,Ac28,EA022,No secondary groups,EA022-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +23292,Ac29,EA022,No secondary groups,EA022-9,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +23293,Ac3,EA022,No secondary groups,EA022-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +23294,Ac30,EA022,No secondary groups,EA022-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +23295,Ac31,EA022,No secondary groups,EA022-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +23296,Ac32,EA022,No secondary groups,EA022-9,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +23297,Ac33,EA022,No secondary groups,EA022-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +23298,Ac34,EA022,No secondary groups,EA022-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +23299,Ac35,EA022,No secondary groups,EA022-9,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +23300,Ac36,EA022,No secondary groups,EA022-9,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +23301,Ac37,EA022,No secondary groups,EA022-9,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +23302,Ac38,EA022,No secondary groups,EA022-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +23303,Ac39,EA022,No secondary groups,EA022-9,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +23304,Ac4,EA022,No secondary groups,EA022-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +23305,Ac40,EA022,No secondary groups,EA022-9,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +23306,Ac41,EA022,No secondary groups,EA022-9,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +23307,Ac42,EA022,No secondary groups,EA022-9,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +23308,Ac43,EA022,No secondary groups,EA022-9,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +23309,Ac5,EA022,No secondary groups,EA022-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +23310,Ac6,EA022,No secondary groups,EA022-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +23311,Ac7,EA022,No secondary groups,EA022-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +23312,Ac8,EA022,No secondary groups,EA022-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +23313,Ac9,EA022,No secondary groups,EA022-9,There are vestigial patrisibs,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +23314,Ad1,EA022,No secondary groups,EA022-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +23315,Ad10,EA022,No secondary groups,EA022-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +23316,Ad11,EA022,No secondary groups,EA022-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +23317,Ad12,EA022,No secondary groups,EA022-9,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +23318,Ad13,EA022,No secondary groups,EA022-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +23319,Ad14,EA022,No secondary groups,EA022-9,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +23320,Ad15,EA022,No secondary groups,EA022-9,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +23321,Ad16,EA022,No secondary groups,EA022-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +23322,Ad17,EA022,No secondary groups,EA022-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +23323,Ad18,EA022,No secondary groups,EA022-9,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +23324,Ad19,EA022,No secondary groups,EA022-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +23325,Ad2,EA022,No secondary groups,EA022-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +23326,Ad20,EA022,No secondary groups,EA022-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +23327,Ad21,EA022,No secondary groups,EA022-9,,maurice193538,,1930,EthnographicAtlas_1967_p66, +23328,Ad22,EA022,No secondary groups,EA022-9,The incompletely exogamous patrisibs are better classed as ramages since affiliation is to a considerable extent ambilineal,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +23329,Ad23,EA022,No secondary groups,EA022-9,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +23330,Ad24,EA022,No secondary groups,EA022-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +23331,Ad25,EA022,No secondary groups,EA022-9,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +23332,Ad26,EA022,No secondary groups,EA022-9,,sick1916,,1910,EthnographicAtlas_1967_p66, +23333,Ad27,EA022,No secondary groups,EA022-9,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +23334,Ad28,EA022,No secondary groups,EA022-9,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +23335,Ad29,EA022,No secondary groups,EA022-9,But with patrilineal bias,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +23336,Ad3,EA022,No secondary groups,EA022-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +23337,Ad30,EA022,No secondary groups,EA022-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +23338,Ad31,EA022,No secondary groups,EA022-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +23339,Ad32,EA022,No secondary groups,EA022-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +23340,Ad33,EA022,No secondary groups,EA022-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +23341,Ad34,EA022,No secondary groups,EA022-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +23342,Ad35,EA022,No secondary groups,EA022-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +23343,Ad36,EA022,No secondary groups,EA022-9,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +23344,Ad37,EA022,No secondary groups,EA022-9,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +23345,Ad38,EA022,No secondary groups,EA022-9,Inferential from distributional evidence,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +23346,Ad39,EA022,No secondary groups,EA022-9,,gray1963,,1950,EthnographicAtlas_1967_p66, +23347,Ad4,EA022,No secondary groups,EA022-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +23348,Ad40,EA022,No secondary groups,EA022-9,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +23349,Ad41,EA022,No secondary groups,EA022-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +23350,Ad42,EA022,No secondary groups,EA022-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +23351,Ad43,EA022,No secondary groups,EA022-9,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +23352,Ad44,EA022,No secondary groups,EA022-9,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +23353,Ad45,EA022,No secondary groups,EA022-9,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +23354,Ad46,EA022,No secondary groups,EA022-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +23355,Ad47,EA022,No secondary groups,EA022-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +23356,Ad48,EA022,No secondary groups,EA022-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +23357,Ad49,EA022,No secondary groups,EA022-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +23358,Ad5,EA022,No secondary groups,EA022-9,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +23359,Ad50,EA022,No secondary groups,EA022-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +23360,Ad51,EA022,No secondary groups,EA022-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +23361,Ad6,EA022,No secondary groups,EA022-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +23362,Ad7,EA022,No secondary groups,EA022-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +23363,Ad8,EA022,No secondary groups,EA022-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +23364,Ad9,EA022,No secondary groups,EA022-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +23365,Ae1,EA022,No secondary groups,EA022-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +23366,Ae10,EA022,No secondary groups,EA022-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +23367,Ae11,EA022,No secondary groups,EA022-9,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +23368,Ae12,EA022,No secondary groups,EA022-9,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +23369,Ae13,EA022,No secondary groups,EA022-9,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +23370,Ae14,EA022,No secondary groups,EA022-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +23371,Ae15,EA022,No secondary groups,EA022-9,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +23372,Ae16,EA022,No secondary groups,EA022-9,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +23373,Ae17,EA022,No secondary groups,EA022-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +23374,Ae18,EA022,No secondary groups,EA022-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +23375,Ae19,EA022,No secondary groups,EA022-9,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +23376,Ae2,EA022,No secondary groups,EA022-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +23377,Ae20,EA022,No secondary groups,EA022-9,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +23378,Ae21,EA022,No secondary groups,EA022-9,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +23379,Ae22,EA022,No secondary groups,EA022-9,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +23380,Ae23,EA022,No secondary groups,EA022-9,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +23381,Ae24,EA022,No secondary groups,EA022-9,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +23382,Ae25,EA022,No secondary groups,EA022-9,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +23383,Ae26,EA022,No secondary groups,EA022-9,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +23384,Ae27,EA022,No secondary groups,EA022-9,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +23385,Ae28,EA022,No secondary groups,EA022-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +23386,Ae29,EA022,No secondary groups,EA022-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +23387,Ae3,EA022,No secondary groups,EA022-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +23388,Ae30,EA022,No secondary groups,EA022-9,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +23389,Ae31,EA022,No secondary groups,EA022-9,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +23390,Ae32,EA022,No secondary groups,EA022-9,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +23391,Ae33,EA022,No secondary groups,EA022-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +23392,Ae34,EA022,No secondary groups,EA022-9,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +23393,Ae35,EA022,No secondary groups,EA022-9,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +23394,Ae36,EA022,No secondary groups,EA022-9,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +23395,Ae37,EA022,No secondary groups,EA022-9,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +23396,Ae38,EA022,No secondary groups,EA022-9,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +23397,Ae39,EA022,No secondary groups,EA022-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +23398,Ae4,EA022,No secondary groups,EA022-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +23399,Ae40,EA022,No secondary groups,EA022-9,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +23400,Ae41,EA022,No secondary groups,EA022-9,,andersson1953,,1940,EthnographicAtlas_1967_p66, +23401,Ae42,EA022,No secondary groups,EA022-9,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +23402,Ae43,EA022,No secondary groups,EA022-9,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +23403,Ae44,EA022,?,EA022-NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +23404,Ae45,EA022,No secondary groups,EA022-9,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +23405,Ae46,EA022,No secondary groups,EA022-9,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +23406,Ae47,EA022,No secondary groups,EA022-9,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +23407,Ae48,EA022,No secondary groups,EA022-9,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +23408,Ae49,EA022,No secondary groups,EA022-9,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +23409,Ae5,EA022,No secondary groups,EA022-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +23410,Ae50,EA022,No secondary groups,EA022-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +23411,Ae51,EA022,No secondary groups,EA022-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +23412,Ae52,EA022,No secondary groups,EA022-9,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +23413,Ae53,EA022,No secondary groups,EA022-9,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +23414,Ae54,EA022,No secondary groups,EA022-9,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +23415,Ae55,EA022,No secondary groups,EA022-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +23416,Ae56,EA022,No secondary groups,EA022-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +23417,Ae57,EA022,No secondary groups,EA022-9,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +23418,Ae58,EA022,No secondary groups,EA022-9,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +23419,Ae59,EA022,No secondary groups,EA022-9,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +23420,Ae6,EA022,No secondary groups,EA022-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +23421,Ae7,EA022,No secondary groups,EA022-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +23422,Ae8,EA022,No secondary groups,EA022-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +23423,Ae9,EA022,No secondary groups,EA022-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +23424,Af1,EA022,No secondary groups,EA022-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +23425,Af10,EA022,No secondary groups,EA022-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +23426,Af11,EA022,No secondary groups,EA022-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +23427,Af12,EA022,No secondary groups,EA022-9,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +23428,Af13,EA022,No secondary groups,EA022-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +23429,Af14,EA022,No secondary groups,EA022-9,"From a recent report, matrilineages have apparently become converted into ambilineal ramages",hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +23430,Af15,EA022,No secondary groups,EA022-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +23431,Af16,EA022,No secondary groups,EA022-9,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +23432,Af17,EA022,?,EA022-NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +23433,Af18,EA022,No secondary groups,EA022-9,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +23434,Af19,EA022,No secondary groups,EA022-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +23435,Af2,EA022,No secondary groups,EA022-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +23436,Af20,EA022,No secondary groups,EA022-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +23437,Af21,EA022,No secondary groups,EA022-9,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +23438,Af22,EA022,Kindreds,EA022-2,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +23439,Af23,EA022,No secondary groups,EA022-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +23440,Af24,EA022,No secondary groups,EA022-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +23441,Af25,EA022,No secondary groups,EA022-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +23442,Af26,EA022,No secondary groups,EA022-9,"Descent is ambilineal, depending mainly on the mode of marriage",bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +23443,Af27,EA022,No secondary groups,EA022-9,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +23444,Af28,EA022,No secondary groups,EA022-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +23445,Af29,EA022,No secondary groups,EA022-9,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +23446,Af3,EA022,No secondary groups,EA022-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +23447,Af30,EA022,No secondary groups,EA022-9,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +23448,Af31,EA022,No secondary groups,EA022-9,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +23449,Af32,EA022,No secondary groups,EA022-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23450,Af33,EA022,No secondary groups,EA022-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23451,Af34,EA022,No secondary groups,EA022-9,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23452,Af35,EA022,No secondary groups,EA022-9,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +23453,Af36,EA022,No secondary groups,EA022-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +23454,Af37,EA022,No secondary groups,EA022-9,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +23455,Af38,EA022,No secondary groups,EA022-9,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +23456,Af39,EA022,No secondary groups,EA022-9,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +23457,Af4,EA022,No secondary groups,EA022-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +23458,Af40,EA022,No secondary groups,EA022-9,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +23459,Af41,EA022,No secondary groups,EA022-9,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +23460,Af42,EA022,No secondary groups,EA022-9,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +23461,Af43,EA022,No secondary groups,EA022-9,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +23462,Af44,EA022,No secondary groups,EA022-9,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +23463,Af45,EA022,No secondary groups,EA022-9,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +23464,Af46,EA022,No secondary groups,EA022-9,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +23465,Af47,EA022,No secondary groups,EA022-9,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +23466,Af48,EA022,No secondary groups,EA022-9,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +23467,Af49,EA022,No secondary groups,EA022-9,,schwab1947,,1940,EthnographicAtlas_1967_p70, +23468,Af5,EA022,No secondary groups,EA022-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +23469,Af50,EA022,No secondary groups,EA022-9,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +23470,Af51,EA022,No secondary groups,EA022-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +23471,Af52,EA022,No secondary groups,EA022-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +23472,Af53,EA022,No secondary groups,EA022-9,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +23473,Af54,EA022,No secondary groups,EA022-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +23474,Af55,EA022,No secondary groups,EA022-9,"Since children are affiliated with the mother's group in cases of uxorilocal residence, descent groups are in a measure ambilineal",dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +23475,Af56,EA022,No secondary groups,EA022-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +23476,Af57,EA022,No secondary groups,EA022-9,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +23477,Af58,EA022,No secondary groups,EA022-9,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +23478,Af6,EA022,No secondary groups,EA022-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +23479,Af7,EA022,No secondary groups,EA022-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +23480,Af8,EA022,No secondary groups,EA022-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +23481,Af9,EA022,No secondary groups,EA022-9,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +23482,Ag1,EA022,No secondary groups,EA022-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +23483,Ag10,EA022,No secondary groups,EA022-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +23484,Ag11,EA022,No secondary groups,EA022-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +23485,Ag12,EA022,No secondary groups,EA022-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +23486,Ag13,EA022,No secondary groups,EA022-9,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +23487,Ag14,EA022,No secondary groups,EA022-9,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +23488,Ag15,EA022,No secondary groups,EA022-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +23489,Ag16,EA022,No secondary groups,EA022-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +23490,Ag17,EA022,No secondary groups,EA022-9,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +23491,Ag18,EA022,No secondary groups,EA022-9,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +23492,Ag19,EA022,No secondary groups,EA022-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +23493,Ag2,EA022,No secondary groups,EA022-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +23494,Ag20,EA022,No secondary groups,EA022-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +23495,Ag21,EA022,No secondary groups,EA022-9,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +23496,Ag22,EA022,No secondary groups,EA022-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +23497,Ag23,EA022,No secondary groups,EA022-9,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +23498,Ag24,EA022,No secondary groups,EA022-9,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +23499,Ag25,EA022,No secondary groups,EA022-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +23500,Ag26,EA022,No secondary groups,EA022-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +23501,Ag27,EA022,No secondary groups,EA022-9,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +23502,Ag28,EA022,?,EA022-NA,,,,,, +23503,Ag29,EA022,No secondary groups,EA022-9,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +23504,Ag3,EA022,No secondary groups,EA022-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +23505,Ag30,EA022,No secondary groups,EA022-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +23506,Ag31,EA022,No secondary groups,EA022-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +23507,Ag32,EA022,No secondary groups,EA022-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +23508,Ag33,EA022,?,EA022-NA,,,,,, +23509,Ag34,EA022,No secondary groups,EA022-9,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +23510,Ag35,EA022,No secondary groups,EA022-9,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +23511,Ag36,EA022,No secondary groups,EA022-9,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +23512,Ag37,EA022,No secondary groups,EA022-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +23513,Ag38,EA022,No secondary groups,EA022-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +23514,Ag39,EA022,No secondary groups,EA022-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +23515,Ag4,EA022,No secondary groups,EA022-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +23516,Ag40,EA022,No secondary groups,EA022-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +23517,Ag41,EA022,No secondary groups,EA022-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +23518,Ag42,EA022,No secondary groups,EA022-9,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +23519,Ag43,EA022,No secondary groups,EA022-9,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +23520,Ag44,EA022,No secondary groups,EA022-9,There are exogamous ramages in the chiefly class,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +23521,Ag45,EA022,No secondary groups,EA022-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +23522,Ag46,EA022,No secondary groups,EA022-9,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +23523,Ag47,EA022,No secondary groups,EA022-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +23524,Ag48,EA022,No secondary groups,EA022-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +23525,Ag49,EA022,No secondary groups,EA022-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +23526,Ag5,EA022,No secondary groups,EA022-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +23527,Ag50,EA022,No secondary groups,EA022-9,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +23528,Ag51,EA022,No secondary groups,EA022-9,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +23529,Ag52,EA022,No secondary groups,EA022-9,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +23530,Ag53,EA022,No secondary groups,EA022-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +23531,Ag54,EA022,No secondary groups,EA022-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +23532,Ag6,EA022,No secondary groups,EA022-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +23533,Ag7,EA022,No secondary groups,EA022-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +23534,Ag8,EA022,No secondary groups,EA022-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +23535,Ag9,EA022,No secondary groups,EA022-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +23536,Ah1,EA022,No secondary groups,EA022-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23537,Ah10,EA022,No secondary groups,EA022-9,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +23538,Ah11,EA022,No secondary groups,EA022-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +23539,Ah12,EA022,No secondary groups,EA022-9,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +23540,Ah13,EA022,?,EA022-NA,,,,,, +23541,Ah14,EA022,No secondary groups,EA022-9,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +23542,Ah15,EA022,No secondary groups,EA022-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +23543,Ah16,EA022,No secondary groups,EA022-9,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +23544,Ah17,EA022,No secondary groups,EA022-9,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +23545,Ah18,EA022,No secondary groups,EA022-9,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +23546,Ah19,EA022,No secondary groups,EA022-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +23547,Ah2,EA022,No secondary groups,EA022-9,,meek1931a,,1920,EthnographicAtlas_1967_p74, +23548,Ah20,EA022,No secondary groups,EA022-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +23549,Ah21,EA022,No secondary groups,EA022-9,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23550,Ah22,EA022,No secondary groups,EA022-9,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +23551,Ah23,EA022,No secondary groups,EA022-9,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23552,Ah24,EA022,No secondary groups,EA022-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23553,Ah25,EA022,No secondary groups,EA022-9,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23554,Ah26,EA022,No secondary groups,EA022-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23555,Ah27,EA022,No secondary groups,EA022-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23556,Ah28,EA022,?,EA022-NA,Descent may possibly be ambilineal rather than double,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +23557,Ah29,EA022,No secondary groups,EA022-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23558,Ah3,EA022,No secondary groups,EA022-9,A form of ramage resulted from ambilocal residence (virilocal and avunculocal) and the ambilineal affiliation associated therewith,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +23559,Ah30,EA022,No secondary groups,EA022-9,,meek1931b,,1920,EthnographicAtlas_1967_p74, +23560,Ah31,EA022,No secondary groups,EA022-9,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +23561,Ah32,EA022,No secondary groups,EA022-9,"Inferred from the attested absence of either patrilineal or matrilineal kin groups and from the report that children belong to the father's group if a high bride-price has been paid, otherwise to the group of their MoBr",meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23562,Ah33,EA022,No secondary groups,EA022-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +23563,Ah34,EA022,No secondary groups,EA022-9,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +23564,Ah35,EA022,No secondary groups,EA022-9,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23565,Ah36,EA022,No secondary groups,EA022-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +23566,Ah37,EA022,No secondary groups,EA022-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23567,Ah38,EA022,No secondary groups,EA022-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +23568,Ah39,EA022,No secondary groups,EA022-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +23569,Ah4,EA022,Kindreds,EA022-2,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +23570,Ah5,EA022,No secondary groups,EA022-9,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +23571,Ah6,EA022,No secondary groups,EA022-9,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +23572,Ah7,EA022,No secondary groups,EA022-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +23573,Ah8,EA022,No secondary groups,EA022-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +23574,Ah9,EA022,No secondary groups,EA022-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +23575,Ai1,EA022,No secondary groups,EA022-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +23576,Ai10,EA022,No secondary groups,EA022-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +23577,Ai11,EA022,No secondary groups,EA022-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +23578,Ai12,EA022,No secondary groups,EA022-9,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +23579,Ai13,EA022,No secondary groups,EA022-9,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +23580,Ai14,EA022,No secondary groups,EA022-9,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +23581,Ai15,EA022,No secondary groups,EA022-9,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +23582,Ai16,EA022,?,EA022-NA,,,,,, +23583,Ai17,EA022,No secondary groups,EA022-9,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +23584,Ai18,EA022,?,EA022-NA,,,,,, +23585,Ai19,EA022,No secondary groups,EA022-9,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +23586,Ai2,EA022,No secondary groups,EA022-9,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +23587,Ai20,EA022,No secondary groups,EA022-9,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +23588,Ai21,EA022,No secondary groups,EA022-9,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +23589,Ai22,EA022,No secondary groups,EA022-9,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +23590,Ai23,EA022,No secondary groups,EA022-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +23591,Ai24,EA022,No secondary groups,EA022-9,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +23592,Ai25,EA022,No secondary groups,EA022-9,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +23593,Ai26,EA022,No secondary groups,EA022-9,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +23594,Ai27,EA022,No secondary groups,EA022-9,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +23595,Ai28,EA022,No secondary groups,EA022-9,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +23596,Ai29,EA022,No secondary groups,EA022-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +23597,Ai3,EA022,No secondary groups,EA022-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +23598,Ai30,EA022,No secondary groups,EA022-9,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +23599,Ai31,EA022,No secondary groups,EA022-9,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +23600,Ai32,EA022,No secondary groups,EA022-9,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +23601,Ai33,EA022,No secondary groups,EA022-9,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +23602,Ai34,EA022,No secondary groups,EA022-9,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +23603,Ai35,EA022,No secondary groups,EA022-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +23604,Ai36,EA022,No secondary groups,EA022-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +23605,Ai37,EA022,No secondary groups,EA022-9,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +23606,Ai38,EA022,No secondary groups,EA022-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +23607,Ai39,EA022,No secondary groups,EA022-9,,nadel1947,,1940,EthnographicAtlas_1967_p74, +23608,Ai4,EA022,Kindreds,EA022-2,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +23609,Ai40,EA022,No secondary groups,EA022-9,,nadel1947,,1940,EthnographicAtlas_1967_p74, +23610,Ai41,EA022,No secondary groups,EA022-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +23611,Ai42,EA022,No secondary groups,EA022-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +23612,Ai43,EA022,No secondary groups,EA022-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +23613,Ai44,EA022,No secondary groups,EA022-9,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +23614,Ai45,EA022,No secondary groups,EA022-9,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +23615,Ai46,EA022,No secondary groups,EA022-9,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +23616,Ai47,EA022,No secondary groups,EA022-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +23617,Ai5,EA022,No secondary groups,EA022-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +23618,Ai6,EA022,No secondary groups,EA022-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +23619,Ai7,EA022,No secondary groups,EA022-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +23620,Ai8,EA022,No secondary groups,EA022-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +23621,Ai9,EA022,No secondary groups,EA022-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +23622,Aj1,EA022,No secondary groups,EA022-9,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +23623,Aj10,EA022,No secondary groups,EA022-9,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +23624,Aj11,EA022,No secondary groups,EA022-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +23625,Aj12,EA022,No secondary groups,EA022-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +23626,Aj13,EA022,No secondary groups,EA022-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +23627,Aj14,EA022,No secondary groups,EA022-9,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +23628,Aj15,EA022,No secondary groups,EA022-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +23629,Aj16,EA022,No secondary groups,EA022-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +23630,Aj17,EA022,No secondary groups,EA022-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +23631,Aj18,EA022,No secondary groups,EA022-9,,jensen1959,,1950,EthnographicAtlas_1967_p78, +23632,Aj19,EA022,No secondary groups,EA022-9,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +23633,Aj2,EA022,No secondary groups,EA022-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +23634,Aj20,EA022,No secondary groups,EA022-9,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +23635,Aj21,EA022,No secondary groups,EA022-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +23636,Aj22,EA022,No secondary groups,EA022-9,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +23637,Aj23,EA022,No secondary groups,EA022-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +23638,Aj24,EA022,No secondary groups,EA022-9,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +23639,Aj25,EA022,No secondary groups,EA022-9,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +23640,Aj26,EA022,No secondary groups,EA022-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +23641,Aj27,EA022,No secondary groups,EA022-9,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +23642,Aj28,EA022,No secondary groups,EA022-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +23643,Aj29,EA022,No secondary groups,EA022-9,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +23644,Aj3,EA022,No secondary groups,EA022-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +23645,Aj30,EA022,No secondary groups,EA022-9,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +23646,Aj31,EA022,No secondary groups,EA022-9,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +23647,Aj4,EA022,No secondary groups,EA022-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +23648,Aj5,EA022,No secondary groups,EA022-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +23649,Aj6,EA022,No secondary groups,EA022-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +23650,Aj7,EA022,No secondary groups,EA022-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +23651,Aj8,EA022,No secondary groups,EA022-9,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +23652,Aj9,EA022,No secondary groups,EA022-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +23653,Ca1,EA022,No secondary groups,EA022-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +23654,Ca10,EA022,No secondary groups,EA022-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +23655,Ca11,EA022,No secondary groups,EA022-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +23656,Ca12,EA022,No secondary groups,EA022-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +23657,Ca13,EA022,No secondary groups,EA022-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +23658,Ca14,EA022,No secondary groups,EA022-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +23659,Ca15,EA022,No secondary groups,EA022-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +23660,Ca16,EA022,No secondary groups,EA022-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +23661,Ca17,EA022,No secondary groups,EA022-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +23662,Ca18,EA022,No secondary groups,EA022-9,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +23663,Ca19,EA022,No secondary groups,EA022-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +23664,Ca2,EA022,No secondary groups,EA022-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +23665,Ca20,EA022,No secondary groups,EA022-9,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +23666,Ca21,EA022,No secondary groups,EA022-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +23667,Ca22,EA022,No secondary groups,EA022-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +23668,Ca23,EA022,No secondary groups,EA022-9,,jensen1959,,1950,EthnographicAtlas_1967_p78, +23669,Ca24,EA022,No secondary groups,EA022-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +23670,Ca25,EA022,No secondary groups,EA022-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +23671,Ca26,EA022,No secondary groups,EA022-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +23672,Ca27,EA022,No secondary groups,EA022-9,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +23673,Ca28,EA022,No secondary groups,EA022-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +23674,Ca29,EA022,No secondary groups,EA022-9,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +23675,Ca3,EA022,No secondary groups,EA022-9,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +23676,Ca30,EA022,No secondary groups,EA022-9,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +23677,Ca31,EA022,No secondary groups,EA022-9,Bilateral descent inferred from lack of mention of unilineal kin groups in any source,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +23678,Ca32,EA022,No secondary groups,EA022-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +23679,Ca33,EA022,No secondary groups,EA022-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +23680,Ca34,EA022,No secondary groups,EA022-9,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +23681,Ca35,EA022,No secondary groups,EA022-9,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +23682,Ca36,EA022,No secondary groups,EA022-9,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +23683,Ca37,EA022,?,EA022-NA,,,,,, +23684,Ca38,EA022,No secondary groups,EA022-9,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +23685,Ca39,EA022,No secondary groups,EA022-9,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +23686,Ca4,EA022,No secondary groups,EA022-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +23687,Ca40,EA022,No secondary groups,EA022-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +23688,Ca41,EA022,No secondary groups,EA022-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +23689,Ca42,EA022,No secondary groups,EA022-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +23690,Ca43,EA022,No secondary groups,EA022-9,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +23691,Ca5,EA022,No secondary groups,EA022-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +23692,Ca6,EA022,No secondary groups,EA022-9,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +23693,Ca7,EA022,No secondary groups,EA022-9,Patronymic but probably not patrilineal,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +23694,Ca8,EA022,No secondary groups,EA022-9,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +23695,Ca9,EA022,No secondary groups,EA022-9,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +23696,Cb1,EA022,No secondary groups,EA022-9,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +23697,Cb10,EA022,No secondary groups,EA022-9,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +23698,Cb11,EA022,No secondary groups,EA022-9,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +23699,Cb12,EA022,No secondary groups,EA022-9,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +23700,Cb13,EA022,No secondary groups,EA022-9,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +23701,Cb14,EA022,No secondary groups,EA022-9,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +23702,Cb15,EA022,No secondary groups,EA022-9,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +23703,Cb16,EA022,No secondary groups,EA022-9,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +23704,Cb17,EA022,No secondary groups,EA022-9,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +23705,Cb18,EA022,No secondary groups,EA022-9,Probably though not certainly,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +23706,Cb19,EA022,No secondary groups,EA022-9,"Descent, though patrilineal prior to 1850, is now ""bilateral with an agnatic bias"" (Cohen)",cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +23707,Cb2,EA022,No secondary groups,EA022-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +23708,Cb20,EA022,No secondary groups,EA022-9,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +23709,Cb21,EA022,No secondary groups,EA022-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +23710,Cb22,EA022,No secondary groups,EA022-9,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +23711,Cb23,EA022,No secondary groups,EA022-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +23712,Cb24,EA022,No secondary groups,EA022-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +23713,Cb25,EA022,No secondary groups,EA022-9,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +23714,Cb26,EA022,No secondary groups,EA022-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +23715,Cb27,EA022,No secondary groups,EA022-9,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23716,Cb28,EA022,No secondary groups,EA022-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23717,Cb29,EA022,No secondary groups,EA022-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +23718,Cb3,EA022,No secondary groups,EA022-9,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +23719,Cb4,EA022,No secondary groups,EA022-9,,reid1930,,1920,EthnographicAtlas_1967_p78, +23720,Cb5,EA022,No secondary groups,EA022-9,"Descent uncertain, though reported as patrilineal by Bouillie",bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +23721,Cb6,EA022,No secondary groups,EA022-9,,woodnd,,1920,EthnographicAtlas_1967_p78, +23722,Cb7,EA022,No secondary groups,EA022-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +23723,Cb8,EA022,No secondary groups,EA022-9,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +23724,Cb9,EA022,No secondary groups,EA022-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +23725,Cc1,EA022,No secondary groups,EA022-9,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +23726,Cc10,EA022,No secondary groups,EA022-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +23727,Cc11,EA022,No secondary groups,EA022-9,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +23728,Cc12,EA022,No secondary groups,EA022-9,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +23729,Cc13,EA022,No secondary groups,EA022-9,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +23730,Cc14,EA022,No secondary groups,EA022-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +23731,Cc15,EA022,No secondary groups,EA022-9,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +23732,Cc16,EA022,No secondary groups,EA022-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +23733,Cc17,EA022,No secondary groups,EA022-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +23734,Cc18,EA022,No secondary groups,EA022-9,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +23735,Cc19,EA022,No secondary groups,EA022-9,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +23736,Cc2,EA022,No secondary groups,EA022-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +23737,Cc20,EA022,No secondary groups,EA022-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +23738,Cc3,EA022,No secondary groups,EA022-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +23739,Cc4,EA022,No secondary groups,EA022-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +23740,Cc5,EA022,No secondary groups,EA022-9,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +23741,Cc6,EA022,No secondary groups,EA022-9,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +23742,Cc7,EA022,No secondary groups,EA022-9,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23743,Cc8,EA022,No secondary groups,EA022-9,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +23744,Cc9,EA022,No secondary groups,EA022-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +23745,Cd1,EA022,No secondary groups,EA022-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +23746,Cd10,EA022,No secondary groups,EA022-9,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +23747,Cd11,EA022,No secondary groups,EA022-9,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +23748,Cd12,EA022,No secondary groups,EA022-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +23749,Cd13,EA022,No secondary groups,EA022-9,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +23750,Cd14,EA022,No secondary groups,EA022-9,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +23751,Cd15,EA022,No secondary groups,EA022-9,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +23752,Cd16,EA022,No secondary groups,EA022-9,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +23753,Cd17,EA022,No secondary groups,EA022-9,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +23754,Cd18,EA022,No secondary groups,EA022-9,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +23755,Cd19,EA022,No secondary groups,EA022-9,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +23756,Cd2,EA022,No secondary groups,EA022-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +23757,Cd20,EA022,No secondary groups,EA022-9,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +23758,Cd21,EA022,No secondary groups,EA022-9,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +23759,Cd3,EA022,No secondary groups,EA022-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +23760,Cd4,EA022,No secondary groups,EA022-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +23761,Cd5,EA022,No secondary groups,EA022-9,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +23762,Cd6,EA022,No secondary groups,EA022-9,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +23763,Cd7,EA022,No secondary groups,EA022-9,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +23764,Cd8,EA022,No secondary groups,EA022-9,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +23765,Cd9,EA022,No secondary groups,EA022-9,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +23766,Ce1,EA022,No secondary groups,EA022-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +23767,Ce2,EA022,No secondary groups,EA022-9,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +23768,Ce3,EA022,No secondary groups,EA022-9,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +23769,Ce4,EA022,No secondary groups,EA022-9,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23770,Ce5,EA022,No secondary groups,EA022-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +23771,Ce6,EA022,No secondary groups,EA022-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +23772,Ce7,EA022,No secondary groups,EA022-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +23773,Ce8,EA022,No secondary groups,EA022-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +23774,Cf1,EA022,No secondary groups,EA022-9,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +23775,Cf2,EA022,No secondary groups,EA022-9,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +23776,Cf3,EA022,No secondary groups,EA022-9,,munch1945,,1930,EthnographicAtlas_1967_p82, +23777,Cf4,EA022,No secondary groups,EA022-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +23778,Cf5,EA022,No secondary groups,EA022-9,,miner1939,,1930,EthnographicAtlas_1967_p82, +23779,Cg1,EA022,No secondary groups,EA022-9,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +23780,Cg2,EA022,No secondary groups,EA022-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +23781,Cg3,EA022,No secondary groups,EA022-9,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +23782,Cg4,EA022,No secondary groups,EA022-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +23783,Cg5,EA022,No secondary groups,EA022-9,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +23784,Ch1,EA022,No secondary groups,EA022-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +23785,Ch10,EA022,No secondary groups,EA022-9,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +23786,Ch11,EA022,No secondary groups,EA022-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +23787,Ch2,EA022,No secondary groups,EA022-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +23788,Ch3,EA022,No secondary groups,EA022-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +23789,Ch4,EA022,No secondary groups,EA022-9,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +23790,Ch5,EA022,No secondary groups,EA022-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +23791,Ch6,EA022,No secondary groups,EA022-9,,ember1954,,1910,EthnographicAtlas_1967_p82, +23792,Ch7,EA022,No secondary groups,EA022-9,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +23793,Ch8,EA022,No secondary groups,EA022-9,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +23794,Ch9,EA022,No secondary groups,EA022-9,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +23795,Ci1,EA022,No secondary groups,EA022-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +23796,Ci10,EA022,No secondary groups,EA022-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +23797,Ci11,EA022,No secondary groups,EA022-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +23798,Ci12,EA022,No secondary groups,EA022-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +23799,Ci2,EA022,No secondary groups,EA022-9,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +23800,Ci3,EA022,No secondary groups,EA022-9,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +23801,Ci4,EA022,No secondary groups,EA022-9,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +23802,Ci5,EA022,No secondary groups,EA022-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +23803,Ci6,EA022,No secondary groups,EA022-9,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +23804,Ci7,EA022,No secondary groups,EA022-9,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +23805,Ci8,EA022,?,EA022-NA,,,,,, +23806,Ci9,EA022,No secondary groups,EA022-9,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +23807,Cj1,EA022,No secondary groups,EA022-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +23808,Cj10,EA022,No secondary groups,EA022-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +23809,Cj2,EA022,No secondary groups,EA022-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +23810,Cj3,EA022,No secondary groups,EA022-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +23811,Cj4,EA022,No secondary groups,EA022-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +23812,Cj5,EA022,No secondary groups,EA022-9,,dickson1949,,1930,EthnographicAtlas_1967_p86, +23813,Cj6,EA022,No secondary groups,EA022-9,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +23814,Cj7,EA022,No secondary groups,EA022-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +23815,Cj8,EA022,No secondary groups,EA022-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +23816,Cj9,EA022,No secondary groups,EA022-9,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +23817,Ea1,EA022,No secondary groups,EA022-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +23818,Ea10,EA022,No secondary groups,EA022-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +23819,Ea11,EA022,No secondary groups,EA022-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +23820,Ea12,EA022,No secondary groups,EA022-9,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +23821,Ea13,EA022,No secondary groups,EA022-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +23822,Ea2,EA022,No secondary groups,EA022-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +23823,Ea3,EA022,No secondary groups,EA022-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +23824,Ea4,EA022,No secondary groups,EA022-9,,barth1956b,,1950,EthnographicAtlas_1967_p86, +23825,Ea5,EA022,No secondary groups,EA022-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +23826,Ea6,EA022,No secondary groups,EA022-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +23827,Ea7,EA022,No secondary groups,EA022-9,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +23828,Ea8,EA022,No secondary groups,EA022-9,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +23829,Ea9,EA022,No secondary groups,EA022-9,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +23830,Eb1,EA022,No secondary groups,EA022-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +23831,Eb2,EA022,No secondary groups,EA022-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +23832,Eb3,EA022,No secondary groups,EA022-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +23833,Eb4,EA022,No secondary groups,EA022-9,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +23834,Eb5,EA022,No secondary groups,EA022-9,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +23835,Eb6,EA022,No secondary groups,EA022-9,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +23836,Eb7,EA022,No secondary groups,EA022-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +23837,Eb8,EA022,No secondary groups,EA022-9,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +23838,Ec1,EA022,No secondary groups,EA022-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +23839,Ec10,EA022,No secondary groups,EA022-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +23840,Ec11,EA022,No secondary groups,EA022-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +23841,Ec2,EA022,No secondary groups,EA022-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23842,Ec3,EA022,No secondary groups,EA022-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +23843,Ec4,EA022,No secondary groups,EA022-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +23844,Ec5,EA022,No secondary groups,EA022-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +23845,Ec6,EA022,No secondary groups,EA022-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +23846,Ec7,EA022,No secondary groups,EA022-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +23847,Ec8,EA022,No secondary groups,EA022-9,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +23848,Ec9,EA022,No secondary groups,EA022-9,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +23849,Ed1,EA022,No secondary groups,EA022-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +23850,Ed10,EA022,No secondary groups,EA022-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +23851,Ed13,EA022,No secondary groups,EA022-9,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +23852,Ed14,EA022,No secondary groups,EA022-9,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +23853,Ed15a,EA022,No secondary groups,EA022-9,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +23854,Ed15b,EA022,No secondary groups,EA022-9,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +23855,Ed16,EA022,No secondary groups,EA022-9,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +23856,Ed2,EA022,No secondary groups,EA022-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +23857,Ed3,EA022,No secondary groups,EA022-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +23858,Ed4,EA022,No secondary groups,EA022-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +23859,Ed5,EA022,No secondary groups,EA022-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23860,Ed6,EA022,No secondary groups,EA022-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +23861,Ed7,EA022,No secondary groups,EA022-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +23862,Ed8,EA022,No secondary groups,EA022-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +23863,Ed9,EA022,No secondary groups,EA022-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +23864,Ee1,EA022,No secondary groups,EA022-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +23865,Ee2,EA022,No secondary groups,EA022-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +23866,Ee3,EA022,No secondary groups,EA022-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +23867,Ee4,EA022,No secondary groups,EA022-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +23868,Ee5,EA022,No secondary groups,EA022-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +23869,Ee6,EA022,No secondary groups,EA022-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +23870,Ee7,EA022,No secondary groups,EA022-9,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +23871,Ee8,EA022,No secondary groups,EA022-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +23872,Ef1,EA022,No secondary groups,EA022-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +23873,Ef10,EA022,No secondary groups,EA022-9,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23874,Ef11,EA022,No secondary groups,EA022-9,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +23875,Ef2,EA022,No secondary groups,EA022-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +23876,Ef3,EA022,No secondary groups,EA022-9,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +23877,Ef4,EA022,No secondary groups,EA022-9,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +23878,Ef5,EA022,No secondary groups,EA022-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +23879,Ef6,EA022,No secondary groups,EA022-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +23880,Ef7,EA022,No secondary groups,EA022-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +23881,Ef8,EA022,No secondary groups,EA022-9,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +23882,Ef9,EA022,No secondary groups,EA022-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23883,Eg1,EA022,No secondary groups,EA022-9,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23884,Eg10,EA022,No secondary groups,EA022-9,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +23885,Eg11,EA022,No secondary groups,EA022-9,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +23886,Eg12,EA022,No secondary groups,EA022-9,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +23887,Eg13,EA022,No secondary groups,EA022-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23888,Eg14,EA022,No secondary groups,EA022-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +23889,Eg2,EA022,No secondary groups,EA022-9,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +23890,Eg3,EA022,No secondary groups,EA022-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +23891,Eg4,EA022,No secondary groups,EA022-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +23892,Eg5,EA022,No secondary groups,EA022-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +23893,Eg6,EA022,No secondary groups,EA022-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +23894,Eg7,EA022,No secondary groups,EA022-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +23895,Eg8,EA022,No secondary groups,EA022-9,"The groups called ""endogamous septs"" are apparently not unilineal",griffiths1946,,1940,EthnographicAtlas_1967_p90, +23896,Eg9,EA022,No secondary groups,EA022-9,,elwin1939,,1930,EthnographicAtlas_1967_p90, +23897,Eh1,EA022,No secondary groups,EA022-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +23898,Eh10,EA022,No secondary groups,EA022-9,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +23899,Eh2,EA022,No secondary groups,EA022-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +23900,Eh3,EA022,No secondary groups,EA022-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +23901,Eh4,EA022,No secondary groups,EA022-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23902,Eh5,EA022,No secondary groups,EA022-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +23903,Eh6,EA022,No secondary groups,EA022-9,"Inferred from the preference for virilocal residence and the existence of endogamous ""kindreds"" with a fiction of ""common ancestry""",ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +23904,Eh7,EA022,No secondary groups,EA022-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +23905,Eh8,EA022,No secondary groups,EA022-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +23906,Eh9,EA022,No secondary groups,EA022-9,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +23907,Ei1,EA022,No secondary groups,EA022-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23908,Ei10,EA022,No secondary groups,EA022-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +23909,Ei11,EA022,No secondary groups,EA022-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +23910,Ei12,EA022,No secondary groups,EA022-9,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +23911,Ei13,EA022,No secondary groups,EA022-9,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +23912,Ei14,EA022,No secondary groups,EA022-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +23913,Ei15,EA022,No secondary groups,EA022-9,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +23914,Ei16,EA022,No secondary groups,EA022-9,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +23915,Ei17,EA022,No secondary groups,EA022-9,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +23916,Ei18,EA022,No secondary groups,EA022-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +23917,Ei19,EA022,No secondary groups,EA022-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +23918,Ei2,EA022,No secondary groups,EA022-9,,mills1922,,1920,EthnographicAtlas_1967_p90, +23919,Ei20,EA022,No secondary groups,EA022-9,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +23920,Ei3,EA022,No secondary groups,EA022-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +23921,Ei4,EA022,No secondary groups,EA022-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +23922,Ei5,EA022,No secondary groups,EA022-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +23923,Ei6,EA022,No secondary groups,EA022-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +23924,Ei7,EA022,No secondary groups,EA022-9,But there are agamous matrilineages which function in ancestor worship,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +23925,Ei8,EA022,No secondary groups,EA022-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +23926,Ei9,EA022,No secondary groups,EA022-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +23927,Ej1,EA022,No secondary groups,EA022-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +23928,Ej10,EA022,No secondary groups,EA022-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +23929,Ej11,EA022,No secondary groups,EA022-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +23930,Ej12,EA022,No secondary groups,EA022-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +23931,Ej13,EA022,No secondary groups,EA022-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +23932,Ej14,EA022,No secondary groups,EA022-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23933,Ej15,EA022,No secondary groups,EA022-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +23934,Ej16,EA022,No secondary groups,EA022-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +23935,Ej2,EA022,No secondary groups,EA022-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +23936,Ej3,EA022,No secondary groups,EA022-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +23937,Ej4,EA022,No secondary groups,EA022-9,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +23938,Ej5,EA022,No secondary groups,EA022-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +23939,Ej6,EA022,No secondary groups,EA022-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +23940,Ej7,EA022,No secondary groups,EA022-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +23941,Ej8,EA022,No secondary groups,EA022-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +23942,Ej9,EA022,No secondary groups,EA022-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +23943,Ia1,EA022,No secondary groups,EA022-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +23944,Ia10,EA022,No secondary groups,EA022-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +23945,Ia11,EA022,No secondary groups,EA022-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +23946,Ia12,EA022,No secondary groups,EA022-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +23947,Ia13,EA022,No secondary groups,EA022-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +23948,Ia14,EA022,No secondary groups,EA022-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +23949,Ia15,EA022,No secondary groups,EA022-9,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +23950,Ia16,EA022,No secondary groups,EA022-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +23951,Ia17,EA022,No secondary groups,EA022-9,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +23952,Ia18,EA022,No secondary groups,EA022-9,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +23953,Ia2,EA022,Ramages,EA022-4,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +23954,Ia3,EA022,Ramages,EA022-4,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +23955,Ia4,EA022,No secondary groups,EA022-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +23956,Ia5,EA022,No secondary groups,EA022-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +23957,Ia6,EA022,Kindreds,EA022-2,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23958,Ia7,EA022,No secondary groups,EA022-9,,fox1954,,1950,EthnographicAtlas_1967_p90, +23959,Ia8,EA022,No secondary groups,EA022-9,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +23960,Ia9,EA022,No secondary groups,EA022-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +23961,Ib1,EA022,No secondary groups,EA022-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23962,Ib2,EA022,No secondary groups,EA022-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23963,Ib3,EA022,No secondary groups,EA022-9,"Geertz speaks of clans with a ""noticeable ambilineal element""",belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +23964,Ib4,EA022,No secondary groups,EA022-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +23965,Ib5,EA022,Ramages,EA022-4,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +23966,Ib6,EA022,No secondary groups,EA022-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +23967,Ib7,EA022,No secondary groups,EA022-9,"The uma, though possibly a localized quasi-patrilineage, is more probably a ramage",kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +23968,Ib8,EA022,No secondary groups,EA022-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +23969,Ib9,EA022,No secondary groups,EA022-9,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +23970,Ic1,EA022,No secondary groups,EA022-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23971,Ic10,EA022,No secondary groups,EA022-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +23972,Ic11,EA022,No secondary groups,EA022-9,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23973,Ic12,EA022,No secondary groups,EA022-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +23974,Ic13,EA022,No secondary groups,EA022-9,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +23975,Ic2,EA022,No secondary groups,EA022-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +23976,Ic3,EA022,No secondary groups,EA022-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +23977,Ic4,EA022,No secondary groups,EA022-9,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +23978,Ic5,EA022,No secondary groups,EA022-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +23979,Ic6,EA022,No secondary groups,EA022-9,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +23980,Ic7,EA022,No secondary groups,EA022-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +23981,Ic8,EA022,No secondary groups,EA022-9,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +23982,Ic9,EA022,No secondary groups,EA022-9,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +23983,Id1,EA022,No secondary groups,EA022-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +23984,Id10,EA022,No secondary groups,EA022-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +23985,Id11,EA022,No secondary groups,EA022-9,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +23986,Id12,EA022,No secondary groups,EA022-9,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +23987,Id13,EA022,No secondary groups,EA022-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +23988,Id2,EA022,No secondary groups,EA022-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +23989,Id3,EA022,No secondary groups,EA022-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +23990,Id4,EA022,No secondary groups,EA022-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +23991,Id5,EA022,No secondary groups,EA022-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +23992,Id6,EA022,No secondary groups,EA022-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +23993,Id7,EA022,No secondary groups,EA022-9,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +23994,Id8,EA022,?,EA022-NA,,,,,, +23995,Id9,EA022,No secondary groups,EA022-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +23996,Ie1,EA022,No secondary groups,EA022-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +23997,Ie10,EA022,No secondary groups,EA022-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +23998,Ie11,EA022,No secondary groups,EA022-9,,bowers1964,,1950,EthnographicAtlas_1967_p94, +23999,Ie12,EA022,No secondary groups,EA022-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24000,Ie13,EA022,No secondary groups,EA022-9,,landtman1927,,1920,EthnographicAtlas_1967_p94, +24001,Ie14,EA022,No secondary groups,EA022-9,,haddon1908,,1900,EthnographicAtlas_1967_p94, +24002,Ie15,EA022,No secondary groups,EA022-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24003,Ie16,EA022,No secondary groups,EA022-9,,williams194041,,1940,EthnographicAtlas_1967_p94, +24004,Ie17,EA022,No secondary groups,EA022-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +24005,Ie18,EA022,No secondary groups,EA022-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +24006,Ie19,EA022,No secondary groups,EA022-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +24007,Ie2,EA022,No secondary groups,EA022-9,"A ""skewed kindred"" consisting of parts of both Ego's and his mother's patrilineages",schmitz1960,,1920,EthnographicAtlas_1967_p94, +24008,Ie20,EA022,No secondary groups,EA022-9,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +24009,Ie21,EA022,No secondary groups,EA022-9,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +24010,Ie22,EA022,No secondary groups,EA022-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +24011,Ie23,EA022,No secondary groups,EA022-9,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +24012,Ie24,EA022,No secondary groups,EA022-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +24013,Ie25,EA022,No secondary groups,EA022-9,,williamson1912,,1920,EthnographicAtlas_1967_p94, +24014,Ie26,EA022,No secondary groups,EA022-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +24015,Ie27,EA022,No secondary groups,EA022-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +24016,Ie28,EA022,No secondary groups,EA022-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +24017,Ie29,EA022,No secondary groups,EA022-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24018,Ie3,EA022,No secondary groups,EA022-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24019,Ie30,EA022,No secondary groups,EA022-9,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +24020,Ie31,EA022,No secondary groups,EA022-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +24021,Ie32,EA022,No secondary groups,EA022-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +24022,Ie33,EA022,No secondary groups,EA022-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +24023,Ie34,EA022,No secondary groups,EA022-9,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +24024,Ie35,EA022,No secondary groups,EA022-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +24025,Ie36,EA022,No secondary groups,EA022-9,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +24026,Ie37,EA022,No secondary groups,EA022-9,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +24027,Ie38,EA022,No secondary groups,EA022-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +24028,Ie39,EA022,No secondary groups,EA022-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +24029,Ie4,EA022,No secondary groups,EA022-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24030,Ie5,EA022,No secondary groups,EA022-9,,williams1936,,1930,EthnographicAtlas_1967_p94, +24031,Ie6,EA022,No secondary groups,EA022-9,,held1947,,1930,EthnographicAtlas_1967_p94, +24032,Ie7,EA022,No secondary groups,EA022-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +24033,Ie8,EA022,No secondary groups,EA022-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +24034,Ie9,EA022,No secondary groups,EA022-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +24035,If1,EA022,No secondary groups,EA022-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24036,If10,EA022,No secondary groups,EA022-9,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +24037,If11,EA022,No secondary groups,EA022-9,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +24038,If12,EA022,No secondary groups,EA022-9,,mason1954,,1940,EthnographicAtlas_1967_p98, +24039,If13,EA022,No secondary groups,EA022-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +24040,If14,EA022,No secondary groups,EA022-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +24041,If15,EA022,No secondary groups,EA022-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +24042,If16,EA022,No secondary groups,EA022-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +24043,If17,EA022,No secondary groups,EA022-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +24044,If2,EA022,No secondary groups,EA022-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +24045,If3,EA022,No secondary groups,EA022-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +24046,If4,EA022,No secondary groups,EA022-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +24047,If5,EA022,No secondary groups,EA022-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +24048,If6,EA022,No secondary groups,EA022-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +24049,If7,EA022,Kindreds,EA022-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +24050,If8,EA022,No secondary groups,EA022-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +24051,If9,EA022,No secondary groups,EA022-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +24052,Ig1,EA022,No secondary groups,EA022-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +24053,Ig10,EA022,No secondary groups,EA022-9,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +24054,Ig11,EA022,No secondary groups,EA022-9,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +24055,Ig12,EA022,Kindreds,EA022-2,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +24056,Ig13,EA022,No secondary groups,EA022-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +24057,Ig14,EA022,No secondary groups,EA022-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +24058,Ig15,EA022,No secondary groups,EA022-9,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +24059,Ig16,EA022,No secondary groups,EA022-9,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +24060,Ig17,EA022,No secondary groups,EA022-9,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +24061,Ig18,EA022,No secondary groups,EA022-9,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +24062,Ig19,EA022,Kindreds,EA022-2,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +24063,Ig2,EA022,No secondary groups,EA022-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +24064,Ig20,EA022,No secondary groups,EA022-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +24065,Ig21,EA022,No secondary groups,EA022-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +24066,Ig3,EA022,No secondary groups,EA022-9,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +24067,Ig4,EA022,No secondary groups,EA022-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +24068,Ig5,EA022,No secondary groups,EA022-9,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +24069,Ig6,EA022,No secondary groups,EA022-9,,ivens1927,,1900,EthnographicAtlas_1967_p98, +24070,Ig7,EA022,No secondary groups,EA022-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +24071,Ig8,EA022,Kindreds,EA022-2,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +24072,Ig9,EA022,No secondary groups,EA022-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +24073,Ih1,EA022,No secondary groups,EA022-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +24074,Ih10,EA022,No secondary groups,EA022-9,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24075,Ih11,EA022,No secondary groups,EA022-9,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +24076,Ih12,EA022,No secondary groups,EA022-9,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +24077,Ih13,EA022,No secondary groups,EA022-9,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +24078,Ih14,EA022,No secondary groups,EA022-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +24079,Ih2,EA022,No secondary groups,EA022-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24080,Ih3,EA022,No secondary groups,EA022-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +24081,Ih4,EA022,No secondary groups,EA022-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24082,Ih5,EA022,No secondary groups,EA022-9,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +24083,Ih6,EA022,No secondary groups,EA022-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +24084,Ih7,EA022,No secondary groups,EA022-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +24085,Ih8,EA022,No secondary groups,EA022-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +24086,Ih9,EA022,No secondary groups,EA022-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24087,Ii1,EA022,No secondary groups,EA022-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +24088,Ii10,EA022,No secondary groups,EA022-9,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +24089,Ii12,EA022,No secondary groups,EA022-9,"Or localized ""stem kindreds""",beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24090,Ii13,EA022,No secondary groups,EA022-9,,burrows1937,,1830,EthnographicAtlas_1967_p98, +24091,Ii14,EA022,No secondary groups,EA022-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +24092,Ii2,EA022,No secondary groups,EA022-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +24093,Ii3,EA022,No secondary groups,EA022-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +24094,Ii4,EA022,No secondary groups,EA022-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +24095,Ii5,EA022,No secondary groups,EA022-9,"The exogamous patrilineages of six generations' depth reported by Hogbin, who calls them ""joint families,"" are presumably ambilineal ramages, since affiliation is reported to be matrilineal for about 10 per cent of their membership",hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +24096,Ii6,EA022,No secondary groups,EA022-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +24097,Ii7,EA022,No secondary groups,EA022-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +24098,Ii8,EA022,No secondary groups,EA022-9,,burrows1936,,1840,EthnographicAtlas_1967_p98, +24099,Ii9,EA022,No secondary groups,EA022-9,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +24100,Ij1,EA022,No secondary groups,EA022-9,,buck1934,,1820,EthnographicAtlas_1967_p98, +24101,Ij10,EA022,No secondary groups,EA022-9,Or very possibly ambilineal,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +24102,Ij2,EA022,Kindreds,EA022-2,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +24103,Ij3,EA022,No secondary groups,EA022-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +24104,Ij4,EA022,No secondary groups,EA022-9,,buck1932a,,1850,EthnographicAtlas_1967_p102, +24105,Ij5,EA022,Kindreds,EA022-2,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +24106,Ij6,EA022,Kindreds,EA022-2,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +24107,Ij7,EA022,No secondary groups,EA022-9,"But called ""extended families"" by Buck",buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +24108,Ij8,EA022,No secondary groups,EA022-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +24109,Ij9,EA022,No secondary groups,EA022-9,,metraux1940,,1860,EthnographicAtlas_1967_p102, +24110,Na1,EA022,No secondary groups,EA022-9,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +24111,Na10,EA022,No secondary groups,EA022-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +24112,Na11,EA022,No secondary groups,EA022-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +24113,Na12,EA022,No secondary groups,EA022-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +24114,Na13,EA022,No secondary groups,EA022-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +24115,Na14,EA022,No secondary groups,EA022-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +24116,Na15,EA022,No secondary groups,EA022-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +24117,Na16,EA022,No secondary groups,EA022-9,,osgood1931,,1860,EthnographicAtlas_1967_p102, +24118,Na17,EA022,No secondary groups,EA022-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24119,Na19,EA022,No secondary groups,EA022-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +24120,Na2,EA022,No secondary groups,EA022-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +24121,Na20,EA022,No secondary groups,EA022-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +24122,Na21,EA022,No secondary groups,EA022-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +24123,Na22,EA022,No secondary groups,EA022-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +24124,Na23,EA022,No secondary groups,EA022-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +24125,Na24,EA022,No secondary groups,EA022-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +24126,Na25,EA022,No secondary groups,EA022-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +24127,Na26,EA022,No secondary groups,EA022-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +24128,Na27,EA022,No secondary groups,EA022-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +24129,Na28,EA022,No secondary groups,EA022-9,,jenness1937,,1880,EthnographicAtlas_1967_p102, +24130,Na29,EA022,No secondary groups,EA022-9,,goddard1916,,1850,EthnographicAtlas_1967_p102, +24131,Na3,EA022,No secondary groups,EA022-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +24132,Na30,EA022,No secondary groups,EA022-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +24133,Na31,EA022,No secondary groups,EA022-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +24134,Na32,EA022,No secondary groups,EA022-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +24135,Na33,EA022,No secondary groups,EA022-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +24136,Na34,EA022,No secondary groups,EA022-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +24137,Na35,EA022,No secondary groups,EA022-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +24138,Na36,EA022,No secondary groups,EA022-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +24139,Na37,EA022,No secondary groups,EA022-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +24140,Na38,EA022,No secondary groups,EA022-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +24141,Na39,EA022,No secondary groups,EA022-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +24142,Na4,EA022,No secondary groups,EA022-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +24143,Na40,EA022,No secondary groups,EA022-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +24144,Na41,EA022,No secondary groups,EA022-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +24145,Na42,EA022,No secondary groups,EA022-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +24146,Na43,EA022,No secondary groups,EA022-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +24147,Na44,EA022,No secondary groups,EA022-9,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +24148,Na45,EA022,No secondary groups,EA022-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +24149,Na5,EA022,No secondary groups,EA022-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +24150,Na6,EA022,No secondary groups,EA022-9,,lantis1946,,1930,EthnographicAtlas_1967_p102, +24151,Na7,EA022,No secondary groups,EA022-9,Patrilocal bands,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +24152,Na8,EA022,No secondary groups,EA022-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +24153,Na9,EA022,No secondary groups,EA022-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24154,Nb1,EA022,No secondary groups,EA022-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +24155,Nb10,EA022,No secondary groups,EA022-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +24156,Nb11,EA022,No secondary groups,EA022-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +24157,Nb12,EA022,No secondary groups,EA022-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +24158,Nb13,EA022,No secondary groups,EA022-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +24159,Nb14,EA022,No secondary groups,EA022-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +24160,Nb15,EA022,No secondary groups,EA022-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +24161,Nb16,EA022,No secondary groups,EA022-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +24162,Nb17,EA022,No secondary groups,EA022-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +24163,Nb18,EA022,No secondary groups,EA022-9,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +24164,Nb19,EA022,No secondary groups,EA022-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +24165,Nb2,EA022,No secondary groups,EA022-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +24166,Nb20,EA022,No secondary groups,EA022-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +24167,Nb21,EA022,No secondary groups,EA022-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +24168,Nb22,EA022,No secondary groups,EA022-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +24169,Nb23,EA022,No secondary groups,EA022-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +24170,Nb24,EA022,No secondary groups,EA022-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +24171,Nb25,EA022,No secondary groups,EA022-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +24172,Nb26,EA022,No secondary groups,EA022-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +24173,Nb27,EA022,No secondary groups,EA022-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +24174,Nb28,EA022,No secondary groups,EA022-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +24175,Nb29,EA022,No secondary groups,EA022-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +24176,Nb3,EA022,Kindreds,EA022-2,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +24177,Nb30,EA022,No secondary groups,EA022-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +24178,Nb31,EA022,No secondary groups,EA022-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +24179,Nb32,EA022,No secondary groups,EA022-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +24180,Nb33,EA022,No secondary groups,EA022-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +24181,Nb34,EA022,No secondary groups,EA022-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +24182,Nb35,EA022,No secondary groups,EA022-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +24183,Nb36,EA022,No secondary groups,EA022-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +24184,Nb37,EA022,No secondary groups,EA022-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +24185,Nb38,EA022,No secondary groups,EA022-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +24186,Nb39,EA022,No secondary groups,EA022-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +24187,Nb4,EA022,No secondary groups,EA022-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +24188,Nb5,EA022,No secondary groups,EA022-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +24189,Nb6,EA022,No secondary groups,EA022-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +24190,Nb7,EA022,No secondary groups,EA022-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +24191,Nb8,EA022,No secondary groups,EA022-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +24192,Nb9,EA022,No secondary groups,EA022-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +24193,Nc1,EA022,No secondary groups,EA022-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +24194,Nc10,EA022,No secondary groups,EA022-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +24195,Nc11,EA022,No secondary groups,EA022-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +24196,Nc12,EA022,No secondary groups,EA022-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +24197,Nc13,EA022,No secondary groups,EA022-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +24198,Nc14,EA022,No secondary groups,EA022-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +24199,Nc15,EA022,No secondary groups,EA022-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +24200,Nc16,EA022,No secondary groups,EA022-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +24201,Nc17,EA022,No secondary groups,EA022-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +24202,Nc18,EA022,No secondary groups,EA022-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +24203,Nc19,EA022,No secondary groups,EA022-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +24204,Nc2,EA022,No secondary groups,EA022-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +24205,Nc20,EA022,No secondary groups,EA022-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +24206,Nc21,EA022,No secondary groups,EA022-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +24207,Nc22,EA022,No secondary groups,EA022-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +24208,Nc23,EA022,No secondary groups,EA022-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +24209,Nc24,EA022,No secondary groups,EA022-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +24210,Nc25,EA022,No secondary groups,EA022-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +24211,Nc26,EA022,No secondary groups,EA022-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +24212,Nc27,EA022,No secondary groups,EA022-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +24213,Nc28,EA022,No secondary groups,EA022-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +24214,Nc29,EA022,No secondary groups,EA022-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +24215,Nc3,EA022,No secondary groups,EA022-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +24216,Nc30,EA022,No secondary groups,EA022-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +24217,Nc31,EA022,No secondary groups,EA022-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +24218,Nc32,EA022,No secondary groups,EA022-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +24219,Nc33,EA022,No secondary groups,EA022-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +24220,Nc34,EA022,No secondary groups,EA022-9,,meigs1939,,1880,EthnographicAtlas_1967_p106, +24221,Nc4,EA022,No secondary groups,EA022-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +24222,Nc5,EA022,No secondary groups,EA022-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +24223,Nc6,EA022,No secondary groups,EA022-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +24224,Nc7,EA022,No secondary groups,EA022-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +24225,Nc8,EA022,No secondary groups,EA022-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +24226,Nc9,EA022,No secondary groups,EA022-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +24227,Nd1,EA022,No secondary groups,EA022-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +24228,Nd10,EA022,No secondary groups,EA022-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +24229,Nd11,EA022,No secondary groups,EA022-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +24230,Nd12,EA022,No secondary groups,EA022-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +24231,Nd13,EA022,No secondary groups,EA022-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +24232,Nd14,EA022,No secondary groups,EA022-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +24233,Nd15,EA022,No secondary groups,EA022-9,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +24234,Nd16,EA022,No secondary groups,EA022-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +24235,Nd17,EA022,No secondary groups,EA022-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +24236,Nd18,EA022,No secondary groups,EA022-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +24237,Nd19,EA022,No secondary groups,EA022-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +24238,Nd2,EA022,No secondary groups,EA022-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +24239,Nd20,EA022,No secondary groups,EA022-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +24240,Nd21,EA022,No secondary groups,EA022-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +24241,Nd22,EA022,No secondary groups,EA022-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +24242,Nd23,EA022,No secondary groups,EA022-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +24243,Nd24,EA022,No secondary groups,EA022-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +24244,Nd25,EA022,No secondary groups,EA022-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +24245,Nd26,EA022,No secondary groups,EA022-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +24246,Nd27,EA022,No secondary groups,EA022-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +24247,Nd28,EA022,No secondary groups,EA022-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +24248,Nd29,EA022,No secondary groups,EA022-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +24249,Nd3,EA022,No secondary groups,EA022-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +24250,Nd30,EA022,No secondary groups,EA022-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +24251,Nd31,EA022,No secondary groups,EA022-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +24252,Nd32,EA022,No secondary groups,EA022-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +24253,Nd33,EA022,No secondary groups,EA022-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +24254,Nd34,EA022,No secondary groups,EA022-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +24255,Nd35,EA022,No secondary groups,EA022-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +24256,Nd36,EA022,No secondary groups,EA022-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +24257,Nd37,EA022,No secondary groups,EA022-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +24258,Nd38,EA022,No secondary groups,EA022-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +24259,Nd39,EA022,No secondary groups,EA022-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +24260,Nd4,EA022,No secondary groups,EA022-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +24261,Nd40,EA022,No secondary groups,EA022-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +24262,Nd41,EA022,No secondary groups,EA022-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +24263,Nd42,EA022,No secondary groups,EA022-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +24264,Nd43,EA022,No secondary groups,EA022-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +24265,Nd44,EA022,No secondary groups,EA022-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +24266,Nd45,EA022,No secondary groups,EA022-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +24267,Nd46,EA022,No secondary groups,EA022-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +24268,Nd47,EA022,No secondary groups,EA022-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +24269,Nd48,EA022,No secondary groups,EA022-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +24270,Nd49,EA022,No secondary groups,EA022-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +24271,Nd5,EA022,No secondary groups,EA022-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +24272,Nd50,EA022,No secondary groups,EA022-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +24273,Nd51,EA022,No secondary groups,EA022-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +24274,Nd52,EA022,No secondary groups,EA022-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +24275,Nd53,EA022,No secondary groups,EA022-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +24276,Nd54,EA022,No secondary groups,EA022-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24277,Nd55,EA022,No secondary groups,EA022-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +24278,Nd56,EA022,No secondary groups,EA022-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +24279,Nd57,EA022,No secondary groups,EA022-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +24280,Nd58,EA022,No secondary groups,EA022-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +24281,Nd59,EA022,No secondary groups,EA022-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +24282,Nd6,EA022,No secondary groups,EA022-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +24283,Nd60,EA022,No secondary groups,EA022-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +24284,Nd61,EA022,No secondary groups,EA022-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +24285,Nd62,EA022,No secondary groups,EA022-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +24286,Nd63,EA022,No secondary groups,EA022-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +24287,Nd64,EA022,No secondary groups,EA022-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +24288,Nd65,EA022,No secondary groups,EA022-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +24289,Nd66,EA022,No secondary groups,EA022-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +24290,Nd67,EA022,No secondary groups,EA022-9,,gifford1936,,1870,EthnographicAtlas_1967_p110, +24291,Nd7,EA022,No secondary groups,EA022-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +24292,Nd8,EA022,No secondary groups,EA022-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +24293,Nd9,EA022,No secondary groups,EA022-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +24294,Ne1,EA022,No secondary groups,EA022-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +24295,Ne10,EA022,No secondary groups,EA022-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +24296,Ne11,EA022,No secondary groups,EA022-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +24297,Ne12,EA022,No secondary groups,EA022-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +24298,Ne13,EA022,No secondary groups,EA022-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +24299,Ne14,EA022,No secondary groups,EA022-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +24300,Ne15,EA022,No secondary groups,EA022-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +24301,Ne16,EA022,No secondary groups,EA022-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +24302,Ne17,EA022,No secondary groups,EA022-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +24303,Ne18,EA022,No secondary groups,EA022-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +24304,Ne19,EA022,No secondary groups,EA022-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +24305,Ne2,EA022,No secondary groups,EA022-9,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +24306,Ne20,EA022,No secondary groups,EA022-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +24307,Ne21,EA022,No secondary groups,EA022-9,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968, +24308,Ne3,EA022,No secondary groups,EA022-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +24309,Ne4,EA022,No secondary groups,EA022-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +24310,Ne5,EA022,No secondary groups,EA022-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +24311,Ne6,EA022,No secondary groups,EA022-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +24312,Ne7,EA022,No secondary groups,EA022-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +24313,Ne8,EA022,No secondary groups,EA022-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +24314,Ne9,EA022,No secondary groups,EA022-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +24315,Nf10,EA022,No secondary groups,EA022-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +24316,Nf11,EA022,No secondary groups,EA022-9,,whitman1937,,1870,EthnographicAtlas_1967_p114, +24317,Nf12,EA022,No secondary groups,EA022-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +24318,Nf13,EA022,No secondary groups,EA022-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24319,Nf14,EA022,No secondary groups,EA022-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +24320,Nf15,EA022,No secondary groups,EA022-9,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +24321,Nf2,EA022,No secondary groups,EA022-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +24322,Nf3,EA022,No secondary groups,EA022-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +24323,Nf4,EA022,No secondary groups,EA022-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +24324,Nf5,EA022,No secondary groups,EA022-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +24325,Nf6,EA022,No secondary groups,EA022-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +24326,Nf7,EA022,No secondary groups,EA022-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24327,Nf8,EA022,No secondary groups,EA022-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +24328,Nf9,EA022,No secondary groups,EA022-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +24329,Ng1,EA022,No secondary groups,EA022-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +24330,Ng10,EA022,No secondary groups,EA022-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +24331,Ng11,EA022,No secondary groups,EA022-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +24332,Ng12,EA022,No secondary groups,EA022-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +24333,Ng13,EA022,No secondary groups,EA022-9,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +24334,Ng14,EA022,No secondary groups,EA022-9,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +24335,Ng15,EA022,No secondary groups,EA022-9,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +24336,Ng2,EA022,No secondary groups,EA022-9,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +24337,Ng3,EA022,No secondary groups,EA022-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +24338,Ng4,EA022,No secondary groups,EA022-9,Agamous patrilineages are possible,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +24339,Ng5,EA022,No secondary groups,EA022-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +24340,Ng6,EA022,No secondary groups,EA022-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +24341,Ng7,EA022,No secondary groups,EA022-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +24342,Ng8,EA022,No secondary groups,EA022-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +24343,Ng9,EA022,No secondary groups,EA022-9,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +24344,Nh1,EA022,No secondary groups,EA022-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +24345,Nh10,EA022,No secondary groups,EA022-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +24346,Nh11,EA022,No secondary groups,EA022-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +24347,Nh12,EA022,No secondary groups,EA022-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +24348,Nh13,EA022,No secondary groups,EA022-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +24349,Nh14,EA022,No secondary groups,EA022-9,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +24350,Nh15,EA022,No secondary groups,EA022-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +24351,Nh16,EA022,No secondary groups,EA022-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24352,Nh17,EA022,No secondary groups,EA022-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +24353,Nh18,EA022,No secondary groups,EA022-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24354,Nh19,EA022,No secondary groups,EA022-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +24355,Nh2,EA022,No secondary groups,EA022-9,,dozier1954,,1950,EthnographicAtlas_1967_p114, +24356,Nh20,EA022,No secondary groups,EA022-9,,gifford1931,,1860,EthnographicAtlas_1967_p114, +24357,Nh21,EA022,No secondary groups,EA022-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24358,Nh22,EA022,No secondary groups,EA022-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +24359,Nh23,EA022,No secondary groups,EA022-9,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +24360,Nh24,EA022,No secondary groups,EA022-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +24361,Nh25,EA022,No secondary groups,EA022-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +24362,Nh26,EA022,No secondary groups,EA022-9,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +24363,Nh27,EA022,No secondary groups,EA022-9,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +24364,Nh3,EA022,No secondary groups,EA022-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +24365,Nh4,EA022,No secondary groups,EA022-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +24366,Nh5,EA022,No secondary groups,EA022-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +24367,Nh6,EA022,No secondary groups,EA022-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +24368,Nh7,EA022,No secondary groups,EA022-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +24369,Nh8,EA022,No secondary groups,EA022-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +24370,Nh9,EA022,No secondary groups,EA022-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +24371,Ni1,EA022,No secondary groups,EA022-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +24372,Ni2,EA022,No secondary groups,EA022-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +24373,Ni3,EA022,No secondary groups,EA022-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +24374,Ni4,EA022,No secondary groups,EA022-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +24375,Ni5,EA022,No secondary groups,EA022-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +24376,Ni6,EA022,No secondary groups,EA022-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +24377,Ni7,EA022,No secondary groups,EA022-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +24378,Ni8,EA022,No secondary groups,EA022-9,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +24379,Ni9,EA022,No secondary groups,EA022-9,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968, +24380,Nj1,EA022,No secondary groups,EA022-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24381,Nj10,EA022,No secondary groups,EA022-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24382,Nj11,EA022,No secondary groups,EA022-9,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +24383,Nj12,EA022,No secondary groups,EA022-9,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968, +24384,Nj13,EA022,No secondary groups,EA022-9,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +24385,Nj14,EA022,No secondary groups,EA022-9,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +24386,Nj2,EA022,No secondary groups,EA022-9,"The ""calpulli"" since they were definitely agamous and nonunilineal, are classed as ramages",holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +24387,Nj3,EA022,No secondary groups,EA022-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +24388,Nj4,EA022,No secondary groups,EA022-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +24389,Nj5,EA022,No secondary groups,EA022-9,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +24390,Nj6,EA022,No secondary groups,EA022-9,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +24391,Nj7,EA022,No secondary groups,EA022-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24392,Nj8,EA022,No secondary groups,EA022-9,,foster1948,,1500,EthnographicAtlas_1967_p118, +24393,Nj9,EA022,No secondary groups,EA022-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +24394,Sa1,EA022,No secondary groups,EA022-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +24395,Sa10,EA022,No secondary groups,EA022-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +24396,Sa11,EA022,No secondary groups,EA022-9,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +24397,Sa12,EA022,No secondary groups,EA022-9,,stone1948,,1948,EthnographicAtlas_1967_p118, +24398,Sa13,EA022,No secondary groups,EA022-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +24399,Sa14,EA022,No secondary groups,EA022-9,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +24400,Sa15,EA022,?,EA022-NA,,,,,, +24401,Sa16,EA022,No secondary groups,EA022-9,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +24402,Sa17,EA022,No secondary groups,EA022-9,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +24403,Sa2,EA022,No secondary groups,EA022-9,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24404,Sa3,EA022,No secondary groups,EA022-9,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +24405,Sa4,EA022,No secondary groups,EA022-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +24406,Sa5,EA022,No secondary groups,EA022-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +24407,Sa6,EA022,No secondary groups,EA022-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +24408,Sa7,EA022,No secondary groups,EA022-9,"Solien reports ""nonunilineal descent groups""",solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +24409,Sa8,EA022,No secondary groups,EA022-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +24410,Sa9,EA022,No secondary groups,EA022-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +24411,Sb1,EA022,No secondary groups,EA022-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +24412,Sb2,EA022,No secondary groups,EA022-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +24413,Sb3,EA022,No secondary groups,EA022-9,Assuming the core of a matrilocal extended family to be quasi- patrilineage,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +24414,Sb4,EA022,No secondary groups,EA022-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +24415,Sb5,EA022,No secondary groups,EA022-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +24416,Sb6,EA022,No secondary groups,EA022-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +24417,Sb7,EA022,No secondary groups,EA022-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +24418,Sb8,EA022,?,EA022-NA,,,,,, +24419,Sb9,EA022,No secondary groups,EA022-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +24420,Sc1,EA022,No secondary groups,EA022-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +24421,Sc10,EA022,No secondary groups,EA022-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +24422,Sc11,EA022,No secondary groups,EA022-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +24423,Sc12,EA022,No secondary groups,EA022-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +24424,Sc13,EA022,No secondary groups,EA022-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +24425,Sc14,EA022,No secondary groups,EA022-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +24426,Sc15,EA022,No secondary groups,EA022-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +24427,Sc16,EA022,No secondary groups,EA022-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +24428,Sc17,EA022,No secondary groups,EA022-9,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +24429,Sc18,EA022,No secondary groups,EA022-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +24430,Sc2,EA022,No secondary groups,EA022-9,,leedsnd,,1950,EthnographicAtlas_1967_p118, +24431,Sc3,EA022,No secondary groups,EA022-9,From statement that brothers tend to live together in a settlement,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +24432,Sc4,EA022,No secondary groups,EA022-9,"The ""extended families"" are conceivably localized matrilineages",wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +24433,Sc5,EA022,No secondary groups,EA022-9,,farabee1918,,1900,EthnographicAtlas_1967_p118, +24434,Sc6,EA022,No secondary groups,EA022-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24435,Sc7,EA022,No secondary groups,EA022-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +24436,Sc8,EA022,No secondary groups,EA022-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +24437,Sc9,EA022,No secondary groups,EA022-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +24438,Sd1,EA022,No secondary groups,EA022-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24439,Sd2,EA022,No secondary groups,EA022-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +24440,Sd3,EA022,No secondary groups,EA022-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +24441,Sd4,EA022,No secondary groups,EA022-9,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +24442,Sd5,EA022,No secondary groups,EA022-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +24443,Sd6,EA022,No secondary groups,EA022-9,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +24444,Sd7,EA022,No secondary groups,EA022-9,,fock1963,,1950,EthnographicAtlas_1967_p118, +24445,Sd8,EA022,No secondary groups,EA022-9,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +24446,Sd9,EA022,No secondary groups,EA022-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24447,Se1,EA022,No secondary groups,EA022-9,"Possibly O, though descent is specifically reported to be bilateral",holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +24448,Se10,EA022,No secondary groups,EA022-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +24449,Se11,EA022,No secondary groups,EA022-9,,prost1965,,1960,EthnographicAtlas_1967_p122, +24450,Se12,EA022,No secondary groups,EA022-9,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +24451,Se2,EA022,No secondary groups,EA022-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +24452,Se3,EA022,No secondary groups,EA022-9,Description of patrifamilies suggests quasi-patrilineages,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +24453,Se4,EA022,No secondary groups,EA022-9,,fejos1943,,1940,EthnographicAtlas_1967_p118, +24454,Se5,EA022,No secondary groups,EA022-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +24455,Se6,EA022,No secondary groups,EA022-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +24456,Se7,EA022,No secondary groups,EA022-9,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24457,Se8,EA022,No secondary groups,EA022-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +24458,Se9,EA022,No secondary groups,EA022-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +24459,Sf1,EA022,No secondary groups,EA022-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +24460,Sf2,EA022,No secondary groups,EA022-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +24461,Sf3,EA022,No secondary groups,EA022-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +24462,Sf4,EA022,No secondary groups,EA022-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +24463,Sf5,EA022,No secondary groups,EA022-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +24464,Sf6,EA022,No secondary groups,EA022-9,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +24465,Sf7,EA022,No secondary groups,EA022-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +24466,Sf8,EA022,No secondary groups,EA022-9,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +24467,Sf9,EA022,No secondary groups,EA022-9,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +24468,Sg1,EA022,No secondary groups,EA022-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +24469,Sg2,EA022,No secondary groups,EA022-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24470,Sg3,EA022,No secondary groups,EA022-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +24471,Sg4,EA022,No secondary groups,EA022-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +24472,Sg5,EA022,No secondary groups,EA022-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24473,Sh1,EA022,No secondary groups,EA022-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +24474,Sh2,EA022,No secondary groups,EA022-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +24475,Sh3,EA022,No secondary groups,EA022-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +24476,Sh4,EA022,No secondary groups,EA022-9,,oberg1949,,1940,EthnographicAtlas_1967_p122, +24477,Sh5,EA022,No secondary groups,EA022-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +24478,Sh6,EA022,No secondary groups,EA022-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +24479,Sh7,EA022,No secondary groups,EA022-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +24480,Sh8,EA022,No secondary groups,EA022-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +24481,Sh9,EA022,No secondary groups,EA022-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +24482,Si1,EA022,No secondary groups,EA022-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24483,Si10,EA022,No secondary groups,EA022-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +24484,Si2,EA022,No secondary groups,EA022-9,"An inference from the ""tendency for patrilineally related males to live together"" and from the statement that ""the establishment of a patrilineal lineage"" was prevented by the high death rate",levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +24485,Si3,EA022,No secondary groups,EA022-9,Patrifamilies strongly suggest quasi-lineages,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24486,Si4,EA022,No secondary groups,EA022-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +24487,Si5,EA022,No secondary groups,EA022-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +24488,Si6,EA022,No secondary groups,EA022-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +24489,Si7,EA022,No secondary groups,EA022-9,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +24490,Si8,EA022,No secondary groups,EA022-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +24491,Si9,EA022,No secondary groups,EA022-9,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +24492,Sj1,EA022,No secondary groups,EA022-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +24493,Sj10,EA022,No secondary groups,EA022-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24494,Sj11,EA022,No secondary groups,EA022-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +24495,Sj2,EA022,No secondary groups,EA022-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +24496,Sj3,EA022,No secondary groups,EA022-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +24497,Sj4,EA022,No secondary groups,EA022-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +24498,Sj5,EA022,No secondary groups,EA022-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +24499,Sj6,EA022,No secondary groups,EA022-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24500,Sj7,EA022,No secondary groups,EA022-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +24501,Sj8,EA022,No secondary groups,EA022-9,Inference from extended families with communal dwellings,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +24502,Sj9,EA022,No secondary groups,EA022-9,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +24503,ch12,EA022,No secondary groups,EA022-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +24504,ch13,EA022,No secondary groups,EA022-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +24505,ch14,EA022,No secondary groups,EA022-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +24506,ch15,EA022,No secondary groups,EA022-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +24507,ch16,EA022,No secondary groups,EA022-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +24508,ch17,EA022,No secondary groups,EA022-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +24509,ch18,EA022,Kindreds,EA022-2,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +24510,ch19,EA022,Kindreds,EA022-2,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +24511,ch20,EA022,No secondary groups,EA022-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +24512,ch21,EA022,No secondary groups,EA022-9,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +24513,ch22,EA022,No secondary groups,EA022-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +24514,ch23,EA022,No secondary groups,EA022-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +24515,ch24,EA022,No secondary groups,EA022-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +24516,ch25,EA022,No secondary groups,EA022-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +24517,ch26,EA022,No secondary groups,EA022-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +24518,ch27,EA022,No secondary groups,EA022-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +24519,ch28,EA022,Kindreds,EA022-2,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +24520,ec12,EA022,No secondary groups,EA022-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +24521,ec13,EA022,No secondary groups,EA022-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +24522,ec14,EA022,No secondary groups,EA022-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +24523,ec15,EA022,No secondary groups,EA022-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +24524,ec16,EA022,No secondary groups,EA022-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +24525,ec17,EA022,No secondary groups,EA022-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +24526,ec18,EA022,No secondary groups,EA022-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +24527,ec19,EA022,No secondary groups,EA022-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +24528,ec20,EA022,No secondary groups,EA022-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +24529,ec21,EA022,No secondary groups,EA022-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +24530,Aa1,EA023,No first/second cousins,EA023-7,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +24531,Aa2,EA023,No first cousins,EA023-8,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +24532,Aa3,EA023,Cross-cousin,EA023-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +24533,Aa4,EA023,Any first cousins,EA023-10,"Entry follows Vedder; Lebzelter reports FaSiDa/MoSiDa only (code ""5"")",lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +24534,Aa5,EA023,Only second cousins,EA023-12,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +24535,Aa6,EA023,Matrilateral cross only,EA023-6,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +24536,Aa7,EA023,No first cousins,EA023-8,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +24537,Aa8,EA023,Any first cousins,EA023-10,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +24538,Aa9,EA023,?,EA023-NA,,,,,, +24539,Ab1,EA023,Cross-cousin,EA023-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +24540,Ab10,EA023,No first cousins,EA023-8,,hunter1936,,1936,EthnographicAtlas_1967_p62, +24541,Ab11,EA023,No first cousins,EA023-8,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +24542,Ab12,EA023,No first/second cousins,EA023-7,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +24543,Ab13,EA023,Any first cousins,EA023-10,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +24544,Ab14,EA023,Cross-cousin,EA023-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +24545,Ab15,EA023,Matrilateral cross only,EA023-6,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +24546,Ab16,EA023,Only second cousins,EA023-12,,earthy1933,,1930,EthnographicAtlas_1967_p62, +24547,Ab17,EA023,No first cousins,EA023-8,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +24548,Ab18,EA023,No first cousins,EA023-8,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +24549,Ab19,EA023,Only second cousins,EA023-12,"Formerly 'cross-cousin' (code ""1"")",krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +24550,Ab2,EA023,Cross-cousin,EA023-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +24551,Ab20,EA023,?,EA023-NA,,,,,, +24552,Ab21a,EA023,?,EA023-NA,,,,,, +24553,Ab21b,EA023,No first cousins,EA023-8,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +24554,Ab22,EA023,No first cousins,EA023-8,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +24555,Ab3,EA023,No first/second cousins,EA023-7,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +24556,Ab4,EA023,Only second cousins,EA023-12,,junod1927,,1920,EthnographicAtlas_1967_p62, +24557,Ab5,EA023,Cross-cousin,EA023-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +24558,Ab6,EA023,Cross-cousin,EA023-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +24559,Ab7,EA023,Cross-cousin,EA023-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +24560,Ab8,EA023,Any first cousins,EA023-10,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +24561,Ab9,EA023,No first/second cousins,EA023-7,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +24562,Ac1,EA023,Patrilateral cross only,EA023-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +24563,Ac10,EA023,Cross-cousin,EA023-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +24564,Ac11,EA023,Cross-cousin,EA023-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +24565,Ac12,EA023,Cross-cousin,EA023-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +24566,Ac13,EA023,Cross-cousin,EA023-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +24567,Ac14,EA023,Cross-cousin,EA023-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +24568,Ac15,EA023,Trilateral,EA023-13,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +24569,Ac16,EA023,?,EA023-NA,,,,,, +24570,Ac17,EA023,Cross-cousin,EA023-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +24571,Ac18,EA023,?,EA023-NA,,,,,, +24572,Ac19,EA023,Matrilateral cross only,EA023-6,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +24573,Ac2,EA023,Patrilateral cross only,EA023-9,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +24574,Ac20,EA023,?,EA023-NA,,,,,, +24575,Ac21,EA023,Cross-cousin,EA023-1,But the most highly preferred marriage is with a MoBrDaDa,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +24576,Ac22,EA023,No first cousins,EA023-8,,mertens1935,,1930,EthnographicAtlas_1967_p62, +24577,Ac23,EA023,No first cousins,EA023-8,The preferred marriage is with a MoBrDaDa,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +24578,Ac24,EA023,No first cousins,EA023-8,"Inferred from statement that ""close relatives cannot marry""",baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +24579,Ac25,EA023,Trilateral,EA023-13,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +24580,Ac26,EA023,No first cousins,EA023-8,The preferred marriage is with a MoBrDaDa,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +24581,Ac27,EA023,Cross-cousin,EA023-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +24582,Ac28,EA023,Cross-cousin,EA023-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +24583,Ac29,EA023,Matrilateral cross only,EA023-6,Inferred from the report that parallel cousins and FaSi are not marriageable,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +24584,Ac3,EA023,Cross-cousin,EA023-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +24585,Ac30,EA023,Cross-cousin,EA023-1,"But formerly 'cross-cousin' (code ""1"")",allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +24586,Ac31,EA023,?,EA023-NA,,,,,, +24587,Ac32,EA023,Cross-cousin,EA023-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +24588,Ac33,EA023,Matrilateral cross only,EA023-6,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +24589,Ac34,EA023,Cross-cousin,EA023-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +24590,Ac35,EA023,Cross-cousin,EA023-1,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +24591,Ac36,EA023,Cross-cousin,EA023-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +24592,Ac37,EA023,Cross-cousin,EA023-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +24593,Ac38,EA023,Cross-cousin,EA023-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +24594,Ac39,EA023,Trilateral,EA023-13,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +24595,Ac4,EA023,No first/second cousins,EA023-7,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +24596,Ac40,EA023,?,EA023-NA,,,,,, +24597,Ac41,EA023,Cross-cousin,EA023-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +24598,Ac42,EA023,Cross-cousin,EA023-1,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +24599,Ac43,EA023,?,EA023-NA,,,,,, +24600,Ac5,EA023,Cross-cousin,EA023-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +24601,Ac6,EA023,Cross-cousin,EA023-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +24602,Ac7,EA023,Cross-cousin,EA023-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +24603,Ac8,EA023,No first cousins,EA023-8,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +24604,Ac9,EA023,Cross-cousin,EA023-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +24605,Ad1,EA023,Any first cousins,EA023-10,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +24606,Ad10,EA023,No first cousins,EA023-8,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +24607,Ad11,EA023,Cross-cousin,EA023-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +24608,Ad12,EA023,No first cousins,EA023-8,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +24609,Ad13,EA023,Matrilateral cross only,EA023-6,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +24610,Ad14,EA023,Cross-cousin,EA023-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +24611,Ad15,EA023,Cross-cousin,EA023-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +24612,Ad16,EA023,No first cousins,EA023-8,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +24613,Ad17,EA023,?,EA023-NA,,,,,, +24614,Ad18,EA023,No first cousins,EA023-8,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +24615,Ad19,EA023,No first cousins,EA023-8,But marriage is preferred with a classificatory FaSiDa,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +24616,Ad2,EA023,No first cousins,EA023-8,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +24617,Ad20,EA023,No first/second cousins,EA023-7,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +24618,Ad21,EA023,No first/second cousins,EA023-7,,maurice193538,,1930,EthnographicAtlas_1967_p66, +24619,Ad22,EA023,No first/second cousins,EA023-7,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +24620,Ad23,EA023,Cross-cousin,EA023-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +24621,Ad24,EA023,Cross-cousin,EA023-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +24622,Ad25,EA023,?,EA023-NA,,,,,, +24623,Ad26,EA023,No first cousins,EA023-8,,sick1916,,1910,EthnographicAtlas_1967_p66, +24624,Ad27,EA023,Cross-cousin,EA023-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +24625,Ad28,EA023,?,EA023-NA,,,,,, +24626,Ad29,EA023,Any first cousins,EA023-10,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +24627,Ad3,EA023,No first/second cousins,EA023-7,Marriage with a MoBrDa is allowed under special circumstances when Mo is dead,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +24628,Ad30,EA023,No first cousins,EA023-8,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +24629,Ad31,EA023,No first cousins,EA023-8,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +24630,Ad32,EA023,No first cousins,EA023-8,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +24631,Ad33,EA023,No first cousins,EA023-8,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +24632,Ad34,EA023,?,EA023-NA,,,,,, +24633,Ad35,EA023,No first cousins,EA023-8,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +24634,Ad36,EA023,?,EA023-NA,"Perhaps 'cross-cousin' (code ""1"") because one source states that cousin marriage is common",baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +24635,Ad37,EA023,?,EA023-NA,,,,,, +24636,Ad38,EA023,Cross-cousin,EA023-1,Inferred from specific statements that cousin marriages are allowed and that there are distinct terms for male and female cousins,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +24637,Ad39,EA023,No first cousins,EA023-8,,gray1963,,1950,EthnographicAtlas_1967_p66, +24638,Ad4,EA023,No first/second cousins,EA023-7,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +24639,Ad40,EA023,No first cousins,EA023-8,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +24640,Ad41,EA023,No first/second cousins,EA023-7,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +24641,Ad42,EA023,No first cousins,EA023-8,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +24642,Ad43,EA023,No first cousins,EA023-8,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +24643,Ad44,EA023,?,EA023-NA,,,,,, +24644,Ad45,EA023,No first cousins,EA023-8,"But 'cross-cousin' (code ""1"") for the Hima",oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +24645,Ad46,EA023,No first/second cousins,EA023-7,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +24646,Ad47,EA023,No first/second cousins,EA023-7,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +24647,Ad48,EA023,?,EA023-NA,,,,,, +24648,Ad49,EA023,?,EA023-NA,,,,,, +24649,Ad5,EA023,No first cousins,EA023-8,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +24650,Ad50,EA023,Only second cousins,EA023-12,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +24651,Ad51,EA023,No first cousins,EA023-8,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +24652,Ad6,EA023,No first/second cousins,EA023-7,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +24653,Ad7,EA023,No first cousins,EA023-8,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +24654,Ad8,EA023,Cross-cousin,EA023-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +24655,Ad9,EA023,No first/second cousins,EA023-7,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +24656,Ae1,EA023,No first/second cousins,EA023-7,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +24657,Ae10,EA023,Cross-cousin,EA023-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +24658,Ae11,EA023,No first/second cousins,EA023-7,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +24659,Ae12,EA023,?,EA023-NA,,,,,, +24660,Ae13,EA023,Cross-cousin,EA023-1,"Entry follows Colle; Roy reports 'no first/second cousins' (code ""7"")",colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +24661,Ae14,EA023,Cross-cousin,EA023-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +24662,Ae15,EA023,?,EA023-NA,,,,,, +24663,Ae16,EA023,?,EA023-NA,,,,,, +24664,Ae17,EA023,No first cousins,EA023-8,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +24665,Ae18,EA023,No first cousins,EA023-8,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +24666,Ae19,EA023,Matrilateral cross only,EA023-6,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +24667,Ae2,EA023,No first/second cousins,EA023-7,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +24668,Ae20,EA023,No first/second cousins,EA023-7,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +24669,Ae21,EA023,No first cousins,EA023-8,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +24670,Ae22,EA023,No first cousins,EA023-8,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +24671,Ae23,EA023,?,EA023-NA,,,,,, +24672,Ae24,EA023,?,EA023-NA,,,,,, +24673,Ae25,EA023,No first cousins,EA023-8,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +24674,Ae26,EA023,?,EA023-NA,,,,,, +24675,Ae27,EA023,?,EA023-NA,,,,,, +24676,Ae28,EA023,?,EA023-NA,,,,,, +24677,Ae29,EA023,No first cousins,EA023-8,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +24678,Ae3,EA023,No first/second cousins,EA023-7,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +24679,Ae30,EA023,?,EA023-NA,,,,,, +24680,Ae31,EA023,?,EA023-NA,,,,,, +24681,Ae32,EA023,?,EA023-NA,,,,,, +24682,Ae33,EA023,?,EA023-NA,,,,,, +24683,Ae34,EA023,?,EA023-NA,,,,,, +24684,Ae35,EA023,?,EA023-NA,,,,,, +24685,Ae36,EA023,?,EA023-NA,,,,,, +24686,Ae37,EA023,?,EA023-NA,,,,,, +24687,Ae38,EA023,?,EA023-NA,,,,,, +24688,Ae39,EA023,No first/second cousins,EA023-7,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +24689,Ae4,EA023,No first/second cousins,EA023-7,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +24690,Ae40,EA023,?,EA023-NA,,,,,, +24691,Ae41,EA023,No first cousins,EA023-8,,andersson1953,,1940,EthnographicAtlas_1967_p66, +24692,Ae42,EA023,?,EA023-NA,,,,,, +24693,Ae43,EA023,?,EA023-NA,,,,,, +24694,Ae44,EA023,Any first cousins,EA023-10,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +24695,Ae45,EA023,?,EA023-NA,,,,,, +24696,Ae46,EA023,?,EA023-NA,,,,,, +24697,Ae47,EA023,No first cousins,EA023-8,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +24698,Ae48,EA023,?,EA023-NA,,,,,, +24699,Ae49,EA023,?,EA023-NA,,,,,, +24700,Ae5,EA023,No first/second cousins,EA023-7,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +24701,Ae50,EA023,?,EA023-NA,,,,,, +24702,Ae51,EA023,?,EA023-NA,,,,,, +24703,Ae52,EA023,No first cousins,EA023-8,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +24704,Ae53,EA023,Matrilateral cross only,EA023-6,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +24705,Ae54,EA023,No first cousins,EA023-8,But allowed with FaBrDa,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +24706,Ae55,EA023,?,EA023-NA,,,,,, +24707,Ae56,EA023,No first cousins,EA023-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +24708,Ae57,EA023,?,EA023-NA,,,,,, +24709,Ae58,EA023,No first cousins,EA023-8,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +24710,Ae59,EA023,?,EA023-NA,,,,,, +24711,Ae6,EA023,No first cousins,EA023-8,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +24712,Ae7,EA023,?,EA023-NA,,,,,, +24713,Ae8,EA023,Cross-cousin,EA023-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +24714,Ae9,EA023,No first cousins,EA023-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +24715,Af1,EA023,Trilateral,EA023-13,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +24716,Af10,EA023,No first cousins,EA023-8,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +24717,Af11,EA023,Trilateral,EA023-13,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +24718,Af12,EA023,?,EA023-NA,,,,,, +24719,Af13,EA023,No first/second cousins,EA023-7,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +24720,Af14,EA023,No first/second cousins,EA023-7,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +24721,Af15,EA023,Matrilateral cross only,EA023-6,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +24722,Af16,EA023,?,EA023-NA,,,,,, +24723,Af17,EA023,No first cousins,EA023-8,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +24724,Af18,EA023,Any first cousins,EA023-10,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +24725,Af19,EA023,No first cousins,EA023-8,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +24726,Af2,EA023,Matrilateral cross only,EA023-6,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +24727,Af20,EA023,No first cousins,EA023-8,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +24728,Af21,EA023,?,EA023-NA,,,,,, +24729,Af22,EA023,No first/second cousins,EA023-7,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +24730,Af23,EA023,Trilateral,EA023-13,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +24731,Af24,EA023,No first cousins,EA023-8,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +24732,Af25,EA023,No first cousins,EA023-8,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +24733,Af26,EA023,No first cousins,EA023-8,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +24734,Af27,EA023,No first cousins,EA023-8,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +24735,Af28,EA023,Only second cousins,EA023-12,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +24736,Af29,EA023,No first/second cousins,EA023-7,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +24737,Af3,EA023,Cross-cousin,EA023-1,A slight preference for MoBrDa,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +24738,Af30,EA023,?,EA023-NA,,,,,, +24739,Af31,EA023,?,EA023-NA,,,,,, +24740,Af32,EA023,No first cousins,EA023-8,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24741,Af33,EA023,No first/second cousins,EA023-7,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24742,Af34,EA023,No first/second cousins,EA023-7,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24743,Af35,EA023,?,EA023-NA,,,,,, +24744,Af36,EA023,Cross-cousin,EA023-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +24745,Af37,EA023,No first cousins,EA023-8,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +24746,Af38,EA023,Cross-cousin,EA023-1,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +24747,Af39,EA023,Cross-cousin,EA023-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +24748,Af4,EA023,Cross-cousin,EA023-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +24749,Af40,EA023,Cross-cousin,EA023-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +24750,Af41,EA023,No first cousins,EA023-8,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +24751,Af42,EA023,Cross-cousin,EA023-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +24752,Af43,EA023,Any first cousins,EA023-10,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +24753,Af44,EA023,?,EA023-NA,,,,,, +24754,Af45,EA023,Matrilateral cross only,EA023-6,But marriage with MoBrDa requires a ban-breaking sacrifice,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +24755,Af46,EA023,No first/second cousins,EA023-7,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +24756,Af47,EA023,No first cousins,EA023-8,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +24757,Af48,EA023,?,EA023-NA,,,,,, +24758,Af49,EA023,No first cousins,EA023-8,,schwab1947,,1940,EthnographicAtlas_1967_p70, +24759,Af5,EA023,Matrilateral cross only,EA023-6,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +24760,Af50,EA023,?,EA023-NA,,,,,, +24761,Af51,EA023,?,EA023-NA,,,,,, +24762,Af52,EA023,?,EA023-NA,,,,,, +24763,Af53,EA023,?,EA023-NA,,,,,, +24764,Af54,EA023,No first cousins,EA023-8,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +24765,Af55,EA023,No first cousins,EA023-8,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +24766,Af56,EA023,No first cousins,EA023-8,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +24767,Af57,EA023,No first cousins,EA023-8,"Entry follows McCulloch; Thomas reports 'matrilateral cross-cousins only' (code ""6"")",langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +24768,Af58,EA023,No first cousins,EA023-8,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +24769,Af6,EA023,No first cousins,EA023-8,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +24770,Af7,EA023,No first cousins,EA023-8,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +24771,Af8,EA023,Cross-cousin,EA023-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +24772,Af9,EA023,Cross-cousin,EA023-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +24773,Ag1,EA023,Cross-cousin,EA023-1,"But 'no first cousins' (code ""8"") or 'cross-cousin' (code ""1"") in some districts",dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +24774,Ag10,EA023,Trilateral,EA023-13,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +24775,Ag11,EA023,Cross-cousin,EA023-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +24776,Ag12,EA023,No first cousins,EA023-8,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +24777,Ag13,EA023,No first cousins,EA023-8,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +24778,Ag14,EA023,?,EA023-NA,,,,,, +24779,Ag15,EA023,No first cousins,EA023-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +24780,Ag16,EA023,Trilateral,EA023-13,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +24781,Ag17,EA023,?,EA023-NA,,,,,, +24782,Ag18,EA023,No first cousins,EA023-8,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +24783,Ag19,EA023,No first cousins,EA023-8,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +24784,Ag2,EA023,No first/second cousins,EA023-7,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +24785,Ag20,EA023,?,EA023-NA,Cousin marriages are said to be permitted,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +24786,Ag21,EA023,?,EA023-NA,,,,,, +24787,Ag22,EA023,Cross-cousin,EA023-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +24788,Ag23,EA023,Cross-cousin,EA023-1,Inferred from statement that marriage is forbidden with a parallel cousin,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +24789,Ag24,EA023,Matrilateral cross only,EA023-6,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +24790,Ag25,EA023,Any first cousins,EA023-10,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +24791,Ag26,EA023,Cross-cousin,EA023-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +24792,Ag27,EA023,Any first cousins,EA023-10,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +24793,Ag28,EA023,?,EA023-NA,,,,,, +24794,Ag29,EA023,?,EA023-NA,,,,,, +24795,Ag3,EA023,No first cousins,EA023-8,"Formerly 'matrilateral cross-cousins only' (code ""6"")",arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +24796,Ag30,EA023,?,EA023-NA,,,,,, +24797,Ag31,EA023,?,EA023-NA,,,,,, +24798,Ag32,EA023,Cross-cousin,EA023-1,Inferred from statement that marriage is disapproved with a parallel cousin,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +24799,Ag33,EA023,Cross-cousin,EA023-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +24800,Ag34,EA023,Cross-cousin,EA023-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +24801,Ag35,EA023,Cross-cousin,EA023-1,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +24802,Ag36,EA023,Cross-cousin,EA023-1,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +24803,Ag37,EA023,No first cousins,EA023-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +24804,Ag38,EA023,?,EA023-NA,,,,,, +24805,Ag39,EA023,No first cousins,EA023-8,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +24806,Ag4,EA023,No first/second cousins,EA023-7,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +24807,Ag40,EA023,No first cousins,EA023-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +24808,Ag41,EA023,No first cousins,EA023-8,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +24809,Ag42,EA023,?,EA023-NA,,,,,, +24810,Ag43,EA023,Cross-cousin,EA023-1,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +24811,Ag44,EA023,No first cousins,EA023-8,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +24812,Ag45,EA023,No first cousins,EA023-8,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +24813,Ag46,EA023,No first cousins,EA023-8,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +24814,Ag47,EA023,No first/second cousins,EA023-7,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +24815,Ag48,EA023,?,EA023-NA,,,,,, +24816,Ag49,EA023,No first cousins,EA023-8,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +24817,Ag5,EA023,Cross-cousin,EA023-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +24818,Ag50,EA023,?,EA023-NA,,,,,, +24819,Ag51,EA023,No first cousins,EA023-8,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +24820,Ag52,EA023,?,EA023-NA,,,,,, +24821,Ag53,EA023,No first cousins,EA023-8,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +24822,Ag54,EA023,Cross-cousin,EA023-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +24823,Ag6,EA023,Any first cousins,EA023-10,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +24824,Ag7,EA023,Any first cousins,EA023-10,"Entry follows Malzy, who reports preferential cousin marriage, whereas Ortoli states that known consanguineal kinship is a bar to marriage",malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +24825,Ag8,EA023,Trilateral,EA023-13,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +24826,Ag9,EA023,Cross-cousin,EA023-1,"In some districts, but not in others",labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +24827,Ah1,EA023,No first/second cousins,EA023-7,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +24828,Ah10,EA023,?,EA023-NA,,,,,, +24829,Ah11,EA023,No first/second cousins,EA023-7,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +24830,Ah12,EA023,No first cousins,EA023-8,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +24831,Ah13,EA023,?,EA023-NA,,,,,, +24832,Ah14,EA023,?,EA023-NA,,,,,, +24833,Ah15,EA023,No first cousins,EA023-8,"Entry follows Harris; Gunn and Conant report 'cross-cousin' (code ""1"")",gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +24834,Ah16,EA023,No first/second cousins,EA023-7,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +24835,Ah17,EA023,No first/second cousins,EA023-7,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +24836,Ah18,EA023,No first/second cousins,EA023-7,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +24837,Ah19,EA023,No first cousins,EA023-8,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +24838,Ah2,EA023,Only second cousins,EA023-12,,meek1931a,,1920,EthnographicAtlas_1967_p74, +24839,Ah20,EA023,No first cousins,EA023-8,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +24840,Ah21,EA023,No first cousins,EA023-8,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +24841,Ah22,EA023,?,EA023-NA,,,,,, +24842,Ah23,EA023,Cross-cousin,EA023-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +24843,Ah24,EA023,Any first cousins,EA023-10,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +24844,Ah25,EA023,No first cousins,EA023-8,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +24845,Ah26,EA023,Cross-cousin,EA023-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +24846,Ah27,EA023,Cross-cousin,EA023-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +24847,Ah28,EA023,Only second cousins,EA023-12,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +24848,Ah29,EA023,?,EA023-NA,,,,,, +24849,Ah3,EA023,Only second cousins,EA023-12,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +24850,Ah30,EA023,No first cousins,EA023-8,,meek1931b,,1920,EthnographicAtlas_1967_p74, +24851,Ah31,EA023,No first cousins,EA023-8,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +24852,Ah32,EA023,No first cousins,EA023-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +24853,Ah33,EA023,No first cousins,EA023-8,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +24854,Ah34,EA023,No first cousins,EA023-8,But marriage is allowed with a MoSiDa,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +24855,Ah35,EA023,No first cousins,EA023-8,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +24856,Ah36,EA023,Only second cousins,EA023-12,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +24857,Ah37,EA023,No first cousins,EA023-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +24858,Ah38,EA023,No first cousins,EA023-8,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +24859,Ah39,EA023,?,EA023-NA,,,,,, +24860,Ah4,EA023,No first/second cousins,EA023-7,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +24861,Ah5,EA023,No first/second cousins,EA023-7,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +24862,Ah6,EA023,No first/second cousins,EA023-7,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +24863,Ah7,EA023,No first cousins,EA023-8,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +24864,Ah8,EA023,No first cousins,EA023-8,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +24865,Ah9,EA023,No first cousins,EA023-8,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +24866,Ai1,EA023,No first cousins,EA023-8,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +24867,Ai10,EA023,No first cousins,EA023-8,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +24868,Ai11,EA023,No first cousins,EA023-8,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +24869,Ai12,EA023,No first cousins,EA023-8,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +24870,Ai13,EA023,?,EA023-NA,,,,,, +24871,Ai14,EA023,?,EA023-NA,,,,,, +24872,Ai15,EA023,?,EA023-NA,,,,,, +24873,Ai16,EA023,?,EA023-NA,,,,,, +24874,Ai17,EA023,?,EA023-NA,,,,,, +24875,Ai18,EA023,?,EA023-NA,,,,,, +24876,Ai19,EA023,?,EA023-NA,,,,,, +24877,Ai2,EA023,No first cousins,EA023-8,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +24878,Ai20,EA023,?,EA023-NA,,,,,, +24879,Ai21,EA023,?,EA023-NA,,,,,, +24880,Ai22,EA023,?,EA023-NA,,,,,, +24881,Ai23,EA023,No first cousins,EA023-8,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +24882,Ai24,EA023,?,EA023-NA,,,,,, +24883,Ai25,EA023,?,EA023-NA,,,,,, +24884,Ai26,EA023,?,EA023-NA,,,,,, +24885,Ai27,EA023,?,EA023-NA,,,,,, +24886,Ai28,EA023,No first/second cousins,EA023-7,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +24887,Ai29,EA023,No first cousins,EA023-8,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +24888,Ai3,EA023,No first cousins,EA023-8,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +24889,Ai30,EA023,?,EA023-NA,,,,,, +24890,Ai31,EA023,?,EA023-NA,,,,,, +24891,Ai32,EA023,No first/second cousins,EA023-7,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +24892,Ai33,EA023,?,EA023-NA,,,,,, +24893,Ai34,EA023,?,EA023-NA,,,,,, +24894,Ai35,EA023,No first cousins,EA023-8,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +24895,Ai36,EA023,No first/second cousins,EA023-7,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +24896,Ai37,EA023,No first cousins,EA023-8,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +24897,Ai38,EA023,No first cousins,EA023-8,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +24898,Ai39,EA023,No first/second cousins,EA023-7,,nadel1947,,1940,EthnographicAtlas_1967_p74, +24899,Ai4,EA023,No first/second cousins,EA023-7,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +24900,Ai40,EA023,No first/second cousins,EA023-7,,nadel1947,,1940,EthnographicAtlas_1967_p74, +24901,Ai41,EA023,No first/second cousins,EA023-7,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +24902,Ai42,EA023,No first cousins,EA023-8,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +24903,Ai43,EA023,No first cousins,EA023-8,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +24904,Ai44,EA023,No first cousins,EA023-8,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +24905,Ai45,EA023,No first cousins,EA023-8,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +24906,Ai46,EA023,No first cousins,EA023-8,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +24907,Ai47,EA023,No first cousins,EA023-8,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +24908,Ai5,EA023,?,EA023-NA,,,,,, +24909,Ai6,EA023,No first/second cousins,EA023-7,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +24910,Ai7,EA023,No first/second cousins,EA023-7,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +24911,Ai8,EA023,Cross-cousin,EA023-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +24912,Ai9,EA023,No first/second cousins,EA023-7,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +24913,Aj1,EA023,No first/second cousins,EA023-7,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +24914,Aj10,EA023,?,EA023-NA,,,,,, +24915,Aj11,EA023,No first/second cousins,EA023-7,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +24916,Aj12,EA023,No first cousins,EA023-8,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +24917,Aj13,EA023,No first cousins,EA023-8,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +24918,Aj14,EA023,No first cousins,EA023-8,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +24919,Aj15,EA023,No first cousins,EA023-8,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +24920,Aj16,EA023,?,EA023-NA,,,,,, +24921,Aj17,EA023,No first/second cousins,EA023-7,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +24922,Aj18,EA023,?,EA023-NA,,,,,, +24923,Aj19,EA023,?,EA023-NA,,,,,, +24924,Aj2,EA023,No first/second cousins,EA023-7,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +24925,Aj20,EA023,?,EA023-NA,,,,,, +24926,Aj21,EA023,No first cousins,EA023-8,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +24927,Aj22,EA023,No first cousins,EA023-8,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +24928,Aj23,EA023,No first/second cousins,EA023-7,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +24929,Aj24,EA023,?,EA023-NA,,,,,, +24930,Aj25,EA023,?,EA023-NA,,,,,, +24931,Aj26,EA023,No first cousins,EA023-8,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +24932,Aj27,EA023,?,EA023-NA,,,,,, +24933,Aj28,EA023,No first cousins,EA023-8,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +24934,Aj29,EA023,?,EA023-NA,,,,,, +24935,Aj3,EA023,No first/second cousins,EA023-7,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +24936,Aj30,EA023,?,EA023-NA,,,,,, +24937,Aj31,EA023,?,EA023-NA,,,,,, +24938,Aj4,EA023,No first cousins,EA023-8,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +24939,Aj5,EA023,No first/second cousins,EA023-7,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +24940,Aj6,EA023,No first/second cousins,EA023-7,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +24941,Aj7,EA023,No first cousins,EA023-8,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +24942,Aj8,EA023,No first/second cousins,EA023-7,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +24943,Aj9,EA023,No first cousins,EA023-8,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +24944,Ca1,EA023,Cross-cousin,EA023-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +24945,Ca10,EA023,No first cousins,EA023-8,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +24946,Ca11,EA023,No first cousins,EA023-8,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +24947,Ca12,EA023,?,EA023-NA,,,,,, +24948,Ca13,EA023,No first/second cousins,EA023-7,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +24949,Ca14,EA023,?,EA023-NA,,,,,, +24950,Ca15,EA023,?,EA023-NA,,,,,, +24951,Ca16,EA023,?,EA023-NA,,,,,, +24952,Ca17,EA023,?,EA023-NA,,,,,, +24953,Ca18,EA023,?,EA023-NA,,,,,, +24954,Ca19,EA023,?,EA023-NA,,,,,, +24955,Ca2,EA023,No first/second cousins,EA023-7,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +24956,Ca20,EA023,?,EA023-NA,,,,,, +24957,Ca21,EA023,?,EA023-NA,,,,,, +24958,Ca22,EA023,No first cousins,EA023-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +24959,Ca23,EA023,?,EA023-NA,,,,,, +24960,Ca24,EA023,?,EA023-NA,,,,,, +24961,Ca25,EA023,?,EA023-NA,,,,,, +24962,Ca26,EA023,?,EA023-NA,,,,,, +24963,Ca27,EA023,No first cousins,EA023-8,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +24964,Ca28,EA023,No first cousins,EA023-8,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +24965,Ca29,EA023,?,EA023-NA,,,,,, +24966,Ca3,EA023,No first/second cousins,EA023-7,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +24967,Ca30,EA023,No first cousins,EA023-8,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +24968,Ca31,EA023,?,EA023-NA,,,,,, +24969,Ca32,EA023,No first/second cousins,EA023-7,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +24970,Ca33,EA023,No first/second cousins,EA023-7,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +24971,Ca34,EA023,Any first cousins,EA023-10,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +24972,Ca35,EA023,Any first cousins,EA023-10,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +24973,Ca36,EA023,Any first cousins,EA023-10,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +24974,Ca37,EA023,?,EA023-NA,,,,,, +24975,Ca38,EA023,Any first cousins,EA023-10,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +24976,Ca39,EA023,No first/second cousins,EA023-7,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +24977,Ca4,EA023,?,EA023-NA,,,,,, +24978,Ca40,EA023,No first cousins,EA023-8,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +24979,Ca41,EA023,?,EA023-NA,,,,,, +24980,Ca42,EA023,?,EA023-NA,,,,,, +24981,Ca43,EA023,?,EA023-NA,,,,,, +24982,Ca5,EA023,Any first cousins,EA023-10,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +24983,Ca6,EA023,Any first cousins,EA023-10,But forbidden with a MoSiDa,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +24984,Ca7,EA023,No first/second cousins,EA023-7,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +24985,Ca8,EA023,?,EA023-NA,,,,,, +24986,Ca9,EA023,?,EA023-NA,,,,,, +24987,Cb1,EA023,Cross-cousin,EA023-1,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +24988,Cb10,EA023,No first cousins,EA023-8,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +24989,Cb11,EA023,Matrilateral cross only,EA023-6,Inferred from a report that marriage is permitted with a MoBrDa but forbidden with a FaSiDa,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +24990,Cb12,EA023,Any first cousins,EA023-10,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +24991,Cb13,EA023,Any first cousins,EA023-10,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +24992,Cb14,EA023,?,EA023-NA,,,,,, +24993,Cb15,EA023,Any first cousins,EA023-10,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +24994,Cb16,EA023,Any first cousins,EA023-10,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +24995,Cb17,EA023,No first cousins,EA023-8,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +24996,Cb18,EA023,Any first cousins,EA023-10,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +24997,Cb19,EA023,Trilateral,EA023-13,Marriage is forbidden with a MoSiDa,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +24998,Cb2,EA023,Cross-cousin,EA023-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +24999,Cb20,EA023,?,EA023-NA,,,,,, +25000,Cb21,EA023,Cross-cousin,EA023-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +25001,Cb22,EA023,Any first cousins,EA023-10,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +25002,Cb23,EA023,Any first cousins,EA023-10,"But Lafont reports 'no first cousins' (code ""8"")",kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +25003,Cb24,EA023,Any first cousins,EA023-10,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +25004,Cb25,EA023,Any first cousins,EA023-10,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +25005,Cb26,EA023,Any first cousins,EA023-10,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +25006,Cb27,EA023,No first cousins,EA023-8,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +25007,Cb28,EA023,No first cousins,EA023-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +25008,Cb29,EA023,?,EA023-NA,,,,,, +25009,Cb3,EA023,Any first cousins,EA023-10,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +25010,Cb4,EA023,Any first cousins,EA023-10,,reid1930,,1920,EthnographicAtlas_1967_p78, +25011,Cb5,EA023,Any first cousins,EA023-10,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +25012,Cb6,EA023,Cross-cousin,EA023-1,,woodnd,,1920,EthnographicAtlas_1967_p78, +25013,Cb7,EA023,Cross-cousin,EA023-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +25014,Cb8,EA023,No first cousins,EA023-8,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +25015,Cb9,EA023,Any first cousins,EA023-10,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +25016,Cc1,EA023,Any first cousins,EA023-10,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +25017,Cc10,EA023,Cross-cousin,EA023-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +25018,Cc11,EA023,?,EA023-NA,,,,,, +25019,Cc12,EA023,?,EA023-NA,,,,,, +25020,Cc13,EA023,Any first cousins,EA023-10,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +25021,Cc14,EA023,No first/second cousins,EA023-7,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +25022,Cc15,EA023,?,EA023-NA,,,,,, +25023,Cc16,EA023,Any first cousins,EA023-10,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +25024,Cc17,EA023,Any first cousins,EA023-10,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +25025,Cc18,EA023,?,EA023-NA,,,,,, +25026,Cc19,EA023,?,EA023-NA,,,,,, +25027,Cc2,EA023,No first/second cousins,EA023-7,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +25028,Cc20,EA023,Any first cousins,EA023-10,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +25029,Cc3,EA023,Any first cousins,EA023-10,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +25030,Cc4,EA023,?,EA023-NA,,,,,, +25031,Cc5,EA023,Any first cousins,EA023-10,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +25032,Cc6,EA023,Any first cousins,EA023-10,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +25033,Cc7,EA023,Any first cousins,EA023-10,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25034,Cc8,EA023,?,EA023-NA,,,,,, +25035,Cc9,EA023,Cross-cousin,EA023-1,"Entry follows Briggs; earlier sources report 'any first cousins' (code ""10"")",benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +25036,Cd1,EA023,Any first cousins,EA023-10,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +25037,Cd10,EA023,Any first cousins,EA023-10,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +25038,Cd11,EA023,Any first cousins,EA023-10,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +25039,Cd12,EA023,Any first cousins,EA023-10,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +25040,Cd13,EA023,Any first cousins,EA023-10,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +25041,Cd14,EA023,Any first cousins,EA023-10,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +25042,Cd15,EA023,?,EA023-NA,,,,,, +25043,Cd16,EA023,Any first cousins,EA023-10,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +25044,Cd17,EA023,Any first cousins,EA023-10,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +25045,Cd18,EA023,Any first cousins,EA023-10,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +25046,Cd19,EA023,Any first cousins,EA023-10,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +25047,Cd2,EA023,Any first cousins,EA023-10,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +25048,Cd20,EA023,Any first cousins,EA023-10,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +25049,Cd21,EA023,Any first cousins,EA023-10,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +25050,Cd3,EA023,Trilateral,EA023-13,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +25051,Cd4,EA023,Any first cousins,EA023-10,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +25052,Cd5,EA023,?,EA023-NA,,,,,, +25053,Cd6,EA023,Any first cousins,EA023-10,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +25054,Cd7,EA023,Any first cousins,EA023-10,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +25055,Cd8,EA023,Any first cousins,EA023-10,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +25056,Cd9,EA023,?,EA023-NA,,,,,, +25057,Ce1,EA023,Cross-cousin,EA023-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +25058,Ce2,EA023,Any first cousins,EA023-10,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +25059,Ce3,EA023,Any first cousins,EA023-10,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +25060,Ce4,EA023,?,EA023-NA,,,,,, +25061,Ce5,EA023,Only second cousins,EA023-12,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +25062,Ce6,EA023,Any first cousins,EA023-10,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +25063,Ce7,EA023,No first/second cousins,EA023-7,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +25064,Ce8,EA023,?,EA023-NA,,,,,, +25065,Cf1,EA023,Any first cousins,EA023-10,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +25066,Cf2,EA023,?,EA023-NA,,,,,, +25067,Cf3,EA023,?,EA023-NA,,,,,, +25068,Cf4,EA023,No first cousins,EA023-8,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +25069,Cf5,EA023,No first/second cousins,EA023-7,,miner1939,,1930,EthnographicAtlas_1967_p82, +25070,Cg1,EA023,Any first cousins,EA023-10,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +25071,Cg2,EA023,?,EA023-NA,,,,,, +25072,Cg3,EA023,No first/second cousins,EA023-7,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +25073,Cg4,EA023,Only second cousins,EA023-12,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +25074,Cg5,EA023,?,EA023-NA,,,,,, +25075,Ch1,EA023,?,EA023-NA,,,,,, +25076,Ch10,EA023,No first cousins,EA023-8,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +25077,Ch11,EA023,?,EA023-NA,,,,,, +25078,Ch2,EA023,?,EA023-NA,,,,,, +25079,Ch3,EA023,Only second cousins,EA023-12,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +25080,Ch4,EA023,No first/second cousins,EA023-7,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +25081,Ch5,EA023,?,EA023-NA,,,,,, +25082,Ch6,EA023,Only second cousins,EA023-12,,ember1954,,1910,EthnographicAtlas_1967_p82, +25083,Ch7,EA023,No first/second cousins,EA023-7,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +25084,Ch8,EA023,No first/second cousins,EA023-7,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +25085,Ch9,EA023,No first cousins,EA023-8,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +25086,Ci1,EA023,No first/second cousins,EA023-7,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +25087,Ci10,EA023,No first/second cousins,EA023-7,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +25088,Ci11,EA023,Any first cousins,EA023-10,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +25089,Ci12,EA023,?,EA023-NA,,,,,, +25090,Ci2,EA023,No first cousins,EA023-8,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +25091,Ci3,EA023,?,EA023-NA,,,,,, +25092,Ci4,EA023,?,EA023-NA,,,,,, +25093,Ci5,EA023,Any first cousins,EA023-10,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +25094,Ci6,EA023,Trilateral,EA023-13,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +25095,Ci7,EA023,?,EA023-NA,,,,,, +25096,Ci8,EA023,?,EA023-NA,,,,,, +25097,Ci9,EA023,?,EA023-NA,,,,,, +25098,Cj1,EA023,Any first cousins,EA023-10,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +25099,Cj10,EA023,Any first cousins,EA023-10,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +25100,Cj2,EA023,Any first cousins,EA023-10,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +25101,Cj3,EA023,Any first cousins,EA023-10,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +25102,Cj4,EA023,?,EA023-NA,,,,,, +25103,Cj5,EA023,Any first cousins,EA023-10,,dickson1949,,1930,EthnographicAtlas_1967_p86, +25104,Cj6,EA023,Any first cousins,EA023-10,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +25105,Cj7,EA023,Only second cousins,EA023-12,"But traditionally 'any first cousins' (code ""10"")",davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +25106,Cj8,EA023,Any first cousins,EA023-10,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +25107,Cj9,EA023,?,EA023-NA,,,,,, +25108,Ea1,EA023,Any first cousins,EA023-10,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +25109,Ea10,EA023,Any first cousins,EA023-10,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +25110,Ea11,EA023,Any first cousins,EA023-10,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +25111,Ea12,EA023,Any first cousins,EA023-10,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +25112,Ea13,EA023,Any first cousins,EA023-10,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +25113,Ea2,EA023,Any first cousins,EA023-10,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +25114,Ea3,EA023,Any first cousins,EA023-10,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +25115,Ea4,EA023,?,EA023-NA,,,,,, +25116,Ea5,EA023,No first cousins,EA023-8,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +25117,Ea6,EA023,Any first cousins,EA023-10,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +25118,Ea7,EA023,Any first cousins,EA023-10,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +25119,Ea8,EA023,?,EA023-NA,,,,,, +25120,Ea9,EA023,Any first cousins,EA023-10,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +25121,Eb1,EA023,No first/second cousins,EA023-7,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +25122,Eb2,EA023,Cross-cousin,EA023-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +25123,Eb3,EA023,No first/second cousins,EA023-7,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +25124,Eb4,EA023,No first cousins,EA023-8,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +25125,Eb5,EA023,Maternal only,EA023-3,"Possibly 'matrilateral cross-cousins only' (code ""6"")",freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +25126,Eb6,EA023,Maternal only,EA023-3,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +25127,Eb7,EA023,Maternal only,EA023-3,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +25128,Eb8,EA023,Any first cousins,EA023-10,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +25129,Ec1,EA023,Matrilateral cross only,EA023-6,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +25130,Ec10,EA023,No first/second cousins,EA023-7,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +25131,Ec11,EA023,?,EA023-NA,,,,,, +25132,Ec2,EA023,Trilateral,EA023-13,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25133,Ec3,EA023,Any first cousins,EA023-10,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +25134,Ec4,EA023,Trilateral,EA023-13,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +25135,Ec5,EA023,Only second cousins,EA023-12,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +25136,Ec6,EA023,Only second cousins,EA023-12,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +25137,Ec7,EA023,Trilateral,EA023-13,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +25138,Ec8,EA023,?,EA023-NA,,,,,, +25139,Ec9,EA023,Maternal only,EA023-3,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +25140,Ed1,EA023,No first cousins,EA023-8,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +25141,Ed10,EA023,Trilateral,EA023-13,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +25142,Ed13,EA023,?,EA023-NA,,,,,, +25143,Ed14,EA023,?,EA023-NA,,,,,, +25144,Ed15a,EA023,?,EA023-NA,,,,,, +25145,Ed15b,EA023,Cross-cousin,EA023-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +25146,Ed16,EA023,Trilateral,EA023-13,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +25147,Ed2,EA023,Cross-cousin,EA023-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +25148,Ed3,EA023,Cross-cousin,EA023-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +25149,Ed4,EA023,Cross-cousin,EA023-1,"Or 'cross-cousin' (code ""1"") if Mark's interpretation of Ruey's data is correct",mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +25150,Ed5,EA023,Trilateral,EA023-13,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25151,Ed6,EA023,Maternal only,EA023-3,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +25152,Ed7,EA023,Only second cousins,EA023-12,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +25153,Ed8,EA023,Any first cousins,EA023-10,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +25154,Ed9,EA023,?,EA023-NA,,,,,, +25155,Ee1,EA023,Matrilateral cross only,EA023-6,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +25156,Ee2,EA023,No first cousins,EA023-8,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +25157,Ee3,EA023,No first/second cousins,EA023-7,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +25158,Ee4,EA023,Trilateral,EA023-13,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +25159,Ee5,EA023,No first cousins,EA023-8,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +25160,Ee6,EA023,Only second cousins,EA023-12,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +25161,Ee7,EA023,?,EA023-NA,,,,,, +25162,Ee8,EA023,Matrilateral cross only,EA023-6,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +25163,Ef1,EA023,No first cousins,EA023-8,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +25164,Ef10,EA023,No first cousins,EA023-8,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25165,Ef11,EA023,?,EA023-NA,,,,,, +25166,Ef2,EA023,No first/second cousins,EA023-7,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +25167,Ef3,EA023,No first/second cousins,EA023-7,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +25168,Ef4,EA023,Matrilateral cross only,EA023-6,Entry follows Majumdar; Chatterjee and Das report that cross- cousin marriage is recent and disapproved,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +25169,Ef5,EA023,No first/second cousins,EA023-7,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +25170,Ef6,EA023,No first cousins,EA023-8,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +25171,Ef7,EA023,No first cousins,EA023-8,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +25172,Ef8,EA023,Any first cousins,EA023-10,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +25173,Ef9,EA023,Cross-cousin,EA023-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25174,Eg1,EA023,Cross-cousin,EA023-1,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25175,Eg10,EA023,Cross-cousin,EA023-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +25176,Eg11,EA023,Cross-cousin,EA023-1,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +25177,Eg12,EA023,Cross-cousin,EA023-1,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +25178,Eg13,EA023,Cross-cousin,EA023-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25179,Eg14,EA023,Cross-cousin,EA023-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +25180,Eg2,EA023,Cross-cousin,EA023-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +25181,Eg3,EA023,Cross-cousin,EA023-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +25182,Eg4,EA023,Cross-cousin,EA023-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +25183,Eg5,EA023,Cross-cousin,EA023-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +25184,Eg6,EA023,Cross-cousin,EA023-1,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +25185,Eg7,EA023,Cross-cousin,EA023-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +25186,Eg8,EA023,No first cousins,EA023-8,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +25187,Eg9,EA023,Cross-cousin,EA023-1,,elwin1939,,1930,EthnographicAtlas_1967_p90, +25188,Eh1,EA023,No first cousins,EA023-8,"Entry follows Man; Radcliffe-Brown infers 'any first cousins' (code ""10"")",man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +25189,Eh10,EA023,No first/second cousins,EA023-7,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +25190,Eh2,EA023,Cross-cousin,EA023-1,Marriage is also favored with a FaBrDa,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +25191,Eh3,EA023,Cross-cousin,EA023-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +25192,Eh4,EA023,Cross-cousin,EA023-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25193,Eh5,EA023,Only second cousins,EA023-12,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +25194,Eh6,EA023,Cross-cousin,EA023-1,"Leach denies ""a symmetrical preference for cross-cousin marriage"" but fails to report the ""true facts""",ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +25195,Eh7,EA023,Only second cousins,EA023-12,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +25196,Eh8,EA023,No first cousins,EA023-8,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +25197,Eh9,EA023,No first cousins,EA023-8,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +25198,Ei1,EA023,Cross-cousin,EA023-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25199,Ei10,EA023,No first/second cousins,EA023-7,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +25200,Ei11,EA023,Matrilateral cross only,EA023-6,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +25201,Ei12,EA023,Matrilateral cross only,EA023-6,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +25202,Ei13,EA023,?,EA023-NA,,,,,, +25203,Ei14,EA023,No first cousins,EA023-8,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +25204,Ei15,EA023,Matrilateral cross only,EA023-6,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +25205,Ei16,EA023,Matrilateral cross only,EA023-6,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +25206,Ei17,EA023,?,EA023-NA,,,,,, +25207,Ei18,EA023,?,EA023-NA,,,,,, +25208,Ei19,EA023,Matrilateral cross only,EA023-6,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +25209,Ei2,EA023,Matrilateral cross only,EA023-6,,mills1922,,1920,EthnographicAtlas_1967_p90, +25210,Ei20,EA023,Matrilateral cross only,EA023-6,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +25211,Ei3,EA023,Any first cousins,EA023-10,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +25212,Ei4,EA023,Maternal only,EA023-3,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +25213,Ei5,EA023,Matrilateral cross only,EA023-6,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +25214,Ei6,EA023,Matrilateral cross only,EA023-6,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +25215,Ei7,EA023,Only second cousins,EA023-12,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +25216,Ei8,EA023,Cross-cousin,EA023-1,"Marriage is allowed with a MoBrDa only if MoBr is dead, and with a FaSiDa only if Fa is dead",becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +25217,Ei9,EA023,Cross-cousin,EA023-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +25218,Ej1,EA023,Matrilateral cross only,EA023-6,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +25219,Ej10,EA023,Cross-cousin,EA023-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +25220,Ej11,EA023,No first cousins,EA023-8,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +25221,Ej12,EA023,Matrilateral cross only,EA023-6,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +25222,Ej13,EA023,No first/second cousins,EA023-7,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +25223,Ej14,EA023,No first cousins,EA023-8,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25224,Ej15,EA023,?,EA023-NA,,,,,, +25225,Ej16,EA023,Cross-cousin,EA023-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +25226,Ej2,EA023,Matrilateral cross only,EA023-6,MoYoBrDa only,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +25227,Ej3,EA023,No first cousins,EA023-8,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +25228,Ej4,EA023,No first cousins,EA023-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +25229,Ej5,EA023,Any first cousins,EA023-10,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +25230,Ej6,EA023,?,EA023-NA,,,,,, +25231,Ej7,EA023,No first cousins,EA023-8,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +25232,Ej8,EA023,Any first cousins,EA023-10,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +25233,Ej9,EA023,Any first cousins,EA023-10,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +25234,Ia1,EA023,No first/second cousins,EA023-7,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +25235,Ia10,EA023,No first/second cousins,EA023-7,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +25236,Ia11,EA023,No first/second cousins,EA023-7,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +25237,Ia12,EA023,No first cousins,EA023-8,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +25238,Ia13,EA023,Any first cousins,EA023-10,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +25239,Ia14,EA023,No first cousins,EA023-8,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +25240,Ia15,EA023,No first/second cousins,EA023-7,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +25241,Ia16,EA023,Only second cousins,EA023-12,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +25242,Ia17,EA023,?,EA023-NA,,,,,, +25243,Ia18,EA023,No first/second cousins,EA023-7,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +25244,Ia2,EA023,Only second cousins,EA023-12,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +25245,Ia3,EA023,No first/second cousins,EA023-7,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +25246,Ia4,EA023,Any first cousins,EA023-10,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +25247,Ia5,EA023,No first/second cousins,EA023-7,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +25248,Ia6,EA023,No first/second cousins,EA023-7,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25249,Ia7,EA023,No first/second cousins,EA023-7,,fox1954,,1950,EthnographicAtlas_1967_p90, +25250,Ia8,EA023,Only second cousins,EA023-12,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +25251,Ia9,EA023,No first/second cousins,EA023-7,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +25252,Ib1,EA023,Any first cousins,EA023-10,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25253,Ib2,EA023,Trilateral,EA023-13,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25254,Ib3,EA023,Any first cousins,EA023-10,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +25255,Ib4,EA023,Matrilateral cross only,EA023-6,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +25256,Ib5,EA023,No first/second cousins,EA023-7,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +25257,Ib6,EA023,Cross-cousin,EA023-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +25258,Ib7,EA023,Trilateral,EA023-13,Marriage forbidden only with a FaBrDa,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +25259,Ib8,EA023,No first/second cousins,EA023-7,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +25260,Ib9,EA023,No first/second cousins,EA023-7,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +25261,Ic1,EA023,Any first cousins,EA023-10,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25262,Ic10,EA023,No first cousins,EA023-8,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +25263,Ic11,EA023,No first/second cousins,EA023-7,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25264,Ic12,EA023,Any first cousins,EA023-10,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +25265,Ic13,EA023,Cross-cousin,EA023-1,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +25266,Ic2,EA023,No first/second cousins,EA023-7,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +25267,Ic3,EA023,Matrilateral cross only,EA023-6,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +25268,Ic4,EA023,Trilateral,EA023-13,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +25269,Ic5,EA023,Only second cousins,EA023-12,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +25270,Ic6,EA023,Cross-cousin,EA023-1,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +25271,Ic7,EA023,Cross-cousin,EA023-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +25272,Ic8,EA023,Matrilateral cross only,EA023-6,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +25273,Ic9,EA023,Matrilateral cross only,EA023-6,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +25274,Id1,EA023,Some second only,EA023-11,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +25275,Id10,EA023,No first/second cousins,EA023-7,But marriage is preferred with a remoter classificatory MoMoBrDaDa,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +25276,Id11,EA023,Some second only,EA023-11,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +25277,Id12,EA023,Matrilateral cross only,EA023-6,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +25278,Id13,EA023,Only second cousins,EA023-12,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +25279,Id2,EA023,Matrilateral cross only,EA023-6,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +25280,Id3,EA023,Only second cousins,EA023-12,"Marriage with FaSiDa is allowed in theory, but Pilling observed No actual cases; marriage with a daughter of father's half sister, however, is preferred and common",basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +25281,Id4,EA023,Some second only,EA023-11,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +25282,Id5,EA023,Cross-cousin,EA023-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +25283,Id6,EA023,Matrilateral cross only,EA023-6,Marriage preferential with MoYoBrDa and any second cross-cousin but forbidden with FaSiDa and MoElBrDa,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +25284,Id7,EA023,Some second only,EA023-11,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +25285,Id8,EA023,?,EA023-NA,,,,,, +25286,Id9,EA023,Some second only,EA023-11,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +25287,Ie1,EA023,Only second cousins,EA023-12,Marriage is preferred with any second cross-cousin,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25288,Ie10,EA023,No first/second cousins,EA023-7,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +25289,Ie11,EA023,Some second only,EA023-11,,bowers1964,,1950,EthnographicAtlas_1967_p94, +25290,Ie12,EA023,Only second cousins,EA023-12,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25291,Ie13,EA023,Only second cousins,EA023-12,,landtman1927,,1920,EthnographicAtlas_1967_p94, +25292,Ie14,EA023,No first/second cousins,EA023-7,,haddon1908,,1900,EthnographicAtlas_1967_p94, +25293,Ie15,EA023,No first cousins,EA023-8,"Though disapproved, marriage with a cross-cousin does occasionally occur",kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25294,Ie16,EA023,No first cousins,EA023-8,,williams194041,,1940,EthnographicAtlas_1967_p94, +25295,Ie17,EA023,No first cousins,EA023-8,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +25296,Ie18,EA023,No first/second cousins,EA023-7,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +25297,Ie19,EA023,No first cousins,EA023-8,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +25298,Ie2,EA023,Cross-cousin,EA023-1,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +25299,Ie20,EA023,No first/second cousins,EA023-7,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +25300,Ie21,EA023,?,EA023-NA,,,,,, +25301,Ie22,EA023,No first cousins,EA023-8,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +25302,Ie23,EA023,No first cousins,EA023-8,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +25303,Ie24,EA023,No first cousins,EA023-8,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +25304,Ie25,EA023,No first cousins,EA023-8,,williamson1912,,1920,EthnographicAtlas_1967_p94, +25305,Ie26,EA023,Some second only,EA023-11,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +25306,Ie27,EA023,Cross-cousin,EA023-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +25307,Ie28,EA023,No first cousins,EA023-8,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +25308,Ie29,EA023,No first cousins,EA023-8,Marriage is preferred with FaFaSiSoDa,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25309,Ie3,EA023,No first cousins,EA023-8,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25310,Ie30,EA023,?,EA023-NA,,,,,, +25311,Ie31,EA023,Cross-cousin,EA023-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +25312,Ie32,EA023,?,EA023-NA,,,,,, +25313,Ie33,EA023,Cross-cousin,EA023-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +25314,Ie34,EA023,No first/second cousins,EA023-7,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +25315,Ie35,EA023,Cross-cousin,EA023-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +25316,Ie36,EA023,No first/second cousins,EA023-7,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +25317,Ie37,EA023,No first cousins,EA023-8,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +25318,Ie38,EA023,Cross-cousin,EA023-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +25319,Ie39,EA023,No first cousins,EA023-8,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +25320,Ie4,EA023,Only second cousins,EA023-12,Marriage is preferential between children of cross-cousins,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25321,Ie5,EA023,No first cousins,EA023-8,"The preferred union is with a classificatory, not an actual, cross-cousin",williams1936,,1930,EthnographicAtlas_1967_p94, +25322,Ie6,EA023,Matrilateral cross only,EA023-6,,held1947,,1930,EthnographicAtlas_1967_p94, +25323,Ie7,EA023,No first cousins,EA023-8,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +25324,Ie8,EA023,No first/second cousins,EA023-7,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +25325,Ie9,EA023,Cross-cousin,EA023-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +25326,If1,EA023,No first/second cousins,EA023-7,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25327,If10,EA023,Cross-cousin,EA023-1,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +25328,If11,EA023,Cross-cousin,EA023-1,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +25329,If12,EA023,Cross-cousin,EA023-1,,mason1954,,1940,EthnographicAtlas_1967_p98, +25330,If13,EA023,Cross-cousin,EA023-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +25331,If14,EA023,No first/second cousins,EA023-7,"But 'any first cousins' (code ""10"") in the aristocracy",finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +25332,If15,EA023,No first/second cousins,EA023-7,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +25333,If16,EA023,?,EA023-NA,,,,,, +25334,If17,EA023,Cross-cousin,EA023-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +25335,If2,EA023,No first/second cousins,EA023-7,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +25336,If3,EA023,Cross-cousin,EA023-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +25337,If4,EA023,No first/second cousins,EA023-7,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +25338,If5,EA023,Cross-cousin,EA023-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +25339,If6,EA023,Only second cousins,EA023-12,Marriage with a first cross-cousin occurs only under very special conditions,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +25340,If7,EA023,No first/second cousins,EA023-7,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +25341,If8,EA023,No first/second cousins,EA023-7,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +25342,If9,EA023,Only second cousins,EA023-12,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +25343,Ig1,EA023,Cross-cousin,EA023-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +25344,Ig10,EA023,Some second only,EA023-11,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +25345,Ig11,EA023,No first cousins,EA023-8,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +25346,Ig12,EA023,No first cousins,EA023-8,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +25347,Ig13,EA023,Any first cousins,EA023-10,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +25348,Ig14,EA023,No first cousins,EA023-8,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +25349,Ig15,EA023,?,EA023-NA,,,,,, +25350,Ig16,EA023,?,EA023-NA,,,,,, +25351,Ig17,EA023,Cross-cousin,EA023-1,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +25352,Ig18,EA023,No first cousins,EA023-8,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +25353,Ig19,EA023,No first cousins,EA023-8,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +25354,Ig2,EA023,Paternal only,EA023-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +25355,Ig20,EA023,No first cousins,EA023-8,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +25356,Ig21,EA023,Cross-cousin,EA023-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +25357,Ig3,EA023,No first/second cousins,EA023-7,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +25358,Ig4,EA023,Only second cousins,EA023-12,The preferred marriage is with the daughter of a cross-cousin,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +25359,Ig5,EA023,No first cousins,EA023-8,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +25360,Ig6,EA023,No first cousins,EA023-8,,ivens1927,,1900,EthnographicAtlas_1967_p98, +25361,Ig7,EA023,Cross-cousin,EA023-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +25362,Ig8,EA023,No first/second cousins,EA023-7,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +25363,Ig9,EA023,Some second only,EA023-11,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +25364,Ih1,EA023,No first cousins,EA023-8,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +25365,Ih10,EA023,Cross-cousin,EA023-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25366,Ih11,EA023,Cross-cousin,EA023-1,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +25367,Ih12,EA023,No first cousins,EA023-8,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +25368,Ih13,EA023,Some second only,EA023-11,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +25369,Ih14,EA023,?,EA023-NA,,,,,, +25370,Ih2,EA023,No first/second cousins,EA023-7,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25371,Ih3,EA023,No first/second cousins,EA023-7,Marriage is preferred with MoBrDaDa or MoMoBrDa,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +25372,Ih4,EA023,Cross-cousin,EA023-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25373,Ih5,EA023,Cross-cousin,EA023-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +25374,Ih6,EA023,Only second cousins,EA023-12,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +25375,Ih7,EA023,No first/second cousins,EA023-7,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +25376,Ih8,EA023,Only second cousins,EA023-12,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +25377,Ih9,EA023,Cross-cousin,EA023-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25378,Ii1,EA023,No first/second cousins,EA023-7,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +25379,Ii10,EA023,Cross-cousin,EA023-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +25380,Ii12,EA023,No first cousins,EA023-8,"But 'cross-cousin' (code ""1"") among nobles",beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25381,Ii13,EA023,No first/second cousins,EA023-7,,burrows1937,,1830,EthnographicAtlas_1967_p98, +25382,Ii14,EA023,No first/second cousins,EA023-7,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +25383,Ii2,EA023,Only second cousins,EA023-12,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +25384,Ii3,EA023,No first/second cousins,EA023-7,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +25385,Ii4,EA023,No first cousins,EA023-8,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +25386,Ii5,EA023,No first/second cousins,EA023-7,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +25387,Ii6,EA023,No first/second cousins,EA023-7,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +25388,Ii7,EA023,No first/second cousins,EA023-7,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +25389,Ii8,EA023,Only second cousins,EA023-12,,burrows1936,,1840,EthnographicAtlas_1967_p98, +25390,Ii9,EA023,Only second cousins,EA023-12,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +25391,Ij1,EA023,No first/second cousins,EA023-7,,buck1934,,1820,EthnographicAtlas_1967_p98, +25392,Ij10,EA023,No first/second cousins,EA023-7,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +25393,Ij2,EA023,Only second cousins,EA023-12,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +25394,Ij3,EA023,Cross-cousin,EA023-1,"But Miranda states that ""marriage was prohibited within the third degree of relationship""",forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +25395,Ij4,EA023,Any first cousins,EA023-10,,buck1932a,,1850,EthnographicAtlas_1967_p102, +25396,Ij5,EA023,?,EA023-NA,,,,,, +25397,Ij6,EA023,Only second cousins,EA023-12,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +25398,Ij7,EA023,Only second cousins,EA023-12,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +25399,Ij8,EA023,No first cousins,EA023-8,But chiefly families sometimes practiced cross-cousin marriage,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +25400,Ij9,EA023,No first cousins,EA023-8,,metraux1940,,1860,EthnographicAtlas_1967_p102, +25401,Na1,EA023,Cross-cousin,EA023-1,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +25402,Na10,EA023,Cross-cousin,EA023-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +25403,Na11,EA023,Trilateral,EA023-13,But rules of cousin marriage were variable,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +25404,Na12,EA023,No first/second cousins,EA023-7,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +25405,Na13,EA023,?,EA023-NA,,,,,, +25406,Na14,EA023,?,EA023-NA,,,,,, +25407,Na15,EA023,?,EA023-NA,There are no patterns of preferential marriage,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +25408,Na16,EA023,?,EA023-NA,,,,,, +25409,Na17,EA023,No first cousins,EA023-8,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25410,Na19,EA023,Cross-cousin,EA023-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +25411,Na2,EA023,No first/second cousins,EA023-7,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +25412,Na20,EA023,No first cousins,EA023-8,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +25413,Na21,EA023,No first/second cousins,EA023-7,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +25414,Na22,EA023,No first/second cousins,EA023-7,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +25415,Na23,EA023,?,EA023-NA,,,,,, +25416,Na24,EA023,No first cousins,EA023-8,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +25417,Na25,EA023,?,EA023-NA,,,,,, +25418,Na26,EA023,No first/second cousins,EA023-7,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +25419,Na27,EA023,?,EA023-NA,,,,,, +25420,Na28,EA023,Only second cousins,EA023-12,,jenness1937,,1880,EthnographicAtlas_1967_p102, +25421,Na29,EA023,?,EA023-NA,,,,,, +25422,Na3,EA023,Only second cousins,EA023-12,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +25423,Na30,EA023,No first cousins,EA023-8,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +25424,Na31,EA023,Any first cousins,EA023-10,"""...there were no marriage restrictions""",skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +25425,Na32,EA023,Cross-cousin,EA023-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +25426,Na33,EA023,Cross-cousin,EA023-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +25427,Na34,EA023,Cross-cousin,EA023-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +25428,Na35,EA023,Cross-cousin,EA023-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +25429,Na36,EA023,Cross-cousin,EA023-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +25430,Na37,EA023,Cross-cousin,EA023-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +25431,Na38,EA023,Cross-cousin,EA023-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +25432,Na39,EA023,Cross-cousin,EA023-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +25433,Na4,EA023,Matrilateral cross only,EA023-6,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +25434,Na40,EA023,?,EA023-NA,,,,,, +25435,Na41,EA023,No first/second cousins,EA023-7,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +25436,Na42,EA023,No first cousins,EA023-8,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +25437,Na43,EA023,Any first cousins,EA023-10,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +25438,Na44,EA023,Only second cousins,EA023-12,"But there are occasional marriages between first cousins, and people differ as to their propriety",graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +25439,Na45,EA023,Cross-cousin,EA023-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +25440,Na5,EA023,Cross-cousin,EA023-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +25441,Na6,EA023,Any first cousins,EA023-10,,lantis1946,,1930,EthnographicAtlas_1967_p102, +25442,Na7,EA023,Cross-cousin,EA023-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +25443,Na8,EA023,Only second cousins,EA023-12,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +25444,Na9,EA023,Any first cousins,EA023-10,"But 'no first cousins' (code ""8"") today",bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25445,Nb1,EA023,Cross-cousin,EA023-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +25446,Nb10,EA023,No first/second cousins,EA023-7,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +25447,Nb11,EA023,No first/second cousins,EA023-7,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +25448,Nb12,EA023,No first/second cousins,EA023-7,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +25449,Nb13,EA023,No first/second cousins,EA023-7,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +25450,Nb14,EA023,No first/second cousins,EA023-7,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +25451,Nb15,EA023,No first/second cousins,EA023-7,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +25452,Nb16,EA023,No first/second cousins,EA023-7,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +25453,Nb17,EA023,Only second cousins,EA023-12,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +25454,Nb18,EA023,No first/second cousins,EA023-7,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +25455,Nb19,EA023,No first cousins,EA023-8,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +25456,Nb2,EA023,No first/second cousins,EA023-7,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +25457,Nb20,EA023,No first cousins,EA023-8,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +25458,Nb21,EA023,No first cousins,EA023-8,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +25459,Nb22,EA023,Patrilateral cross only,EA023-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +25460,Nb23,EA023,Cross-cousin,EA023-1,"Marriage with a cross-cousin was considered ""good""",boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +25461,Nb24,EA023,No first/second cousins,EA023-7,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +25462,Nb25,EA023,No first/second cousins,EA023-7,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +25463,Nb26,EA023,No first/second cousins,EA023-7,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +25464,Nb27,EA023,No first/second cousins,EA023-7,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +25465,Nb28,EA023,No first cousins,EA023-8,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +25466,Nb29,EA023,Only second cousins,EA023-12,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +25467,Nb3,EA023,Only second cousins,EA023-12,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +25468,Nb30,EA023,No first cousins,EA023-8,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +25469,Nb31,EA023,Matrilateral cross only,EA023-6,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +25470,Nb32,EA023,No first/second cousins,EA023-7,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +25471,Nb33,EA023,No first/second cousins,EA023-7,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +25472,Nb34,EA023,No first/second cousins,EA023-7,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +25473,Nb35,EA023,No first/second cousins,EA023-7,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +25474,Nb36,EA023,No first/second cousins,EA023-7,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +25475,Nb37,EA023,No first/second cousins,EA023-7,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +25476,Nb38,EA023,No first/second cousins,EA023-7,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +25477,Nb39,EA023,No first/second cousins,EA023-7,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +25478,Nb4,EA023,No first/second cousins,EA023-7,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +25479,Nb5,EA023,Cross-cousin,EA023-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +25480,Nb6,EA023,Maternal only,EA023-3,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +25481,Nb7,EA023,Cross-cousin,EA023-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +25482,Nb8,EA023,Cross-cousin,EA023-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +25483,Nb9,EA023,No first cousins,EA023-8,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +25484,Nc1,EA023,No first cousins,EA023-8,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +25485,Nc10,EA023,No first/second cousins,EA023-7,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +25486,Nc11,EA023,No first/second cousins,EA023-7,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +25487,Nc12,EA023,No first/second cousins,EA023-7,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +25488,Nc13,EA023,Only second cousins,EA023-12,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +25489,Nc14,EA023,No first/second cousins,EA023-7,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +25490,Nc15,EA023,No first cousins,EA023-8,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +25491,Nc16,EA023,No first cousins,EA023-8,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +25492,Nc17,EA023,No first cousins,EA023-8,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +25493,Nc18,EA023,Only second cousins,EA023-12,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +25494,Nc19,EA023,No first cousins,EA023-8,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +25495,Nc2,EA023,No first/second cousins,EA023-7,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +25496,Nc20,EA023,No first/second cousins,EA023-7,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +25497,Nc21,EA023,No first cousins,EA023-8,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +25498,Nc22,EA023,Matrilateral cross only,EA023-6,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +25499,Nc23,EA023,No first/second cousins,EA023-7,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +25500,Nc24,EA023,No first/second cousins,EA023-7,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +25501,Nc25,EA023,No first/second cousins,EA023-7,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +25502,Nc26,EA023,?,EA023-NA,,,,,, +25503,Nc27,EA023,?,EA023-NA,,,,,, +25504,Nc28,EA023,?,EA023-NA,,,,,, +25505,Nc29,EA023,No first cousins,EA023-8,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +25506,Nc3,EA023,No first/second cousins,EA023-7,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +25507,Nc30,EA023,No first/second cousins,EA023-7,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +25508,Nc31,EA023,No first/second cousins,EA023-7,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +25509,Nc32,EA023,No first/second cousins,EA023-7,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +25510,Nc33,EA023,No first/second cousins,EA023-7,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +25511,Nc34,EA023,No first cousins,EA023-8,,meigs1939,,1880,EthnographicAtlas_1967_p106, +25512,Nc4,EA023,No first/second cousins,EA023-7,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +25513,Nc5,EA023,No first cousins,EA023-8,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +25514,Nc6,EA023,No first/second cousins,EA023-7,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +25515,Nc7,EA023,No first/second cousins,EA023-7,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +25516,Nc8,EA023,No first/second cousins,EA023-7,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +25517,Nc9,EA023,No first/second cousins,EA023-7,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +25518,Nd1,EA023,No first/second cousins,EA023-7,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +25519,Nd10,EA023,No first/second cousins,EA023-7,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +25520,Nd11,EA023,No first/second cousins,EA023-7,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +25521,Nd12,EA023,No first/second cousins,EA023-7,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +25522,Nd13,EA023,No first cousins,EA023-8,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +25523,Nd14,EA023,Only second cousins,EA023-12,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +25524,Nd15,EA023,No first/second cousins,EA023-7,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +25525,Nd16,EA023,No first cousins,EA023-8,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +25526,Nd17,EA023,No first cousins,EA023-8,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +25527,Nd18,EA023,No first/second cousins,EA023-7,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +25528,Nd19,EA023,No first/second cousins,EA023-7,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +25529,Nd2,EA023,No first/second cousins,EA023-7,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +25530,Nd20,EA023,No first/second cousins,EA023-7,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +25531,Nd21,EA023,No first/second cousins,EA023-7,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +25532,Nd22,EA023,No first/second cousins,EA023-7,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +25533,Nd23,EA023,No first/second cousins,EA023-7,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +25534,Nd24,EA023,No first/second cousins,EA023-7,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +25535,Nd25,EA023,No first/second cousins,EA023-7,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +25536,Nd26,EA023,No first/second cousins,EA023-7,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +25537,Nd27,EA023,No first/second cousins,EA023-7,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +25538,Nd28,EA023,No first/second cousins,EA023-7,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +25539,Nd29,EA023,No first/second cousins,EA023-7,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +25540,Nd3,EA023,No first/second cousins,EA023-7,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +25541,Nd30,EA023,No first/second cousins,EA023-7,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +25542,Nd31,EA023,No first/second cousins,EA023-7,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +25543,Nd32,EA023,No first/second cousins,EA023-7,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +25544,Nd33,EA023,No first/second cousins,EA023-7,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +25545,Nd34,EA023,No first/second cousins,EA023-7,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +25546,Nd35,EA023,No first/second cousins,EA023-7,"The preferred marriage is with a pseudo-cross cousin, i.e., a stepchild of either MoBr or FaSi",steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +25547,Nd36,EA023,No first/second cousins,EA023-7,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +25548,Nd37,EA023,No first/second cousins,EA023-7,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +25549,Nd38,EA023,Cross-cousin,EA023-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +25550,Nd39,EA023,No first/second cousins,EA023-7,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +25551,Nd4,EA023,No first/second cousins,EA023-7,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +25552,Nd40,EA023,No first/second cousins,EA023-7,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +25553,Nd41,EA023,No first/second cousins,EA023-7,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +25554,Nd42,EA023,Patrilateral cross only,EA023-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +25555,Nd43,EA023,Cross-cousin,EA023-1,Entry follows Harris; Steward reports only marriage with a pseudo-cross-cousin,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +25556,Nd44,EA023,No first/second cousins,EA023-7,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +25557,Nd45,EA023,No first cousins,EA023-8,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +25558,Nd46,EA023,No first/second cousins,EA023-7,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +25559,Nd47,EA023,No first/second cousins,EA023-7,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +25560,Nd48,EA023,Cross-cousin,EA023-1,"But 'cross-cousin' (code ""1"") in the Skull Valley band",malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +25561,Nd49,EA023,No first/second cousins,EA023-7,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +25562,Nd5,EA023,No first/second cousins,EA023-7,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +25563,Nd50,EA023,No first/second cousins,EA023-7,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +25564,Nd51,EA023,No first/second cousins,EA023-7,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +25565,Nd52,EA023,No first/second cousins,EA023-7,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +25566,Nd53,EA023,No first/second cousins,EA023-7,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +25567,Nd54,EA023,No first/second cousins,EA023-7,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25568,Nd55,EA023,No first/second cousins,EA023-7,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +25569,Nd56,EA023,No first/second cousins,EA023-7,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +25570,Nd57,EA023,?,EA023-NA,,,,,, +25571,Nd58,EA023,No first/second cousins,EA023-7,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +25572,Nd59,EA023,?,EA023-NA,,,,,, +25573,Nd6,EA023,No first/second cousins,EA023-7,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +25574,Nd60,EA023,?,EA023-NA,,,,,, +25575,Nd61,EA023,?,EA023-NA,,,,,, +25576,Nd62,EA023,?,EA023-NA,,,,,, +25577,Nd63,EA023,No first cousins,EA023-8,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +25578,Nd64,EA023,No first/second cousins,EA023-7,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +25579,Nd65,EA023,Cross-cousin,EA023-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +25580,Nd66,EA023,No first/second cousins,EA023-7,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +25581,Nd67,EA023,No first cousins,EA023-8,,gifford1936,,1870,EthnographicAtlas_1967_p110, +25582,Nd7,EA023,No first/second cousins,EA023-7,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +25583,Nd8,EA023,No first/second cousins,EA023-7,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +25584,Nd9,EA023,No first/second cousins,EA023-7,"But 'any first cousins' (code ""10"") today",hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +25585,Ne1,EA023,No first/second cousins,EA023-7,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +25586,Ne10,EA023,?,EA023-NA,,,,,, +25587,Ne11,EA023,No first/second cousins,EA023-7,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +25588,Ne12,EA023,No first/second cousins,EA023-7,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +25589,Ne13,EA023,No first cousins,EA023-8,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +25590,Ne14,EA023,Only second cousins,EA023-12,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +25591,Ne15,EA023,No first cousins,EA023-8,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +25592,Ne16,EA023,?,EA023-NA,,,,,, +25593,Ne17,EA023,No first cousins,EA023-8,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +25594,Ne18,EA023,No first cousins,EA023-8,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +25595,Ne19,EA023,Cross-cousin,EA023-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +25596,Ne2,EA023,No first/second cousins,EA023-7,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +25597,Ne20,EA023,No first cousins,EA023-8,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +25598,Ne21,EA023,?,EA023-NA,,,,,, +25599,Ne3,EA023,No first cousins,EA023-8,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +25600,Ne4,EA023,No first cousins,EA023-8,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +25601,Ne5,EA023,No first/second cousins,EA023-7,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +25602,Ne6,EA023,Matrilateral cross only,EA023-6,Inferred from a report by Bowers (p. 75) that a man preferred to have a son-in-law from his own sib,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +25603,Ne7,EA023,No first cousins,EA023-8,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +25604,Ne8,EA023,No first cousins,EA023-8,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +25605,Ne9,EA023,No first/second cousins,EA023-7,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +25606,Nf10,EA023,?,EA023-NA,,,,,, +25607,Nf11,EA023,No first cousins,EA023-8,,whitman1937,,1870,EthnographicAtlas_1967_p114, +25608,Nf12,EA023,No first cousins,EA023-8,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +25609,Nf13,EA023,No first/second cousins,EA023-7,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25610,Nf14,EA023,No first/second cousins,EA023-7,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +25611,Nf15,EA023,No first/second cousins,EA023-7,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +25612,Nf2,EA023,Cross-cousin,EA023-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +25613,Nf3,EA023,No first/second cousins,EA023-7,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +25614,Nf4,EA023,No first cousins,EA023-8,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +25615,Nf5,EA023,No first cousins,EA023-8,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +25616,Nf6,EA023,Only second cousins,EA023-12,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +25617,Nf7,EA023,No first/second cousins,EA023-7,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25618,Nf8,EA023,No first/second cousins,EA023-7,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +25619,Nf9,EA023,No first cousins,EA023-8,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +25620,Ng1,EA023,No first/second cousins,EA023-7,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +25621,Ng10,EA023,?,EA023-NA,"Unreported but probably 'no first cousins' (code ""8"") like the Huron",fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +25622,Ng11,EA023,?,EA023-NA,,,,,, +25623,Ng12,EA023,No first/second cousins,EA023-7,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +25624,Ng13,EA023,?,EA023-NA,,,,,, +25625,Ng14,EA023,No first/second cousins,EA023-7,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +25626,Ng15,EA023,?,EA023-NA,,,,,, +25627,Ng2,EA023,Some second only,EA023-11,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +25628,Ng3,EA023,No first/second cousins,EA023-7,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +25629,Ng4,EA023,No first cousins,EA023-8,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +25630,Ng5,EA023,Only second cousins,EA023-12,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +25631,Ng6,EA023,?,EA023-NA,,,,,, +25632,Ng7,EA023,No first/second cousins,EA023-7,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +25633,Ng8,EA023,?,EA023-NA,,,,,, +25634,Ng9,EA023,Any first cousins,EA023-10,"But formerly 'no first cousins' (code ""8"")",speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +25635,Nh1,EA023,No first/second cousins,EA023-7,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +25636,Nh10,EA023,No first/second cousins,EA023-7,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +25637,Nh11,EA023,No first/second cousins,EA023-7,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +25638,Nh12,EA023,No first cousins,EA023-8,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +25639,Nh13,EA023,No first cousins,EA023-8,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +25640,Nh14,EA023,No first cousins,EA023-8,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +25641,Nh15,EA023,No first/second cousins,EA023-7,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +25642,Nh16,EA023,No first cousins,EA023-8,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25643,Nh17,EA023,No first/second cousins,EA023-7,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +25644,Nh18,EA023,No first/second cousins,EA023-7,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25645,Nh19,EA023,No first/second cousins,EA023-7,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +25646,Nh2,EA023,No first/second cousins,EA023-7,,dozier1954,,1950,EthnographicAtlas_1967_p114, +25647,Nh20,EA023,No first/second cousins,EA023-7,,gifford1931,,1860,EthnographicAtlas_1967_p114, +25648,Nh21,EA023,No first/second cousins,EA023-7,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25649,Nh22,EA023,No first/second cousins,EA023-7,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +25650,Nh23,EA023,No first cousins,EA023-8,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +25651,Nh24,EA023,No first cousins,EA023-8,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +25652,Nh25,EA023,No first cousins,EA023-8,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +25653,Nh26,EA023,No first cousins,EA023-8,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +25654,Nh27,EA023,No first cousins,EA023-8,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +25655,Nh3,EA023,No first/second cousins,EA023-7,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +25656,Nh4,EA023,No first cousins,EA023-8,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +25657,Nh5,EA023,No first/second cousins,EA023-7,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +25658,Nh6,EA023,No first/second cousins,EA023-7,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +25659,Nh7,EA023,No first/second cousins,EA023-7,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +25660,Nh8,EA023,No first/second cousins,EA023-7,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +25661,Nh9,EA023,No first cousins,EA023-8,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +25662,Ni1,EA023,Only second cousins,EA023-12,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +25663,Ni2,EA023,No first/second cousins,EA023-7,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +25664,Ni3,EA023,Any first cousins,EA023-10,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +25665,Ni4,EA023,No first cousins,EA023-8,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +25666,Ni5,EA023,No first cousins,EA023-8,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +25667,Ni6,EA023,No first/second cousins,EA023-7,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +25668,Ni7,EA023,No first/second cousins,EA023-7,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +25669,Ni8,EA023,?,EA023-NA,,,,,, +25670,Ni9,EA023,?,EA023-NA,,,,,, +25671,Nj1,EA023,No first/second cousins,EA023-7,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25672,Nj10,EA023,No first cousins,EA023-8,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25673,Nj11,EA023,?,EA023-NA,,,,,, +25674,Nj12,EA023,?,EA023-NA,,,,,, +25675,Nj13,EA023,?,EA023-NA,,,,,, +25676,Nj14,EA023,No first cousins,EA023-8,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +25677,Nj2,EA023,No first cousins,EA023-8,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +25678,Nj3,EA023,No first cousins,EA023-8,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +25679,Nj4,EA023,No first cousins,EA023-8,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +25680,Nj5,EA023,No first/second cousins,EA023-7,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +25681,Nj6,EA023,No first cousins,EA023-8,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +25682,Nj7,EA023,?,EA023-NA,,,,,, +25683,Nj8,EA023,Any first cousins,EA023-10,,foster1948,,1500,EthnographicAtlas_1967_p118, +25684,Nj9,EA023,No first cousins,EA023-8,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +25685,Sa1,EA023,Only second cousins,EA023-12,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +25686,Sa10,EA023,?,EA023-NA,,,,,, +25687,Sa11,EA023,?,EA023-NA,,,,,, +25688,Sa12,EA023,?,EA023-NA,,,,,, +25689,Sa13,EA023,No first cousins,EA023-8,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +25690,Sa14,EA023,?,EA023-NA,,,,,, +25691,Sa15,EA023,?,EA023-NA,,,,,, +25692,Sa16,EA023,?,EA023-NA,,,,,, +25693,Sa17,EA023,No first cousins,EA023-8,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +25694,Sa2,EA023,Cross-cousin,EA023-1,Entry follows Guiteras; Villa says marriage is preferred with a classificatory cross-cousin but disapproved with a first cross-cousin,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25695,Sa3,EA023,Only second cousins,EA023-12,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +25696,Sa4,EA023,Only second cousins,EA023-12,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +25697,Sa5,EA023,Cross-cousin,EA023-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +25698,Sa6,EA023,Maternal only,EA023-3,"In Murdock (1962d) he coded this as 'matrilateral cross-cousins only' (code ""6"") and noted ""Landa specifically reports marriageability of maternal cousins; hence possibly 'maternal only' (code ""3"") rather than 'matrilateral cross-cousins only' (code ""6"") ."" In the EA he coded the column as 'maternal only' (code ""3"")",carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +25699,Sa7,EA023,Cross-cousin,EA023-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +25700,Sa8,EA023,No first/second cousins,EA023-7,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +25701,Sa9,EA023,Cross-cousin,EA023-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +25702,Sb1,EA023,Cross-cousin,EA023-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +25703,Sb2,EA023,Only second cousins,EA023-12,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +25704,Sb3,EA023,Cross-cousin,EA023-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +25705,Sb4,EA023,Any first cousins,EA023-10,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +25706,Sb5,EA023,No first cousins,EA023-8,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +25707,Sb6,EA023,Trilateral,EA023-13,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +25708,Sb7,EA023,Cross-cousin,EA023-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +25709,Sb8,EA023,?,EA023-NA,,,,,, +25710,Sb9,EA023,No first cousins,EA023-8,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +25711,Sc1,EA023,Any first cousins,EA023-10,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +25712,Sc10,EA023,Cross-cousin,EA023-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +25713,Sc11,EA023,Cross-cousin,EA023-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +25714,Sc12,EA023,Cross-cousin,EA023-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +25715,Sc13,EA023,Cross-cousin,EA023-1,"Entry follows Wilbert; Riley reports 'cross-cousin' (code ""1"")",riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +25716,Sc14,EA023,?,EA023-NA,,,,,, +25717,Sc15,EA023,?,EA023-NA,,,,,, +25718,Sc16,EA023,Cross-cousin,EA023-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +25719,Sc17,EA023,Cross-cousin,EA023-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +25720,Sc18,EA023,Only second cousins,EA023-12,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +25721,Sc2,EA023,Cross-cousin,EA023-1,,leedsnd,,1950,EthnographicAtlas_1967_p118, +25722,Sc3,EA023,Cross-cousin,EA023-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +25723,Sc4,EA023,Cross-cousin,EA023-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +25724,Sc5,EA023,Cross-cousin,EA023-1,,farabee1918,,1900,EthnographicAtlas_1967_p118, +25725,Sc6,EA023,Trilateral,EA023-13,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25726,Sc7,EA023,Cross-cousin,EA023-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +25727,Sc8,EA023,Cross-cousin,EA023-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +25728,Sc9,EA023,No first cousins,EA023-8,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +25729,Sd1,EA023,Cross-cousin,EA023-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25730,Sd2,EA023,No first cousins,EA023-8,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +25731,Sd3,EA023,?,EA023-NA,,,,,, +25732,Sd4,EA023,?,EA023-NA,,,,,, +25733,Sd5,EA023,?,EA023-NA,,,,,, +25734,Sd6,EA023,Cross-cousin,EA023-1,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +25735,Sd7,EA023,Cross-cousin,EA023-1,,fock1963,,1950,EthnographicAtlas_1967_p118, +25736,Sd8,EA023,No first cousins,EA023-8,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +25737,Sd9,EA023,Cross-cousin,EA023-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25738,Se1,EA023,Matrilateral cross only,EA023-6,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +25739,Se10,EA023,?,EA023-NA,Preferential marriage with SiDa,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +25740,Se11,EA023,Cross-cousin,EA023-1,,prost1965,,1960,EthnographicAtlas_1967_p122, +25741,Se12,EA023,Cross-cousin,EA023-1,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +25742,Se2,EA023,Cross-cousin,EA023-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +25743,Se3,EA023,Cross-cousin,EA023-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +25744,Se4,EA023,No first cousins,EA023-8,,fejos1943,,1940,EthnographicAtlas_1967_p118, +25745,Se5,EA023,Cross-cousin,EA023-1,But Goldman reports a preference for marrying a woman of one's mother's lineage,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +25746,Se6,EA023,Cross-cousin,EA023-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +25747,Se7,EA023,No first cousins,EA023-8,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25748,Se8,EA023,Cross-cousin,EA023-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +25749,Se9,EA023,?,EA023-NA,,,,,, +25750,Sf1,EA023,Any first cousins,EA023-10,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +25751,Sf2,EA023,No first cousins,EA023-8,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +25752,Sf3,EA023,No first cousins,EA023-8,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +25753,Sf4,EA023,No first cousins,EA023-8,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +25754,Sf5,EA023,?,EA023-NA,,,,,, +25755,Sf6,EA023,?,EA023-NA,,,,,, +25756,Sf7,EA023,Any first cousins,EA023-10,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +25757,Sf8,EA023,Cross-cousin,EA023-1,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +25758,Sf9,EA023,?,EA023-NA,,,,,, +25759,Sg1,EA023,No first/second cousins,EA023-7,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +25760,Sg2,EA023,Matrilateral cross only,EA023-6,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25761,Sg3,EA023,No first/second cousins,EA023-7,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +25762,Sg4,EA023,Any first cousins,EA023-10,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +25763,Sg5,EA023,Any first cousins,EA023-10,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25764,Sh1,EA023,No first cousins,EA023-8,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +25765,Sh2,EA023,No first cousins,EA023-8,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +25766,Sh3,EA023,No first/second cousins,EA023-7,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +25767,Sh4,EA023,No first cousins,EA023-8,,oberg1949,,1940,EthnographicAtlas_1967_p122, +25768,Sh5,EA023,No first cousins,EA023-8,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +25769,Sh6,EA023,?,EA023-NA,,,,,, +25770,Sh7,EA023,Any first cousins,EA023-10,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +25771,Sh8,EA023,Only second cousins,EA023-12,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +25772,Sh9,EA023,?,EA023-NA,,,,,, +25773,Si1,EA023,Cross-cousin,EA023-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25774,Si10,EA023,Cross-cousin,EA023-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +25775,Si2,EA023,Cross-cousin,EA023-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +25776,Si3,EA023,Cross-cousin,EA023-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25777,Si4,EA023,Cross-cousin,EA023-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +25778,Si5,EA023,Cross-cousin,EA023-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +25779,Si6,EA023,?,EA023-NA,,,,,, +25780,Si7,EA023,?,EA023-NA,,,,,, +25781,Si8,EA023,Only second cousins,EA023-12,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +25782,Si9,EA023,?,EA023-NA,,,,,, +25783,Sj1,EA023,Any first cousins,EA023-10,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +25784,Sj10,EA023,?,EA023-NA,,,,,, +25785,Sj11,EA023,No first cousins,EA023-8,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +25786,Sj2,EA023,Patrilateral cross only,EA023-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +25787,Sj3,EA023,Any first cousins,EA023-10,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +25788,Sj4,EA023,No first cousins,EA023-8,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +25789,Sj5,EA023,Any first cousins,EA023-10,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +25790,Sj6,EA023,No first cousins,EA023-8,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +25791,Sj7,EA023,Some second only,EA023-11,"Entry follows Nimuendaju; Maybury-Lewis gives 'cross-cousin' (code ""1"")",mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +25792,Sj8,EA023,Cross-cousin,EA023-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +25793,Sj9,EA023,No first cousins,EA023-8,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +25794,ch12,EA023,No first/second cousins,EA023-7,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +25795,ch13,EA023,?,EA023-NA,,,,,, +25796,ch14,EA023,No first/second cousins,EA023-7,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +25797,ch15,EA023,No first/second cousins,EA023-7,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +25798,ch16,EA023,?,EA023-NA,,,,,, +25799,ch17,EA023,No first/second cousins,EA023-7,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +25800,ch18,EA023,No first/second cousins,EA023-7,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +25801,ch19,EA023,?,EA023-NA,,,,,, +25802,ch20,EA023,No first cousins,EA023-8,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +25803,ch21,EA023,?,EA023-NA,,,,,, +25804,ch22,EA023,?,EA023-NA,,,,,, +25805,ch23,EA023,Some second only,EA023-11,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +25806,ch24,EA023,No first/second cousins,EA023-7,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +25807,ch25,EA023,?,EA023-NA,,,,,, +25808,ch26,EA023,No first/second cousins,EA023-7,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +25809,ch27,EA023,No first/second cousins,EA023-7,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +25810,ch28,EA023,No first/second cousins,EA023-7,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +25811,ec12,EA023,No first/second cousins,EA023-7,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +25812,ec13,EA023,Cross-cousin,EA023-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +25813,ec14,EA023,No first/second cousins,EA023-7,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +25814,ec15,EA023,No first/second cousins,EA023-7,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +25815,ec16,EA023,Cross-cousin,EA023-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +25816,ec17,EA023,Cross-cousin,EA023-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +25817,ec18,EA023,Cross-cousin,EA023-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +25818,ec19,EA023,Cross-cousin,EA023-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +25819,ec20,EA023,Cross-cousin,EA023-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +25820,ec21,EA023,Cross-cousin,EA023-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +25821,Aa1,EA024,No first/second cousins,EA024-8,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +25822,Aa2,EA024,No first cousins,EA024-7,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +25823,Aa3,EA024,Duolateral,EA024-3,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +25824,Aa4,EA024,Quadrilateral,EA024-1,"Entry follows Vedder; Lebzelter reports 'duolateral' (code ""3"")",lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +25825,Aa5,EA024,Only second cousins,EA024-5,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +25826,Aa6,EA024,Unilateral,EA024-4,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +25827,Aa7,EA024,No first cousins,EA024-7,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +25828,Aa8,EA024,Quadrilateral,EA024-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +25829,Aa9,EA024,?,EA024-NA,,,,,, +25830,Ab1,EA024,Duolateral,EA024-3,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +25831,Ab10,EA024,No first cousins,EA024-7,,hunter1936,,1936,EthnographicAtlas_1967_p62, +25832,Ab11,EA024,No first cousins,EA024-7,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +25833,Ab12,EA024,No first/second cousins,EA024-8,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +25834,Ab13,EA024,Quadrilateral,EA024-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +25835,Ab14,EA024,Duolateral,EA024-3,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +25836,Ab15,EA024,Unilateral,EA024-4,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +25837,Ab16,EA024,Only second cousins,EA024-5,,earthy1933,,1930,EthnographicAtlas_1967_p62, +25838,Ab17,EA024,No first cousins,EA024-7,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +25839,Ab18,EA024,No first cousins,EA024-7,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +25840,Ab19,EA024,Only second cousins,EA024-5,"Formerly 'duolateral' (code ""3"")",krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +25841,Ab2,EA024,Duolateral,EA024-3,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +25842,Ab20,EA024,?,EA024-NA,,,,,, +25843,Ab21a,EA024,?,EA024-NA,,,,,, +25844,Ab21b,EA024,No first cousins,EA024-7,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +25845,Ab22,EA024,No first cousins,EA024-7,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +25846,Ab3,EA024,No first/second cousins,EA024-8,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +25847,Ab4,EA024,Only second cousins,EA024-5,,junod1927,,1920,EthnographicAtlas_1967_p62, +25848,Ab5,EA024,Duolateral,EA024-3,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +25849,Ab6,EA024,Duolateral,EA024-3,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +25850,Ab7,EA024,Duolateral,EA024-3,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +25851,Ab8,EA024,Quadrilateral,EA024-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +25852,Ab9,EA024,No first/second cousins,EA024-8,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +25853,Ac1,EA024,Unilateral,EA024-4,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +25854,Ac10,EA024,Duolateral,EA024-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +25855,Ac11,EA024,Duolateral,EA024-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +25856,Ac12,EA024,Duolateral,EA024-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +25857,Ac13,EA024,Duolateral,EA024-3,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +25858,Ac14,EA024,Duolateral,EA024-3,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +25859,Ac15,EA024,Trilateral,EA024-2,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +25860,Ac16,EA024,?,EA024-NA,,,,,, +25861,Ac17,EA024,Duolateral,EA024-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +25862,Ac18,EA024,?,EA024-NA,,,,,, +25863,Ac19,EA024,Unilateral,EA024-4,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +25864,Ac2,EA024,Unilateral,EA024-4,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +25865,Ac20,EA024,?,EA024-NA,,,,,, +25866,Ac21,EA024,Duolateral,EA024-3,But the most highly preferred marriage is with a MoBrDaDa,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +25867,Ac22,EA024,No first cousins,EA024-7,,mertens1935,,1930,EthnographicAtlas_1967_p62, +25868,Ac23,EA024,No first cousins,EA024-7,The preferred marriage is with a MoBrDaDa,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +25869,Ac24,EA024,No first cousins,EA024-7,"Inferred from statement that ""close relatives cannot marry""",baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +25870,Ac25,EA024,Trilateral,EA024-2,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +25871,Ac26,EA024,No first cousins,EA024-7,The preferred marriage is with a MoBrDaDa,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +25872,Ac27,EA024,Duolateral,EA024-3,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +25873,Ac28,EA024,Duolateral,EA024-3,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +25874,Ac29,EA024,Unilateral,EA024-4,Inferred from the report that parallel cousins and FaSi are not marriageable,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +25875,Ac3,EA024,Duolateral,EA024-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +25876,Ac30,EA024,Duolateral,EA024-3,"But formerly 'duolateral' (code ""3"")",allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +25877,Ac31,EA024,?,EA024-NA,,,,,, +25878,Ac32,EA024,Duolateral,EA024-3,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +25879,Ac33,EA024,Unilateral,EA024-4,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +25880,Ac34,EA024,Duolateral,EA024-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +25881,Ac35,EA024,Duolateral,EA024-3,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +25882,Ac36,EA024,Duolateral,EA024-3,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +25883,Ac37,EA024,Duolateral,EA024-3,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +25884,Ac38,EA024,Duolateral,EA024-3,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +25885,Ac39,EA024,Trilateral,EA024-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +25886,Ac4,EA024,No first/second cousins,EA024-8,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +25887,Ac40,EA024,?,EA024-NA,,,,,, +25888,Ac41,EA024,Duolateral,EA024-3,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +25889,Ac42,EA024,Duolateral,EA024-3,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +25890,Ac43,EA024,?,EA024-NA,,,,,, +25891,Ac5,EA024,Duolateral,EA024-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +25892,Ac6,EA024,Duolateral,EA024-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +25893,Ac7,EA024,Duolateral,EA024-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +25894,Ac8,EA024,No first cousins,EA024-7,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +25895,Ac9,EA024,Duolateral,EA024-3,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +25896,Ad1,EA024,Quadrilateral,EA024-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +25897,Ad10,EA024,No first cousins,EA024-7,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +25898,Ad11,EA024,Duolateral,EA024-3,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +25899,Ad12,EA024,No first cousins,EA024-7,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +25900,Ad13,EA024,Unilateral,EA024-4,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +25901,Ad14,EA024,Duolateral,EA024-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +25902,Ad15,EA024,Duolateral,EA024-3,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +25903,Ad16,EA024,No first cousins,EA024-7,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +25904,Ad17,EA024,?,EA024-NA,,,,,, +25905,Ad18,EA024,No first cousins,EA024-7,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +25906,Ad19,EA024,No first cousins,EA024-7,But marriage is preferred with a classificatory FaSiDa,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +25907,Ad2,EA024,No first cousins,EA024-7,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +25908,Ad20,EA024,No first/second cousins,EA024-8,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +25909,Ad21,EA024,No first/second cousins,EA024-8,,maurice193538,,1930,EthnographicAtlas_1967_p66, +25910,Ad22,EA024,No first/second cousins,EA024-8,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +25911,Ad23,EA024,Duolateral,EA024-3,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +25912,Ad24,EA024,Duolateral,EA024-3,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +25913,Ad25,EA024,?,EA024-NA,,,,,, +25914,Ad26,EA024,No first cousins,EA024-7,,sick1916,,1910,EthnographicAtlas_1967_p66, +25915,Ad27,EA024,Duolateral,EA024-3,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +25916,Ad28,EA024,?,EA024-NA,,,,,, +25917,Ad29,EA024,Quadrilateral,EA024-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +25918,Ad3,EA024,No first/second cousins,EA024-8,Marriage with a MoBrDa is allowed under special circumstances when Mo is dead,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +25919,Ad30,EA024,No first cousins,EA024-7,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +25920,Ad31,EA024,No first cousins,EA024-7,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +25921,Ad32,EA024,No first cousins,EA024-7,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +25922,Ad33,EA024,No first cousins,EA024-7,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +25923,Ad34,EA024,?,EA024-NA,,,,,, +25924,Ad35,EA024,No first cousins,EA024-7,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +25925,Ad36,EA024,?,EA024-NA,"Perhaps 'duolateral' (code ""3"") because one source states that cousin marriage is common",baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +25926,Ad37,EA024,?,EA024-NA,,,,,, +25927,Ad38,EA024,Duolateral,EA024-3,Inferred from specific statements that cousin marriages are allowed and that there are distinct terms for male and female cousins,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +25928,Ad39,EA024,No first cousins,EA024-7,,gray1963,,1950,EthnographicAtlas_1967_p66, +25929,Ad4,EA024,No first/second cousins,EA024-8,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +25930,Ad40,EA024,No first cousins,EA024-7,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +25931,Ad41,EA024,No first/second cousins,EA024-8,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +25932,Ad42,EA024,No first cousins,EA024-7,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +25933,Ad43,EA024,No first cousins,EA024-7,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +25934,Ad44,EA024,?,EA024-NA,,,,,, +25935,Ad45,EA024,No first cousins,EA024-7,"But 'duolateral' (code ""3"") for the Hima",oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +25936,Ad46,EA024,No first/second cousins,EA024-8,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +25937,Ad47,EA024,No first/second cousins,EA024-8,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +25938,Ad48,EA024,?,EA024-NA,,,,,, +25939,Ad49,EA024,?,EA024-NA,,,,,, +25940,Ad5,EA024,No first cousins,EA024-7,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +25941,Ad50,EA024,Only second cousins,EA024-5,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +25942,Ad51,EA024,No first cousins,EA024-7,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +25943,Ad6,EA024,No first/second cousins,EA024-8,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +25944,Ad7,EA024,No first cousins,EA024-7,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +25945,Ad8,EA024,Duolateral,EA024-3,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +25946,Ad9,EA024,No first/second cousins,EA024-8,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +25947,Ae1,EA024,No first/second cousins,EA024-8,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +25948,Ae10,EA024,Duolateral,EA024-3,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +25949,Ae11,EA024,No first/second cousins,EA024-8,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +25950,Ae12,EA024,?,EA024-NA,,,,,, +25951,Ae13,EA024,Duolateral,EA024-3,"Entry follows Colle; Roy reports 'no first/second cousins' (code ""8"")",colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +25952,Ae14,EA024,Duolateral,EA024-3,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +25953,Ae15,EA024,?,EA024-NA,,,,,, +25954,Ae16,EA024,?,EA024-NA,,,,,, +25955,Ae17,EA024,No first cousins,EA024-7,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +25956,Ae18,EA024,No first cousins,EA024-7,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +25957,Ae19,EA024,Unilateral,EA024-4,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +25958,Ae2,EA024,No first/second cousins,EA024-8,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +25959,Ae20,EA024,No first/second cousins,EA024-8,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +25960,Ae21,EA024,No first cousins,EA024-7,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +25961,Ae22,EA024,No first cousins,EA024-7,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +25962,Ae23,EA024,?,EA024-NA,,,,,, +25963,Ae24,EA024,?,EA024-NA,,,,,, +25964,Ae25,EA024,No first cousins,EA024-7,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +25965,Ae26,EA024,?,EA024-NA,,,,,, +25966,Ae27,EA024,?,EA024-NA,,,,,, +25967,Ae28,EA024,?,EA024-NA,,,,,, +25968,Ae29,EA024,No first cousins,EA024-7,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +25969,Ae3,EA024,No first/second cousins,EA024-8,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +25970,Ae30,EA024,?,EA024-NA,,,,,, +25971,Ae31,EA024,?,EA024-NA,,,,,, +25972,Ae32,EA024,?,EA024-NA,,,,,, +25973,Ae33,EA024,?,EA024-NA,,,,,, +25974,Ae34,EA024,?,EA024-NA,,,,,, +25975,Ae35,EA024,?,EA024-NA,,,,,, +25976,Ae36,EA024,?,EA024-NA,,,,,, +25977,Ae37,EA024,?,EA024-NA,,,,,, +25978,Ae38,EA024,?,EA024-NA,,,,,, +25979,Ae39,EA024,No first/second cousins,EA024-8,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +25980,Ae4,EA024,No first/second cousins,EA024-8,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +25981,Ae40,EA024,?,EA024-NA,,,,,, +25982,Ae41,EA024,No first cousins,EA024-7,,andersson1953,,1940,EthnographicAtlas_1967_p66, +25983,Ae42,EA024,?,EA024-NA,,,,,, +25984,Ae43,EA024,?,EA024-NA,,,,,, +25985,Ae44,EA024,Quadrilateral,EA024-1,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +25986,Ae45,EA024,?,EA024-NA,,,,,, +25987,Ae46,EA024,?,EA024-NA,,,,,, +25988,Ae47,EA024,No first cousins,EA024-7,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +25989,Ae48,EA024,?,EA024-NA,,,,,, +25990,Ae49,EA024,?,EA024-NA,,,,,, +25991,Ae5,EA024,No first/second cousins,EA024-8,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +25992,Ae50,EA024,?,EA024-NA,,,,,, +25993,Ae51,EA024,?,EA024-NA,,,,,, +25994,Ae52,EA024,No first cousins,EA024-7,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +25995,Ae53,EA024,Unilateral,EA024-4,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +25996,Ae54,EA024,No first cousins,EA024-7,But allowed with FaBrDa,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +25997,Ae55,EA024,?,EA024-NA,,,,,, +25998,Ae56,EA024,No first cousins,EA024-7,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +25999,Ae57,EA024,?,EA024-NA,,,,,, +26000,Ae58,EA024,No first cousins,EA024-7,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +26001,Ae59,EA024,?,EA024-NA,,,,,, +26002,Ae6,EA024,No first cousins,EA024-7,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +26003,Ae7,EA024,?,EA024-NA,,,,,, +26004,Ae8,EA024,Duolateral,EA024-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +26005,Ae9,EA024,No first cousins,EA024-7,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +26006,Af1,EA024,Trilateral,EA024-2,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +26007,Af10,EA024,No first cousins,EA024-7,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +26008,Af11,EA024,Trilateral,EA024-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +26009,Af12,EA024,?,EA024-NA,,,,,, +26010,Af13,EA024,No first/second cousins,EA024-8,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +26011,Af14,EA024,No first/second cousins,EA024-8,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +26012,Af15,EA024,Unilateral,EA024-4,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +26013,Af16,EA024,?,EA024-NA,,,,,, +26014,Af17,EA024,No first cousins,EA024-7,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +26015,Af18,EA024,Quadrilateral,EA024-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +26016,Af19,EA024,No first cousins,EA024-7,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +26017,Af2,EA024,Unilateral,EA024-4,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +26018,Af20,EA024,No first cousins,EA024-7,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +26019,Af21,EA024,?,EA024-NA,,,,,, +26020,Af22,EA024,No first/second cousins,EA024-8,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +26021,Af23,EA024,Trilateral,EA024-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +26022,Af24,EA024,No first cousins,EA024-7,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +26023,Af25,EA024,No first cousins,EA024-7,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +26024,Af26,EA024,No first cousins,EA024-7,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +26025,Af27,EA024,No first cousins,EA024-7,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +26026,Af28,EA024,Only second cousins,EA024-5,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +26027,Af29,EA024,No first/second cousins,EA024-8,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +26028,Af3,EA024,Duolateral,EA024-3,A slight preference for MoBrDa,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +26029,Af30,EA024,?,EA024-NA,,,,,, +26030,Af31,EA024,?,EA024-NA,,,,,, +26031,Af32,EA024,No first cousins,EA024-7,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26032,Af33,EA024,No first/second cousins,EA024-8,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26033,Af34,EA024,No first/second cousins,EA024-8,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26034,Af35,EA024,?,EA024-NA,,,,,, +26035,Af36,EA024,Duolateral,EA024-3,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +26036,Af37,EA024,No first cousins,EA024-7,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +26037,Af38,EA024,Duolateral,EA024-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +26038,Af39,EA024,Duolateral,EA024-3,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +26039,Af4,EA024,Duolateral,EA024-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +26040,Af40,EA024,Duolateral,EA024-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +26041,Af41,EA024,No first cousins,EA024-7,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +26042,Af42,EA024,Duolateral,EA024-3,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +26043,Af43,EA024,Quadrilateral,EA024-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +26044,Af44,EA024,?,EA024-NA,,,,,, +26045,Af45,EA024,Unilateral,EA024-4,But marriage with MoBrDa requires a ban-breaking sacrifice,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +26046,Af46,EA024,No first/second cousins,EA024-8,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +26047,Af47,EA024,No first cousins,EA024-7,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +26048,Af48,EA024,?,EA024-NA,,,,,, +26049,Af49,EA024,No first cousins,EA024-7,,schwab1947,,1940,EthnographicAtlas_1967_p70, +26050,Af5,EA024,Unilateral,EA024-4,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +26051,Af50,EA024,?,EA024-NA,,,,,, +26052,Af51,EA024,?,EA024-NA,,,,,, +26053,Af52,EA024,?,EA024-NA,,,,,, +26054,Af53,EA024,?,EA024-NA,,,,,, +26055,Af54,EA024,No first cousins,EA024-7,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +26056,Af55,EA024,No first cousins,EA024-7,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +26057,Af56,EA024,No first cousins,EA024-7,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +26058,Af57,EA024,No first cousins,EA024-7,"Entry follows McCulloch; Thomas reports 'unilateral' (code ""4"")",langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +26059,Af58,EA024,No first cousins,EA024-7,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +26060,Af6,EA024,No first cousins,EA024-7,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +26061,Af7,EA024,No first cousins,EA024-7,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +26062,Af8,EA024,Duolateral,EA024-3,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +26063,Af9,EA024,Duolateral,EA024-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +26064,Ag1,EA024,Duolateral,EA024-3,"But 'no first cousins' (code ""7"") or 'duolateral' (code ""3"") in some districts",dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +26065,Ag10,EA024,Trilateral,EA024-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +26066,Ag11,EA024,Duolateral,EA024-3,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +26067,Ag12,EA024,No first cousins,EA024-7,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +26068,Ag13,EA024,No first cousins,EA024-7,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +26069,Ag14,EA024,?,EA024-NA,,,,,, +26070,Ag15,EA024,No first cousins,EA024-7,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +26071,Ag16,EA024,Trilateral,EA024-2,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +26072,Ag17,EA024,?,EA024-NA,,,,,, +26073,Ag18,EA024,No first cousins,EA024-7,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +26074,Ag19,EA024,No first cousins,EA024-7,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +26075,Ag2,EA024,No first/second cousins,EA024-8,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +26076,Ag20,EA024,?,EA024-NA,Cousin marriages are said to be permitted,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +26077,Ag21,EA024,?,EA024-NA,,,,,, +26078,Ag22,EA024,Duolateral,EA024-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +26079,Ag23,EA024,Duolateral,EA024-3,Inferred from statement that marriage is forbidden with a parallel cousin,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +26080,Ag24,EA024,Unilateral,EA024-4,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +26081,Ag25,EA024,Quadrilateral,EA024-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +26082,Ag26,EA024,Duolateral,EA024-3,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +26083,Ag27,EA024,Quadrilateral,EA024-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +26084,Ag28,EA024,?,EA024-NA,,,,,, +26085,Ag29,EA024,?,EA024-NA,,,,,, +26086,Ag3,EA024,No first cousins,EA024-7,"Formerly 'unilateral' (code ""4"")",arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +26087,Ag30,EA024,?,EA024-NA,,,,,, +26088,Ag31,EA024,?,EA024-NA,,,,,, +26089,Ag32,EA024,Duolateral,EA024-3,Inferred from statement that marriage is disapproved with a parallel cousin,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +26090,Ag33,EA024,Duolateral,EA024-3,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +26091,Ag34,EA024,Duolateral,EA024-3,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +26092,Ag35,EA024,Duolateral,EA024-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +26093,Ag36,EA024,Duolateral,EA024-3,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +26094,Ag37,EA024,No first cousins,EA024-7,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +26095,Ag38,EA024,?,EA024-NA,,,,,, +26096,Ag39,EA024,No first cousins,EA024-7,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +26097,Ag4,EA024,No first/second cousins,EA024-8,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +26098,Ag40,EA024,No first cousins,EA024-7,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +26099,Ag41,EA024,No first cousins,EA024-7,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +26100,Ag42,EA024,?,EA024-NA,,,,,, +26101,Ag43,EA024,Duolateral,EA024-3,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +26102,Ag44,EA024,No first cousins,EA024-7,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +26103,Ag45,EA024,No first cousins,EA024-7,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +26104,Ag46,EA024,No first cousins,EA024-7,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +26105,Ag47,EA024,No first/second cousins,EA024-8,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +26106,Ag48,EA024,?,EA024-NA,,,,,, +26107,Ag49,EA024,No first cousins,EA024-7,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +26108,Ag5,EA024,Duolateral,EA024-3,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +26109,Ag50,EA024,?,EA024-NA,,,,,, +26110,Ag51,EA024,No first cousins,EA024-7,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +26111,Ag52,EA024,?,EA024-NA,,,,,, +26112,Ag53,EA024,No first cousins,EA024-7,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +26113,Ag54,EA024,Duolateral,EA024-3,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +26114,Ag6,EA024,Quadrilateral,EA024-1,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +26115,Ag7,EA024,Quadrilateral,EA024-1,"Entry follows Malzy, who reports preferential cousin marriage, whereas Ortoli states that known consanguineal kinship is a bar to marriage",malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +26116,Ag8,EA024,Trilateral,EA024-2,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +26117,Ag9,EA024,Duolateral,EA024-3,"In some districts, but not in others",labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +26118,Ah1,EA024,No first/second cousins,EA024-8,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26119,Ah10,EA024,?,EA024-NA,,,,,, +26120,Ah11,EA024,No first/second cousins,EA024-8,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +26121,Ah12,EA024,No first cousins,EA024-7,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +26122,Ah13,EA024,?,EA024-NA,,,,,, +26123,Ah14,EA024,?,EA024-NA,,,,,, +26124,Ah15,EA024,No first cousins,EA024-7,"Entry follows Harris; Gunn and Conant report 'duolateral' (code ""3"")",gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +26125,Ah16,EA024,No first/second cousins,EA024-8,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +26126,Ah17,EA024,No first/second cousins,EA024-8,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +26127,Ah18,EA024,No first/second cousins,EA024-8,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +26128,Ah19,EA024,No first cousins,EA024-7,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +26129,Ah2,EA024,Only second cousins,EA024-5,,meek1931a,,1920,EthnographicAtlas_1967_p74, +26130,Ah20,EA024,No first cousins,EA024-7,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +26131,Ah21,EA024,No first cousins,EA024-7,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26132,Ah22,EA024,?,EA024-NA,,,,,, +26133,Ah23,EA024,Duolateral,EA024-3,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26134,Ah24,EA024,Quadrilateral,EA024-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26135,Ah25,EA024,No first cousins,EA024-7,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26136,Ah26,EA024,Duolateral,EA024-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26137,Ah27,EA024,Duolateral,EA024-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26138,Ah28,EA024,Only second cousins,EA024-5,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +26139,Ah29,EA024,?,EA024-NA,,,,,, +26140,Ah3,EA024,Only second cousins,EA024-5,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +26141,Ah30,EA024,No first cousins,EA024-7,,meek1931b,,1920,EthnographicAtlas_1967_p74, +26142,Ah31,EA024,No first cousins,EA024-7,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +26143,Ah32,EA024,No first cousins,EA024-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26144,Ah33,EA024,No first cousins,EA024-7,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +26145,Ah34,EA024,No first cousins,EA024-7,But marriage is allowed with a MoSiDa,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +26146,Ah35,EA024,No first cousins,EA024-7,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26147,Ah36,EA024,Only second cousins,EA024-5,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +26148,Ah37,EA024,No first cousins,EA024-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26149,Ah38,EA024,No first cousins,EA024-7,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +26150,Ah39,EA024,?,EA024-NA,,,,,, +26151,Ah4,EA024,No first/second cousins,EA024-8,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +26152,Ah5,EA024,No first/second cousins,EA024-8,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +26153,Ah6,EA024,No first/second cousins,EA024-8,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +26154,Ah7,EA024,No first cousins,EA024-7,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +26155,Ah8,EA024,No first cousins,EA024-7,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +26156,Ah9,EA024,No first cousins,EA024-7,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +26157,Ai1,EA024,No first cousins,EA024-7,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +26158,Ai10,EA024,No first cousins,EA024-7,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +26159,Ai11,EA024,No first cousins,EA024-7,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +26160,Ai12,EA024,No first cousins,EA024-7,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +26161,Ai13,EA024,?,EA024-NA,,,,,, +26162,Ai14,EA024,?,EA024-NA,,,,,, +26163,Ai15,EA024,?,EA024-NA,,,,,, +26164,Ai16,EA024,?,EA024-NA,,,,,, +26165,Ai17,EA024,?,EA024-NA,,,,,, +26166,Ai18,EA024,?,EA024-NA,,,,,, +26167,Ai19,EA024,?,EA024-NA,,,,,, +26168,Ai2,EA024,No first cousins,EA024-7,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +26169,Ai20,EA024,?,EA024-NA,,,,,, +26170,Ai21,EA024,?,EA024-NA,,,,,, +26171,Ai22,EA024,?,EA024-NA,,,,,, +26172,Ai23,EA024,No first cousins,EA024-7,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +26173,Ai24,EA024,?,EA024-NA,,,,,, +26174,Ai25,EA024,?,EA024-NA,,,,,, +26175,Ai26,EA024,?,EA024-NA,,,,,, +26176,Ai27,EA024,?,EA024-NA,,,,,, +26177,Ai28,EA024,No first/second cousins,EA024-8,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +26178,Ai29,EA024,No first cousins,EA024-7,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +26179,Ai3,EA024,No first cousins,EA024-7,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +26180,Ai30,EA024,?,EA024-NA,,,,,, +26181,Ai31,EA024,?,EA024-NA,,,,,, +26182,Ai32,EA024,No first/second cousins,EA024-8,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +26183,Ai33,EA024,?,EA024-NA,,,,,, +26184,Ai34,EA024,?,EA024-NA,,,,,, +26185,Ai35,EA024,No first cousins,EA024-7,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +26186,Ai36,EA024,No first/second cousins,EA024-8,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +26187,Ai37,EA024,No first cousins,EA024-7,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +26188,Ai38,EA024,No first cousins,EA024-7,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +26189,Ai39,EA024,No first/second cousins,EA024-8,,nadel1947,,1940,EthnographicAtlas_1967_p74, +26190,Ai4,EA024,No first/second cousins,EA024-8,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +26191,Ai40,EA024,No first/second cousins,EA024-8,,nadel1947,,1940,EthnographicAtlas_1967_p74, +26192,Ai41,EA024,No first/second cousins,EA024-8,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +26193,Ai42,EA024,No first cousins,EA024-7,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +26194,Ai43,EA024,No first cousins,EA024-7,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +26195,Ai44,EA024,No first cousins,EA024-7,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +26196,Ai45,EA024,No first cousins,EA024-7,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +26197,Ai46,EA024,No first cousins,EA024-7,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +26198,Ai47,EA024,No first cousins,EA024-7,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +26199,Ai5,EA024,?,EA024-NA,,,,,, +26200,Ai6,EA024,No first/second cousins,EA024-8,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +26201,Ai7,EA024,No first/second cousins,EA024-8,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +26202,Ai8,EA024,Duolateral,EA024-3,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +26203,Ai9,EA024,No first/second cousins,EA024-8,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +26204,Aj1,EA024,No first/second cousins,EA024-8,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +26205,Aj10,EA024,?,EA024-NA,,,,,, +26206,Aj11,EA024,No first/second cousins,EA024-8,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +26207,Aj12,EA024,No first cousins,EA024-7,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +26208,Aj13,EA024,No first cousins,EA024-7,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +26209,Aj14,EA024,No first cousins,EA024-7,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +26210,Aj15,EA024,No first cousins,EA024-7,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +26211,Aj16,EA024,?,EA024-NA,,,,,, +26212,Aj17,EA024,No first/second cousins,EA024-8,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +26213,Aj18,EA024,?,EA024-NA,,,,,, +26214,Aj19,EA024,?,EA024-NA,,,,,, +26215,Aj2,EA024,No first/second cousins,EA024-8,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +26216,Aj20,EA024,?,EA024-NA,,,,,, +26217,Aj21,EA024,No first cousins,EA024-7,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +26218,Aj22,EA024,No first cousins,EA024-7,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +26219,Aj23,EA024,No first/second cousins,EA024-8,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +26220,Aj24,EA024,?,EA024-NA,,,,,, +26221,Aj25,EA024,?,EA024-NA,,,,,, +26222,Aj26,EA024,No first cousins,EA024-7,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +26223,Aj27,EA024,?,EA024-NA,,,,,, +26224,Aj28,EA024,No first cousins,EA024-7,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +26225,Aj29,EA024,?,EA024-NA,,,,,, +26226,Aj3,EA024,No first/second cousins,EA024-8,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +26227,Aj30,EA024,?,EA024-NA,,,,,, +26228,Aj31,EA024,?,EA024-NA,,,,,, +26229,Aj4,EA024,No first cousins,EA024-7,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +26230,Aj5,EA024,No first/second cousins,EA024-8,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +26231,Aj6,EA024,No first/second cousins,EA024-8,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +26232,Aj7,EA024,No first cousins,EA024-7,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +26233,Aj8,EA024,No first/second cousins,EA024-8,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +26234,Aj9,EA024,No first cousins,EA024-7,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +26235,Ca1,EA024,Duolateral,EA024-3,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +26236,Ca10,EA024,No first cousins,EA024-7,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +26237,Ca11,EA024,No first cousins,EA024-7,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +26238,Ca12,EA024,?,EA024-NA,,,,,, +26239,Ca13,EA024,No first/second cousins,EA024-8,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +26240,Ca14,EA024,?,EA024-NA,,,,,, +26241,Ca15,EA024,?,EA024-NA,,,,,, +26242,Ca16,EA024,?,EA024-NA,,,,,, +26243,Ca17,EA024,?,EA024-NA,,,,,, +26244,Ca18,EA024,?,EA024-NA,,,,,, +26245,Ca19,EA024,?,EA024-NA,,,,,, +26246,Ca2,EA024,No first/second cousins,EA024-8,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +26247,Ca20,EA024,?,EA024-NA,,,,,, +26248,Ca21,EA024,?,EA024-NA,,,,,, +26249,Ca22,EA024,No first cousins,EA024-7,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +26250,Ca23,EA024,?,EA024-NA,,,,,, +26251,Ca24,EA024,?,EA024-NA,,,,,, +26252,Ca25,EA024,?,EA024-NA,,,,,, +26253,Ca26,EA024,?,EA024-NA,,,,,, +26254,Ca27,EA024,No first cousins,EA024-7,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +26255,Ca28,EA024,No first cousins,EA024-7,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +26256,Ca29,EA024,?,EA024-NA,,,,,, +26257,Ca3,EA024,No first/second cousins,EA024-8,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +26258,Ca30,EA024,No first cousins,EA024-7,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +26259,Ca31,EA024,?,EA024-NA,,,,,, +26260,Ca32,EA024,No first/second cousins,EA024-8,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +26261,Ca33,EA024,No first/second cousins,EA024-8,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +26262,Ca34,EA024,Quadrilateral,EA024-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +26263,Ca35,EA024,Quadrilateral,EA024-1,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +26264,Ca36,EA024,Quadrilateral,EA024-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +26265,Ca37,EA024,?,EA024-NA,,,,,, +26266,Ca38,EA024,Quadrilateral,EA024-1,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +26267,Ca39,EA024,No first/second cousins,EA024-8,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +26268,Ca4,EA024,?,EA024-NA,,,,,, +26269,Ca40,EA024,No first cousins,EA024-7,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +26270,Ca41,EA024,?,EA024-NA,,,,,, +26271,Ca42,EA024,?,EA024-NA,,,,,, +26272,Ca43,EA024,?,EA024-NA,,,,,, +26273,Ca5,EA024,Quadrilateral,EA024-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +26274,Ca6,EA024,Quadrilateral,EA024-1,But forbidden with a MoSiDa,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +26275,Ca7,EA024,No first/second cousins,EA024-8,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +26276,Ca8,EA024,?,EA024-NA,,,,,, +26277,Ca9,EA024,?,EA024-NA,,,,,, +26278,Cb1,EA024,Duolateral,EA024-3,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +26279,Cb10,EA024,No first cousins,EA024-7,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +26280,Cb11,EA024,Unilateral,EA024-4,Inferred from a report that marriage is permitted with a MoBrDa but forbidden with a FaSiDa,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +26281,Cb12,EA024,Quadrilateral,EA024-1,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +26282,Cb13,EA024,Quadrilateral,EA024-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +26283,Cb14,EA024,?,EA024-NA,,,,,, +26284,Cb15,EA024,Quadrilateral,EA024-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +26285,Cb16,EA024,Quadrilateral,EA024-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +26286,Cb17,EA024,No first cousins,EA024-7,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +26287,Cb18,EA024,Quadrilateral,EA024-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +26288,Cb19,EA024,Trilateral,EA024-2,Marriage is forbidden with a MoSiDa,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +26289,Cb2,EA024,Duolateral,EA024-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +26290,Cb20,EA024,?,EA024-NA,,,,,, +26291,Cb21,EA024,Duolateral,EA024-3,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +26292,Cb22,EA024,Quadrilateral,EA024-1,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +26293,Cb23,EA024,Quadrilateral,EA024-1,"But Lafont reports 'no first cousins' (code ""7"")",kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +26294,Cb24,EA024,Quadrilateral,EA024-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +26295,Cb25,EA024,Quadrilateral,EA024-1,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +26296,Cb26,EA024,Quadrilateral,EA024-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +26297,Cb27,EA024,No first cousins,EA024-7,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26298,Cb28,EA024,No first cousins,EA024-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +26299,Cb29,EA024,?,EA024-NA,,,,,, +26300,Cb3,EA024,Quadrilateral,EA024-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +26301,Cb4,EA024,Quadrilateral,EA024-1,,reid1930,,1920,EthnographicAtlas_1967_p78, +26302,Cb5,EA024,Quadrilateral,EA024-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +26303,Cb6,EA024,Duolateral,EA024-3,,woodnd,,1920,EthnographicAtlas_1967_p78, +26304,Cb7,EA024,Duolateral,EA024-3,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +26305,Cb8,EA024,No first cousins,EA024-7,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +26306,Cb9,EA024,Quadrilateral,EA024-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +26307,Cc1,EA024,Quadrilateral,EA024-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +26308,Cc10,EA024,Duolateral,EA024-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +26309,Cc11,EA024,?,EA024-NA,,,,,, +26310,Cc12,EA024,?,EA024-NA,,,,,, +26311,Cc13,EA024,Quadrilateral,EA024-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +26312,Cc14,EA024,No first/second cousins,EA024-8,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +26313,Cc15,EA024,?,EA024-NA,,,,,, +26314,Cc16,EA024,Quadrilateral,EA024-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +26315,Cc17,EA024,Quadrilateral,EA024-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +26316,Cc18,EA024,?,EA024-NA,,,,,, +26317,Cc19,EA024,?,EA024-NA,,,,,, +26318,Cc2,EA024,No first/second cousins,EA024-8,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +26319,Cc20,EA024,Quadrilateral,EA024-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +26320,Cc3,EA024,Quadrilateral,EA024-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +26321,Cc4,EA024,?,EA024-NA,,,,,, +26322,Cc5,EA024,Quadrilateral,EA024-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +26323,Cc6,EA024,Quadrilateral,EA024-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +26324,Cc7,EA024,Quadrilateral,EA024-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26325,Cc8,EA024,?,EA024-NA,,,,,, +26326,Cc9,EA024,Duolateral,EA024-3,"Entry follows Briggs; earlier sources report 'quadrilateral' (code ""1"")",benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +26327,Cd1,EA024,Quadrilateral,EA024-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +26328,Cd10,EA024,Quadrilateral,EA024-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +26329,Cd11,EA024,Quadrilateral,EA024-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +26330,Cd12,EA024,Quadrilateral,EA024-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +26331,Cd13,EA024,Quadrilateral,EA024-1,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +26332,Cd14,EA024,Quadrilateral,EA024-1,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +26333,Cd15,EA024,?,EA024-NA,,,,,, +26334,Cd16,EA024,Quadrilateral,EA024-1,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +26335,Cd17,EA024,Quadrilateral,EA024-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +26336,Cd18,EA024,Quadrilateral,EA024-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +26337,Cd19,EA024,Quadrilateral,EA024-1,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +26338,Cd2,EA024,Quadrilateral,EA024-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +26339,Cd20,EA024,Quadrilateral,EA024-1,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +26340,Cd21,EA024,Quadrilateral,EA024-1,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +26341,Cd3,EA024,Trilateral,EA024-2,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +26342,Cd4,EA024,Quadrilateral,EA024-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +26343,Cd5,EA024,?,EA024-NA,,,,,, +26344,Cd6,EA024,Quadrilateral,EA024-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +26345,Cd7,EA024,Quadrilateral,EA024-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +26346,Cd8,EA024,Quadrilateral,EA024-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +26347,Cd9,EA024,?,EA024-NA,,,,,, +26348,Ce1,EA024,Duolateral,EA024-3,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +26349,Ce2,EA024,Quadrilateral,EA024-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +26350,Ce3,EA024,Quadrilateral,EA024-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +26351,Ce4,EA024,?,EA024-NA,,,,,, +26352,Ce5,EA024,Only second cousins,EA024-5,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +26353,Ce6,EA024,Quadrilateral,EA024-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +26354,Ce7,EA024,No first/second cousins,EA024-8,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +26355,Ce8,EA024,?,EA024-NA,,,,,, +26356,Cf1,EA024,Quadrilateral,EA024-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +26357,Cf2,EA024,?,EA024-NA,,,,,, +26358,Cf3,EA024,?,EA024-NA,,,,,, +26359,Cf4,EA024,No first cousins,EA024-7,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +26360,Cf5,EA024,No first/second cousins,EA024-8,,miner1939,,1930,EthnographicAtlas_1967_p82, +26361,Cg1,EA024,Quadrilateral,EA024-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +26362,Cg2,EA024,?,EA024-NA,,,,,, +26363,Cg3,EA024,No first/second cousins,EA024-8,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +26364,Cg4,EA024,Only second cousins,EA024-5,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +26365,Cg5,EA024,?,EA024-NA,,,,,, +26366,Ch1,EA024,?,EA024-NA,,,,,, +26367,Ch10,EA024,No first cousins,EA024-7,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +26368,Ch11,EA024,?,EA024-NA,,,,,, +26369,Ch2,EA024,?,EA024-NA,,,,,, +26370,Ch3,EA024,Only second cousins,EA024-5,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +26371,Ch4,EA024,No first/second cousins,EA024-8,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +26372,Ch5,EA024,?,EA024-NA,,,,,, +26373,Ch6,EA024,Only second cousins,EA024-5,,ember1954,,1910,EthnographicAtlas_1967_p82, +26374,Ch7,EA024,No first/second cousins,EA024-8,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +26375,Ch8,EA024,No first/second cousins,EA024-8,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +26376,Ch9,EA024,No first cousins,EA024-7,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +26377,Ci1,EA024,No first/second cousins,EA024-8,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +26378,Ci10,EA024,No first/second cousins,EA024-8,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +26379,Ci11,EA024,Quadrilateral,EA024-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +26380,Ci12,EA024,?,EA024-NA,,,,,, +26381,Ci2,EA024,No first cousins,EA024-7,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +26382,Ci3,EA024,?,EA024-NA,,,,,, +26383,Ci4,EA024,?,EA024-NA,,,,,, +26384,Ci5,EA024,Quadrilateral,EA024-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +26385,Ci6,EA024,Trilateral,EA024-2,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +26386,Ci7,EA024,?,EA024-NA,,,,,, +26387,Ci8,EA024,?,EA024-NA,,,,,, +26388,Ci9,EA024,?,EA024-NA,,,,,, +26389,Cj1,EA024,Quadrilateral,EA024-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +26390,Cj10,EA024,Quadrilateral,EA024-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +26391,Cj2,EA024,Quadrilateral,EA024-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +26392,Cj3,EA024,Quadrilateral,EA024-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +26393,Cj4,EA024,?,EA024-NA,,,,,, +26394,Cj5,EA024,Quadrilateral,EA024-1,,dickson1949,,1930,EthnographicAtlas_1967_p86, +26395,Cj6,EA024,Quadrilateral,EA024-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +26396,Cj7,EA024,Only second cousins,EA024-5,"But traditionally 'quadrilateral' (code ""1"")",davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +26397,Cj8,EA024,Quadrilateral,EA024-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +26398,Cj9,EA024,?,EA024-NA,,,,,, +26399,Ea1,EA024,Quadrilateral,EA024-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +26400,Ea10,EA024,Quadrilateral,EA024-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +26401,Ea11,EA024,Quadrilateral,EA024-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +26402,Ea12,EA024,Quadrilateral,EA024-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +26403,Ea13,EA024,Quadrilateral,EA024-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +26404,Ea2,EA024,Quadrilateral,EA024-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +26405,Ea3,EA024,Quadrilateral,EA024-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +26406,Ea4,EA024,?,EA024-NA,,,,,, +26407,Ea5,EA024,No first cousins,EA024-7,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +26408,Ea6,EA024,Quadrilateral,EA024-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +26409,Ea7,EA024,Quadrilateral,EA024-1,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +26410,Ea8,EA024,?,EA024-NA,,,,,, +26411,Ea9,EA024,Quadrilateral,EA024-1,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +26412,Eb1,EA024,No first/second cousins,EA024-8,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +26413,Eb2,EA024,Duolateral,EA024-3,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +26414,Eb3,EA024,No first/second cousins,EA024-8,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +26415,Eb4,EA024,No first cousins,EA024-7,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +26416,Eb5,EA024,Duolateral,EA024-3,"Possibly 'unilateral' (code ""4"")",freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +26417,Eb6,EA024,Duolateral,EA024-3,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +26418,Eb7,EA024,Duolateral,EA024-3,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +26419,Eb8,EA024,Quadrilateral,EA024-1,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +26420,Ec1,EA024,Unilateral,EA024-4,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +26421,Ec10,EA024,No first/second cousins,EA024-8,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +26422,Ec11,EA024,?,EA024-NA,,,,,, +26423,Ec2,EA024,Trilateral,EA024-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26424,Ec3,EA024,Quadrilateral,EA024-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +26425,Ec4,EA024,Trilateral,EA024-2,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +26426,Ec5,EA024,Only second cousins,EA024-5,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +26427,Ec6,EA024,Only second cousins,EA024-5,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +26428,Ec7,EA024,Trilateral,EA024-2,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +26429,Ec8,EA024,?,EA024-NA,,,,,, +26430,Ec9,EA024,Duolateral,EA024-3,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +26431,Ed1,EA024,No first cousins,EA024-7,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +26432,Ed10,EA024,Trilateral,EA024-2,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +26433,Ed13,EA024,?,EA024-NA,,,,,, +26434,Ed14,EA024,?,EA024-NA,,,,,, +26435,Ed15a,EA024,?,EA024-NA,,,,,, +26436,Ed15b,EA024,Duolateral,EA024-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +26437,Ed16,EA024,Trilateral,EA024-2,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +26438,Ed2,EA024,Duolateral,EA024-3,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +26439,Ed3,EA024,Duolateral,EA024-3,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +26440,Ed4,EA024,Duolateral,EA024-3,"Or 'duolateral' (code ""3"") if Mark's interpretation of Ruey's data is correct",mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +26441,Ed5,EA024,Trilateral,EA024-2,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26442,Ed6,EA024,Duolateral,EA024-3,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +26443,Ed7,EA024,Only second cousins,EA024-5,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +26444,Ed8,EA024,Quadrilateral,EA024-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +26445,Ed9,EA024,?,EA024-NA,,,,,, +26446,Ee1,EA024,Unilateral,EA024-4,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +26447,Ee2,EA024,No first cousins,EA024-7,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +26448,Ee3,EA024,No first/second cousins,EA024-8,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +26449,Ee4,EA024,Trilateral,EA024-2,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +26450,Ee5,EA024,No first cousins,EA024-7,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +26451,Ee6,EA024,Only second cousins,EA024-5,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +26452,Ee7,EA024,?,EA024-NA,,,,,, +26453,Ee8,EA024,Unilateral,EA024-4,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +26454,Ef1,EA024,No first cousins,EA024-7,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +26455,Ef10,EA024,No first cousins,EA024-7,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26456,Ef11,EA024,?,EA024-NA,,,,,, +26457,Ef2,EA024,No first/second cousins,EA024-8,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +26458,Ef3,EA024,No first/second cousins,EA024-8,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +26459,Ef4,EA024,Unilateral,EA024-4,Entry follows Majumdar; Chatterjee and Das report that cross- cousin marriage is recent and disapproved,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +26460,Ef5,EA024,No first/second cousins,EA024-8,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +26461,Ef6,EA024,No first cousins,EA024-7,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +26462,Ef7,EA024,No first cousins,EA024-7,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +26463,Ef8,EA024,Quadrilateral,EA024-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +26464,Ef9,EA024,Duolateral,EA024-3,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26465,Eg1,EA024,Duolateral,EA024-3,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26466,Eg10,EA024,Duolateral,EA024-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +26467,Eg11,EA024,Duolateral,EA024-3,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +26468,Eg12,EA024,Duolateral,EA024-3,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +26469,Eg13,EA024,Duolateral,EA024-3,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26470,Eg14,EA024,Duolateral,EA024-3,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +26471,Eg2,EA024,Duolateral,EA024-3,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +26472,Eg3,EA024,Duolateral,EA024-3,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +26473,Eg4,EA024,Duolateral,EA024-3,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +26474,Eg5,EA024,Duolateral,EA024-3,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +26475,Eg6,EA024,Duolateral,EA024-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +26476,Eg7,EA024,Duolateral,EA024-3,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +26477,Eg8,EA024,No first cousins,EA024-7,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +26478,Eg9,EA024,Duolateral,EA024-3,,elwin1939,,1930,EthnographicAtlas_1967_p90, +26479,Eh1,EA024,No first cousins,EA024-7,"Entry follows Man; Radcliffe-Brown infers 'quadrilateral' (code ""1"")",man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +26480,Eh10,EA024,No first/second cousins,EA024-8,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +26481,Eh2,EA024,Duolateral,EA024-3,Marriage is also favored with a FaBrDa,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +26482,Eh3,EA024,Duolateral,EA024-3,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +26483,Eh4,EA024,Duolateral,EA024-3,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26484,Eh5,EA024,Only second cousins,EA024-5,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +26485,Eh6,EA024,Duolateral,EA024-3,"Leach denies ""a symmetrical preference for cross-cousin marriage"" but fails to report the ""true facts""",ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +26486,Eh7,EA024,Only second cousins,EA024-5,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +26487,Eh8,EA024,No first cousins,EA024-7,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +26488,Eh9,EA024,No first cousins,EA024-7,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +26489,Ei1,EA024,Duolateral,EA024-3,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26490,Ei10,EA024,No first/second cousins,EA024-8,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +26491,Ei11,EA024,Unilateral,EA024-4,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +26492,Ei12,EA024,Unilateral,EA024-4,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +26493,Ei13,EA024,?,EA024-NA,,,,,, +26494,Ei14,EA024,No first cousins,EA024-7,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +26495,Ei15,EA024,Unilateral,EA024-4,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +26496,Ei16,EA024,Unilateral,EA024-4,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +26497,Ei17,EA024,?,EA024-NA,,,,,, +26498,Ei18,EA024,?,EA024-NA,,,,,, +26499,Ei19,EA024,Unilateral,EA024-4,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +26500,Ei2,EA024,Unilateral,EA024-4,,mills1922,,1920,EthnographicAtlas_1967_p90, +26501,Ei20,EA024,Unilateral,EA024-4,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +26502,Ei3,EA024,Quadrilateral,EA024-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +26503,Ei4,EA024,Duolateral,EA024-3,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +26504,Ei5,EA024,Unilateral,EA024-4,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +26505,Ei6,EA024,Unilateral,EA024-4,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +26506,Ei7,EA024,Only second cousins,EA024-5,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +26507,Ei8,EA024,Duolateral,EA024-3,"Marriage is allowed with a MoBrDa only if MoBr is dead, and with a FaSiDa only if Fa is dead",becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +26508,Ei9,EA024,Duolateral,EA024-3,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +26509,Ej1,EA024,Unilateral,EA024-4,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +26510,Ej10,EA024,Duolateral,EA024-3,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +26511,Ej11,EA024,No first cousins,EA024-7,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +26512,Ej12,EA024,Unilateral,EA024-4,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +26513,Ej13,EA024,No first/second cousins,EA024-8,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +26514,Ej14,EA024,No first cousins,EA024-7,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26515,Ej15,EA024,?,EA024-NA,,,,,, +26516,Ej16,EA024,Duolateral,EA024-3,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +26517,Ej2,EA024,Unilateral,EA024-4,MoYoBrDa only,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +26518,Ej3,EA024,No first cousins,EA024-7,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +26519,Ej4,EA024,No first cousins,EA024-7,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +26520,Ej5,EA024,Quadrilateral,EA024-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +26521,Ej6,EA024,?,EA024-NA,,,,,, +26522,Ej7,EA024,No first cousins,EA024-7,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +26523,Ej8,EA024,Quadrilateral,EA024-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +26524,Ej9,EA024,Quadrilateral,EA024-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +26525,Ia1,EA024,No first/second cousins,EA024-8,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +26526,Ia10,EA024,No first/second cousins,EA024-8,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +26527,Ia11,EA024,No first/second cousins,EA024-8,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +26528,Ia12,EA024,No first cousins,EA024-7,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +26529,Ia13,EA024,Quadrilateral,EA024-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +26530,Ia14,EA024,No first cousins,EA024-7,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +26531,Ia15,EA024,No first/second cousins,EA024-8,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +26532,Ia16,EA024,Only second cousins,EA024-5,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +26533,Ia17,EA024,?,EA024-NA,,,,,, +26534,Ia18,EA024,No first/second cousins,EA024-8,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +26535,Ia2,EA024,Only second cousins,EA024-5,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +26536,Ia3,EA024,No first/second cousins,EA024-8,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +26537,Ia4,EA024,Quadrilateral,EA024-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +26538,Ia5,EA024,No first/second cousins,EA024-8,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +26539,Ia6,EA024,No first/second cousins,EA024-8,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26540,Ia7,EA024,No first/second cousins,EA024-8,,fox1954,,1950,EthnographicAtlas_1967_p90, +26541,Ia8,EA024,Only second cousins,EA024-5,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +26542,Ia9,EA024,No first/second cousins,EA024-8,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +26543,Ib1,EA024,Quadrilateral,EA024-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26544,Ib2,EA024,Trilateral,EA024-2,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26545,Ib3,EA024,Quadrilateral,EA024-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +26546,Ib4,EA024,Unilateral,EA024-4,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +26547,Ib5,EA024,No first/second cousins,EA024-8,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +26548,Ib6,EA024,Duolateral,EA024-3,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +26549,Ib7,EA024,Trilateral,EA024-2,Marriage forbidden only with a FaBrDa,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +26550,Ib8,EA024,No first/second cousins,EA024-8,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +26551,Ib9,EA024,No first/second cousins,EA024-8,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +26552,Ic1,EA024,Quadrilateral,EA024-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26553,Ic10,EA024,No first cousins,EA024-7,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +26554,Ic11,EA024,No first/second cousins,EA024-8,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26555,Ic12,EA024,Quadrilateral,EA024-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +26556,Ic13,EA024,Duolateral,EA024-3,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +26557,Ic2,EA024,No first/second cousins,EA024-8,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +26558,Ic3,EA024,Unilateral,EA024-4,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +26559,Ic4,EA024,Trilateral,EA024-2,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +26560,Ic5,EA024,Only second cousins,EA024-5,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +26561,Ic6,EA024,Duolateral,EA024-3,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +26562,Ic7,EA024,Duolateral,EA024-3,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +26563,Ic8,EA024,Unilateral,EA024-4,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +26564,Ic9,EA024,Unilateral,EA024-4,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +26565,Id1,EA024,Some second only,EA024-6,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +26566,Id10,EA024,No first/second cousins,EA024-8,But marriage is preferred with a remoter classificatory MoMoBrDaDa,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +26567,Id11,EA024,Some second only,EA024-6,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +26568,Id12,EA024,Unilateral,EA024-4,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +26569,Id13,EA024,Only second cousins,EA024-5,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +26570,Id2,EA024,Unilateral,EA024-4,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +26571,Id3,EA024,Only second cousins,EA024-5,"Marriage with FaSiDa is allowed in theory, but Pilling observed No actual cases; marriage with a daughter of father's half sister, however, is preferred and common",basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +26572,Id4,EA024,Some second only,EA024-6,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +26573,Id5,EA024,Duolateral,EA024-3,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +26574,Id6,EA024,Unilateral,EA024-4,Marriage preferential with MoYoBrDa and any second cross-cousin but forbidden with FaSiDa and MoElBrDa,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +26575,Id7,EA024,Some second only,EA024-6,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +26576,Id8,EA024,?,EA024-NA,,,,,, +26577,Id9,EA024,Some second only,EA024-6,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +26578,Ie1,EA024,Only second cousins,EA024-5,Marriage is preferred with any second cross-cousin,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26579,Ie10,EA024,No first/second cousins,EA024-8,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +26580,Ie11,EA024,Some second only,EA024-6,,bowers1964,,1950,EthnographicAtlas_1967_p94, +26581,Ie12,EA024,Only second cousins,EA024-5,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26582,Ie13,EA024,Only second cousins,EA024-5,,landtman1927,,1920,EthnographicAtlas_1967_p94, +26583,Ie14,EA024,No first/second cousins,EA024-8,,haddon1908,,1900,EthnographicAtlas_1967_p94, +26584,Ie15,EA024,No first cousins,EA024-7,"Though disapproved, marriage with a cross-cousin does occasionally occur",kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26585,Ie16,EA024,No first cousins,EA024-7,,williams194041,,1940,EthnographicAtlas_1967_p94, +26586,Ie17,EA024,No first cousins,EA024-7,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +26587,Ie18,EA024,No first/second cousins,EA024-8,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +26588,Ie19,EA024,No first cousins,EA024-7,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +26589,Ie2,EA024,Duolateral,EA024-3,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +26590,Ie20,EA024,No first/second cousins,EA024-8,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +26591,Ie21,EA024,?,EA024-NA,,,,,, +26592,Ie22,EA024,No first cousins,EA024-7,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +26593,Ie23,EA024,No first cousins,EA024-7,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +26594,Ie24,EA024,No first cousins,EA024-7,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +26595,Ie25,EA024,No first cousins,EA024-7,,williamson1912,,1920,EthnographicAtlas_1967_p94, +26596,Ie26,EA024,Some second only,EA024-6,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +26597,Ie27,EA024,Duolateral,EA024-3,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +26598,Ie28,EA024,No first cousins,EA024-7,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +26599,Ie29,EA024,No first cousins,EA024-7,Marriage is preferred with FaFaSiSoDa,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26600,Ie3,EA024,No first cousins,EA024-7,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26601,Ie30,EA024,?,EA024-NA,,,,,, +26602,Ie31,EA024,Duolateral,EA024-3,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +26603,Ie32,EA024,?,EA024-NA,,,,,, +26604,Ie33,EA024,Duolateral,EA024-3,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +26605,Ie34,EA024,No first/second cousins,EA024-8,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +26606,Ie35,EA024,Duolateral,EA024-3,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +26607,Ie36,EA024,No first/second cousins,EA024-8,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +26608,Ie37,EA024,No first cousins,EA024-7,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +26609,Ie38,EA024,Duolateral,EA024-3,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +26610,Ie39,EA024,No first cousins,EA024-7,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +26611,Ie4,EA024,Only second cousins,EA024-5,Marriage is preferential between children of cross-cousins,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26612,Ie5,EA024,No first cousins,EA024-7,"The preferred union is with a classificatory, not an actual, cross-cousin",williams1936,,1930,EthnographicAtlas_1967_p94, +26613,Ie6,EA024,Unilateral,EA024-4,,held1947,,1930,EthnographicAtlas_1967_p94, +26614,Ie7,EA024,No first cousins,EA024-7,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +26615,Ie8,EA024,No first/second cousins,EA024-8,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +26616,Ie9,EA024,Duolateral,EA024-3,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +26617,If1,EA024,No first/second cousins,EA024-8,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26618,If10,EA024,Duolateral,EA024-3,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +26619,If11,EA024,Duolateral,EA024-3,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +26620,If12,EA024,Duolateral,EA024-3,,mason1954,,1940,EthnographicAtlas_1967_p98, +26621,If13,EA024,Duolateral,EA024-3,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +26622,If14,EA024,No first/second cousins,EA024-8,"But 'quadrilateral' (code ""1"") in the aristocracy",finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +26623,If15,EA024,No first/second cousins,EA024-8,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +26624,If16,EA024,?,EA024-NA,,,,,, +26625,If17,EA024,Duolateral,EA024-3,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +26626,If2,EA024,No first/second cousins,EA024-8,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +26627,If3,EA024,Duolateral,EA024-3,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +26628,If4,EA024,No first/second cousins,EA024-8,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +26629,If5,EA024,Duolateral,EA024-3,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +26630,If6,EA024,Only second cousins,EA024-5,Marriage with a first cross-cousin occurs only under very special conditions,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +26631,If7,EA024,No first/second cousins,EA024-8,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +26632,If8,EA024,No first/second cousins,EA024-8,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +26633,If9,EA024,Only second cousins,EA024-5,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +26634,Ig1,EA024,Duolateral,EA024-3,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +26635,Ig10,EA024,Some second only,EA024-6,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +26636,Ig11,EA024,No first cousins,EA024-7,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +26637,Ig12,EA024,No first cousins,EA024-7,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +26638,Ig13,EA024,Quadrilateral,EA024-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +26639,Ig14,EA024,No first cousins,EA024-7,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +26640,Ig15,EA024,?,EA024-NA,,,,,, +26641,Ig16,EA024,?,EA024-NA,,,,,, +26642,Ig17,EA024,Duolateral,EA024-3,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +26643,Ig18,EA024,No first cousins,EA024-7,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +26644,Ig19,EA024,No first cousins,EA024-7,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +26645,Ig2,EA024,Duolateral,EA024-3,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +26646,Ig20,EA024,No first cousins,EA024-7,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +26647,Ig21,EA024,Duolateral,EA024-3,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +26648,Ig3,EA024,No first/second cousins,EA024-8,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +26649,Ig4,EA024,Only second cousins,EA024-5,The preferred marriage is with the daughter of a cross-cousin,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +26650,Ig5,EA024,No first cousins,EA024-7,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +26651,Ig6,EA024,No first cousins,EA024-7,,ivens1927,,1900,EthnographicAtlas_1967_p98, +26652,Ig7,EA024,Duolateral,EA024-3,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +26653,Ig8,EA024,No first/second cousins,EA024-8,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +26654,Ig9,EA024,Some second only,EA024-6,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +26655,Ih1,EA024,No first cousins,EA024-7,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +26656,Ih10,EA024,Duolateral,EA024-3,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26657,Ih11,EA024,Duolateral,EA024-3,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +26658,Ih12,EA024,No first cousins,EA024-7,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +26659,Ih13,EA024,Some second only,EA024-6,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +26660,Ih14,EA024,?,EA024-NA,,,,,, +26661,Ih2,EA024,No first/second cousins,EA024-8,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26662,Ih3,EA024,No first/second cousins,EA024-8,Marriage is preferred with MoBrDaDa or MoMoBrDa,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +26663,Ih4,EA024,Duolateral,EA024-3,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26664,Ih5,EA024,Duolateral,EA024-3,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +26665,Ih6,EA024,Only second cousins,EA024-5,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +26666,Ih7,EA024,No first/second cousins,EA024-8,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +26667,Ih8,EA024,Only second cousins,EA024-5,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +26668,Ih9,EA024,Duolateral,EA024-3,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26669,Ii1,EA024,No first/second cousins,EA024-8,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +26670,Ii10,EA024,Duolateral,EA024-3,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +26671,Ii12,EA024,No first cousins,EA024-7,"But 'duolateral' (code ""3"") among nobles",beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26672,Ii13,EA024,No first/second cousins,EA024-8,,burrows1937,,1830,EthnographicAtlas_1967_p98, +26673,Ii14,EA024,No first/second cousins,EA024-8,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +26674,Ii2,EA024,Only second cousins,EA024-5,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +26675,Ii3,EA024,No first/second cousins,EA024-8,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +26676,Ii4,EA024,No first cousins,EA024-7,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +26677,Ii5,EA024,No first/second cousins,EA024-8,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +26678,Ii6,EA024,No first/second cousins,EA024-8,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +26679,Ii7,EA024,No first/second cousins,EA024-8,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +26680,Ii8,EA024,Only second cousins,EA024-5,,burrows1936,,1840,EthnographicAtlas_1967_p98, +26681,Ii9,EA024,Only second cousins,EA024-5,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +26682,Ij1,EA024,No first/second cousins,EA024-8,,buck1934,,1820,EthnographicAtlas_1967_p98, +26683,Ij10,EA024,No first/second cousins,EA024-8,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +26684,Ij2,EA024,Only second cousins,EA024-5,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +26685,Ij3,EA024,Duolateral,EA024-3,"But Miranda states that ""marriage was prohibited within the third degree of relationship""",forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +26686,Ij4,EA024,Quadrilateral,EA024-1,,buck1932a,,1850,EthnographicAtlas_1967_p102, +26687,Ij5,EA024,?,EA024-NA,,,,,, +26688,Ij6,EA024,Only second cousins,EA024-5,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +26689,Ij7,EA024,Only second cousins,EA024-5,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +26690,Ij8,EA024,No first cousins,EA024-7,But chiefly families sometimes practiced cross-cousin marriage,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +26691,Ij9,EA024,No first cousins,EA024-7,,metraux1940,,1860,EthnographicAtlas_1967_p102, +26692,Na1,EA024,Duolateral,EA024-3,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +26693,Na10,EA024,Duolateral,EA024-3,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +26694,Na11,EA024,Trilateral,EA024-2,But rules of cousin marriage were variable,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +26695,Na12,EA024,No first/second cousins,EA024-8,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +26696,Na13,EA024,?,EA024-NA,,,,,, +26697,Na14,EA024,?,EA024-NA,,,,,, +26698,Na15,EA024,?,EA024-NA,There are no patterns of preferential marriage,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +26699,Na16,EA024,?,EA024-NA,,,,,, +26700,Na17,EA024,No first cousins,EA024-7,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26701,Na19,EA024,Duolateral,EA024-3,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +26702,Na2,EA024,No first/second cousins,EA024-8,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +26703,Na20,EA024,No first cousins,EA024-7,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +26704,Na21,EA024,No first/second cousins,EA024-8,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +26705,Na22,EA024,No first/second cousins,EA024-8,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +26706,Na23,EA024,?,EA024-NA,,,,,, +26707,Na24,EA024,No first cousins,EA024-7,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +26708,Na25,EA024,?,EA024-NA,,,,,, +26709,Na26,EA024,No first/second cousins,EA024-8,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +26710,Na27,EA024,?,EA024-NA,,,,,, +26711,Na28,EA024,Only second cousins,EA024-5,,jenness1937,,1880,EthnographicAtlas_1967_p102, +26712,Na29,EA024,?,EA024-NA,,,,,, +26713,Na3,EA024,Only second cousins,EA024-5,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +26714,Na30,EA024,No first cousins,EA024-7,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +26715,Na31,EA024,Quadrilateral,EA024-1,"""...there were no marriage restrictions""",skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +26716,Na32,EA024,Duolateral,EA024-3,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +26717,Na33,EA024,Duolateral,EA024-3,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +26718,Na34,EA024,Duolateral,EA024-3,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +26719,Na35,EA024,Duolateral,EA024-3,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +26720,Na36,EA024,Duolateral,EA024-3,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +26721,Na37,EA024,Duolateral,EA024-3,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +26722,Na38,EA024,Duolateral,EA024-3,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +26723,Na39,EA024,Duolateral,EA024-3,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +26724,Na4,EA024,Unilateral,EA024-4,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +26725,Na40,EA024,?,EA024-NA,,,,,, +26726,Na41,EA024,No first/second cousins,EA024-8,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +26727,Na42,EA024,No first cousins,EA024-7,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +26728,Na43,EA024,Quadrilateral,EA024-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +26729,Na44,EA024,Only second cousins,EA024-5,"But there are occasional marriages between first cousins, and people differ as to their propriety",graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +26730,Na45,EA024,Duolateral,EA024-3,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +26731,Na5,EA024,Duolateral,EA024-3,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +26732,Na6,EA024,Quadrilateral,EA024-1,,lantis1946,,1930,EthnographicAtlas_1967_p102, +26733,Na7,EA024,Duolateral,EA024-3,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +26734,Na8,EA024,Only second cousins,EA024-5,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +26735,Na9,EA024,Quadrilateral,EA024-1,"But 'no first cousins' (code ""7"") today",bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26736,Nb1,EA024,Duolateral,EA024-3,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +26737,Nb10,EA024,No first/second cousins,EA024-8,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +26738,Nb11,EA024,No first/second cousins,EA024-8,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +26739,Nb12,EA024,No first/second cousins,EA024-8,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +26740,Nb13,EA024,No first/second cousins,EA024-8,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +26741,Nb14,EA024,No first/second cousins,EA024-8,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +26742,Nb15,EA024,No first/second cousins,EA024-8,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +26743,Nb16,EA024,No first/second cousins,EA024-8,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +26744,Nb17,EA024,Only second cousins,EA024-5,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +26745,Nb18,EA024,No first/second cousins,EA024-8,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +26746,Nb19,EA024,No first cousins,EA024-7,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +26747,Nb2,EA024,No first/second cousins,EA024-8,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +26748,Nb20,EA024,No first cousins,EA024-7,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +26749,Nb21,EA024,No first cousins,EA024-7,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +26750,Nb22,EA024,Unilateral,EA024-4,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +26751,Nb23,EA024,Duolateral,EA024-3,"Marriage with a cross-cousin was considered ""good""",boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +26752,Nb24,EA024,No first/second cousins,EA024-8,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +26753,Nb25,EA024,No first/second cousins,EA024-8,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +26754,Nb26,EA024,No first/second cousins,EA024-8,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +26755,Nb27,EA024,No first/second cousins,EA024-8,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +26756,Nb28,EA024,No first cousins,EA024-7,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +26757,Nb29,EA024,Only second cousins,EA024-5,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +26758,Nb3,EA024,Only second cousins,EA024-5,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +26759,Nb30,EA024,No first cousins,EA024-7,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +26760,Nb31,EA024,Unilateral,EA024-4,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +26761,Nb32,EA024,No first/second cousins,EA024-8,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +26762,Nb33,EA024,No first/second cousins,EA024-8,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +26763,Nb34,EA024,No first/second cousins,EA024-8,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +26764,Nb35,EA024,No first/second cousins,EA024-8,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +26765,Nb36,EA024,No first/second cousins,EA024-8,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +26766,Nb37,EA024,No first/second cousins,EA024-8,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +26767,Nb38,EA024,No first/second cousins,EA024-8,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +26768,Nb39,EA024,No first/second cousins,EA024-8,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +26769,Nb4,EA024,No first/second cousins,EA024-8,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +26770,Nb5,EA024,Duolateral,EA024-3,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +26771,Nb6,EA024,Duolateral,EA024-3,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +26772,Nb7,EA024,Duolateral,EA024-3,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +26773,Nb8,EA024,Duolateral,EA024-3,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +26774,Nb9,EA024,No first cousins,EA024-7,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +26775,Nc1,EA024,No first cousins,EA024-7,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +26776,Nc10,EA024,No first/second cousins,EA024-8,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +26777,Nc11,EA024,No first/second cousins,EA024-8,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +26778,Nc12,EA024,No first/second cousins,EA024-8,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +26779,Nc13,EA024,Only second cousins,EA024-5,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +26780,Nc14,EA024,No first/second cousins,EA024-8,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +26781,Nc15,EA024,No first cousins,EA024-7,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +26782,Nc16,EA024,No first cousins,EA024-7,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +26783,Nc17,EA024,No first cousins,EA024-7,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +26784,Nc18,EA024,Only second cousins,EA024-5,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +26785,Nc19,EA024,No first cousins,EA024-7,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +26786,Nc2,EA024,No first/second cousins,EA024-8,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +26787,Nc20,EA024,No first/second cousins,EA024-8,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +26788,Nc21,EA024,No first cousins,EA024-7,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +26789,Nc22,EA024,Unilateral,EA024-4,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +26790,Nc23,EA024,No first/second cousins,EA024-8,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +26791,Nc24,EA024,No first/second cousins,EA024-8,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +26792,Nc25,EA024,No first/second cousins,EA024-8,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +26793,Nc26,EA024,?,EA024-NA,,,,,, +26794,Nc27,EA024,?,EA024-NA,,,,,, +26795,Nc28,EA024,?,EA024-NA,,,,,, +26796,Nc29,EA024,No first cousins,EA024-7,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +26797,Nc3,EA024,No first/second cousins,EA024-8,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +26798,Nc30,EA024,No first/second cousins,EA024-8,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +26799,Nc31,EA024,No first/second cousins,EA024-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +26800,Nc32,EA024,No first/second cousins,EA024-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +26801,Nc33,EA024,No first/second cousins,EA024-8,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +26802,Nc34,EA024,No first cousins,EA024-7,,meigs1939,,1880,EthnographicAtlas_1967_p106, +26803,Nc4,EA024,No first/second cousins,EA024-8,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +26804,Nc5,EA024,No first cousins,EA024-7,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +26805,Nc6,EA024,No first/second cousins,EA024-8,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +26806,Nc7,EA024,No first/second cousins,EA024-8,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +26807,Nc8,EA024,No first/second cousins,EA024-8,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +26808,Nc9,EA024,No first/second cousins,EA024-8,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +26809,Nd1,EA024,No first/second cousins,EA024-8,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +26810,Nd10,EA024,No first/second cousins,EA024-8,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +26811,Nd11,EA024,No first/second cousins,EA024-8,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +26812,Nd12,EA024,No first/second cousins,EA024-8,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +26813,Nd13,EA024,No first cousins,EA024-7,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +26814,Nd14,EA024,Only second cousins,EA024-5,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +26815,Nd15,EA024,No first/second cousins,EA024-8,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +26816,Nd16,EA024,No first cousins,EA024-7,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +26817,Nd17,EA024,No first cousins,EA024-7,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +26818,Nd18,EA024,No first/second cousins,EA024-8,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +26819,Nd19,EA024,No first/second cousins,EA024-8,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +26820,Nd2,EA024,No first/second cousins,EA024-8,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +26821,Nd20,EA024,No first/second cousins,EA024-8,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +26822,Nd21,EA024,No first/second cousins,EA024-8,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +26823,Nd22,EA024,No first/second cousins,EA024-8,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +26824,Nd23,EA024,No first/second cousins,EA024-8,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +26825,Nd24,EA024,No first/second cousins,EA024-8,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +26826,Nd25,EA024,No first/second cousins,EA024-8,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +26827,Nd26,EA024,No first/second cousins,EA024-8,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +26828,Nd27,EA024,No first/second cousins,EA024-8,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +26829,Nd28,EA024,No first/second cousins,EA024-8,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +26830,Nd29,EA024,No first/second cousins,EA024-8,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +26831,Nd3,EA024,No first/second cousins,EA024-8,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +26832,Nd30,EA024,No first/second cousins,EA024-8,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +26833,Nd31,EA024,No first/second cousins,EA024-8,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +26834,Nd32,EA024,No first/second cousins,EA024-8,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +26835,Nd33,EA024,No first/second cousins,EA024-8,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +26836,Nd34,EA024,No first/second cousins,EA024-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +26837,Nd35,EA024,No first/second cousins,EA024-8,"The preferred marriage is with a pseudo-cross cousin, i.e., a stepchild of either MoBr or FaSi",steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +26838,Nd36,EA024,No first/second cousins,EA024-8,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +26839,Nd37,EA024,No first/second cousins,EA024-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +26840,Nd38,EA024,Duolateral,EA024-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +26841,Nd39,EA024,No first/second cousins,EA024-8,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +26842,Nd4,EA024,No first/second cousins,EA024-8,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +26843,Nd40,EA024,No first/second cousins,EA024-8,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +26844,Nd41,EA024,No first/second cousins,EA024-8,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +26845,Nd42,EA024,Unilateral,EA024-4,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +26846,Nd43,EA024,Duolateral,EA024-3,Entry follows Harris; Steward reports only marriage with a pseudo-cross-cousin,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +26847,Nd44,EA024,No first/second cousins,EA024-8,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +26848,Nd45,EA024,No first cousins,EA024-7,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +26849,Nd46,EA024,No first/second cousins,EA024-8,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +26850,Nd47,EA024,No first/second cousins,EA024-8,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +26851,Nd48,EA024,Duolateral,EA024-3,"But 'duolateral' (code ""3"") in the Skull Valley band",malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +26852,Nd49,EA024,No first/second cousins,EA024-8,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +26853,Nd5,EA024,No first/second cousins,EA024-8,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +26854,Nd50,EA024,No first/second cousins,EA024-8,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +26855,Nd51,EA024,No first/second cousins,EA024-8,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +26856,Nd52,EA024,No first/second cousins,EA024-8,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +26857,Nd53,EA024,No first/second cousins,EA024-8,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +26858,Nd54,EA024,No first/second cousins,EA024-8,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26859,Nd55,EA024,No first/second cousins,EA024-8,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +26860,Nd56,EA024,No first/second cousins,EA024-8,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +26861,Nd57,EA024,?,EA024-NA,,,,,, +26862,Nd58,EA024,No first/second cousins,EA024-8,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +26863,Nd59,EA024,?,EA024-NA,,,,,, +26864,Nd6,EA024,No first/second cousins,EA024-8,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +26865,Nd60,EA024,?,EA024-NA,,,,,, +26866,Nd61,EA024,?,EA024-NA,,,,,, +26867,Nd62,EA024,?,EA024-NA,,,,,, +26868,Nd63,EA024,No first cousins,EA024-7,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +26869,Nd64,EA024,No first/second cousins,EA024-8,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +26870,Nd65,EA024,Duolateral,EA024-3,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +26871,Nd66,EA024,No first/second cousins,EA024-8,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +26872,Nd67,EA024,No first cousins,EA024-7,,gifford1936,,1870,EthnographicAtlas_1967_p110, +26873,Nd7,EA024,No first/second cousins,EA024-8,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +26874,Nd8,EA024,No first/second cousins,EA024-8,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +26875,Nd9,EA024,No first/second cousins,EA024-8,"But 'quadrilateral' (code ""1"") today",hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +26876,Ne1,EA024,No first/second cousins,EA024-8,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +26877,Ne10,EA024,?,EA024-NA,,,,,, +26878,Ne11,EA024,No first/second cousins,EA024-8,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +26879,Ne12,EA024,No first/second cousins,EA024-8,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +26880,Ne13,EA024,No first cousins,EA024-7,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +26881,Ne14,EA024,Only second cousins,EA024-5,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +26882,Ne15,EA024,No first cousins,EA024-7,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +26883,Ne16,EA024,?,EA024-NA,,,,,, +26884,Ne17,EA024,No first cousins,EA024-7,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +26885,Ne18,EA024,No first cousins,EA024-7,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +26886,Ne19,EA024,Duolateral,EA024-3,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +26887,Ne2,EA024,No first/second cousins,EA024-8,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +26888,Ne20,EA024,No first cousins,EA024-7,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +26889,Ne21,EA024,?,EA024-NA,,,,,, +26890,Ne3,EA024,No first cousins,EA024-7,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +26891,Ne4,EA024,No first cousins,EA024-7,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +26892,Ne5,EA024,No first/second cousins,EA024-8,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +26893,Ne6,EA024,Unilateral,EA024-4,Inferred from a report by Bowers (p. 75) that a man preferred to have a son-in-law from his own sib,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +26894,Ne7,EA024,No first cousins,EA024-7,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +26895,Ne8,EA024,No first cousins,EA024-7,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +26896,Ne9,EA024,No first/second cousins,EA024-8,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +26897,Nf10,EA024,?,EA024-NA,,,,,, +26898,Nf11,EA024,No first cousins,EA024-7,,whitman1937,,1870,EthnographicAtlas_1967_p114, +26899,Nf12,EA024,No first cousins,EA024-7,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +26900,Nf13,EA024,No first/second cousins,EA024-8,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26901,Nf14,EA024,No first/second cousins,EA024-8,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +26902,Nf15,EA024,No first/second cousins,EA024-8,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +26903,Nf2,EA024,Duolateral,EA024-3,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +26904,Nf3,EA024,No first/second cousins,EA024-8,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +26905,Nf4,EA024,No first cousins,EA024-7,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +26906,Nf5,EA024,No first cousins,EA024-7,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +26907,Nf6,EA024,Only second cousins,EA024-5,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +26908,Nf7,EA024,No first/second cousins,EA024-8,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26909,Nf8,EA024,No first/second cousins,EA024-8,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +26910,Nf9,EA024,No first cousins,EA024-7,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +26911,Ng1,EA024,No first/second cousins,EA024-8,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +26912,Ng10,EA024,?,EA024-NA,"Unreported but probably 'no first cousins' (code ""7"") like the Huron",fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +26913,Ng11,EA024,?,EA024-NA,,,,,, +26914,Ng12,EA024,No first/second cousins,EA024-8,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +26915,Ng13,EA024,?,EA024-NA,,,,,, +26916,Ng14,EA024,No first/second cousins,EA024-8,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +26917,Ng15,EA024,?,EA024-NA,,,,,, +26918,Ng2,EA024,Some second only,EA024-6,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +26919,Ng3,EA024,No first/second cousins,EA024-8,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +26920,Ng4,EA024,No first cousins,EA024-7,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +26921,Ng5,EA024,Only second cousins,EA024-5,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +26922,Ng6,EA024,?,EA024-NA,,,,,, +26923,Ng7,EA024,No first/second cousins,EA024-8,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +26924,Ng8,EA024,?,EA024-NA,,,,,, +26925,Ng9,EA024,Quadrilateral,EA024-1,"But formerly 'no first cousins' (code ""7"")",speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +26926,Nh1,EA024,No first/second cousins,EA024-8,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +26927,Nh10,EA024,No first/second cousins,EA024-8,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +26928,Nh11,EA024,No first/second cousins,EA024-8,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +26929,Nh12,EA024,No first cousins,EA024-7,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +26930,Nh13,EA024,No first cousins,EA024-7,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +26931,Nh14,EA024,No first cousins,EA024-7,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +26932,Nh15,EA024,No first/second cousins,EA024-8,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +26933,Nh16,EA024,No first cousins,EA024-7,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26934,Nh17,EA024,No first/second cousins,EA024-8,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +26935,Nh18,EA024,No first/second cousins,EA024-8,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26936,Nh19,EA024,No first/second cousins,EA024-8,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +26937,Nh2,EA024,No first/second cousins,EA024-8,,dozier1954,,1950,EthnographicAtlas_1967_p114, +26938,Nh20,EA024,No first/second cousins,EA024-8,,gifford1931,,1860,EthnographicAtlas_1967_p114, +26939,Nh21,EA024,No first/second cousins,EA024-8,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26940,Nh22,EA024,No first/second cousins,EA024-8,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +26941,Nh23,EA024,No first cousins,EA024-7,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +26942,Nh24,EA024,No first cousins,EA024-7,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +26943,Nh25,EA024,No first cousins,EA024-7,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +26944,Nh26,EA024,No first cousins,EA024-7,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +26945,Nh27,EA024,No first cousins,EA024-7,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +26946,Nh3,EA024,No first/second cousins,EA024-8,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +26947,Nh4,EA024,No first cousins,EA024-7,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +26948,Nh5,EA024,No first/second cousins,EA024-8,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +26949,Nh6,EA024,No first/second cousins,EA024-8,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +26950,Nh7,EA024,No first/second cousins,EA024-8,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +26951,Nh8,EA024,No first/second cousins,EA024-8,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +26952,Nh9,EA024,No first cousins,EA024-7,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +26953,Ni1,EA024,Only second cousins,EA024-5,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +26954,Ni2,EA024,No first/second cousins,EA024-8,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +26955,Ni3,EA024,Quadrilateral,EA024-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +26956,Ni4,EA024,No first cousins,EA024-7,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +26957,Ni5,EA024,No first cousins,EA024-7,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +26958,Ni6,EA024,No first/second cousins,EA024-8,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +26959,Ni7,EA024,No first/second cousins,EA024-8,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +26960,Ni8,EA024,?,EA024-NA,,,,,, +26961,Ni9,EA024,?,EA024-NA,,,,,, +26962,Nj1,EA024,No first/second cousins,EA024-8,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26963,Nj10,EA024,No first cousins,EA024-7,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26964,Nj11,EA024,?,EA024-NA,,,,,, +26965,Nj12,EA024,?,EA024-NA,,,,,, +26966,Nj13,EA024,?,EA024-NA,,,,,, +26967,Nj14,EA024,No first cousins,EA024-7,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +26968,Nj2,EA024,No first cousins,EA024-7,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +26969,Nj3,EA024,No first cousins,EA024-7,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +26970,Nj4,EA024,No first cousins,EA024-7,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +26971,Nj5,EA024,No first/second cousins,EA024-8,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +26972,Nj6,EA024,No first cousins,EA024-7,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +26973,Nj7,EA024,?,EA024-NA,,,,,, +26974,Nj8,EA024,Quadrilateral,EA024-1,,foster1948,,1500,EthnographicAtlas_1967_p118, +26975,Nj9,EA024,No first cousins,EA024-7,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +26976,Sa1,EA024,Only second cousins,EA024-5,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +26977,Sa10,EA024,?,EA024-NA,,,,,, +26978,Sa11,EA024,?,EA024-NA,,,,,, +26979,Sa12,EA024,?,EA024-NA,,,,,, +26980,Sa13,EA024,No first cousins,EA024-7,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +26981,Sa14,EA024,?,EA024-NA,,,,,, +26982,Sa15,EA024,?,EA024-NA,,,,,, +26983,Sa16,EA024,?,EA024-NA,,,,,, +26984,Sa17,EA024,No first cousins,EA024-7,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +26985,Sa2,EA024,Duolateral,EA024-3,Entry follows Guiteras; Villa says marriage is preferred with a classificatory cross-cousin but disapproved with a first cross-cousin,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +26986,Sa3,EA024,Only second cousins,EA024-5,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +26987,Sa4,EA024,Only second cousins,EA024-5,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +26988,Sa5,EA024,Duolateral,EA024-3,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +26989,Sa6,EA024,Duolateral,EA024-3,"In Murdock (1962d) he coded this as 'unilateral' (code ""4"") and noted ""Landa specifically reports marriageability of maternal cousins; hence possibly 'duolateral' (code ""3"") rather than 'unilateral' (code ""4"")."" In the EA he coded the column as 'duolateral' (code ""3"")",carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +26990,Sa7,EA024,Duolateral,EA024-3,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +26991,Sa8,EA024,No first/second cousins,EA024-8,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +26992,Sa9,EA024,Duolateral,EA024-3,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +26993,Sb1,EA024,Duolateral,EA024-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +26994,Sb2,EA024,Only second cousins,EA024-5,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +26995,Sb3,EA024,Duolateral,EA024-3,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +26996,Sb4,EA024,Quadrilateral,EA024-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +26997,Sb5,EA024,No first cousins,EA024-7,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +26998,Sb6,EA024,Trilateral,EA024-2,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +26999,Sb7,EA024,Duolateral,EA024-3,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +27000,Sb8,EA024,?,EA024-NA,,,,,, +27001,Sb9,EA024,No first cousins,EA024-7,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +27002,Sc1,EA024,Quadrilateral,EA024-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +27003,Sc10,EA024,Duolateral,EA024-3,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +27004,Sc11,EA024,Duolateral,EA024-3,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +27005,Sc12,EA024,Duolateral,EA024-3,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +27006,Sc13,EA024,Duolateral,EA024-3,"Entry follows Wilbert; Riley reports 'duolateral' (code ""3"")",riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +27007,Sc14,EA024,?,EA024-NA,,,,,, +27008,Sc15,EA024,?,EA024-NA,,,,,, +27009,Sc16,EA024,Duolateral,EA024-3,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +27010,Sc17,EA024,Duolateral,EA024-3,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +27011,Sc18,EA024,Only second cousins,EA024-5,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +27012,Sc2,EA024,Duolateral,EA024-3,,leedsnd,,1950,EthnographicAtlas_1967_p118, +27013,Sc3,EA024,Duolateral,EA024-3,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +27014,Sc4,EA024,Duolateral,EA024-3,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +27015,Sc5,EA024,Duolateral,EA024-3,,farabee1918,,1900,EthnographicAtlas_1967_p118, +27016,Sc6,EA024,Trilateral,EA024-2,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27017,Sc7,EA024,Duolateral,EA024-3,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +27018,Sc8,EA024,Duolateral,EA024-3,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +27019,Sc9,EA024,No first cousins,EA024-7,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +27020,Sd1,EA024,Duolateral,EA024-3,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27021,Sd2,EA024,No first cousins,EA024-7,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +27022,Sd3,EA024,?,EA024-NA,,,,,, +27023,Sd4,EA024,?,EA024-NA,,,,,, +27024,Sd5,EA024,?,EA024-NA,,,,,, +27025,Sd6,EA024,Duolateral,EA024-3,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +27026,Sd7,EA024,Duolateral,EA024-3,,fock1963,,1950,EthnographicAtlas_1967_p118, +27027,Sd8,EA024,No first cousins,EA024-7,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +27028,Sd9,EA024,Duolateral,EA024-3,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27029,Se1,EA024,Unilateral,EA024-4,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +27030,Se10,EA024,?,EA024-NA,Preferential marriage with SiDa,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +27031,Se11,EA024,Duolateral,EA024-3,,prost1965,,1960,EthnographicAtlas_1967_p122, +27032,Se12,EA024,Duolateral,EA024-3,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +27033,Se2,EA024,Duolateral,EA024-3,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +27034,Se3,EA024,Duolateral,EA024-3,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +27035,Se4,EA024,No first cousins,EA024-7,,fejos1943,,1940,EthnographicAtlas_1967_p118, +27036,Se5,EA024,Duolateral,EA024-3,But Goldman reports a preference for marrying a woman of one's mother's lineage,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +27037,Se6,EA024,Duolateral,EA024-3,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +27038,Se7,EA024,No first cousins,EA024-7,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27039,Se8,EA024,Duolateral,EA024-3,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +27040,Se9,EA024,?,EA024-NA,,,,,, +27041,Sf1,EA024,Quadrilateral,EA024-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +27042,Sf2,EA024,No first cousins,EA024-7,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +27043,Sf3,EA024,No first cousins,EA024-7,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +27044,Sf4,EA024,No first cousins,EA024-7,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +27045,Sf5,EA024,?,EA024-NA,,,,,, +27046,Sf6,EA024,?,EA024-NA,,,,,, +27047,Sf7,EA024,Quadrilateral,EA024-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +27048,Sf8,EA024,Duolateral,EA024-3,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +27049,Sf9,EA024,?,EA024-NA,,,,,, +27050,Sg1,EA024,No first/second cousins,EA024-8,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +27051,Sg2,EA024,Unilateral,EA024-4,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27052,Sg3,EA024,No first/second cousins,EA024-8,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +27053,Sg4,EA024,Quadrilateral,EA024-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +27054,Sg5,EA024,Quadrilateral,EA024-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27055,Sh1,EA024,No first cousins,EA024-7,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +27056,Sh2,EA024,No first cousins,EA024-7,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +27057,Sh3,EA024,No first/second cousins,EA024-8,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +27058,Sh4,EA024,No first cousins,EA024-7,,oberg1949,,1940,EthnographicAtlas_1967_p122, +27059,Sh5,EA024,No first cousins,EA024-7,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +27060,Sh6,EA024,?,EA024-NA,,,,,, +27061,Sh7,EA024,Quadrilateral,EA024-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +27062,Sh8,EA024,Only second cousins,EA024-5,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +27063,Sh9,EA024,?,EA024-NA,,,,,, +27064,Si1,EA024,Duolateral,EA024-3,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27065,Si10,EA024,Duolateral,EA024-3,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +27066,Si2,EA024,Duolateral,EA024-3,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +27067,Si3,EA024,Duolateral,EA024-3,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27068,Si4,EA024,Duolateral,EA024-3,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +27069,Si5,EA024,Duolateral,EA024-3,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +27070,Si6,EA024,?,EA024-NA,,,,,, +27071,Si7,EA024,?,EA024-NA,,,,,, +27072,Si8,EA024,Only second cousins,EA024-5,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +27073,Si9,EA024,?,EA024-NA,,,,,, +27074,Sj1,EA024,Quadrilateral,EA024-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +27075,Sj10,EA024,?,EA024-NA,,,,,, +27076,Sj11,EA024,No first cousins,EA024-7,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +27077,Sj2,EA024,Unilateral,EA024-4,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +27078,Sj3,EA024,Quadrilateral,EA024-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +27079,Sj4,EA024,No first cousins,EA024-7,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +27080,Sj5,EA024,Quadrilateral,EA024-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +27081,Sj6,EA024,No first cousins,EA024-7,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27082,Sj7,EA024,Some second only,EA024-6,"Entry follows Nimuendaju; Maybury-Lewis gives 'duolateral' (code ""3"")",mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +27083,Sj8,EA024,Duolateral,EA024-3,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +27084,Sj9,EA024,No first cousins,EA024-7,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +27085,ch12,EA024,No first/second cousins,EA024-8,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +27086,ch13,EA024,?,EA024-NA,,,,,, +27087,ch14,EA024,No first/second cousins,EA024-8,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +27088,ch15,EA024,No first/second cousins,EA024-8,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +27089,ch16,EA024,?,EA024-NA,,,,,, +27090,ch17,EA024,No first/second cousins,EA024-8,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +27091,ch18,EA024,No first/second cousins,EA024-8,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +27092,ch19,EA024,?,EA024-NA,,,,,, +27093,ch20,EA024,No first cousins,EA024-7,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +27094,ch21,EA024,?,EA024-NA,,,,,, +27095,ch22,EA024,?,EA024-NA,,,,,, +27096,ch23,EA024,Some second only,EA024-6,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +27097,ch24,EA024,No first/second cousins,EA024-8,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +27098,ch25,EA024,?,EA024-NA,,,,,, +27099,ch26,EA024,No first/second cousins,EA024-8,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +27100,ch27,EA024,No first/second cousins,EA024-8,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +27101,ch28,EA024,No first/second cousins,EA024-8,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +27102,ec12,EA024,No first/second cousins,EA024-8,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +27103,ec13,EA024,Duolateral,EA024-3,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +27104,ec14,EA024,No first/second cousins,EA024-8,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +27105,ec15,EA024,No first/second cousins,EA024-8,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +27106,ec16,EA024,Duolateral,EA024-3,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +27107,ec17,EA024,Duolateral,EA024-3,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +27108,ec18,EA024,Duolateral,EA024-3,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +27109,ec19,EA024,Duolateral,EA024-3,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +27110,ec20,EA024,Duolateral,EA024-3,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +27111,ec21,EA024,Duolateral,EA024-3,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +27112,Aa1,EA025,None preferred,EA025-15,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +27113,Aa2,EA025,None preferred,EA025-15,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +27114,Aa3,EA025,None preferred,EA025-15,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +27115,Aa4,EA025,None preferred,EA025-15,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +27116,Aa5,EA025,None preferred,EA025-15,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +27117,Aa6,EA025,Uni: MoBrDa,EA025-5,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +27118,Aa7,EA025,None preferred,EA025-15,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +27119,Aa8,EA025,None preferred,EA025-15,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +27120,Aa9,EA025,?,EA025-NA,,,,,, +27121,Ab1,EA025,Cross-cousin: patri,EA025-3,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +27122,Ab10,EA025,None preferred,EA025-15,,hunter1936,,1936,EthnographicAtlas_1967_p62, +27123,Ab11,EA025,None preferred,EA025-15,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +27124,Ab12,EA025,None preferred,EA025-15,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +27125,Ab13,EA025,All: cross,EA025-8,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +27126,Ab14,EA025,Cross-cousin: matri,EA025-2,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +27127,Ab15,EA025,Uni: MoBrDa,EA025-5,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +27128,Ab16,EA025,None preferred,EA025-15,,earthy1933,,1930,EthnographicAtlas_1967_p62, +27129,Ab17,EA025,None preferred,EA025-15,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +27130,Ab18,EA025,None preferred,EA025-15,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +27131,Ab19,EA025,None preferred,EA025-15,"Formerly 'cross-cousin, patrilateral preference' (code ""3"")",krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +27132,Ab2,EA025,None preferred,EA025-15,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +27133,Ab20,EA025,?,EA025-NA,,,,,, +27134,Ab21a,EA025,?,EA025-NA,,,,,, +27135,Ab21b,EA025,None preferred,EA025-15,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +27136,Ab22,EA025,None preferred,EA025-15,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +27137,Ab3,EA025,None preferred,EA025-15,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +27138,Ab4,EA025,None preferred,EA025-15,,junod1927,,1920,EthnographicAtlas_1967_p62, +27139,Ab5,EA025,Cross-cousin: matri,EA025-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +27140,Ab6,EA025,Cross-cousin: matri,EA025-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +27141,Ab7,EA025,None preferred,EA025-15,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +27142,Ab8,EA025,All: cross,EA025-8,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +27143,Ab9,EA025,None preferred,EA025-15,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +27144,Ac1,EA025,Uni: FaSiDa,EA025-6,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +27145,Ac10,EA025,Cross-cousin: either,EA025-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +27146,Ac11,EA025,Cross-cousin: either,EA025-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +27147,Ac12,EA025,Cross-cousin: matri,EA025-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +27148,Ac13,EA025,Cross-cousin: matri,EA025-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +27149,Ac14,EA025,None preferred,EA025-15,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +27150,Ac15,EA025,Tri: bilateral,EA025-12,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +27151,Ac16,EA025,?,EA025-NA,,,,,, +27152,Ac17,EA025,Cross-cousin: patri,EA025-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +27153,Ac18,EA025,?,EA025-NA,,,,,, +27154,Ac19,EA025,None preferred,EA025-15,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +27155,Ac2,EA025,Uni: FaSiDa,EA025-6,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +27156,Ac20,EA025,?,EA025-NA,,,,,, +27157,Ac21,EA025,Cross-cousin: either,EA025-1,But the most highly preferred marriage is with a MoBrDaDa,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +27158,Ac22,EA025,None preferred,EA025-15,,mertens1935,,1930,EthnographicAtlas_1967_p62, +27159,Ac23,EA025,None preferred,EA025-15,The preferred marriage is with a MoBrDaDa,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +27160,Ac24,EA025,None preferred,EA025-15,"Inferred from statement that ""close relatives cannot marry""",baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +27161,Ac25,EA025,Tri: bilateral,EA025-12,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +27162,Ac26,EA025,None preferred,EA025-15,The preferred marriage is with a MoBrDaDa,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +27163,Ac27,EA025,None preferred,EA025-15,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +27164,Ac28,EA025,Cross-cousin: either,EA025-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +27165,Ac29,EA025,None preferred,EA025-15,Inferred from the report that parallel cousins and FaSi are not marriageable,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +27166,Ac3,EA025,Cross-cousin: either,EA025-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +27167,Ac30,EA025,None preferred,EA025-15,"But formerly 'cross-cousin, symmetrical preference' (code ""1"")",allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +27168,Ac31,EA025,?,EA025-NA,,,,,, +27169,Ac32,EA025,Cross-cousin: matri,EA025-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +27170,Ac33,EA025,None preferred,EA025-15,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +27171,Ac34,EA025,Cross-cousin: either,EA025-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +27172,Ac35,EA025,None preferred,EA025-15,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +27173,Ac36,EA025,Cross-cousin: either,EA025-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +27174,Ac37,EA025,Cross-cousin: either,EA025-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +27175,Ac38,EA025,Cross-cousin: either,EA025-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +27176,Ac39,EA025,Tri: bilateral,EA025-12,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +27177,Ac4,EA025,None preferred,EA025-15,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +27178,Ac40,EA025,?,EA025-NA,,,,,, +27179,Ac41,EA025,Cross-cousin: either,EA025-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +27180,Ac42,EA025,Cross-cousin: either,EA025-1,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +27181,Ac43,EA025,?,EA025-NA,,,,,, +27182,Ac5,EA025,Cross-cousin: matri,EA025-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +27183,Ac6,EA025,Cross-cousin: either,EA025-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +27184,Ac7,EA025,Cross-cousin: patri,EA025-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +27185,Ac8,EA025,None preferred,EA025-15,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +27186,Ac9,EA025,None preferred,EA025-15,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +27187,Ad1,EA025,All: FaBrDa,EA025-7,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +27188,Ad10,EA025,None preferred,EA025-15,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +27189,Ad11,EA025,None preferred,EA025-15,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +27190,Ad12,EA025,None preferred,EA025-15,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +27191,Ad13,EA025,Uni: MoBrDa,EA025-5,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +27192,Ad14,EA025,Cross-cousin: matri,EA025-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +27193,Ad15,EA025,Cross-cousin: either,EA025-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +27194,Ad16,EA025,None preferred,EA025-15,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +27195,Ad17,EA025,?,EA025-NA,,,,,, +27196,Ad18,EA025,None preferred,EA025-15,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +27197,Ad19,EA025,None preferred,EA025-15,But marriage is preferred with a classificatory FaSiDa,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +27198,Ad2,EA025,None preferred,EA025-15,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +27199,Ad20,EA025,None preferred,EA025-15,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +27200,Ad21,EA025,None preferred,EA025-15,,maurice193538,,1930,EthnographicAtlas_1967_p66, +27201,Ad22,EA025,None preferred,EA025-15,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +27202,Ad23,EA025,None preferred,EA025-15,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +27203,Ad24,EA025,Cross-cousin: matri,EA025-2,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +27204,Ad25,EA025,?,EA025-NA,,,,,, +27205,Ad26,EA025,None preferred,EA025-15,,sick1916,,1910,EthnographicAtlas_1967_p66, +27206,Ad27,EA025,None preferred,EA025-15,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +27207,Ad28,EA025,?,EA025-NA,,,,,, +27208,Ad29,EA025,None preferred,EA025-15,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +27209,Ad3,EA025,None preferred,EA025-15,Marriage with a MoBrDa is allowed under special circumstances when Mo is dead,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +27210,Ad30,EA025,None preferred,EA025-15,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +27211,Ad31,EA025,None preferred,EA025-15,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +27212,Ad32,EA025,None preferred,EA025-15,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +27213,Ad33,EA025,None preferred,EA025-15,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +27214,Ad34,EA025,?,EA025-NA,,,,,, +27215,Ad35,EA025,None preferred,EA025-15,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +27216,Ad36,EA025,?,EA025-NA,"Perhaps 'cross-cousin' (code ""1"", ""2"" or ""3"") because one source states that cousin marriage is common",baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +27217,Ad37,EA025,?,EA025-NA,,,,,, +27218,Ad38,EA025,None preferred,EA025-15,Inferred from specific statements that cousin marriages are allowed and that there are distinct terms for male and female cousins,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +27219,Ad39,EA025,None preferred,EA025-15,,gray1963,,1950,EthnographicAtlas_1967_p66, +27220,Ad4,EA025,None preferred,EA025-15,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +27221,Ad40,EA025,None preferred,EA025-15,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +27222,Ad41,EA025,None preferred,EA025-15,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +27223,Ad42,EA025,None preferred,EA025-15,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +27224,Ad43,EA025,None preferred,EA025-15,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +27225,Ad44,EA025,?,EA025-NA,,,,,, +27226,Ad45,EA025,None preferred,EA025-15,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +27227,Ad46,EA025,None preferred,EA025-15,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +27228,Ad47,EA025,None preferred,EA025-15,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +27229,Ad48,EA025,?,EA025-NA,,,,,, +27230,Ad49,EA025,?,EA025-NA,,,,,, +27231,Ad5,EA025,None preferred,EA025-15,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +27232,Ad50,EA025,None preferred,EA025-15,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +27233,Ad51,EA025,None preferred,EA025-15,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +27234,Ad6,EA025,None preferred,EA025-15,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +27235,Ad7,EA025,None preferred,EA025-15,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +27236,Ad8,EA025,Cross-cousin: matri,EA025-2,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +27237,Ad9,EA025,None preferred,EA025-15,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +27238,Ae1,EA025,None preferred,EA025-15,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +27239,Ae10,EA025,None preferred,EA025-15,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +27240,Ae11,EA025,None preferred,EA025-15,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +27241,Ae12,EA025,?,EA025-NA,,,,,, +27242,Ae13,EA025,None preferred,EA025-15,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +27243,Ae14,EA025,None preferred,EA025-15,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +27244,Ae15,EA025,?,EA025-NA,,,,,, +27245,Ae16,EA025,?,EA025-NA,,,,,, +27246,Ae17,EA025,None preferred,EA025-15,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +27247,Ae18,EA025,None preferred,EA025-15,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +27248,Ae19,EA025,None preferred,EA025-15,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +27249,Ae2,EA025,None preferred,EA025-15,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +27250,Ae20,EA025,None preferred,EA025-15,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +27251,Ae21,EA025,None preferred,EA025-15,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +27252,Ae22,EA025,None preferred,EA025-15,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +27253,Ae23,EA025,?,EA025-NA,,,,,, +27254,Ae24,EA025,?,EA025-NA,,,,,, +27255,Ae25,EA025,None preferred,EA025-15,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +27256,Ae26,EA025,?,EA025-NA,,,,,, +27257,Ae27,EA025,?,EA025-NA,,,,,, +27258,Ae28,EA025,?,EA025-NA,,,,,, +27259,Ae29,EA025,None preferred,EA025-15,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +27260,Ae3,EA025,None preferred,EA025-15,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +27261,Ae30,EA025,?,EA025-NA,,,,,, +27262,Ae31,EA025,?,EA025-NA,,,,,, +27263,Ae32,EA025,?,EA025-NA,,,,,, +27264,Ae33,EA025,?,EA025-NA,,,,,, +27265,Ae34,EA025,?,EA025-NA,,,,,, +27266,Ae35,EA025,?,EA025-NA,,,,,, +27267,Ae36,EA025,?,EA025-NA,,,,,, +27268,Ae37,EA025,?,EA025-NA,,,,,, +27269,Ae38,EA025,?,EA025-NA,,,,,, +27270,Ae39,EA025,None preferred,EA025-15,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +27271,Ae4,EA025,None preferred,EA025-15,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +27272,Ae40,EA025,?,EA025-NA,,,,,, +27273,Ae41,EA025,None preferred,EA025-15,,andersson1953,,1940,EthnographicAtlas_1967_p66, +27274,Ae42,EA025,?,EA025-NA,,,,,, +27275,Ae43,EA025,?,EA025-NA,,,,,, +27276,Ae44,EA025,None preferred,EA025-15,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +27277,Ae45,EA025,?,EA025-NA,,,,,, +27278,Ae46,EA025,?,EA025-NA,,,,,, +27279,Ae47,EA025,None preferred,EA025-15,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +27280,Ae48,EA025,?,EA025-NA,,,,,, +27281,Ae49,EA025,?,EA025-NA,,,,,, +27282,Ae5,EA025,None preferred,EA025-15,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +27283,Ae50,EA025,?,EA025-NA,,,,,, +27284,Ae51,EA025,?,EA025-NA,,,,,, +27285,Ae52,EA025,None preferred,EA025-15,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +27286,Ae53,EA025,None preferred,EA025-15,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +27287,Ae54,EA025,None preferred,EA025-15,But allowed with FaBrDa,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +27288,Ae55,EA025,?,EA025-NA,,,,,, +27289,Ae56,EA025,None preferred,EA025-15,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +27290,Ae57,EA025,?,EA025-NA,,,,,, +27291,Ae58,EA025,None preferred,EA025-15,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +27292,Ae59,EA025,?,EA025-NA,,,,,, +27293,Ae6,EA025,None preferred,EA025-15,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +27294,Ae7,EA025,?,EA025-NA,,,,,, +27295,Ae8,EA025,Cross-cousin: either,EA025-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +27296,Ae9,EA025,None preferred,EA025-15,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +27297,Af1,EA025,None preferred,EA025-15,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +27298,Af10,EA025,None preferred,EA025-15,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +27299,Af11,EA025,None preferred,EA025-15,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +27300,Af12,EA025,?,EA025-NA,,,,,, +27301,Af13,EA025,None preferred,EA025-15,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +27302,Af14,EA025,None preferred,EA025-15,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +27303,Af15,EA025,None preferred,EA025-15,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +27304,Af16,EA025,?,EA025-NA,,,,,, +27305,Af17,EA025,None preferred,EA025-15,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +27306,Af18,EA025,None preferred,EA025-15,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +27307,Af19,EA025,None preferred,EA025-15,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +27308,Af2,EA025,Uni: MoBrDa,EA025-5,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +27309,Af20,EA025,None preferred,EA025-15,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +27310,Af21,EA025,?,EA025-NA,,,,,, +27311,Af22,EA025,None preferred,EA025-15,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +27312,Af23,EA025,Tri: patrilateral,EA025-14,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +27313,Af24,EA025,None preferred,EA025-15,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +27314,Af25,EA025,None preferred,EA025-15,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +27315,Af26,EA025,None preferred,EA025-15,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +27316,Af27,EA025,None preferred,EA025-15,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +27317,Af28,EA025,None preferred,EA025-15,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +27318,Af29,EA025,None preferred,EA025-15,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +27319,Af3,EA025,Cross-cousin: matri,EA025-2,A slight preference for MoBrDa,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +27320,Af30,EA025,?,EA025-NA,,,,,, +27321,Af31,EA025,?,EA025-NA,,,,,, +27322,Af32,EA025,None preferred,EA025-15,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27323,Af33,EA025,None preferred,EA025-15,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27324,Af34,EA025,None preferred,EA025-15,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27325,Af35,EA025,?,EA025-NA,,,,,, +27326,Af36,EA025,None preferred,EA025-15,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +27327,Af37,EA025,None preferred,EA025-15,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +27328,Af38,EA025,None preferred,EA025-15,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +27329,Af39,EA025,Cross-cousin: patri,EA025-3,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +27330,Af4,EA025,Cross-cousin: patri,EA025-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +27331,Af40,EA025,None preferred,EA025-15,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +27332,Af41,EA025,None preferred,EA025-15,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +27333,Af42,EA025,Cross-cousin: matri,EA025-2,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +27334,Af43,EA025,All: matri,EA025-9,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +27335,Af44,EA025,?,EA025-NA,,,,,, +27336,Af45,EA025,None preferred,EA025-15,But marriage with MoBrDa requires a ban-breaking sacrifice,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +27337,Af46,EA025,None preferred,EA025-15,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +27338,Af47,EA025,None preferred,EA025-15,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +27339,Af48,EA025,?,EA025-NA,,,,,, +27340,Af49,EA025,None preferred,EA025-15,,schwab1947,,1940,EthnographicAtlas_1967_p70, +27341,Af5,EA025,Uni: MoBrDa,EA025-5,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +27342,Af50,EA025,?,EA025-NA,,,,,, +27343,Af51,EA025,?,EA025-NA,,,,,, +27344,Af52,EA025,?,EA025-NA,,,,,, +27345,Af53,EA025,?,EA025-NA,,,,,, +27346,Af54,EA025,None preferred,EA025-15,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +27347,Af55,EA025,None preferred,EA025-15,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +27348,Af56,EA025,None preferred,EA025-15,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +27349,Af57,EA025,None preferred,EA025-15,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +27350,Af58,EA025,None preferred,EA025-15,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +27351,Af6,EA025,None preferred,EA025-15,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +27352,Af7,EA025,None preferred,EA025-15,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +27353,Af8,EA025,None preferred,EA025-15,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +27354,Af9,EA025,None preferred,EA025-15,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +27355,Ag1,EA025,Cross-cousin: matri,EA025-2,"But 'no preferred cousin marriages' (code ""15"") in some districts",dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +27356,Ag10,EA025,None preferred,EA025-15,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +27357,Ag11,EA025,Cross-cousin: patri,EA025-3,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +27358,Ag12,EA025,None preferred,EA025-15,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +27359,Ag13,EA025,None preferred,EA025-15,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +27360,Ag14,EA025,?,EA025-NA,,,,,, +27361,Ag15,EA025,None preferred,EA025-15,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +27362,Ag16,EA025,None preferred,EA025-15,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +27363,Ag17,EA025,?,EA025-NA,,,,,, +27364,Ag18,EA025,None preferred,EA025-15,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +27365,Ag19,EA025,None preferred,EA025-15,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +27366,Ag2,EA025,None preferred,EA025-15,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +27367,Ag20,EA025,?,EA025-NA,Cousin marriages are said to be permitted,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +27368,Ag21,EA025,?,EA025-NA,,,,,, +27369,Ag22,EA025,None preferred,EA025-15,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +27370,Ag23,EA025,None preferred,EA025-15,Inferred from statement that marriage is forbidden with a parallel cousin,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +27371,Ag24,EA025,None preferred,EA025-15,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +27372,Ag25,EA025,None preferred,EA025-15,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +27373,Ag26,EA025,Cross-cousin: either,EA025-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +27374,Ag27,EA025,None preferred,EA025-15,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +27375,Ag28,EA025,?,EA025-NA,,,,,, +27376,Ag29,EA025,?,EA025-NA,,,,,, +27377,Ag3,EA025,None preferred,EA025-15,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +27378,Ag30,EA025,?,EA025-NA,,,,,, +27379,Ag31,EA025,?,EA025-NA,,,,,, +27380,Ag32,EA025,None preferred,EA025-15,Inferred from statement that marriage is disapproved with a parallel cousin,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +27381,Ag33,EA025,Cross-cousin: either,EA025-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +27382,Ag34,EA025,Cross-cousin: either,EA025-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +27383,Ag35,EA025,None preferred,EA025-15,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +27384,Ag36,EA025,Cross-cousin: patri,EA025-3,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +27385,Ag37,EA025,None preferred,EA025-15,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +27386,Ag38,EA025,?,EA025-NA,,,,,, +27387,Ag39,EA025,None preferred,EA025-15,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +27388,Ag4,EA025,None preferred,EA025-15,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +27389,Ag40,EA025,None preferred,EA025-15,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +27390,Ag41,EA025,None preferred,EA025-15,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +27391,Ag42,EA025,?,EA025-NA,,,,,, +27392,Ag43,EA025,None preferred,EA025-15,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +27393,Ag44,EA025,None preferred,EA025-15,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +27394,Ag45,EA025,None preferred,EA025-15,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +27395,Ag46,EA025,None preferred,EA025-15,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +27396,Ag47,EA025,None preferred,EA025-15,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +27397,Ag48,EA025,?,EA025-NA,,,,,, +27398,Ag49,EA025,None preferred,EA025-15,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +27399,Ag5,EA025,Cross-cousin: patri,EA025-3,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +27400,Ag50,EA025,?,EA025-NA,,,,,, +27401,Ag51,EA025,None preferred,EA025-15,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +27402,Ag52,EA025,?,EA025-NA,,,,,, +27403,Ag53,EA025,None preferred,EA025-15,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +27404,Ag54,EA025,Cross-cousin: matri,EA025-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +27405,Ag6,EA025,All: cross,EA025-8,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +27406,Ag7,EA025,None preferred,EA025-15,"Entry follows Malzy, who reports preferential cousin marriage, whereas Ortoli states that known consanguineal kinship is a bar to marriage",malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +27407,Ag8,EA025,None preferred,EA025-15,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +27408,Ag9,EA025,None preferred,EA025-15,"In some districts, but not in others",labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +27409,Ah1,EA025,None preferred,EA025-15,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27410,Ah10,EA025,?,EA025-NA,,,,,, +27411,Ah11,EA025,None preferred,EA025-15,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +27412,Ah12,EA025,None preferred,EA025-15,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +27413,Ah13,EA025,?,EA025-NA,,,,,, +27414,Ah14,EA025,?,EA025-NA,,,,,, +27415,Ah15,EA025,None preferred,EA025-15,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +27416,Ah16,EA025,None preferred,EA025-15,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +27417,Ah17,EA025,None preferred,EA025-15,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +27418,Ah18,EA025,None preferred,EA025-15,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +27419,Ah19,EA025,None preferred,EA025-15,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +27420,Ah2,EA025,None preferred,EA025-15,,meek1931a,,1920,EthnographicAtlas_1967_p74, +27421,Ah20,EA025,None preferred,EA025-15,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +27422,Ah21,EA025,None preferred,EA025-15,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27423,Ah22,EA025,?,EA025-NA,,,,,, +27424,Ah23,EA025,Cross-cousin: either,EA025-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27425,Ah24,EA025,None preferred,EA025-15,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27426,Ah25,EA025,None preferred,EA025-15,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27427,Ah26,EA025,Cross-cousin: either,EA025-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27428,Ah27,EA025,Cross-cousin: matri,EA025-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27429,Ah28,EA025,None preferred,EA025-15,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +27430,Ah29,EA025,?,EA025-NA,,,,,, +27431,Ah3,EA025,None preferred,EA025-15,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +27432,Ah30,EA025,None preferred,EA025-15,,meek1931b,,1920,EthnographicAtlas_1967_p74, +27433,Ah31,EA025,None preferred,EA025-15,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +27434,Ah32,EA025,None preferred,EA025-15,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27435,Ah33,EA025,None preferred,EA025-15,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +27436,Ah34,EA025,None preferred,EA025-15,But marriage is allowed with a MoSiDa,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +27437,Ah35,EA025,None preferred,EA025-15,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27438,Ah36,EA025,None preferred,EA025-15,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +27439,Ah37,EA025,None preferred,EA025-15,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27440,Ah38,EA025,None preferred,EA025-15,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +27441,Ah39,EA025,?,EA025-NA,,,,,, +27442,Ah4,EA025,None preferred,EA025-15,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +27443,Ah5,EA025,None preferred,EA025-15,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +27444,Ah6,EA025,None preferred,EA025-15,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +27445,Ah7,EA025,None preferred,EA025-15,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +27446,Ah8,EA025,None preferred,EA025-15,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +27447,Ah9,EA025,None preferred,EA025-15,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +27448,Ai1,EA025,None preferred,EA025-15,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +27449,Ai10,EA025,None preferred,EA025-15,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +27450,Ai11,EA025,None preferred,EA025-15,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +27451,Ai12,EA025,None preferred,EA025-15,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +27452,Ai13,EA025,?,EA025-NA,,,,,, +27453,Ai14,EA025,?,EA025-NA,,,,,, +27454,Ai15,EA025,?,EA025-NA,,,,,, +27455,Ai16,EA025,?,EA025-NA,,,,,, +27456,Ai17,EA025,?,EA025-NA,,,,,, +27457,Ai18,EA025,?,EA025-NA,,,,,, +27458,Ai19,EA025,?,EA025-NA,,,,,, +27459,Ai2,EA025,None preferred,EA025-15,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +27460,Ai20,EA025,?,EA025-NA,,,,,, +27461,Ai21,EA025,?,EA025-NA,,,,,, +27462,Ai22,EA025,?,EA025-NA,,,,,, +27463,Ai23,EA025,None preferred,EA025-15,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +27464,Ai24,EA025,?,EA025-NA,,,,,, +27465,Ai25,EA025,?,EA025-NA,,,,,, +27466,Ai26,EA025,?,EA025-NA,,,,,, +27467,Ai27,EA025,?,EA025-NA,,,,,, +27468,Ai28,EA025,None preferred,EA025-15,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +27469,Ai29,EA025,None preferred,EA025-15,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +27470,Ai3,EA025,None preferred,EA025-15,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +27471,Ai30,EA025,?,EA025-NA,,,,,, +27472,Ai31,EA025,?,EA025-NA,,,,,, +27473,Ai32,EA025,None preferred,EA025-15,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +27474,Ai33,EA025,?,EA025-NA,,,,,, +27475,Ai34,EA025,?,EA025-NA,,,,,, +27476,Ai35,EA025,None preferred,EA025-15,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +27477,Ai36,EA025,None preferred,EA025-15,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +27478,Ai37,EA025,None preferred,EA025-15,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +27479,Ai38,EA025,None preferred,EA025-15,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +27480,Ai39,EA025,None preferred,EA025-15,,nadel1947,,1940,EthnographicAtlas_1967_p74, +27481,Ai4,EA025,None preferred,EA025-15,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +27482,Ai40,EA025,None preferred,EA025-15,,nadel1947,,1940,EthnographicAtlas_1967_p74, +27483,Ai41,EA025,None preferred,EA025-15,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +27484,Ai42,EA025,None preferred,EA025-15,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +27485,Ai43,EA025,None preferred,EA025-15,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +27486,Ai44,EA025,None preferred,EA025-15,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +27487,Ai45,EA025,None preferred,EA025-15,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +27488,Ai46,EA025,None preferred,EA025-15,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +27489,Ai47,EA025,None preferred,EA025-15,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +27490,Ai5,EA025,?,EA025-NA,,,,,, +27491,Ai6,EA025,None preferred,EA025-15,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +27492,Ai7,EA025,None preferred,EA025-15,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +27493,Ai8,EA025,None preferred,EA025-15,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +27494,Ai9,EA025,None preferred,EA025-15,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +27495,Aj1,EA025,None preferred,EA025-15,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +27496,Aj10,EA025,?,EA025-NA,,,,,, +27497,Aj11,EA025,None preferred,EA025-15,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +27498,Aj12,EA025,None preferred,EA025-15,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +27499,Aj13,EA025,None preferred,EA025-15,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +27500,Aj14,EA025,None preferred,EA025-15,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +27501,Aj15,EA025,None preferred,EA025-15,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +27502,Aj16,EA025,?,EA025-NA,,,,,, +27503,Aj17,EA025,None preferred,EA025-15,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +27504,Aj18,EA025,?,EA025-NA,,,,,, +27505,Aj19,EA025,?,EA025-NA,,,,,, +27506,Aj2,EA025,None preferred,EA025-15,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +27507,Aj20,EA025,?,EA025-NA,,,,,, +27508,Aj21,EA025,None preferred,EA025-15,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +27509,Aj22,EA025,None preferred,EA025-15,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +27510,Aj23,EA025,None preferred,EA025-15,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +27511,Aj24,EA025,?,EA025-NA,,,,,, +27512,Aj25,EA025,?,EA025-NA,,,,,, +27513,Aj26,EA025,None preferred,EA025-15,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +27514,Aj27,EA025,?,EA025-NA,,,,,, +27515,Aj28,EA025,None preferred,EA025-15,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +27516,Aj29,EA025,?,EA025-NA,,,,,, +27517,Aj3,EA025,None preferred,EA025-15,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +27518,Aj30,EA025,?,EA025-NA,,,,,, +27519,Aj31,EA025,?,EA025-NA,,,,,, +27520,Aj4,EA025,None preferred,EA025-15,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +27521,Aj5,EA025,None preferred,EA025-15,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +27522,Aj6,EA025,None preferred,EA025-15,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +27523,Aj7,EA025,None preferred,EA025-15,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +27524,Aj8,EA025,None preferred,EA025-15,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +27525,Aj9,EA025,None preferred,EA025-15,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +27526,Ca1,EA025,None preferred,EA025-15,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +27527,Ca10,EA025,None preferred,EA025-15,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +27528,Ca11,EA025,None preferred,EA025-15,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +27529,Ca12,EA025,?,EA025-NA,,,,,, +27530,Ca13,EA025,None preferred,EA025-15,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +27531,Ca14,EA025,?,EA025-NA,,,,,, +27532,Ca15,EA025,?,EA025-NA,,,,,, +27533,Ca16,EA025,?,EA025-NA,,,,,, +27534,Ca17,EA025,?,EA025-NA,,,,,, +27535,Ca18,EA025,?,EA025-NA,,,,,, +27536,Ca19,EA025,?,EA025-NA,,,,,, +27537,Ca2,EA025,None preferred,EA025-15,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +27538,Ca20,EA025,?,EA025-NA,,,,,, +27539,Ca21,EA025,?,EA025-NA,,,,,, +27540,Ca22,EA025,None preferred,EA025-15,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +27541,Ca23,EA025,?,EA025-NA,,,,,, +27542,Ca24,EA025,?,EA025-NA,,,,,, +27543,Ca25,EA025,?,EA025-NA,,,,,, +27544,Ca26,EA025,?,EA025-NA,,,,,, +27545,Ca27,EA025,None preferred,EA025-15,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +27546,Ca28,EA025,None preferred,EA025-15,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +27547,Ca29,EA025,?,EA025-NA,,,,,, +27548,Ca3,EA025,None preferred,EA025-15,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +27549,Ca30,EA025,None preferred,EA025-15,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +27550,Ca31,EA025,?,EA025-NA,,,,,, +27551,Ca32,EA025,None preferred,EA025-15,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +27552,Ca33,EA025,None preferred,EA025-15,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +27553,Ca34,EA025,All: FaBrDa,EA025-7,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +27554,Ca35,EA025,All: FaBrDa,EA025-7,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +27555,Ca36,EA025,All: FaBrDa,EA025-7,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +27556,Ca37,EA025,?,EA025-NA,,,,,, +27557,Ca38,EA025,None preferred,EA025-15,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +27558,Ca39,EA025,None preferred,EA025-15,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +27559,Ca4,EA025,?,EA025-NA,,,,,, +27560,Ca40,EA025,None preferred,EA025-15,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +27561,Ca41,EA025,?,EA025-NA,,,,,, +27562,Ca42,EA025,?,EA025-NA,,,,,, +27563,Ca43,EA025,?,EA025-NA,,,,,, +27564,Ca5,EA025,All: FaBrDa,EA025-7,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +27565,Ca6,EA025,None preferred,EA025-15,But forbidden with a MoSiDa,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +27566,Ca7,EA025,None preferred,EA025-15,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +27567,Ca8,EA025,?,EA025-NA,,,,,, +27568,Ca9,EA025,?,EA025-NA,,,,,, +27569,Cb1,EA025,Cross-cousin: matri,EA025-2,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +27570,Cb10,EA025,None preferred,EA025-15,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +27571,Cb11,EA025,None preferred,EA025-15,Inferred from a report that marriage is permitted with a MoBrDa but forbidden with a FaSiDa,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +27572,Cb12,EA025,None preferred,EA025-15,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +27573,Cb13,EA025,None preferred,EA025-15,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +27574,Cb14,EA025,?,EA025-NA,,,,,, +27575,Cb15,EA025,All: FaBrDa,EA025-7,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +27576,Cb16,EA025,None preferred,EA025-15,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +27577,Cb17,EA025,None preferred,EA025-15,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +27578,Cb18,EA025,None preferred,EA025-15,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +27579,Cb19,EA025,None preferred,EA025-15,Marriage is forbidden with a MoSiDa,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +27580,Cb2,EA025,Cross-cousin: either,EA025-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +27581,Cb20,EA025,?,EA025-NA,,,,,, +27582,Cb21,EA025,Cross-cousin: either,EA025-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +27583,Cb22,EA025,None preferred,EA025-15,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +27584,Cb23,EA025,None preferred,EA025-15,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +27585,Cb24,EA025,All: FaBrDa,EA025-7,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +27586,Cb25,EA025,None preferred,EA025-15,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +27587,Cb26,EA025,All: cross,EA025-8,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +27588,Cb27,EA025,None preferred,EA025-15,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27589,Cb28,EA025,None preferred,EA025-15,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +27590,Cb29,EA025,?,EA025-NA,,,,,, +27591,Cb3,EA025,None preferred,EA025-15,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +27592,Cb4,EA025,All: FaBrDa,EA025-7,,reid1930,,1920,EthnographicAtlas_1967_p78, +27593,Cb5,EA025,None preferred,EA025-15,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +27594,Cb6,EA025,None preferred,EA025-15,,woodnd,,1920,EthnographicAtlas_1967_p78, +27595,Cb7,EA025,None preferred,EA025-15,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +27596,Cb8,EA025,None preferred,EA025-15,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +27597,Cb9,EA025,All: FaBrDa,EA025-7,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +27598,Cc1,EA025,All: FaBrDa,EA025-7,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +27599,Cc10,EA025,Cross-cousin: matri,EA025-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +27600,Cc11,EA025,?,EA025-NA,,,,,, +27601,Cc12,EA025,?,EA025-NA,,,,,, +27602,Cc13,EA025,None preferred,EA025-15,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +27603,Cc14,EA025,None preferred,EA025-15,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +27604,Cc15,EA025,?,EA025-NA,,,,,, +27605,Cc16,EA025,All: FaBrDa,EA025-7,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +27606,Cc17,EA025,All: FaBrDa,EA025-7,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +27607,Cc18,EA025,?,EA025-NA,,,,,, +27608,Cc19,EA025,?,EA025-NA,,,,,, +27609,Cc2,EA025,None preferred,EA025-15,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +27610,Cc20,EA025,All: FaBrDa,EA025-7,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +27611,Cc3,EA025,None preferred,EA025-15,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +27612,Cc4,EA025,?,EA025-NA,,,,,, +27613,Cc5,EA025,All: cross,EA025-8,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +27614,Cc6,EA025,All: FaBrDa,EA025-7,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +27615,Cc7,EA025,All: FaBrDa,EA025-7,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27616,Cc8,EA025,?,EA025-NA,,,,,, +27617,Cc9,EA025,Cross-cousin: matri,EA025-2,"Entry follows Briggs; earlier sources report no preferred cousin marriages (code ""15"")",benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +27618,Cd1,EA025,All: FaBrDa,EA025-7,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +27619,Cd10,EA025,None preferred,EA025-15,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +27620,Cd11,EA025,None preferred,EA025-15,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +27621,Cd12,EA025,All: FaBrDa,EA025-7,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +27622,Cd13,EA025,All: FaBrDa,EA025-7,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +27623,Cd14,EA025,All: FaBrDa,EA025-7,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +27624,Cd15,EA025,?,EA025-NA,,,,,, +27625,Cd16,EA025,All: FaBrDa,EA025-7,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +27626,Cd17,EA025,All: FaBrDa,EA025-7,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +27627,Cd18,EA025,All: FaBrDa,EA025-7,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +27628,Cd19,EA025,All: FaBrDa,EA025-7,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +27629,Cd2,EA025,All: FaBrDa,EA025-7,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +27630,Cd20,EA025,All: FaBrDa,EA025-7,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +27631,Cd21,EA025,All: FaBrDa,EA025-7,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +27632,Cd3,EA025,None preferred,EA025-15,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +27633,Cd4,EA025,None preferred,EA025-15,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +27634,Cd5,EA025,?,EA025-NA,,,,,, +27635,Cd6,EA025,None preferred,EA025-15,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +27636,Cd7,EA025,All: FaBrDa,EA025-7,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +27637,Cd8,EA025,All: FaBrDa,EA025-7,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +27638,Cd9,EA025,?,EA025-NA,,,,,, +27639,Ce1,EA025,Cross-cousin: matri,EA025-2,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +27640,Ce2,EA025,None preferred,EA025-15,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +27641,Ce3,EA025,None preferred,EA025-15,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +27642,Ce4,EA025,?,EA025-NA,,,,,, +27643,Ce5,EA025,None preferred,EA025-15,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +27644,Ce6,EA025,None preferred,EA025-15,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +27645,Ce7,EA025,None preferred,EA025-15,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +27646,Ce8,EA025,?,EA025-NA,,,,,, +27647,Cf1,EA025,None preferred,EA025-15,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +27648,Cf2,EA025,?,EA025-NA,,,,,, +27649,Cf3,EA025,?,EA025-NA,,,,,, +27650,Cf4,EA025,None preferred,EA025-15,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +27651,Cf5,EA025,None preferred,EA025-15,,miner1939,,1930,EthnographicAtlas_1967_p82, +27652,Cg1,EA025,None preferred,EA025-15,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +27653,Cg2,EA025,?,EA025-NA,,,,,, +27654,Cg3,EA025,None preferred,EA025-15,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +27655,Cg4,EA025,None preferred,EA025-15,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +27656,Cg5,EA025,?,EA025-NA,,,,,, +27657,Ch1,EA025,?,EA025-NA,,,,,, +27658,Ch10,EA025,None preferred,EA025-15,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +27659,Ch11,EA025,?,EA025-NA,,,,,, +27660,Ch2,EA025,?,EA025-NA,,,,,, +27661,Ch3,EA025,None preferred,EA025-15,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +27662,Ch4,EA025,None preferred,EA025-15,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +27663,Ch5,EA025,?,EA025-NA,,,,,, +27664,Ch6,EA025,None preferred,EA025-15,,ember1954,,1910,EthnographicAtlas_1967_p82, +27665,Ch7,EA025,None preferred,EA025-15,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +27666,Ch8,EA025,None preferred,EA025-15,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +27667,Ch9,EA025,None preferred,EA025-15,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +27668,Ci1,EA025,None preferred,EA025-15,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +27669,Ci10,EA025,None preferred,EA025-15,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +27670,Ci11,EA025,All: FaBrDa,EA025-7,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +27671,Ci12,EA025,?,EA025-NA,,,,,, +27672,Ci2,EA025,None preferred,EA025-15,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +27673,Ci3,EA025,?,EA025-NA,,,,,, +27674,Ci4,EA025,?,EA025-NA,,,,,, +27675,Ci5,EA025,None preferred,EA025-15,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +27676,Ci6,EA025,None preferred,EA025-15,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +27677,Ci7,EA025,?,EA025-NA,,,,,, +27678,Ci8,EA025,?,EA025-NA,,,,,, +27679,Ci9,EA025,?,EA025-NA,,,,,, +27680,Cj1,EA025,All: FaBrDa,EA025-7,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +27681,Cj10,EA025,All: FaBrDa,EA025-7,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +27682,Cj2,EA025,All: FaBrDa,EA025-7,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +27683,Cj3,EA025,All: FaBrDa,EA025-7,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +27684,Cj4,EA025,?,EA025-NA,,,,,, +27685,Cj5,EA025,All: FaBrDa,EA025-7,,dickson1949,,1930,EthnographicAtlas_1967_p86, +27686,Cj6,EA025,All: FaBrDa,EA025-7,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +27687,Cj7,EA025,None preferred,EA025-15,"But traditionally 'quadrilateral, with FaBrDa preferred' (code ""7"")",davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +27688,Cj8,EA025,All: FaBrDa,EA025-7,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +27689,Cj9,EA025,?,EA025-NA,,,,,, +27690,Ea1,EA025,None preferred,EA025-15,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +27691,Ea10,EA025,All: FaBrDa,EA025-7,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +27692,Ea11,EA025,All: FaBrDa,EA025-7,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +27693,Ea12,EA025,All: FaBrDa,EA025-7,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +27694,Ea13,EA025,All: matri,EA025-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +27695,Ea2,EA025,All: FaBrDa,EA025-7,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +27696,Ea3,EA025,All: FaBrDa,EA025-7,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +27697,Ea4,EA025,?,EA025-NA,,,,,, +27698,Ea5,EA025,None preferred,EA025-15,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +27699,Ea6,EA025,All: FaBrDa,EA025-7,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +27700,Ea7,EA025,None preferred,EA025-15,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +27701,Ea8,EA025,?,EA025-NA,,,,,, +27702,Ea9,EA025,All: FaBrDa,EA025-7,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +27703,Eb1,EA025,None preferred,EA025-15,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +27704,Eb2,EA025,None preferred,EA025-15,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +27705,Eb3,EA025,None preferred,EA025-15,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +27706,Eb4,EA025,None preferred,EA025-15,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +27707,Eb5,EA025,Maternal: MoBrDa,EA025-4,"Possibly 'Uni: MoBrDa' (code ""5"")",freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +27708,Eb6,EA025,None preferred,EA025-15,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +27709,Eb7,EA025,None preferred,EA025-15,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +27710,Eb8,EA025,All: cross,EA025-8,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +27711,Ec1,EA025,Uni: MoBrDa,EA025-5,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +27712,Ec10,EA025,None preferred,EA025-15,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +27713,Ec11,EA025,?,EA025-NA,,,,,, +27714,Ec2,EA025,None preferred,EA025-15,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27715,Ec3,EA025,None preferred,EA025-15,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +27716,Ec4,EA025,Tri: matrilateral,EA025-13,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +27717,Ec5,EA025,None preferred,EA025-15,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +27718,Ec6,EA025,None preferred,EA025-15,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +27719,Ec7,EA025,None preferred,EA025-15,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +27720,Ec8,EA025,?,EA025-NA,,,,,, +27721,Ec9,EA025,None preferred,EA025-15,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +27722,Ed1,EA025,None preferred,EA025-15,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +27723,Ed10,EA025,None preferred,EA025-15,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +27724,Ed13,EA025,?,EA025-NA,,,,,, +27725,Ed14,EA025,?,EA025-NA,,,,,, +27726,Ed15a,EA025,?,EA025-NA,,,,,, +27727,Ed15b,EA025,Cross-cousin: patri,EA025-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +27728,Ed16,EA025,None preferred,EA025-15,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +27729,Ed2,EA025,Cross-cousin: matri,EA025-2,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +27730,Ed3,EA025,None preferred,EA025-15,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +27731,Ed4,EA025,Cross-cousin: either,EA025-1,"Or 'cross-cousin, patrilateral preference' (code ""3"") if Mark's interpretation of Ruey's data is correct",mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +27732,Ed5,EA025,None preferred,EA025-15,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27733,Ed6,EA025,None preferred,EA025-15,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +27734,Ed7,EA025,None preferred,EA025-15,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +27735,Ed8,EA025,None preferred,EA025-15,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +27736,Ed9,EA025,?,EA025-NA,,,,,, +27737,Ee1,EA025,None preferred,EA025-15,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +27738,Ee2,EA025,None preferred,EA025-15,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +27739,Ee3,EA025,None preferred,EA025-15,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +27740,Ee4,EA025,None preferred,EA025-15,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +27741,Ee5,EA025,None preferred,EA025-15,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +27742,Ee6,EA025,None preferred,EA025-15,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +27743,Ee7,EA025,?,EA025-NA,,,,,, +27744,Ee8,EA025,None preferred,EA025-15,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +27745,Ef1,EA025,None preferred,EA025-15,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +27746,Ef10,EA025,None preferred,EA025-15,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27747,Ef11,EA025,?,EA025-NA,,,,,, +27748,Ef2,EA025,None preferred,EA025-15,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +27749,Ef3,EA025,None preferred,EA025-15,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +27750,Ef4,EA025,None preferred,EA025-15,Entry follows Majumdar; Chatterjee and Das report that cross- cousin marriage is recent and disapproved,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +27751,Ef5,EA025,None preferred,EA025-15,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +27752,Ef6,EA025,None preferred,EA025-15,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +27753,Ef7,EA025,None preferred,EA025-15,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +27754,Ef8,EA025,None preferred,EA025-15,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +27755,Ef9,EA025,Cross-cousin: either,EA025-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27756,Eg1,EA025,Cross-cousin: matri,EA025-2,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27757,Eg10,EA025,Cross-cousin: matri,EA025-2,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +27758,Eg11,EA025,Cross-cousin: matri,EA025-2,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +27759,Eg12,EA025,None preferred,EA025-15,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +27760,Eg13,EA025,Cross-cousin: either,EA025-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27761,Eg14,EA025,Cross-cousin: matri,EA025-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +27762,Eg2,EA025,Cross-cousin: either,EA025-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +27763,Eg3,EA025,Cross-cousin: either,EA025-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +27764,Eg4,EA025,Cross-cousin: either,EA025-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +27765,Eg5,EA025,Cross-cousin: either,EA025-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +27766,Eg6,EA025,Cross-cousin: matri,EA025-2,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +27767,Eg7,EA025,None preferred,EA025-15,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +27768,Eg8,EA025,None preferred,EA025-15,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +27769,Eg9,EA025,None preferred,EA025-15,,elwin1939,,1930,EthnographicAtlas_1967_p90, +27770,Eh1,EA025,None preferred,EA025-15,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +27771,Eh10,EA025,None preferred,EA025-15,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +27772,Eh2,EA025,None preferred,EA025-15,Marriage is also favored with a FaBrDa,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +27773,Eh3,EA025,Cross-cousin: either,EA025-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +27774,Eh4,EA025,Cross-cousin: patri,EA025-3,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27775,Eh5,EA025,None preferred,EA025-15,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +27776,Eh6,EA025,Cross-cousin: matri,EA025-2,"Leach denies ""a symmetrical preference for cross-cousin marriage"" but fails to report the ""true facts""",ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +27777,Eh7,EA025,None preferred,EA025-15,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +27778,Eh8,EA025,None preferred,EA025-15,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +27779,Eh9,EA025,None preferred,EA025-15,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +27780,Ei1,EA025,Cross-cousin: matri,EA025-2,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27781,Ei10,EA025,None preferred,EA025-15,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +27782,Ei11,EA025,Uni: MoBrDa,EA025-5,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +27783,Ei12,EA025,Uni: MoBrDa,EA025-5,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +27784,Ei13,EA025,?,EA025-NA,,,,,, +27785,Ei14,EA025,None preferred,EA025-15,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +27786,Ei15,EA025,Uni: MoBrDa,EA025-5,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +27787,Ei16,EA025,Uni: MoBrDa,EA025-5,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +27788,Ei17,EA025,?,EA025-NA,,,,,, +27789,Ei18,EA025,?,EA025-NA,,,,,, +27790,Ei19,EA025,None preferred,EA025-15,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +27791,Ei2,EA025,Uni: MoBrDa,EA025-5,,mills1922,,1920,EthnographicAtlas_1967_p90, +27792,Ei20,EA025,None preferred,EA025-15,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +27793,Ei3,EA025,None preferred,EA025-15,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +27794,Ei4,EA025,Maternal: MoBrDa,EA025-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +27795,Ei5,EA025,Uni: MoBrDa,EA025-5,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +27796,Ei6,EA025,Uni: MoBrDa,EA025-5,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +27797,Ei7,EA025,None preferred,EA025-15,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +27798,Ei8,EA025,None preferred,EA025-15,"Marriage is allowed with a MoBrDa only if MoBr is dead, and with a FaSiDa only if Fa is dead",becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +27799,Ei9,EA025,Cross-cousin: either,EA025-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +27800,Ej1,EA025,Uni: MoBrDa,EA025-5,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +27801,Ej10,EA025,None preferred,EA025-15,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +27802,Ej11,EA025,None preferred,EA025-15,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +27803,Ej12,EA025,Uni: MoBrDa,EA025-5,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +27804,Ej13,EA025,None preferred,EA025-15,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +27805,Ej14,EA025,None preferred,EA025-15,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27806,Ej15,EA025,?,EA025-NA,,,,,, +27807,Ej16,EA025,Cross-cousin: matri,EA025-2,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +27808,Ej2,EA025,Uni: MoBrDa,EA025-5,MoYoBrDa only,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +27809,Ej3,EA025,None preferred,EA025-15,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +27810,Ej4,EA025,None preferred,EA025-15,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +27811,Ej5,EA025,None preferred,EA025-15,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +27812,Ej6,EA025,?,EA025-NA,,,,,, +27813,Ej7,EA025,None preferred,EA025-15,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +27814,Ej8,EA025,None preferred,EA025-15,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +27815,Ej9,EA025,None preferred,EA025-15,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +27816,Ia1,EA025,None preferred,EA025-15,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +27817,Ia10,EA025,None preferred,EA025-15,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +27818,Ia11,EA025,None preferred,EA025-15,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +27819,Ia12,EA025,None preferred,EA025-15,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +27820,Ia13,EA025,None preferred,EA025-15,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +27821,Ia14,EA025,None preferred,EA025-15,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +27822,Ia15,EA025,None preferred,EA025-15,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +27823,Ia16,EA025,None preferred,EA025-15,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +27824,Ia17,EA025,?,EA025-NA,,,,,, +27825,Ia18,EA025,None preferred,EA025-15,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +27826,Ia2,EA025,None preferred,EA025-15,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +27827,Ia3,EA025,None preferred,EA025-15,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +27828,Ia4,EA025,None preferred,EA025-15,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +27829,Ia5,EA025,None preferred,EA025-15,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +27830,Ia6,EA025,None preferred,EA025-15,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27831,Ia7,EA025,None preferred,EA025-15,,fox1954,,1950,EthnographicAtlas_1967_p90, +27832,Ia8,EA025,None preferred,EA025-15,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +27833,Ia9,EA025,None preferred,EA025-15,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +27834,Ib1,EA025,None preferred,EA025-15,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27835,Ib2,EA025,None preferred,EA025-15,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27836,Ib3,EA025,All: FaBrDa,EA025-7,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +27837,Ib4,EA025,Uni: MoBrDa,EA025-5,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +27838,Ib5,EA025,None preferred,EA025-15,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +27839,Ib6,EA025,Cross-cousin: either,EA025-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +27840,Ib7,EA025,None preferred,EA025-15,Marriage forbidden only with a FaBrDa,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +27841,Ib8,EA025,None preferred,EA025-15,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +27842,Ib9,EA025,None preferred,EA025-15,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +27843,Ic1,EA025,None preferred,EA025-15,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27844,Ic10,EA025,None preferred,EA025-15,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +27845,Ic11,EA025,None preferred,EA025-15,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27846,Ic12,EA025,None preferred,EA025-15,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +27847,Ic13,EA025,None preferred,EA025-15,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +27848,Ic2,EA025,None preferred,EA025-15,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +27849,Ic3,EA025,Uni: MoBrDa,EA025-5,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +27850,Ic4,EA025,Tri: bilateral,EA025-12,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +27851,Ic5,EA025,None preferred,EA025-15,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +27852,Ic6,EA025,Cross-cousin: matri,EA025-2,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +27853,Ic7,EA025,Cross-cousin: matri,EA025-2,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +27854,Ic8,EA025,Uni: MoBrDa,EA025-5,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +27855,Ic9,EA025,Uni: MoBrDa,EA025-5,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +27856,Id1,EA025,Some second only,EA025-10,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +27857,Id10,EA025,None preferred,EA025-15,But marriage is preferred with a remoter classificatory MoMoBrDaDa,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +27858,Id11,EA025,Some second only,EA025-10,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +27859,Id12,EA025,None preferred,EA025-15,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +27860,Id13,EA025,Second cousins preferred,EA025-11,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +27861,Id2,EA025,Uni: MoBrDa,EA025-5,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +27862,Id3,EA025,Second cousins preferred,EA025-11,"Marriage with FaSiDa is allowed in theory, but Pilling observed No actual cases; marriage with a daughter of father's half sister, however, is preferred and common",basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +27863,Id4,EA025,Some second only,EA025-10,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +27864,Id5,EA025,Cross-cousin: either,EA025-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +27865,Id6,EA025,Uni: MoBrDa,EA025-5,Marriage preferential with MoYoBrDa and any second cross-cousin but forbidden with FaSiDa and MoElBrDa,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +27866,Id7,EA025,Some second only,EA025-10,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +27867,Id8,EA025,?,EA025-NA,,,,,, +27868,Id9,EA025,Some second only,EA025-10,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +27869,Ie1,EA025,Second cousins preferred,EA025-11,Marriage is preferred with any second cross-cousin,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27870,Ie10,EA025,None preferred,EA025-15,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +27871,Ie11,EA025,None preferred,EA025-15,,bowers1964,,1950,EthnographicAtlas_1967_p94, +27872,Ie12,EA025,None preferred,EA025-15,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27873,Ie13,EA025,None preferred,EA025-15,,landtman1927,,1920,EthnographicAtlas_1967_p94, +27874,Ie14,EA025,None preferred,EA025-15,,haddon1908,,1900,EthnographicAtlas_1967_p94, +27875,Ie15,EA025,None preferred,EA025-15,"Though disapproved, marriage with a cross-cousin does occasionally occur",kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27876,Ie16,EA025,None preferred,EA025-15,,williams194041,,1940,EthnographicAtlas_1967_p94, +27877,Ie17,EA025,None preferred,EA025-15,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +27878,Ie18,EA025,None preferred,EA025-15,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +27879,Ie19,EA025,None preferred,EA025-15,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +27880,Ie2,EA025,Cross-cousin: either,EA025-1,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +27881,Ie20,EA025,None preferred,EA025-15,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +27882,Ie21,EA025,?,EA025-NA,,,,,, +27883,Ie22,EA025,None preferred,EA025-15,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +27884,Ie23,EA025,None preferred,EA025-15,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +27885,Ie24,EA025,None preferred,EA025-15,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +27886,Ie25,EA025,None preferred,EA025-15,,williamson1912,,1920,EthnographicAtlas_1967_p94, +27887,Ie26,EA025,Some second only,EA025-10,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +27888,Ie27,EA025,None preferred,EA025-15,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +27889,Ie28,EA025,None preferred,EA025-15,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +27890,Ie29,EA025,None preferred,EA025-15,Marriage is preferred with FaFaSiSoDa,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27891,Ie3,EA025,None preferred,EA025-15,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27892,Ie30,EA025,?,EA025-NA,,,,,, +27893,Ie31,EA025,Cross-cousin: either,EA025-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +27894,Ie32,EA025,?,EA025-NA,,,,,, +27895,Ie33,EA025,Cross-cousin: either,EA025-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +27896,Ie34,EA025,None preferred,EA025-15,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +27897,Ie35,EA025,Cross-cousin: matri,EA025-2,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +27898,Ie36,EA025,None preferred,EA025-15,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +27899,Ie37,EA025,None preferred,EA025-15,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +27900,Ie38,EA025,None preferred,EA025-15,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +27901,Ie39,EA025,None preferred,EA025-15,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +27902,Ie4,EA025,None preferred,EA025-15,Marriage is preferential between children of cross-cousins,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27903,Ie5,EA025,None preferred,EA025-15,"The preferred union is with a classificatory, not an actual, cross-cousin",williams1936,,1930,EthnographicAtlas_1967_p94, +27904,Ie6,EA025,Uni: MoBrDa,EA025-5,,held1947,,1930,EthnographicAtlas_1967_p94, +27905,Ie7,EA025,None preferred,EA025-15,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +27906,Ie8,EA025,None preferred,EA025-15,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +27907,Ie9,EA025,None preferred,EA025-15,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +27908,If1,EA025,None preferred,EA025-15,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27909,If10,EA025,Cross-cousin: either,EA025-1,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +27910,If11,EA025,None preferred,EA025-15,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +27911,If12,EA025,Cross-cousin: either,EA025-1,,mason1954,,1940,EthnographicAtlas_1967_p98, +27912,If13,EA025,Cross-cousin: either,EA025-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +27913,If14,EA025,None preferred,EA025-15,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +27914,If15,EA025,None preferred,EA025-15,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +27915,If16,EA025,?,EA025-NA,,,,,, +27916,If17,EA025,Cross-cousin: either,EA025-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +27917,If2,EA025,None preferred,EA025-15,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +27918,If3,EA025,None preferred,EA025-15,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +27919,If4,EA025,None preferred,EA025-15,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +27920,If5,EA025,Cross-cousin: either,EA025-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +27921,If6,EA025,None preferred,EA025-15,Marriage with a first cross-cousin occurs only under very special conditions,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +27922,If7,EA025,None preferred,EA025-15,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +27923,If8,EA025,None preferred,EA025-15,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +27924,If9,EA025,None preferred,EA025-15,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +27925,Ig1,EA025,Cross-cousin: matri,EA025-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +27926,Ig10,EA025,None preferred,EA025-15,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +27927,Ig11,EA025,None preferred,EA025-15,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +27928,Ig12,EA025,None preferred,EA025-15,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +27929,Ig13,EA025,None preferred,EA025-15,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +27930,Ig14,EA025,None preferred,EA025-15,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +27931,Ig15,EA025,?,EA025-NA,,,,,, +27932,Ig16,EA025,?,EA025-NA,,,,,, +27933,Ig17,EA025,None preferred,EA025-15,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +27934,Ig18,EA025,None preferred,EA025-15,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +27935,Ig19,EA025,None preferred,EA025-15,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +27936,Ig2,EA025,None preferred,EA025-15,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +27937,Ig20,EA025,None preferred,EA025-15,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +27938,Ig21,EA025,Cross-cousin: either,EA025-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +27939,Ig3,EA025,None preferred,EA025-15,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +27940,Ig4,EA025,None preferred,EA025-15,The preferred marriage is with the daughter of a cross-cousin,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +27941,Ig5,EA025,None preferred,EA025-15,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +27942,Ig6,EA025,None preferred,EA025-15,,ivens1927,,1900,EthnographicAtlas_1967_p98, +27943,Ig7,EA025,Cross-cousin: either,EA025-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +27944,Ig8,EA025,None preferred,EA025-15,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +27945,Ig9,EA025,Some second only,EA025-10,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +27946,Ih1,EA025,None preferred,EA025-15,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +27947,Ih10,EA025,Cross-cousin: either,EA025-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27948,Ih11,EA025,Cross-cousin: either,EA025-1,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +27949,Ih12,EA025,None preferred,EA025-15,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +27950,Ih13,EA025,None preferred,EA025-15,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +27951,Ih14,EA025,?,EA025-NA,,,,,, +27952,Ih2,EA025,None preferred,EA025-15,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27953,Ih3,EA025,None preferred,EA025-15,Marriage is preferred with MoBrDaDa or MoMoBrDa,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +27954,Ih4,EA025,Cross-cousin: either,EA025-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27955,Ih5,EA025,Cross-cousin: either,EA025-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +27956,Ih6,EA025,None preferred,EA025-15,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +27957,Ih7,EA025,None preferred,EA025-15,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +27958,Ih8,EA025,None preferred,EA025-15,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +27959,Ih9,EA025,None preferred,EA025-15,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27960,Ii1,EA025,None preferred,EA025-15,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +27961,Ii10,EA025,Cross-cousin: either,EA025-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +27962,Ii12,EA025,None preferred,EA025-15,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27963,Ii13,EA025,None preferred,EA025-15,,burrows1937,,1830,EthnographicAtlas_1967_p98, +27964,Ii14,EA025,None preferred,EA025-15,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +27965,Ii2,EA025,None preferred,EA025-15,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +27966,Ii3,EA025,None preferred,EA025-15,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +27967,Ii4,EA025,None preferred,EA025-15,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +27968,Ii5,EA025,None preferred,EA025-15,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +27969,Ii6,EA025,None preferred,EA025-15,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +27970,Ii7,EA025,None preferred,EA025-15,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +27971,Ii8,EA025,None preferred,EA025-15,,burrows1936,,1840,EthnographicAtlas_1967_p98, +27972,Ii9,EA025,None preferred,EA025-15,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +27973,Ij1,EA025,None preferred,EA025-15,,buck1934,,1820,EthnographicAtlas_1967_p98, +27974,Ij10,EA025,None preferred,EA025-15,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +27975,Ij2,EA025,Second cousins preferred,EA025-11,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +27976,Ij3,EA025,Cross-cousin: either,EA025-1,"But Miranda states that ""marriage was prohibited within the third degree of relationship""",forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +27977,Ij4,EA025,None preferred,EA025-15,,buck1932a,,1850,EthnographicAtlas_1967_p102, +27978,Ij5,EA025,?,EA025-NA,,,,,, +27979,Ij6,EA025,None preferred,EA025-15,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +27980,Ij7,EA025,None preferred,EA025-15,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +27981,Ij8,EA025,None preferred,EA025-15,But chiefly families sometimes practiced cross-cousin marriage,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +27982,Ij9,EA025,None preferred,EA025-15,,metraux1940,,1860,EthnographicAtlas_1967_p102, +27983,Na1,EA025,Cross-cousin: either,EA025-1,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +27984,Na10,EA025,None preferred,EA025-15,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +27985,Na11,EA025,None preferred,EA025-15,But rules of cousin marriage were variable,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +27986,Na12,EA025,None preferred,EA025-15,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +27987,Na13,EA025,?,EA025-NA,,,,,, +27988,Na14,EA025,?,EA025-NA,,,,,, +27989,Na15,EA025,?,EA025-NA,There are no patterns of preferential marriage,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +27990,Na16,EA025,?,EA025-NA,,,,,, +27991,Na17,EA025,None preferred,EA025-15,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +27992,Na19,EA025,Cross-cousin: either,EA025-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +27993,Na2,EA025,None preferred,EA025-15,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +27994,Na20,EA025,None preferred,EA025-15,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +27995,Na21,EA025,None preferred,EA025-15,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +27996,Na22,EA025,None preferred,EA025-15,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +27997,Na23,EA025,?,EA025-NA,,,,,, +27998,Na24,EA025,None preferred,EA025-15,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +27999,Na25,EA025,?,EA025-NA,,,,,, +28000,Na26,EA025,None preferred,EA025-15,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +28001,Na27,EA025,?,EA025-NA,,,,,, +28002,Na28,EA025,None preferred,EA025-15,,jenness1937,,1880,EthnographicAtlas_1967_p102, +28003,Na29,EA025,?,EA025-NA,,,,,, +28004,Na3,EA025,None preferred,EA025-15,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +28005,Na30,EA025,None preferred,EA025-15,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +28006,Na31,EA025,None preferred,EA025-15,"""...there were no marriage restrictions""",skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +28007,Na32,EA025,Cross-cousin: matri,EA025-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +28008,Na33,EA025,Cross-cousin: either,EA025-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +28009,Na34,EA025,None preferred,EA025-15,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +28010,Na35,EA025,None preferred,EA025-15,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +28011,Na36,EA025,Cross-cousin: either,EA025-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +28012,Na37,EA025,Cross-cousin: either,EA025-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +28013,Na38,EA025,None preferred,EA025-15,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +28014,Na39,EA025,Cross-cousin: either,EA025-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +28015,Na4,EA025,Uni: MoBrDa,EA025-5,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +28016,Na40,EA025,?,EA025-NA,,,,,, +28017,Na41,EA025,None preferred,EA025-15,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +28018,Na42,EA025,None preferred,EA025-15,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +28019,Na43,EA025,None preferred,EA025-15,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +28020,Na44,EA025,None preferred,EA025-15,"But there are occasional marriages between first cousins, and people differ as to their propriety",graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +28021,Na45,EA025,Cross-cousin: either,EA025-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +28022,Na5,EA025,Cross-cousin: either,EA025-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +28023,Na6,EA025,None preferred,EA025-15,,lantis1946,,1930,EthnographicAtlas_1967_p102, +28024,Na7,EA025,Cross-cousin: either,EA025-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +28025,Na8,EA025,None preferred,EA025-15,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +28026,Na9,EA025,All: matri,EA025-9,"But 'no preferred cousin marriages' (code ""15"") today",bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28027,Nb1,EA025,Cross-cousin: patri,EA025-3,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +28028,Nb10,EA025,None preferred,EA025-15,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +28029,Nb11,EA025,None preferred,EA025-15,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +28030,Nb12,EA025,None preferred,EA025-15,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +28031,Nb13,EA025,None preferred,EA025-15,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +28032,Nb14,EA025,None preferred,EA025-15,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +28033,Nb15,EA025,None preferred,EA025-15,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +28034,Nb16,EA025,None preferred,EA025-15,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +28035,Nb17,EA025,None preferred,EA025-15,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +28036,Nb18,EA025,None preferred,EA025-15,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +28037,Nb19,EA025,None preferred,EA025-15,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +28038,Nb2,EA025,None preferred,EA025-15,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +28039,Nb20,EA025,None preferred,EA025-15,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +28040,Nb21,EA025,None preferred,EA025-15,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +28041,Nb22,EA025,Uni: FaSiDa,EA025-6,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +28042,Nb23,EA025,None preferred,EA025-15,"Marriage with a cross-cousin was considered ""good""",boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +28043,Nb24,EA025,None preferred,EA025-15,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +28044,Nb25,EA025,None preferred,EA025-15,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +28045,Nb26,EA025,None preferred,EA025-15,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +28046,Nb27,EA025,None preferred,EA025-15,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +28047,Nb28,EA025,None preferred,EA025-15,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +28048,Nb29,EA025,None preferred,EA025-15,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +28049,Nb3,EA025,Second cousins preferred,EA025-11,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +28050,Nb30,EA025,None preferred,EA025-15,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +28051,Nb31,EA025,Uni: MoBrDa,EA025-5,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +28052,Nb32,EA025,None preferred,EA025-15,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +28053,Nb33,EA025,None preferred,EA025-15,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +28054,Nb34,EA025,None preferred,EA025-15,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +28055,Nb35,EA025,None preferred,EA025-15,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +28056,Nb36,EA025,None preferred,EA025-15,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +28057,Nb37,EA025,None preferred,EA025-15,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +28058,Nb38,EA025,None preferred,EA025-15,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +28059,Nb39,EA025,None preferred,EA025-15,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +28060,Nb4,EA025,None preferred,EA025-15,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +28061,Nb5,EA025,None preferred,EA025-15,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +28062,Nb6,EA025,None preferred,EA025-15,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +28063,Nb7,EA025,Cross-cousin: matri,EA025-2,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +28064,Nb8,EA025,Cross-cousin: matri,EA025-2,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +28065,Nb9,EA025,None preferred,EA025-15,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +28066,Nc1,EA025,None preferred,EA025-15,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +28067,Nc10,EA025,None preferred,EA025-15,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +28068,Nc11,EA025,None preferred,EA025-15,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +28069,Nc12,EA025,None preferred,EA025-15,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +28070,Nc13,EA025,None preferred,EA025-15,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +28071,Nc14,EA025,None preferred,EA025-15,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +28072,Nc15,EA025,None preferred,EA025-15,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +28073,Nc16,EA025,None preferred,EA025-15,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +28074,Nc17,EA025,None preferred,EA025-15,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +28075,Nc18,EA025,None preferred,EA025-15,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +28076,Nc19,EA025,None preferred,EA025-15,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +28077,Nc2,EA025,None preferred,EA025-15,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +28078,Nc20,EA025,None preferred,EA025-15,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +28079,Nc21,EA025,None preferred,EA025-15,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +28080,Nc22,EA025,None preferred,EA025-15,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +28081,Nc23,EA025,None preferred,EA025-15,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +28082,Nc24,EA025,None preferred,EA025-15,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +28083,Nc25,EA025,None preferred,EA025-15,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +28084,Nc26,EA025,?,EA025-NA,,,,,, +28085,Nc27,EA025,?,EA025-NA,,,,,, +28086,Nc28,EA025,?,EA025-NA,,,,,, +28087,Nc29,EA025,None preferred,EA025-15,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +28088,Nc3,EA025,None preferred,EA025-15,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +28089,Nc30,EA025,None preferred,EA025-15,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +28090,Nc31,EA025,None preferred,EA025-15,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +28091,Nc32,EA025,None preferred,EA025-15,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +28092,Nc33,EA025,None preferred,EA025-15,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +28093,Nc34,EA025,None preferred,EA025-15,,meigs1939,,1880,EthnographicAtlas_1967_p106, +28094,Nc4,EA025,None preferred,EA025-15,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +28095,Nc5,EA025,None preferred,EA025-15,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +28096,Nc6,EA025,None preferred,EA025-15,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +28097,Nc7,EA025,None preferred,EA025-15,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +28098,Nc8,EA025,None preferred,EA025-15,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +28099,Nc9,EA025,None preferred,EA025-15,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +28100,Nd1,EA025,None preferred,EA025-15,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +28101,Nd10,EA025,None preferred,EA025-15,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +28102,Nd11,EA025,None preferred,EA025-15,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +28103,Nd12,EA025,None preferred,EA025-15,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +28104,Nd13,EA025,None preferred,EA025-15,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +28105,Nd14,EA025,None preferred,EA025-15,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +28106,Nd15,EA025,None preferred,EA025-15,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +28107,Nd16,EA025,None preferred,EA025-15,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +28108,Nd17,EA025,None preferred,EA025-15,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +28109,Nd18,EA025,None preferred,EA025-15,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +28110,Nd19,EA025,None preferred,EA025-15,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +28111,Nd2,EA025,None preferred,EA025-15,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +28112,Nd20,EA025,None preferred,EA025-15,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +28113,Nd21,EA025,None preferred,EA025-15,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +28114,Nd22,EA025,None preferred,EA025-15,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +28115,Nd23,EA025,None preferred,EA025-15,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +28116,Nd24,EA025,None preferred,EA025-15,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +28117,Nd25,EA025,None preferred,EA025-15,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +28118,Nd26,EA025,None preferred,EA025-15,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +28119,Nd27,EA025,None preferred,EA025-15,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +28120,Nd28,EA025,None preferred,EA025-15,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +28121,Nd29,EA025,None preferred,EA025-15,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +28122,Nd3,EA025,None preferred,EA025-15,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +28123,Nd30,EA025,None preferred,EA025-15,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +28124,Nd31,EA025,None preferred,EA025-15,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +28125,Nd32,EA025,None preferred,EA025-15,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +28126,Nd33,EA025,None preferred,EA025-15,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +28127,Nd34,EA025,None preferred,EA025-15,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +28128,Nd35,EA025,None preferred,EA025-15,"The preferred marriage is with a pseudo-cross cousin, i.e., a stepchild of either MoBr or FaSi",steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +28129,Nd36,EA025,None preferred,EA025-15,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +28130,Nd37,EA025,None preferred,EA025-15,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +28131,Nd38,EA025,Cross-cousin: patri,EA025-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +28132,Nd39,EA025,None preferred,EA025-15,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +28133,Nd4,EA025,None preferred,EA025-15,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +28134,Nd40,EA025,None preferred,EA025-15,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +28135,Nd41,EA025,None preferred,EA025-15,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +28136,Nd42,EA025,None preferred,EA025-15,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +28137,Nd43,EA025,None preferred,EA025-15,Entry follows Harris; Steward reports only marriage with a pseudo-cross-cousin,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +28138,Nd44,EA025,None preferred,EA025-15,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +28139,Nd45,EA025,None preferred,EA025-15,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +28140,Nd46,EA025,None preferred,EA025-15,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +28141,Nd47,EA025,None preferred,EA025-15,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +28142,Nd48,EA025,Cross-cousin: either,EA025-1,"But 'cross-cousin, patrilateral preference' (code ""3"") in the Skull Valley band",malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +28143,Nd49,EA025,None preferred,EA025-15,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +28144,Nd5,EA025,None preferred,EA025-15,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +28145,Nd50,EA025,None preferred,EA025-15,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +28146,Nd51,EA025,None preferred,EA025-15,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +28147,Nd52,EA025,None preferred,EA025-15,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +28148,Nd53,EA025,None preferred,EA025-15,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +28149,Nd54,EA025,None preferred,EA025-15,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28150,Nd55,EA025,None preferred,EA025-15,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +28151,Nd56,EA025,None preferred,EA025-15,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +28152,Nd57,EA025,?,EA025-NA,,,,,, +28153,Nd58,EA025,None preferred,EA025-15,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +28154,Nd59,EA025,?,EA025-NA,,,,,, +28155,Nd6,EA025,None preferred,EA025-15,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +28156,Nd60,EA025,?,EA025-NA,,,,,, +28157,Nd61,EA025,?,EA025-NA,,,,,, +28158,Nd62,EA025,?,EA025-NA,,,,,, +28159,Nd63,EA025,None preferred,EA025-15,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +28160,Nd64,EA025,None preferred,EA025-15,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +28161,Nd65,EA025,None preferred,EA025-15,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +28162,Nd66,EA025,None preferred,EA025-15,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +28163,Nd67,EA025,None preferred,EA025-15,,gifford1936,,1870,EthnographicAtlas_1967_p110, +28164,Nd7,EA025,None preferred,EA025-15,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +28165,Nd8,EA025,None preferred,EA025-15,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +28166,Nd9,EA025,None preferred,EA025-15,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +28167,Ne1,EA025,None preferred,EA025-15,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +28168,Ne10,EA025,?,EA025-NA,,,,,, +28169,Ne11,EA025,None preferred,EA025-15,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +28170,Ne12,EA025,None preferred,EA025-15,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +28171,Ne13,EA025,None preferred,EA025-15,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +28172,Ne14,EA025,None preferred,EA025-15,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +28173,Ne15,EA025,None preferred,EA025-15,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +28174,Ne16,EA025,?,EA025-NA,,,,,, +28175,Ne17,EA025,None preferred,EA025-15,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +28176,Ne18,EA025,None preferred,EA025-15,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +28177,Ne19,EA025,None preferred,EA025-15,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +28178,Ne2,EA025,None preferred,EA025-15,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +28179,Ne20,EA025,None preferred,EA025-15,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +28180,Ne21,EA025,?,EA025-NA,,,,,, +28181,Ne3,EA025,None preferred,EA025-15,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +28182,Ne4,EA025,None preferred,EA025-15,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +28183,Ne5,EA025,None preferred,EA025-15,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +28184,Ne6,EA025,None preferred,EA025-15,Inferred from a report by Bowers (p. 75) that a man preferred to have a son-in-law from his own sib,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +28185,Ne7,EA025,None preferred,EA025-15,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +28186,Ne8,EA025,None preferred,EA025-15,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +28187,Ne9,EA025,None preferred,EA025-15,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +28188,Nf10,EA025,?,EA025-NA,,,,,, +28189,Nf11,EA025,None preferred,EA025-15,,whitman1937,,1870,EthnographicAtlas_1967_p114, +28190,Nf12,EA025,None preferred,EA025-15,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +28191,Nf13,EA025,None preferred,EA025-15,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28192,Nf14,EA025,None preferred,EA025-15,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +28193,Nf15,EA025,None preferred,EA025-15,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +28194,Nf2,EA025,None preferred,EA025-15,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +28195,Nf3,EA025,None preferred,EA025-15,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +28196,Nf4,EA025,None preferred,EA025-15,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +28197,Nf5,EA025,None preferred,EA025-15,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +28198,Nf6,EA025,Second cousins preferred,EA025-11,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +28199,Nf7,EA025,None preferred,EA025-15,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28200,Nf8,EA025,None preferred,EA025-15,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +28201,Nf9,EA025,None preferred,EA025-15,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +28202,Ng1,EA025,None preferred,EA025-15,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +28203,Ng10,EA025,?,EA025-NA,"Unreported but probably 'no preferred cousin marriages' (code ""15"") like the Huron",fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +28204,Ng11,EA025,?,EA025-NA,,,,,, +28205,Ng12,EA025,None preferred,EA025-15,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +28206,Ng13,EA025,?,EA025-NA,,,,,, +28207,Ng14,EA025,None preferred,EA025-15,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +28208,Ng15,EA025,?,EA025-NA,,,,,, +28209,Ng2,EA025,None preferred,EA025-15,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +28210,Ng3,EA025,None preferred,EA025-15,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +28211,Ng4,EA025,None preferred,EA025-15,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +28212,Ng5,EA025,None preferred,EA025-15,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +28213,Ng6,EA025,?,EA025-NA,,,,,, +28214,Ng7,EA025,None preferred,EA025-15,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +28215,Ng8,EA025,?,EA025-NA,,,,,, +28216,Ng9,EA025,None preferred,EA025-15,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +28217,Nh1,EA025,None preferred,EA025-15,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +28218,Nh10,EA025,None preferred,EA025-15,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +28219,Nh11,EA025,None preferred,EA025-15,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +28220,Nh12,EA025,None preferred,EA025-15,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +28221,Nh13,EA025,None preferred,EA025-15,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +28222,Nh14,EA025,None preferred,EA025-15,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +28223,Nh15,EA025,None preferred,EA025-15,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +28224,Nh16,EA025,None preferred,EA025-15,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28225,Nh17,EA025,None preferred,EA025-15,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +28226,Nh18,EA025,None preferred,EA025-15,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28227,Nh19,EA025,None preferred,EA025-15,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +28228,Nh2,EA025,None preferred,EA025-15,,dozier1954,,1950,EthnographicAtlas_1967_p114, +28229,Nh20,EA025,None preferred,EA025-15,,gifford1931,,1860,EthnographicAtlas_1967_p114, +28230,Nh21,EA025,None preferred,EA025-15,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28231,Nh22,EA025,None preferred,EA025-15,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +28232,Nh23,EA025,None preferred,EA025-15,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +28233,Nh24,EA025,None preferred,EA025-15,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +28234,Nh25,EA025,None preferred,EA025-15,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +28235,Nh26,EA025,None preferred,EA025-15,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +28236,Nh27,EA025,None preferred,EA025-15,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +28237,Nh3,EA025,None preferred,EA025-15,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +28238,Nh4,EA025,None preferred,EA025-15,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +28239,Nh5,EA025,None preferred,EA025-15,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +28240,Nh6,EA025,None preferred,EA025-15,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +28241,Nh7,EA025,None preferred,EA025-15,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +28242,Nh8,EA025,None preferred,EA025-15,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +28243,Nh9,EA025,None preferred,EA025-15,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +28244,Ni1,EA025,None preferred,EA025-15,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +28245,Ni2,EA025,None preferred,EA025-15,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +28246,Ni3,EA025,None preferred,EA025-15,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +28247,Ni4,EA025,None preferred,EA025-15,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +28248,Ni5,EA025,None preferred,EA025-15,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +28249,Ni6,EA025,None preferred,EA025-15,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +28250,Ni7,EA025,None preferred,EA025-15,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +28251,Ni8,EA025,?,EA025-NA,,,,,, +28252,Ni9,EA025,?,EA025-NA,,,,,, +28253,Nj1,EA025,None preferred,EA025-15,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28254,Nj10,EA025,None preferred,EA025-15,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28255,Nj11,EA025,?,EA025-NA,,,,,, +28256,Nj12,EA025,?,EA025-NA,,,,,, +28257,Nj13,EA025,?,EA025-NA,,,,,, +28258,Nj14,EA025,None preferred,EA025-15,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +28259,Nj2,EA025,None preferred,EA025-15,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +28260,Nj3,EA025,None preferred,EA025-15,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +28261,Nj4,EA025,None preferred,EA025-15,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +28262,Nj5,EA025,None preferred,EA025-15,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +28263,Nj6,EA025,None preferred,EA025-15,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +28264,Nj7,EA025,?,EA025-NA,,,,,, +28265,Nj8,EA025,None preferred,EA025-15,,foster1948,,1500,EthnographicAtlas_1967_p118, +28266,Nj9,EA025,None preferred,EA025-15,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +28267,Sa1,EA025,None preferred,EA025-15,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +28268,Sa10,EA025,?,EA025-NA,,,,,, +28269,Sa11,EA025,?,EA025-NA,,,,,, +28270,Sa12,EA025,?,EA025-NA,,,,,, +28271,Sa13,EA025,None preferred,EA025-15,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +28272,Sa14,EA025,?,EA025-NA,,,,,, +28273,Sa15,EA025,?,EA025-NA,,,,,, +28274,Sa16,EA025,?,EA025-NA,,,,,, +28275,Sa17,EA025,None preferred,EA025-15,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +28276,Sa2,EA025,Cross-cousin: matri,EA025-2,Entry follows Guiteras; Villa says marriage is preferred with a classificatory cross-cousin but disapproved with a first cross-cousin,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28277,Sa3,EA025,None preferred,EA025-15,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +28278,Sa4,EA025,None preferred,EA025-15,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +28279,Sa5,EA025,None preferred,EA025-15,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +28280,Sa6,EA025,None preferred,EA025-15,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +28281,Sa7,EA025,None preferred,EA025-15,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +28282,Sa8,EA025,None preferred,EA025-15,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +28283,Sa9,EA025,Cross-cousin: either,EA025-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +28284,Sb1,EA025,Cross-cousin: patri,EA025-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +28285,Sb2,EA025,None preferred,EA025-15,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +28286,Sb3,EA025,Cross-cousin: either,EA025-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +28287,Sb4,EA025,All: cross,EA025-8,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +28288,Sb5,EA025,None preferred,EA025-15,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +28289,Sb6,EA025,None preferred,EA025-15,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +28290,Sb7,EA025,Cross-cousin: either,EA025-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +28291,Sb8,EA025,?,EA025-NA,,,,,, +28292,Sb9,EA025,None preferred,EA025-15,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +28293,Sc1,EA025,All: matri,EA025-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +28294,Sc10,EA025,Cross-cousin: matri,EA025-2,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +28295,Sc11,EA025,None preferred,EA025-15,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +28296,Sc12,EA025,Cross-cousin: either,EA025-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +28297,Sc13,EA025,Cross-cousin: either,EA025-1,"Entry follows Wilbert; Riley reports 'cross-cousin, matrilateral preference' (code ""2"")",riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +28298,Sc14,EA025,?,EA025-NA,,,,,, +28299,Sc15,EA025,?,EA025-NA,,,,,, +28300,Sc16,EA025,Cross-cousin: either,EA025-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +28301,Sc17,EA025,Cross-cousin: either,EA025-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +28302,Sc18,EA025,Second cousins preferred,EA025-11,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +28303,Sc2,EA025,Cross-cousin: either,EA025-1,,leedsnd,,1950,EthnographicAtlas_1967_p118, +28304,Sc3,EA025,Cross-cousin: either,EA025-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +28305,Sc4,EA025,Cross-cousin: either,EA025-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +28306,Sc5,EA025,Cross-cousin: either,EA025-1,,farabee1918,,1900,EthnographicAtlas_1967_p118, +28307,Sc6,EA025,None preferred,EA025-15,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28308,Sc7,EA025,Cross-cousin: either,EA025-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +28309,Sc8,EA025,Cross-cousin: either,EA025-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +28310,Sc9,EA025,None preferred,EA025-15,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +28311,Sd1,EA025,Cross-cousin: either,EA025-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28312,Sd2,EA025,None preferred,EA025-15,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +28313,Sd3,EA025,?,EA025-NA,,,,,, +28314,Sd4,EA025,?,EA025-NA,,,,,, +28315,Sd5,EA025,?,EA025-NA,,,,,, +28316,Sd6,EA025,None preferred,EA025-15,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +28317,Sd7,EA025,None preferred,EA025-15,,fock1963,,1950,EthnographicAtlas_1967_p118, +28318,Sd8,EA025,None preferred,EA025-15,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +28319,Sd9,EA025,Cross-cousin: either,EA025-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28320,Se1,EA025,Uni: MoBrDa,EA025-5,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +28321,Se10,EA025,?,EA025-NA,Preferential marriage with SiDa,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +28322,Se11,EA025,Cross-cousin: either,EA025-1,,prost1965,,1960,EthnographicAtlas_1967_p122, +28323,Se12,EA025,Cross-cousin: either,EA025-1,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +28324,Se2,EA025,None preferred,EA025-15,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +28325,Se3,EA025,Cross-cousin: either,EA025-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +28326,Se4,EA025,None preferred,EA025-15,,fejos1943,,1940,EthnographicAtlas_1967_p118, +28327,Se5,EA025,Cross-cousin: matri,EA025-2,But Goldman reports a preference for marrying a woman of one's mother's lineage,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +28328,Se6,EA025,None preferred,EA025-15,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +28329,Se7,EA025,None preferred,EA025-15,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28330,Se8,EA025,Cross-cousin: either,EA025-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +28331,Se9,EA025,?,EA025-NA,,,,,, +28332,Sf1,EA025,None preferred,EA025-15,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +28333,Sf2,EA025,None preferred,EA025-15,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +28334,Sf3,EA025,None preferred,EA025-15,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +28335,Sf4,EA025,None preferred,EA025-15,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +28336,Sf5,EA025,?,EA025-NA,,,,,, +28337,Sf6,EA025,?,EA025-NA,,,,,, +28338,Sf7,EA025,None preferred,EA025-15,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +28339,Sf8,EA025,None preferred,EA025-15,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +28340,Sf9,EA025,?,EA025-NA,,,,,, +28341,Sg1,EA025,None preferred,EA025-15,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +28342,Sg2,EA025,Uni: MoBrDa,EA025-5,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28343,Sg3,EA025,None preferred,EA025-15,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +28344,Sg4,EA025,None preferred,EA025-15,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +28345,Sg5,EA025,None preferred,EA025-15,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28346,Sh1,EA025,None preferred,EA025-15,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +28347,Sh2,EA025,None preferred,EA025-15,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +28348,Sh3,EA025,None preferred,EA025-15,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +28349,Sh4,EA025,None preferred,EA025-15,,oberg1949,,1940,EthnographicAtlas_1967_p122, +28350,Sh5,EA025,None preferred,EA025-15,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +28351,Sh6,EA025,?,EA025-NA,,,,,, +28352,Sh7,EA025,None preferred,EA025-15,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +28353,Sh8,EA025,None preferred,EA025-15,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +28354,Sh9,EA025,?,EA025-NA,,,,,, +28355,Si1,EA025,None preferred,EA025-15,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28356,Si10,EA025,None preferred,EA025-15,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +28357,Si2,EA025,Cross-cousin: either,EA025-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +28358,Si3,EA025,None preferred,EA025-15,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28359,Si4,EA025,Cross-cousin: either,EA025-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +28360,Si5,EA025,Cross-cousin: either,EA025-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +28361,Si6,EA025,?,EA025-NA,,,,,, +28362,Si7,EA025,?,EA025-NA,,,,,, +28363,Si8,EA025,None preferred,EA025-15,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +28364,Si9,EA025,?,EA025-NA,,,,,, +28365,Sj1,EA025,None preferred,EA025-15,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +28366,Sj10,EA025,?,EA025-NA,,,,,, +28367,Sj11,EA025,None preferred,EA025-15,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +28368,Sj2,EA025,None preferred,EA025-15,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +28369,Sj3,EA025,None preferred,EA025-15,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +28370,Sj4,EA025,None preferred,EA025-15,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +28371,Sj5,EA025,None preferred,EA025-15,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +28372,Sj6,EA025,None preferred,EA025-15,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28373,Sj7,EA025,None preferred,EA025-15,"Entry follows Nimuendaju; Maybury-Lewis gives 'cross-cousin, symmetrical preference' (code ""1"")",mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +28374,Sj8,EA025,Cross-cousin: either,EA025-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +28375,Sj9,EA025,None preferred,EA025-15,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +28376,ch12,EA025,None preferred,EA025-15,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +28377,ch13,EA025,?,EA025-NA,,,,,, +28378,ch14,EA025,None preferred,EA025-15,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +28379,ch15,EA025,None preferred,EA025-15,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +28380,ch16,EA025,?,EA025-NA,,,,,, +28381,ch17,EA025,None preferred,EA025-15,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +28382,ch18,EA025,None preferred,EA025-15,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +28383,ch19,EA025,?,EA025-NA,,,,,, +28384,ch20,EA025,None preferred,EA025-15,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +28385,ch21,EA025,?,EA025-NA,,,,,, +28386,ch22,EA025,?,EA025-NA,,,,,, +28387,ch23,EA025,None preferred,EA025-15,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +28388,ch24,EA025,None preferred,EA025-15,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +28389,ch25,EA025,?,EA025-NA,,,,,, +28390,ch26,EA025,None preferred,EA025-15,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +28391,ch27,EA025,None preferred,EA025-15,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +28392,ch28,EA025,None preferred,EA025-15,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +28393,ec12,EA025,None preferred,EA025-15,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +28394,ec13,EA025,None preferred,EA025-15,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +28395,ec14,EA025,None preferred,EA025-15,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +28396,ec15,EA025,None preferred,EA025-15,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +28397,ec16,EA025,Cross-cousin: matri,EA025-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +28398,ec17,EA025,Cross-cousin: matri,EA025-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +28399,ec18,EA025,Cross-cousin: matri,EA025-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +28400,ec19,EA025,Cross-cousin: matri,EA025-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +28401,ec20,EA025,Cross-cousin: matri,EA025-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +28402,ec21,EA025,Cross-cousin: matri,EA025-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +28403,Aa1,EA026,None preferred,EA026-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +28404,Aa2,EA026,None preferred,EA026-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +28405,Aa3,EA026,None preferred,EA026-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +28406,Aa4,EA026,None preferred,EA026-9,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +28407,Aa5,EA026,None preferred,EA026-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +28408,Aa6,EA026,MoBrDa,EA026-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +28409,Aa7,EA026,None preferred,EA026-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +28410,Aa8,EA026,None preferred,EA026-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +28411,Aa9,EA026,?,EA026-NA,,,,,, +28412,Ab1,EA026,FaSiDa,EA026-3,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +28413,Ab10,EA026,None preferred,EA026-9,,hunter1936,,1936,EthnographicAtlas_1967_p62, +28414,Ab11,EA026,None preferred,EA026-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +28415,Ab12,EA026,None preferred,EA026-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +28416,Ab13,EA026,Cross-cousin,EA026-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +28417,Ab14,EA026,MoBrDa,EA026-2,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +28418,Ab15,EA026,MoBrDa,EA026-2,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +28419,Ab16,EA026,None preferred,EA026-9,,earthy1933,,1930,EthnographicAtlas_1967_p62, +28420,Ab17,EA026,None preferred,EA026-9,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +28421,Ab18,EA026,None preferred,EA026-9,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +28422,Ab19,EA026,None preferred,EA026-9,"Formerly 'FaSiDa as preferred spouse' (code ""3"")",krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +28423,Ab2,EA026,None preferred,EA026-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +28424,Ab20,EA026,?,EA026-NA,,,,,, +28425,Ab21a,EA026,?,EA026-NA,,,,,, +28426,Ab21b,EA026,None preferred,EA026-9,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +28427,Ab22,EA026,None preferred,EA026-9,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +28428,Ab3,EA026,None preferred,EA026-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +28429,Ab4,EA026,None preferred,EA026-9,,junod1927,,1920,EthnographicAtlas_1967_p62, +28430,Ab5,EA026,MoBrDa,EA026-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +28431,Ab6,EA026,MoBrDa,EA026-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +28432,Ab7,EA026,None preferred,EA026-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +28433,Ab8,EA026,Cross-cousin,EA026-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +28434,Ab9,EA026,None preferred,EA026-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +28435,Ac1,EA026,FaSiDa,EA026-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +28436,Ac10,EA026,Cross-cousin,EA026-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +28437,Ac11,EA026,Cross-cousin,EA026-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +28438,Ac12,EA026,MoBrDa,EA026-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +28439,Ac13,EA026,MoBrDa,EA026-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +28440,Ac14,EA026,None preferred,EA026-9,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +28441,Ac15,EA026,Cross-cousin,EA026-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +28442,Ac16,EA026,?,EA026-NA,,,,,, +28443,Ac17,EA026,FaSiDa,EA026-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +28444,Ac18,EA026,?,EA026-NA,,,,,, +28445,Ac19,EA026,None preferred,EA026-9,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +28446,Ac2,EA026,FaSiDa,EA026-3,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +28447,Ac20,EA026,?,EA026-NA,,,,,, +28448,Ac21,EA026,Cross-cousin,EA026-1,But the most highly preferred marriage is with a MoBrDaDa,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +28449,Ac22,EA026,None preferred,EA026-9,,mertens1935,,1930,EthnographicAtlas_1967_p62, +28450,Ac23,EA026,None preferred,EA026-9,The preferred marriage is with a MoBrDaDa,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +28451,Ac24,EA026,None preferred,EA026-9,"Inferred from statement that ""close relatives cannot marry""",baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +28452,Ac25,EA026,Cross-cousin,EA026-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +28453,Ac26,EA026,None preferred,EA026-9,The preferred marriage is with a MoBrDaDa,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +28454,Ac27,EA026,None preferred,EA026-9,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +28455,Ac28,EA026,Cross-cousin,EA026-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +28456,Ac29,EA026,None preferred,EA026-9,Inferred from the report that parallel cousins and FaSi are not marriageable,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +28457,Ac3,EA026,Cross-cousin,EA026-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +28458,Ac30,EA026,None preferred,EA026-9,"But formerly 'a symmetrical cross-cousin' (code ""1"") was preferred spouse",allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +28459,Ac31,EA026,?,EA026-NA,,,,,, +28460,Ac32,EA026,MoBrDa,EA026-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +28461,Ac33,EA026,None preferred,EA026-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +28462,Ac34,EA026,Cross-cousin,EA026-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +28463,Ac35,EA026,None preferred,EA026-9,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +28464,Ac36,EA026,Cross-cousin,EA026-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +28465,Ac37,EA026,Cross-cousin,EA026-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +28466,Ac38,EA026,Cross-cousin,EA026-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +28467,Ac39,EA026,Cross-cousin,EA026-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +28468,Ac4,EA026,None preferred,EA026-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +28469,Ac40,EA026,?,EA026-NA,,,,,, +28470,Ac41,EA026,Cross-cousin,EA026-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +28471,Ac42,EA026,Cross-cousin,EA026-1,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +28472,Ac43,EA026,?,EA026-NA,,,,,, +28473,Ac5,EA026,MoBrDa,EA026-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +28474,Ac6,EA026,Cross-cousin,EA026-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +28475,Ac7,EA026,FaSiDa,EA026-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +28476,Ac8,EA026,None preferred,EA026-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +28477,Ac9,EA026,None preferred,EA026-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +28478,Ad1,EA026,FaBrDa,EA026-4,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +28479,Ad10,EA026,None preferred,EA026-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +28480,Ad11,EA026,None preferred,EA026-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +28481,Ad12,EA026,None preferred,EA026-9,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +28482,Ad13,EA026,MoBrDa,EA026-2,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +28483,Ad14,EA026,MoBrDa,EA026-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +28484,Ad15,EA026,Cross-cousin,EA026-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +28485,Ad16,EA026,None preferred,EA026-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +28486,Ad17,EA026,?,EA026-NA,,,,,, +28487,Ad18,EA026,None preferred,EA026-9,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +28488,Ad19,EA026,None preferred,EA026-9,But marriage is preferred with a classificatory FaSiDa,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +28489,Ad2,EA026,None preferred,EA026-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +28490,Ad20,EA026,None preferred,EA026-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +28491,Ad21,EA026,None preferred,EA026-9,,maurice193538,,1930,EthnographicAtlas_1967_p66, +28492,Ad22,EA026,None preferred,EA026-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +28493,Ad23,EA026,None preferred,EA026-9,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +28494,Ad24,EA026,MoBrDa,EA026-2,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +28495,Ad25,EA026,?,EA026-NA,,,,,, +28496,Ad26,EA026,None preferred,EA026-9,,sick1916,,1910,EthnographicAtlas_1967_p66, +28497,Ad27,EA026,None preferred,EA026-9,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +28498,Ad28,EA026,?,EA026-NA,,,,,, +28499,Ad29,EA026,None preferred,EA026-9,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +28500,Ad3,EA026,None preferred,EA026-9,Marriage with a MoBrDa is allowed under special circumstances when Mo is dead,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +28501,Ad30,EA026,None preferred,EA026-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +28502,Ad31,EA026,None preferred,EA026-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +28503,Ad32,EA026,None preferred,EA026-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +28504,Ad33,EA026,None preferred,EA026-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +28505,Ad34,EA026,?,EA026-NA,,,,,, +28506,Ad35,EA026,None preferred,EA026-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +28507,Ad36,EA026,?,EA026-NA,,,,,, +28508,Ad37,EA026,?,EA026-NA,,,,,, +28509,Ad38,EA026,None preferred,EA026-9,Inferred from specific statements that cousin marriages are allowed and that there are distinct terms for male and female cousins,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +28510,Ad39,EA026,None preferred,EA026-9,,gray1963,,1950,EthnographicAtlas_1967_p66, +28511,Ad4,EA026,None preferred,EA026-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +28512,Ad40,EA026,None preferred,EA026-9,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +28513,Ad41,EA026,None preferred,EA026-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +28514,Ad42,EA026,None preferred,EA026-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +28515,Ad43,EA026,None preferred,EA026-9,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +28516,Ad44,EA026,?,EA026-NA,,,,,, +28517,Ad45,EA026,None preferred,EA026-9,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +28518,Ad46,EA026,None preferred,EA026-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +28519,Ad47,EA026,None preferred,EA026-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +28520,Ad48,EA026,?,EA026-NA,,,,,, +28521,Ad49,EA026,?,EA026-NA,,,,,, +28522,Ad5,EA026,None preferred,EA026-9,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +28523,Ad50,EA026,None preferred,EA026-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +28524,Ad51,EA026,None preferred,EA026-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +28525,Ad6,EA026,None preferred,EA026-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +28526,Ad7,EA026,None preferred,EA026-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +28527,Ad8,EA026,MoBrDa,EA026-2,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +28528,Ad9,EA026,None preferred,EA026-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +28529,Ae1,EA026,None preferred,EA026-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +28530,Ae10,EA026,None preferred,EA026-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +28531,Ae11,EA026,None preferred,EA026-9,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +28532,Ae12,EA026,?,EA026-NA,,,,,, +28533,Ae13,EA026,None preferred,EA026-9,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +28534,Ae14,EA026,None preferred,EA026-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +28535,Ae15,EA026,?,EA026-NA,,,,,, +28536,Ae16,EA026,?,EA026-NA,,,,,, +28537,Ae17,EA026,None preferred,EA026-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +28538,Ae18,EA026,None preferred,EA026-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +28539,Ae19,EA026,None preferred,EA026-9,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +28540,Ae2,EA026,None preferred,EA026-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +28541,Ae20,EA026,None preferred,EA026-9,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +28542,Ae21,EA026,None preferred,EA026-9,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +28543,Ae22,EA026,None preferred,EA026-9,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +28544,Ae23,EA026,?,EA026-NA,,,,,, +28545,Ae24,EA026,?,EA026-NA,,,,,, +28546,Ae25,EA026,None preferred,EA026-9,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +28547,Ae26,EA026,?,EA026-NA,,,,,, +28548,Ae27,EA026,?,EA026-NA,,,,,, +28549,Ae28,EA026,?,EA026-NA,,,,,, +28550,Ae29,EA026,None preferred,EA026-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +28551,Ae3,EA026,None preferred,EA026-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +28552,Ae30,EA026,?,EA026-NA,,,,,, +28553,Ae31,EA026,?,EA026-NA,,,,,, +28554,Ae32,EA026,?,EA026-NA,,,,,, +28555,Ae33,EA026,?,EA026-NA,,,,,, +28556,Ae34,EA026,?,EA026-NA,,,,,, +28557,Ae35,EA026,?,EA026-NA,,,,,, +28558,Ae36,EA026,?,EA026-NA,,,,,, +28559,Ae37,EA026,?,EA026-NA,,,,,, +28560,Ae38,EA026,?,EA026-NA,,,,,, +28561,Ae39,EA026,None preferred,EA026-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +28562,Ae4,EA026,None preferred,EA026-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +28563,Ae40,EA026,?,EA026-NA,,,,,, +28564,Ae41,EA026,None preferred,EA026-9,,andersson1953,,1940,EthnographicAtlas_1967_p66, +28565,Ae42,EA026,?,EA026-NA,,,,,, +28566,Ae43,EA026,?,EA026-NA,,,,,, +28567,Ae44,EA026,None preferred,EA026-9,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +28568,Ae45,EA026,?,EA026-NA,,,,,, +28569,Ae46,EA026,?,EA026-NA,,,,,, +28570,Ae47,EA026,None preferred,EA026-9,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +28571,Ae48,EA026,?,EA026-NA,,,,,, +28572,Ae49,EA026,?,EA026-NA,,,,,, +28573,Ae5,EA026,None preferred,EA026-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +28574,Ae50,EA026,?,EA026-NA,,,,,, +28575,Ae51,EA026,?,EA026-NA,,,,,, +28576,Ae52,EA026,None preferred,EA026-9,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +28577,Ae53,EA026,None preferred,EA026-9,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +28578,Ae54,EA026,None preferred,EA026-9,But allowed with FaBrDa,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +28579,Ae55,EA026,?,EA026-NA,,,,,, +28580,Ae56,EA026,None preferred,EA026-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +28581,Ae57,EA026,?,EA026-NA,,,,,, +28582,Ae58,EA026,None preferred,EA026-9,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +28583,Ae59,EA026,?,EA026-NA,,,,,, +28584,Ae6,EA026,None preferred,EA026-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +28585,Ae7,EA026,?,EA026-NA,,,,,, +28586,Ae8,EA026,Cross-cousin,EA026-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +28587,Ae9,EA026,None preferred,EA026-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +28588,Af1,EA026,None preferred,EA026-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +28589,Af10,EA026,None preferred,EA026-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +28590,Af11,EA026,None preferred,EA026-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +28591,Af12,EA026,?,EA026-NA,,,,,, +28592,Af13,EA026,None preferred,EA026-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +28593,Af14,EA026,None preferred,EA026-9,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +28594,Af15,EA026,None preferred,EA026-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +28595,Af16,EA026,?,EA026-NA,,,,,, +28596,Af17,EA026,None preferred,EA026-9,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +28597,Af18,EA026,None preferred,EA026-9,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +28598,Af19,EA026,None preferred,EA026-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +28599,Af2,EA026,MoBrDa,EA026-2,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +28600,Af20,EA026,None preferred,EA026-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +28601,Af21,EA026,?,EA026-NA,,,,,, +28602,Af22,EA026,None preferred,EA026-9,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +28603,Af23,EA026,FaSiDa,EA026-3,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +28604,Af24,EA026,None preferred,EA026-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +28605,Af25,EA026,None preferred,EA026-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +28606,Af26,EA026,None preferred,EA026-9,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +28607,Af27,EA026,None preferred,EA026-9,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +28608,Af28,EA026,None preferred,EA026-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +28609,Af29,EA026,None preferred,EA026-9,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +28610,Af3,EA026,MoBrDa,EA026-2,A slight preference for MoBrDa,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +28611,Af30,EA026,?,EA026-NA,,,,,, +28612,Af31,EA026,?,EA026-NA,,,,,, +28613,Af32,EA026,None preferred,EA026-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28614,Af33,EA026,None preferred,EA026-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28615,Af34,EA026,None preferred,EA026-9,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28616,Af35,EA026,?,EA026-NA,,,,,, +28617,Af36,EA026,None preferred,EA026-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +28618,Af37,EA026,None preferred,EA026-9,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +28619,Af38,EA026,None preferred,EA026-9,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +28620,Af39,EA026,FaSiDa,EA026-3,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +28621,Af4,EA026,FaSiDa,EA026-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +28622,Af40,EA026,None preferred,EA026-9,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +28623,Af41,EA026,None preferred,EA026-9,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +28624,Af42,EA026,MoBrDa,EA026-2,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +28625,Af43,EA026,MoBrDa,EA026-2,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +28626,Af44,EA026,?,EA026-NA,,,,,, +28627,Af45,EA026,None preferred,EA026-9,But marriage with MoBrDa requires a ban-breaking sacrifice,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +28628,Af46,EA026,None preferred,EA026-9,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +28629,Af47,EA026,None preferred,EA026-9,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +28630,Af48,EA026,?,EA026-NA,,,,,, +28631,Af49,EA026,None preferred,EA026-9,,schwab1947,,1940,EthnographicAtlas_1967_p70, +28632,Af5,EA026,MoBrDa,EA026-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +28633,Af50,EA026,?,EA026-NA,,,,,, +28634,Af51,EA026,?,EA026-NA,,,,,, +28635,Af52,EA026,?,EA026-NA,,,,,, +28636,Af53,EA026,?,EA026-NA,,,,,, +28637,Af54,EA026,None preferred,EA026-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +28638,Af55,EA026,None preferred,EA026-9,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +28639,Af56,EA026,None preferred,EA026-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +28640,Af57,EA026,None preferred,EA026-9,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +28641,Af58,EA026,None preferred,EA026-9,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +28642,Af6,EA026,None preferred,EA026-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +28643,Af7,EA026,None preferred,EA026-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +28644,Af8,EA026,None preferred,EA026-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +28645,Af9,EA026,None preferred,EA026-9,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +28646,Ag1,EA026,MoBrDa,EA026-2,"But 'no preferred cousin marriage' (code ""9"") in some districts",dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +28647,Ag10,EA026,None preferred,EA026-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +28648,Ag11,EA026,FaSiDa,EA026-3,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +28649,Ag12,EA026,None preferred,EA026-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +28650,Ag13,EA026,None preferred,EA026-9,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +28651,Ag14,EA026,?,EA026-NA,,,,,, +28652,Ag15,EA026,None preferred,EA026-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +28653,Ag16,EA026,None preferred,EA026-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +28654,Ag17,EA026,?,EA026-NA,,,,,, +28655,Ag18,EA026,None preferred,EA026-9,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +28656,Ag19,EA026,None preferred,EA026-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +28657,Ag2,EA026,None preferred,EA026-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +28658,Ag20,EA026,?,EA026-NA,Cousin marriages are said to be permitted,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +28659,Ag21,EA026,?,EA026-NA,,,,,, +28660,Ag22,EA026,None preferred,EA026-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +28661,Ag23,EA026,None preferred,EA026-9,Inferred from statement that marriage is forbidden with a parallel cousin,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +28662,Ag24,EA026,None preferred,EA026-9,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +28663,Ag25,EA026,None preferred,EA026-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +28664,Ag26,EA026,Cross-cousin,EA026-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +28665,Ag27,EA026,None preferred,EA026-9,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +28666,Ag28,EA026,?,EA026-NA,,,,,, +28667,Ag29,EA026,?,EA026-NA,,,,,, +28668,Ag3,EA026,None preferred,EA026-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +28669,Ag30,EA026,?,EA026-NA,,,,,, +28670,Ag31,EA026,?,EA026-NA,,,,,, +28671,Ag32,EA026,None preferred,EA026-9,Inferred from statement that marriage is disapproved with a parallel cousin,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +28672,Ag33,EA026,Cross-cousin,EA026-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +28673,Ag34,EA026,Cross-cousin,EA026-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +28674,Ag35,EA026,None preferred,EA026-9,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +28675,Ag36,EA026,FaSiDa,EA026-3,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +28676,Ag37,EA026,None preferred,EA026-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +28677,Ag38,EA026,?,EA026-NA,,,,,, +28678,Ag39,EA026,None preferred,EA026-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +28679,Ag4,EA026,None preferred,EA026-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +28680,Ag40,EA026,None preferred,EA026-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +28681,Ag41,EA026,None preferred,EA026-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +28682,Ag42,EA026,?,EA026-NA,,,,,, +28683,Ag43,EA026,None preferred,EA026-9,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +28684,Ag44,EA026,None preferred,EA026-9,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +28685,Ag45,EA026,None preferred,EA026-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +28686,Ag46,EA026,None preferred,EA026-9,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +28687,Ag47,EA026,None preferred,EA026-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +28688,Ag48,EA026,?,EA026-NA,,,,,, +28689,Ag49,EA026,None preferred,EA026-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +28690,Ag5,EA026,FaSiDa,EA026-3,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +28691,Ag50,EA026,?,EA026-NA,,,,,, +28692,Ag51,EA026,None preferred,EA026-9,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +28693,Ag52,EA026,?,EA026-NA,,,,,, +28694,Ag53,EA026,None preferred,EA026-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +28695,Ag54,EA026,MoBrDa,EA026-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +28696,Ag6,EA026,Cross-cousin,EA026-1,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +28697,Ag7,EA026,None preferred,EA026-9,"Entry follows Malzy, who reports preferential cousin marriage, whereas Ortoli states that known consanguineal kinship is a bar to marriage",malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +28698,Ag8,EA026,None preferred,EA026-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +28699,Ag9,EA026,None preferred,EA026-9,"In some districts, but not in others",labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +28700,Ah1,EA026,None preferred,EA026-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28701,Ah10,EA026,?,EA026-NA,,,,,, +28702,Ah11,EA026,None preferred,EA026-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +28703,Ah12,EA026,None preferred,EA026-9,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +28704,Ah13,EA026,?,EA026-NA,,,,,, +28705,Ah14,EA026,?,EA026-NA,,,,,, +28706,Ah15,EA026,None preferred,EA026-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +28707,Ah16,EA026,None preferred,EA026-9,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +28708,Ah17,EA026,None preferred,EA026-9,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +28709,Ah18,EA026,None preferred,EA026-9,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +28710,Ah19,EA026,None preferred,EA026-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +28711,Ah2,EA026,None preferred,EA026-9,,meek1931a,,1920,EthnographicAtlas_1967_p74, +28712,Ah20,EA026,None preferred,EA026-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +28713,Ah21,EA026,None preferred,EA026-9,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28714,Ah22,EA026,?,EA026-NA,,,,,, +28715,Ah23,EA026,Cross-cousin,EA026-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28716,Ah24,EA026,None preferred,EA026-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28717,Ah25,EA026,None preferred,EA026-9,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28718,Ah26,EA026,Cross-cousin,EA026-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28719,Ah27,EA026,MoBrDa,EA026-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28720,Ah28,EA026,None preferred,EA026-9,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +28721,Ah29,EA026,?,EA026-NA,,,,,, +28722,Ah3,EA026,None preferred,EA026-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +28723,Ah30,EA026,None preferred,EA026-9,,meek1931b,,1920,EthnographicAtlas_1967_p74, +28724,Ah31,EA026,None preferred,EA026-9,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +28725,Ah32,EA026,None preferred,EA026-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28726,Ah33,EA026,None preferred,EA026-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +28727,Ah34,EA026,None preferred,EA026-9,But marriage is allowed with a MoSiDa,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +28728,Ah35,EA026,None preferred,EA026-9,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28729,Ah36,EA026,None preferred,EA026-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +28730,Ah37,EA026,None preferred,EA026-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28731,Ah38,EA026,None preferred,EA026-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +28732,Ah39,EA026,?,EA026-NA,,,,,, +28733,Ah4,EA026,None preferred,EA026-9,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +28734,Ah5,EA026,None preferred,EA026-9,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +28735,Ah6,EA026,None preferred,EA026-9,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +28736,Ah7,EA026,None preferred,EA026-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +28737,Ah8,EA026,None preferred,EA026-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +28738,Ah9,EA026,None preferred,EA026-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +28739,Ai1,EA026,None preferred,EA026-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +28740,Ai10,EA026,None preferred,EA026-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +28741,Ai11,EA026,None preferred,EA026-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +28742,Ai12,EA026,None preferred,EA026-9,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +28743,Ai13,EA026,?,EA026-NA,,,,,, +28744,Ai14,EA026,?,EA026-NA,,,,,, +28745,Ai15,EA026,?,EA026-NA,,,,,, +28746,Ai16,EA026,?,EA026-NA,,,,,, +28747,Ai17,EA026,?,EA026-NA,,,,,, +28748,Ai18,EA026,?,EA026-NA,,,,,, +28749,Ai19,EA026,?,EA026-NA,,,,,, +28750,Ai2,EA026,None preferred,EA026-9,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +28751,Ai20,EA026,?,EA026-NA,,,,,, +28752,Ai21,EA026,?,EA026-NA,,,,,, +28753,Ai22,EA026,?,EA026-NA,,,,,, +28754,Ai23,EA026,None preferred,EA026-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +28755,Ai24,EA026,?,EA026-NA,,,,,, +28756,Ai25,EA026,?,EA026-NA,,,,,, +28757,Ai26,EA026,?,EA026-NA,,,,,, +28758,Ai27,EA026,?,EA026-NA,,,,,, +28759,Ai28,EA026,None preferred,EA026-9,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +28760,Ai29,EA026,None preferred,EA026-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +28761,Ai3,EA026,None preferred,EA026-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +28762,Ai30,EA026,?,EA026-NA,,,,,, +28763,Ai31,EA026,?,EA026-NA,,,,,, +28764,Ai32,EA026,None preferred,EA026-9,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +28765,Ai33,EA026,?,EA026-NA,,,,,, +28766,Ai34,EA026,?,EA026-NA,,,,,, +28767,Ai35,EA026,None preferred,EA026-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +28768,Ai36,EA026,None preferred,EA026-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +28769,Ai37,EA026,None preferred,EA026-9,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +28770,Ai38,EA026,None preferred,EA026-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +28771,Ai39,EA026,None preferred,EA026-9,,nadel1947,,1940,EthnographicAtlas_1967_p74, +28772,Ai4,EA026,None preferred,EA026-9,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +28773,Ai40,EA026,None preferred,EA026-9,,nadel1947,,1940,EthnographicAtlas_1967_p74, +28774,Ai41,EA026,None preferred,EA026-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +28775,Ai42,EA026,None preferred,EA026-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +28776,Ai43,EA026,None preferred,EA026-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +28777,Ai44,EA026,None preferred,EA026-9,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +28778,Ai45,EA026,None preferred,EA026-9,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +28779,Ai46,EA026,None preferred,EA026-9,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +28780,Ai47,EA026,None preferred,EA026-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +28781,Ai5,EA026,?,EA026-NA,,,,,, +28782,Ai6,EA026,None preferred,EA026-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +28783,Ai7,EA026,None preferred,EA026-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +28784,Ai8,EA026,None preferred,EA026-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +28785,Ai9,EA026,None preferred,EA026-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +28786,Aj1,EA026,None preferred,EA026-9,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +28787,Aj10,EA026,?,EA026-NA,,,,,, +28788,Aj11,EA026,None preferred,EA026-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +28789,Aj12,EA026,None preferred,EA026-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +28790,Aj13,EA026,None preferred,EA026-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +28791,Aj14,EA026,None preferred,EA026-9,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +28792,Aj15,EA026,None preferred,EA026-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +28793,Aj16,EA026,?,EA026-NA,,,,,, +28794,Aj17,EA026,None preferred,EA026-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +28795,Aj18,EA026,?,EA026-NA,,,,,, +28796,Aj19,EA026,?,EA026-NA,,,,,, +28797,Aj2,EA026,None preferred,EA026-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +28798,Aj20,EA026,?,EA026-NA,,,,,, +28799,Aj21,EA026,None preferred,EA026-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +28800,Aj22,EA026,None preferred,EA026-9,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +28801,Aj23,EA026,None preferred,EA026-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +28802,Aj24,EA026,?,EA026-NA,,,,,, +28803,Aj25,EA026,?,EA026-NA,,,,,, +28804,Aj26,EA026,None preferred,EA026-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +28805,Aj27,EA026,?,EA026-NA,,,,,, +28806,Aj28,EA026,None preferred,EA026-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +28807,Aj29,EA026,?,EA026-NA,,,,,, +28808,Aj3,EA026,None preferred,EA026-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +28809,Aj30,EA026,?,EA026-NA,,,,,, +28810,Aj31,EA026,?,EA026-NA,,,,,, +28811,Aj4,EA026,None preferred,EA026-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +28812,Aj5,EA026,None preferred,EA026-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +28813,Aj6,EA026,None preferred,EA026-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +28814,Aj7,EA026,None preferred,EA026-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +28815,Aj8,EA026,None preferred,EA026-9,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +28816,Aj9,EA026,None preferred,EA026-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +28817,Ca1,EA026,None preferred,EA026-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +28818,Ca10,EA026,None preferred,EA026-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +28819,Ca11,EA026,None preferred,EA026-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +28820,Ca12,EA026,?,EA026-NA,,,,,, +28821,Ca13,EA026,None preferred,EA026-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +28822,Ca14,EA026,?,EA026-NA,,,,,, +28823,Ca15,EA026,?,EA026-NA,,,,,, +28824,Ca16,EA026,?,EA026-NA,,,,,, +28825,Ca17,EA026,?,EA026-NA,,,,,, +28826,Ca18,EA026,?,EA026-NA,,,,,, +28827,Ca19,EA026,?,EA026-NA,,,,,, +28828,Ca2,EA026,None preferred,EA026-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +28829,Ca20,EA026,?,EA026-NA,,,,,, +28830,Ca21,EA026,?,EA026-NA,,,,,, +28831,Ca22,EA026,None preferred,EA026-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +28832,Ca23,EA026,?,EA026-NA,,,,,, +28833,Ca24,EA026,?,EA026-NA,,,,,, +28834,Ca25,EA026,?,EA026-NA,,,,,, +28835,Ca26,EA026,?,EA026-NA,,,,,, +28836,Ca27,EA026,None preferred,EA026-9,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +28837,Ca28,EA026,None preferred,EA026-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +28838,Ca29,EA026,?,EA026-NA,,,,,, +28839,Ca3,EA026,None preferred,EA026-9,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +28840,Ca30,EA026,None preferred,EA026-9,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +28841,Ca31,EA026,?,EA026-NA,,,,,, +28842,Ca32,EA026,None preferred,EA026-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +28843,Ca33,EA026,None preferred,EA026-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +28844,Ca34,EA026,FaBrDa,EA026-4,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +28845,Ca35,EA026,FaBrDa,EA026-4,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +28846,Ca36,EA026,FaBrDa,EA026-4,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +28847,Ca37,EA026,?,EA026-NA,,,,,, +28848,Ca38,EA026,None preferred,EA026-9,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +28849,Ca39,EA026,None preferred,EA026-9,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +28850,Ca4,EA026,?,EA026-NA,,,,,, +28851,Ca40,EA026,None preferred,EA026-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +28852,Ca41,EA026,?,EA026-NA,,,,,, +28853,Ca42,EA026,?,EA026-NA,,,,,, +28854,Ca43,EA026,?,EA026-NA,,,,,, +28855,Ca5,EA026,FaBrDa,EA026-4,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +28856,Ca6,EA026,None preferred,EA026-9,But forbidden with a MoSiDa,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +28857,Ca7,EA026,None preferred,EA026-9,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +28858,Ca8,EA026,?,EA026-NA,,,,,, +28859,Ca9,EA026,?,EA026-NA,,,,,, +28860,Cb1,EA026,MoBrDa,EA026-2,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +28861,Cb10,EA026,None preferred,EA026-9,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +28862,Cb11,EA026,None preferred,EA026-9,Inferred from a report that marriage is permitted with a MoBrDa but forbidden with a FaSiDa,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +28863,Cb12,EA026,None preferred,EA026-9,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +28864,Cb13,EA026,None preferred,EA026-9,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +28865,Cb14,EA026,?,EA026-NA,,,,,, +28866,Cb15,EA026,FaBrDa,EA026-4,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +28867,Cb16,EA026,None preferred,EA026-9,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +28868,Cb17,EA026,None preferred,EA026-9,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +28869,Cb18,EA026,None preferred,EA026-9,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +28870,Cb19,EA026,None preferred,EA026-9,Marriage is forbidden with a MoSiDa,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +28871,Cb2,EA026,Cross-cousin,EA026-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +28872,Cb20,EA026,?,EA026-NA,,,,,, +28873,Cb21,EA026,Cross-cousin,EA026-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +28874,Cb22,EA026,None preferred,EA026-9,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +28875,Cb23,EA026,None preferred,EA026-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +28876,Cb24,EA026,FaBrDa,EA026-4,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +28877,Cb25,EA026,None preferred,EA026-9,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +28878,Cb26,EA026,Cross-cousin,EA026-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +28879,Cb27,EA026,None preferred,EA026-9,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28880,Cb28,EA026,None preferred,EA026-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +28881,Cb29,EA026,?,EA026-NA,,,,,, +28882,Cb3,EA026,None preferred,EA026-9,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +28883,Cb4,EA026,FaBrDa,EA026-4,,reid1930,,1920,EthnographicAtlas_1967_p78, +28884,Cb5,EA026,None preferred,EA026-9,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +28885,Cb6,EA026,None preferred,EA026-9,,woodnd,,1920,EthnographicAtlas_1967_p78, +28886,Cb7,EA026,None preferred,EA026-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +28887,Cb8,EA026,None preferred,EA026-9,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +28888,Cb9,EA026,FaBrDa,EA026-4,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +28889,Cc1,EA026,FaBrDa,EA026-4,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +28890,Cc10,EA026,MoBrDa,EA026-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +28891,Cc11,EA026,?,EA026-NA,,,,,, +28892,Cc12,EA026,?,EA026-NA,,,,,, +28893,Cc13,EA026,None preferred,EA026-9,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +28894,Cc14,EA026,None preferred,EA026-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +28895,Cc15,EA026,?,EA026-NA,,,,,, +28896,Cc16,EA026,FaBrDa,EA026-4,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +28897,Cc17,EA026,FaBrDa,EA026-4,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +28898,Cc18,EA026,?,EA026-NA,,,,,, +28899,Cc19,EA026,?,EA026-NA,,,,,, +28900,Cc2,EA026,None preferred,EA026-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +28901,Cc20,EA026,FaBrDa,EA026-4,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +28902,Cc3,EA026,None preferred,EA026-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +28903,Cc4,EA026,?,EA026-NA,,,,,, +28904,Cc5,EA026,Cross-cousin,EA026-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +28905,Cc6,EA026,FaBrDa,EA026-4,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +28906,Cc7,EA026,FaBrDa,EA026-4,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +28907,Cc8,EA026,?,EA026-NA,,,,,, +28908,Cc9,EA026,MoBrDa,EA026-2,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +28909,Cd1,EA026,FaBrDa,EA026-4,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +28910,Cd10,EA026,None preferred,EA026-9,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +28911,Cd11,EA026,None preferred,EA026-9,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +28912,Cd12,EA026,FaBrDa,EA026-4,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +28913,Cd13,EA026,FaBrDa,EA026-4,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +28914,Cd14,EA026,FaBrDa,EA026-4,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +28915,Cd15,EA026,?,EA026-NA,,,,,, +28916,Cd16,EA026,FaBrDa,EA026-4,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +28917,Cd17,EA026,FaBrDa,EA026-4,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +28918,Cd18,EA026,FaBrDa,EA026-4,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +28919,Cd19,EA026,FaBrDa,EA026-4,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +28920,Cd2,EA026,FaBrDa,EA026-4,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +28921,Cd20,EA026,FaBrDa,EA026-4,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +28922,Cd21,EA026,FaBrDa,EA026-4,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +28923,Cd3,EA026,None preferred,EA026-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +28924,Cd4,EA026,None preferred,EA026-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +28925,Cd5,EA026,?,EA026-NA,,,,,, +28926,Cd6,EA026,None preferred,EA026-9,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +28927,Cd7,EA026,FaBrDa,EA026-4,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +28928,Cd8,EA026,FaBrDa,EA026-4,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +28929,Cd9,EA026,?,EA026-NA,,,,,, +28930,Ce1,EA026,MoBrDa,EA026-2,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +28931,Ce2,EA026,None preferred,EA026-9,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +28932,Ce3,EA026,None preferred,EA026-9,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +28933,Ce4,EA026,?,EA026-NA,,,,,, +28934,Ce5,EA026,None preferred,EA026-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +28935,Ce6,EA026,None preferred,EA026-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +28936,Ce7,EA026,None preferred,EA026-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +28937,Ce8,EA026,?,EA026-NA,,,,,, +28938,Cf1,EA026,None preferred,EA026-9,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +28939,Cf2,EA026,?,EA026-NA,,,,,, +28940,Cf3,EA026,?,EA026-NA,,,,,, +28941,Cf4,EA026,None preferred,EA026-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +28942,Cf5,EA026,None preferred,EA026-9,,miner1939,,1930,EthnographicAtlas_1967_p82, +28943,Cg1,EA026,None preferred,EA026-9,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +28944,Cg2,EA026,?,EA026-NA,,,,,, +28945,Cg3,EA026,None preferred,EA026-9,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +28946,Cg4,EA026,None preferred,EA026-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +28947,Cg5,EA026,?,EA026-NA,,,,,, +28948,Ch1,EA026,?,EA026-NA,,,,,, +28949,Ch10,EA026,None preferred,EA026-9,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +28950,Ch11,EA026,?,EA026-NA,,,,,, +28951,Ch2,EA026,?,EA026-NA,,,,,, +28952,Ch3,EA026,None preferred,EA026-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +28953,Ch4,EA026,None preferred,EA026-9,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +28954,Ch5,EA026,?,EA026-NA,,,,,, +28955,Ch6,EA026,None preferred,EA026-9,,ember1954,,1910,EthnographicAtlas_1967_p82, +28956,Ch7,EA026,None preferred,EA026-9,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +28957,Ch8,EA026,None preferred,EA026-9,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +28958,Ch9,EA026,None preferred,EA026-9,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +28959,Ci1,EA026,None preferred,EA026-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +28960,Ci10,EA026,None preferred,EA026-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +28961,Ci11,EA026,FaBrDa,EA026-4,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +28962,Ci12,EA026,?,EA026-NA,,,,,, +28963,Ci2,EA026,None preferred,EA026-9,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +28964,Ci3,EA026,?,EA026-NA,,,,,, +28965,Ci4,EA026,?,EA026-NA,,,,,, +28966,Ci5,EA026,None preferred,EA026-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +28967,Ci6,EA026,None preferred,EA026-9,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +28968,Ci7,EA026,?,EA026-NA,,,,,, +28969,Ci8,EA026,?,EA026-NA,,,,,, +28970,Ci9,EA026,?,EA026-NA,,,,,, +28971,Cj1,EA026,FaBrDa,EA026-4,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +28972,Cj10,EA026,FaBrDa,EA026-4,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +28973,Cj2,EA026,FaBrDa,EA026-4,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +28974,Cj3,EA026,FaBrDa,EA026-4,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +28975,Cj4,EA026,?,EA026-NA,,,,,, +28976,Cj5,EA026,FaBrDa,EA026-4,,dickson1949,,1930,EthnographicAtlas_1967_p86, +28977,Cj6,EA026,FaBrDa,EA026-4,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +28978,Cj7,EA026,None preferred,EA026-9,"But traditionally 'FaBrDa as preferred spouse' (code ""4"")",davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +28979,Cj8,EA026,FaBrDa,EA026-4,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +28980,Cj9,EA026,?,EA026-NA,,,,,, +28981,Ea1,EA026,None preferred,EA026-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +28982,Ea10,EA026,FaBrDa,EA026-4,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +28983,Ea11,EA026,FaBrDa,EA026-4,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +28984,Ea12,EA026,FaBrDa,EA026-4,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +28985,Ea13,EA026,MoBrDa,EA026-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +28986,Ea2,EA026,FaBrDa,EA026-4,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +28987,Ea3,EA026,FaBrDa,EA026-4,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +28988,Ea4,EA026,?,EA026-NA,,,,,, +28989,Ea5,EA026,None preferred,EA026-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +28990,Ea6,EA026,FaBrDa,EA026-4,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +28991,Ea7,EA026,None preferred,EA026-9,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +28992,Ea8,EA026,?,EA026-NA,,,,,, +28993,Ea9,EA026,FaBrDa,EA026-4,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +28994,Eb1,EA026,None preferred,EA026-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +28995,Eb2,EA026,None preferred,EA026-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +28996,Eb3,EA026,None preferred,EA026-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +28997,Eb4,EA026,None preferred,EA026-9,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +28998,Eb5,EA026,MoBrDa,EA026-2,"Possibly 'MoBrDa as preferred spouse' (code ""2"")",freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +28999,Eb6,EA026,None preferred,EA026-9,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +29000,Eb7,EA026,None preferred,EA026-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +29001,Eb8,EA026,Cross-cousin,EA026-1,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +29002,Ec1,EA026,MoBrDa,EA026-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +29003,Ec10,EA026,None preferred,EA026-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +29004,Ec11,EA026,?,EA026-NA,,,,,, +29005,Ec2,EA026,None preferred,EA026-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29006,Ec3,EA026,None preferred,EA026-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +29007,Ec4,EA026,MoBrDa,EA026-2,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +29008,Ec5,EA026,None preferred,EA026-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +29009,Ec6,EA026,None preferred,EA026-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +29010,Ec7,EA026,None preferred,EA026-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +29011,Ec8,EA026,?,EA026-NA,,,,,, +29012,Ec9,EA026,None preferred,EA026-9,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +29013,Ed1,EA026,None preferred,EA026-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +29014,Ed10,EA026,None preferred,EA026-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +29015,Ed13,EA026,?,EA026-NA,,,,,, +29016,Ed14,EA026,?,EA026-NA,,,,,, +29017,Ed15a,EA026,?,EA026-NA,,,,,, +29018,Ed15b,EA026,FaSiDa,EA026-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +29019,Ed16,EA026,None preferred,EA026-9,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +29020,Ed2,EA026,MoBrDa,EA026-2,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +29021,Ed3,EA026,None preferred,EA026-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +29022,Ed4,EA026,Cross-cousin,EA026-1,"Or 'FaSiDa as preferred spouse' (code ""3"") if Mark's interpretation of Ruey's data is correct",mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +29023,Ed5,EA026,None preferred,EA026-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29024,Ed6,EA026,None preferred,EA026-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +29025,Ed7,EA026,None preferred,EA026-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +29026,Ed8,EA026,None preferred,EA026-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +29027,Ed9,EA026,?,EA026-NA,,,,,, +29028,Ee1,EA026,None preferred,EA026-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +29029,Ee2,EA026,None preferred,EA026-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +29030,Ee3,EA026,None preferred,EA026-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +29031,Ee4,EA026,None preferred,EA026-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +29032,Ee5,EA026,None preferred,EA026-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +29033,Ee6,EA026,None preferred,EA026-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +29034,Ee7,EA026,?,EA026-NA,,,,,, +29035,Ee8,EA026,None preferred,EA026-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +29036,Ef1,EA026,None preferred,EA026-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +29037,Ef10,EA026,None preferred,EA026-9,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29038,Ef11,EA026,?,EA026-NA,,,,,, +29039,Ef2,EA026,None preferred,EA026-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +29040,Ef3,EA026,None preferred,EA026-9,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +29041,Ef4,EA026,None preferred,EA026-9,Entry follows Majumdar; Chatterjee and Das report that cross- cousin marriage is recent and disapproved,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +29042,Ef5,EA026,None preferred,EA026-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +29043,Ef6,EA026,None preferred,EA026-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +29044,Ef7,EA026,None preferred,EA026-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +29045,Ef8,EA026,None preferred,EA026-9,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +29046,Ef9,EA026,Cross-cousin,EA026-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29047,Eg1,EA026,MoBrDa,EA026-2,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29048,Eg10,EA026,MoBrDa,EA026-2,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +29049,Eg11,EA026,MoBrDa,EA026-2,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +29050,Eg12,EA026,None preferred,EA026-9,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +29051,Eg13,EA026,Cross-cousin,EA026-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29052,Eg14,EA026,MoBrDa,EA026-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +29053,Eg2,EA026,Cross-cousin,EA026-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +29054,Eg3,EA026,Cross-cousin,EA026-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +29055,Eg4,EA026,Cross-cousin,EA026-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +29056,Eg5,EA026,Cross-cousin,EA026-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +29057,Eg6,EA026,MoBrDa,EA026-2,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +29058,Eg7,EA026,None preferred,EA026-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +29059,Eg8,EA026,None preferred,EA026-9,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +29060,Eg9,EA026,None preferred,EA026-9,,elwin1939,,1930,EthnographicAtlas_1967_p90, +29061,Eh1,EA026,None preferred,EA026-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +29062,Eh10,EA026,None preferred,EA026-9,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +29063,Eh2,EA026,None preferred,EA026-9,Marriage is also favored with a FaBrDa,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +29064,Eh3,EA026,Cross-cousin,EA026-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +29065,Eh4,EA026,FaSiDa,EA026-3,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29066,Eh5,EA026,None preferred,EA026-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +29067,Eh6,EA026,MoBrDa,EA026-2,"Leach denies ""a symmetrical preference for cross-cousin marriage"" but fails to report the ""true facts""",ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +29068,Eh7,EA026,None preferred,EA026-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +29069,Eh8,EA026,None preferred,EA026-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +29070,Eh9,EA026,None preferred,EA026-9,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +29071,Ei1,EA026,MoBrDa,EA026-2,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29072,Ei10,EA026,None preferred,EA026-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +29073,Ei11,EA026,MoBrDa,EA026-2,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +29074,Ei12,EA026,MoBrDa,EA026-2,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +29075,Ei13,EA026,?,EA026-NA,,,,,, +29076,Ei14,EA026,None preferred,EA026-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +29077,Ei15,EA026,MoBrDa,EA026-2,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +29078,Ei16,EA026,MoBrDa,EA026-2,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +29079,Ei17,EA026,?,EA026-NA,,,,,, +29080,Ei18,EA026,?,EA026-NA,,,,,, +29081,Ei19,EA026,None preferred,EA026-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +29082,Ei2,EA026,MoBrDa,EA026-2,,mills1922,,1920,EthnographicAtlas_1967_p90, +29083,Ei20,EA026,None preferred,EA026-9,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +29084,Ei3,EA026,None preferred,EA026-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +29085,Ei4,EA026,MoBrDa,EA026-2,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +29086,Ei5,EA026,MoBrDa,EA026-2,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +29087,Ei6,EA026,MoBrDa,EA026-2,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +29088,Ei7,EA026,None preferred,EA026-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +29089,Ei8,EA026,None preferred,EA026-9,"Marriage is allowed with a MoBrDa only if MoBr is dead, and with a FaSiDa only if Fa is dead",becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +29090,Ei9,EA026,Cross-cousin,EA026-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +29091,Ej1,EA026,MoBrDa,EA026-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +29092,Ej10,EA026,None preferred,EA026-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +29093,Ej11,EA026,None preferred,EA026-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +29094,Ej12,EA026,MoBrDa,EA026-2,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +29095,Ej13,EA026,None preferred,EA026-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +29096,Ej14,EA026,None preferred,EA026-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29097,Ej15,EA026,?,EA026-NA,,,,,, +29098,Ej16,EA026,MoBrDa,EA026-2,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +29099,Ej2,EA026,MoBrDa,EA026-2,MoYoBrDa only,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +29100,Ej3,EA026,None preferred,EA026-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +29101,Ej4,EA026,None preferred,EA026-9,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +29102,Ej5,EA026,None preferred,EA026-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +29103,Ej6,EA026,?,EA026-NA,,,,,, +29104,Ej7,EA026,None preferred,EA026-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +29105,Ej8,EA026,None preferred,EA026-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +29106,Ej9,EA026,None preferred,EA026-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +29107,Ia1,EA026,None preferred,EA026-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +29108,Ia10,EA026,None preferred,EA026-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +29109,Ia11,EA026,None preferred,EA026-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +29110,Ia12,EA026,None preferred,EA026-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +29111,Ia13,EA026,None preferred,EA026-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +29112,Ia14,EA026,None preferred,EA026-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +29113,Ia15,EA026,None preferred,EA026-9,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +29114,Ia16,EA026,None preferred,EA026-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +29115,Ia17,EA026,?,EA026-NA,,,,,, +29116,Ia18,EA026,None preferred,EA026-9,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +29117,Ia2,EA026,None preferred,EA026-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +29118,Ia3,EA026,None preferred,EA026-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +29119,Ia4,EA026,None preferred,EA026-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +29120,Ia5,EA026,None preferred,EA026-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +29121,Ia6,EA026,None preferred,EA026-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29122,Ia7,EA026,None preferred,EA026-9,,fox1954,,1950,EthnographicAtlas_1967_p90, +29123,Ia8,EA026,None preferred,EA026-9,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +29124,Ia9,EA026,None preferred,EA026-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +29125,Ib1,EA026,None preferred,EA026-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29126,Ib2,EA026,None preferred,EA026-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29127,Ib3,EA026,FaBrDa,EA026-4,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +29128,Ib4,EA026,MoBrDa,EA026-2,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +29129,Ib5,EA026,None preferred,EA026-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +29130,Ib6,EA026,Cross-cousin,EA026-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +29131,Ib7,EA026,None preferred,EA026-9,Marriage forbidden only with a FaBrDa,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +29132,Ib8,EA026,None preferred,EA026-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +29133,Ib9,EA026,None preferred,EA026-9,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +29134,Ic1,EA026,None preferred,EA026-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29135,Ic10,EA026,None preferred,EA026-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +29136,Ic11,EA026,None preferred,EA026-9,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29137,Ic12,EA026,None preferred,EA026-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +29138,Ic13,EA026,None preferred,EA026-9,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +29139,Ic2,EA026,None preferred,EA026-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +29140,Ic3,EA026,MoBrDa,EA026-2,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +29141,Ic4,EA026,Cross-cousin,EA026-1,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +29142,Ic5,EA026,None preferred,EA026-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +29143,Ic6,EA026,MoBrDa,EA026-2,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +29144,Ic7,EA026,MoBrDa,EA026-2,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +29145,Ic8,EA026,MoBrDa,EA026-2,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +29146,Ic9,EA026,MoBrDa,EA026-2,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +29147,Id1,EA026,Second cousin,EA026-5,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +29148,Id10,EA026,None preferred,EA026-9,But marriage is preferred with a remoter classificatory MoMoBrDaDa,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +29149,Id11,EA026,Second cousin,EA026-5,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +29150,Id12,EA026,None preferred,EA026-9,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +29151,Id13,EA026,Second cousin,EA026-5,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +29152,Id2,EA026,MoBrDa,EA026-2,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +29153,Id3,EA026,Second cousin,EA026-5,"Marriage with FaSiDa is allowed in theory, but Pilling observed No actual cases; marriage with a daughter of father's half sister, however, is preferred and common",basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +29154,Id4,EA026,Second cousin,EA026-5,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +29155,Id5,EA026,Cross-cousin,EA026-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +29156,Id6,EA026,MoBrDa,EA026-2,Marriage preferential with MoYoBrDa and any second cross-cousin but forbidden with FaSiDa and MoElBrDa,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +29157,Id7,EA026,Second cousin,EA026-5,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +29158,Id8,EA026,?,EA026-NA,,,,,, +29159,Id9,EA026,Second cousin,EA026-5,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +29160,Ie1,EA026,Second cousin,EA026-5,Marriage is preferred with any second cross-cousin,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29161,Ie10,EA026,None preferred,EA026-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +29162,Ie11,EA026,None preferred,EA026-9,,bowers1964,,1950,EthnographicAtlas_1967_p94, +29163,Ie12,EA026,None preferred,EA026-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29164,Ie13,EA026,None preferred,EA026-9,,landtman1927,,1920,EthnographicAtlas_1967_p94, +29165,Ie14,EA026,None preferred,EA026-9,,haddon1908,,1900,EthnographicAtlas_1967_p94, +29166,Ie15,EA026,None preferred,EA026-9,"Though disapproved, marriage with a cross-cousin does occasionally occur",kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29167,Ie16,EA026,None preferred,EA026-9,,williams194041,,1940,EthnographicAtlas_1967_p94, +29168,Ie17,EA026,None preferred,EA026-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +29169,Ie18,EA026,None preferred,EA026-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +29170,Ie19,EA026,None preferred,EA026-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +29171,Ie2,EA026,Cross-cousin,EA026-1,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +29172,Ie20,EA026,None preferred,EA026-9,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +29173,Ie21,EA026,?,EA026-NA,,,,,, +29174,Ie22,EA026,None preferred,EA026-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +29175,Ie23,EA026,None preferred,EA026-9,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +29176,Ie24,EA026,None preferred,EA026-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +29177,Ie25,EA026,None preferred,EA026-9,,williamson1912,,1920,EthnographicAtlas_1967_p94, +29178,Ie26,EA026,Second cousin,EA026-5,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +29179,Ie27,EA026,None preferred,EA026-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +29180,Ie28,EA026,None preferred,EA026-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +29181,Ie29,EA026,None preferred,EA026-9,Marriage is preferred with FaFaSiSoDa,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29182,Ie3,EA026,None preferred,EA026-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29183,Ie30,EA026,?,EA026-NA,,,,,, +29184,Ie31,EA026,Cross-cousin,EA026-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +29185,Ie32,EA026,?,EA026-NA,,,,,, +29186,Ie33,EA026,Cross-cousin,EA026-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +29187,Ie34,EA026,None preferred,EA026-9,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +29188,Ie35,EA026,MoBrDa,EA026-2,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +29189,Ie36,EA026,None preferred,EA026-9,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +29190,Ie37,EA026,None preferred,EA026-9,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +29191,Ie38,EA026,None preferred,EA026-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +29192,Ie39,EA026,None preferred,EA026-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +29193,Ie4,EA026,None preferred,EA026-9,Marriage is preferential between children of cross-cousins,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29194,Ie5,EA026,None preferred,EA026-9,"The preferred union is with a classificatory, not an actual, cross-cousin",williams1936,,1930,EthnographicAtlas_1967_p94, +29195,Ie6,EA026,MoBrDa,EA026-2,,held1947,,1930,EthnographicAtlas_1967_p94, +29196,Ie7,EA026,None preferred,EA026-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +29197,Ie8,EA026,None preferred,EA026-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +29198,Ie9,EA026,None preferred,EA026-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +29199,If1,EA026,None preferred,EA026-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29200,If10,EA026,Cross-cousin,EA026-1,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +29201,If11,EA026,None preferred,EA026-9,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +29202,If12,EA026,Cross-cousin,EA026-1,,mason1954,,1940,EthnographicAtlas_1967_p98, +29203,If13,EA026,Cross-cousin,EA026-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +29204,If14,EA026,None preferred,EA026-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +29205,If15,EA026,None preferred,EA026-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +29206,If16,EA026,?,EA026-NA,,,,,, +29207,If17,EA026,Cross-cousin,EA026-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +29208,If2,EA026,None preferred,EA026-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +29209,If3,EA026,None preferred,EA026-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +29210,If4,EA026,None preferred,EA026-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +29211,If5,EA026,Cross-cousin,EA026-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +29212,If6,EA026,None preferred,EA026-9,Marriage with a first cross-cousin occurs only under very special conditions,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +29213,If7,EA026,None preferred,EA026-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +29214,If8,EA026,None preferred,EA026-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +29215,If9,EA026,None preferred,EA026-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +29216,Ig1,EA026,MoBrDa,EA026-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +29217,Ig10,EA026,None preferred,EA026-9,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +29218,Ig11,EA026,None preferred,EA026-9,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +29219,Ig12,EA026,None preferred,EA026-9,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +29220,Ig13,EA026,None preferred,EA026-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +29221,Ig14,EA026,None preferred,EA026-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +29222,Ig15,EA026,?,EA026-NA,,,,,, +29223,Ig16,EA026,?,EA026-NA,,,,,, +29224,Ig17,EA026,None preferred,EA026-9,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +29225,Ig18,EA026,None preferred,EA026-9,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +29226,Ig19,EA026,None preferred,EA026-9,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +29227,Ig2,EA026,None preferred,EA026-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +29228,Ig20,EA026,None preferred,EA026-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +29229,Ig21,EA026,Cross-cousin,EA026-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +29230,Ig3,EA026,None preferred,EA026-9,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +29231,Ig4,EA026,None preferred,EA026-9,The preferred marriage is with the daughter of a cross-cousin,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +29232,Ig5,EA026,None preferred,EA026-9,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +29233,Ig6,EA026,None preferred,EA026-9,,ivens1927,,1900,EthnographicAtlas_1967_p98, +29234,Ig7,EA026,Cross-cousin,EA026-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +29235,Ig8,EA026,None preferred,EA026-9,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +29236,Ig9,EA026,Second cousin,EA026-5,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +29237,Ih1,EA026,None preferred,EA026-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +29238,Ih10,EA026,Cross-cousin,EA026-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29239,Ih11,EA026,Cross-cousin,EA026-1,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +29240,Ih12,EA026,None preferred,EA026-9,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +29241,Ih13,EA026,None preferred,EA026-9,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +29242,Ih14,EA026,?,EA026-NA,,,,,, +29243,Ih2,EA026,None preferred,EA026-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29244,Ih3,EA026,None preferred,EA026-9,Marriage is preferred with MoBrDaDa or MoMoBrDa,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +29245,Ih4,EA026,Cross-cousin,EA026-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29246,Ih5,EA026,Cross-cousin,EA026-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +29247,Ih6,EA026,None preferred,EA026-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +29248,Ih7,EA026,None preferred,EA026-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +29249,Ih8,EA026,None preferred,EA026-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +29250,Ih9,EA026,None preferred,EA026-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29251,Ii1,EA026,None preferred,EA026-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +29252,Ii10,EA026,Cross-cousin,EA026-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +29253,Ii12,EA026,None preferred,EA026-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29254,Ii13,EA026,None preferred,EA026-9,,burrows1937,,1830,EthnographicAtlas_1967_p98, +29255,Ii14,EA026,None preferred,EA026-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +29256,Ii2,EA026,None preferred,EA026-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +29257,Ii3,EA026,None preferred,EA026-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +29258,Ii4,EA026,None preferred,EA026-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +29259,Ii5,EA026,None preferred,EA026-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +29260,Ii6,EA026,None preferred,EA026-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +29261,Ii7,EA026,None preferred,EA026-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +29262,Ii8,EA026,None preferred,EA026-9,,burrows1936,,1840,EthnographicAtlas_1967_p98, +29263,Ii9,EA026,None preferred,EA026-9,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +29264,Ij1,EA026,None preferred,EA026-9,,buck1934,,1820,EthnographicAtlas_1967_p98, +29265,Ij10,EA026,None preferred,EA026-9,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +29266,Ij2,EA026,Second cousin,EA026-5,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +29267,Ij3,EA026,Cross-cousin,EA026-1,"But Miranda states that ""marriage was prohibited within the third degree of relationship""",forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +29268,Ij4,EA026,None preferred,EA026-9,,buck1932a,,1850,EthnographicAtlas_1967_p102, +29269,Ij5,EA026,?,EA026-NA,,,,,, +29270,Ij6,EA026,None preferred,EA026-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +29271,Ij7,EA026,None preferred,EA026-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +29272,Ij8,EA026,None preferred,EA026-9,But chiefly families sometimes practiced cross-cousin marriage,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +29273,Ij9,EA026,None preferred,EA026-9,,metraux1940,,1860,EthnographicAtlas_1967_p102, +29274,Na1,EA026,Cross-cousin,EA026-1,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +29275,Na10,EA026,None preferred,EA026-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +29276,Na11,EA026,None preferred,EA026-9,But rules of cousin marriage were variable,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +29277,Na12,EA026,None preferred,EA026-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +29278,Na13,EA026,?,EA026-NA,,,,,, +29279,Na14,EA026,?,EA026-NA,,,,,, +29280,Na15,EA026,?,EA026-NA,There are no patterns of preferential marriage,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +29281,Na16,EA026,?,EA026-NA,,,,,, +29282,Na17,EA026,None preferred,EA026-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29283,Na19,EA026,Cross-cousin,EA026-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +29284,Na2,EA026,None preferred,EA026-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +29285,Na20,EA026,None preferred,EA026-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +29286,Na21,EA026,None preferred,EA026-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +29287,Na22,EA026,None preferred,EA026-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +29288,Na23,EA026,?,EA026-NA,,,,,, +29289,Na24,EA026,None preferred,EA026-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +29290,Na25,EA026,?,EA026-NA,,,,,, +29291,Na26,EA026,None preferred,EA026-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +29292,Na27,EA026,?,EA026-NA,,,,,, +29293,Na28,EA026,None preferred,EA026-9,,jenness1937,,1880,EthnographicAtlas_1967_p102, +29294,Na29,EA026,?,EA026-NA,,,,,, +29295,Na3,EA026,None preferred,EA026-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +29296,Na30,EA026,None preferred,EA026-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +29297,Na31,EA026,None preferred,EA026-9,"""...there were no marriage restrictions""",skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +29298,Na32,EA026,MoBrDa,EA026-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +29299,Na33,EA026,Cross-cousin,EA026-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +29300,Na34,EA026,None preferred,EA026-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +29301,Na35,EA026,None preferred,EA026-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +29302,Na36,EA026,Cross-cousin,EA026-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +29303,Na37,EA026,Cross-cousin,EA026-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +29304,Na38,EA026,None preferred,EA026-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +29305,Na39,EA026,Cross-cousin,EA026-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +29306,Na4,EA026,MoBrDa,EA026-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +29307,Na40,EA026,?,EA026-NA,,,,,, +29308,Na41,EA026,None preferred,EA026-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +29309,Na42,EA026,None preferred,EA026-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +29310,Na43,EA026,None preferred,EA026-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +29311,Na44,EA026,None preferred,EA026-9,"But there are occasional marriages between first cousins, and people differ as to their propriety",graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +29312,Na45,EA026,Cross-cousin,EA026-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +29313,Na5,EA026,Cross-cousin,EA026-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +29314,Na6,EA026,None preferred,EA026-9,,lantis1946,,1930,EthnographicAtlas_1967_p102, +29315,Na7,EA026,Cross-cousin,EA026-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +29316,Na8,EA026,None preferred,EA026-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +29317,Na9,EA026,MoBrDa,EA026-2,"But 'no preferred cousin marriage' (code ""9"") today",bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29318,Nb1,EA026,FaSiDa,EA026-3,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +29319,Nb10,EA026,None preferred,EA026-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +29320,Nb11,EA026,None preferred,EA026-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +29321,Nb12,EA026,None preferred,EA026-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +29322,Nb13,EA026,None preferred,EA026-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +29323,Nb14,EA026,None preferred,EA026-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +29324,Nb15,EA026,None preferred,EA026-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +29325,Nb16,EA026,None preferred,EA026-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +29326,Nb17,EA026,None preferred,EA026-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +29327,Nb18,EA026,None preferred,EA026-9,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +29328,Nb19,EA026,None preferred,EA026-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +29329,Nb2,EA026,None preferred,EA026-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +29330,Nb20,EA026,None preferred,EA026-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +29331,Nb21,EA026,None preferred,EA026-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +29332,Nb22,EA026,FaSiDa,EA026-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +29333,Nb23,EA026,None preferred,EA026-9,"Marriage with a cross-cousin was considered ""good""",boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +29334,Nb24,EA026,None preferred,EA026-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +29335,Nb25,EA026,None preferred,EA026-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +29336,Nb26,EA026,None preferred,EA026-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +29337,Nb27,EA026,None preferred,EA026-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +29338,Nb28,EA026,None preferred,EA026-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +29339,Nb29,EA026,None preferred,EA026-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +29340,Nb3,EA026,Second cousin,EA026-5,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +29341,Nb30,EA026,None preferred,EA026-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +29342,Nb31,EA026,MoBrDa,EA026-2,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +29343,Nb32,EA026,None preferred,EA026-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +29344,Nb33,EA026,None preferred,EA026-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +29345,Nb34,EA026,None preferred,EA026-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +29346,Nb35,EA026,None preferred,EA026-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +29347,Nb36,EA026,None preferred,EA026-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +29348,Nb37,EA026,None preferred,EA026-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +29349,Nb38,EA026,None preferred,EA026-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +29350,Nb39,EA026,None preferred,EA026-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +29351,Nb4,EA026,None preferred,EA026-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +29352,Nb5,EA026,None preferred,EA026-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +29353,Nb6,EA026,None preferred,EA026-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +29354,Nb7,EA026,MoBrDa,EA026-2,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +29355,Nb8,EA026,MoBrDa,EA026-2,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +29356,Nb9,EA026,None preferred,EA026-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +29357,Nc1,EA026,None preferred,EA026-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +29358,Nc10,EA026,None preferred,EA026-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +29359,Nc11,EA026,None preferred,EA026-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +29360,Nc12,EA026,None preferred,EA026-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +29361,Nc13,EA026,None preferred,EA026-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +29362,Nc14,EA026,None preferred,EA026-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +29363,Nc15,EA026,None preferred,EA026-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +29364,Nc16,EA026,None preferred,EA026-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +29365,Nc17,EA026,None preferred,EA026-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +29366,Nc18,EA026,None preferred,EA026-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +29367,Nc19,EA026,None preferred,EA026-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +29368,Nc2,EA026,None preferred,EA026-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +29369,Nc20,EA026,None preferred,EA026-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +29370,Nc21,EA026,None preferred,EA026-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +29371,Nc22,EA026,None preferred,EA026-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +29372,Nc23,EA026,None preferred,EA026-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +29373,Nc24,EA026,None preferred,EA026-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +29374,Nc25,EA026,None preferred,EA026-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +29375,Nc26,EA026,?,EA026-NA,,,,,, +29376,Nc27,EA026,?,EA026-NA,,,,,, +29377,Nc28,EA026,?,EA026-NA,,,,,, +29378,Nc29,EA026,None preferred,EA026-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +29379,Nc3,EA026,None preferred,EA026-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +29380,Nc30,EA026,None preferred,EA026-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +29381,Nc31,EA026,None preferred,EA026-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +29382,Nc32,EA026,None preferred,EA026-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +29383,Nc33,EA026,None preferred,EA026-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +29384,Nc34,EA026,None preferred,EA026-9,,meigs1939,,1880,EthnographicAtlas_1967_p106, +29385,Nc4,EA026,None preferred,EA026-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +29386,Nc5,EA026,None preferred,EA026-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +29387,Nc6,EA026,None preferred,EA026-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +29388,Nc7,EA026,None preferred,EA026-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +29389,Nc8,EA026,None preferred,EA026-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +29390,Nc9,EA026,None preferred,EA026-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +29391,Nd1,EA026,None preferred,EA026-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +29392,Nd10,EA026,None preferred,EA026-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +29393,Nd11,EA026,None preferred,EA026-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +29394,Nd12,EA026,None preferred,EA026-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +29395,Nd13,EA026,None preferred,EA026-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +29396,Nd14,EA026,None preferred,EA026-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +29397,Nd15,EA026,None preferred,EA026-9,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +29398,Nd16,EA026,None preferred,EA026-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +29399,Nd17,EA026,None preferred,EA026-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +29400,Nd18,EA026,None preferred,EA026-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +29401,Nd19,EA026,None preferred,EA026-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +29402,Nd2,EA026,None preferred,EA026-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +29403,Nd20,EA026,None preferred,EA026-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +29404,Nd21,EA026,None preferred,EA026-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +29405,Nd22,EA026,None preferred,EA026-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +29406,Nd23,EA026,None preferred,EA026-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +29407,Nd24,EA026,None preferred,EA026-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +29408,Nd25,EA026,None preferred,EA026-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +29409,Nd26,EA026,None preferred,EA026-9,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +29410,Nd27,EA026,None preferred,EA026-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +29411,Nd28,EA026,None preferred,EA026-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +29412,Nd29,EA026,None preferred,EA026-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +29413,Nd3,EA026,None preferred,EA026-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +29414,Nd30,EA026,None preferred,EA026-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +29415,Nd31,EA026,None preferred,EA026-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +29416,Nd32,EA026,None preferred,EA026-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +29417,Nd33,EA026,None preferred,EA026-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +29418,Nd34,EA026,None preferred,EA026-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +29419,Nd35,EA026,None preferred,EA026-9,"The preferred marriage is with a pseudo-cross cousin, i.e., a stepchild of either MoBr or FaSi",steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +29420,Nd36,EA026,None preferred,EA026-9,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +29421,Nd37,EA026,None preferred,EA026-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +29422,Nd38,EA026,FaSiDa,EA026-3,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +29423,Nd39,EA026,None preferred,EA026-9,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +29424,Nd4,EA026,None preferred,EA026-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +29425,Nd40,EA026,None preferred,EA026-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +29426,Nd41,EA026,None preferred,EA026-9,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +29427,Nd42,EA026,None preferred,EA026-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +29428,Nd43,EA026,None preferred,EA026-9,Entry follows Harris; Steward reports only marriage with a pseudo-cross-cousin,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +29429,Nd44,EA026,None preferred,EA026-9,But marriage was preferred with a stepdaughter of FaSi,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +29430,Nd45,EA026,None preferred,EA026-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +29431,Nd46,EA026,None preferred,EA026-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +29432,Nd47,EA026,None preferred,EA026-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +29433,Nd48,EA026,Cross-cousin,EA026-1,"But 'FaSiDa as preferred spouse' (code ""3"") in the Skull Valley band",malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +29434,Nd49,EA026,None preferred,EA026-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +29435,Nd5,EA026,None preferred,EA026-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +29436,Nd50,EA026,None preferred,EA026-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +29437,Nd51,EA026,None preferred,EA026-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +29438,Nd52,EA026,None preferred,EA026-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +29439,Nd53,EA026,None preferred,EA026-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +29440,Nd54,EA026,None preferred,EA026-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29441,Nd55,EA026,None preferred,EA026-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +29442,Nd56,EA026,None preferred,EA026-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +29443,Nd57,EA026,?,EA026-NA,,,,,, +29444,Nd58,EA026,None preferred,EA026-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +29445,Nd59,EA026,?,EA026-NA,,,,,, +29446,Nd6,EA026,None preferred,EA026-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +29447,Nd60,EA026,?,EA026-NA,,,,,, +29448,Nd61,EA026,?,EA026-NA,,,,,, +29449,Nd62,EA026,?,EA026-NA,,,,,, +29450,Nd63,EA026,None preferred,EA026-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +29451,Nd64,EA026,None preferred,EA026-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +29452,Nd65,EA026,None preferred,EA026-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +29453,Nd66,EA026,None preferred,EA026-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +29454,Nd67,EA026,None preferred,EA026-9,,gifford1936,,1870,EthnographicAtlas_1967_p110, +29455,Nd7,EA026,None preferred,EA026-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +29456,Nd8,EA026,None preferred,EA026-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +29457,Nd9,EA026,None preferred,EA026-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +29458,Ne1,EA026,None preferred,EA026-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +29459,Ne10,EA026,?,EA026-NA,,,,,, +29460,Ne11,EA026,None preferred,EA026-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +29461,Ne12,EA026,None preferred,EA026-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +29462,Ne13,EA026,None preferred,EA026-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +29463,Ne14,EA026,None preferred,EA026-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +29464,Ne15,EA026,None preferred,EA026-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +29465,Ne16,EA026,?,EA026-NA,,,,,, +29466,Ne17,EA026,None preferred,EA026-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +29467,Ne18,EA026,None preferred,EA026-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +29468,Ne19,EA026,None preferred,EA026-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +29469,Ne2,EA026,None preferred,EA026-9,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +29470,Ne20,EA026,None preferred,EA026-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +29471,Ne21,EA026,?,EA026-NA,,,,,, +29472,Ne3,EA026,None preferred,EA026-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +29473,Ne4,EA026,None preferred,EA026-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +29474,Ne5,EA026,None preferred,EA026-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +29475,Ne6,EA026,None preferred,EA026-9,Inferred from a report by Bowers (p. 75) that a man preferred to have a son-in-law from his own sib,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +29476,Ne7,EA026,None preferred,EA026-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +29477,Ne8,EA026,None preferred,EA026-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +29478,Ne9,EA026,None preferred,EA026-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +29479,Nf10,EA026,?,EA026-NA,,,,,, +29480,Nf11,EA026,None preferred,EA026-9,,whitman1937,,1870,EthnographicAtlas_1967_p114, +29481,Nf12,EA026,None preferred,EA026-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +29482,Nf13,EA026,None preferred,EA026-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29483,Nf14,EA026,None preferred,EA026-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +29484,Nf15,EA026,None preferred,EA026-9,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +29485,Nf2,EA026,None preferred,EA026-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +29486,Nf3,EA026,None preferred,EA026-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +29487,Nf4,EA026,None preferred,EA026-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +29488,Nf5,EA026,None preferred,EA026-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +29489,Nf6,EA026,Second cousin,EA026-5,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +29490,Nf7,EA026,None preferred,EA026-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29491,Nf8,EA026,None preferred,EA026-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +29492,Nf9,EA026,None preferred,EA026-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +29493,Ng1,EA026,None preferred,EA026-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +29494,Ng10,EA026,?,EA026-NA,"Unreported but probably 'no preferred cousin marriage' (code ""9"") like the Huron",fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +29495,Ng11,EA026,?,EA026-NA,,,,,, +29496,Ng12,EA026,None preferred,EA026-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +29497,Ng13,EA026,?,EA026-NA,,,,,, +29498,Ng14,EA026,None preferred,EA026-9,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +29499,Ng15,EA026,?,EA026-NA,,,,,, +29500,Ng2,EA026,None preferred,EA026-9,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +29501,Ng3,EA026,None preferred,EA026-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +29502,Ng4,EA026,None preferred,EA026-9,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +29503,Ng5,EA026,None preferred,EA026-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +29504,Ng6,EA026,?,EA026-NA,,,,,, +29505,Ng7,EA026,None preferred,EA026-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +29506,Ng8,EA026,?,EA026-NA,,,,,, +29507,Ng9,EA026,None preferred,EA026-9,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +29508,Nh1,EA026,None preferred,EA026-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +29509,Nh10,EA026,None preferred,EA026-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +29510,Nh11,EA026,None preferred,EA026-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +29511,Nh12,EA026,None preferred,EA026-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +29512,Nh13,EA026,None preferred,EA026-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +29513,Nh14,EA026,None preferred,EA026-9,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +29514,Nh15,EA026,None preferred,EA026-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +29515,Nh16,EA026,None preferred,EA026-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29516,Nh17,EA026,None preferred,EA026-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +29517,Nh18,EA026,None preferred,EA026-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29518,Nh19,EA026,None preferred,EA026-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +29519,Nh2,EA026,None preferred,EA026-9,,dozier1954,,1950,EthnographicAtlas_1967_p114, +29520,Nh20,EA026,None preferred,EA026-9,,gifford1931,,1860,EthnographicAtlas_1967_p114, +29521,Nh21,EA026,None preferred,EA026-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29522,Nh22,EA026,None preferred,EA026-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +29523,Nh23,EA026,None preferred,EA026-9,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +29524,Nh24,EA026,None preferred,EA026-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +29525,Nh25,EA026,None preferred,EA026-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +29526,Nh26,EA026,None preferred,EA026-9,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +29527,Nh27,EA026,None preferred,EA026-9,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +29528,Nh3,EA026,None preferred,EA026-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +29529,Nh4,EA026,None preferred,EA026-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +29530,Nh5,EA026,None preferred,EA026-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +29531,Nh6,EA026,None preferred,EA026-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +29532,Nh7,EA026,None preferred,EA026-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +29533,Nh8,EA026,None preferred,EA026-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +29534,Nh9,EA026,None preferred,EA026-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +29535,Ni1,EA026,None preferred,EA026-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +29536,Ni2,EA026,None preferred,EA026-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +29537,Ni3,EA026,None preferred,EA026-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +29538,Ni4,EA026,None preferred,EA026-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +29539,Ni5,EA026,None preferred,EA026-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +29540,Ni6,EA026,None preferred,EA026-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +29541,Ni7,EA026,None preferred,EA026-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +29542,Ni8,EA026,?,EA026-NA,,,,,, +29543,Ni9,EA026,?,EA026-NA,,,,,, +29544,Nj1,EA026,None preferred,EA026-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29545,Nj10,EA026,None preferred,EA026-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29546,Nj11,EA026,?,EA026-NA,,,,,, +29547,Nj12,EA026,?,EA026-NA,,,,,, +29548,Nj13,EA026,?,EA026-NA,,,,,, +29549,Nj14,EA026,None preferred,EA026-9,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +29550,Nj2,EA026,None preferred,EA026-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +29551,Nj3,EA026,None preferred,EA026-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +29552,Nj4,EA026,None preferred,EA026-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +29553,Nj5,EA026,None preferred,EA026-9,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +29554,Nj6,EA026,None preferred,EA026-9,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +29555,Nj7,EA026,?,EA026-NA,,,,,, +29556,Nj8,EA026,None preferred,EA026-9,,foster1948,,1500,EthnographicAtlas_1967_p118, +29557,Nj9,EA026,None preferred,EA026-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +29558,Sa1,EA026,None preferred,EA026-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +29559,Sa10,EA026,?,EA026-NA,,,,,, +29560,Sa11,EA026,?,EA026-NA,,,,,, +29561,Sa12,EA026,?,EA026-NA,,,,,, +29562,Sa13,EA026,None preferred,EA026-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +29563,Sa14,EA026,?,EA026-NA,,,,,, +29564,Sa15,EA026,?,EA026-NA,,,,,, +29565,Sa16,EA026,?,EA026-NA,,,,,, +29566,Sa17,EA026,None preferred,EA026-9,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +29567,Sa2,EA026,MoBrDa,EA026-2,Entry follows Guiteras; Villa says marriage is preferred with a classificatory cross-cousin but disapproved with a first cross-cousin,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29568,Sa3,EA026,None preferred,EA026-9,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +29569,Sa4,EA026,None preferred,EA026-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +29570,Sa5,EA026,None preferred,EA026-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +29571,Sa6,EA026,None preferred,EA026-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +29572,Sa7,EA026,None preferred,EA026-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +29573,Sa8,EA026,None preferred,EA026-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +29574,Sa9,EA026,Cross-cousin,EA026-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +29575,Sb1,EA026,FaSiDa,EA026-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +29576,Sb2,EA026,None preferred,EA026-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +29577,Sb3,EA026,Cross-cousin,EA026-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +29578,Sb4,EA026,Cross-cousin,EA026-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +29579,Sb5,EA026,None preferred,EA026-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +29580,Sb6,EA026,None preferred,EA026-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +29581,Sb7,EA026,Cross-cousin,EA026-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +29582,Sb8,EA026,?,EA026-NA,,,,,, +29583,Sb9,EA026,None preferred,EA026-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +29584,Sc1,EA026,MoBrDa,EA026-2,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +29585,Sc10,EA026,MoBrDa,EA026-2,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +29586,Sc11,EA026,None preferred,EA026-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +29587,Sc12,EA026,Cross-cousin,EA026-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +29588,Sc13,EA026,Cross-cousin,EA026-1,"Entry follows Wilbert; Riley reports 'MoBrDa as preferred spouse' (code ""2"")",riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +29589,Sc14,EA026,?,EA026-NA,,,,,, +29590,Sc15,EA026,?,EA026-NA,,,,,, +29591,Sc16,EA026,Cross-cousin,EA026-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +29592,Sc17,EA026,Cross-cousin,EA026-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +29593,Sc18,EA026,Second cousin,EA026-5,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +29594,Sc2,EA026,Cross-cousin,EA026-1,,leedsnd,,1950,EthnographicAtlas_1967_p118, +29595,Sc3,EA026,Cross-cousin,EA026-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +29596,Sc4,EA026,Cross-cousin,EA026-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +29597,Sc5,EA026,Cross-cousin,EA026-1,,farabee1918,,1900,EthnographicAtlas_1967_p118, +29598,Sc6,EA026,None preferred,EA026-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29599,Sc7,EA026,Cross-cousin,EA026-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +29600,Sc8,EA026,Cross-cousin,EA026-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +29601,Sc9,EA026,None preferred,EA026-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +29602,Sd1,EA026,Cross-cousin,EA026-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29603,Sd2,EA026,None preferred,EA026-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +29604,Sd3,EA026,?,EA026-NA,,,,,, +29605,Sd4,EA026,?,EA026-NA,,,,,, +29606,Sd5,EA026,?,EA026-NA,,,,,, +29607,Sd6,EA026,None preferred,EA026-9,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +29608,Sd7,EA026,None preferred,EA026-9,,fock1963,,1950,EthnographicAtlas_1967_p118, +29609,Sd8,EA026,None preferred,EA026-9,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +29610,Sd9,EA026,Cross-cousin,EA026-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29611,Se1,EA026,MoBrDa,EA026-2,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +29612,Se10,EA026,?,EA026-NA,Preferential marriage with SiDa,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +29613,Se11,EA026,Cross-cousin,EA026-1,,prost1965,,1960,EthnographicAtlas_1967_p122, +29614,Se12,EA026,Cross-cousin,EA026-1,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +29615,Se2,EA026,None preferred,EA026-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +29616,Se3,EA026,Cross-cousin,EA026-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +29617,Se4,EA026,None preferred,EA026-9,,fejos1943,,1940,EthnographicAtlas_1967_p118, +29618,Se5,EA026,MoBrDa,EA026-2,But Goldman reports a preference for marrying a woman of one's mother's lineage,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +29619,Se6,EA026,None preferred,EA026-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +29620,Se7,EA026,None preferred,EA026-9,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29621,Se8,EA026,Cross-cousin,EA026-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +29622,Se9,EA026,?,EA026-NA,,,,,, +29623,Sf1,EA026,None preferred,EA026-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +29624,Sf2,EA026,None preferred,EA026-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +29625,Sf3,EA026,None preferred,EA026-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +29626,Sf4,EA026,None preferred,EA026-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +29627,Sf5,EA026,?,EA026-NA,,,,,, +29628,Sf6,EA026,?,EA026-NA,,,,,, +29629,Sf7,EA026,None preferred,EA026-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +29630,Sf8,EA026,None preferred,EA026-9,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +29631,Sf9,EA026,?,EA026-NA,,,,,, +29632,Sg1,EA026,None preferred,EA026-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +29633,Sg2,EA026,MoBrDa,EA026-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29634,Sg3,EA026,None preferred,EA026-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +29635,Sg4,EA026,None preferred,EA026-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +29636,Sg5,EA026,None preferred,EA026-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29637,Sh1,EA026,None preferred,EA026-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +29638,Sh2,EA026,None preferred,EA026-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +29639,Sh3,EA026,None preferred,EA026-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +29640,Sh4,EA026,None preferred,EA026-9,,oberg1949,,1940,EthnographicAtlas_1967_p122, +29641,Sh5,EA026,None preferred,EA026-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +29642,Sh6,EA026,?,EA026-NA,,,,,, +29643,Sh7,EA026,None preferred,EA026-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +29644,Sh8,EA026,None preferred,EA026-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +29645,Sh9,EA026,?,EA026-NA,,,,,, +29646,Si1,EA026,None preferred,EA026-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29647,Si10,EA026,None preferred,EA026-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +29648,Si2,EA026,Cross-cousin,EA026-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +29649,Si3,EA026,None preferred,EA026-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29650,Si4,EA026,Cross-cousin,EA026-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +29651,Si5,EA026,Cross-cousin,EA026-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +29652,Si6,EA026,?,EA026-NA,,,,,, +29653,Si7,EA026,?,EA026-NA,,,,,, +29654,Si8,EA026,None preferred,EA026-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +29655,Si9,EA026,?,EA026-NA,,,,,, +29656,Sj1,EA026,None preferred,EA026-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +29657,Sj10,EA026,?,EA026-NA,,,,,, +29658,Sj11,EA026,None preferred,EA026-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +29659,Sj2,EA026,None preferred,EA026-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +29660,Sj3,EA026,None preferred,EA026-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +29661,Sj4,EA026,None preferred,EA026-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +29662,Sj5,EA026,None preferred,EA026-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +29663,Sj6,EA026,None preferred,EA026-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29664,Sj7,EA026,None preferred,EA026-9,"Entry follows Nimuendaju; Maybury-Lewis gives 'a symmetrical cross-cousin' (code ""1"")",mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +29665,Sj8,EA026,Cross-cousin,EA026-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +29666,Sj9,EA026,None preferred,EA026-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +29667,ch12,EA026,None preferred,EA026-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +29668,ch13,EA026,?,EA026-NA,,,,,, +29669,ch14,EA026,None preferred,EA026-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +29670,ch15,EA026,None preferred,EA026-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +29671,ch16,EA026,?,EA026-NA,,,,,, +29672,ch17,EA026,None preferred,EA026-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +29673,ch18,EA026,None preferred,EA026-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +29674,ch19,EA026,?,EA026-NA,,,,,, +29675,ch20,EA026,None preferred,EA026-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +29676,ch21,EA026,?,EA026-NA,,,,,, +29677,ch22,EA026,?,EA026-NA,,,,,, +29678,ch23,EA026,None preferred,EA026-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +29679,ch24,EA026,None preferred,EA026-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +29680,ch25,EA026,?,EA026-NA,,,,,, +29681,ch26,EA026,None preferred,EA026-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +29682,ch27,EA026,None preferred,EA026-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +29683,ch28,EA026,None preferred,EA026-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +29684,ec12,EA026,None preferred,EA026-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +29685,ec13,EA026,None preferred,EA026-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +29686,ec14,EA026,None preferred,EA026-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +29687,ec15,EA026,None preferred,EA026-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +29688,ec16,EA026,MoBrDa,EA026-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +29689,ec17,EA026,MoBrDa,EA026-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +29690,ec18,EA026,MoBrDa,EA026-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +29691,ec19,EA026,MoBrDa,EA026-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +29692,ec20,EA026,MoBrDa,EA026-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +29693,ec21,EA026,MoBrDa,EA026-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +29694,Aa1,EA027,Eskimo,EA027-3,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +29695,Aa2,EA027,Omaha,EA027-6,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +29696,Aa3,EA027,Iroquois,EA027-5,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +29697,Aa4,EA027,Descriptive,EA027-2,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +29698,Aa5,EA027,Hawaiian,EA027-4,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +29699,Aa6,EA027,Mixed,EA027-8,"Special terms for MoBrCh, but sibling terms for other cousins",dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +29700,Aa7,EA027,?,EA027-NA,,,,,, +29701,Aa8,EA027,Hawaiian,EA027-4,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +29702,Aa9,EA027,?,EA027-NA,,,,,, +29703,Ab1,EA027,Iroquois,EA027-5,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +29704,Ab10,EA027,Iroquois,EA027-5,,hunter1936,,1936,EthnographicAtlas_1967_p62, +29705,Ab11,EA027,Iroquois,EA027-5,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +29706,Ab12,EA027,Iroquois,EA027-5,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +29707,Ab13,EA027,Iroquois,EA027-5,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +29708,Ab14,EA027,Iroquois,EA027-5,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +29709,Ab15,EA027,Iroquois,EA027-5,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +29710,Ab16,EA027,Omaha,EA027-6,,earthy1933,,1930,EthnographicAtlas_1967_p62, +29711,Ab17,EA027,Omaha,EA027-6,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +29712,Ab18,EA027,Omaha,EA027-6,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +29713,Ab19,EA027,Hawaiian,EA027-4,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +29714,Ab2,EA027,Iroquois,EA027-5,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +29715,Ab20,EA027,?,EA027-NA,,,,,, +29716,Ab21a,EA027,?,EA027-NA,,,,,, +29717,Ab21b,EA027,Iroquois,EA027-5,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +29718,Ab22,EA027,Omaha,EA027-6,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +29719,Ab3,EA027,Hawaiian,EA027-4,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +29720,Ab4,EA027,Omaha,EA027-6,,junod1927,,1920,EthnographicAtlas_1967_p62, +29721,Ab5,EA027,Iroquois,EA027-5,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +29722,Ab6,EA027,Iroquois,EA027-5,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +29723,Ab7,EA027,Iroquois,EA027-5,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +29724,Ab8,EA027,Iroquois,EA027-5,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +29725,Ab9,EA027,Iroquois,EA027-5,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +29726,Ac1,EA027,Iroquois,EA027-5,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +29727,Ac10,EA027,Iroquois,EA027-5,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +29728,Ac11,EA027,Iroquois,EA027-5,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +29729,Ac12,EA027,Iroquois,EA027-5,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +29730,Ac13,EA027,Iroquois,EA027-5,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +29731,Ac14,EA027,?,EA027-NA,"Possibly Crow, though the sources are in conflict",brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +29732,Ac15,EA027,Iroquois,EA027-5,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +29733,Ac16,EA027,?,EA027-NA,,,,,, +29734,Ac17,EA027,Iroquois,EA027-5,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +29735,Ac18,EA027,?,EA027-NA,,,,,, +29736,Ac19,EA027,?,EA027-NA,,,,,, +29737,Ac2,EA027,Crow,EA027-1,But Iroquois for all cross-cousins except FaSiSo (ms) and MoBrDa (ws),sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +29738,Ac20,EA027,Iroquois,EA027-5,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +29739,Ac21,EA027,Iroquois,EA027-5,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +29740,Ac22,EA027,Iroquois,EA027-5,"Probable, though the report is confused",mertens1935,,1930,EthnographicAtlas_1967_p62, +29741,Ac23,EA027,Iroquois,EA027-5,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +29742,Ac24,EA027,?,EA027-NA,,,,,, +29743,Ac25,EA027,Iroquois,EA027-5,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +29744,Ac26,EA027,?,EA027-NA,,,,,, +29745,Ac27,EA027,Iroquois,EA027-5,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +29746,Ac28,EA027,Iroquois,EA027-5,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +29747,Ac29,EA027,?,EA027-NA,,,,,, +29748,Ac3,EA027,Iroquois,EA027-5,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +29749,Ac30,EA027,Iroquois,EA027-5,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +29750,Ac31,EA027,?,EA027-NA,,,,,, +29751,Ac32,EA027,Iroquois,EA027-5,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +29752,Ac33,EA027,Iroquois,EA027-5,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +29753,Ac34,EA027,Iroquois,EA027-5,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +29754,Ac35,EA027,Iroquois,EA027-5,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +29755,Ac36,EA027,Iroquois,EA027-5,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +29756,Ac37,EA027,Iroquois,EA027-5,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +29757,Ac38,EA027,Iroquois,EA027-5,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +29758,Ac39,EA027,?,EA027-NA,,,,,, +29759,Ac4,EA027,Hawaiian,EA027-4,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +29760,Ac40,EA027,?,EA027-NA,,,,,, +29761,Ac41,EA027,Iroquois,EA027-5,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +29762,Ac42,EA027,?,EA027-NA,,,,,, +29763,Ac43,EA027,?,EA027-NA,,,,,, +29764,Ac5,EA027,Iroquois,EA027-5,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +29765,Ac6,EA027,Iroquois,EA027-5,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +29766,Ac7,EA027,Iroquois,EA027-5,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +29767,Ac8,EA027,?,EA027-NA,,,,,, +29768,Ac9,EA027,Iroquois,EA027-5,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +29769,Ad1,EA027,Descriptive,EA027-2,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +29770,Ad10,EA027,Hawaiian,EA027-4,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +29771,Ad11,EA027,Iroquois,EA027-5,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +29772,Ad12,EA027,?,EA027-NA,,,,,, +29773,Ad13,EA027,Iroquois,EA027-5,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +29774,Ad14,EA027,Crow,EA027-1,But Beidelman reports Iroquois,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +29775,Ad15,EA027,?,EA027-NA,,,,,, +29776,Ad16,EA027,Hawaiian,EA027-4,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +29777,Ad17,EA027,?,EA027-NA,,,,,, +29778,Ad18,EA027,?,EA027-NA,,,,,, +29779,Ad19,EA027,Iroquois,EA027-5,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +29780,Ad2,EA027,Omaha,EA027-6,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +29781,Ad20,EA027,Iroquois,EA027-5,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +29782,Ad21,EA027,Sudanese,EA027-7,,maurice193538,,1930,EthnographicAtlas_1967_p66, +29783,Ad22,EA027,Crow,EA027-1,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +29784,Ad23,EA027,Iroquois,EA027-5,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +29785,Ad24,EA027,Iroquois,EA027-5,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +29786,Ad25,EA027,?,EA027-NA,,,,,, +29787,Ad26,EA027,Hawaiian,EA027-4,,sick1916,,1910,EthnographicAtlas_1967_p66, +29788,Ad27,EA027,Iroquois,EA027-5,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +29789,Ad28,EA027,?,EA027-NA,,,,,, +29790,Ad29,EA027,Hawaiian,EA027-4,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +29791,Ad3,EA027,Omaha,EA027-6,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +29792,Ad30,EA027,?,EA027-NA,,,,,, +29793,Ad31,EA027,?,EA027-NA,,,,,, +29794,Ad32,EA027,Sudanese,EA027-7,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +29795,Ad33,EA027,Hawaiian,EA027-4,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +29796,Ad34,EA027,?,EA027-NA,Conflicting evidence; perhaps Omaha,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +29797,Ad35,EA027,?,EA027-NA,,,,,, +29798,Ad36,EA027,?,EA027-NA,,,,,, +29799,Ad37,EA027,Omaha,EA027-6,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +29800,Ad38,EA027,Iroquois,EA027-5,Inferred from specific statements that cousin marriages are allowed and that there are distinct terms for male and female cousins,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +29801,Ad39,EA027,?,EA027-NA,,,,,, +29802,Ad4,EA027,Omaha,EA027-6,Entry follows Middleton; Sluiter reports a mixture of Hawaiian and Eskimo terms,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +29803,Ad40,EA027,?,EA027-NA,,,,,, +29804,Ad41,EA027,Descriptive,EA027-2,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +29805,Ad42,EA027,Omaha,EA027-6,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +29806,Ad43,EA027,Hawaiian,EA027-4,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +29807,Ad44,EA027,Iroquois,EA027-5,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +29808,Ad45,EA027,Hawaiian,EA027-4,But Descriptive for the Hima,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +29809,Ad46,EA027,Omaha,EA027-6,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +29810,Ad47,EA027,Iroquois,EA027-5,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +29811,Ad48,EA027,?,EA027-NA,,,,,, +29812,Ad49,EA027,?,EA027-NA,,,,,, +29813,Ad5,EA027,Crow,EA027-1,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +29814,Ad50,EA027,Iroquois,EA027-5,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +29815,Ad51,EA027,Iroquois,EA027-5,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +29816,Ad6,EA027,Iroquois,EA027-5,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +29817,Ad7,EA027,Iroquois,EA027-5,For cross-cousins of opposite sex; conflicting data for those of the same sex,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +29818,Ad8,EA027,Iroquois,EA027-5,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +29819,Ad9,EA027,Hawaiian,EA027-4,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +29820,Ae1,EA027,Omaha,EA027-6,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +29821,Ae10,EA027,Iroquois,EA027-5,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +29822,Ae11,EA027,Hawaiian,EA027-4,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +29823,Ae12,EA027,Iroquois,EA027-5,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +29824,Ae13,EA027,Iroquois,EA027-5,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +29825,Ae14,EA027,Iroquois,EA027-5,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +29826,Ae15,EA027,Iroquois,EA027-5,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +29827,Ae16,EA027,?,EA027-NA,,,,,, +29828,Ae17,EA027,Iroquois,EA027-5,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +29829,Ae18,EA027,?,EA027-NA,,,,,, +29830,Ae19,EA027,Iroquois,EA027-5,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +29831,Ae2,EA027,?,EA027-NA,,,,,, +29832,Ae20,EA027,?,EA027-NA,,,,,, +29833,Ae21,EA027,?,EA027-NA,,,,,, +29834,Ae22,EA027,Iroquois,EA027-5,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +29835,Ae23,EA027,?,EA027-NA,,,,,, +29836,Ae24,EA027,Crow,EA027-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +29837,Ae25,EA027,?,EA027-NA,,,,,, +29838,Ae26,EA027,Hawaiian,EA027-4,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +29839,Ae27,EA027,?,EA027-NA,,,,,, +29840,Ae28,EA027,?,EA027-NA,,,,,, +29841,Ae29,EA027,Hawaiian,EA027-4,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +29842,Ae3,EA027,Omaha,EA027-6,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +29843,Ae30,EA027,?,EA027-NA,,,,,, +29844,Ae31,EA027,?,EA027-NA,,,,,, +29845,Ae32,EA027,?,EA027-NA,,,,,, +29846,Ae33,EA027,?,EA027-NA,,,,,, +29847,Ae34,EA027,?,EA027-NA,,,,,, +29848,Ae35,EA027,?,EA027-NA,,,,,, +29849,Ae36,EA027,?,EA027-NA,,,,,, +29850,Ae37,EA027,?,EA027-NA,,,,,, +29851,Ae38,EA027,?,EA027-NA,,,,,, +29852,Ae39,EA027,Mixed,EA027-8,"Sibling terms extended to FaBrCh, but a special term for all other cousins",burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +29853,Ae4,EA027,Crow,EA027-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +29854,Ae40,EA027,?,EA027-NA,,,,,, +29855,Ae41,EA027,?,EA027-NA,,,,,, +29856,Ae42,EA027,?,EA027-NA,,,,,, +29857,Ae43,EA027,?,EA027-NA,,,,,, +29858,Ae44,EA027,Hawaiian,EA027-4,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +29859,Ae45,EA027,?,EA027-NA,,,,,, +29860,Ae46,EA027,?,EA027-NA,,,,,, +29861,Ae47,EA027,?,EA027-NA,,,,,, +29862,Ae48,EA027,?,EA027-NA,,,,,, +29863,Ae49,EA027,?,EA027-NA,,,,,, +29864,Ae5,EA027,?,EA027-NA,,,,,, +29865,Ae50,EA027,?,EA027-NA,,,,,, +29866,Ae51,EA027,?,EA027-NA,,,,,, +29867,Ae52,EA027,?,EA027-NA,,,,,, +29868,Ae53,EA027,?,EA027-NA,,,,,, +29869,Ae54,EA027,?,EA027-NA,,,,,, +29870,Ae55,EA027,Hawaiian,EA027-4,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +29871,Ae56,EA027,?,EA027-NA,,,,,, +29872,Ae57,EA027,?,EA027-NA,,,,,, +29873,Ae58,EA027,?,EA027-NA,,,,,, +29874,Ae59,EA027,?,EA027-NA,,,,,, +29875,Ae6,EA027,?,EA027-NA,,,,,, +29876,Ae7,EA027,Hawaiian,EA027-4,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +29877,Ae8,EA027,Iroquois,EA027-5,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +29878,Ae9,EA027,?,EA027-NA,,,,,, +29879,Af1,EA027,Descriptive,EA027-2,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +29880,Af10,EA027,Omaha,EA027-6,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +29881,Af11,EA027,?,EA027-NA,,,,,, +29882,Af12,EA027,Crow,EA027-1,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +29883,Af13,EA027,Omaha,EA027-6,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +29884,Af14,EA027,Hawaiian,EA027-4,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +29885,Af15,EA027,?,EA027-NA,,,,,, +29886,Af16,EA027,?,EA027-NA,,,,,, +29887,Af17,EA027,?,EA027-NA,,,,,, +29888,Af18,EA027,?,EA027-NA,,,,,, +29889,Af19,EA027,Descriptive,EA027-2,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +29890,Af2,EA027,Hawaiian,EA027-4,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +29891,Af20,EA027,Descriptive,EA027-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +29892,Af21,EA027,?,EA027-NA,,,,,, +29893,Af22,EA027,?,EA027-NA,,,,,, +29894,Af23,EA027,?,EA027-NA,,,,,, +29895,Af24,EA027,Hawaiian,EA027-4,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +29896,Af25,EA027,Hawaiian,EA027-4,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +29897,Af26,EA027,?,EA027-NA,,,,,, +29898,Af27,EA027,?,EA027-NA,,,,,, +29899,Af28,EA027,Omaha,EA027-6,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +29900,Af29,EA027,?,EA027-NA,,,,,, +29901,Af3,EA027,Descriptive,EA027-2,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +29902,Af30,EA027,?,EA027-NA,,,,,, +29903,Af31,EA027,?,EA027-NA,,,,,, +29904,Af32,EA027,Hawaiian,EA027-4,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29905,Af33,EA027,Hawaiian,EA027-4,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29906,Af34,EA027,Hawaiian,EA027-4,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29907,Af35,EA027,?,EA027-NA,,,,,, +29908,Af36,EA027,Hawaiian,EA027-4,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +29909,Af37,EA027,?,EA027-NA,,,,,, +29910,Af38,EA027,Crow,EA027-1,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +29911,Af39,EA027,?,EA027-NA,,,,,, +29912,Af4,EA027,Iroquois,EA027-5,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +29913,Af40,EA027,?,EA027-NA,,,,,, +29914,Af41,EA027,?,EA027-NA,,,,,, +29915,Af42,EA027,Descriptive,EA027-2,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +29916,Af43,EA027,Hawaiian,EA027-4,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +29917,Af44,EA027,?,EA027-NA,,,,,, +29918,Af45,EA027,?,EA027-NA,,,,,, +29919,Af46,EA027,?,EA027-NA,,,,,, +29920,Af47,EA027,?,EA027-NA,,,,,, +29921,Af48,EA027,?,EA027-NA,,,,,, +29922,Af49,EA027,?,EA027-NA,,,,,, +29923,Af5,EA027,Hawaiian,EA027-4,But Crosby reports a special term for MoBrDa,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +29924,Af50,EA027,?,EA027-NA,,,,,, +29925,Af51,EA027,?,EA027-NA,,,,,, +29926,Af52,EA027,?,EA027-NA,,,,,, +29927,Af53,EA027,?,EA027-NA,,,,,, +29928,Af54,EA027,?,EA027-NA,,,,,, +29929,Af55,EA027,Hawaiian,EA027-4,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +29930,Af56,EA027,?,EA027-NA,,,,,, +29931,Af57,EA027,Eskimo,EA027-3,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +29932,Af58,EA027,Omaha,EA027-6,Entry follows Ronnefelt; Thomas reports Hawaiian and McCulloch Sudanese,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +29933,Af6,EA027,Hawaiian,EA027-4,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +29934,Af7,EA027,Hawaiian,EA027-4,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +29935,Af8,EA027,Hawaiian,EA027-4,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +29936,Af9,EA027,?,EA027-NA,,,,,, +29937,Ag1,EA027,Iroquois,EA027-5,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +29938,Ag10,EA027,Iroquois,EA027-5,"For female cross-cousins, but Omaha for male cross-cousins",froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +29939,Ag11,EA027,Crow,EA027-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +29940,Ag12,EA027,Hawaiian,EA027-4,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +29941,Ag13,EA027,Hawaiian,EA027-4,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +29942,Ag14,EA027,?,EA027-NA,,,,,, +29943,Ag15,EA027,?,EA027-NA,,,,,, +29944,Ag16,EA027,?,EA027-NA,,,,,, +29945,Ag17,EA027,?,EA027-NA,,,,,, +29946,Ag18,EA027,?,EA027-NA,,,,,, +29947,Ag19,EA027,?,EA027-NA,,,,,, +29948,Ag2,EA027,Hawaiian,EA027-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +29949,Ag20,EA027,?,EA027-NA,,,,,, +29950,Ag21,EA027,?,EA027-NA,,,,,, +29951,Ag22,EA027,?,EA027-NA,,,,,, +29952,Ag23,EA027,?,EA027-NA,,,,,, +29953,Ag24,EA027,?,EA027-NA,Sudanese if a confused report by Thomas is to be accepted,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +29954,Ag25,EA027,?,EA027-NA,,,,,, +29955,Ag26,EA027,Iroquois,EA027-5,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +29956,Ag27,EA027,?,EA027-NA,,,,,, +29957,Ag28,EA027,?,EA027-NA,,,,,, +29958,Ag29,EA027,?,EA027-NA,,,,,, +29959,Ag3,EA027,Iroquois,EA027-5,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +29960,Ag30,EA027,?,EA027-NA,,,,,, +29961,Ag31,EA027,?,EA027-NA,,,,,, +29962,Ag32,EA027,?,EA027-NA,,,,,, +29963,Ag33,EA027,Crow,EA027-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +29964,Ag34,EA027,?,EA027-NA,,,,,, +29965,Ag35,EA027,?,EA027-NA,,,,,, +29966,Ag36,EA027,Crow,EA027-1,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +29967,Ag37,EA027,Hawaiian,EA027-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +29968,Ag38,EA027,Hawaiian,EA027-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +29969,Ag39,EA027,Hawaiian,EA027-4,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +29970,Ag4,EA027,Hawaiian,EA027-4,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +29971,Ag40,EA027,Hawaiian,EA027-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +29972,Ag41,EA027,Hawaiian,EA027-4,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +29973,Ag42,EA027,?,EA027-NA,,,,,, +29974,Ag43,EA027,?,EA027-NA,,,,,, +29975,Ag44,EA027,Hawaiian,EA027-4,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +29976,Ag45,EA027,Omaha,EA027-6,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +29977,Ag46,EA027,Hawaiian,EA027-4,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +29978,Ag47,EA027,Descriptive,EA027-2,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +29979,Ag48,EA027,?,EA027-NA,,,,,, +29980,Ag49,EA027,?,EA027-NA,,,,,, +29981,Ag5,EA027,Crow,EA027-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +29982,Ag50,EA027,?,EA027-NA,,,,,, +29983,Ag51,EA027,?,EA027-NA,,,,,, +29984,Ag52,EA027,?,EA027-NA,,,,,, +29985,Ag53,EA027,Hawaiian,EA027-4,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +29986,Ag54,EA027,Iroquois,EA027-5,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +29987,Ag6,EA027,Iroquois,EA027-5,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +29988,Ag7,EA027,?,EA027-NA,,,,,, +29989,Ag8,EA027,?,EA027-NA,,,,,, +29990,Ag9,EA027,Iroquois,EA027-5,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +29991,Ah1,EA027,Hawaiian,EA027-4,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +29992,Ah10,EA027,Hawaiian,EA027-4,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +29993,Ah11,EA027,?,EA027-NA,,,,,, +29994,Ah12,EA027,?,EA027-NA,Possibly Sudanese on basis of incomplete data,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +29995,Ah13,EA027,?,EA027-NA,,,,,, +29996,Ah14,EA027,?,EA027-NA,,,,,, +29997,Ah15,EA027,Hawaiian,EA027-4,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +29998,Ah16,EA027,Hawaiian,EA027-4,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +29999,Ah17,EA027,Omaha,EA027-6,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +30000,Ah18,EA027,?,EA027-NA,,,,,, +30001,Ah19,EA027,Omaha,EA027-6,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +30002,Ah2,EA027,Hawaiian,EA027-4,,meek1931a,,1920,EthnographicAtlas_1967_p74, +30003,Ah20,EA027,Hawaiian,EA027-4,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +30004,Ah21,EA027,Iroquois,EA027-5,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30005,Ah22,EA027,?,EA027-NA,,,,,, +30006,Ah23,EA027,Hawaiian,EA027-4,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30007,Ah24,EA027,Hawaiian,EA027-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30008,Ah25,EA027,?,EA027-NA,,,,,, +30009,Ah26,EA027,Crow,EA027-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30010,Ah27,EA027,?,EA027-NA,,,,,, +30011,Ah28,EA027,Crow,EA027-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +30012,Ah29,EA027,Crow,EA027-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30013,Ah3,EA027,Hawaiian,EA027-4,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +30014,Ah30,EA027,Crow,EA027-1,,meek1931b,,1920,EthnographicAtlas_1967_p74, +30015,Ah31,EA027,Hawaiian,EA027-4,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +30016,Ah32,EA027,Iroquois,EA027-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30017,Ah33,EA027,Hawaiian,EA027-4,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +30018,Ah34,EA027,Hawaiian,EA027-4,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +30019,Ah35,EA027,Iroquois,EA027-5,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30020,Ah36,EA027,?,EA027-NA,,,,,, +30021,Ah37,EA027,Hawaiian,EA027-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30022,Ah38,EA027,?,EA027-NA,,,,,, +30023,Ah39,EA027,?,EA027-NA,,,,,, +30024,Ah4,EA027,Hawaiian,EA027-4,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +30025,Ah5,EA027,Hawaiian,EA027-4,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +30026,Ah6,EA027,Hawaiian,EA027-4,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +30027,Ah7,EA027,Omaha,EA027-6,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +30028,Ah8,EA027,?,EA027-NA,,,,,, +30029,Ah9,EA027,Hawaiian,EA027-4,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +30030,Ai1,EA027,Omaha,EA027-6,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +30031,Ai10,EA027,Hawaiian,EA027-4,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +30032,Ai11,EA027,Hawaiian,EA027-4,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +30033,Ai12,EA027,?,EA027-NA,,,,,, +30034,Ai13,EA027,?,EA027-NA,,,,,, +30035,Ai14,EA027,?,EA027-NA,,,,,, +30036,Ai15,EA027,?,EA027-NA,,,,,, +30037,Ai16,EA027,?,EA027-NA,,,,,, +30038,Ai17,EA027,?,EA027-NA,,,,,, +30039,Ai18,EA027,?,EA027-NA,,,,,, +30040,Ai19,EA027,?,EA027-NA,,,,,, +30041,Ai2,EA027,?,EA027-NA,,,,,, +30042,Ai20,EA027,?,EA027-NA,,,,,, +30043,Ai21,EA027,?,EA027-NA,,,,,, +30044,Ai22,EA027,?,EA027-NA,,,,,, +30045,Ai23,EA027,?,EA027-NA,,,,,, +30046,Ai24,EA027,?,EA027-NA,,,,,, +30047,Ai25,EA027,?,EA027-NA,,,,,, +30048,Ai26,EA027,Omaha,EA027-6,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +30049,Ai27,EA027,Eskimo,EA027-3,"Based on a dubious report of a single term for ""cousin""",czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +30050,Ai28,EA027,?,EA027-NA,"From a possibly dubious report of a single term for ""male cousin""",delhaise1912,,1910,EthnographicAtlas_1967_p74, +30051,Ai29,EA027,?,EA027-NA,,,,,, +30052,Ai3,EA027,Descriptive,EA027-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +30053,Ai30,EA027,?,EA027-NA,Reliability perhaps doubtful,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +30054,Ai31,EA027,?,EA027-NA,,,,,, +30055,Ai32,EA027,?,EA027-NA,,,,,, +30056,Ai33,EA027,?,EA027-NA,,,,,, +30057,Ai34,EA027,?,EA027-NA,,,,,, +30058,Ai35,EA027,?,EA027-NA,,,,,, +30059,Ai36,EA027,?,EA027-NA,,,,,, +30060,Ai37,EA027,Hawaiian,EA027-4,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +30061,Ai38,EA027,Descriptive,EA027-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +30062,Ai39,EA027,Iroquois,EA027-5,,nadel1947,,1940,EthnographicAtlas_1967_p74, +30063,Ai4,EA027,Hawaiian,EA027-4,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +30064,Ai40,EA027,Descriptive,EA027-2,,nadel1947,,1940,EthnographicAtlas_1967_p74, +30065,Ai41,EA027,Descriptive,EA027-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +30066,Ai42,EA027,Hawaiian,EA027-4,But Descriptive for MoBrCh,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +30067,Ai43,EA027,Descriptive,EA027-2,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +30068,Ai44,EA027,?,EA027-NA,,,,,, +30069,Ai45,EA027,?,EA027-NA,,,,,, +30070,Ai46,EA027,?,EA027-NA,,,,,, +30071,Ai47,EA027,?,EA027-NA,,,,,, +30072,Ai5,EA027,Hawaiian,EA027-4,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +30073,Ai6,EA027,Descriptive,EA027-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +30074,Ai7,EA027,?,EA027-NA,,,,,, +30075,Ai8,EA027,Descriptive,EA027-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +30076,Ai9,EA027,Hawaiian,EA027-4,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +30077,Aj1,EA027,Hawaiian,EA027-4,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +30078,Aj10,EA027,Omaha,EA027-6,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +30079,Aj11,EA027,Descriptive,EA027-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +30080,Aj12,EA027,Eskimo,EA027-3,But half-sibling terms are applied to FaBrCh,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +30081,Aj13,EA027,?,EA027-NA,,,,,, +30082,Aj14,EA027,?,EA027-NA,,,,,, +30083,Aj15,EA027,?,EA027-NA,,,,,, +30084,Aj16,EA027,?,EA027-NA,,,,,, +30085,Aj17,EA027,Descriptive,EA027-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +30086,Aj18,EA027,?,EA027-NA,,,,,, +30087,Aj19,EA027,?,EA027-NA,,,,,, +30088,Aj2,EA027,Omaha,EA027-6,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +30089,Aj20,EA027,?,EA027-NA,,,,,, +30090,Aj21,EA027,?,EA027-NA,,,,,, +30091,Aj22,EA027,?,EA027-NA,,,,,, +30092,Aj23,EA027,Iroquois,EA027-5,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +30093,Aj24,EA027,?,EA027-NA,,,,,, +30094,Aj25,EA027,?,EA027-NA,,,,,, +30095,Aj26,EA027,Iroquois,EA027-5,But with certain Omaha features,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +30096,Aj27,EA027,Omaha,EA027-6,"Probably, though possibly Sudanese",roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +30097,Aj28,EA027,?,EA027-NA,,,,,, +30098,Aj29,EA027,?,EA027-NA,,,,,, +30099,Aj3,EA027,Descriptive,EA027-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +30100,Aj30,EA027,?,EA027-NA,,,,,, +30101,Aj31,EA027,?,EA027-NA,,,,,, +30102,Aj4,EA027,Omaha,EA027-6,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +30103,Aj5,EA027,Descriptive,EA027-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +30104,Aj6,EA027,Descriptive,EA027-2,But Omaha for MoBrDa,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +30105,Aj7,EA027,Omaha,EA027-6,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +30106,Aj8,EA027,Omaha,EA027-6,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +30107,Aj9,EA027,Iroquois,EA027-5,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +30108,Ca1,EA027,Omaha,EA027-6,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +30109,Ca10,EA027,Descriptive,EA027-2,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +30110,Ca11,EA027,Sudanese,EA027-7,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +30111,Ca12,EA027,?,EA027-NA,,,,,, +30112,Ca13,EA027,?,EA027-NA,,,,,, +30113,Ca14,EA027,?,EA027-NA,,,,,, +30114,Ca15,EA027,?,EA027-NA,,,,,, +30115,Ca16,EA027,?,EA027-NA,,,,,, +30116,Ca17,EA027,?,EA027-NA,,,,,, +30117,Ca18,EA027,?,EA027-NA,,,,,, +30118,Ca19,EA027,?,EA027-NA,,,,,, +30119,Ca2,EA027,Descriptive,EA027-2,Performed by slaves,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +30120,Ca20,EA027,?,EA027-NA,,,,,, +30121,Ca21,EA027,?,EA027-NA,,,,,, +30122,Ca22,EA027,?,EA027-NA,,,,,, +30123,Ca23,EA027,?,EA027-NA,,,,,, +30124,Ca24,EA027,?,EA027-NA,,,,,, +30125,Ca25,EA027,?,EA027-NA,,,,,, +30126,Ca26,EA027,?,EA027-NA,,,,,, +30127,Ca27,EA027,?,EA027-NA,,,,,, +30128,Ca28,EA027,?,EA027-NA,,,,,, +30129,Ca29,EA027,?,EA027-NA,,,,,, +30130,Ca3,EA027,Descriptive,EA027-2,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +30131,Ca30,EA027,Eskimo,EA027-3,"If Bieber is correct in reporting one term for ""male cousin"" and another for ""female cousin""",bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +30132,Ca31,EA027,?,EA027-NA,,,,,, +30133,Ca32,EA027,?,EA027-NA,,,,,, +30134,Ca33,EA027,?,EA027-NA,,,,,, +30135,Ca34,EA027,?,EA027-NA,,,,,, +30136,Ca35,EA027,?,EA027-NA,,,,,, +30137,Ca36,EA027,?,EA027-NA,,,,,, +30138,Ca37,EA027,?,EA027-NA,,,,,, +30139,Ca38,EA027,Descriptive,EA027-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +30140,Ca39,EA027,Eskimo,EA027-3,But sibling terms are applied to FaBrCh,lewis1965b,,1930,EthnographicAtlas_1967_p78, +30141,Ca4,EA027,Crow,EA027-1,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +30142,Ca40,EA027,?,EA027-NA,,,,,, +30143,Ca41,EA027,?,EA027-NA,,,,,, +30144,Ca42,EA027,?,EA027-NA,,,,,, +30145,Ca43,EA027,?,EA027-NA,,,,,, +30146,Ca5,EA027,Descriptive,EA027-2,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +30147,Ca6,EA027,Descriptive,EA027-2,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +30148,Ca7,EA027,Eskimo,EA027-3,But separate terms for an uncle's child and an aunt's child,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +30149,Ca8,EA027,Descriptive,EA027-2,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +30150,Ca9,EA027,?,EA027-NA,,,,,, +30151,Cb1,EA027,Hawaiian,EA027-4,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +30152,Cb10,EA027,Hawaiian,EA027-4,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +30153,Cb11,EA027,?,EA027-NA,,,,,, +30154,Cb12,EA027,?,EA027-NA,,,,,, +30155,Cb13,EA027,?,EA027-NA,,,,,, +30156,Cb14,EA027,?,EA027-NA,,,,,, +30157,Cb15,EA027,Descriptive,EA027-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +30158,Cb16,EA027,?,EA027-NA,,,,,, +30159,Cb17,EA027,Hawaiian,EA027-4,But Descriptive for parallel cousins,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +30160,Cb18,EA027,?,EA027-NA,,,,,, +30161,Cb19,EA027,?,EA027-NA,,,,,, +30162,Cb2,EA027,Hawaiian,EA027-4,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +30163,Cb20,EA027,?,EA027-NA,,,,,, +30164,Cb21,EA027,Iroquois,EA027-5,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +30165,Cb22,EA027,?,EA027-NA,,,,,, +30166,Cb23,EA027,?,EA027-NA,,,,,, +30167,Cb24,EA027,?,EA027-NA,,,,,, +30168,Cb25,EA027,?,EA027-NA,,,,,, +30169,Cb26,EA027,Iroquois,EA027-5,Also commonly Hawaiian,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +30170,Cb27,EA027,Crow,EA027-1,Or alternatively Hawaiian,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30171,Cb28,EA027,Hawaiian,EA027-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30172,Cb29,EA027,Hawaiian,EA027-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +30173,Cb3,EA027,Iroquois,EA027-5,Performed by slaves,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +30174,Cb4,EA027,Descriptive,EA027-2,,reid1930,,1920,EthnographicAtlas_1967_p78, +30175,Cb5,EA027,Iroquois,EA027-5,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +30176,Cb6,EA027,Iroquois,EA027-5,,woodnd,,1920,EthnographicAtlas_1967_p78, +30177,Cb7,EA027,Iroquois,EA027-5,"For cross-cousins of opposite sex, but Hawaiian for those of same sex",meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +30178,Cb8,EA027,Hawaiian,EA027-4,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +30179,Cb9,EA027,Iroquois,EA027-5,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +30180,Cc1,EA027,Descriptive,EA027-2,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +30181,Cc10,EA027,Iroquois,EA027-5,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +30182,Cc11,EA027,?,EA027-NA,,,,,, +30183,Cc12,EA027,?,EA027-NA,,,,,, +30184,Cc13,EA027,?,EA027-NA,,,,,, +30185,Cc14,EA027,?,EA027-NA,,,,,, +30186,Cc15,EA027,?,EA027-NA,,,,,, +30187,Cc16,EA027,Descriptive,EA027-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +30188,Cc17,EA027,Descriptive,EA027-2,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +30189,Cc18,EA027,?,EA027-NA,,,,,, +30190,Cc19,EA027,?,EA027-NA,,,,,, +30191,Cc2,EA027,Iroquois,EA027-5,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +30192,Cc20,EA027,?,EA027-NA,,,,,, +30193,Cc3,EA027,Descriptive,EA027-2,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +30194,Cc4,EA027,?,EA027-NA,,,,,, +30195,Cc5,EA027,Iroquois,EA027-5,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +30196,Cc6,EA027,Descriptive,EA027-2,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +30197,Cc7,EA027,Descriptive,EA027-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30198,Cc8,EA027,?,EA027-NA,,,,,, +30199,Cc9,EA027,Iroquois,EA027-5,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +30200,Cd1,EA027,Descriptive,EA027-2,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +30201,Cd10,EA027,Descriptive,EA027-2,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +30202,Cd11,EA027,?,EA027-NA,,,,,, +30203,Cd12,EA027,Descriptive,EA027-2,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +30204,Cd13,EA027,?,EA027-NA,,,,,, +30205,Cd14,EA027,?,EA027-NA,,,,,, +30206,Cd15,EA027,?,EA027-NA,,,,,, +30207,Cd16,EA027,?,EA027-NA,,,,,, +30208,Cd17,EA027,?,EA027-NA,,,,,, +30209,Cd18,EA027,Descriptive,EA027-2,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +30210,Cd19,EA027,?,EA027-NA,,,,,, +30211,Cd2,EA027,Descriptive,EA027-2,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +30212,Cd20,EA027,?,EA027-NA,,,,,, +30213,Cd21,EA027,?,EA027-NA,,,,,, +30214,Cd3,EA027,?,EA027-NA,,,,,, +30215,Cd4,EA027,?,EA027-NA,,,,,, +30216,Cd5,EA027,?,EA027-NA,,,,,, +30217,Cd6,EA027,?,EA027-NA,,,,,, +30218,Cd7,EA027,?,EA027-NA,,,,,, +30219,Cd8,EA027,?,EA027-NA,,,,,, +30220,Cd9,EA027,?,EA027-NA,,,,,, +30221,Ce1,EA027,Eskimo,EA027-3,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +30222,Ce2,EA027,Eskimo,EA027-3,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +30223,Ce3,EA027,Descriptive,EA027-2,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +30224,Ce4,EA027,Eskimo,EA027-3,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30225,Ce5,EA027,Eskimo,EA027-3,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +30226,Ce6,EA027,Eskimo,EA027-3,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +30227,Ce7,EA027,Eskimo,EA027-3,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +30228,Ce8,EA027,Eskimo,EA027-3,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +30229,Cf1,EA027,Eskimo,EA027-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +30230,Cf2,EA027,Eskimo,EA027-3,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +30231,Cf3,EA027,Eskimo,EA027-3,,munch1945,,1930,EthnographicAtlas_1967_p82, +30232,Cf4,EA027,Eskimo,EA027-3,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +30233,Cf5,EA027,Eskimo,EA027-3,,miner1939,,1930,EthnographicAtlas_1967_p82, +30234,Cg1,EA027,Eskimo,EA027-3,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +30235,Cg2,EA027,Descriptive,EA027-2,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +30236,Cg3,EA027,Eskimo,EA027-3,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +30237,Cg4,EA027,Eskimo,EA027-3,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +30238,Cg5,EA027,Eskimo,EA027-3,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +30239,Ch1,EA027,Hawaiian,EA027-4,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +30240,Ch10,EA027,Eskimo,EA027-3,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +30241,Ch11,EA027,Eskimo,EA027-3,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +30242,Ch2,EA027,Eskimo,EA027-3,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +30243,Ch3,EA027,Eskimo,EA027-3,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +30244,Ch4,EA027,?,EA027-NA,,,,,, +30245,Ch5,EA027,Descriptive,EA027-2,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +30246,Ch6,EA027,Eskimo,EA027-3,,ember1954,,1910,EthnographicAtlas_1967_p82, +30247,Ch7,EA027,Eskimo,EA027-3,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +30248,Ch8,EA027,Eskimo,EA027-3,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +30249,Ch9,EA027,Eskimo,EA027-3,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +30250,Ci1,EA027,Omaha,EA027-6,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +30251,Ci10,EA027,Descriptive,EA027-2,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +30252,Ci11,EA027,Mixed,EA027-8,"One term for FaSiCh and MoSiCh, a second for FaBrCh, and a third for MoBrCh",barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +30253,Ci12,EA027,?,EA027-NA,,,,,, +30254,Ci2,EA027,?,EA027-NA,,,,,, +30255,Ci3,EA027,Eskimo,EA027-3,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +30256,Ci4,EA027,Eskimo,EA027-3,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +30257,Ci5,EA027,Descriptive,EA027-2,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +30258,Ci6,EA027,?,EA027-NA,,,,,, +30259,Ci7,EA027,?,EA027-NA,,,,,, +30260,Ci8,EA027,Descriptive,EA027-2,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +30261,Ci9,EA027,?,EA027-NA,,,,,, +30262,Cj1,EA027,Descriptive,EA027-2,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +30263,Cj10,EA027,Descriptive,EA027-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +30264,Cj2,EA027,Descriptive,EA027-2,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +30265,Cj3,EA027,Eskimo,EA027-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +30266,Cj4,EA027,?,EA027-NA,,,,,, +30267,Cj5,EA027,Descriptive,EA027-2,,dickson1949,,1930,EthnographicAtlas_1967_p86, +30268,Cj6,EA027,Descriptive,EA027-2,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +30269,Cj7,EA027,Descriptive,EA027-2,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +30270,Cj8,EA027,Descriptive,EA027-2,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +30271,Cj9,EA027,?,EA027-NA,,,,,, +30272,Ea1,EA027,Descriptive,EA027-2,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +30273,Ea10,EA027,Descriptive,EA027-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +30274,Ea11,EA027,Eskimo,EA027-3,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +30275,Ea12,EA027,Sudanese,EA027-7,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +30276,Ea13,EA027,Descriptive,EA027-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +30277,Ea2,EA027,Hawaiian,EA027-4,But a special term is used for FaBrCh if relations are not friendly,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +30278,Ea3,EA027,Descriptive,EA027-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +30279,Ea4,EA027,Descriptive,EA027-2,,barth1956b,,1950,EthnographicAtlas_1967_p86, +30280,Ea5,EA027,?,EA027-NA,,,,,, +30281,Ea6,EA027,?,EA027-NA,,,,,, +30282,Ea7,EA027,Descriptive,EA027-2,"But kin terms were obtained in Persian, not in Mongolian",schurmann1962,,1950,EthnographicAtlas_1967_p86, +30283,Ea8,EA027,Descriptive,EA027-2,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +30284,Ea9,EA027,Descriptive,EA027-2,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +30285,Eb1,EA027,Omaha,EA027-6,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +30286,Eb2,EA027,?,EA027-NA,,,,,, +30287,Eb3,EA027,Omaha,EA027-6,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +30288,Eb4,EA027,Iroquois,EA027-5,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +30289,Eb5,EA027,Sudanese,EA027-7,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +30290,Eb6,EA027,Mixed,EA027-8,One term for paternal cousin and a second for maternal cousin,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +30291,Eb7,EA027,Omaha,EA027-6,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +30292,Eb8,EA027,Omaha,EA027-6,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +30293,Ec1,EA027,Iroquois,EA027-5,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +30294,Ec10,EA027,Omaha,EA027-6,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +30295,Ec11,EA027,Hawaiian,EA027-4,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +30296,Ec2,EA027,Sudanese,EA027-7,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30297,Ec3,EA027,Eskimo,EA027-3,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +30298,Ec4,EA027,Eskimo,EA027-3,Or perhaps Hawaiian,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +30299,Ec5,EA027,Eskimo,EA027-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +30300,Ec6,EA027,?,EA027-NA,,,,,, +30301,Ec7,EA027,Descriptive,EA027-2,"For cross-cousins, but Hawaiian for parallel cousins",batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +30302,Ec8,EA027,?,EA027-NA,,,,,, +30303,Ec9,EA027,?,EA027-NA,,,,,, +30304,Ed1,EA027,Eskimo,EA027-3,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +30305,Ed10,EA027,Descriptive,EA027-2,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +30306,Ed13,EA027,Eskimo,EA027-3,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +30307,Ed14,EA027,?,EA027-NA,,,,,, +30308,Ed15a,EA027,Eskimo,EA027-3,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +30309,Ed15b,EA027,Hawaiian,EA027-4,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +30310,Ed16,EA027,Hawaiian,EA027-4,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +30311,Ed2,EA027,Descriptive,EA027-2,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +30312,Ed3,EA027,Iroquois,EA027-5,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +30313,Ed4,EA027,Hawaiian,EA027-4,"For all cousins except FaBrCh, a suffixed element meaning ""outside"" is added to the sibling term",mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +30314,Ed5,EA027,Eskimo,EA027-3,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30315,Ed6,EA027,Hawaiian,EA027-4,"Cousin terms are not reported, but elsewhere in Kwantung Province modified Hawaiian terminology is employed",kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +30316,Ed7,EA027,Eskimo,EA027-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +30317,Ed8,EA027,Descriptive,EA027-2,But sibling terms are used for FaBrCh,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +30318,Ed9,EA027,?,EA027-NA,,,,,, +30319,Ee1,EA027,?,EA027-NA,,,,,, +30320,Ee2,EA027,Hawaiian,EA027-4,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +30321,Ee3,EA027,Hawaiian,EA027-4,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +30322,Ee4,EA027,Eskimo,EA027-3,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +30323,Ee5,EA027,Descriptive,EA027-2,But with certain Iroquois features,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +30324,Ee6,EA027,Omaha,EA027-6,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +30325,Ee7,EA027,Mixed,EA027-8,"Two terms defined as ""paternal cousin"" and ""maternal cousin""",endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +30326,Ee8,EA027,?,EA027-NA,,,,,, +30327,Ef1,EA027,Descriptive,EA027-2,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +30328,Ef10,EA027,Descriptive,EA027-2,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30329,Ef11,EA027,Descriptive,EA027-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +30330,Ef2,EA027,Hawaiian,EA027-4,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +30331,Ef3,EA027,Hawaiian,EA027-4,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +30332,Ef4,EA027,Iroquois,EA027-5,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +30333,Ef5,EA027,Descriptive,EA027-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +30334,Ef6,EA027,Hawaiian,EA027-4,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +30335,Ef7,EA027,Hawaiian,EA027-4,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +30336,Ef8,EA027,Descriptive,EA027-2,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +30337,Ef9,EA027,Hawaiian,EA027-4,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30338,Eg1,EA027,Iroquois,EA027-5,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30339,Eg10,EA027,Iroquois,EA027-5,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +30340,Eg11,EA027,Iroquois,EA027-5,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +30341,Eg12,EA027,Iroquois,EA027-5,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +30342,Eg13,EA027,Iroquois,EA027-5,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30343,Eg14,EA027,Iroquois,EA027-5,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +30344,Eg2,EA027,Iroquois,EA027-5,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +30345,Eg3,EA027,Iroquois,EA027-5,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +30346,Eg4,EA027,Iroquois,EA027-5,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +30347,Eg5,EA027,Iroquois,EA027-5,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +30348,Eg6,EA027,Iroquois,EA027-5,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +30349,Eg7,EA027,Hawaiian,EA027-4,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +30350,Eg8,EA027,Hawaiian,EA027-4,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +30351,Eg9,EA027,Iroquois,EA027-5,,elwin1939,,1930,EthnographicAtlas_1967_p90, +30352,Eh1,EA027,Eskimo,EA027-3,"Entry follows Man, but Radcliffe-Brown reports Hawaiian",man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +30353,Eh10,EA027,?,EA027-NA,,,,,, +30354,Eh2,EA027,Hawaiian,EA027-4,"Marriage is also allowed with FaBaDa, but not MoSiDa",grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +30355,Eh3,EA027,Iroquois,EA027-5,But sibling terms are applied to cross-cousins of the same sex,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +30356,Eh4,EA027,Iroquois,EA027-5,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30357,Eh5,EA027,Eskimo,EA027-3,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +30358,Eh6,EA027,Iroquois,EA027-5,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +30359,Eh7,EA027,Hawaiian,EA027-4,But McLeod reports Descriptive in reference,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +30360,Eh8,EA027,Hawaiian,EA027-4,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +30361,Eh9,EA027,Hawaiian,EA027-4,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +30362,Ei1,EA027,Iroquois,EA027-5,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30363,Ei10,EA027,Descriptive,EA027-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +30364,Ei11,EA027,Mixed,EA027-8,Apparently Hawaiian except for marriageable cross-cousins,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +30365,Ei12,EA027,Omaha,EA027-6,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +30366,Ei13,EA027,Omaha,EA027-6,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +30367,Ei14,EA027,Omaha,EA027-6,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +30368,Ei15,EA027,Omaha,EA027-6,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +30369,Ei16,EA027,Omaha,EA027-6,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +30370,Ei17,EA027,Omaha,EA027-6,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +30371,Ei18,EA027,Eskimo,EA027-3,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +30372,Ei19,EA027,Omaha,EA027-6,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +30373,Ei2,EA027,Omaha,EA027-6,,mills1922,,1920,EthnographicAtlas_1967_p90, +30374,Ei20,EA027,Omaha,EA027-6,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +30375,Ei3,EA027,Hawaiian,EA027-4,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +30376,Ei4,EA027,Omaha,EA027-6,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +30377,Ei5,EA027,Iroquois,EA027-5,But Omaha for FaSiDa(ms) and MoBrSo(ws),leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +30378,Ei6,EA027,Sudanese,EA027-7,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +30379,Ei7,EA027,Eskimo,EA027-3,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +30380,Ei8,EA027,Iroquois,EA027-5,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +30381,Ei9,EA027,Iroquois,EA027-5,But Sudanese for male cross-cousins,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +30382,Ej1,EA027,Omaha,EA027-6,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +30383,Ej10,EA027,Crow,EA027-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +30384,Ej11,EA027,Hawaiian,EA027-4,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +30385,Ej12,EA027,?,EA027-NA,,,,,, +30386,Ej13,EA027,?,EA027-NA,,,,,, +30387,Ej14,EA027,Hawaiian,EA027-4,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30388,Ej15,EA027,Eskimo,EA027-3,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +30389,Ej16,EA027,Sudanese,EA027-7,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +30390,Ej2,EA027,Crow,EA027-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +30391,Ej3,EA027,Hawaiian,EA027-4,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +30392,Ej4,EA027,Hawaiian,EA027-4,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +30393,Ej5,EA027,Eskimo,EA027-3,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +30394,Ej6,EA027,Eskimo,EA027-3,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +30395,Ej7,EA027,Iroquois,EA027-5,But Sudanese for male cross-cousins,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +30396,Ej8,EA027,Hawaiian,EA027-4,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +30397,Ej9,EA027,Hawaiian,EA027-4,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +30398,Ia1,EA027,Hawaiian,EA027-4,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +30399,Ia10,EA027,Hawaiian,EA027-4,But Omaha in reference,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +30400,Ia11,EA027,Eskimo,EA027-3,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +30401,Ia12,EA027,Eskimo,EA027-3,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +30402,Ia13,EA027,Eskimo,EA027-3,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +30403,Ia14,EA027,Eskimo,EA027-3,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +30404,Ia15,EA027,Hawaiian,EA027-4,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +30405,Ia16,EA027,Eskimo,EA027-3,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +30406,Ia17,EA027,Hawaiian,EA027-4,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +30407,Ia18,EA027,Hawaiian,EA027-4,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +30408,Ia2,EA027,Eskimo,EA027-3,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +30409,Ia3,EA027,Hawaiian,EA027-4,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +30410,Ia4,EA027,Hawaiian,EA027-4,Eskimo terminology may also be used in certain contexts,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +30411,Ia5,EA027,Eskimo,EA027-3,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +30412,Ia6,EA027,Hawaiian,EA027-4,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30413,Ia7,EA027,Eskimo,EA027-3,,fox1954,,1950,EthnographicAtlas_1967_p90, +30414,Ia8,EA027,Eskimo,EA027-3,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +30415,Ia9,EA027,Eskimo,EA027-3,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +30416,Ib1,EA027,Eskimo,EA027-3,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30417,Ib2,EA027,Eskimo,EA027-3,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30418,Ib3,EA027,Hawaiian,EA027-4,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +30419,Ib4,EA027,Sudanese,EA027-7,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +30420,Ib5,EA027,Eskimo,EA027-3,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +30421,Ib6,EA027,Hawaiian,EA027-4,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +30422,Ib7,EA027,Eskimo,EA027-3,"As reported by Kruyt, but Loeb states that sibling terms are applied to FaBrCh",kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +30423,Ib8,EA027,?,EA027-NA,,,,,, +30424,Ib9,EA027,Hawaiian,EA027-4,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +30425,Ic1,EA027,Eskimo,EA027-3,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30426,Ic10,EA027,?,EA027-NA,,,,,, +30427,Ic11,EA027,?,EA027-NA,,,,,, +30428,Ic12,EA027,Eskimo,EA027-3,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +30429,Ic13,EA027,Iroquois,EA027-5,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +30430,Ic2,EA027,Hawaiian,EA027-4,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +30431,Ic3,EA027,Hawaiian,EA027-4,But Iroquois between male cross-cousins,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +30432,Ic4,EA027,Iroquois,EA027-5,For cross-cousins of opposite sex; cross-cousins of the same sex are called by sibling terms,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +30433,Ic5,EA027,Hawaiian,EA027-4,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +30434,Ic6,EA027,Hawaiian,EA027-4,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +30435,Ic7,EA027,?,EA027-NA,,,,,, +30436,Ic8,EA027,?,EA027-NA,,,,,, +30437,Ic9,EA027,?,EA027-NA,,,,,, +30438,Id1,EA027,Iroquois,EA027-5,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +30439,Id10,EA027,Iroquois,EA027-5,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +30440,Id11,EA027,Sudanese,EA027-7,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +30441,Id12,EA027,Sudanese,EA027-7,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +30442,Id13,EA027,Sudanese,EA027-7,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +30443,Id2,EA027,Sudanese,EA027-7,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +30444,Id3,EA027,Iroquois,EA027-5,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +30445,Id4,EA027,Iroquois,EA027-5,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +30446,Id5,EA027,Iroquois,EA027-5,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +30447,Id6,EA027,Iroquois,EA027-5,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +30448,Id7,EA027,Iroquois,EA027-5,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +30449,Id8,EA027,?,EA027-NA,,,,,, +30450,Id9,EA027,Iroquois,EA027-5,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +30451,Ie1,EA027,Iroquois,EA027-5,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30452,Ie10,EA027,Hawaiian,EA027-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +30453,Ie11,EA027,Iroquois,EA027-5,,bowers1964,,1950,EthnographicAtlas_1967_p94, +30454,Ie12,EA027,Omaha,EA027-6,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30455,Ie13,EA027,Iroquois,EA027-5,,landtman1927,,1920,EthnographicAtlas_1967_p94, +30456,Ie14,EA027,Iroquois,EA027-5,,haddon1908,,1900,EthnographicAtlas_1967_p94, +30457,Ie15,EA027,Iroquois,EA027-5,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30458,Ie16,EA027,Iroquois,EA027-5,,williams194041,,1940,EthnographicAtlas_1967_p94, +30459,Ie17,EA027,Iroquois,EA027-5,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +30460,Ie18,EA027,Hawaiian,EA027-4,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +30461,Ie19,EA027,Mixed,EA027-8,"Sibling terms are applied to FaBrCh, but there is a single term for all other cousins",vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +30462,Ie2,EA027,Iroquois,EA027-5,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +30463,Ie20,EA027,Hawaiian,EA027-4,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +30464,Ie21,EA027,Hawaiian,EA027-4,But Descriptive for FaSiCh,malinowski1916,,1900,EthnographicAtlas_1967_p94, +30465,Ie22,EA027,Hawaiian,EA027-4,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +30466,Ie23,EA027,Iroquois,EA027-5,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +30467,Ie24,EA027,Hawaiian,EA027-4,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +30468,Ie25,EA027,?,EA027-NA,,,,,, +30469,Ie26,EA027,Iroquois,EA027-5,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +30470,Ie27,EA027,Hawaiian,EA027-4,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +30471,Ie28,EA027,?,EA027-NA,,,,,, +30472,Ie29,EA027,Hawaiian,EA027-4,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30473,Ie3,EA027,Omaha,EA027-6,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30474,Ie30,EA027,Hawaiian,EA027-4,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +30475,Ie31,EA027,Iroquois,EA027-5,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +30476,Ie32,EA027,Hawaiian,EA027-4,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +30477,Ie33,EA027,Iroquois,EA027-5,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +30478,Ie34,EA027,Hawaiian,EA027-4,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +30479,Ie35,EA027,Omaha,EA027-6,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +30480,Ie36,EA027,Hawaiian,EA027-4,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +30481,Ie37,EA027,Omaha,EA027-6,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +30482,Ie38,EA027,Omaha,EA027-6,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +30483,Ie39,EA027,Hawaiian,EA027-4,Alternatively Iroquois,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +30484,Ie4,EA027,Iroquois,EA027-5,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30485,Ie5,EA027,Iroquois,EA027-5,,williams1936,,1930,EthnographicAtlas_1967_p94, +30486,Ie6,EA027,Iroquois,EA027-5,,held1947,,1930,EthnographicAtlas_1967_p94, +30487,Ie7,EA027,Iroquois,EA027-5,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +30488,Ie8,EA027,Hawaiian,EA027-4,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +30489,Ie9,EA027,Iroquois,EA027-5,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +30490,If1,EA027,Hawaiian,EA027-4,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30491,If10,EA027,Crow,EA027-1,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +30492,If11,EA027,Hawaiian,EA027-4,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +30493,If12,EA027,Iroquois,EA027-5,,mason1954,,1940,EthnographicAtlas_1967_p98, +30494,If13,EA027,Iroquois,EA027-5,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +30495,If14,EA027,Hawaiian,EA027-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +30496,If15,EA027,Hawaiian,EA027-4,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +30497,If16,EA027,Hawaiian,EA027-4,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +30498,If17,EA027,Iroquois,EA027-5,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +30499,If2,EA027,Crow,EA027-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +30500,If3,EA027,Iroquois,EA027-5,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +30501,If4,EA027,Hawaiian,EA027-4,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +30502,If5,EA027,Crow,EA027-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +30503,If6,EA027,Crow,EA027-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +30504,If7,EA027,Hawaiian,EA027-4,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +30505,If8,EA027,Eskimo,EA027-3,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +30506,If9,EA027,Crow,EA027-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +30507,Ig1,EA027,Hawaiian,EA027-4,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +30508,Ig10,EA027,Crow,EA027-1,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +30509,Ig11,EA027,Crow,EA027-1,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +30510,Ig12,EA027,Hawaiian,EA027-4,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +30511,Ig13,EA027,?,EA027-NA,,,,,, +30512,Ig14,EA027,Hawaiian,EA027-4,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +30513,Ig15,EA027,Iroquois,EA027-5,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +30514,Ig16,EA027,Hawaiian,EA027-4,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +30515,Ig17,EA027,Iroquois,EA027-5,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +30516,Ig18,EA027,Hawaiian,EA027-4,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +30517,Ig19,EA027,Iroquois,EA027-5,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +30518,Ig2,EA027,Crow,EA027-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +30519,Ig20,EA027,Iroquois,EA027-5,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +30520,Ig21,EA027,Iroquois,EA027-5,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +30521,Ig3,EA027,Iroquois,EA027-5,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +30522,Ig4,EA027,Iroquois,EA027-5,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +30523,Ig5,EA027,Iroquois,EA027-5,Crow terminology is used for FaSiCh after the death of the father,fortune1932b,,1920,EthnographicAtlas_1967_p98, +30524,Ig6,EA027,Hawaiian,EA027-4,,ivens1927,,1900,EthnographicAtlas_1967_p98, +30525,Ig7,EA027,Iroquois,EA027-5,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +30526,Ig8,EA027,Hawaiian,EA027-4,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +30527,Ig9,EA027,Mixed,EA027-8,"I between cross-cousins of the same sex, Crow between MoBrSo and FaSiDa, Hawaiian between FaSiSo and MoBrDa",fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +30528,Ih1,EA027,Crow,EA027-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +30529,Ih10,EA027,Iroquois,EA027-5,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30530,Ih11,EA027,Iroquois,EA027-5,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +30531,Ih12,EA027,Iroquois,EA027-5,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +30532,Ih13,EA027,Sudanese,EA027-7,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +30533,Ih14,EA027,Iroquois,EA027-5,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +30534,Ih2,EA027,Crow,EA027-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30535,Ih3,EA027,Iroquois,EA027-5,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +30536,Ih4,EA027,Iroquois,EA027-5,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30537,Ih5,EA027,Iroquois,EA027-5,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +30538,Ih6,EA027,Hawaiian,EA027-4,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +30539,Ih7,EA027,Hawaiian,EA027-4,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +30540,Ih8,EA027,Iroquois,EA027-5,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +30541,Ih9,EA027,Hawaiian,EA027-4,But optionally Iroquois,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30542,Ii1,EA027,Hawaiian,EA027-4,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +30543,Ii10,EA027,Iroquois,EA027-5,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +30544,Ii12,EA027,Hawaiian,EA027-4,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30545,Ii13,EA027,Hawaiian,EA027-4,,burrows1937,,1830,EthnographicAtlas_1967_p98, +30546,Ii14,EA027,Hawaiian,EA027-4,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +30547,Ii2,EA027,Hawaiian,EA027-4,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +30548,Ii3,EA027,Hawaiian,EA027-4,But Iroquois for cross-cousins of the opposite sex,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +30549,Ii4,EA027,Hawaiian,EA027-4,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +30550,Ii5,EA027,Hawaiian,EA027-4,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +30551,Ii6,EA027,Omaha,EA027-6,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +30552,Ii7,EA027,Hawaiian,EA027-4,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +30553,Ii8,EA027,Hawaiian,EA027-4,,burrows1936,,1840,EthnographicAtlas_1967_p98, +30554,Ii9,EA027,Hawaiian,EA027-4,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +30555,Ij1,EA027,Hawaiian,EA027-4,,buck1934,,1820,EthnographicAtlas_1967_p98, +30556,Ij10,EA027,Hawaiian,EA027-4,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +30557,Ij2,EA027,Hawaiian,EA027-4,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +30558,Ij3,EA027,Hawaiian,EA027-4,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +30559,Ij4,EA027,Hawaiian,EA027-4,,buck1932a,,1850,EthnographicAtlas_1967_p102, +30560,Ij5,EA027,Hawaiian,EA027-4,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +30561,Ij6,EA027,Hawaiian,EA027-4,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +30562,Ij7,EA027,Hawaiian,EA027-4,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +30563,Ij8,EA027,Hawaiian,EA027-4,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +30564,Ij9,EA027,Hawaiian,EA027-4,,metraux1940,,1860,EthnographicAtlas_1967_p102, +30565,Na1,EA027,Iroquois,EA027-5,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +30566,Na10,EA027,Eskimo,EA027-3,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +30567,Na11,EA027,Iroquois,EA027-5,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +30568,Na12,EA027,Eskimo,EA027-3,Entry follows Pospisil and Laughlin; Spencer reports Iroquois,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +30569,Na13,EA027,?,EA027-NA,,,,,, +30570,Na14,EA027,Eskimo,EA027-3,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +30571,Na15,EA027,Hawaiian,EA027-4,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +30572,Na16,EA027,?,EA027-NA,,,,,, +30573,Na17,EA027,Hawaiian,EA027-4,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30574,Na19,EA027,Iroquois,EA027-5,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +30575,Na2,EA027,Iroquois,EA027-5,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +30576,Na20,EA027,Hawaiian,EA027-4,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +30577,Na21,EA027,Mixed,EA027-8,"One term for paternal cousins, another for maternal cousins",birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +30578,Na22,EA027,Hawaiian,EA027-4,"For cross-cousins of opposite sex, but Iroquois for those of same sex and special terms for parallel cousins of same sex",birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +30579,Na23,EA027,?,EA027-NA,,,,,, +30580,Na24,EA027,Eskimo,EA027-3,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +30581,Na25,EA027,Eskimo,EA027-3,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +30582,Na26,EA027,Iroquois,EA027-5,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +30583,Na27,EA027,?,EA027-NA,,,,,, +30584,Na28,EA027,Hawaiian,EA027-4,,jenness1937,,1880,EthnographicAtlas_1967_p102, +30585,Na29,EA027,?,EA027-NA,,,,,, +30586,Na3,EA027,Eskimo,EA027-3,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +30587,Na30,EA027,Hawaiian,EA027-4,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +30588,Na31,EA027,?,EA027-NA,,,,,, +30589,Na32,EA027,Iroquois,EA027-5,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +30590,Na33,EA027,Iroquois,EA027-5,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +30591,Na34,EA027,Iroquois,EA027-5,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +30592,Na35,EA027,Iroquois,EA027-5,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +30593,Na36,EA027,Iroquois,EA027-5,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +30594,Na37,EA027,Iroquois,EA027-5,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +30595,Na38,EA027,Iroquois,EA027-5,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +30596,Na39,EA027,Iroquois,EA027-5,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +30597,Na4,EA027,Crow,EA027-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +30598,Na40,EA027,Iroquois,EA027-5,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +30599,Na41,EA027,Hawaiian,EA027-4,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +30600,Na42,EA027,Omaha,EA027-6,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +30601,Na43,EA027,?,EA027-NA,,,,,, +30602,Na44,EA027,Eskimo,EA027-3,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +30603,Na45,EA027,?,EA027-NA,,,,,, +30604,Na5,EA027,Iroquois,EA027-5,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +30605,Na6,EA027,Iroquois,EA027-5,,lantis1946,,1930,EthnographicAtlas_1967_p102, +30606,Na7,EA027,Iroquois,EA027-5,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +30607,Na8,EA027,Hawaiian,EA027-4,"For cross-cousins of opposite sex, but Iroquois for those of same sex and special terms for parallel cousins of same sex",osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +30608,Na9,EA027,Iroquois,EA027-5,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30609,Nb1,EA027,Crow,EA027-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +30610,Nb10,EA027,Hawaiian,EA027-4,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +30611,Nb11,EA027,Hawaiian,EA027-4,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +30612,Nb12,EA027,Hawaiian,EA027-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +30613,Nb13,EA027,Hawaiian,EA027-4,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +30614,Nb14,EA027,Hawaiian,EA027-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +30615,Nb15,EA027,Hawaiian,EA027-4,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +30616,Nb16,EA027,Hawaiian,EA027-4,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +30617,Nb17,EA027,Hawaiian,EA027-4,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +30618,Nb18,EA027,?,EA027-NA,,,,,, +30619,Nb19,EA027,?,EA027-NA,,,,,, +30620,Nb2,EA027,Hawaiian,EA027-4,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +30621,Nb20,EA027,?,EA027-NA,,,,,, +30622,Nb21,EA027,Iroquois,EA027-5,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +30623,Nb22,EA027,Crow,EA027-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +30624,Nb23,EA027,Hawaiian,EA027-4,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +30625,Nb24,EA027,Hawaiian,EA027-4,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +30626,Nb25,EA027,Eskimo,EA027-3,"Or, alternatively Hawaiian",olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +30627,Nb26,EA027,Hawaiian,EA027-4,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +30628,Nb27,EA027,Hawaiian,EA027-4,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +30629,Nb28,EA027,Iroquois,EA027-5,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +30630,Nb29,EA027,Iroquois,EA027-5,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +30631,Nb3,EA027,Hawaiian,EA027-4,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +30632,Nb30,EA027,Mixed,EA027-8,"FaSiSo equated with FaBr; MoBrDa equated with MoSi; a separate term for MoBrSo, possibly also used for FaSiDa",sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +30633,Nb31,EA027,Iroquois,EA027-5,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +30634,Nb32,EA027,Iroquois,EA027-5,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +30635,Nb33,EA027,Eskimo,EA027-3,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +30636,Nb34,EA027,Hawaiian,EA027-4,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +30637,Nb35,EA027,Hawaiian,EA027-4,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +30638,Nb36,EA027,Eskimo,EA027-3,But Hawaiian for second cousins,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +30639,Nb37,EA027,Hawaiian,EA027-4,But there are special terms for cross-cousins of Ego's own sex,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +30640,Nb38,EA027,?,EA027-NA,,,,,, +30641,Nb39,EA027,Hawaiian,EA027-4,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +30642,Nb4,EA027,Hawaiian,EA027-4,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +30643,Nb5,EA027,Iroquois,EA027-5,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +30644,Nb6,EA027,Iroquois,EA027-5,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +30645,Nb7,EA027,Iroquois,EA027-5,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +30646,Nb8,EA027,Iroquois,EA027-5,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +30647,Nb9,EA027,Hawaiian,EA027-4,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +30648,Nc1,EA027,Omaha,EA027-6,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +30649,Nc10,EA027,?,EA027-NA,,,,,, +30650,Nc11,EA027,Eskimo,EA027-3,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +30651,Nc12,EA027,Iroquois,EA027-5,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +30652,Nc13,EA027,Hawaiian,EA027-4,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +30653,Nc14,EA027,Omaha,EA027-6,With minor modifications on which the sources do not entirely agree,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +30654,Nc15,EA027,Hawaiian,EA027-4,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +30655,Nc16,EA027,Hawaiian,EA027-4,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +30656,Nc17,EA027,Omaha,EA027-6,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +30657,Nc18,EA027,Omaha,EA027-6,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +30658,Nc19,EA027,Crow,EA027-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +30659,Nc2,EA027,Hawaiian,EA027-4,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +30660,Nc20,EA027,Crow,EA027-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +30661,Nc21,EA027,Omaha,EA027-6,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +30662,Nc22,EA027,Omaha,EA027-6,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +30663,Nc23,EA027,Hawaiian,EA027-4,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +30664,Nc24,EA027,Omaha,EA027-6,"After Gifford, but Gayton reports Hawaiian for all Yokuts",bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +30665,Nc25,EA027,Hawaiian,EA027-4,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +30666,Nc26,EA027,?,EA027-NA,,,,,, +30667,Nc27,EA027,Hawaiian,EA027-4,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +30668,Nc28,EA027,?,EA027-NA,,,,,, +30669,Nc29,EA027,?,EA027-NA,,,,,, +30670,Nc3,EA027,Hawaiian,EA027-4,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +30671,Nc30,EA027,Iroquois,EA027-5,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +30672,Nc31,EA027,Iroquois,EA027-5,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +30673,Nc32,EA027,Iroquois,EA027-5,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +30674,Nc33,EA027,Iroquois,EA027-5,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +30675,Nc34,EA027,Iroquois,EA027-5,,meigs1939,,1880,EthnographicAtlas_1967_p106, +30676,Nc4,EA027,Eskimo,EA027-3,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +30677,Nc5,EA027,Omaha,EA027-6,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +30678,Nc6,EA027,Iroquois,EA027-5,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +30679,Nc7,EA027,Hawaiian,EA027-4,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +30680,Nc8,EA027,Hawaiian,EA027-4,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +30681,Nc9,EA027,Hawaiian,EA027-4,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +30682,Nd1,EA027,Hawaiian,EA027-4,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +30683,Nd10,EA027,Hawaiian,EA027-4,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +30684,Nd11,EA027,Hawaiian,EA027-4,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +30685,Nd12,EA027,Hawaiian,EA027-4,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +30686,Nd13,EA027,?,EA027-NA,,,,,, +30687,Nd14,EA027,?,EA027-NA,,,,,, +30688,Nd15,EA027,Hawaiian,EA027-4,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +30689,Nd16,EA027,?,EA027-NA,,,,,, +30690,Nd17,EA027,Hawaiian,EA027-4,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +30691,Nd18,EA027,Hawaiian,EA027-4,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +30692,Nd19,EA027,Hawaiian,EA027-4,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +30693,Nd2,EA027,Hawaiian,EA027-4,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +30694,Nd20,EA027,Hawaiian,EA027-4,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +30695,Nd21,EA027,?,EA027-NA,,,,,, +30696,Nd22,EA027,Hawaiian,EA027-4,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +30697,Nd23,EA027,?,EA027-NA,,,,,, +30698,Nd24,EA027,Hawaiian,EA027-4,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +30699,Nd25,EA027,Hawaiian,EA027-4,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +30700,Nd26,EA027,?,EA027-NA,,,,,, +30701,Nd27,EA027,Hawaiian,EA027-4,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +30702,Nd28,EA027,?,EA027-NA,,,,,, +30703,Nd29,EA027,Hawaiian,EA027-4,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +30704,Nd3,EA027,Iroquois,EA027-5,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +30705,Nd30,EA027,Hawaiian,EA027-4,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +30706,Nd31,EA027,Hawaiian,EA027-4,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +30707,Nd32,EA027,Hawaiian,EA027-4,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +30708,Nd33,EA027,Hawaiian,EA027-4,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +30709,Nd34,EA027,Hawaiian,EA027-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +30710,Nd35,EA027,Hawaiian,EA027-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +30711,Nd36,EA027,Hawaiian,EA027-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +30712,Nd37,EA027,Hawaiian,EA027-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +30713,Nd38,EA027,Hawaiian,EA027-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +30714,Nd39,EA027,Hawaiian,EA027-4,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +30715,Nd4,EA027,Hawaiian,EA027-4,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +30716,Nd40,EA027,Hawaiian,EA027-4,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +30717,Nd41,EA027,Hawaiian,EA027-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +30718,Nd42,EA027,Hawaiian,EA027-4,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +30719,Nd43,EA027,Hawaiian,EA027-4,"But cross-cousins of opposite sex are called ""breast siblings""",harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +30720,Nd44,EA027,Hawaiian,EA027-4,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +30721,Nd45,EA027,Hawaiian,EA027-4,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +30722,Nd46,EA027,Hawaiian,EA027-4,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +30723,Nd47,EA027,Hawaiian,EA027-4,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +30724,Nd48,EA027,Hawaiian,EA027-4,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +30725,Nd49,EA027,Hawaiian,EA027-4,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +30726,Nd5,EA027,Hawaiian,EA027-4,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +30727,Nd50,EA027,Hawaiian,EA027-4,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +30728,Nd51,EA027,Hawaiian,EA027-4,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +30729,Nd52,EA027,Hawaiian,EA027-4,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +30730,Nd53,EA027,Hawaiian,EA027-4,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +30731,Nd54,EA027,Hawaiian,EA027-4,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30732,Nd55,EA027,Hawaiian,EA027-4,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +30733,Nd56,EA027,Hawaiian,EA027-4,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +30734,Nd57,EA027,Hawaiian,EA027-4,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +30735,Nd58,EA027,Hawaiian,EA027-4,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +30736,Nd59,EA027,Hawaiian,EA027-4,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +30737,Nd6,EA027,Hawaiian,EA027-4,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +30738,Nd60,EA027,Hawaiian,EA027-4,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +30739,Nd61,EA027,Hawaiian,EA027-4,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +30740,Nd62,EA027,Hawaiian,EA027-4,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +30741,Nd63,EA027,Hawaiian,EA027-4,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +30742,Nd64,EA027,Hawaiian,EA027-4,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +30743,Nd65,EA027,Iroquois,EA027-5,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +30744,Nd66,EA027,Iroquois,EA027-5,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +30745,Nd67,EA027,Iroquois,EA027-5,,gifford1936,,1870,EthnographicAtlas_1967_p110, +30746,Nd7,EA027,Hawaiian,EA027-4,But Chamberlain reports Eskimo,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +30747,Nd8,EA027,Hawaiian,EA027-4,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +30748,Nd9,EA027,Hawaiian,EA027-4,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +30749,Ne1,EA027,Hawaiian,EA027-4,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +30750,Ne10,EA027,Crow,EA027-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +30751,Ne11,EA027,Iroquois,EA027-5,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +30752,Ne12,EA027,Hawaiian,EA027-4,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +30753,Ne13,EA027,Hawaiian,EA027-4,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +30754,Ne14,EA027,Iroquois,EA027-5,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +30755,Ne15,EA027,Crow,EA027-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +30756,Ne16,EA027,?,EA027-NA,,,,,, +30757,Ne17,EA027,Hawaiian,EA027-4,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +30758,Ne18,EA027,Hawaiian,EA027-4,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +30759,Ne19,EA027,Iroquois,EA027-5,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +30760,Ne2,EA027,Hawaiian,EA027-4,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +30761,Ne20,EA027,Iroquois,EA027-5,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +30762,Ne21,EA027,Eskimo,EA027-3,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968, +30763,Ne3,EA027,Hawaiian,EA027-4,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +30764,Ne4,EA027,Crow,EA027-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +30765,Ne5,EA027,Hawaiian,EA027-4,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +30766,Ne6,EA027,Crow,EA027-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +30767,Ne7,EA027,Hawaiian,EA027-4,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +30768,Ne8,EA027,Iroquois,EA027-5,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +30769,Ne9,EA027,Hawaiian,EA027-4,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +30770,Nf10,EA027,Omaha,EA027-6,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +30771,Nf11,EA027,Omaha,EA027-6,,whitman1937,,1870,EthnographicAtlas_1967_p114, +30772,Nf12,EA027,Omaha,EA027-6,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +30773,Nf13,EA027,Omaha,EA027-6,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30774,Nf14,EA027,Iroquois,EA027-5,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +30775,Nf15,EA027,Omaha,EA027-6,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +30776,Nf2,EA027,Omaha,EA027-6,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +30777,Nf3,EA027,Omaha,EA027-6,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +30778,Nf4,EA027,Omaha,EA027-6,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +30779,Nf5,EA027,Hawaiian,EA027-4,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +30780,Nf6,EA027,Crow,EA027-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +30781,Nf7,EA027,Omaha,EA027-6,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30782,Nf8,EA027,Hawaiian,EA027-4,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +30783,Nf9,EA027,Omaha,EA027-6,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +30784,Ng1,EA027,Iroquois,EA027-5,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +30785,Ng10,EA027,Iroquois,EA027-5,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +30786,Ng11,EA027,Crow,EA027-1,But Omaha terminology was borrowed from the Shawnee in the eighteenth century,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +30787,Ng12,EA027,Crow,EA027-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +30788,Ng13,EA027,Eskimo,EA027-3,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +30789,Ng14,EA027,Crow,EA027-1,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +30790,Ng15,EA027,Eskimo,EA027-3,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +30791,Ng2,EA027,Crow,EA027-1,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +30792,Ng3,EA027,Crow,EA027-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +30793,Ng4,EA027,Eskimo,EA027-3,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +30794,Ng5,EA027,Crow,EA027-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +30795,Ng6,EA027,Hawaiian,EA027-4,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +30796,Ng7,EA027,Mixed,EA027-8,"Mixed Crow and Eskimo terms, at least at a later date",macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +30797,Ng8,EA027,Crow,EA027-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +30798,Ng9,EA027,Eskimo,EA027-3,But almost certainly not aboriginally,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +30799,Nh1,EA027,Hawaiian,EA027-4,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +30800,Nh10,EA027,Hawaiian,EA027-4,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +30801,Nh11,EA027,Eskimo,EA027-3,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +30802,Nh12,EA027,Hawaiian,EA027-4,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +30803,Nh13,EA027,Crow,EA027-1,Recently trending strongly toward Hawaiian,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +30804,Nh14,EA027,Crow,EA027-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +30805,Nh15,EA027,Hawaiian,EA027-4,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +30806,Nh16,EA027,Iroquois,EA027-5,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30807,Nh17,EA027,Iroquois,EA027-5,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +30808,Nh18,EA027,Crow,EA027-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30809,Nh19,EA027,Iroquois,EA027-5,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +30810,Nh2,EA027,Crow,EA027-1,,dozier1954,,1950,EthnographicAtlas_1967_p114, +30811,Nh20,EA027,Iroquois,EA027-5,,gifford1931,,1860,EthnographicAtlas_1967_p114, +30812,Nh21,EA027,Hawaiian,EA027-4,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30813,Nh22,EA027,Iroquois,EA027-5,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +30814,Nh23,EA027,Iroquois,EA027-5,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +30815,Nh24,EA027,Hawaiian,EA027-4,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +30816,Nh25,EA027,Crow,EA027-1,With some indications of a shift toward Hawaiian,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +30817,Nh26,EA027,Eskimo,EA027-3,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +30818,Nh27,EA027,Eskimo,EA027-3,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +30819,Nh3,EA027,Iroquois,EA027-5,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +30820,Nh4,EA027,Crow,EA027-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +30821,Nh5,EA027,Iroquois,EA027-5,But sibling terms are applied to cross-cousins of opposite sex,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +30822,Nh6,EA027,Eskimo,EA027-3,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +30823,Nh7,EA027,Hawaiian,EA027-4,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +30824,Nh8,EA027,Eskimo,EA027-3,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +30825,Nh9,EA027,Eskimo,EA027-3,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +30826,Ni1,EA027,Hawaiian,EA027-4,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +30827,Ni2,EA027,Hawaiian,EA027-4,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +30828,Ni3,EA027,Hawaiian,EA027-4,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +30829,Ni4,EA027,Hawaiian,EA027-4,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +30830,Ni5,EA027,Hawaiian,EA027-4,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +30831,Ni6,EA027,Iroquois,EA027-5,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +30832,Ni7,EA027,Hawaiian,EA027-4,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +30833,Ni8,EA027,Eskimo,EA027-3,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +30834,Ni9,EA027,Hawaiian,EA027-4,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968, +30835,Nj1,EA027,Hawaiian,EA027-4,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30836,Nj10,EA027,Hawaiian,EA027-4,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30837,Nj11,EA027,Hawaiian,EA027-4,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +30838,Nj12,EA027,Hawaiian,EA027-4,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968, +30839,Nj13,EA027,Hawaiian,EA027-4,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +30840,Nj14,EA027,Hawaiian,EA027-4,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +30841,Nj2,EA027,Hawaiian,EA027-4,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +30842,Nj3,EA027,Hawaiian,EA027-4,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +30843,Nj4,EA027,Hawaiian,EA027-4,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +30844,Nj5,EA027,Hawaiian,EA027-4,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +30845,Nj6,EA027,Hawaiian,EA027-4,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +30846,Nj7,EA027,Hawaiian,EA027-4,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30847,Nj8,EA027,Descriptive,EA027-2,,foster1948,,1500,EthnographicAtlas_1967_p118, +30848,Nj9,EA027,Hawaiian,EA027-4,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +30849,Sa1,EA027,Hawaiian,EA027-4,Entry follows Nordenskiold; Stout reports descriptive terminology,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +30850,Sa10,EA027,?,EA027-NA,,,,,, +30851,Sa11,EA027,Hawaiian,EA027-4,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +30852,Sa12,EA027,?,EA027-NA,,,,,, +30853,Sa13,EA027,Hawaiian,EA027-4,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +30854,Sa14,EA027,?,EA027-NA,,,,,, +30855,Sa15,EA027,Eskimo,EA027-3,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +30856,Sa16,EA027,?,EA027-NA,,,,,, +30857,Sa17,EA027,Hawaiian,EA027-4,But Reina reports Eskimo,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +30858,Sa2,EA027,Omaha,EA027-6,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30859,Sa3,EA027,Hawaiian,EA027-4,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +30860,Sa4,EA027,Hawaiian,EA027-4,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +30861,Sa5,EA027,Iroquois,EA027-5,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +30862,Sa6,EA027,Hawaiian,EA027-4,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +30863,Sa7,EA027,Iroquois,EA027-5,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +30864,Sa8,EA027,Hawaiian,EA027-4,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +30865,Sa9,EA027,Iroquois,EA027-5,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +30866,Sb1,EA027,Iroquois,EA027-5,From a statement by Taylor that parallel cousins were called by sibling terms and cross-cousins were differentiated from them,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +30867,Sb2,EA027,Hawaiian,EA027-4,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +30868,Sb3,EA027,Iroquois,EA027-5,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +30869,Sb4,EA027,Iroquois,EA027-5,Cousin terms are derived from Spanish,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +30870,Sb5,EA027,Hawaiian,EA027-4,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +30871,Sb6,EA027,Crow,EA027-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +30872,Sb7,EA027,Iroquois,EA027-5,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +30873,Sb8,EA027,?,EA027-NA,,,,,, +30874,Sb9,EA027,Eskimo,EA027-3,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +30875,Sc1,EA027,Hawaiian,EA027-4,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +30876,Sc10,EA027,?,EA027-NA,,,,,, +30877,Sc11,EA027,Iroquois,EA027-5,Entry follows Wilbert; Simpson reports Hawaiian,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +30878,Sc12,EA027,Iroquois,EA027-5,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +30879,Sc13,EA027,Iroquois,EA027-5,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +30880,Sc14,EA027,?,EA027-NA,,,,,, +30881,Sc15,EA027,Iroquois,EA027-5,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +30882,Sc16,EA027,Iroquois,EA027-5,But sibling terms are employed for cross-cousins of opposite sex,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +30883,Sc17,EA027,Iroquois,EA027-5,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +30884,Sc18,EA027,Hawaiian,EA027-4,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +30885,Sc2,EA027,Hawaiian,EA027-4,,leedsnd,,1950,EthnographicAtlas_1967_p118, +30886,Sc3,EA027,Iroquois,EA027-5,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +30887,Sc4,EA027,Iroquois,EA027-5,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +30888,Sc5,EA027,Iroquois,EA027-5,,farabee1918,,1900,EthnographicAtlas_1967_p118, +30889,Sc6,EA027,Hawaiian,EA027-4,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30890,Sc7,EA027,Iroquois,EA027-5,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +30891,Sc8,EA027,Iroquois,EA027-5,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +30892,Sc9,EA027,Hawaiian,EA027-4,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +30893,Sd1,EA027,Mixed,EA027-8,"MoBrCh equated with SiCh, FaSiSo equated with MoBr, and a special term for FaSiDa",frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30894,Sd2,EA027,Hawaiian,EA027-4,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +30895,Sd3,EA027,?,EA027-NA,,,,,, +30896,Sd4,EA027,?,EA027-NA,,,,,, +30897,Sd5,EA027,?,EA027-NA,,,,,, +30898,Sd6,EA027,Iroquois,EA027-5,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +30899,Sd7,EA027,Iroquois,EA027-5,,fock1963,,1950,EthnographicAtlas_1967_p118, +30900,Sd8,EA027,Hawaiian,EA027-4,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +30901,Sd9,EA027,Iroquois,EA027-5,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30902,Se1,EA027,Crow,EA027-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +30903,Se10,EA027,?,EA027-NA,,,,,, +30904,Se11,EA027,Iroquois,EA027-5,,prost1965,,1960,EthnographicAtlas_1967_p122, +30905,Se12,EA027,Iroquois,EA027-5,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +30906,Se2,EA027,Iroquois,EA027-5,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +30907,Se3,EA027,Iroquois,EA027-5,"Flornoy reports Hawaiian terminology, but Karsten states that sibling terms are extended only to FaBrCh",harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +30908,Se4,EA027,?,EA027-NA,,,,,, +30909,Se5,EA027,Iroquois,EA027-5,"Entry follows Goldman; Fulop reports Sudanese. ""A communication from Irving Goldman points out that there is no conflict between the information on cousin terminology provided by Fulop and himself. Goldman reports Iroquois terminology for the Cubeo tribe, Fulop Sudanese terminology for the Tucano proper.""",goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +30910,Se6,EA027,?,EA027-NA,,,,,, +30911,Se7,EA027,Eskimo,EA027-3,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30912,Se8,EA027,Iroquois,EA027-5,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +30913,Se9,EA027,?,EA027-NA,,,,,, +30914,Sf1,EA027,Hawaiian,EA027-4,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +30915,Sf2,EA027,Hawaiian,EA027-4,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +30916,Sf3,EA027,Hawaiian,EA027-4,Entry follows Altschuler; Barrett reports Eskimo,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +30917,Sf4,EA027,Hawaiian,EA027-4,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +30918,Sf5,EA027,?,EA027-NA,,,,,, +30919,Sf6,EA027,Eskimo,EA027-3,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +30920,Sf7,EA027,?,EA027-NA,,,,,, +30921,Sf8,EA027,?,EA027-NA,,,,,, +30922,Sf9,EA027,Eskimo,EA027-3,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +30923,Sg1,EA027,Eskimo,EA027-3,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +30924,Sg2,EA027,Omaha,EA027-6,But usually Hawaiian outside of Cholchol,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30925,Sg3,EA027,Eskimo,EA027-3,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +30926,Sg4,EA027,?,EA027-NA,,,,,, +30927,Sg5,EA027,?,EA027-NA,,,,,, +30928,Sh1,EA027,Hawaiian,EA027-4,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +30929,Sh2,EA027,Hawaiian,EA027-4,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +30930,Sh3,EA027,Eskimo,EA027-3,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +30931,Sh4,EA027,Hawaiian,EA027-4,,oberg1949,,1940,EthnographicAtlas_1967_p122, +30932,Sh5,EA027,Eskimo,EA027-3,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +30933,Sh6,EA027,?,EA027-NA,,,,,, +30934,Sh7,EA027,?,EA027-NA,,,,,, +30935,Sh8,EA027,Hawaiian,EA027-4,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +30936,Sh9,EA027,?,EA027-NA,,,,,, +30937,Si1,EA027,Crow,EA027-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30938,Si10,EA027,Hawaiian,EA027-4,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +30939,Si2,EA027,Iroquois,EA027-5,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +30940,Si3,EA027,Iroquois,EA027-5,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30941,Si4,EA027,Iroquois,EA027-5,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +30942,Si5,EA027,Iroquois,EA027-5,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +30943,Si6,EA027,Iroquois,EA027-5,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +30944,Si7,EA027,Iroquois,EA027-5,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +30945,Si8,EA027,Hawaiian,EA027-4,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +30946,Si9,EA027,Iroquois,EA027-5,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +30947,Sj1,EA027,Hawaiian,EA027-4,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +30948,Sj10,EA027,Hawaiian,EA027-4,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30949,Sj11,EA027,Iroquois,EA027-5,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +30950,Sj2,EA027,Omaha,EA027-6,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +30951,Sj3,EA027,Hawaiian,EA027-4,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +30952,Sj4,EA027,Crow,EA027-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +30953,Sj5,EA027,Hawaiian,EA027-4,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +30954,Sj6,EA027,Hawaiian,EA027-4,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +30955,Sj7,EA027,Crow,EA027-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +30956,Sj8,EA027,?,EA027-NA,Uncertain because of much conflict in the sources,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +30957,Sj9,EA027,Omaha,EA027-6,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +30958,ch12,EA027,Mixed,EA027-8,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +30959,ch13,EA027,?,EA027-NA,,,,,, +30960,ch14,EA027,Eskimo,EA027-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +30961,ch15,EA027,Eskimo,EA027-3,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +30962,ch16,EA027,Descriptive,EA027-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +30963,ch17,EA027,?,EA027-NA,,,,,, +30964,ch18,EA027,Descriptive,EA027-2,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +30965,ch19,EA027,Descriptive,EA027-2,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +30966,ch20,EA027,Eskimo,EA027-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +30967,ch21,EA027,Descriptive,EA027-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +30968,ch22,EA027,?,EA027-NA,,,,,, +30969,ch23,EA027,Eskimo,EA027-3,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +30970,ch24,EA027,Descriptive,EA027-2,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +30971,ch25,EA027,Eskimo,EA027-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +30972,ch26,EA027,Omaha,EA027-6,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +30973,ch27,EA027,Descriptive,EA027-2,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +30974,ch28,EA027,Descriptive,EA027-2,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +30975,ec12,EA027,Mixed,EA027-8,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +30976,ec13,EA027,Eskimo,EA027-3,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +30977,ec14,EA027,Sudanese,EA027-7,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +30978,ec15,EA027,Mixed,EA027-8,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +30979,ec16,EA027,Mixed,EA027-8,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +30980,ec17,EA027,Mixed,EA027-8,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +30981,ec18,EA027,Eskimo,EA027-3,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +30982,ec19,EA027,Mixed,EA027-8,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +30983,ec20,EA027,Eskimo,EA027-3,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +30984,ec21,EA027,Eskimo,EA027-3,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +30985,Aa1,EA028,No agriculture,EA028-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +30986,Aa2,EA028,No agriculture,EA028-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +30987,Aa3,EA028,No agriculture,EA028-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +30988,Aa4,EA028,?,EA028-NA,,,,,, +30989,Aa5,EA028,No agriculture,EA028-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +30990,Aa6,EA028,Extensive/shifting,EA028-3,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p63, +30991,Aa7,EA028,No agriculture,EA028-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +30992,Aa8,EA028,No agriculture,EA028-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +30993,Aa9,EA028,No agriculture,EA028-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +30994,Ab1,EA028,No agriculture,EA028-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p63, +30995,Ab10,EA028,Intensive,EA028-5,,hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +30996,Ab11,EA028,Extensive/shifting,EA028-3,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +30997,Ab12,EA028,Extensive/shifting,EA028-3,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p63, +30998,Ab13,EA028,Extensive/shifting,EA028-3,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +30999,Ab14,EA028,Intensive,EA028-5,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +31000,Ab15,EA028,Extensive/shifting,EA028-3,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +31001,Ab16,EA028,Extensive/shifting,EA028-3,,earthy1933,,1930,EthnographicAtlas_1967_p63, +31002,Ab17,EA028,?,EA028-NA,,,,,, +31003,Ab18,EA028,Extensive/shifting,EA028-3,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +31004,Ab19,EA028,Extensive/shifting,EA028-3,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +31005,Ab2,EA028,Extensive/shifting,EA028-3,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +31006,Ab20,EA028,?,EA028-NA,,,,,, +31007,Ab21a,EA028,Extensive/shifting,EA028-3,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +31008,Ab21b,EA028,?,EA028-NA,,,,,, +31009,Ab22,EA028,?,EA028-NA,,,,,, +31010,Ab3,EA028,Intensive,EA028-5,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +31011,Ab4,EA028,Extensive/shifting,EA028-3,,junod1927,,1920,EthnographicAtlas_1967_p63, +31012,Ab5,EA028,Extensive/shifting,EA028-3,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +31013,Ab6,EA028,Intensive,EA028-5,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +31014,Ab7,EA028,Extensive/shifting,EA028-3,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p63, +31015,Ab8,EA028,Intensive,EA028-5,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +31016,Ab9,EA028,Extensive/shifting,EA028-3,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +31017,Ac1,EA028,Extensive/shifting,EA028-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +31018,Ac10,EA028,Extensive/shifting,EA028-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +31019,Ac11,EA028,Extensive/shifting,EA028-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +31020,Ac12,EA028,Extensive/shifting,EA028-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p63, +31021,Ac13,EA028,Extensive/shifting,EA028-3,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p63, +31022,Ac14,EA028,Extensive/shifting,EA028-3,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p63, +31023,Ac15,EA028,?,EA028-NA,,,,,, +31024,Ac16,EA028,Extensive/shifting,EA028-3,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +31025,Ac17,EA028,Extensive/shifting,EA028-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +31026,Ac18,EA028,Extensive/shifting,EA028-3,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +31027,Ac19,EA028,Extensive/shifting,EA028-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +31028,Ac2,EA028,Extensive/shifting,EA028-3,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p63, +31029,Ac20,EA028,Extensive/shifting,EA028-3,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +31030,Ac21,EA028,Extensive/shifting,EA028-3,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p63, +31031,Ac22,EA028,Extensive/shifting,EA028-3,,mertens1935,,1930,EthnographicAtlas_1967_p63, +31032,Ac23,EA028,Extensive/shifting,EA028-3,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +31033,Ac24,EA028,Extensive/shifting,EA028-3,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +31034,Ac25,EA028,Extensive/shifting,EA028-3,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p63, +31035,Ac26,EA028,Extensive/shifting,EA028-3,But Beaucorps reports that rice has become the staple crop,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +31036,Ac27,EA028,Extensive/shifting,EA028-3,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +31037,Ac28,EA028,Extensive/shifting,EA028-3,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p63, +31038,Ac29,EA028,?,EA028-NA,,,,,, +31039,Ac3,EA028,Extensive/shifting,EA028-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +31040,Ac30,EA028,Extensive/shifting,EA028-3,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +31041,Ac31,EA028,Extensive/shifting,EA028-3,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +31042,Ac32,EA028,Extensive/shifting,EA028-3,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +31043,Ac33,EA028,Extensive/shifting,EA028-3,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +31044,Ac34,EA028,Extensive/shifting,EA028-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +31045,Ac35,EA028,?,EA028-NA,,,,,, +31046,Ac36,EA028,Extensive/shifting,EA028-3,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +31047,Ac37,EA028,Extensive/shifting,EA028-3,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +31048,Ac38,EA028,Extensive/shifting,EA028-3,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p63, +31049,Ac39,EA028,?,EA028-NA,,,,,, +31050,Ac4,EA028,Extensive/shifting,EA028-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +31051,Ac40,EA028,Extensive/shifting,EA028-3,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +31052,Ac41,EA028,Extensive/shifting,EA028-3,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +31053,Ac42,EA028,?,EA028-NA,,,,,, +31054,Ac43,EA028,Extensive/shifting,EA028-3,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +31055,Ac5,EA028,Extensive/shifting,EA028-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +31056,Ac6,EA028,Extensive/shifting,EA028-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p63, +31057,Ac7,EA028,Extensive/shifting,EA028-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +31058,Ac8,EA028,Extensive/shifting,EA028-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +31059,Ac9,EA028,Extensive/shifting,EA028-3,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +31060,Ad1,EA028,Extensive/shifting,EA028-3,,grottanelli1955,,1950,EthnographicAtlas_1967_p63, +31061,Ad10,EA028,Intensive,EA028-5,But maize has since replaced bananas as the principal crop,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +31062,Ad11,EA028,Intensive irrigated,EA028-6,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +31063,Ad12,EA028,Extensive/shifting,EA028-3,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +31064,Ad13,EA028,Extensive/shifting,EA028-3,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +31065,Ad14,EA028,Extensive/shifting,EA028-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +31066,Ad15,EA028,Extensive/shifting,EA028-3,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +31067,Ad16,EA028,Intensive,EA028-5,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +31068,Ad17,EA028,Extensive/shifting,EA028-3,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +31069,Ad18,EA028,Extensive/shifting,EA028-3,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +31070,Ad19,EA028,Extensive/shifting,EA028-3,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +31071,Ad2,EA028,Intensive,EA028-5,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +31072,Ad20,EA028,Extensive/shifting,EA028-3,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +31073,Ad21,EA028,Extensive/shifting,EA028-3,,maurice193538,,1930,EthnographicAtlas_1967_p67, +31074,Ad22,EA028,Intensive,EA028-5,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +31075,Ad23,EA028,Intensive irrigated,EA028-6,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +31076,Ad24,EA028,Extensive/shifting,EA028-3,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +31077,Ad25,EA028,Extensive/shifting,EA028-3,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +31078,Ad26,EA028,Intensive,EA028-5,,sick1916,,1910,Ethnology_Vol7_No2_Apr_1968, +31079,Ad27,EA028,Extensive/shifting,EA028-3,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +31080,Ad28,EA028,Extensive/shifting,EA028-3,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +31081,Ad29,EA028,Extensive/shifting,EA028-3,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p67, +31082,Ad3,EA028,Intensive irrigated,EA028-6,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +31083,Ad30,EA028,Extensive/shifting,EA028-3,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p67, +31084,Ad31,EA028,?,EA028-NA,,,,,, +31085,Ad32,EA028,Extensive/shifting,EA028-3,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p67, +31086,Ad33,EA028,Intensive irrigated,EA028-6,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p67, +31087,Ad34,EA028,Intensive,EA028-5,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +31088,Ad35,EA028,Extensive/shifting,EA028-3,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p67, +31089,Ad36,EA028,Intensive,EA028-5,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +31090,Ad37,EA028,Intensive,EA028-5,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +31091,Ad38,EA028,Intensive,EA028-5,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +31092,Ad39,EA028,Intensive irrigated,EA028-6,,gray1963,,1950,EthnographicAtlas_1967_p67, +31093,Ad4,EA028,Intensive,EA028-5,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +31094,Ad40,EA028,Intensive,EA028-5,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +31095,Ad41,EA028,Extensive/shifting,EA028-3,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p67, +31096,Ad42,EA028,Intensive,EA028-5,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +31097,Ad43,EA028,Intensive,EA028-5,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +31098,Ad44,EA028,Extensive/shifting,EA028-3,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p67, +31099,Ad45,EA028,Extensive/shifting,EA028-3,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +31100,Ad46,EA028,Intensive,EA028-5,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p67, +31101,Ad47,EA028,Intensive,EA028-5,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +31102,Ad48,EA028,Extensive/shifting,EA028-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +31103,Ad49,EA028,Extensive/shifting,EA028-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +31104,Ad5,EA028,?,EA028-NA,,,,,, +31105,Ad50,EA028,Extensive/shifting,EA028-3,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +31106,Ad51,EA028,Extensive/shifting,EA028-3,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +31107,Ad6,EA028,Intensive,EA028-5,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +31108,Ad7,EA028,Intensive,EA028-5,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +31109,Ad8,EA028,Intensive,EA028-5,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +31110,Ad9,EA028,Extensive/shifting,EA028-3,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +31111,Ae1,EA028,Extensive/shifting,EA028-3,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67, +31112,Ae10,EA028,Intensive,EA028-5,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +31113,Ae11,EA028,Extensive/shifting,EA028-3,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +31114,Ae12,EA028,Extensive/shifting,EA028-3,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +31115,Ae13,EA028,?,EA028-NA,,,,,, +31116,Ae14,EA028,Intensive,EA028-5,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +31117,Ae15,EA028,Intensive,EA028-5,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p67, +31118,Ae16,EA028,?,EA028-NA,,,,,, +31119,Ae17,EA028,Extensive/shifting,EA028-3,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +31120,Ae18,EA028,Extensive/shifting,EA028-3,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +31121,Ae19,EA028,?,EA028-NA,,,,,, +31122,Ae2,EA028,Extensive/shifting,EA028-3,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +31123,Ae20,EA028,Extensive/shifting,EA028-3,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +31124,Ae21,EA028,Extensive/shifting,EA028-3,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +31125,Ae22,EA028,Extensive/shifting,EA028-3,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p67, +31126,Ae23,EA028,?,EA028-NA,,,,,, +31127,Ae24,EA028,?,EA028-NA,,,,,, +31128,Ae25,EA028,?,EA028-NA,,,,,, +31129,Ae26,EA028,Extensive/shifting,EA028-3,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +31130,Ae27,EA028,Extensive/shifting,EA028-3,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +31131,Ae28,EA028,Extensive/shifting,EA028-3,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +31132,Ae29,EA028,Extensive/shifting,EA028-3,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p67, +31133,Ae3,EA028,Extensive/shifting,EA028-3,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +31134,Ae30,EA028,Extensive/shifting,EA028-3,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +31135,Ae31,EA028,Extensive/shifting,EA028-3,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +31136,Ae32,EA028,Extensive/shifting,EA028-3,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +31137,Ae33,EA028,Extensive/shifting,EA028-3,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +31138,Ae34,EA028,Extensive/shifting,EA028-3,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +31139,Ae35,EA028,Extensive/shifting,EA028-3,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +31140,Ae36,EA028,Extensive/shifting,EA028-3,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +31141,Ae37,EA028,?,EA028-NA,,,,,, +31142,Ae38,EA028,Extensive/shifting,EA028-3,,wijnant192526,,1920,EthnographicAtlas_1967_p67, +31143,Ae39,EA028,Extensive/shifting,EA028-3,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +31144,Ae4,EA028,Extensive/shifting,EA028-3,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +31145,Ae40,EA028,Extensive/shifting,EA028-3,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +31146,Ae41,EA028,Extensive/shifting,EA028-3,,andersson1953,,1940,EthnographicAtlas_1967_p67, +31147,Ae42,EA028,Extensive/shifting,EA028-3,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +31148,Ae43,EA028,Extensive/shifting,EA028-3,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +31149,Ae44,EA028,Extensive/shifting,EA028-3,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +31150,Ae45,EA028,Extensive/shifting,EA028-3,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +31151,Ae46,EA028,Extensive/shifting,EA028-3,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +31152,Ae47,EA028,Extensive/shifting,EA028-3,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +31153,Ae48,EA028,Extensive/shifting,EA028-3,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p67, +31154,Ae49,EA028,?,EA028-NA,,,,,, +31155,Ae5,EA028,Extensive/shifting,EA028-3,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p67, +31156,Ae50,EA028,Extensive/shifting,EA028-3,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p67, +31157,Ae51,EA028,Extensive/shifting,EA028-3,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p67, +31158,Ae52,EA028,?,EA028-NA,,,,,, +31159,Ae53,EA028,?,EA028-NA,,,,,, +31160,Ae54,EA028,?,EA028-NA,,,,,, +31161,Ae55,EA028,Extensive/shifting,EA028-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +31162,Ae56,EA028,Extensive/shifting,EA028-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +31163,Ae57,EA028,Extensive/shifting,EA028-3,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +31164,Ae58,EA028,Extensive/shifting,EA028-3,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +31165,Ae59,EA028,?,EA028-NA,,,,,, +31166,Ae6,EA028,Extensive/shifting,EA028-3,,verhulpen1936,with special reference to the Bena Kalundwe,1930,Ethnology_Vol7_No2_Apr_1968, +31167,Ae7,EA028,Extensive/shifting,EA028-3,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +31168,Ae8,EA028,Intensive,EA028-5,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +31169,Ae9,EA028,Extensive/shifting,EA028-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +31170,Af1,EA028,Extensive/shifting,EA028-3,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +31171,Af10,EA028,Extensive/shifting,EA028-3,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +31172,Af11,EA028,Extensive/shifting,EA028-3,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +31173,Af12,EA028,Extensive/shifting,EA028-3,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +31174,Af13,EA028,Extensive/shifting,EA028-3,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +31175,Af14,EA028,Extensive/shifting,EA028-3,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p71, +31176,Af15,EA028,Extensive/shifting,EA028-3,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +31177,Af16,EA028,Extensive/shifting,EA028-3,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +31178,Af17,EA028,Extensive/shifting,EA028-3,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +31179,Af18,EA028,Extensive/shifting,EA028-3,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +31180,Af19,EA028,Extensive/shifting,EA028-3,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +31181,Af2,EA028,Extensive/shifting,EA028-3,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +31182,Af20,EA028,Extensive/shifting,EA028-3,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +31183,Af21,EA028,Extensive/shifting,EA028-3,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +31184,Af22,EA028,Extensive/shifting,EA028-3,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p71, +31185,Af23,EA028,Intensive,EA028-5,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +31186,Af24,EA028,Extensive/shifting,EA028-3,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +31187,Af25,EA028,Extensive/shifting,EA028-3,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +31188,Af26,EA028,Extensive/shifting,EA028-3,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +31189,Af27,EA028,Extensive/shifting,EA028-3,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +31190,Af28,EA028,Intensive,EA028-5,,gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +31191,Af29,EA028,Extensive/shifting,EA028-3,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +31192,Af3,EA028,Extensive/shifting,EA028-3,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +31193,Af30,EA028,Extensive/shifting,EA028-3,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +31194,Af31,EA028,?,EA028-NA,,,,,, +31195,Af32,EA028,Extensive/shifting,EA028-3,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31196,Af33,EA028,Extensive/shifting,EA028-3,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31197,Af34,EA028,Extensive/shifting,EA028-3,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31198,Af35,EA028,Extensive/shifting,EA028-3,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +31199,Af36,EA028,Extensive/shifting,EA028-3,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p71, +31200,Af37,EA028,Extensive/shifting,EA028-3,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +31201,Af38,EA028,Extensive/shifting,EA028-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +31202,Af39,EA028,Extensive/shifting,EA028-3,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +31203,Af4,EA028,Extensive/shifting,EA028-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +31204,Af40,EA028,Extensive/shifting,EA028-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +31205,Af41,EA028,Extensive/shifting,EA028-3,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +31206,Af42,EA028,Extensive/shifting,EA028-3,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p71, +31207,Af43,EA028,Extensive/shifting,EA028-3,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p71, +31208,Af44,EA028,?,EA028-NA,,,,,, +31209,Af45,EA028,Extensive/shifting,EA028-3,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +31210,Af46,EA028,Extensive/shifting,EA028-3,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +31211,Af47,EA028,Extensive/shifting,EA028-3,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +31212,Af48,EA028,Extensive/shifting,EA028-3,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +31213,Af49,EA028,Extensive/shifting,EA028-3,,schwab1947,,1940,EthnographicAtlas_1967_p71, +31214,Af5,EA028,Extensive/shifting,EA028-3,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +31215,Af50,EA028,Extensive/shifting,EA028-3,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +31216,Af51,EA028,Extensive/shifting,EA028-3,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +31217,Af52,EA028,Extensive/shifting,EA028-3,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +31218,Af53,EA028,Extensive/shifting,EA028-3,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +31219,Af54,EA028,Extensive/shifting,EA028-3,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +31220,Af55,EA028,Extensive/shifting,EA028-3,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +31221,Af56,EA028,Extensive/shifting,EA028-3,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +31222,Af57,EA028,Extensive/shifting,EA028-3,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +31223,Af58,EA028,Extensive/shifting,EA028-3,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +31224,Af6,EA028,Extensive/shifting,EA028-3,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +31225,Af7,EA028,Extensive/shifting,EA028-3,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +31226,Af8,EA028,Extensive/shifting,EA028-3,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +31227,Af9,EA028,Extensive/shifting,EA028-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p71, +31228,Ag1,EA028,Intensive,EA028-5,"But intensive cultivation, with some irrigation, of gardens and of fields bordering watercourses",dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +31229,Ag10,EA028,Extensive/shifting,EA028-3,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +31230,Ag11,EA028,Extensive/shifting,EA028-3,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +31231,Ag12,EA028,Extensive/shifting,EA028-3,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +31232,Ag13,EA028,Extensive/shifting,EA028-3,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +31233,Ag14,EA028,Extensive/shifting,EA028-3,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +31234,Ag15,EA028,Extensive/shifting,EA028-3,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +31235,Ag16,EA028,Extensive/shifting,EA028-3,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p71, +31236,Ag17,EA028,Extensive/shifting,EA028-3,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +31237,Ag18,EA028,Extensive/shifting,EA028-3,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p71, +31238,Ag19,EA028,Extensive/shifting,EA028-3,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p71, +31239,Ag2,EA028,Intensive,EA028-5,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +31240,Ag20,EA028,Extensive/shifting,EA028-3,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +31241,Ag21,EA028,Extensive/shifting,EA028-3,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +31242,Ag22,EA028,Extensive/shifting,EA028-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p71, +31243,Ag23,EA028,Extensive/shifting,EA028-3,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +31244,Ag24,EA028,Extensive/shifting,EA028-3,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +31245,Ag25,EA028,Extensive/shifting,EA028-3,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p71, +31246,Ag26,EA028,Extensive/shifting,EA028-3,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p71, +31247,Ag27,EA028,Extensive/shifting,EA028-3,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +31248,Ag28,EA028,Intensive,EA028-5,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +31249,Ag29,EA028,Intensive,EA028-5,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +31250,Ag3,EA028,Intensive,EA028-5,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p71, +31251,Ag30,EA028,Extensive/shifting,EA028-3,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p71, +31252,Ag31,EA028,Extensive/shifting,EA028-3,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p71, +31253,Ag32,EA028,Intensive irrigated,EA028-6,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p71, +31254,Ag33,EA028,Extensive/shifting,EA028-3,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +31255,Ag34,EA028,Extensive/shifting,EA028-3,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +31256,Ag35,EA028,Extensive/shifting,EA028-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +31257,Ag36,EA028,Intensive,EA028-5,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +31258,Ag37,EA028,Extensive/shifting,EA028-3,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +31259,Ag38,EA028,Extensive/shifting,EA028-3,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +31260,Ag39,EA028,Extensive/shifting,EA028-3,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +31261,Ag4,EA028,Intensive,EA028-5,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +31262,Ag40,EA028,Extensive/shifting,EA028-3,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +31263,Ag41,EA028,Intensive,EA028-5,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +31264,Ag42,EA028,Intensive,EA028-5,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +31265,Ag43,EA028,Extensive/shifting,EA028-3,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +31266,Ag44,EA028,Extensive/shifting,EA028-3,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +31267,Ag45,EA028,Extensive/shifting,EA028-3,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +31268,Ag46,EA028,Intensive,EA028-5,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +31269,Ag47,EA028,Extensive/shifting,EA028-3,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +31270,Ag48,EA028,Intensive,EA028-5,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p75, +31271,Ag49,EA028,Intensive,EA028-5,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +31272,Ag5,EA028,Extensive/shifting,EA028-3,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +31273,Ag50,EA028,Extensive/shifting,EA028-3,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +31274,Ag51,EA028,Extensive/shifting,EA028-3,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +31275,Ag52,EA028,Intensive,EA028-5,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +31276,Ag53,EA028,Extensive/shifting,EA028-3,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +31277,Ag54,EA028,Extensive/shifting,EA028-3,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +31278,Ag6,EA028,Extensive/shifting,EA028-3,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +31279,Ag7,EA028,Intensive irrigated,EA028-6,Flood-plain agriculture,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +31280,Ag8,EA028,Extensive/shifting,EA028-3,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +31281,Ag9,EA028,Extensive/shifting,EA028-3,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p71, +31282,Ah1,EA028,Intensive,EA028-5,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31283,Ah10,EA028,Extensive/shifting,EA028-3,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +31284,Ah11,EA028,Extensive/shifting,EA028-3,,gunnandconant1960,,1950,EthnographicAtlas_1967_p75, +31285,Ah12,EA028,Extensive/shifting,EA028-3,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +31286,Ah13,EA028,Extensive/shifting,EA028-3,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +31287,Ah14,EA028,Intensive,EA028-5,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +31288,Ah15,EA028,Intensive,EA028-5,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p75, +31289,Ah16,EA028,Intensive,EA028-5,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +31290,Ah17,EA028,Extensive/shifting,EA028-3,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +31291,Ah18,EA028,Intensive,EA028-5,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +31292,Ah19,EA028,Intensive,EA028-5,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p75, +31293,Ah2,EA028,Extensive/shifting,EA028-3,,meek1931a,,1920,EthnographicAtlas_1967_p75, +31294,Ah20,EA028,Intensive,EA028-5,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +31295,Ah21,EA028,Extensive/shifting,EA028-3,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +31296,Ah22,EA028,?,EA028-NA,,,,,, +31297,Ah23,EA028,?,EA028-NA,,,,,, +31298,Ah24,EA028,?,EA028-NA,,,,,, +31299,Ah25,EA028,Extensive/shifting,EA028-3,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +31300,Ah26,EA028,Extensive/shifting,EA028-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +31301,Ah27,EA028,Extensive/shifting,EA028-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +31302,Ah28,EA028,Extensive/shifting,EA028-3,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +31303,Ah29,EA028,Extensive/shifting,EA028-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +31304,Ah3,EA028,Extensive/shifting,EA028-3,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +31305,Ah30,EA028,Intensive,EA028-5,,meek1931b,,1920,EthnographicAtlas_1967_p75, +31306,Ah31,EA028,Intensive,EA028-5,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p75, +31307,Ah32,EA028,Intensive,EA028-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +31308,Ah33,EA028,Intensive,EA028-5,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p75, +31309,Ah34,EA028,Intensive,EA028-5,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +31310,Ah35,EA028,Intensive,EA028-5,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +31311,Ah36,EA028,Intensive,EA028-5,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +31312,Ah37,EA028,Intensive,EA028-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +31313,Ah38,EA028,Intensive,EA028-5,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +31314,Ah39,EA028,Intensive,EA028-5,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +31315,Ah4,EA028,Intensive,EA028-5,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p75, +31316,Ah5,EA028,Intensive,EA028-5,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +31317,Ah6,EA028,Extensive/shifting,EA028-3,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +31318,Ah7,EA028,Intensive,EA028-5,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +31319,Ah8,EA028,Extensive/shifting,EA028-3,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +31320,Ah9,EA028,Extensive/shifting,EA028-3,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75, +31321,Ai1,EA028,Extensive/shifting,EA028-3,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p75, +31322,Ai10,EA028,Intensive,EA028-5,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p75, +31323,Ai11,EA028,Extensive/shifting,EA028-3,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +31324,Ai12,EA028,Extensive/shifting,EA028-3,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +31325,Ai13,EA028,Extensive/shifting,EA028-3,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +31326,Ai14,EA028,Extensive/shifting,EA028-3,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +31327,Ai15,EA028,Extensive/shifting,EA028-3,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +31328,Ai16,EA028,Extensive/shifting,EA028-3,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +31329,Ai17,EA028,Extensive/shifting,EA028-3,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +31330,Ai18,EA028,Intensive,EA028-5,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +31331,Ai19,EA028,Intensive,EA028-5,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +31332,Ai2,EA028,?,EA028-NA,,,,,, +31333,Ai20,EA028,Extensive/shifting,EA028-3,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +31334,Ai21,EA028,Extensive/shifting,EA028-3,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +31335,Ai22,EA028,Extensive/shifting,EA028-3,,delafosse1897,,1890,EthnographicAtlas_1967_p75, +31336,Ai23,EA028,Extensive/shifting,EA028-3,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +31337,Ai24,EA028,Extensive/shifting,EA028-3,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +31338,Ai25,EA028,Extensive/shifting,EA028-3,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +31339,Ai26,EA028,Extensive/shifting,EA028-3,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p75, +31340,Ai27,EA028,Extensive/shifting,EA028-3,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +31341,Ai28,EA028,Extensive/shifting,EA028-3,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +31342,Ai29,EA028,Extensive/shifting,EA028-3,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +31343,Ai3,EA028,Extensive/shifting,EA028-3,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +31344,Ai30,EA028,Extensive/shifting,EA028-3,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +31345,Ai31,EA028,Extensive/shifting,EA028-3,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +31346,Ai32,EA028,Extensive/shifting,EA028-3,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +31347,Ai33,EA028,Extensive/shifting,EA028-3,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +31348,Ai34,EA028,Extensive/shifting,EA028-3,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +31349,Ai35,EA028,Extensive/shifting,EA028-3,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +31350,Ai36,EA028,Extensive/shifting,EA028-3,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +31351,Ai37,EA028,Intensive,EA028-5,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +31352,Ai38,EA028,Extensive/shifting,EA028-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +31353,Ai39,EA028,Extensive/shifting,EA028-3,,nadel1947,,1940,EthnographicAtlas_1967_p75, +31354,Ai4,EA028,Intensive,EA028-5,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +31355,Ai40,EA028,Intensive,EA028-5,,nadel1947,,1940,EthnographicAtlas_1967_p75, +31356,Ai41,EA028,Intensive,EA028-5,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +31357,Ai42,EA028,Extensive/shifting,EA028-3,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p75, +31358,Ai43,EA028,Intensive,EA028-5,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p75, +31359,Ai44,EA028,Intensive,EA028-5,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +31360,Ai45,EA028,Extensive/shifting,EA028-3,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +31361,Ai46,EA028,Extensive/shifting,EA028-3,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p75, +31362,Ai47,EA028,Extensive/shifting,EA028-3,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +31363,Ai5,EA028,Extensive/shifting,EA028-3,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +31364,Ai6,EA028,Extensive/shifting,EA028-3,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +31365,Ai7,EA028,Extensive/shifting,EA028-3,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +31366,Ai8,EA028,Intensive,EA028-5,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p75, +31367,Ai9,EA028,Intensive irrigated,EA028-6,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +31368,Aj1,EA028,Extensive/shifting,EA028-3,,lawrance1957,,1950,EthnographicAtlas_1967_p75, +31369,Aj10,EA028,Extensive/shifting,EA028-3,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +31370,Aj11,EA028,Extensive/shifting,EA028-3,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +31371,Aj12,EA028,Extensive/shifting,EA028-3,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +31372,Aj13,EA028,Extensive/shifting,EA028-3,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +31373,Aj14,EA028,Extensive/shifting,EA028-3,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +31374,Aj15,EA028,Intensive,EA028-5,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +31375,Aj16,EA028,Extensive/shifting,EA028-3,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p79, +31376,Aj17,EA028,Extensive/shifting,EA028-3,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +31377,Aj18,EA028,Extensive/shifting,EA028-3,,jensen1959,,1950,EthnographicAtlas_1967_p79, +31378,Aj19,EA028,Extensive/shifting,EA028-3,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p79, +31379,Aj2,EA028,No agriculture,EA028-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +31380,Aj20,EA028,Extensive/shifting,EA028-3,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p79, +31381,Aj21,EA028,Extensive/shifting,EA028-3,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +31382,Aj22,EA028,Extensive/shifting,EA028-3,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +31383,Aj23,EA028,Extensive/shifting,EA028-3,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +31384,Aj24,EA028,Extensive/shifting,EA028-3,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +31385,Aj25,EA028,Intensive irrigated,EA028-6,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +31386,Aj26,EA028,Intensive,EA028-5,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p79, +31387,Aj27,EA028,Extensive/shifting,EA028-3,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +31388,Aj28,EA028,Extensive/shifting,EA028-3,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +31389,Aj29,EA028,No agriculture,EA028-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +31390,Aj3,EA028,Extensive/shifting,EA028-3,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +31391,Aj30,EA028,?,EA028-NA,,,,,, +31392,Aj31,EA028,?,EA028-NA,,,,,, +31393,Aj4,EA028,Extensive/shifting,EA028-3,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +31394,Aj5,EA028,Extensive/shifting,EA028-3,"Though flood-water irrigation is practiced, agriculture is rarely intensive",elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +31395,Aj6,EA028,Intensive,EA028-5,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +31396,Aj7,EA028,Intensive,EA028-5,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +31397,Aj8,EA028,Extensive/shifting,EA028-3,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +31398,Aj9,EA028,Intensive irrigated,EA028-6,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +31399,Ca1,EA028,Intensive,EA028-5,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +31400,Ca10,EA028,Casual,EA028-2,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +31401,Ca11,EA028,Extensive/shifting,EA028-3,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p79, +31402,Ca12,EA028,Intensive,EA028-5,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p79, +31403,Ca13,EA028,Intensive,EA028-5,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p79, +31404,Ca14,EA028,Intensive,EA028-5,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p79, +31405,Ca15,EA028,Intensive,EA028-5,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +31406,Ca16,EA028,Intensive,EA028-5,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +31407,Ca17,EA028,Intensive irrigated,EA028-6,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +31408,Ca18,EA028,Extensive/shifting,EA028-3,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +31409,Ca19,EA028,Extensive/shifting,EA028-3,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +31410,Ca2,EA028,Intensive,EA028-5,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +31411,Ca20,EA028,Extensive/shifting,EA028-3,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +31412,Ca21,EA028,Extensive/shifting,EA028-3,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +31413,Ca22,EA028,Intensive,EA028-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +31414,Ca23,EA028,Intensive,EA028-5,,jensen1959,,1950,EthnographicAtlas_1967_p79, +31415,Ca24,EA028,Intensive,EA028-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +31416,Ca25,EA028,Intensive,EA028-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +31417,Ca26,EA028,Intensive,EA028-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +31418,Ca27,EA028,Extensive/shifting,EA028-3,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +31419,Ca28,EA028,Intensive,EA028-5,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p79, +31420,Ca29,EA028,Intensive,EA028-5,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p79, +31421,Ca3,EA028,Intensive,EA028-5,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +31422,Ca30,EA028,Intensive,EA028-5,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p79, +31423,Ca31,EA028,Intensive,EA028-5,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +31424,Ca32,EA028,Extensive/shifting,EA028-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +31425,Ca33,EA028,Extensive/shifting,EA028-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +31426,Ca34,EA028,Casual,EA028-2,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +31427,Ca35,EA028,Casual,EA028-2,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +31428,Ca36,EA028,Casual,EA028-2,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +31429,Ca37,EA028,Casual,EA028-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +31430,Ca38,EA028,Extensive/shifting,EA028-3,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +31431,Ca39,EA028,Intensive,EA028-5,,lewis1965b,,1930,EthnographicAtlas_1967_p79, +31432,Ca4,EA028,Intensive,EA028-5,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p79, +31433,Ca40,EA028,Intensive,EA028-5,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +31434,Ca41,EA028,Intensive,EA028-5,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +31435,Ca42,EA028,Intensive,EA028-5,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +31436,Ca43,EA028,?,EA028-NA,,,,,, +31437,Ca5,EA028,Intensive irrigated,EA028-6,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p79, +31438,Ca6,EA028,Casual,EA028-2,Except for a little cultivation of maize and date palms on the Awash River,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +31439,Ca7,EA028,Intensive,EA028-5,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +31440,Ca8,EA028,Intensive irrigated,EA028-6,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p79, +31441,Ca9,EA028,Extensive/shifting,EA028-3,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +31442,Cb1,EA028,?,EA028-NA,,,,,, +31443,Cb10,EA028,Extensive/shifting,EA028-3,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +31444,Cb11,EA028,Casual,EA028-2,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +31445,Cb12,EA028,Intensive irrigated,EA028-6,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +31446,Cb13,EA028,Extensive/shifting,EA028-3,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +31447,Cb14,EA028,Extensive/shifting,EA028-3,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +31448,Cb15,EA028,Extensive/shifting,EA028-3,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +31449,Cb16,EA028,Extensive/shifting,EA028-3,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +31450,Cb17,EA028,Intensive,EA028-5,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +31451,Cb18,EA028,Intensive,EA028-5,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p79, +31452,Cb19,EA028,Intensive,EA028-5,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +31453,Cb2,EA028,Extensive/shifting,EA028-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +31454,Cb20,EA028,Intensive,EA028-5,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +31455,Cb21,EA028,Casual,EA028-2,,pfeffer1936,,1930,EthnographicAtlas_1967_p83, +31456,Cb22,EA028,Extensive/shifting,EA028-3,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +31457,Cb23,EA028,Extensive/shifting,EA028-3,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p83, +31458,Cb24,EA028,Casual,EA028-2,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +31459,Cb25,EA028,Extensive/shifting,EA028-3,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +31460,Cb26,EA028,Intensive irrigated,EA028-6,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +31461,Cb27,EA028,Intensive,EA028-5,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +31462,Cb28,EA028,Intensive,EA028-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +31463,Cb29,EA028,?,EA028-NA,,,,,, +31464,Cb3,EA028,Intensive,EA028-5,There is some irrigation,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +31465,Cb4,EA028,Extensive/shifting,EA028-3,,reid1930,,1920,EthnographicAtlas_1967_p79, +31466,Cb5,EA028,Extensive/shifting,EA028-3,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p79, +31467,Cb6,EA028,Extensive/shifting,EA028-3,,woodnd,,1920,EthnographicAtlas_1967_p79, +31468,Cb7,EA028,Extensive/shifting,EA028-3,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +31469,Cb8,EA028,Extensive/shifting,EA028-3,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +31470,Cb9,EA028,Extensive/shifting,EA028-3,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +31471,Cc1,EA028,Intensive irrigated,EA028-6,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +31472,Cc10,EA028,Intensive irrigated,EA028-6,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +31473,Cc11,EA028,Intensive irrigated,EA028-6,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +31474,Cc12,EA028,Intensive irrigated,EA028-6,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +31475,Cc13,EA028,Intensive,EA028-5,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +31476,Cc14,EA028,Intensive irrigated,EA028-6,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +31477,Cc15,EA028,?,EA028-NA,,,,,, +31478,Cc16,EA028,Intensive irrigated,EA028-6,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +31479,Cc17,EA028,Intensive irrigated,EA028-6,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p83, +31480,Cc18,EA028,Intensive,EA028-5,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +31481,Cc19,EA028,Intensive irrigated,EA028-6,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +31482,Cc2,EA028,Intensive irrigated,EA028-6,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +31483,Cc20,EA028,Intensive,EA028-5,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p83, +31484,Cc3,EA028,Intensive irrigated,EA028-6,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +31485,Cc4,EA028,Intensive irrigated,EA028-6,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +31486,Cc5,EA028,Intensive irrigated,EA028-6,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p83, +31487,Cc6,EA028,Casual,EA028-2,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +31488,Cc7,EA028,Casual,EA028-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31489,Cc8,EA028,?,EA028-NA,,,,,, +31490,Cc9,EA028,Intensive irrigated,EA028-6,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +31491,Cd1,EA028,Intensive irrigated,EA028-6,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +31492,Cd10,EA028,Intensive irrigated,EA028-6,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +31493,Cd11,EA028,Extensive/shifting,EA028-3,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p83, +31494,Cd12,EA028,Intensive irrigated,EA028-6,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +31495,Cd13,EA028,Intensive,EA028-5,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +31496,Cd14,EA028,Intensive,EA028-5,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +31497,Cd15,EA028,Intensive irrigated,EA028-6,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +31498,Cd16,EA028,Intensive irrigated,EA028-6,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +31499,Cd17,EA028,Intensive,EA028-5,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +31500,Cd18,EA028,Intensive,EA028-5,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +31501,Cd19,EA028,Intensive,EA028-5,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +31502,Cd2,EA028,Intensive irrigated,EA028-6,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +31503,Cd20,EA028,Intensive,EA028-5,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +31504,Cd21,EA028,Intensive,EA028-5,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +31505,Cd3,EA028,Intensive,EA028-5,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +31506,Cd4,EA028,Intensive,EA028-5,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +31507,Cd5,EA028,Intensive irrigated,EA028-6,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +31508,Cd6,EA028,Intensive irrigated,EA028-6,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +31509,Cd7,EA028,Intensive,EA028-5,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +31510,Cd8,EA028,Intensive irrigated,EA028-6,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +31511,Cd9,EA028,Intensive irrigated,EA028-6,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +31512,Ce1,EA028,Intensive,EA028-5,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +31513,Ce2,EA028,?,EA028-NA,,,,,, +31514,Ce3,EA028,Intensive,EA028-5,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +31515,Ce4,EA028,Intensive,EA028-5,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31516,Ce5,EA028,Intensive,EA028-5,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +31517,Ce6,EA028,Intensive,EA028-5,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +31518,Ce7,EA028,Intensive,EA028-5,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +31519,Ce8,EA028,Intensive,EA028-5,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +31520,Cf1,EA028,Intensive,EA028-5,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +31521,Cf2,EA028,Intensive,EA028-5,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No4_Oct_1962, +31522,Cf3,EA028,Intensive,EA028-5,,munch1945,,1930,EthnographicAtlas_1967_p83, +31523,Cf4,EA028,Intensive,EA028-5,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +31524,Cf5,EA028,Intensive,EA028-5,,miner1939,,1930,EthnographicAtlas_1967_p83, +31525,Cg1,EA028,Intensive,EA028-5,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +31526,Cg2,EA028,Casual,EA028-2,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +31527,Cg3,EA028,Intensive,EA028-5,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +31528,Cg4,EA028,No agriculture,EA028-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +31529,Cg5,EA028,Intensive,EA028-5,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +31530,Ch1,EA028,Intensive,EA028-5,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +31531,Ch10,EA028,?,EA028-NA,,,,,, +31532,Ch11,EA028,Intensive irrigated,EA028-6,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +31533,Ch2,EA028,Intensive,EA028-5,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +31534,Ch3,EA028,Intensive,EA028-5,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +31535,Ch4,EA028,Intensive,EA028-5,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p83, +31536,Ch5,EA028,Intensive,EA028-5,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +31537,Ch6,EA028,Intensive,EA028-5,,ember1954,,1910,EthnographicAtlas_1967_p83, +31538,Ch7,EA028,Intensive,EA028-5,,friedrich1954,,1930,EthnographicAtlas_1967_p83, +31539,Ch8,EA028,Intensive,EA028-5,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +31540,Ch9,EA028,Intensive,EA028-5,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +31541,Ci1,EA028,Casual,EA028-2,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p83, +31542,Ci10,EA028,Intensive,EA028-5,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +31543,Ci11,EA028,Intensive irrigated,EA028-6,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +31544,Ci12,EA028,Intensive,EA028-5,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +31545,Ci2,EA028,Intensive,EA028-5,,grigolia1939,,1930,EthnographicAtlas_1967_p83, +31546,Ci3,EA028,Intensive,EA028-5,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p83, +31547,Ci4,EA028,Intensive,EA028-5,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +31548,Ci5,EA028,Intensive,EA028-5,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +31549,Ci6,EA028,Intensive,EA028-5,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p83, +31550,Ci7,EA028,Intensive,EA028-5,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p83, +31551,Ci8,EA028,Intensive irrigated,EA028-6,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +31552,Ci9,EA028,Intensive,EA028-5,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +31553,Cj1,EA028,Intensive irrigated,EA028-6,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +31554,Cj10,EA028,Intensive irrigated,EA028-6,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +31555,Cj2,EA028,No agriculture,EA028-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +31556,Cj3,EA028,Intensive,EA028-5,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +31557,Cj4,EA028,Intensive irrigated,EA028-6,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +31558,Cj5,EA028,No agriculture,EA028-1,,dickson1949,,1930,EthnographicAtlas_1967_p87, +31559,Cj6,EA028,Intensive,EA028-5,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +31560,Cj7,EA028,Intensive,EA028-5,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p87, +31561,Cj8,EA028,Intensive,EA028-5,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +31562,Cj9,EA028,Intensive irrigated,EA028-6,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +31563,Ea1,EA028,Intensive irrigated,EA028-6,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +31564,Ea10,EA028,Intensive,EA028-5,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +31565,Ea11,EA028,Intensive irrigated,EA028-6,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +31566,Ea12,EA028,Casual,EA028-2,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +31567,Ea13,EA028,Intensive,EA028-5,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +31568,Ea2,EA028,Intensive irrigated,EA028-6,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +31569,Ea3,EA028,Intensive irrigated,EA028-6,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +31570,Ea4,EA028,Intensive irrigated,EA028-6,,barth1956b,,1950,EthnographicAtlas_1967_p87, +31571,Ea5,EA028,Intensive irrigated,EA028-6,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +31572,Ea6,EA028,Casual,EA028-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +31573,Ea7,EA028,Intensive irrigated,EA028-6,,schurmann1962,,1950,EthnographicAtlas_1967_p87, +31574,Ea8,EA028,Intensive irrigated,EA028-6,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p87, +31575,Ea9,EA028,Intensive irrigated,EA028-6,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +31576,Eb1,EA028,Casual,EA028-2,Until recently the chief crop was hay,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +31577,Eb2,EA028,Intensive,EA028-5,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p87, +31578,Eb3,EA028,Casual,EA028-2,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p87, +31579,Eb4,EA028,?,EA028-NA,,,,,, +31580,Eb5,EA028,Intensive irrigated,EA028-6,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No2_Apr_1963, +31581,Eb6,EA028,?,EA028-NA,,,,,, +31582,Eb7,EA028,Casual,EA028-2,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +31583,Eb8,EA028,?,EA028-NA,,,,,, +31584,Ec1,EA028,No agriculture,EA028-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +31585,Ec10,EA028,No agriculture,EA028-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +31586,Ec11,EA028,No agriculture,EA028-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +31587,Ec2,EA028,Casual,EA028-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31588,Ec3,EA028,No agriculture,EA028-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +31589,Ec4,EA028,No agriculture,EA028-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +31590,Ec5,EA028,No agriculture,EA028-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +31591,Ec6,EA028,No agriculture,EA028-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +31592,Ec7,EA028,Extensive/shifting,EA028-3,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +31593,Ec8,EA028,No agriculture,EA028-1,,shimkin1939,,1900,EthnographicAtlas_1967_p87, +31594,Ec9,EA028,Extensive/shifting,EA028-3,,lattimore1933,,1920,EthnographicAtlas_1967_p87, +31595,Ed1,EA028,Intensive irrigated,EA028-6,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +31596,Ed10,EA028,Intensive,EA028-5,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +31597,Ed13,EA028,?,EA028-NA,,,,,, +31598,Ed14,EA028,?,EA028-NA,,,,,, +31599,Ed15a,EA028,?,EA028-NA,,,,,, +31600,Ed15b,EA028,Intensive irrigated,EA028-6,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +31601,Ed16,EA028,?,EA028-NA,,,,,, +31602,Ed2,EA028,Intensive,EA028-5,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +31603,Ed3,EA028,Intensive,EA028-5,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p87, +31604,Ed4,EA028,Intensive irrigated,EA028-6,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +31605,Ed5,EA028,Intensive irrigated,EA028-6,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31606,Ed6,EA028,Intensive irrigated,EA028-6,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +31607,Ed7,EA028,Intensive,EA028-5,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +31608,Ed8,EA028,Intensive irrigated,EA028-6,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +31609,Ed9,EA028,Intensive,EA028-5,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +31610,Ee1,EA028,Extensive/shifting,EA028-3,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +31611,Ee2,EA028,Intensive irrigated,EA028-6,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +31612,Ee3,EA028,Intensive,EA028-5,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +31613,Ee4,EA028,Intensive irrigated,EA028-6,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +31614,Ee5,EA028,Intensive,EA028-5,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +31615,Ee6,EA028,Intensive,EA028-5,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +31616,Ee7,EA028,?,EA028-NA,,,,,, +31617,Ee8,EA028,Intensive irrigated,EA028-6,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +31618,Ef1,EA028,Intensive irrigated,EA028-6,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +31619,Ef10,EA028,?,EA028-NA,,,,,, +31620,Ef11,EA028,Intensive irrigated,EA028-6,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +31621,Ef2,EA028,Intensive irrigated,EA028-6,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +31622,Ef3,EA028,?,EA028-NA,,,,,, +31623,Ef4,EA028,?,EA028-NA,,,,,, +31624,Ef5,EA028,Intensive,EA028-5,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +31625,Ef6,EA028,Intensive,EA028-5,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p87, +31626,Ef7,EA028,Intensive,EA028-5,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +31627,Ef8,EA028,Intensive irrigated,EA028-6,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +31628,Ef9,EA028,Intensive,EA028-5,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31629,Eg1,EA028,Casual,EA028-2,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31630,Eg10,EA028,Intensive irrigated,EA028-6,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +31631,Eg11,EA028,?,EA028-NA,,,,,, +31632,Eg12,EA028,?,EA028-NA,,,,,, +31633,Eg13,EA028,Extensive/shifting,EA028-3,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31634,Eg14,EA028,Extensive/shifting,EA028-3,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +31635,Eg2,EA028,Intensive irrigated,EA028-6,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +31636,Eg3,EA028,Extensive/shifting,EA028-3,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +31637,Eg4,EA028,No agriculture,EA028-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +31638,Eg5,EA028,Intensive,EA028-5,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +31639,Eg6,EA028,Intensive irrigated,EA028-6,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +31640,Eg7,EA028,Extensive/shifting,EA028-3,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +31641,Eg8,EA028,Intensive,EA028-5,,griffiths1946,,1940,EthnographicAtlas_1967_p91, +31642,Eg9,EA028,Extensive/shifting,EA028-3,,elwin1939,,1930,EthnographicAtlas_1967_p91, +31643,Eh1,EA028,No agriculture,EA028-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +31644,Eh10,EA028,?,EA028-NA,,,,,, +31645,Eh2,EA028,Intensive irrigated,EA028-6,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +31646,Eh3,EA028,Intensive irrigated,EA028-6,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +31647,Eh4,EA028,No agriculture,EA028-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31648,Eh5,EA028,Horticulture,EA028-4,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +31649,Eh6,EA028,Intensive irrigated,EA028-6,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +31650,Eh7,EA028,Extensive/shifting,EA028-3,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +31651,Eh8,EA028,Extensive/shifting,EA028-3,"But McLeod reports 'intensive, irrigated' (EA028 code ""6"") planted in 'cereal grains' (EA029 code ""6"")",faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91,"Assume Murdock comment refers to this variable, not Col 30 as stated in Gray (1999)" +31652,Eh9,EA028,Intensive,EA028-5,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +31653,Ei1,EA028,Extensive/shifting,EA028-3,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31654,Ei10,EA028,Extensive/shifting,EA028-3,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p91, +31655,Ei11,EA028,Extensive/shifting,EA028-3,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +31656,Ei12,EA028,Extensive/shifting,EA028-3,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +31657,Ei13,EA028,Intensive irrigated,EA028-6,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +31658,Ei14,EA028,Extensive/shifting,EA028-3,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +31659,Ei15,EA028,?,EA028-NA,,,,,, +31660,Ei16,EA028,Extensive/shifting,EA028-3,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +31661,Ei17,EA028,?,EA028-NA,,,,,, +31662,Ei18,EA028,Extensive/shifting,EA028-3,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +31663,Ei19,EA028,Extensive/shifting,EA028-3,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +31664,Ei2,EA028,Extensive/shifting,EA028-3,,mills1922,,1920,EthnographicAtlas_1967_p91, +31665,Ei20,EA028,?,EA028-NA,,,,,, +31666,Ei3,EA028,Intensive irrigated,EA028-6,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +31667,Ei4,EA028,Extensive/shifting,EA028-3,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +31668,Ei5,EA028,Extensive/shifting,EA028-3,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +31669,Ei6,EA028,Extensive/shifting,EA028-3,Transitional today from swidden agriculture to irrigated rice cultivation,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +31670,Ei7,EA028,Intensive irrigated,EA028-6,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +31671,Ei8,EA028,Extensive/shifting,EA028-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +31672,Ei9,EA028,Extensive/shifting,EA028-3,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p91, +31673,Ej1,EA028,Extensive/shifting,EA028-3,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +31674,Ej10,EA028,Extensive/shifting,EA028-3,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +31675,Ej11,EA028,Intensive irrigated,EA028-6,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +31676,Ej12,EA028,Extensive/shifting,EA028-3,But some irrigation in recent years,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +31677,Ej13,EA028,Intensive irrigated,EA028-6,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +31678,Ej14,EA028,Extensive/shifting,EA028-3,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31679,Ej15,EA028,Intensive,EA028-5,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +31680,Ej16,EA028,Intensive irrigated,EA028-6,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +31681,Ej2,EA028,Extensive/shifting,EA028-3,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +31682,Ej3,EA028,No agriculture,EA028-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +31683,Ej4,EA028,Intensive irrigated,EA028-6,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +31684,Ej5,EA028,Intensive irrigated,EA028-6,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +31685,Ej6,EA028,No agriculture,EA028-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p91, +31686,Ej7,EA028,Extensive/shifting,EA028-3,,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +31687,Ej8,EA028,Intensive irrigated,EA028-6,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +31688,Ej9,EA028,Intensive irrigated,EA028-6,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +31689,Ia1,EA028,Extensive/shifting,EA028-3,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +31690,Ia10,EA028,Extensive/shifting,EA028-3,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p91, +31691,Ia11,EA028,Intensive irrigated,EA028-6,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +31692,Ia12,EA028,Intensive irrigated,EA028-6,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +31693,Ia13,EA028,Horticulture,EA028-4,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +31694,Ia14,EA028,Extensive/shifting,EA028-3,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p95, +31695,Ia15,EA028,Extensive/shifting,EA028-3,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +31696,Ia16,EA028,Intensive irrigated,EA028-6,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +31697,Ia17,EA028,?,EA028-NA,,,,,, +31698,Ia18,EA028,?,EA028-NA,,,,,, +31699,Ia2,EA028,Intensive irrigated,EA028-6,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +31700,Ia3,EA028,Intensive irrigated,EA028-6,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +31701,Ia4,EA028,Extensive/shifting,EA028-3,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +31702,Ia5,EA028,Extensive/shifting,EA028-3,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +31703,Ia6,EA028,Extensive/shifting,EA028-3,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31704,Ia7,EA028,Extensive/shifting,EA028-3,,fox1954,,1950,EthnographicAtlas_1967_p91, +31705,Ia8,EA028,Intensive irrigated,EA028-6,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +31706,Ia9,EA028,Intensive irrigated,EA028-6,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +31707,Ib1,EA028,Extensive/shifting,EA028-3,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31708,Ib2,EA028,Intensive irrigated,EA028-6,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31709,Ib3,EA028,Intensive irrigated,EA028-6,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +31710,Ib4,EA028,Intensive irrigated,EA028-6,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p95, +31711,Ib5,EA028,Extensive/shifting,EA028-3,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +31712,Ib6,EA028,Intensive irrigated,EA028-6,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +31713,Ib7,EA028,Horticulture,EA028-4,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p95, +31714,Ib8,EA028,Horticulture,EA028-4,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p95, +31715,Ib9,EA028,?,EA028-NA,,,,,, +31716,Ic1,EA028,Intensive irrigated,EA028-6,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31717,Ic10,EA028,Extensive/shifting,EA028-3,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p95, +31718,Ic11,EA028,Extensive/shifting,EA028-3,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31719,Ic12,EA028,Extensive/shifting,EA028-3,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +31720,Ic13,EA028,?,EA028-NA,,,,,, +31721,Ic2,EA028,Extensive/shifting,EA028-3,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +31722,Ic3,EA028,Extensive/shifting,EA028-3,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p95, +31723,Ic4,EA028,?,EA028-NA,,,,,, +31724,Ic5,EA028,Extensive/shifting,EA028-3,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p95, +31725,Ic6,EA028,Extensive/shifting,EA028-3,,drabbe1940,,1930,EthnographicAtlas_1967_p95, +31726,Ic7,EA028,Extensive/shifting,EA028-3,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +31727,Ic8,EA028,Horticulture,EA028-4,,pleyte1893,,1890,EthnographicAtlas_1967_p95, +31728,Ic9,EA028,Intensive irrigated,EA028-6,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p95, +31729,Id1,EA028,No agriculture,EA028-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +31730,Id10,EA028,No agriculture,EA028-1,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +31731,Id11,EA028,No agriculture,EA028-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +31732,Id12,EA028,No agriculture,EA028-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +31733,Id13,EA028,No agriculture,EA028-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +31734,Id2,EA028,No agriculture,EA028-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +31735,Id3,EA028,No agriculture,EA028-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +31736,Id4,EA028,No agriculture,EA028-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +31737,Id5,EA028,No agriculture,EA028-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +31738,Id6,EA028,No agriculture,EA028-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p95, +31739,Id7,EA028,No agriculture,EA028-1,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +31740,Id8,EA028,No agriculture,EA028-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +31741,Id9,EA028,No agriculture,EA028-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p95, +31742,Ie1,EA028,Extensive/shifting,EA028-3,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31743,Ie10,EA028,Extensive/shifting,EA028-3,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +31744,Ie11,EA028,Intensive,EA028-5,,bowers1964,,1950,EthnographicAtlas_1967_p95, +31745,Ie12,EA028,Horticulture,EA028-4,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31746,Ie13,EA028,Horticulture,EA028-4,,landtman1927,,1920,EthnographicAtlas_1967_p95, +31747,Ie14,EA028,Horticulture,EA028-4,,haddon1908,,1900,EthnographicAtlas_1967_p95, +31748,Ie15,EA028,Horticulture,EA028-4,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31749,Ie16,EA028,Horticulture,EA028-4,,williams194041,,1940,EthnographicAtlas_1967_p95, +31750,Ie17,EA028,Horticulture,EA028-4,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +31751,Ie18,EA028,Intensive,EA028-5,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +31752,Ie19,EA028,Horticulture,EA028-4,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +31753,Ie2,EA028,Horticulture,EA028-4,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +31754,Ie20,EA028,Horticulture,EA028-4,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +31755,Ie21,EA028,Horticulture,EA028-4,,malinowski1916,,1900,EthnographicAtlas_1967_p95, +31756,Ie22,EA028,Horticulture,EA028-4,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +31757,Ie23,EA028,Horticulture,EA028-4,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +31758,Ie24,EA028,Horticulture,EA028-4,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p95, +31759,Ie25,EA028,Horticulture,EA028-4,,williamson1912,,1920,EthnographicAtlas_1967_p95, +31760,Ie26,EA028,Horticulture,EA028-4,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +31761,Ie27,EA028,Horticulture,EA028-4,,thurnwald1916,,1910,EthnographicAtlas_1967_p99, +31762,Ie28,EA028,Horticulture,EA028-4,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +31763,Ie29,EA028,Horticulture,EA028-4,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31764,Ie3,EA028,Horticulture,EA028-4,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31765,Ie30,EA028,Horticulture,EA028-4,,pouwer1955,,1950,EthnographicAtlas_1967_p99, +31766,Ie31,EA028,Horticulture,EA028-4,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +31767,Ie32,EA028,Horticulture,EA028-4,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +31768,Ie33,EA028,Horticulture,EA028-4,The stable food is sago,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +31769,Ie34,EA028,?,EA028-NA,,,,,, +31770,Ie35,EA028,Horticulture,EA028-4,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +31771,Ie36,EA028,?,EA028-NA,,,,,, +31772,Ie37,EA028,?,EA028-NA,,,,,, +31773,Ie38,EA028,Horticulture,EA028-4,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +31774,Ie39,EA028,Horticulture,EA028-4,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +31775,Ie4,EA028,Horticulture,EA028-4,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31776,Ie5,EA028,Horticulture,EA028-4,,williams1936,,1930,EthnographicAtlas_1967_p95, +31777,Ie6,EA028,Horticulture,EA028-4,,held1947,,1930,EthnographicAtlas_1967_p95, +31778,Ie7,EA028,Extensive/shifting,EA028-3,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +31779,Ie8,EA028,Horticulture,EA028-4,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +31780,Ie9,EA028,Horticulture,EA028-4,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +31781,If1,EA028,Horticulture,EA028-4,Irrigated cultivation of wet taro and swidden cultivation of dry taro also occur,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31782,If10,EA028,?,EA028-NA,,,,,, +31783,If11,EA028,Horticulture,EA028-4,,sarfert1919,,1860,EthnographicAtlas_1967_p99, +31784,If12,EA028,Horticulture,EA028-4,,mason1954,,1940,EthnographicAtlas_1967_p99, +31785,If13,EA028,Horticulture,EA028-4,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p99, +31786,If14,EA028,Horticulture,EA028-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +31787,If15,EA028,Horticulture,EA028-4,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +31788,If16,EA028,Horticulture,EA028-4,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +31789,If17,EA028,Horticulture,EA028-4,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +31790,If2,EA028,Horticulture,EA028-4,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +31791,If3,EA028,Horticulture,EA028-4,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +31792,If4,EA028,Horticulture,EA028-4,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +31793,If5,EA028,Horticulture,EA028-4,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +31794,If6,EA028,Horticulture,EA028-4,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +31795,If7,EA028,Horticulture,EA028-4,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p99, +31796,If8,EA028,Extensive/shifting,EA028-3,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +31797,If9,EA028,Horticulture,EA028-4,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +31798,Ig1,EA028,Horticulture,EA028-4,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +31799,Ig10,EA028,Horticulture,EA028-4,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +31800,Ig11,EA028,Horticulture,EA028-4,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +31801,Ig12,EA028,Horticulture,EA028-4,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p99, +31802,Ig13,EA028,Horticulture,EA028-4,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p99, +31803,Ig14,EA028,Horticulture,EA028-4,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +31804,Ig15,EA028,?,EA028-NA,,,,,, +31805,Ig16,EA028,?,EA028-NA,,,,,, +31806,Ig17,EA028,?,EA028-NA,,,,,, +31807,Ig18,EA028,?,EA028-NA,,,,,, +31808,Ig19,EA028,?,EA028-NA,,,,,, +31809,Ig2,EA028,Horticulture,EA028-4,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +31810,Ig20,EA028,Horticulture,EA028-4,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +31811,Ig21,EA028,Horticulture,EA028-4,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +31812,Ig3,EA028,Horticulture,EA028-4,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +31813,Ig4,EA028,Horticulture,EA028-4,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +31814,Ig5,EA028,Horticulture,EA028-4,,fortune1932b,,1920,EthnographicAtlas_1967_p99, +31815,Ig6,EA028,Horticulture,EA028-4,,ivens1927,,1900,EthnographicAtlas_1967_p99, +31816,Ig7,EA028,Horticulture,EA028-4,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +31817,Ig8,EA028,?,EA028-NA,,,,,, +31818,Ig9,EA028,Casual,EA028-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +31819,Ih1,EA028,Horticulture,EA028-4,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +31820,Ih10,EA028,Horticulture,EA028-4,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31821,Ih11,EA028,?,EA028-NA,,,,,, +31822,Ih12,EA028,?,EA028-NA,,,,,, +31823,Ih13,EA028,?,EA028-NA,,,,,, +31824,Ih14,EA028,Horticulture,EA028-4,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +31825,Ih2,EA028,Horticulture,EA028-4,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31826,Ih3,EA028,Horticulture,EA028-4,Some small-scale irrigation of taro,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +31827,Ih4,EA028,Horticulture,EA028-4,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31828,Ih5,EA028,Intensive irrigated,EA028-6,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p99, +31829,Ih6,EA028,Horticulture,EA028-4,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p99, +31830,Ih7,EA028,Horticulture,EA028-4,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p99, +31831,Ih8,EA028,Horticulture,EA028-4,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +31832,Ih9,EA028,Horticulture,EA028-4,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31833,Ii1,EA028,Horticulture,EA028-4,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +31834,Ii10,EA028,Horticulture,EA028-4,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +31835,Ii12,EA028,Horticulture,EA028-4,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31836,Ii13,EA028,Horticulture,EA028-4,,burrows1937,,1830,EthnographicAtlas_1967_p99, +31837,Ii14,EA028,Horticulture,EA028-4,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +31838,Ii2,EA028,Horticulture,EA028-4,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +31839,Ii3,EA028,Horticulture,EA028-4,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +31840,Ii4,EA028,Horticulture,EA028-4,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +31841,Ii5,EA028,Horticulture,EA028-4,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p99, +31842,Ii6,EA028,Horticulture,EA028-4,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +31843,Ii7,EA028,Horticulture,EA028-4,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +31844,Ii8,EA028,Horticulture,EA028-4,,burrows1936,,1840,EthnographicAtlas_1967_p99, +31845,Ii9,EA028,Horticulture,EA028-4,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +31846,Ij1,EA028,Horticulture,EA028-4,,buck1934,,1820,EthnographicAtlas_1967_p99, +31847,Ij10,EA028,Horticulture,EA028-4,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +31848,Ij2,EA028,Extensive/shifting,EA028-3,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +31849,Ij3,EA028,Horticulture,EA028-4,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +31850,Ij4,EA028,Horticulture,EA028-4,,buck1932a,,1850,EthnographicAtlas_1967_p103, +31851,Ij5,EA028,Horticulture,EA028-4,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p103, +31852,Ij6,EA028,Intensive irrigated,EA028-6,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p103, +31853,Ij7,EA028,Horticulture,EA028-4,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +31854,Ij8,EA028,Horticulture,EA028-4,But with some irrigation,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p103, +31855,Ij9,EA028,Extensive/shifting,EA028-3,,metraux1940,,1860,EthnographicAtlas_1967_p103, +31856,Na1,EA028,No agriculture,EA028-1,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +31857,Na10,EA028,No agriculture,EA028-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +31858,Na11,EA028,No agriculture,EA028-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +31859,Na12,EA028,No agriculture,EA028-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +31860,Na13,EA028,No agriculture,EA028-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +31861,Na14,EA028,No agriculture,EA028-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +31862,Na15,EA028,No agriculture,EA028-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p103, +31863,Na16,EA028,No agriculture,EA028-1,,osgood1931,,1860,EthnographicAtlas_1967_p103, +31864,Na17,EA028,No agriculture,EA028-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31865,Na19,EA028,No agriculture,EA028-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +31866,Na2,EA028,No agriculture,EA028-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +31867,Na20,EA028,No agriculture,EA028-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +31868,Na21,EA028,No agriculture,EA028-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +31869,Na22,EA028,No agriculture,EA028-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +31870,Na23,EA028,No agriculture,EA028-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +31871,Na24,EA028,No agriculture,EA028-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +31872,Na25,EA028,No agriculture,EA028-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +31873,Na26,EA028,No agriculture,EA028-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +31874,Na27,EA028,No agriculture,EA028-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +31875,Na28,EA028,No agriculture,EA028-1,,jenness1937,,1880,EthnographicAtlas_1967_p103, +31876,Na29,EA028,No agriculture,EA028-1,,goddard1916,,1850,EthnographicAtlas_1967_p103, +31877,Na3,EA028,No agriculture,EA028-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +31878,Na30,EA028,No agriculture,EA028-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +31879,Na31,EA028,No agriculture,EA028-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +31880,Na32,EA028,No agriculture,EA028-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +31881,Na33,EA028,No agriculture,EA028-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +31882,Na34,EA028,No agriculture,EA028-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +31883,Na35,EA028,No agriculture,EA028-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +31884,Na36,EA028,Extensive/shifting,EA028-3,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +31885,Na37,EA028,No agriculture,EA028-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +31886,Na38,EA028,No agriculture,EA028-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +31887,Na39,EA028,No agriculture,EA028-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +31888,Na4,EA028,No agriculture,EA028-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +31889,Na40,EA028,Extensive/shifting,EA028-3,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +31890,Na41,EA028,No agriculture,EA028-1,But there was some agriculture in post-Columbian times,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +31891,Na42,EA028,Extensive/shifting,EA028-3,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +31892,Na43,EA028,No agriculture,EA028-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +31893,Na44,EA028,No agriculture,EA028-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +31894,Na45,EA028,No agriculture,EA028-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +31895,Na5,EA028,No agriculture,EA028-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +31896,Na6,EA028,No agriculture,EA028-1,,lantis1946,,1930,EthnographicAtlas_1967_p103, +31897,Na7,EA028,No agriculture,EA028-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +31898,Na8,EA028,No agriculture,EA028-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +31899,Na9,EA028,No agriculture,EA028-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +31900,Nb1,EA028,No agriculture,EA028-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +31901,Nb10,EA028,No agriculture,EA028-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +31902,Nb11,EA028,No agriculture,EA028-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +31903,Nb12,EA028,No agriculture,EA028-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +31904,Nb13,EA028,No agriculture,EA028-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +31905,Nb14,EA028,No agriculture,EA028-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +31906,Nb15,EA028,No agriculture,EA028-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +31907,Nb16,EA028,No agriculture,EA028-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +31908,Nb17,EA028,No agriculture,EA028-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +31909,Nb18,EA028,No agriculture,EA028-1,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +31910,Nb19,EA028,No agriculture,EA028-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +31911,Nb2,EA028,No agriculture,EA028-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +31912,Nb20,EA028,No agriculture,EA028-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +31913,Nb21,EA028,No agriculture,EA028-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +31914,Nb22,EA028,No agriculture,EA028-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +31915,Nb23,EA028,No agriculture,EA028-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +31916,Nb24,EA028,No agriculture,EA028-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +31917,Nb25,EA028,No agriculture,EA028-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +31918,Nb26,EA028,No agriculture,EA028-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +31919,Nb27,EA028,No agriculture,EA028-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +31920,Nb28,EA028,No agriculture,EA028-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +31921,Nb29,EA028,No agriculture,EA028-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +31922,Nb3,EA028,No agriculture,EA028-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +31923,Nb30,EA028,No agriculture,EA028-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +31924,Nb31,EA028,No agriculture,EA028-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p107, +31925,Nb32,EA028,No agriculture,EA028-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +31926,Nb33,EA028,No agriculture,EA028-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +31927,Nb34,EA028,No agriculture,EA028-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +31928,Nb35,EA028,No agriculture,EA028-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +31929,Nb36,EA028,No agriculture,EA028-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +31930,Nb37,EA028,No agriculture,EA028-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +31931,Nb38,EA028,No agriculture,EA028-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +31932,Nb39,EA028,No agriculture,EA028-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +31933,Nb4,EA028,No agriculture,EA028-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +31934,Nb5,EA028,No agriculture,EA028-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +31935,Nb6,EA028,No agriculture,EA028-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +31936,Nb7,EA028,No agriculture,EA028-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +31937,Nb8,EA028,No agriculture,EA028-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +31938,Nb9,EA028,No agriculture,EA028-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +31939,Nc1,EA028,No agriculture,EA028-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +31940,Nc10,EA028,No agriculture,EA028-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +31941,Nc11,EA028,No agriculture,EA028-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +31942,Nc12,EA028,No agriculture,EA028-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +31943,Nc13,EA028,No agriculture,EA028-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +31944,Nc14,EA028,No agriculture,EA028-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +31945,Nc15,EA028,No agriculture,EA028-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +31946,Nc16,EA028,No agriculture,EA028-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +31947,Nc17,EA028,No agriculture,EA028-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +31948,Nc18,EA028,No agriculture,EA028-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +31949,Nc19,EA028,No agriculture,EA028-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p107, +31950,Nc2,EA028,No agriculture,EA028-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +31951,Nc20,EA028,No agriculture,EA028-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +31952,Nc21,EA028,No agriculture,EA028-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +31953,Nc22,EA028,No agriculture,EA028-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +31954,Nc23,EA028,No agriculture,EA028-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +31955,Nc24,EA028,No agriculture,EA028-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +31956,Nc25,EA028,No agriculture,EA028-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +31957,Nc26,EA028,No agriculture,EA028-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +31958,Nc27,EA028,No agriculture,EA028-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p107, +31959,Nc28,EA028,No agriculture,EA028-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +31960,Nc29,EA028,No agriculture,EA028-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +31961,Nc3,EA028,No agriculture,EA028-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +31962,Nc30,EA028,No agriculture,EA028-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +31963,Nc31,EA028,No agriculture,EA028-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +31964,Nc32,EA028,No agriculture,EA028-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +31965,Nc33,EA028,No agriculture,EA028-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +31966,Nc34,EA028,No agriculture,EA028-1,,meigs1939,,1880,EthnographicAtlas_1967_p107, +31967,Nc4,EA028,No agriculture,EA028-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +31968,Nc5,EA028,No agriculture,EA028-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +31969,Nc6,EA028,No agriculture,EA028-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +31970,Nc7,EA028,No agriculture,EA028-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +31971,Nc8,EA028,No agriculture,EA028-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +31972,Nc9,EA028,No agriculture,EA028-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +31973,Nd1,EA028,No agriculture,EA028-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +31974,Nd10,EA028,No agriculture,EA028-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +31975,Nd11,EA028,No agriculture,EA028-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +31976,Nd12,EA028,No agriculture,EA028-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +31977,Nd13,EA028,No agriculture,EA028-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +31978,Nd14,EA028,No agriculture,EA028-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +31979,Nd15,EA028,No agriculture,EA028-1,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +31980,Nd16,EA028,No agriculture,EA028-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +31981,Nd17,EA028,No agriculture,EA028-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +31982,Nd18,EA028,No agriculture,EA028-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +31983,Nd19,EA028,No agriculture,EA028-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +31984,Nd2,EA028,Casual,EA028-2,Practiced only by a few families,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +31985,Nd20,EA028,No agriculture,EA028-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +31986,Nd21,EA028,No agriculture,EA028-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +31987,Nd22,EA028,No agriculture,EA028-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +31988,Nd23,EA028,No agriculture,EA028-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +31989,Nd24,EA028,No agriculture,EA028-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +31990,Nd25,EA028,No agriculture,EA028-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +31991,Nd26,EA028,No agriculture,EA028-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +31992,Nd27,EA028,No agriculture,EA028-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +31993,Nd28,EA028,No agriculture,EA028-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +31994,Nd29,EA028,No agriculture,EA028-1,But irrigation of wild seeds was practiced,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +31995,Nd3,EA028,Intensive irrigated,EA028-6,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +31996,Nd30,EA028,No agriculture,EA028-1,But plots of wild seeds were irrigated,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +31997,Nd31,EA028,Casual,EA028-2,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +31998,Nd32,EA028,No agriculture,EA028-1,"But 'casual agriculture' (code ""2"") for the Panamint of Death Valley",driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +31999,Nd33,EA028,No agriculture,EA028-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +32000,Nd34,EA028,No agriculture,EA028-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +32001,Nd35,EA028,Casual,EA028-2,Plots of wild seeds were sown and cultivated,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +32002,Nd36,EA028,No agriculture,EA028-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +32003,Nd37,EA028,Casual,EA028-2,Plots of wild seeds were planted and irrigated,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +32004,Nd38,EA028,Casual,EA028-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +32005,Nd39,EA028,Intensive irrigated,EA028-6,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +32006,Nd4,EA028,No agriculture,EA028-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +32007,Nd40,EA028,No agriculture,EA028-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +32008,Nd41,EA028,No agriculture,EA028-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +32009,Nd42,EA028,No agriculture,EA028-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +32010,Nd43,EA028,No agriculture,EA028-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +32011,Nd44,EA028,No agriculture,EA028-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +32012,Nd45,EA028,No agriculture,EA028-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +32013,Nd46,EA028,No agriculture,EA028-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +32014,Nd47,EA028,No agriculture,EA028-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +32015,Nd48,EA028,No agriculture,EA028-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +32016,Nd49,EA028,No agriculture,EA028-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +32017,Nd5,EA028,No agriculture,EA028-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +32018,Nd50,EA028,No agriculture,EA028-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +32019,Nd51,EA028,Casual,EA028-2,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +32020,Nd52,EA028,Intensive irrigated,EA028-6,But agriculture was practiced by only a few families,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +32021,Nd53,EA028,Intensive irrigated,EA028-6,But only a few families practiced agriculture,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +32022,Nd54,EA028,Intensive irrigated,EA028-6,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32023,Nd55,EA028,Intensive irrigated,EA028-6,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +32024,Nd56,EA028,Intensive irrigated,EA028-6,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +32025,Nd57,EA028,No agriculture,EA028-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +32026,Nd58,EA028,No agriculture,EA028-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +32027,Nd59,EA028,No agriculture,EA028-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +32028,Nd6,EA028,No agriculture,EA028-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +32029,Nd60,EA028,No agriculture,EA028-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +32030,Nd61,EA028,No agriculture,EA028-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +32031,Nd62,EA028,No agriculture,EA028-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +32032,Nd63,EA028,No agriculture,EA028-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +32033,Nd64,EA028,No agriculture,EA028-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +32034,Nd65,EA028,Casual,EA028-2,But agriculture was practiced by a few families only,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +32035,Nd66,EA028,Casual,EA028-2,But agriculture was practiced by a few families only,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +32036,Nd67,EA028,Extensive/shifting,EA028-3,,gifford1936,,1870,EthnographicAtlas_1967_p111, +32037,Nd7,EA028,No agriculture,EA028-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +32038,Nd8,EA028,No agriculture,EA028-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +32039,Nd9,EA028,No agriculture,EA028-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +32040,Ne1,EA028,No agriculture,EA028-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +32041,Ne10,EA028,Intensive,EA028-5,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +32042,Ne11,EA028,No agriculture,EA028-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +32043,Ne12,EA028,No agriculture,EA028-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +32044,Ne13,EA028,No agriculture,EA028-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +32045,Ne14,EA028,No agriculture,EA028-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +32046,Ne15,EA028,Intensive,EA028-5,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +32047,Ne16,EA028,No agriculture,EA028-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +32048,Ne17,EA028,No agriculture,EA028-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +32049,Ne18,EA028,No agriculture,EA028-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +32050,Ne19,EA028,No agriculture,EA028-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +32051,Ne2,EA028,No agriculture,EA028-1,,mcallister1937,,1870,EthnographicAtlas_1967_p111, +32052,Ne20,EA028,Casual,EA028-2,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p115, +32053,Ne21,EA028,?,EA028-NA,,,,,, +32054,Ne3,EA028,No agriculture,EA028-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p111, +32055,Ne4,EA028,Casual,EA028-2,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +32056,Ne5,EA028,Casual,EA028-2,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +32057,Ne6,EA028,Intensive,EA028-5,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p111, +32058,Ne7,EA028,No agriculture,EA028-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +32059,Ne8,EA028,No agriculture,EA028-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +32060,Ne9,EA028,No agriculture,EA028-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +32061,Nf10,EA028,Extensive/shifting,EA028-3,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +32062,Nf11,EA028,Extensive/shifting,EA028-3,,whitman1937,,1870,EthnographicAtlas_1967_p115, +32063,Nf12,EA028,Extensive/shifting,EA028-3,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +32064,Nf13,EA028,Extensive/shifting,EA028-3,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32065,Nf14,EA028,Extensive/shifting,EA028-3,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +32066,Nf15,EA028,?,EA028-NA,,,,,, +32067,Nf2,EA028,Extensive/shifting,EA028-3,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p115, +32068,Nf3,EA028,Extensive/shifting,EA028-3,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +32069,Nf4,EA028,Extensive/shifting,EA028-3,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +32070,Nf5,EA028,Extensive/shifting,EA028-3,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +32071,Nf6,EA028,Extensive/shifting,EA028-3,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +32072,Nf7,EA028,Extensive/shifting,EA028-3,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32073,Nf8,EA028,Extensive/shifting,EA028-3,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +32074,Nf9,EA028,Extensive/shifting,EA028-3,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +32075,Ng1,EA028,Extensive/shifting,EA028-3,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +32076,Ng10,EA028,Extensive/shifting,EA028-3,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +32077,Ng11,EA028,Extensive/shifting,EA028-3,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p115, +32078,Ng12,EA028,Extensive/shifting,EA028-3,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p115, +32079,Ng13,EA028,?,EA028-NA,,,,,, +32080,Ng14,EA028,?,EA028-NA,,,,,, +32081,Ng15,EA028,?,EA028-NA,,,,,, +32082,Ng2,EA028,?,EA028-NA,,,,,, +32083,Ng3,EA028,Extensive/shifting,EA028-3,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +32084,Ng4,EA028,?,EA028-NA,,,,,, +32085,Ng5,EA028,Extensive/shifting,EA028-3,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +32086,Ng6,EA028,Extensive/shifting,EA028-3,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +32087,Ng7,EA028,Extensive/shifting,EA028-3,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +32088,Ng8,EA028,Extensive/shifting,EA028-3,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p115, +32089,Ng9,EA028,Intensive,EA028-5,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +32090,Nh1,EA028,Casual,EA028-2,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +32091,Nh10,EA028,Intensive irrigated,EA028-6,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +32092,Nh11,EA028,Intensive irrigated,EA028-6,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +32093,Nh12,EA028,Intensive irrigated,EA028-6,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +32094,Nh13,EA028,Intensive,EA028-5,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +32095,Nh14,EA028,Intensive irrigated,EA028-6,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +32096,Nh15,EA028,Casual,EA028-2,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +32097,Nh16,EA028,Extensive/shifting,EA028-3,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32098,Nh17,EA028,Extensive/shifting,EA028-3,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +32099,Nh18,EA028,Intensive irrigated,EA028-6,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32100,Nh19,EA028,Intensive,EA028-5,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +32101,Nh2,EA028,Intensive irrigated,EA028-6,,dozier1954,,1950,EthnographicAtlas_1967_p115, +32102,Nh20,EA028,Intensive,EA028-5,,gifford1931,,1860,EthnographicAtlas_1967_p115, +32103,Nh21,EA028,Intensive,EA028-5,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32104,Nh22,EA028,Intensive,EA028-5,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +32105,Nh23,EA028,Casual,EA028-2,,gifford1932a,,1870,EthnographicAtlas_1967_p115, +32106,Nh24,EA028,No agriculture,EA028-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +32107,Nh25,EA028,Intensive irrigated,EA028-6,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +32108,Nh26,EA028,?,EA028-NA,,,,,, +32109,Nh27,EA028,?,EA028-NA,,,,,, +32110,Nh3,EA028,Intensive irrigated,EA028-6,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +32111,Nh4,EA028,Intensive irrigated,EA028-6,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +32112,Nh5,EA028,Intensive irrigated,EA028-6,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +32113,Nh6,EA028,Intensive,EA028-5,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +32114,Nh7,EA028,Intensive irrigated,EA028-6,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +32115,Nh8,EA028,Intensive irrigated,EA028-6,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +32116,Nh9,EA028,Intensive irrigated,EA028-6,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p115, +32117,Ni1,EA028,Intensive,EA028-5,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +32118,Ni2,EA028,Intensive irrigated,EA028-6,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +32119,Ni3,EA028,Extensive/shifting,EA028-3,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +32120,Ni4,EA028,No agriculture,EA028-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p115, +32121,Ni5,EA028,No agriculture,EA028-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +32122,Ni6,EA028,Intensive irrigated,EA028-6,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +32123,Ni7,EA028,Intensive irrigated,EA028-6,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +32124,Ni8,EA028,?,EA028-NA,,,,,, +32125,Ni9,EA028,?,EA028-NA,,,,,, +32126,Nj1,EA028,Extensive/shifting,EA028-3,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32127,Nj10,EA028,Extensive/shifting,EA028-3,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32128,Nj11,EA028,?,EA028-NA,,,,,, +32129,Nj12,EA028,?,EA028-NA,,,,,, +32130,Nj13,EA028,?,EA028-NA,,,,,, +32131,Nj14,EA028,?,EA028-NA,,,,,, +32132,Nj2,EA028,Intensive irrigated,EA028-6,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +32133,Nj3,EA028,Extensive/shifting,EA028-3,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +32134,Nj4,EA028,Extensive/shifting,EA028-3,"Aboriginally 'casual agriculture' (code ""2"")",kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +32135,Nj5,EA028,?,EA028-NA,,,,,, +32136,Nj6,EA028,?,EA028-NA,,,,,, +32137,Nj7,EA028,Extensive/shifting,EA028-3,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32138,Nj8,EA028,Intensive,EA028-5,,foster1948,,1500,EthnographicAtlas_1967_p119, +32139,Nj9,EA028,Extensive/shifting,EA028-3,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +32140,Sa1,EA028,Extensive/shifting,EA028-3,But bananas are often the staple today,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +32141,Sa10,EA028,Extensive/shifting,EA028-3,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p119, +32142,Sa11,EA028,?,EA028-NA,,,,,, +32143,Sa12,EA028,Extensive/shifting,EA028-3,,stone1948,,1948,EthnographicAtlas_1967_p119, +32144,Sa13,EA028,Extensive/shifting,EA028-3,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +32145,Sa14,EA028,?,EA028-NA,,,,,, +32146,Sa15,EA028,?,EA028-NA,,,,,, +32147,Sa16,EA028,?,EA028-NA,,,,,, +32148,Sa17,EA028,?,EA028-NA,,,,,, +32149,Sa2,EA028,?,EA028-NA,,,,,, +32150,Sa3,EA028,Extensive/shifting,EA028-3,,wisdom1940,,1930,EthnographicAtlas_1967_p119, +32151,Sa4,EA028,Extensive/shifting,EA028-3,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +32152,Sa5,EA028,Extensive/shifting,EA028-3,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +32153,Sa6,EA028,Extensive/shifting,EA028-3,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +32154,Sa7,EA028,Horticulture,EA028-4,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +32155,Sa8,EA028,Extensive/shifting,EA028-3,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +32156,Sa9,EA028,Extensive/shifting,EA028-3,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +32157,Sb1,EA028,Intensive,EA028-5,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +32158,Sb2,EA028,Extensive/shifting,EA028-3,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +32159,Sb3,EA028,Extensive/shifting,EA028-3,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +32160,Sb4,EA028,Extensive/shifting,EA028-3,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +32161,Sb5,EA028,No agriculture,EA028-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +32162,Sb6,EA028,Casual,EA028-2,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +32163,Sb7,EA028,Extensive/shifting,EA028-3,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +32164,Sb8,EA028,Intensive irrigated,EA028-6,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +32165,Sb9,EA028,Intensive,EA028-5,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +32166,Sc1,EA028,Casual,EA028-2,"Agriculture is absent in some groups, recent and of varying importance in others",hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +32167,Sc10,EA028,Extensive/shifting,EA028-3,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +32168,Sc11,EA028,Extensive/shifting,EA028-3,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p119, +32169,Sc12,EA028,Extensive/shifting,EA028-3,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p119, +32170,Sc13,EA028,Extensive/shifting,EA028-3,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +32171,Sc14,EA028,?,EA028-NA,,,,,, +32172,Sc15,EA028,Extensive/shifting,EA028-3,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p119, +32173,Sc16,EA028,Extensive/shifting,EA028-3,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p119, +32174,Sc17,EA028,Extensive/shifting,EA028-3,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +32175,Sc18,EA028,Extensive/shifting,EA028-3,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +32176,Sc2,EA028,Extensive/shifting,EA028-3,,leedsnd,,1950,EthnographicAtlas_1967_p119, +32177,Sc3,EA028,Extensive/shifting,EA028-3,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +32178,Sc4,EA028,Extensive/shifting,EA028-3,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +32179,Sc5,EA028,Extensive/shifting,EA028-3,,farabee1918,,1900,EthnographicAtlas_1967_p119, +32180,Sc6,EA028,Extensive/shifting,EA028-3,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32181,Sc7,EA028,Extensive/shifting,EA028-3,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +32182,Sc8,EA028,Extensive/shifting,EA028-3,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +32183,Sc9,EA028,Extensive/shifting,EA028-3,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +32184,Sd1,EA028,Extensive/shifting,EA028-3,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32185,Sd2,EA028,Extensive/shifting,EA028-3,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +32186,Sd3,EA028,Extensive/shifting,EA028-3,,nimuendaju1926,,1920,EthnographicAtlas_1967_p119, +32187,Sd4,EA028,Extensive/shifting,EA028-3,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +32188,Sd5,EA028,Extensive/shifting,EA028-3,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +32189,Sd6,EA028,No agriculture,EA028-1,But a few groups grow a little manioc,migliazza1964,,1960,EthnographicAtlas_1967_p119, +32190,Sd7,EA028,Extensive/shifting,EA028-3,,fock1963,,1950,EthnographicAtlas_1967_p119, +32191,Sd8,EA028,Casual,EA028-2,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +32192,Sd9,EA028,Extensive/shifting,EA028-3,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32193,Se1,EA028,Extensive/shifting,EA028-3,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +32194,Se10,EA028,Extensive/shifting,EA028-3,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +32195,Se11,EA028,Extensive/shifting,EA028-3,,prost1965,,1960,EthnographicAtlas_1967_p123, +32196,Se12,EA028,?,EA028-NA,,,,,, +32197,Se2,EA028,Extensive/shifting,EA028-3,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +32198,Se3,EA028,Extensive/shifting,EA028-3,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +32199,Se4,EA028,Extensive/shifting,EA028-3,,fejos1943,,1940,EthnographicAtlas_1967_p119, +32200,Se5,EA028,Extensive/shifting,EA028-3,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +32201,Se6,EA028,Extensive/shifting,EA028-3,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +32202,Se7,EA028,?,EA028-NA,,,,,, +32203,Se8,EA028,Extensive/shifting,EA028-3,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +32204,Se9,EA028,Extensive/shifting,EA028-3,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +32205,Sf1,EA028,Intensive irrigated,EA028-6,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +32206,Sf2,EA028,Extensive/shifting,EA028-3,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +32207,Sf3,EA028,Horticulture,EA028-4,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +32208,Sf4,EA028,Extensive/shifting,EA028-3,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +32209,Sf5,EA028,Intensive,EA028-5,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +32210,Sf6,EA028,Intensive irrigated,EA028-6,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +32211,Sf7,EA028,Extensive/shifting,EA028-3,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +32212,Sf8,EA028,?,EA028-NA,,,,,, +32213,Sf9,EA028,?,EA028-NA,,,,,, +32214,Sg1,EA028,No agriculture,EA028-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +32215,Sg2,EA028,Intensive,EA028-5,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32216,Sg3,EA028,No agriculture,EA028-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +32217,Sg4,EA028,No agriculture,EA028-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +32218,Sg5,EA028,No agriculture,EA028-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32219,Sh1,EA028,Casual,EA028-2,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +32220,Sh2,EA028,Extensive/shifting,EA028-3,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +32221,Sh3,EA028,No agriculture,EA028-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +32222,Sh4,EA028,Extensive/shifting,EA028-3,,oberg1949,,1940,EthnographicAtlas_1967_p123, +32223,Sh5,EA028,Casual,EA028-2,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +32224,Sh6,EA028,Casual,EA028-2,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +32225,Sh7,EA028,Extensive/shifting,EA028-3,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p123, +32226,Sh8,EA028,Horticulture,EA028-4,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +32227,Sh9,EA028,Casual,EA028-2,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +32228,Si1,EA028,No agriculture,EA028-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32229,Si10,EA028,Extensive/shifting,EA028-3,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +32230,Si2,EA028,Extensive/shifting,EA028-3,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +32231,Si3,EA028,Extensive/shifting,EA028-3,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32232,Si4,EA028,Extensive/shifting,EA028-3,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +32233,Si5,EA028,Extensive/shifting,EA028-3,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +32234,Si6,EA028,Casual,EA028-2,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p123, +32235,Si7,EA028,Extensive/shifting,EA028-3,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +32236,Si8,EA028,Extensive/shifting,EA028-3,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +32237,Si9,EA028,?,EA028-NA,,,,,, +32238,Sj1,EA028,Extensive/shifting,EA028-3,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +32239,Sj10,EA028,Extensive/shifting,EA028-3,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32240,Sj11,EA028,Extensive/shifting,EA028-3,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +32241,Sj2,EA028,Extensive/shifting,EA028-3,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +32242,Sj3,EA028,No agriculture,EA028-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +32243,Sj4,EA028,Extensive/shifting,EA028-3,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +32244,Sj5,EA028,No agriculture,EA028-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p123, +32245,Sj6,EA028,Extensive/shifting,EA028-3,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32246,Sj7,EA028,Extensive/shifting,EA028-3,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +32247,Sj8,EA028,Extensive/shifting,EA028-3,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +32248,Sj9,EA028,Extensive/shifting,EA028-3,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +32249,ch12,EA028,Intensive,EA028-5,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +32250,ch13,EA028,Intensive,EA028-5,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +32251,ch14,EA028,Intensive,EA028-5,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +32252,ch15,EA028,Intensive,EA028-5,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +32253,ch16,EA028,Intensive,EA028-5,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +32254,ch17,EA028,Intensive,EA028-5,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +32255,ch18,EA028,Intensive,EA028-5,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +32256,ch19,EA028,Extensive/shifting,EA028-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +32257,ch20,EA028,Intensive,EA028-5,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +32258,ch21,EA028,Intensive,EA028-5,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +32259,ch22,EA028,Horticulture,EA028-4,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +32260,ch23,EA028,Horticulture,EA028-4,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +32261,ch24,EA028,Intensive,EA028-5,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +32262,ch25,EA028,Intensive,EA028-5,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +32263,ch26,EA028,Intensive,EA028-5,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +32264,ch27,EA028,Intensive,EA028-5,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +32265,ch28,EA028,Intensive,EA028-5,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +32266,ec12,EA028,No agriculture,EA028-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +32267,ec13,EA028,No agriculture,EA028-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +32268,ec14,EA028,No agriculture,EA028-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +32269,ec15,EA028,No agriculture,EA028-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +32270,ec16,EA028,No agriculture,EA028-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +32271,ec17,EA028,No agriculture,EA028-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +32272,ec18,EA028,No agriculture,EA028-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +32273,ec19,EA028,No agriculture,EA028-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +32274,ec20,EA028,No agriculture,EA028-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +32275,ec21,EA028,No agriculture,EA028-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +32276,Aa1,EA029,No agriculture,EA029-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +32277,Aa2,EA029,No agriculture,EA029-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +32278,Aa3,EA029,No agriculture,EA029-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +32279,Aa4,EA029,?,EA029-NA,,,,,, +32280,Aa5,EA029,No agriculture,EA029-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +32281,Aa6,EA029,Cereals,EA029-6,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p63, +32282,Aa7,EA029,No agriculture,EA029-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +32283,Aa8,EA029,No agriculture,EA029-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +32284,Aa9,EA029,No agriculture,EA029-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +32285,Ab1,EA029,No agriculture,EA029-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p63, +32286,Ab10,EA029,Cereals,EA029-6,,hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +32287,Ab11,EA029,Roots/tubers,EA029-5,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +32288,Ab12,EA029,Cereals,EA029-6,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p63, +32289,Ab13,EA029,Cereals,EA029-6,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +32290,Ab14,EA029,Cereals,EA029-6,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +32291,Ab15,EA029,Cereals,EA029-6,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +32292,Ab16,EA029,Cereals,EA029-6,,earthy1933,,1930,EthnographicAtlas_1967_p63, +32293,Ab17,EA029,?,EA029-NA,,,,,, +32294,Ab18,EA029,Cereals,EA029-6,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +32295,Ab19,EA029,Cereals,EA029-6,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +32296,Ab2,EA029,Cereals,EA029-6,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +32297,Ab20,EA029,?,EA029-NA,,,,,, +32298,Ab21a,EA029,Cereals,EA029-6,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +32299,Ab21b,EA029,?,EA029-NA,,,,,, +32300,Ab22,EA029,?,EA029-NA,,,,,, +32301,Ab3,EA029,Cereals,EA029-6,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +32302,Ab4,EA029,Cereals,EA029-6,,junod1927,,1920,EthnographicAtlas_1967_p63, +32303,Ab5,EA029,Cereals,EA029-6,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +32304,Ab6,EA029,Cereals,EA029-6,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +32305,Ab7,EA029,Cereals,EA029-6,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p63, +32306,Ab8,EA029,Cereals,EA029-6,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +32307,Ab9,EA029,Cereals,EA029-6,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +32308,Ac1,EA029,Cereals,EA029-6,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +32309,Ac10,EA029,Cereals,EA029-6,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +32310,Ac11,EA029,Cereals,EA029-6,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +32311,Ac12,EA029,Roots/tubers,EA029-5,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p63, +32312,Ac13,EA029,Roots/tubers,EA029-5,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p63, +32313,Ac14,EA029,Roots/tubers,EA029-5,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p63, +32314,Ac15,EA029,?,EA029-NA,,,,,, +32315,Ac16,EA029,Tree-fruits,EA029-4,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +32316,Ac17,EA029,Roots/tubers,EA029-5,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +32317,Ac18,EA029,Tree-fruits,EA029-4,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +32318,Ac19,EA029,Roots/tubers,EA029-5,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +32319,Ac2,EA029,Roots/tubers,EA029-5,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p63, +32320,Ac20,EA029,Roots/tubers,EA029-5,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +32321,Ac21,EA029,Cereals,EA029-6,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p63, +32322,Ac22,EA029,Roots/tubers,EA029-5,,mertens1935,,1930,EthnographicAtlas_1967_p63, +32323,Ac23,EA029,Cereals,EA029-6,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +32324,Ac24,EA029,Roots/tubers,EA029-5,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +32325,Ac25,EA029,Roots/tubers,EA029-5,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p63, +32326,Ac26,EA029,Roots/tubers,EA029-5,But Beaucorps reports that rice has become the staple crop,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +32327,Ac27,EA029,Cereals,EA029-6,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +32328,Ac28,EA029,Cereals,EA029-6,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p63, +32329,Ac29,EA029,?,EA029-NA,,,,,, +32330,Ac3,EA029,Cereals,EA029-6,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +32331,Ac30,EA029,Cereals,EA029-6,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +32332,Ac31,EA029,Roots/tubers,EA029-5,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +32333,Ac32,EA029,Cereals,EA029-6,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +32334,Ac33,EA029,Cereals,EA029-6,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +32335,Ac34,EA029,Roots/tubers,EA029-5,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +32336,Ac35,EA029,?,EA029-NA,,,,,, +32337,Ac36,EA029,Cereals,EA029-6,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +32338,Ac37,EA029,Cereals,EA029-6,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +32339,Ac38,EA029,Cereals,EA029-6,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p63, +32340,Ac39,EA029,?,EA029-NA,,,,,, +32341,Ac4,EA029,Cereals,EA029-6,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +32342,Ac40,EA029,Cereals,EA029-6,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +32343,Ac41,EA029,Cereals,EA029-6,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +32344,Ac42,EA029,?,EA029-NA,,,,,, +32345,Ac43,EA029,Cereals,EA029-6,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +32346,Ac5,EA029,Cereals,EA029-6,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +32347,Ac6,EA029,Cereals,EA029-6,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p63, +32348,Ac7,EA029,Cereals,EA029-6,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +32349,Ac8,EA029,Cereals,EA029-6,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +32350,Ac9,EA029,Cereals,EA029-6,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +32351,Ad1,EA029,Cereals,EA029-6,,grottanelli1955,,1950,EthnographicAtlas_1967_p63, +32352,Ad10,EA029,Tree-fruits,EA029-4,But maize has since replaced bananas as the principal crop,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +32353,Ad11,EA029,Cereals,EA029-6,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +32354,Ad12,EA029,Cereals,EA029-6,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +32355,Ad13,EA029,Cereals,EA029-6,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +32356,Ad14,EA029,Cereals,EA029-6,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +32357,Ad15,EA029,Cereals,EA029-6,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +32358,Ad16,EA029,Tree-fruits,EA029-4,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +32359,Ad17,EA029,Cereals,EA029-6,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +32360,Ad18,EA029,Cereals,EA029-6,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +32361,Ad19,EA029,Cereals,EA029-6,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +32362,Ad2,EA029,Cereals,EA029-6,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +32363,Ad20,EA029,Cereals,EA029-6,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +32364,Ad21,EA029,Cereals,EA029-6,,maurice193538,,1930,EthnographicAtlas_1967_p67, +32365,Ad22,EA029,Cereals,EA029-6,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +32366,Ad23,EA029,Cereals,EA029-6,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +32367,Ad24,EA029,Cereals,EA029-6,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +32368,Ad25,EA029,Cereals,EA029-6,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +32369,Ad26,EA029,Cereals,EA029-6,,sick1916,,1910,Ethnology_Vol7_No2_Apr_1968, +32370,Ad27,EA029,Cereals,EA029-6,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +32371,Ad28,EA029,Cereals,EA029-6,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +32372,Ad29,EA029,Roots/tubers,EA029-5,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p67, +32373,Ad3,EA029,Cereals,EA029-6,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +32374,Ad30,EA029,Roots/tubers,EA029-5,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p67, +32375,Ad31,EA029,?,EA029-NA,,,,,, +32376,Ad32,EA029,Cereals,EA029-6,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p67, +32377,Ad33,EA029,Cereals,EA029-6,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p67, +32378,Ad34,EA029,Cereals,EA029-6,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +32379,Ad35,EA029,Cereals,EA029-6,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p67, +32380,Ad36,EA029,Cereals,EA029-6,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +32381,Ad37,EA029,Cereals,EA029-6,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +32382,Ad38,EA029,Cereals,EA029-6,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +32383,Ad39,EA029,Cereals,EA029-6,,gray1963,,1950,EthnographicAtlas_1967_p67, +32384,Ad4,EA029,Cereals,EA029-6,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +32385,Ad40,EA029,Cereals,EA029-6,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +32386,Ad41,EA029,Cereals,EA029-6,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p67, +32387,Ad42,EA029,Tree-fruits,EA029-4,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +32388,Ad43,EA029,Tree-fruits,EA029-4,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +32389,Ad44,EA029,Roots/tubers,EA029-5,"But Czekanowski reports tree fruits (code ""4"")",czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p67, +32390,Ad45,EA029,Cereals,EA029-6,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +32391,Ad46,EA029,Tree-fruits,EA029-4,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p67, +32392,Ad47,EA029,Tree-fruits,EA029-4,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +32393,Ad48,EA029,Cereals,EA029-6,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +32394,Ad49,EA029,Cereals,EA029-6,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +32395,Ad5,EA029,?,EA029-NA,,,,,, +32396,Ad50,EA029,Cereals,EA029-6,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +32397,Ad51,EA029,Cereals,EA029-6,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +32398,Ad6,EA029,Tree-fruits,EA029-4,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +32399,Ad7,EA029,Tree-fruits,EA029-4,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +32400,Ad8,EA029,Cereals,EA029-6,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +32401,Ad9,EA029,Tree-fruits,EA029-4,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +32402,Ae1,EA029,Tree-fruits,EA029-4,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67, +32403,Ae10,EA029,Cereals,EA029-6,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +32404,Ae11,EA029,Tree-fruits,EA029-4,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +32405,Ae12,EA029,Roots/tubers,EA029-5,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +32406,Ae13,EA029,?,EA029-NA,,,,,, +32407,Ae14,EA029,Cereals,EA029-6,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +32408,Ae15,EA029,Tree-fruits,EA029-4,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p67, +32409,Ae16,EA029,?,EA029-NA,,,,,, +32410,Ae17,EA029,Tree-fruits,EA029-4,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +32411,Ae18,EA029,Roots/tubers,EA029-5,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +32412,Ae19,EA029,?,EA029-NA,,,,,, +32413,Ae2,EA029,Roots/tubers,EA029-5,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +32414,Ae20,EA029,Roots/tubers,EA029-5,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +32415,Ae21,EA029,Roots/tubers,EA029-5,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +32416,Ae22,EA029,Roots/tubers,EA029-5,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p67, +32417,Ae23,EA029,?,EA029-NA,,,,,, +32418,Ae24,EA029,?,EA029-NA,,,,,, +32419,Ae25,EA029,?,EA029-NA,,,,,, +32420,Ae26,EA029,Roots/tubers,EA029-5,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +32421,Ae27,EA029,Roots/tubers,EA029-5,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +32422,Ae28,EA029,Roots/tubers,EA029-5,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +32423,Ae29,EA029,Tree-fruits,EA029-4,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p67, +32424,Ae3,EA029,Roots/tubers,EA029-5,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +32425,Ae30,EA029,Tree-fruits,EA029-4,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +32426,Ae31,EA029,Tree-fruits,EA029-4,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +32427,Ae32,EA029,Tree-fruits,EA029-4,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +32428,Ae33,EA029,Tree-fruits,EA029-4,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +32429,Ae34,EA029,Cereals,EA029-6,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +32430,Ae35,EA029,Tree-fruits,EA029-4,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +32431,Ae36,EA029,Roots/tubers,EA029-5,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +32432,Ae37,EA029,?,EA029-NA,,,,,, +32433,Ae38,EA029,Roots/tubers,EA029-5,,wijnant192526,,1920,EthnographicAtlas_1967_p67, +32434,Ae39,EA029,Roots/tubers,EA029-5,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +32435,Ae4,EA029,Roots/tubers,EA029-5,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +32436,Ae40,EA029,Tree-fruits,EA029-4,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +32437,Ae41,EA029,Tree-fruits,EA029-4,,andersson1953,,1940,EthnographicAtlas_1967_p67, +32438,Ae42,EA029,Roots/tubers,EA029-5,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +32439,Ae43,EA029,Tree-fruits,EA029-4,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +32440,Ae44,EA029,Roots/tubers,EA029-5,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +32441,Ae45,EA029,Tree-fruits,EA029-4,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +32442,Ae46,EA029,Tree-fruits,EA029-4,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +32443,Ae47,EA029,Tree-fruits,EA029-4,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +32444,Ae48,EA029,Cereals,EA029-6,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p67, +32445,Ae49,EA029,?,EA029-NA,,,,,, +32446,Ae5,EA029,Cereals,EA029-6,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p67, +32447,Ae50,EA029,Cereals,EA029-6,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p67, +32448,Ae51,EA029,Roots/tubers,EA029-5,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p67, +32449,Ae52,EA029,?,EA029-NA,,,,,, +32450,Ae53,EA029,?,EA029-NA,,,,,, +32451,Ae54,EA029,?,EA029-NA,,,,,, +32452,Ae55,EA029,Cereals,EA029-6,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +32453,Ae56,EA029,Cereals,EA029-6,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +32454,Ae57,EA029,Cereals,EA029-6,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +32455,Ae58,EA029,Cereals,EA029-6,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +32456,Ae59,EA029,?,EA029-NA,,,,,, +32457,Ae6,EA029,Roots/tubers,EA029-5,,verhulpen1936,with special reference to the Bena Kalundwe,1930,Ethnology_Vol7_No2_Apr_1968, +32458,Ae7,EA029,Tree-fruits,EA029-4,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +32459,Ae8,EA029,Tree-fruits,EA029-4,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +32460,Ae9,EA029,Cereals,EA029-6,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +32461,Af1,EA029,Roots/tubers,EA029-5,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +32462,Af10,EA029,Roots/tubers,EA029-5,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +32463,Af11,EA029,Cereals,EA029-6,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +32464,Af12,EA029,Tree-fruits,EA029-4,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +32465,Af13,EA029,Roots/tubers,EA029-5,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +32466,Af14,EA029,Roots/tubers,EA029-5,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p71, +32467,Af15,EA029,Cereals,EA029-6,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +32468,Af16,EA029,Tree-fruits,EA029-4,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +32469,Af17,EA029,Roots/tubers,EA029-5,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +32470,Af18,EA029,Roots/tubers,EA029-5,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +32471,Af19,EA029,Roots/tubers,EA029-5,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +32472,Af2,EA029,Cereals,EA029-6,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +32473,Af20,EA029,Roots/tubers,EA029-5,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +32474,Af21,EA029,Roots/tubers,EA029-5,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +32475,Af22,EA029,Cereals,EA029-6,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p71, +32476,Af23,EA029,Roots/tubers,EA029-5,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +32477,Af24,EA029,Roots/tubers,EA029-5,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +32478,Af25,EA029,Roots/tubers,EA029-5,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +32479,Af26,EA029,Roots/tubers,EA029-5,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +32480,Af27,EA029,Cereals,EA029-6,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +32481,Af28,EA029,Cereals,EA029-6,,gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +32482,Af29,EA029,Roots/tubers,EA029-5,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +32483,Af3,EA029,Roots/tubers,EA029-5,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +32484,Af30,EA029,Roots/tubers,EA029-5,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +32485,Af31,EA029,?,EA029-NA,,,,,, +32486,Af32,EA029,Roots/tubers,EA029-5,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32487,Af33,EA029,Roots/tubers,EA029-5,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32488,Af34,EA029,Roots/tubers,EA029-5,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32489,Af35,EA029,Roots/tubers,EA029-5,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +32490,Af36,EA029,Roots/tubers,EA029-5,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p71, +32491,Af37,EA029,Roots/tubers,EA029-5,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +32492,Af38,EA029,Cereals,EA029-6,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +32493,Af39,EA029,Roots/tubers,EA029-5,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +32494,Af4,EA029,Roots/tubers,EA029-5,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +32495,Af40,EA029,Roots/tubers,EA029-5,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +32496,Af41,EA029,Roots/tubers,EA029-5,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +32497,Af42,EA029,Roots/tubers,EA029-5,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p71, +32498,Af43,EA029,Cereals,EA029-6,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p71, +32499,Af44,EA029,?,EA029-NA,,,,,, +32500,Af45,EA029,Roots/tubers,EA029-5,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +32501,Af46,EA029,Cereals,EA029-6,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +32502,Af47,EA029,Cereals,EA029-6,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +32503,Af48,EA029,Cereals,EA029-6,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +32504,Af49,EA029,Cereals,EA029-6,,schwab1947,,1940,EthnographicAtlas_1967_p71, +32505,Af5,EA029,Cereals,EA029-6,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +32506,Af50,EA029,Cereals,EA029-6,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +32507,Af51,EA029,Tree-fruits,EA029-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +32508,Af52,EA029,Cereals,EA029-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +32509,Af53,EA029,Cereals,EA029-6,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +32510,Af54,EA029,Cereals,EA029-6,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +32511,Af55,EA029,Cereals,EA029-6,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +32512,Af56,EA029,Cereals,EA029-6,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +32513,Af57,EA029,Cereals,EA029-6,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +32514,Af58,EA029,Cereals,EA029-6,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +32515,Af6,EA029,Roots/tubers,EA029-5,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +32516,Af7,EA029,Roots/tubers,EA029-5,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +32517,Af8,EA029,Cereals,EA029-6,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +32518,Af9,EA029,Roots/tubers,EA029-5,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p71, +32519,Ag1,EA029,Cereals,EA029-6,"But intensive cultivation, with some irrigation, of gardens and of fields bordering watercourses",dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +32520,Ag10,EA029,Cereals,EA029-6,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +32521,Ag11,EA029,Cereals,EA029-6,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +32522,Ag12,EA029,Cereals,EA029-6,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +32523,Ag13,EA029,Cereals,EA029-6,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +32524,Ag14,EA029,Cereals,EA029-6,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +32525,Ag15,EA029,Cereals,EA029-6,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +32526,Ag16,EA029,Cereals,EA029-6,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p71, +32527,Ag17,EA029,Cereals,EA029-6,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +32528,Ag18,EA029,Cereals,EA029-6,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p71, +32529,Ag19,EA029,Cereals,EA029-6,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p71, +32530,Ag2,EA029,Cereals,EA029-6,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +32531,Ag20,EA029,Cereals,EA029-6,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +32532,Ag21,EA029,Cereals,EA029-6,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +32533,Ag22,EA029,Cereals,EA029-6,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p71, +32534,Ag23,EA029,Cereals,EA029-6,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +32535,Ag24,EA029,Cereals,EA029-6,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +32536,Ag25,EA029,Cereals,EA029-6,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p71, +32537,Ag26,EA029,Cereals,EA029-6,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p71, +32538,Ag27,EA029,Roots/tubers,EA029-5,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +32539,Ag28,EA029,Cereals,EA029-6,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +32540,Ag29,EA029,Cereals,EA029-6,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +32541,Ag3,EA029,Cereals,EA029-6,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p71, +32542,Ag30,EA029,Cereals,EA029-6,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p71, +32543,Ag31,EA029,Cereals,EA029-6,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p71, +32544,Ag32,EA029,Cereals,EA029-6,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p71, +32545,Ag33,EA029,Cereals,EA029-6,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +32546,Ag34,EA029,Cereals,EA029-6,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +32547,Ag35,EA029,Roots/tubers,EA029-5,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +32548,Ag36,EA029,Cereals,EA029-6,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +32549,Ag37,EA029,Cereals,EA029-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +32550,Ag38,EA029,Cereals,EA029-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +32551,Ag39,EA029,Cereals,EA029-6,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +32552,Ag4,EA029,Cereals,EA029-6,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +32553,Ag40,EA029,Cereals,EA029-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +32554,Ag41,EA029,Cereals,EA029-6,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +32555,Ag42,EA029,Cereals,EA029-6,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +32556,Ag43,EA029,Cereals,EA029-6,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +32557,Ag44,EA029,Cereals,EA029-6,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +32558,Ag45,EA029,Cereals,EA029-6,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +32559,Ag46,EA029,Cereals,EA029-6,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +32560,Ag47,EA029,Cereals,EA029-6,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +32561,Ag48,EA029,Roots/tubers,EA029-5,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p75, +32562,Ag49,EA029,Cereals,EA029-6,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +32563,Ag5,EA029,Cereals,EA029-6,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +32564,Ag50,EA029,Cereals,EA029-6,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +32565,Ag51,EA029,Cereals,EA029-6,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +32566,Ag52,EA029,Roots/tubers,EA029-5,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +32567,Ag53,EA029,Cereals,EA029-6,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +32568,Ag54,EA029,Cereals,EA029-6,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +32569,Ag6,EA029,Cereals,EA029-6,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +32570,Ag7,EA029,Cereals,EA029-6,Flood-plain agriculture,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +32571,Ag8,EA029,Cereals,EA029-6,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +32572,Ag9,EA029,Cereals,EA029-6,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p71, +32573,Ah1,EA029,Cereals,EA029-6,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32574,Ah10,EA029,Cereals,EA029-6,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +32575,Ah11,EA029,Cereals,EA029-6,,gunnandconant1960,,1950,EthnographicAtlas_1967_p75, +32576,Ah12,EA029,Cereals,EA029-6,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +32577,Ah13,EA029,Cereals,EA029-6,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +32578,Ah14,EA029,Cereals,EA029-6,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +32579,Ah15,EA029,Cereals,EA029-6,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p75, +32580,Ah16,EA029,Cereals,EA029-6,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +32581,Ah17,EA029,Cereals,EA029-6,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +32582,Ah18,EA029,Cereals,EA029-6,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +32583,Ah19,EA029,Cereals,EA029-6,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p75, +32584,Ah2,EA029,Cereals,EA029-6,,meek1931a,,1920,EthnographicAtlas_1967_p75, +32585,Ah20,EA029,Cereals,EA029-6,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +32586,Ah21,EA029,Cereals,EA029-6,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +32587,Ah22,EA029,?,EA029-NA,,,,,, +32588,Ah23,EA029,?,EA029-NA,,,,,, +32589,Ah24,EA029,?,EA029-NA,,,,,, +32590,Ah25,EA029,Cereals,EA029-6,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +32591,Ah26,EA029,Cereals,EA029-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +32592,Ah27,EA029,Cereals,EA029-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +32593,Ah28,EA029,Cereals,EA029-6,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +32594,Ah29,EA029,Cereals,EA029-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +32595,Ah3,EA029,Roots/tubers,EA029-5,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +32596,Ah30,EA029,Cereals,EA029-6,,meek1931b,,1920,EthnographicAtlas_1967_p75, +32597,Ah31,EA029,Cereals,EA029-6,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p75, +32598,Ah32,EA029,Cereals,EA029-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +32599,Ah33,EA029,Cereals,EA029-6,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p75, +32600,Ah34,EA029,Cereals,EA029-6,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +32601,Ah35,EA029,Cereals,EA029-6,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +32602,Ah36,EA029,Cereals,EA029-6,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +32603,Ah37,EA029,Cereals,EA029-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +32604,Ah38,EA029,Cereals,EA029-6,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +32605,Ah39,EA029,Cereals,EA029-6,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +32606,Ah4,EA029,Cereals,EA029-6,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p75, +32607,Ah5,EA029,Cereals,EA029-6,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +32608,Ah6,EA029,Cereals,EA029-6,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +32609,Ah7,EA029,Cereals,EA029-6,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +32610,Ah8,EA029,Cereals,EA029-6,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +32611,Ah9,EA029,Cereals,EA029-6,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75, +32612,Ai1,EA029,Cereals,EA029-6,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p75, +32613,Ai10,EA029,Cereals,EA029-6,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p75, +32614,Ai11,EA029,Tree-fruits,EA029-4,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +32615,Ai12,EA029,Cereals,EA029-6,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +32616,Ai13,EA029,Cereals,EA029-6,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +32617,Ai14,EA029,Cereals,EA029-6,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +32618,Ai15,EA029,Cereals,EA029-6,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +32619,Ai16,EA029,Cereals,EA029-6,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +32620,Ai17,EA029,Cereals,EA029-6,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +32621,Ai18,EA029,Cereals,EA029-6,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +32622,Ai19,EA029,Cereals,EA029-6,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +32623,Ai2,EA029,?,EA029-NA,,,,,, +32624,Ai20,EA029,Cereals,EA029-6,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +32625,Ai21,EA029,Cereals,EA029-6,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +32626,Ai22,EA029,Cereals,EA029-6,,delafosse1897,,1890,EthnographicAtlas_1967_p75, +32627,Ai23,EA029,Roots/tubers,EA029-5,"But Burssens reports cereal grains (code ""6"")",burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +32628,Ai24,EA029,Cereals,EA029-6,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +32629,Ai25,EA029,Roots/tubers,EA029-5,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +32630,Ai26,EA029,Roots/tubers,EA029-5,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p75, +32631,Ai27,EA029,Cereals,EA029-6,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +32632,Ai28,EA029,Tree-fruits,EA029-4,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +32633,Ai29,EA029,Cereals,EA029-6,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +32634,Ai3,EA029,Cereals,EA029-6,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +32635,Ai30,EA029,Tree-fruits,EA029-4,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +32636,Ai31,EA029,Cereals,EA029-6,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +32637,Ai32,EA029,Cereals,EA029-6,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +32638,Ai33,EA029,Cereals,EA029-6,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +32639,Ai34,EA029,Cereals,EA029-6,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +32640,Ai35,EA029,Cereals,EA029-6,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +32641,Ai36,EA029,Cereals,EA029-6,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +32642,Ai37,EA029,Cereals,EA029-6,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +32643,Ai38,EA029,Cereals,EA029-6,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +32644,Ai39,EA029,Cereals,EA029-6,,nadel1947,,1940,EthnographicAtlas_1967_p75, +32645,Ai4,EA029,Cereals,EA029-6,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +32646,Ai40,EA029,Cereals,EA029-6,,nadel1947,,1940,EthnographicAtlas_1967_p75, +32647,Ai41,EA029,Cereals,EA029-6,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +32648,Ai42,EA029,Cereals,EA029-6,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p75, +32649,Ai43,EA029,Cereals,EA029-6,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p75, +32650,Ai44,EA029,Cereals,EA029-6,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +32651,Ai45,EA029,Cereals,EA029-6,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +32652,Ai46,EA029,Cereals,EA029-6,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p75, +32653,Ai47,EA029,Cereals,EA029-6,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +32654,Ai5,EA029,Tree-fruits,EA029-4,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +32655,Ai6,EA029,Cereals,EA029-6,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +32656,Ai7,EA029,Roots/tubers,EA029-5,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +32657,Ai8,EA029,Cereals,EA029-6,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p75, +32658,Ai9,EA029,Cereals,EA029-6,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +32659,Aj1,EA029,Cereals,EA029-6,,lawrance1957,,1950,EthnographicAtlas_1967_p75, +32660,Aj10,EA029,Cereals,EA029-6,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +32661,Aj11,EA029,Cereals,EA029-6,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +32662,Aj12,EA029,Cereals,EA029-6,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +32663,Aj13,EA029,Cereals,EA029-6,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +32664,Aj14,EA029,Cereals,EA029-6,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +32665,Aj15,EA029,Cereals,EA029-6,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +32666,Aj16,EA029,Cereals,EA029-6,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p79, +32667,Aj17,EA029,Cereals,EA029-6,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +32668,Aj18,EA029,Cereals,EA029-6,,jensen1959,,1950,EthnographicAtlas_1967_p79, +32669,Aj19,EA029,Cereals,EA029-6,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p79, +32670,Aj2,EA029,No agriculture,EA029-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +32671,Aj20,EA029,Cereals,EA029-6,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p79, +32672,Aj21,EA029,Cereals,EA029-6,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +32673,Aj22,EA029,Cereals,EA029-6,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +32674,Aj23,EA029,Cereals,EA029-6,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +32675,Aj24,EA029,Cereals,EA029-6,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +32676,Aj25,EA029,Cereals,EA029-6,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +32677,Aj26,EA029,Cereals,EA029-6,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p79, +32678,Aj27,EA029,Cereals,EA029-6,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +32679,Aj28,EA029,Cereals,EA029-6,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +32680,Aj29,EA029,No agriculture,EA029-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +32681,Aj3,EA029,Cereals,EA029-6,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +32682,Aj30,EA029,?,EA029-NA,,,,,, +32683,Aj31,EA029,?,EA029-NA,,,,,, +32684,Aj4,EA029,Cereals,EA029-6,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +32685,Aj5,EA029,Cereals,EA029-6,"Though flood-water irrigation is practiced, agriculture is rarely intensive",elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +32686,Aj6,EA029,Cereals,EA029-6,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +32687,Aj7,EA029,Cereals,EA029-6,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +32688,Aj8,EA029,Tree-fruits,EA029-4,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +32689,Aj9,EA029,Cereals,EA029-6,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +32690,Ca1,EA029,Cereals,EA029-6,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +32691,Ca10,EA029,Cereals,EA029-6,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +32692,Ca11,EA029,Cereals,EA029-6,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p79, +32693,Ca12,EA029,Cereals,EA029-6,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p79, +32694,Ca13,EA029,Cereals,EA029-6,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p79, +32695,Ca14,EA029,Roots/tubers,EA029-5,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p79, +32696,Ca15,EA029,Roots/tubers,EA029-5,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +32697,Ca16,EA029,Roots/tubers,EA029-5,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +32698,Ca17,EA029,Cereals,EA029-6,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +32699,Ca18,EA029,Cereals,EA029-6,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +32700,Ca19,EA029,Cereals,EA029-6,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +32701,Ca2,EA029,Cereals,EA029-6,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +32702,Ca20,EA029,Cereals,EA029-6,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +32703,Ca21,EA029,Cereals,EA029-6,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +32704,Ca22,EA029,Cereals,EA029-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +32705,Ca23,EA029,Cereals,EA029-6,,jensen1959,,1950,EthnographicAtlas_1967_p79, +32706,Ca24,EA029,Cereals,EA029-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +32707,Ca25,EA029,Cereals,EA029-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +32708,Ca26,EA029,Cereals,EA029-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +32709,Ca27,EA029,Cereals,EA029-6,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +32710,Ca28,EA029,Roots/tubers,EA029-5,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p79, +32711,Ca29,EA029,Roots/tubers,EA029-5,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p79, +32712,Ca3,EA029,Cereals,EA029-6,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +32713,Ca30,EA029,Cereals,EA029-6,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p79, +32714,Ca31,EA029,Cereals,EA029-6,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +32715,Ca32,EA029,Cereals,EA029-6,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +32716,Ca33,EA029,Cereals,EA029-6,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +32717,Ca34,EA029,Cereals,EA029-6,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +32718,Ca35,EA029,Cereals,EA029-6,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +32719,Ca36,EA029,Cereals,EA029-6,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +32720,Ca37,EA029,Cereals,EA029-6,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +32721,Ca38,EA029,Cereals,EA029-6,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +32722,Ca39,EA029,Cereals,EA029-6,,lewis1965b,,1930,EthnographicAtlas_1967_p79, +32723,Ca4,EA029,Cereals,EA029-6,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p79, +32724,Ca40,EA029,Roots/tubers,EA029-5,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +32725,Ca41,EA029,Roots/tubers,EA029-5,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +32726,Ca42,EA029,Roots/tubers,EA029-5,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +32727,Ca43,EA029,?,EA029-NA,,,,,, +32728,Ca5,EA029,Cereals,EA029-6,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p79, +32729,Ca6,EA029,Cereals,EA029-6,Except for a little cultivation of maize and date palms on the Awash River,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +32730,Ca7,EA029,Cereals,EA029-6,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +32731,Ca8,EA029,Roots/tubers,EA029-5,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p79, +32732,Ca9,EA029,Cereals,EA029-6,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +32733,Cb1,EA029,?,EA029-NA,,,,,, +32734,Cb10,EA029,Cereals,EA029-6,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +32735,Cb11,EA029,Cereals,EA029-6,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +32736,Cb12,EA029,Cereals,EA029-6,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +32737,Cb13,EA029,Cereals,EA029-6,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +32738,Cb14,EA029,Cereals,EA029-6,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +32739,Cb15,EA029,Cereals,EA029-6,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +32740,Cb16,EA029,Cereals,EA029-6,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +32741,Cb17,EA029,Cereals,EA029-6,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +32742,Cb18,EA029,Cereals,EA029-6,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p79, +32743,Cb19,EA029,Cereals,EA029-6,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +32744,Cb2,EA029,Cereals,EA029-6,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +32745,Cb20,EA029,Cereals,EA029-6,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +32746,Cb21,EA029,Cereals,EA029-6,,pfeffer1936,,1930,EthnographicAtlas_1967_p83, +32747,Cb22,EA029,Cereals,EA029-6,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +32748,Cb23,EA029,Cereals,EA029-6,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p83, +32749,Cb24,EA029,Cereals,EA029-6,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +32750,Cb25,EA029,Cereals,EA029-6,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +32751,Cb26,EA029,Cereals,EA029-6,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +32752,Cb27,EA029,Cereals,EA029-6,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +32753,Cb28,EA029,Cereals,EA029-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +32754,Cb29,EA029,?,EA029-NA,,,,,, +32755,Cb3,EA029,Cereals,EA029-6,There is some irrigation,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +32756,Cb4,EA029,Cereals,EA029-6,,reid1930,,1920,EthnographicAtlas_1967_p79, +32757,Cb5,EA029,Cereals,EA029-6,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p79, +32758,Cb6,EA029,Cereals,EA029-6,,woodnd,,1920,EthnographicAtlas_1967_p79, +32759,Cb7,EA029,Cereals,EA029-6,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +32760,Cb8,EA029,Cereals,EA029-6,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +32761,Cb9,EA029,Cereals,EA029-6,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +32762,Cc1,EA029,Tree-fruits,EA029-4,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +32763,Cc10,EA029,Cereals,EA029-6,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +32764,Cc11,EA029,Tree-fruits,EA029-4,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +32765,Cc12,EA029,Tree-fruits,EA029-4,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +32766,Cc13,EA029,Cereals,EA029-6,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +32767,Cc14,EA029,Cereals,EA029-6,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +32768,Cc15,EA029,?,EA029-NA,,,,,, +32769,Cc16,EA029,Tree-fruits,EA029-4,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +32770,Cc17,EA029,Tree-fruits,EA029-4,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p83, +32771,Cc18,EA029,Cereals,EA029-6,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +32772,Cc19,EA029,Cereals,EA029-6,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +32773,Cc2,EA029,Tree-fruits,EA029-4,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +32774,Cc20,EA029,Cereals,EA029-6,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p83, +32775,Cc3,EA029,Tree-fruits,EA029-4,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +32776,Cc4,EA029,Tree-fruits,EA029-4,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +32777,Cc5,EA029,Cereals,EA029-6,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p83, +32778,Cc6,EA029,?,EA029-NA,,,,,, +32779,Cc7,EA029,?,EA029-NA,,,,,, +32780,Cc8,EA029,?,EA029-NA,,,,,, +32781,Cc9,EA029,Cereals,EA029-6,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +32782,Cd1,EA029,Tree-fruits,EA029-4,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +32783,Cd10,EA029,Cereals,EA029-6,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +32784,Cd11,EA029,Cereals,EA029-6,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p83, +32785,Cd12,EA029,Cereals,EA029-6,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +32786,Cd13,EA029,Cereals,EA029-6,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +32787,Cd14,EA029,Cereals,EA029-6,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +32788,Cd15,EA029,Cereals,EA029-6,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +32789,Cd16,EA029,Cereals,EA029-6,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +32790,Cd17,EA029,Cereals,EA029-6,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +32791,Cd18,EA029,Cereals,EA029-6,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +32792,Cd19,EA029,Tree-fruits,EA029-4,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +32793,Cd2,EA029,Cereals,EA029-6,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +32794,Cd20,EA029,Cereals,EA029-6,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +32795,Cd21,EA029,Cereals,EA029-6,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +32796,Cd3,EA029,Cereals,EA029-6,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +32797,Cd4,EA029,Cereals,EA029-6,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +32798,Cd5,EA029,Cereals,EA029-6,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +32799,Cd6,EA029,Cereals,EA029-6,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +32800,Cd7,EA029,Cereals,EA029-6,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +32801,Cd8,EA029,Cereals,EA029-6,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +32802,Cd9,EA029,Cereals,EA029-6,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +32803,Ce1,EA029,Cereals,EA029-6,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +32804,Ce2,EA029,?,EA029-NA,,,,,, +32805,Ce3,EA029,Cereals,EA029-6,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +32806,Ce4,EA029,Cereals,EA029-6,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32807,Ce5,EA029,Cereals,EA029-6,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +32808,Ce6,EA029,Cereals,EA029-6,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +32809,Ce7,EA029,Cereals,EA029-6,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +32810,Ce8,EA029,Cereals,EA029-6,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +32811,Cf1,EA029,Cereals,EA029-6,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +32812,Cf2,EA029,Cereals,EA029-6,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No4_Oct_1962, +32813,Cf3,EA029,Roots/tubers,EA029-5,,munch1945,,1930,EthnographicAtlas_1967_p83, +32814,Cf4,EA029,Cereals,EA029-6,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +32815,Cf5,EA029,Cereals,EA029-6,,miner1939,,1930,EthnographicAtlas_1967_p83, +32816,Cg1,EA029,Cereals,EA029-6,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +32817,Cg2,EA029,Cereals,EA029-6,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +32818,Cg3,EA029,Roots/tubers,EA029-5,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +32819,Cg4,EA029,No agriculture,EA029-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +32820,Cg5,EA029,Cereals,EA029-6,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +32821,Ch1,EA029,Cereals,EA029-6,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +32822,Ch10,EA029,?,EA029-NA,,,,,, +32823,Ch11,EA029,Cereals,EA029-6,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +32824,Ch2,EA029,Cereals,EA029-6,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +32825,Ch3,EA029,Cereals,EA029-6,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +32826,Ch4,EA029,Cereals,EA029-6,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p83, +32827,Ch5,EA029,Cereals,EA029-6,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +32828,Ch6,EA029,Roots/tubers,EA029-5,,ember1954,,1910,EthnographicAtlas_1967_p83, +32829,Ch7,EA029,Cereals,EA029-6,,friedrich1954,,1930,EthnographicAtlas_1967_p83, +32830,Ch8,EA029,Cereals,EA029-6,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +32831,Ch9,EA029,Cereals,EA029-6,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +32832,Ci1,EA029,Cereals,EA029-6,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p83, +32833,Ci10,EA029,Cereals,EA029-6,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +32834,Ci11,EA029,Cereals,EA029-6,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +32835,Ci12,EA029,Cereals,EA029-6,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +32836,Ci2,EA029,Cereals,EA029-6,,grigolia1939,,1930,EthnographicAtlas_1967_p83, +32837,Ci3,EA029,Cereals,EA029-6,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p83, +32838,Ci4,EA029,Cereals,EA029-6,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +32839,Ci5,EA029,Cereals,EA029-6,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +32840,Ci6,EA029,Cereals,EA029-6,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p83, +32841,Ci7,EA029,Cereals,EA029-6,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p83, +32842,Ci8,EA029,Cereals,EA029-6,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +32843,Ci9,EA029,Cereals,EA029-6,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +32844,Cj1,EA029,Cereals,EA029-6,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +32845,Cj10,EA029,Cereals,EA029-6,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +32846,Cj2,EA029,No agriculture,EA029-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +32847,Cj3,EA029,Cereals,EA029-6,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +32848,Cj4,EA029,Cereals,EA029-6,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +32849,Cj5,EA029,No agriculture,EA029-1,,dickson1949,,1930,EthnographicAtlas_1967_p87, +32850,Cj6,EA029,Cereals,EA029-6,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +32851,Cj7,EA029,Tree-fruits,EA029-4,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p87, +32852,Cj8,EA029,Cereals,EA029-6,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +32853,Cj9,EA029,Cereals,EA029-6,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +32854,Ea1,EA029,Cereals,EA029-6,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +32855,Ea10,EA029,Cereals,EA029-6,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +32856,Ea11,EA029,Cereals,EA029-6,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +32857,Ea12,EA029,Vegetables,EA029-3,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +32858,Ea13,EA029,Cereals,EA029-6,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +32859,Ea2,EA029,Cereals,EA029-6,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +32860,Ea3,EA029,Cereals,EA029-6,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +32861,Ea4,EA029,Cereals,EA029-6,,barth1956b,,1950,EthnographicAtlas_1967_p87, +32862,Ea5,EA029,Cereals,EA029-6,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +32863,Ea6,EA029,Cereals,EA029-6,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +32864,Ea7,EA029,Cereals,EA029-6,,schurmann1962,,1950,EthnographicAtlas_1967_p87, +32865,Ea8,EA029,Cereals,EA029-6,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p87, +32866,Ea9,EA029,Cereals,EA029-6,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +32867,Eb1,EA029,?,EA029-NA,Until recently the chief crop was hay,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +32868,Eb2,EA029,Cereals,EA029-6,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p87, +32869,Eb3,EA029,?,EA029-NA,,,,,, +32870,Eb4,EA029,?,EA029-NA,,,,,, +32871,Eb5,EA029,Cereals,EA029-6,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No2_Apr_1963, +32872,Eb6,EA029,?,EA029-NA,,,,,, +32873,Eb7,EA029,?,EA029-NA,,,,,, +32874,Eb8,EA029,?,EA029-NA,,,,,, +32875,Ec1,EA029,No agriculture,EA029-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +32876,Ec10,EA029,No agriculture,EA029-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +32877,Ec11,EA029,No agriculture,EA029-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +32878,Ec2,EA029,Cereals,EA029-6,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32879,Ec3,EA029,No agriculture,EA029-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +32880,Ec4,EA029,No agriculture,EA029-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +32881,Ec5,EA029,No agriculture,EA029-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +32882,Ec6,EA029,No agriculture,EA029-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +32883,Ec7,EA029,Cereals,EA029-6,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +32884,Ec8,EA029,No agriculture,EA029-1,,shimkin1939,,1900,EthnographicAtlas_1967_p87, +32885,Ec9,EA029,Cereals,EA029-6,,lattimore1933,,1920,EthnographicAtlas_1967_p87, +32886,Ed1,EA029,Cereals,EA029-6,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +32887,Ed10,EA029,Roots/tubers,EA029-5,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +32888,Ed13,EA029,?,EA029-NA,,,,,, +32889,Ed14,EA029,?,EA029-NA,,,,,, +32890,Ed15a,EA029,?,EA029-NA,,,,,, +32891,Ed15b,EA029,Cereals,EA029-6,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +32892,Ed16,EA029,?,EA029-NA,,,,,, +32893,Ed2,EA029,Cereals,EA029-6,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +32894,Ed3,EA029,Cereals,EA029-6,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p87, +32895,Ed4,EA029,Cereals,EA029-6,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +32896,Ed5,EA029,Cereals,EA029-6,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32897,Ed6,EA029,Cereals,EA029-6,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +32898,Ed7,EA029,Roots/tubers,EA029-5,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +32899,Ed8,EA029,Cereals,EA029-6,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +32900,Ed9,EA029,Cereals,EA029-6,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +32901,Ee1,EA029,Cereals,EA029-6,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +32902,Ee2,EA029,Cereals,EA029-6,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +32903,Ee3,EA029,Cereals,EA029-6,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +32904,Ee4,EA029,Cereals,EA029-6,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +32905,Ee5,EA029,Cereals,EA029-6,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +32906,Ee6,EA029,Cereals,EA029-6,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +32907,Ee7,EA029,?,EA029-NA,,,,,, +32908,Ee8,EA029,Cereals,EA029-6,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +32909,Ef1,EA029,Cereals,EA029-6,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +32910,Ef10,EA029,?,EA029-NA,,,,,, +32911,Ef11,EA029,Cereals,EA029-6,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +32912,Ef2,EA029,Cereals,EA029-6,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +32913,Ef3,EA029,?,EA029-NA,,,,,, +32914,Ef4,EA029,?,EA029-NA,,,,,, +32915,Ef5,EA029,Cereals,EA029-6,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +32916,Ef6,EA029,Cereals,EA029-6,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p87, +32917,Ef7,EA029,Cereals,EA029-6,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +32918,Ef8,EA029,Cereals,EA029-6,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +32919,Ef9,EA029,Cereals,EA029-6,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32920,Eg1,EA029,Cereals,EA029-6,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32921,Eg10,EA029,Cereals,EA029-6,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +32922,Eg11,EA029,?,EA029-NA,,,,,, +32923,Eg12,EA029,?,EA029-NA,,,,,, +32924,Eg13,EA029,Cereals,EA029-6,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32925,Eg14,EA029,Cereals,EA029-6,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +32926,Eg2,EA029,Cereals,EA029-6,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +32927,Eg3,EA029,Cereals,EA029-6,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +32928,Eg4,EA029,No agriculture,EA029-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +32929,Eg5,EA029,Cereals,EA029-6,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +32930,Eg6,EA029,Cereals,EA029-6,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +32931,Eg7,EA029,Roots/tubers,EA029-5,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +32932,Eg8,EA029,Cereals,EA029-6,,griffiths1946,,1940,EthnographicAtlas_1967_p91, +32933,Eg9,EA029,Cereals,EA029-6,,elwin1939,,1930,EthnographicAtlas_1967_p91, +32934,Eh1,EA029,No agriculture,EA029-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +32935,Eh10,EA029,?,EA029-NA,,,,,, +32936,Eh2,EA029,Cereals,EA029-6,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +32937,Eh3,EA029,Cereals,EA029-6,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +32938,Eh4,EA029,No agriculture,EA029-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32939,Eh5,EA029,Tree-fruits,EA029-4,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +32940,Eh6,EA029,Cereals,EA029-6,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +32941,Eh7,EA029,Cereals,EA029-6,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +32942,Eh8,EA029,Roots/tubers,EA029-5,"But McLeod reports 'intensive, irrigated' (EA028 code ""6"") planted in 'cereal grains' (EA029 code ""6"")",faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91,"Assume Murdock comment refers to this variable, not Col 30 as stated in Gray (1999)" +32943,Eh9,EA029,?,EA029-NA,,,,,, +32944,Ei1,EA029,Cereals,EA029-6,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32945,Ei10,EA029,Cereals,EA029-6,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p91, +32946,Ei11,EA029,Cereals,EA029-6,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +32947,Ei12,EA029,Cereals,EA029-6,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +32948,Ei13,EA029,Cereals,EA029-6,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +32949,Ei14,EA029,Cereals,EA029-6,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +32950,Ei15,EA029,?,EA029-NA,,,,,, +32951,Ei16,EA029,Cereals,EA029-6,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +32952,Ei17,EA029,?,EA029-NA,,,,,, +32953,Ei18,EA029,Cereals,EA029-6,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +32954,Ei19,EA029,Cereals,EA029-6,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +32955,Ei2,EA029,Cereals,EA029-6,,mills1922,,1920,EthnographicAtlas_1967_p91, +32956,Ei20,EA029,?,EA029-NA,,,,,, +32957,Ei3,EA029,Cereals,EA029-6,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +32958,Ei4,EA029,Cereals,EA029-6,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +32959,Ei5,EA029,Cereals,EA029-6,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +32960,Ei6,EA029,Cereals,EA029-6,Transitional today from swidden agriculture to irrigated rice cultivation,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +32961,Ei7,EA029,Cereals,EA029-6,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +32962,Ei8,EA029,Cereals,EA029-6,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +32963,Ei9,EA029,Cereals,EA029-6,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p91, +32964,Ej1,EA029,Cereals,EA029-6,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +32965,Ej10,EA029,Cereals,EA029-6,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +32966,Ej11,EA029,Cereals,EA029-6,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +32967,Ej12,EA029,Cereals,EA029-6,But some irrigation in recent years,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +32968,Ej13,EA029,Cereals,EA029-6,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +32969,Ej14,EA029,Cereals,EA029-6,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32970,Ej15,EA029,Cereals,EA029-6,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +32971,Ej16,EA029,Cereals,EA029-6,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +32972,Ej2,EA029,Cereals,EA029-6,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +32973,Ej3,EA029,No agriculture,EA029-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +32974,Ej4,EA029,Cereals,EA029-6,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +32975,Ej5,EA029,Cereals,EA029-6,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +32976,Ej6,EA029,No agriculture,EA029-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p91, +32977,Ej7,EA029,Cereals,EA029-6,,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +32978,Ej8,EA029,Cereals,EA029-6,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +32979,Ej9,EA029,Cereals,EA029-6,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +32980,Ia1,EA029,Cereals,EA029-6,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +32981,Ia10,EA029,Cereals,EA029-6,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p91, +32982,Ia11,EA029,Cereals,EA029-6,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +32983,Ia12,EA029,Cereals,EA029-6,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +32984,Ia13,EA029,Roots/tubers,EA029-5,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +32985,Ia14,EA029,Roots/tubers,EA029-5,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p95, +32986,Ia15,EA029,Cereals,EA029-6,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +32987,Ia16,EA029,Cereals,EA029-6,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +32988,Ia17,EA029,?,EA029-NA,,,,,, +32989,Ia18,EA029,?,EA029-NA,,,,,, +32990,Ia2,EA029,Cereals,EA029-6,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +32991,Ia3,EA029,Cereals,EA029-6,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +32992,Ia4,EA029,Cereals,EA029-6,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +32993,Ia5,EA029,Cereals,EA029-6,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +32994,Ia6,EA029,Cereals,EA029-6,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32995,Ia7,EA029,Cereals,EA029-6,,fox1954,,1950,EthnographicAtlas_1967_p91, +32996,Ia8,EA029,Cereals,EA029-6,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +32997,Ia9,EA029,Cereals,EA029-6,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +32998,Ib1,EA029,Cereals,EA029-6,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +32999,Ib2,EA029,Cereals,EA029-6,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33000,Ib3,EA029,Cereals,EA029-6,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +33001,Ib4,EA029,Cereals,EA029-6,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p95, +33002,Ib5,EA029,Cereals,EA029-6,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +33003,Ib6,EA029,Cereals,EA029-6,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +33004,Ib7,EA029,Roots/tubers,EA029-5,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p95, +33005,Ib8,EA029,Roots/tubers,EA029-5,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p95, +33006,Ib9,EA029,?,EA029-NA,,,,,, +33007,Ic1,EA029,Cereals,EA029-6,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33008,Ic10,EA029,Cereals,EA029-6,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p95, +33009,Ic11,EA029,Cereals,EA029-6,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33010,Ic12,EA029,Cereals,EA029-6,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +33011,Ic13,EA029,?,EA029-NA,,,,,, +33012,Ic2,EA029,Cereals,EA029-6,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +33013,Ic3,EA029,Cereals,EA029-6,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p95, +33014,Ic4,EA029,?,EA029-NA,,,,,, +33015,Ic5,EA029,Cereals,EA029-6,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p95, +33016,Ic6,EA029,Roots/tubers,EA029-5,,drabbe1940,,1930,EthnographicAtlas_1967_p95, +33017,Ic7,EA029,Cereals,EA029-6,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +33018,Ic8,EA029,Roots/tubers,EA029-5,,pleyte1893,,1890,EthnographicAtlas_1967_p95, +33019,Ic9,EA029,Cereals,EA029-6,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p95, +33020,Id1,EA029,No agriculture,EA029-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +33021,Id10,EA029,No agriculture,EA029-1,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +33022,Id11,EA029,No agriculture,EA029-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +33023,Id12,EA029,No agriculture,EA029-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +33024,Id13,EA029,No agriculture,EA029-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +33025,Id2,EA029,No agriculture,EA029-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +33026,Id3,EA029,No agriculture,EA029-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +33027,Id4,EA029,No agriculture,EA029-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +33028,Id5,EA029,No agriculture,EA029-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +33029,Id6,EA029,No agriculture,EA029-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p95, +33030,Id7,EA029,No agriculture,EA029-1,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +33031,Id8,EA029,No agriculture,EA029-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +33032,Id9,EA029,No agriculture,EA029-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p95, +33033,Ie1,EA029,Roots/tubers,EA029-5,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33034,Ie10,EA029,Roots/tubers,EA029-5,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +33035,Ie11,EA029,Roots/tubers,EA029-5,,bowers1964,,1950,EthnographicAtlas_1967_p95, +33036,Ie12,EA029,Roots/tubers,EA029-5,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33037,Ie13,EA029,Roots/tubers,EA029-5,,landtman1927,,1920,EthnographicAtlas_1967_p95, +33038,Ie14,EA029,Roots/tubers,EA029-5,,haddon1908,,1900,EthnographicAtlas_1967_p95, +33039,Ie15,EA029,Roots/tubers,EA029-5,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33040,Ie16,EA029,Roots/tubers,EA029-5,,williams194041,,1940,EthnographicAtlas_1967_p95, +33041,Ie17,EA029,Roots/tubers,EA029-5,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +33042,Ie18,EA029,Roots/tubers,EA029-5,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +33043,Ie19,EA029,Roots/tubers,EA029-5,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +33044,Ie2,EA029,Roots/tubers,EA029-5,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +33045,Ie20,EA029,Roots/tubers,EA029-5,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +33046,Ie21,EA029,Roots/tubers,EA029-5,,malinowski1916,,1900,EthnographicAtlas_1967_p95, +33047,Ie22,EA029,Roots/tubers,EA029-5,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +33048,Ie23,EA029,Roots/tubers,EA029-5,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +33049,Ie24,EA029,Roots/tubers,EA029-5,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p95, +33050,Ie25,EA029,Roots/tubers,EA029-5,,williamson1912,,1920,EthnographicAtlas_1967_p95, +33051,Ie26,EA029,Roots/tubers,EA029-5,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +33052,Ie27,EA029,Roots/tubers,EA029-5,,thurnwald1916,,1910,EthnographicAtlas_1967_p99, +33053,Ie28,EA029,Roots/tubers,EA029-5,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +33054,Ie29,EA029,Roots/tubers,EA029-5,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33055,Ie3,EA029,Roots/tubers,EA029-5,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33056,Ie30,EA029,Tree-fruits,EA029-4,,pouwer1955,,1950,EthnographicAtlas_1967_p99, +33057,Ie31,EA029,Roots/tubers,EA029-5,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +33058,Ie32,EA029,Roots/tubers,EA029-5,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +33059,Ie33,EA029,Tree-fruits,EA029-4,The stable food is sago,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +33060,Ie34,EA029,?,EA029-NA,,,,,, +33061,Ie35,EA029,Roots/tubers,EA029-5,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +33062,Ie36,EA029,?,EA029-NA,,,,,, +33063,Ie37,EA029,?,EA029-NA,,,,,, +33064,Ie38,EA029,Roots/tubers,EA029-5,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +33065,Ie39,EA029,Roots/tubers,EA029-5,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +33066,Ie4,EA029,Roots/tubers,EA029-5,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33067,Ie5,EA029,Roots/tubers,EA029-5,,williams1936,,1930,EthnographicAtlas_1967_p95, +33068,Ie6,EA029,Tree-fruits,EA029-4,,held1947,,1930,EthnographicAtlas_1967_p95, +33069,Ie7,EA029,Roots/tubers,EA029-5,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +33070,Ie8,EA029,Tree-fruits,EA029-4,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +33071,Ie9,EA029,Roots/tubers,EA029-5,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +33072,If1,EA029,Roots/tubers,EA029-5,Irrigated cultivation of wet taro and swidden cultivation of dry taro also occur,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33073,If10,EA029,?,EA029-NA,,,,,, +33074,If11,EA029,Tree-fruits,EA029-4,,sarfert1919,,1860,EthnographicAtlas_1967_p99, +33075,If12,EA029,Tree-fruits,EA029-4,,mason1954,,1940,EthnographicAtlas_1967_p99, +33076,If13,EA029,Tree-fruits,EA029-4,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p99, +33077,If14,EA029,Tree-fruits,EA029-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +33078,If15,EA029,Roots/tubers,EA029-5,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +33079,If16,EA029,Roots/tubers,EA029-5,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +33080,If17,EA029,Tree-fruits,EA029-4,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +33081,If2,EA029,Tree-fruits,EA029-4,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +33082,If3,EA029,Tree-fruits,EA029-4,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +33083,If4,EA029,Tree-fruits,EA029-4,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +33084,If5,EA029,Roots/tubers,EA029-5,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +33085,If6,EA029,Roots/tubers,EA029-5,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +33086,If7,EA029,Roots/tubers,EA029-5,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p99, +33087,If8,EA029,Cereals,EA029-6,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +33088,If9,EA029,Tree-fruits,EA029-4,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +33089,Ig1,EA029,Roots/tubers,EA029-5,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +33090,Ig10,EA029,Roots/tubers,EA029-5,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +33091,Ig11,EA029,Tree-fruits,EA029-4,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +33092,Ig12,EA029,Roots/tubers,EA029-5,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p99, +33093,Ig13,EA029,Roots/tubers,EA029-5,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p99, +33094,Ig14,EA029,Roots/tubers,EA029-5,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +33095,Ig15,EA029,?,EA029-NA,,,,,, +33096,Ig16,EA029,?,EA029-NA,,,,,, +33097,Ig17,EA029,?,EA029-NA,,,,,, +33098,Ig18,EA029,?,EA029-NA,,,,,, +33099,Ig19,EA029,?,EA029-NA,,,,,, +33100,Ig2,EA029,Roots/tubers,EA029-5,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +33101,Ig20,EA029,Roots/tubers,EA029-5,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +33102,Ig21,EA029,Roots/tubers,EA029-5,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +33103,Ig3,EA029,Roots/tubers,EA029-5,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +33104,Ig4,EA029,Roots/tubers,EA029-5,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +33105,Ig5,EA029,Roots/tubers,EA029-5,,fortune1932b,,1920,EthnographicAtlas_1967_p99, +33106,Ig6,EA029,Roots/tubers,EA029-5,,ivens1927,,1900,EthnographicAtlas_1967_p99, +33107,Ig7,EA029,Roots/tubers,EA029-5,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +33108,Ig8,EA029,?,EA029-NA,,,,,, +33109,Ig9,EA029,Tree-fruits,EA029-4,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +33110,Ih1,EA029,Roots/tubers,EA029-5,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +33111,Ih10,EA029,Roots/tubers,EA029-5,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33112,Ih11,EA029,?,EA029-NA,,,,,, +33113,Ih12,EA029,?,EA029-NA,,,,,, +33114,Ih13,EA029,?,EA029-NA,,,,,, +33115,Ih14,EA029,Roots/tubers,EA029-5,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +33116,Ih2,EA029,Roots/tubers,EA029-5,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33117,Ih3,EA029,Roots/tubers,EA029-5,Some small-scale irrigation of taro,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +33118,Ih4,EA029,Roots/tubers,EA029-5,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33119,Ih5,EA029,Roots/tubers,EA029-5,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p99, +33120,Ih6,EA029,Roots/tubers,EA029-5,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p99, +33121,Ih7,EA029,Roots/tubers,EA029-5,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p99, +33122,Ih8,EA029,Roots/tubers,EA029-5,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +33123,Ih9,EA029,Roots/tubers,EA029-5,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33124,Ii1,EA029,Roots/tubers,EA029-5,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +33125,Ii10,EA029,Roots/tubers,EA029-5,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +33126,Ii12,EA029,Roots/tubers,EA029-5,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33127,Ii13,EA029,Roots/tubers,EA029-5,,burrows1937,,1830,EthnographicAtlas_1967_p99, +33128,Ii14,EA029,Tree-fruits,EA029-4,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +33129,Ii2,EA029,Roots/tubers,EA029-5,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +33130,Ii3,EA029,Tree-fruits,EA029-4,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +33131,Ii4,EA029,Tree-fruits,EA029-4,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +33132,Ii5,EA029,Tree-fruits,EA029-4,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p99, +33133,Ii6,EA029,Tree-fruits,EA029-4,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +33134,Ii7,EA029,Roots/tubers,EA029-5,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +33135,Ii8,EA029,Roots/tubers,EA029-5,,burrows1936,,1840,EthnographicAtlas_1967_p99, +33136,Ii9,EA029,Roots/tubers,EA029-5,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +33137,Ij1,EA029,Roots/tubers,EA029-5,,buck1934,,1820,EthnographicAtlas_1967_p99, +33138,Ij10,EA029,Tree-fruits,EA029-4,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +33139,Ij2,EA029,Roots/tubers,EA029-5,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +33140,Ij3,EA029,Tree-fruits,EA029-4,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +33141,Ij4,EA029,Tree-fruits,EA029-4,,buck1932a,,1850,EthnographicAtlas_1967_p103, +33142,Ij5,EA029,Tree-fruits,EA029-4,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p103, +33143,Ij6,EA029,Roots/tubers,EA029-5,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p103, +33144,Ij7,EA029,Tree-fruits,EA029-4,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +33145,Ij8,EA029,Tree-fruits,EA029-4,But with some irrigation,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p103, +33146,Ij9,EA029,Roots/tubers,EA029-5,,metraux1940,,1860,EthnographicAtlas_1967_p103, +33147,Na1,EA029,No agriculture,EA029-1,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +33148,Na10,EA029,No agriculture,EA029-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +33149,Na11,EA029,No agriculture,EA029-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +33150,Na12,EA029,No agriculture,EA029-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +33151,Na13,EA029,No agriculture,EA029-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +33152,Na14,EA029,No agriculture,EA029-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +33153,Na15,EA029,No agriculture,EA029-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p103, +33154,Na16,EA029,No agriculture,EA029-1,,osgood1931,,1860,EthnographicAtlas_1967_p103, +33155,Na17,EA029,No agriculture,EA029-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33156,Na19,EA029,No agriculture,EA029-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +33157,Na2,EA029,No agriculture,EA029-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +33158,Na20,EA029,No agriculture,EA029-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +33159,Na21,EA029,No agriculture,EA029-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +33160,Na22,EA029,No agriculture,EA029-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +33161,Na23,EA029,No agriculture,EA029-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +33162,Na24,EA029,No agriculture,EA029-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +33163,Na25,EA029,No agriculture,EA029-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +33164,Na26,EA029,No agriculture,EA029-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +33165,Na27,EA029,No agriculture,EA029-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +33166,Na28,EA029,No agriculture,EA029-1,,jenness1937,,1880,EthnographicAtlas_1967_p103, +33167,Na29,EA029,No agriculture,EA029-1,,goddard1916,,1850,EthnographicAtlas_1967_p103, +33168,Na3,EA029,No agriculture,EA029-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +33169,Na30,EA029,No agriculture,EA029-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +33170,Na31,EA029,No agriculture,EA029-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +33171,Na32,EA029,No agriculture,EA029-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +33172,Na33,EA029,No agriculture,EA029-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +33173,Na34,EA029,No agriculture,EA029-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +33174,Na35,EA029,No agriculture,EA029-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +33175,Na36,EA029,Cereals,EA029-6,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +33176,Na37,EA029,No agriculture,EA029-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +33177,Na38,EA029,No agriculture,EA029-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +33178,Na39,EA029,No agriculture,EA029-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +33179,Na4,EA029,No agriculture,EA029-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +33180,Na40,EA029,Cereals,EA029-6,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +33181,Na41,EA029,No agriculture,EA029-1,But there was some agriculture in post-Columbian times,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +33182,Na42,EA029,Cereals,EA029-6,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +33183,Na43,EA029,No agriculture,EA029-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +33184,Na44,EA029,No agriculture,EA029-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +33185,Na45,EA029,No agriculture,EA029-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +33186,Na5,EA029,No agriculture,EA029-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +33187,Na6,EA029,No agriculture,EA029-1,,lantis1946,,1930,EthnographicAtlas_1967_p103, +33188,Na7,EA029,No agriculture,EA029-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +33189,Na8,EA029,No agriculture,EA029-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +33190,Na9,EA029,No agriculture,EA029-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33191,Nb1,EA029,No agriculture,EA029-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +33192,Nb10,EA029,No agriculture,EA029-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +33193,Nb11,EA029,No agriculture,EA029-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +33194,Nb12,EA029,No agriculture,EA029-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +33195,Nb13,EA029,No agriculture,EA029-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +33196,Nb14,EA029,No agriculture,EA029-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +33197,Nb15,EA029,No agriculture,EA029-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +33198,Nb16,EA029,No agriculture,EA029-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +33199,Nb17,EA029,No agriculture,EA029-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +33200,Nb18,EA029,No agriculture,EA029-1,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +33201,Nb19,EA029,No agriculture,EA029-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +33202,Nb2,EA029,No agriculture,EA029-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +33203,Nb20,EA029,No agriculture,EA029-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +33204,Nb21,EA029,No agriculture,EA029-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +33205,Nb22,EA029,No agriculture,EA029-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +33206,Nb23,EA029,No agriculture,EA029-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +33207,Nb24,EA029,No agriculture,EA029-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +33208,Nb25,EA029,No agriculture,EA029-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +33209,Nb26,EA029,No agriculture,EA029-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +33210,Nb27,EA029,No agriculture,EA029-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +33211,Nb28,EA029,No agriculture,EA029-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +33212,Nb29,EA029,No agriculture,EA029-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +33213,Nb3,EA029,No agriculture,EA029-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +33214,Nb30,EA029,No agriculture,EA029-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +33215,Nb31,EA029,No agriculture,EA029-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p107, +33216,Nb32,EA029,No agriculture,EA029-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +33217,Nb33,EA029,No agriculture,EA029-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +33218,Nb34,EA029,No agriculture,EA029-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +33219,Nb35,EA029,No agriculture,EA029-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +33220,Nb36,EA029,No agriculture,EA029-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +33221,Nb37,EA029,No agriculture,EA029-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +33222,Nb38,EA029,No agriculture,EA029-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +33223,Nb39,EA029,No agriculture,EA029-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +33224,Nb4,EA029,No agriculture,EA029-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +33225,Nb5,EA029,No agriculture,EA029-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +33226,Nb6,EA029,No agriculture,EA029-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +33227,Nb7,EA029,No agriculture,EA029-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +33228,Nb8,EA029,No agriculture,EA029-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +33229,Nb9,EA029,No agriculture,EA029-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +33230,Nc1,EA029,No agriculture,EA029-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +33231,Nc10,EA029,No agriculture,EA029-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +33232,Nc11,EA029,No agriculture,EA029-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +33233,Nc12,EA029,No agriculture,EA029-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +33234,Nc13,EA029,No agriculture,EA029-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +33235,Nc14,EA029,No agriculture,EA029-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +33236,Nc15,EA029,No agriculture,EA029-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +33237,Nc16,EA029,No agriculture,EA029-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +33238,Nc17,EA029,No agriculture,EA029-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +33239,Nc18,EA029,No agriculture,EA029-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +33240,Nc19,EA029,No agriculture,EA029-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p107, +33241,Nc2,EA029,No agriculture,EA029-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +33242,Nc20,EA029,No agriculture,EA029-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +33243,Nc21,EA029,No agriculture,EA029-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +33244,Nc22,EA029,No agriculture,EA029-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +33245,Nc23,EA029,No agriculture,EA029-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +33246,Nc24,EA029,No agriculture,EA029-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +33247,Nc25,EA029,No agriculture,EA029-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +33248,Nc26,EA029,No agriculture,EA029-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +33249,Nc27,EA029,No agriculture,EA029-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p107, +33250,Nc28,EA029,No agriculture,EA029-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +33251,Nc29,EA029,No agriculture,EA029-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +33252,Nc3,EA029,No agriculture,EA029-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +33253,Nc30,EA029,No agriculture,EA029-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +33254,Nc31,EA029,No agriculture,EA029-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +33255,Nc32,EA029,No agriculture,EA029-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +33256,Nc33,EA029,No agriculture,EA029-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +33257,Nc34,EA029,No agriculture,EA029-1,,meigs1939,,1880,EthnographicAtlas_1967_p107, +33258,Nc4,EA029,No agriculture,EA029-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +33259,Nc5,EA029,No agriculture,EA029-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +33260,Nc6,EA029,No agriculture,EA029-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +33261,Nc7,EA029,No agriculture,EA029-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +33262,Nc8,EA029,No agriculture,EA029-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +33263,Nc9,EA029,No agriculture,EA029-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +33264,Nd1,EA029,No agriculture,EA029-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +33265,Nd10,EA029,No agriculture,EA029-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +33266,Nd11,EA029,No agriculture,EA029-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +33267,Nd12,EA029,No agriculture,EA029-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +33268,Nd13,EA029,No agriculture,EA029-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +33269,Nd14,EA029,No agriculture,EA029-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +33270,Nd15,EA029,No agriculture,EA029-1,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +33271,Nd16,EA029,No agriculture,EA029-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +33272,Nd17,EA029,No agriculture,EA029-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +33273,Nd18,EA029,No agriculture,EA029-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +33274,Nd19,EA029,No agriculture,EA029-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +33275,Nd2,EA029,?,EA029-NA,Practiced only by a few families,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +33276,Nd20,EA029,No agriculture,EA029-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +33277,Nd21,EA029,No agriculture,EA029-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +33278,Nd22,EA029,No agriculture,EA029-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +33279,Nd23,EA029,No agriculture,EA029-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +33280,Nd24,EA029,No agriculture,EA029-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +33281,Nd25,EA029,No agriculture,EA029-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +33282,Nd26,EA029,No agriculture,EA029-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +33283,Nd27,EA029,No agriculture,EA029-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +33284,Nd28,EA029,No agriculture,EA029-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +33285,Nd29,EA029,No agriculture,EA029-1,But irrigation of wild seeds was practiced,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +33286,Nd3,EA029,Cereals,EA029-6,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +33287,Nd30,EA029,No agriculture,EA029-1,But plots of wild seeds were irrigated,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +33288,Nd31,EA029,Cereals,EA029-6,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +33289,Nd32,EA029,No agriculture,EA029-1,"But 'cereal grains' (code ""6"") for the Panamint of Death Valley",driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +33290,Nd33,EA029,No agriculture,EA029-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +33291,Nd34,EA029,No agriculture,EA029-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +33292,Nd35,EA029,?,EA029-NA,Plots of wild seeds were sown and cultivated,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +33293,Nd36,EA029,No agriculture,EA029-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +33294,Nd37,EA029,?,EA029-NA,Plots of wild seeds were planted and irrigated,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +33295,Nd38,EA029,Cereals,EA029-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +33296,Nd39,EA029,Cereals,EA029-6,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +33297,Nd4,EA029,No agriculture,EA029-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +33298,Nd40,EA029,No agriculture,EA029-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +33299,Nd41,EA029,No agriculture,EA029-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +33300,Nd42,EA029,No agriculture,EA029-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +33301,Nd43,EA029,No agriculture,EA029-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +33302,Nd44,EA029,No agriculture,EA029-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +33303,Nd45,EA029,No agriculture,EA029-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +33304,Nd46,EA029,No agriculture,EA029-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +33305,Nd47,EA029,No agriculture,EA029-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +33306,Nd48,EA029,No agriculture,EA029-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +33307,Nd49,EA029,No agriculture,EA029-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +33308,Nd5,EA029,No agriculture,EA029-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +33309,Nd50,EA029,No agriculture,EA029-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +33310,Nd51,EA029,Cereals,EA029-6,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +33311,Nd52,EA029,Cereals,EA029-6,But agriculture was practiced by only a few families,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +33312,Nd53,EA029,Cereals,EA029-6,But only a few families practiced agriculture,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +33313,Nd54,EA029,Cereals,EA029-6,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33314,Nd55,EA029,Cereals,EA029-6,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +33315,Nd56,EA029,Cereals,EA029-6,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +33316,Nd57,EA029,No agriculture,EA029-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +33317,Nd58,EA029,No agriculture,EA029-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +33318,Nd59,EA029,No agriculture,EA029-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +33319,Nd6,EA029,No agriculture,EA029-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +33320,Nd60,EA029,No agriculture,EA029-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +33321,Nd61,EA029,No agriculture,EA029-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +33322,Nd62,EA029,No agriculture,EA029-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +33323,Nd63,EA029,No agriculture,EA029-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +33324,Nd64,EA029,No agriculture,EA029-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +33325,Nd65,EA029,Cereals,EA029-6,But agriculture was practiced by a few families only,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +33326,Nd66,EA029,Cereals,EA029-6,But agriculture was practiced by a few families only,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +33327,Nd67,EA029,Cereals,EA029-6,,gifford1936,,1870,EthnographicAtlas_1967_p111, +33328,Nd7,EA029,No agriculture,EA029-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +33329,Nd8,EA029,No agriculture,EA029-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +33330,Nd9,EA029,No agriculture,EA029-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +33331,Ne1,EA029,No agriculture,EA029-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +33332,Ne10,EA029,Cereals,EA029-6,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +33333,Ne11,EA029,No agriculture,EA029-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +33334,Ne12,EA029,No agriculture,EA029-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +33335,Ne13,EA029,No agriculture,EA029-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +33336,Ne14,EA029,No agriculture,EA029-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +33337,Ne15,EA029,Cereals,EA029-6,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +33338,Ne16,EA029,No agriculture,EA029-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +33339,Ne17,EA029,No agriculture,EA029-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +33340,Ne18,EA029,No agriculture,EA029-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +33341,Ne19,EA029,No agriculture,EA029-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +33342,Ne2,EA029,No agriculture,EA029-1,,mcallister1937,,1870,EthnographicAtlas_1967_p111, +33343,Ne20,EA029,Cereals,EA029-6,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p115, +33344,Ne21,EA029,?,EA029-NA,,,,,, +33345,Ne3,EA029,No agriculture,EA029-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p111, +33346,Ne4,EA029,Non-food,EA029-2,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +33347,Ne5,EA029,Cereals,EA029-6,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +33348,Ne6,EA029,Cereals,EA029-6,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p111, +33349,Ne7,EA029,No agriculture,EA029-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +33350,Ne8,EA029,No agriculture,EA029-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +33351,Ne9,EA029,No agriculture,EA029-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +33352,Nf10,EA029,Cereals,EA029-6,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +33353,Nf11,EA029,Cereals,EA029-6,,whitman1937,,1870,EthnographicAtlas_1967_p115, +33354,Nf12,EA029,Cereals,EA029-6,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +33355,Nf13,EA029,Cereals,EA029-6,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33356,Nf14,EA029,Cereals,EA029-6,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +33357,Nf15,EA029,?,EA029-NA,,,,,, +33358,Nf2,EA029,Cereals,EA029-6,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p115, +33359,Nf3,EA029,Cereals,EA029-6,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +33360,Nf4,EA029,Cereals,EA029-6,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +33361,Nf5,EA029,Cereals,EA029-6,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +33362,Nf6,EA029,Cereals,EA029-6,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +33363,Nf7,EA029,Cereals,EA029-6,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33364,Nf8,EA029,Cereals,EA029-6,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +33365,Nf9,EA029,Cereals,EA029-6,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +33366,Ng1,EA029,Cereals,EA029-6,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +33367,Ng10,EA029,Cereals,EA029-6,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +33368,Ng11,EA029,Cereals,EA029-6,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p115, +33369,Ng12,EA029,Cereals,EA029-6,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p115, +33370,Ng13,EA029,?,EA029-NA,,,,,, +33371,Ng14,EA029,?,EA029-NA,,,,,, +33372,Ng15,EA029,?,EA029-NA,,,,,, +33373,Ng2,EA029,?,EA029-NA,,,,,, +33374,Ng3,EA029,Cereals,EA029-6,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +33375,Ng4,EA029,?,EA029-NA,,,,,, +33376,Ng5,EA029,Cereals,EA029-6,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +33377,Ng6,EA029,Cereals,EA029-6,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +33378,Ng7,EA029,Cereals,EA029-6,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +33379,Ng8,EA029,Cereals,EA029-6,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p115, +33380,Ng9,EA029,Cereals,EA029-6,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +33381,Nh1,EA029,Cereals,EA029-6,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +33382,Nh10,EA029,Cereals,EA029-6,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +33383,Nh11,EA029,Cereals,EA029-6,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +33384,Nh12,EA029,Cereals,EA029-6,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +33385,Nh13,EA029,Cereals,EA029-6,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +33386,Nh14,EA029,Cereals,EA029-6,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +33387,Nh15,EA029,Cereals,EA029-6,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +33388,Nh16,EA029,Cereals,EA029-6,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33389,Nh17,EA029,Cereals,EA029-6,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +33390,Nh18,EA029,Cereals,EA029-6,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33391,Nh19,EA029,Cereals,EA029-6,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +33392,Nh2,EA029,Cereals,EA029-6,,dozier1954,,1950,EthnographicAtlas_1967_p115, +33393,Nh20,EA029,Cereals,EA029-6,,gifford1931,,1860,EthnographicAtlas_1967_p115, +33394,Nh21,EA029,Cereals,EA029-6,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33395,Nh22,EA029,Cereals,EA029-6,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +33396,Nh23,EA029,Cereals,EA029-6,,gifford1932a,,1870,EthnographicAtlas_1967_p115, +33397,Nh24,EA029,No agriculture,EA029-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +33398,Nh25,EA029,Cereals,EA029-6,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +33399,Nh26,EA029,?,EA029-NA,,,,,, +33400,Nh27,EA029,?,EA029-NA,,,,,, +33401,Nh3,EA029,Cereals,EA029-6,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +33402,Nh4,EA029,Cereals,EA029-6,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +33403,Nh5,EA029,Cereals,EA029-6,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +33404,Nh6,EA029,Cereals,EA029-6,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +33405,Nh7,EA029,Cereals,EA029-6,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +33406,Nh8,EA029,Cereals,EA029-6,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +33407,Nh9,EA029,Cereals,EA029-6,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p115, +33408,Ni1,EA029,Cereals,EA029-6,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +33409,Ni2,EA029,Cereals,EA029-6,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +33410,Ni3,EA029,Cereals,EA029-6,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +33411,Ni4,EA029,No agriculture,EA029-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p115, +33412,Ni5,EA029,No agriculture,EA029-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +33413,Ni6,EA029,Cereals,EA029-6,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +33414,Ni7,EA029,Cereals,EA029-6,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +33415,Ni8,EA029,?,EA029-NA,,,,,, +33416,Ni9,EA029,?,EA029-NA,,,,,, +33417,Nj1,EA029,Cereals,EA029-6,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33418,Nj10,EA029,Cereals,EA029-6,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33419,Nj11,EA029,?,EA029-NA,,,,,, +33420,Nj12,EA029,?,EA029-NA,,,,,, +33421,Nj13,EA029,?,EA029-NA,,,,,, +33422,Nj14,EA029,?,EA029-NA,,,,,, +33423,Nj2,EA029,Cereals,EA029-6,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +33424,Nj3,EA029,Cereals,EA029-6,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +33425,Nj4,EA029,Cereals,EA029-6,"Aboriginally cereal grains (code ""6"")",kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +33426,Nj5,EA029,?,EA029-NA,,,,,, +33427,Nj6,EA029,?,EA029-NA,,,,,, +33428,Nj7,EA029,Cereals,EA029-6,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33429,Nj8,EA029,Cereals,EA029-6,,foster1948,,1500,EthnographicAtlas_1967_p119, +33430,Nj9,EA029,Cereals,EA029-6,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +33431,Sa1,EA029,Cereals,EA029-6,But bananas are often the staple today,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +33432,Sa10,EA029,Cereals,EA029-6,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p119, +33433,Sa11,EA029,?,EA029-NA,,,,,, +33434,Sa12,EA029,Cereals,EA029-6,,stone1948,,1948,EthnographicAtlas_1967_p119, +33435,Sa13,EA029,Cereals,EA029-6,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +33436,Sa14,EA029,?,EA029-NA,,,,,, +33437,Sa15,EA029,?,EA029-NA,,,,,, +33438,Sa16,EA029,?,EA029-NA,,,,,, +33439,Sa17,EA029,?,EA029-NA,,,,,, +33440,Sa2,EA029,?,EA029-NA,,,,,, +33441,Sa3,EA029,Cereals,EA029-6,,wisdom1940,,1930,EthnographicAtlas_1967_p119, +33442,Sa4,EA029,Tree-fruits,EA029-4,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +33443,Sa5,EA029,Cereals,EA029-6,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +33444,Sa6,EA029,Cereals,EA029-6,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +33445,Sa7,EA029,Roots/tubers,EA029-5,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +33446,Sa8,EA029,Cereals,EA029-6,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +33447,Sa9,EA029,Roots/tubers,EA029-5,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +33448,Sb1,EA029,Roots/tubers,EA029-5,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +33449,Sb2,EA029,Roots/tubers,EA029-5,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +33450,Sb3,EA029,Roots/tubers,EA029-5,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +33451,Sb4,EA029,Roots/tubers,EA029-5,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +33452,Sb5,EA029,No agriculture,EA029-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +33453,Sb6,EA029,Cereals,EA029-6,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +33454,Sb7,EA029,Cereals,EA029-6,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +33455,Sb8,EA029,Roots/tubers,EA029-5,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +33456,Sb9,EA029,Cereals,EA029-6,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +33457,Sc1,EA029,Roots/tubers,EA029-5,"Agriculture is absent in some groups, recent and of varying importance in others",hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +33458,Sc10,EA029,Roots/tubers,EA029-5,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +33459,Sc11,EA029,Roots/tubers,EA029-5,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p119, +33460,Sc12,EA029,Roots/tubers,EA029-5,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p119, +33461,Sc13,EA029,Roots/tubers,EA029-5,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +33462,Sc14,EA029,?,EA029-NA,,,,,, +33463,Sc15,EA029,Roots/tubers,EA029-5,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p119, +33464,Sc16,EA029,Roots/tubers,EA029-5,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p119, +33465,Sc17,EA029,Roots/tubers,EA029-5,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +33466,Sc18,EA029,Roots/tubers,EA029-5,"But 'cereal grains' (code ""6"") in some localities",geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +33467,Sc2,EA029,Roots/tubers,EA029-5,,leedsnd,,1950,EthnographicAtlas_1967_p119, +33468,Sc3,EA029,Roots/tubers,EA029-5,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +33469,Sc4,EA029,Roots/tubers,EA029-5,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +33470,Sc5,EA029,Roots/tubers,EA029-5,,farabee1918,,1900,EthnographicAtlas_1967_p119, +33471,Sc6,EA029,Roots/tubers,EA029-5,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33472,Sc7,EA029,Roots/tubers,EA029-5,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +33473,Sc8,EA029,Roots/tubers,EA029-5,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +33474,Sc9,EA029,Roots/tubers,EA029-5,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +33475,Sd1,EA029,Roots/tubers,EA029-5,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33476,Sd2,EA029,Roots/tubers,EA029-5,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +33477,Sd3,EA029,Roots/tubers,EA029-5,,nimuendaju1926,,1920,EthnographicAtlas_1967_p119, +33478,Sd4,EA029,Tree-fruits,EA029-4,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +33479,Sd5,EA029,Roots/tubers,EA029-5,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +33480,Sd6,EA029,No agriculture,EA029-1,But a few groups grow a little manioc,migliazza1964,,1960,EthnographicAtlas_1967_p119, +33481,Sd7,EA029,Roots/tubers,EA029-5,,fock1963,,1950,EthnographicAtlas_1967_p119, +33482,Sd8,EA029,Roots/tubers,EA029-5,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +33483,Sd9,EA029,Tree-fruits,EA029-4,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33484,Se1,EA029,Cereals,EA029-6,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +33485,Se10,EA029,Roots/tubers,EA029-5,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +33486,Se11,EA029,Roots/tubers,EA029-5,,prost1965,,1960,EthnographicAtlas_1967_p123, +33487,Se12,EA029,?,EA029-NA,,,,,, +33488,Se2,EA029,Roots/tubers,EA029-5,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +33489,Se3,EA029,Roots/tubers,EA029-5,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +33490,Se4,EA029,Roots/tubers,EA029-5,,fejos1943,,1940,EthnographicAtlas_1967_p119, +33491,Se5,EA029,Roots/tubers,EA029-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +33492,Se6,EA029,Roots/tubers,EA029-5,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +33493,Se7,EA029,?,EA029-NA,,,,,, +33494,Se8,EA029,Cereals,EA029-6,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +33495,Se9,EA029,Roots/tubers,EA029-5,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +33496,Sf1,EA029,Cereals,EA029-6,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +33497,Sf2,EA029,Roots/tubers,EA029-5,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +33498,Sf3,EA029,Tree-fruits,EA029-4,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +33499,Sf4,EA029,Cereals,EA029-6,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +33500,Sf5,EA029,Roots/tubers,EA029-5,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +33501,Sf6,EA029,Roots/tubers,EA029-5,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +33502,Sf7,EA029,Roots/tubers,EA029-5,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +33503,Sf8,EA029,?,EA029-NA,,,,,, +33504,Sf9,EA029,?,EA029-NA,,,,,, +33505,Sg1,EA029,No agriculture,EA029-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +33506,Sg2,EA029,Cereals,EA029-6,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33507,Sg3,EA029,No agriculture,EA029-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +33508,Sg4,EA029,No agriculture,EA029-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +33509,Sg5,EA029,No agriculture,EA029-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33510,Sh1,EA029,Vegetables,EA029-3,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +33511,Sh2,EA029,Roots/tubers,EA029-5,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +33512,Sh3,EA029,No agriculture,EA029-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +33513,Sh4,EA029,Roots/tubers,EA029-5,,oberg1949,,1940,EthnographicAtlas_1967_p123, +33514,Sh5,EA029,Vegetables,EA029-3,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +33515,Sh6,EA029,Non-food,EA029-2,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +33516,Sh7,EA029,Cereals,EA029-6,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p123, +33517,Sh8,EA029,Roots/tubers,EA029-5,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +33518,Sh9,EA029,Roots/tubers,EA029-5,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +33519,Si1,EA029,No agriculture,EA029-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33520,Si10,EA029,Roots/tubers,EA029-5,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +33521,Si2,EA029,Roots/tubers,EA029-5,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +33522,Si3,EA029,Roots/tubers,EA029-5,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33523,Si4,EA029,Roots/tubers,EA029-5,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +33524,Si5,EA029,Roots/tubers,EA029-5,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +33525,Si6,EA029,Tree-fruits,EA029-4,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p123, +33526,Si7,EA029,Roots/tubers,EA029-5,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +33527,Si8,EA029,Roots/tubers,EA029-5,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +33528,Si9,EA029,?,EA029-NA,,,,,, +33529,Sj1,EA029,Roots/tubers,EA029-5,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +33530,Sj10,EA029,Roots/tubers,EA029-5,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33531,Sj11,EA029,Cereals,EA029-6,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +33532,Sj2,EA029,Roots/tubers,EA029-5,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +33533,Sj3,EA029,No agriculture,EA029-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +33534,Sj4,EA029,Roots/tubers,EA029-5,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +33535,Sj5,EA029,No agriculture,EA029-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p123, +33536,Sj6,EA029,Roots/tubers,EA029-5,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33537,Sj7,EA029,Roots/tubers,EA029-5,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +33538,Sj8,EA029,Roots/tubers,EA029-5,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +33539,Sj9,EA029,Roots/tubers,EA029-5,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +33540,ch12,EA029,Cereals,EA029-6,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +33541,ch13,EA029,Cereals,EA029-6,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +33542,ch14,EA029,Cereals,EA029-6,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +33543,ch15,EA029,Cereals,EA029-6,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +33544,ch16,EA029,Cereals,EA029-6,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +33545,ch17,EA029,Cereals,EA029-6,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +33546,ch18,EA029,Cereals,EA029-6,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +33547,ch19,EA029,Cereals,EA029-6,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +33548,ch20,EA029,Cereals,EA029-6,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +33549,ch21,EA029,Cereals,EA029-6,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +33550,ch22,EA029,Vegetables,EA029-3,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +33551,ch23,EA029,Vegetables,EA029-3,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +33552,ch24,EA029,Cereals,EA029-6,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +33553,ch25,EA029,Cereals,EA029-6,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +33554,ch26,EA029,Cereals,EA029-6,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +33555,ch27,EA029,Cereals,EA029-6,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +33556,ch28,EA029,Cereals,EA029-6,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +33557,ec12,EA029,No agriculture,EA029-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +33558,ec13,EA029,No agriculture,EA029-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +33559,ec14,EA029,No agriculture,EA029-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +33560,ec15,EA029,No agriculture,EA029-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +33561,ec16,EA029,No agriculture,EA029-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +33562,ec17,EA029,No agriculture,EA029-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +33563,ec18,EA029,No agriculture,EA029-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +33564,ec19,EA029,No agriculture,EA029-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +33565,ec20,EA029,No agriculture,EA029-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +33566,ec21,EA029,No agriculture,EA029-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +33567,Aa1,EA003,0-5%,EA003-0,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +33568,Aa2,EA003,0-5%,EA003-0,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +33569,Aa3,EA003,6-15%,EA003-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +33570,Aa4,EA003,6-15%,EA003-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +33571,Aa5,EA003,0-5%,EA003-0,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +33572,Aa6,EA003,6-15%,EA003-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +33573,Aa7,EA003,0-5%,EA003-0,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +33574,Aa8,EA003,6-15%,EA003-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +33575,Aa9,EA003,0-5%,EA003-0,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +33576,Ab1,EA003,0-5%,EA003-0,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +33577,Ab10,EA003,0-5%,EA003-0,,hunter1936,,1936,EthnographicAtlas_1967_p62, +33578,Ab11,EA003,0-5%,EA003-0,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +33579,Ab12,EA003,0-5%,EA003-0,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +33580,Ab13,EA003,0-5%,EA003-0,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +33581,Ab14,EA003,0-5%,EA003-0,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +33582,Ab15,EA003,0-5%,EA003-0,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +33583,Ab16,EA003,6-15%,EA003-1,,earthy1933,,1930,EthnographicAtlas_1967_p62, +33584,Ab17,EA003,16-25%,EA003-2,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +33585,Ab18,EA003,6-15%,EA003-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +33586,Ab19,EA003,6-15%,EA003-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +33587,Ab2,EA003,0-5%,EA003-0,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +33588,Ab20,EA003,6-15%,EA003-1,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +33589,Ab21a,EA003,0-5%,EA003-0,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +33590,Ab21b,EA003,0-5%,EA003-0,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +33591,Ab22,EA003,6-15%,EA003-1,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +33592,Ab3,EA003,6-15%,EA003-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +33593,Ab4,EA003,6-15%,EA003-1,,junod1927,,1920,EthnographicAtlas_1967_p62, +33594,Ab5,EA003,6-15%,EA003-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +33595,Ab6,EA003,0-5%,EA003-0,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +33596,Ab7,EA003,6-15%,EA003-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +33597,Ab8,EA003,0-5%,EA003-0,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +33598,Ab9,EA003,0-5%,EA003-0,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +33599,Ac1,EA003,0-5%,EA003-0,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +33600,Ac10,EA003,6-15%,EA003-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +33601,Ac11,EA003,26-35%,EA003-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +33602,Ac12,EA003,6-15%,EA003-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +33603,Ac13,EA003,36-45%,EA003-4,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +33604,Ac14,EA003,6-15%,EA003-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +33605,Ac15,EA003,16-25%,EA003-2,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +33606,Ac16,EA003,6-15%,EA003-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +33607,Ac17,EA003,6-15%,EA003-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +33608,Ac18,EA003,6-15%,EA003-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +33609,Ac19,EA003,6-15%,EA003-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +33610,Ac2,EA003,6-15%,EA003-1,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +33611,Ac20,EA003,0-5%,EA003-0,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +33612,Ac21,EA003,6-15%,EA003-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +33613,Ac22,EA003,6-15%,EA003-1,,mertens1935,,1930,EthnographicAtlas_1967_p62, +33614,Ac23,EA003,6-15%,EA003-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +33615,Ac24,EA003,16-25%,EA003-2,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +33616,Ac25,EA003,6-15%,EA003-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +33617,Ac26,EA003,16-25%,EA003-2,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +33618,Ac27,EA003,6-15%,EA003-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +33619,Ac28,EA003,36-45%,EA003-4,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +33620,Ac29,EA003,6-15%,EA003-1,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +33621,Ac3,EA003,6-15%,EA003-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +33622,Ac30,EA003,6-15%,EA003-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +33623,Ac31,EA003,6-15%,EA003-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +33624,Ac32,EA003,16-25%,EA003-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +33625,Ac33,EA003,16-25%,EA003-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +33626,Ac34,EA003,26-35%,EA003-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +33627,Ac35,EA003,26-35%,EA003-3,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +33628,Ac36,EA003,0-5%,EA003-0,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +33629,Ac37,EA003,6-15%,EA003-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +33630,Ac38,EA003,16-25%,EA003-2,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +33631,Ac39,EA003,36-45%,EA003-4,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +33632,Ac4,EA003,16-25%,EA003-2,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +33633,Ac40,EA003,6-15%,EA003-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +33634,Ac41,EA003,0-5%,EA003-0,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +33635,Ac42,EA003,6-15%,EA003-1,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +33636,Ac43,EA003,0-5%,EA003-0,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +33637,Ac5,EA003,16-25%,EA003-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +33638,Ac6,EA003,6-15%,EA003-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +33639,Ac7,EA003,16-25%,EA003-2,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +33640,Ac8,EA003,16-25%,EA003-2,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +33641,Ac9,EA003,16-25%,EA003-2,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +33642,Ad1,EA003,36-45%,EA003-4,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +33643,Ad10,EA003,0-5%,EA003-0,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +33644,Ad11,EA003,0-5%,EA003-0,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +33645,Ad12,EA003,0-5%,EA003-0,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +33646,Ad13,EA003,0-5%,EA003-0,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +33647,Ad14,EA003,6-15%,EA003-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +33648,Ad15,EA003,0-5%,EA003-0,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +33649,Ad16,EA003,6-15%,EA003-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +33650,Ad17,EA003,6-15%,EA003-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +33651,Ad18,EA003,16-25%,EA003-2,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +33652,Ad19,EA003,26-35%,EA003-3,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +33653,Ad2,EA003,6-15%,EA003-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +33654,Ad20,EA003,0-5%,EA003-0,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +33655,Ad21,EA003,16-25%,EA003-2,,maurice193538,,1930,EthnographicAtlas_1967_p66, +33656,Ad22,EA003,0-5%,EA003-0,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +33657,Ad23,EA003,0-5%,EA003-0,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +33658,Ad24,EA003,0-5%,EA003-0,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +33659,Ad25,EA003,0-5%,EA003-0,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +33660,Ad26,EA003,0-5%,EA003-0,,sick1916,,1910,EthnographicAtlas_1967_p66, +33661,Ad27,EA003,6-15%,EA003-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +33662,Ad28,EA003,6-15%,EA003-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +33663,Ad29,EA003,16-25%,EA003-2,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +33664,Ad3,EA003,0-5%,EA003-0,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +33665,Ad30,EA003,16-25%,EA003-2,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +33666,Ad31,EA003,0-5%,EA003-0,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +33667,Ad32,EA003,0-5%,EA003-0,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +33668,Ad33,EA003,26-35%,EA003-3,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +33669,Ad34,EA003,0-5%,EA003-0,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +33670,Ad35,EA003,0-5%,EA003-0,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +33671,Ad36,EA003,0-5%,EA003-0,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +33672,Ad37,EA003,0-5%,EA003-0,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +33673,Ad38,EA003,16-25%,EA003-2,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +33674,Ad39,EA003,0-5%,EA003-0,,gray1963,,1950,EthnographicAtlas_1967_p66, +33675,Ad4,EA003,0-5%,EA003-0,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +33676,Ad40,EA003,0-5%,EA003-0,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +33677,Ad41,EA003,0-5%,EA003-0,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +33678,Ad42,EA003,16-25%,EA003-2,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +33679,Ad43,EA003,26-35%,EA003-3,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +33680,Ad44,EA003,26-35%,EA003-3,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +33681,Ad45,EA003,0-5%,EA003-0,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +33682,Ad46,EA003,16-25%,EA003-2,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +33683,Ad47,EA003,0-5%,EA003-0,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +33684,Ad48,EA003,6-15%,EA003-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +33685,Ad49,EA003,6-15%,EA003-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +33686,Ad5,EA003,0-5%,EA003-0,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +33687,Ad50,EA003,6-15%,EA003-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +33688,Ad51,EA003,6-15%,EA003-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +33689,Ad6,EA003,6-15%,EA003-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +33690,Ad7,EA003,6-15%,EA003-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +33691,Ad8,EA003,0-5%,EA003-0,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +33692,Ad9,EA003,6-15%,EA003-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +33693,Ae1,EA003,6-15%,EA003-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +33694,Ae10,EA003,0-5%,EA003-0,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +33695,Ae11,EA003,46-55%,EA003-5,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +33696,Ae12,EA003,26-35%,EA003-3,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +33697,Ae13,EA003,6-15%,EA003-1,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +33698,Ae14,EA003,6-15%,EA003-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +33699,Ae15,EA003,6-15%,EA003-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +33700,Ae16,EA003,0-5%,EA003-0,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +33701,Ae17,EA003,16-25%,EA003-2,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +33702,Ae18,EA003,6-15%,EA003-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +33703,Ae19,EA003,6-15%,EA003-1,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +33704,Ae2,EA003,6-15%,EA003-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +33705,Ae20,EA003,36-45%,EA003-4,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +33706,Ae21,EA003,0-5%,EA003-0,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +33707,Ae22,EA003,16-25%,EA003-2,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +33708,Ae23,EA003,16-25%,EA003-2,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +33709,Ae24,EA003,6-15%,EA003-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +33710,Ae25,EA003,6-15%,EA003-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +33711,Ae26,EA003,6-15%,EA003-1,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +33712,Ae27,EA003,46-55%,EA003-5,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +33713,Ae28,EA003,36-45%,EA003-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +33714,Ae29,EA003,66-75%,EA003-7,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +33715,Ae3,EA003,16-25%,EA003-2,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +33716,Ae30,EA003,0-5%,EA003-0,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +33717,Ae31,EA003,0-5%,EA003-0,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +33718,Ae32,EA003,0-5%,EA003-0,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +33719,Ae33,EA003,6-15%,EA003-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +33720,Ae34,EA003,6-15%,EA003-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +33721,Ae35,EA003,6-15%,EA003-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +33722,Ae36,EA003,6-15%,EA003-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +33723,Ae37,EA003,16-25%,EA003-2,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +33724,Ae38,EA003,6-15%,EA003-1,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +33725,Ae39,EA003,16-25%,EA003-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +33726,Ae4,EA003,16-25%,EA003-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +33727,Ae40,EA003,6-15%,EA003-1,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +33728,Ae41,EA003,0-5%,EA003-0,,andersson1953,,1940,EthnographicAtlas_1967_p66, +33729,Ae42,EA003,26-35%,EA003-3,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +33730,Ae43,EA003,6-15%,EA003-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +33731,Ae44,EA003,6-15%,EA003-1,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +33732,Ae45,EA003,6-15%,EA003-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +33733,Ae46,EA003,6-15%,EA003-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +33734,Ae47,EA003,26-35%,EA003-3,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +33735,Ae48,EA003,16-25%,EA003-2,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +33736,Ae49,EA003,6-15%,EA003-1,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +33737,Ae5,EA003,0-5%,EA003-0,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +33738,Ae50,EA003,6-15%,EA003-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +33739,Ae51,EA003,0-5%,EA003-0,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +33740,Ae52,EA003,0-5%,EA003-0,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +33741,Ae53,EA003,6-15%,EA003-1,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +33742,Ae54,EA003,0-5%,EA003-0,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +33743,Ae55,EA003,6-15%,EA003-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +33744,Ae56,EA003,0-5%,EA003-0,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +33745,Ae57,EA003,0-5%,EA003-0,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +33746,Ae58,EA003,0-5%,EA003-0,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +33747,Ae59,EA003,6-15%,EA003-1,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +33748,Ae6,EA003,16-25%,EA003-2,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +33749,Ae7,EA003,6-15%,EA003-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +33750,Ae8,EA003,6-15%,EA003-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +33751,Ae9,EA003,0-5%,EA003-0,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +33752,Af1,EA003,6-15%,EA003-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +33753,Af10,EA003,0-5%,EA003-0,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +33754,Af11,EA003,16-25%,EA003-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +33755,Af12,EA003,0-5%,EA003-0,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +33756,Af13,EA003,16-25%,EA003-2,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +33757,Af14,EA003,16-25%,EA003-2,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +33758,Af15,EA003,6-15%,EA003-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +33759,Af16,EA003,6-15%,EA003-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +33760,Af17,EA003,6-15%,EA003-1,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +33761,Af18,EA003,0-5%,EA003-0,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +33762,Af19,EA003,26-35%,EA003-3,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +33763,Af2,EA003,0-5%,EA003-0,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +33764,Af20,EA003,16-25%,EA003-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +33765,Af21,EA003,36-45%,EA003-4,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +33766,Af22,EA003,46-55%,EA003-5,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +33767,Af23,EA003,16-25%,EA003-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +33768,Af24,EA003,0-5%,EA003-0,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +33769,Af25,EA003,26-35%,EA003-3,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +33770,Af26,EA003,6-15%,EA003-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +33771,Af27,EA003,16-25%,EA003-2,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +33772,Af28,EA003,0-5%,EA003-0,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +33773,Af29,EA003,6-15%,EA003-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +33774,Af3,EA003,16-25%,EA003-2,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +33775,Af30,EA003,6-15%,EA003-1,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +33776,Af31,EA003,0-5%,EA003-0,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +33777,Af32,EA003,0-5%,EA003-0,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33778,Af33,EA003,16-25%,EA003-2,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33779,Af34,EA003,0-5%,EA003-0,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33780,Af35,EA003,0-5%,EA003-0,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +33781,Af36,EA003,16-25%,EA003-2,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +33782,Af37,EA003,6-15%,EA003-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +33783,Af38,EA003,0-5%,EA003-0,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +33784,Af39,EA003,0-5%,EA003-0,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +33785,Af4,EA003,0-5%,EA003-0,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +33786,Af40,EA003,26-35%,EA003-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +33787,Af41,EA003,0-5%,EA003-0,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +33788,Af42,EA003,6-15%,EA003-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +33789,Af43,EA003,36-45%,EA003-4,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +33790,Af44,EA003,76-85%,EA003-8,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +33791,Af45,EA003,36-45%,EA003-4,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +33792,Af46,EA003,6-15%,EA003-1,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +33793,Af47,EA003,6-15%,EA003-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +33794,Af48,EA003,26-35%,EA003-3,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +33795,Af49,EA003,16-25%,EA003-2,,schwab1947,,1940,EthnographicAtlas_1967_p70, +33796,Af5,EA003,6-15%,EA003-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +33797,Af50,EA003,0-5%,EA003-0,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +33798,Af51,EA003,0-5%,EA003-0,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +33799,Af52,EA003,6-15%,EA003-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +33800,Af53,EA003,0-5%,EA003-0,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +33801,Af54,EA003,6-15%,EA003-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +33802,Af55,EA003,6-15%,EA003-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +33803,Af56,EA003,16-25%,EA003-2,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +33804,Af57,EA003,16-25%,EA003-2,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +33805,Af58,EA003,6-15%,EA003-1,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +33806,Af6,EA003,6-15%,EA003-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +33807,Af7,EA003,6-15%,EA003-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +33808,Af8,EA003,6-15%,EA003-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +33809,Af9,EA003,16-25%,EA003-2,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +33810,Ag1,EA003,6-15%,EA003-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +33811,Ag10,EA003,6-15%,EA003-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +33812,Ag11,EA003,0-5%,EA003-0,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +33813,Ag12,EA003,6-15%,EA003-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +33814,Ag13,EA003,0-5%,EA003-0,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +33815,Ag14,EA003,16-25%,EA003-2,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +33816,Ag15,EA003,6-15%,EA003-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +33817,Ag16,EA003,16-25%,EA003-2,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +33818,Ag17,EA003,16-25%,EA003-2,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +33819,Ag18,EA003,16-25%,EA003-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +33820,Ag19,EA003,26-35%,EA003-3,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +33821,Ag2,EA003,0-5%,EA003-0,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +33822,Ag20,EA003,16-25%,EA003-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +33823,Ag21,EA003,0-5%,EA003-0,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +33824,Ag22,EA003,16-25%,EA003-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +33825,Ag23,EA003,6-15%,EA003-1,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +33826,Ag24,EA003,0-5%,EA003-0,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +33827,Ag25,EA003,0-5%,EA003-0,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +33828,Ag26,EA003,6-15%,EA003-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +33829,Ag27,EA003,0-5%,EA003-0,But the economy is primarily mercantile,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +33830,Ag28,EA003,16-25%,EA003-2,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +33831,Ag29,EA003,0-5%,EA003-0,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +33832,Ag3,EA003,0-5%,EA003-0,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +33833,Ag30,EA003,0-5%,EA003-0,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +33834,Ag31,EA003,0-5%,EA003-0,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +33835,Ag32,EA003,0-5%,EA003-0,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +33836,Ag33,EA003,0-5%,EA003-0,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +33837,Ag34,EA003,0-5%,EA003-0,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +33838,Ag35,EA003,0-5%,EA003-0,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +33839,Ag36,EA003,0-5%,EA003-0,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +33840,Ag37,EA003,6-15%,EA003-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +33841,Ag38,EA003,0-5%,EA003-0,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +33842,Ag39,EA003,0-5%,EA003-0,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +33843,Ag4,EA003,0-5%,EA003-0,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +33844,Ag40,EA003,6-15%,EA003-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +33845,Ag41,EA003,0-5%,EA003-0,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +33846,Ag42,EA003,0-5%,EA003-0,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +33847,Ag43,EA003,0-5%,EA003-0,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +33848,Ag44,EA003,0-5%,EA003-0,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +33849,Ag45,EA003,6-15%,EA003-1,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +33850,Ag46,EA003,0-5%,EA003-0,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +33851,Ag47,EA003,0-5%,EA003-0,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +33852,Ag48,EA003,0-5%,EA003-0,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +33853,Ag49,EA003,6-15%,EA003-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +33854,Ag5,EA003,6-15%,EA003-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +33855,Ag50,EA003,0-5%,EA003-0,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +33856,Ag51,EA003,0-5%,EA003-0,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +33857,Ag52,EA003,0-5%,EA003-0,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +33858,Ag53,EA003,0-5%,EA003-0,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +33859,Ag54,EA003,0-5%,EA003-0,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +33860,Ag6,EA003,0-5%,EA003-0,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +33861,Ag7,EA003,56-65%,EA003-6,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +33862,Ag8,EA003,0-5%,EA003-0,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +33863,Ag9,EA003,6-15%,EA003-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +33864,Ah1,EA003,6-15%,EA003-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +33865,Ah10,EA003,0-5%,EA003-0,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +33866,Ah11,EA003,6-15%,EA003-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +33867,Ah12,EA003,6-15%,EA003-1,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +33868,Ah13,EA003,0-5%,EA003-0,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +33869,Ah14,EA003,6-15%,EA003-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +33870,Ah15,EA003,26-35%,EA003-3,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +33871,Ah16,EA003,0-5%,EA003-0,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +33872,Ah17,EA003,0-5%,EA003-0,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +33873,Ah18,EA003,0-5%,EA003-0,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +33874,Ah19,EA003,0-5%,EA003-0,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +33875,Ah2,EA003,6-15%,EA003-1,,meek1931a,,1920,EthnographicAtlas_1967_p74, +33876,Ah20,EA003,0-5%,EA003-0,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +33877,Ah21,EA003,0-5%,EA003-0,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +33878,Ah22,EA003,0-5%,EA003-0,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +33879,Ah23,EA003,6-15%,EA003-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +33880,Ah24,EA003,0-5%,EA003-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +33881,Ah25,EA003,0-5%,EA003-0,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +33882,Ah26,EA003,6-15%,EA003-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +33883,Ah27,EA003,0-5%,EA003-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +33884,Ah28,EA003,6-15%,EA003-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +33885,Ah29,EA003,0-5%,EA003-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +33886,Ah3,EA003,6-15%,EA003-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +33887,Ah30,EA003,0-5%,EA003-0,,meek1931b,,1920,EthnographicAtlas_1967_p74, +33888,Ah31,EA003,0-5%,EA003-0,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +33889,Ah32,EA003,6-15%,EA003-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +33890,Ah33,EA003,0-5%,EA003-0,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +33891,Ah34,EA003,0-5%,EA003-0,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +33892,Ah35,EA003,6-15%,EA003-1,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +33893,Ah36,EA003,0-5%,EA003-0,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +33894,Ah37,EA003,0-5%,EA003-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +33895,Ah38,EA003,0-5%,EA003-0,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +33896,Ah39,EA003,0-5%,EA003-0,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +33897,Ah4,EA003,0-5%,EA003-0,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +33898,Ah5,EA003,6-15%,EA003-1,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +33899,Ah6,EA003,0-5%,EA003-0,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +33900,Ah7,EA003,0-5%,EA003-0,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +33901,Ah8,EA003,6-15%,EA003-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +33902,Ah9,EA003,0-5%,EA003-0,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +33903,Ai1,EA003,0-5%,EA003-0,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +33904,Ai10,EA003,0-5%,EA003-0,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +33905,Ai11,EA003,6-15%,EA003-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +33906,Ai12,EA003,0-5%,EA003-0,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +33907,Ai13,EA003,26-35%,EA003-3,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +33908,Ai14,EA003,16-25%,EA003-2,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +33909,Ai15,EA003,6-15%,EA003-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +33910,Ai16,EA003,6-15%,EA003-1,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +33911,Ai17,EA003,0-5%,EA003-0,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +33912,Ai18,EA003,36-45%,EA003-4,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +33913,Ai19,EA003,16-25%,EA003-2,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +33914,Ai2,EA003,0-5%,EA003-0,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +33915,Ai20,EA003,16-25%,EA003-2,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +33916,Ai21,EA003,6-15%,EA003-1,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +33917,Ai22,EA003,0-5%,EA003-0,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +33918,Ai23,EA003,0-5%,EA003-0,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +33919,Ai24,EA003,0-5%,EA003-0,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +33920,Ai25,EA003,16-25%,EA003-2,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +33921,Ai26,EA003,16-25%,EA003-2,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +33922,Ai27,EA003,6-15%,EA003-1,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +33923,Ai28,EA003,0-5%,EA003-0,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +33924,Ai29,EA003,0-5%,EA003-0,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +33925,Ai3,EA003,6-15%,EA003-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +33926,Ai30,EA003,16-25%,EA003-2,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +33927,Ai31,EA003,0-5%,EA003-0,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +33928,Ai32,EA003,0-5%,EA003-0,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +33929,Ai33,EA003,16-25%,EA003-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +33930,Ai34,EA003,6-15%,EA003-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +33931,Ai35,EA003,6-15%,EA003-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +33932,Ai36,EA003,6-15%,EA003-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +33933,Ai37,EA003,0-5%,EA003-0,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +33934,Ai38,EA003,0-5%,EA003-0,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +33935,Ai39,EA003,0-5%,EA003-0,,nadel1947,,1940,EthnographicAtlas_1967_p74, +33936,Ai4,EA003,0-5%,EA003-0,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +33937,Ai40,EA003,0-5%,EA003-0,,nadel1947,,1940,EthnographicAtlas_1967_p74, +33938,Ai41,EA003,0-5%,EA003-0,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +33939,Ai42,EA003,0-5%,EA003-0,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +33940,Ai43,EA003,0-5%,EA003-0,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +33941,Ai44,EA003,16-25%,EA003-2,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +33942,Ai45,EA003,6-15%,EA003-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +33943,Ai46,EA003,16-25%,EA003-2,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +33944,Ai47,EA003,6-15%,EA003-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +33945,Ai5,EA003,0-5%,EA003-0,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +33946,Ai6,EA003,6-15%,EA003-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +33947,Ai7,EA003,6-15%,EA003-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +33948,Ai8,EA003,0-5%,EA003-0,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +33949,Ai9,EA003,26-35%,EA003-3,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +33950,Aj1,EA003,0-5%,EA003-0,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +33951,Aj10,EA003,0-5%,EA003-0,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +33952,Aj11,EA003,6-15%,EA003-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +33953,Aj12,EA003,6-15%,EA003-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +33954,Aj13,EA003,6-15%,EA003-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +33955,Aj14,EA003,0-5%,EA003-0,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +33956,Aj15,EA003,0-5%,EA003-0,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +33957,Aj16,EA003,16-25%,EA003-2,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +33958,Aj17,EA003,16-25%,EA003-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +33959,Aj18,EA003,0-5%,EA003-0,,jensen1959,,1950,EthnographicAtlas_1967_p78, +33960,Aj19,EA003,0-5%,EA003-0,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +33961,Aj2,EA003,0-5%,EA003-0,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +33962,Aj20,EA003,6-15%,EA003-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +33963,Aj21,EA003,0-5%,EA003-0,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +33964,Aj22,EA003,0-5%,EA003-0,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +33965,Aj23,EA003,0-5%,EA003-0,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +33966,Aj24,EA003,0-5%,EA003-0,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +33967,Aj25,EA003,0-5%,EA003-0,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +33968,Aj26,EA003,0-5%,EA003-0,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +33969,Aj27,EA003,0-5%,EA003-0,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +33970,Aj28,EA003,0-5%,EA003-0,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +33971,Aj29,EA003,0-5%,EA003-0,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +33972,Aj3,EA003,6-15%,EA003-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +33973,Aj30,EA003,0-5%,EA003-0,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +33974,Aj31,EA003,0-5%,EA003-0,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +33975,Aj4,EA003,0-5%,EA003-0,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +33976,Aj5,EA003,0-5%,EA003-0,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +33977,Aj6,EA003,6-15%,EA003-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +33978,Aj7,EA003,0-5%,EA003-0,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +33979,Aj8,EA003,0-5%,EA003-0,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +33980,Aj9,EA003,0-5%,EA003-0,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +33981,Ca1,EA003,0-5%,EA003-0,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +33982,Ca10,EA003,0-5%,EA003-0,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +33983,Ca11,EA003,0-5%,EA003-0,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +33984,Ca12,EA003,0-5%,EA003-0,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +33985,Ca13,EA003,0-5%,EA003-0,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +33986,Ca14,EA003,0-5%,EA003-0,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +33987,Ca15,EA003,0-5%,EA003-0,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +33988,Ca16,EA003,0-5%,EA003-0,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +33989,Ca17,EA003,0-5%,EA003-0,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +33990,Ca18,EA003,0-5%,EA003-0,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +33991,Ca19,EA003,0-5%,EA003-0,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +33992,Ca2,EA003,0-5%,EA003-0,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +33993,Ca20,EA003,6-15%,EA003-1,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +33994,Ca21,EA003,0-5%,EA003-0,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +33995,Ca22,EA003,0-5%,EA003-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +33996,Ca23,EA003,0-5%,EA003-0,,jensen1959,,1950,EthnographicAtlas_1967_p78, +33997,Ca24,EA003,0-5%,EA003-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +33998,Ca25,EA003,0-5%,EA003-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +33999,Ca26,EA003,0-5%,EA003-0,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +34000,Ca27,EA003,6-15%,EA003-1,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +34001,Ca28,EA003,0-5%,EA003-0,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +34002,Ca29,EA003,0-5%,EA003-0,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +34003,Ca3,EA003,0-5%,EA003-0,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +34004,Ca30,EA003,0-5%,EA003-0,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +34005,Ca31,EA003,0-5%,EA003-0,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +34006,Ca32,EA003,0-5%,EA003-0,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +34007,Ca33,EA003,0-5%,EA003-0,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +34008,Ca34,EA003,0-5%,EA003-0,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +34009,Ca35,EA003,0-5%,EA003-0,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +34010,Ca36,EA003,0-5%,EA003-0,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +34011,Ca37,EA003,0-5%,EA003-0,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +34012,Ca38,EA003,0-5%,EA003-0,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +34013,Ca39,EA003,0-5%,EA003-0,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +34014,Ca4,EA003,0-5%,EA003-0,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +34015,Ca40,EA003,0-5%,EA003-0,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +34016,Ca41,EA003,0-5%,EA003-0,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +34017,Ca42,EA003,0-5%,EA003-0,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +34018,Ca43,EA003,0-5%,EA003-0,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +34019,Ca5,EA003,0-5%,EA003-0,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +34020,Ca6,EA003,6-15%,EA003-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +34021,Ca7,EA003,6-15%,EA003-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +34022,Ca8,EA003,0-5%,EA003-0,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +34023,Ca9,EA003,0-5%,EA003-0,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +34024,Cb1,EA003,6-15%,EA003-1,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +34025,Cb10,EA003,0-5%,EA003-0,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +34026,Cb11,EA003,0-5%,EA003-0,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +34027,Cb12,EA003,0-5%,EA003-0,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +34028,Cb13,EA003,6-15%,EA003-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +34029,Cb14,EA003,0-5%,EA003-0,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +34030,Cb15,EA003,0-5%,EA003-0,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +34031,Cb16,EA003,0-5%,EA003-0,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +34032,Cb17,EA003,6-15%,EA003-1,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +34033,Cb18,EA003,6-15%,EA003-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +34034,Cb19,EA003,6-15%,EA003-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +34035,Cb2,EA003,6-15%,EA003-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +34036,Cb20,EA003,6-15%,EA003-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +34037,Cb21,EA003,0-5%,EA003-0,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +34038,Cb22,EA003,0-5%,EA003-0,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +34039,Cb23,EA003,6-15%,EA003-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +34040,Cb24,EA003,0-5%,EA003-0,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +34041,Cb25,EA003,0-5%,EA003-0,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +34042,Cb26,EA003,0-5%,EA003-0,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +34043,Cb27,EA003,6-15%,EA003-1,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +34044,Cb28,EA003,0-5%,EA003-0,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +34045,Cb29,EA003,6-15%,EA003-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +34046,Cb3,EA003,16-25%,EA003-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +34047,Cb4,EA003,0-5%,EA003-0,,reid1930,,1920,EthnographicAtlas_1967_p78, +34048,Cb5,EA003,36-45%,EA003-4,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +34049,Cb6,EA003,6-15%,EA003-1,,woodnd,,1920,EthnographicAtlas_1967_p78, +34050,Cb7,EA003,0-5%,EA003-0,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +34051,Cb8,EA003,0-5%,EA003-0,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +34052,Cb9,EA003,0-5%,EA003-0,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +34053,Cc1,EA003,0-5%,EA003-0,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +34054,Cc10,EA003,0-5%,EA003-0,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +34055,Cc11,EA003,0-5%,EA003-0,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +34056,Cc12,EA003,0-5%,EA003-0,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +34057,Cc13,EA003,0-5%,EA003-0,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +34058,Cc14,EA003,0-5%,EA003-0,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +34059,Cc15,EA003,16-25%,EA003-2,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +34060,Cc16,EA003,0-5%,EA003-0,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +34061,Cc17,EA003,6-15%,EA003-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +34062,Cc18,EA003,0-5%,EA003-0,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +34063,Cc19,EA003,0-5%,EA003-0,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +34064,Cc2,EA003,0-5%,EA003-0,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +34065,Cc20,EA003,0-5%,EA003-0,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +34066,Cc3,EA003,0-5%,EA003-0,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +34067,Cc4,EA003,0-5%,EA003-0,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +34068,Cc5,EA003,0-5%,EA003-0,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +34069,Cc6,EA003,0-5%,EA003-0,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +34070,Cc7,EA003,0-5%,EA003-0,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34071,Cc8,EA003,0-5%,EA003-0,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +34072,Cc9,EA003,0-5%,EA003-0,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +34073,Cd1,EA003,6-15%,EA003-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +34074,Cd10,EA003,6-15%,EA003-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +34075,Cd11,EA003,16-25%,EA003-2,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +34076,Cd12,EA003,0-5%,EA003-0,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +34077,Cd13,EA003,0-5%,EA003-0,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +34078,Cd14,EA003,0-5%,EA003-0,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +34079,Cd15,EA003,0-5%,EA003-0,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +34080,Cd16,EA003,6-15%,EA003-1,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +34081,Cd17,EA003,0-5%,EA003-0,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +34082,Cd18,EA003,0-5%,EA003-0,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +34083,Cd19,EA003,0-5%,EA003-0,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +34084,Cd2,EA003,6-15%,EA003-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +34085,Cd20,EA003,0-5%,EA003-0,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +34086,Cd21,EA003,6-15%,EA003-1,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +34087,Cd3,EA003,6-15%,EA003-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +34088,Cd4,EA003,0-5%,EA003-0,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +34089,Cd5,EA003,0-5%,EA003-0,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +34090,Cd6,EA003,6-15%,EA003-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +34091,Cd7,EA003,0-5%,EA003-0,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +34092,Cd8,EA003,0-5%,EA003-0,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +34093,Cd9,EA003,0-5%,EA003-0,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +34094,Ce1,EA003,0-5%,EA003-0,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +34095,Ce2,EA003,6-15%,EA003-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +34096,Ce3,EA003,16-25%,EA003-2,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +34097,Ce4,EA003,16-25%,EA003-2,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34098,Ce5,EA003,6-15%,EA003-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +34099,Ce6,EA003,0-5%,EA003-0,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +34100,Ce7,EA003,6-15%,EA003-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +34101,Ce8,EA003,6-15%,EA003-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +34102,Cf1,EA003,6-15%,EA003-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +34103,Cf2,EA003,0-5%,EA003-0,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +34104,Cf3,EA003,26-35%,EA003-3,,munch1945,,1930,EthnographicAtlas_1967_p82, +34105,Cf4,EA003,6-15%,EA003-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +34106,Cf5,EA003,6-15%,EA003-1,,miner1939,,1930,EthnographicAtlas_1967_p82, +34107,Cg1,EA003,6-15%,EA003-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +34108,Cg2,EA003,26-35%,EA003-3,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +34109,Cg3,EA003,0-5%,EA003-0,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +34110,Cg4,EA003,16-25%,EA003-2,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +34111,Cg5,EA003,6-15%,EA003-1,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +34112,Ch1,EA003,0-5%,EA003-0,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +34113,Ch10,EA003,0-5%,EA003-0,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +34114,Ch11,EA003,0-5%,EA003-0,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +34115,Ch2,EA003,6-15%,EA003-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +34116,Ch3,EA003,0-5%,EA003-0,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +34117,Ch4,EA003,16-25%,EA003-2,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +34118,Ch5,EA003,0-5%,EA003-0,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +34119,Ch6,EA003,6-15%,EA003-1,,ember1954,,1910,EthnographicAtlas_1967_p82, +34120,Ch7,EA003,6-15%,EA003-1,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +34121,Ch8,EA003,6-15%,EA003-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +34122,Ch9,EA003,6-15%,EA003-1,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +34123,Ci1,EA003,6-15%,EA003-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +34124,Ci10,EA003,0-5%,EA003-0,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +34125,Ci11,EA003,6-15%,EA003-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +34126,Ci12,EA003,0-5%,EA003-0,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +34127,Ci2,EA003,6-15%,EA003-1,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +34128,Ci3,EA003,0-5%,EA003-0,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +34129,Ci4,EA003,0-5%,EA003-0,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +34130,Ci5,EA003,0-5%,EA003-0,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +34131,Ci6,EA003,0-5%,EA003-0,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +34132,Ci7,EA003,0-5%,EA003-0,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +34133,Ci8,EA003,0-5%,EA003-0,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +34134,Ci9,EA003,6-15%,EA003-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +34135,Cj1,EA003,0-5%,EA003-0,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +34136,Cj10,EA003,26-35%,EA003-3,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +34137,Cj2,EA003,0-5%,EA003-0,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +34138,Cj3,EA003,6-15%,EA003-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +34139,Cj4,EA003,16-25%,EA003-2,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +34140,Cj5,EA003,0-5%,EA003-0,,dickson1949,,1930,EthnographicAtlas_1967_p86, +34141,Cj6,EA003,0-5%,EA003-0,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +34142,Cj7,EA003,6-15%,EA003-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +34143,Cj8,EA003,0-5%,EA003-0,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +34144,Cj9,EA003,0-5%,EA003-0,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +34145,Ea1,EA003,16-25%,EA003-2,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +34146,Ea10,EA003,0-5%,EA003-0,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +34147,Ea11,EA003,0-5%,EA003-0,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +34148,Ea12,EA003,0-5%,EA003-0,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +34149,Ea13,EA003,0-5%,EA003-0,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +34150,Ea2,EA003,0-5%,EA003-0,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +34151,Ea3,EA003,0-5%,EA003-0,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +34152,Ea4,EA003,0-5%,EA003-0,,barth1956b,,1950,EthnographicAtlas_1967_p86, +34153,Ea5,EA003,0-5%,EA003-0,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +34154,Ea6,EA003,0-5%,EA003-0,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +34155,Ea7,EA003,0-5%,EA003-0,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +34156,Ea8,EA003,0-5%,EA003-0,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +34157,Ea9,EA003,0-5%,EA003-0,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +34158,Eb1,EA003,0-5%,EA003-0,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +34159,Eb2,EA003,6-15%,EA003-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +34160,Eb3,EA003,0-5%,EA003-0,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +34161,Eb4,EA003,0-5%,EA003-0,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +34162,Eb5,EA003,0-5%,EA003-0,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +34163,Eb6,EA003,0-5%,EA003-0,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +34164,Eb7,EA003,0-5%,EA003-0,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +34165,Eb8,EA003,16-25%,EA003-2,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +34166,Ec1,EA003,46-55%,EA003-5,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +34167,Ec10,EA003,36-45%,EA003-4,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +34168,Ec11,EA003,36-45%,EA003-4,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +34169,Ec2,EA003,16-25%,EA003-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34170,Ec3,EA003,26-35%,EA003-3,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +34171,Ec4,EA003,26-35%,EA003-3,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +34172,Ec5,EA003,46-55%,EA003-5,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +34173,Ec6,EA003,36-45%,EA003-4,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +34174,Ec7,EA003,36-45%,EA003-4,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +34175,Ec8,EA003,56-65%,EA003-6,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +34176,Ec9,EA003,36-45%,EA003-4,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +34177,Ed1,EA003,16-25%,EA003-2,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +34178,Ed10,EA003,6-15%,EA003-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +34179,Ed13,EA003,16-25%,EA003-2,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +34180,Ed14,EA003,6-15%,EA003-1,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +34181,Ed15a,EA003,6-15%,EA003-1,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +34182,Ed15b,EA003,6-15%,EA003-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +34183,Ed16,EA003,0-5%,EA003-0,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +34184,Ed2,EA003,0-5%,EA003-0,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +34185,Ed3,EA003,6-15%,EA003-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +34186,Ed4,EA003,6-15%,EA003-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +34187,Ed5,EA003,0-5%,EA003-0,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34188,Ed6,EA003,6-15%,EA003-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +34189,Ed7,EA003,16-25%,EA003-2,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +34190,Ed8,EA003,6-15%,EA003-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +34191,Ed9,EA003,6-15%,EA003-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +34192,Ee1,EA003,16-25%,EA003-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +34193,Ee2,EA003,0-5%,EA003-0,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +34194,Ee3,EA003,0-5%,EA003-0,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +34195,Ee4,EA003,0-5%,EA003-0,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +34196,Ee5,EA003,0-5%,EA003-0,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +34197,Ee6,EA003,0-5%,EA003-0,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +34198,Ee7,EA003,6-15%,EA003-1,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +34199,Ee8,EA003,6-15%,EA003-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +34200,Ef1,EA003,6-15%,EA003-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +34201,Ef10,EA003,0-5%,EA003-0,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34202,Ef11,EA003,0-5%,EA003-0,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +34203,Ef2,EA003,16-25%,EA003-2,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +34204,Ef3,EA003,0-5%,EA003-0,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +34205,Ef4,EA003,6-15%,EA003-1,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +34206,Ef5,EA003,6-15%,EA003-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +34207,Ef6,EA003,6-15%,EA003-1,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +34208,Ef7,EA003,0-5%,EA003-0,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +34209,Ef8,EA003,6-15%,EA003-1,But the Pandit themselves do not engage in food production,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +34210,Ef9,EA003,6-15%,EA003-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34211,Eg1,EA003,0-5%,EA003-0,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34212,Eg10,EA003,0-5%,EA003-0,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +34213,Eg11,EA003,0-5%,EA003-0,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +34214,Eg12,EA003,0-5%,EA003-0,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +34215,Eg13,EA003,6-15%,EA003-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34216,Eg14,EA003,6-15%,EA003-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +34217,Eg2,EA003,16-25%,EA003-2,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +34218,Eg3,EA003,0-5%,EA003-0,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +34219,Eg4,EA003,0-5%,EA003-0,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +34220,Eg5,EA003,6-15%,EA003-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +34221,Eg6,EA003,6-15%,EA003-1,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +34222,Eg7,EA003,6-15%,EA003-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +34223,Eg8,EA003,0-5%,EA003-0,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +34224,Eg9,EA003,16-25%,EA003-2,,elwin1939,,1930,EthnographicAtlas_1967_p90, +34225,Eh1,EA003,36-45%,EA003-4,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +34226,Eh10,EA003,0-5%,EA003-0,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +34227,Eh2,EA003,6-15%,EA003-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +34228,Eh3,EA003,16-25%,EA003-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +34229,Eh4,EA003,26-35%,EA003-3,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34230,Eh5,EA003,16-25%,EA003-2,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +34231,Eh6,EA003,6-15%,EA003-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +34232,Eh7,EA003,6-15%,EA003-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +34233,Eh8,EA003,6-15%,EA003-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +34234,Eh9,EA003,16-25%,EA003-2,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +34235,Ei1,EA003,6-15%,EA003-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34236,Ei10,EA003,6-15%,EA003-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +34237,Ei11,EA003,6-15%,EA003-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +34238,Ei12,EA003,6-15%,EA003-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +34239,Ei13,EA003,6-15%,EA003-1,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +34240,Ei14,EA003,6-15%,EA003-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +34241,Ei15,EA003,6-15%,EA003-1,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +34242,Ei16,EA003,16-25%,EA003-2,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +34243,Ei17,EA003,6-15%,EA003-1,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +34244,Ei18,EA003,0-5%,EA003-0,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +34245,Ei19,EA003,6-15%,EA003-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +34246,Ei2,EA003,6-15%,EA003-1,,mills1922,,1920,EthnographicAtlas_1967_p90, +34247,Ei20,EA003,0-5%,EA003-0,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +34248,Ei3,EA003,0-5%,EA003-0,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +34249,Ei4,EA003,6-15%,EA003-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +34250,Ei5,EA003,0-5%,EA003-0,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +34251,Ei6,EA003,0-5%,EA003-0,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +34252,Ei7,EA003,16-25%,EA003-2,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +34253,Ei8,EA003,6-15%,EA003-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +34254,Ei9,EA003,6-15%,EA003-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +34255,Ej1,EA003,0-5%,EA003-0,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +34256,Ej10,EA003,0-5%,EA003-0,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +34257,Ej11,EA003,6-15%,EA003-1,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +34258,Ej12,EA003,6-15%,EA003-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +34259,Ej13,EA003,16-25%,EA003-2,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +34260,Ej14,EA003,16-25%,EA003-2,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34261,Ej15,EA003,16-25%,EA003-2,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +34262,Ej16,EA003,6-15%,EA003-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +34263,Ej2,EA003,16-25%,EA003-2,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +34264,Ej3,EA003,26-35%,EA003-3,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +34265,Ej4,EA003,16-25%,EA003-2,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +34266,Ej5,EA003,16-25%,EA003-2,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +34267,Ej6,EA003,76-85%,EA003-8,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +34268,Ej7,EA003,6-15%,EA003-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +34269,Ej8,EA003,16-25%,EA003-2,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +34270,Ej9,EA003,6-15%,EA003-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +34271,Ia1,EA003,6-15%,EA003-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +34272,Ia10,EA003,0-5%,EA003-0,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +34273,Ia11,EA003,6-15%,EA003-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +34274,Ia12,EA003,16-25%,EA003-2,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +34275,Ia13,EA003,76-85%,EA003-8,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +34276,Ia14,EA003,36-45%,EA003-4,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +34277,Ia15,EA003,6-15%,EA003-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +34278,Ia16,EA003,6-15%,EA003-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +34279,Ia17,EA003,6-15%,EA003-1,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +34280,Ia18,EA003,6-15%,EA003-1,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +34281,Ia2,EA003,0-5%,EA003-0,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +34282,Ia3,EA003,6-15%,EA003-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +34283,Ia4,EA003,0-5%,EA003-0,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +34284,Ia5,EA003,6-15%,EA003-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +34285,Ia6,EA003,6-15%,EA003-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34286,Ia7,EA003,6-15%,EA003-1,,fox1954,,1950,EthnographicAtlas_1967_p90, +34287,Ia8,EA003,0-5%,EA003-0,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +34288,Ia9,EA003,6-15%,EA003-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +34289,Ib1,EA003,16-25%,EA003-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34290,Ib2,EA003,0-5%,EA003-0,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34291,Ib3,EA003,0-5%,EA003-0,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +34292,Ib4,EA003,6-15%,EA003-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +34293,Ib5,EA003,16-25%,EA003-2,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +34294,Ib6,EA003,6-15%,EA003-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +34295,Ib7,EA003,16-25%,EA003-2,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +34296,Ib8,EA003,16-25%,EA003-2,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +34297,Ib9,EA003,6-15%,EA003-1,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +34298,Ic1,EA003,16-25%,EA003-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34299,Ic10,EA003,16-25%,EA003-2,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +34300,Ic11,EA003,26-35%,EA003-3,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34301,Ic12,EA003,6-15%,EA003-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +34302,Ic13,EA003,0-5%,EA003-0,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +34303,Ic2,EA003,0-5%,EA003-0,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +34304,Ic3,EA003,0-5%,EA003-0,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +34305,Ic4,EA003,6-15%,EA003-1,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +34306,Ic5,EA003,0-5%,EA003-0,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +34307,Ic6,EA003,16-25%,EA003-2,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +34308,Ic7,EA003,26-35%,EA003-3,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +34309,Ic8,EA003,16-25%,EA003-2,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +34310,Ic9,EA003,0-5%,EA003-0,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +34311,Id1,EA003,0-5%,EA003-0,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +34312,Id10,EA003,0-5%,EA003-0,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +34313,Id11,EA003,16-25%,EA003-2,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +34314,Id12,EA003,16-25%,EA003-2,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +34315,Id13,EA003,56-65%,EA003-6,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +34316,Id2,EA003,16-25%,EA003-2,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +34317,Id3,EA003,16-25%,EA003-2,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +34318,Id4,EA003,0-5%,EA003-0,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +34319,Id5,EA003,16-25%,EA003-2,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +34320,Id6,EA003,16-25%,EA003-2,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +34321,Id7,EA003,6-15%,EA003-1,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +34322,Id8,EA003,16-25%,EA003-2,,roth1890,,1830,EthnographicAtlas_1967_p94, +34323,Id9,EA003,36-45%,EA003-4,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +34324,Ie1,EA003,6-15%,EA003-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34325,Ie10,EA003,36-45%,EA003-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +34326,Ie11,EA003,0-5%,EA003-0,,bowers1964,,1950,EthnographicAtlas_1967_p94, +34327,Ie12,EA003,0-5%,EA003-0,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34328,Ie13,EA003,16-25%,EA003-2,,landtman1927,,1920,EthnographicAtlas_1967_p94, +34329,Ie14,EA003,26-35%,EA003-3,,haddon1908,,1900,EthnographicAtlas_1967_p94, +34330,Ie15,EA003,0-5%,EA003-0,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34331,Ie16,EA003,0-5%,EA003-0,,williams194041,,1940,EthnographicAtlas_1967_p94, +34332,Ie17,EA003,0-5%,EA003-0,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +34333,Ie18,EA003,6-15%,EA003-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +34334,Ie19,EA003,16-25%,EA003-2,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +34335,Ie2,EA003,0-5%,EA003-0,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +34336,Ie20,EA003,6-15%,EA003-1,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +34337,Ie21,EA003,26-35%,EA003-3,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +34338,Ie22,EA003,6-15%,EA003-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +34339,Ie23,EA003,6-15%,EA003-1,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +34340,Ie24,EA003,0-5%,EA003-0,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +34341,Ie25,EA003,6-15%,EA003-1,,williamson1912,,1920,EthnographicAtlas_1967_p94, +34342,Ie26,EA003,0-5%,EA003-0,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +34343,Ie27,EA003,6-15%,EA003-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +34344,Ie28,EA003,6-15%,EA003-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +34345,Ie29,EA003,26-35%,EA003-3,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34346,Ie3,EA003,0-5%,EA003-0,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34347,Ie30,EA003,36-45%,EA003-4,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +34348,Ie31,EA003,0-5%,EA003-0,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +34349,Ie32,EA003,26-35%,EA003-3,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +34350,Ie33,EA003,6-15%,EA003-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +34351,Ie34,EA003,16-25%,EA003-2,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +34352,Ie35,EA003,26-35%,EA003-3,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +34353,Ie36,EA003,6-15%,EA003-1,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +34354,Ie37,EA003,6-15%,EA003-1,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +34355,Ie38,EA003,0-5%,EA003-0,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +34356,Ie39,EA003,16-25%,EA003-2,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +34357,Ie4,EA003,16-25%,EA003-2,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34358,Ie5,EA003,6-15%,EA003-1,,williams1936,,1930,EthnographicAtlas_1967_p94, +34359,Ie6,EA003,26-35%,EA003-3,,held1947,,1930,EthnographicAtlas_1967_p94, +34360,Ie7,EA003,0-5%,EA003-0,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +34361,Ie8,EA003,16-25%,EA003-2,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +34362,Ie9,EA003,16-25%,EA003-2,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +34363,If1,EA003,36-45%,EA003-4,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34364,If10,EA003,36-45%,EA003-4,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +34365,If11,EA003,36-45%,EA003-4,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +34366,If12,EA003,36-45%,EA003-4,,mason1954,,1940,EthnographicAtlas_1967_p98, +34367,If13,EA003,36-45%,EA003-4,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +34368,If14,EA003,36-45%,EA003-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +34369,If15,EA003,46-55%,EA003-5,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +34370,If16,EA003,36-45%,EA003-4,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +34371,If17,EA003,46-55%,EA003-5,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +34372,If2,EA003,46-55%,EA003-5,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +34373,If3,EA003,36-45%,EA003-4,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +34374,If4,EA003,36-45%,EA003-4,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +34375,If5,EA003,26-35%,EA003-3,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +34376,If6,EA003,36-45%,EA003-4,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +34377,If7,EA003,46-55%,EA003-5,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +34378,If8,EA003,6-15%,EA003-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +34379,If9,EA003,36-45%,EA003-4,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +34380,Ig1,EA003,0-5%,EA003-0,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +34381,Ig10,EA003,0-5%,EA003-0,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +34382,Ig11,EA003,26-35%,EA003-3,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +34383,Ig12,EA003,6-15%,EA003-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +34384,Ig13,EA003,46-55%,EA003-5,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +34385,Ig14,EA003,26-35%,EA003-3,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +34386,Ig15,EA003,16-25%,EA003-2,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +34387,Ig16,EA003,26-35%,EA003-3,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +34388,Ig17,EA003,66-75%,EA003-7,Primarily traders,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +34389,Ig18,EA003,26-35%,EA003-3,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +34390,Ig19,EA003,26-35%,EA003-3,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +34391,Ig2,EA003,26-35%,EA003-3,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +34392,Ig20,EA003,26-35%,EA003-3,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +34393,Ig21,EA003,26-35%,EA003-3,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +34394,Ig3,EA003,16-25%,EA003-2,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +34395,Ig4,EA003,36-45%,EA003-4,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +34396,Ig5,EA003,26-35%,EA003-3,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +34397,Ig6,EA003,26-35%,EA003-3,,ivens1927,,1900,EthnographicAtlas_1967_p98, +34398,Ig7,EA003,16-25%,EA003-2,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +34399,Ig8,EA003,16-25%,EA003-2,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +34400,Ig9,EA003,86-100%,EA003-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +34401,Ih1,EA003,26-35%,EA003-3,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +34402,Ih10,EA003,16-25%,EA003-2,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34403,Ih11,EA003,26-35%,EA003-3,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +34404,Ih12,EA003,36-45%,EA003-4,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +34405,Ih13,EA003,6-15%,EA003-1,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +34406,Ih14,EA003,46-55%,EA003-5,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +34407,Ih2,EA003,26-35%,EA003-3,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34408,Ih3,EA003,6-15%,EA003-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +34409,Ih4,EA003,36-45%,EA003-4,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34410,Ih5,EA003,26-35%,EA003-3,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +34411,Ih6,EA003,16-25%,EA003-2,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +34412,Ih7,EA003,26-35%,EA003-3,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +34413,Ih8,EA003,26-35%,EA003-3,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +34414,Ih9,EA003,26-35%,EA003-3,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34415,Ii1,EA003,26-35%,EA003-3,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +34416,Ii10,EA003,36-45%,EA003-4,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +34417,Ii12,EA003,26-35%,EA003-3,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34418,Ii13,EA003,36-45%,EA003-4,,burrows1937,,1830,EthnographicAtlas_1967_p98, +34419,Ii14,EA003,26-35%,EA003-3,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +34420,Ii2,EA003,46-55%,EA003-5,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +34421,Ii3,EA003,36-45%,EA003-4,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +34422,Ii4,EA003,46-55%,EA003-5,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +34423,Ii5,EA003,46-55%,EA003-5,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +34424,Ii6,EA003,56-65%,EA003-6,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +34425,Ii7,EA003,36-45%,EA003-4,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +34426,Ii8,EA003,26-35%,EA003-3,,burrows1936,,1840,EthnographicAtlas_1967_p98, +34427,Ii9,EA003,46-55%,EA003-5,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +34428,Ij1,EA003,36-45%,EA003-4,,buck1934,,1820,EthnographicAtlas_1967_p98, +34429,Ij10,EA003,56-65%,EA003-6,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +34430,Ij2,EA003,16-25%,EA003-2,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +34431,Ij3,EA003,36-45%,EA003-4,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +34432,Ij4,EA003,46-55%,EA003-5,,buck1932a,,1850,EthnographicAtlas_1967_p102, +34433,Ij5,EA003,46-55%,EA003-5,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +34434,Ij6,EA003,36-45%,EA003-4,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +34435,Ij7,EA003,56-65%,EA003-6,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +34436,Ij8,EA003,36-45%,EA003-4,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +34437,Ij9,EA003,16-25%,EA003-2,,metraux1940,,1860,EthnographicAtlas_1967_p102, +34438,Na1,EA003,16-25%,EA003-2,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +34439,Na10,EA003,76-85%,EA003-8,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +34440,Na11,EA003,76-85%,EA003-8,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +34441,Na12,EA003,16-25%,EA003-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +34442,Na13,EA003,76-85%,EA003-8,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +34443,Na14,EA003,46-55%,EA003-5,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +34444,Na15,EA003,46-55%,EA003-5,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +34445,Na16,EA003,46-55%,EA003-5,,osgood1931,,1860,EthnographicAtlas_1967_p102, +34446,Na17,EA003,36-45%,EA003-4,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34447,Na19,EA003,36-45%,EA003-4,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +34448,Na2,EA003,66-75%,EA003-7,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +34449,Na20,EA003,46-55%,EA003-5,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +34450,Na21,EA003,36-45%,EA003-4,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +34451,Na22,EA003,46-55%,EA003-5,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +34452,Na23,EA003,56-65%,EA003-6,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +34453,Na24,EA003,76-85%,EA003-8,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +34454,Na25,EA003,66-75%,EA003-7,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +34455,Na26,EA003,46-55%,EA003-5,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +34456,Na27,EA003,36-45%,EA003-4,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +34457,Na28,EA003,36-45%,EA003-4,,jenness1937,,1880,EthnographicAtlas_1967_p102, +34458,Na29,EA003,16-25%,EA003-2,,goddard1916,,1850,EthnographicAtlas_1967_p102, +34459,Na3,EA003,56-65%,EA003-6,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +34460,Na30,EA003,36-45%,EA003-4,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +34461,Na31,EA003,26-35%,EA003-3,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +34462,Na32,EA003,16-25%,EA003-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +34463,Na33,EA003,36-45%,EA003-4,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +34464,Na34,EA003,36-45%,EA003-4,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +34465,Na35,EA003,26-35%,EA003-3,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +34466,Na36,EA003,36-45%,EA003-4,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +34467,Na37,EA003,26-35%,EA003-3,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +34468,Na38,EA003,36-45%,EA003-4,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +34469,Na39,EA003,36-45%,EA003-4,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +34470,Na4,EA003,46-55%,EA003-5,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +34471,Na40,EA003,16-25%,EA003-2,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +34472,Na41,EA003,36-45%,EA003-4,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +34473,Na42,EA003,6-15%,EA003-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +34474,Na43,EA003,56-65%,EA003-6,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +34475,Na44,EA003,36-45%,EA003-4,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +34476,Na45,EA003,26-35%,EA003-3,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +34477,Na5,EA003,16-25%,EA003-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +34478,Na6,EA003,56-65%,EA003-6,,lantis1946,,1930,EthnographicAtlas_1967_p102, +34479,Na7,EA003,56-65%,EA003-6,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +34480,Na8,EA003,46-55%,EA003-5,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +34481,Na9,EA003,56-65%,EA003-6,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34482,Nb1,EA003,56-65%,EA003-6,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +34483,Nb10,EA003,46-55%,EA003-5,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +34484,Nb11,EA003,56-65%,EA003-6,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +34485,Nb12,EA003,46-55%,EA003-5,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +34486,Nb13,EA003,46-55%,EA003-5,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +34487,Nb14,EA003,46-55%,EA003-5,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +34488,Nb15,EA003,46-55%,EA003-5,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +34489,Nb16,EA003,56-65%,EA003-6,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +34490,Nb17,EA003,46-55%,EA003-5,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +34491,Nb18,EA003,56-65%,EA003-6,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +34492,Nb19,EA003,56-65%,EA003-6,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +34493,Nb2,EA003,56-65%,EA003-6,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +34494,Nb20,EA003,46-55%,EA003-5,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +34495,Nb21,EA003,56-65%,EA003-6,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +34496,Nb22,EA003,56-65%,EA003-6,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +34497,Nb23,EA003,46-55%,EA003-5,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +34498,Nb24,EA003,56-65%,EA003-6,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +34499,Nb25,EA003,46-55%,EA003-5,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +34500,Nb26,EA003,46-55%,EA003-5,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +34501,Nb27,EA003,36-45%,EA003-4,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +34502,Nb28,EA003,66-75%,EA003-7,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +34503,Nb29,EA003,56-65%,EA003-6,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +34504,Nb3,EA003,46-55%,EA003-5,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +34505,Nb30,EA003,26-35%,EA003-3,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +34506,Nb31,EA003,46-55%,EA003-5,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +34507,Nb32,EA003,26-35%,EA003-3,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +34508,Nb33,EA003,26-35%,EA003-3,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +34509,Nb34,EA003,46-55%,EA003-5,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +34510,Nb35,EA003,46-55%,EA003-5,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +34511,Nb36,EA003,46-55%,EA003-5,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +34512,Nb37,EA003,36-45%,EA003-4,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +34513,Nb38,EA003,26-35%,EA003-3,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +34514,Nb39,EA003,26-35%,EA003-3,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +34515,Nb4,EA003,46-55%,EA003-5,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +34516,Nb5,EA003,46-55%,EA003-5,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +34517,Nb6,EA003,36-45%,EA003-4,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +34518,Nb7,EA003,56-65%,EA003-6,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +34519,Nb8,EA003,46-55%,EA003-5,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +34520,Nb9,EA003,56-65%,EA003-6,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +34521,Nc1,EA003,6-15%,EA003-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +34522,Nc10,EA003,26-35%,EA003-3,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +34523,Nc11,EA003,26-35%,EA003-3,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +34524,Nc12,EA003,16-25%,EA003-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +34525,Nc13,EA003,16-25%,EA003-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +34526,Nc14,EA003,36-45%,EA003-4,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +34527,Nc15,EA003,36-45%,EA003-4,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +34528,Nc16,EA003,26-35%,EA003-3,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +34529,Nc17,EA003,16-25%,EA003-2,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +34530,Nc18,EA003,26-35%,EA003-3,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +34531,Nc19,EA003,26-35%,EA003-3,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +34532,Nc2,EA003,16-25%,EA003-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +34533,Nc20,EA003,16-25%,EA003-2,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +34534,Nc21,EA003,26-35%,EA003-3,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +34535,Nc22,EA003,16-25%,EA003-2,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +34536,Nc23,EA003,16-25%,EA003-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +34537,Nc24,EA003,26-35%,EA003-3,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +34538,Nc25,EA003,26-35%,EA003-3,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +34539,Nc26,EA003,16-25%,EA003-2,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +34540,Nc27,EA003,16-25%,EA003-2,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +34541,Nc28,EA003,46-55%,EA003-5,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +34542,Nc29,EA003,36-45%,EA003-4,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +34543,Nc3,EA003,26-35%,EA003-3,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +34544,Nc30,EA003,0-5%,EA003-0,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +34545,Nc31,EA003,0-5%,EA003-0,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +34546,Nc32,EA003,0-5%,EA003-0,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +34547,Nc33,EA003,16-25%,EA003-2,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +34548,Nc34,EA003,26-35%,EA003-3,,meigs1939,,1880,EthnographicAtlas_1967_p106, +34549,Nc4,EA003,26-35%,EA003-3,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +34550,Nc5,EA003,6-15%,EA003-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +34551,Nc6,EA003,6-15%,EA003-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +34552,Nc7,EA003,26-35%,EA003-3,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +34553,Nc8,EA003,46-55%,EA003-5,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +34554,Nc9,EA003,16-25%,EA003-2,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +34555,Nd1,EA003,46-55%,EA003-5,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +34556,Nd10,EA003,46-55%,EA003-5,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +34557,Nd11,EA003,36-45%,EA003-4,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +34558,Nd12,EA003,26-35%,EA003-3,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +34559,Nd13,EA003,26-35%,EA003-3,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +34560,Nd14,EA003,26-35%,EA003-3,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +34561,Nd15,EA003,36-45%,EA003-4,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +34562,Nd16,EA003,36-45%,EA003-4,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +34563,Nd17,EA003,36-45%,EA003-4,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +34564,Nd18,EA003,46-55%,EA003-5,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +34565,Nd19,EA003,36-45%,EA003-4,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +34566,Nd2,EA003,6-15%,EA003-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +34567,Nd20,EA003,36-45%,EA003-4,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +34568,Nd21,EA003,26-35%,EA003-3,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +34569,Nd22,EA003,16-25%,EA003-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +34570,Nd23,EA003,16-25%,EA003-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +34571,Nd24,EA003,16-25%,EA003-2,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +34572,Nd25,EA003,16-25%,EA003-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +34573,Nd26,EA003,6-15%,EA003-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +34574,Nd27,EA003,26-35%,EA003-3,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +34575,Nd28,EA003,6-15%,EA003-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +34576,Nd29,EA003,6-15%,EA003-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +34577,Nd3,EA003,0-5%,EA003-0,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +34578,Nd30,EA003,6-15%,EA003-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +34579,Nd31,EA003,0-5%,EA003-0,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +34580,Nd32,EA003,0-5%,EA003-0,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +34581,Nd33,EA003,0-5%,EA003-0,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +34582,Nd34,EA003,0-5%,EA003-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +34583,Nd35,EA003,0-5%,EA003-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +34584,Nd36,EA003,0-5%,EA003-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +34585,Nd37,EA003,0-5%,EA003-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +34586,Nd38,EA003,0-5%,EA003-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +34587,Nd39,EA003,0-5%,EA003-0,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +34588,Nd4,EA003,46-55%,EA003-5,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +34589,Nd40,EA003,6-15%,EA003-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +34590,Nd41,EA003,6-15%,EA003-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +34591,Nd42,EA003,26-35%,EA003-3,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +34592,Nd43,EA003,6-15%,EA003-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +34593,Nd44,EA003,46-55%,EA003-5,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +34594,Nd45,EA003,16-25%,EA003-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +34595,Nd46,EA003,36-45%,EA003-4,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +34596,Nd47,EA003,26-35%,EA003-3,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +34597,Nd48,EA003,6-15%,EA003-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +34598,Nd49,EA003,16-25%,EA003-2,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +34599,Nd5,EA003,16-25%,EA003-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +34600,Nd50,EA003,6-15%,EA003-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +34601,Nd51,EA003,0-5%,EA003-0,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +34602,Nd52,EA003,0-5%,EA003-0,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +34603,Nd53,EA003,0-5%,EA003-0,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +34604,Nd54,EA003,0-5%,EA003-0,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34605,Nd55,EA003,0-5%,EA003-0,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +34606,Nd56,EA003,6-15%,EA003-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +34607,Nd57,EA003,16-25%,EA003-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +34608,Nd58,EA003,26-35%,EA003-3,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +34609,Nd59,EA003,16-25%,EA003-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +34610,Nd6,EA003,26-35%,EA003-3,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +34611,Nd60,EA003,6-15%,EA003-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +34612,Nd61,EA003,16-25%,EA003-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +34613,Nd62,EA003,6-15%,EA003-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +34614,Nd63,EA003,16-25%,EA003-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +34615,Nd64,EA003,16-25%,EA003-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +34616,Nd65,EA003,0-5%,EA003-0,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +34617,Nd66,EA003,0-5%,EA003-0,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +34618,Nd67,EA003,0-5%,EA003-0,,gifford1936,,1870,EthnographicAtlas_1967_p110, +34619,Nd7,EA003,36-45%,EA003-4,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +34620,Nd8,EA003,46-55%,EA003-5,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +34621,Nd9,EA003,46-55%,EA003-5,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +34622,Ne1,EA003,0-5%,EA003-0,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +34623,Ne10,EA003,16-25%,EA003-2,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +34624,Ne11,EA003,6-15%,EA003-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +34625,Ne12,EA003,0-5%,EA003-0,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +34626,Ne13,EA003,0-5%,EA003-0,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +34627,Ne14,EA003,16-25%,EA003-2,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +34628,Ne15,EA003,6-15%,EA003-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +34629,Ne16,EA003,36-45%,EA003-4,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +34630,Ne17,EA003,0-5%,EA003-0,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +34631,Ne18,EA003,0-5%,EA003-0,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +34632,Ne19,EA003,16-25%,EA003-2,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +34633,Ne2,EA003,0-5%,EA003-0,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +34634,Ne20,EA003,6-15%,EA003-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +34635,Ne21,EA003,6-15%,EA003-1,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968, +34636,Ne3,EA003,0-5%,EA003-0,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +34637,Ne4,EA003,0-5%,EA003-0,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +34638,Ne5,EA003,0-5%,EA003-0,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +34639,Ne6,EA003,16-25%,EA003-2,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +34640,Ne7,EA003,0-5%,EA003-0,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +34641,Ne8,EA003,0-5%,EA003-0,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +34642,Ne9,EA003,0-5%,EA003-0,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +34643,Nf10,EA003,0-5%,EA003-0,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +34644,Nf11,EA003,6-15%,EA003-1,,whitman1937,,1870,EthnographicAtlas_1967_p114, +34645,Nf12,EA003,6-15%,EA003-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +34646,Nf13,EA003,16-25%,EA003-2,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34647,Nf14,EA003,16-25%,EA003-2,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +34648,Nf15,EA003,0-5%,EA003-0,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +34649,Nf2,EA003,16-25%,EA003-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +34650,Nf3,EA003,6-15%,EA003-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +34651,Nf4,EA003,6-15%,EA003-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +34652,Nf5,EA003,0-5%,EA003-0,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +34653,Nf6,EA003,0-5%,EA003-0,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +34654,Nf7,EA003,6-15%,EA003-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34655,Nf8,EA003,6-15%,EA003-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +34656,Nf9,EA003,16-25%,EA003-2,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +34657,Ng1,EA003,26-35%,EA003-3,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +34658,Ng10,EA003,16-25%,EA003-2,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +34659,Ng11,EA003,16-25%,EA003-2,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +34660,Ng12,EA003,16-25%,EA003-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +34661,Ng13,EA003,26-35%,EA003-3,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +34662,Ng14,EA003,6-15%,EA003-1,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +34663,Ng15,EA003,16-25%,EA003-2,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +34664,Ng2,EA003,?,EA003-NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +34665,Ng3,EA003,16-25%,EA003-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +34666,Ng4,EA003,16-25%,EA003-2,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +34667,Ng5,EA003,16-25%,EA003-2,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +34668,Ng6,EA003,16-25%,EA003-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +34669,Ng7,EA003,16-25%,EA003-2,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +34670,Ng8,EA003,16-25%,EA003-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +34671,Ng9,EA003,6-15%,EA003-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +34672,Nh1,EA003,0-5%,EA003-0,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +34673,Nh10,EA003,0-5%,EA003-0,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +34674,Nh11,EA003,0-5%,EA003-0,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +34675,Nh12,EA003,0-5%,EA003-0,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +34676,Nh13,EA003,0-5%,EA003-0,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +34677,Nh14,EA003,0-5%,EA003-0,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +34678,Nh15,EA003,6-15%,EA003-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +34679,Nh16,EA003,6-15%,EA003-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34680,Nh17,EA003,0-5%,EA003-0,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +34681,Nh18,EA003,0-5%,EA003-0,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34682,Nh19,EA003,16-25%,EA003-2,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +34683,Nh2,EA003,0-5%,EA003-0,,dozier1954,,1950,EthnographicAtlas_1967_p114, +34684,Nh20,EA003,16-25%,EA003-2,,gifford1931,,1860,EthnographicAtlas_1967_p114, +34685,Nh21,EA003,6-15%,EA003-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34686,Nh22,EA003,16-25%,EA003-2,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +34687,Nh23,EA003,0-5%,EA003-0,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +34688,Nh24,EA003,0-5%,EA003-0,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +34689,Nh25,EA003,0-5%,EA003-0,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +34690,Nh26,EA003,0-5%,EA003-0,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +34691,Nh27,EA003,0-5%,EA003-0,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +34692,Nh3,EA003,0-5%,EA003-0,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +34693,Nh4,EA003,0-5%,EA003-0,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +34694,Nh5,EA003,16-25%,EA003-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +34695,Nh6,EA003,0-5%,EA003-0,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +34696,Nh7,EA003,6-15%,EA003-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +34697,Nh8,EA003,0-5%,EA003-0,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +34698,Nh9,EA003,0-5%,EA003-0,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +34699,Ni1,EA003,0-5%,EA003-0,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +34700,Ni2,EA003,0-5%,EA003-0,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +34701,Ni3,EA003,6-15%,EA003-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +34702,Ni4,EA003,56-65%,EA003-6,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +34703,Ni5,EA003,6-15%,EA003-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +34704,Ni6,EA003,6-15%,EA003-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +34705,Ni7,EA003,6-15%,EA003-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +34706,Ni8,EA003,6-15%,EA003-1,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +34707,Ni9,EA003,0-5%,EA003-0,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968, +34708,Nj1,EA003,0-5%,EA003-0,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34709,Nj10,EA003,6-15%,EA003-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34710,Nj11,EA003,6-15%,EA003-1,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +34711,Nj12,EA003,6-15%,EA003-1,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968, +34712,Nj13,EA003,6-15%,EA003-1,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +34713,Nj14,EA003,0-5%,EA003-0,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +34714,Nj2,EA003,6-15%,EA003-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +34715,Nj3,EA003,6-15%,EA003-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +34716,Nj4,EA003,6-15%,EA003-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +34717,Nj5,EA003,0-5%,EA003-0,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +34718,Nj6,EA003,46-55%,EA003-5,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +34719,Nj7,EA003,0-5%,EA003-0,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34720,Nj8,EA003,16-25%,EA003-2,,foster1948,,1500,EthnographicAtlas_1967_p118, +34721,Nj9,EA003,0-5%,EA003-0,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +34722,Sa1,EA003,26-35%,EA003-3,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +34723,Sa10,EA003,16-25%,EA003-2,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +34724,Sa11,EA003,6-15%,EA003-1,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +34725,Sa12,EA003,6-15%,EA003-1,,stone1948,,1948,EthnographicAtlas_1967_p118, +34726,Sa13,EA003,0-5%,EA003-0,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +34727,Sa14,EA003,36-45%,EA003-4,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +34728,Sa15,EA003,0-5%,EA003-0,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +34729,Sa16,EA003,16-25%,EA003-2,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +34730,Sa17,EA003,0-5%,EA003-0,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +34731,Sa2,EA003,6-15%,EA003-1,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34732,Sa3,EA003,6-15%,EA003-1,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +34733,Sa4,EA003,6-15%,EA003-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +34734,Sa5,EA003,16-25%,EA003-2,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +34735,Sa6,EA003,16-25%,EA003-2,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +34736,Sa7,EA003,26-35%,EA003-3,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +34737,Sa8,EA003,0-5%,EA003-0,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +34738,Sa9,EA003,16-25%,EA003-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +34739,Sb1,EA003,46-55%,EA003-5,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +34740,Sb2,EA003,0-5%,EA003-0,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +34741,Sb3,EA003,16-25%,EA003-2,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +34742,Sb4,EA003,6-15%,EA003-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +34743,Sb5,EA003,56-65%,EA003-6,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +34744,Sb6,EA003,6-15%,EA003-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +34745,Sb7,EA003,6-15%,EA003-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +34746,Sb8,EA003,16-25%,EA003-2,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +34747,Sb9,EA003,0-5%,EA003-0,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +34748,Sc1,EA003,16-25%,EA003-2,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +34749,Sc10,EA003,26-35%,EA003-3,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +34750,Sc11,EA003,16-25%,EA003-2,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +34751,Sc12,EA003,16-25%,EA003-2,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +34752,Sc13,EA003,16-25%,EA003-2,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +34753,Sc14,EA003,16-25%,EA003-2,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +34754,Sc15,EA003,26-35%,EA003-3,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +34755,Sc16,EA003,16-25%,EA003-2,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +34756,Sc17,EA003,16-25%,EA003-2,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +34757,Sc18,EA003,6-15%,EA003-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +34758,Sc2,EA003,6-15%,EA003-1,,leedsnd,,1950,EthnographicAtlas_1967_p118, +34759,Sc3,EA003,16-25%,EA003-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +34760,Sc4,EA003,16-25%,EA003-2,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +34761,Sc5,EA003,16-25%,EA003-2,,farabee1918,,1900,EthnographicAtlas_1967_p118, +34762,Sc6,EA003,16-25%,EA003-2,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34763,Sc7,EA003,16-25%,EA003-2,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +34764,Sc8,EA003,26-35%,EA003-3,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +34765,Sc9,EA003,26-35%,EA003-3,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +34766,Sd1,EA003,16-25%,EA003-2,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34767,Sd2,EA003,26-35%,EA003-3,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +34768,Sd3,EA003,26-35%,EA003-3,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +34769,Sd4,EA003,26-35%,EA003-3,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +34770,Sd5,EA003,6-15%,EA003-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +34771,Sd6,EA003,26-35%,EA003-3,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +34772,Sd7,EA003,16-25%,EA003-2,,fock1963,,1950,EthnographicAtlas_1967_p118, +34773,Sd8,EA003,6-15%,EA003-1,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +34774,Sd9,EA003,0-5%,EA003-0,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34775,Se1,EA003,6-15%,EA003-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +34776,Se10,EA003,46-55%,EA003-5,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +34777,Se11,EA003,16-25%,EA003-2,,prost1965,,1960,EthnographicAtlas_1967_p122, +34778,Se12,EA003,26-35%,EA003-3,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +34779,Se2,EA003,36-45%,EA003-4,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +34780,Se3,EA003,6-15%,EA003-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +34781,Se4,EA003,6-15%,EA003-1,,fejos1943,,1940,EthnographicAtlas_1967_p118, +34782,Se5,EA003,26-35%,EA003-3,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +34783,Se6,EA003,16-25%,EA003-2,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +34784,Se7,EA003,6-15%,EA003-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34785,Se8,EA003,6-15%,EA003-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +34786,Se9,EA003,36-45%,EA003-4,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +34787,Sf1,EA003,0-5%,EA003-0,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +34788,Sf2,EA003,6-15%,EA003-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +34789,Sf3,EA003,16-25%,EA003-2,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +34790,Sf4,EA003,16-25%,EA003-2,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +34791,Sf5,EA003,0-5%,EA003-0,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +34792,Sf6,EA003,6-15%,EA003-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +34793,Sf7,EA003,16-25%,EA003-2,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +34794,Sf8,EA003,36-45%,EA003-4,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +34795,Sf9,EA003,66-75%,EA003-7,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +34796,Sg1,EA003,66-75%,EA003-7,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +34797,Sg2,EA003,6-15%,EA003-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34798,Sg3,EA003,26-35%,EA003-3,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +34799,Sg4,EA003,6-15%,EA003-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +34800,Sg5,EA003,66-75%,EA003-7,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34801,Sh1,EA003,36-45%,EA003-4,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +34802,Sh2,EA003,26-35%,EA003-3,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +34803,Sh3,EA003,6-15%,EA003-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +34804,Sh4,EA003,26-35%,EA003-3,,oberg1949,,1940,EthnographicAtlas_1967_p122, +34805,Sh5,EA003,16-25%,EA003-2,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +34806,Sh6,EA003,0-5%,EA003-0,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +34807,Sh7,EA003,16-25%,EA003-2,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +34808,Sh8,EA003,6-15%,EA003-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +34809,Sh9,EA003,16-25%,EA003-2,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +34810,Si1,EA003,6-15%,EA003-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34811,Si10,EA003,16-25%,EA003-2,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +34812,Si2,EA003,26-35%,EA003-3,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +34813,Si3,EA003,26-35%,EA003-3,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34814,Si4,EA003,6-15%,EA003-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +34815,Si5,EA003,26-35%,EA003-3,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +34816,Si6,EA003,26-35%,EA003-3,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +34817,Si7,EA003,6-15%,EA003-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +34818,Si8,EA003,6-15%,EA003-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +34819,Si9,EA003,16-25%,EA003-2,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +34820,Sj1,EA003,36-45%,EA003-4,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +34821,Sj10,EA003,6-15%,EA003-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34822,Sj11,EA003,6-15%,EA003-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +34823,Sj2,EA003,6-15%,EA003-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +34824,Sj3,EA003,0-5%,EA003-0,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +34825,Sj4,EA003,6-15%,EA003-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +34826,Sj5,EA003,6-15%,EA003-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +34827,Sj6,EA003,6-15%,EA003-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +34828,Sj7,EA003,6-15%,EA003-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +34829,Sj8,EA003,16-25%,EA003-2,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +34830,Sj9,EA003,6-15%,EA003-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +34831,ch12,EA003,0-5%,EA003-0,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +34832,ch13,EA003,0-5%,EA003-0,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +34833,ch14,EA003,0-5%,EA003-0,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +34834,ch15,EA003,0-5%,EA003-0,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +34835,ch16,EA003,6-15%,EA003-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +34836,ch17,EA003,0-5%,EA003-0,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +34837,ch18,EA003,16-25%,EA003-2,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +34838,ch19,EA003,26-35%,EA003-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +34839,ch20,EA003,0-5%,EA003-0,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +34840,ch21,EA003,6-15%,EA003-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +34841,ch22,EA003,0-5%,EA003-0,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +34842,ch23,EA003,0-5%,EA003-0,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +34843,ch24,EA003,76-85%,EA003-8,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +34844,ch25,EA003,0-5%,EA003-0,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +34845,ch26,EA003,0-5%,EA003-0,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +34846,ch27,EA003,6-15%,EA003-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +34847,ch28,EA003,16-25%,EA003-2,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +34848,ec12,EA003,16-25%,EA003-2,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +34849,ec13,EA003,46-55%,EA003-5,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +34850,ec14,EA003,66-75%,EA003-7,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +34851,ec15,EA003,46-55%,EA003-5,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +34852,ec16,EA003,16-25%,EA003-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +34853,ec17,EA003,46-55%,EA003-5,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +34854,ec18,EA003,46-55%,EA003-5,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +34855,ec19,EA003,46-55%,EA003-5,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +34856,ec20,EA003,46-55%,EA003-5,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +34857,ec21,EA003,36-45%,EA003-4,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +34858,Aa1,EA030,Nomadic,EA030-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +34859,Aa2,EA030,Nomadic,EA030-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +34860,Aa3,EA030,Nomadic,EA030-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +34861,Aa4,EA030,?,EA030-NA,,,,,, +34862,Aa5,EA030,Nomadic,EA030-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +34863,Aa6,EA030,Dispersed homesteads,EA030-5,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p63, +34864,Aa7,EA030,Nomadic,EA030-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +34865,Aa8,EA030,Nomadic,EA030-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +34866,Aa9,EA030,Nomadic,EA030-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +34867,Ab1,EA030,Nomadic,EA030-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p63, +34868,Ab10,EA030,Dispersed homesteads,EA030-5,,hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +34869,Ab11,EA030,Dispersed homesteads,EA030-5,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +34870,Ab12,EA030,Dispersed homesteads,EA030-5,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p63, +34871,Ab13,EA030,Complex permanent,EA030-8,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +34872,Ab14,EA030,Hamlets,EA030-6,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +34873,Ab15,EA030,Villages/towns,EA030-7,"Not clearly specified, perhaps 'dispersed homesteads' (code ""5"")",duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +34874,Ab16,EA030,Hamlets,EA030-6,,earthy1933,,1930,EthnographicAtlas_1967_p63, +34875,Ab17,EA030,?,EA030-NA,,,,,, +34876,Ab18,EA030,Hamlets,EA030-6,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +34877,Ab19,EA030,Dispersed homesteads,EA030-5,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +34878,Ab2,EA030,Hamlets,EA030-6,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +34879,Ab20,EA030,?,EA030-NA,,,,,, +34880,Ab21a,EA030,Dispersed homesteads,EA030-5,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +34881,Ab21b,EA030,?,EA030-NA,,,,,, +34882,Ab22,EA030,?,EA030-NA,,,,,, +34883,Ab3,EA030,Semisedentary,EA030-3,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +34884,Ab4,EA030,Villages/towns,EA030-7,,junod1927,,1920,EthnographicAtlas_1967_p63, +34885,Ab5,EA030,Villages/towns,EA030-7,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +34886,Ab6,EA030,Villages/towns,EA030-7,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +34887,Ab7,EA030,Hamlets,EA030-6,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p63, +34888,Ab8,EA030,Hamlets,EA030-6,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +34889,Ab9,EA030,Complex permanent,EA030-8,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +34890,Ac1,EA030,Semisedentary,EA030-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +34891,Ac10,EA030,Villages/towns,EA030-7,"But 'dispersed homesteads' (code ""5"") today",bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +34892,Ac11,EA030,Villages/towns,EA030-7,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +34893,Ac12,EA030,Villages/towns,EA030-7,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p63, +34894,Ac13,EA030,Hamlets,EA030-6,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p63, +34895,Ac14,EA030,Villages/towns,EA030-7,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p63, +34896,Ac15,EA030,?,EA030-NA,,,,,, +34897,Ac16,EA030,Villages/towns,EA030-7,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +34898,Ac17,EA030,Villages/towns,EA030-7,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +34899,Ac18,EA030,Villages/towns,EA030-7,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +34900,Ac19,EA030,Villages/towns,EA030-7,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +34901,Ac2,EA030,Villages/towns,EA030-7,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p63, +34902,Ac20,EA030,Dispersed homesteads,EA030-5,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +34903,Ac21,EA030,Dispersed homesteads,EA030-5,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p63, +34904,Ac22,EA030,Impermanent,EA030-4,,mertens1935,,1930,EthnographicAtlas_1967_p63, +34905,Ac23,EA030,Villages/towns,EA030-7,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +34906,Ac24,EA030,Villages/towns,EA030-7,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +34907,Ac25,EA030,Villages/towns,EA030-7,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p63, +34908,Ac26,EA030,Hamlets,EA030-6,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +34909,Ac27,EA030,Impermanent,EA030-4,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +34910,Ac28,EA030,Villages/towns,EA030-7,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p63, +34911,Ac29,EA030,?,EA030-NA,,,,,, +34912,Ac3,EA030,Impermanent,EA030-4,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +34913,Ac30,EA030,Hamlets,EA030-6,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +34914,Ac31,EA030,Villages/towns,EA030-7,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +34915,Ac32,EA030,Villages/towns,EA030-7,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +34916,Ac33,EA030,Villages/towns,EA030-7,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +34917,Ac34,EA030,Villages/towns,EA030-7,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +34918,Ac35,EA030,?,EA030-NA,,,,,, +34919,Ac36,EA030,Villages/towns,EA030-7,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +34920,Ac37,EA030,Villages/towns,EA030-7,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +34921,Ac38,EA030,Dispersed homesteads,EA030-5,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p63, +34922,Ac39,EA030,?,EA030-NA,,,,,, +34923,Ac4,EA030,Impermanent,EA030-4,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +34924,Ac40,EA030,Villages/towns,EA030-7,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +34925,Ac41,EA030,Hamlets,EA030-6,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +34926,Ac42,EA030,?,EA030-NA,,,,,, +34927,Ac43,EA030,Villages/towns,EA030-7,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +34928,Ac5,EA030,Villages/towns,EA030-7,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +34929,Ac6,EA030,Impermanent,EA030-4,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p63, +34930,Ac7,EA030,Hamlets,EA030-6,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +34931,Ac8,EA030,Villages/towns,EA030-7,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +34932,Ac9,EA030,Villages/towns,EA030-7,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +34933,Ad1,EA030,Villages/towns,EA030-7,,grottanelli1955,,1950,EthnographicAtlas_1967_p63, +34934,Ad10,EA030,Villages/towns,EA030-7,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +34935,Ad11,EA030,Villages/towns,EA030-7,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +34936,Ad12,EA030,Dispersed homesteads,EA030-5,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +34937,Ad13,EA030,Dispersed homesteads,EA030-5,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +34938,Ad14,EA030,Hamlets,EA030-6,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +34939,Ad15,EA030,Villages/towns,EA030-7,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +34940,Ad16,EA030,Villages/towns,EA030-7,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +34941,Ad17,EA030,Villages/towns,EA030-7,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +34942,Ad18,EA030,Villages/towns,EA030-7,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +34943,Ad19,EA030,Villages/towns,EA030-7,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +34944,Ad2,EA030,Dispersed homesteads,EA030-5,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +34945,Ad20,EA030,Hamlets,EA030-6,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +34946,Ad21,EA030,Villages/towns,EA030-7,,maurice193538,,1930,EthnographicAtlas_1967_p67, +34947,Ad22,EA030,Dispersed homesteads,EA030-5,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +34948,Ad23,EA030,Villages/towns,EA030-7,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +34949,Ad24,EA030,Dispersed homesteads,EA030-5,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +34950,Ad25,EA030,Dispersed homesteads,EA030-5,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +34951,Ad26,EA030,Dispersed homesteads,EA030-5,,sick1916,,1910,Ethnology_Vol7_No2_Apr_1968, +34952,Ad27,EA030,Hamlets,EA030-6,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +34953,Ad28,EA030,Hamlets,EA030-6,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +34954,Ad29,EA030,Villages/towns,EA030-7,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p67, +34955,Ad3,EA030,Dispersed homesteads,EA030-5,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +34956,Ad30,EA030,Villages/towns,EA030-7,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p67, +34957,Ad31,EA030,?,EA030-NA,,,,,, +34958,Ad32,EA030,Villages/towns,EA030-7,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p67, +34959,Ad33,EA030,Villages/towns,EA030-7,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p67, +34960,Ad34,EA030,Hamlets,EA030-6,"But 'villages/towns' (code ""7"") today",dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +34961,Ad35,EA030,Dispersed homesteads,EA030-5,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p67, +34962,Ad36,EA030,Dispersed homesteads,EA030-5,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +34963,Ad37,EA030,Dispersed homesteads,EA030-5,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +34964,Ad38,EA030,Hamlets,EA030-6,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +34965,Ad39,EA030,Villages/towns,EA030-7,,gray1963,,1950,EthnographicAtlas_1967_p67, +34966,Ad4,EA030,Villages/towns,EA030-7,"Formerly 'dispersed homesteads' (code ""5"")",cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +34967,Ad40,EA030,Dispersed homesteads,EA030-5,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +34968,Ad41,EA030,Dispersed homesteads,EA030-5,"But formerly 'villages/towns' (code ""7"")",wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p67, +34969,Ad42,EA030,Dispersed homesteads,EA030-5,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +34970,Ad43,EA030,Dispersed homesteads,EA030-5,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +34971,Ad44,EA030,Dispersed homesteads,EA030-5,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p67, +34972,Ad45,EA030,Dispersed homesteads,EA030-5,But the dominant pastoral Hima are nomadic,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +34973,Ad46,EA030,Dispersed homesteads,EA030-5,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p67, +34974,Ad47,EA030,Dispersed homesteads,EA030-5,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +34975,Ad48,EA030,Dispersed homesteads,EA030-5,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +34976,Ad49,EA030,Dispersed homesteads,EA030-5,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +34977,Ad5,EA030,?,EA030-NA,,,,,, +34978,Ad50,EA030,Villages/towns,EA030-7,"But 'separated hamlets' (code ""7"") today",beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +34979,Ad51,EA030,Villages/towns,EA030-7,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +34980,Ad6,EA030,Villages/towns,EA030-7,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +34981,Ad7,EA030,Villages/towns,EA030-7,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +34982,Ad8,EA030,Dispersed homesteads,EA030-5,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +34983,Ad9,EA030,Dispersed homesteads,EA030-5,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +34984,Ae1,EA030,Hamlets,EA030-6,"Formerly villages/towns (code ""7"")",winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67,"Assume Mudock comment applies to this variable, not Col 31 as stated in Gray (1999)" +34985,Ae10,EA030,Dispersed homesteads,EA030-5,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +34986,Ae11,EA030,Villages/towns,EA030-7,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +34987,Ae12,EA030,Villages/towns,EA030-7,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +34988,Ae13,EA030,?,EA030-NA,,,,,, +34989,Ae14,EA030,Dispersed homesteads,EA030-5,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +34990,Ae15,EA030,Villages/towns,EA030-7,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p67, +34991,Ae16,EA030,?,EA030-NA,,,,,, +34992,Ae17,EA030,Complex permanent,EA030-8,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +34993,Ae18,EA030,Complex permanent,EA030-8,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +34994,Ae19,EA030,?,EA030-NA,,,,,, +34995,Ae2,EA030,Villages/towns,EA030-7,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +34996,Ae20,EA030,Hamlets,EA030-6,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +34997,Ae21,EA030,Villages/towns,EA030-7,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +34998,Ae22,EA030,Villages/towns,EA030-7,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p67, +34999,Ae23,EA030,?,EA030-NA,,,,,, +35000,Ae24,EA030,?,EA030-NA,,,,,, +35001,Ae25,EA030,?,EA030-NA,,,,,, +35002,Ae26,EA030,Villages/towns,EA030-7,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +35003,Ae27,EA030,Villages/towns,EA030-7,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +35004,Ae28,EA030,Villages/towns,EA030-7,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +35005,Ae29,EA030,Villages/towns,EA030-7,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p67, +35006,Ae3,EA030,Villages/towns,EA030-7,"Recently changed to 'separated hamlets' (code ""7"")",alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +35007,Ae30,EA030,Villages/towns,EA030-7,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +35008,Ae31,EA030,Villages/towns,EA030-7,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +35009,Ae32,EA030,Villages/towns,EA030-7,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +35010,Ae33,EA030,Villages/towns,EA030-7,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +35011,Ae34,EA030,Dispersed homesteads,EA030-5,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +35012,Ae35,EA030,Villages/towns,EA030-7,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +35013,Ae36,EA030,Villages/towns,EA030-7,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +35014,Ae37,EA030,?,EA030-NA,,,,,, +35015,Ae38,EA030,Villages/towns,EA030-7,,wijnant192526,,1920,EthnographicAtlas_1967_p67, +35016,Ae39,EA030,Villages/towns,EA030-7,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +35017,Ae4,EA030,Hamlets,EA030-6,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +35018,Ae40,EA030,Villages/towns,EA030-7,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +35019,Ae41,EA030,Villages/towns,EA030-7,,andersson1953,,1940,EthnographicAtlas_1967_p67, +35020,Ae42,EA030,Villages/towns,EA030-7,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +35021,Ae43,EA030,Villages/towns,EA030-7,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +35022,Ae44,EA030,Villages/towns,EA030-7,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +35023,Ae45,EA030,Villages/towns,EA030-7,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +35024,Ae46,EA030,Villages/towns,EA030-7,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +35025,Ae47,EA030,Villages/towns,EA030-7,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +35026,Ae48,EA030,Dispersed homesteads,EA030-5,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p67, +35027,Ae49,EA030,?,EA030-NA,,,,,, +35028,Ae5,EA030,Hamlets,EA030-6,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p67, +35029,Ae50,EA030,Villages/towns,EA030-7,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p67, +35030,Ae51,EA030,Dispersed homesteads,EA030-5,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p67, +35031,Ae52,EA030,?,EA030-NA,,,,,, +35032,Ae53,EA030,?,EA030-NA,,,,,, +35033,Ae54,EA030,?,EA030-NA,,,,,, +35034,Ae55,EA030,Villages/towns,EA030-7,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +35035,Ae56,EA030,Villages/towns,EA030-7,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +35036,Ae57,EA030,Villages/towns,EA030-7,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +35037,Ae58,EA030,Villages/towns,EA030-7,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +35038,Ae59,EA030,?,EA030-NA,,,,,, +35039,Ae6,EA030,Villages/towns,EA030-7,,verhulpen1936,with special reference to the Bena Kalundwe,1930,Ethnology_Vol7_No2_Apr_1968, +35040,Ae7,EA030,Hamlets,EA030-6,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +35041,Ae8,EA030,Dispersed homesteads,EA030-5,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +35042,Ae9,EA030,Villages/towns,EA030-7,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +35043,Af1,EA030,Villages/towns,EA030-7,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +35044,Af10,EA030,Hamlets,EA030-6,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +35045,Af11,EA030,Villages/towns,EA030-7,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +35046,Af12,EA030,Villages/towns,EA030-7,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +35047,Af13,EA030,Villages/towns,EA030-7,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +35048,Af14,EA030,Villages/towns,EA030-7,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p71, +35049,Af15,EA030,Villages/towns,EA030-7,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +35050,Af16,EA030,Villages/towns,EA030-7,"But Ruel reports 'separated hamlets' (code ""7"")",ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +35051,Af17,EA030,Villages/towns,EA030-7,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +35052,Af18,EA030,Villages/towns,EA030-7,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +35053,Af19,EA030,Villages/towns,EA030-7,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +35054,Af2,EA030,Villages/towns,EA030-7,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +35055,Af20,EA030,Hamlets,EA030-6,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +35056,Af21,EA030,Villages/towns,EA030-7,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +35057,Af22,EA030,Villages/towns,EA030-7,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p71, +35058,Af23,EA030,Villages/towns,EA030-7,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +35059,Af24,EA030,Villages/towns,EA030-7,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +35060,Af25,EA030,Complex permanent,EA030-8,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +35061,Af26,EA030,Villages/towns,EA030-7,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +35062,Af27,EA030,Villages/towns,EA030-7,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +35063,Af28,EA030,Villages/towns,EA030-7,,gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +35064,Af29,EA030,Dispersed homesteads,EA030-5,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +35065,Af3,EA030,Villages/towns,EA030-7,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +35066,Af30,EA030,?,EA030-NA,,,,,, +35067,Af31,EA030,?,EA030-NA,,,,,, +35068,Af32,EA030,Villages/towns,EA030-7,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35069,Af33,EA030,Villages/towns,EA030-7,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35070,Af34,EA030,Villages/towns,EA030-7,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35071,Af35,EA030,Villages/towns,EA030-7,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +35072,Af36,EA030,Complex permanent,EA030-8,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p71, +35073,Af37,EA030,Villages/towns,EA030-7,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +35074,Af38,EA030,Villages/towns,EA030-7,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +35075,Af39,EA030,Dispersed homesteads,EA030-5,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +35076,Af4,EA030,Villages/towns,EA030-7,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +35077,Af40,EA030,Villages/towns,EA030-7,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +35078,Af41,EA030,Villages/towns,EA030-7,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +35079,Af42,EA030,Villages/towns,EA030-7,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p71, +35080,Af43,EA030,Complex permanent,EA030-8,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p71, +35081,Af44,EA030,?,EA030-NA,,,,,, +35082,Af45,EA030,Villages/towns,EA030-7,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +35083,Af46,EA030,Villages/towns,EA030-7,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +35084,Af47,EA030,Villages/towns,EA030-7,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +35085,Af48,EA030,Villages/towns,EA030-7,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +35086,Af49,EA030,Villages/towns,EA030-7,,schwab1947,,1940,EthnographicAtlas_1967_p71, +35087,Af5,EA030,Complex permanent,EA030-8,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +35088,Af50,EA030,Villages/towns,EA030-7,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +35089,Af51,EA030,Villages/towns,EA030-7,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +35090,Af52,EA030,Villages/towns,EA030-7,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +35091,Af53,EA030,Villages/towns,EA030-7,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +35092,Af54,EA030,Villages/towns,EA030-7,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +35093,Af55,EA030,Complex permanent,EA030-8,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +35094,Af56,EA030,Villages/towns,EA030-7,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +35095,Af57,EA030,Complex permanent,EA030-8,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +35096,Af58,EA030,Villages/towns,EA030-7,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +35097,Af6,EA030,Villages/towns,EA030-7,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +35098,Af7,EA030,Villages/towns,EA030-7,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +35099,Af8,EA030,Hamlets,EA030-6,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +35100,Af9,EA030,Villages/towns,EA030-7,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p71, +35101,Ag1,EA030,Villages/towns,EA030-7,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +35102,Ag10,EA030,Hamlets,EA030-6,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +35103,Ag11,EA030,Dispersed homesteads,EA030-5,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +35104,Ag12,EA030,Dispersed homesteads,EA030-5,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +35105,Ag13,EA030,Villages/towns,EA030-7,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +35106,Ag14,EA030,Villages/towns,EA030-7,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +35107,Ag15,EA030,Villages/towns,EA030-7,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +35108,Ag16,EA030,Dispersed homesteads,EA030-5,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p71, +35109,Ag17,EA030,Villages/towns,EA030-7,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +35110,Ag18,EA030,Villages/towns,EA030-7,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p71, +35111,Ag19,EA030,Villages/towns,EA030-7,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p71, +35112,Ag2,EA030,Dispersed homesteads,EA030-5,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +35113,Ag20,EA030,Dispersed homesteads,EA030-5,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +35114,Ag21,EA030,Villages/towns,EA030-7,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +35115,Ag22,EA030,Dispersed homesteads,EA030-5,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p71, +35116,Ag23,EA030,Villages/towns,EA030-7,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +35117,Ag24,EA030,Villages/towns,EA030-7,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +35118,Ag25,EA030,Villages/towns,EA030-7,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p71, +35119,Ag26,EA030,Villages/towns,EA030-7,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p71, +35120,Ag27,EA030,Villages/towns,EA030-7,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +35121,Ag28,EA030,Villages/towns,EA030-7,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +35122,Ag29,EA030,Villages/towns,EA030-7,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +35123,Ag3,EA030,Villages/towns,EA030-7,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p71, +35124,Ag30,EA030,Dispersed homesteads,EA030-5,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p71, +35125,Ag31,EA030,Villages/towns,EA030-7,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p71, +35126,Ag32,EA030,Villages/towns,EA030-7,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p71, +35127,Ag33,EA030,Dispersed homesteads,EA030-5,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +35128,Ag34,EA030,Dispersed homesteads,EA030-5,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +35129,Ag35,EA030,Villages/towns,EA030-7,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +35130,Ag36,EA030,Dispersed homesteads,EA030-5,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +35131,Ag37,EA030,Hamlets,EA030-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +35132,Ag38,EA030,Hamlets,EA030-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +35133,Ag39,EA030,Dispersed homesteads,EA030-5,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +35134,Ag4,EA030,Dispersed homesteads,EA030-5,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +35135,Ag40,EA030,Villages/towns,EA030-7,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +35136,Ag41,EA030,Dispersed homesteads,EA030-5,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +35137,Ag42,EA030,Dispersed homesteads,EA030-5,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +35138,Ag43,EA030,Villages/towns,EA030-7,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +35139,Ag44,EA030,Villages/towns,EA030-7,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +35140,Ag45,EA030,Villages/towns,EA030-7,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +35141,Ag46,EA030,Villages/towns,EA030-7,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +35142,Ag47,EA030,Dispersed homesteads,EA030-5,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +35143,Ag48,EA030,Villages/towns,EA030-7,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p75, +35144,Ag49,EA030,Hamlets,EA030-6,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +35145,Ag5,EA030,Dispersed homesteads,EA030-5,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +35146,Ag50,EA030,Hamlets,EA030-6,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +35147,Ag51,EA030,Villages/towns,EA030-7,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +35148,Ag52,EA030,Villages/towns,EA030-7,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +35149,Ag53,EA030,Villages/towns,EA030-7,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +35150,Ag54,EA030,Complex permanent,EA030-8,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +35151,Ag6,EA030,Complex permanent,EA030-8,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +35152,Ag7,EA030,Semisedentary,EA030-3,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +35153,Ag8,EA030,Villages/towns,EA030-7,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +35154,Ag9,EA030,Villages/towns,EA030-7,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p71, +35155,Ah1,EA030,Villages/towns,EA030-7,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35156,Ah10,EA030,Villages/towns,EA030-7,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +35157,Ah11,EA030,Hamlets,EA030-6,"Formerly 'villages/towns' (code ""7"")",gunnandconant1960,,1950,EthnographicAtlas_1967_p75, +35158,Ah12,EA030,Hamlets,EA030-6,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +35159,Ah13,EA030,Semisedentary,EA030-3,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +35160,Ah14,EA030,Dispersed homesteads,EA030-5,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +35161,Ah15,EA030,Villages/towns,EA030-7,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p75, +35162,Ah16,EA030,Dispersed homesteads,EA030-5,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +35163,Ah17,EA030,Dispersed homesteads,EA030-5,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +35164,Ah18,EA030,Dispersed homesteads,EA030-5,"Formerly 'villages/towns' (code ""7"")",bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +35165,Ah19,EA030,Villages/towns,EA030-7,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p75, +35166,Ah2,EA030,Villages/towns,EA030-7,,meek1931a,,1920,EthnographicAtlas_1967_p75, +35167,Ah20,EA030,Villages/towns,EA030-7,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +35168,Ah21,EA030,Villages/towns,EA030-7,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +35169,Ah22,EA030,?,EA030-NA,,,,,, +35170,Ah23,EA030,?,EA030-NA,,,,,, +35171,Ah24,EA030,?,EA030-NA,,,,,, +35172,Ah25,EA030,Villages/towns,EA030-7,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +35173,Ah26,EA030,Villages/towns,EA030-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +35174,Ah27,EA030,Villages/towns,EA030-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +35175,Ah28,EA030,Villages/towns,EA030-7,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +35176,Ah29,EA030,Villages/towns,EA030-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +35177,Ah3,EA030,Dispersed homesteads,EA030-5,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +35178,Ah30,EA030,Hamlets,EA030-6,,meek1931b,,1920,EthnographicAtlas_1967_p75, +35179,Ah31,EA030,Villages/towns,EA030-7,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p75, +35180,Ah32,EA030,Villages/towns,EA030-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +35181,Ah33,EA030,Hamlets,EA030-6,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p75, +35182,Ah34,EA030,Hamlets,EA030-6,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +35183,Ah35,EA030,Hamlets,EA030-6,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +35184,Ah36,EA030,Villages/towns,EA030-7,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +35185,Ah37,EA030,Hamlets,EA030-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +35186,Ah38,EA030,Villages/towns,EA030-7,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +35187,Ah39,EA030,Villages/towns,EA030-7,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +35188,Ah4,EA030,Hamlets,EA030-6,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p75, +35189,Ah5,EA030,Hamlets,EA030-6,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +35190,Ah6,EA030,Hamlets,EA030-6,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +35191,Ah7,EA030,Hamlets,EA030-6,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +35192,Ah8,EA030,Villages/towns,EA030-7,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +35193,Ah9,EA030,Hamlets,EA030-6,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75,"Assume Murdock comment refers to col 39, not col 30 as stated in Gray (1999); in that case however the codes for EA040/EA041 are as reported by Diamond." +35194,Ai1,EA030,Dispersed homesteads,EA030-5,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p75, +35195,Ai10,EA030,Hamlets,EA030-6,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p75, +35196,Ai11,EA030,Dispersed homesteads,EA030-5,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +35197,Ai12,EA030,Hamlets,EA030-6,"Formerly 'villages/towns' (code ""7"")",foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +35198,Ai13,EA030,Villages/towns,EA030-7,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +35199,Ai14,EA030,Dispersed homesteads,EA030-5,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +35200,Ai15,EA030,Villages/towns,EA030-7,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +35201,Ai16,EA030,Villages/towns,EA030-7,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +35202,Ai17,EA030,Villages/towns,EA030-7,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +35203,Ai18,EA030,Villages/towns,EA030-7,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +35204,Ai19,EA030,Villages/towns,EA030-7,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +35205,Ai2,EA030,?,EA030-NA,,,,,, +35206,Ai20,EA030,Dispersed homesteads,EA030-5,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +35207,Ai21,EA030,Villages/towns,EA030-7,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +35208,Ai22,EA030,Dispersed homesteads,EA030-5,,delafosse1897,,1890,EthnographicAtlas_1967_p75, +35209,Ai23,EA030,Villages/towns,EA030-7,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +35210,Ai24,EA030,Dispersed homesteads,EA030-5,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +35211,Ai25,EA030,Villages/towns,EA030-7,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +35212,Ai26,EA030,Villages/towns,EA030-7,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p75, +35213,Ai27,EA030,Dispersed homesteads,EA030-5,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +35214,Ai28,EA030,Villages/towns,EA030-7,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +35215,Ai29,EA030,Villages/towns,EA030-7,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +35216,Ai3,EA030,Dispersed homesteads,EA030-5,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +35217,Ai30,EA030,Villages/towns,EA030-7,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +35218,Ai31,EA030,Dispersed homesteads,EA030-5,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +35219,Ai32,EA030,Hamlets,EA030-6,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +35220,Ai33,EA030,Dispersed homesteads,EA030-5,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +35221,Ai34,EA030,Dispersed homesteads,EA030-5,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +35222,Ai35,EA030,Dispersed homesteads,EA030-5,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +35223,Ai36,EA030,Dispersed homesteads,EA030-5,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +35224,Ai37,EA030,Hamlets,EA030-6,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +35225,Ai38,EA030,Hamlets,EA030-6,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +35226,Ai39,EA030,Hamlets,EA030-6,,nadel1947,,1940,EthnographicAtlas_1967_p75, +35227,Ai4,EA030,Dispersed homesteads,EA030-5,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +35228,Ai40,EA030,Hamlets,EA030-6,,nadel1947,,1940,EthnographicAtlas_1967_p75, +35229,Ai41,EA030,Hamlets,EA030-6,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +35230,Ai42,EA030,Hamlets,EA030-6,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p75, +35231,Ai43,EA030,Hamlets,EA030-6,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p75, +35232,Ai44,EA030,Villages/towns,EA030-7,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +35233,Ai45,EA030,Hamlets,EA030-6,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +35234,Ai46,EA030,Villages/towns,EA030-7,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p75, +35235,Ai47,EA030,Villages/towns,EA030-7,"Grottanelli speaks of ""villages,"" but Cerulli reports 'dispersed homesteads' (code ""5"")",cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +35236,Ai5,EA030,Villages/towns,EA030-7,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +35237,Ai6,EA030,Hamlets,EA030-6,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +35238,Ai7,EA030,Villages/towns,EA030-7,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +35239,Ai8,EA030,Hamlets,EA030-6,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p75, +35240,Ai9,EA030,Dispersed homesteads,EA030-5,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +35241,Aj1,EA030,Dispersed homesteads,EA030-5,,lawrance1957,,1950,EthnographicAtlas_1967_p75, +35242,Aj10,EA030,Hamlets,EA030-6,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +35243,Aj11,EA030,Seminomadic,EA030-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +35244,Aj12,EA030,Villages/towns,EA030-7,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +35245,Aj13,EA030,Villages/towns,EA030-7,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +35246,Aj14,EA030,Villages/towns,EA030-7,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +35247,Aj15,EA030,Dispersed homesteads,EA030-5,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +35248,Aj16,EA030,Semisedentary,EA030-3,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p79, +35249,Aj17,EA030,Hamlets,EA030-6,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +35250,Aj18,EA030,Hamlets,EA030-6,,jensen1959,,1950,EthnographicAtlas_1967_p79, +35251,Aj19,EA030,Seminomadic,EA030-2,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p79, +35252,Aj2,EA030,Nomadic,EA030-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +35253,Aj20,EA030,Villages/towns,EA030-7,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p79, +35254,Aj21,EA030,Semisedentary,EA030-3,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +35255,Aj22,EA030,Villages/towns,EA030-7,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +35256,Aj23,EA030,Seminomadic,EA030-2,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +35257,Aj24,EA030,Semisedentary,EA030-3,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +35258,Aj25,EA030,Hamlets,EA030-6,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +35259,Aj26,EA030,Dispersed homesteads,EA030-5,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p79, +35260,Aj27,EA030,Hamlets,EA030-6,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +35261,Aj28,EA030,Seminomadic,EA030-2,Inferential,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +35262,Aj29,EA030,Nomadic,EA030-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +35263,Aj3,EA030,Seminomadic,EA030-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +35264,Aj30,EA030,?,EA030-NA,,,,,, +35265,Aj31,EA030,?,EA030-NA,,,,,, +35266,Aj4,EA030,Villages/towns,EA030-7,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +35267,Aj5,EA030,Seminomadic,EA030-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +35268,Aj6,EA030,Dispersed homesteads,EA030-5,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +35269,Aj7,EA030,Dispersed homesteads,EA030-5,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +35270,Aj8,EA030,Dispersed homesteads,EA030-5,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +35271,Aj9,EA030,Dispersed homesteads,EA030-5,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +35272,Ca1,EA030,Villages/towns,EA030-7,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +35273,Ca10,EA030,Nomadic,EA030-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +35274,Ca11,EA030,Semisedentary,EA030-3,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p79, +35275,Ca12,EA030,Dispersed homesteads,EA030-5,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p79, +35276,Ca13,EA030,Dispersed homesteads,EA030-5,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p79, +35277,Ca14,EA030,Dispersed homesteads,EA030-5,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p79, +35278,Ca15,EA030,Dispersed homesteads,EA030-5,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +35279,Ca16,EA030,Dispersed homesteads,EA030-5,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +35280,Ca17,EA030,Dispersed homesteads,EA030-5,"But 'villages/towns' (code ""7"") in one region",fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +35281,Ca18,EA030,Villages/towns,EA030-7,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +35282,Ca19,EA030,Hamlets,EA030-6,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +35283,Ca2,EA030,Nomadic,EA030-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +35284,Ca20,EA030,Semisedentary,EA030-3,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +35285,Ca21,EA030,Hamlets,EA030-6,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +35286,Ca22,EA030,Dispersed homesteads,EA030-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +35287,Ca23,EA030,Dispersed homesteads,EA030-5,,jensen1959,,1950,EthnographicAtlas_1967_p79, +35288,Ca24,EA030,Dispersed homesteads,EA030-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +35289,Ca25,EA030,Dispersed homesteads,EA030-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +35290,Ca26,EA030,Dispersed homesteads,EA030-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +35291,Ca27,EA030,Dispersed homesteads,EA030-5,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +35292,Ca28,EA030,Dispersed homesteads,EA030-5,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p79, +35293,Ca29,EA030,Dispersed homesteads,EA030-5,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p79, +35294,Ca3,EA030,Villages/towns,EA030-7,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +35295,Ca30,EA030,Dispersed homesteads,EA030-5,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p79, +35296,Ca31,EA030,Villages/towns,EA030-7,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +35297,Ca32,EA030,Villages/towns,EA030-7,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +35298,Ca33,EA030,Villages/towns,EA030-7,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +35299,Ca34,EA030,Nomadic,EA030-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +35300,Ca35,EA030,Seminomadic,EA030-2,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +35301,Ca36,EA030,Nomadic,EA030-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +35302,Ca37,EA030,Seminomadic,EA030-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +35303,Ca38,EA030,Seminomadic,EA030-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +35304,Ca39,EA030,Dispersed homesteads,EA030-5,,lewis1965b,,1930,EthnographicAtlas_1967_p79, +35305,Ca4,EA030,Dispersed homesteads,EA030-5,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p79, +35306,Ca40,EA030,Dispersed homesteads,EA030-5,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +35307,Ca41,EA030,Dispersed homesteads,EA030-5,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +35308,Ca42,EA030,Hamlets,EA030-6,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +35309,Ca43,EA030,?,EA030-NA,,,,,, +35310,Ca5,EA030,Seminomadic,EA030-2,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p79, +35311,Ca6,EA030,Seminomadic,EA030-2,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +35312,Ca7,EA030,Hamlets,EA030-6,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +35313,Ca8,EA030,Villages/towns,EA030-7,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p79, +35314,Ca9,EA030,Dispersed homesteads,EA030-5,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +35315,Cb1,EA030,?,EA030-NA,,,,,, +35316,Cb10,EA030,Hamlets,EA030-6,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +35317,Cb11,EA030,Seminomadic,EA030-2,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +35318,Cb12,EA030,Seminomadic,EA030-2,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +35319,Cb13,EA030,Nomadic,EA030-1,"But seminomadic (code ""2"") for some groups",lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +35320,Cb14,EA030,Seminomadic,EA030-2,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +35321,Cb15,EA030,Nomadic,EA030-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +35322,Cb16,EA030,Nomadic,EA030-1,"But seminomadic (code ""2"") for some groups",bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +35323,Cb17,EA030,Villages/towns,EA030-7,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +35324,Cb18,EA030,Villages/towns,EA030-7,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p79, +35325,Cb19,EA030,Complex permanent,EA030-8,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +35326,Cb2,EA030,Villages/towns,EA030-7,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +35327,Cb20,EA030,Villages/towns,EA030-7,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +35328,Cb21,EA030,Nomadic,EA030-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p83, +35329,Cb22,EA030,Villages/towns,EA030-7,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +35330,Cb23,EA030,Villages/towns,EA030-7,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p83, +35331,Cb24,EA030,Nomadic,EA030-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +35332,Cb25,EA030,Villages/towns,EA030-7,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +35333,Cb26,EA030,Villages/towns,EA030-7,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +35334,Cb27,EA030,Villages/towns,EA030-7,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +35335,Cb28,EA030,Villages/towns,EA030-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +35336,Cb29,EA030,?,EA030-NA,,,,,, +35337,Cb3,EA030,Villages/towns,EA030-7,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +35338,Cb4,EA030,Seminomadic,EA030-2,,reid1930,,1920,EthnographicAtlas_1967_p79, +35339,Cb5,EA030,Dispersed homesteads,EA030-5,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p79, +35340,Cb6,EA030,Villages/towns,EA030-7,,woodnd,,1920,EthnographicAtlas_1967_p79, +35341,Cb7,EA030,Villages/towns,EA030-7,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +35342,Cb8,EA030,Semisedentary,EA030-3,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +35343,Cb9,EA030,Villages/towns,EA030-7,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +35344,Cc1,EA030,Seminomadic,EA030-2,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +35345,Cc10,EA030,Seminomadic,EA030-2,But serfs are sedentary,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +35346,Cc11,EA030,Nomadic,EA030-1,But the Haratin serfs are sedentary,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +35347,Cc12,EA030,Nomadic,EA030-1,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +35348,Cc13,EA030,Nomadic,EA030-1,But many of the Haratin serfs are sedentary,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +35349,Cc14,EA030,Seminomadic,EA030-2,But some sub-groups are semi-sedentary,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +35350,Cc15,EA030,?,EA030-NA,,,,,, +35351,Cc16,EA030,Seminomadic,EA030-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +35352,Cc17,EA030,Nomadic,EA030-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p83, +35353,Cc18,EA030,Seminomadic,EA030-2,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +35354,Cc19,EA030,Seminomadic,EA030-2,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +35355,Cc2,EA030,Seminomadic,EA030-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +35356,Cc20,EA030,Seminomadic,EA030-2,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p83, +35357,Cc3,EA030,Complex permanent,EA030-8,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +35358,Cc4,EA030,Villages/towns,EA030-7,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +35359,Cc5,EA030,Nomadic,EA030-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p83, +35360,Cc6,EA030,Nomadic,EA030-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +35361,Cc7,EA030,Nomadic,EA030-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35362,Cc8,EA030,?,EA030-NA,,,,,, +35363,Cc9,EA030,Seminomadic,EA030-2,But the Haratin serfs are sedentary,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +35364,Cd1,EA030,Villages/towns,EA030-7,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +35365,Cd10,EA030,Semisedentary,EA030-3,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +35366,Cd11,EA030,Villages/towns,EA030-7,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p83, +35367,Cd12,EA030,Villages/towns,EA030-7,"But seminomadic (code ""2"") in some rural regions",bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +35368,Cd13,EA030,Semisedentary,EA030-3,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +35369,Cd14,EA030,Nomadic,EA030-1,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +35370,Cd15,EA030,Villages/towns,EA030-7,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +35371,Cd16,EA030,Villages/towns,EA030-7,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +35372,Cd17,EA030,Seminomadic,EA030-2,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +35373,Cd18,EA030,Seminomadic,EA030-2,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +35374,Cd19,EA030,Villages/towns,EA030-7,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +35375,Cd2,EA030,Villages/towns,EA030-7,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +35376,Cd20,EA030,Seminomadic,EA030-2,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +35377,Cd21,EA030,Villages/towns,EA030-7,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +35378,Cd3,EA030,Villages/towns,EA030-7,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +35379,Cd4,EA030,Villages/towns,EA030-7,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +35380,Cd5,EA030,Hamlets,EA030-6,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +35381,Cd6,EA030,Villages/towns,EA030-7,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +35382,Cd7,EA030,Semisedentary,EA030-3,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +35383,Cd8,EA030,Semisedentary,EA030-3,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +35384,Cd9,EA030,Semisedentary,EA030-3,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +35385,Ce1,EA030,Dispersed homesteads,EA030-5,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +35386,Ce2,EA030,?,EA030-NA,,,,,, +35387,Ce3,EA030,Villages/towns,EA030-7,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +35388,Ce4,EA030,Dispersed homesteads,EA030-5,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35389,Ce5,EA030,Complex permanent,EA030-8,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +35390,Ce6,EA030,Villages/towns,EA030-7,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +35391,Ce7,EA030,Villages/towns,EA030-7,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +35392,Ce8,EA030,Complex permanent,EA030-8,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +35393,Cf1,EA030,Complex permanent,EA030-8,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +35394,Cf2,EA030,Dispersed homesteads,EA030-5,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No4_Oct_1962, +35395,Cf3,EA030,Villages/towns,EA030-7,,munch1945,,1930,EthnographicAtlas_1967_p83, +35396,Cf4,EA030,Villages/towns,EA030-7,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +35397,Cf5,EA030,Villages/towns,EA030-7,,miner1939,,1930,EthnographicAtlas_1967_p83, +35398,Cg1,EA030,Villages/towns,EA030-7,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +35399,Cg2,EA030,Villages/towns,EA030-7,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +35400,Cg3,EA030,Dispersed homesteads,EA030-5,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +35401,Cg4,EA030,Nomadic,EA030-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +35402,Cg5,EA030,Villages/towns,EA030-7,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +35403,Ch1,EA030,Complex permanent,EA030-8,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +35404,Ch10,EA030,?,EA030-NA,,,,,, +35405,Ch11,EA030,Villages/towns,EA030-7,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +35406,Ch2,EA030,Dispersed homesteads,EA030-5,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +35407,Ch3,EA030,Villages/towns,EA030-7,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +35408,Ch4,EA030,Hamlets,EA030-6,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p83, +35409,Ch5,EA030,Villages/towns,EA030-7,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +35410,Ch6,EA030,Villages/towns,EA030-7,,ember1954,,1910,EthnographicAtlas_1967_p83, +35411,Ch7,EA030,Villages/towns,EA030-7,,friedrich1954,,1930,EthnographicAtlas_1967_p83, +35412,Ch8,EA030,Villages/towns,EA030-7,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +35413,Ch9,EA030,Villages/towns,EA030-7,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +35414,Ci1,EA030,Seminomadic,EA030-2,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p83, +35415,Ci10,EA030,Villages/towns,EA030-7,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +35416,Ci11,EA030,Semisedentary,EA030-3,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +35417,Ci12,EA030,Dispersed homesteads,EA030-5,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +35418,Ci2,EA030,Villages/towns,EA030-7,,grigolia1939,,1930,EthnographicAtlas_1967_p83, +35419,Ci3,EA030,Villages/towns,EA030-7,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p83, +35420,Ci4,EA030,Hamlets,EA030-6,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +35421,Ci5,EA030,Villages/towns,EA030-7,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +35422,Ci6,EA030,Villages/towns,EA030-7,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p83, +35423,Ci7,EA030,Villages/towns,EA030-7,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p83, +35424,Ci8,EA030,Villages/towns,EA030-7,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +35425,Ci9,EA030,Villages/towns,EA030-7,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +35426,Cj1,EA030,Villages/towns,EA030-7,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +35427,Cj10,EA030,Villages/towns,EA030-7,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +35428,Cj2,EA030,Nomadic,EA030-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +35429,Cj3,EA030,Villages/towns,EA030-7,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +35430,Cj4,EA030,Villages/towns,EA030-7,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +35431,Cj5,EA030,Nomadic,EA030-1,,dickson1949,,1930,EthnographicAtlas_1967_p87, +35432,Cj6,EA030,Villages/towns,EA030-7,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +35433,Cj7,EA030,Villages/towns,EA030-7,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p87, +35434,Cj8,EA030,Villages/towns,EA030-7,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +35435,Cj9,EA030,Villages/towns,EA030-7,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +35436,Ea1,EA030,Villages/towns,EA030-7,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +35437,Ea10,EA030,Seminomadic,EA030-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +35438,Ea11,EA030,Villages/towns,EA030-7,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +35439,Ea12,EA030,Nomadic,EA030-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +35440,Ea13,EA030,Complex permanent,EA030-8,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +35441,Ea2,EA030,Villages/towns,EA030-7,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +35442,Ea3,EA030,Semisedentary,EA030-3,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +35443,Ea4,EA030,Semisedentary,EA030-3,,barth1956b,,1950,EthnographicAtlas_1967_p87, +35444,Ea5,EA030,Villages/towns,EA030-7,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +35445,Ea6,EA030,Nomadic,EA030-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +35446,Ea7,EA030,Hamlets,EA030-6,,schurmann1962,,1950,EthnographicAtlas_1967_p87, +35447,Ea8,EA030,Nomadic,EA030-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p87, +35448,Ea9,EA030,Villages/towns,EA030-7,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +35449,Eb1,EA030,Seminomadic,EA030-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +35450,Eb2,EA030,Hamlets,EA030-6,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p87, +35451,Eb3,EA030,Seminomadic,EA030-2,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p87,"Assume Murdock comment refers to Col 39, not Col 30 as stated in Gray (1999)" +35452,Eb4,EA030,?,EA030-NA,,,,,, +35453,Eb5,EA030,Villages/towns,EA030-7,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No2_Apr_1963, +35454,Eb6,EA030,?,EA030-NA,,,,,, +35455,Eb7,EA030,Semisedentary,EA030-3,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +35456,Eb8,EA030,?,EA030-NA,,,,,, +35457,Ec1,EA030,Seminomadic,EA030-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +35458,Ec10,EA030,Seminomadic,EA030-2,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +35459,Ec11,EA030,Seminomadic,EA030-2,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +35460,Ec2,EA030,Seminomadic,EA030-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35461,Ec3,EA030,Nomadic,EA030-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +35462,Ec4,EA030,Nomadic,EA030-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +35463,Ec5,EA030,Semisedentary,EA030-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +35464,Ec6,EA030,Seminomadic,EA030-2,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +35465,Ec7,EA030,Semisedentary,EA030-3,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +35466,Ec8,EA030,Seminomadic,EA030-2,,shimkin1939,,1900,EthnographicAtlas_1967_p87, +35467,Ec9,EA030,Villages/towns,EA030-7,,lattimore1933,,1920,EthnographicAtlas_1967_p87, +35468,Ed1,EA030,Villages/towns,EA030-7,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +35469,Ed10,EA030,Villages/towns,EA030-7,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +35470,Ed13,EA030,?,EA030-NA,,,,,, +35471,Ed14,EA030,?,EA030-NA,,,,,, +35472,Ed15a,EA030,?,EA030-NA,,,,,, +35473,Ed15b,EA030,Villages/towns,EA030-7,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +35474,Ed16,EA030,?,EA030-NA,,,,,, +35475,Ed2,EA030,Villages/towns,EA030-7,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +35476,Ed3,EA030,Villages/towns,EA030-7,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p87, +35477,Ed4,EA030,Hamlets,EA030-6,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +35478,Ed5,EA030,Complex permanent,EA030-8,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35479,Ed6,EA030,Villages/towns,EA030-7,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +35480,Ed7,EA030,Villages/towns,EA030-7,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +35481,Ed8,EA030,Villages/towns,EA030-7,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +35482,Ed9,EA030,Villages/towns,EA030-7,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +35483,Ee1,EA030,Villages/towns,EA030-7,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +35484,Ee2,EA030,Villages/towns,EA030-7,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +35485,Ee3,EA030,Dispersed homesteads,EA030-5,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +35486,Ee4,EA030,Villages/towns,EA030-7,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +35487,Ee5,EA030,Semisedentary,EA030-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +35488,Ee6,EA030,Semisedentary,EA030-3,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +35489,Ee7,EA030,?,EA030-NA,,,,,, +35490,Ee8,EA030,Hamlets,EA030-6,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +35491,Ef1,EA030,Villages/towns,EA030-7,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +35492,Ef10,EA030,?,EA030-NA,,,,,, +35493,Ef11,EA030,Complex permanent,EA030-8,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +35494,Ef2,EA030,Villages/towns,EA030-7,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +35495,Ef3,EA030,?,EA030-NA,,,,,, +35496,Ef4,EA030,?,EA030-NA,,,,,, +35497,Ef5,EA030,Dispersed homesteads,EA030-5,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +35498,Ef6,EA030,Villages/towns,EA030-7,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p87, +35499,Ef7,EA030,Villages/towns,EA030-7,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +35500,Ef8,EA030,Villages/towns,EA030-7,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +35501,Ef9,EA030,Villages/towns,EA030-7,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35502,Eg1,EA030,Semisedentary,EA030-3,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35503,Eg10,EA030,Villages/towns,EA030-7,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +35504,Eg11,EA030,?,EA030-NA,,,,,, +35505,Eg12,EA030,?,EA030-NA,,,,,, +35506,Eg13,EA030,Villages/towns,EA030-7,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35507,Eg14,EA030,Villages/towns,EA030-7,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +35508,Eg2,EA030,Villages/towns,EA030-7,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +35509,Eg3,EA030,Villages/towns,EA030-7,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +35510,Eg4,EA030,Semisedentary,EA030-3,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +35511,Eg5,EA030,Hamlets,EA030-6,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +35512,Eg6,EA030,Dispersed homesteads,EA030-5,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +35513,Eg7,EA030,Impermanent,EA030-4,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +35514,Eg8,EA030,Villages/towns,EA030-7,,griffiths1946,,1940,EthnographicAtlas_1967_p91, +35515,Eg9,EA030,Impermanent,EA030-4,,elwin1939,,1930,EthnographicAtlas_1967_p91, +35516,Eh1,EA030,Seminomadic,EA030-2,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +35517,Eh10,EA030,?,EA030-NA,,,,,, +35518,Eh2,EA030,Villages/towns,EA030-7,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +35519,Eh3,EA030,Villages/towns,EA030-7,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +35520,Eh4,EA030,Seminomadic,EA030-2,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35521,Eh5,EA030,Hamlets,EA030-6,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +35522,Eh6,EA030,Villages/towns,EA030-7,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +35523,Eh7,EA030,Semisedentary,EA030-3,"But McLeod reports 'separated hamlets' (code ""7"")",decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +35524,Eh8,EA030,Hamlets,EA030-6,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91,"Assume Murdock comment refers to Col 28, not Col 30 as stated in Gray (1999)" +35525,Eh9,EA030,Villages/towns,EA030-7,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +35526,Ei1,EA030,Villages/towns,EA030-7,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35527,Ei10,EA030,Villages/towns,EA030-7,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p91, +35528,Ei11,EA030,Villages/towns,EA030-7,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +35529,Ei12,EA030,Villages/towns,EA030-7,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +35530,Ei13,EA030,Villages/towns,EA030-7,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +35531,Ei14,EA030,Villages/towns,EA030-7,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +35532,Ei15,EA030,?,EA030-NA,,,,,, +35533,Ei16,EA030,Villages/towns,EA030-7,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +35534,Ei17,EA030,?,EA030-NA,,,,,, +35535,Ei18,EA030,Villages/towns,EA030-7,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +35536,Ei19,EA030,Villages/towns,EA030-7,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +35537,Ei2,EA030,Villages/towns,EA030-7,,mills1922,,1920,EthnographicAtlas_1967_p91, +35538,Ei20,EA030,?,EA030-NA,,,,,, +35539,Ei3,EA030,Villages/towns,EA030-7,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +35540,Ei4,EA030,Villages/towns,EA030-7,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +35541,Ei5,EA030,Villages/towns,EA030-7,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +35542,Ei6,EA030,Villages/towns,EA030-7,,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +35543,Ei7,EA030,Villages/towns,EA030-7,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +35544,Ei8,EA030,Villages/towns,EA030-7,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +35545,Ei9,EA030,Villages/towns,EA030-7,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p91, +35546,Ej1,EA030,Villages/towns,EA030-7,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +35547,Ej10,EA030,Hamlets,EA030-6,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +35548,Ej11,EA030,Hamlets,EA030-6,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +35549,Ej12,EA030,Villages/towns,EA030-7,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +35550,Ej13,EA030,Dispersed homesteads,EA030-5,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +35551,Ej14,EA030,Impermanent,EA030-4,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35552,Ej15,EA030,Villages/towns,EA030-7,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +35553,Ej16,EA030,Dispersed homesteads,EA030-5,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +35554,Ej2,EA030,Impermanent,EA030-4,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +35555,Ej3,EA030,Nomadic,EA030-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +35556,Ej4,EA030,Villages/towns,EA030-7,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +35557,Ej5,EA030,Villages/towns,EA030-7,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +35558,Ej6,EA030,Nomadic,EA030-1,"The bands are marine in character, i.e., consisting of a group of families each occupying a boat",carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p91, +35559,Ej7,EA030,Impermanent,EA030-4,,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +35560,Ej8,EA030,Villages/towns,EA030-7,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +35561,Ej9,EA030,Villages/towns,EA030-7,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +35562,Ia1,EA030,Villages/towns,EA030-7,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +35563,Ia10,EA030,Dispersed homesteads,EA030-5,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p91, +35564,Ia11,EA030,Villages/towns,EA030-7,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +35565,Ia12,EA030,Villages/towns,EA030-7,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +35566,Ia13,EA030,Nomadic,EA030-1,Nomadic boat communities,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +35567,Ia14,EA030,Villages/towns,EA030-7,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p95, +35568,Ia15,EA030,Dispersed homesteads,EA030-5,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +35569,Ia16,EA030,Hamlets,EA030-6,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +35570,Ia17,EA030,?,EA030-NA,,,,,, +35571,Ia18,EA030,?,EA030-NA,,,,,, +35572,Ia2,EA030,Villages/towns,EA030-7,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +35573,Ia3,EA030,Hamlets,EA030-6,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +35574,Ia4,EA030,Dispersed homesteads,EA030-5,But houses are moved every few years,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +35575,Ia5,EA030,Hamlets,EA030-6,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +35576,Ia6,EA030,Villages/towns,EA030-7,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35577,Ia7,EA030,Villages/towns,EA030-7,,fox1954,,1950,EthnographicAtlas_1967_p91, +35578,Ia8,EA030,Villages/towns,EA030-7,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +35579,Ia9,EA030,Villages/towns,EA030-7,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +35580,Ib1,EA030,Villages/towns,EA030-7,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35581,Ib2,EA030,Complex permanent,EA030-8,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35582,Ib3,EA030,Villages/towns,EA030-7,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +35583,Ib4,EA030,Villages/towns,EA030-7,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p95, +35584,Ib5,EA030,Villages/towns,EA030-7,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +35585,Ib6,EA030,Villages/towns,EA030-7,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +35586,Ib7,EA030,Villages/towns,EA030-7,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p95, +35587,Ib8,EA030,Nomadic,EA030-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p95, +35588,Ib9,EA030,?,EA030-NA,,,,,, +35589,Ic1,EA030,Dispersed homesteads,EA030-5,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35590,Ic10,EA030,Villages/towns,EA030-7,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p95, +35591,Ic11,EA030,Villages/towns,EA030-7,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35592,Ic12,EA030,Semisedentary,EA030-3,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +35593,Ic13,EA030,?,EA030-NA,,,,,, +35594,Ic2,EA030,Complex permanent,EA030-8,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +35595,Ic3,EA030,Hamlets,EA030-6,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p95, +35596,Ic4,EA030,?,EA030-NA,,,,,, +35597,Ic5,EA030,Villages/towns,EA030-7,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p95,"Assume Murdock comment, listed in Gray (1999), applies to Col32, not Col 30" +35598,Ic6,EA030,Villages/towns,EA030-7,,drabbe1940,,1930,EthnographicAtlas_1967_p95, +35599,Ic7,EA030,Villages/towns,EA030-7,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +35600,Ic8,EA030,Villages/towns,EA030-7,,pleyte1893,,1890,EthnographicAtlas_1967_p95, +35601,Ic9,EA030,Complex permanent,EA030-8,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p95, +35602,Id1,EA030,Nomadic,EA030-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +35603,Id10,EA030,Nomadic,EA030-1,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +35604,Id11,EA030,Nomadic,EA030-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +35605,Id12,EA030,Nomadic,EA030-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +35606,Id13,EA030,Nomadic,EA030-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +35607,Id2,EA030,Nomadic,EA030-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +35608,Id3,EA030,Nomadic,EA030-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +35609,Id4,EA030,Nomadic,EA030-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +35610,Id5,EA030,Nomadic,EA030-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +35611,Id6,EA030,Nomadic,EA030-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p95, +35612,Id7,EA030,Nomadic,EA030-1,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +35613,Id8,EA030,Nomadic,EA030-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +35614,Id9,EA030,Nomadic,EA030-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p95, +35615,Ie1,EA030,Villages/towns,EA030-7,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35616,Ie10,EA030,Villages/towns,EA030-7,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +35617,Ie11,EA030,Dispersed homesteads,EA030-5,,bowers1964,,1950,EthnographicAtlas_1967_p95, +35618,Ie12,EA030,Hamlets,EA030-6,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35619,Ie13,EA030,Villages/towns,EA030-7,,landtman1927,,1920,EthnographicAtlas_1967_p95, +35620,Ie14,EA030,Villages/towns,EA030-7,,haddon1908,,1900,EthnographicAtlas_1967_p95, +35621,Ie15,EA030,Villages/towns,EA030-7,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35622,Ie16,EA030,Villages/towns,EA030-7,,williams194041,,1940,EthnographicAtlas_1967_p95, +35623,Ie17,EA030,Impermanent,EA030-4,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +35624,Ie18,EA030,Dispersed homesteads,EA030-5,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +35625,Ie19,EA030,Hamlets,EA030-6,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +35626,Ie2,EA030,Villages/towns,EA030-7,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +35627,Ie20,EA030,Villages/towns,EA030-7,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +35628,Ie21,EA030,Villages/towns,EA030-7,,malinowski1916,,1900,EthnographicAtlas_1967_p95, +35629,Ie22,EA030,Villages/towns,EA030-7,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +35630,Ie23,EA030,Dispersed homesteads,EA030-5,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +35631,Ie24,EA030,Villages/towns,EA030-7,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p95, +35632,Ie25,EA030,Hamlets,EA030-6,,williamson1912,,1920,EthnographicAtlas_1967_p95, +35633,Ie26,EA030,Villages/towns,EA030-7,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +35634,Ie27,EA030,Hamlets,EA030-6,,thurnwald1916,,1910,EthnographicAtlas_1967_p99, +35635,Ie28,EA030,Villages/towns,EA030-7,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +35636,Ie29,EA030,Hamlets,EA030-6,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35637,Ie3,EA030,Hamlets,EA030-6,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35638,Ie30,EA030,Semisedentary,EA030-3,,pouwer1955,,1950,EthnographicAtlas_1967_p99, +35639,Ie31,EA030,Hamlets,EA030-6,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +35640,Ie32,EA030,Villages/towns,EA030-7,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +35641,Ie33,EA030,Semisedentary,EA030-3,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +35642,Ie34,EA030,?,EA030-NA,,,,,, +35643,Ie35,EA030,Villages/towns,EA030-7,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +35644,Ie36,EA030,?,EA030-NA,,,,,, +35645,Ie37,EA030,?,EA030-NA,,,,,, +35646,Ie38,EA030,Hamlets,EA030-6,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +35647,Ie39,EA030,Villages/towns,EA030-7,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +35648,Ie4,EA030,Villages/towns,EA030-7,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35649,Ie5,EA030,Semisedentary,EA030-3,,williams1936,,1930,EthnographicAtlas_1967_p95, +35650,Ie6,EA030,Villages/towns,EA030-7,,held1947,,1930,EthnographicAtlas_1967_p95, +35651,Ie7,EA030,Dispersed homesteads,EA030-5,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +35652,Ie8,EA030,Villages/towns,EA030-7,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +35653,Ie9,EA030,Villages/towns,EA030-7,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +35654,If1,EA030,Villages/towns,EA030-7,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35655,If10,EA030,?,EA030-NA,,,,,, +35656,If11,EA030,Dispersed homesteads,EA030-5,,sarfert1919,,1860,EthnographicAtlas_1967_p99, +35657,If12,EA030,Villages/towns,EA030-7,,mason1954,,1940,EthnographicAtlas_1967_p99, +35658,If13,EA030,Dispersed homesteads,EA030-5,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p99, +35659,If14,EA030,Complex permanent,EA030-8,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +35660,If15,EA030,Hamlets,EA030-6,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +35661,If16,EA030,Dispersed homesteads,EA030-5,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +35662,If17,EA030,Dispersed homesteads,EA030-5,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +35663,If2,EA030,Hamlets,EA030-6,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +35664,If3,EA030,Hamlets,EA030-6,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +35665,If4,EA030,Villages/towns,EA030-7,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +35666,If5,EA030,Dispersed homesteads,EA030-5,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +35667,If6,EA030,Dispersed homesteads,EA030-5,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +35668,If7,EA030,Villages/towns,EA030-7,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p99, +35669,If8,EA030,Villages/towns,EA030-7,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +35670,If9,EA030,Villages/towns,EA030-7,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +35671,Ig1,EA030,Hamlets,EA030-6,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +35672,Ig10,EA030,Villages/towns,EA030-7,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +35673,Ig11,EA030,Villages/towns,EA030-7,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +35674,Ig12,EA030,Hamlets,EA030-6,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p99, +35675,Ig13,EA030,Villages/towns,EA030-7,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p99, +35676,Ig14,EA030,Hamlets,EA030-6,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +35677,Ig15,EA030,?,EA030-NA,,,,,, +35678,Ig16,EA030,?,EA030-NA,,,,,, +35679,Ig17,EA030,?,EA030-NA,,,,,, +35680,Ig18,EA030,?,EA030-NA,,,,,, +35681,Ig19,EA030,?,EA030-NA,,,,,, +35682,Ig2,EA030,Villages/towns,EA030-7,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +35683,Ig20,EA030,Hamlets,EA030-6,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +35684,Ig21,EA030,Dispersed homesteads,EA030-5,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +35685,Ig3,EA030,Hamlets,EA030-6,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +35686,Ig4,EA030,Hamlets,EA030-6,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +35687,Ig5,EA030,Villages/towns,EA030-7,,fortune1932b,,1920,EthnographicAtlas_1967_p99, +35688,Ig6,EA030,Hamlets,EA030-6,,ivens1927,,1900,EthnographicAtlas_1967_p99, +35689,Ig7,EA030,Hamlets,EA030-6,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +35690,Ig8,EA030,?,EA030-NA,,,,,, +35691,Ig9,EA030,Villages/towns,EA030-7,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +35692,Ih1,EA030,Villages/towns,EA030-7,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +35693,Ih10,EA030,Villages/towns,EA030-7,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35694,Ih11,EA030,?,EA030-NA,,,,,, +35695,Ih12,EA030,?,EA030-NA,,,,,, +35696,Ih13,EA030,?,EA030-NA,,,,,, +35697,Ih14,EA030,Villages/towns,EA030-7,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +35698,Ih2,EA030,Villages/towns,EA030-7,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35699,Ih3,EA030,Villages/towns,EA030-7,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +35700,Ih4,EA030,Villages/towns,EA030-7,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35701,Ih5,EA030,Villages/towns,EA030-7,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p99, +35702,Ih6,EA030,Villages/towns,EA030-7,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p99, +35703,Ih7,EA030,Villages/towns,EA030-7,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p99, +35704,Ih8,EA030,Villages/towns,EA030-7,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +35705,Ih9,EA030,Villages/towns,EA030-7,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35706,Ii1,EA030,Villages/towns,EA030-7,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +35707,Ii10,EA030,Hamlets,EA030-6,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +35708,Ii12,EA030,Villages/towns,EA030-7,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35709,Ii13,EA030,Villages/towns,EA030-7,,burrows1937,,1830,EthnographicAtlas_1967_p99, +35710,Ii14,EA030,Villages/towns,EA030-7,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +35711,Ii2,EA030,Hamlets,EA030-6,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +35712,Ii3,EA030,Villages/towns,EA030-7,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +35713,Ii4,EA030,Villages/towns,EA030-7,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +35714,Ii5,EA030,Semisedentary,EA030-3,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p99, +35715,Ii6,EA030,Villages/towns,EA030-7,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +35716,Ii7,EA030,Villages/towns,EA030-7,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +35717,Ii8,EA030,Villages/towns,EA030-7,,burrows1936,,1840,EthnographicAtlas_1967_p99, +35718,Ii9,EA030,Villages/towns,EA030-7,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +35719,Ij1,EA030,Dispersed homesteads,EA030-5,,buck1934,,1820,EthnographicAtlas_1967_p99, +35720,Ij10,EA030,Dispersed homesteads,EA030-5,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +35721,Ij2,EA030,Villages/towns,EA030-7,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +35722,Ij3,EA030,Dispersed homesteads,EA030-5,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +35723,Ij4,EA030,Villages/towns,EA030-7,,buck1932a,,1850,EthnographicAtlas_1967_p103, +35724,Ij5,EA030,Dispersed homesteads,EA030-5,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p103, +35725,Ij6,EA030,Villages/towns,EA030-7,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p103, +35726,Ij7,EA030,Villages/towns,EA030-7,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +35727,Ij8,EA030,Villages/towns,EA030-7,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p103, +35728,Ij9,EA030,Villages/towns,EA030-7,,metraux1940,,1860,EthnographicAtlas_1967_p103, +35729,Na1,EA030,Seminomadic,EA030-2,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +35730,Na10,EA030,Villages/towns,EA030-7,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +35731,Na11,EA030,Villages/towns,EA030-7,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +35732,Na12,EA030,Seminomadic,EA030-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +35733,Na13,EA030,Seminomadic,EA030-2,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +35734,Na14,EA030,Seminomadic,EA030-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +35735,Na15,EA030,Seminomadic,EA030-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p103, +35736,Na16,EA030,Nomadic,EA030-1,,osgood1931,,1860,EthnographicAtlas_1967_p103, +35737,Na17,EA030,Seminomadic,EA030-2,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35738,Na19,EA030,Semisedentary,EA030-3,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +35739,Na2,EA030,Semisedentary,EA030-3,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +35740,Na20,EA030,Seminomadic,EA030-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +35741,Na21,EA030,Seminomadic,EA030-2,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +35742,Na22,EA030,Seminomadic,EA030-2,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +35743,Na23,EA030,Seminomadic,EA030-2,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +35744,Na24,EA030,Semisedentary,EA030-3,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +35745,Na25,EA030,Semisedentary,EA030-3,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +35746,Na26,EA030,Villages/towns,EA030-7,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +35747,Na27,EA030,Semisedentary,EA030-3,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +35748,Na28,EA030,Seminomadic,EA030-2,,jenness1937,,1880,EthnographicAtlas_1967_p103, +35749,Na29,EA030,Seminomadic,EA030-2,,goddard1916,,1850,EthnographicAtlas_1967_p103, +35750,Na3,EA030,Seminomadic,EA030-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +35751,Na30,EA030,Seminomadic,EA030-2,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +35752,Na31,EA030,Seminomadic,EA030-2,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +35753,Na32,EA030,Seminomadic,EA030-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +35754,Na33,EA030,Seminomadic,EA030-2,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +35755,Na34,EA030,Semisedentary,EA030-3,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +35756,Na35,EA030,Seminomadic,EA030-2,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +35757,Na36,EA030,Seminomadic,EA030-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +35758,Na37,EA030,Seminomadic,EA030-2,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +35759,Na38,EA030,Semisedentary,EA030-3,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +35760,Na39,EA030,Seminomadic,EA030-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +35761,Na4,EA030,Seminomadic,EA030-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +35762,Na40,EA030,Semisedentary,EA030-3,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +35763,Na41,EA030,Seminomadic,EA030-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +35764,Na42,EA030,Semisedentary,EA030-3,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +35765,Na43,EA030,Seminomadic,EA030-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +35766,Na44,EA030,Seminomadic,EA030-2,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +35767,Na45,EA030,Seminomadic,EA030-2,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +35768,Na5,EA030,Seminomadic,EA030-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +35769,Na6,EA030,Semisedentary,EA030-3,,lantis1946,,1930,EthnographicAtlas_1967_p103, +35770,Na7,EA030,Seminomadic,EA030-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +35771,Na8,EA030,Seminomadic,EA030-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +35772,Na9,EA030,Villages/towns,EA030-7,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35773,Nb1,EA030,Villages/towns,EA030-7,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +35774,Nb10,EA030,Semisedentary,EA030-3,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +35775,Nb11,EA030,Semisedentary,EA030-3,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +35776,Nb12,EA030,Semisedentary,EA030-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +35777,Nb13,EA030,Semisedentary,EA030-3,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +35778,Nb14,EA030,Semisedentary,EA030-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +35779,Nb15,EA030,Seminomadic,EA030-2,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +35780,Nb16,EA030,Seminomadic,EA030-2,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +35781,Nb17,EA030,Semisedentary,EA030-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +35782,Nb18,EA030,Villages/towns,EA030-7,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +35783,Nb19,EA030,Villages/towns,EA030-7,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +35784,Nb2,EA030,Semisedentary,EA030-3,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +35785,Nb20,EA030,Villages/towns,EA030-7,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +35786,Nb21,EA030,Villages/towns,EA030-7,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +35787,Nb22,EA030,Semisedentary,EA030-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +35788,Nb23,EA030,Semisedentary,EA030-3,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +35789,Nb24,EA030,Semisedentary,EA030-3,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +35790,Nb25,EA030,Seminomadic,EA030-2,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +35791,Nb26,EA030,Semisedentary,EA030-3,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +35792,Nb27,EA030,Semisedentary,EA030-3,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +35793,Nb28,EA030,Villages/towns,EA030-7,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +35794,Nb29,EA030,Villages/towns,EA030-7,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +35795,Nb3,EA030,Villages/towns,EA030-7,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +35796,Nb30,EA030,Seminomadic,EA030-2,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +35797,Nb31,EA030,Semisedentary,EA030-3,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p107, +35798,Nb32,EA030,Semisedentary,EA030-3,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +35799,Nb33,EA030,Villages/towns,EA030-7,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +35800,Nb34,EA030,Villages/towns,EA030-7,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +35801,Nb35,EA030,Villages/towns,EA030-7,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +35802,Nb36,EA030,Villages/towns,EA030-7,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +35803,Nb37,EA030,Seminomadic,EA030-2,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +35804,Nb38,EA030,Villages/towns,EA030-7,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +35805,Nb39,EA030,Villages/towns,EA030-7,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +35806,Nb4,EA030,Villages/towns,EA030-7,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +35807,Nb5,EA030,Villages/towns,EA030-7,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +35808,Nb6,EA030,Semisedentary,EA030-3,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +35809,Nb7,EA030,Semisedentary,EA030-3,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +35810,Nb8,EA030,Semisedentary,EA030-3,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +35811,Nb9,EA030,Villages/towns,EA030-7,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +35812,Nc1,EA030,Villages/towns,EA030-7,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +35813,Nc10,EA030,Seminomadic,EA030-2,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +35814,Nc11,EA030,Seminomadic,EA030-2,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +35815,Nc12,EA030,Semisedentary,EA030-3,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +35816,Nc13,EA030,Semisedentary,EA030-3,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +35817,Nc14,EA030,Seminomadic,EA030-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +35818,Nc15,EA030,Seminomadic,EA030-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +35819,Nc16,EA030,Seminomadic,EA030-2,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +35820,Nc17,EA030,Seminomadic,EA030-2,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +35821,Nc18,EA030,Semisedentary,EA030-3,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +35822,Nc19,EA030,Seminomadic,EA030-2,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p107, +35823,Nc2,EA030,Seminomadic,EA030-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +35824,Nc20,EA030,Seminomadic,EA030-2,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +35825,Nc21,EA030,Seminomadic,EA030-2,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +35826,Nc22,EA030,Seminomadic,EA030-2,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +35827,Nc23,EA030,Seminomadic,EA030-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +35828,Nc24,EA030,Seminomadic,EA030-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +35829,Nc25,EA030,Seminomadic,EA030-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +35830,Nc26,EA030,Semisedentary,EA030-3,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +35831,Nc27,EA030,Seminomadic,EA030-2,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p107, +35832,Nc28,EA030,Semisedentary,EA030-3,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +35833,Nc29,EA030,Semisedentary,EA030-3,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +35834,Nc3,EA030,Seminomadic,EA030-2,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +35835,Nc30,EA030,Seminomadic,EA030-2,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +35836,Nc31,EA030,Seminomadic,EA030-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +35837,Nc32,EA030,Seminomadic,EA030-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +35838,Nc33,EA030,Seminomadic,EA030-2,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +35839,Nc34,EA030,Seminomadic,EA030-2,,meigs1939,,1880,EthnographicAtlas_1967_p107, +35840,Nc4,EA030,Seminomadic,EA030-2,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +35841,Nc5,EA030,Semisedentary,EA030-3,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +35842,Nc6,EA030,Seminomadic,EA030-2,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +35843,Nc7,EA030,Semisedentary,EA030-3,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +35844,Nc8,EA030,Seminomadic,EA030-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +35845,Nc9,EA030,Seminomadic,EA030-2,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +35846,Nd1,EA030,Semisedentary,EA030-3,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +35847,Nd10,EA030,Seminomadic,EA030-2,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +35848,Nd11,EA030,Seminomadic,EA030-2,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +35849,Nd12,EA030,Seminomadic,EA030-2,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +35850,Nd13,EA030,Seminomadic,EA030-2,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +35851,Nd14,EA030,Seminomadic,EA030-2,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +35852,Nd15,EA030,Seminomadic,EA030-2,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +35853,Nd16,EA030,Seminomadic,EA030-2,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +35854,Nd17,EA030,Seminomadic,EA030-2,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +35855,Nd18,EA030,Semisedentary,EA030-3,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +35856,Nd19,EA030,Seminomadic,EA030-2,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +35857,Nd2,EA030,Seminomadic,EA030-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +35858,Nd20,EA030,Seminomadic,EA030-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +35859,Nd21,EA030,Seminomadic,EA030-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +35860,Nd22,EA030,Seminomadic,EA030-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +35861,Nd23,EA030,Seminomadic,EA030-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +35862,Nd24,EA030,Seminomadic,EA030-2,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +35863,Nd25,EA030,Seminomadic,EA030-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +35864,Nd26,EA030,Seminomadic,EA030-2,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +35865,Nd27,EA030,Seminomadic,EA030-2,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +35866,Nd28,EA030,Seminomadic,EA030-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +35867,Nd29,EA030,Seminomadic,EA030-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +35868,Nd3,EA030,Semisedentary,EA030-3,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +35869,Nd30,EA030,Seminomadic,EA030-2,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +35870,Nd31,EA030,Seminomadic,EA030-2,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +35871,Nd32,EA030,Seminomadic,EA030-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +35872,Nd33,EA030,Seminomadic,EA030-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +35873,Nd34,EA030,Seminomadic,EA030-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +35874,Nd35,EA030,Seminomadic,EA030-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +35875,Nd36,EA030,Seminomadic,EA030-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +35876,Nd37,EA030,Seminomadic,EA030-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +35877,Nd38,EA030,Seminomadic,EA030-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +35878,Nd39,EA030,Seminomadic,EA030-2,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +35879,Nd4,EA030,Seminomadic,EA030-2,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +35880,Nd40,EA030,Seminomadic,EA030-2,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +35881,Nd41,EA030,Seminomadic,EA030-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +35882,Nd42,EA030,Seminomadic,EA030-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +35883,Nd43,EA030,Seminomadic,EA030-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +35884,Nd44,EA030,Seminomadic,EA030-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +35885,Nd45,EA030,Seminomadic,EA030-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +35886,Nd46,EA030,Seminomadic,EA030-2,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +35887,Nd47,EA030,Seminomadic,EA030-2,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +35888,Nd48,EA030,Seminomadic,EA030-2,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +35889,Nd49,EA030,Seminomadic,EA030-2,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +35890,Nd5,EA030,Seminomadic,EA030-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +35891,Nd50,EA030,Seminomadic,EA030-2,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +35892,Nd51,EA030,Seminomadic,EA030-2,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +35893,Nd52,EA030,Seminomadic,EA030-2,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +35894,Nd53,EA030,Seminomadic,EA030-2,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +35895,Nd54,EA030,Seminomadic,EA030-2,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35896,Nd55,EA030,Seminomadic,EA030-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +35897,Nd56,EA030,Seminomadic,EA030-2,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +35898,Nd57,EA030,Seminomadic,EA030-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +35899,Nd58,EA030,Seminomadic,EA030-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +35900,Nd59,EA030,Seminomadic,EA030-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +35901,Nd6,EA030,Seminomadic,EA030-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +35902,Nd60,EA030,Seminomadic,EA030-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +35903,Nd61,EA030,Seminomadic,EA030-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +35904,Nd62,EA030,Nomadic,EA030-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +35905,Nd63,EA030,Seminomadic,EA030-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +35906,Nd64,EA030,Seminomadic,EA030-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +35907,Nd65,EA030,Seminomadic,EA030-2,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +35908,Nd66,EA030,Seminomadic,EA030-2,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +35909,Nd67,EA030,Seminomadic,EA030-2,,gifford1936,,1870,EthnographicAtlas_1967_p111, +35910,Nd7,EA030,Seminomadic,EA030-2,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +35911,Nd8,EA030,Seminomadic,EA030-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +35912,Nd9,EA030,Seminomadic,EA030-2,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +35913,Ne1,EA030,Nomadic,EA030-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +35914,Ne10,EA030,Villages/towns,EA030-7,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +35915,Ne11,EA030,Nomadic,EA030-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +35916,Ne12,EA030,Nomadic,EA030-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +35917,Ne13,EA030,Nomadic,EA030-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +35918,Ne14,EA030,Nomadic,EA030-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +35919,Ne15,EA030,Semisedentary,EA030-3,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +35920,Ne16,EA030,Nomadic,EA030-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +35921,Ne17,EA030,Seminomadic,EA030-2,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +35922,Ne18,EA030,Nomadic,EA030-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +35923,Ne19,EA030,Nomadic,EA030-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +35924,Ne2,EA030,Nomadic,EA030-1,,mcallister1937,,1870,EthnographicAtlas_1967_p111, +35925,Ne20,EA030,Seminomadic,EA030-2,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p115, +35926,Ne21,EA030,?,EA030-NA,,,,,, +35927,Ne3,EA030,Nomadic,EA030-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p111, +35928,Ne4,EA030,Seminomadic,EA030-2,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +35929,Ne5,EA030,Nomadic,EA030-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +35930,Ne6,EA030,Semisedentary,EA030-3,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p111, +35931,Ne7,EA030,Nomadic,EA030-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +35932,Ne8,EA030,Seminomadic,EA030-2,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +35933,Ne9,EA030,Seminomadic,EA030-2,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +35934,Nf10,EA030,Semisedentary,EA030-3,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +35935,Nf11,EA030,Semisedentary,EA030-3,,whitman1937,,1870,EthnographicAtlas_1967_p115, +35936,Nf12,EA030,Semisedentary,EA030-3,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +35937,Nf13,EA030,Semisedentary,EA030-3,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35938,Nf14,EA030,Villages/towns,EA030-7,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +35939,Nf15,EA030,?,EA030-NA,,,,,, +35940,Nf2,EA030,Semisedentary,EA030-3,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p115, +35941,Nf3,EA030,Semisedentary,EA030-3,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +35942,Nf4,EA030,Semisedentary,EA030-3,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +35943,Nf5,EA030,Semisedentary,EA030-3,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +35944,Nf6,EA030,Semisedentary,EA030-3,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +35945,Nf7,EA030,Seminomadic,EA030-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35946,Nf8,EA030,Hamlets,EA030-6,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +35947,Nf9,EA030,Semisedentary,EA030-3,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +35948,Ng1,EA030,Semisedentary,EA030-3,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +35949,Ng10,EA030,Villages/towns,EA030-7,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +35950,Ng11,EA030,Villages/towns,EA030-7,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p115, +35951,Ng12,EA030,Dispersed homesteads,EA030-5,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p115, +35952,Ng13,EA030,?,EA030-NA,,,,,, +35953,Ng14,EA030,?,EA030-NA,,,,,, +35954,Ng15,EA030,?,EA030-NA,,,,,, +35955,Ng2,EA030,?,EA030-NA,,,,,, +35956,Ng3,EA030,Villages/towns,EA030-7,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +35957,Ng4,EA030,?,EA030-NA,,,,,, +35958,Ng5,EA030,Villages/towns,EA030-7,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +35959,Ng6,EA030,Semisedentary,EA030-3,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +35960,Ng7,EA030,Villages/towns,EA030-7,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +35961,Ng8,EA030,Semisedentary,EA030-3,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p115, +35962,Ng9,EA030,Dispersed homesteads,EA030-5,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +35963,Nh1,EA030,Nomadic,EA030-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +35964,Nh10,EA030,Villages/towns,EA030-7,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +35965,Nh11,EA030,Villages/towns,EA030-7,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +35966,Nh12,EA030,Villages/towns,EA030-7,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +35967,Nh13,EA030,Villages/towns,EA030-7,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +35968,Nh14,EA030,Complex permanent,EA030-8,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +35969,Nh15,EA030,Seminomadic,EA030-2,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +35970,Nh16,EA030,Seminomadic,EA030-2,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35971,Nh17,EA030,Semisedentary,EA030-3,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +35972,Nh18,EA030,Villages/towns,EA030-7,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35973,Nh19,EA030,Dispersed homesteads,EA030-5,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +35974,Nh2,EA030,Villages/towns,EA030-7,,dozier1954,,1950,EthnographicAtlas_1967_p115, +35975,Nh20,EA030,Dispersed homesteads,EA030-5,,gifford1931,,1860,EthnographicAtlas_1967_p115, +35976,Nh21,EA030,Dispersed homesteads,EA030-5,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +35977,Nh22,EA030,Villages/towns,EA030-7,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +35978,Nh23,EA030,Seminomadic,EA030-2,,gifford1932a,,1870,EthnographicAtlas_1967_p115, +35979,Nh24,EA030,Seminomadic,EA030-2,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +35980,Nh25,EA030,Villages/towns,EA030-7,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +35981,Nh26,EA030,?,EA030-NA,,,,,, +35982,Nh27,EA030,?,EA030-NA,,,,,, +35983,Nh3,EA030,Semisedentary,EA030-3,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +35984,Nh4,EA030,Villages/towns,EA030-7,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +35985,Nh5,EA030,Villages/towns,EA030-7,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +35986,Nh6,EA030,Villages/towns,EA030-7,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +35987,Nh7,EA030,Villages/towns,EA030-7,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +35988,Nh8,EA030,Villages/towns,EA030-7,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +35989,Nh9,EA030,Villages/towns,EA030-7,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p115, +35990,Ni1,EA030,Dispersed homesteads,EA030-5,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +35991,Ni2,EA030,Semisedentary,EA030-3,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +35992,Ni3,EA030,Hamlets,EA030-6,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +35993,Ni4,EA030,Seminomadic,EA030-2,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p115, +35994,Ni5,EA030,Nomadic,EA030-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +35995,Ni6,EA030,Villages/towns,EA030-7,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +35996,Ni7,EA030,Villages/towns,EA030-7,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +35997,Ni8,EA030,?,EA030-NA,,,,,, +35998,Ni9,EA030,?,EA030-NA,,,,,, +35999,Nj1,EA030,Villages/towns,EA030-7,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36000,Nj10,EA030,Villages/towns,EA030-7,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36001,Nj11,EA030,?,EA030-NA,,,,,, +36002,Nj12,EA030,?,EA030-NA,,,,,, +36003,Nj13,EA030,?,EA030-NA,,,,,, +36004,Nj14,EA030,?,EA030-NA,,,,,, +36005,Nj2,EA030,Villages/towns,EA030-7,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +36006,Nj3,EA030,Villages/towns,EA030-7,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +36007,Nj4,EA030,Villages/towns,EA030-7,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +36008,Nj5,EA030,?,EA030-NA,,,,,, +36009,Nj6,EA030,?,EA030-NA,,,,,, +36010,Nj7,EA030,Villages/towns,EA030-7,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36011,Nj8,EA030,Villages/towns,EA030-7,,foster1948,,1500,EthnographicAtlas_1967_p119, +36012,Nj9,EA030,Complex permanent,EA030-8,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +36013,Sa1,EA030,Villages/towns,EA030-7,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +36014,Sa10,EA030,Dispersed homesteads,EA030-5,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p119, +36015,Sa11,EA030,?,EA030-NA,,,,,, +36016,Sa12,EA030,Villages/towns,EA030-7,,stone1948,,1948,EthnographicAtlas_1967_p119, +36017,Sa13,EA030,Villages/towns,EA030-7,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +36018,Sa14,EA030,?,EA030-NA,,,,,, +36019,Sa15,EA030,?,EA030-NA,,,,,, +36020,Sa16,EA030,?,EA030-NA,,,,,, +36021,Sa17,EA030,?,EA030-NA,,,,,, +36022,Sa2,EA030,?,EA030-NA,,,,,, +36023,Sa3,EA030,Complex permanent,EA030-8,,wisdom1940,,1930,EthnographicAtlas_1967_p119, +36024,Sa4,EA030,Dispersed homesteads,EA030-5,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +36025,Sa5,EA030,Dispersed homesteads,EA030-5,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +36026,Sa6,EA030,Complex permanent,EA030-8,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +36027,Sa7,EA030,Villages/towns,EA030-7,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +36028,Sa8,EA030,Villages/towns,EA030-7,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +36029,Sa9,EA030,Villages/towns,EA030-7,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +36030,Sb1,EA030,Hamlets,EA030-6,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +36031,Sb2,EA030,Semisedentary,EA030-3,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +36032,Sb3,EA030,Villages/towns,EA030-7,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +36033,Sb4,EA030,Dispersed homesteads,EA030-5,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +36034,Sb5,EA030,Villages/towns,EA030-7,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +36035,Sb6,EA030,Nomadic,EA030-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +36036,Sb7,EA030,Villages/towns,EA030-7,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +36037,Sb8,EA030,Villages/towns,EA030-7,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +36038,Sb9,EA030,Villages/towns,EA030-7,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +36039,Sc1,EA030,Semisedentary,EA030-3,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +36040,Sc10,EA030,Villages/towns,EA030-7,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +36041,Sc11,EA030,Villages/towns,EA030-7,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p119, +36042,Sc12,EA030,Villages/towns,EA030-7,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p119, +36043,Sc13,EA030,Seminomadic,EA030-2,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +36044,Sc14,EA030,?,EA030-NA,,,,,, +36045,Sc15,EA030,Villages/towns,EA030-7,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p119, +36046,Sc16,EA030,Villages/towns,EA030-7,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p119, +36047,Sc17,EA030,Villages/towns,EA030-7,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +36048,Sc18,EA030,Semisedentary,EA030-3,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +36049,Sc2,EA030,Villages/towns,EA030-7,,leedsnd,,1950,EthnographicAtlas_1967_p119, +36050,Sc3,EA030,Dispersed homesteads,EA030-5,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +36051,Sc4,EA030,Semisedentary,EA030-3,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +36052,Sc5,EA030,Villages/towns,EA030-7,,farabee1918,,1900,EthnographicAtlas_1967_p119, +36053,Sc6,EA030,Villages/towns,EA030-7,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36054,Sc7,EA030,Villages/towns,EA030-7,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +36055,Sc8,EA030,Seminomadic,EA030-2,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +36056,Sc9,EA030,Villages/towns,EA030-7,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +36057,Sd1,EA030,Villages/towns,EA030-7,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36058,Sd2,EA030,Villages/towns,EA030-7,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +36059,Sd3,EA030,Villages/towns,EA030-7,,nimuendaju1926,,1920,EthnographicAtlas_1967_p119, +36060,Sd4,EA030,Seminomadic,EA030-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +36061,Sd5,EA030,Villages/towns,EA030-7,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +36062,Sd6,EA030,Seminomadic,EA030-2,,migliazza1964,,1960,EthnographicAtlas_1967_p119, +36063,Sd7,EA030,Villages/towns,EA030-7,,fock1963,,1950,EthnographicAtlas_1967_p119, +36064,Sd8,EA030,Seminomadic,EA030-2,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +36065,Sd9,EA030,Impermanent,EA030-4,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36066,Se1,EA030,Seminomadic,EA030-2,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +36067,Se10,EA030,Villages/towns,EA030-7,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +36068,Se11,EA030,Villages/towns,EA030-7,,prost1965,,1960,EthnographicAtlas_1967_p123, +36069,Se12,EA030,?,EA030-NA,,,,,, +36070,Se2,EA030,Villages/towns,EA030-7,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +36071,Se3,EA030,Dispersed homesteads,EA030-5,But dwellings are moved every few years,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +36072,Se4,EA030,Villages/towns,EA030-7,,fejos1943,,1940,EthnographicAtlas_1967_p119, +36073,Se5,EA030,Impermanent,EA030-4,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +36074,Se6,EA030,Villages/towns,EA030-7,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +36075,Se7,EA030,?,EA030-NA,,,,,, +36076,Se8,EA030,Dispersed homesteads,EA030-5,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +36077,Se9,EA030,Villages/towns,EA030-7,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +36078,Sf1,EA030,Villages/towns,EA030-7,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +36079,Sf2,EA030,Villages/towns,EA030-7,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +36080,Sf3,EA030,Dispersed homesteads,EA030-5,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +36081,Sf4,EA030,Villages/towns,EA030-7,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +36082,Sf5,EA030,Dispersed homesteads,EA030-5,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +36083,Sf6,EA030,Villages/towns,EA030-7,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +36084,Sf7,EA030,Villages/towns,EA030-7,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +36085,Sf8,EA030,?,EA030-NA,,,,,, +36086,Sf9,EA030,?,EA030-NA,,,,,, +36087,Sg1,EA030,Nomadic,EA030-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +36088,Sg2,EA030,Hamlets,EA030-6,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36089,Sg3,EA030,Nomadic,EA030-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +36090,Sg4,EA030,Nomadic,EA030-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +36091,Sg5,EA030,Nomadic,EA030-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36092,Sh1,EA030,Seminomadic,EA030-2,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +36093,Sh2,EA030,Seminomadic,EA030-2,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +36094,Sh3,EA030,Nomadic,EA030-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +36095,Sh4,EA030,Nomadic,EA030-1,,oberg1949,,1940,EthnographicAtlas_1967_p123, +36096,Sh5,EA030,Impermanent,EA030-4,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +36097,Sh6,EA030,Nomadic,EA030-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +36098,Sh7,EA030,Villages/towns,EA030-7,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p123, +36099,Sh8,EA030,Semisedentary,EA030-3,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +36100,Sh9,EA030,Nomadic,EA030-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +36101,Si1,EA030,Seminomadic,EA030-2,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36102,Si10,EA030,Villages/towns,EA030-7,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +36103,Si2,EA030,Villages/towns,EA030-7,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +36104,Si3,EA030,Villages/towns,EA030-7,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36105,Si4,EA030,Seminomadic,EA030-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +36106,Si5,EA030,Impermanent,EA030-4,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +36107,Si6,EA030,Seminomadic,EA030-2,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p123, +36108,Si7,EA030,Villages/towns,EA030-7,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +36109,Si8,EA030,Villages/towns,EA030-7,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +36110,Si9,EA030,?,EA030-NA,,,,,, +36111,Sj1,EA030,Semisedentary,EA030-3,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +36112,Sj10,EA030,Villages/towns,EA030-7,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36113,Sj11,EA030,Seminomadic,EA030-2,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +36114,Sj2,EA030,Villages/towns,EA030-7,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +36115,Sj3,EA030,Nomadic,EA030-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +36116,Sj4,EA030,Seminomadic,EA030-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +36117,Sj5,EA030,Nomadic,EA030-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p123, +36118,Sj6,EA030,Villages/towns,EA030-7,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36119,Sj7,EA030,Villages/towns,EA030-7,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +36120,Sj8,EA030,Villages/towns,EA030-7,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +36121,Sj9,EA030,Seminomadic,EA030-2,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +36122,ch12,EA030,Villages/towns,EA030-7,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +36123,ch13,EA030,Villages/towns,EA030-7,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +36124,ch14,EA030,Villages/towns,EA030-7,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +36125,ch15,EA030,Villages/towns,EA030-7,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +36126,ch16,EA030,Dispersed homesteads,EA030-5,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +36127,ch17,EA030,Villages/towns,EA030-7,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +36128,ch18,EA030,Villages/towns,EA030-7,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +36129,ch19,EA030,Villages/towns,EA030-7,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +36130,ch20,EA030,Villages/towns,EA030-7,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +36131,ch21,EA030,Dispersed homesteads,EA030-5,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +36132,ch22,EA030,Complex permanent,EA030-8,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +36133,ch23,EA030,Complex permanent,EA030-8,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +36134,ch24,EA030,Villages/towns,EA030-7,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +36135,ch25,EA030,Villages/towns,EA030-7,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +36136,ch26,EA030,Villages/towns,EA030-7,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +36137,ch27,EA030,Villages/towns,EA030-7,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +36138,ch28,EA030,Villages/towns,EA030-7,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +36139,ec12,EA030,Nomadic,EA030-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +36140,ec13,EA030,Villages/towns,EA030-7,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +36141,ec14,EA030,Villages/towns,EA030-7,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +36142,ec15,EA030,Semisedentary,EA030-3,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +36143,ec16,EA030,Nomadic,EA030-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +36144,ec17,EA030,Seminomadic,EA030-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +36145,ec18,EA030,Semisedentary,EA030-3,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +36146,ec19,EA030,Seminomadic,EA030-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +36147,ec20,EA030,Semisedentary,EA030-3,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +36148,ec21,EA030,Semisedentary,EA030-3,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +36149,Aa1,EA031,<50,EA031-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +36150,Aa2,EA031,<50,EA031-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +36151,Aa3,EA031,100-199,EA031-3,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +36152,Aa4,EA031,?,EA031-NA,,,,,, +36153,Aa5,EA031,100-199,EA031-3,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +36154,Aa6,EA031,?,EA031-NA,,,,,, +36155,Aa7,EA031,<50,EA031-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +36156,Aa8,EA031,<50,EA031-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +36157,Aa9,EA031,<50,EA031-1,"For camps, but 100-199 (code ""3"") for bands comprising a number of camps",bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +36158,Ab1,EA031,?,EA031-NA,,,,,, +36159,Ab10,EA031,?,EA031-NA,,,,,, +36160,Ab11,EA031,?,EA031-NA,,,,,, +36161,Ab12,EA031,?,EA031-NA,,,,,, +36162,Ab13,EA031,5000-50000,EA031-7,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +36163,Ab14,EA031,400-1000,EA031-5,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +36164,Ab15,EA031,200-399,EA031-4,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +36165,Ab16,EA031,?,EA031-NA,,,,,, +36166,Ab17,EA031,?,EA031-NA,,,,,, +36167,Ab18,EA031,100-199,EA031-3,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +36168,Ab19,EA031,?,EA031-NA,,,,,, +36169,Ab2,EA031,?,EA031-NA,,,,,, +36170,Ab20,EA031,?,EA031-NA,,,,,, +36171,Ab21a,EA031,?,EA031-NA,,,,,, +36172,Ab21b,EA031,?,EA031-NA,,,,,, +36173,Ab22,EA031,?,EA031-NA,,,,,, +36174,Ab3,EA031,50-99,EA031-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +36175,Ab4,EA031,?,EA031-NA,,,,,, +36176,Ab5,EA031,200-399,EA031-4,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +36177,Ab6,EA031,200-399,EA031-4,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +36178,Ab7,EA031,?,EA031-NA,,,,,, +36179,Ab8,EA031,200-399,EA031-4,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +36180,Ab9,EA031,5000-50000,EA031-7,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +36181,Ac1,EA031,200-399,EA031-4,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +36182,Ac10,EA031,100-199,EA031-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +36183,Ac11,EA031,?,EA031-NA,,,,,, +36184,Ac12,EA031,?,EA031-NA,,,,,, +36185,Ac13,EA031,50-99,EA031-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p63, +36186,Ac14,EA031,?,EA031-NA,,,,,, +36187,Ac15,EA031,?,EA031-NA,,,,,, +36188,Ac16,EA031,?,EA031-NA,,,,,, +36189,Ac17,EA031,50-99,EA031-2,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +36190,Ac18,EA031,50-99,EA031-2,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +36191,Ac19,EA031,50-99,EA031-2,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +36192,Ac2,EA031,?,EA031-NA,,,,,, +36193,Ac20,EA031,?,EA031-NA,,,,,, +36194,Ac21,EA031,?,EA031-NA,,,,,, +36195,Ac22,EA031,100-199,EA031-3,,mertens1935,,1930,EthnographicAtlas_1967_p63, +36196,Ac23,EA031,100-199,EA031-3,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +36197,Ac24,EA031,?,EA031-NA,,,,,, +36198,Ac25,EA031,?,EA031-NA,,,,,, +36199,Ac26,EA031,?,EA031-NA,,,,,, +36200,Ac27,EA031,?,EA031-NA,,,,,, +36201,Ac28,EA031,?,EA031-NA,,,,,, +36202,Ac29,EA031,?,EA031-NA,,,,,, +36203,Ac3,EA031,100-199,EA031-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +36204,Ac30,EA031,200-399,EA031-4,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +36205,Ac31,EA031,?,EA031-NA,,,,,, +36206,Ac32,EA031,?,EA031-NA,,,,,, +36207,Ac33,EA031,50-99,EA031-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +36208,Ac34,EA031,400-1000,EA031-5,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +36209,Ac35,EA031,?,EA031-NA,,,,,, +36210,Ac36,EA031,?,EA031-NA,,,,,, +36211,Ac37,EA031,50-99,EA031-2,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +36212,Ac38,EA031,?,EA031-NA,,,,,, +36213,Ac39,EA031,?,EA031-NA,,,,,, +36214,Ac4,EA031,100-199,EA031-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +36215,Ac40,EA031,50-99,EA031-2,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +36216,Ac41,EA031,?,EA031-NA,,,,,, +36217,Ac42,EA031,?,EA031-NA,,,,,, +36218,Ac43,EA031,100-199,EA031-3,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +36219,Ac5,EA031,?,EA031-NA,,,,,, +36220,Ac6,EA031,<50,EA031-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p63, +36221,Ac7,EA031,100-199,EA031-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +36222,Ac8,EA031,200-399,EA031-4,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +36223,Ac9,EA031,100-199,EA031-3,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +36224,Ad1,EA031,?,EA031-NA,,,,,, +36225,Ad10,EA031,100-199,EA031-3,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +36226,Ad11,EA031,?,EA031-NA,,,,,, +36227,Ad12,EA031,?,EA031-NA,,,,,, +36228,Ad13,EA031,?,EA031-NA,,,,,, +36229,Ad14,EA031,?,EA031-NA,,,,,, +36230,Ad15,EA031,100-199,EA031-3,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +36231,Ad16,EA031,?,EA031-NA,,,,,, +36232,Ad17,EA031,?,EA031-NA,,,,,, +36233,Ad18,EA031,?,EA031-NA,,,,,, +36234,Ad19,EA031,100-199,EA031-3,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +36235,Ad2,EA031,400-1000,EA031-5,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +36236,Ad20,EA031,50-99,EA031-2,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +36237,Ad21,EA031,?,EA031-NA,,,,,, +36238,Ad22,EA031,?,EA031-NA,,,,,, +36239,Ad23,EA031,?,EA031-NA,,,,,, +36240,Ad24,EA031,400-1000,EA031-5,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +36241,Ad25,EA031,?,EA031-NA,,,,,, +36242,Ad26,EA031,?,EA031-NA,,,,,, +36243,Ad27,EA031,?,EA031-NA,,,,,, +36244,Ad28,EA031,?,EA031-NA,,,,,, +36245,Ad29,EA031,?,EA031-NA,,,,,, +36246,Ad3,EA031,400-1000,EA031-5,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +36247,Ad30,EA031,?,EA031-NA,,,,,, +36248,Ad31,EA031,?,EA031-NA,,,,,, +36249,Ad32,EA031,?,EA031-NA,,,,,, +36250,Ad33,EA031,?,EA031-NA,,,,,, +36251,Ad34,EA031,?,EA031-NA,,,,,, +36252,Ad35,EA031,?,EA031-NA,,,,,, +36253,Ad36,EA031,?,EA031-NA,,,,,, +36254,Ad37,EA031,100-199,EA031-3,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +36255,Ad38,EA031,200-399,EA031-4,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +36256,Ad39,EA031,400-1000,EA031-5,,gray1963,,1950,EthnographicAtlas_1967_p67, +36257,Ad4,EA031,200-399,EA031-4,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +36258,Ad40,EA031,400-1000,EA031-5,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +36259,Ad41,EA031,200-399,EA031-4,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p67, +36260,Ad42,EA031,200-399,EA031-4,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +36261,Ad43,EA031,?,EA031-NA,,,,,, +36262,Ad44,EA031,?,EA031-NA,,,,,, +36263,Ad45,EA031,100-199,EA031-3,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +36264,Ad46,EA031,?,EA031-NA,,,,,, +36265,Ad47,EA031,?,EA031-NA,,,,,, +36266,Ad48,EA031,?,EA031-NA,,,,,, +36267,Ad49,EA031,?,EA031-NA,,,,,, +36268,Ad5,EA031,?,EA031-NA,,,,,, +36269,Ad50,EA031,?,EA031-NA,,,,,, +36270,Ad51,EA031,?,EA031-NA,,,,,, +36271,Ad6,EA031,100-199,EA031-3,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +36272,Ad7,EA031,5000-50000,EA031-7,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +36273,Ad8,EA031,?,EA031-NA,,,,,, +36274,Ad9,EA031,?,EA031-NA,,,,,, +36275,Ae1,EA031,100-199,EA031-3,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67,"Assume Mudock comment applies to Col 30, not col 31 as stated in Gray (1999)" +36276,Ae10,EA031,100-199,EA031-3,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +36277,Ae11,EA031,?,EA031-NA,,,,,, +36278,Ae12,EA031,?,EA031-NA,,,,,, +36279,Ae13,EA031,?,EA031-NA,,,,,, +36280,Ae14,EA031,?,EA031-NA,,,,,, +36281,Ae15,EA031,?,EA031-NA,,,,,, +36282,Ae16,EA031,?,EA031-NA,,,,,, +36283,Ae17,EA031,?,EA031-NA,,,,,, +36284,Ae18,EA031,?,EA031-NA,,,,,, +36285,Ae19,EA031,?,EA031-NA,,,,,, +36286,Ae2,EA031,50-99,EA031-2,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +36287,Ae20,EA031,?,EA031-NA,,,,,, +36288,Ae21,EA031,?,EA031-NA,,,,,, +36289,Ae22,EA031,?,EA031-NA,,,,,, +36290,Ae23,EA031,?,EA031-NA,,,,,, +36291,Ae24,EA031,?,EA031-NA,,,,,, +36292,Ae25,EA031,?,EA031-NA,,,,,, +36293,Ae26,EA031,?,EA031-NA,,,,,, +36294,Ae27,EA031,?,EA031-NA,,,,,, +36295,Ae28,EA031,200-399,EA031-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +36296,Ae29,EA031,?,EA031-NA,,,,,, +36297,Ae3,EA031,50-99,EA031-2,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +36298,Ae30,EA031,100-199,EA031-3,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +36299,Ae31,EA031,200-399,EA031-4,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +36300,Ae32,EA031,50-99,EA031-2,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +36301,Ae33,EA031,?,EA031-NA,,,,,, +36302,Ae34,EA031,?,EA031-NA,,,,,, +36303,Ae35,EA031,?,EA031-NA,,,,,, +36304,Ae36,EA031,?,EA031-NA,,,,,, +36305,Ae37,EA031,?,EA031-NA,,,,,, +36306,Ae38,EA031,?,EA031-NA,,,,,, +36307,Ae39,EA031,100-199,EA031-3,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +36308,Ae4,EA031,?,EA031-NA,,,,,, +36309,Ae40,EA031,?,EA031-NA,,,,,, +36310,Ae41,EA031,?,EA031-NA,,,,,, +36311,Ae42,EA031,?,EA031-NA,,,,,, +36312,Ae43,EA031,?,EA031-NA,,,,,, +36313,Ae44,EA031,?,EA031-NA,,,,,, +36314,Ae45,EA031,200-399,EA031-4,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +36315,Ae46,EA031,?,EA031-NA,,,,,, +36316,Ae47,EA031,?,EA031-NA,,,,,, +36317,Ae48,EA031,?,EA031-NA,,,,,, +36318,Ae49,EA031,?,EA031-NA,,,,,, +36319,Ae5,EA031,?,EA031-NA,,,,,, +36320,Ae50,EA031,?,EA031-NA,,,,,, +36321,Ae51,EA031,?,EA031-NA,,,,,, +36322,Ae52,EA031,?,EA031-NA,,,,,, +36323,Ae53,EA031,?,EA031-NA,,,,,, +36324,Ae54,EA031,?,EA031-NA,,,,,, +36325,Ae55,EA031,?,EA031-NA,,,,,, +36326,Ae56,EA031,400-1000,EA031-5,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +36327,Ae57,EA031,?,EA031-NA,,,,,, +36328,Ae58,EA031,50-99,EA031-2,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +36329,Ae59,EA031,?,EA031-NA,,,,,, +36330,Ae6,EA031,?,EA031-NA,,,,,, +36331,Ae7,EA031,?,EA031-NA,,,,,, +36332,Ae8,EA031,?,EA031-NA,,,,,, +36333,Ae9,EA031,?,EA031-NA,,,,,, +36334,Af1,EA031,5000-50000,EA031-7,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +36335,Af10,EA031,400-1000,EA031-5,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +36336,Af11,EA031,200-399,EA031-4,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +36337,Af12,EA031,?,EA031-NA,,,,,, +36338,Af13,EA031,?,EA031-NA,,,,,, +36339,Af14,EA031,?,EA031-NA,,,,,, +36340,Af15,EA031,200-399,EA031-4,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +36341,Af16,EA031,200-399,EA031-4,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +36342,Af17,EA031,?,EA031-NA,,,,,, +36343,Af18,EA031,?,EA031-NA,,,,,, +36344,Af19,EA031,?,EA031-NA,,,,,, +36345,Af2,EA031,100-199,EA031-3,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +36346,Af20,EA031,400-1000,EA031-5,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +36347,Af21,EA031,?,EA031-NA,,,,,, +36348,Af22,EA031,?,EA031-NA,,,,,, +36349,Af23,EA031,1000-5000,EA031-6,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +36350,Af24,EA031,50000+,EA031-8,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +36351,Af25,EA031,?,EA031-NA,,,,,, +36352,Af26,EA031,1000-5000,EA031-6,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +36353,Af27,EA031,?,EA031-NA,,,,,, +36354,Af28,EA031,?,EA031-NA,,,,,, +36355,Af29,EA031,?,EA031-NA,,,,,, +36356,Af3,EA031,5000-50000,EA031-7,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +36357,Af30,EA031,5000-50000,EA031-7,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +36358,Af31,EA031,?,EA031-NA,,,,,, +36359,Af32,EA031,5000-50000,EA031-7,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36360,Af33,EA031,5000-50000,EA031-7,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36361,Af34,EA031,50000+,EA031-8,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36362,Af35,EA031,?,EA031-NA,,,,,, +36363,Af36,EA031,?,EA031-NA,,,,,, +36364,Af37,EA031,200-399,EA031-4,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +36365,Af38,EA031,?,EA031-NA,,,,,, +36366,Af39,EA031,?,EA031-NA,,,,,, +36367,Af4,EA031,5000-50000,EA031-7,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +36368,Af40,EA031,?,EA031-NA,,,,,, +36369,Af41,EA031,?,EA031-NA,,,,,, +36370,Af42,EA031,?,EA031-NA,,,,,, +36371,Af43,EA031,?,EA031-NA,,,,,, +36372,Af44,EA031,?,EA031-NA,,,,,, +36373,Af45,EA031,?,EA031-NA,,,,,, +36374,Af46,EA031,?,EA031-NA,,,,,, +36375,Af47,EA031,100-199,EA031-3,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +36376,Af48,EA031,?,EA031-NA,,,,,, +36377,Af49,EA031,50-99,EA031-2,,schwab1947,,1940,EthnographicAtlas_1967_p71, +36378,Af5,EA031,400-1000,EA031-5,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +36379,Af50,EA031,?,EA031-NA,,,,,, +36380,Af51,EA031,400-1000,EA031-5,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +36381,Af52,EA031,200-399,EA031-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +36382,Af53,EA031,100-199,EA031-3,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +36383,Af54,EA031,400-1000,EA031-5,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +36384,Af55,EA031,?,EA031-NA,,,,,, +36385,Af56,EA031,200-399,EA031-4,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +36386,Af57,EA031,?,EA031-NA,,,,,, +36387,Af58,EA031,?,EA031-NA,,,,,, +36388,Af6,EA031,50000+,EA031-8,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +36389,Af7,EA031,400-1000,EA031-5,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +36390,Af8,EA031,400-1000,EA031-5,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +36391,Af9,EA031,?,EA031-NA,,,,,, +36392,Ag1,EA031,5000-50000,EA031-7,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +36393,Ag10,EA031,?,EA031-NA,,,,,, +36394,Ag11,EA031,100-199,EA031-3,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +36395,Ag12,EA031,?,EA031-NA,,,,,, +36396,Ag13,EA031,?,EA031-NA,,,,,, +36397,Ag14,EA031,?,EA031-NA,,,,,, +36398,Ag15,EA031,?,EA031-NA,,,,,, +36399,Ag16,EA031,?,EA031-NA,,,,,, +36400,Ag17,EA031,?,EA031-NA,,,,,, +36401,Ag18,EA031,?,EA031-NA,,,,,, +36402,Ag19,EA031,?,EA031-NA,,,,,, +36403,Ag2,EA031,5000-50000,EA031-7,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +36404,Ag20,EA031,?,EA031-NA,,,,,, +36405,Ag21,EA031,?,EA031-NA,,,,,, +36406,Ag22,EA031,?,EA031-NA,,,,,, +36407,Ag23,EA031,?,EA031-NA,,,,,, +36408,Ag24,EA031,?,EA031-NA,,,,,, +36409,Ag25,EA031,?,EA031-NA,,,,,, +36410,Ag26,EA031,?,EA031-NA,,,,,, +36411,Ag27,EA031,?,EA031-NA,,,,,, +36412,Ag28,EA031,5000-50000,EA031-7,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +36413,Ag29,EA031,1000-5000,EA031-6,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +36414,Ag3,EA031,100-199,EA031-3,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p71, +36415,Ag30,EA031,200-399,EA031-4,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p71, +36416,Ag31,EA031,?,EA031-NA,,,,,, +36417,Ag32,EA031,?,EA031-NA,,,,,, +36418,Ag33,EA031,100-199,EA031-3,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +36419,Ag34,EA031,?,EA031-NA,,,,,, +36420,Ag35,EA031,100-199,EA031-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +36421,Ag36,EA031,?,EA031-NA,,,,,, +36422,Ag37,EA031,?,EA031-NA,,,,,, +36423,Ag38,EA031,?,EA031-NA,,,,,, +36424,Ag39,EA031,400-1000,EA031-5,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +36425,Ag4,EA031,400-1000,EA031-5,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +36426,Ag40,EA031,?,EA031-NA,,,,,, +36427,Ag41,EA031,?,EA031-NA,,,,,, +36428,Ag42,EA031,?,EA031-NA,,,,,, +36429,Ag43,EA031,?,EA031-NA,,,,,, +36430,Ag44,EA031,?,EA031-NA,,,,,, +36431,Ag45,EA031,5000-50000,EA031-7,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +36432,Ag46,EA031,?,EA031-NA,,,,,, +36433,Ag47,EA031,5000-50000,EA031-7,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +36434,Ag48,EA031,?,EA031-NA,,,,,, +36435,Ag49,EA031,?,EA031-NA,,,,,, +36436,Ag5,EA031,100-199,EA031-3,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +36437,Ag50,EA031,?,EA031-NA,,,,,, +36438,Ag51,EA031,?,EA031-NA,,,,,, +36439,Ag52,EA031,?,EA031-NA,,,,,, +36440,Ag53,EA031,400-1000,EA031-5,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +36441,Ag54,EA031,400-1000,EA031-5,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +36442,Ag6,EA031,?,EA031-NA,,,,,, +36443,Ag7,EA031,?,EA031-NA,,,,,, +36444,Ag8,EA031,50-99,EA031-2,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +36445,Ag9,EA031,?,EA031-NA,,,,,, +36446,Ah1,EA031,200-399,EA031-4,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36447,Ah10,EA031,200-399,EA031-4,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +36448,Ah11,EA031,?,EA031-NA,,,,,, +36449,Ah12,EA031,?,EA031-NA,,,,,, +36450,Ah13,EA031,?,EA031-NA,,,,,, +36451,Ah14,EA031,?,EA031-NA,,,,,, +36452,Ah15,EA031,?,EA031-NA,,,,,, +36453,Ah16,EA031,?,EA031-NA,,,,,, +36454,Ah17,EA031,?,EA031-NA,,,,,, +36455,Ah18,EA031,?,EA031-NA,,,,,, +36456,Ah19,EA031,?,EA031-NA,,,,,, +36457,Ah2,EA031,?,EA031-NA,,,,,, +36458,Ah20,EA031,?,EA031-NA,,,,,, +36459,Ah21,EA031,?,EA031-NA,,,,,, +36460,Ah22,EA031,?,EA031-NA,,,,,, +36461,Ah23,EA031,?,EA031-NA,,,,,, +36462,Ah24,EA031,?,EA031-NA,,,,,, +36463,Ah25,EA031,?,EA031-NA,,,,,, +36464,Ah26,EA031,?,EA031-NA,,,,,, +36465,Ah27,EA031,?,EA031-NA,,,,,, +36466,Ah28,EA031,?,EA031-NA,,,,,, +36467,Ah29,EA031,?,EA031-NA,,,,,, +36468,Ah3,EA031,200-399,EA031-4,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +36469,Ah30,EA031,?,EA031-NA,,,,,, +36470,Ah31,EA031,200-399,EA031-4,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p75, +36471,Ah32,EA031,?,EA031-NA,,,,,, +36472,Ah33,EA031,?,EA031-NA,,,,,, +36473,Ah34,EA031,?,EA031-NA,,,,,, +36474,Ah35,EA031,?,EA031-NA,,,,,, +36475,Ah36,EA031,?,EA031-NA,,,,,, +36476,Ah37,EA031,?,EA031-NA,,,,,, +36477,Ah38,EA031,?,EA031-NA,,,,,, +36478,Ah39,EA031,100-199,EA031-3,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +36479,Ah4,EA031,400-1000,EA031-5,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p75, +36480,Ah5,EA031,400-1000,EA031-5,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +36481,Ah6,EA031,?,EA031-NA,,,,,, +36482,Ah7,EA031,?,EA031-NA,,,,,, +36483,Ah8,EA031,100-199,EA031-3,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +36484,Ah9,EA031,200-399,EA031-4,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75, +36485,Ai1,EA031,?,EA031-NA,,,,,, +36486,Ai10,EA031,?,EA031-NA,,,,,, +36487,Ai11,EA031,?,EA031-NA,,,,,, +36488,Ai12,EA031,?,EA031-NA,,,,,, +36489,Ai13,EA031,?,EA031-NA,,,,,, +36490,Ai14,EA031,100-199,EA031-3,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +36491,Ai15,EA031,?,EA031-NA,,,,,, +36492,Ai16,EA031,?,EA031-NA,,,,,, +36493,Ai17,EA031,?,EA031-NA,,,,,, +36494,Ai18,EA031,?,EA031-NA,,,,,, +36495,Ai19,EA031,?,EA031-NA,,,,,, +36496,Ai2,EA031,?,EA031-NA,,,,,, +36497,Ai20,EA031,?,EA031-NA,,,,,, +36498,Ai21,EA031,5000-50000,EA031-7,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +36499,Ai22,EA031,?,EA031-NA,,,,,, +36500,Ai23,EA031,?,EA031-NA,,,,,, +36501,Ai24,EA031,?,EA031-NA,,,,,, +36502,Ai25,EA031,?,EA031-NA,,,,,, +36503,Ai26,EA031,?,EA031-NA,,,,,, +36504,Ai27,EA031,?,EA031-NA,,,,,, +36505,Ai28,EA031,200-399,EA031-4,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +36506,Ai29,EA031,?,EA031-NA,,,,,, +36507,Ai3,EA031,100-199,EA031-3,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +36508,Ai30,EA031,?,EA031-NA,,,,,, +36509,Ai31,EA031,?,EA031-NA,,,,,, +36510,Ai32,EA031,?,EA031-NA,,,,,, +36511,Ai33,EA031,?,EA031-NA,,,,,, +36512,Ai34,EA031,?,EA031-NA,,,,,, +36513,Ai35,EA031,?,EA031-NA,,,,,, +36514,Ai36,EA031,200-399,EA031-4,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +36515,Ai37,EA031,?,EA031-NA,,,,,, +36516,Ai38,EA031,?,EA031-NA,,,,,, +36517,Ai39,EA031,?,EA031-NA,,,,,, +36518,Ai4,EA031,?,EA031-NA,,,,,, +36519,Ai40,EA031,?,EA031-NA,,,,,, +36520,Ai41,EA031,?,EA031-NA,,,,,, +36521,Ai42,EA031,?,EA031-NA,,,,,, +36522,Ai43,EA031,?,EA031-NA,,,,,, +36523,Ai44,EA031,200-399,EA031-4,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +36524,Ai45,EA031,?,EA031-NA,,,,,, +36525,Ai46,EA031,?,EA031-NA,,,,,, +36526,Ai47,EA031,?,EA031-NA,,,,,, +36527,Ai5,EA031,50-99,EA031-2,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +36528,Ai6,EA031,400-1000,EA031-5,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +36529,Ai7,EA031,200-399,EA031-4,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +36530,Ai8,EA031,?,EA031-NA,,,,,, +36531,Ai9,EA031,200-399,EA031-4,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +36532,Aj1,EA031,?,EA031-NA,,,,,, +36533,Aj10,EA031,?,EA031-NA,,,,,, +36534,Aj11,EA031,?,EA031-NA,,,,,, +36535,Aj12,EA031,400-1000,EA031-5,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +36536,Aj13,EA031,?,EA031-NA,,,,,, +36537,Aj14,EA031,?,EA031-NA,,,,,, +36538,Aj15,EA031,?,EA031-NA,,,,,, +36539,Aj16,EA031,?,EA031-NA,,,,,, +36540,Aj17,EA031,?,EA031-NA,,,,,, +36541,Aj18,EA031,?,EA031-NA,,,,,, +36542,Aj19,EA031,?,EA031-NA,,,,,, +36543,Aj2,EA031,50-99,EA031-2,"50-99 (code ""2"") or 100-199 (code ""3"") if several associated camps or kraals are considered a community",baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +36544,Aj20,EA031,?,EA031-NA,,,,,, +36545,Aj21,EA031,?,EA031-NA,,,,,, +36546,Aj22,EA031,?,EA031-NA,,,,,, +36547,Aj23,EA031,?,EA031-NA,,,,,, +36548,Aj24,EA031,?,EA031-NA,,,,,, +36549,Aj25,EA031,?,EA031-NA,,,,,, +36550,Aj26,EA031,?,EA031-NA,,,,,, +36551,Aj27,EA031,?,EA031-NA,,,,,, +36552,Aj28,EA031,?,EA031-NA,,,,,, +36553,Aj29,EA031,<50,EA031-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +36554,Aj3,EA031,?,EA031-NA,,,,,, +36555,Aj30,EA031,?,EA031-NA,,,,,, +36556,Aj31,EA031,?,EA031-NA,,,,,, +36557,Aj4,EA031,100-199,EA031-3,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +36558,Aj5,EA031,?,EA031-NA,,,,,, +36559,Aj6,EA031,100-199,EA031-3,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +36560,Aj7,EA031,?,EA031-NA,,,,,, +36561,Aj8,EA031,?,EA031-NA,,,,,, +36562,Aj9,EA031,?,EA031-NA,,,,,, +36563,Ca1,EA031,1000-5000,EA031-6,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +36564,Ca10,EA031,?,EA031-NA,,,,,, +36565,Ca11,EA031,?,EA031-NA,,,,,, +36566,Ca12,EA031,?,EA031-NA,,,,,, +36567,Ca13,EA031,?,EA031-NA,,,,,, +36568,Ca14,EA031,?,EA031-NA,,,,,, +36569,Ca15,EA031,?,EA031-NA,,,,,, +36570,Ca16,EA031,?,EA031-NA,,,,,, +36571,Ca17,EA031,?,EA031-NA,,,,,, +36572,Ca18,EA031,200-399,EA031-4,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +36573,Ca19,EA031,?,EA031-NA,,,,,, +36574,Ca2,EA031,<50,EA031-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +36575,Ca20,EA031,?,EA031-NA,,,,,, +36576,Ca21,EA031,?,EA031-NA,,,,,, +36577,Ca22,EA031,?,EA031-NA,,,,,, +36578,Ca23,EA031,?,EA031-NA,,,,,, +36579,Ca24,EA031,?,EA031-NA,,,,,, +36580,Ca25,EA031,?,EA031-NA,,,,,, +36581,Ca26,EA031,?,EA031-NA,,,,,, +36582,Ca27,EA031,?,EA031-NA,,,,,, +36583,Ca28,EA031,?,EA031-NA,,,,,, +36584,Ca29,EA031,?,EA031-NA,,,,,, +36585,Ca3,EA031,5000-50000,EA031-7,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +36586,Ca30,EA031,?,EA031-NA,,,,,, +36587,Ca31,EA031,?,EA031-NA,,,,,, +36588,Ca32,EA031,?,EA031-NA,,,,,, +36589,Ca33,EA031,?,EA031-NA,,,,,, +36590,Ca34,EA031,<50,EA031-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +36591,Ca35,EA031,?,EA031-NA,,,,,, +36592,Ca36,EA031,?,EA031-NA,,,,,, +36593,Ca37,EA031,?,EA031-NA,,,,,, +36594,Ca38,EA031,100-199,EA031-3,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +36595,Ca39,EA031,?,EA031-NA,,,,,, +36596,Ca4,EA031,100-199,EA031-3,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p79, +36597,Ca40,EA031,?,EA031-NA,,,,,, +36598,Ca41,EA031,?,EA031-NA,,,,,, +36599,Ca42,EA031,?,EA031-NA,,,,,, +36600,Ca43,EA031,?,EA031-NA,,,,,, +36601,Ca5,EA031,?,EA031-NA,,,,,, +36602,Ca6,EA031,100-199,EA031-3,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +36603,Ca7,EA031,50000+,EA031-8,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +36604,Ca8,EA031,?,EA031-NA,,,,,, +36605,Ca9,EA031,?,EA031-NA,,,,,, +36606,Cb1,EA031,?,EA031-NA,,,,,, +36607,Cb10,EA031,100-199,EA031-3,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +36608,Cb11,EA031,?,EA031-NA,,,,,, +36609,Cb12,EA031,?,EA031-NA,,,,,, +36610,Cb13,EA031,?,EA031-NA,,,,,, +36611,Cb14,EA031,?,EA031-NA,,,,,, +36612,Cb15,EA031,50-99,EA031-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +36613,Cb16,EA031,?,EA031-NA,,,,,, +36614,Cb17,EA031,?,EA031-NA,,,,,, +36615,Cb18,EA031,?,EA031-NA,,,,,, +36616,Cb19,EA031,5000-50000,EA031-7,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +36617,Cb2,EA031,50000+,EA031-8,"But 100-199 (code ""3"") if Dakar is not considered an indigenous city",ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +36618,Cb20,EA031,?,EA031-NA,,,,,, +36619,Cb21,EA031,?,EA031-NA,,,,,, +36620,Cb22,EA031,?,EA031-NA,,,,,, +36621,Cb23,EA031,?,EA031-NA,,,,,, +36622,Cb24,EA031,50-99,EA031-2,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +36623,Cb25,EA031,?,EA031-NA,,,,,, +36624,Cb26,EA031,50000+,EA031-8,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +36625,Cb27,EA031,?,EA031-NA,,,,,, +36626,Cb28,EA031,?,EA031-NA,,,,,, +36627,Cb29,EA031,?,EA031-NA,,,,,, +36628,Cb3,EA031,5000-50000,EA031-7,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +36629,Cb4,EA031,?,EA031-NA,,,,,, +36630,Cb5,EA031,?,EA031-NA,,,,,, +36631,Cb6,EA031,?,EA031-NA,,,,,, +36632,Cb7,EA031,?,EA031-NA,,,,,, +36633,Cb8,EA031,50-99,EA031-2,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +36634,Cb9,EA031,50000+,EA031-8,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +36635,Cc1,EA031,?,EA031-NA,,,,,, +36636,Cc10,EA031,50-99,EA031-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +36637,Cc11,EA031,?,EA031-NA,,,,,, +36638,Cc12,EA031,?,EA031-NA,,,,,, +36639,Cc13,EA031,?,EA031-NA,,,,,, +36640,Cc14,EA031,50-99,EA031-2,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +36641,Cc15,EA031,?,EA031-NA,,,,,, +36642,Cc16,EA031,50-99,EA031-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +36643,Cc17,EA031,?,EA031-NA,,,,,, +36644,Cc18,EA031,?,EA031-NA,,,,,, +36645,Cc19,EA031,?,EA031-NA,,,,,, +36646,Cc2,EA031,50-99,EA031-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +36647,Cc20,EA031,?,EA031-NA,,,,,, +36648,Cc3,EA031,1000-5000,EA031-6,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +36649,Cc4,EA031,5000-50000,EA031-7,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +36650,Cc5,EA031,?,EA031-NA,,,,,, +36651,Cc6,EA031,?,EA031-NA,,,,,, +36652,Cc7,EA031,?,EA031-NA,,,,,, +36653,Cc8,EA031,?,EA031-NA,,,,,, +36654,Cc9,EA031,50-99,EA031-2,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +36655,Cd1,EA031,50-99,EA031-2,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +36656,Cd10,EA031,?,EA031-NA,,,,,, +36657,Cd11,EA031,?,EA031-NA,,,,,, +36658,Cd12,EA031,50000+,EA031-8,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +36659,Cd13,EA031,?,EA031-NA,,,,,, +36660,Cd14,EA031,?,EA031-NA,,,,,, +36661,Cd15,EA031,5000-50000,EA031-7,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +36662,Cd16,EA031,50000+,EA031-8,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +36663,Cd17,EA031,?,EA031-NA,,,,,, +36664,Cd18,EA031,?,EA031-NA,,,,,, +36665,Cd19,EA031,5000-50000,EA031-7,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +36666,Cd2,EA031,50000+,EA031-8,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +36667,Cd20,EA031,?,EA031-NA,,,,,, +36668,Cd21,EA031,50000+,EA031-8,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +36669,Cd3,EA031,5000-50000,EA031-7,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +36670,Cd4,EA031,400-1000,EA031-5,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +36671,Cd5,EA031,?,EA031-NA,,,,,, +36672,Cd6,EA031,50000+,EA031-8,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +36673,Cd7,EA031,?,EA031-NA,,,,,, +36674,Cd8,EA031,?,EA031-NA,,,,,, +36675,Cd9,EA031,?,EA031-NA,,,,,, +36676,Ce1,EA031,200-399,EA031-4,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +36677,Ce2,EA031,?,EA031-NA,,,,,, +36678,Ce3,EA031,50000+,EA031-8,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +36679,Ce4,EA031,?,EA031-NA,,,,,, +36680,Ce5,EA031,50000+,EA031-8,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +36681,Ce6,EA031,50000+,EA031-8,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +36682,Ce7,EA031,50000+,EA031-8,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +36683,Ce8,EA031,50000+,EA031-8,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +36684,Cf1,EA031,50000+,EA031-8,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +36685,Cf2,EA031,?,EA031-NA,,,,,, +36686,Cf3,EA031,100-199,EA031-3,,munch1945,,1930,EthnographicAtlas_1967_p83, +36687,Cf4,EA031,50000+,EA031-8,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +36688,Cf5,EA031,50000+,EA031-8,,miner1939,,1930,EthnographicAtlas_1967_p83, +36689,Cg1,EA031,50000+,EA031-8,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +36690,Cg2,EA031,?,EA031-NA,,,,,, +36691,Cg3,EA031,50000+,EA031-8,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +36692,Cg4,EA031,<50,EA031-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +36693,Cg5,EA031,50000+,EA031-8,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +36694,Ch1,EA031,50000+,EA031-8,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +36695,Ch10,EA031,?,EA031-NA,,,,,, +36696,Ch11,EA031,50000+,EA031-8,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +36697,Ch2,EA031,5000-50000,EA031-7,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +36698,Ch3,EA031,50000+,EA031-8,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +36699,Ch4,EA031,400-1000,EA031-5,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p83, +36700,Ch5,EA031,50000+,EA031-8,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +36701,Ch6,EA031,5000-50000,EA031-7,,ember1954,,1910,EthnographicAtlas_1967_p83, +36702,Ch7,EA031,50000+,EA031-8,,friedrich1954,,1930,EthnographicAtlas_1967_p83, +36703,Ch8,EA031,50000+,EA031-8,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +36704,Ch9,EA031,50000+,EA031-8,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +36705,Ci1,EA031,?,EA031-NA,,,,,, +36706,Ci10,EA031,50000+,EA031-8,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +36707,Ci11,EA031,?,EA031-NA,,,,,, +36708,Ci12,EA031,200-399,EA031-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +36709,Ci2,EA031,?,EA031-NA,,,,,, +36710,Ci3,EA031,?,EA031-NA,,,,,, +36711,Ci4,EA031,?,EA031-NA,,,,,, +36712,Ci5,EA031,50000+,EA031-8,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +36713,Ci6,EA031,?,EA031-NA,,,,,, +36714,Ci7,EA031,?,EA031-NA,,,,,, +36715,Ci8,EA031,50000+,EA031-8,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +36716,Ci9,EA031,?,EA031-NA,,,,,, +36717,Cj1,EA031,50000+,EA031-8,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +36718,Cj10,EA031,5000-50000,EA031-7,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +36719,Cj2,EA031,?,EA031-NA,,,,,, +36720,Cj3,EA031,5000-50000,EA031-7,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +36721,Cj4,EA031,50000+,EA031-8,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +36722,Cj5,EA031,?,EA031-NA,,,,,, +36723,Cj6,EA031,50000+,EA031-8,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +36724,Cj7,EA031,50000+,EA031-8,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p87, +36725,Cj8,EA031,400-1000,EA031-5,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +36726,Cj9,EA031,?,EA031-NA,,,,,, +36727,Ea1,EA031,50000+,EA031-8,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +36728,Ea10,EA031,<50,EA031-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +36729,Ea11,EA031,?,EA031-NA,,,,,, +36730,Ea12,EA031,400-1000,EA031-5,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +36731,Ea13,EA031,50000+,EA031-8,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +36732,Ea2,EA031,400-1000,EA031-5,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +36733,Ea3,EA031,100-199,EA031-3,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +36734,Ea4,EA031,?,EA031-NA,,,,,, +36735,Ea5,EA031,400-1000,EA031-5,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +36736,Ea6,EA031,400-1000,EA031-5,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +36737,Ea7,EA031,100-199,EA031-3,,schurmann1962,,1950,EthnographicAtlas_1967_p87, +36738,Ea8,EA031,?,EA031-NA,,,,,, +36739,Ea9,EA031,50000+,EA031-8,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +36740,Eb1,EA031,50-99,EA031-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +36741,Eb2,EA031,?,EA031-NA,,,,,, +36742,Eb3,EA031,<50,EA031-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p87, +36743,Eb4,EA031,?,EA031-NA,,,,,, +36744,Eb5,EA031,?,EA031-NA,,,,,, +36745,Eb6,EA031,?,EA031-NA,,,,,, +36746,Eb7,EA031,100-199,EA031-3,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +36747,Eb8,EA031,?,EA031-NA,,,,,, +36748,Ec1,EA031,50-99,EA031-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +36749,Ec10,EA031,?,EA031-NA,,,,,, +36750,Ec11,EA031,?,EA031-NA,,,,,, +36751,Ec2,EA031,50-99,EA031-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36752,Ec3,EA031,<50,EA031-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +36753,Ec4,EA031,<50,EA031-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +36754,Ec5,EA031,100-199,EA031-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +36755,Ec6,EA031,<50,EA031-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +36756,Ec7,EA031,<50,EA031-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +36757,Ec8,EA031,50-99,EA031-2,,shimkin1939,,1900,EthnographicAtlas_1967_p87, +36758,Ec9,EA031,?,EA031-NA,,,,,, +36759,Ed1,EA031,50000+,EA031-8,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +36760,Ed10,EA031,50000+,EA031-8,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +36761,Ed13,EA031,?,EA031-NA,,,,,, +36762,Ed14,EA031,?,EA031-NA,,,,,, +36763,Ed15a,EA031,?,EA031-NA,,,,,, +36764,Ed15b,EA031,50000+,EA031-8,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +36765,Ed16,EA031,?,EA031-NA,,,,,, +36766,Ed2,EA031,100-199,EA031-3,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +36767,Ed3,EA031,?,EA031-NA,,,,,, +36768,Ed4,EA031,100-199,EA031-3,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +36769,Ed5,EA031,50000+,EA031-8,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36770,Ed6,EA031,50000+,EA031-8,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +36771,Ed7,EA031,50000+,EA031-8,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +36772,Ed8,EA031,400-1000,EA031-5,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +36773,Ed9,EA031,100-199,EA031-3,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +36774,Ee1,EA031,100-199,EA031-3,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +36775,Ee2,EA031,200-399,EA031-4,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +36776,Ee3,EA031,100-199,EA031-3,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +36777,Ee4,EA031,5000-50000,EA031-7,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +36778,Ee5,EA031,400-1000,EA031-5,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +36779,Ee6,EA031,200-399,EA031-4,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +36780,Ee7,EA031,?,EA031-NA,,,,,, +36781,Ee8,EA031,?,EA031-NA,,,,,, +36782,Ef1,EA031,?,EA031-NA,,,,,, +36783,Ef10,EA031,?,EA031-NA,,,,,, +36784,Ef11,EA031,50000+,EA031-8,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +36785,Ef2,EA031,50000+,EA031-8,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +36786,Ef3,EA031,?,EA031-NA,,,,,, +36787,Ef4,EA031,?,EA031-NA,,,,,, +36788,Ef5,EA031,50-99,EA031-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +36789,Ef6,EA031,?,EA031-NA,,,,,, +36790,Ef7,EA031,50000+,EA031-8,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +36791,Ef8,EA031,50000+,EA031-8,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +36792,Ef9,EA031,50000+,EA031-8,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36793,Eg1,EA031,<50,EA031-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36794,Eg10,EA031,50000+,EA031-8,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +36795,Eg11,EA031,?,EA031-NA,,,,,, +36796,Eg12,EA031,?,EA031-NA,,,,,, +36797,Eg13,EA031,?,EA031-NA,,,,,, +36798,Eg14,EA031,50-99,EA031-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +36799,Eg2,EA031,50000+,EA031-8,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +36800,Eg3,EA031,50-99,EA031-2,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +36801,Eg4,EA031,<50,EA031-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +36802,Eg5,EA031,100-199,EA031-3,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +36803,Eg6,EA031,50000+,EA031-8,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +36804,Eg7,EA031,50-99,EA031-2,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +36805,Eg8,EA031,?,EA031-NA,,,,,, +36806,Eg9,EA031,50-99,EA031-2,,elwin1939,,1930,EthnographicAtlas_1967_p91, +36807,Eh1,EA031,<50,EA031-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +36808,Eh10,EA031,?,EA031-NA,,,,,, +36809,Eh2,EA031,5000-50000,EA031-7,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +36810,Eh3,EA031,100-199,EA031-3,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +36811,Eh4,EA031,<50,EA031-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36812,Eh5,EA031,<50,EA031-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +36813,Eh6,EA031,50000+,EA031-8,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +36814,Eh7,EA031,?,EA031-NA,,,,,, +36815,Eh8,EA031,200-399,EA031-4,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91, +36816,Eh9,EA031,?,EA031-NA,,,,,, +36817,Ei1,EA031,100-199,EA031-3,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36818,Ei10,EA031,?,EA031-NA,,,,,, +36819,Ei11,EA031,50-99,EA031-2,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +36820,Ei12,EA031,?,EA031-NA,,,,,, +36821,Ei13,EA031,1000-5000,EA031-6,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +36822,Ei14,EA031,400-1000,EA031-5,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +36823,Ei15,EA031,?,EA031-NA,,,,,, +36824,Ei16,EA031,200-399,EA031-4,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +36825,Ei17,EA031,?,EA031-NA,,,,,, +36826,Ei18,EA031,50-99,EA031-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +36827,Ei19,EA031,?,EA031-NA,,,,,, +36828,Ei2,EA031,?,EA031-NA,,,,,, +36829,Ei20,EA031,?,EA031-NA,,,,,, +36830,Ei3,EA031,50000+,EA031-8,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +36831,Ei4,EA031,?,EA031-NA,,,,,, +36832,Ei5,EA031,100-199,EA031-3,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +36833,Ei6,EA031,50-99,EA031-2,,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +36834,Ei7,EA031,?,EA031-NA,,,,,, +36835,Ei8,EA031,50-99,EA031-2,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +36836,Ei9,EA031,?,EA031-NA,,,,,, +36837,Ej1,EA031,50-99,EA031-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +36838,Ej10,EA031,?,EA031-NA,,,,,, +36839,Ej11,EA031,400-1000,EA031-5,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +36840,Ej12,EA031,200-399,EA031-4,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +36841,Ej13,EA031,?,EA031-NA,,,,,, +36842,Ej14,EA031,50-99,EA031-2,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36843,Ej15,EA031,50000+,EA031-8,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +36844,Ej16,EA031,5000-50000,EA031-7,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +36845,Ej2,EA031,100-199,EA031-3,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +36846,Ej3,EA031,<50,EA031-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +36847,Ej4,EA031,50000+,EA031-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +36848,Ej5,EA031,50000+,EA031-8,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +36849,Ej6,EA031,?,EA031-NA,,,,,, +36850,Ej7,EA031,200-399,EA031-4,,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +36851,Ej8,EA031,?,EA031-NA,,,,,, +36852,Ej9,EA031,1000-5000,EA031-6,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +36853,Ia1,EA031,100-199,EA031-3,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +36854,Ia10,EA031,?,EA031-NA,,,,,, +36855,Ia11,EA031,400-1000,EA031-5,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +36856,Ia12,EA031,50000+,EA031-8,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +36857,Ia13,EA031,200-399,EA031-4,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +36858,Ia14,EA031,200-399,EA031-4,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p95, +36859,Ia15,EA031,?,EA031-NA,,,,,, +36860,Ia16,EA031,400-1000,EA031-5,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +36861,Ia17,EA031,?,EA031-NA,,,,,, +36862,Ia18,EA031,?,EA031-NA,,,,,, +36863,Ia2,EA031,1000-5000,EA031-6,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +36864,Ia3,EA031,100-199,EA031-3,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +36865,Ia4,EA031,<50,EA031-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +36866,Ia5,EA031,100-199,EA031-3,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +36867,Ia6,EA031,200-399,EA031-4,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36868,Ia7,EA031,?,EA031-NA,,,,,, +36869,Ia8,EA031,400-1000,EA031-5,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +36870,Ia9,EA031,400-1000,EA031-5,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +36871,Ib1,EA031,?,EA031-NA,,,,,, +36872,Ib2,EA031,5000-50000,EA031-7,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36873,Ib3,EA031,200-399,EA031-4,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +36874,Ib4,EA031,?,EA031-NA,,,,,, +36875,Ib5,EA031,200-399,EA031-4,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +36876,Ib6,EA031,?,EA031-NA,,,,,, +36877,Ib7,EA031,?,EA031-NA,,,,,, +36878,Ib8,EA031,?,EA031-NA,,,,,, +36879,Ib9,EA031,?,EA031-NA,,,,,, +36880,Ic1,EA031,100-199,EA031-3,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36881,Ic10,EA031,?,EA031-NA,,,,,, +36882,Ic11,EA031,1000-5000,EA031-6,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36883,Ic12,EA031,400-1000,EA031-5,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +36884,Ic13,EA031,?,EA031-NA,,,,,, +36885,Ic2,EA031,100-199,EA031-3,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +36886,Ic3,EA031,?,EA031-NA,,,,,, +36887,Ic4,EA031,?,EA031-NA,,,,,, +36888,Ic5,EA031,?,EA031-NA,,,,,, +36889,Ic6,EA031,?,EA031-NA,,,,,, +36890,Ic7,EA031,400-1000,EA031-5,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +36891,Ic8,EA031,?,EA031-NA,,,,,, +36892,Ic9,EA031,?,EA031-NA,,,,,, +36893,Id1,EA031,<50,EA031-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +36894,Id10,EA031,100-199,EA031-3,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +36895,Id11,EA031,50-99,EA031-2,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +36896,Id12,EA031,?,EA031-NA,,,,,, +36897,Id13,EA031,<50,EA031-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +36898,Id2,EA031,<50,EA031-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +36899,Id3,EA031,100-199,EA031-3,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +36900,Id4,EA031,<50,EA031-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +36901,Id5,EA031,<50,EA031-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +36902,Id6,EA031,<50,EA031-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p95, +36903,Id7,EA031,<50,EA031-1,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +36904,Id8,EA031,<50,EA031-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +36905,Id9,EA031,?,EA031-NA,,,,,, +36906,Ie1,EA031,50-99,EA031-2,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36907,Ie10,EA031,400-1000,EA031-5,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +36908,Ie11,EA031,200-399,EA031-4,,bowers1964,,1950,EthnographicAtlas_1967_p95, +36909,Ie12,EA031,?,EA031-NA,,,,,, +36910,Ie13,EA031,?,EA031-NA,,,,,, +36911,Ie14,EA031,?,EA031-NA,,,,,, +36912,Ie15,EA031,?,EA031-NA,,,,,, +36913,Ie16,EA031,?,EA031-NA,,,,,, +36914,Ie17,EA031,200-399,EA031-4,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +36915,Ie18,EA031,200-399,EA031-4,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +36916,Ie19,EA031,200-399,EA031-4,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +36917,Ie2,EA031,50-99,EA031-2,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +36918,Ie20,EA031,?,EA031-NA,,,,,, +36919,Ie21,EA031,?,EA031-NA,,,,,, +36920,Ie22,EA031,200-399,EA031-4,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +36921,Ie23,EA031,<50,EA031-1,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +36922,Ie24,EA031,?,EA031-NA,,,,,, +36923,Ie25,EA031,?,EA031-NA,,,,,, +36924,Ie26,EA031,100-199,EA031-3,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +36925,Ie27,EA031,?,EA031-NA,,,,,, +36926,Ie28,EA031,?,EA031-NA,,,,,, +36927,Ie29,EA031,?,EA031-NA,,,,,, +36928,Ie3,EA031,?,EA031-NA,,,,,, +36929,Ie30,EA031,100-199,EA031-3,,pouwer1955,,1950,EthnographicAtlas_1967_p99, +36930,Ie31,EA031,100-199,EA031-3,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +36931,Ie32,EA031,400-1000,EA031-5,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +36932,Ie33,EA031,50-99,EA031-2,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +36933,Ie34,EA031,?,EA031-NA,,,,,, +36934,Ie35,EA031,200-399,EA031-4,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +36935,Ie36,EA031,?,EA031-NA,,,,,, +36936,Ie37,EA031,?,EA031-NA,,,,,, +36937,Ie38,EA031,200-399,EA031-4,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +36938,Ie39,EA031,?,EA031-NA,,,,,, +36939,Ie4,EA031,50-99,EA031-2,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36940,Ie5,EA031,50-99,EA031-2,,williams1936,,1930,EthnographicAtlas_1967_p95, +36941,Ie6,EA031,?,EA031-NA,,,,,, +36942,Ie7,EA031,200-399,EA031-4,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +36943,Ie8,EA031,400-1000,EA031-5,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +36944,Ie9,EA031,50-99,EA031-2,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +36945,If1,EA031,?,EA031-NA,,,,,, +36946,If10,EA031,?,EA031-NA,,,,,, +36947,If11,EA031,?,EA031-NA,,,,,, +36948,If12,EA031,100-199,EA031-3,,mason1954,,1940,EthnographicAtlas_1967_p99, +36949,If13,EA031,200-399,EA031-4,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p99, +36950,If14,EA031,200-399,EA031-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +36951,If15,EA031,?,EA031-NA,,,,,, +36952,If16,EA031,200-399,EA031-4,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +36953,If17,EA031,100-199,EA031-3,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +36954,If2,EA031,100-199,EA031-3,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +36955,If3,EA031,100-199,EA031-3,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +36956,If4,EA031,50-99,EA031-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +36957,If5,EA031,<50,EA031-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +36958,If6,EA031,50-99,EA031-2,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +36959,If7,EA031,200-399,EA031-4,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p99, +36960,If8,EA031,400-1000,EA031-5,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +36961,If9,EA031,50-99,EA031-2,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +36962,Ig1,EA031,?,EA031-NA,,,,,, +36963,Ig10,EA031,50-99,EA031-2,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +36964,Ig11,EA031,<50,EA031-1,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +36965,Ig12,EA031,?,EA031-NA,,,,,, +36966,Ig13,EA031,?,EA031-NA,,,,,, +36967,Ig14,EA031,200-399,EA031-4,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +36968,Ig15,EA031,?,EA031-NA,,,,,, +36969,Ig16,EA031,?,EA031-NA,,,,,, +36970,Ig17,EA031,?,EA031-NA,,,,,, +36971,Ig18,EA031,?,EA031-NA,,,,,, +36972,Ig19,EA031,?,EA031-NA,,,,,, +36973,Ig2,EA031,100-199,EA031-3,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +36974,Ig20,EA031,100-199,EA031-3,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +36975,Ig21,EA031,?,EA031-NA,,,,,, +36976,Ig3,EA031,100-199,EA031-3,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +36977,Ig4,EA031,200-399,EA031-4,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +36978,Ig5,EA031,?,EA031-NA,,,,,, +36979,Ig6,EA031,100-199,EA031-3,,ivens1927,,1900,EthnographicAtlas_1967_p99, +36980,Ig7,EA031,100-199,EA031-3,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +36981,Ig8,EA031,?,EA031-NA,,,,,, +36982,Ig9,EA031,100-199,EA031-3,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +36983,Ih1,EA031,?,EA031-NA,,,,,, +36984,Ih10,EA031,?,EA031-NA,,,,,, +36985,Ih11,EA031,?,EA031-NA,,,,,, +36986,Ih12,EA031,?,EA031-NA,,,,,, +36987,Ih13,EA031,?,EA031-NA,,,,,, +36988,Ih14,EA031,1000-5000,EA031-6,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +36989,Ih2,EA031,?,EA031-NA,,,,,, +36990,Ih3,EA031,50-99,EA031-2,"50-99 (code ""2"") or 100-199 (code ""3"") before recent depopulation",lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +36991,Ih4,EA031,50-99,EA031-2,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +36992,Ih5,EA031,?,EA031-NA,,,,,, +36993,Ih6,EA031,?,EA031-NA,,,,,, +36994,Ih7,EA031,?,EA031-NA,,,,,, +36995,Ih8,EA031,50-99,EA031-2,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +36996,Ih9,EA031,?,EA031-NA,,,,,, +36997,Ii1,EA031,50-99,EA031-2,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +36998,Ii10,EA031,?,EA031-NA,,,,,, +36999,Ii12,EA031,?,EA031-NA,,,,,, +37000,Ii13,EA031,?,EA031-NA,,,,,, +37001,Ii14,EA031,200-399,EA031-4,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +37002,Ii2,EA031,400-1000,EA031-5,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +37003,Ii3,EA031,100-199,EA031-3,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +37004,Ii4,EA031,?,EA031-NA,,,,,, +37005,Ii5,EA031,?,EA031-NA,,,,,, +37006,Ii6,EA031,?,EA031-NA,,,,,, +37007,Ii7,EA031,?,EA031-NA,,,,,, +37008,Ii8,EA031,?,EA031-NA,,,,,, +37009,Ii9,EA031,200-399,EA031-4,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +37010,Ij1,EA031,?,EA031-NA,,,,,, +37011,Ij10,EA031,?,EA031-NA,,,,,, +37012,Ij2,EA031,200-399,EA031-4,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +37013,Ij3,EA031,50-99,EA031-2,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +37014,Ij4,EA031,?,EA031-NA,,,,,, +37015,Ij5,EA031,?,EA031-NA,,,,,, +37016,Ij6,EA031,?,EA031-NA,,,,,, +37017,Ij7,EA031,?,EA031-NA,,,,,, +37018,Ij8,EA031,?,EA031-NA,,,,,, +37019,Ij9,EA031,?,EA031-NA,,,,,, +37020,Na1,EA031,<50,EA031-1,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +37021,Na10,EA031,?,EA031-NA,,,,,, +37022,Na11,EA031,100-199,EA031-3,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +37023,Na12,EA031,50-99,EA031-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +37024,Na13,EA031,<50,EA031-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +37025,Na14,EA031,<50,EA031-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +37026,Na15,EA031,?,EA031-NA,,,,,, +37027,Na16,EA031,?,EA031-NA,,,,,, +37028,Na17,EA031,50-99,EA031-2,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37029,Na19,EA031,200-399,EA031-4,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +37030,Na2,EA031,100-199,EA031-3,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +37031,Na20,EA031,<50,EA031-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +37032,Na21,EA031,<50,EA031-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +37033,Na22,EA031,<50,EA031-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +37034,Na23,EA031,<50,EA031-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +37035,Na24,EA031,<50,EA031-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +37036,Na25,EA031,?,EA031-NA,,,,,, +37037,Na26,EA031,?,EA031-NA,,,,,, +37038,Na27,EA031,?,EA031-NA,,,,,, +37039,Na28,EA031,?,EA031-NA,,,,,, +37040,Na29,EA031,<50,EA031-1,,goddard1916,,1850,EthnographicAtlas_1967_p103, +37041,Na3,EA031,<50,EA031-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +37042,Na30,EA031,<50,EA031-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +37043,Na31,EA031,?,EA031-NA,,,,,, +37044,Na32,EA031,100-199,EA031-3,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +37045,Na33,EA031,50-99,EA031-2,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +37046,Na34,EA031,<50,EA031-1,"The ""co-residential group,"" not the band",dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +37047,Na35,EA031,50-99,EA031-2,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +37048,Na36,EA031,50-99,EA031-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +37049,Na37,EA031,50-99,EA031-2,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +37050,Na38,EA031,50-99,EA031-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +37051,Na39,EA031,50-99,EA031-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +37052,Na4,EA031,50-99,EA031-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +37053,Na40,EA031,?,EA031-NA,,,,,, +37054,Na41,EA031,<50,EA031-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +37055,Na42,EA031,?,EA031-NA,,,,,, +37056,Na43,EA031,<50,EA031-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +37057,Na44,EA031,<50,EA031-1,"But 100-199 (code ""3"") today",graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +37058,Na45,EA031,<50,EA031-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +37059,Na5,EA031,<50,EA031-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +37060,Na6,EA031,?,EA031-NA,,,,,, +37061,Na7,EA031,50-99,EA031-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +37062,Na8,EA031,?,EA031-NA,,,,,, +37063,Na9,EA031,100-199,EA031-3,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37064,Nb1,EA031,?,EA031-NA,,,,,, +37065,Nb10,EA031,?,EA031-NA,,,,,, +37066,Nb11,EA031,?,EA031-NA,,,,,, +37067,Nb12,EA031,?,EA031-NA,,,,,, +37068,Nb13,EA031,?,EA031-NA,,,,,, +37069,Nb14,EA031,?,EA031-NA,,,,,, +37070,Nb15,EA031,100-199,EA031-3,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +37071,Nb16,EA031,50-99,EA031-2,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +37072,Nb17,EA031,<50,EA031-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +37073,Nb18,EA031,<50,EA031-1,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +37074,Nb19,EA031,?,EA031-NA,,,,,, +37075,Nb2,EA031,50-99,EA031-2,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +37076,Nb20,EA031,?,EA031-NA,,,,,, +37077,Nb21,EA031,?,EA031-NA,,,,,, +37078,Nb22,EA031,200-399,EA031-4,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +37079,Nb23,EA031,50-99,EA031-2,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +37080,Nb24,EA031,100-199,EA031-3,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +37081,Nb25,EA031,50-99,EA031-2,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +37082,Nb26,EA031,?,EA031-NA,,,,,, +37083,Nb27,EA031,<50,EA031-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +37084,Nb28,EA031,?,EA031-NA,,,,,, +37085,Nb29,EA031,?,EA031-NA,,,,,, +37086,Nb3,EA031,?,EA031-NA,,,,,, +37087,Nb30,EA031,?,EA031-NA,,,,,, +37088,Nb31,EA031,?,EA031-NA,,,,,, +37089,Nb32,EA031,<50,EA031-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +37090,Nb33,EA031,<50,EA031-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +37091,Nb34,EA031,?,EA031-NA,,,,,, +37092,Nb35,EA031,50-99,EA031-2,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +37093,Nb36,EA031,<50,EA031-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +37094,Nb37,EA031,?,EA031-NA,,,,,, +37095,Nb38,EA031,?,EA031-NA,,,,,, +37096,Nb39,EA031,50-99,EA031-2,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +37097,Nb4,EA031,<50,EA031-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +37098,Nb5,EA031,<50,EA031-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +37099,Nb6,EA031,?,EA031-NA,,,,,, +37100,Nb7,EA031,?,EA031-NA,,,,,, +37101,Nb8,EA031,200-399,EA031-4,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +37102,Nb9,EA031,50-99,EA031-2,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +37103,Nc1,EA031,100-199,EA031-3,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +37104,Nc10,EA031,?,EA031-NA,,,,,, +37105,Nc11,EA031,?,EA031-NA,,,,,, +37106,Nc12,EA031,<50,EA031-1,"For the hamlet, but 100-199 (code ""3"") for the hamlet cluster",dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +37107,Nc13,EA031,?,EA031-NA,,,,,, +37108,Nc14,EA031,50-99,EA031-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +37109,Nc15,EA031,?,EA031-NA,,,,,, +37110,Nc16,EA031,?,EA031-NA,,,,,, +37111,Nc17,EA031,?,EA031-NA,,,,,, +37112,Nc18,EA031,100-199,EA031-3,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +37113,Nc19,EA031,?,EA031-NA,,,,,, +37114,Nc2,EA031,<50,EA031-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +37115,Nc20,EA031,100-199,EA031-3,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +37116,Nc21,EA031,?,EA031-NA,,,,,, +37117,Nc22,EA031,?,EA031-NA,,,,,, +37118,Nc23,EA031,50-99,EA031-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +37119,Nc24,EA031,?,EA031-NA,,,,,, +37120,Nc25,EA031,?,EA031-NA,,,,,, +37121,Nc26,EA031,100-199,EA031-3,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +37122,Nc27,EA031,?,EA031-NA,,,,,, +37123,Nc28,EA031,?,EA031-NA,,,,,, +37124,Nc29,EA031,?,EA031-NA,,,,,, +37125,Nc3,EA031,?,EA031-NA,,,,,, +37126,Nc30,EA031,?,EA031-NA,,,,,, +37127,Nc31,EA031,?,EA031-NA,,,,,, +37128,Nc32,EA031,?,EA031-NA,,,,,, +37129,Nc33,EA031,100-199,EA031-3,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +37130,Nc34,EA031,?,EA031-NA,,,,,, +37131,Nc4,EA031,50-99,EA031-2,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +37132,Nc5,EA031,?,EA031-NA,,,,,, +37133,Nc6,EA031,100-199,EA031-3,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +37134,Nc7,EA031,50-99,EA031-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +37135,Nc8,EA031,<50,EA031-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +37136,Nc9,EA031,<50,EA031-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +37137,Nd1,EA031,200-399,EA031-4,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +37138,Nd10,EA031,?,EA031-NA,,,,,, +37139,Nd11,EA031,100-199,EA031-3,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +37140,Nd12,EA031,?,EA031-NA,,,,,, +37141,Nd13,EA031,?,EA031-NA,,,,,, +37142,Nd14,EA031,100-199,EA031-3,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +37143,Nd15,EA031,50-99,EA031-2,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +37144,Nd16,EA031,?,EA031-NA,,,,,, +37145,Nd17,EA031,?,EA031-NA,,,,,, +37146,Nd18,EA031,50-99,EA031-2,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +37147,Nd19,EA031,?,EA031-NA,,,,,, +37148,Nd2,EA031,?,EA031-NA,,,,,, +37149,Nd20,EA031,50-99,EA031-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +37150,Nd21,EA031,?,EA031-NA,,,,,, +37151,Nd22,EA031,<50,EA031-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +37152,Nd23,EA031,?,EA031-NA,,,,,, +37153,Nd24,EA031,<50,EA031-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +37154,Nd25,EA031,?,EA031-NA,,,,,, +37155,Nd26,EA031,<50,EA031-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +37156,Nd27,EA031,<50,EA031-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +37157,Nd28,EA031,?,EA031-NA,,,,,, +37158,Nd29,EA031,<50,EA031-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +37159,Nd3,EA031,100-199,EA031-3,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +37160,Nd30,EA031,?,EA031-NA,,,,,, +37161,Nd31,EA031,<50,EA031-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +37162,Nd32,EA031,<50,EA031-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +37163,Nd33,EA031,<50,EA031-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +37164,Nd34,EA031,<50,EA031-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +37165,Nd35,EA031,<50,EA031-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +37166,Nd36,EA031,<50,EA031-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +37167,Nd37,EA031,<50,EA031-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +37168,Nd38,EA031,<50,EA031-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +37169,Nd39,EA031,<50,EA031-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +37170,Nd4,EA031,50-99,EA031-2,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +37171,Nd40,EA031,<50,EA031-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +37172,Nd41,EA031,?,EA031-NA,,,,,, +37173,Nd42,EA031,50-99,EA031-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +37174,Nd43,EA031,<50,EA031-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +37175,Nd44,EA031,50-99,EA031-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +37176,Nd45,EA031,50-99,EA031-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +37177,Nd46,EA031,50-99,EA031-2,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +37178,Nd47,EA031,<50,EA031-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +37179,Nd48,EA031,<50,EA031-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +37180,Nd49,EA031,<50,EA031-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +37181,Nd5,EA031,?,EA031-NA,,,,,, +37182,Nd50,EA031,<50,EA031-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +37183,Nd51,EA031,<50,EA031-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +37184,Nd52,EA031,?,EA031-NA,,,,,, +37185,Nd53,EA031,<50,EA031-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +37186,Nd54,EA031,?,EA031-NA,,,,,, +37187,Nd55,EA031,<50,EA031-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +37188,Nd56,EA031,?,EA031-NA,,,,,, +37189,Nd57,EA031,?,EA031-NA,,,,,, +37190,Nd58,EA031,?,EA031-NA,,,,,, +37191,Nd59,EA031,?,EA031-NA,,,,,, +37192,Nd6,EA031,<50,EA031-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +37193,Nd60,EA031,?,EA031-NA,,,,,, +37194,Nd61,EA031,?,EA031-NA,,,,,, +37195,Nd62,EA031,50-99,EA031-2,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +37196,Nd63,EA031,50-99,EA031-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +37197,Nd64,EA031,100-199,EA031-3,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +37198,Nd65,EA031,<50,EA031-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +37199,Nd66,EA031,?,EA031-NA,,,,,, +37200,Nd67,EA031,50-99,EA031-2,,gifford1936,,1870,EthnographicAtlas_1967_p111, +37201,Nd7,EA031,?,EA031-NA,,,,,, +37202,Nd8,EA031,<50,EA031-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +37203,Nd9,EA031,?,EA031-NA,,,,,, +37204,Ne1,EA031,?,EA031-NA,,,,,, +37205,Ne10,EA031,400-1000,EA031-5,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +37206,Ne11,EA031,200-399,EA031-4,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +37207,Ne12,EA031,200-399,EA031-4,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +37208,Ne13,EA031,100-199,EA031-3,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +37209,Ne14,EA031,200-399,EA031-4,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +37210,Ne15,EA031,400-1000,EA031-5,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +37211,Ne16,EA031,?,EA031-NA,,,,,, +37212,Ne17,EA031,100-199,EA031-3,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +37213,Ne18,EA031,200-399,EA031-4,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +37214,Ne19,EA031,?,EA031-NA,,,,,, +37215,Ne2,EA031,?,EA031-NA,,,,,, +37216,Ne20,EA031,?,EA031-NA,,,,,, +37217,Ne21,EA031,?,EA031-NA,,,,,, +37218,Ne3,EA031,?,EA031-NA,,,,,, +37219,Ne4,EA031,?,EA031-NA,,,,,, +37220,Ne5,EA031,?,EA031-NA,,,,,, +37221,Ne6,EA031,?,EA031-NA,,,,,, +37222,Ne7,EA031,?,EA031-NA,,,,,, +37223,Ne8,EA031,?,EA031-NA,,,,,, +37224,Ne9,EA031,200-399,EA031-4,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +37225,Nf10,EA031,?,EA031-NA,,,,,, +37226,Nf11,EA031,?,EA031-NA,,,,,, +37227,Nf12,EA031,?,EA031-NA,,,,,, +37228,Nf13,EA031,?,EA031-NA,,,,,, +37229,Nf14,EA031,?,EA031-NA,,,,,, +37230,Nf15,EA031,?,EA031-NA,,,,,, +37231,Nf2,EA031,?,EA031-NA,,,,,, +37232,Nf3,EA031,50-99,EA031-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +37233,Nf4,EA031,400-1000,EA031-5,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +37234,Nf5,EA031,?,EA031-NA,,,,,, +37235,Nf6,EA031,200-399,EA031-4,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +37236,Nf7,EA031,?,EA031-NA,,,,,, +37237,Nf8,EA031,?,EA031-NA,,,,,, +37238,Nf9,EA031,?,EA031-NA,,,,,, +37239,Ng1,EA031,400-1000,EA031-5,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +37240,Ng10,EA031,200-399,EA031-4,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +37241,Ng11,EA031,?,EA031-NA,,,,,, +37242,Ng12,EA031,?,EA031-NA,,,,,, +37243,Ng13,EA031,?,EA031-NA,,,,,, +37244,Ng14,EA031,?,EA031-NA,,,,,, +37245,Ng15,EA031,?,EA031-NA,,,,,, +37246,Ng2,EA031,?,EA031-NA,,,,,, +37247,Ng3,EA031,400-1000,EA031-5,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +37248,Ng4,EA031,?,EA031-NA,,,,,, +37249,Ng5,EA031,200-399,EA031-4,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +37250,Ng6,EA031,200-399,EA031-4,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +37251,Ng7,EA031,200-399,EA031-4,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +37252,Ng8,EA031,?,EA031-NA,,,,,, +37253,Ng9,EA031,?,EA031-NA,,,,,, +37254,Nh1,EA031,?,EA031-NA,,,,,, +37255,Nh10,EA031,1000-5000,EA031-6,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +37256,Nh11,EA031,200-399,EA031-4,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +37257,Nh12,EA031,200-399,EA031-4,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +37258,Nh13,EA031,1000-5000,EA031-6,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +37259,Nh14,EA031,1000-5000,EA031-6,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +37260,Nh15,EA031,?,EA031-NA,,,,,, +37261,Nh16,EA031,?,EA031-NA,,,,,, +37262,Nh17,EA031,<50,EA031-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +37263,Nh18,EA031,200-399,EA031-4,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37264,Nh19,EA031,?,EA031-NA,,,,,, +37265,Nh2,EA031,400-1000,EA031-5,,dozier1954,,1950,EthnographicAtlas_1967_p115, +37266,Nh20,EA031,?,EA031-NA,,,,,, +37267,Nh21,EA031,?,EA031-NA,,,,,, +37268,Nh22,EA031,<50,EA031-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +37269,Nh23,EA031,?,EA031-NA,,,,,, +37270,Nh24,EA031,?,EA031-NA,,,,,, +37271,Nh25,EA031,200-399,EA031-4,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +37272,Nh26,EA031,?,EA031-NA,,,,,, +37273,Nh27,EA031,?,EA031-NA,,,,,, +37274,Nh3,EA031,200-399,EA031-4,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +37275,Nh4,EA031,1000-5000,EA031-6,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +37276,Nh5,EA031,50-99,EA031-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +37277,Nh6,EA031,400-1000,EA031-5,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +37278,Nh7,EA031,400-1000,EA031-5,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +37279,Nh8,EA031,400-1000,EA031-5,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +37280,Nh9,EA031,100-199,EA031-3,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p115, +37281,Ni1,EA031,?,EA031-NA,,,,,, +37282,Ni2,EA031,?,EA031-NA,,,,,, +37283,Ni3,EA031,400-1000,EA031-5,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +37284,Ni4,EA031,?,EA031-NA,,,,,, +37285,Ni5,EA031,?,EA031-NA,,,,,, +37286,Ni6,EA031,?,EA031-NA,,,,,, +37287,Ni7,EA031,?,EA031-NA,,,,,, +37288,Ni8,EA031,?,EA031-NA,,,,,, +37289,Ni9,EA031,?,EA031-NA,,,,,, +37290,Nj1,EA031,400-1000,EA031-5,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37291,Nj10,EA031,5000-50000,EA031-7,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37292,Nj11,EA031,?,EA031-NA,,,,,, +37293,Nj12,EA031,?,EA031-NA,,,,,, +37294,Nj13,EA031,?,EA031-NA,,,,,, +37295,Nj14,EA031,?,EA031-NA,,,,,, +37296,Nj2,EA031,50000+,EA031-8,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +37297,Nj3,EA031,?,EA031-NA,,,,,, +37298,Nj4,EA031,5000-50000,EA031-7,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +37299,Nj5,EA031,?,EA031-NA,,,,,, +37300,Nj6,EA031,?,EA031-NA,,,,,, +37301,Nj7,EA031,?,EA031-NA,,,,,, +37302,Nj8,EA031,?,EA031-NA,,,,,, +37303,Nj9,EA031,5000-50000,EA031-7,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +37304,Sa1,EA031,50-99,EA031-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +37305,Sa10,EA031,?,EA031-NA,,,,,, +37306,Sa11,EA031,?,EA031-NA,,,,,, +37307,Sa12,EA031,?,EA031-NA,,,,,, +37308,Sa13,EA031,?,EA031-NA,,,,,, +37309,Sa14,EA031,?,EA031-NA,,,,,, +37310,Sa15,EA031,?,EA031-NA,,,,,, +37311,Sa16,EA031,?,EA031-NA,,,,,, +37312,Sa17,EA031,?,EA031-NA,,,,,, +37313,Sa2,EA031,?,EA031-NA,,,,,, +37314,Sa3,EA031,?,EA031-NA,,,,,, +37315,Sa4,EA031,50-99,EA031-2,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +37316,Sa5,EA031,?,EA031-NA,,,,,, +37317,Sa6,EA031,5000-50000,EA031-7,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +37318,Sa7,EA031,1000-5000,EA031-6,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +37319,Sa8,EA031,1000-5000,EA031-6,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +37320,Sa9,EA031,100-199,EA031-3,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +37321,Sb1,EA031,?,EA031-NA,,,,,, +37322,Sb2,EA031,?,EA031-NA,,,,,, +37323,Sb3,EA031,<50,EA031-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +37324,Sb4,EA031,400-1000,EA031-5,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +37325,Sb5,EA031,?,EA031-NA,,,,,, +37326,Sb6,EA031,<50,EA031-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +37327,Sb7,EA031,<50,EA031-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +37328,Sb8,EA031,?,EA031-NA,,,,,, +37329,Sb9,EA031,50000+,EA031-8,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +37330,Sc1,EA031,50-99,EA031-2,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +37331,Sc10,EA031,<50,EA031-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +37332,Sc11,EA031,?,EA031-NA,,,,,, +37333,Sc12,EA031,?,EA031-NA,,,,,, +37334,Sc13,EA031,<50,EA031-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +37335,Sc14,EA031,?,EA031-NA,,,,,, +37336,Sc15,EA031,?,EA031-NA,,,,,, +37337,Sc16,EA031,?,EA031-NA,,,,,, +37338,Sc17,EA031,<50,EA031-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +37339,Sc18,EA031,100-199,EA031-3,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +37340,Sc2,EA031,?,EA031-NA,,,,,, +37341,Sc3,EA031,<50,EA031-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +37342,Sc4,EA031,50-99,EA031-2,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +37343,Sc5,EA031,?,EA031-NA,,,,,, +37344,Sc6,EA031,?,EA031-NA,,,,,, +37345,Sc7,EA031,<50,EA031-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +37346,Sc8,EA031,?,EA031-NA,,,,,, +37347,Sc9,EA031,<50,EA031-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +37348,Sd1,EA031,50-99,EA031-2,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37349,Sd2,EA031,100-199,EA031-3,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +37350,Sd3,EA031,?,EA031-NA,,,,,, +37351,Sd4,EA031,50-99,EA031-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +37352,Sd5,EA031,50-99,EA031-2,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +37353,Sd6,EA031,50-99,EA031-2,,migliazza1964,,1960,EthnographicAtlas_1967_p119, +37354,Sd7,EA031,?,EA031-NA,,,,,, +37355,Sd8,EA031,<50,EA031-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +37356,Sd9,EA031,50-99,EA031-2,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37357,Se1,EA031,<50,EA031-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +37358,Se10,EA031,400-1000,EA031-5,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +37359,Se11,EA031,?,EA031-NA,,,,,, +37360,Se12,EA031,?,EA031-NA,,,,,, +37361,Se2,EA031,100-199,EA031-3,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +37362,Se3,EA031,<50,EA031-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +37363,Se4,EA031,<50,EA031-1,,fejos1943,,1940,EthnographicAtlas_1967_p119, +37364,Se5,EA031,<50,EA031-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +37365,Se6,EA031,?,EA031-NA,,,,,, +37366,Se7,EA031,?,EA031-NA,,,,,, +37367,Se8,EA031,<50,EA031-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +37368,Se9,EA031,<50,EA031-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +37369,Sf1,EA031,5000-50000,EA031-7,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +37370,Sf2,EA031,400-1000,EA031-5,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +37371,Sf3,EA031,400-1000,EA031-5,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +37372,Sf4,EA031,100-199,EA031-3,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +37373,Sf5,EA031,?,EA031-NA,,,,,, +37374,Sf6,EA031,5000-50000,EA031-7,Inferred from the report of large fortified towns,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +37375,Sf7,EA031,<50,EA031-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +37376,Sf8,EA031,?,EA031-NA,,,,,, +37377,Sf9,EA031,?,EA031-NA,,,,,, +37378,Sg1,EA031,<50,EA031-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +37379,Sg2,EA031,50-99,EA031-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37380,Sg3,EA031,50-99,EA031-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +37381,Sg4,EA031,50-99,EA031-2,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +37382,Sg5,EA031,<50,EA031-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37383,Sh1,EA031,50-99,EA031-2,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +37384,Sh2,EA031,?,EA031-NA,,,,,, +37385,Sh3,EA031,?,EA031-NA,,,,,, +37386,Sh4,EA031,?,EA031-NA,,,,,, +37387,Sh5,EA031,<50,EA031-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +37388,Sh6,EA031,?,EA031-NA,,,,,, +37389,Sh7,EA031,?,EA031-NA,,,,,, +37390,Sh8,EA031,200-399,EA031-4,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +37391,Sh9,EA031,?,EA031-NA,,,,,, +37392,Si1,EA031,?,EA031-NA,,,,,, +37393,Si10,EA031,100-199,EA031-3,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +37394,Si2,EA031,<50,EA031-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +37395,Si3,EA031,<50,EA031-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37396,Si4,EA031,<50,EA031-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +37397,Si5,EA031,100-199,EA031-3,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +37398,Si6,EA031,?,EA031-NA,,,,,, +37399,Si7,EA031,<50,EA031-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +37400,Si8,EA031,50-99,EA031-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +37401,Si9,EA031,?,EA031-NA,,,,,, +37402,Sj1,EA031,?,EA031-NA,,,,,, +37403,Sj10,EA031,?,EA031-NA,,,,,, +37404,Sj11,EA031,100-199,EA031-3,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +37405,Sj2,EA031,?,EA031-NA,,,,,, +37406,Sj3,EA031,<50,EA031-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +37407,Sj4,EA031,100-199,EA031-3,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +37408,Sj5,EA031,50-99,EA031-2,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p123, +37409,Sj6,EA031,?,EA031-NA,,,,,, +37410,Sj7,EA031,50-99,EA031-2,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +37411,Sj8,EA031,200-399,EA031-4,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +37412,Sj9,EA031,100-199,EA031-3,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +37413,ch12,EA031,50000+,EA031-8,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +37414,ch13,EA031,200-399,EA031-4,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +37415,ch14,EA031,200-399,EA031-4,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +37416,ch15,EA031,1000-5000,EA031-6,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +37417,ch16,EA031,50000+,EA031-8,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +37418,ch17,EA031,5000-50000,EA031-7,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +37419,ch18,EA031,50-99,EA031-2,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +37420,ch19,EA031,50-99,EA031-2,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +37421,ch20,EA031,50000+,EA031-8,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +37422,ch21,EA031,50000+,EA031-8,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +37423,ch22,EA031,400-1000,EA031-5,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +37424,ch23,EA031,100-199,EA031-3,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +37425,ch24,EA031,100-199,EA031-3,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +37426,ch25,EA031,5000-50000,EA031-7,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +37427,ch26,EA031,200-399,EA031-4,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +37428,ch27,EA031,50-99,EA031-2,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +37429,ch28,EA031,50-99,EA031-2,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +37430,ec12,EA031,<50,EA031-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +37431,ec13,EA031,50-99,EA031-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +37432,ec14,EA031,50-99,EA031-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +37433,ec15,EA031,50-99,EA031-2,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +37434,ec16,EA031,<50,EA031-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +37435,ec17,EA031,50-99,EA031-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +37436,ec18,EA031,50-99,EA031-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +37437,ec19,EA031,50-99,EA031-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +37438,ec20,EA031,50-99,EA031-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +37439,ec21,EA031,50-99,EA031-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +37440,Aa1,EA032,Extended families,EA032-3,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +37441,Aa2,EA032,Independent families,EA032-2,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +37442,Aa3,EA032,Independent families,EA032-2,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +37443,Aa4,EA032,?,EA032-NA,,,,,, +37444,Aa5,EA032,Independent families,EA032-2,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +37445,Aa6,EA032,Independent families,EA032-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p63, +37446,Aa7,EA032,Independent families,EA032-2,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +37447,Aa8,EA032,Independent families,EA032-2,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +37448,Aa9,EA032,Extended families,EA032-3,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +37449,Ab1,EA032,Extended families,EA032-3,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p63, +37450,Ab10,EA032,Extended families,EA032-3,,hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +37451,Ab11,EA032,Extended families,EA032-3,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +37452,Ab12,EA032,Extended families,EA032-3,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p63, +37453,Ab13,EA032,Extended families,EA032-3,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +37454,Ab14,EA032,Extended families,EA032-3,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +37455,Ab15,EA032,Extended families,EA032-3,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +37456,Ab16,EA032,Extended families,EA032-3,,earthy1933,,1930,EthnographicAtlas_1967_p63, +37457,Ab17,EA032,?,EA032-NA,,,,,, +37458,Ab18,EA032,Independent families,EA032-2,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +37459,Ab19,EA032,Extended families,EA032-3,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +37460,Ab2,EA032,Extended families,EA032-3,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +37461,Ab20,EA032,?,EA032-NA,,,,,, +37462,Ab21a,EA032,Extended families,EA032-3,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +37463,Ab21b,EA032,?,EA032-NA,,,,,, +37464,Ab22,EA032,?,EA032-NA,,,,,, +37465,Ab3,EA032,Independent families,EA032-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +37466,Ab4,EA032,Independent families,EA032-2,,junod1927,,1920,EthnographicAtlas_1967_p63, +37467,Ab5,EA032,Extended families,EA032-3,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +37468,Ab6,EA032,Extended families,EA032-3,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +37469,Ab7,EA032,Extended families,EA032-3,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p63, +37470,Ab8,EA032,Extended families,EA032-3,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +37471,Ab9,EA032,Extended families,EA032-3,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +37472,Ac1,EA032,Extended families,EA032-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +37473,Ac10,EA032,Extended families,EA032-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +37474,Ac11,EA032,Extended families,EA032-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +37475,Ac12,EA032,Independent families,EA032-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p63, +37476,Ac13,EA032,Extended families,EA032-3,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p63, +37477,Ac14,EA032,Extended families,EA032-3,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p63, +37478,Ac15,EA032,?,EA032-NA,,,,,, +37479,Ac16,EA032,Extended families,EA032-3,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +37480,Ac17,EA032,Extended families,EA032-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +37481,Ac18,EA032,Extended families,EA032-3,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +37482,Ac19,EA032,Extended families,EA032-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +37483,Ac2,EA032,Extended families,EA032-3,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p63, +37484,Ac20,EA032,Independent families,EA032-2,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +37485,Ac21,EA032,Independent families,EA032-2,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p63, +37486,Ac22,EA032,Extended families,EA032-3,,mertens1935,,1930,EthnographicAtlas_1967_p63, +37487,Ac23,EA032,Extended families,EA032-3,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +37488,Ac24,EA032,Independent families,EA032-2,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +37489,Ac25,EA032,Extended families,EA032-3,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p63, +37490,Ac26,EA032,Independent families,EA032-2,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +37491,Ac27,EA032,Extended families,EA032-3,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +37492,Ac28,EA032,Extended families,EA032-3,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p63, +37493,Ac29,EA032,?,EA032-NA,,,,,, +37494,Ac3,EA032,Extended families,EA032-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +37495,Ac30,EA032,Extended families,EA032-3,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +37496,Ac31,EA032,Extended families,EA032-3,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +37497,Ac32,EA032,Extended families,EA032-3,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +37498,Ac33,EA032,Independent families,EA032-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +37499,Ac34,EA032,Extended families,EA032-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +37500,Ac35,EA032,?,EA032-NA,,,,,, +37501,Ac36,EA032,Extended families,EA032-3,"Formerly, but more recently subject to the Ngoni",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +37502,Ac37,EA032,Extended families,EA032-3,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +37503,Ac38,EA032,Extended families,EA032-3,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p63, +37504,Ac39,EA032,?,EA032-NA,,,,,, +37505,Ac4,EA032,Extended families,EA032-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +37506,Ac40,EA032,Independent families,EA032-2,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +37507,Ac41,EA032,Extended families,EA032-3,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +37508,Ac42,EA032,?,EA032-NA,,,,,, +37509,Ac43,EA032,Independent families,EA032-2,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +37510,Ac5,EA032,Independent families,EA032-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +37511,Ac6,EA032,Independent families,EA032-2,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p63, +37512,Ac7,EA032,Extended families,EA032-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +37513,Ac8,EA032,Extended families,EA032-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +37514,Ac9,EA032,Independent families,EA032-2,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +37515,Ad1,EA032,Independent families,EA032-2,,grottanelli1955,,1950,EthnographicAtlas_1967_p63, +37516,Ad10,EA032,Extended families,EA032-3,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +37517,Ad11,EA032,Independent families,EA032-2,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +37518,Ad12,EA032,Independent families,EA032-2,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +37519,Ad13,EA032,Extended families,EA032-3,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +37520,Ad14,EA032,Extended families,EA032-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +37521,Ad15,EA032,Independent families,EA032-2,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +37522,Ad16,EA032,Independent families,EA032-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +37523,Ad17,EA032,Independent families,EA032-2,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +37524,Ad18,EA032,Independent families,EA032-2,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +37525,Ad19,EA032,Independent families,EA032-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +37526,Ad2,EA032,Independent families,EA032-2,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +37527,Ad20,EA032,Independent families,EA032-2,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +37528,Ad21,EA032,Independent families,EA032-2,,maurice193538,,1930,EthnographicAtlas_1967_p67, +37529,Ad22,EA032,Extended families,EA032-3,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +37530,Ad23,EA032,Extended families,EA032-3,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +37531,Ad24,EA032,Extended families,EA032-3,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +37532,Ad25,EA032,Extended families,EA032-3,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +37533,Ad26,EA032,Extended families,EA032-3,,sick1916,,1910,Ethnology_Vol7_No2_Apr_1968, +37534,Ad27,EA032,Extended families,EA032-3,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +37535,Ad28,EA032,Independent families,EA032-2,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +37536,Ad29,EA032,Independent families,EA032-2,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p67, +37537,Ad3,EA032,Independent families,EA032-2,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +37538,Ad30,EA032,Independent families,EA032-2,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p67, +37539,Ad31,EA032,?,EA032-NA,,,,,, +37540,Ad32,EA032,Extended families,EA032-3,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p67, +37541,Ad33,EA032,Independent families,EA032-2,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p67, +37542,Ad34,EA032,Clan-barrios,EA032-4,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +37543,Ad35,EA032,Extended families,EA032-3,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p67, +37544,Ad36,EA032,Independent families,EA032-2,But one recent source reports paramount chiefs with rain-making functions,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +37545,Ad37,EA032,Extended families,EA032-3,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +37546,Ad38,EA032,Independent families,EA032-2,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +37547,Ad39,EA032,Independent families,EA032-2,,gray1963,,1950,EthnographicAtlas_1967_p67, +37548,Ad4,EA032,Extended families,EA032-3,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +37549,Ad40,EA032,Extended families,EA032-3,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +37550,Ad41,EA032,Extended families,EA032-3,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p67, +37551,Ad42,EA032,Independent families,EA032-2,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +37552,Ad43,EA032,Independent families,EA032-2,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +37553,Ad44,EA032,Independent families,EA032-2,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p67, +37554,Ad45,EA032,Independent families,EA032-2,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +37555,Ad46,EA032,Independent families,EA032-2,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p67, +37556,Ad47,EA032,Independent families,EA032-2,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +37557,Ad48,EA032,Extended families,EA032-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +37558,Ad49,EA032,Independent families,EA032-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +37559,Ad5,EA032,?,EA032-NA,,,,,, +37560,Ad50,EA032,Extended families,EA032-3,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +37561,Ad51,EA032,Extended families,EA032-3,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +37562,Ad6,EA032,Independent families,EA032-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +37563,Ad7,EA032,Independent families,EA032-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +37564,Ad8,EA032,Extended families,EA032-3,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +37565,Ad9,EA032,Extended families,EA032-3,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +37566,Ae1,EA032,Extended families,EA032-3,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67, +37567,Ae10,EA032,Extended families,EA032-3,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +37568,Ae11,EA032,Independent families,EA032-2,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +37569,Ae12,EA032,Extended families,EA032-3,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +37570,Ae13,EA032,?,EA032-NA,,,,,, +37571,Ae14,EA032,Extended families,EA032-3,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +37572,Ae15,EA032,Independent families,EA032-2,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p67, +37573,Ae16,EA032,?,EA032-NA,,,,,, +37574,Ae17,EA032,Independent families,EA032-2,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +37575,Ae18,EA032,Extended families,EA032-3,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +37576,Ae19,EA032,?,EA032-NA,,,,,, +37577,Ae2,EA032,Extended families,EA032-3,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +37578,Ae20,EA032,Clan-barrios,EA032-4,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +37579,Ae21,EA032,Extended families,EA032-3,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +37580,Ae22,EA032,Extended families,EA032-3,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p67, +37581,Ae23,EA032,?,EA032-NA,,,,,, +37582,Ae24,EA032,?,EA032-NA,,,,,, +37583,Ae25,EA032,?,EA032-NA,Paramount chiefs imposed by Luba and Songe conquerors,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +37584,Ae26,EA032,Independent families,EA032-2,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +37585,Ae27,EA032,Extended families,EA032-3,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +37586,Ae28,EA032,Extended families,EA032-3,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +37587,Ae29,EA032,Extended families,EA032-3,"Entry follows Lindemann; Hutereau reports 'extended families' (EA032 code ""3"") with 'no political authority beyond the local community' (EA033 code ""1"")",hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p67, +37588,Ae3,EA032,Extended families,EA032-3,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +37589,Ae30,EA032,Independent families,EA032-2,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +37590,Ae31,EA032,Independent families,EA032-2,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +37591,Ae32,EA032,Independent families,EA032-2,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +37592,Ae33,EA032,Extended families,EA032-3,"But Moller reports 'extended families' (EA032 code ""3"") grouped within larger chiefdoms (2 levels) (EA033 code ""3"")",czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +37593,Ae34,EA032,Independent families,EA032-2,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +37594,Ae35,EA032,Independent families,EA032-2,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +37595,Ae36,EA032,Extended families,EA032-3,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +37596,Ae37,EA032,?,EA032-NA,,,,,, +37597,Ae38,EA032,Extended families,EA032-3,,wijnant192526,,1920,EthnographicAtlas_1967_p67, +37598,Ae39,EA032,Clan-barrios,EA032-4,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +37599,Ae4,EA032,Clan-barrios,EA032-4,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +37600,Ae40,EA032,Extended families,EA032-3,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +37601,Ae41,EA032,Extended families,EA032-3,,andersson1953,,1940,EthnographicAtlas_1967_p67, +37602,Ae42,EA032,Independent families,EA032-2,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +37603,Ae43,EA032,Extended families,EA032-3,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +37604,Ae44,EA032,Extended families,EA032-3,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +37605,Ae45,EA032,Independent families,EA032-2,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +37606,Ae46,EA032,Clan-barrios,EA032-4,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +37607,Ae47,EA032,Independent families,EA032-2,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +37608,Ae48,EA032,Extended families,EA032-3,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p67, +37609,Ae49,EA032,?,EA032-NA,,,,,, +37610,Ae5,EA032,Clan-barrios,EA032-4,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p67, +37611,Ae50,EA032,Clan-barrios,EA032-4,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p67, +37612,Ae51,EA032,Independent families,EA032-2,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p67, +37613,Ae52,EA032,?,EA032-NA,,,,,, +37614,Ae53,EA032,?,EA032-NA,,,,,, +37615,Ae54,EA032,?,EA032-NA,,,,,, +37616,Ae55,EA032,Clan-barrios,EA032-4,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +37617,Ae56,EA032,Clan-barrios,EA032-4,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +37618,Ae57,EA032,Clan-barrios,EA032-4,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +37619,Ae58,EA032,Independent families,EA032-2,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +37620,Ae59,EA032,?,EA032-NA,,,,,, +37621,Ae6,EA032,Extended families,EA032-3,,verhulpen1936,with special reference to the Bena Kalundwe,1930,Ethnology_Vol7_No2_Apr_1968, +37622,Ae7,EA032,Clan-barrios,EA032-4,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +37623,Ae8,EA032,Extended families,EA032-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +37624,Ae9,EA032,Extended families,EA032-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +37625,Af1,EA032,Extended families,EA032-3,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +37626,Af10,EA032,Clan-barrios,EA032-4,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +37627,Af11,EA032,Extended families,EA032-3,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +37628,Af12,EA032,Extended families,EA032-3,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +37629,Af13,EA032,Extended families,EA032-3,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +37630,Af14,EA032,Extended families,EA032-3,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p71, +37631,Af15,EA032,Extended families,EA032-3,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +37632,Af16,EA032,Extended families,EA032-3,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +37633,Af17,EA032,Clan-barrios,EA032-4,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +37634,Af18,EA032,Extended families,EA032-3,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +37635,Af19,EA032,Clan-barrios,EA032-4,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +37636,Af2,EA032,Clan-barrios,EA032-4,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +37637,Af20,EA032,Clan-barrios,EA032-4,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +37638,Af21,EA032,Extended families,EA032-3,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +37639,Af22,EA032,Extended families,EA032-3,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p71, +37640,Af23,EA032,Clan-barrios,EA032-4,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +37641,Af24,EA032,Clan-barrios,EA032-4,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +37642,Af25,EA032,Clan-barrios,EA032-4,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +37643,Af26,EA032,Clan-barrios,EA032-4,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +37644,Af27,EA032,Extended families,EA032-3,But long subject to Hausa or Fulani overlords,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +37645,Af28,EA032,Extended families,EA032-3,,gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +37646,Af29,EA032,Extended families,EA032-3,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +37647,Af3,EA032,Clan-barrios,EA032-4,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +37648,Af30,EA032,Extended families,EA032-3,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +37649,Af31,EA032,?,EA032-NA,,,,,, +37650,Af32,EA032,Clan-barrios,EA032-4,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37651,Af33,EA032,Clan-barrios,EA032-4,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37652,Af34,EA032,Clan-barrios,EA032-4,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37653,Af35,EA032,Extended families,EA032-3,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +37654,Af36,EA032,Clan-barrios,EA032-4,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p71, +37655,Af37,EA032,Extended families,EA032-3,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +37656,Af38,EA032,Extended families,EA032-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +37657,Af39,EA032,Clan-barrios,EA032-4,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +37658,Af4,EA032,Clan-barrios,EA032-4,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +37659,Af40,EA032,Extended families,EA032-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +37660,Af41,EA032,Extended families,EA032-3,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +37661,Af42,EA032,Clan-barrios,EA032-4,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p71, +37662,Af43,EA032,Extended families,EA032-3,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p71, +37663,Af44,EA032,?,EA032-NA,,,,,, +37664,Af45,EA032,Extended families,EA032-3,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +37665,Af46,EA032,Extended families,EA032-3,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +37666,Af47,EA032,Extended families,EA032-3,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +37667,Af48,EA032,Independent families,EA032-2,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +37668,Af49,EA032,Extended families,EA032-3,,schwab1947,,1940,EthnographicAtlas_1967_p71, +37669,Af5,EA032,Clan-barrios,EA032-4,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +37670,Af50,EA032,Extended families,EA032-3,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +37671,Af51,EA032,Clan-barrios,EA032-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +37672,Af52,EA032,Clan-barrios,EA032-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +37673,Af53,EA032,?,EA032-NA,,,,,, +37674,Af54,EA032,Extended families,EA032-3,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +37675,Af55,EA032,Clan-barrios,EA032-4,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +37676,Af56,EA032,Extended families,EA032-3,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +37677,Af57,EA032,Extended families,EA032-3,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +37678,Af58,EA032,Extended families,EA032-3,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +37679,Af6,EA032,Clan-barrios,EA032-4,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +37680,Af7,EA032,Clan-barrios,EA032-4,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +37681,Af8,EA032,Extended families,EA032-3,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +37682,Af9,EA032,Extended families,EA032-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p71, +37683,Ag1,EA032,Clan-barrios,EA032-4,"Formerly 'clan-barrios' (EA032 code ""4"") grouped within states (3 levels) (EA033 code ""4"") under the former great states of Kaarta and Segou",dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +37684,Ag10,EA032,Extended families,EA032-3,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +37685,Ag11,EA032,Extended families,EA032-3,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +37686,Ag12,EA032,Clan-barrios,EA032-4,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +37687,Ag13,EA032,Clan-barrios,EA032-4,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +37688,Ag14,EA032,Clan-barrios,EA032-4,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +37689,Ag15,EA032,Extended families,EA032-3,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +37690,Ag16,EA032,Extended families,EA032-3,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p71, +37691,Ag17,EA032,Extended families,EA032-3,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +37692,Ag18,EA032,Extended families,EA032-3,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p71, +37693,Ag19,EA032,Extended families,EA032-3,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p71, +37694,Ag2,EA032,Clan-barrios,EA032-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +37695,Ag20,EA032,?,EA032-NA,,,,,, +37696,Ag21,EA032,Independent families,EA032-2,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +37697,Ag22,EA032,Extended families,EA032-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p71, +37698,Ag23,EA032,Extended families,EA032-3,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +37699,Ag24,EA032,Extended families,EA032-3,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +37700,Ag25,EA032,Extended families,EA032-3,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p71, +37701,Ag26,EA032,Extended families,EA032-3,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p71, +37702,Ag27,EA032,Clan-barrios,EA032-4,But usually subject to alien rulers,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +37703,Ag28,EA032,Clan-barrios,EA032-4,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +37704,Ag29,EA032,Extended families,EA032-3,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +37705,Ag3,EA032,Clan-barrios,EA032-4,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p71, +37706,Ag30,EA032,Clan-barrios,EA032-4,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p71, +37707,Ag31,EA032,Clan-barrios,EA032-4,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p71, +37708,Ag32,EA032,Clan-barrios,EA032-4,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p71, +37709,Ag33,EA032,?,EA032-NA,,,,,, +37710,Ag34,EA032,Extended families,EA032-3,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +37711,Ag35,EA032,Extended families,EA032-3,But subject to the Abron,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +37712,Ag36,EA032,?,EA032-NA,,,,,, +37713,Ag37,EA032,Clan-barrios,EA032-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +37714,Ag38,EA032,Extended families,EA032-3,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +37715,Ag39,EA032,Clan-barrios,EA032-4,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +37716,Ag4,EA032,Clan-barrios,EA032-4,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +37717,Ag40,EA032,Clan-barrios,EA032-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +37718,Ag41,EA032,Extended families,EA032-3,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +37719,Ag42,EA032,Clan-barrios,EA032-4,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +37720,Ag43,EA032,Extended families,EA032-3,Subject to an Abron paramount chief,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +37721,Ag44,EA032,Extended families,EA032-3,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +37722,Ag45,EA032,Clan-barrios,EA032-4,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +37723,Ag46,EA032,Extended families,EA032-3,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +37724,Ag47,EA032,Extended families,EA032-3,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +37725,Ag48,EA032,Extended families,EA032-3,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p75, +37726,Ag49,EA032,Extended families,EA032-3,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +37727,Ag5,EA032,Clan-barrios,EA032-4,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +37728,Ag50,EA032,Independent families,EA032-2,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +37729,Ag51,EA032,Extended families,EA032-3,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +37730,Ag52,EA032,Extended families,EA032-3,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +37731,Ag53,EA032,Extended families,EA032-3,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +37732,Ag54,EA032,Clan-barrios,EA032-4,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +37733,Ag6,EA032,Clan-barrios,EA032-4,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +37734,Ag7,EA032,Clan-barrios,EA032-4,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +37735,Ag8,EA032,Extended families,EA032-3,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +37736,Ag9,EA032,Extended families,EA032-3,Formerly a very large state,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p71, +37737,Ah1,EA032,Clan-barrios,EA032-4,"Subordinate, since 1790, to the Fulani through district chiefs",gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37738,Ah10,EA032,Extended families,EA032-3,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +37739,Ah11,EA032,Extended families,EA032-3,,gunnandconant1960,,1950,EthnographicAtlas_1967_p75, +37740,Ah12,EA032,Clan-barrios,EA032-4,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +37741,Ah13,EA032,Extended families,EA032-3,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +37742,Ah14,EA032,?,EA032-NA,,,,,, +37743,Ah15,EA032,Extended families,EA032-3,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p75, +37744,Ah16,EA032,Independent families,EA032-2,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +37745,Ah17,EA032,Clan-barrios,EA032-4,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +37746,Ah18,EA032,?,EA032-NA,,,,,, +37747,Ah19,EA032,Clan-barrios,EA032-4,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p75, +37748,Ah2,EA032,Clan-barrios,EA032-4,"Clan-barrios' (EA032 code ""4"") grouped within larger chiefdoms (2 levels) (EA code ""3"") until conquered by the Fulani in the early nineteenth century",meek1931a,,1920,EthnographicAtlas_1967_p75, +37749,Ah20,EA032,Clan-barrios,EA032-4,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +37750,Ah21,EA032,Clan-barrios,EA032-4,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +37751,Ah22,EA032,?,EA032-NA,,,,,, +37752,Ah23,EA032,?,EA032-NA,,,,,, +37753,Ah24,EA032,?,EA032-NA,,,,,, +37754,Ah25,EA032,Extended families,EA032-3,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +37755,Ah26,EA032,Extended families,EA032-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +37756,Ah27,EA032,Extended families,EA032-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +37757,Ah28,EA032,Clan-barrios,EA032-4,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +37758,Ah29,EA032,Clan-barrios,EA032-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +37759,Ah3,EA032,Clan-barrios,EA032-4,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +37760,Ah30,EA032,Extended families,EA032-3,,meek1931b,,1920,EthnographicAtlas_1967_p75, +37761,Ah31,EA032,Clan-barrios,EA032-4,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p75, +37762,Ah32,EA032,Extended families,EA032-3,"Before conquest by the Fulani, to whom the Vere are now subject",meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +37763,Ah33,EA032,Clan-barrios,EA032-4,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p75, +37764,Ah34,EA032,Extended families,EA032-3,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +37765,Ah35,EA032,Extended families,EA032-3,"Formerly, but recently 'extended families' (EA032 code ""3"") grouped within larger chiefdoms (2 levels) (EA033 code ""3"") under a Pabir ruler",helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +37766,Ah36,EA032,Extended families,EA032-3,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +37767,Ah37,EA032,Clan-barrios,EA032-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +37768,Ah38,EA032,Extended families,EA032-3,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +37769,Ah39,EA032,Independent families,EA032-2,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +37770,Ah4,EA032,Clan-barrios,EA032-4,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p75, +37771,Ah5,EA032,Clan-barrios,EA032-4,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +37772,Ah6,EA032,Clan-barrios,EA032-4,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +37773,Ah7,EA032,Clan-barrios,EA032-4,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +37774,Ah8,EA032,Clan-barrios,EA032-4,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +37775,Ah9,EA032,Extended families,EA032-3,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75, +37776,Ai1,EA032,Extended families,EA032-3,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p75, +37777,Ai10,EA032,Extended families,EA032-3,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p75, +37778,Ai11,EA032,Independent families,EA032-2,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +37779,Ai12,EA032,Clan-barrios,EA032-4,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +37780,Ai13,EA032,Extended families,EA032-3,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +37781,Ai14,EA032,Extended families,EA032-3,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +37782,Ai15,EA032,Extended families,EA032-3,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +37783,Ai16,EA032,?,EA032-NA,,,,,, +37784,Ai17,EA032,Extended families,EA032-3,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +37785,Ai18,EA032,Clan-barrios,EA032-4,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +37786,Ai19,EA032,?,EA032-NA,,,,,, +37787,Ai2,EA032,?,EA032-NA,,,,,, +37788,Ai20,EA032,Extended families,EA032-3,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +37789,Ai21,EA032,Independent families,EA032-2,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +37790,Ai22,EA032,Independent families,EA032-2,,delafosse1897,,1890,EthnographicAtlas_1967_p75, +37791,Ai23,EA032,Extended families,EA032-3,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +37792,Ai24,EA032,Independent families,EA032-2,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +37793,Ai25,EA032,?,EA032-NA,,,,,, +37794,Ai26,EA032,Independent families,EA032-2,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p75, +37795,Ai27,EA032,Independent families,EA032-2,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +37796,Ai28,EA032,Extended families,EA032-3,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +37797,Ai29,EA032,Independent families,EA032-2,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +37798,Ai3,EA032,Extended families,EA032-3,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +37799,Ai30,EA032,Independent families,EA032-2,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +37800,Ai31,EA032,Independent families,EA032-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +37801,Ai32,EA032,Extended families,EA032-3,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +37802,Ai33,EA032,Extended families,EA032-3,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +37803,Ai34,EA032,Independent families,EA032-2,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +37804,Ai35,EA032,Independent families,EA032-2,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +37805,Ai36,EA032,Independent families,EA032-2,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +37806,Ai37,EA032,Clan-barrios,EA032-4,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +37807,Ai38,EA032,Extended families,EA032-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +37808,Ai39,EA032,Extended families,EA032-3,,nadel1947,,1940,EthnographicAtlas_1967_p75, +37809,Ai4,EA032,Extended families,EA032-3,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +37810,Ai40,EA032,Clan-barrios,EA032-4,,nadel1947,,1940,EthnographicAtlas_1967_p75, +37811,Ai41,EA032,Extended families,EA032-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +37812,Ai42,EA032,Extended families,EA032-3,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p75, +37813,Ai43,EA032,Extended families,EA032-3,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p75, +37814,Ai44,EA032,Independent families,EA032-2,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +37815,Ai45,EA032,Extended families,EA032-3,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +37816,Ai46,EA032,Independent families,EA032-2,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p75, +37817,Ai47,EA032,Independent families,EA032-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +37818,Ai5,EA032,Independent families,EA032-2,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +37819,Ai6,EA032,Extended families,EA032-3,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +37820,Ai7,EA032,Extended families,EA032-3,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +37821,Ai8,EA032,Extended families,EA032-3,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p75, +37822,Ai9,EA032,Extended families,EA032-3,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +37823,Aj1,EA032,Extended families,EA032-3,,lawrance1957,,1950,EthnographicAtlas_1967_p75, +37824,Aj10,EA032,Extended families,EA032-3,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +37825,Aj11,EA032,Extended families,EA032-3,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +37826,Aj12,EA032,Extended families,EA032-3,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +37827,Aj13,EA032,Independent families,EA032-2,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +37828,Aj14,EA032,Independent families,EA032-2,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +37829,Aj15,EA032,Extended families,EA032-3,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +37830,Aj16,EA032,Extended families,EA032-3,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p79, +37831,Aj17,EA032,Extended families,EA032-3,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +37832,Aj18,EA032,Independent families,EA032-2,,jensen1959,,1950,EthnographicAtlas_1967_p79, +37833,Aj19,EA032,Extended families,EA032-3,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p79, +37834,Aj2,EA032,Extended families,EA032-3,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +37835,Aj20,EA032,Independent families,EA032-2,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p79, +37836,Aj21,EA032,Extended families,EA032-3,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +37837,Aj22,EA032,Independent families,EA032-2,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +37838,Aj23,EA032,Extended families,EA032-3,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +37839,Aj24,EA032,Extended families,EA032-3,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +37840,Aj25,EA032,Extended families,EA032-3,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +37841,Aj26,EA032,Independent families,EA032-2,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p79, +37842,Aj27,EA032,Extended families,EA032-3,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +37843,Aj28,EA032,Extended families,EA032-3,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +37844,Aj29,EA032,Independent families,EA032-2,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +37845,Aj3,EA032,Extended families,EA032-3,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +37846,Aj30,EA032,?,EA032-NA,,,,,, +37847,Aj31,EA032,?,EA032-NA,,,,,, +37848,Aj4,EA032,Extended families,EA032-3,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +37849,Aj5,EA032,Independent families,EA032-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +37850,Aj6,EA032,Extended families,EA032-3,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +37851,Aj7,EA032,Independent families,EA032-2,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +37852,Aj8,EA032,Independent families,EA032-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +37853,Aj9,EA032,Extended families,EA032-3,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +37854,Ca1,EA032,Clan-barrios,EA032-4,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +37855,Ca10,EA032,Extended families,EA032-3,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +37856,Ca11,EA032,Independent families,EA032-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p79, +37857,Ca12,EA032,Independent families,EA032-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p79, +37858,Ca13,EA032,Extended families,EA032-3,Incorporated in the Ethiopian state,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p79, +37859,Ca14,EA032,?,EA032-NA,,,,,, +37860,Ca15,EA032,Independent families,EA032-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +37861,Ca16,EA032,Independent families,EA032-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +37862,Ca17,EA032,Independent families,EA032-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +37863,Ca18,EA032,Independent families,EA032-2,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +37864,Ca19,EA032,Extended families,EA032-3,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +37865,Ca2,EA032,Extended families,EA032-3,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +37866,Ca20,EA032,Independent families,EA032-2,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +37867,Ca21,EA032,Extended families,EA032-3,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +37868,Ca22,EA032,Independent families,EA032-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +37869,Ca23,EA032,Independent families,EA032-2,,jensen1959,,1950,EthnographicAtlas_1967_p79, +37870,Ca24,EA032,Independent families,EA032-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +37871,Ca25,EA032,Independent families,EA032-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +37872,Ca26,EA032,?,EA032-NA,,,,,, +37873,Ca27,EA032,Independent families,EA032-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +37874,Ca28,EA032,Independent families,EA032-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p79, +37875,Ca29,EA032,Independent families,EA032-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p79, +37876,Ca3,EA032,Extended families,EA032-3,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +37877,Ca30,EA032,Extended families,EA032-3,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p79, +37878,Ca31,EA032,Independent families,EA032-2,Politically integrated in the Ethiopian state,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +37879,Ca32,EA032,Independent families,EA032-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +37880,Ca33,EA032,Independent families,EA032-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +37881,Ca34,EA032,Independent families,EA032-2,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +37882,Ca35,EA032,Independent families,EA032-2,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +37883,Ca36,EA032,Extended families,EA032-3,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +37884,Ca37,EA032,Independent families,EA032-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +37885,Ca38,EA032,Extended families,EA032-3,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +37886,Ca39,EA032,Extended families,EA032-3,,lewis1965b,,1930,EthnographicAtlas_1967_p79, +37887,Ca4,EA032,Extended families,EA032-3,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p79, +37888,Ca40,EA032,Independent families,EA032-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +37889,Ca41,EA032,Independent families,EA032-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +37890,Ca42,EA032,Extended families,EA032-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +37891,Ca43,EA032,?,EA032-NA,,,,,, +37892,Ca5,EA032,Extended families,EA032-3,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p79, +37893,Ca6,EA032,Extended families,EA032-3,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +37894,Ca7,EA032,Extended families,EA032-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +37895,Ca8,EA032,Extended families,EA032-3,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p79, +37896,Ca9,EA032,Independent families,EA032-2,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +37897,Cb1,EA032,?,EA032-NA,,,,,, +37898,Cb10,EA032,Clan-barrios,EA032-4,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +37899,Cb11,EA032,Independent families,EA032-2,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +37900,Cb12,EA032,?,EA032-NA,,,,,, +37901,Cb13,EA032,?,EA032-NA,,,,,, +37902,Cb14,EA032,Independent families,EA032-2,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +37903,Cb15,EA032,Extended families,EA032-3,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +37904,Cb16,EA032,Independent families,EA032-2,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +37905,Cb17,EA032,Extended families,EA032-3,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +37906,Cb18,EA032,Extended families,EA032-3,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p79, +37907,Cb19,EA032,Extended families,EA032-3,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +37908,Cb2,EA032,Extended families,EA032-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +37909,Cb20,EA032,Extended families,EA032-3,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +37910,Cb21,EA032,?,EA032-NA,,,,,, +37911,Cb22,EA032,Clan-barrios,EA032-4,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +37912,Cb23,EA032,Extended families,EA032-3,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p83, +37913,Cb24,EA032,Extended families,EA032-3,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +37914,Cb25,EA032,Extended families,EA032-3,For the numerically preponderant Moslems,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +37915,Cb26,EA032,Extended families,EA032-3,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +37916,Cb27,EA032,Clan-barrios,EA032-4,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +37917,Cb28,EA032,Extended families,EA032-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +37918,Cb29,EA032,?,EA032-NA,,,,,, +37919,Cb3,EA032,Extended families,EA032-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +37920,Cb4,EA032,?,EA032-NA,,,,,, +37921,Cb5,EA032,Independent families,EA032-2,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p79, +37922,Cb6,EA032,Clan-barrios,EA032-4,,woodnd,,1920,EthnographicAtlas_1967_p79, +37923,Cb7,EA032,Extended families,EA032-3,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +37924,Cb8,EA032,Independent families,EA032-2,But subject to sedentary Fulani emirs through district chiefs,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +37925,Cb9,EA032,Extended families,EA032-3,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +37926,Cc1,EA032,Clan-barrios,EA032-4,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +37927,Cc10,EA032,Extended families,EA032-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +37928,Cc11,EA032,Independent families,EA032-2,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +37929,Cc12,EA032,Independent families,EA032-2,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +37930,Cc13,EA032,Independent families,EA032-2,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +37931,Cc14,EA032,Independent families,EA032-2,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +37932,Cc15,EA032,?,EA032-NA,,,,,, +37933,Cc16,EA032,Independent families,EA032-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +37934,Cc17,EA032,Extended families,EA032-3,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p83, +37935,Cc18,EA032,Extended families,EA032-3,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +37936,Cc19,EA032,Extended families,EA032-3,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +37937,Cc2,EA032,Extended families,EA032-3,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +37938,Cc20,EA032,Extended families,EA032-3,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p83, +37939,Cc3,EA032,Clan-barrios,EA032-4,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +37940,Cc4,EA032,Extended families,EA032-3,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +37941,Cc5,EA032,Extended families,EA032-3,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p83, +37942,Cc6,EA032,Extended families,EA032-3,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +37943,Cc7,EA032,Extended families,EA032-3,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +37944,Cc8,EA032,?,EA032-NA,,,,,, +37945,Cc9,EA032,Extended families,EA032-3,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +37946,Cd1,EA032,Extended families,EA032-3,Integrated into the Egyptian state; had a strong indigenous state in pre-Arab times,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +37947,Cd10,EA032,Extended families,EA032-3,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +37948,Cd11,EA032,Extended families,EA032-3,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p83, +37949,Cd12,EA032,Clan-barrios,EA032-4,Under French colonial administration until recently,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +37950,Cd13,EA032,Extended families,EA032-3,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +37951,Cd14,EA032,Extended families,EA032-3,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +37952,Cd15,EA032,Extended families,EA032-3,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +37953,Cd16,EA032,Extended families,EA032-3,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +37954,Cd17,EA032,Extended families,EA032-3,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +37955,Cd18,EA032,Independent families,EA032-2,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +37956,Cd19,EA032,Extended families,EA032-3,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +37957,Cd2,EA032,Clan-barrios,EA032-4,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +37958,Cd20,EA032,Extended families,EA032-3,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +37959,Cd21,EA032,Clan-barrios,EA032-4,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +37960,Cd3,EA032,Extended families,EA032-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +37961,Cd4,EA032,Clan-barrios,EA032-4,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +37962,Cd5,EA032,Clan-barrios,EA032-4,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +37963,Cd6,EA032,Independent families,EA032-2,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +37964,Cd7,EA032,Extended families,EA032-3,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +37965,Cd8,EA032,?,EA032-NA,,,,,, +37966,Cd9,EA032,Extended families,EA032-3,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +37967,Ce1,EA032,Extended families,EA032-3,"For the Gheg, but for the Albanians as a whole: 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +37968,Ce2,EA032,?,EA032-NA,,,,,, +37969,Ce3,EA032,Extended families,EA032-3,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +37970,Ce4,EA032,?,EA032-NA,,,,,, +37971,Ce5,EA032,Independent families,EA032-2,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +37972,Ce6,EA032,Independent families,EA032-2,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +37973,Ce7,EA032,Independent families,EA032-2,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +37974,Ce8,EA032,Independent families,EA032-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +37975,Cf1,EA032,Independent families,EA032-2,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +37976,Cf2,EA032,Extended families,EA032-3,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No4_Oct_1962, +37977,Cf3,EA032,Independent families,EA032-2,,munch1945,,1930,EthnographicAtlas_1967_p83, +37978,Cf4,EA032,Independent families,EA032-2,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +37979,Cf5,EA032,Independent families,EA032-2,,miner1939,,1930,EthnographicAtlas_1967_p83, +37980,Cg1,EA032,Extended families,EA032-3,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +37981,Cg2,EA032,Extended families,EA032-3,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +37982,Cg3,EA032,Independent families,EA032-2,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +37983,Cg4,EA032,Independent families,EA032-2,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +37984,Cg5,EA032,Independent families,EA032-2,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +37985,Ch1,EA032,Extended families,EA032-3,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +37986,Ch10,EA032,?,EA032-NA,,,,,, +37987,Ch11,EA032,Independent families,EA032-2,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +37988,Ch2,EA032,?,EA032-NA,,,,,, +37989,Ch3,EA032,Independent families,EA032-2,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +37990,Ch4,EA032,Extended families,EA032-3,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p83, +37991,Ch5,EA032,Extended families,EA032-3,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +37992,Ch6,EA032,Extended families,EA032-3,Integrated into the Russian Empire,ember1954,,1910,EthnographicAtlas_1967_p83, +37993,Ch7,EA032,Extended families,EA032-3,Integrated into the Soviet state,friedrich1954,,1930,EthnographicAtlas_1967_p83, +37994,Ch8,EA032,Extended families,EA032-3,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +37995,Ch9,EA032,Extended families,EA032-3,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +37996,Ci1,EA032,Clan-barrios,EA032-4,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p83, +37997,Ci10,EA032,Extended families,EA032-3,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +37998,Ci11,EA032,Extended families,EA032-3,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +37999,Ci12,EA032,Independent families,EA032-2,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +38000,Ci2,EA032,Independent families,EA032-2,,grigolia1939,,1930,EthnographicAtlas_1967_p83, +38001,Ci3,EA032,?,EA032-NA,,,,,, +38002,Ci4,EA032,Extended families,EA032-3,Prior to Russian rule; integrated today into the Soviet state,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +38003,Ci5,EA032,Clan-barrios,EA032-4,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +38004,Ci6,EA032,Extended families,EA032-3,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p83, +38005,Ci7,EA032,?,EA032-NA,,,,,, +38006,Ci8,EA032,Independent families,EA032-2,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +38007,Ci9,EA032,Extended families,EA032-3,Long integrated in the Russian state,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +38008,Cj1,EA032,Extended families,EA032-3,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +38009,Cj10,EA032,Clan-barrios,EA032-4,Integrated into the state of Iraq,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +38010,Cj2,EA032,Extended families,EA032-3,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +38011,Cj3,EA032,Extended families,EA032-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +38012,Cj4,EA032,Independent families,EA032-2,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +38013,Cj5,EA032,Extended families,EA032-3,,dickson1949,,1930,EthnographicAtlas_1967_p87, +38014,Cj6,EA032,Independent families,EA032-2,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +38015,Cj7,EA032,Extended families,EA032-3,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p87, +38016,Cj8,EA032,Extended families,EA032-3,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +38017,Cj9,EA032,Extended families,EA032-3,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +38018,Ea1,EA032,Extended families,EA032-3,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +38019,Ea10,EA032,Extended families,EA032-3,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +38020,Ea11,EA032,Extended families,EA032-3,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +38021,Ea12,EA032,Extended families,EA032-3,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +38022,Ea13,EA032,Clan-barrios,EA032-4,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +38023,Ea2,EA032,Clan-barrios,EA032-4,Integrated in the Pakistan state,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +38024,Ea3,EA032,Extended families,EA032-3,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +38025,Ea4,EA032,Extended families,EA032-3,,barth1956b,,1950,EthnographicAtlas_1967_p87, +38026,Ea5,EA032,Extended families,EA032-3,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +38027,Ea6,EA032,Independent families,EA032-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +38028,Ea7,EA032,Extended families,EA032-3,Integrated into the state of Afghanistan,schurmann1962,,1950,EthnographicAtlas_1967_p87, +38029,Ea8,EA032,Extended families,EA032-3,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p87, +38030,Ea9,EA032,Extended families,EA032-3,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +38031,Eb1,EA032,Extended families,EA032-3,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +38032,Eb2,EA032,Extended families,EA032-3,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p87, +38033,Eb3,EA032,Extended families,EA032-3,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p87, +38034,Eb4,EA032,?,EA032-NA,,,,,, +38035,Eb5,EA032,Clan-barrios,EA032-4,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No2_Apr_1963, +38036,Eb6,EA032,?,EA032-NA,,,,,, +38037,Eb7,EA032,Extended families,EA032-3,Integrated into the Chinese state,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +38038,Eb8,EA032,?,EA032-NA,,,,,, +38039,Ec1,EA032,Independent families,EA032-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +38040,Ec10,EA032,Extended families,EA032-3,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +38041,Ec11,EA032,Independent families,EA032-2,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +38042,Ec2,EA032,Extended families,EA032-3,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38043,Ec3,EA032,Extended families,EA032-3,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +38044,Ec4,EA032,Extended families,EA032-3,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +38045,Ec5,EA032,Extended families,EA032-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +38046,Ec6,EA032,Extended families,EA032-3,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +38047,Ec7,EA032,Extended families,EA032-3,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +38048,Ec8,EA032,Independent families,EA032-2,,shimkin1939,,1900,EthnographicAtlas_1967_p87, +38049,Ec9,EA032,Extended families,EA032-3,,lattimore1933,,1920,EthnographicAtlas_1967_p87, +38050,Ed1,EA032,Extended families,EA032-3,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +38051,Ed10,EA032,Clan-barrios,EA032-4,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +38052,Ed13,EA032,?,EA032-NA,,,,,, +38053,Ed14,EA032,?,EA032-NA,,,,,, +38054,Ed15a,EA032,?,EA032-NA,,,,,, +38055,Ed15b,EA032,Extended families,EA032-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +38056,Ed16,EA032,?,EA032-NA,,,,,, +38057,Ed2,EA032,Extended families,EA032-3,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +38058,Ed3,EA032,Clan-barrios,EA032-4,Integrated into the Chinese state,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p87, +38059,Ed4,EA032,Extended families,EA032-3,Integrated into the Chinese administrative system,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +38060,Ed5,EA032,Independent families,EA032-2,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38061,Ed6,EA032,Extended families,EA032-3,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +38062,Ed7,EA032,Extended families,EA032-3,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +38063,Ed8,EA032,Clan-barrios,EA032-4,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +38064,Ed9,EA032,Extended families,EA032-3,"Formerly ""a strong tribal organization"" but integrated today into the Chinese state",lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +38065,Ee1,EA032,Extended families,EA032-3,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +38066,Ee2,EA032,Clan-barrios,EA032-4,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +38067,Ee3,EA032,Extended families,EA032-3,Subject to the Maharajah of Sikkim through district chiefs,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +38068,Ee4,EA032,Extended families,EA032-3,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +38069,Ee5,EA032,Extended families,EA032-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +38070,Ee6,EA032,Extended families,EA032-3,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +38071,Ee7,EA032,?,EA032-NA,,,,,, +38072,Ee8,EA032,Extended families,EA032-3,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +38073,Ef1,EA032,Extended families,EA032-3,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +38074,Ef10,EA032,?,EA032-NA,,,,,, +38075,Ef11,EA032,Clan-barrios,EA032-4,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +38076,Ef2,EA032,Clan-barrios,EA032-4,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +38077,Ef3,EA032,?,EA032-NA,,,,,, +38078,Ef4,EA032,?,EA032-NA,,,,,, +38079,Ef5,EA032,Extended families,EA032-3,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +38080,Ef6,EA032,Clan-barrios,EA032-4,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p87, +38081,Ef7,EA032,Clan-barrios,EA032-4,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +38082,Ef8,EA032,Clan-barrios,EA032-4,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +38083,Ef9,EA032,Extended families,EA032-3,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38084,Eg1,EA032,Extended families,EA032-3,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38085,Eg10,EA032,Clan-barrios,EA032-4,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +38086,Eg11,EA032,?,EA032-NA,,,,,, +38087,Eg12,EA032,?,EA032-NA,,,,,, +38088,Eg13,EA032,Extended families,EA032-3,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38089,Eg14,EA032,Independent families,EA032-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +38090,Eg2,EA032,Clan-barrios,EA032-4,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +38091,Eg3,EA032,Extended families,EA032-3,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +38092,Eg4,EA032,Extended families,EA032-3,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +38093,Eg5,EA032,Clan-barrios,EA032-4,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +38094,Eg6,EA032,Clan-barrios,EA032-4,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +38095,Eg7,EA032,Independent families,EA032-2,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +38096,Eg8,EA032,Extended families,EA032-3,,griffiths1946,,1940,EthnographicAtlas_1967_p91, +38097,Eg9,EA032,Independent families,EA032-2,,elwin1939,,1930,EthnographicAtlas_1967_p91, +38098,Eh1,EA032,Independent families,EA032-2,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +38099,Eh10,EA032,?,EA032-NA,,,,,, +38100,Eh2,EA032,Extended families,EA032-3,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +38101,Eh3,EA032,Clan-barrios,EA032-4,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +38102,Eh4,EA032,Extended families,EA032-3,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38103,Eh5,EA032,Extended families,EA032-3,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +38104,Eh6,EA032,Extended families,EA032-3,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +38105,Eh7,EA032,Independent families,EA032-2,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +38106,Eh8,EA032,Extended families,EA032-3,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91, +38107,Eh9,EA032,Extended families,EA032-3,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +38108,Ei1,EA032,Extended families,EA032-3,But integrated today into the political system of India,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38109,Ei10,EA032,Independent families,EA032-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p91, +38110,Ei11,EA032,Extended families,EA032-3,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +38111,Ei12,EA032,Extended families,EA032-3,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +38112,Ei13,EA032,Extended families,EA032-3,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +38113,Ei14,EA032,Independent families,EA032-2,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +38114,Ei15,EA032,?,EA032-NA,,,,,, +38115,Ei16,EA032,Extended families,EA032-3,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +38116,Ei17,EA032,?,EA032-NA,,,,,, +38117,Ei18,EA032,Independent families,EA032-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +38118,Ei19,EA032,Extended families,EA032-3,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +38119,Ei2,EA032,Extended families,EA032-3,,mills1922,,1920,EthnographicAtlas_1967_p91, +38120,Ei20,EA032,?,EA032-NA,,,,,, +38121,Ei3,EA032,Independent families,EA032-2,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +38122,Ei4,EA032,Extended families,EA032-3,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +38123,Ei5,EA032,Clan-barrios,EA032-4,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +38124,Ei6,EA032,Extended families,EA032-3,,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +38125,Ei7,EA032,Extended families,EA032-3,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +38126,Ei8,EA032,Clan-barrios,EA032-4,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +38127,Ei9,EA032,Extended families,EA032-3,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p91, +38128,Ej1,EA032,Extended families,EA032-3,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +38129,Ej10,EA032,Extended families,EA032-3,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +38130,Ej11,EA032,Extended families,EA032-3,Organized in a great state from the 11th to the 17th centuries; thereafter subject to the Vietnamese,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +38131,Ej12,EA032,Extended families,EA032-3,But politically incorporated into the state of Thailand,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +38132,Ej13,EA032,Extended families,EA032-3,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +38133,Ej14,EA032,Extended families,EA032-3,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38134,Ej15,EA032,Independent families,EA032-2,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +38135,Ej16,EA032,Extended families,EA032-3,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +38136,Ej2,EA032,Extended families,EA032-3,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +38137,Ej3,EA032,Independent families,EA032-2,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +38138,Ej4,EA032,Extended families,EA032-3,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +38139,Ej5,EA032,Independent families,EA032-2,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +38140,Ej6,EA032,Independent families,EA032-2,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p91, +38141,Ej7,EA032,Independent families,EA032-2,,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +38142,Ej8,EA032,Extended families,EA032-3,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +38143,Ej9,EA032,Extended families,EA032-3,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +38144,Ia1,EA032,Extended families,EA032-3,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +38145,Ia10,EA032,Extended families,EA032-3,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p91, +38146,Ia11,EA032,Independent families,EA032-2,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +38147,Ia12,EA032,Independent families,EA032-2,Politically integrated into the Philippine state,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +38148,Ia13,EA032,Independent families,EA032-2,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +38149,Ia14,EA032,Independent families,EA032-2,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p95, +38150,Ia15,EA032,Independent families,EA032-2,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +38151,Ia16,EA032,Extended families,EA032-3,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +38152,Ia17,EA032,?,EA032-NA,,,,,, +38153,Ia18,EA032,?,EA032-NA,,,,,, +38154,Ia2,EA032,Extended families,EA032-3,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +38155,Ia3,EA032,Extended families,EA032-3,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +38156,Ia4,EA032,Independent families,EA032-2,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +38157,Ia5,EA032,Independent families,EA032-2,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +38158,Ia6,EA032,Extended families,EA032-3,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38159,Ia7,EA032,Independent families,EA032-2,,fox1954,,1950,EthnographicAtlas_1967_p91, +38160,Ia8,EA032,Extended families,EA032-3,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +38161,Ia9,EA032,Extended families,EA032-3,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +38162,Ib1,EA032,Extended families,EA032-3,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38163,Ib2,EA032,Extended families,EA032-3,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38164,Ib3,EA032,Clan-barrios,EA032-4,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +38165,Ib4,EA032,Extended families,EA032-3,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p95, +38166,Ib5,EA032,Extended families,EA032-3,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +38167,Ib6,EA032,Clan-barrios,EA032-4,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +38168,Ib7,EA032,Extended families,EA032-3,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p95, +38169,Ib8,EA032,Independent families,EA032-2,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p95, +38170,Ib9,EA032,?,EA032-NA,,,,,, +38171,Ic1,EA032,Extended families,EA032-3,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38172,Ic10,EA032,Extended families,EA032-3,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p95, +38173,Ic11,EA032,Extended families,EA032-3,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38174,Ic12,EA032,Independent families,EA032-2,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +38175,Ic13,EA032,?,EA032-NA,,,,,, +38176,Ic2,EA032,Extended families,EA032-3,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +38177,Ic3,EA032,Clan-barrios,EA032-4,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p95, +38178,Ic4,EA032,?,EA032-NA,,,,,, +38179,Ic5,EA032,Extended families,EA032-3,"But 'extended families' (EA032 code ""3"") with 'no political authority beyond the local community' (EA033 code ""1"") among the eastern Toraja [kk check orig comment]",adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p95,"Assume Murdock comment, listed in Gray (1999), applies to this variable, not Col 30" +38180,Ic6,EA032,Extended families,EA032-3,,drabbe1940,,1930,EthnographicAtlas_1967_p95, +38181,Ic7,EA032,Clan-barrios,EA032-4,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +38182,Ic8,EA032,Extended families,EA032-3,,pleyte1893,,1890,EthnographicAtlas_1967_p95, +38183,Ic9,EA032,Independent families,EA032-2,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p95, +38184,Id1,EA032,Independent families,EA032-2,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +38185,Id10,EA032,Independent families,EA032-2,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +38186,Id11,EA032,Independent families,EA032-2,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +38187,Id12,EA032,Independent families,EA032-2,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +38188,Id13,EA032,Independent families,EA032-2,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +38189,Id2,EA032,Independent families,EA032-2,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +38190,Id3,EA032,Extended families,EA032-3,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +38191,Id4,EA032,Independent families,EA032-2,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +38192,Id5,EA032,Independent families,EA032-2,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +38193,Id6,EA032,Independent families,EA032-2,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p95, +38194,Id7,EA032,Independent families,EA032-2,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +38195,Id8,EA032,Independent families,EA032-2,,roth1890,,1830,EthnographicAtlas_1967_p95, +38196,Id9,EA032,Independent families,EA032-2,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p95, +38197,Ie1,EA032,Extended families,EA032-3,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38198,Ie10,EA032,Clan-barrios,EA032-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +38199,Ie11,EA032,Extended families,EA032-3,,bowers1964,,1950,EthnographicAtlas_1967_p95, +38200,Ie12,EA032,Extended families,EA032-3,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38201,Ie13,EA032,Extended families,EA032-3,,landtman1927,,1920,EthnographicAtlas_1967_p95, +38202,Ie14,EA032,Independent families,EA032-2,,haddon1908,,1900,EthnographicAtlas_1967_p95, +38203,Ie15,EA032,Extended families,EA032-3,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38204,Ie16,EA032,Clan-barrios,EA032-4,,williams194041,,1940,EthnographicAtlas_1967_p95, +38205,Ie17,EA032,Extended families,EA032-3,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +38206,Ie18,EA032,Clan-barrios,EA032-4,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +38207,Ie19,EA032,Clan-barrios,EA032-4,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +38208,Ie2,EA032,Extended families,EA032-3,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +38209,Ie20,EA032,Extended families,EA032-3,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +38210,Ie21,EA032,Clan-barrios,EA032-4,,malinowski1916,,1900,EthnographicAtlas_1967_p95, +38211,Ie22,EA032,Extended families,EA032-3,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +38212,Ie23,EA032,Extended families,EA032-3,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +38213,Ie24,EA032,Extended families,EA032-3,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p95, +38214,Ie25,EA032,Extended families,EA032-3,,williamson1912,,1920,EthnographicAtlas_1967_p95, +38215,Ie26,EA032,Clan-barrios,EA032-4,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +38216,Ie27,EA032,Extended families,EA032-3,,thurnwald1916,,1910,EthnographicAtlas_1967_p99, +38217,Ie28,EA032,Extended families,EA032-3,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +38218,Ie29,EA032,Extended families,EA032-3,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38219,Ie3,EA032,Independent families,EA032-2,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38220,Ie30,EA032,Extended families,EA032-3,,pouwer1955,,1950,EthnographicAtlas_1967_p99, +38221,Ie31,EA032,Extended families,EA032-3,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +38222,Ie32,EA032,Extended families,EA032-3,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +38223,Ie33,EA032,Extended families,EA032-3,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +38224,Ie34,EA032,?,EA032-NA,,,,,, +38225,Ie35,EA032,Clan-barrios,EA032-4,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +38226,Ie36,EA032,?,EA032-NA,,,,,, +38227,Ie37,EA032,?,EA032-NA,,,,,, +38228,Ie38,EA032,Extended families,EA032-3,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +38229,Ie39,EA032,Extended families,EA032-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +38230,Ie4,EA032,Extended families,EA032-3,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38231,Ie5,EA032,Extended families,EA032-3,,williams1936,,1930,EthnographicAtlas_1967_p95, +38232,Ie6,EA032,Clan-barrios,EA032-4,,held1947,,1930,EthnographicAtlas_1967_p95, +38233,Ie7,EA032,Clan-barrios,EA032-4,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +38234,Ie8,EA032,Clan-barrios,EA032-4,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +38235,Ie9,EA032,Extended families,EA032-3,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +38236,If1,EA032,Clan-barrios,EA032-4,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38237,If10,EA032,?,EA032-NA,,,,,, +38238,If11,EA032,Extended families,EA032-3,,sarfert1919,,1860,EthnographicAtlas_1967_p99, +38239,If12,EA032,Extended families,EA032-3,Subject to the paramount chief of Kwajalein,mason1954,,1940,EthnographicAtlas_1967_p99, +38240,If13,EA032,Extended families,EA032-3,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p99, +38241,If14,EA032,Extended families,EA032-3,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +38242,If15,EA032,Extended families,EA032-3,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +38243,If16,EA032,Extended families,EA032-3,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +38244,If17,EA032,Extended families,EA032-3,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +38245,If2,EA032,Extended families,EA032-3,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +38246,If3,EA032,Extended families,EA032-3,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +38247,If4,EA032,Extended families,EA032-3,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +38248,If5,EA032,Extended families,EA032-3,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +38249,If6,EA032,Extended families,EA032-3,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +38250,If7,EA032,Extended families,EA032-3,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p99, +38251,If8,EA032,Independent families,EA032-2,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +38252,If9,EA032,Extended families,EA032-3,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +38253,Ig1,EA032,Extended families,EA032-3,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +38254,Ig10,EA032,Extended families,EA032-3,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +38255,Ig11,EA032,Extended families,EA032-3,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +38256,Ig12,EA032,Extended families,EA032-3,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p99, +38257,Ig13,EA032,Extended families,EA032-3,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p99, +38258,Ig14,EA032,Clan-barrios,EA032-4,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +38259,Ig15,EA032,?,EA032-NA,,,,,, +38260,Ig16,EA032,?,EA032-NA,,,,,, +38261,Ig17,EA032,?,EA032-NA,,,,,, +38262,Ig18,EA032,?,EA032-NA,,,,,, +38263,Ig19,EA032,?,EA032-NA,,,,,, +38264,Ig2,EA032,Independent families,EA032-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +38265,Ig20,EA032,Extended families,EA032-3,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +38266,Ig21,EA032,Extended families,EA032-3,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +38267,Ig3,EA032,Extended families,EA032-3,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +38268,Ig4,EA032,Extended families,EA032-3,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +38269,Ig5,EA032,Extended families,EA032-3,,fortune1932b,,1920,EthnographicAtlas_1967_p99, +38270,Ig6,EA032,Extended families,EA032-3,,ivens1927,,1900,EthnographicAtlas_1967_p99, +38271,Ig7,EA032,Clan-barrios,EA032-4,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +38272,Ig8,EA032,?,EA032-NA,,,,,, +38273,Ig9,EA032,Extended families,EA032-3,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +38274,Ih1,EA032,Extended families,EA032-3,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +38275,Ih10,EA032,Independent families,EA032-2,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38276,Ih11,EA032,?,EA032-NA,,,,,, +38277,Ih12,EA032,?,EA032-NA,,,,,, +38278,Ih13,EA032,?,EA032-NA,,,,,, +38279,Ih14,EA032,Extended families,EA032-3,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +38280,Ih2,EA032,Independent families,EA032-2,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38281,Ih3,EA032,Extended families,EA032-3,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +38282,Ih4,EA032,Extended families,EA032-3,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38283,Ih5,EA032,Extended families,EA032-3,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p99, +38284,Ih6,EA032,Extended families,EA032-3,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p99, +38285,Ih7,EA032,Extended families,EA032-3,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p99, +38286,Ih8,EA032,Clan-barrios,EA032-4,"Formerly 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"")",quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +38287,Ih9,EA032,Clan-barrios,EA032-4,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38288,Ii1,EA032,Clan-barrios,EA032-4,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +38289,Ii10,EA032,Extended families,EA032-3,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +38290,Ii12,EA032,Extended families,EA032-3,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38291,Ii13,EA032,Extended families,EA032-3,,burrows1937,,1830,EthnographicAtlas_1967_p99, +38292,Ii14,EA032,Clan-barrios,EA032-4,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +38293,Ii2,EA032,Extended families,EA032-3,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +38294,Ii3,EA032,Extended families,EA032-3,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +38295,Ii4,EA032,Extended families,EA032-3,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +38296,Ii5,EA032,Clan-barrios,EA032-4,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p99, +38297,Ii6,EA032,Extended families,EA032-3,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +38298,Ii7,EA032,Extended families,EA032-3,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +38299,Ii8,EA032,Extended families,EA032-3,,burrows1936,,1840,EthnographicAtlas_1967_p99, +38300,Ii9,EA032,Extended families,EA032-3,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +38301,Ij1,EA032,Clan-barrios,EA032-4,,buck1934,,1820,EthnographicAtlas_1967_p99, +38302,Ij10,EA032,Extended families,EA032-3,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +38303,Ij2,EA032,Extended families,EA032-3,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +38304,Ij3,EA032,Independent families,EA032-2,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +38305,Ij4,EA032,Extended families,EA032-3,,buck1932a,,1850,EthnographicAtlas_1967_p103, +38306,Ij5,EA032,Extended families,EA032-3,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p103, +38307,Ij6,EA032,Extended families,EA032-3,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p103, +38308,Ij7,EA032,Extended families,EA032-3,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +38309,Ij8,EA032,Extended families,EA032-3,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p103, +38310,Ij9,EA032,Independent families,EA032-2,,metraux1940,,1860,EthnographicAtlas_1967_p103, +38311,Na1,EA032,Independent families,EA032-2,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +38312,Na10,EA032,Extended families,EA032-3,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +38313,Na11,EA032,Clan-barrios,EA032-4,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +38314,Na12,EA032,Independent families,EA032-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +38315,Na13,EA032,Independent families,EA032-2,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +38316,Na14,EA032,Independent families,EA032-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +38317,Na15,EA032,Independent families,EA032-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p103, +38318,Na16,EA032,Independent families,EA032-2,,osgood1931,,1860,EthnographicAtlas_1967_p103, +38319,Na17,EA032,Independent families,EA032-2,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38320,Na19,EA032,Extended families,EA032-3,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +38321,Na2,EA032,Extended families,EA032-3,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +38322,Na20,EA032,Independent families,EA032-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +38323,Na21,EA032,Independent families,EA032-2,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +38324,Na22,EA032,Extended families,EA032-3,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +38325,Na23,EA032,Extended families,EA032-3,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +38326,Na24,EA032,Extended families,EA032-3,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +38327,Na25,EA032,Independent families,EA032-2,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +38328,Na26,EA032,Extended families,EA032-3,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +38329,Na27,EA032,Extended families,EA032-3,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +38330,Na28,EA032,Independent families,EA032-2,,jenness1937,,1880,EthnographicAtlas_1967_p103, +38331,Na29,EA032,Independent families,EA032-2,,goddard1916,,1850,EthnographicAtlas_1967_p103, +38332,Na3,EA032,Independent families,EA032-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +38333,Na30,EA032,Independent families,EA032-2,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +38334,Na31,EA032,Independent families,EA032-2,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +38335,Na32,EA032,Extended families,EA032-3,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +38336,Na33,EA032,Extended families,EA032-3,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +38337,Na34,EA032,Extended families,EA032-3,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +38338,Na35,EA032,Extended families,EA032-3,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +38339,Na36,EA032,Extended families,EA032-3,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +38340,Na37,EA032,Extended families,EA032-3,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +38341,Na38,EA032,Extended families,EA032-3,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +38342,Na39,EA032,Independent families,EA032-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +38343,Na4,EA032,Independent families,EA032-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +38344,Na40,EA032,Extended families,EA032-3,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +38345,Na41,EA032,Independent families,EA032-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +38346,Na42,EA032,Extended families,EA032-3,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +38347,Na43,EA032,Extended families,EA032-3,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +38348,Na44,EA032,Independent families,EA032-2,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +38349,Na45,EA032,Independent families,EA032-2,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +38350,Na5,EA032,Independent families,EA032-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +38351,Na6,EA032,Extended families,EA032-3,,lantis1946,,1930,EthnographicAtlas_1967_p103, +38352,Na7,EA032,Extended families,EA032-3,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +38353,Na8,EA032,Independent families,EA032-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +38354,Na9,EA032,Extended families,EA032-3,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38355,Nb1,EA032,Extended families,EA032-3,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +38356,Nb10,EA032,Extended families,EA032-3,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +38357,Nb11,EA032,Extended families,EA032-3,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +38358,Nb12,EA032,Extended families,EA032-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +38359,Nb13,EA032,Extended families,EA032-3,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +38360,Nb14,EA032,Extended families,EA032-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +38361,Nb15,EA032,Extended families,EA032-3,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +38362,Nb16,EA032,Extended families,EA032-3,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +38363,Nb17,EA032,Extended families,EA032-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +38364,Nb18,EA032,Extended families,EA032-3,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +38365,Nb19,EA032,Extended families,EA032-3,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +38366,Nb2,EA032,Extended families,EA032-3,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +38367,Nb20,EA032,Extended families,EA032-3,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +38368,Nb21,EA032,Extended families,EA032-3,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +38369,Nb22,EA032,Extended families,EA032-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +38370,Nb23,EA032,Extended families,EA032-3,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +38371,Nb24,EA032,Extended families,EA032-3,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +38372,Nb25,EA032,Extended families,EA032-3,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +38373,Nb26,EA032,Extended families,EA032-3,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +38374,Nb27,EA032,Extended families,EA032-3,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +38375,Nb28,EA032,Extended families,EA032-3,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +38376,Nb29,EA032,Extended families,EA032-3,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +38377,Nb3,EA032,Extended families,EA032-3,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +38378,Nb30,EA032,Extended families,EA032-3,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +38379,Nb31,EA032,Independent families,EA032-2,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p107, +38380,Nb32,EA032,Extended families,EA032-3,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +38381,Nb33,EA032,Extended families,EA032-3,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +38382,Nb34,EA032,Extended families,EA032-3,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +38383,Nb35,EA032,Extended families,EA032-3,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +38384,Nb36,EA032,Extended families,EA032-3,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +38385,Nb37,EA032,Independent families,EA032-2,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +38386,Nb38,EA032,Independent families,EA032-2,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +38387,Nb39,EA032,Extended families,EA032-3,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +38388,Nb4,EA032,Extended families,EA032-3,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +38389,Nb5,EA032,Extended families,EA032-3,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +38390,Nb6,EA032,Independent families,EA032-2,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +38391,Nb7,EA032,Clan-barrios,EA032-4,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +38392,Nb8,EA032,Extended families,EA032-3,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +38393,Nb9,EA032,Extended families,EA032-3,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +38394,Nc1,EA032,Independent families,EA032-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +38395,Nc10,EA032,Extended families,EA032-3,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +38396,Nc11,EA032,Extended families,EA032-3,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +38397,Nc12,EA032,Extended families,EA032-3,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +38398,Nc13,EA032,Independent families,EA032-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +38399,Nc14,EA032,Independent families,EA032-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +38400,Nc15,EA032,Independent families,EA032-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +38401,Nc16,EA032,Extended families,EA032-3,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +38402,Nc17,EA032,Extended families,EA032-3,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +38403,Nc18,EA032,Extended families,EA032-3,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +38404,Nc19,EA032,Extended families,EA032-3,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p107, +38405,Nc2,EA032,Independent families,EA032-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +38406,Nc20,EA032,Extended families,EA032-3,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +38407,Nc21,EA032,Extended families,EA032-3,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +38408,Nc22,EA032,Extended families,EA032-3,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +38409,Nc23,EA032,Independent families,EA032-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +38410,Nc24,EA032,Extended families,EA032-3,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +38411,Nc25,EA032,Extended families,EA032-3,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +38412,Nc26,EA032,Extended families,EA032-3,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +38413,Nc27,EA032,Independent families,EA032-2,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p107, +38414,Nc28,EA032,Extended families,EA032-3,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +38415,Nc29,EA032,Independent families,EA032-2,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +38416,Nc3,EA032,Extended families,EA032-3,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +38417,Nc30,EA032,Extended families,EA032-3,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +38418,Nc31,EA032,Extended families,EA032-3,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +38419,Nc32,EA032,Independent families,EA032-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +38420,Nc33,EA032,Independent families,EA032-2,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +38421,Nc34,EA032,Independent families,EA032-2,,meigs1939,,1880,EthnographicAtlas_1967_p107, +38422,Nc4,EA032,Independent families,EA032-2,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +38423,Nc5,EA032,Independent families,EA032-2,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +38424,Nc6,EA032,Extended families,EA032-3,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +38425,Nc7,EA032,Independent families,EA032-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +38426,Nc8,EA032,Extended families,EA032-3,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +38427,Nc9,EA032,Extended families,EA032-3,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +38428,Nd1,EA032,Independent families,EA032-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +38429,Nd10,EA032,Extended families,EA032-3,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +38430,Nd11,EA032,Extended families,EA032-3,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +38431,Nd12,EA032,Independent families,EA032-2,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +38432,Nd13,EA032,Extended families,EA032-3,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +38433,Nd14,EA032,Extended families,EA032-3,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +38434,Nd15,EA032,Independent families,EA032-2,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +38435,Nd16,EA032,Independent families,EA032-2,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +38436,Nd17,EA032,Independent families,EA032-2,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +38437,Nd18,EA032,Extended families,EA032-3,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +38438,Nd19,EA032,Independent families,EA032-2,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +38439,Nd2,EA032,Independent families,EA032-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +38440,Nd20,EA032,Extended families,EA032-3,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +38441,Nd21,EA032,Independent families,EA032-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +38442,Nd22,EA032,Independent families,EA032-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +38443,Nd23,EA032,Independent families,EA032-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +38444,Nd24,EA032,Independent families,EA032-2,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +38445,Nd25,EA032,Independent families,EA032-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +38446,Nd26,EA032,Independent families,EA032-2,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +38447,Nd27,EA032,Independent families,EA032-2,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +38448,Nd28,EA032,Independent families,EA032-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +38449,Nd29,EA032,Independent families,EA032-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +38450,Nd3,EA032,Extended families,EA032-3,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +38451,Nd30,EA032,Extended families,EA032-3,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +38452,Nd31,EA032,Independent families,EA032-2,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +38453,Nd32,EA032,Independent families,EA032-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +38454,Nd33,EA032,Independent families,EA032-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +38455,Nd34,EA032,Independent families,EA032-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +38456,Nd35,EA032,Independent families,EA032-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +38457,Nd36,EA032,Independent families,EA032-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +38458,Nd37,EA032,Independent families,EA032-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +38459,Nd38,EA032,Independent families,EA032-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +38460,Nd39,EA032,Independent families,EA032-2,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +38461,Nd4,EA032,Independent families,EA032-2,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +38462,Nd40,EA032,Independent families,EA032-2,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +38463,Nd41,EA032,Independent families,EA032-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +38464,Nd42,EA032,Independent families,EA032-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +38465,Nd43,EA032,Independent families,EA032-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +38466,Nd44,EA032,Independent families,EA032-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +38467,Nd45,EA032,Independent families,EA032-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +38468,Nd46,EA032,Independent families,EA032-2,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +38469,Nd47,EA032,Independent families,EA032-2,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +38470,Nd48,EA032,Independent families,EA032-2,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +38471,Nd49,EA032,Independent families,EA032-2,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +38472,Nd5,EA032,Independent families,EA032-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +38473,Nd50,EA032,Independent families,EA032-2,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +38474,Nd51,EA032,Independent families,EA032-2,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +38475,Nd52,EA032,Independent families,EA032-2,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +38476,Nd53,EA032,Independent families,EA032-2,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +38477,Nd54,EA032,Independent families,EA032-2,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38478,Nd55,EA032,Independent families,EA032-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +38479,Nd56,EA032,Independent families,EA032-2,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +38480,Nd57,EA032,Independent families,EA032-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +38481,Nd58,EA032,Independent families,EA032-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +38482,Nd59,EA032,Independent families,EA032-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +38483,Nd6,EA032,Independent families,EA032-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +38484,Nd60,EA032,Independent families,EA032-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +38485,Nd61,EA032,Independent families,EA032-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +38486,Nd62,EA032,Independent families,EA032-2,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +38487,Nd63,EA032,Independent families,EA032-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +38488,Nd64,EA032,Independent families,EA032-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +38489,Nd65,EA032,Extended families,EA032-3,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +38490,Nd66,EA032,Independent families,EA032-2,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +38491,Nd67,EA032,Independent families,EA032-2,,gifford1936,,1870,EthnographicAtlas_1967_p111, +38492,Nd7,EA032,Independent families,EA032-2,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +38493,Nd8,EA032,Extended families,EA032-3,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +38494,Nd9,EA032,Extended families,EA032-3,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +38495,Ne1,EA032,Independent families,EA032-2,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +38496,Ne10,EA032,Extended families,EA032-3,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +38497,Ne11,EA032,Independent families,EA032-2,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +38498,Ne12,EA032,Extended families,EA032-3,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +38499,Ne13,EA032,Independent families,EA032-2,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +38500,Ne14,EA032,Independent families,EA032-2,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +38501,Ne15,EA032,Extended families,EA032-3,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +38502,Ne16,EA032,Independent families,EA032-2,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +38503,Ne17,EA032,Extended families,EA032-3,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +38504,Ne18,EA032,Independent families,EA032-2,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +38505,Ne19,EA032,Independent families,EA032-2,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +38506,Ne2,EA032,Extended families,EA032-3,The Kiowa-Apache formed one band of the Kiowa tribe,mcallister1937,,1870,EthnographicAtlas_1967_p111, +38507,Ne20,EA032,Independent families,EA032-2,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p115, +38508,Ne21,EA032,?,EA032-NA,,,,,, +38509,Ne3,EA032,Extended families,EA032-3,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p111, +38510,Ne4,EA032,Independent families,EA032-2,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +38511,Ne5,EA032,Extended families,EA032-3,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +38512,Ne6,EA032,Extended families,EA032-3,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p111, +38513,Ne7,EA032,Independent families,EA032-2,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +38514,Ne8,EA032,Extended families,EA032-3,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +38515,Ne9,EA032,Extended families,EA032-3,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +38516,Nf10,EA032,Extended families,EA032-3,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +38517,Nf11,EA032,Extended families,EA032-3,,whitman1937,,1870,EthnographicAtlas_1967_p115, +38518,Nf12,EA032,Extended families,EA032-3,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +38519,Nf13,EA032,Extended families,EA032-3,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38520,Nf14,EA032,Extended families,EA032-3,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +38521,Nf15,EA032,?,EA032-NA,,,,,, +38522,Nf2,EA032,Clan-barrios,EA032-4,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p115, +38523,Nf3,EA032,Extended families,EA032-3,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +38524,Nf4,EA032,Extended families,EA032-3,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +38525,Nf5,EA032,Extended families,EA032-3,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +38526,Nf6,EA032,Extended families,EA032-3,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +38527,Nf7,EA032,Clan-barrios,EA032-4,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38528,Nf8,EA032,Extended families,EA032-3,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +38529,Nf9,EA032,Extended families,EA032-3,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +38530,Ng1,EA032,Extended families,EA032-3,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +38531,Ng10,EA032,Extended families,EA032-3,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +38532,Ng11,EA032,Extended families,EA032-3,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p115, +38533,Ng12,EA032,Independent families,EA032-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p115, +38534,Ng13,EA032,?,EA032-NA,,,,,, +38535,Ng14,EA032,?,EA032-NA,,,,,, +38536,Ng15,EA032,?,EA032-NA,,,,,, +38537,Ng2,EA032,?,EA032-NA,,,,,, +38538,Ng3,EA032,Clan-barrios,EA032-4,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +38539,Ng4,EA032,?,EA032-NA,,,,,, +38540,Ng5,EA032,Extended families,EA032-3,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +38541,Ng6,EA032,Extended families,EA032-3,"But 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"") in the eighteenth century",harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +38542,Ng7,EA032,Extended families,EA032-3,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +38543,Ng8,EA032,Extended families,EA032-3,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p115, +38544,Ng9,EA032,?,EA032-NA,Fully incorporated today into the political system of the United States,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +38545,Nh1,EA032,Extended families,EA032-3,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +38546,Nh10,EA032,Independent families,EA032-2,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +38547,Nh11,EA032,Independent families,EA032-2,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +38548,Nh12,EA032,Extended families,EA032-3,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +38549,Nh13,EA032,Extended families,EA032-3,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +38550,Nh14,EA032,Extended families,EA032-3,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +38551,Nh15,EA032,Extended families,EA032-3,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +38552,Nh16,EA032,Extended families,EA032-3,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38553,Nh17,EA032,Extended families,EA032-3,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +38554,Nh18,EA032,Clan-barrios,EA032-4,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38555,Nh19,EA032,Extended families,EA032-3,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +38556,Nh2,EA032,Clan-barrios,EA032-4,,dozier1954,,1950,EthnographicAtlas_1967_p115, +38557,Nh20,EA032,Extended families,EA032-3,,gifford1931,,1860,EthnographicAtlas_1967_p115, +38558,Nh21,EA032,Extended families,EA032-3,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38559,Nh22,EA032,Independent families,EA032-2,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +38560,Nh23,EA032,Independent families,EA032-2,,gifford1932a,,1870,EthnographicAtlas_1967_p115, +38561,Nh24,EA032,Extended families,EA032-3,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +38562,Nh25,EA032,Extended families,EA032-3,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +38563,Nh26,EA032,?,EA032-NA,,,,,, +38564,Nh27,EA032,?,EA032-NA,,,,,, +38565,Nh3,EA032,Extended families,EA032-3,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +38566,Nh4,EA032,Clan-barrios,EA032-4,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +38567,Nh5,EA032,Extended families,EA032-3,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +38568,Nh6,EA032,Independent families,EA032-2,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +38569,Nh7,EA032,Extended families,EA032-3,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +38570,Nh8,EA032,Extended families,EA032-3,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +38571,Nh9,EA032,Independent families,EA032-2,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p115, +38572,Ni1,EA032,Independent families,EA032-2,Integrated into the Mexican state,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +38573,Ni2,EA032,Extended families,EA032-3,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +38574,Ni3,EA032,Extended families,EA032-3,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +38575,Ni4,EA032,Extended families,EA032-3,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p115, +38576,Ni5,EA032,Independent families,EA032-2,,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +38577,Ni6,EA032,Extended families,EA032-3,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +38578,Ni7,EA032,Extended families,EA032-3,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +38579,Ni8,EA032,?,EA032-NA,,,,,, +38580,Ni9,EA032,?,EA032-NA,,,,,, +38581,Nj1,EA032,Extended families,EA032-3,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38582,Nj10,EA032,Extended families,EA032-3,Integrated into Mexican state,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38583,Nj11,EA032,?,EA032-NA,,,,,, +38584,Nj12,EA032,?,EA032-NA,,,,,, +38585,Nj13,EA032,?,EA032-NA,,,,,, +38586,Nj14,EA032,?,EA032-NA,,,,,, +38587,Nj2,EA032,Extended families,EA032-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +38588,Nj3,EA032,Independent families,EA032-2,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +38589,Nj4,EA032,Extended families,EA032-3,Subject aboriginally to the Aztec; integrated today into the Mexican state,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +38590,Nj5,EA032,?,EA032-NA,,,,,, +38591,Nj6,EA032,?,EA032-NA,,,,,, +38592,Nj7,EA032,Clan-barrios,EA032-4,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38593,Nj8,EA032,Clan-barrios,EA032-4,,foster1948,,1500,EthnographicAtlas_1967_p119, +38594,Nj9,EA032,Clan-barrios,EA032-4,Integrated into Mexican state,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +38595,Sa1,EA032,Extended families,EA032-3,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +38596,Sa10,EA032,Extended families,EA032-3,Integrated into the Mexican state,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p119, +38597,Sa11,EA032,?,EA032-NA,,,,,, +38598,Sa12,EA032,Independent families,EA032-2,,stone1948,,1948,EthnographicAtlas_1967_p119, +38599,Sa13,EA032,Extended families,EA032-3,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +38600,Sa14,EA032,?,EA032-NA,,,,,, +38601,Sa15,EA032,?,EA032-NA,,,,,, +38602,Sa16,EA032,?,EA032-NA,,,,,, +38603,Sa17,EA032,?,EA032-NA,,,,,, +38604,Sa2,EA032,?,EA032-NA,,,,,, +38605,Sa3,EA032,Clan-barrios,EA032-4,"Integrated, above the level of the department, into the Guatemalan state",wisdom1940,,1930,EthnographicAtlas_1967_p119, +38606,Sa4,EA032,Independent families,EA032-2,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +38607,Sa5,EA032,Independent families,EA032-2,"Formerly 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"")",gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +38608,Sa6,EA032,Extended families,EA032-3,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +38609,Sa7,EA032,Independent families,EA032-2,There is no independent political organization; even local headmen are appointed by the government of British Honduras,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +38610,Sa8,EA032,Clan-barrios,EA032-4,Integrated into the Guatemalan state,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +38611,Sa9,EA032,Extended families,EA032-3,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +38612,Sb1,EA032,Extended families,EA032-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +38613,Sb2,EA032,Extended families,EA032-3,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +38614,Sb3,EA032,Extended families,EA032-3,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +38615,Sb4,EA032,Independent families,EA032-2,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +38616,Sb5,EA032,Independent families,EA032-2,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +38617,Sb6,EA032,Extended families,EA032-3,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +38618,Sb7,EA032,Independent families,EA032-2,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +38619,Sb8,EA032,Independent families,EA032-2,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +38620,Sb9,EA032,Extended families,EA032-3,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +38621,Sc1,EA032,Extended families,EA032-3,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +38622,Sc10,EA032,Extended families,EA032-3,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +38623,Sc11,EA032,Independent families,EA032-2,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p119, +38624,Sc12,EA032,Independent families,EA032-2,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p119, +38625,Sc13,EA032,Independent families,EA032-2,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +38626,Sc14,EA032,?,EA032-NA,,,,,, +38627,Sc15,EA032,Independent families,EA032-2,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p119, +38628,Sc16,EA032,Extended families,EA032-3,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p119, +38629,Sc17,EA032,Extended families,EA032-3,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +38630,Sc18,EA032,Extended families,EA032-3,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +38631,Sc2,EA032,Independent families,EA032-2,,leedsnd,,1950,EthnographicAtlas_1967_p119, +38632,Sc3,EA032,Independent families,EA032-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +38633,Sc4,EA032,Extended families,EA032-3,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +38634,Sc5,EA032,Extended families,EA032-3,,farabee1918,,1900,EthnographicAtlas_1967_p119, +38635,Sc6,EA032,Extended families,EA032-3,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38636,Sc7,EA032,Independent families,EA032-2,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +38637,Sc8,EA032,Independent families,EA032-2,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +38638,Sc9,EA032,Independent families,EA032-2,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +38639,Sd1,EA032,Extended families,EA032-3,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38640,Sd2,EA032,Extended families,EA032-3,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +38641,Sd3,EA032,Independent families,EA032-2,,nimuendaju1926,,1920,EthnographicAtlas_1967_p119, +38642,Sd4,EA032,Independent families,EA032-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +38643,Sd5,EA032,Extended families,EA032-3,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +38644,Sd6,EA032,Extended families,EA032-3,,migliazza1964,,1960,EthnographicAtlas_1967_p119, +38645,Sd7,EA032,Independent families,EA032-2,,fock1963,,1950,EthnographicAtlas_1967_p119, +38646,Sd8,EA032,Extended families,EA032-3,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +38647,Sd9,EA032,Extended families,EA032-3,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38648,Se1,EA032,Extended families,EA032-3,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +38649,Se10,EA032,Extended families,EA032-3,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +38650,Se11,EA032,Independent families,EA032-2,,prost1965,,1960,EthnographicAtlas_1967_p123, +38651,Se12,EA032,?,EA032-NA,,,,,, +38652,Se2,EA032,Independent families,EA032-2,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +38653,Se3,EA032,Independent families,EA032-2,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +38654,Se4,EA032,Independent families,EA032-2,,fejos1943,,1940,EthnographicAtlas_1967_p119, +38655,Se5,EA032,Independent families,EA032-2,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +38656,Se6,EA032,Independent families,EA032-2,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +38657,Se7,EA032,?,EA032-NA,,,,,, +38658,Se8,EA032,Independent families,EA032-2,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +38659,Se9,EA032,Independent families,EA032-2,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +38660,Sf1,EA032,Independent families,EA032-2,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +38661,Sf2,EA032,Extended families,EA032-3,"Formerly integrated into the Inca state, today into the Bolivian and Peruvian states",bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +38662,Sf3,EA032,Extended families,EA032-3,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +38663,Sf4,EA032,Independent families,EA032-2,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +38664,Sf5,EA032,Independent families,EA032-2,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +38665,Sf6,EA032,Extended families,EA032-3,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +38666,Sf7,EA032,Independent families,EA032-2,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +38667,Sf8,EA032,?,EA032-NA,,,,,, +38668,Sf9,EA032,?,EA032-NA,,,,,, +38669,Sg1,EA032,Independent families,EA032-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +38670,Sg2,EA032,Clan-barrios,EA032-4,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38671,Sg3,EA032,Independent families,EA032-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +38672,Sg4,EA032,Extended families,EA032-3,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +38673,Sg5,EA032,Independent families,EA032-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38674,Sh1,EA032,Extended families,EA032-3,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +38675,Sh2,EA032,Clan-barrios,EA032-4,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +38676,Sh3,EA032,Independent families,EA032-2,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +38677,Sh4,EA032,Extended families,EA032-3,,oberg1949,,1940,EthnographicAtlas_1967_p123, +38678,Sh5,EA032,Independent families,EA032-2,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +38679,Sh6,EA032,Independent families,EA032-2,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +38680,Sh7,EA032,Extended families,EA032-3,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p123, +38681,Sh8,EA032,Independent families,EA032-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +38682,Sh9,EA032,Extended families,EA032-3,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +38683,Si1,EA032,Clan-barrios,EA032-4,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38684,Si10,EA032,Independent families,EA032-2,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +38685,Si2,EA032,Extended families,EA032-3,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +38686,Si3,EA032,Clan-barrios,EA032-4,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38687,Si4,EA032,Extended families,EA032-3,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +38688,Si5,EA032,Extended families,EA032-3,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +38689,Si6,EA032,Independent families,EA032-2,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p123, +38690,Si7,EA032,Extended families,EA032-3,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +38691,Si8,EA032,Extended families,EA032-3,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +38692,Si9,EA032,?,EA032-NA,,,,,, +38693,Sj1,EA032,Extended families,EA032-3,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +38694,Sj10,EA032,Independent families,EA032-2,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38695,Sj11,EA032,Clan-barrios,EA032-4,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +38696,Sj2,EA032,Extended families,EA032-3,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +38697,Sj3,EA032,Independent families,EA032-2,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +38698,Sj4,EA032,Clan-barrios,EA032-4,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +38699,Sj5,EA032,Extended families,EA032-3,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p123, +38700,Sj6,EA032,Extended families,EA032-3,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38701,Sj7,EA032,Extended families,EA032-3,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +38702,Sj8,EA032,Extended families,EA032-3,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +38703,Sj9,EA032,Extended families,EA032-3,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +38704,ch12,EA032,Extended families,EA032-3,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +38705,ch13,EA032,Extended families,EA032-3,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +38706,ch14,EA032,Independent families,EA032-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +38707,ch15,EA032,Independent families,EA032-2,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +38708,ch16,EA032,Independent families,EA032-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +38709,ch17,EA032,Extended families,EA032-3,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +38710,ch18,EA032,Independent families,EA032-2,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +38711,ch19,EA032,Extended families,EA032-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +38712,ch20,EA032,Independent families,EA032-2,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +38713,ch21,EA032,Independent families,EA032-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +38714,ch22,EA032,Independent families,EA032-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +38715,ch23,EA032,Independent families,EA032-2,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +38716,ch24,EA032,Independent families,EA032-2,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +38717,ch25,EA032,Independent families,EA032-2,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +38718,ch26,EA032,Independent families,EA032-2,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +38719,ch27,EA032,Extended families,EA032-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +38720,ch28,EA032,Independent families,EA032-2,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +38721,ec12,EA032,Independent families,EA032-2,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +38722,ec13,EA032,Independent families,EA032-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +38723,ec14,EA032,Independent families,EA032-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +38724,ec15,EA032,Extended families,EA032-3,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +38725,ec16,EA032,Extended families,EA032-3,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +38726,ec17,EA032,Extended families,EA032-3,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +38727,ec18,EA032,Extended families,EA032-3,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +38728,ec19,EA032,Extended families,EA032-3,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +38729,ec20,EA032,Extended families,EA032-3,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +38730,ec21,EA032,Extended families,EA032-3,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +38731,Aa1,EA033,Acephalous,EA033-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +38732,Aa2,EA033,Acephalous,EA033-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +38733,Aa3,EA033,One level,EA033-2,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +38734,Aa4,EA033,?,EA033-NA,,,,,, +38735,Aa5,EA033,Acephalous,EA033-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +38736,Aa6,EA033,One level,EA033-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p63, +38737,Aa7,EA033,Acephalous,EA033-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +38738,Aa8,EA033,Acephalous,EA033-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +38739,Aa9,EA033,Acephalous,EA033-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +38740,Ab1,EA033,Acephalous,EA033-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p63, +38741,Ab10,EA033,Two levels,EA033-3,,hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +38742,Ab11,EA033,Three levels,EA033-4,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +38743,Ab12,EA033,Three levels,EA033-4,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p63, +38744,Ab13,EA033,Two levels,EA033-3,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +38745,Ab14,EA033,Two levels,EA033-3,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +38746,Ab15,EA033,Two levels,EA033-3,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +38747,Ab16,EA033,One level,EA033-2,,earthy1933,,1930,EthnographicAtlas_1967_p63, +38748,Ab17,EA033,?,EA033-NA,,,,,, +38749,Ab18,EA033,Two levels,EA033-3,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +38750,Ab19,EA033,Two levels,EA033-3,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +38751,Ab2,EA033,Three levels,EA033-4,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +38752,Ab20,EA033,?,EA033-NA,,,,,, +38753,Ab21a,EA033,One level,EA033-2,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +38754,Ab21b,EA033,?,EA033-NA,,,,,, +38755,Ab22,EA033,?,EA033-NA,,,,,, +38756,Ab3,EA033,Three levels,EA033-4,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +38757,Ab4,EA033,Two levels,EA033-3,,junod1927,,1920,EthnographicAtlas_1967_p63, +38758,Ab5,EA033,Two levels,EA033-3,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +38759,Ab6,EA033,Two levels,EA033-3,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +38760,Ab7,EA033,Two levels,EA033-3,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p63, +38761,Ab8,EA033,Three levels,EA033-4,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +38762,Ab9,EA033,Three levels,EA033-4,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +38763,Ac1,EA033,One level,EA033-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +38764,Ac10,EA033,Two levels,EA033-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +38765,Ac11,EA033,One level,EA033-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +38766,Ac12,EA033,Two levels,EA033-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p63, +38767,Ac13,EA033,Acephalous,EA033-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p63, +38768,Ac14,EA033,One level,EA033-2,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p63, +38769,Ac15,EA033,?,EA033-NA,,,,,, +38770,Ac16,EA033,Acephalous,EA033-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +38771,Ac17,EA033,Three levels,EA033-4,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +38772,Ac18,EA033,One level,EA033-2,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +38773,Ac19,EA033,Acephalous,EA033-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +38774,Ac2,EA033,One level,EA033-2,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p63, +38775,Ac20,EA033,One level,EA033-2,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +38776,Ac21,EA033,Two levels,EA033-3,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p63, +38777,Ac22,EA033,One level,EA033-2,,mertens1935,,1930,EthnographicAtlas_1967_p63, +38778,Ac23,EA033,One level,EA033-2,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +38779,Ac24,EA033,One level,EA033-2,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +38780,Ac25,EA033,One level,EA033-2,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p63, +38781,Ac26,EA033,One level,EA033-2,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +38782,Ac27,EA033,One level,EA033-2,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +38783,Ac28,EA033,One level,EA033-2,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p63, +38784,Ac29,EA033,?,EA033-NA,,,,,, +38785,Ac3,EA033,Two levels,EA033-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +38786,Ac30,EA033,Acephalous,EA033-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +38787,Ac31,EA033,Two levels,EA033-3,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +38788,Ac32,EA033,One level,EA033-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +38789,Ac33,EA033,One level,EA033-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +38790,Ac34,EA033,Two levels,EA033-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +38791,Ac35,EA033,?,EA033-NA,,,,,, +38792,Ac36,EA033,Two levels,EA033-3,"Formerly, but more recently subject to the Ngoni",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +38793,Ac37,EA033,Two levels,EA033-3,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +38794,Ac38,EA033,One level,EA033-2,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p63, +38795,Ac39,EA033,?,EA033-NA,,,,,, +38796,Ac4,EA033,Two levels,EA033-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +38797,Ac40,EA033,One level,EA033-2,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +38798,Ac41,EA033,Acephalous,EA033-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +38799,Ac42,EA033,?,EA033-NA,,,,,, +38800,Ac43,EA033,One level,EA033-2,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +38801,Ac5,EA033,Two levels,EA033-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +38802,Ac6,EA033,Two levels,EA033-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p63, +38803,Ac7,EA033,One level,EA033-2,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +38804,Ac8,EA033,One level,EA033-2,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +38805,Ac9,EA033,Three levels,EA033-4,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +38806,Ad1,EA033,Acephalous,EA033-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p63, +38807,Ad10,EA033,Two levels,EA033-3,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +38808,Ad11,EA033,Two levels,EA033-3,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +38809,Ad12,EA033,One level,EA033-2,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +38810,Ad13,EA033,Acephalous,EA033-1,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +38811,Ad14,EA033,Acephalous,EA033-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +38812,Ad15,EA033,Two levels,EA033-3,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +38813,Ad16,EA033,Two levels,EA033-3,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +38814,Ad17,EA033,One level,EA033-2,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +38815,Ad18,EA033,Two levels,EA033-3,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +38816,Ad19,EA033,Two levels,EA033-3,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +38817,Ad2,EA033,Three levels,EA033-4,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +38818,Ad20,EA033,Two levels,EA033-3,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +38819,Ad21,EA033,Two levels,EA033-3,,maurice193538,,1930,EthnographicAtlas_1967_p67, +38820,Ad22,EA033,Two levels,EA033-3,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +38821,Ad23,EA033,Two levels,EA033-3,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +38822,Ad24,EA033,One level,EA033-2,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +38823,Ad25,EA033,One level,EA033-2,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +38824,Ad26,EA033,Acephalous,EA033-1,,sick1916,,1910,Ethnology_Vol7_No2_Apr_1968, +38825,Ad27,EA033,Acephalous,EA033-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +38826,Ad28,EA033,Acephalous,EA033-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +38827,Ad29,EA033,Three levels,EA033-4,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p67, +38828,Ad3,EA033,One level,EA033-2,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +38829,Ad30,EA033,One level,EA033-2,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p67, +38830,Ad31,EA033,?,EA033-NA,,,,,, +38831,Ad32,EA033,Three levels,EA033-4,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p67, +38832,Ad33,EA033,One level,EA033-2,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p67, +38833,Ad34,EA033,One level,EA033-2,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +38834,Ad35,EA033,Acephalous,EA033-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p67, +38835,Ad36,EA033,Acephalous,EA033-1,But one recent source reports paramount chiefs with rain-making functions,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +38836,Ad37,EA033,One level,EA033-2,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +38837,Ad38,EA033,Acephalous,EA033-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +38838,Ad39,EA033,Acephalous,EA033-1,,gray1963,,1950,EthnographicAtlas_1967_p67, +38839,Ad4,EA033,Acephalous,EA033-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +38840,Ad40,EA033,One level,EA033-2,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +38841,Ad41,EA033,Acephalous,EA033-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p67, +38842,Ad42,EA033,Two levels,EA033-3,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +38843,Ad43,EA033,Two levels,EA033-3,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +38844,Ad44,EA033,Acephalous,EA033-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p67, +38845,Ad45,EA033,Three levels,EA033-4,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +38846,Ad46,EA033,Two levels,EA033-3,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p67, +38847,Ad47,EA033,Two levels,EA033-3,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +38848,Ad48,EA033,Three levels,EA033-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +38849,Ad49,EA033,Three levels,EA033-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +38850,Ad5,EA033,?,EA033-NA,,,,,, +38851,Ad50,EA033,One level,EA033-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +38852,Ad51,EA033,Acephalous,EA033-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +38853,Ad6,EA033,Two levels,EA033-3,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +38854,Ad7,EA033,Three levels,EA033-4,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +38855,Ad8,EA033,Two levels,EA033-3,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +38856,Ad9,EA033,One level,EA033-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +38857,Ae1,EA033,Acephalous,EA033-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67, +38858,Ae10,EA033,Three levels,EA033-4,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +38859,Ae11,EA033,One level,EA033-2,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +38860,Ae12,EA033,Two levels,EA033-3,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +38861,Ae13,EA033,?,EA033-NA,,,,,, +38862,Ae14,EA033,Two levels,EA033-3,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +38863,Ae15,EA033,Two levels,EA033-3,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p67, +38864,Ae16,EA033,?,EA033-NA,,,,,, +38865,Ae17,EA033,One level,EA033-2,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +38866,Ae18,EA033,Acephalous,EA033-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +38867,Ae19,EA033,?,EA033-NA,,,,,, +38868,Ae2,EA033,Acephalous,EA033-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +38869,Ae20,EA033,One level,EA033-2,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +38870,Ae21,EA033,Acephalous,EA033-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +38871,Ae22,EA033,One level,EA033-2,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p67, +38872,Ae23,EA033,?,EA033-NA,,,,,, +38873,Ae24,EA033,?,EA033-NA,,,,,, +38874,Ae25,EA033,?,EA033-NA,Paramount chiefs imposed by Luba and Songe conquerors,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +38875,Ae26,EA033,Two levels,EA033-3,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +38876,Ae27,EA033,Acephalous,EA033-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +38877,Ae28,EA033,One level,EA033-2,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +38878,Ae29,EA033,One level,EA033-2,"Entry follows Lindemann; Hutereau reports 'extended families' (EA032 code ""3"") with 'no political authority beyond the local community' (EA033 code ""1"")",hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p67, +38879,Ae3,EA033,Acephalous,EA033-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +38880,Ae30,EA033,Acephalous,EA033-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +38881,Ae31,EA033,Acephalous,EA033-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +38882,Ae32,EA033,Acephalous,EA033-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +38883,Ae33,EA033,Two levels,EA033-3,"But Moller reports 'extended families' (EA032 code ""3"") grouped within larger chiefdoms (2 levels) (EA033 code ""3"")",czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +38884,Ae34,EA033,Acephalous,EA033-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +38885,Ae35,EA033,Acephalous,EA033-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +38886,Ae36,EA033,Acephalous,EA033-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +38887,Ae37,EA033,?,EA033-NA,,,,,, +38888,Ae38,EA033,Acephalous,EA033-1,,wijnant192526,,1920,EthnographicAtlas_1967_p67, +38889,Ae39,EA033,One level,EA033-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +38890,Ae4,EA033,Two levels,EA033-3,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +38891,Ae40,EA033,Acephalous,EA033-1,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +38892,Ae41,EA033,Acephalous,EA033-1,,andersson1953,,1940,EthnographicAtlas_1967_p67, +38893,Ae42,EA033,Acephalous,EA033-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +38894,Ae43,EA033,Acephalous,EA033-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +38895,Ae44,EA033,Four levels,EA033-5,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +38896,Ae45,EA033,Acephalous,EA033-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +38897,Ae46,EA033,Acephalous,EA033-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +38898,Ae47,EA033,One level,EA033-2,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +38899,Ae48,EA033,Acephalous,EA033-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p67, +38900,Ae49,EA033,?,EA033-NA,,,,,, +38901,Ae5,EA033,Two levels,EA033-3,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p67, +38902,Ae50,EA033,Three levels,EA033-4,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p67, +38903,Ae51,EA033,Acephalous,EA033-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p67, +38904,Ae52,EA033,?,EA033-NA,,,,,, +38905,Ae53,EA033,?,EA033-NA,,,,,, +38906,Ae54,EA033,?,EA033-NA,,,,,, +38907,Ae55,EA033,One level,EA033-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +38908,Ae56,EA033,Two levels,EA033-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +38909,Ae57,EA033,One level,EA033-2,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +38910,Ae58,EA033,One level,EA033-2,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +38911,Ae59,EA033,?,EA033-NA,,,,,, +38912,Ae6,EA033,Three levels,EA033-4,,verhulpen1936,with special reference to the Bena Kalundwe,1930,Ethnology_Vol7_No2_Apr_1968, +38913,Ae7,EA033,Two levels,EA033-3,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +38914,Ae8,EA033,Three levels,EA033-4,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +38915,Ae9,EA033,One level,EA033-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +38916,Af1,EA033,Three levels,EA033-4,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +38917,Af10,EA033,One level,EA033-2,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +38918,Af11,EA033,One level,EA033-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +38919,Af12,EA033,Two levels,EA033-3,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +38920,Af13,EA033,One level,EA033-2,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +38921,Af14,EA033,Two levels,EA033-3,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p71, +38922,Af15,EA033,One level,EA033-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +38923,Af16,EA033,One level,EA033-2,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +38924,Af17,EA033,Acephalous,EA033-1,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +38925,Af18,EA033,Acephalous,EA033-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +38926,Af19,EA033,One level,EA033-2,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +38927,Af2,EA033,One level,EA033-2,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +38928,Af20,EA033,One level,EA033-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +38929,Af21,EA033,Two levels,EA033-3,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +38930,Af22,EA033,One level,EA033-2,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p71, +38931,Af23,EA033,One level,EA033-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +38932,Af24,EA033,Three levels,EA033-4,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +38933,Af25,EA033,One level,EA033-2,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +38934,Af26,EA033,One level,EA033-2,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +38935,Af27,EA033,Acephalous,EA033-1,But long subject to Hausa or Fulani overlords,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +38936,Af28,EA033,One level,EA033-2,,gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +38937,Af29,EA033,One level,EA033-2,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +38938,Af3,EA033,Two levels,EA033-3,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +38939,Af30,EA033,Three levels,EA033-4,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +38940,Af31,EA033,?,EA033-NA,,,,,, +38941,Af32,EA033,Two levels,EA033-3,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38942,Af33,EA033,Two levels,EA033-3,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38943,Af34,EA033,Three levels,EA033-4,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +38944,Af35,EA033,One level,EA033-2,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +38945,Af36,EA033,Two levels,EA033-3,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p71, +38946,Af37,EA033,One level,EA033-2,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +38947,Af38,EA033,Two levels,EA033-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +38948,Af39,EA033,Two levels,EA033-3,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +38949,Af4,EA033,Acephalous,EA033-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +38950,Af40,EA033,Two levels,EA033-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +38951,Af41,EA033,One level,EA033-2,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +38952,Af42,EA033,One level,EA033-2,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p71, +38953,Af43,EA033,Acephalous,EA033-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p71, +38954,Af44,EA033,?,EA033-NA,,,,,, +38955,Af45,EA033,One level,EA033-2,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +38956,Af46,EA033,One level,EA033-2,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +38957,Af47,EA033,One level,EA033-2,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +38958,Af48,EA033,One level,EA033-2,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +38959,Af49,EA033,One level,EA033-2,,schwab1947,,1940,EthnographicAtlas_1967_p71, +38960,Af5,EA033,One level,EA033-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +38961,Af50,EA033,One level,EA033-2,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +38962,Af51,EA033,Acephalous,EA033-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +38963,Af52,EA033,One level,EA033-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +38964,Af53,EA033,?,EA033-NA,,,,,, +38965,Af54,EA033,One level,EA033-2,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +38966,Af55,EA033,One level,EA033-2,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +38967,Af56,EA033,One level,EA033-2,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +38968,Af57,EA033,Two levels,EA033-3,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +38969,Af58,EA033,One level,EA033-2,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +38970,Af6,EA033,Three levels,EA033-4,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +38971,Af7,EA033,Acephalous,EA033-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +38972,Af8,EA033,Two levels,EA033-3,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +38973,Af9,EA033,One level,EA033-2,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p71, +38974,Ag1,EA033,One level,EA033-2,"Formerly 'clan-barrios' (EA032 code ""4"") grouped within states (3 levels) (EA033 code ""4"") under the former great states of Kaarta and Segou",dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +38975,Ag10,EA033,Acephalous,EA033-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +38976,Ag11,EA033,Acephalous,EA033-1,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +38977,Ag12,EA033,Acephalous,EA033-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +38978,Ag13,EA033,One level,EA033-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +38979,Ag14,EA033,One level,EA033-2,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +38980,Ag15,EA033,Acephalous,EA033-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +38981,Ag16,EA033,Acephalous,EA033-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p71, +38982,Ag17,EA033,Acephalous,EA033-1,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +38983,Ag18,EA033,One level,EA033-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p71, +38984,Ag19,EA033,One level,EA033-2,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p71, +38985,Ag2,EA033,Two levels,EA033-3,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +38986,Ag20,EA033,?,EA033-NA,,,,,, +38987,Ag21,EA033,One level,EA033-2,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +38988,Ag22,EA033,Two levels,EA033-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p71, +38989,Ag23,EA033,Two levels,EA033-3,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +38990,Ag24,EA033,One level,EA033-2,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +38991,Ag25,EA033,Two levels,EA033-3,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p71, +38992,Ag26,EA033,One level,EA033-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p71, +38993,Ag27,EA033,One level,EA033-2,But usually subject to alien rulers,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +38994,Ag28,EA033,One level,EA033-2,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +38995,Ag29,EA033,Acephalous,EA033-1,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +38996,Ag3,EA033,One level,EA033-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p71, +38997,Ag30,EA033,Acephalous,EA033-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p71, +38998,Ag31,EA033,Two levels,EA033-3,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p71, +38999,Ag32,EA033,One level,EA033-2,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p71, +39000,Ag33,EA033,?,EA033-NA,,,,,, +39001,Ag34,EA033,Acephalous,EA033-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +39002,Ag35,EA033,Acephalous,EA033-1,But subject to the Abron,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +39003,Ag36,EA033,?,EA033-NA,,,,,, +39004,Ag37,EA033,Acephalous,EA033-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +39005,Ag38,EA033,Acephalous,EA033-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +39006,Ag39,EA033,One level,EA033-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +39007,Ag4,EA033,Acephalous,EA033-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +39008,Ag40,EA033,Acephalous,EA033-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +39009,Ag41,EA033,Acephalous,EA033-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +39010,Ag42,EA033,One level,EA033-2,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +39011,Ag43,EA033,?,EA033-NA,Subject to an Abron paramount chief,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +39012,Ag44,EA033,Three levels,EA033-4,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +39013,Ag45,EA033,Two levels,EA033-3,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +39014,Ag46,EA033,Two levels,EA033-3,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +39015,Ag47,EA033,Three levels,EA033-4,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +39016,Ag48,EA033,One level,EA033-2,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p75, +39017,Ag49,EA033,Acephalous,EA033-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +39018,Ag5,EA033,Acephalous,EA033-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +39019,Ag50,EA033,One level,EA033-2,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +39020,Ag51,EA033,Acephalous,EA033-1,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +39021,Ag52,EA033,Two levels,EA033-3,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +39022,Ag53,EA033,One level,EA033-2,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +39023,Ag54,EA033,One level,EA033-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +39024,Ag6,EA033,Two levels,EA033-3,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +39025,Ag7,EA033,One level,EA033-2,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +39026,Ag8,EA033,One level,EA033-2,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +39027,Ag9,EA033,One level,EA033-2,Formerly a very large state,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p71, +39028,Ah1,EA033,Acephalous,EA033-1,"Subordinate, since 1790, to the Fulani through district chiefs",gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39029,Ah10,EA033,One level,EA033-2,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +39030,Ah11,EA033,One level,EA033-2,,gunnandconant1960,,1950,EthnographicAtlas_1967_p75, +39031,Ah12,EA033,One level,EA033-2,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +39032,Ah13,EA033,Acephalous,EA033-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +39033,Ah14,EA033,?,EA033-NA,,,,,, +39034,Ah15,EA033,Two levels,EA033-3,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p75, +39035,Ah16,EA033,One level,EA033-2,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +39036,Ah17,EA033,One level,EA033-2,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +39037,Ah18,EA033,?,EA033-NA,,,,,, +39038,Ah19,EA033,One level,EA033-2,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p75, +39039,Ah2,EA033,Acephalous,EA033-1,"Clan-barrios' (EA032 code ""4"") grouped within larger chiefdoms (2 levels) (EA code ""3"") until conquered by the Fulani in the early nineteenth century",meek1931a,,1920,EthnographicAtlas_1967_p75, +39040,Ah20,EA033,One level,EA033-2,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +39041,Ah21,EA033,Acephalous,EA033-1,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +39042,Ah22,EA033,?,EA033-NA,,,,,, +39043,Ah23,EA033,?,EA033-NA,,,,,, +39044,Ah24,EA033,?,EA033-NA,,,,,, +39045,Ah25,EA033,Acephalous,EA033-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +39046,Ah26,EA033,Acephalous,EA033-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +39047,Ah27,EA033,Acephalous,EA033-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +39048,Ah28,EA033,One level,EA033-2,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +39049,Ah29,EA033,Acephalous,EA033-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +39050,Ah3,EA033,One level,EA033-2,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +39051,Ah30,EA033,Acephalous,EA033-1,,meek1931b,,1920,EthnographicAtlas_1967_p75, +39052,Ah31,EA033,One level,EA033-2,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p75, +39053,Ah32,EA033,Acephalous,EA033-1,"Before conquest by the Fulani, to whom the Vere are now subject",meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +39054,Ah33,EA033,One level,EA033-2,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p75, +39055,Ah34,EA033,One level,EA033-2,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +39056,Ah35,EA033,Acephalous,EA033-1,"Formerly, but recently 'extended families' (EA032 code ""3"") grouped within larger chiefdoms (2 levels) (EA033 code ""3"") under a Pabir ruler",helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +39057,Ah36,EA033,Acephalous,EA033-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +39058,Ah37,EA033,Acephalous,EA033-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +39059,Ah38,EA033,One level,EA033-2,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +39060,Ah39,EA033,One level,EA033-2,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +39061,Ah4,EA033,Acephalous,EA033-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p75, +39062,Ah5,EA033,One level,EA033-2,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +39063,Ah6,EA033,Acephalous,EA033-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +39064,Ah7,EA033,Acephalous,EA033-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +39065,Ah8,EA033,One level,EA033-2,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +39066,Ah9,EA033,Acephalous,EA033-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75, +39067,Ai1,EA033,Acephalous,EA033-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p75, +39068,Ai10,EA033,One level,EA033-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p75, +39069,Ai11,EA033,Two levels,EA033-3,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +39070,Ai12,EA033,Acephalous,EA033-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +39071,Ai13,EA033,Acephalous,EA033-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +39072,Ai14,EA033,One level,EA033-2,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +39073,Ai15,EA033,One level,EA033-2,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +39074,Ai16,EA033,?,EA033-NA,,,,,, +39075,Ai17,EA033,One level,EA033-2,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +39076,Ai18,EA033,Two levels,EA033-3,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +39077,Ai19,EA033,?,EA033-NA,,,,,, +39078,Ai2,EA033,?,EA033-NA,,,,,, +39079,Ai20,EA033,Acephalous,EA033-1,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +39080,Ai21,EA033,Three levels,EA033-4,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +39081,Ai22,EA033,Acephalous,EA033-1,,delafosse1897,,1890,EthnographicAtlas_1967_p75, +39082,Ai23,EA033,One level,EA033-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +39083,Ai24,EA033,Acephalous,EA033-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +39084,Ai25,EA033,?,EA033-NA,,,,,, +39085,Ai26,EA033,Acephalous,EA033-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p75, +39086,Ai27,EA033,One level,EA033-2,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +39087,Ai28,EA033,One level,EA033-2,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +39088,Ai29,EA033,One level,EA033-2,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +39089,Ai3,EA033,Two levels,EA033-3,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +39090,Ai30,EA033,One level,EA033-2,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +39091,Ai31,EA033,One level,EA033-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +39092,Ai32,EA033,One level,EA033-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +39093,Ai33,EA033,One level,EA033-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +39094,Ai34,EA033,One level,EA033-2,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +39095,Ai35,EA033,One level,EA033-2,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +39096,Ai36,EA033,One level,EA033-2,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +39097,Ai37,EA033,One level,EA033-2,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +39098,Ai38,EA033,Acephalous,EA033-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +39099,Ai39,EA033,One level,EA033-2,,nadel1947,,1940,EthnographicAtlas_1967_p75, +39100,Ai4,EA033,Acephalous,EA033-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +39101,Ai40,EA033,Acephalous,EA033-1,,nadel1947,,1940,EthnographicAtlas_1967_p75, +39102,Ai41,EA033,One level,EA033-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +39103,Ai42,EA033,One level,EA033-2,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p75, +39104,Ai43,EA033,Acephalous,EA033-1,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p75, +39105,Ai44,EA033,One level,EA033-2,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +39106,Ai45,EA033,Acephalous,EA033-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +39107,Ai46,EA033,Acephalous,EA033-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p75, +39108,Ai47,EA033,One level,EA033-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +39109,Ai5,EA033,Acephalous,EA033-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +39110,Ai6,EA033,One level,EA033-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +39111,Ai7,EA033,Acephalous,EA033-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +39112,Ai8,EA033,One level,EA033-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p75, +39113,Ai9,EA033,Acephalous,EA033-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +39114,Aj1,EA033,One level,EA033-2,,lawrance1957,,1950,EthnographicAtlas_1967_p75, +39115,Aj10,EA033,One level,EA033-2,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +39116,Aj11,EA033,One level,EA033-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +39117,Aj12,EA033,One level,EA033-2,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +39118,Aj13,EA033,Acephalous,EA033-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +39119,Aj14,EA033,One level,EA033-2,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +39120,Aj15,EA033,One level,EA033-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +39121,Aj16,EA033,Acephalous,EA033-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p79, +39122,Aj17,EA033,One level,EA033-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +39123,Aj18,EA033,One level,EA033-2,,jensen1959,,1950,EthnographicAtlas_1967_p79, +39124,Aj19,EA033,Two levels,EA033-3,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p79, +39125,Aj2,EA033,One level,EA033-2,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +39126,Aj20,EA033,One level,EA033-2,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p79, +39127,Aj21,EA033,One level,EA033-2,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +39128,Aj22,EA033,One level,EA033-2,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +39129,Aj23,EA033,One level,EA033-2,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +39130,Aj24,EA033,One level,EA033-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +39131,Aj25,EA033,One level,EA033-2,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +39132,Aj26,EA033,One level,EA033-2,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p79, +39133,Aj27,EA033,One level,EA033-2,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +39134,Aj28,EA033,One level,EA033-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +39135,Aj29,EA033,Two levels,EA033-3,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +39136,Aj3,EA033,Acephalous,EA033-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +39137,Aj30,EA033,?,EA033-NA,,,,,, +39138,Aj31,EA033,?,EA033-NA,,,,,, +39139,Aj4,EA033,Acephalous,EA033-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +39140,Aj5,EA033,Acephalous,EA033-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +39141,Aj6,EA033,One level,EA033-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +39142,Aj7,EA033,One level,EA033-2,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +39143,Aj8,EA033,Acephalous,EA033-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +39144,Aj9,EA033,Two levels,EA033-3,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +39145,Ca1,EA033,Acephalous,EA033-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +39146,Ca10,EA033,Three levels,EA033-4,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +39147,Ca11,EA033,Two levels,EA033-3,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p79, +39148,Ca12,EA033,Three levels,EA033-4,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p79, +39149,Ca13,EA033,Two levels,EA033-3,Incorporated in the Ethiopian state,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p79, +39150,Ca14,EA033,?,EA033-NA,,,,,, +39151,Ca15,EA033,Two levels,EA033-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +39152,Ca16,EA033,One level,EA033-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +39153,Ca17,EA033,One level,EA033-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +39154,Ca18,EA033,One level,EA033-2,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +39155,Ca19,EA033,One level,EA033-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +39156,Ca2,EA033,Two levels,EA033-3,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +39157,Ca20,EA033,One level,EA033-2,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +39158,Ca21,EA033,One level,EA033-2,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +39159,Ca22,EA033,Two levels,EA033-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +39160,Ca23,EA033,Two levels,EA033-3,,jensen1959,,1950,EthnographicAtlas_1967_p79, +39161,Ca24,EA033,One level,EA033-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +39162,Ca25,EA033,One level,EA033-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +39163,Ca26,EA033,Two levels,EA033-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +39164,Ca27,EA033,Two levels,EA033-3,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +39165,Ca28,EA033,One level,EA033-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p79, +39166,Ca29,EA033,Three levels,EA033-4,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p79, +39167,Ca3,EA033,Two levels,EA033-3,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +39168,Ca30,EA033,Four levels,EA033-5,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p79, +39169,Ca31,EA033,?,EA033-NA,Politically integrated in the Ethiopian state,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +39170,Ca32,EA033,Acephalous,EA033-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +39171,Ca33,EA033,Acephalous,EA033-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +39172,Ca34,EA033,One level,EA033-2,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +39173,Ca35,EA033,One level,EA033-2,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +39174,Ca36,EA033,Two levels,EA033-3,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +39175,Ca37,EA033,One level,EA033-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +39176,Ca38,EA033,One level,EA033-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +39177,Ca39,EA033,Three levels,EA033-4,,lewis1965b,,1930,EthnographicAtlas_1967_p79, +39178,Ca4,EA033,One level,EA033-2,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p79, +39179,Ca40,EA033,Two levels,EA033-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +39180,Ca41,EA033,Two levels,EA033-3,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +39181,Ca42,EA033,Two levels,EA033-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +39182,Ca43,EA033,?,EA033-NA,,,,,, +39183,Ca5,EA033,One level,EA033-2,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p79, +39184,Ca6,EA033,Two levels,EA033-3,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +39185,Ca7,EA033,Three levels,EA033-4,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +39186,Ca8,EA033,Acephalous,EA033-1,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p79, +39187,Ca9,EA033,Acephalous,EA033-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +39188,Cb1,EA033,?,EA033-NA,,,,,, +39189,Cb10,EA033,One level,EA033-2,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +39190,Cb11,EA033,One level,EA033-2,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +39191,Cb12,EA033,?,EA033-NA,,,,,, +39192,Cb13,EA033,?,EA033-NA,,,,,, +39193,Cb14,EA033,One level,EA033-2,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +39194,Cb15,EA033,Three levels,EA033-4,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +39195,Cb16,EA033,Two levels,EA033-3,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +39196,Cb17,EA033,Three levels,EA033-4,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +39197,Cb18,EA033,One level,EA033-2,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p79, +39198,Cb19,EA033,Three levels,EA033-4,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +39199,Cb2,EA033,Two levels,EA033-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +39200,Cb20,EA033,Two levels,EA033-3,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +39201,Cb21,EA033,?,EA033-NA,,,,,, +39202,Cb22,EA033,Two levels,EA033-3,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +39203,Cb23,EA033,One level,EA033-2,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p83, +39204,Cb24,EA033,One level,EA033-2,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +39205,Cb25,EA033,Two levels,EA033-3,For the numerically preponderant Moslems,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +39206,Cb26,EA033,Three levels,EA033-4,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +39207,Cb27,EA033,Two levels,EA033-3,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +39208,Cb28,EA033,One level,EA033-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +39209,Cb29,EA033,?,EA033-NA,,,,,, +39210,Cb3,EA033,Three levels,EA033-4,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +39211,Cb4,EA033,?,EA033-NA,,,,,, +39212,Cb5,EA033,One level,EA033-2,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p79, +39213,Cb6,EA033,One level,EA033-2,,woodnd,,1920,EthnographicAtlas_1967_p79, +39214,Cb7,EA033,Two levels,EA033-3,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +39215,Cb8,EA033,Acephalous,EA033-1,But subject to sedentary Fulani emirs through district chiefs,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +39216,Cb9,EA033,Two levels,EA033-3,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +39217,Cc1,EA033,Three levels,EA033-4,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +39218,Cc10,EA033,Two levels,EA033-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +39219,Cc11,EA033,Two levels,EA033-3,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +39220,Cc12,EA033,Two levels,EA033-3,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +39221,Cc13,EA033,Two levels,EA033-3,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +39222,Cc14,EA033,Acephalous,EA033-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +39223,Cc15,EA033,?,EA033-NA,,,,,, +39224,Cc16,EA033,Two levels,EA033-3,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +39225,Cc17,EA033,Three levels,EA033-4,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p83, +39226,Cc18,EA033,One level,EA033-2,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +39227,Cc19,EA033,Three levels,EA033-4,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +39228,Cc2,EA033,One level,EA033-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +39229,Cc20,EA033,Two levels,EA033-3,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p83, +39230,Cc3,EA033,One level,EA033-2,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +39231,Cc4,EA033,Acephalous,EA033-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +39232,Cc5,EA033,One level,EA033-2,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p83, +39233,Cc6,EA033,Two levels,EA033-3,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +39234,Cc7,EA033,One level,EA033-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39235,Cc8,EA033,?,EA033-NA,,,,,, +39236,Cc9,EA033,Two levels,EA033-3,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +39237,Cd1,EA033,Acephalous,EA033-1,Integrated into the Egyptian state; had a strong indigenous state in pre-Arab times,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +39238,Cd10,EA033,Two levels,EA033-3,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +39239,Cd11,EA033,Two levels,EA033-3,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p83, +39240,Cd12,EA033,?,EA033-NA,Under French colonial administration until recently,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +39241,Cd13,EA033,Three levels,EA033-4,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +39242,Cd14,EA033,Three levels,EA033-4,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +39243,Cd15,EA033,Two levels,EA033-3,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +39244,Cd16,EA033,Four levels,EA033-5,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +39245,Cd17,EA033,One level,EA033-2,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +39246,Cd18,EA033,One level,EA033-2,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +39247,Cd19,EA033,Three levels,EA033-4,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +39248,Cd2,EA033,Three levels,EA033-4,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +39249,Cd20,EA033,Three levels,EA033-4,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +39250,Cd21,EA033,Four levels,EA033-5,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +39251,Cd3,EA033,One level,EA033-2,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +39252,Cd4,EA033,Three levels,EA033-4,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +39253,Cd5,EA033,One level,EA033-2,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +39254,Cd6,EA033,Four levels,EA033-5,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +39255,Cd7,EA033,Two levels,EA033-3,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +39256,Cd8,EA033,?,EA033-NA,,,,,, +39257,Cd9,EA033,One level,EA033-2,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +39258,Ce1,EA033,Two levels,EA033-3,"For the Gheg, but for the Albanians as a whole: 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +39259,Ce2,EA033,?,EA033-NA,,,,,, +39260,Ce3,EA033,Four levels,EA033-5,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +39261,Ce4,EA033,?,EA033-NA,,,,,, +39262,Ce5,EA033,Three levels,EA033-4,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +39263,Ce6,EA033,Three levels,EA033-4,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +39264,Ce7,EA033,Three levels,EA033-4,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +39265,Ce8,EA033,Three levels,EA033-4,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +39266,Cf1,EA033,Three levels,EA033-4,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +39267,Cf2,EA033,Two levels,EA033-3,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No4_Oct_1962, +39268,Cf3,EA033,Acephalous,EA033-1,,munch1945,,1930,EthnographicAtlas_1967_p83, +39269,Cf4,EA033,Four levels,EA033-5,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +39270,Cf5,EA033,Three levels,EA033-4,,miner1939,,1930,EthnographicAtlas_1967_p83, +39271,Cg1,EA033,Three levels,EA033-4,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +39272,Cg2,EA033,Two levels,EA033-3,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +39273,Cg3,EA033,Two levels,EA033-3,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +39274,Cg4,EA033,Acephalous,EA033-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +39275,Cg5,EA033,Four levels,EA033-5,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +39276,Ch1,EA033,Three levels,EA033-4,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +39277,Ch10,EA033,?,EA033-NA,,,,,, +39278,Ch11,EA033,Four levels,EA033-5,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +39279,Ch2,EA033,?,EA033-NA,,,,,, +39280,Ch3,EA033,Three levels,EA033-4,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +39281,Ch4,EA033,One level,EA033-2,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p83, +39282,Ch5,EA033,Three levels,EA033-4,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +39283,Ch6,EA033,Four levels,EA033-5,Integrated into the Russian Empire,ember1954,,1910,EthnographicAtlas_1967_p83, +39284,Ch7,EA033,Four levels,EA033-5,Integrated into the Soviet state,friedrich1954,,1930,EthnographicAtlas_1967_p83, +39285,Ch8,EA033,Three levels,EA033-4,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +39286,Ch9,EA033,Three levels,EA033-4,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +39287,Ci1,EA033,Three levels,EA033-4,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p83, +39288,Ci10,EA033,Three levels,EA033-4,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +39289,Ci11,EA033,Two levels,EA033-3,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +39290,Ci12,EA033,One level,EA033-2,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +39291,Ci2,EA033,Acephalous,EA033-1,,grigolia1939,,1930,EthnographicAtlas_1967_p83, +39292,Ci3,EA033,?,EA033-NA,,,,,, +39293,Ci4,EA033,One level,EA033-2,Prior to Russian rule; integrated today into the Soviet state,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +39294,Ci5,EA033,Three levels,EA033-4,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +39295,Ci6,EA033,One level,EA033-2,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p83, +39296,Ci7,EA033,?,EA033-NA,,,,,, +39297,Ci8,EA033,Two levels,EA033-3,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +39298,Ci9,EA033,?,EA033-NA,Long integrated in the Russian state,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +39299,Cj1,EA033,Two levels,EA033-3,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +39300,Cj10,EA033,?,EA033-NA,Integrated into the state of Iraq,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +39301,Cj2,EA033,One level,EA033-2,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +39302,Cj3,EA033,Two levels,EA033-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +39303,Cj4,EA033,Three levels,EA033-4,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +39304,Cj5,EA033,One level,EA033-2,,dickson1949,,1930,EthnographicAtlas_1967_p87, +39305,Cj6,EA033,Two levels,EA033-3,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +39306,Cj7,EA033,Three levels,EA033-4,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p87, +39307,Cj8,EA033,One level,EA033-2,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +39308,Cj9,EA033,Three levels,EA033-4,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +39309,Ea1,EA033,Three levels,EA033-4,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +39310,Ea10,EA033,Two levels,EA033-3,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +39311,Ea11,EA033,Three levels,EA033-4,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +39312,Ea12,EA033,Two levels,EA033-3,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +39313,Ea13,EA033,Four levels,EA033-5,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +39314,Ea2,EA033,Two levels,EA033-3,Integrated in the Pakistan state,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +39315,Ea3,EA033,One level,EA033-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +39316,Ea4,EA033,One level,EA033-2,,barth1956b,,1950,EthnographicAtlas_1967_p87, +39317,Ea5,EA033,One level,EA033-2,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +39318,Ea6,EA033,One level,EA033-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +39319,Ea7,EA033,?,EA033-NA,Integrated into the state of Afghanistan,schurmann1962,,1950,EthnographicAtlas_1967_p87, +39320,Ea8,EA033,Two levels,EA033-3,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p87, +39321,Ea9,EA033,Four levels,EA033-5,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +39322,Eb1,EA033,Three levels,EA033-4,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +39323,Eb2,EA033,One level,EA033-2,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p87, +39324,Eb3,EA033,Three levels,EA033-4,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p87, +39325,Eb4,EA033,?,EA033-NA,,,,,, +39326,Eb5,EA033,Three levels,EA033-4,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No2_Apr_1963, +39327,Eb6,EA033,?,EA033-NA,,,,,, +39328,Eb7,EA033,Two levels,EA033-3,Integrated into the Chinese state,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +39329,Eb8,EA033,?,EA033-NA,,,,,, +39330,Ec1,EA033,Acephalous,EA033-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +39331,Ec10,EA033,Acephalous,EA033-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +39332,Ec11,EA033,Acephalous,EA033-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +39333,Ec2,EA033,Two levels,EA033-3,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39334,Ec3,EA033,Acephalous,EA033-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +39335,Ec4,EA033,Acephalous,EA033-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +39336,Ec5,EA033,Acephalous,EA033-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +39337,Ec6,EA033,Acephalous,EA033-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +39338,Ec7,EA033,One level,EA033-2,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +39339,Ec8,EA033,Acephalous,EA033-1,,shimkin1939,,1900,EthnographicAtlas_1967_p87, +39340,Ec9,EA033,One level,EA033-2,,lattimore1933,,1920,EthnographicAtlas_1967_p87, +39341,Ed1,EA033,Two levels,EA033-3,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +39342,Ed10,EA033,Four levels,EA033-5,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +39343,Ed13,EA033,?,EA033-NA,,,,,, +39344,Ed14,EA033,?,EA033-NA,,,,,, +39345,Ed15a,EA033,?,EA033-NA,,,,,, +39346,Ed15b,EA033,Four levels,EA033-5,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +39347,Ed16,EA033,?,EA033-NA,,,,,, +39348,Ed2,EA033,Acephalous,EA033-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +39349,Ed3,EA033,?,EA033-NA,Integrated into the Chinese state,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p87, +39350,Ed4,EA033,One level,EA033-2,Integrated into the Chinese administrative system,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +39351,Ed5,EA033,Four levels,EA033-5,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39352,Ed6,EA033,Four levels,EA033-5,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +39353,Ed7,EA033,Two levels,EA033-3,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +39354,Ed8,EA033,One level,EA033-2,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +39355,Ed9,EA033,Two levels,EA033-3,"Formerly ""a strong tribal organization"" but integrated today into the Chinese state",lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +39356,Ee1,EA033,Acephalous,EA033-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +39357,Ee2,EA033,One level,EA033-2,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +39358,Ee3,EA033,One level,EA033-2,Subject to the Maharajah of Sikkim through district chiefs,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +39359,Ee4,EA033,Four levels,EA033-5,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +39360,Ee5,EA033,Two levels,EA033-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +39361,Ee6,EA033,Two levels,EA033-3,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +39362,Ee7,EA033,?,EA033-NA,,,,,, +39363,Ee8,EA033,Three levels,EA033-4,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +39364,Ef1,EA033,One level,EA033-2,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +39365,Ef10,EA033,?,EA033-NA,,,,,, +39366,Ef11,EA033,Four levels,EA033-5,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +39367,Ef2,EA033,Four levels,EA033-5,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +39368,Ef3,EA033,?,EA033-NA,,,,,, +39369,Ef4,EA033,?,EA033-NA,,,,,, +39370,Ef5,EA033,One level,EA033-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +39371,Ef6,EA033,One level,EA033-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p87, +39372,Ef7,EA033,Four levels,EA033-5,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +39373,Ef8,EA033,Three levels,EA033-4,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +39374,Ef9,EA033,Three levels,EA033-4,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39375,Eg1,EA033,Acephalous,EA033-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39376,Eg10,EA033,Three levels,EA033-4,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +39377,Eg11,EA033,?,EA033-NA,,,,,, +39378,Eg12,EA033,?,EA033-NA,,,,,, +39379,Eg13,EA033,?,EA033-NA,,,,,, +39380,Eg14,EA033,One level,EA033-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +39381,Eg2,EA033,Three levels,EA033-4,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +39382,Eg3,EA033,One level,EA033-2,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +39383,Eg4,EA033,One level,EA033-2,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +39384,Eg5,EA033,Two levels,EA033-3,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +39385,Eg6,EA033,Two levels,EA033-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +39386,Eg7,EA033,One level,EA033-2,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +39387,Eg8,EA033,One level,EA033-2,,griffiths1946,,1940,EthnographicAtlas_1967_p91, +39388,Eg9,EA033,Acephalous,EA033-1,,elwin1939,,1930,EthnographicAtlas_1967_p91, +39389,Eh1,EA033,Acephalous,EA033-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +39390,Eh10,EA033,?,EA033-NA,,,,,, +39391,Eh2,EA033,Three levels,EA033-4,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +39392,Eh3,EA033,One level,EA033-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +39393,Eh4,EA033,Acephalous,EA033-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39394,Eh5,EA033,Acephalous,EA033-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +39395,Eh6,EA033,Three levels,EA033-4,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +39396,Eh7,EA033,One level,EA033-2,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +39397,Eh8,EA033,Three levels,EA033-4,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91, +39398,Eh9,EA033,Two levels,EA033-3,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +39399,Ei1,EA033,One level,EA033-2,But integrated today into the political system of India,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39400,Ei10,EA033,One level,EA033-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p91, +39401,Ei11,EA033,Acephalous,EA033-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +39402,Ei12,EA033,One level,EA033-2,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +39403,Ei13,EA033,Acephalous,EA033-1,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +39404,Ei14,EA033,Acephalous,EA033-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +39405,Ei15,EA033,?,EA033-NA,,,,,, +39406,Ei16,EA033,Acephalous,EA033-1,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +39407,Ei17,EA033,?,EA033-NA,,,,,, +39408,Ei18,EA033,One level,EA033-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +39409,Ei19,EA033,One level,EA033-2,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +39410,Ei2,EA033,Acephalous,EA033-1,,mills1922,,1920,EthnographicAtlas_1967_p91, +39411,Ei20,EA033,?,EA033-NA,,,,,, +39412,Ei3,EA033,Three levels,EA033-4,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +39413,Ei4,EA033,One level,EA033-2,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +39414,Ei5,EA033,One level,EA033-2,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +39415,Ei6,EA033,Acephalous,EA033-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +39416,Ei7,EA033,Acephalous,EA033-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +39417,Ei8,EA033,One level,EA033-2,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +39418,Ei9,EA033,One level,EA033-2,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p91, +39419,Ej1,EA033,Acephalous,EA033-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +39420,Ej10,EA033,Acephalous,EA033-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +39421,Ej11,EA033,Two levels,EA033-3,Organized in a great state from the 11th to the 17th centuries; thereafter subject to the Vietnamese,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +39422,Ej12,EA033,One level,EA033-2,But politically incorporated into the state of Thailand,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +39423,Ej13,EA033,Two levels,EA033-3,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +39424,Ej14,EA033,Acephalous,EA033-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39425,Ej15,EA033,Four levels,EA033-5,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +39426,Ej16,EA033,Three levels,EA033-4,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +39427,Ej2,EA033,Acephalous,EA033-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +39428,Ej3,EA033,Acephalous,EA033-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +39429,Ej4,EA033,Four levels,EA033-5,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +39430,Ej5,EA033,Three levels,EA033-4,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +39431,Ej6,EA033,Acephalous,EA033-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p91, +39432,Ej7,EA033,Acephalous,EA033-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +39433,Ej8,EA033,Two levels,EA033-3,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +39434,Ej9,EA033,Four levels,EA033-5,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +39435,Ia1,EA033,One level,EA033-2,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +39436,Ia10,EA033,Acephalous,EA033-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p91, +39437,Ia11,EA033,Acephalous,EA033-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +39438,Ia12,EA033,Four levels,EA033-5,Politically integrated into the Philippine state,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +39439,Ia13,EA033,Acephalous,EA033-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +39440,Ia14,EA033,Acephalous,EA033-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p95, +39441,Ia15,EA033,Acephalous,EA033-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +39442,Ia16,EA033,One level,EA033-2,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +39443,Ia17,EA033,?,EA033-NA,,,,,, +39444,Ia18,EA033,?,EA033-NA,,,,,, +39445,Ia2,EA033,Acephalous,EA033-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +39446,Ia3,EA033,Acephalous,EA033-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +39447,Ia4,EA033,Acephalous,EA033-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +39448,Ia5,EA033,Acephalous,EA033-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +39449,Ia6,EA033,One level,EA033-2,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39450,Ia7,EA033,Acephalous,EA033-1,,fox1954,,1950,EthnographicAtlas_1967_p91, +39451,Ia8,EA033,Acephalous,EA033-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +39452,Ia9,EA033,Acephalous,EA033-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +39453,Ib1,EA033,Acephalous,EA033-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39454,Ib2,EA033,Four levels,EA033-5,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39455,Ib3,EA033,Three levels,EA033-4,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +39456,Ib4,EA033,Acephalous,EA033-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p95, +39457,Ib5,EA033,Acephalous,EA033-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +39458,Ib6,EA033,Two levels,EA033-3,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +39459,Ib7,EA033,Acephalous,EA033-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p95, +39460,Ib8,EA033,Acephalous,EA033-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p95, +39461,Ib9,EA033,?,EA033-NA,,,,,, +39462,Ic1,EA033,Three levels,EA033-4,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39463,Ic10,EA033,Two levels,EA033-3,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p95, +39464,Ic11,EA033,Two levels,EA033-3,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39465,Ic12,EA033,Two levels,EA033-3,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +39466,Ic13,EA033,?,EA033-NA,,,,,, +39467,Ic2,EA033,Two levels,EA033-3,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +39468,Ic3,EA033,One level,EA033-2,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p95, +39469,Ic4,EA033,?,EA033-NA,,,,,, +39470,Ic5,EA033,One level,EA033-2,"But 'extended families' (EA032 code ""3"") with 'no political authority beyond the local community' (EA033 code ""1"") among the eastern Toraja [kk check orig comment]",adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p95,"Assume Murdock comment, listed in Gray (1999), applies to this variable, not Col 30" +39471,Ic6,EA033,One level,EA033-2,,drabbe1940,,1930,EthnographicAtlas_1967_p95, +39472,Ic7,EA033,Two levels,EA033-3,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +39473,Ic8,EA033,Acephalous,EA033-1,,pleyte1893,,1890,EthnographicAtlas_1967_p95, +39474,Ic9,EA033,One level,EA033-2,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p95, +39475,Id1,EA033,Acephalous,EA033-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +39476,Id10,EA033,Acephalous,EA033-1,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +39477,Id11,EA033,Acephalous,EA033-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +39478,Id12,EA033,Acephalous,EA033-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +39479,Id13,EA033,Acephalous,EA033-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +39480,Id2,EA033,Acephalous,EA033-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +39481,Id3,EA033,Acephalous,EA033-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +39482,Id4,EA033,One level,EA033-2,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +39483,Id5,EA033,Acephalous,EA033-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +39484,Id6,EA033,Acephalous,EA033-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p95, +39485,Id7,EA033,Acephalous,EA033-1,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +39486,Id8,EA033,Acephalous,EA033-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +39487,Id9,EA033,Acephalous,EA033-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p95, +39488,Ie1,EA033,One level,EA033-2,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39489,Ie10,EA033,Acephalous,EA033-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +39490,Ie11,EA033,Acephalous,EA033-1,,bowers1964,,1950,EthnographicAtlas_1967_p95, +39491,Ie12,EA033,Acephalous,EA033-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39492,Ie13,EA033,Acephalous,EA033-1,,landtman1927,,1920,EthnographicAtlas_1967_p95, +39493,Ie14,EA033,Acephalous,EA033-1,,haddon1908,,1900,EthnographicAtlas_1967_p95, +39494,Ie15,EA033,Acephalous,EA033-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39495,Ie16,EA033,Acephalous,EA033-1,,williams194041,,1940,EthnographicAtlas_1967_p95, +39496,Ie17,EA033,Acephalous,EA033-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +39497,Ie18,EA033,Acephalous,EA033-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +39498,Ie19,EA033,Acephalous,EA033-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +39499,Ie2,EA033,Acephalous,EA033-1,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +39500,Ie20,EA033,Acephalous,EA033-1,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +39501,Ie21,EA033,Acephalous,EA033-1,,malinowski1916,,1900,EthnographicAtlas_1967_p95, +39502,Ie22,EA033,Acephalous,EA033-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +39503,Ie23,EA033,Acephalous,EA033-1,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +39504,Ie24,EA033,Acephalous,EA033-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p95, +39505,Ie25,EA033,Acephalous,EA033-1,,williamson1912,,1920,EthnographicAtlas_1967_p95, +39506,Ie26,EA033,Acephalous,EA033-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +39507,Ie27,EA033,Acephalous,EA033-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p99, +39508,Ie28,EA033,Acephalous,EA033-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +39509,Ie29,EA033,Acephalous,EA033-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39510,Ie3,EA033,Acephalous,EA033-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39511,Ie30,EA033,Acephalous,EA033-1,,pouwer1955,,1950,EthnographicAtlas_1967_p99, +39512,Ie31,EA033,Acephalous,EA033-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +39513,Ie32,EA033,Acephalous,EA033-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +39514,Ie33,EA033,Acephalous,EA033-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +39515,Ie34,EA033,?,EA033-NA,,,,,, +39516,Ie35,EA033,Acephalous,EA033-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +39517,Ie36,EA033,?,EA033-NA,,,,,, +39518,Ie37,EA033,?,EA033-NA,,,,,, +39519,Ie38,EA033,One level,EA033-2,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +39520,Ie39,EA033,Acephalous,EA033-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +39521,Ie4,EA033,Acephalous,EA033-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39522,Ie5,EA033,Acephalous,EA033-1,,williams1936,,1930,EthnographicAtlas_1967_p95, +39523,Ie6,EA033,Acephalous,EA033-1,,held1947,,1930,EthnographicAtlas_1967_p95, +39524,Ie7,EA033,Acephalous,EA033-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +39525,Ie8,EA033,One level,EA033-2,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +39526,Ie9,EA033,Acephalous,EA033-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +39527,If1,EA033,Two levels,EA033-3,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39528,If10,EA033,?,EA033-NA,,,,,, +39529,If11,EA033,Two levels,EA033-3,,sarfert1919,,1860,EthnographicAtlas_1967_p99, +39530,If12,EA033,One level,EA033-2,Subject to the paramount chief of Kwajalein,mason1954,,1940,EthnographicAtlas_1967_p99, +39531,If13,EA033,One level,EA033-2,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p99, +39532,If14,EA033,One level,EA033-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +39533,If15,EA033,Acephalous,EA033-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +39534,If16,EA033,Acephalous,EA033-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +39535,If17,EA033,One level,EA033-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +39536,If2,EA033,Acephalous,EA033-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +39537,If3,EA033,One level,EA033-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +39538,If4,EA033,One level,EA033-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +39539,If5,EA033,Two levels,EA033-3,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +39540,If6,EA033,One level,EA033-2,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +39541,If7,EA033,One level,EA033-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p99, +39542,If8,EA033,One level,EA033-2,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +39543,If9,EA033,One level,EA033-2,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +39544,Ig1,EA033,Acephalous,EA033-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +39545,Ig10,EA033,Acephalous,EA033-1,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +39546,Ig11,EA033,Acephalous,EA033-1,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +39547,Ig12,EA033,Acephalous,EA033-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p99, +39548,Ig13,EA033,One level,EA033-2,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p99, +39549,Ig14,EA033,Acephalous,EA033-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +39550,Ig15,EA033,?,EA033-NA,,,,,, +39551,Ig16,EA033,?,EA033-NA,,,,,, +39552,Ig17,EA033,?,EA033-NA,,,,,, +39553,Ig18,EA033,?,EA033-NA,,,,,, +39554,Ig19,EA033,?,EA033-NA,,,,,, +39555,Ig2,EA033,One level,EA033-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +39556,Ig20,EA033,Acephalous,EA033-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +39557,Ig21,EA033,Acephalous,EA033-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +39558,Ig3,EA033,Acephalous,EA033-1,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +39559,Ig4,EA033,Acephalous,EA033-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +39560,Ig5,EA033,Acephalous,EA033-1,,fortune1932b,,1920,EthnographicAtlas_1967_p99, +39561,Ig6,EA033,Acephalous,EA033-1,,ivens1927,,1900,EthnographicAtlas_1967_p99, +39562,Ig7,EA033,Acephalous,EA033-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +39563,Ig8,EA033,?,EA033-NA,,,,,, +39564,Ig9,EA033,Acephalous,EA033-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +39565,Ih1,EA033,Acephalous,EA033-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +39566,Ih10,EA033,One level,EA033-2,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39567,Ih11,EA033,?,EA033-NA,,,,,, +39568,Ih12,EA033,?,EA033-NA,,,,,, +39569,Ih13,EA033,?,EA033-NA,,,,,, +39570,Ih14,EA033,Two levels,EA033-3,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +39571,Ih2,EA033,Acephalous,EA033-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39572,Ih3,EA033,Acephalous,EA033-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +39573,Ih4,EA033,Two levels,EA033-3,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39574,Ih5,EA033,One level,EA033-2,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p99, +39575,Ih6,EA033,One level,EA033-2,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p99, +39576,Ih7,EA033,One level,EA033-2,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p99, +39577,Ih8,EA033,One level,EA033-2,"Formerly 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"")",quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +39578,Ih9,EA033,Acephalous,EA033-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39579,Ii1,EA033,Two levels,EA033-3,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +39580,Ii10,EA033,One level,EA033-2,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +39581,Ii12,EA033,Two levels,EA033-3,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39582,Ii13,EA033,Two levels,EA033-3,,burrows1937,,1830,EthnographicAtlas_1967_p99, +39583,Ii14,EA033,Two levels,EA033-3,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +39584,Ii2,EA033,One level,EA033-2,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +39585,Ii3,EA033,One level,EA033-2,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +39586,Ii4,EA033,One level,EA033-2,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +39587,Ii5,EA033,Acephalous,EA033-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p99, +39588,Ii6,EA033,One level,EA033-2,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +39589,Ii7,EA033,One level,EA033-2,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +39590,Ii8,EA033,One level,EA033-2,,burrows1936,,1840,EthnographicAtlas_1967_p99, +39591,Ii9,EA033,One level,EA033-2,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +39592,Ij1,EA033,One level,EA033-2,,buck1934,,1820,EthnographicAtlas_1967_p99, +39593,Ij10,EA033,One level,EA033-2,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +39594,Ij2,EA033,One level,EA033-2,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +39595,Ij3,EA033,One level,EA033-2,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +39596,Ij4,EA033,One level,EA033-2,,buck1932a,,1850,EthnographicAtlas_1967_p103, +39597,Ij5,EA033,One level,EA033-2,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p103, +39598,Ij6,EA033,Two levels,EA033-3,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p103, +39599,Ij7,EA033,Two levels,EA033-3,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +39600,Ij8,EA033,Two levels,EA033-3,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p103, +39601,Ij9,EA033,One level,EA033-2,,metraux1940,,1860,EthnographicAtlas_1967_p103, +39602,Na1,EA033,Acephalous,EA033-1,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +39603,Na10,EA033,Acephalous,EA033-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +39604,Na11,EA033,Acephalous,EA033-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +39605,Na12,EA033,Acephalous,EA033-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +39606,Na13,EA033,Acephalous,EA033-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +39607,Na14,EA033,Acephalous,EA033-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +39608,Na15,EA033,Acephalous,EA033-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p103, +39609,Na16,EA033,Acephalous,EA033-1,,osgood1931,,1860,EthnographicAtlas_1967_p103, +39610,Na17,EA033,Acephalous,EA033-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39611,Na19,EA033,Acephalous,EA033-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +39612,Na2,EA033,Acephalous,EA033-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +39613,Na20,EA033,One level,EA033-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +39614,Na21,EA033,Acephalous,EA033-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +39615,Na22,EA033,Acephalous,EA033-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +39616,Na23,EA033,Acephalous,EA033-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +39617,Na24,EA033,Acephalous,EA033-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +39618,Na25,EA033,Acephalous,EA033-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +39619,Na26,EA033,Acephalous,EA033-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +39620,Na27,EA033,Acephalous,EA033-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +39621,Na28,EA033,Acephalous,EA033-1,,jenness1937,,1880,EthnographicAtlas_1967_p103, +39622,Na29,EA033,Acephalous,EA033-1,,goddard1916,,1850,EthnographicAtlas_1967_p103, +39623,Na3,EA033,Acephalous,EA033-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +39624,Na30,EA033,Acephalous,EA033-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +39625,Na31,EA033,Acephalous,EA033-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +39626,Na32,EA033,Acephalous,EA033-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +39627,Na33,EA033,Acephalous,EA033-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +39628,Na34,EA033,One level,EA033-2,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +39629,Na35,EA033,Acephalous,EA033-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +39630,Na36,EA033,Acephalous,EA033-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +39631,Na37,EA033,Acephalous,EA033-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +39632,Na38,EA033,Acephalous,EA033-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +39633,Na39,EA033,Acephalous,EA033-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +39634,Na4,EA033,Acephalous,EA033-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +39635,Na40,EA033,One level,EA033-2,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +39636,Na41,EA033,One level,EA033-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +39637,Na42,EA033,One level,EA033-2,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +39638,Na43,EA033,Acephalous,EA033-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +39639,Na44,EA033,Acephalous,EA033-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +39640,Na45,EA033,Acephalous,EA033-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +39641,Na5,EA033,Acephalous,EA033-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +39642,Na6,EA033,Acephalous,EA033-1,,lantis1946,,1930,EthnographicAtlas_1967_p103, +39643,Na7,EA033,Acephalous,EA033-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +39644,Na8,EA033,Acephalous,EA033-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +39645,Na9,EA033,Acephalous,EA033-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39646,Nb1,EA033,Acephalous,EA033-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +39647,Nb10,EA033,Acephalous,EA033-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +39648,Nb11,EA033,One level,EA033-2,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +39649,Nb12,EA033,Acephalous,EA033-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +39650,Nb13,EA033,Acephalous,EA033-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +39651,Nb14,EA033,Acephalous,EA033-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +39652,Nb15,EA033,Acephalous,EA033-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +39653,Nb16,EA033,Acephalous,EA033-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +39654,Nb17,EA033,Acephalous,EA033-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +39655,Nb18,EA033,Acephalous,EA033-1,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +39656,Nb19,EA033,Acephalous,EA033-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +39657,Nb2,EA033,Acephalous,EA033-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +39658,Nb20,EA033,Acephalous,EA033-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +39659,Nb21,EA033,Acephalous,EA033-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +39660,Nb22,EA033,Acephalous,EA033-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +39661,Nb23,EA033,Acephalous,EA033-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +39662,Nb24,EA033,Acephalous,EA033-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +39663,Nb25,EA033,Acephalous,EA033-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +39664,Nb26,EA033,Acephalous,EA033-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +39665,Nb27,EA033,Acephalous,EA033-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +39666,Nb28,EA033,Acephalous,EA033-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +39667,Nb29,EA033,Acephalous,EA033-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +39668,Nb3,EA033,One level,EA033-2,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +39669,Nb30,EA033,Acephalous,EA033-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +39670,Nb31,EA033,Acephalous,EA033-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p107, +39671,Nb32,EA033,One level,EA033-2,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +39672,Nb33,EA033,Acephalous,EA033-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +39673,Nb34,EA033,Acephalous,EA033-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +39674,Nb35,EA033,Acephalous,EA033-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +39675,Nb36,EA033,Acephalous,EA033-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +39676,Nb37,EA033,Acephalous,EA033-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +39677,Nb38,EA033,Acephalous,EA033-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +39678,Nb39,EA033,Acephalous,EA033-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +39679,Nb4,EA033,Acephalous,EA033-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +39680,Nb5,EA033,One level,EA033-2,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +39681,Nb6,EA033,Acephalous,EA033-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +39682,Nb7,EA033,One level,EA033-2,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +39683,Nb8,EA033,Acephalous,EA033-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +39684,Nb9,EA033,Acephalous,EA033-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +39685,Nc1,EA033,Acephalous,EA033-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +39686,Nc10,EA033,Acephalous,EA033-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +39687,Nc11,EA033,Acephalous,EA033-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +39688,Nc12,EA033,One level,EA033-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +39689,Nc13,EA033,Acephalous,EA033-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +39690,Nc14,EA033,Acephalous,EA033-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +39691,Nc15,EA033,Acephalous,EA033-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +39692,Nc16,EA033,Acephalous,EA033-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +39693,Nc17,EA033,Acephalous,EA033-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +39694,Nc18,EA033,Acephalous,EA033-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +39695,Nc19,EA033,Acephalous,EA033-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p107, +39696,Nc2,EA033,One level,EA033-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +39697,Nc20,EA033,Acephalous,EA033-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +39698,Nc21,EA033,Acephalous,EA033-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +39699,Nc22,EA033,Acephalous,EA033-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +39700,Nc23,EA033,Acephalous,EA033-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +39701,Nc24,EA033,Acephalous,EA033-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +39702,Nc25,EA033,Acephalous,EA033-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +39703,Nc26,EA033,Acephalous,EA033-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +39704,Nc27,EA033,Acephalous,EA033-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p107, +39705,Nc28,EA033,Acephalous,EA033-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +39706,Nc29,EA033,Acephalous,EA033-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +39707,Nc3,EA033,Acephalous,EA033-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +39708,Nc30,EA033,Acephalous,EA033-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +39709,Nc31,EA033,Acephalous,EA033-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +39710,Nc32,EA033,Acephalous,EA033-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +39711,Nc33,EA033,Acephalous,EA033-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +39712,Nc34,EA033,Acephalous,EA033-1,,meigs1939,,1880,EthnographicAtlas_1967_p107, +39713,Nc4,EA033,Acephalous,EA033-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +39714,Nc5,EA033,Acephalous,EA033-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +39715,Nc6,EA033,Acephalous,EA033-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +39716,Nc7,EA033,Acephalous,EA033-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +39717,Nc8,EA033,Acephalous,EA033-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +39718,Nc9,EA033,Acephalous,EA033-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +39719,Nd1,EA033,Acephalous,EA033-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +39720,Nd10,EA033,One level,EA033-2,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +39721,Nd11,EA033,One level,EA033-2,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +39722,Nd12,EA033,One level,EA033-2,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +39723,Nd13,EA033,Acephalous,EA033-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +39724,Nd14,EA033,One level,EA033-2,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +39725,Nd15,EA033,Acephalous,EA033-1,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +39726,Nd16,EA033,Acephalous,EA033-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +39727,Nd17,EA033,Acephalous,EA033-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +39728,Nd18,EA033,Acephalous,EA033-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +39729,Nd19,EA033,One level,EA033-2,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +39730,Nd2,EA033,Acephalous,EA033-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +39731,Nd20,EA033,One level,EA033-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +39732,Nd21,EA033,Acephalous,EA033-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +39733,Nd22,EA033,Acephalous,EA033-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +39734,Nd23,EA033,Acephalous,EA033-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +39735,Nd24,EA033,Acephalous,EA033-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +39736,Nd25,EA033,Acephalous,EA033-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +39737,Nd26,EA033,Acephalous,EA033-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +39738,Nd27,EA033,Acephalous,EA033-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +39739,Nd28,EA033,Acephalous,EA033-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +39740,Nd29,EA033,Acephalous,EA033-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +39741,Nd3,EA033,Acephalous,EA033-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +39742,Nd30,EA033,Acephalous,EA033-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +39743,Nd31,EA033,Acephalous,EA033-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +39744,Nd32,EA033,Acephalous,EA033-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +39745,Nd33,EA033,Acephalous,EA033-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +39746,Nd34,EA033,Acephalous,EA033-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +39747,Nd35,EA033,Acephalous,EA033-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +39748,Nd36,EA033,Acephalous,EA033-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +39749,Nd37,EA033,Acephalous,EA033-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +39750,Nd38,EA033,Acephalous,EA033-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +39751,Nd39,EA033,Acephalous,EA033-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +39752,Nd4,EA033,Acephalous,EA033-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +39753,Nd40,EA033,Acephalous,EA033-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +39754,Nd41,EA033,Acephalous,EA033-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +39755,Nd42,EA033,Acephalous,EA033-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +39756,Nd43,EA033,Acephalous,EA033-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +39757,Nd44,EA033,Acephalous,EA033-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +39758,Nd45,EA033,Acephalous,EA033-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +39759,Nd46,EA033,Acephalous,EA033-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +39760,Nd47,EA033,Acephalous,EA033-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +39761,Nd48,EA033,Acephalous,EA033-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +39762,Nd49,EA033,Acephalous,EA033-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +39763,Nd5,EA033,Acephalous,EA033-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +39764,Nd50,EA033,Acephalous,EA033-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +39765,Nd51,EA033,Acephalous,EA033-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +39766,Nd52,EA033,Acephalous,EA033-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +39767,Nd53,EA033,Acephalous,EA033-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +39768,Nd54,EA033,Acephalous,EA033-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39769,Nd55,EA033,Acephalous,EA033-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +39770,Nd56,EA033,Acephalous,EA033-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +39771,Nd57,EA033,Acephalous,EA033-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +39772,Nd58,EA033,Acephalous,EA033-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +39773,Nd59,EA033,Acephalous,EA033-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +39774,Nd6,EA033,Acephalous,EA033-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +39775,Nd60,EA033,Acephalous,EA033-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +39776,Nd61,EA033,Acephalous,EA033-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +39777,Nd62,EA033,Acephalous,EA033-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +39778,Nd63,EA033,One level,EA033-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +39779,Nd64,EA033,One level,EA033-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +39780,Nd65,EA033,Acephalous,EA033-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +39781,Nd66,EA033,Acephalous,EA033-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +39782,Nd67,EA033,Acephalous,EA033-1,,gifford1936,,1870,EthnographicAtlas_1967_p111, +39783,Nd7,EA033,One level,EA033-2,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +39784,Nd8,EA033,Acephalous,EA033-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +39785,Nd9,EA033,Acephalous,EA033-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +39786,Ne1,EA033,One level,EA033-2,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +39787,Ne10,EA033,Two levels,EA033-3,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +39788,Ne11,EA033,Acephalous,EA033-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +39789,Ne12,EA033,Acephalous,EA033-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +39790,Ne13,EA033,One level,EA033-2,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +39791,Ne14,EA033,Acephalous,EA033-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +39792,Ne15,EA033,Acephalous,EA033-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +39793,Ne16,EA033,One level,EA033-2,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +39794,Ne17,EA033,One level,EA033-2,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +39795,Ne18,EA033,One level,EA033-2,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +39796,Ne19,EA033,Acephalous,EA033-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +39797,Ne2,EA033,Acephalous,EA033-1,The Kiowa-Apache formed one band of the Kiowa tribe,mcallister1937,,1870,EthnographicAtlas_1967_p111, +39798,Ne20,EA033,Acephalous,EA033-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p115, +39799,Ne21,EA033,?,EA033-NA,,,,,, +39800,Ne3,EA033,Acephalous,EA033-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p111, +39801,Ne4,EA033,One level,EA033-2,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +39802,Ne5,EA033,One level,EA033-2,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +39803,Ne6,EA033,One level,EA033-2,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p111, +39804,Ne7,EA033,One level,EA033-2,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +39805,Ne8,EA033,One level,EA033-2,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +39806,Ne9,EA033,One level,EA033-2,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +39807,Nf10,EA033,One level,EA033-2,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +39808,Nf11,EA033,Acephalous,EA033-1,,whitman1937,,1870,EthnographicAtlas_1967_p115, +39809,Nf12,EA033,One level,EA033-2,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +39810,Nf13,EA033,One level,EA033-2,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39811,Nf14,EA033,One level,EA033-2,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +39812,Nf15,EA033,?,EA033-NA,,,,,, +39813,Nf2,EA033,One level,EA033-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p115, +39814,Nf3,EA033,One level,EA033-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +39815,Nf4,EA033,One level,EA033-2,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +39816,Nf5,EA033,One level,EA033-2,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +39817,Nf6,EA033,One level,EA033-2,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +39818,Nf7,EA033,One level,EA033-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39819,Nf8,EA033,Two levels,EA033-3,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +39820,Nf9,EA033,One level,EA033-2,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +39821,Ng1,EA033,One level,EA033-2,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +39822,Ng10,EA033,Two levels,EA033-3,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +39823,Ng11,EA033,One level,EA033-2,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p115, +39824,Ng12,EA033,One level,EA033-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p115, +39825,Ng13,EA033,?,EA033-NA,,,,,, +39826,Ng14,EA033,?,EA033-NA,,,,,, +39827,Ng15,EA033,?,EA033-NA,,,,,, +39828,Ng2,EA033,?,EA033-NA,,,,,, +39829,Ng3,EA033,Two levels,EA033-3,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +39830,Ng4,EA033,?,EA033-NA,,,,,, +39831,Ng5,EA033,Two levels,EA033-3,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +39832,Ng6,EA033,Acephalous,EA033-1,"But 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"") in the eighteenth century",harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +39833,Ng7,EA033,One level,EA033-2,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +39834,Ng8,EA033,One level,EA033-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p115, +39835,Ng9,EA033,?,EA033-NA,Fully incorporated today into the political system of the United States,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +39836,Nh1,EA033,Acephalous,EA033-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +39837,Nh10,EA033,Acephalous,EA033-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +39838,Nh11,EA033,Acephalous,EA033-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +39839,Nh12,EA033,Acephalous,EA033-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +39840,Nh13,EA033,Acephalous,EA033-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +39841,Nh14,EA033,Acephalous,EA033-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +39842,Nh15,EA033,Acephalous,EA033-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +39843,Nh16,EA033,Acephalous,EA033-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39844,Nh17,EA033,Acephalous,EA033-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +39845,Nh18,EA033,Acephalous,EA033-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39846,Nh19,EA033,Acephalous,EA033-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +39847,Nh2,EA033,Acephalous,EA033-1,,dozier1954,,1950,EthnographicAtlas_1967_p115, +39848,Nh20,EA033,One level,EA033-2,,gifford1931,,1860,EthnographicAtlas_1967_p115, +39849,Nh21,EA033,One level,EA033-2,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39850,Nh22,EA033,Acephalous,EA033-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +39851,Nh23,EA033,Acephalous,EA033-1,,gifford1932a,,1870,EthnographicAtlas_1967_p115, +39852,Nh24,EA033,One level,EA033-2,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +39853,Nh25,EA033,Acephalous,EA033-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +39854,Nh26,EA033,?,EA033-NA,,,,,, +39855,Nh27,EA033,?,EA033-NA,,,,,, +39856,Nh3,EA033,Acephalous,EA033-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +39857,Nh4,EA033,Acephalous,EA033-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +39858,Nh5,EA033,One level,EA033-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +39859,Nh6,EA033,Acephalous,EA033-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +39860,Nh7,EA033,Acephalous,EA033-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +39861,Nh8,EA033,Acephalous,EA033-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +39862,Nh9,EA033,Acephalous,EA033-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p115, +39863,Ni1,EA033,Acephalous,EA033-1,Integrated into the Mexican state,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +39864,Ni2,EA033,Acephalous,EA033-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +39865,Ni3,EA033,Acephalous,EA033-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +39866,Ni4,EA033,Acephalous,EA033-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p115, +39867,Ni5,EA033,Acephalous,EA033-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +39868,Ni6,EA033,Acephalous,EA033-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +39869,Ni7,EA033,Acephalous,EA033-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +39870,Ni8,EA033,?,EA033-NA,,,,,, +39871,Ni9,EA033,?,EA033-NA,,,,,, +39872,Nj1,EA033,Acephalous,EA033-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39873,Nj10,EA033,?,EA033-NA,Integrated into Mexican state,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39874,Nj11,EA033,?,EA033-NA,,,,,, +39875,Nj12,EA033,?,EA033-NA,,,,,, +39876,Nj13,EA033,?,EA033-NA,,,,,, +39877,Nj14,EA033,?,EA033-NA,,,,,, +39878,Nj2,EA033,Two levels,EA033-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +39879,Nj3,EA033,Acephalous,EA033-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +39880,Nj4,EA033,One level,EA033-2,Subject aboriginally to the Aztec; integrated today into the Mexican state,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +39881,Nj5,EA033,?,EA033-NA,,,,,, +39882,Nj6,EA033,?,EA033-NA,,,,,, +39883,Nj7,EA033,One level,EA033-2,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39884,Nj8,EA033,Two levels,EA033-3,,foster1948,,1500,EthnographicAtlas_1967_p119, +39885,Nj9,EA033,?,EA033-NA,Integrated into Mexican state,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +39886,Sa1,EA033,One level,EA033-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +39887,Sa10,EA033,?,EA033-NA,Integrated into the Mexican state,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p119, +39888,Sa11,EA033,?,EA033-NA,,,,,, +39889,Sa12,EA033,Acephalous,EA033-1,,stone1948,,1948,EthnographicAtlas_1967_p119, +39890,Sa13,EA033,One level,EA033-2,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +39891,Sa14,EA033,?,EA033-NA,,,,,, +39892,Sa15,EA033,?,EA033-NA,,,,,, +39893,Sa16,EA033,?,EA033-NA,,,,,, +39894,Sa17,EA033,?,EA033-NA,,,,,, +39895,Sa2,EA033,?,EA033-NA,,,,,, +39896,Sa3,EA033,One level,EA033-2,"Integrated, above the level of the department, into the Guatemalan state",wisdom1940,,1930,EthnographicAtlas_1967_p119, +39897,Sa4,EA033,Acephalous,EA033-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +39898,Sa5,EA033,Acephalous,EA033-1,"Formerly 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"")",gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +39899,Sa6,EA033,One level,EA033-2,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +39900,Sa7,EA033,Acephalous,EA033-1,There is no independent political organization; even local headmen are appointed by the government of British Honduras,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +39901,Sa8,EA033,?,EA033-NA,Integrated into the Guatemalan state,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +39902,Sa9,EA033,One level,EA033-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +39903,Sb1,EA033,Acephalous,EA033-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +39904,Sb2,EA033,Acephalous,EA033-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +39905,Sb3,EA033,Acephalous,EA033-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +39906,Sb4,EA033,Acephalous,EA033-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +39907,Sb5,EA033,Acephalous,EA033-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +39908,Sb6,EA033,Acephalous,EA033-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +39909,Sb7,EA033,Acephalous,EA033-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +39910,Sb8,EA033,Two levels,EA033-3,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +39911,Sb9,EA033,Three levels,EA033-4,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +39912,Sc1,EA033,Acephalous,EA033-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +39913,Sc10,EA033,Acephalous,EA033-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +39914,Sc11,EA033,Acephalous,EA033-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p119, +39915,Sc12,EA033,Acephalous,EA033-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p119, +39916,Sc13,EA033,Acephalous,EA033-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +39917,Sc14,EA033,?,EA033-NA,,,,,, +39918,Sc15,EA033,Acephalous,EA033-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p119, +39919,Sc16,EA033,Acephalous,EA033-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p119, +39920,Sc17,EA033,Acephalous,EA033-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +39921,Sc18,EA033,One level,EA033-2,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +39922,Sc2,EA033,Acephalous,EA033-1,,leedsnd,,1950,EthnographicAtlas_1967_p119, +39923,Sc3,EA033,Acephalous,EA033-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +39924,Sc4,EA033,Acephalous,EA033-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +39925,Sc5,EA033,Acephalous,EA033-1,,farabee1918,,1900,EthnographicAtlas_1967_p119, +39926,Sc6,EA033,Two levels,EA033-3,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39927,Sc7,EA033,Acephalous,EA033-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +39928,Sc8,EA033,Acephalous,EA033-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +39929,Sc9,EA033,Acephalous,EA033-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +39930,Sd1,EA033,Acephalous,EA033-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39931,Sd2,EA033,Acephalous,EA033-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +39932,Sd3,EA033,Acephalous,EA033-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p119, +39933,Sd4,EA033,Acephalous,EA033-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +39934,Sd5,EA033,Acephalous,EA033-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +39935,Sd6,EA033,Acephalous,EA033-1,,migliazza1964,,1960,EthnographicAtlas_1967_p119, +39936,Sd7,EA033,Acephalous,EA033-1,,fock1963,,1950,EthnographicAtlas_1967_p119, +39937,Sd8,EA033,Acephalous,EA033-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +39938,Sd9,EA033,Acephalous,EA033-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39939,Se1,EA033,Acephalous,EA033-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +39940,Se10,EA033,Acephalous,EA033-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +39941,Se11,EA033,Acephalous,EA033-1,,prost1965,,1960,EthnographicAtlas_1967_p123, +39942,Se12,EA033,?,EA033-NA,,,,,, +39943,Se2,EA033,Acephalous,EA033-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +39944,Se3,EA033,Acephalous,EA033-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +39945,Se4,EA033,Acephalous,EA033-1,,fejos1943,,1940,EthnographicAtlas_1967_p119, +39946,Se5,EA033,Acephalous,EA033-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +39947,Se6,EA033,Acephalous,EA033-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +39948,Se7,EA033,?,EA033-NA,,,,,, +39949,Se8,EA033,Acephalous,EA033-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +39950,Se9,EA033,Acephalous,EA033-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +39951,Sf1,EA033,Four levels,EA033-5,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +39952,Sf2,EA033,?,EA033-NA,"Formerly integrated into the Inca state, today into the Bolivian and Peruvian states",bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +39953,Sf3,EA033,Acephalous,EA033-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +39954,Sf4,EA033,Acephalous,EA033-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +39955,Sf5,EA033,One level,EA033-2,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +39956,Sf6,EA033,Two levels,EA033-3,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +39957,Sf7,EA033,Acephalous,EA033-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +39958,Sf8,EA033,?,EA033-NA,,,,,, +39959,Sf9,EA033,?,EA033-NA,,,,,, +39960,Sg1,EA033,Acephalous,EA033-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +39961,Sg2,EA033,Acephalous,EA033-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39962,Sg3,EA033,Acephalous,EA033-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +39963,Sg4,EA033,Acephalous,EA033-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +39964,Sg5,EA033,Acephalous,EA033-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39965,Sh1,EA033,Acephalous,EA033-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +39966,Sh2,EA033,Acephalous,EA033-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +39967,Sh3,EA033,Acephalous,EA033-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +39968,Sh4,EA033,One level,EA033-2,,oberg1949,,1940,EthnographicAtlas_1967_p123, +39969,Sh5,EA033,Acephalous,EA033-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +39970,Sh6,EA033,One level,EA033-2,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +39971,Sh7,EA033,One level,EA033-2,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p123, +39972,Sh8,EA033,One level,EA033-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +39973,Sh9,EA033,Acephalous,EA033-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +39974,Si1,EA033,One level,EA033-2,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39975,Si10,EA033,Acephalous,EA033-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +39976,Si2,EA033,Acephalous,EA033-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +39977,Si3,EA033,Acephalous,EA033-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39978,Si4,EA033,Acephalous,EA033-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +39979,Si5,EA033,Acephalous,EA033-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +39980,Si6,EA033,Acephalous,EA033-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p123, +39981,Si7,EA033,Acephalous,EA033-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +39982,Si8,EA033,Acephalous,EA033-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +39983,Si9,EA033,?,EA033-NA,,,,,, +39984,Sj1,EA033,Acephalous,EA033-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +39985,Sj10,EA033,Acephalous,EA033-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39986,Sj11,EA033,Acephalous,EA033-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +39987,Sj2,EA033,Acephalous,EA033-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +39988,Sj3,EA033,Acephalous,EA033-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +39989,Sj4,EA033,Acephalous,EA033-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +39990,Sj5,EA033,Acephalous,EA033-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p123, +39991,Sj6,EA033,Acephalous,EA033-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +39992,Sj7,EA033,Acephalous,EA033-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +39993,Sj8,EA033,One level,EA033-2,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +39994,Sj9,EA033,Acephalous,EA033-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +39995,ch12,EA033,Four levels,EA033-5,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +39996,ch13,EA033,Four levels,EA033-5,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +39997,ch14,EA033,Four levels,EA033-5,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +39998,ch15,EA033,Four levels,EA033-5,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +39999,ch16,EA033,Four levels,EA033-5,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +40000,ch17,EA033,Four levels,EA033-5,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +40001,ch18,EA033,Four levels,EA033-5,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +40002,ch19,EA033,Four levels,EA033-5,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +40003,ch20,EA033,Four levels,EA033-5,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +40004,ch21,EA033,Four levels,EA033-5,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +40005,ch22,EA033,Four levels,EA033-5,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +40006,ch23,EA033,Four levels,EA033-5,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +40007,ch24,EA033,Four levels,EA033-5,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +40008,ch25,EA033,Four levels,EA033-5,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +40009,ch26,EA033,Four levels,EA033-5,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +40010,ch27,EA033,Four levels,EA033-5,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +40011,ch28,EA033,Four levels,EA033-5,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +40012,ec12,EA033,Acephalous,EA033-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +40013,ec13,EA033,Acephalous,EA033-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +40014,ec14,EA033,Acephalous,EA033-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +40015,ec15,EA033,Acephalous,EA033-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +40016,ec16,EA033,Acephalous,EA033-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +40017,ec17,EA033,Acephalous,EA033-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +40018,ec18,EA033,Acephalous,EA033-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +40019,ec19,EA033,Acephalous,EA033-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +40020,ec20,EA033,Acephalous,EA033-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +40021,ec21,EA033,Acephalous,EA033-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +40022,Aa1,EA034,"Active, but not supporting morality",EA034-3,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +40023,Aa2,EA034,Absent,EA034-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +40024,Aa3,EA034,Absent,EA034-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +40025,Aa4,EA034,?,EA034-NA,,,,,, +40026,Aa5,EA034,Absent,EA034-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +40027,Aa6,EA034,Otiose,EA034-2,"According to Huntingford ""the sun and moon are regarded as supreme beings""",dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p63, +40028,Aa7,EA034,Otiose,EA034-2,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +40029,Aa8,EA034,?,EA034-NA,,,,,, +40030,Aa9,EA034,Absent,EA034-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +40031,Ab1,EA034,?,EA034-NA,,,,,, +40032,Ab10,EA034,Absent,EA034-1,,hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +40033,Ab11,EA034,?,EA034-NA,,,,,, +40034,Ab12,EA034,?,EA034-NA,,,,,, +40035,Ab13,EA034,"Active, supporting morality",EA034-4,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +40036,Ab14,EA034,Otiose,EA034-2,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +40037,Ab15,EA034,?,EA034-NA,,,,,, +40038,Ab16,EA034,?,EA034-NA,,,,,, +40039,Ab17,EA034,?,EA034-NA,,,,,, +40040,Ab18,EA034,"Active, supporting morality",EA034-4,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +40041,Ab19,EA034,?,EA034-NA,,,,,, +40042,Ab2,EA034,Absent,EA034-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +40043,Ab20,EA034,?,EA034-NA,,,,,, +40044,Ab21a,EA034,?,EA034-NA,,,,,, +40045,Ab21b,EA034,?,EA034-NA,,,,,, +40046,Ab22,EA034,?,EA034-NA,,,,,, +40047,Ab3,EA034,Otiose,EA034-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +40048,Ab4,EA034,?,EA034-NA,,,,,, +40049,Ab5,EA034,Otiose,EA034-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +40050,Ab6,EA034,"Active, but not supporting morality",EA034-3,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +40051,Ab7,EA034,?,EA034-NA,,,,,, +40052,Ab8,EA034,Absent,EA034-1,But Christian belief prevails today,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +40053,Ab9,EA034,Otiose,EA034-2,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +40054,Ac1,EA034,Otiose,EA034-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +40055,Ac10,EA034,Absent,EA034-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +40056,Ac11,EA034,Otiose,EA034-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +40057,Ac12,EA034,?,EA034-NA,,,,,, +40058,Ac13,EA034,Otiose,EA034-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p63, +40059,Ac14,EA034,?,EA034-NA,,,,,, +40060,Ac15,EA034,?,EA034-NA,,,,,, +40061,Ac16,EA034,?,EA034-NA,,,,,, +40062,Ac17,EA034,Otiose,EA034-2,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +40063,Ac18,EA034,?,EA034-NA,,,,,, +40064,Ac19,EA034,?,EA034-NA,,,,,, +40065,Ac2,EA034,?,EA034-NA,,,,,, +40066,Ac20,EA034,?,EA034-NA,,,,,, +40067,Ac21,EA034,?,EA034-NA,,,,,, +40068,Ac22,EA034,?,EA034-NA,,,,,, +40069,Ac23,EA034,Absent,EA034-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +40070,Ac24,EA034,?,EA034-NA,,,,,, +40071,Ac25,EA034,?,EA034-NA,,,,,, +40072,Ac26,EA034,?,EA034-NA,,,,,, +40073,Ac27,EA034,Otiose,EA034-2,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +40074,Ac28,EA034,?,EA034-NA,,,,,, +40075,Ac29,EA034,?,EA034-NA,,,,,, +40076,Ac3,EA034,"Active, but not supporting morality",EA034-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +40077,Ac30,EA034,"Active, but not supporting morality",EA034-3,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +40078,Ac31,EA034,Otiose,EA034-2,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +40079,Ac32,EA034,?,EA034-NA,,,,,, +40080,Ac33,EA034,Otiose,EA034-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +40081,Ac34,EA034,"Active, but not supporting morality",EA034-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +40082,Ac35,EA034,?,EA034-NA,,,,,, +40083,Ac36,EA034,"Active, but not supporting morality",EA034-3,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +40084,Ac37,EA034,?,EA034-NA,,,,,, +40085,Ac38,EA034,?,EA034-NA,,,,,, +40086,Ac39,EA034,?,EA034-NA,,,,,, +40087,Ac4,EA034,Otiose,EA034-2,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +40088,Ac40,EA034,?,EA034-NA,,,,,, +40089,Ac41,EA034,?,EA034-NA,,,,,, +40090,Ac42,EA034,?,EA034-NA,,,,,, +40091,Ac43,EA034,Otiose,EA034-2,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +40092,Ac5,EA034,Otiose,EA034-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +40093,Ac6,EA034,?,EA034-NA,,,,,, +40094,Ac7,EA034,Absent,EA034-1,But many Yao have adopted Islam,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +40095,Ac8,EA034,?,EA034-NA,,,,,, +40096,Ac9,EA034,Absent,EA034-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +40097,Ad1,EA034,?,EA034-NA,,,,,, +40098,Ad10,EA034,?,EA034-NA,,,,,, +40099,Ad11,EA034,"Active, supporting morality",EA034-4,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +40100,Ad12,EA034,?,EA034-NA,,,,,, +40101,Ad13,EA034,Otiose,EA034-2,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +40102,Ad14,EA034,Otiose,EA034-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +40103,Ad15,EA034,Otiose,EA034-2,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +40104,Ad16,EA034,Absent,EA034-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +40105,Ad17,EA034,Otiose,EA034-2,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +40106,Ad18,EA034,?,EA034-NA,,,,,, +40107,Ad19,EA034,Otiose,EA034-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +40108,Ad2,EA034,Otiose,EA034-2,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +40109,Ad20,EA034,Otiose,EA034-2,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +40110,Ad21,EA034,Otiose,EA034-2,,maurice193538,,1930,EthnographicAtlas_1967_p67, +40111,Ad22,EA034,Otiose,EA034-2,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +40112,Ad23,EA034,?,EA034-NA,,,,,, +40113,Ad24,EA034,?,EA034-NA,,,,,, +40114,Ad25,EA034,?,EA034-NA,,,,,, +40115,Ad26,EA034,?,EA034-NA,,,,,, +40116,Ad27,EA034,?,EA034-NA,,,,,, +40117,Ad28,EA034,Otiose,EA034-2,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +40118,Ad29,EA034,"Active, supporting morality",EA034-4,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p67, +40119,Ad3,EA034,Absent,EA034-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +40120,Ad30,EA034,"Active, supporting morality",EA034-4,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p67, +40121,Ad31,EA034,?,EA034-NA,,,,,, +40122,Ad32,EA034,Absent,EA034-1,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p67, +40123,Ad33,EA034,?,EA034-NA,,,,,, +40124,Ad34,EA034,Otiose,EA034-2,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +40125,Ad35,EA034,?,EA034-NA,,,,,, +40126,Ad36,EA034,?,EA034-NA,,,,,, +40127,Ad37,EA034,?,EA034-NA,,,,,, +40128,Ad38,EA034,?,EA034-NA,,,,,, +40129,Ad39,EA034,?,EA034-NA,,,,,, +40130,Ad4,EA034,"Active, but not supporting morality",EA034-3,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +40131,Ad40,EA034,?,EA034-NA,,,,,, +40132,Ad41,EA034,?,EA034-NA,,,,,, +40133,Ad42,EA034,Otiose,EA034-2,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +40134,Ad43,EA034,?,EA034-NA,,,,,, +40135,Ad44,EA034,Otiose,EA034-2,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p67, +40136,Ad45,EA034,Otiose,EA034-2,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +40137,Ad46,EA034,?,EA034-NA,,,,,, +40138,Ad47,EA034,Otiose,EA034-2,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +40139,Ad48,EA034,Otiose,EA034-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +40140,Ad49,EA034,Otiose,EA034-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +40141,Ad5,EA034,?,EA034-NA,,,,,, +40142,Ad50,EA034,Otiose,EA034-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +40143,Ad51,EA034,Otiose,EA034-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +40144,Ad6,EA034,Otiose,EA034-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +40145,Ad7,EA034,Otiose,EA034-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +40146,Ad8,EA034,?,EA034-NA,,,,,, +40147,Ad9,EA034,Otiose,EA034-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +40148,Ae1,EA034,Absent,EA034-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67, +40149,Ae10,EA034,Otiose,EA034-2,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +40150,Ae11,EA034,Otiose,EA034-2,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +40151,Ae12,EA034,Otiose,EA034-2,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +40152,Ae13,EA034,?,EA034-NA,,,,,, +40153,Ae14,EA034,Otiose,EA034-2,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +40154,Ae15,EA034,?,EA034-NA,,,,,, +40155,Ae16,EA034,?,EA034-NA,,,,,, +40156,Ae17,EA034,Otiose,EA034-2,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +40157,Ae18,EA034,Otiose,EA034-2,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +40158,Ae19,EA034,?,EA034-NA,,,,,, +40159,Ae2,EA034,Otiose,EA034-2,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +40160,Ae20,EA034,?,EA034-NA,,,,,, +40161,Ae21,EA034,?,EA034-NA,,,,,, +40162,Ae22,EA034,?,EA034-NA,,,,,, +40163,Ae23,EA034,?,EA034-NA,,,,,, +40164,Ae24,EA034,?,EA034-NA,,,,,, +40165,Ae25,EA034,?,EA034-NA,,,,,, +40166,Ae26,EA034,?,EA034-NA,,,,,, +40167,Ae27,EA034,?,EA034-NA,,,,,, +40168,Ae28,EA034,Otiose,EA034-2,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +40169,Ae29,EA034,?,EA034-NA,,,,,, +40170,Ae3,EA034,Otiose,EA034-2,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +40171,Ae30,EA034,?,EA034-NA,,,,,, +40172,Ae31,EA034,?,EA034-NA,,,,,, +40173,Ae32,EA034,?,EA034-NA,,,,,, +40174,Ae33,EA034,?,EA034-NA,,,,,, +40175,Ae34,EA034,?,EA034-NA,,,,,, +40176,Ae35,EA034,?,EA034-NA,,,,,, +40177,Ae36,EA034,?,EA034-NA,,,,,, +40178,Ae37,EA034,?,EA034-NA,,,,,, +40179,Ae38,EA034,?,EA034-NA,,,,,, +40180,Ae39,EA034,Absent,EA034-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +40181,Ae4,EA034,Otiose,EA034-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +40182,Ae40,EA034,?,EA034-NA,,,,,, +40183,Ae41,EA034,?,EA034-NA,,,,,, +40184,Ae42,EA034,?,EA034-NA,,,,,, +40185,Ae43,EA034,?,EA034-NA,,,,,, +40186,Ae44,EA034,?,EA034-NA,,,,,, +40187,Ae45,EA034,?,EA034-NA,,,,,, +40188,Ae46,EA034,?,EA034-NA,,,,,, +40189,Ae47,EA034,?,EA034-NA,,,,,, +40190,Ae48,EA034,?,EA034-NA,,,,,, +40191,Ae49,EA034,?,EA034-NA,,,,,, +40192,Ae5,EA034,?,EA034-NA,,,,,, +40193,Ae50,EA034,"Active, but not supporting morality",EA034-3,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p67, +40194,Ae51,EA034,Otiose,EA034-2,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p67, +40195,Ae52,EA034,?,EA034-NA,,,,,, +40196,Ae53,EA034,?,EA034-NA,,,,,, +40197,Ae54,EA034,?,EA034-NA,,,,,, +40198,Ae55,EA034,?,EA034-NA,,,,,, +40199,Ae56,EA034,"Active, but not supporting morality",EA034-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +40200,Ae57,EA034,?,EA034-NA,,,,,, +40201,Ae58,EA034,?,EA034-NA,,,,,, +40202,Ae59,EA034,?,EA034-NA,,,,,, +40203,Ae6,EA034,Otiose,EA034-2,,verhulpen1936,with special reference to the Bena Kalundwe,1930,Ethnology_Vol7_No2_Apr_1968, +40204,Ae7,EA034,Absent,EA034-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +40205,Ae8,EA034,Otiose,EA034-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +40206,Ae9,EA034,"Active, but not supporting morality",EA034-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +40207,Af1,EA034,Absent,EA034-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +40208,Af10,EA034,Otiose,EA034-2,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +40209,Af11,EA034,Otiose,EA034-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +40210,Af12,EA034,?,EA034-NA,,,,,, +40211,Af13,EA034,Otiose,EA034-2,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +40212,Af14,EA034,Otiose,EA034-2,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p71, +40213,Af15,EA034,Otiose,EA034-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +40214,Af16,EA034,?,EA034-NA,,,,,, +40215,Af17,EA034,?,EA034-NA,,,,,, +40216,Af18,EA034,?,EA034-NA,,,,,, +40217,Af19,EA034,Otiose,EA034-2,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +40218,Af2,EA034,?,EA034-NA,,,,,, +40219,Af20,EA034,Otiose,EA034-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +40220,Af21,EA034,?,EA034-NA,,,,,, +40221,Af22,EA034,Otiose,EA034-2,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p71, +40222,Af23,EA034,Absent,EA034-1,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +40223,Af24,EA034,Otiose,EA034-2,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +40224,Af25,EA034,Otiose,EA034-2,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +40225,Af26,EA034,?,EA034-NA,,,,,, +40226,Af27,EA034,?,EA034-NA,,,,,, +40227,Af28,EA034,"Active, but not supporting morality",EA034-3,,gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +40228,Af29,EA034,?,EA034-NA,,,,,, +40229,Af3,EA034,Otiose,EA034-2,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +40230,Af30,EA034,?,EA034-NA,,,,,, +40231,Af31,EA034,?,EA034-NA,,,,,, +40232,Af32,EA034,Otiose,EA034-2,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40233,Af33,EA034,Otiose,EA034-2,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40234,Af34,EA034,Otiose,EA034-2,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40235,Af35,EA034,?,EA034-NA,,,,,, +40236,Af36,EA034,Otiose,EA034-2,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p71, +40237,Af37,EA034,?,EA034-NA,,,,,, +40238,Af38,EA034,?,EA034-NA,,,,,, +40239,Af39,EA034,?,EA034-NA,,,,,, +40240,Af4,EA034,Absent,EA034-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +40241,Af40,EA034,?,EA034-NA,,,,,, +40242,Af41,EA034,?,EA034-NA,,,,,, +40243,Af42,EA034,Otiose,EA034-2,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p71, +40244,Af43,EA034,Absent,EA034-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p71, +40245,Af44,EA034,?,EA034-NA,,,,,, +40246,Af45,EA034,?,EA034-NA,,,,,, +40247,Af46,EA034,?,EA034-NA,,,,,, +40248,Af47,EA034,?,EA034-NA,,,,,, +40249,Af48,EA034,?,EA034-NA,,,,,, +40250,Af49,EA034,?,EA034-NA,,,,,, +40251,Af5,EA034,Otiose,EA034-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +40252,Af50,EA034,?,EA034-NA,,,,,, +40253,Af51,EA034,?,EA034-NA,,,,,, +40254,Af52,EA034,?,EA034-NA,,,,,, +40255,Af53,EA034,Otiose,EA034-2,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +40256,Af54,EA034,Otiose,EA034-2,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +40257,Af55,EA034,?,EA034-NA,,,,,, +40258,Af56,EA034,Otiose,EA034-2,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +40259,Af57,EA034,Otiose,EA034-2,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +40260,Af58,EA034,?,EA034-NA,,,,,, +40261,Af6,EA034,Otiose,EA034-2,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +40262,Af7,EA034,Absent,EA034-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +40263,Af8,EA034,"Active, supporting morality",EA034-4,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +40264,Af9,EA034,?,EA034-NA,,,,,, +40265,Ag1,EA034,Absent,EA034-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +40266,Ag10,EA034,Otiose,EA034-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +40267,Ag11,EA034,?,EA034-NA,,,,,, +40268,Ag12,EA034,Otiose,EA034-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +40269,Ag13,EA034,?,EA034-NA,,,,,, +40270,Ag14,EA034,?,EA034-NA,,,,,, +40271,Ag15,EA034,?,EA034-NA,,,,,, +40272,Ag16,EA034,?,EA034-NA,,,,,, +40273,Ag17,EA034,?,EA034-NA,,,,,, +40274,Ag18,EA034,?,EA034-NA,,,,,, +40275,Ag19,EA034,?,EA034-NA,,,,,, +40276,Ag2,EA034,Otiose,EA034-2,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +40277,Ag20,EA034,?,EA034-NA,,,,,, +40278,Ag21,EA034,Otiose,EA034-2,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +40279,Ag22,EA034,?,EA034-NA,,,,,, +40280,Ag23,EA034,?,EA034-NA,,,,,, +40281,Ag24,EA034,?,EA034-NA,,,,,, +40282,Ag25,EA034,"Active, supporting morality",EA034-4,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p71, +40283,Ag26,EA034,?,EA034-NA,,,,,, +40284,Ag27,EA034,"Active, supporting morality",EA034-4,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +40285,Ag28,EA034,"Active, supporting morality",EA034-4,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +40286,Ag29,EA034,?,EA034-NA,,,,,, +40287,Ag3,EA034,?,EA034-NA,,,,,, +40288,Ag30,EA034,?,EA034-NA,,,,,, +40289,Ag31,EA034,?,EA034-NA,,,,,, +40290,Ag32,EA034,?,EA034-NA,,,,,, +40291,Ag33,EA034,?,EA034-NA,,,,,, +40292,Ag34,EA034,?,EA034-NA,,,,,, +40293,Ag35,EA034,?,EA034-NA,,,,,, +40294,Ag36,EA034,?,EA034-NA,,,,,, +40295,Ag37,EA034,?,EA034-NA,,,,,, +40296,Ag38,EA034,?,EA034-NA,,,,,, +40297,Ag39,EA034,?,EA034-NA,,,,,, +40298,Ag4,EA034,Absent,EA034-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +40299,Ag40,EA034,?,EA034-NA,,,,,, +40300,Ag41,EA034,Otiose,EA034-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +40301,Ag42,EA034,?,EA034-NA,,,,,, +40302,Ag43,EA034,?,EA034-NA,,,,,, +40303,Ag44,EA034,?,EA034-NA,,,,,, +40304,Ag45,EA034,?,EA034-NA,,,,,, +40305,Ag46,EA034,?,EA034-NA,,,,,, +40306,Ag47,EA034,Otiose,EA034-2,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +40307,Ag48,EA034,?,EA034-NA,,,,,, +40308,Ag49,EA034,Otiose,EA034-2,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +40309,Ag5,EA034,Otiose,EA034-2,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +40310,Ag50,EA034,Otiose,EA034-2,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +40311,Ag51,EA034,?,EA034-NA,,,,,, +40312,Ag52,EA034,Otiose,EA034-2,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +40313,Ag53,EA034,Otiose,EA034-2,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +40314,Ag54,EA034,"Active, supporting morality",EA034-4,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +40315,Ag6,EA034,"Active, supporting morality",EA034-4,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +40316,Ag7,EA034,"Active, supporting morality",EA034-4,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +40317,Ag8,EA034,Otiose,EA034-2,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +40318,Ag9,EA034,?,EA034-NA,,,,,, +40319,Ah1,EA034,"Active, but not supporting morality",EA034-3,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40320,Ah10,EA034,"Active, but not supporting morality",EA034-3,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +40321,Ah11,EA034,Otiose,EA034-2,,gunnandconant1960,,1950,EthnographicAtlas_1967_p75, +40322,Ah12,EA034,?,EA034-NA,,,,,, +40323,Ah13,EA034,Otiose,EA034-2,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +40324,Ah14,EA034,Otiose,EA034-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +40325,Ah15,EA034,?,EA034-NA,,,,,, +40326,Ah16,EA034,?,EA034-NA,,,,,, +40327,Ah17,EA034,Absent,EA034-1,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +40328,Ah18,EA034,?,EA034-NA,,,,,, +40329,Ah19,EA034,Otiose,EA034-2,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p75, +40330,Ah2,EA034,?,EA034-NA,,,,,, +40331,Ah20,EA034,Otiose,EA034-2,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +40332,Ah21,EA034,?,EA034-NA,,,,,, +40333,Ah22,EA034,?,EA034-NA,,,,,, +40334,Ah23,EA034,?,EA034-NA,,,,,, +40335,Ah24,EA034,?,EA034-NA,,,,,, +40336,Ah25,EA034,?,EA034-NA,,,,,, +40337,Ah26,EA034,?,EA034-NA,,,,,, +40338,Ah27,EA034,?,EA034-NA,,,,,, +40339,Ah28,EA034,?,EA034-NA,,,,,, +40340,Ah29,EA034,?,EA034-NA,,,,,, +40341,Ah3,EA034,Absent,EA034-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +40342,Ah30,EA034,?,EA034-NA,,,,,, +40343,Ah31,EA034,?,EA034-NA,,,,,, +40344,Ah32,EA034,?,EA034-NA,,,,,, +40345,Ah33,EA034,?,EA034-NA,,,,,, +40346,Ah34,EA034,?,EA034-NA,,,,,, +40347,Ah35,EA034,?,EA034-NA,,,,,, +40348,Ah36,EA034,Otiose,EA034-2,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +40349,Ah37,EA034,?,EA034-NA,,,,,, +40350,Ah38,EA034,Otiose,EA034-2,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +40351,Ah39,EA034,Otiose,EA034-2,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +40352,Ah4,EA034,?,EA034-NA,,,,,, +40353,Ah5,EA034,?,EA034-NA,,,,,, +40354,Ah6,EA034,Otiose,EA034-2,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +40355,Ah7,EA034,Otiose,EA034-2,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +40356,Ah8,EA034,?,EA034-NA,,,,,, +40357,Ah9,EA034,"Active, but not supporting morality",EA034-3,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75, +40358,Ai1,EA034,Otiose,EA034-2,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p75, +40359,Ai10,EA034,?,EA034-NA,,,,,, +40360,Ai11,EA034,Otiose,EA034-2,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +40361,Ai12,EA034,Otiose,EA034-2,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +40362,Ai13,EA034,?,EA034-NA,,,,,, +40363,Ai14,EA034,Otiose,EA034-2,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +40364,Ai15,EA034,Otiose,EA034-2,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +40365,Ai16,EA034,Absent,EA034-1,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +40366,Ai17,EA034,Otiose,EA034-2,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +40367,Ai18,EA034,"Active, supporting morality",EA034-4,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +40368,Ai19,EA034,?,EA034-NA,,,,,, +40369,Ai2,EA034,?,EA034-NA,,,,,, +40370,Ai20,EA034,"Active, but not supporting morality",EA034-3,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +40371,Ai21,EA034,"Active, supporting morality",EA034-4,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +40372,Ai22,EA034,?,EA034-NA,,,,,, +40373,Ai23,EA034,Otiose,EA034-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +40374,Ai24,EA034,?,EA034-NA,,,,,, +40375,Ai25,EA034,Otiose,EA034-2,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +40376,Ai26,EA034,Otiose,EA034-2,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p75, +40377,Ai27,EA034,?,EA034-NA,,,,,, +40378,Ai28,EA034,Otiose,EA034-2,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +40379,Ai29,EA034,Otiose,EA034-2,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +40380,Ai3,EA034,"Active, but not supporting morality",EA034-3,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +40381,Ai30,EA034,Otiose,EA034-2,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +40382,Ai31,EA034,Otiose,EA034-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +40383,Ai32,EA034,Otiose,EA034-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +40384,Ai33,EA034,Otiose,EA034-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +40385,Ai34,EA034,?,EA034-NA,,,,,, +40386,Ai35,EA034,Otiose,EA034-2,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +40387,Ai36,EA034,?,EA034-NA,,,,,, +40388,Ai37,EA034,?,EA034-NA,,,,,, +40389,Ai38,EA034,?,EA034-NA,,,,,, +40390,Ai39,EA034,?,EA034-NA,,,,,, +40391,Ai4,EA034,?,EA034-NA,,,,,, +40392,Ai40,EA034,?,EA034-NA,,,,,, +40393,Ai41,EA034,?,EA034-NA,,,,,, +40394,Ai42,EA034,?,EA034-NA,,,,,, +40395,Ai43,EA034,?,EA034-NA,,,,,, +40396,Ai44,EA034,?,EA034-NA,,,,,, +40397,Ai45,EA034,?,EA034-NA,,,,,, +40398,Ai46,EA034,?,EA034-NA,,,,,, +40399,Ai47,EA034,Otiose,EA034-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +40400,Ai5,EA034,Otiose,EA034-2,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +40401,Ai6,EA034,Otiose,EA034-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +40402,Ai7,EA034,Otiose,EA034-2,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +40403,Ai8,EA034,?,EA034-NA,,,,,, +40404,Ai9,EA034,Otiose,EA034-2,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +40405,Aj1,EA034,Otiose,EA034-2,,lawrance1957,,1950,EthnographicAtlas_1967_p75, +40406,Aj10,EA034,Otiose,EA034-2,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +40407,Aj11,EA034,Otiose,EA034-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +40408,Aj12,EA034,"Active, but not supporting morality",EA034-3,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +40409,Aj13,EA034,Otiose,EA034-2,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +40410,Aj14,EA034,Otiose,EA034-2,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +40411,Aj15,EA034,Otiose,EA034-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +40412,Aj16,EA034,?,EA034-NA,,,,,, +40413,Aj17,EA034,Otiose,EA034-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +40414,Aj18,EA034,Otiose,EA034-2,,jensen1959,,1950,EthnographicAtlas_1967_p79, +40415,Aj19,EA034,?,EA034-NA,,,,,, +40416,Aj2,EA034,?,EA034-NA,,,,,, +40417,Aj20,EA034,Otiose,EA034-2,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p79, +40418,Aj21,EA034,"Active, but not supporting morality",EA034-3,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +40419,Aj22,EA034,?,EA034-NA,,,,,, +40420,Aj23,EA034,Otiose,EA034-2,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +40421,Aj24,EA034,Otiose,EA034-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +40422,Aj25,EA034,?,EA034-NA,,,,,, +40423,Aj26,EA034,Otiose,EA034-2,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p79, +40424,Aj27,EA034,?,EA034-NA,,,,,, +40425,Aj28,EA034,?,EA034-NA,,,,,, +40426,Aj29,EA034,?,EA034-NA,,,,,, +40427,Aj3,EA034,"Active, supporting morality",EA034-4,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +40428,Aj30,EA034,?,EA034-NA,,,,,, +40429,Aj31,EA034,?,EA034-NA,,,,,, +40430,Aj4,EA034,"Active, but not supporting morality",EA034-3,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +40431,Aj5,EA034,"Active, but not supporting morality",EA034-3,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +40432,Aj6,EA034,Otiose,EA034-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +40433,Aj7,EA034,Otiose,EA034-2,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +40434,Aj8,EA034,Otiose,EA034-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +40435,Aj9,EA034,Otiose,EA034-2,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +40436,Ca1,EA034,Otiose,EA034-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +40437,Ca10,EA034,"Active, supporting morality",EA034-4,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +40438,Ca11,EA034,Otiose,EA034-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p79, +40439,Ca12,EA034,"Active, supporting morality",EA034-4,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p79, +40440,Ca13,EA034,?,EA034-NA,,,,,, +40441,Ca14,EA034,Otiose,EA034-2,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p79, +40442,Ca15,EA034,?,EA034-NA,,,,,, +40443,Ca16,EA034,Otiose,EA034-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +40444,Ca17,EA034,?,EA034-NA,,,,,, +40445,Ca18,EA034,Otiose,EA034-2,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +40446,Ca19,EA034,Otiose,EA034-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +40447,Ca2,EA034,"Active, supporting morality",EA034-4,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +40448,Ca20,EA034,Otiose,EA034-2,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +40449,Ca21,EA034,Otiose,EA034-2,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +40450,Ca22,EA034,Otiose,EA034-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +40451,Ca23,EA034,Otiose,EA034-2,,jensen1959,,1950,EthnographicAtlas_1967_p79, +40452,Ca24,EA034,Otiose,EA034-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +40453,Ca25,EA034,Absent,EA034-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +40454,Ca26,EA034,Absent,EA034-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +40455,Ca27,EA034,Otiose,EA034-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +40456,Ca28,EA034,Otiose,EA034-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p79, +40457,Ca29,EA034,"Active, but not supporting morality",EA034-3,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p79, +40458,Ca3,EA034,"Active, supporting morality",EA034-4,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +40459,Ca30,EA034,Otiose,EA034-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p79, +40460,Ca31,EA034,"Active, supporting morality",EA034-4,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +40461,Ca32,EA034,?,EA034-NA,,,,,, +40462,Ca33,EA034,?,EA034-NA,,,,,, +40463,Ca34,EA034,"Active, supporting morality",EA034-4,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +40464,Ca35,EA034,"Active, supporting morality",EA034-4,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +40465,Ca36,EA034,"Active, supporting morality",EA034-4,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +40466,Ca37,EA034,"Active, supporting morality",EA034-4,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +40467,Ca38,EA034,"Active, supporting morality",EA034-4,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +40468,Ca39,EA034,"Active, supporting morality",EA034-4,,lewis1965b,,1930,EthnographicAtlas_1967_p79, +40469,Ca4,EA034,?,EA034-NA,,,,,, +40470,Ca40,EA034,Otiose,EA034-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +40471,Ca41,EA034,?,EA034-NA,,,,,, +40472,Ca42,EA034,Otiose,EA034-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +40473,Ca43,EA034,?,EA034-NA,,,,,, +40474,Ca5,EA034,"Active, supporting morality",EA034-4,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p79, +40475,Ca6,EA034,"Active, supporting morality",EA034-4,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +40476,Ca7,EA034,"Active, supporting morality",EA034-4,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +40477,Ca8,EA034,Otiose,EA034-2,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p79, +40478,Ca9,EA034,Absent,EA034-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +40479,Cb1,EA034,?,EA034-NA,,,,,, +40480,Cb10,EA034,?,EA034-NA,,,,,, +40481,Cb11,EA034,"Active, supporting morality",EA034-4,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +40482,Cb12,EA034,"Active, supporting morality",EA034-4,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +40483,Cb13,EA034,"Active, supporting morality",EA034-4,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +40484,Cb14,EA034,"Active, supporting morality",EA034-4,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +40485,Cb15,EA034,"Active, supporting morality",EA034-4,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +40486,Cb16,EA034,"Active, supporting morality",EA034-4,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +40487,Cb17,EA034,"Active, supporting morality",EA034-4,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +40488,Cb18,EA034,"Active, supporting morality",EA034-4,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p79, +40489,Cb19,EA034,"Active, supporting morality",EA034-4,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +40490,Cb2,EA034,"Active, supporting morality",EA034-4,"Under Islam, but formerly 'absent' (code ""1"")",ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +40491,Cb20,EA034,"Active, supporting morality",EA034-4,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +40492,Cb21,EA034,?,EA034-NA,,,,,, +40493,Cb22,EA034,?,EA034-NA,,,,,, +40494,Cb23,EA034,"Active, supporting morality",EA034-4,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p83, +40495,Cb24,EA034,"Active, supporting morality",EA034-4,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +40496,Cb25,EA034,"Active, supporting morality",EA034-4,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +40497,Cb26,EA034,"Active, supporting morality",EA034-4,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +40498,Cb27,EA034,?,EA034-NA,,,,,, +40499,Cb28,EA034,?,EA034-NA,,,,,, +40500,Cb29,EA034,?,EA034-NA,,,,,, +40501,Cb3,EA034,"Active, supporting morality",EA034-4,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +40502,Cb4,EA034,"Active, supporting morality",EA034-4,,reid1930,,1920,EthnographicAtlas_1967_p79, +40503,Cb5,EA034,?,EA034-NA,,,,,, +40504,Cb6,EA034,?,EA034-NA,,,,,, +40505,Cb7,EA034,"Active, supporting morality",EA034-4,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +40506,Cb8,EA034,?,EA034-NA,,,,,, +40507,Cb9,EA034,"Active, supporting morality",EA034-4,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +40508,Cc1,EA034,"Active, supporting morality",EA034-4,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +40509,Cc10,EA034,"Active, supporting morality",EA034-4,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +40510,Cc11,EA034,"Active, supporting morality",EA034-4,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +40511,Cc12,EA034,"Active, supporting morality",EA034-4,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +40512,Cc13,EA034,"Active, supporting morality",EA034-4,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +40513,Cc14,EA034,"Active, supporting morality",EA034-4,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +40514,Cc15,EA034,?,EA034-NA,,,,,, +40515,Cc16,EA034,"Active, supporting morality",EA034-4,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +40516,Cc17,EA034,"Active, supporting morality",EA034-4,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p83, +40517,Cc18,EA034,"Active, supporting morality",EA034-4,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +40518,Cc19,EA034,"Active, supporting morality",EA034-4,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +40519,Cc2,EA034,"Active, supporting morality",EA034-4,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +40520,Cc20,EA034,"Active, supporting morality",EA034-4,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p83, +40521,Cc3,EA034,"Active, supporting morality",EA034-4,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +40522,Cc4,EA034,"Active, supporting morality",EA034-4,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +40523,Cc5,EA034,"Active, supporting morality",EA034-4,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p83, +40524,Cc6,EA034,"Active, supporting morality",EA034-4,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +40525,Cc7,EA034,"Active, supporting morality",EA034-4,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40526,Cc8,EA034,?,EA034-NA,,,,,, +40527,Cc9,EA034,"Active, supporting morality",EA034-4,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +40528,Cd1,EA034,"Active, supporting morality",EA034-4,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +40529,Cd10,EA034,"Active, supporting morality",EA034-4,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +40530,Cd11,EA034,?,EA034-NA,,,,,, +40531,Cd12,EA034,"Active, supporting morality",EA034-4,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +40532,Cd13,EA034,"Active, supporting morality",EA034-4,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +40533,Cd14,EA034,"Active, supporting morality",EA034-4,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +40534,Cd15,EA034,"Active, supporting morality",EA034-4,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +40535,Cd16,EA034,"Active, supporting morality",EA034-4,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +40536,Cd17,EA034,"Active, supporting morality",EA034-4,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +40537,Cd18,EA034,"Active, supporting morality",EA034-4,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +40538,Cd19,EA034,"Active, supporting morality",EA034-4,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +40539,Cd2,EA034,"Active, supporting morality",EA034-4,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +40540,Cd20,EA034,"Active, supporting morality",EA034-4,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +40541,Cd21,EA034,"Active, supporting morality",EA034-4,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +40542,Cd3,EA034,"Active, supporting morality",EA034-4,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +40543,Cd4,EA034,"Active, supporting morality",EA034-4,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +40544,Cd5,EA034,"Active, supporting morality",EA034-4,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +40545,Cd6,EA034,Absent,EA034-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +40546,Cd7,EA034,"Active, supporting morality",EA034-4,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +40547,Cd8,EA034,"Active, supporting morality",EA034-4,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +40548,Cd9,EA034,"Active, supporting morality",EA034-4,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +40549,Ce1,EA034,"Active, supporting morality",EA034-4,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +40550,Ce2,EA034,?,EA034-NA,,,,,, +40551,Ce3,EA034,Absent,EA034-1,Variable beliefs at this period,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +40552,Ce4,EA034,"Active, supporting morality",EA034-4,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40553,Ce5,EA034,"Active, supporting morality",EA034-4,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +40554,Ce6,EA034,"Active, supporting morality",EA034-4,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +40555,Ce7,EA034,"Active, supporting morality",EA034-4,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +40556,Ce8,EA034,"Active, supporting morality",EA034-4,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +40557,Cf1,EA034,"Active, supporting morality",EA034-4,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +40558,Cf2,EA034,?,EA034-NA,,,,,, +40559,Cf3,EA034,"Active, supporting morality",EA034-4,,munch1945,,1930,EthnographicAtlas_1967_p83, +40560,Cf4,EA034,"Active, supporting morality",EA034-4,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +40561,Cf5,EA034,"Active, supporting morality",EA034-4,,miner1939,,1930,EthnographicAtlas_1967_p83, +40562,Cg1,EA034,"Active, supporting morality",EA034-4,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +40563,Cg2,EA034,"Active, supporting morality",EA034-4,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +40564,Cg3,EA034,"Active, supporting morality",EA034-4,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +40565,Cg4,EA034,"Active, supporting morality",EA034-4,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +40566,Cg5,EA034,"Active, supporting morality",EA034-4,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +40567,Ch1,EA034,"Active, supporting morality",EA034-4,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +40568,Ch10,EA034,?,EA034-NA,,,,,, +40569,Ch11,EA034,"Active, supporting morality",EA034-4,But officially disapproved,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +40570,Ch2,EA034,"Active, supporting morality",EA034-4,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +40571,Ch3,EA034,"Active, supporting morality",EA034-4,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +40572,Ch4,EA034,"Active, supporting morality",EA034-4,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p83, +40573,Ch5,EA034,"Active, supporting morality",EA034-4,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +40574,Ch6,EA034,"Active, supporting morality",EA034-4,,ember1954,,1910,EthnographicAtlas_1967_p83, +40575,Ch7,EA034,"Active, supporting morality",EA034-4,,friedrich1954,,1930,EthnographicAtlas_1967_p83, +40576,Ch8,EA034,"Active, supporting morality",EA034-4,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +40577,Ch9,EA034,"Active, supporting morality",EA034-4,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +40578,Ci1,EA034,?,EA034-NA,,,,,, +40579,Ci10,EA034,"Active, supporting morality",EA034-4,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +40580,Ci11,EA034,"Active, supporting morality",EA034-4,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +40581,Ci12,EA034,"Active, supporting morality",EA034-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +40582,Ci2,EA034,?,EA034-NA,,,,,, +40583,Ci3,EA034,"Active, supporting morality",EA034-4,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p83, +40584,Ci4,EA034,"Active, supporting morality",EA034-4,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +40585,Ci5,EA034,"Active, supporting morality",EA034-4,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +40586,Ci6,EA034,"Active, supporting morality",EA034-4,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p83, +40587,Ci7,EA034,"Active, supporting morality",EA034-4,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p83, +40588,Ci8,EA034,"Active, supporting morality",EA034-4,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +40589,Ci9,EA034,"Active, supporting morality",EA034-4,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +40590,Cj1,EA034,"Active, supporting morality",EA034-4,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +40591,Cj10,EA034,"Active, supporting morality",EA034-4,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +40592,Cj2,EA034,"Active, supporting morality",EA034-4,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +40593,Cj3,EA034,"Active, supporting morality",EA034-4,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +40594,Cj4,EA034,Absent,EA034-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +40595,Cj5,EA034,"Active, supporting morality",EA034-4,,dickson1949,,1930,EthnographicAtlas_1967_p87, +40596,Cj6,EA034,"Active, supporting morality",EA034-4,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +40597,Cj7,EA034,"Active, supporting morality",EA034-4,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p87, +40598,Cj8,EA034,"Active, supporting morality",EA034-4,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +40599,Cj9,EA034,"Active, supporting morality",EA034-4,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +40600,Ea1,EA034,"Active, supporting morality",EA034-4,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +40601,Ea10,EA034,"Active, supporting morality",EA034-4,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +40602,Ea11,EA034,"Active, supporting morality",EA034-4,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +40603,Ea12,EA034,"Active, supporting morality",EA034-4,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +40604,Ea13,EA034,"Active, supporting morality",EA034-4,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +40605,Ea2,EA034,"Active, supporting morality",EA034-4,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +40606,Ea3,EA034,"Active, supporting morality",EA034-4,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +40607,Ea4,EA034,"Active, supporting morality",EA034-4,,barth1956b,,1950,EthnographicAtlas_1967_p87, +40608,Ea5,EA034,?,EA034-NA,Forcibly converted to Islam in 1896,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +40609,Ea6,EA034,"Active, supporting morality",EA034-4,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +40610,Ea7,EA034,"Active, supporting morality",EA034-4,,schurmann1962,,1950,EthnographicAtlas_1967_p87, +40611,Ea8,EA034,"Active, supporting morality",EA034-4,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p87, +40612,Ea9,EA034,"Active, supporting morality",EA034-4,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +40613,Eb1,EA034,"Active, supporting morality",EA034-4,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +40614,Eb2,EA034,?,EA034-NA,,,,,, +40615,Eb3,EA034,?,EA034-NA,,,,,, +40616,Eb4,EA034,?,EA034-NA,,,,,, +40617,Eb5,EA034,"Active, supporting morality",EA034-4,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No2_Apr_1963, +40618,Eb6,EA034,?,EA034-NA,,,,,, +40619,Eb7,EA034,Absent,EA034-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +40620,Eb8,EA034,?,EA034-NA,,,,,, +40621,Ec1,EA034,Otiose,EA034-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +40622,Ec10,EA034,"Active, supporting morality",EA034-4,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +40623,Ec11,EA034,?,EA034-NA,,,,,, +40624,Ec2,EA034,"Active, but not supporting morality",EA034-3,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40625,Ec3,EA034,"Active, but not supporting morality",EA034-3,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +40626,Ec4,EA034,"Active, but not supporting morality",EA034-3,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +40627,Ec5,EA034,"Active, but not supporting morality",EA034-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +40628,Ec6,EA034,?,EA034-NA,,,,,, +40629,Ec7,EA034,Absent,EA034-1,Subsequent observers have contradicted Batchelor's report of a belief in a high god,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +40630,Ec8,EA034,?,EA034-NA,,,,,, +40631,Ec9,EA034,?,EA034-NA,,,,,, +40632,Ed1,EA034,Absent,EA034-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +40633,Ed10,EA034,?,EA034-NA,,,,,, +40634,Ed13,EA034,?,EA034-NA,,,,,, +40635,Ed14,EA034,?,EA034-NA,,,,,, +40636,Ed15a,EA034,?,EA034-NA,,,,,, +40637,Ed15b,EA034,Absent,EA034-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +40638,Ed16,EA034,?,EA034-NA,,,,,, +40639,Ed2,EA034,Absent,EA034-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +40640,Ed3,EA034,?,EA034-NA,,,,,, +40641,Ed4,EA034,?,EA034-NA,,,,,, +40642,Ed5,EA034,Otiose,EA034-2,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40643,Ed6,EA034,?,EA034-NA,,,,,, +40644,Ed7,EA034,Absent,EA034-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +40645,Ed8,EA034,Absent,EA034-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +40646,Ed9,EA034,Absent,EA034-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +40647,Ee1,EA034,Absent,EA034-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +40648,Ee2,EA034,"Active, supporting morality",EA034-4,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +40649,Ee3,EA034,"Active, but not supporting morality",EA034-3,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +40650,Ee4,EA034,Absent,EA034-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +40651,Ee5,EA034,Absent,EA034-1,"But 'active, supporting morality' (code ""4"") for Muslim Dards",biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +40652,Ee6,EA034,Absent,EA034-1,The belief system is that of Lama Buddhism,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +40653,Ee7,EA034,?,EA034-NA,,,,,, +40654,Ee8,EA034,Absent,EA034-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +40655,Ef1,EA034,Otiose,EA034-2,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +40656,Ef10,EA034,?,EA034-NA,,,,,, +40657,Ef11,EA034,Otiose,EA034-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +40658,Ef2,EA034,Absent,EA034-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +40659,Ef3,EA034,?,EA034-NA,,,,,, +40660,Ef4,EA034,?,EA034-NA,,,,,, +40661,Ef5,EA034,"Active, but not supporting morality",EA034-3,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +40662,Ef6,EA034,?,EA034-NA,,,,,, +40663,Ef7,EA034,Absent,EA034-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +40664,Ef8,EA034,"Active, supporting morality",EA034-4,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +40665,Ef9,EA034,Absent,EA034-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40666,Eg1,EA034,Absent,EA034-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40667,Eg10,EA034,Absent,EA034-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +40668,Eg11,EA034,?,EA034-NA,,,,,, +40669,Eg12,EA034,?,EA034-NA,,,,,, +40670,Eg13,EA034,Otiose,EA034-2,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40671,Eg14,EA034,Absent,EA034-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +40672,Eg2,EA034,?,EA034-NA,,,,,, +40673,Eg3,EA034,"Active, but not supporting morality",EA034-3,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +40674,Eg4,EA034,Absent,EA034-1,"There is, however, a female supreme deity whose younger brother created men and buffaloes",emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +40675,Eg5,EA034,Absent,EA034-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +40676,Eg6,EA034,?,EA034-NA,,,,,, +40677,Eg7,EA034,Otiose,EA034-2,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +40678,Eg8,EA034,?,EA034-NA,,,,,, +40679,Eg9,EA034,?,EA034-NA,,,,,, +40680,Eh1,EA034,Absent,EA034-1,"Entry follows Radcliffe-Brown, who could find no confirmation of Man's report of a supreme being",man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +40681,Eh10,EA034,?,EA034-NA,,,,,, +40682,Eh2,EA034,?,EA034-NA,,,,,, +40683,Eh3,EA034,Otiose,EA034-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +40684,Eh4,EA034,Absent,EA034-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40685,Eh5,EA034,?,EA034-NA,,,,,, +40686,Eh6,EA034,?,EA034-NA,,,,,, +40687,Eh7,EA034,Otiose,EA034-2,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +40688,Eh8,EA034,Otiose,EA034-2,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91, +40689,Eh9,EA034,?,EA034-NA,,,,,, +40690,Ei1,EA034,Otiose,EA034-2,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40691,Ei10,EA034,?,EA034-NA,,,,,, +40692,Ei11,EA034,Otiose,EA034-2,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +40693,Ei12,EA034,Otiose,EA034-2,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +40694,Ei13,EA034,Absent,EA034-1,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +40695,Ei14,EA034,"Active, but not supporting morality",EA034-3,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +40696,Ei15,EA034,?,EA034-NA,,,,,, +40697,Ei16,EA034,Otiose,EA034-2,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +40698,Ei17,EA034,?,EA034-NA,,,,,, +40699,Ei18,EA034,Absent,EA034-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +40700,Ei19,EA034,Absent,EA034-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +40701,Ei2,EA034,Absent,EA034-1,,mills1922,,1920,EthnographicAtlas_1967_p91, +40702,Ei20,EA034,?,EA034-NA,,,,,, +40703,Ei3,EA034,Absent,EA034-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +40704,Ei4,EA034,"Active, supporting morality",EA034-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +40705,Ei5,EA034,"Active, but not supporting morality",EA034-3,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +40706,Ei6,EA034,Absent,EA034-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +40707,Ei7,EA034,Otiose,EA034-2,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +40708,Ei8,EA034,Otiose,EA034-2,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +40709,Ei9,EA034,?,EA034-NA,,,,,, +40710,Ej1,EA034,Absent,EA034-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +40711,Ej10,EA034,Absent,EA034-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +40712,Ej11,EA034,Absent,EA034-1,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +40713,Ej12,EA034,Absent,EA034-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +40714,Ej13,EA034,Absent,EA034-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +40715,Ej14,EA034,Absent,EA034-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40716,Ej15,EA034,Otiose,EA034-2,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +40717,Ej16,EA034,"Active, supporting morality",EA034-4,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +40718,Ej2,EA034,Absent,EA034-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +40719,Ej3,EA034,"Active, but not supporting morality",EA034-3,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +40720,Ej4,EA034,Absent,EA034-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +40721,Ej5,EA034,Absent,EA034-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +40722,Ej6,EA034,?,EA034-NA,,,,,, +40723,Ej7,EA034,Absent,EA034-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +40724,Ej8,EA034,"Active, supporting morality",EA034-4,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +40725,Ej9,EA034,Otiose,EA034-2,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +40726,Ia1,EA034,Absent,EA034-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +40727,Ia10,EA034,Otiose,EA034-2,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p91, +40728,Ia11,EA034,?,EA034-NA,,,,,, +40729,Ia12,EA034,"Active, supporting morality",EA034-4,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +40730,Ia13,EA034,?,EA034-NA,,,,,, +40731,Ia14,EA034,?,EA034-NA,,,,,, +40732,Ia15,EA034,?,EA034-NA,,,,,, +40733,Ia16,EA034,Otiose,EA034-2,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +40734,Ia17,EA034,?,EA034-NA,,,,,, +40735,Ia18,EA034,?,EA034-NA,,,,,, +40736,Ia2,EA034,Absent,EA034-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +40737,Ia3,EA034,Absent,EA034-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +40738,Ia4,EA034,Absent,EA034-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +40739,Ia5,EA034,?,EA034-NA,,,,,, +40740,Ia6,EA034,Absent,EA034-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40741,Ia7,EA034,?,EA034-NA,,,,,, +40742,Ia8,EA034,?,EA034-NA,,,,,, +40743,Ia9,EA034,Absent,EA034-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +40744,Ib1,EA034,Absent,EA034-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40745,Ib2,EA034,Absent,EA034-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40746,Ib3,EA034,Absent,EA034-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +40747,Ib4,EA034,"Active, supporting morality",EA034-4,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p95, +40748,Ib5,EA034,Otiose,EA034-2,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +40749,Ib6,EA034,"Active, supporting morality",EA034-4,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +40750,Ib7,EA034,?,EA034-NA,,,,,, +40751,Ib8,EA034,?,EA034-NA,,,,,, +40752,Ib9,EA034,?,EA034-NA,,,,,, +40753,Ic1,EA034,"Active, supporting morality",EA034-4,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40754,Ic10,EA034,?,EA034-NA,,,,,, +40755,Ic11,EA034,"Active, supporting morality",EA034-4,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40756,Ic12,EA034,"Active, supporting morality",EA034-4,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +40757,Ic13,EA034,?,EA034-NA,,,,,, +40758,Ic2,EA034,Otiose,EA034-2,But Nicolspeyer denies a belief in a supreme being,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +40759,Ic3,EA034,?,EA034-NA,,,,,, +40760,Ic4,EA034,?,EA034-NA,,,,,, +40761,Ic5,EA034,?,EA034-NA,,,,,, +40762,Ic6,EA034,?,EA034-NA,,,,,, +40763,Ic7,EA034,?,EA034-NA,,,,,, +40764,Ic8,EA034,?,EA034-NA,,,,,, +40765,Ic9,EA034,?,EA034-NA,,,,,, +40766,Id1,EA034,Absent,EA034-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +40767,Id10,EA034,Absent,EA034-1,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +40768,Id11,EA034,Absent,EA034-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +40769,Id12,EA034,Absent,EA034-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +40770,Id13,EA034,Absent,EA034-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +40771,Id2,EA034,Absent,EA034-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +40772,Id3,EA034,Otiose,EA034-2,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +40773,Id4,EA034,Absent,EA034-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +40774,Id5,EA034,?,EA034-NA,,,,,, +40775,Id6,EA034,?,EA034-NA,,,,,, +40776,Id7,EA034,Absent,EA034-1,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +40777,Id8,EA034,Absent,EA034-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +40778,Id9,EA034,?,EA034-NA,,,,,, +40779,Ie1,EA034,Otiose,EA034-2,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40780,Ie10,EA034,Absent,EA034-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +40781,Ie11,EA034,Otiose,EA034-2,,bowers1964,,1950,EthnographicAtlas_1967_p95, +40782,Ie12,EA034,Absent,EA034-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40783,Ie13,EA034,?,EA034-NA,,,,,, +40784,Ie14,EA034,?,EA034-NA,,,,,, +40785,Ie15,EA034,Absent,EA034-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40786,Ie16,EA034,?,EA034-NA,,,,,, +40787,Ie17,EA034,Absent,EA034-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +40788,Ie18,EA034,?,EA034-NA,,,,,, +40789,Ie19,EA034,Absent,EA034-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +40790,Ie2,EA034,Absent,EA034-1,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +40791,Ie20,EA034,Absent,EA034-1,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +40792,Ie21,EA034,?,EA034-NA,,,,,, +40793,Ie22,EA034,?,EA034-NA,,,,,, +40794,Ie23,EA034,Absent,EA034-1,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +40795,Ie24,EA034,?,EA034-NA,,,,,, +40796,Ie25,EA034,Absent,EA034-1,,williamson1912,,1920,EthnographicAtlas_1967_p95, +40797,Ie26,EA034,?,EA034-NA,,,,,, +40798,Ie27,EA034,?,EA034-NA,,,,,, +40799,Ie28,EA034,Absent,EA034-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +40800,Ie29,EA034,Absent,EA034-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40801,Ie3,EA034,Absent,EA034-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40802,Ie30,EA034,?,EA034-NA,,,,,, +40803,Ie31,EA034,Otiose,EA034-2,A mythical creator pair,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +40804,Ie32,EA034,?,EA034-NA,,,,,, +40805,Ie33,EA034,Otiose,EA034-2,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +40806,Ie34,EA034,?,EA034-NA,,,,,, +40807,Ie35,EA034,?,EA034-NA,,,,,, +40808,Ie36,EA034,?,EA034-NA,,,,,, +40809,Ie37,EA034,?,EA034-NA,,,,,, +40810,Ie38,EA034,Absent,EA034-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +40811,Ie39,EA034,Absent,EA034-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +40812,Ie4,EA034,Absent,EA034-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40813,Ie5,EA034,Absent,EA034-1,,williams1936,,1930,EthnographicAtlas_1967_p95, +40814,Ie6,EA034,?,EA034-NA,,,,,, +40815,Ie7,EA034,Absent,EA034-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +40816,Ie8,EA034,?,EA034-NA,,,,,, +40817,Ie9,EA034,Absent,EA034-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +40818,If1,EA034,Absent,EA034-1,But Christian beliefs are widely accepted today,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40819,If10,EA034,?,EA034-NA,,,,,, +40820,If11,EA034,Otiose,EA034-2,"But 'active high god, supporting morality' (code ""4"") since the acceptance of Christianity",sarfert1919,,1860,EthnographicAtlas_1967_p99, +40821,If12,EA034,?,EA034-NA,,,,,, +40822,If13,EA034,?,EA034-NA,,,,,, +40823,If14,EA034,Otiose,EA034-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +40824,If15,EA034,?,EA034-NA,,,,,, +40825,If16,EA034,Absent,EA034-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +40826,If17,EA034,Absent,EA034-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +40827,If2,EA034,Absent,EA034-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +40828,If3,EA034,Absent,EA034-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +40829,If4,EA034,Absent,EA034-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +40830,If5,EA034,Absent,EA034-1,But largely nominal Christians today,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +40831,If6,EA034,?,EA034-NA,,,,,, +40832,If7,EA034,?,EA034-NA,,,,,, +40833,If8,EA034,"Active, supporting morality",EA034-4,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +40834,If9,EA034,?,EA034-NA,,,,,, +40835,Ig1,EA034,Absent,EA034-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +40836,Ig10,EA034,Absent,EA034-1,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +40837,Ig11,EA034,Otiose,EA034-2,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +40838,Ig12,EA034,Absent,EA034-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p99, +40839,Ig13,EA034,?,EA034-NA,,,,,, +40840,Ig14,EA034,Absent,EA034-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +40841,Ig15,EA034,?,EA034-NA,,,,,, +40842,Ig16,EA034,?,EA034-NA,,,,,, +40843,Ig17,EA034,?,EA034-NA,,,,,, +40844,Ig18,EA034,?,EA034-NA,,,,,, +40845,Ig19,EA034,?,EA034-NA,,,,,, +40846,Ig2,EA034,Absent,EA034-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +40847,Ig20,EA034,Absent,EA034-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +40848,Ig21,EA034,?,EA034-NA,,,,,, +40849,Ig3,EA034,Absent,EA034-1,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +40850,Ig4,EA034,Absent,EA034-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +40851,Ig5,EA034,?,EA034-NA,,,,,, +40852,Ig6,EA034,Absent,EA034-1,,ivens1927,,1900,EthnographicAtlas_1967_p99, +40853,Ig7,EA034,?,EA034-NA,,,,,, +40854,Ig8,EA034,?,EA034-NA,,,,,, +40855,Ig9,EA034,Absent,EA034-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +40856,Ih1,EA034,Absent,EA034-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +40857,Ih10,EA034,?,EA034-NA,,,,,, +40858,Ih11,EA034,?,EA034-NA,,,,,, +40859,Ih12,EA034,?,EA034-NA,,,,,, +40860,Ih13,EA034,?,EA034-NA,,,,,, +40861,Ih14,EA034,Absent,EA034-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +40862,Ih2,EA034,?,EA034-NA,,,,,, +40863,Ih3,EA034,Absent,EA034-1,"Entry follows the Lanes, who were unable to confirm Father Tattevin's report of a high god",lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +40864,Ih4,EA034,Absent,EA034-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40865,Ih5,EA034,?,EA034-NA,,,,,, +40866,Ih6,EA034,?,EA034-NA,,,,,, +40867,Ih7,EA034,?,EA034-NA,,,,,, +40868,Ih8,EA034,Absent,EA034-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +40869,Ih9,EA034,?,EA034-NA,,,,,, +40870,Ii1,EA034,Otiose,EA034-2,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +40871,Ii10,EA034,?,EA034-NA,,,,,, +40872,Ii12,EA034,Absent,EA034-1,"But aboriginally 'absent' (code ""1"")",beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40873,Ii13,EA034,Absent,EA034-1,"But 'active, supporting morality' (code ""4"") today",burrows1937,,1830,EthnographicAtlas_1967_p99, +40874,Ii14,EA034,Absent,EA034-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +40875,Ii2,EA034,Absent,EA034-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +40876,Ii3,EA034,Otiose,EA034-2,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +40877,Ii4,EA034,?,EA034-NA,,,,,, +40878,Ii5,EA034,Absent,EA034-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p99, +40879,Ii6,EA034,?,EA034-NA,,,,,, +40880,Ii7,EA034,Absent,EA034-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +40881,Ii8,EA034,Absent,EA034-1,"But 'active, supporting morality' (code ""4"") today",burrows1936,,1840,EthnographicAtlas_1967_p99, +40882,Ii9,EA034,Absent,EA034-1,"But 'active, supporting morality' (code ""4"") today",loeb1926a,,1840,EthnographicAtlas_1967_p99, +40883,Ij1,EA034,Absent,EA034-1,,buck1934,,1820,EthnographicAtlas_1967_p99, +40884,Ij10,EA034,?,EA034-NA,,,,,, +40885,Ij2,EA034,Absent,EA034-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +40886,Ij3,EA034,Absent,EA034-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +40887,Ij4,EA034,Absent,EA034-1,,buck1932a,,1850,EthnographicAtlas_1967_p103, +40888,Ij5,EA034,?,EA034-NA,,,,,, +40889,Ij6,EA034,Absent,EA034-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p103, +40890,Ij7,EA034,Absent,EA034-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +40891,Ij8,EA034,Absent,EA034-1,"But 'active, supporting morality' (code ""4"") since adoption of Christianity",ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p103, +40892,Ij9,EA034,Absent,EA034-1,,metraux1940,,1860,EthnographicAtlas_1967_p103, +40893,Na1,EA034,Absent,EA034-1,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +40894,Na10,EA034,Absent,EA034-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +40895,Na11,EA034,?,EA034-NA,,,,,, +40896,Na12,EA034,Absent,EA034-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +40897,Na13,EA034,"Active, but not supporting morality",EA034-3,"""Sedna...the mother of the sea-mammals...the principal deity...She has supreme sway over the destinies of mankind...""",boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +40898,Na14,EA034,Absent,EA034-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +40899,Na15,EA034,?,EA034-NA,,,,,, +40900,Na16,EA034,Otiose,EA034-2,,osgood1931,,1860,EthnographicAtlas_1967_p103, +40901,Na17,EA034,Otiose,EA034-2,"Honigmann is uncertain whether ""the concept of a Supreme Being is actually aboriginal",helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40902,Na19,EA034,"Active, but not supporting morality",EA034-3,"Jenness reports that the concept of a ""Superior Being"" antedates the introduction of Christianity",jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +40903,Na2,EA034,Absent,EA034-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +40904,Na20,EA034,Absent,EA034-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +40905,Na21,EA034,Absent,EA034-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +40906,Na22,EA034,Absent,EA034-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +40907,Na23,EA034,?,EA034-NA,,,,,, +40908,Na24,EA034,Absent,EA034-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +40909,Na25,EA034,"Active, supporting morality",EA034-4,"Formerly 'absent' (code ""1"")",birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +40910,Na26,EA034,Absent,EA034-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +40911,Na27,EA034,Otiose,EA034-2,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +40912,Na28,EA034,"Active, supporting morality",EA034-4,Belief in a high god antedates the introduction of Christianity in 1830,jenness1937,,1880,EthnographicAtlas_1967_p103, +40913,Na29,EA034,Absent,EA034-1,,goddard1916,,1850,EthnographicAtlas_1967_p103, +40914,Na3,EA034,Absent,EA034-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +40915,Na30,EA034,Absent,EA034-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +40916,Na31,EA034,Absent,EA034-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +40917,Na32,EA034,Absent,EA034-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +40918,Na33,EA034,Absent,EA034-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +40919,Na34,EA034,?,EA034-NA,,,,,, +40920,Na35,EA034,Otiose,EA034-2,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +40921,Na36,EA034,Absent,EA034-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +40922,Na37,EA034,Absent,EA034-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +40923,Na38,EA034,Otiose,EA034-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +40924,Na39,EA034,Absent,EA034-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +40925,Na4,EA034,Absent,EA034-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +40926,Na40,EA034,Otiose,EA034-2,But some sources deny a belief in a high god,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +40927,Na41,EA034,Otiose,EA034-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +40928,Na42,EA034,Otiose,EA034-2,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +40929,Na43,EA034,Absent,EA034-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +40930,Na44,EA034,?,EA034-NA,,,,,, +40931,Na45,EA034,?,EA034-NA,,,,,, +40932,Na5,EA034,Otiose,EA034-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +40933,Na6,EA034,Absent,EA034-1,"Belief in an otiose supreme being who is not, however, a creator",lantis1946,,1930,EthnographicAtlas_1967_p103,"Assume Murdock comment refers to col 34, not col 36 as stated in Gray (1999)" +40934,Na7,EA034,Absent,EA034-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +40935,Na8,EA034,Otiose,EA034-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +40936,Na9,EA034,Otiose,EA034-2,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +40937,Nb1,EA034,Absent,EA034-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +40938,Nb10,EA034,Absent,EA034-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +40939,Nb11,EA034,Absent,EA034-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +40940,Nb12,EA034,Absent,EA034-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +40941,Nb13,EA034,Absent,EA034-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +40942,Nb14,EA034,Absent,EA034-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +40943,Nb15,EA034,Absent,EA034-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +40944,Nb16,EA034,Absent,EA034-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +40945,Nb17,EA034,Absent,EA034-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +40946,Nb18,EA034,Absent,EA034-1,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +40947,Nb19,EA034,?,EA034-NA,,,,,, +40948,Nb2,EA034,Absent,EA034-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +40949,Nb20,EA034,Absent,EA034-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +40950,Nb21,EA034,?,EA034-NA,,,,,, +40951,Nb22,EA034,Absent,EA034-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +40952,Nb23,EA034,Absent,EA034-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +40953,Nb24,EA034,Absent,EA034-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +40954,Nb25,EA034,Absent,EA034-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +40955,Nb26,EA034,Absent,EA034-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +40956,Nb27,EA034,Absent,EA034-1,"Aboriginally, but the concept of a high god was introduced ""as a result of early white contact""",duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +40957,Nb28,EA034,?,EA034-NA,,,,,, +40958,Nb29,EA034,?,EA034-NA,,,,,, +40959,Nb3,EA034,?,EA034-NA,,,,,, +40960,Nb30,EA034,?,EA034-NA,,,,,, +40961,Nb31,EA034,?,EA034-NA,,,,,, +40962,Nb32,EA034,Absent,EA034-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +40963,Nb33,EA034,Absent,EA034-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +40964,Nb34,EA034,Absent,EA034-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +40965,Nb35,EA034,Absent,EA034-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +40966,Nb36,EA034,Otiose,EA034-2,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +40967,Nb37,EA034,?,EA034-NA,,,,,, +40968,Nb38,EA034,Absent,EA034-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +40969,Nb39,EA034,"Active, but not supporting morality",EA034-3,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +40970,Nb4,EA034,Absent,EA034-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +40971,Nb5,EA034,Absent,EA034-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +40972,Nb6,EA034,Absent,EA034-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +40973,Nb7,EA034,Absent,EA034-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +40974,Nb8,EA034,Absent,EA034-1,Lopatin reports the Raven as creator of man and the world but does not specifically report a conception of a high god,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +40975,Nb9,EA034,Otiose,EA034-2,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +40976,Nc1,EA034,Otiose,EA034-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +40977,Nc10,EA034,?,EA034-NA,,,,,, +40978,Nc11,EA034,?,EA034-NA,,,,,, +40979,Nc12,EA034,Otiose,EA034-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +40980,Nc13,EA034,Absent,EA034-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +40981,Nc14,EA034,Otiose,EA034-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +40982,Nc15,EA034,Otiose,EA034-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +40983,Nc16,EA034,Otiose,EA034-2,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +40984,Nc17,EA034,Absent,EA034-1,An animal creator,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +40985,Nc18,EA034,Otiose,EA034-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +40986,Nc19,EA034,?,EA034-NA,,,,,, +40987,Nc2,EA034,Absent,EA034-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +40988,Nc20,EA034,?,EA034-NA,,,,,, +40989,Nc21,EA034,?,EA034-NA,,,,,, +40990,Nc22,EA034,?,EA034-NA,,,,,, +40991,Nc23,EA034,?,EA034-NA,,,,,, +40992,Nc24,EA034,Absent,EA034-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +40993,Nc25,EA034,?,EA034-NA,,,,,, +40994,Nc26,EA034,?,EA034-NA,,,,,, +40995,Nc27,EA034,?,EA034-NA,,,,,, +40996,Nc28,EA034,?,EA034-NA,,,,,, +40997,Nc29,EA034,Otiose,EA034-2,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +40998,Nc3,EA034,Absent,EA034-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +40999,Nc30,EA034,Otiose,EA034-2,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +41000,Nc31,EA034,Otiose,EA034-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +41001,Nc32,EA034,?,EA034-NA,,,,,, +41002,Nc33,EA034,Absent,EA034-1,But the deity Chingishnish had certain attributes of a high god,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +41003,Nc34,EA034,Absent,EA034-1,,meigs1939,,1880,EthnographicAtlas_1967_p107, +41004,Nc4,EA034,Absent,EA034-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +41005,Nc5,EA034,?,EA034-NA,,,,,, +41006,Nc6,EA034,Absent,EA034-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +41007,Nc7,EA034,Otiose,EA034-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +41008,Nc8,EA034,Absent,EA034-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +41009,Nc9,EA034,Absent,EA034-1,The creator was a culture hero rather than a high god,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +41010,Nd1,EA034,"Active, supporting morality",EA034-4,In the prevailing Prophet Dance cult,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +41011,Nd10,EA034,?,EA034-NA,,,,,, +41012,Nd11,EA034,Absent,EA034-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +41013,Nd12,EA034,Absent,EA034-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +41014,Nd13,EA034,?,EA034-NA,,,,,, +41015,Nd14,EA034,Absent,EA034-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +41016,Nd15,EA034,Otiose,EA034-2,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +41017,Nd16,EA034,?,EA034-NA,,,,,, +41018,Nd17,EA034,?,EA034-NA,,,,,, +41019,Nd18,EA034,Absent,EA034-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +41020,Nd19,EA034,?,EA034-NA,,,,,, +41021,Nd2,EA034,Otiose,EA034-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +41022,Nd20,EA034,Absent,EA034-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +41023,Nd21,EA034,?,EA034-NA,,,,,, +41024,Nd22,EA034,Absent,EA034-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +41025,Nd23,EA034,?,EA034-NA,,,,,, +41026,Nd24,EA034,?,EA034-NA,,,,,, +41027,Nd25,EA034,?,EA034-NA,,,,,, +41028,Nd26,EA034,Absent,EA034-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +41029,Nd27,EA034,Absent,EA034-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +41030,Nd28,EA034,?,EA034-NA,,,,,, +41031,Nd29,EA034,?,EA034-NA,,,,,, +41032,Nd3,EA034,Absent,EA034-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +41033,Nd30,EA034,Otiose,EA034-2,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +41034,Nd31,EA034,?,EA034-NA,,,,,, +41035,Nd32,EA034,?,EA034-NA,,,,,, +41036,Nd33,EA034,?,EA034-NA,,,,,, +41037,Nd34,EA034,?,EA034-NA,,,,,, +41038,Nd35,EA034,?,EA034-NA,,,,,, +41039,Nd36,EA034,?,EA034-NA,,,,,, +41040,Nd37,EA034,?,EA034-NA,,,,,, +41041,Nd38,EA034,?,EA034-NA,,,,,, +41042,Nd39,EA034,?,EA034-NA,,,,,, +41043,Nd4,EA034,"Active, but not supporting morality",EA034-3,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +41044,Nd40,EA034,?,EA034-NA,,,,,, +41045,Nd41,EA034,?,EA034-NA,,,,,, +41046,Nd42,EA034,?,EA034-NA,,,,,, +41047,Nd43,EA034,Otiose,EA034-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +41048,Nd44,EA034,?,EA034-NA,,,,,, +41049,Nd45,EA034,?,EA034-NA,,,,,, +41050,Nd46,EA034,?,EA034-NA,,,,,, +41051,Nd47,EA034,?,EA034-NA,,,,,, +41052,Nd48,EA034,?,EA034-NA,,,,,, +41053,Nd49,EA034,?,EA034-NA,,,,,, +41054,Nd5,EA034,Absent,EA034-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +41055,Nd50,EA034,?,EA034-NA,,,,,, +41056,Nd51,EA034,?,EA034-NA,,,,,, +41057,Nd52,EA034,?,EA034-NA,,,,,, +41058,Nd53,EA034,?,EA034-NA,,,,,, +41059,Nd54,EA034,Absent,EA034-1,Coyote a creator but not a supreme being,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41060,Nd55,EA034,?,EA034-NA,,,,,, +41061,Nd56,EA034,?,EA034-NA,,,,,, +41062,Nd57,EA034,?,EA034-NA,,,,,, +41063,Nd58,EA034,?,EA034-NA,,,,,, +41064,Nd59,EA034,?,EA034-NA,,,,,, +41065,Nd6,EA034,Absent,EA034-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +41066,Nd60,EA034,?,EA034-NA,,,,,, +41067,Nd61,EA034,?,EA034-NA,,,,,, +41068,Nd62,EA034,?,EA034-NA,,,,,, +41069,Nd63,EA034,?,EA034-NA,,,,,, +41070,Nd64,EA034,?,EA034-NA,,,,,, +41071,Nd65,EA034,Absent,EA034-1,But there was a mythical creator who was not a supreme being,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +41072,Nd66,EA034,Absent,EA034-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +41073,Nd67,EA034,Absent,EA034-1,,gifford1936,,1870,EthnographicAtlas_1967_p111, +41074,Nd7,EA034,Otiose,EA034-2,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +41075,Nd8,EA034,?,EA034-NA,,,,,, +41076,Nd9,EA034,Absent,EA034-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +41077,Ne1,EA034,"Active, supporting morality",EA034-4,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +41078,Ne10,EA034,?,EA034-NA,,,,,, +41079,Ne11,EA034,Otiose,EA034-2,But the Great Spirit is not specifically reported as a creator,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +41080,Ne12,EA034,Otiose,EA034-2,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +41081,Ne13,EA034,Otiose,EA034-2,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +41082,Ne14,EA034,Otiose,EA034-2,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +41083,Ne15,EA034,Otiose,EA034-2,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +41084,Ne16,EA034,?,EA034-NA,,,,,, +41085,Ne17,EA034,?,EA034-NA,,,,,, +41086,Ne18,EA034,Otiose,EA034-2,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +41087,Ne19,EA034,Otiose,EA034-2,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +41088,Ne2,EA034,?,EA034-NA,,,,,, +41089,Ne20,EA034,?,EA034-NA,,,,,, +41090,Ne21,EA034,?,EA034-NA,,,,,, +41091,Ne3,EA034,?,EA034-NA,,,,,, +41092,Ne4,EA034,Absent,EA034-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +41093,Ne5,EA034,Absent,EA034-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +41094,Ne6,EA034,?,EA034-NA,,,,,, +41095,Ne7,EA034,?,EA034-NA,,,,,, +41096,Ne8,EA034,Otiose,EA034-2,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +41097,Ne9,EA034,Absent,EA034-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +41098,Nf10,EA034,?,EA034-NA,,,,,, +41099,Nf11,EA034,?,EA034-NA,,,,,, +41100,Nf12,EA034,?,EA034-NA,,,,,, +41101,Nf13,EA034,"Active, supporting morality",EA034-4,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41102,Nf14,EA034,?,EA034-NA,,,,,, +41103,Nf15,EA034,?,EA034-NA,,,,,, +41104,Nf2,EA034,?,EA034-NA,,,,,, +41105,Nf3,EA034,Absent,EA034-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +41106,Nf4,EA034,"Active, but not supporting morality",EA034-3,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +41107,Nf5,EA034,Otiose,EA034-2,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +41108,Nf6,EA034,Otiose,EA034-2,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +41109,Nf7,EA034,"Active, supporting morality",EA034-4,Possibly reflecting Christian influence,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41110,Nf8,EA034,"Active, supporting morality",EA034-4,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +41111,Nf9,EA034,?,EA034-NA,,,,,, +41112,Ng1,EA034,Otiose,EA034-2,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +41113,Ng10,EA034,Otiose,EA034-2,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +41114,Ng11,EA034,?,EA034-NA,,,,,, +41115,Ng12,EA034,?,EA034-NA,,,,,, +41116,Ng13,EA034,?,EA034-NA,,,,,, +41117,Ng14,EA034,?,EA034-NA,,,,,, +41118,Ng15,EA034,?,EA034-NA,,,,,, +41119,Ng2,EA034,?,EA034-NA,,,,,, +41120,Ng3,EA034,Otiose,EA034-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +41121,Ng4,EA034,?,EA034-NA,,,,,, +41122,Ng5,EA034,?,EA034-NA,,,,,, +41123,Ng6,EA034,"Active, but not supporting morality",EA034-3,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +41124,Ng7,EA034,Otiose,EA034-2,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +41125,Ng8,EA034,Absent,EA034-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p115, +41126,Ng9,EA034,?,EA034-NA,,,,,, +41127,Nh1,EA034,Absent,EA034-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +41128,Nh10,EA034,Absent,EA034-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +41129,Nh11,EA034,Absent,EA034-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +41130,Nh12,EA034,Absent,EA034-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +41131,Nh13,EA034,?,EA034-NA,,,,,, +41132,Nh14,EA034,?,EA034-NA,,,,,, +41133,Nh15,EA034,?,EA034-NA,,,,,, +41134,Nh16,EA034,Absent,EA034-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41135,Nh17,EA034,?,EA034-NA,,,,,, +41136,Nh18,EA034,Absent,EA034-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41137,Nh19,EA034,Absent,EA034-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +41138,Nh2,EA034,?,EA034-NA,,,,,, +41139,Nh20,EA034,Absent,EA034-1,,gifford1931,,1860,EthnographicAtlas_1967_p115, +41140,Nh21,EA034,Absent,EA034-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41141,Nh22,EA034,?,EA034-NA,,,,,, +41142,Nh23,EA034,?,EA034-NA,,,,,, +41143,Nh24,EA034,?,EA034-NA,,,,,, +41144,Nh25,EA034,Otiose,EA034-2,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +41145,Nh26,EA034,?,EA034-NA,,,,,, +41146,Nh27,EA034,?,EA034-NA,,,,,, +41147,Nh3,EA034,Absent,EA034-1,Also a considerably smaller number of cattle and horses,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +41148,Nh4,EA034,Absent,EA034-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +41149,Nh5,EA034,Absent,EA034-1,The legendary creator was apparently not a high god,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +41150,Nh6,EA034,?,EA034-NA,,,,,, +41151,Nh7,EA034,Absent,EA034-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +41152,Nh8,EA034,?,EA034-NA,,,,,, +41153,Nh9,EA034,Absent,EA034-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p115, +41154,Ni1,EA034,"Active, supporting morality",EA034-4,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +41155,Ni2,EA034,"Active, supporting morality",EA034-4,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +41156,Ni3,EA034,?,EA034-NA,,,,,, +41157,Ni4,EA034,?,EA034-NA,,,,,, +41158,Ni5,EA034,Absent,EA034-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +41159,Ni6,EA034,?,EA034-NA,,,,,, +41160,Ni7,EA034,?,EA034-NA,,,,,, +41161,Ni8,EA034,?,EA034-NA,,,,,, +41162,Ni9,EA034,?,EA034-NA,,,,,, +41163,Nj1,EA034,"Active, supporting morality",EA034-4,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41164,Nj10,EA034,"Active, supporting morality",EA034-4,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41165,Nj11,EA034,?,EA034-NA,,,,,, +41166,Nj12,EA034,?,EA034-NA,,,,,, +41167,Nj13,EA034,?,EA034-NA,,,,,, +41168,Nj14,EA034,?,EA034-NA,,,,,, +41169,Nj2,EA034,"Active, but not supporting morality",EA034-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +41170,Nj3,EA034,"Active, supporting morality",EA034-4,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +41171,Nj4,EA034,?,EA034-NA,,,,,, +41172,Nj5,EA034,?,EA034-NA,,,,,, +41173,Nj6,EA034,?,EA034-NA,,,,,, +41174,Nj7,EA034,"Active, supporting morality",EA034-4,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41175,Nj8,EA034,?,EA034-NA,,,,,, +41176,Nj9,EA034,"Active, supporting morality",EA034-4,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +41177,Sa1,EA034,"Active, supporting morality",EA034-4,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +41178,Sa10,EA034,Otiose,EA034-2,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p119, +41179,Sa11,EA034,?,EA034-NA,,,,,, +41180,Sa12,EA034,"Active, supporting morality",EA034-4,,stone1948,,1948,EthnographicAtlas_1967_p119, +41181,Sa13,EA034,"Active, supporting morality",EA034-4,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +41182,Sa14,EA034,?,EA034-NA,,,,,, +41183,Sa15,EA034,?,EA034-NA,,,,,, +41184,Sa16,EA034,?,EA034-NA,,,,,, +41185,Sa17,EA034,?,EA034-NA,,,,,, +41186,Sa2,EA034,?,EA034-NA,,,,,, +41187,Sa3,EA034,Otiose,EA034-2,,wisdom1940,,1930,EthnographicAtlas_1967_p119, +41188,Sa4,EA034,Otiose,EA034-2,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +41189,Sa5,EA034,"Active, but not supporting morality",EA034-3,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +41190,Sa6,EA034,?,EA034-NA,,,,,, +41191,Sa7,EA034,"Active, supporting morality",EA034-4,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +41192,Sa8,EA034,"Active, supporting morality",EA034-4,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +41193,Sa9,EA034,"Active, supporting morality",EA034-4,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +41194,Sb1,EA034,Otiose,EA034-2,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +41195,Sb2,EA034,Otiose,EA034-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +41196,Sb3,EA034,?,EA034-NA,,,,,, +41197,Sb4,EA034,Absent,EA034-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +41198,Sb5,EA034,Otiose,EA034-2,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +41199,Sb6,EA034,"Active, but not supporting morality",EA034-3,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +41200,Sb7,EA034,Otiose,EA034-2,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +41201,Sb8,EA034,Otiose,EA034-2,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +41202,Sb9,EA034,"Active, supporting morality",EA034-4,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +41203,Sc1,EA034,"Active, supporting morality",EA034-4,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +41204,Sc10,EA034,Otiose,EA034-2,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +41205,Sc11,EA034,?,EA034-NA,,,,,, +41206,Sc12,EA034,?,EA034-NA,,,,,, +41207,Sc13,EA034,?,EA034-NA,,,,,, +41208,Sc14,EA034,?,EA034-NA,,,,,, +41209,Sc15,EA034,?,EA034-NA,,,,,, +41210,Sc16,EA034,?,EA034-NA,,,,,, +41211,Sc17,EA034,?,EA034-NA,,,,,, +41212,Sc18,EA034,Otiose,EA034-2,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +41213,Sc2,EA034,?,EA034-NA,,,,,, +41214,Sc3,EA034,Otiose,EA034-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +41215,Sc4,EA034,Absent,EA034-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +41216,Sc5,EA034,?,EA034-NA,,,,,, +41217,Sc6,EA034,?,EA034-NA,,,,,, +41218,Sc7,EA034,Absent,EA034-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +41219,Sc8,EA034,Absent,EA034-1,A high god who is apparently not a creator,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +41220,Sc9,EA034,?,EA034-NA,,,,,, +41221,Sd1,EA034,Absent,EA034-1,"Kruse reports a creator god, but Murphy treats him as a culture hero",frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41222,Sd2,EA034,Absent,EA034-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +41223,Sd3,EA034,?,EA034-NA,,,,,, +41224,Sd4,EA034,?,EA034-NA,,,,,, +41225,Sd5,EA034,?,EA034-NA,,,,,, +41226,Sd6,EA034,?,EA034-NA,,,,,, +41227,Sd7,EA034,Absent,EA034-1,A creator who is not a high god,fock1963,,1950,EthnographicAtlas_1967_p119, +41228,Sd8,EA034,Absent,EA034-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +41229,Sd9,EA034,Absent,EA034-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41230,Se1,EA034,Otiose,EA034-2,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +41231,Se10,EA034,Otiose,EA034-2,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +41232,Se11,EA034,?,EA034-NA,,,,,, +41233,Se12,EA034,?,EA034-NA,,,,,, +41234,Se2,EA034,Otiose,EA034-2,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +41235,Se3,EA034,Absent,EA034-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +41236,Se4,EA034,Absent,EA034-1,,fejos1943,,1940,EthnographicAtlas_1967_p119, +41237,Se5,EA034,Absent,EA034-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +41238,Se6,EA034,Otiose,EA034-2,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +41239,Se7,EA034,?,EA034-NA,,,,,, +41240,Se8,EA034,Absent,EA034-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +41241,Se9,EA034,Absent,EA034-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +41242,Sf1,EA034,Otiose,EA034-2,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +41243,Sf2,EA034,"Active, supporting morality",EA034-4,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +41244,Sf3,EA034,Absent,EA034-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +41245,Sf4,EA034,Otiose,EA034-2,Rochereau ascribes the otiose high god to Christian influence,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +41246,Sf5,EA034,?,EA034-NA,,,,,, +41247,Sf6,EA034,Absent,EA034-1,"The Sun was the chief deity, but another god was the creator",ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +41248,Sf7,EA034,Otiose,EA034-2,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +41249,Sf8,EA034,?,EA034-NA,,,,,, +41250,Sf9,EA034,?,EA034-NA,,,,,, +41251,Sg1,EA034,"Active, supporting morality",EA034-4,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +41252,Sg2,EA034,"Active, but not supporting morality",EA034-3,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41253,Sg3,EA034,Otiose,EA034-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +41254,Sg4,EA034,Otiose,EA034-2,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +41255,Sg5,EA034,Absent,EA034-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41256,Sh1,EA034,Absent,EA034-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +41257,Sh2,EA034,Otiose,EA034-2,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +41258,Sh3,EA034,Absent,EA034-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +41259,Sh4,EA034,?,EA034-NA,,,,,, +41260,Sh5,EA034,Absent,EA034-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +41261,Sh6,EA034,"Active, but not supporting morality",EA034-3,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +41262,Sh7,EA034,?,EA034-NA,,,,,, +41263,Sh8,EA034,"Active, supporting morality",EA034-4,"But aboriginally 'absent' (code ""1"")",karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +41264,Sh9,EA034,Otiose,EA034-2,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +41265,Si1,EA034,Absent,EA034-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41266,Si10,EA034,Absent,EA034-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +41267,Si2,EA034,Absent,EA034-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +41268,Si3,EA034,Absent,EA034-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41269,Si4,EA034,Absent,EA034-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +41270,Si5,EA034,Otiose,EA034-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +41271,Si6,EA034,?,EA034-NA,,,,,, +41272,Si7,EA034,Absent,EA034-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +41273,Si8,EA034,Absent,EA034-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +41274,Si9,EA034,?,EA034-NA,,,,,, +41275,Sj1,EA034,Absent,EA034-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +41276,Sj10,EA034,?,EA034-NA,,,,,, +41277,Sj11,EA034,Absent,EA034-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +41278,Sj2,EA034,Absent,EA034-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +41279,Sj3,EA034,Absent,EA034-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +41280,Sj4,EA034,Absent,EA034-1,Nimuendaju was unable to confirm an earlier report of a supreme being,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +41281,Sj5,EA034,?,EA034-NA,,,,,, +41282,Sj6,EA034,Absent,EA034-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41283,Sj7,EA034,Otiose,EA034-2,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +41284,Sj8,EA034,Otiose,EA034-2,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +41285,Sj9,EA034,?,EA034-NA,,,,,, +41286,ch12,EA034,"Active, supporting morality",EA034-4,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +41287,ch13,EA034,"Active, supporting morality",EA034-4,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +41288,ch14,EA034,"Active, supporting morality",EA034-4,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +41289,ch15,EA034,"Active, supporting morality",EA034-4,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +41290,ch16,EA034,"Active, supporting morality",EA034-4,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +41291,ch17,EA034,"Active, supporting morality",EA034-4,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +41292,ch18,EA034,"Active, supporting morality",EA034-4,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +41293,ch19,EA034,"Active, supporting morality",EA034-4,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +41294,ch20,EA034,"Active, supporting morality",EA034-4,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +41295,ch21,EA034,"Active, supporting morality",EA034-4,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +41296,ch22,EA034,"Active, supporting morality",EA034-4,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +41297,ch23,EA034,"Active, supporting morality",EA034-4,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +41298,ch24,EA034,"Active, supporting morality",EA034-4,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +41299,ch25,EA034,"Active, supporting morality",EA034-4,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +41300,ch26,EA034,"Active, supporting morality",EA034-4,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +41301,ch27,EA034,"Active, supporting morality",EA034-4,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +41302,ch28,EA034,"Active, supporting morality",EA034-4,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +41303,ec12,EA034,Otiose,EA034-2,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +41304,ec13,EA034,Otiose,EA034-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +41305,ec14,EA034,Otiose,EA034-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +41306,ec15,EA034,Otiose,EA034-2,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +41307,ec16,EA034,Otiose,EA034-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +41308,ec17,EA034,Otiose,EA034-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +41309,ec18,EA034,Otiose,EA034-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +41310,ec19,EA034,Otiose,EA034-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +41311,ec20,EA034,Otiose,EA034-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +41312,ec21,EA034,Otiose,EA034-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +41313,Aa1,EA035,Physical skill only,EA035-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +41314,Aa2,EA035,?,EA035-NA,,,,,, +41315,Aa3,EA035,All types,EA035-8,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +41316,Aa4,EA035,?,EA035-NA,,,,,, +41317,Aa5,EA035,Physical skill only,EA035-2,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +41318,Aa6,EA035,?,EA035-NA,,,,,, +41319,Aa7,EA035,?,EA035-NA,,,,,, +41320,Aa8,EA035,?,EA035-NA,,,,,, +41321,Aa9,EA035,Strategy only,EA035-5,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +41322,Ab1,EA035,?,EA035-NA,,,,,, +41323,Ab10,EA035,?,EA035-NA,,,,,, +41324,Ab11,EA035,Strategy only,EA035-5,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +41325,Ab12,EA035,?,EA035-NA,,,,,, +41326,Ab13,EA035,?,EA035-NA,,,,,, +41327,Ab14,EA035,?,EA035-NA,,,,,, +41328,Ab15,EA035,?,EA035-NA,,,,,, +41329,Ab16,EA035,?,EA035-NA,,,,,, +41330,Ab17,EA035,?,EA035-NA,,,,,, +41331,Ab18,EA035,Strategy and physical skill,EA035-6,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +41332,Ab19,EA035,Strategy and physical skill,EA035-6,No games of chance are mentioned in an incomplete account,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +41333,Ab2,EA035,?,EA035-NA,,,,,, +41334,Ab20,EA035,?,EA035-NA,,,,,, +41335,Ab21a,EA035,?,EA035-NA,,,,,, +41336,Ab21b,EA035,?,EA035-NA,,,,,, +41337,Ab22,EA035,?,EA035-NA,,,,,, +41338,Ab3,EA035,?,EA035-NA,,,,,, +41339,Ab4,EA035,All types,EA035-8,,junod1927,,1920,EthnographicAtlas_1967_p63, +41340,Ab5,EA035,Strategy and physical skill,EA035-6,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +41341,Ab6,EA035,All types,EA035-8,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +41342,Ab7,EA035,?,EA035-NA,,,,,, +41343,Ab8,EA035,?,EA035-NA,,,,,, +41344,Ab9,EA035,?,EA035-NA,,,,,, +41345,Ac1,EA035,Strategy and physical skill,EA035-6,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +41346,Ac10,EA035,?,EA035-NA,,,,,, +41347,Ac11,EA035,?,EA035-NA,,,,,, +41348,Ac12,EA035,?,EA035-NA,,,,,, +41349,Ac13,EA035,?,EA035-NA,,,,,, +41350,Ac14,EA035,?,EA035-NA,,,,,, +41351,Ac15,EA035,?,EA035-NA,,,,,, +41352,Ac16,EA035,?,EA035-NA,,,,,, +41353,Ac17,EA035,?,EA035-NA,,,,,, +41354,Ac18,EA035,?,EA035-NA,,,,,, +41355,Ac19,EA035,?,EA035-NA,,,,,, +41356,Ac2,EA035,?,EA035-NA,,,,,, +41357,Ac20,EA035,?,EA035-NA,,,,,, +41358,Ac21,EA035,?,EA035-NA,,,,,, +41359,Ac22,EA035,?,EA035-NA,,,,,, +41360,Ac23,EA035,?,EA035-NA,,,,,, +41361,Ac24,EA035,?,EA035-NA,,,,,, +41362,Ac25,EA035,?,EA035-NA,,,,,, +41363,Ac26,EA035,?,EA035-NA,,,,,, +41364,Ac27,EA035,?,EA035-NA,,,,,, +41365,Ac28,EA035,?,EA035-NA,,,,,, +41366,Ac29,EA035,?,EA035-NA,,,,,, +41367,Ac3,EA035,?,EA035-NA,,,,,, +41368,Ac30,EA035,?,EA035-NA,,,,,, +41369,Ac31,EA035,Strategy and physical skill,EA035-6,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +41370,Ac32,EA035,?,EA035-NA,,,,,, +41371,Ac33,EA035,?,EA035-NA,,,,,, +41372,Ac34,EA035,?,EA035-NA,,,,,, +41373,Ac35,EA035,?,EA035-NA,,,,,, +41374,Ac36,EA035,?,EA035-NA,,,,,, +41375,Ac37,EA035,?,EA035-NA,,,,,, +41376,Ac38,EA035,?,EA035-NA,,,,,, +41377,Ac39,EA035,?,EA035-NA,,,,,, +41378,Ac4,EA035,All types,EA035-8,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +41379,Ac40,EA035,?,EA035-NA,,,,,, +41380,Ac41,EA035,?,EA035-NA,,,,,, +41381,Ac42,EA035,?,EA035-NA,,,,,, +41382,Ac43,EA035,?,EA035-NA,,,,,, +41383,Ac5,EA035,Strategy and physical skill,EA035-6,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +41384,Ac6,EA035,?,EA035-NA,,,,,, +41385,Ac7,EA035,Strategy and physical skill,EA035-6,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +41386,Ac8,EA035,?,EA035-NA,,,,,, +41387,Ac9,EA035,?,EA035-NA,,,,,, +41388,Ad1,EA035,?,EA035-NA,,,,,, +41389,Ad10,EA035,?,EA035-NA,,,,,, +41390,Ad11,EA035,?,EA035-NA,,,,,, +41391,Ad12,EA035,?,EA035-NA,,,,,, +41392,Ad13,EA035,?,EA035-NA,,,,,, +41393,Ad14,EA035,?,EA035-NA,,,,,, +41394,Ad15,EA035,?,EA035-NA,,,,,, +41395,Ad16,EA035,?,EA035-NA,,,,,, +41396,Ad17,EA035,?,EA035-NA,,,,,, +41397,Ad18,EA035,?,EA035-NA,,,,,, +41398,Ad19,EA035,?,EA035-NA,,,,,, +41399,Ad2,EA035,Strategy and physical skill,EA035-6,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +41400,Ad20,EA035,?,EA035-NA,,,,,, +41401,Ad21,EA035,?,EA035-NA,,,,,, +41402,Ad22,EA035,?,EA035-NA,,,,,, +41403,Ad23,EA035,?,EA035-NA,,,,,, +41404,Ad24,EA035,?,EA035-NA,,,,,, +41405,Ad25,EA035,?,EA035-NA,,,,,, +41406,Ad26,EA035,?,EA035-NA,,,,,, +41407,Ad27,EA035,?,EA035-NA,,,,,, +41408,Ad28,EA035,?,EA035-NA,,,,,, +41409,Ad29,EA035,?,EA035-NA,,,,,, +41410,Ad3,EA035,All types,EA035-8,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +41411,Ad30,EA035,?,EA035-NA,,,,,, +41412,Ad31,EA035,?,EA035-NA,,,,,, +41413,Ad32,EA035,?,EA035-NA,,,,,, +41414,Ad33,EA035,?,EA035-NA,,,,,, +41415,Ad34,EA035,?,EA035-NA,,,,,, +41416,Ad35,EA035,?,EA035-NA,,,,,, +41417,Ad36,EA035,?,EA035-NA,,,,,, +41418,Ad37,EA035,?,EA035-NA,,,,,, +41419,Ad38,EA035,?,EA035-NA,,,,,, +41420,Ad39,EA035,?,EA035-NA,,,,,, +41421,Ad4,EA035,Strategy and physical skill,EA035-6,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +41422,Ad40,EA035,?,EA035-NA,,,,,, +41423,Ad41,EA035,?,EA035-NA,,,,,, +41424,Ad42,EA035,?,EA035-NA,,,,,, +41425,Ad43,EA035,?,EA035-NA,,,,,, +41426,Ad44,EA035,?,EA035-NA,,,,,, +41427,Ad45,EA035,?,EA035-NA,,,,,, +41428,Ad46,EA035,?,EA035-NA,,,,,, +41429,Ad47,EA035,?,EA035-NA,,,,,, +41430,Ad48,EA035,?,EA035-NA,,,,,, +41431,Ad49,EA035,?,EA035-NA,,,,,, +41432,Ad5,EA035,?,EA035-NA,,,,,, +41433,Ad50,EA035,?,EA035-NA,,,,,, +41434,Ad51,EA035,?,EA035-NA,,,,,, +41435,Ad6,EA035,No games,EA035-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +41436,Ad7,EA035,Strategy and physical skill,EA035-6,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +41437,Ad8,EA035,?,EA035-NA,,,,,, +41438,Ad9,EA035,?,EA035-NA,"La Fontaine says ""there are few traditional games.""",lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +41439,Ae1,EA035,?,EA035-NA,,,,,, +41440,Ae10,EA035,Strategy and physical skill,EA035-6,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +41441,Ae11,EA035,Strategy only,EA035-5,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +41442,Ae12,EA035,Physical skill only,EA035-2,"But formerly T [sic, Gray (1999)]",ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67,Murdock comment refers to a code (T) he did not use for this variable; not clear to what it refers. +41443,Ae13,EA035,?,EA035-NA,,,,,, +41444,Ae14,EA035,?,EA035-NA,,,,,, +41445,Ae15,EA035,?,EA035-NA,,,,,, +41446,Ae16,EA035,?,EA035-NA,,,,,, +41447,Ae17,EA035,?,EA035-NA,,,,,, +41448,Ae18,EA035,?,EA035-NA,,,,,, +41449,Ae19,EA035,?,EA035-NA,,,,,, +41450,Ae2,EA035,?,EA035-NA,,,,,, +41451,Ae20,EA035,?,EA035-NA,,,,,, +41452,Ae21,EA035,?,EA035-NA,,,,,, +41453,Ae22,EA035,?,EA035-NA,,,,,, +41454,Ae23,EA035,?,EA035-NA,,,,,, +41455,Ae24,EA035,?,EA035-NA,,,,,, +41456,Ae25,EA035,?,EA035-NA,,,,,, +41457,Ae26,EA035,?,EA035-NA,,,,,, +41458,Ae27,EA035,?,EA035-NA,,,,,, +41459,Ae28,EA035,Strategy only,EA035-5,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +41460,Ae29,EA035,?,EA035-NA,,,,,, +41461,Ae3,EA035,Physical skill only,EA035-2,"But 'all types' (code ""8"") in consequence of recent borrowing",alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +41462,Ae30,EA035,?,EA035-NA,,,,,, +41463,Ae31,EA035,?,EA035-NA,,,,,, +41464,Ae32,EA035,?,EA035-NA,,,,,, +41465,Ae33,EA035,?,EA035-NA,,,,,, +41466,Ae34,EA035,?,EA035-NA,,,,,, +41467,Ae35,EA035,?,EA035-NA,,,,,, +41468,Ae36,EA035,?,EA035-NA,,,,,, +41469,Ae37,EA035,?,EA035-NA,,,,,, +41470,Ae38,EA035,?,EA035-NA,,,,,, +41471,Ae39,EA035,No games,EA035-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +41472,Ae4,EA035,?,EA035-NA,,,,,, +41473,Ae40,EA035,?,EA035-NA,,,,,, +41474,Ae41,EA035,?,EA035-NA,,,,,, +41475,Ae42,EA035,?,EA035-NA,,,,,, +41476,Ae43,EA035,?,EA035-NA,,,,,, +41477,Ae44,EA035,?,EA035-NA,,,,,, +41478,Ae45,EA035,?,EA035-NA,,,,,, +41479,Ae46,EA035,?,EA035-NA,,,,,, +41480,Ae47,EA035,?,EA035-NA,,,,,, +41481,Ae48,EA035,?,EA035-NA,,,,,, +41482,Ae49,EA035,?,EA035-NA,,,,,, +41483,Ae5,EA035,?,EA035-NA,,,,,, +41484,Ae50,EA035,?,EA035-NA,,,,,, +41485,Ae51,EA035,?,EA035-NA,,,,,, +41486,Ae52,EA035,?,EA035-NA,,,,,, +41487,Ae53,EA035,?,EA035-NA,,,,,, +41488,Ae54,EA035,?,EA035-NA,,,,,, +41489,Ae55,EA035,?,EA035-NA,,,,,, +41490,Ae56,EA035,?,EA035-NA,,,,,, +41491,Ae57,EA035,?,EA035-NA,,,,,, +41492,Ae58,EA035,?,EA035-NA,,,,,, +41493,Ae59,EA035,?,EA035-NA,,,,,, +41494,Ae6,EA035,?,EA035-NA,,,,,, +41495,Ae7,EA035,Strategy and physical skill,EA035-6,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +41496,Ae8,EA035,Strategy and physical skill,EA035-6,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +41497,Ae9,EA035,?,EA035-NA,,,,,, +41498,Af1,EA035,All types,EA035-8,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +41499,Af10,EA035,?,EA035-NA,,,,,, +41500,Af11,EA035,All types,EA035-8,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +41501,Af12,EA035,?,EA035-NA,,,,,, +41502,Af13,EA035,?,EA035-NA,,,,,, +41503,Af14,EA035,?,EA035-NA,,,,,, +41504,Af15,EA035,All types,EA035-8,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +41505,Af16,EA035,?,EA035-NA,,,,,, +41506,Af17,EA035,?,EA035-NA,,,,,, +41507,Af18,EA035,?,EA035-NA,,,,,, +41508,Af19,EA035,?,EA035-NA,,,,,, +41509,Af2,EA035,?,EA035-NA,,,,,, +41510,Af20,EA035,?,EA035-NA,,,,,, +41511,Af21,EA035,?,EA035-NA,,,,,, +41512,Af22,EA035,?,EA035-NA,,,,,, +41513,Af23,EA035,?,EA035-NA,,,,,, +41514,Af24,EA035,?,EA035-NA,,,,,, +41515,Af25,EA035,?,EA035-NA,,,,,, +41516,Af26,EA035,?,EA035-NA,,,,,, +41517,Af27,EA035,?,EA035-NA,,,,,, +41518,Af28,EA035,?,EA035-NA,,,,,, +41519,Af29,EA035,?,EA035-NA,,,,,, +41520,Af3,EA035,Strategy and physical skill,EA035-6,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +41521,Af30,EA035,?,EA035-NA,,,,,, +41522,Af31,EA035,?,EA035-NA,,,,,, +41523,Af32,EA035,?,EA035-NA,,,,,, +41524,Af33,EA035,?,EA035-NA,,,,,, +41525,Af34,EA035,?,EA035-NA,,,,,, +41526,Af35,EA035,?,EA035-NA,,,,,, +41527,Af36,EA035,?,EA035-NA,,,,,, +41528,Af37,EA035,?,EA035-NA,,,,,, +41529,Af38,EA035,?,EA035-NA,,,,,, +41530,Af39,EA035,?,EA035-NA,,,,,, +41531,Af4,EA035,?,EA035-NA,,,,,, +41532,Af40,EA035,?,EA035-NA,,,,,, +41533,Af41,EA035,?,EA035-NA,,,,,, +41534,Af42,EA035,?,EA035-NA,,,,,, +41535,Af43,EA035,?,EA035-NA,,,,,, +41536,Af44,EA035,?,EA035-NA,,,,,, +41537,Af45,EA035,?,EA035-NA,,,,,, +41538,Af46,EA035,?,EA035-NA,,,,,, +41539,Af47,EA035,?,EA035-NA,,,,,, +41540,Af48,EA035,?,EA035-NA,,,,,, +41541,Af49,EA035,Physical skill only,EA035-2,,schwab1947,,1940,EthnographicAtlas_1967_p71, +41542,Af5,EA035,All types,EA035-8,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +41543,Af50,EA035,?,EA035-NA,,,,,, +41544,Af51,EA035,?,EA035-NA,,,,,, +41545,Af52,EA035,?,EA035-NA,,,,,, +41546,Af53,EA035,?,EA035-NA,,,,,, +41547,Af54,EA035,All types,EA035-8,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +41548,Af55,EA035,?,EA035-NA,,,,,, +41549,Af56,EA035,All types,EA035-8,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +41550,Af57,EA035,?,EA035-NA,,,,,, +41551,Af58,EA035,?,EA035-NA,,,,,, +41552,Af6,EA035,?,EA035-NA,,,,,, +41553,Af7,EA035,?,EA035-NA,,,,,, +41554,Af8,EA035,?,EA035-NA,,,,,, +41555,Af9,EA035,?,EA035-NA,,,,,, +41556,Ag1,EA035,?,EA035-NA,,,,,, +41557,Ag10,EA035,?,EA035-NA,,,,,, +41558,Ag11,EA035,Strategy and physical skill,EA035-6,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +41559,Ag12,EA035,?,EA035-NA,,,,,, +41560,Ag13,EA035,?,EA035-NA,,,,,, +41561,Ag14,EA035,?,EA035-NA,,,,,, +41562,Ag15,EA035,?,EA035-NA,,,,,, +41563,Ag16,EA035,?,EA035-NA,,,,,, +41564,Ag17,EA035,?,EA035-NA,,,,,, +41565,Ag18,EA035,?,EA035-NA,,,,,, +41566,Ag19,EA035,?,EA035-NA,,,,,, +41567,Ag2,EA035,Physical skill and chance,EA035-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +41568,Ag20,EA035,?,EA035-NA,,,,,, +41569,Ag21,EA035,?,EA035-NA,,,,,, +41570,Ag22,EA035,?,EA035-NA,,,,,, +41571,Ag23,EA035,?,EA035-NA,,,,,, +41572,Ag24,EA035,?,EA035-NA,,,,,, +41573,Ag25,EA035,?,EA035-NA,,,,,, +41574,Ag26,EA035,?,EA035-NA,,,,,, +41575,Ag27,EA035,?,EA035-NA,,,,,, +41576,Ag28,EA035,?,EA035-NA,,,,,, +41577,Ag29,EA035,?,EA035-NA,,,,,, +41578,Ag3,EA035,?,EA035-NA,,,,,, +41579,Ag30,EA035,?,EA035-NA,,,,,, +41580,Ag31,EA035,?,EA035-NA,,,,,, +41581,Ag32,EA035,?,EA035-NA,,,,,, +41582,Ag33,EA035,?,EA035-NA,,,,,, +41583,Ag34,EA035,?,EA035-NA,,,,,, +41584,Ag35,EA035,?,EA035-NA,,,,,, +41585,Ag36,EA035,?,EA035-NA,,,,,, +41586,Ag37,EA035,?,EA035-NA,,,,,, +41587,Ag38,EA035,?,EA035-NA,,,,,, +41588,Ag39,EA035,?,EA035-NA,,,,,, +41589,Ag4,EA035,Strategy only,EA035-5,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +41590,Ag40,EA035,?,EA035-NA,,,,,, +41591,Ag41,EA035,?,EA035-NA,,,,,, +41592,Ag42,EA035,?,EA035-NA,,,,,, +41593,Ag43,EA035,?,EA035-NA,,,,,, +41594,Ag44,EA035,?,EA035-NA,,,,,, +41595,Ag45,EA035,?,EA035-NA,,,,,, +41596,Ag46,EA035,?,EA035-NA,,,,,, +41597,Ag47,EA035,All types,EA035-8,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +41598,Ag48,EA035,?,EA035-NA,,,,,, +41599,Ag49,EA035,?,EA035-NA,,,,,, +41600,Ag5,EA035,?,EA035-NA,,,,,, +41601,Ag50,EA035,?,EA035-NA,,,,,, +41602,Ag51,EA035,?,EA035-NA,,,,,, +41603,Ag52,EA035,?,EA035-NA,,,,,, +41604,Ag53,EA035,?,EA035-NA,,,,,, +41605,Ag54,EA035,All types,EA035-8,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +41606,Ag6,EA035,?,EA035-NA,,,,,, +41607,Ag7,EA035,?,EA035-NA,,,,,, +41608,Ag8,EA035,?,EA035-NA,,,,,, +41609,Ag9,EA035,?,EA035-NA,,,,,, +41610,Ah1,EA035,?,EA035-NA,,,,,, +41611,Ah10,EA035,?,EA035-NA,,,,,, +41612,Ah11,EA035,?,EA035-NA,,,,,, +41613,Ah12,EA035,?,EA035-NA,,,,,, +41614,Ah13,EA035,Physical skill only,EA035-2,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +41615,Ah14,EA035,Physical skill only,EA035-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +41616,Ah15,EA035,?,EA035-NA,,,,,, +41617,Ah16,EA035,?,EA035-NA,,,,,, +41618,Ah17,EA035,?,EA035-NA,,,,,, +41619,Ah18,EA035,?,EA035-NA,,,,,, +41620,Ah19,EA035,?,EA035-NA,,,,,, +41621,Ah2,EA035,Strategy and physical skill,EA035-6,,meek1931a,,1920,EthnographicAtlas_1967_p75, +41622,Ah20,EA035,?,EA035-NA,,,,,, +41623,Ah21,EA035,?,EA035-NA,,,,,, +41624,Ah22,EA035,?,EA035-NA,,,,,, +41625,Ah23,EA035,?,EA035-NA,,,,,, +41626,Ah24,EA035,?,EA035-NA,,,,,, +41627,Ah25,EA035,?,EA035-NA,,,,,, +41628,Ah26,EA035,?,EA035-NA,,,,,, +41629,Ah27,EA035,?,EA035-NA,,,,,, +41630,Ah28,EA035,?,EA035-NA,,,,,, +41631,Ah29,EA035,?,EA035-NA,,,,,, +41632,Ah3,EA035,Strategy and physical skill,EA035-6,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +41633,Ah30,EA035,?,EA035-NA,,,,,, +41634,Ah31,EA035,?,EA035-NA,,,,,, +41635,Ah32,EA035,?,EA035-NA,,,,,, +41636,Ah33,EA035,?,EA035-NA,,,,,, +41637,Ah34,EA035,?,EA035-NA,,,,,, +41638,Ah35,EA035,?,EA035-NA,,,,,, +41639,Ah36,EA035,?,EA035-NA,,,,,, +41640,Ah37,EA035,?,EA035-NA,,,,,, +41641,Ah38,EA035,?,EA035-NA,,,,,, +41642,Ah39,EA035,?,EA035-NA,,,,,, +41643,Ah4,EA035,?,EA035-NA,,,,,, +41644,Ah5,EA035,?,EA035-NA,,,,,, +41645,Ah6,EA035,?,EA035-NA,,,,,, +41646,Ah7,EA035,?,EA035-NA,,,,,, +41647,Ah8,EA035,?,EA035-NA,,,,,, +41648,Ah9,EA035,All types,EA035-8,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75, +41649,Ai1,EA035,?,EA035-NA,,,,,, +41650,Ai10,EA035,?,EA035-NA,,,,,, +41651,Ai11,EA035,?,EA035-NA,,,,,, +41652,Ai12,EA035,?,EA035-NA,,,,,, +41653,Ai13,EA035,?,EA035-NA,,,,,, +41654,Ai14,EA035,?,EA035-NA,,,,,, +41655,Ai15,EA035,?,EA035-NA,,,,,, +41656,Ai16,EA035,?,EA035-NA,,,,,, +41657,Ai17,EA035,?,EA035-NA,,,,,, +41658,Ai18,EA035,?,EA035-NA,,,,,, +41659,Ai19,EA035,?,EA035-NA,,,,,, +41660,Ai2,EA035,?,EA035-NA,,,,,, +41661,Ai20,EA035,?,EA035-NA,,,,,, +41662,Ai21,EA035,?,EA035-NA,,,,,, +41663,Ai22,EA035,?,EA035-NA,,,,,, +41664,Ai23,EA035,Physical skill only,EA035-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +41665,Ai24,EA035,?,EA035-NA,,,,,, +41666,Ai25,EA035,?,EA035-NA,,,,,, +41667,Ai26,EA035,?,EA035-NA,,,,,, +41668,Ai27,EA035,?,EA035-NA,,,,,, +41669,Ai28,EA035,?,EA035-NA,,,,,, +41670,Ai29,EA035,?,EA035-NA,,,,,, +41671,Ai3,EA035,All types,EA035-8,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +41672,Ai30,EA035,Physical skill only,EA035-2,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +41673,Ai31,EA035,?,EA035-NA,,,,,, +41674,Ai32,EA035,?,EA035-NA,,,,,, +41675,Ai33,EA035,?,EA035-NA,,,,,, +41676,Ai34,EA035,?,EA035-NA,,,,,, +41677,Ai35,EA035,?,EA035-NA,,,,,, +41678,Ai36,EA035,?,EA035-NA,,,,,, +41679,Ai37,EA035,?,EA035-NA,,,,,, +41680,Ai38,EA035,?,EA035-NA,,,,,, +41681,Ai39,EA035,?,EA035-NA,,,,,, +41682,Ai4,EA035,?,EA035-NA,,,,,, +41683,Ai40,EA035,?,EA035-NA,,,,,, +41684,Ai41,EA035,?,EA035-NA,,,,,, +41685,Ai42,EA035,?,EA035-NA,,,,,, +41686,Ai43,EA035,?,EA035-NA,,,,,, +41687,Ai44,EA035,?,EA035-NA,,,,,, +41688,Ai45,EA035,?,EA035-NA,,,,,, +41689,Ai46,EA035,?,EA035-NA,,,,,, +41690,Ai47,EA035,?,EA035-NA,,,,,, +41691,Ai5,EA035,?,EA035-NA,,,,,, +41692,Ai6,EA035,?,EA035-NA,,,,,, +41693,Ai7,EA035,Strategy only,EA035-5,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +41694,Ai8,EA035,?,EA035-NA,,,,,, +41695,Ai9,EA035,?,EA035-NA,,,,,, +41696,Aj1,EA035,?,EA035-NA,,,,,, +41697,Aj10,EA035,?,EA035-NA,,,,,, +41698,Aj11,EA035,?,EA035-NA,,,,,, +41699,Aj12,EA035,?,EA035-NA,,,,,, +41700,Aj13,EA035,?,EA035-NA,,,,,, +41701,Aj14,EA035,?,EA035-NA,,,,,, +41702,Aj15,EA035,?,EA035-NA,,,,,, +41703,Aj16,EA035,?,EA035-NA,,,,,, +41704,Aj17,EA035,?,EA035-NA,,,,,, +41705,Aj18,EA035,?,EA035-NA,,,,,, +41706,Aj19,EA035,?,EA035-NA,,,,,, +41707,Aj2,EA035,Strategy and physical skill,EA035-6,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +41708,Aj20,EA035,?,EA035-NA,,,,,, +41709,Aj21,EA035,?,EA035-NA,,,,,, +41710,Aj22,EA035,?,EA035-NA,,,,,, +41711,Aj23,EA035,?,EA035-NA,,,,,, +41712,Aj24,EA035,?,EA035-NA,,,,,, +41713,Aj25,EA035,?,EA035-NA,,,,,, +41714,Aj26,EA035,?,EA035-NA,,,,,, +41715,Aj27,EA035,?,EA035-NA,,,,,, +41716,Aj28,EA035,?,EA035-NA,,,,,, +41717,Aj29,EA035,?,EA035-NA,,,,,, +41718,Aj3,EA035,?,EA035-NA,,,,,, +41719,Aj30,EA035,?,EA035-NA,,,,,, +41720,Aj31,EA035,?,EA035-NA,,,,,, +41721,Aj4,EA035,?,EA035-NA,,,,,, +41722,Aj5,EA035,?,EA035-NA,,,,,, +41723,Aj6,EA035,Strategy and physical skill,EA035-6,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +41724,Aj7,EA035,?,EA035-NA,,,,,, +41725,Aj8,EA035,?,EA035-NA,,,,,, +41726,Aj9,EA035,?,EA035-NA,,,,,, +41727,Ca1,EA035,?,EA035-NA,,,,,, +41728,Ca10,EA035,?,EA035-NA,,,,,, +41729,Ca11,EA035,?,EA035-NA,,,,,, +41730,Ca12,EA035,?,EA035-NA,,,,,, +41731,Ca13,EA035,?,EA035-NA,,,,,, +41732,Ca14,EA035,?,EA035-NA,,,,,, +41733,Ca15,EA035,?,EA035-NA,,,,,, +41734,Ca16,EA035,?,EA035-NA,,,,,, +41735,Ca17,EA035,?,EA035-NA,,,,,, +41736,Ca18,EA035,?,EA035-NA,,,,,, +41737,Ca19,EA035,?,EA035-NA,,,,,, +41738,Ca2,EA035,Physical skill and chance,EA035-4,Puccioni mentions only games of strategy in an incomplete account,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +41739,Ca20,EA035,?,EA035-NA,,,,,, +41740,Ca21,EA035,?,EA035-NA,,,,,, +41741,Ca22,EA035,?,EA035-NA,,,,,, +41742,Ca23,EA035,?,EA035-NA,,,,,, +41743,Ca24,EA035,?,EA035-NA,,,,,, +41744,Ca25,EA035,?,EA035-NA,,,,,, +41745,Ca26,EA035,?,EA035-NA,,,,,, +41746,Ca27,EA035,?,EA035-NA,,,,,, +41747,Ca28,EA035,?,EA035-NA,,,,,, +41748,Ca29,EA035,?,EA035-NA,,,,,, +41749,Ca3,EA035,?,EA035-NA,,,,,, +41750,Ca30,EA035,?,EA035-NA,,,,,, +41751,Ca31,EA035,?,EA035-NA,,,,,, +41752,Ca32,EA035,?,EA035-NA,,,,,, +41753,Ca33,EA035,?,EA035-NA,,,,,, +41754,Ca34,EA035,?,EA035-NA,,,,,, +41755,Ca35,EA035,?,EA035-NA,,,,,, +41756,Ca36,EA035,?,EA035-NA,,,,,, +41757,Ca37,EA035,?,EA035-NA,,,,,, +41758,Ca38,EA035,?,EA035-NA,,,,,, +41759,Ca39,EA035,?,EA035-NA,,,,,, +41760,Ca4,EA035,?,EA035-NA,,,,,, +41761,Ca40,EA035,?,EA035-NA,,,,,, +41762,Ca41,EA035,?,EA035-NA,,,,,, +41763,Ca42,EA035,?,EA035-NA,,,,,, +41764,Ca43,EA035,?,EA035-NA,,,,,, +41765,Ca5,EA035,?,EA035-NA,,,,,, +41766,Ca6,EA035,?,EA035-NA,,,,,, +41767,Ca7,EA035,Strategy and physical skill,EA035-6,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +41768,Ca8,EA035,?,EA035-NA,,,,,, +41769,Ca9,EA035,?,EA035-NA,,,,,, +41770,Cb1,EA035,?,EA035-NA,,,,,, +41771,Cb10,EA035,?,EA035-NA,,,,,, +41772,Cb11,EA035,?,EA035-NA,,,,,, +41773,Cb12,EA035,?,EA035-NA,,,,,, +41774,Cb13,EA035,?,EA035-NA,,,,,, +41775,Cb14,EA035,?,EA035-NA,,,,,, +41776,Cb15,EA035,?,EA035-NA,,,,,, +41777,Cb16,EA035,?,EA035-NA,,,,,, +41778,Cb17,EA035,?,EA035-NA,,,,,, +41779,Cb18,EA035,?,EA035-NA,,,,,, +41780,Cb19,EA035,?,EA035-NA,,,,,, +41781,Cb2,EA035,All types,EA035-8,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +41782,Cb20,EA035,?,EA035-NA,,,,,, +41783,Cb21,EA035,?,EA035-NA,,,,,, +41784,Cb22,EA035,?,EA035-NA,,,,,, +41785,Cb23,EA035,?,EA035-NA,,,,,, +41786,Cb24,EA035,?,EA035-NA,,,,,, +41787,Cb25,EA035,?,EA035-NA,,,,,, +41788,Cb26,EA035,?,EA035-NA,,,,,, +41789,Cb27,EA035,?,EA035-NA,,,,,, +41790,Cb28,EA035,?,EA035-NA,,,,,, +41791,Cb29,EA035,?,EA035-NA,,,,,, +41792,Cb3,EA035,?,EA035-NA,,,,,, +41793,Cb4,EA035,?,EA035-NA,,,,,, +41794,Cb5,EA035,?,EA035-NA,,,,,, +41795,Cb6,EA035,?,EA035-NA,,,,,, +41796,Cb7,EA035,?,EA035-NA,,,,,, +41797,Cb8,EA035,?,EA035-NA,,,,,, +41798,Cb9,EA035,?,EA035-NA,,,,,, +41799,Cc1,EA035,?,EA035-NA,,,,,, +41800,Cc10,EA035,?,EA035-NA,,,,,, +41801,Cc11,EA035,?,EA035-NA,,,,,, +41802,Cc12,EA035,?,EA035-NA,,,,,, +41803,Cc13,EA035,?,EA035-NA,,,,,, +41804,Cc14,EA035,?,EA035-NA,,,,,, +41805,Cc15,EA035,?,EA035-NA,,,,,, +41806,Cc16,EA035,?,EA035-NA,,,,,, +41807,Cc17,EA035,?,EA035-NA,,,,,, +41808,Cc18,EA035,?,EA035-NA,,,,,, +41809,Cc19,EA035,?,EA035-NA,,,,,, +41810,Cc2,EA035,?,EA035-NA,,,,,, +41811,Cc20,EA035,?,EA035-NA,,,,,, +41812,Cc3,EA035,Physical skill and chance,EA035-4,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +41813,Cc4,EA035,?,EA035-NA,,,,,, +41814,Cc5,EA035,?,EA035-NA,,,,,, +41815,Cc6,EA035,?,EA035-NA,,,,,, +41816,Cc7,EA035,?,EA035-NA,,,,,, +41817,Cc8,EA035,?,EA035-NA,,,,,, +41818,Cc9,EA035,?,EA035-NA,,,,,, +41819,Cd1,EA035,Physical skill and chance,EA035-4,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +41820,Cd10,EA035,?,EA035-NA,,,,,, +41821,Cd11,EA035,?,EA035-NA,,,,,, +41822,Cd12,EA035,?,EA035-NA,,,,,, +41823,Cd13,EA035,?,EA035-NA,,,,,, +41824,Cd14,EA035,?,EA035-NA,,,,,, +41825,Cd15,EA035,?,EA035-NA,,,,,, +41826,Cd16,EA035,?,EA035-NA,,,,,, +41827,Cd17,EA035,?,EA035-NA,,,,,, +41828,Cd18,EA035,?,EA035-NA,,,,,, +41829,Cd19,EA035,?,EA035-NA,,,,,, +41830,Cd2,EA035,All types,EA035-8,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +41831,Cd20,EA035,?,EA035-NA,,,,,, +41832,Cd21,EA035,?,EA035-NA,,,,,, +41833,Cd3,EA035,?,EA035-NA,,,,,, +41834,Cd4,EA035,?,EA035-NA,,,,,, +41835,Cd5,EA035,?,EA035-NA,,,,,, +41836,Cd6,EA035,All types,EA035-8,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +41837,Cd7,EA035,?,EA035-NA,,,,,, +41838,Cd8,EA035,?,EA035-NA,,,,,, +41839,Cd9,EA035,?,EA035-NA,,,,,, +41840,Ce1,EA035,?,EA035-NA,,,,,, +41841,Ce2,EA035,?,EA035-NA,,,,,, +41842,Ce3,EA035,Strategy only,EA035-5,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +41843,Ce4,EA035,?,EA035-NA,,,,,, +41844,Ce5,EA035,All types,EA035-8,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +41845,Ce6,EA035,All types,EA035-8,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +41846,Ce7,EA035,?,EA035-NA,,,,,, +41847,Ce8,EA035,All types,EA035-8,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +41848,Cf1,EA035,All types,EA035-8,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +41849,Cf2,EA035,?,EA035-NA,,,,,, +41850,Cf3,EA035,?,EA035-NA,,,,,, +41851,Cf4,EA035,?,EA035-NA,,,,,, +41852,Cf5,EA035,All types,EA035-8,,miner1939,,1930,EthnographicAtlas_1967_p83, +41853,Cg1,EA035,All types,EA035-8,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +41854,Cg2,EA035,?,EA035-NA,,,,,, +41855,Cg3,EA035,All types,EA035-8,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +41856,Cg4,EA035,Physical skill only,EA035-2,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +41857,Cg5,EA035,?,EA035-NA,,,,,, +41858,Ch1,EA035,All types,EA035-8,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +41859,Ch10,EA035,?,EA035-NA,,,,,, +41860,Ch11,EA035,?,EA035-NA,,,,,, +41861,Ch2,EA035,Chance only,EA035-3,Based on a possibly incomplete list of games by Koenig,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +41862,Ch3,EA035,All types,EA035-8,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +41863,Ch4,EA035,?,EA035-NA,,,,,, +41864,Ch5,EA035,?,EA035-NA,,,,,, +41865,Ch6,EA035,All types,EA035-8,,ember1954,,1910,EthnographicAtlas_1967_p83, +41866,Ch7,EA035,?,EA035-NA,,,,,, +41867,Ch8,EA035,All types,EA035-8,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +41868,Ch9,EA035,All types,EA035-8,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +41869,Ci1,EA035,?,EA035-NA,,,,,, +41870,Ci10,EA035,?,EA035-NA,,,,,, +41871,Ci11,EA035,?,EA035-NA,,,,,, +41872,Ci12,EA035,Physical skill only,EA035-2,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +41873,Ci2,EA035,?,EA035-NA,,,,,, +41874,Ci3,EA035,?,EA035-NA,,,,,, +41875,Ci4,EA035,?,EA035-NA,,,,,, +41876,Ci5,EA035,All types,EA035-8,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +41877,Ci6,EA035,?,EA035-NA,,,,,, +41878,Ci7,EA035,?,EA035-NA,,,,,, +41879,Ci8,EA035,?,EA035-NA,,,,,, +41880,Ci9,EA035,?,EA035-NA,,,,,, +41881,Cj1,EA035,All types,EA035-8,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +41882,Cj10,EA035,?,EA035-NA,,,,,, +41883,Cj2,EA035,Physical skill only,EA035-2,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +41884,Cj3,EA035,?,EA035-NA,,,,,, +41885,Cj4,EA035,?,EA035-NA,,,,,, +41886,Cj5,EA035,?,EA035-NA,,,,,, +41887,Cj6,EA035,?,EA035-NA,,,,,, +41888,Cj7,EA035,?,EA035-NA,,,,,, +41889,Cj8,EA035,Physical skill only,EA035-2,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +41890,Cj9,EA035,?,EA035-NA,,,,,, +41891,Ea1,EA035,?,EA035-NA,,,,,, +41892,Ea10,EA035,?,EA035-NA,,,,,, +41893,Ea11,EA035,?,EA035-NA,,,,,, +41894,Ea12,EA035,?,EA035-NA,,,,,, +41895,Ea13,EA035,?,EA035-NA,,,,,, +41896,Ea2,EA035,?,EA035-NA,,,,,, +41897,Ea3,EA035,?,EA035-NA,,,,,, +41898,Ea4,EA035,?,EA035-NA,,,,,, +41899,Ea5,EA035,?,EA035-NA,,,,,, +41900,Ea6,EA035,All types,EA035-8,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +41901,Ea7,EA035,?,EA035-NA,,,,,, +41902,Ea8,EA035,?,EA035-NA,,,,,, +41903,Ea9,EA035,All types,EA035-8,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +41904,Eb1,EA035,All types,EA035-8,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +41905,Eb2,EA035,?,EA035-NA,,,,,, +41906,Eb3,EA035,?,EA035-NA,,,,,, +41907,Eb4,EA035,?,EA035-NA,,,,,, +41908,Eb5,EA035,?,EA035-NA,,,,,, +41909,Eb6,EA035,?,EA035-NA,,,,,, +41910,Eb7,EA035,?,EA035-NA,,,,,, +41911,Eb8,EA035,?,EA035-NA,,,,,, +41912,Ec1,EA035,?,EA035-NA,,,,,, +41913,Ec10,EA035,?,EA035-NA,,,,,, +41914,Ec11,EA035,?,EA035-NA,,,,,, +41915,Ec2,EA035,All types,EA035-8,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41916,Ec3,EA035,Strategy only,EA035-5,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +41917,Ec4,EA035,?,EA035-NA,,,,,, +41918,Ec5,EA035,Physical skill only,EA035-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +41919,Ec6,EA035,?,EA035-NA,,,,,, +41920,Ec7,EA035,Physical skill only,EA035-2,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +41921,Ec8,EA035,?,EA035-NA,,,,,, +41922,Ec9,EA035,?,EA035-NA,,,,,, +41923,Ed1,EA035,All types,EA035-8,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +41924,Ed10,EA035,All types,EA035-8,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +41925,Ed13,EA035,?,EA035-NA,,,,,, +41926,Ed14,EA035,?,EA035-NA,,,,,, +41927,Ed15a,EA035,?,EA035-NA,,,,,, +41928,Ed15b,EA035,Strategy only,EA035-5,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +41929,Ed16,EA035,?,EA035-NA,,,,,, +41930,Ed2,EA035,?,EA035-NA,,,,,, +41931,Ed3,EA035,?,EA035-NA,,,,,, +41932,Ed4,EA035,?,EA035-NA,,,,,, +41933,Ed5,EA035,All types,EA035-8,"In the region, though not in the hamlet",beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41934,Ed6,EA035,Strategy only,EA035-5,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +41935,Ed7,EA035,Strategy only,EA035-5,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +41936,Ed8,EA035,?,EA035-NA,,,,,, +41937,Ed9,EA035,Chance only,EA035-3,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +41938,Ee1,EA035,Physical skill only,EA035-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +41939,Ee2,EA035,Strategy and physical skill,EA035-6,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +41940,Ee3,EA035,Physical skill only,EA035-2,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +41941,Ee4,EA035,?,EA035-NA,,,,,, +41942,Ee5,EA035,All types,EA035-8,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +41943,Ee6,EA035,?,EA035-NA,,,,,, +41944,Ee7,EA035,?,EA035-NA,,,,,, +41945,Ee8,EA035,?,EA035-NA,,,,,, +41946,Ef1,EA035,?,EA035-NA,,,,,, +41947,Ef10,EA035,?,EA035-NA,,,,,, +41948,Ef11,EA035,?,EA035-NA,,,,,, +41949,Ef2,EA035,Strategy and physical skill,EA035-6,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +41950,Ef3,EA035,?,EA035-NA,,,,,, +41951,Ef4,EA035,?,EA035-NA,,,,,, +41952,Ef5,EA035,Physical skill only,EA035-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +41953,Ef6,EA035,?,EA035-NA,,,,,, +41954,Ef7,EA035,?,EA035-NA,,,,,, +41955,Ef8,EA035,Physical skill only,EA035-2,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +41956,Ef9,EA035,?,EA035-NA,,,,,, +41957,Eg1,EA035,No games,EA035-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41958,Eg10,EA035,?,EA035-NA,,,,,, +41959,Eg11,EA035,?,EA035-NA,,,,,, +41960,Eg12,EA035,?,EA035-NA,,,,,, +41961,Eg13,EA035,Physical skill only,EA035-2,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41962,Eg14,EA035,?,EA035-NA,,,,,, +41963,Eg2,EA035,?,EA035-NA,,,,,, +41964,Eg3,EA035,?,EA035-NA,,,,,, +41965,Eg4,EA035,Physical skill only,EA035-2,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +41966,Eg5,EA035,Physical skill only,EA035-2,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +41967,Eg6,EA035,?,EA035-NA,,,,,, +41968,Eg7,EA035,Physical skill only,EA035-2,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +41969,Eg8,EA035,?,EA035-NA,,,,,, +41970,Eg9,EA035,?,EA035-NA,,,,,, +41971,Eh1,EA035,Physical skill only,EA035-2,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +41972,Eh10,EA035,?,EA035-NA,,,,,, +41973,Eh2,EA035,Physical skill only,EA035-2,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +41974,Eh3,EA035,Strategy and physical skill,EA035-6,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +41975,Eh4,EA035,No games,EA035-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41976,Eh5,EA035,Physical skill only,EA035-2,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +41977,Eh6,EA035,?,EA035-NA,,,,,, +41978,Eh7,EA035,Strategy and physical skill,EA035-6,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +41979,Eh8,EA035,?,EA035-NA,,,,,, +41980,Eh9,EA035,?,EA035-NA,,,,,, +41981,Ei1,EA035,No games,EA035-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +41982,Ei10,EA035,?,EA035-NA,,,,,, +41983,Ei11,EA035,?,EA035-NA,,,,,, +41984,Ei12,EA035,?,EA035-NA,,,,,, +41985,Ei13,EA035,Strategy only,EA035-5,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +41986,Ei14,EA035,?,EA035-NA,,,,,, +41987,Ei15,EA035,?,EA035-NA,,,,,, +41988,Ei16,EA035,?,EA035-NA,,,,,, +41989,Ei17,EA035,?,EA035-NA,,,,,, +41990,Ei18,EA035,?,EA035-NA,,,,,, +41991,Ei19,EA035,?,EA035-NA,,,,,, +41992,Ei2,EA035,Physical skill only,EA035-2,,mills1922,,1920,EthnographicAtlas_1967_p91, +41993,Ei20,EA035,?,EA035-NA,,,,,, +41994,Ei3,EA035,?,EA035-NA,,,,,, +41995,Ei4,EA035,Strategy and physical skill,EA035-6,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +41996,Ei5,EA035,?,EA035-NA,,,,,, +41997,Ei6,EA035,?,EA035-NA,,,,,, +41998,Ei7,EA035,No games,EA035-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +41999,Ei8,EA035,Physical skill only,EA035-2,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +42000,Ei9,EA035,?,EA035-NA,,,,,, +42001,Ej1,EA035,?,EA035-NA,,,,,, +42002,Ej10,EA035,?,EA035-NA,,,,,, +42003,Ej11,EA035,?,EA035-NA,,,,,, +42004,Ej12,EA035,?,EA035-NA,,,,,, +42005,Ej13,EA035,?,EA035-NA,,,,,, +42006,Ej14,EA035,No games,EA035-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42007,Ej15,EA035,?,EA035-NA,,,,,, +42008,Ej16,EA035,?,EA035-NA,,,,,, +42009,Ej2,EA035,?,EA035-NA,,,,,, +42010,Ej3,EA035,Physical skill only,EA035-2,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +42011,Ej4,EA035,All types,EA035-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +42012,Ej5,EA035,?,EA035-NA,,,,,, +42013,Ej6,EA035,?,EA035-NA,,,,,, +42014,Ej7,EA035,?,EA035-NA,,,,,, +42015,Ej8,EA035,?,EA035-NA,,,,,, +42016,Ej9,EA035,Strategy only,EA035-5,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +42017,Ia1,EA035,Physical skill only,EA035-2,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +42018,Ia10,EA035,?,EA035-NA,,,,,, +42019,Ia11,EA035,?,EA035-NA,,,,,, +42020,Ia12,EA035,?,EA035-NA,,,,,, +42021,Ia13,EA035,?,EA035-NA,,,,,, +42022,Ia14,EA035,?,EA035-NA,,,,,, +42023,Ia15,EA035,?,EA035-NA,,,,,, +42024,Ia16,EA035,No games,EA035-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +42025,Ia17,EA035,?,EA035-NA,,,,,, +42026,Ia18,EA035,?,EA035-NA,,,,,, +42027,Ia2,EA035,Physical skill only,EA035-2,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +42028,Ia3,EA035,?,EA035-NA,,,,,, +42029,Ia4,EA035,?,EA035-NA,,,,,, +42030,Ia5,EA035,?,EA035-NA,,,,,, +42031,Ia6,EA035,Physical skill only,EA035-2,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42032,Ia7,EA035,?,EA035-NA,,,,,, +42033,Ia8,EA035,?,EA035-NA,,,,,, +42034,Ia9,EA035,?,EA035-NA,,,,,, +42035,Ib1,EA035,Physical skill only,EA035-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42036,Ib2,EA035,Strategy only,EA035-5,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42037,Ib3,EA035,?,EA035-NA,,,,,, +42038,Ib4,EA035,?,EA035-NA,,,,,, +42039,Ib5,EA035,?,EA035-NA,,,,,, +42040,Ib6,EA035,?,EA035-NA,,,,,, +42041,Ib7,EA035,?,EA035-NA,,,,,, +42042,Ib8,EA035,?,EA035-NA,,,,,, +42043,Ib9,EA035,?,EA035-NA,,,,,, +42044,Ic1,EA035,Physical skill only,EA035-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42045,Ic10,EA035,?,EA035-NA,,,,,, +42046,Ic11,EA035,?,EA035-NA,,,,,, +42047,Ic12,EA035,?,EA035-NA,,,,,, +42048,Ic13,EA035,?,EA035-NA,,,,,, +42049,Ic2,EA035,?,EA035-NA,,,,,, +42050,Ic3,EA035,?,EA035-NA,,,,,, +42051,Ic4,EA035,?,EA035-NA,,,,,, +42052,Ic5,EA035,?,EA035-NA,,,,,, +42053,Ic6,EA035,?,EA035-NA,,,,,, +42054,Ic7,EA035,Physical skill only,EA035-2,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +42055,Ic8,EA035,?,EA035-NA,,,,,, +42056,Ic9,EA035,?,EA035-NA,,,,,, +42057,Id1,EA035,Physical skill only,EA035-2,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +42058,Id10,EA035,Physical skill only,EA035-2,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +42059,Id11,EA035,?,EA035-NA,,,,,, +42060,Id12,EA035,?,EA035-NA,,,,,, +42061,Id13,EA035,?,EA035-NA,,,,,, +42062,Id2,EA035,No games,EA035-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +42063,Id3,EA035,Physical skill only,EA035-2,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +42064,Id4,EA035,Physical skill only,EA035-2,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +42065,Id5,EA035,?,EA035-NA,,,,,, +42066,Id6,EA035,?,EA035-NA,,,,,, +42067,Id7,EA035,?,EA035-NA,,,,,, +42068,Id8,EA035,No games,EA035-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +42069,Id9,EA035,?,EA035-NA,,,,,, +42070,Ie1,EA035,?,EA035-NA,,,,,, +42071,Ie10,EA035,?,EA035-NA,,,,,, +42072,Ie11,EA035,Physical skill and chance,EA035-4,,bowers1964,,1950,EthnographicAtlas_1967_p95, +42073,Ie12,EA035,Physical skill only,EA035-2,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42074,Ie13,EA035,?,EA035-NA,,,,,, +42075,Ie14,EA035,?,EA035-NA,,,,,, +42076,Ie15,EA035,?,EA035-NA,,,,,, +42077,Ie16,EA035,?,EA035-NA,,,,,, +42078,Ie17,EA035,?,EA035-NA,,,,,, +42079,Ie18,EA035,Strategy only,EA035-5,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +42080,Ie19,EA035,?,EA035-NA,,,,,, +42081,Ie2,EA035,Physical skill only,EA035-2,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +42082,Ie20,EA035,?,EA035-NA,,,,,, +42083,Ie21,EA035,?,EA035-NA,,,,,, +42084,Ie22,EA035,?,EA035-NA,,,,,, +42085,Ie23,EA035,?,EA035-NA,,,,,, +42086,Ie24,EA035,?,EA035-NA,,,,,, +42087,Ie25,EA035,Physical skill only,EA035-2,,williamson1912,,1920,EthnographicAtlas_1967_p95, +42088,Ie26,EA035,?,EA035-NA,,,,,, +42089,Ie27,EA035,?,EA035-NA,,,,,, +42090,Ie28,EA035,?,EA035-NA,,,,,, +42091,Ie29,EA035,?,EA035-NA,,,,,, +42092,Ie3,EA035,?,EA035-NA,,,,,, +42093,Ie30,EA035,?,EA035-NA,,,,,, +42094,Ie31,EA035,?,EA035-NA,,,,,, +42095,Ie32,EA035,?,EA035-NA,,,,,, +42096,Ie33,EA035,?,EA035-NA,,,,,, +42097,Ie34,EA035,?,EA035-NA,,,,,, +42098,Ie35,EA035,?,EA035-NA,,,,,, +42099,Ie36,EA035,?,EA035-NA,,,,,, +42100,Ie37,EA035,?,EA035-NA,,,,,, +42101,Ie38,EA035,Physical skill only,EA035-2,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +42102,Ie39,EA035,?,EA035-NA,,,,,, +42103,Ie4,EA035,?,EA035-NA,,,,,, +42104,Ie5,EA035,Physical skill only,EA035-2,,williams1936,,1930,EthnographicAtlas_1967_p95, +42105,Ie6,EA035,?,EA035-NA,,,,,, +42106,Ie7,EA035,No games,EA035-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +42107,Ie8,EA035,?,EA035-NA,,,,,, +42108,Ie9,EA035,?,EA035-NA,,,,,, +42109,If1,EA035,Strategy only,EA035-5,"But games of chance, at least those using playing cards, are of relatively recent European origin",barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42110,If10,EA035,?,EA035-NA,,,,,, +42111,If11,EA035,?,EA035-NA,,,,,, +42112,If12,EA035,?,EA035-NA,,,,,, +42113,If13,EA035,?,EA035-NA,,,,,, +42114,If14,EA035,Physical skill only,EA035-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +42115,If15,EA035,?,EA035-NA,,,,,, +42116,If16,EA035,?,EA035-NA,,,,,, +42117,If17,EA035,Physical skill only,EA035-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +42118,If2,EA035,Strategy only,EA035-5,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +42119,If3,EA035,Physical skill only,EA035-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +42120,If4,EA035,Strategy and physical skill,EA035-6,"But the one game of strategy ""was unquestionably borrowed from the Japanese by the young men who had worked on Yap""",burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +42121,If5,EA035,?,EA035-NA,,,,,, +42122,If6,EA035,?,EA035-NA,,,,,, +42123,If7,EA035,?,EA035-NA,,,,,, +42124,If8,EA035,?,EA035-NA,,,,,, +42125,If9,EA035,?,EA035-NA,,,,,, +42126,Ig1,EA035,?,EA035-NA,,,,,, +42127,Ig10,EA035,Physical skill only,EA035-2,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +42128,Ig11,EA035,?,EA035-NA,,,,,, +42129,Ig12,EA035,?,EA035-NA,,,,,, +42130,Ig13,EA035,?,EA035-NA,,,,,, +42131,Ig14,EA035,?,EA035-NA,,,,,, +42132,Ig15,EA035,?,EA035-NA,,,,,, +42133,Ig16,EA035,?,EA035-NA,,,,,, +42134,Ig17,EA035,?,EA035-NA,,,,,, +42135,Ig18,EA035,?,EA035-NA,,,,,, +42136,Ig19,EA035,?,EA035-NA,,,,,, +42137,Ig2,EA035,Physical skill only,EA035-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +42138,Ig20,EA035,?,EA035-NA,,,,,, +42139,Ig21,EA035,?,EA035-NA,,,,,, +42140,Ig3,EA035,Physical skill only,EA035-2,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +42141,Ig4,EA035,Physical skill only,EA035-2,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +42142,Ig5,EA035,?,EA035-NA,,,,,, +42143,Ig6,EA035,Strategy only,EA035-5,,ivens1927,,1900,EthnographicAtlas_1967_p99, +42144,Ig7,EA035,?,EA035-NA,,,,,, +42145,Ig8,EA035,?,EA035-NA,,,,,, +42146,Ig9,EA035,Physical skill only,EA035-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +42147,Ih1,EA035,Physical skill only,EA035-2,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +42148,Ih10,EA035,?,EA035-NA,,,,,, +42149,Ih11,EA035,?,EA035-NA,,,,,, +42150,Ih12,EA035,?,EA035-NA,,,,,, +42151,Ih13,EA035,?,EA035-NA,,,,,, +42152,Ih14,EA035,Physical skill only,EA035-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +42153,Ih2,EA035,Physical skill only,EA035-2,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42154,Ih3,EA035,Physical skill only,EA035-2,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +42155,Ih4,EA035,Physical skill only,EA035-2,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42156,Ih5,EA035,?,EA035-NA,,,,,, +42157,Ih6,EA035,?,EA035-NA,,,,,, +42158,Ih7,EA035,?,EA035-NA,,,,,, +42159,Ih8,EA035,?,EA035-NA,,,,,, +42160,Ih9,EA035,?,EA035-NA,,,,,, +42161,Ii1,EA035,Strategy only,EA035-5,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +42162,Ii10,EA035,?,EA035-NA,,,,,, +42163,Ii12,EA035,Strategy only,EA035-5,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42164,Ii13,EA035,Strategy only,EA035-5,,burrows1937,,1830,EthnographicAtlas_1967_p99, +42165,Ii14,EA035,Strategy only,EA035-5,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +42166,Ii2,EA035,Physical skill only,EA035-2,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +42167,Ii3,EA035,Physical skill only,EA035-2,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +42168,Ii4,EA035,Physical skill only,EA035-2,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +42169,Ii5,EA035,?,EA035-NA,,,,,, +42170,Ii6,EA035,?,EA035-NA,,,,,, +42171,Ii7,EA035,?,EA035-NA,,,,,, +42172,Ii8,EA035,Physical skill only,EA035-2,,burrows1936,,1840,EthnographicAtlas_1967_p99, +42173,Ii9,EA035,Physical skill only,EA035-2,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +42174,Ij1,EA035,Physical skill only,EA035-2,,buck1934,,1820,EthnographicAtlas_1967_p99, +42175,Ij10,EA035,?,EA035-NA,,,,,, +42176,Ij2,EA035,Strategy and physical skill,EA035-6,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +42177,Ij3,EA035,Physical skill only,EA035-2,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +42178,Ij4,EA035,Physical skill only,EA035-2,,buck1932a,,1850,EthnographicAtlas_1967_p103, +42179,Ij5,EA035,?,EA035-NA,,,,,, +42180,Ij6,EA035,All types,EA035-8,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p103, +42181,Ij7,EA035,Physical skill only,EA035-2,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +42182,Ij8,EA035,?,EA035-NA,,,,,, +42183,Ij9,EA035,?,EA035-NA,,,,,, +42184,Na1,EA035,Strategy only,EA035-5,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +42185,Na10,EA035,Strategy only,EA035-5,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +42186,Na11,EA035,Physical skill only,EA035-2,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +42187,Na12,EA035,Strategy only,EA035-5,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +42188,Na13,EA035,Strategy only,EA035-5,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +42189,Na14,EA035,Physical skill only,EA035-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +42190,Na15,EA035,?,EA035-NA,,,,,, +42191,Na16,EA035,Strategy only,EA035-5,,osgood1931,,1860,EthnographicAtlas_1967_p103, +42192,Na17,EA035,Strategy only,EA035-5,But poker and checkers have been widely adopted today,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42193,Na19,EA035,Strategy only,EA035-5,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +42194,Na2,EA035,Strategy only,EA035-5,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +42195,Na20,EA035,Strategy only,EA035-5,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +42196,Na21,EA035,Strategy only,EA035-5,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +42197,Na22,EA035,Strategy only,EA035-5,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +42198,Na23,EA035,Strategy only,EA035-5,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +42199,Na24,EA035,Physical skill only,EA035-2,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +42200,Na25,EA035,Strategy and physical skill,EA035-6,"Formerly 'physical skill only' (code ""2"")",birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +42201,Na26,EA035,Strategy only,EA035-5,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +42202,Na27,EA035,Strategy only,EA035-5,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +42203,Na28,EA035,Strategy only,EA035-5,,jenness1937,,1880,EthnographicAtlas_1967_p103, +42204,Na29,EA035,?,EA035-NA,,,,,, +42205,Na3,EA035,Strategy only,EA035-5,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +42206,Na30,EA035,Strategy only,EA035-5,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +42207,Na31,EA035,Strategy only,EA035-5,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +42208,Na32,EA035,Strategy only,EA035-5,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +42209,Na33,EA035,Strategy only,EA035-5,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +42210,Na34,EA035,?,EA035-NA,,,,,, +42211,Na35,EA035,Strategy only,EA035-5,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +42212,Na36,EA035,Strategy only,EA035-5,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +42213,Na37,EA035,Strategy only,EA035-5,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +42214,Na38,EA035,Strategy only,EA035-5,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +42215,Na39,EA035,Strategy only,EA035-5,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +42216,Na4,EA035,Strategy only,EA035-5,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +42217,Na40,EA035,Strategy only,EA035-5,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +42218,Na41,EA035,Strategy only,EA035-5,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +42219,Na42,EA035,Strategy only,EA035-5,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +42220,Na43,EA035,?,EA035-NA,,,,,, +42221,Na44,EA035,?,EA035-NA,,,,,, +42222,Na45,EA035,Strategy only,EA035-5,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +42223,Na5,EA035,?,EA035-NA,,,,,, +42224,Na6,EA035,Physical skill only,EA035-2,,lantis1946,,1930,EthnographicAtlas_1967_p103, +42225,Na7,EA035,Strategy only,EA035-5,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +42226,Na8,EA035,Physical skill only,EA035-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +42227,Na9,EA035,Strategy only,EA035-5,But chess was introduced by Russian traders,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42228,Nb1,EA035,Strategy only,EA035-5,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +42229,Nb10,EA035,Strategy only,EA035-5,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +42230,Nb11,EA035,Strategy only,EA035-5,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +42231,Nb12,EA035,Strategy only,EA035-5,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +42232,Nb13,EA035,Strategy only,EA035-5,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +42233,Nb14,EA035,Strategy only,EA035-5,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +42234,Nb15,EA035,Strategy only,EA035-5,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +42235,Nb16,EA035,Strategy only,EA035-5,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +42236,Nb17,EA035,Strategy only,EA035-5,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +42237,Nb18,EA035,Strategy only,EA035-5,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +42238,Nb19,EA035,Strategy only,EA035-5,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +42239,Nb2,EA035,Strategy only,EA035-5,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +42240,Nb20,EA035,Strategy only,EA035-5,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +42241,Nb21,EA035,Strategy only,EA035-5,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +42242,Nb22,EA035,Strategy only,EA035-5,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +42243,Nb23,EA035,Strategy only,EA035-5,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +42244,Nb24,EA035,Strategy only,EA035-5,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +42245,Nb25,EA035,Strategy only,EA035-5,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +42246,Nb26,EA035,Strategy only,EA035-5,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +42247,Nb27,EA035,Strategy only,EA035-5,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +42248,Nb28,EA035,Strategy only,EA035-5,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +42249,Nb29,EA035,Strategy only,EA035-5,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +42250,Nb3,EA035,Strategy only,EA035-5,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +42251,Nb30,EA035,Physical skill only,EA035-2,Only games of skill are specifically reported,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +42252,Nb31,EA035,Strategy only,EA035-5,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p107, +42253,Nb32,EA035,Strategy only,EA035-5,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +42254,Nb33,EA035,Strategy only,EA035-5,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +42255,Nb34,EA035,Strategy only,EA035-5,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +42256,Nb35,EA035,Strategy only,EA035-5,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +42257,Nb36,EA035,Strategy only,EA035-5,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +42258,Nb37,EA035,Strategy only,EA035-5,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +42259,Nb38,EA035,Strategy only,EA035-5,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +42260,Nb39,EA035,Strategy only,EA035-5,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +42261,Nb4,EA035,Strategy only,EA035-5,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +42262,Nb5,EA035,Strategy only,EA035-5,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +42263,Nb6,EA035,Strategy only,EA035-5,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +42264,Nb7,EA035,Strategy only,EA035-5,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +42265,Nb8,EA035,Strategy only,EA035-5,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +42266,Nb9,EA035,Strategy only,EA035-5,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +42267,Nc1,EA035,Strategy only,EA035-5,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +42268,Nc10,EA035,Strategy only,EA035-5,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +42269,Nc11,EA035,Strategy only,EA035-5,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +42270,Nc12,EA035,Strategy only,EA035-5,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +42271,Nc13,EA035,Strategy only,EA035-5,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +42272,Nc14,EA035,Strategy only,EA035-5,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +42273,Nc15,EA035,Strategy only,EA035-5,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +42274,Nc16,EA035,Strategy only,EA035-5,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +42275,Nc17,EA035,Strategy only,EA035-5,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +42276,Nc18,EA035,Strategy only,EA035-5,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +42277,Nc19,EA035,Strategy only,EA035-5,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p107, +42278,Nc2,EA035,?,EA035-NA,,,,,, +42279,Nc20,EA035,Strategy only,EA035-5,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +42280,Nc21,EA035,Strategy only,EA035-5,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +42281,Nc22,EA035,Strategy only,EA035-5,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +42282,Nc23,EA035,Strategy only,EA035-5,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +42283,Nc24,EA035,Strategy only,EA035-5,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +42284,Nc25,EA035,Strategy only,EA035-5,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +42285,Nc26,EA035,Strategy only,EA035-5,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +42286,Nc27,EA035,Strategy only,EA035-5,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p107, +42287,Nc28,EA035,Strategy only,EA035-5,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +42288,Nc29,EA035,Strategy only,EA035-5,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +42289,Nc3,EA035,Strategy only,EA035-5,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +42290,Nc30,EA035,Strategy only,EA035-5,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +42291,Nc31,EA035,Strategy only,EA035-5,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +42292,Nc32,EA035,Strategy only,EA035-5,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +42293,Nc33,EA035,Strategy only,EA035-5,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +42294,Nc34,EA035,Strategy only,EA035-5,,meigs1939,,1880,EthnographicAtlas_1967_p107, +42295,Nc4,EA035,Strategy only,EA035-5,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +42296,Nc5,EA035,Strategy only,EA035-5,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +42297,Nc6,EA035,Strategy only,EA035-5,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +42298,Nc7,EA035,Strategy only,EA035-5,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +42299,Nc8,EA035,Strategy only,EA035-5,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +42300,Nc9,EA035,Strategy only,EA035-5,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +42301,Nd1,EA035,Strategy only,EA035-5,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +42302,Nd10,EA035,Strategy only,EA035-5,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +42303,Nd11,EA035,Strategy only,EA035-5,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +42304,Nd12,EA035,Strategy only,EA035-5,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +42305,Nd13,EA035,Strategy only,EA035-5,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +42306,Nd14,EA035,Strategy only,EA035-5,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +42307,Nd15,EA035,Strategy only,EA035-5,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +42308,Nd16,EA035,Strategy only,EA035-5,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +42309,Nd17,EA035,Strategy only,EA035-5,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +42310,Nd18,EA035,Strategy only,EA035-5,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +42311,Nd19,EA035,Strategy only,EA035-5,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +42312,Nd2,EA035,Strategy only,EA035-5,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +42313,Nd20,EA035,Strategy only,EA035-5,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +42314,Nd21,EA035,Strategy only,EA035-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +42315,Nd22,EA035,Strategy only,EA035-5,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +42316,Nd23,EA035,Strategy only,EA035-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +42317,Nd24,EA035,Strategy only,EA035-5,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +42318,Nd25,EA035,Strategy only,EA035-5,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +42319,Nd26,EA035,Strategy only,EA035-5,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +42320,Nd27,EA035,Strategy only,EA035-5,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +42321,Nd28,EA035,Strategy only,EA035-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +42322,Nd29,EA035,Strategy only,EA035-5,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +42323,Nd3,EA035,Strategy only,EA035-5,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +42324,Nd30,EA035,Strategy only,EA035-5,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +42325,Nd31,EA035,Strategy only,EA035-5,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +42326,Nd32,EA035,Strategy only,EA035-5,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +42327,Nd33,EA035,Strategy only,EA035-5,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +42328,Nd34,EA035,Strategy only,EA035-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +42329,Nd35,EA035,Strategy only,EA035-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +42330,Nd36,EA035,Strategy only,EA035-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +42331,Nd37,EA035,Strategy only,EA035-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +42332,Nd38,EA035,Strategy only,EA035-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +42333,Nd39,EA035,Strategy only,EA035-5,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +42334,Nd4,EA035,Strategy only,EA035-5,But poker has become popular in recent times,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +42335,Nd40,EA035,Strategy only,EA035-5,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +42336,Nd41,EA035,Strategy only,EA035-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +42337,Nd42,EA035,Strategy only,EA035-5,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +42338,Nd43,EA035,Strategy only,EA035-5,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +42339,Nd44,EA035,Strategy only,EA035-5,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +42340,Nd45,EA035,Strategy only,EA035-5,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +42341,Nd46,EA035,Strategy only,EA035-5,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +42342,Nd47,EA035,Strategy only,EA035-5,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +42343,Nd48,EA035,Strategy only,EA035-5,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +42344,Nd49,EA035,Strategy only,EA035-5,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +42345,Nd5,EA035,Strategy only,EA035-5,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +42346,Nd50,EA035,Strategy only,EA035-5,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +42347,Nd51,EA035,Strategy only,EA035-5,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +42348,Nd52,EA035,Strategy only,EA035-5,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +42349,Nd53,EA035,Strategy only,EA035-5,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +42350,Nd54,EA035,Strategy only,EA035-5,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42351,Nd55,EA035,Strategy only,EA035-5,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +42352,Nd56,EA035,Strategy only,EA035-5,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +42353,Nd57,EA035,Strategy only,EA035-5,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +42354,Nd58,EA035,Strategy only,EA035-5,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +42355,Nd59,EA035,Strategy only,EA035-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +42356,Nd6,EA035,Strategy only,EA035-5,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +42357,Nd60,EA035,Strategy only,EA035-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +42358,Nd61,EA035,Strategy only,EA035-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +42359,Nd62,EA035,Strategy only,EA035-5,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +42360,Nd63,EA035,Strategy only,EA035-5,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +42361,Nd64,EA035,Strategy only,EA035-5,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +42362,Nd65,EA035,Strategy only,EA035-5,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +42363,Nd66,EA035,Strategy only,EA035-5,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +42364,Nd67,EA035,Strategy only,EA035-5,,gifford1936,,1870,EthnographicAtlas_1967_p111, +42365,Nd7,EA035,Strategy only,EA035-5,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +42366,Nd8,EA035,Strategy only,EA035-5,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +42367,Nd9,EA035,Strategy only,EA035-5,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +42368,Ne1,EA035,Strategy only,EA035-5,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +42369,Ne10,EA035,Strategy only,EA035-5,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +42370,Ne11,EA035,Strategy only,EA035-5,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +42371,Ne12,EA035,Strategy only,EA035-5,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +42372,Ne13,EA035,Strategy only,EA035-5,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +42373,Ne14,EA035,Strategy only,EA035-5,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +42374,Ne15,EA035,Strategy only,EA035-5,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +42375,Ne16,EA035,Physical skill only,EA035-2,"""No gambling or guessing games were noted""",gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +42376,Ne17,EA035,?,EA035-NA,,,,,, +42377,Ne18,EA035,Strategy only,EA035-5,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +42378,Ne19,EA035,Strategy only,EA035-5,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +42379,Ne2,EA035,?,EA035-NA,,,,,, +42380,Ne20,EA035,Strategy only,EA035-5,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p115, +42381,Ne21,EA035,?,EA035-NA,,,,,, +42382,Ne3,EA035,?,EA035-NA,,,,,, +42383,Ne4,EA035,Strategy only,EA035-5,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +42384,Ne5,EA035,Strategy only,EA035-5,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +42385,Ne6,EA035,?,EA035-NA,,,,,, +42386,Ne7,EA035,?,EA035-NA,,,,,, +42387,Ne8,EA035,Strategy only,EA035-5,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +42388,Ne9,EA035,Strategy only,EA035-5,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +42389,Nf10,EA035,Strategy only,EA035-5,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +42390,Nf11,EA035,Strategy only,EA035-5,,whitman1937,,1870,EthnographicAtlas_1967_p115, +42391,Nf12,EA035,Strategy only,EA035-5,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +42392,Nf13,EA035,Strategy only,EA035-5,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42393,Nf14,EA035,Strategy only,EA035-5,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +42394,Nf15,EA035,?,EA035-NA,,,,,, +42395,Nf2,EA035,?,EA035-NA,,,,,, +42396,Nf3,EA035,Strategy only,EA035-5,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +42397,Nf4,EA035,Strategy only,EA035-5,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +42398,Nf5,EA035,?,EA035-NA,,,,,, +42399,Nf6,EA035,Strategy only,EA035-5,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +42400,Nf7,EA035,?,EA035-NA,,,,,, +42401,Nf8,EA035,Strategy only,EA035-5,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +42402,Nf9,EA035,Strategy only,EA035-5,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +42403,Ng1,EA035,Strategy only,EA035-5,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +42404,Ng10,EA035,Strategy only,EA035-5,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +42405,Ng11,EA035,Strategy only,EA035-5,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p115, +42406,Ng12,EA035,?,EA035-NA,,,,,, +42407,Ng13,EA035,?,EA035-NA,,,,,, +42408,Ng14,EA035,?,EA035-NA,,,,,, +42409,Ng15,EA035,?,EA035-NA,,,,,, +42410,Ng2,EA035,?,EA035-NA,,,,,, +42411,Ng3,EA035,Strategy only,EA035-5,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +42412,Ng4,EA035,?,EA035-NA,,,,,, +42413,Ng5,EA035,Strategy only,EA035-5,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +42414,Ng6,EA035,?,EA035-NA,,,,,, +42415,Ng7,EA035,Physical skill only,EA035-2,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +42416,Ng8,EA035,?,EA035-NA,,,,,, +42417,Ng9,EA035,Strategy only,EA035-5,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +42418,Nh1,EA035,Strategy only,EA035-5,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +42419,Nh10,EA035,Strategy only,EA035-5,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +42420,Nh11,EA035,?,EA035-NA,,,,,, +42421,Nh12,EA035,?,EA035-NA,,,,,, +42422,Nh13,EA035,?,EA035-NA,,,,,, +42423,Nh14,EA035,?,EA035-NA,,,,,, +42424,Nh15,EA035,Strategy only,EA035-5,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +42425,Nh16,EA035,Strategy only,EA035-5,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42426,Nh17,EA035,Strategy only,EA035-5,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +42427,Nh18,EA035,?,EA035-NA,,,,,, +42428,Nh19,EA035,Strategy only,EA035-5,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +42429,Nh2,EA035,?,EA035-NA,,,,,, +42430,Nh20,EA035,Strategy only,EA035-5,,gifford1931,,1860,EthnographicAtlas_1967_p115, +42431,Nh21,EA035,Strategy only,EA035-5,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42432,Nh22,EA035,Strategy only,EA035-5,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +42433,Nh23,EA035,?,EA035-NA,,,,,, +42434,Nh24,EA035,Strategy only,EA035-5,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +42435,Nh25,EA035,?,EA035-NA,,,,,, +42436,Nh26,EA035,?,EA035-NA,,,,,, +42437,Nh27,EA035,?,EA035-NA,,,,,, +42438,Nh3,EA035,Strategy only,EA035-5,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +42439,Nh4,EA035,All types,EA035-8,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +42440,Nh5,EA035,Strategy only,EA035-5,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +42441,Nh6,EA035,Strategy only,EA035-5,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +42442,Nh7,EA035,?,EA035-NA,,,,,, +42443,Nh8,EA035,Strategy only,EA035-5,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +42444,Nh9,EA035,Strategy only,EA035-5,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p115, +42445,Ni1,EA035,All types,EA035-8,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +42446,Ni2,EA035,Strategy only,EA035-5,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +42447,Ni3,EA035,No games,EA035-1,"Zingg specifically reports ""an absence of games""",grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +42448,Ni4,EA035,?,EA035-NA,,,,,, +42449,Ni5,EA035,Strategy only,EA035-5,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +42450,Ni6,EA035,Strategy only,EA035-5,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +42451,Ni7,EA035,Strategy only,EA035-5,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +42452,Ni8,EA035,?,EA035-NA,,,,,, +42453,Ni9,EA035,?,EA035-NA,,,,,, +42454,Nj1,EA035,?,EA035-NA,,,,,, +42455,Nj10,EA035,?,EA035-NA,,,,,, +42456,Nj11,EA035,?,EA035-NA,,,,,, +42457,Nj12,EA035,?,EA035-NA,,,,,, +42458,Nj13,EA035,?,EA035-NA,,,,,, +42459,Nj14,EA035,?,EA035-NA,,,,,, +42460,Nj2,EA035,All types,EA035-8,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +42461,Nj3,EA035,Physical skill only,EA035-2,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +42462,Nj4,EA035,?,EA035-NA,,,,,, +42463,Nj5,EA035,?,EA035-NA,,,,,, +42464,Nj6,EA035,?,EA035-NA,,,,,, +42465,Nj7,EA035,?,EA035-NA,,,,,, +42466,Nj8,EA035,?,EA035-NA,,,,,, +42467,Nj9,EA035,No games,EA035-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +42468,Sa1,EA035,No games,EA035-1,Ball games and checkers have recently been introduced,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +42469,Sa10,EA035,?,EA035-NA,,,,,, +42470,Sa11,EA035,?,EA035-NA,,,,,, +42471,Sa12,EA035,?,EA035-NA,,,,,, +42472,Sa13,EA035,?,EA035-NA,,,,,, +42473,Sa14,EA035,?,EA035-NA,,,,,, +42474,Sa15,EA035,?,EA035-NA,,,,,, +42475,Sa16,EA035,?,EA035-NA,,,,,, +42476,Sa17,EA035,?,EA035-NA,,,,,, +42477,Sa2,EA035,?,EA035-NA,,,,,, +42478,Sa3,EA035,No games,EA035-1,,wisdom1940,,1930,EthnographicAtlas_1967_p119, +42479,Sa4,EA035,?,EA035-NA,,,,,, +42480,Sa5,EA035,No games,EA035-1,Absence of games is specifically reported by Gabb,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +42481,Sa6,EA035,Strategy only,EA035-5,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +42482,Sa7,EA035,?,EA035-NA,,,,,, +42483,Sa8,EA035,?,EA035-NA,,,,,, +42484,Sa9,EA035,Physical skill only,EA035-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +42485,Sb1,EA035,?,EA035-NA,No data except a reference to ball games,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +42486,Sb2,EA035,No games,EA035-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +42487,Sb3,EA035,?,EA035-NA,,,,,, +42488,Sb4,EA035,?,EA035-NA,,,,,, +42489,Sb5,EA035,?,EA035-NA,,,,,, +42490,Sb6,EA035,Physical skill only,EA035-2,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +42491,Sb7,EA035,?,EA035-NA,,,,,, +42492,Sb8,EA035,Physical skill only,EA035-2,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +42493,Sb9,EA035,Physical skill only,EA035-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +42494,Sc1,EA035,Physical skill only,EA035-2,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +42495,Sc10,EA035,?,EA035-NA,,,,,, +42496,Sc11,EA035,?,EA035-NA,,,,,, +42497,Sc12,EA035,?,EA035-NA,,,,,, +42498,Sc13,EA035,?,EA035-NA,,,,,, +42499,Sc14,EA035,?,EA035-NA,,,,,, +42500,Sc15,EA035,?,EA035-NA,,,,,, +42501,Sc16,EA035,?,EA035-NA,,,,,, +42502,Sc17,EA035,?,EA035-NA,,,,,, +42503,Sc18,EA035,Strategy and physical skill,EA035-6,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +42504,Sc2,EA035,No games,EA035-1,,leedsnd,,1950,EthnographicAtlas_1967_p119, +42505,Sc3,EA035,Physical skill only,EA035-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +42506,Sc4,EA035,Physical skill only,EA035-2,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +42507,Sc5,EA035,Physical skill only,EA035-2,,farabee1918,,1900,EthnographicAtlas_1967_p119, +42508,Sc6,EA035,?,EA035-NA,,,,,, +42509,Sc7,EA035,?,EA035-NA,,,,,, +42510,Sc8,EA035,?,EA035-NA,,,,,, +42511,Sc9,EA035,?,EA035-NA,,,,,, +42512,Sd1,EA035,?,EA035-NA,,,,,, +42513,Sd2,EA035,Physical skill only,EA035-2,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +42514,Sd3,EA035,?,EA035-NA,,,,,, +42515,Sd4,EA035,?,EA035-NA,,,,,, +42516,Sd5,EA035,?,EA035-NA,,,,,, +42517,Sd6,EA035,?,EA035-NA,,,,,, +42518,Sd7,EA035,?,EA035-NA,,,,,, +42519,Sd8,EA035,?,EA035-NA,,,,,, +42520,Sd9,EA035,?,EA035-NA,,,,,, +42521,Se1,EA035,Physical skill only,EA035-2,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +42522,Se10,EA035,?,EA035-NA,,,,,, +42523,Se11,EA035,?,EA035-NA,,,,,, +42524,Se12,EA035,?,EA035-NA,,,,,, +42525,Se2,EA035,Physical skill only,EA035-2,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +42526,Se3,EA035,No games,EA035-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +42527,Se4,EA035,Physical skill only,EA035-2,,fejos1943,,1940,EthnographicAtlas_1967_p119, +42528,Se5,EA035,No games,EA035-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +42529,Se6,EA035,Physical skill only,EA035-2,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +42530,Se7,EA035,?,EA035-NA,,,,,, +42531,Se8,EA035,Physical skill only,EA035-2,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +42532,Se9,EA035,No games,EA035-1,Lack of adult games specifically reported,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +42533,Sf1,EA035,All types,EA035-8,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +42534,Sf2,EA035,Strategy only,EA035-5,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +42535,Sf3,EA035,No games,EA035-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +42536,Sf4,EA035,?,EA035-NA,,,,,, +42537,Sf5,EA035,No games,EA035-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +42538,Sf6,EA035,?,EA035-NA,,,,,, +42539,Sf7,EA035,Physical skill only,EA035-2,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +42540,Sf8,EA035,?,EA035-NA,,,,,, +42541,Sf9,EA035,?,EA035-NA,,,,,, +42542,Sg1,EA035,Physical skill only,EA035-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +42543,Sg2,EA035,Strategy only,EA035-5,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42544,Sg3,EA035,Physical skill only,EA035-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +42545,Sg4,EA035,Strategy only,EA035-5,But games of chance (dice) were borrowed from the Spaniards,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +42546,Sg5,EA035,Physical skill only,EA035-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42547,Sh1,EA035,Strategy only,EA035-5,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +42548,Sh2,EA035,?,EA035-NA,,,,,, +42549,Sh3,EA035,Physical skill only,EA035-2,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +42550,Sh4,EA035,Physical skill only,EA035-2,,oberg1949,,1940,EthnographicAtlas_1967_p123, +42551,Sh5,EA035,Strategy only,EA035-5,But games of chance are not indigenous,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +42552,Sh6,EA035,?,EA035-NA,,,,,, +42553,Sh7,EA035,Strategy only,EA035-5,But games of chance are not indigenous,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p123, +42554,Sh8,EA035,Strategy only,EA035-5,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +42555,Sh9,EA035,Physical skill only,EA035-2,An inference from scantly data,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +42556,Si1,EA035,Physical skill only,EA035-2,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42557,Si10,EA035,No games,EA035-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +42558,Si2,EA035,Physical skill only,EA035-2,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +42559,Si3,EA035,Physical skill only,EA035-2,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42560,Si4,EA035,?,EA035-NA,,,,,, +42561,Si5,EA035,Physical skill only,EA035-2,No data except incidental mention of wrestling,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +42562,Si6,EA035,?,EA035-NA,,,,,, +42563,Si7,EA035,Physical skill only,EA035-2,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +42564,Si8,EA035,?,EA035-NA,,,,,, +42565,Si9,EA035,?,EA035-NA,,,,,, +42566,Sj1,EA035,Physical skill only,EA035-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +42567,Sj10,EA035,?,EA035-NA,,,,,, +42568,Sj11,EA035,Physical skill only,EA035-2,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +42569,Sj2,EA035,Physical skill only,EA035-2,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +42570,Sj3,EA035,?,EA035-NA,,,,,, +42571,Sj4,EA035,Physical skill only,EA035-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +42572,Sj5,EA035,?,EA035-NA,,,,,, +42573,Sj6,EA035,No games,EA035-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42574,Sj7,EA035,Physical skill only,EA035-2,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +42575,Sj8,EA035,No games,EA035-1,Probable on the basis of incomplete data,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +42576,Sj9,EA035,?,EA035-NA,,,,,, +42577,ch12,EA035,Strategy and physical skill,EA035-6,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +42578,ch13,EA035,All types,EA035-8,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +42579,ch14,EA035,Strategy only,EA035-5,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +42580,ch15,EA035,All types,EA035-8,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +42581,ch16,EA035,All types,EA035-8,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +42582,ch17,EA035,All types,EA035-8,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +42583,ch18,EA035,?,EA035-NA,,,,,, +42584,ch19,EA035,All types,EA035-8,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +42585,ch20,EA035,Strategy and physical skill,EA035-6,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +42586,ch21,EA035,All types,EA035-8,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +42587,ch22,EA035,All types,EA035-8,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +42588,ch23,EA035,All types,EA035-8,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +42589,ch24,EA035,?,EA035-NA,,,,,, +42590,ch25,EA035,All types,EA035-8,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +42591,ch26,EA035,All types,EA035-8,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +42592,ch27,EA035,All types,EA035-8,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +42593,ch28,EA035,?,EA035-NA,,,,,, +42594,ec12,EA035,All types,EA035-8,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +42595,ec13,EA035,?,EA035-NA,,,,,, +42596,ec14,EA035,Strategy and physical skill,EA035-6,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +42597,ec15,EA035,Strategy and physical skill,EA035-6,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +42598,ec16,EA035,Strategy and physical skill,EA035-6,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +42599,ec17,EA035,Strategy and physical skill,EA035-6,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +42600,ec18,EA035,Strategy and physical skill,EA035-6,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +42601,ec19,EA035,Strategy and physical skill,EA035-6,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +42602,ec20,EA035,Strategy and physical skill,EA035-6,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +42603,ec21,EA035,Strategy and physical skill,EA035-6,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +42604,Aa1,EA036,One to six months,EA036-3,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +42605,Aa2,EA036,One to six months,EA036-3,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +42606,Aa3,EA036,One to six months,EA036-3,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +42607,Aa4,EA036,?,EA036-NA,,,,,, +42608,Aa5,EA036,A year to two years,EA036-5,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +42609,Aa6,EA036,?,EA036-NA,,,,,, +42610,Aa7,EA036,More than two years,EA036-6,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +42611,Aa8,EA036,?,EA036-NA,,,,,, +42612,Aa9,EA036,?,EA036-NA,,,,,, +42613,Ab1,EA036,?,EA036-NA,,,,,, +42614,Ab10,EA036,A year to two years,EA036-5,,hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +42615,Ab11,EA036,?,EA036-NA,,,,,, +42616,Ab12,EA036,?,EA036-NA,,,,,, +42617,Ab13,EA036,Up to one month,EA036-2,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +42618,Ab14,EA036,One to six months,EA036-3,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +42619,Ab15,EA036,?,EA036-NA,,,,,, +42620,Ab16,EA036,?,EA036-NA,,,,,, +42621,Ab17,EA036,?,EA036-NA,,,,,, +42622,Ab18,EA036,?,EA036-NA,,,,,, +42623,Ab19,EA036,Six months to a year,EA036-4,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +42624,Ab2,EA036,?,EA036-NA,,,,,, +42625,Ab20,EA036,?,EA036-NA,,,,,, +42626,Ab21a,EA036,?,EA036-NA,,,,,, +42627,Ab21b,EA036,?,EA036-NA,,,,,, +42628,Ab22,EA036,?,EA036-NA,,,,,, +42629,Ab3,EA036,?,EA036-NA,,,,,, +42630,Ab4,EA036,A year to two years,EA036-5,,junod1927,,1920,EthnographicAtlas_1967_p63, +42631,Ab5,EA036,?,EA036-NA,,,,,, +42632,Ab6,EA036,More than two years,EA036-6,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +42633,Ab7,EA036,?,EA036-NA,,,,,, +42634,Ab8,EA036,?,EA036-NA,,,,,, +42635,Ab9,EA036,?,EA036-NA,,,,,, +42636,Ac1,EA036,More than two years,EA036-6,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +42637,Ac10,EA036,One to six months,EA036-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +42638,Ac11,EA036,?,EA036-NA,,,,,, +42639,Ac12,EA036,?,EA036-NA,,,,,, +42640,Ac13,EA036,?,EA036-NA,,,,,, +42641,Ac14,EA036,?,EA036-NA,,,,,, +42642,Ac15,EA036,?,EA036-NA,,,,,, +42643,Ac16,EA036,?,EA036-NA,,,,,, +42644,Ac17,EA036,More than two years,EA036-6,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +42645,Ac18,EA036,?,EA036-NA,,,,,, +42646,Ac19,EA036,?,EA036-NA,,,,,, +42647,Ac2,EA036,?,EA036-NA,,,,,, +42648,Ac20,EA036,?,EA036-NA,,,,,, +42649,Ac21,EA036,?,EA036-NA,,,,,, +42650,Ac22,EA036,?,EA036-NA,,,,,, +42651,Ac23,EA036,?,EA036-NA,,,,,, +42652,Ac24,EA036,?,EA036-NA,,,,,, +42653,Ac25,EA036,?,EA036-NA,,,,,, +42654,Ac26,EA036,?,EA036-NA,,,,,, +42655,Ac27,EA036,?,EA036-NA,,,,,, +42656,Ac28,EA036,?,EA036-NA,,,,,, +42657,Ac29,EA036,?,EA036-NA,,,,,, +42658,Ac3,EA036,One to six months,EA036-3,There is a ritual act of intercourse when the child is two months old,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +42659,Ac30,EA036,A year to two years,EA036-5,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +42660,Ac31,EA036,?,EA036-NA,,,,,, +42661,Ac32,EA036,?,EA036-NA,,,,,, +42662,Ac33,EA036,?,EA036-NA,,,,,, +42663,Ac34,EA036,?,EA036-NA,,,,,, +42664,Ac35,EA036,?,EA036-NA,,,,,, +42665,Ac36,EA036,A year to two years,EA036-5,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +42666,Ac37,EA036,?,EA036-NA,,,,,, +42667,Ac38,EA036,?,EA036-NA,,,,,, +42668,Ac39,EA036,?,EA036-NA,,,,,, +42669,Ac4,EA036,One to six months,EA036-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +42670,Ac40,EA036,?,EA036-NA,,,,,, +42671,Ac41,EA036,?,EA036-NA,,,,,, +42672,Ac42,EA036,?,EA036-NA,,,,,, +42673,Ac43,EA036,?,EA036-NA,,,,,, +42674,Ac5,EA036,Up to one month,EA036-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +42675,Ac6,EA036,?,EA036-NA,,,,,, +42676,Ac7,EA036,A year to two years,EA036-5,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +42677,Ac8,EA036,?,EA036-NA,,,,,, +42678,Ac9,EA036,?,EA036-NA,,,,,, +42679,Ad1,EA036,?,EA036-NA,,,,,, +42680,Ad10,EA036,?,EA036-NA,,,,,, +42681,Ad11,EA036,A year to two years,EA036-5,Except for a ceremonial act of intercourse when the baby is several months old,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +42682,Ad12,EA036,Up to one month,EA036-2,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +42683,Ad13,EA036,?,EA036-NA,,,,,, +42684,Ad14,EA036,Six months to a year,EA036-4,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +42685,Ad15,EA036,?,EA036-NA,,,,,, +42686,Ad16,EA036,?,EA036-NA,,,,,, +42687,Ad17,EA036,?,EA036-NA,,,,,, +42688,Ad18,EA036,?,EA036-NA,,,,,, +42689,Ad19,EA036,?,EA036-NA,,,,,, +42690,Ad2,EA036,?,EA036-NA,,,,,, +42691,Ad20,EA036,A year to two years,EA036-5,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +42692,Ad21,EA036,?,EA036-NA,,,,,, +42693,Ad22,EA036,?,EA036-NA,,,,,, +42694,Ad23,EA036,?,EA036-NA,,,,,, +42695,Ad24,EA036,A year to two years,EA036-5,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +42696,Ad25,EA036,?,EA036-NA,,,,,, +42697,Ad26,EA036,?,EA036-NA,,,,,, +42698,Ad27,EA036,?,EA036-NA,,,,,, +42699,Ad28,EA036,?,EA036-NA,,,,,, +42700,Ad29,EA036,?,EA036-NA,,,,,, +42701,Ad3,EA036,One to six months,EA036-3,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +42702,Ad30,EA036,?,EA036-NA,,,,,, +42703,Ad31,EA036,?,EA036-NA,,,,,, +42704,Ad32,EA036,?,EA036-NA,,,,,, +42705,Ad33,EA036,?,EA036-NA,,,,,, +42706,Ad34,EA036,No taboo,EA036-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +42707,Ad35,EA036,?,EA036-NA,,,,,, +42708,Ad36,EA036,?,EA036-NA,,,,,, +42709,Ad37,EA036,?,EA036-NA,,,,,, +42710,Ad38,EA036,?,EA036-NA,,,,,, +42711,Ad39,EA036,?,EA036-NA,,,,,, +42712,Ad4,EA036,One to six months,EA036-3,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +42713,Ad40,EA036,One to six months,EA036-3,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +42714,Ad41,EA036,?,EA036-NA,,,,,, +42715,Ad42,EA036,?,EA036-NA,,,,,, +42716,Ad43,EA036,?,EA036-NA,,,,,, +42717,Ad44,EA036,?,EA036-NA,,,,,, +42718,Ad45,EA036,?,EA036-NA,,,,,, +42719,Ad46,EA036,?,EA036-NA,,,,,, +42720,Ad47,EA036,?,EA036-NA,,,,,, +42721,Ad48,EA036,?,EA036-NA,,,,,, +42722,Ad49,EA036,?,EA036-NA,,,,,, +42723,Ad5,EA036,?,EA036-NA,,,,,, +42724,Ad50,EA036,?,EA036-NA,,,,,, +42725,Ad51,EA036,Six months to a year,EA036-4,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +42726,Ad6,EA036,?,EA036-NA,"Coitus interrupts is practiced from ""very soon"" after childbirth until the child is able to walk",charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +42727,Ad7,EA036,A year to two years,EA036-5,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +42728,Ad8,EA036,More than two years,EA036-6,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +42729,Ad9,EA036,?,EA036-NA,,,,,, +42730,Ae1,EA036,?,EA036-NA,,,,,, +42731,Ae10,EA036,More than two years,EA036-6,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +42732,Ae11,EA036,A year to two years,EA036-5,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +42733,Ae12,EA036,?,EA036-NA,,,,,, +42734,Ae13,EA036,?,EA036-NA,,,,,, +42735,Ae14,EA036,?,EA036-NA,,,,,, +42736,Ae15,EA036,?,EA036-NA,,,,,, +42737,Ae16,EA036,?,EA036-NA,,,,,, +42738,Ae17,EA036,A year to two years,EA036-5,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +42739,Ae18,EA036,?,EA036-NA,,,,,, +42740,Ae19,EA036,?,EA036-NA,,,,,, +42741,Ae2,EA036,A year to two years,EA036-5,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +42742,Ae20,EA036,?,EA036-NA,,,,,, +42743,Ae21,EA036,?,EA036-NA,,,,,, +42744,Ae22,EA036,?,EA036-NA,,,,,, +42745,Ae23,EA036,?,EA036-NA,,,,,, +42746,Ae24,EA036,?,EA036-NA,,,,,, +42747,Ae25,EA036,?,EA036-NA,,,,,, +42748,Ae26,EA036,?,EA036-NA,,,,,, +42749,Ae27,EA036,?,EA036-NA,,,,,, +42750,Ae28,EA036,?,EA036-NA,,,,,, +42751,Ae29,EA036,?,EA036-NA,,,,,, +42752,Ae3,EA036,A year to two years,EA036-5,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +42753,Ae30,EA036,?,EA036-NA,,,,,, +42754,Ae31,EA036,?,EA036-NA,,,,,, +42755,Ae32,EA036,?,EA036-NA,,,,,, +42756,Ae33,EA036,?,EA036-NA,,,,,, +42757,Ae34,EA036,?,EA036-NA,,,,,, +42758,Ae35,EA036,?,EA036-NA,,,,,, +42759,Ae36,EA036,?,EA036-NA,,,,,, +42760,Ae37,EA036,?,EA036-NA,,,,,, +42761,Ae38,EA036,?,EA036-NA,,,,,, +42762,Ae39,EA036,Six months to a year,EA036-4,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +42763,Ae4,EA036,Up to one month,EA036-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +42764,Ae40,EA036,?,EA036-NA,,,,,, +42765,Ae41,EA036,?,EA036-NA,,,,,, +42766,Ae42,EA036,?,EA036-NA,,,,,, +42767,Ae43,EA036,?,EA036-NA,,,,,, +42768,Ae44,EA036,?,EA036-NA,,,,,, +42769,Ae45,EA036,?,EA036-NA,,,,,, +42770,Ae46,EA036,?,EA036-NA,,,,,, +42771,Ae47,EA036,?,EA036-NA,,,,,, +42772,Ae48,EA036,?,EA036-NA,,,,,, +42773,Ae49,EA036,?,EA036-NA,,,,,, +42774,Ae5,EA036,?,EA036-NA,,,,,, +42775,Ae50,EA036,?,EA036-NA,,,,,, +42776,Ae51,EA036,?,EA036-NA,,,,,, +42777,Ae52,EA036,?,EA036-NA,,,,,, +42778,Ae53,EA036,?,EA036-NA,,,,,, +42779,Ae54,EA036,?,EA036-NA,,,,,, +42780,Ae55,EA036,?,EA036-NA,,,,,, +42781,Ae56,EA036,?,EA036-NA,,,,,, +42782,Ae57,EA036,?,EA036-NA,,,,,, +42783,Ae58,EA036,?,EA036-NA,,,,,, +42784,Ae59,EA036,?,EA036-NA,,,,,, +42785,Ae6,EA036,?,EA036-NA,,,,,, +42786,Ae7,EA036,?,EA036-NA,,,,,, +42787,Ae8,EA036,One to six months,EA036-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +42788,Ae9,EA036,?,EA036-NA,,,,,, +42789,Af1,EA036,Six months to a year,EA036-4,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +42790,Af10,EA036,?,EA036-NA,"""The period of lactation lasts about two years""",ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +42791,Af11,EA036,?,EA036-NA,,,,,, +42792,Af12,EA036,?,EA036-NA,,,,,, +42793,Af13,EA036,?,EA036-NA,,,,,, +42794,Af14,EA036,?,EA036-NA,,,,,, +42795,Af15,EA036,?,EA036-NA,,,,,, +42796,Af16,EA036,?,EA036-NA,,,,,, +42797,Af17,EA036,?,EA036-NA,,,,,, +42798,Af18,EA036,?,EA036-NA,,,,,, +42799,Af19,EA036,Six months to a year,EA036-4,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +42800,Af2,EA036,?,EA036-NA,,,,,, +42801,Af20,EA036,?,EA036-NA,,,,,, +42802,Af21,EA036,?,EA036-NA,,,,,, +42803,Af22,EA036,?,EA036-NA,,,,,, +42804,Af23,EA036,Six months to a year,EA036-4,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +42805,Af24,EA036,?,EA036-NA,,,,,, +42806,Af25,EA036,More than two years,EA036-6,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +42807,Af26,EA036,?,EA036-NA,,,,,, +42808,Af27,EA036,?,EA036-NA,,,,,, +42809,Af28,EA036,Six months to a year,EA036-4,,gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +42810,Af29,EA036,?,EA036-NA,,,,,, +42811,Af3,EA036,Up to one month,EA036-2,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +42812,Af30,EA036,?,EA036-NA,,,,,, +42813,Af31,EA036,?,EA036-NA,,,,,, +42814,Af32,EA036,?,EA036-NA,,,,,, +42815,Af33,EA036,More than two years,EA036-6,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42816,Af34,EA036,?,EA036-NA,,,,,, +42817,Af35,EA036,?,EA036-NA,,,,,, +42818,Af36,EA036,?,EA036-NA,,,,,, +42819,Af37,EA036,?,EA036-NA,,,,,, +42820,Af38,EA036,?,EA036-NA,,,,,, +42821,Af39,EA036,?,EA036-NA,,,,,, +42822,Af4,EA036,A year to two years,EA036-5,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +42823,Af40,EA036,?,EA036-NA,,,,,, +42824,Af41,EA036,?,EA036-NA,,,,,, +42825,Af42,EA036,?,EA036-NA,,,,,, +42826,Af43,EA036,?,EA036-NA,,,,,, +42827,Af44,EA036,?,EA036-NA,,,,,, +42828,Af45,EA036,?,EA036-NA,,,,,, +42829,Af46,EA036,?,EA036-NA,,,,,, +42830,Af47,EA036,?,EA036-NA,,,,,, +42831,Af48,EA036,?,EA036-NA,,,,,, +42832,Af49,EA036,A year to two years,EA036-5,,schwab1947,,1940,EthnographicAtlas_1967_p71, +42833,Af5,EA036,More than two years,EA036-6,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +42834,Af50,EA036,?,EA036-NA,,,,,, +42835,Af51,EA036,?,EA036-NA,,,,,, +42836,Af52,EA036,?,EA036-NA,,,,,, +42837,Af53,EA036,?,EA036-NA,,,,,, +42838,Af54,EA036,?,EA036-NA,,,,,, +42839,Af55,EA036,?,EA036-NA,,,,,, +42840,Af56,EA036,A year to two years,EA036-5,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +42841,Af57,EA036,More than two years,EA036-6,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +42842,Af58,EA036,?,EA036-NA,,,,,, +42843,Af6,EA036,More than two years,EA036-6,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +42844,Af7,EA036,?,EA036-NA,,,,,, +42845,Af8,EA036,More than two years,EA036-6,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +42846,Af9,EA036,?,EA036-NA,,,,,, +42847,Ag1,EA036,More than two years,EA036-6,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +42848,Ag10,EA036,More than two years,EA036-6,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +42849,Ag11,EA036,?,EA036-NA,,,,,, +42850,Ag12,EA036,More than two years,EA036-6,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +42851,Ag13,EA036,More than two years,EA036-6,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +42852,Ag14,EA036,?,EA036-NA,,,,,, +42853,Ag15,EA036,?,EA036-NA,,,,,, +42854,Ag16,EA036,?,EA036-NA,,,,,, +42855,Ag17,EA036,?,EA036-NA,,,,,, +42856,Ag18,EA036,?,EA036-NA,,,,,, +42857,Ag19,EA036,?,EA036-NA,,,,,, +42858,Ag2,EA036,Six months to a year,EA036-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +42859,Ag20,EA036,?,EA036-NA,,,,,, +42860,Ag21,EA036,More than two years,EA036-6,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +42861,Ag22,EA036,?,EA036-NA,,,,,, +42862,Ag23,EA036,?,EA036-NA,,,,,, +42863,Ag24,EA036,?,EA036-NA,,,,,, +42864,Ag25,EA036,?,EA036-NA,,,,,, +42865,Ag26,EA036,?,EA036-NA,,,,,, +42866,Ag27,EA036,?,EA036-NA,,,,,, +42867,Ag28,EA036,?,EA036-NA,,,,,, +42868,Ag29,EA036,?,EA036-NA,,,,,, +42869,Ag3,EA036,?,EA036-NA,,,,,, +42870,Ag30,EA036,?,EA036-NA,,,,,, +42871,Ag31,EA036,?,EA036-NA,,,,,, +42872,Ag32,EA036,?,EA036-NA,,,,,, +42873,Ag33,EA036,?,EA036-NA,,,,,, +42874,Ag34,EA036,?,EA036-NA,,,,,, +42875,Ag35,EA036,?,EA036-NA,,,,,, +42876,Ag36,EA036,?,EA036-NA,,,,,, +42877,Ag37,EA036,?,EA036-NA,,,,,, +42878,Ag38,EA036,?,EA036-NA,,,,,, +42879,Ag39,EA036,?,EA036-NA,,,,,, +42880,Ag4,EA036,More than two years,EA036-6,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +42881,Ag40,EA036,?,EA036-NA,,,,,, +42882,Ag41,EA036,More than two years,EA036-6,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +42883,Ag42,EA036,?,EA036-NA,,,,,, +42884,Ag43,EA036,?,EA036-NA,,,,,, +42885,Ag44,EA036,?,EA036-NA,,,,,, +42886,Ag45,EA036,?,EA036-NA,,,,,, +42887,Ag46,EA036,?,EA036-NA,,,,,, +42888,Ag47,EA036,?,EA036-NA,,,,,, +42889,Ag48,EA036,More than two years,EA036-6,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p75, +42890,Ag49,EA036,?,EA036-NA,,,,,, +42891,Ag5,EA036,More than two years,EA036-6,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +42892,Ag50,EA036,?,EA036-NA,,,,,, +42893,Ag51,EA036,?,EA036-NA,,,,,, +42894,Ag52,EA036,More than two years,EA036-6,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +42895,Ag53,EA036,?,EA036-NA,,,,,, +42896,Ag54,EA036,A year to two years,EA036-5,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +42897,Ag6,EA036,?,EA036-NA,,,,,, +42898,Ag7,EA036,?,EA036-NA,,,,,, +42899,Ag8,EA036,A year to two years,EA036-5,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +42900,Ag9,EA036,?,EA036-NA,,,,,, +42901,Ah1,EA036,More than two years,EA036-6,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +42902,Ah10,EA036,?,EA036-NA,,,,,, +42903,Ah11,EA036,?,EA036-NA,,,,,, +42904,Ah12,EA036,?,EA036-NA,Weaning is said to occur at three or four years of age,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966,"Murdock comment assumed to apply to Col36, not Col38 as stated in Gray (1999)" +42905,Ah13,EA036,More than two years,EA036-6,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +42906,Ah14,EA036,More than two years,EA036-6,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +42907,Ah15,EA036,More than two years,EA036-6,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p75, +42908,Ah16,EA036,?,EA036-NA,,,,,, +42909,Ah17,EA036,?,EA036-NA,,,,,, +42910,Ah18,EA036,?,EA036-NA,,,,,, +42911,Ah19,EA036,?,EA036-NA,,,,,, +42912,Ah2,EA036,?,EA036-NA,,,,,, +42913,Ah20,EA036,A year to two years,EA036-5,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +42914,Ah21,EA036,?,EA036-NA,,,,,, +42915,Ah22,EA036,?,EA036-NA,,,,,, +42916,Ah23,EA036,?,EA036-NA,,,,,, +42917,Ah24,EA036,?,EA036-NA,,,,,, +42918,Ah25,EA036,?,EA036-NA,,,,,, +42919,Ah26,EA036,?,EA036-NA,,,,,, +42920,Ah27,EA036,?,EA036-NA,,,,,, +42921,Ah28,EA036,?,EA036-NA,,,,,, +42922,Ah29,EA036,?,EA036-NA,,,,,, +42923,Ah3,EA036,A year to two years,EA036-5,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +42924,Ah30,EA036,?,EA036-NA,,,,,, +42925,Ah31,EA036,?,EA036-NA,,,,,, +42926,Ah32,EA036,?,EA036-NA,,,,,, +42927,Ah33,EA036,?,EA036-NA,,,,,, +42928,Ah34,EA036,?,EA036-NA,,,,,, +42929,Ah35,EA036,?,EA036-NA,,,,,, +42930,Ah36,EA036,?,EA036-NA,,,,,, +42931,Ah37,EA036,?,EA036-NA,,,,,, +42932,Ah38,EA036,?,EA036-NA,,,,,, +42933,Ah39,EA036,?,EA036-NA,,,,,, +42934,Ah4,EA036,?,EA036-NA,,,,,, +42935,Ah5,EA036,?,EA036-NA,,,,,, +42936,Ah6,EA036,?,EA036-NA,,,,,, +42937,Ah7,EA036,?,EA036-NA,"Mention of a ""fairly long delay"" before resumption of sex relations",hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +42938,Ah8,EA036,?,EA036-NA,,,,,, +42939,Ah9,EA036,More than two years,EA036-6,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75, +42940,Ai1,EA036,?,EA036-NA,,,,,, +42941,Ai10,EA036,?,EA036-NA,,,,,, +42942,Ai11,EA036,?,EA036-NA,,,,,, +42943,Ai12,EA036,A year to two years,EA036-5,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +42944,Ai13,EA036,?,EA036-NA,,,,,, +42945,Ai14,EA036,?,EA036-NA,,,,,, +42946,Ai15,EA036,?,EA036-NA,,,,,, +42947,Ai16,EA036,?,EA036-NA,,,,,, +42948,Ai17,EA036,?,EA036-NA,,,,,, +42949,Ai18,EA036,?,EA036-NA,,,,,, +42950,Ai19,EA036,?,EA036-NA,,,,,, +42951,Ai2,EA036,?,EA036-NA,,,,,, +42952,Ai20,EA036,?,EA036-NA,,,,,, +42953,Ai21,EA036,?,EA036-NA,,,,,, +42954,Ai22,EA036,?,EA036-NA,,,,,, +42955,Ai23,EA036,?,EA036-NA,,,,,, +42956,Ai24,EA036,?,EA036-NA,,,,,, +42957,Ai25,EA036,?,EA036-NA,,,,,, +42958,Ai26,EA036,?,EA036-NA,,,,,, +42959,Ai27,EA036,?,EA036-NA,,,,,, +42960,Ai28,EA036,?,EA036-NA,,,,,, +42961,Ai29,EA036,?,EA036-NA,,,,,, +42962,Ai3,EA036,A year to two years,EA036-5,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +42963,Ai30,EA036,More than two years,EA036-6,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +42964,Ai31,EA036,?,EA036-NA,,,,,, +42965,Ai32,EA036,?,EA036-NA,,,,,, +42966,Ai33,EA036,?,EA036-NA,,,,,, +42967,Ai34,EA036,?,EA036-NA,,,,,, +42968,Ai35,EA036,?,EA036-NA,,,,,, +42969,Ai36,EA036,?,EA036-NA,,,,,, +42970,Ai37,EA036,?,EA036-NA,,,,,, +42971,Ai38,EA036,?,EA036-NA,,,,,, +42972,Ai39,EA036,?,EA036-NA,,,,,, +42973,Ai4,EA036,?,EA036-NA,,,,,, +42974,Ai40,EA036,?,EA036-NA,,,,,, +42975,Ai41,EA036,?,EA036-NA,,,,,, +42976,Ai42,EA036,?,EA036-NA,,,,,, +42977,Ai43,EA036,?,EA036-NA,,,,,, +42978,Ai44,EA036,?,EA036-NA,,,,,, +42979,Ai45,EA036,?,EA036-NA,,,,,, +42980,Ai46,EA036,?,EA036-NA,,,,,, +42981,Ai47,EA036,?,EA036-NA,,,,,, +42982,Ai5,EA036,?,EA036-NA,,,,,, +42983,Ai6,EA036,A year to two years,EA036-5,"From report of ""no intercourse during the period of lactation""",butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +42984,Ai7,EA036,A year to two years,EA036-5,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +42985,Ai8,EA036,?,EA036-NA,,,,,, +42986,Ai9,EA036,?,EA036-NA,,,,,, +42987,Aj1,EA036,?,EA036-NA,,,,,, +42988,Aj10,EA036,?,EA036-NA,,,,,, +42989,Aj11,EA036,?,EA036-NA,,,,,, +42990,Aj12,EA036,?,EA036-NA,,,,,, +42991,Aj13,EA036,?,EA036-NA,,,,,, +42992,Aj14,EA036,?,EA036-NA,,,,,, +42993,Aj15,EA036,?,EA036-NA,,,,,, +42994,Aj16,EA036,?,EA036-NA,,,,,, +42995,Aj17,EA036,?,EA036-NA,,,,,, +42996,Aj18,EA036,A year to two years,EA036-5,,jensen1959,,1950,EthnographicAtlas_1967_p79, +42997,Aj19,EA036,?,EA036-NA,,,,,, +42998,Aj2,EA036,Six months to a year,EA036-4,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +42999,Aj20,EA036,?,EA036-NA,,,,,, +43000,Aj21,EA036,?,EA036-NA,,,,,, +43001,Aj22,EA036,?,EA036-NA,,,,,, +43002,Aj23,EA036,?,EA036-NA,,,,,, +43003,Aj24,EA036,?,EA036-NA,,,,,, +43004,Aj25,EA036,?,EA036-NA,,,,,, +43005,Aj26,EA036,?,EA036-NA,,,,,, +43006,Aj27,EA036,?,EA036-NA,,,,,, +43007,Aj28,EA036,?,EA036-NA,,,,,, +43008,Aj29,EA036,A year to two years,EA036-5,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +43009,Aj3,EA036,A year to two years,EA036-5,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +43010,Aj30,EA036,?,EA036-NA,,,,,, +43011,Aj31,EA036,?,EA036-NA,,,,,, +43012,Aj4,EA036,More than two years,EA036-6,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +43013,Aj5,EA036,A year to two years,EA036-5,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +43014,Aj6,EA036,One to six months,EA036-3,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +43015,Aj7,EA036,One to six months,EA036-3,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +43016,Aj8,EA036,?,EA036-NA,,,,,, +43017,Aj9,EA036,?,EA036-NA,,,,,, +43018,Ca1,EA036,More than two years,EA036-6,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +43019,Ca10,EA036,?,EA036-NA,,,,,, +43020,Ca11,EA036,?,EA036-NA,,,,,, +43021,Ca12,EA036,?,EA036-NA,,,,,, +43022,Ca13,EA036,?,EA036-NA,,,,,, +43023,Ca14,EA036,?,EA036-NA,,,,,, +43024,Ca15,EA036,?,EA036-NA,,,,,, +43025,Ca16,EA036,?,EA036-NA,,,,,, +43026,Ca17,EA036,?,EA036-NA,,,,,, +43027,Ca18,EA036,?,EA036-NA,,,,,, +43028,Ca19,EA036,?,EA036-NA,,,,,, +43029,Ca2,EA036,One to six months,EA036-3,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +43030,Ca20,EA036,?,EA036-NA,,,,,, +43031,Ca21,EA036,?,EA036-NA,,,,,, +43032,Ca22,EA036,?,EA036-NA,,,,,, +43033,Ca23,EA036,A year to two years,EA036-5,,jensen1959,,1950,EthnographicAtlas_1967_p79, +43034,Ca24,EA036,?,EA036-NA,,,,,, +43035,Ca25,EA036,?,EA036-NA,,,,,, +43036,Ca26,EA036,Six months to a year,EA036-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +43037,Ca27,EA036,?,EA036-NA,,,,,, +43038,Ca28,EA036,?,EA036-NA,,,,,, +43039,Ca29,EA036,?,EA036-NA,,,,,, +43040,Ca3,EA036,?,EA036-NA,,,,,, +43041,Ca30,EA036,?,EA036-NA,,,,,, +43042,Ca31,EA036,?,EA036-NA,,,,,, +43043,Ca32,EA036,?,EA036-NA,,,,,, +43044,Ca33,EA036,?,EA036-NA,,,,,, +43045,Ca34,EA036,?,EA036-NA,,,,,, +43046,Ca35,EA036,?,EA036-NA,,,,,, +43047,Ca36,EA036,?,EA036-NA,,,,,, +43048,Ca37,EA036,?,EA036-NA,,,,,, +43049,Ca38,EA036,?,EA036-NA,,,,,, +43050,Ca39,EA036,?,EA036-NA,,,,,, +43051,Ca4,EA036,?,EA036-NA,,,,,, +43052,Ca40,EA036,?,EA036-NA,,,,,, +43053,Ca41,EA036,One to six months,EA036-3,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +43054,Ca42,EA036,?,EA036-NA,,,,,, +43055,Ca43,EA036,?,EA036-NA,,,,,, +43056,Ca5,EA036,?,EA036-NA,,,,,, +43057,Ca6,EA036,?,EA036-NA,,,,,, +43058,Ca7,EA036,A year to two years,EA036-5,"From report of a ""two-year breast-feeding period""",lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +43059,Ca8,EA036,?,EA036-NA,,,,,, +43060,Ca9,EA036,?,EA036-NA,,,,,, +43061,Cb1,EA036,?,EA036-NA,,,,,, +43062,Cb10,EA036,?,EA036-NA,,,,,, +43063,Cb11,EA036,?,EA036-NA,,,,,, +43064,Cb12,EA036,?,EA036-NA,,,,,, +43065,Cb13,EA036,?,EA036-NA,,,,,, +43066,Cb14,EA036,?,EA036-NA,,,,,, +43067,Cb15,EA036,?,EA036-NA,,,,,, +43068,Cb16,EA036,?,EA036-NA,,,,,, +43069,Cb17,EA036,?,EA036-NA,,,,,, +43070,Cb18,EA036,?,EA036-NA,,,,,, +43071,Cb19,EA036,One to six months,EA036-3,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +43072,Cb2,EA036,A year to two years,EA036-5,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +43073,Cb20,EA036,?,EA036-NA,,,,,, +43074,Cb21,EA036,?,EA036-NA,,,,,, +43075,Cb22,EA036,?,EA036-NA,,,,,, +43076,Cb23,EA036,?,EA036-NA,,,,,, +43077,Cb24,EA036,More than two years,EA036-6,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +43078,Cb25,EA036,?,EA036-NA,,,,,, +43079,Cb26,EA036,A year to two years,EA036-5,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +43080,Cb27,EA036,?,EA036-NA,,,,,, +43081,Cb28,EA036,?,EA036-NA,,,,,, +43082,Cb29,EA036,?,EA036-NA,,,,,, +43083,Cb3,EA036,One to six months,EA036-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +43084,Cb4,EA036,?,EA036-NA,,,,,, +43085,Cb5,EA036,?,EA036-NA,,,,,, +43086,Cb6,EA036,?,EA036-NA,,,,,, +43087,Cb7,EA036,?,EA036-NA,,,,,, +43088,Cb8,EA036,?,EA036-NA,,,,,, +43089,Cb9,EA036,?,EA036-NA,,,,,, +43090,Cc1,EA036,?,EA036-NA,,,,,, +43091,Cc10,EA036,?,EA036-NA,,,,,, +43092,Cc11,EA036,?,EA036-NA,,,,,, +43093,Cc12,EA036,?,EA036-NA,,,,,, +43094,Cc13,EA036,?,EA036-NA,,,,,, +43095,Cc14,EA036,?,EA036-NA,,,,,, +43096,Cc15,EA036,?,EA036-NA,,,,,, +43097,Cc16,EA036,?,EA036-NA,,,,,, +43098,Cc17,EA036,?,EA036-NA,,,,,, +43099,Cc18,EA036,?,EA036-NA,,,,,, +43100,Cc19,EA036,?,EA036-NA,,,,,, +43101,Cc2,EA036,?,EA036-NA,,,,,, +43102,Cc20,EA036,?,EA036-NA,,,,,, +43103,Cc3,EA036,?,EA036-NA,,,,,, +43104,Cc4,EA036,?,EA036-NA,,,,,, +43105,Cc5,EA036,?,EA036-NA,,,,,, +43106,Cc6,EA036,?,EA036-NA,,,,,, +43107,Cc7,EA036,?,EA036-NA,,,,,, +43108,Cc8,EA036,?,EA036-NA,,,,,, +43109,Cc9,EA036,?,EA036-NA,,,,,, +43110,Cd1,EA036,?,EA036-NA,,,,,, +43111,Cd10,EA036,?,EA036-NA,,,,,, +43112,Cd11,EA036,?,EA036-NA,,,,,, +43113,Cd12,EA036,?,EA036-NA,,,,,, +43114,Cd13,EA036,?,EA036-NA,,,,,, +43115,Cd14,EA036,?,EA036-NA,,,,,, +43116,Cd15,EA036,?,EA036-NA,,,,,, +43117,Cd16,EA036,?,EA036-NA,,,,,, +43118,Cd17,EA036,?,EA036-NA,,,,,, +43119,Cd18,EA036,?,EA036-NA,,,,,, +43120,Cd19,EA036,?,EA036-NA,,,,,, +43121,Cd2,EA036,One to six months,EA036-3,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +43122,Cd20,EA036,?,EA036-NA,,,,,, +43123,Cd21,EA036,?,EA036-NA,,,,,, +43124,Cd3,EA036,One to six months,EA036-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +43125,Cd4,EA036,?,EA036-NA,,,,,, +43126,Cd5,EA036,?,EA036-NA,,,,,, +43127,Cd6,EA036,?,EA036-NA,,,,,, +43128,Cd7,EA036,?,EA036-NA,,,,,, +43129,Cd8,EA036,?,EA036-NA,,,,,, +43130,Cd9,EA036,?,EA036-NA,,,,,, +43131,Ce1,EA036,?,EA036-NA,,,,,, +43132,Ce2,EA036,?,EA036-NA,,,,,, +43133,Ce3,EA036,?,EA036-NA,,,,,, +43134,Ce4,EA036,?,EA036-NA,,,,,, +43135,Ce5,EA036,No taboo,EA036-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +43136,Ce6,EA036,?,EA036-NA,,,,,, +43137,Ce7,EA036,?,EA036-NA,,,,,, +43138,Ce8,EA036,?,EA036-NA,,,,,, +43139,Cf1,EA036,Up to one month,EA036-2,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +43140,Cf2,EA036,?,EA036-NA,,,,,, +43141,Cf3,EA036,?,EA036-NA,,,,,, +43142,Cf4,EA036,?,EA036-NA,,,,,, +43143,Cf5,EA036,?,EA036-NA,,,,,, +43144,Cg1,EA036,?,EA036-NA,,,,,, +43145,Cg2,EA036,?,EA036-NA,,,,,, +43146,Cg3,EA036,?,EA036-NA,,,,,, +43147,Cg4,EA036,One to six months,EA036-3,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +43148,Cg5,EA036,?,EA036-NA,,,,,, +43149,Ch1,EA036,?,EA036-NA,,,,,, +43150,Ch10,EA036,?,EA036-NA,,,,,, +43151,Ch11,EA036,?,EA036-NA,,,,,, +43152,Ch2,EA036,?,EA036-NA,,,,,, +43153,Ch3,EA036,?,EA036-NA,,,,,, +43154,Ch4,EA036,?,EA036-NA,,,,,, +43155,Ch5,EA036,Up to one month,EA036-2,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +43156,Ch6,EA036,?,EA036-NA,,,,,, +43157,Ch7,EA036,?,EA036-NA,,,,,, +43158,Ch8,EA036,?,EA036-NA,,,,,, +43159,Ch9,EA036,?,EA036-NA,,,,,, +43160,Ci1,EA036,?,EA036-NA,,,,,, +43161,Ci10,EA036,?,EA036-NA,,,,,, +43162,Ci11,EA036,?,EA036-NA,,,,,, +43163,Ci12,EA036,?,EA036-NA,,,,,, +43164,Ci2,EA036,?,EA036-NA,,,,,, +43165,Ci3,EA036,?,EA036-NA,,,,,, +43166,Ci4,EA036,?,EA036-NA,,,,,, +43167,Ci5,EA036,?,EA036-NA,,,,,, +43168,Ci6,EA036,?,EA036-NA,,,,,, +43169,Ci7,EA036,?,EA036-NA,,,,,, +43170,Ci8,EA036,?,EA036-NA,,,,,, +43171,Ci9,EA036,?,EA036-NA,,,,,, +43172,Cj1,EA036,?,EA036-NA,,,,,, +43173,Cj10,EA036,?,EA036-NA,,,,,, +43174,Cj2,EA036,?,EA036-NA,,,,,, +43175,Cj3,EA036,One to six months,EA036-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +43176,Cj4,EA036,?,EA036-NA,,,,,, +43177,Cj5,EA036,?,EA036-NA,,,,,, +43178,Cj6,EA036,?,EA036-NA,,,,,, +43179,Cj7,EA036,?,EA036-NA,,,,,, +43180,Cj8,EA036,One to six months,EA036-3,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +43181,Cj9,EA036,?,EA036-NA,,,,,, +43182,Ea1,EA036,?,EA036-NA,,,,,, +43183,Ea10,EA036,One to six months,EA036-3,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +43184,Ea11,EA036,?,EA036-NA,,,,,, +43185,Ea12,EA036,?,EA036-NA,,,,,, +43186,Ea13,EA036,?,EA036-NA,,,,,, +43187,Ea2,EA036,?,EA036-NA,,,,,, +43188,Ea3,EA036,?,EA036-NA,,,,,, +43189,Ea4,EA036,?,EA036-NA,,,,,, +43190,Ea5,EA036,?,EA036-NA,,,,,, +43191,Ea6,EA036,?,EA036-NA,,,,,, +43192,Ea7,EA036,?,EA036-NA,,,,,, +43193,Ea8,EA036,?,EA036-NA,,,,,, +43194,Ea9,EA036,?,EA036-NA,,,,,, +43195,Eb1,EA036,?,EA036-NA,,,,,, +43196,Eb2,EA036,?,EA036-NA,,,,,, +43197,Eb3,EA036,?,EA036-NA,,,,,, +43198,Eb4,EA036,?,EA036-NA,,,,,, +43199,Eb5,EA036,?,EA036-NA,,,,,, +43200,Eb6,EA036,?,EA036-NA,,,,,, +43201,Eb7,EA036,?,EA036-NA,,,,,, +43202,Eb8,EA036,?,EA036-NA,,,,,, +43203,Ec1,EA036,?,EA036-NA,,,,,, +43204,Ec10,EA036,?,EA036-NA,,,,,, +43205,Ec11,EA036,?,EA036-NA,,,,,, +43206,Ec2,EA036,?,EA036-NA,,,,,, +43207,Ec3,EA036,Up to one month,EA036-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +43208,Ec4,EA036,One to six months,EA036-3,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +43209,Ec5,EA036,One to six months,EA036-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +43210,Ec6,EA036,Up to one month,EA036-2,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +43211,Ec7,EA036,One to six months,EA036-3,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +43212,Ec8,EA036,?,EA036-NA,,,,,, +43213,Ec9,EA036,?,EA036-NA,,,,,, +43214,Ed1,EA036,?,EA036-NA,,,,,, +43215,Ed10,EA036,?,EA036-NA,,,,,, +43216,Ed13,EA036,?,EA036-NA,,,,,, +43217,Ed14,EA036,?,EA036-NA,,,,,, +43218,Ed15a,EA036,?,EA036-NA,,,,,, +43219,Ed15b,EA036,Up to one month,EA036-2,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +43220,Ed16,EA036,?,EA036-NA,,,,,, +43221,Ed2,EA036,?,EA036-NA,,,,,, +43222,Ed3,EA036,?,EA036-NA,,,,,, +43223,Ed4,EA036,?,EA036-NA,,,,,, +43224,Ed5,EA036,Up to one month,EA036-2,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43225,Ed6,EA036,Up to one month,EA036-2,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +43226,Ed7,EA036,?,EA036-NA,,,,,, +43227,Ed8,EA036,?,EA036-NA,,,,,, +43228,Ed9,EA036,?,EA036-NA,,,,,, +43229,Ee1,EA036,?,EA036-NA,,,,,, +43230,Ee2,EA036,More than two years,EA036-6,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +43231,Ee3,EA036,No taboo,EA036-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +43232,Ee4,EA036,?,EA036-NA,,,,,, +43233,Ee5,EA036,Up to one month,EA036-2,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +43234,Ee6,EA036,?,EA036-NA,,,,,, +43235,Ee7,EA036,?,EA036-NA,,,,,, +43236,Ee8,EA036,Up to one month,EA036-2,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +43237,Ef1,EA036,?,EA036-NA,,,,,, +43238,Ef10,EA036,?,EA036-NA,,,,,, +43239,Ef11,EA036,?,EA036-NA,,,,,, +43240,Ef2,EA036,?,EA036-NA,,,,,, +43241,Ef3,EA036,?,EA036-NA,,,,,, +43242,Ef4,EA036,?,EA036-NA,,,,,, +43243,Ef5,EA036,One to six months,EA036-3,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +43244,Ef6,EA036,?,EA036-NA,,,,,, +43245,Ef7,EA036,?,EA036-NA,,,,,, +43246,Ef8,EA036,One to six months,EA036-3,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +43247,Ef9,EA036,?,EA036-NA,,,,,, +43248,Eg1,EA036,Up to one month,EA036-2,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43249,Eg10,EA036,?,EA036-NA,,,,,, +43250,Eg11,EA036,?,EA036-NA,,,,,, +43251,Eg12,EA036,?,EA036-NA,,,,,, +43252,Eg13,EA036,More than two years,EA036-6,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43253,Eg14,EA036,?,EA036-NA,,,,,, +43254,Eg2,EA036,?,EA036-NA,,,,,, +43255,Eg3,EA036,Up to one month,EA036-2,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +43256,Eg4,EA036,One to six months,EA036-3,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +43257,Eg5,EA036,One to six months,EA036-3,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +43258,Eg6,EA036,?,EA036-NA,,,,,, +43259,Eg7,EA036,?,EA036-NA,Duration of the taboo coincides with the nursing period,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +43260,Eg8,EA036,?,EA036-NA,,,,,, +43261,Eg9,EA036,Up to one month,EA036-2,,elwin1939,,1930,EthnographicAtlas_1967_p91, +43262,Eh1,EA036,?,EA036-NA,,,,,, +43263,Eh10,EA036,?,EA036-NA,,,,,, +43264,Eh2,EA036,?,EA036-NA,,,,,, +43265,Eh3,EA036,Up to one month,EA036-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +43266,Eh4,EA036,Up to one month,EA036-2,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43267,Eh5,EA036,?,EA036-NA,,,,,, +43268,Eh6,EA036,?,EA036-NA,,,,,, +43269,Eh7,EA036,?,EA036-NA,,,,,, +43270,Eh8,EA036,?,EA036-NA,,,,,, +43271,Eh9,EA036,?,EA036-NA,,,,,, +43272,Ei1,EA036,?,EA036-NA,,,,,, +43273,Ei10,EA036,?,EA036-NA,,,,,, +43274,Ei11,EA036,?,EA036-NA,,,,,, +43275,Ei12,EA036,?,EA036-NA,,,,,, +43276,Ei13,EA036,?,EA036-NA,,,,,, +43277,Ei14,EA036,?,EA036-NA,,,,,, +43278,Ei15,EA036,?,EA036-NA,,,,,, +43279,Ei16,EA036,?,EA036-NA,,,,,, +43280,Ei17,EA036,?,EA036-NA,,,,,, +43281,Ei18,EA036,?,EA036-NA,,,,,, +43282,Ei19,EA036,?,EA036-NA,,,,,, +43283,Ei2,EA036,?,EA036-NA,,,,,, +43284,Ei20,EA036,?,EA036-NA,,,,,, +43285,Ei3,EA036,?,EA036-NA,,,,,, +43286,Ei4,EA036,?,EA036-NA,,,,,, +43287,Ei5,EA036,?,EA036-NA,,,,,, +43288,Ei6,EA036,One to six months,EA036-3,,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +43289,Ei7,EA036,?,EA036-NA,,,,,, +43290,Ei8,EA036,?,EA036-NA,,,,,, +43291,Ei9,EA036,?,EA036-NA,,,,,, +43292,Ej1,EA036,?,EA036-NA,,,,,, +43293,Ej10,EA036,One to six months,EA036-3,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +43294,Ej11,EA036,?,EA036-NA,,,,,, +43295,Ej12,EA036,?,EA036-NA,,,,,, +43296,Ej13,EA036,?,EA036-NA,,,,,, +43297,Ej14,EA036,A year to two years,EA036-5,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43298,Ej15,EA036,No taboo,EA036-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +43299,Ej16,EA036,One to six months,EA036-3,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +43300,Ej2,EA036,?,EA036-NA,,,,,, +43301,Ej3,EA036,A year to two years,EA036-5,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +43302,Ej4,EA036,A year to two years,EA036-5,"""...weaning begins at about 18 months.""",cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +43303,Ej5,EA036,?,EA036-NA,,,,,, +43304,Ej6,EA036,?,EA036-NA,,,,,, +43305,Ej7,EA036,?,EA036-NA,,,,,, +43306,Ej8,EA036,?,EA036-NA,,,,,, +43307,Ej9,EA036,Up to one month,EA036-2,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +43308,Ia1,EA036,?,EA036-NA,,,,,, +43309,Ia10,EA036,?,EA036-NA,,,,,, +43310,Ia11,EA036,?,EA036-NA,,,,,, +43311,Ia12,EA036,One to six months,EA036-3,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +43312,Ia13,EA036,?,EA036-NA,,,,,, +43313,Ia14,EA036,?,EA036-NA,,,,,, +43314,Ia15,EA036,?,EA036-NA,,,,,, +43315,Ia16,EA036,?,EA036-NA,,,,,, +43316,Ia17,EA036,?,EA036-NA,,,,,, +43317,Ia18,EA036,?,EA036-NA,,,,,, +43318,Ia2,EA036,One to six months,EA036-3,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +43319,Ia3,EA036,?,EA036-NA,,,,,, +43320,Ia4,EA036,?,EA036-NA,,,,,, +43321,Ia5,EA036,?,EA036-NA,,,,,, +43322,Ia6,EA036,?,EA036-NA,,,,,, +43323,Ia7,EA036,?,EA036-NA,,,,,, +43324,Ia8,EA036,?,EA036-NA,,,,,, +43325,Ia9,EA036,?,EA036-NA,,,,,, +43326,Ib1,EA036,?,EA036-NA,,,,,, +43327,Ib2,EA036,One to six months,EA036-3,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43328,Ib3,EA036,One to six months,EA036-3,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +43329,Ib4,EA036,?,EA036-NA,,,,,, +43330,Ib5,EA036,?,EA036-NA,,,,,, +43331,Ib6,EA036,?,EA036-NA,,,,,, +43332,Ib7,EA036,?,EA036-NA,,,,,, +43333,Ib8,EA036,?,EA036-NA,,,,,, +43334,Ib9,EA036,?,EA036-NA,,,,,, +43335,Ic1,EA036,One to six months,EA036-3,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43336,Ic10,EA036,?,EA036-NA,,,,,, +43337,Ic11,EA036,?,EA036-NA,,,,,, +43338,Ic12,EA036,One to six months,EA036-3,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +43339,Ic13,EA036,?,EA036-NA,,,,,, +43340,Ic2,EA036,Six months to a year,EA036-4,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +43341,Ic3,EA036,?,EA036-NA,,,,,, +43342,Ic4,EA036,?,EA036-NA,,,,,, +43343,Ic5,EA036,?,EA036-NA,,,,,, +43344,Ic6,EA036,?,EA036-NA,,,,,, +43345,Ic7,EA036,?,EA036-NA,,,,,, +43346,Ic8,EA036,?,EA036-NA,,,,,, +43347,Ic9,EA036,?,EA036-NA,,,,,, +43348,Id1,EA036,Up to one month,EA036-2,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +43349,Id10,EA036,Up to one month,EA036-2,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +43350,Id11,EA036,?,EA036-NA,,,,,, +43351,Id12,EA036,?,EA036-NA,,,,,, +43352,Id13,EA036,?,EA036-NA,,,,,, +43353,Id2,EA036,Up to one month,EA036-2,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +43354,Id3,EA036,?,EA036-NA,,,,,, +43355,Id4,EA036,?,EA036-NA,,,,,, +43356,Id5,EA036,?,EA036-NA,,,,,, +43357,Id6,EA036,?,EA036-NA,,,,,, +43358,Id7,EA036,?,EA036-NA,,,,,, +43359,Id8,EA036,A year to two years,EA036-5,Children were weaned after two years of age,roth1890,,1830,EthnographicAtlas_1967_p95, +43360,Id9,EA036,?,EA036-NA,,,,,, +43361,Ie1,EA036,Up to one month,EA036-2,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43362,Ie10,EA036,A year to two years,EA036-5,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +43363,Ie11,EA036,More than two years,EA036-6,,bowers1964,,1950,EthnographicAtlas_1967_p95, +43364,Ie12,EA036,More than two years,EA036-6,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43365,Ie13,EA036,?,EA036-NA,,,,,, +43366,Ie14,EA036,?,EA036-NA,,,,,, +43367,Ie15,EA036,Six months to a year,EA036-4,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43368,Ie16,EA036,?,EA036-NA,,,,,, +43369,Ie17,EA036,More than two years,EA036-6,From a report that children are weaned between three and six years of age,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +43370,Ie18,EA036,One to six months,EA036-3,"""Sexual intercourse is strictly prohibited for the time being""",serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +43371,Ie19,EA036,One to six months,EA036-3,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +43372,Ie2,EA036,More than two years,EA036-6,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +43373,Ie20,EA036,?,EA036-NA,,,,,, +43374,Ie21,EA036,?,EA036-NA,,,,,, +43375,Ie22,EA036,?,EA036-NA,,,,,, +43376,Ie23,EA036,?,EA036-NA,,,,,, +43377,Ie24,EA036,Six months to a year,EA036-4,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p95, +43378,Ie25,EA036,?,EA036-NA,,,,,, +43379,Ie26,EA036,A year to two years,EA036-5,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +43380,Ie27,EA036,?,EA036-NA,,,,,, +43381,Ie28,EA036,?,EA036-NA,,,,,, +43382,Ie29,EA036,?,EA036-NA,,,,,, +43383,Ie3,EA036,Six months to a year,EA036-4,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43384,Ie30,EA036,?,EA036-NA,,,,,, +43385,Ie31,EA036,One to six months,EA036-3,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +43386,Ie32,EA036,?,EA036-NA,,,,,, +43387,Ie33,EA036,?,EA036-NA,,,,,, +43388,Ie34,EA036,?,EA036-NA,,,,,, +43389,Ie35,EA036,?,EA036-NA,,,,,, +43390,Ie36,EA036,?,EA036-NA,,,,,, +43391,Ie37,EA036,?,EA036-NA,,,,,, +43392,Ie38,EA036,More than two years,EA036-6,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +43393,Ie39,EA036,?,EA036-NA,,,,,, +43394,Ie4,EA036,More than two years,EA036-6,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43395,Ie5,EA036,Six months to a year,EA036-4,,williams1936,,1930,EthnographicAtlas_1967_p95, +43396,Ie6,EA036,?,EA036-NA,,,,,, +43397,Ie7,EA036,A year to two years,EA036-5,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +43398,Ie8,EA036,?,EA036-NA,,,,,, +43399,Ie9,EA036,?,EA036-NA,,,,,, +43400,If1,EA036,?,EA036-NA,,,,,, +43401,If10,EA036,?,EA036-NA,,,,,, +43402,If11,EA036,?,EA036-NA,,,,,, +43403,If12,EA036,?,EA036-NA,,,,,, +43404,If13,EA036,?,EA036-NA,,,,,, +43405,If14,EA036,Up to one month,EA036-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +43406,If15,EA036,Six months to a year,EA036-4,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +43407,If16,EA036,?,EA036-NA,,,,,, +43408,If17,EA036,Up to one month,EA036-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +43409,If2,EA036,A year to two years,EA036-5,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +43410,If3,EA036,No taboo,EA036-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +43411,If4,EA036,Six months to a year,EA036-4,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +43412,If5,EA036,One to six months,EA036-3,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +43413,If6,EA036,More than two years,EA036-6,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +43414,If7,EA036,?,EA036-NA,,,,,, +43415,If8,EA036,Up to one month,EA036-2,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +43416,If9,EA036,?,EA036-NA,,,,,, +43417,Ig1,EA036,More than two years,EA036-6,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +43418,Ig10,EA036,?,EA036-NA,,,,,, +43419,Ig11,EA036,A year to two years,EA036-5,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +43420,Ig12,EA036,?,EA036-NA,,,,,, +43421,Ig13,EA036,?,EA036-NA,,,,,, +43422,Ig14,EA036,Six months to a year,EA036-4,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +43423,Ig15,EA036,?,EA036-NA,,,,,, +43424,Ig16,EA036,?,EA036-NA,,,,,, +43425,Ig17,EA036,?,EA036-NA,,,,,, +43426,Ig18,EA036,?,EA036-NA,,,,,, +43427,Ig19,EA036,?,EA036-NA,,,,,, +43428,Ig2,EA036,A year to two years,EA036-5,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +43429,Ig20,EA036,?,EA036-NA,,,,,, +43430,Ig21,EA036,?,EA036-NA,,,,,, +43431,Ig3,EA036,A year to two years,EA036-5,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +43432,Ig4,EA036,More than two years,EA036-6,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +43433,Ig5,EA036,A year to two years,EA036-5,,fortune1932b,,1920,EthnographicAtlas_1967_p99, +43434,Ig6,EA036,?,EA036-NA,,,,,, +43435,Ig7,EA036,?,EA036-NA,,,,,, +43436,Ig8,EA036,?,EA036-NA,,,,,, +43437,Ig9,EA036,?,EA036-NA,,,,,, +43438,Ih1,EA036,?,EA036-NA,,,,,, +43439,Ih10,EA036,?,EA036-NA,,,,,, +43440,Ih11,EA036,?,EA036-NA,,,,,, +43441,Ih12,EA036,?,EA036-NA,,,,,, +43442,Ih13,EA036,?,EA036-NA,,,,,, +43443,Ih14,EA036,?,EA036-NA,,,,,, +43444,Ih2,EA036,?,EA036-NA,,,,,, +43445,Ih3,EA036,A year to two years,EA036-5,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +43446,Ih4,EA036,A year to two years,EA036-5,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43447,Ih5,EA036,?,EA036-NA,,,,,, +43448,Ih6,EA036,?,EA036-NA,,,,,, +43449,Ih7,EA036,?,EA036-NA,,,,,, +43450,Ih8,EA036,?,EA036-NA,,,,,, +43451,Ih9,EA036,?,EA036-NA,,,,,, +43452,Ii1,EA036,A year to two years,EA036-5,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +43453,Ii10,EA036,?,EA036-NA,,,,,, +43454,Ii12,EA036,One to six months,EA036-3,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43455,Ii13,EA036,?,EA036-NA,,,,,, +43456,Ii14,EA036,?,EA036-NA,,,,,, +43457,Ii2,EA036,?,EA036-NA,,,,,, +43458,Ii3,EA036,Up to one month,EA036-2,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +43459,Ii4,EA036,One to six months,EA036-3,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +43460,Ii5,EA036,?,EA036-NA,,,,,, +43461,Ii6,EA036,More than two years,EA036-6,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +43462,Ii7,EA036,Six months to a year,EA036-4,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +43463,Ii8,EA036,?,EA036-NA,,,,,, +43464,Ii9,EA036,?,EA036-NA,,,,,, +43465,Ij1,EA036,?,EA036-NA,,,,,, +43466,Ij10,EA036,?,EA036-NA,,,,,, +43467,Ij2,EA036,No taboo,EA036-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +43468,Ij3,EA036,No taboo,EA036-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +43469,Ij4,EA036,?,EA036-NA,,,,,, +43470,Ij5,EA036,?,EA036-NA,,,,,, +43471,Ij6,EA036,?,EA036-NA,,,,,, +43472,Ij7,EA036,One to six months,EA036-3,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +43473,Ij8,EA036,?,EA036-NA,,,,,, +43474,Ij9,EA036,?,EA036-NA,,,,,, +43475,Na1,EA036,?,EA036-NA,,,,,, +43476,Na10,EA036,One to six months,EA036-3,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +43477,Na11,EA036,?,EA036-NA,,,,,, +43478,Na12,EA036,Up to one month,EA036-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +43479,Na13,EA036,One to six months,EA036-3,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +43480,Na14,EA036,More than two years,EA036-6,Inferred from report that children are commonly suckled for five years or more,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +43481,Na15,EA036,?,EA036-NA,,,,,, +43482,Na16,EA036,?,EA036-NA,,,,,, +43483,Na17,EA036,A year to two years,EA036-5,"From the statement that ""breast feeding continued to the age of two or three years""",helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43484,Na19,EA036,One to six months,EA036-3,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +43485,Na2,EA036,?,EA036-NA,,,,,, +43486,Na20,EA036,One to six months,EA036-3,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +43487,Na21,EA036,One to six months,EA036-3,"Entry follows Birket-Smith; Rasmussen reports taboo of up to one month (code ""2"")",birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +43488,Na22,EA036,One to six months,EA036-3,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +43489,Na23,EA036,?,EA036-NA,,,,,, +43490,Na24,EA036,A year to two years,EA036-5,"""children are suckled until they are at least two years old""",holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +43491,Na25,EA036,?,EA036-NA,"Children are suckled ""for a very long period""",birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +43492,Na26,EA036,?,EA036-NA,,,,,, +43493,Na27,EA036,A year to two years,EA036-5,From the statement that children were suckled for two to three years,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +43494,Na28,EA036,?,EA036-NA,,,,,, +43495,Na29,EA036,?,EA036-NA,,,,,, +43496,Na3,EA036,Up to one month,EA036-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +43497,Na30,EA036,Up to one month,EA036-2,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +43498,Na31,EA036,?,EA036-NA,,,,,, +43499,Na32,EA036,One to six months,EA036-3,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +43500,Na33,EA036,A year to two years,EA036-5,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +43501,Na34,EA036,?,EA036-NA,,,,,, +43502,Na35,EA036,?,EA036-NA,,,,,, +43503,Na36,EA036,?,EA036-NA,,,,,, +43504,Na37,EA036,?,EA036-NA,,,,,, +43505,Na38,EA036,Up to one month,EA036-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +43506,Na39,EA036,?,EA036-NA,"""Mothers suckled their children to the age of 2 or 3 years.""",jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +43507,Na4,EA036,One to six months,EA036-3,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +43508,Na40,EA036,One to six months,EA036-3,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +43509,Na41,EA036,Six months to a year,EA036-4,"According to Parsons, ""formerly a man did not lie with his wife for perhaps a year after childbirth,"" but Wallis and Wallis report taboo of up to one month (code ""2"") today",bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +43510,Na42,EA036,One to six months,EA036-3,A postparturient mother was segregated for more than a month,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +43511,Na43,EA036,?,EA036-NA,,,,,, +43512,Na44,EA036,?,EA036-NA,,,,,, +43513,Na45,EA036,?,EA036-NA,,,,,, +43514,Na5,EA036,?,EA036-NA,,,,,, +43515,Na6,EA036,?,EA036-NA,,,,,, +43516,Na7,EA036,?,EA036-NA,,,,,, +43517,Na8,EA036,?,EA036-NA,,,,,, +43518,Na9,EA036,One to six months,EA036-3,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43519,Nb1,EA036,More than two years,EA036-6,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +43520,Nb10,EA036,?,EA036-NA,,,,,, +43521,Nb11,EA036,?,EA036-NA,,,,,, +43522,Nb12,EA036,?,EA036-NA,,,,,, +43523,Nb13,EA036,?,EA036-NA,,,,,, +43524,Nb14,EA036,?,EA036-NA,,,,,, +43525,Nb15,EA036,?,EA036-NA,,,,,, +43526,Nb16,EA036,?,EA036-NA,,,,,, +43527,Nb17,EA036,?,EA036-NA,,,,,, +43528,Nb18,EA036,One to six months,EA036-3,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +43529,Nb19,EA036,A year to two years,EA036-5,"""Nursing continued for two or three years, sometimes longer""",ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +43530,Nb2,EA036,One to six months,EA036-3,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +43531,Nb20,EA036,?,EA036-NA,,,,,, +43532,Nb21,EA036,?,EA036-NA,,,,,, +43533,Nb22,EA036,Up to one month,EA036-2,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +43534,Nb23,EA036,?,EA036-NA,,,,,, +43535,Nb24,EA036,?,EA036-NA,,,,,, +43536,Nb25,EA036,Up to one month,EA036-2,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +43537,Nb26,EA036,?,EA036-NA,,,,,, +43538,Nb27,EA036,?,EA036-NA,,,,,, +43539,Nb28,EA036,?,EA036-NA,,,,,, +43540,Nb29,EA036,?,EA036-NA,,,,,, +43541,Nb3,EA036,Six months to a year,EA036-4,"Ideally a taboo of more than 2 years (code ""6"")",benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +43542,Nb30,EA036,?,EA036-NA,,,,,, +43543,Nb31,EA036,?,EA036-NA,,,,,, +43544,Nb32,EA036,?,EA036-NA,,,,,, +43545,Nb33,EA036,?,EA036-NA,,,,,, +43546,Nb34,EA036,One to six months,EA036-3,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +43547,Nb35,EA036,A year to two years,EA036-5,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +43548,Nb36,EA036,?,EA036-NA,,,,,, +43549,Nb37,EA036,One to six months,EA036-3,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +43550,Nb38,EA036,Six months to a year,EA036-4,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +43551,Nb39,EA036,One to six months,EA036-3,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +43552,Nb4,EA036,Six months to a year,EA036-4,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +43553,Nb5,EA036,?,EA036-NA,,,,,, +43554,Nb6,EA036,One to six months,EA036-3,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +43555,Nb7,EA036,?,EA036-NA,,,,,, +43556,Nb8,EA036,?,EA036-NA,,,,,, +43557,Nb9,EA036,Up to one month,EA036-2,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +43558,Nc1,EA036,?,EA036-NA,,,,,, +43559,Nc10,EA036,One to six months,EA036-3,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +43560,Nc11,EA036,?,EA036-NA,,,,,, +43561,Nc12,EA036,?,EA036-NA,,,,,, +43562,Nc13,EA036,Up to one month,EA036-2,"But Faye states that children were nursed ""till they were four or five years old""",beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +43563,Nc14,EA036,One to six months,EA036-3,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +43564,Nc15,EA036,Up to one month,EA036-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +43565,Nc16,EA036,?,EA036-NA,,,,,, +43566,Nc17,EA036,Up to one month,EA036-2,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +43567,Nc18,EA036,?,EA036-NA,,,,,, +43568,Nc19,EA036,?,EA036-NA,,,,,, +43569,Nc2,EA036,One to six months,EA036-3,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +43570,Nc20,EA036,?,EA036-NA,,,,,, +43571,Nc21,EA036,?,EA036-NA,,,,,, +43572,Nc22,EA036,?,EA036-NA,,,,,, +43573,Nc23,EA036,One to six months,EA036-3,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +43574,Nc24,EA036,?,EA036-NA,,,,,, +43575,Nc25,EA036,One to six months,EA036-3,"""A child was nursed for two years, even if a new baby was also nursing""",bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +43576,Nc26,EA036,?,EA036-NA,,,,,, +43577,Nc27,EA036,?,EA036-NA,,,,,, +43578,Nc28,EA036,?,EA036-NA,,,,,, +43579,Nc29,EA036,?,EA036-NA,,,,,, +43580,Nc3,EA036,One to six months,EA036-3,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +43581,Nc30,EA036,?,EA036-NA,,,,,, +43582,Nc31,EA036,?,EA036-NA,,,,,, +43583,Nc32,EA036,?,EA036-NA,,,,,, +43584,Nc33,EA036,A year to two years,EA036-5,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +43585,Nc34,EA036,?,EA036-NA,,,,,, +43586,Nc4,EA036,Up to one month,EA036-2,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +43587,Nc5,EA036,One to six months,EA036-3,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +43588,Nc6,EA036,Six months to a year,EA036-4,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +43589,Nc7,EA036,One to six months,EA036-3,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +43590,Nc8,EA036,One to six months,EA036-3,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +43591,Nc9,EA036,One to six months,EA036-3,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +43592,Nd1,EA036,?,EA036-NA,,,,,, +43593,Nd10,EA036,One to six months,EA036-3,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +43594,Nd11,EA036,One to six months,EA036-3,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +43595,Nd12,EA036,More than two years,EA036-6,"""children were not weaned until they were three years old""",ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +43596,Nd13,EA036,Six months to a year,EA036-4,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +43597,Nd14,EA036,One to six months,EA036-3,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +43598,Nd15,EA036,?,EA036-NA,,,,,, +43599,Nd16,EA036,One to six months,EA036-3,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +43600,Nd17,EA036,One to six months,EA036-3,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +43601,Nd18,EA036,?,EA036-NA,"A child was weaned at ""one or even two years""",spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +43602,Nd19,EA036,One to six months,EA036-3,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +43603,Nd2,EA036,A year to two years,EA036-5,"Entry follows Opler; Stewart reports taboo of one to six months (code ""3"")",gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +43604,Nd20,EA036,Up to one month,EA036-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +43605,Nd21,EA036,One to six months,EA036-3,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +43606,Nd22,EA036,One to six months,EA036-3,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +43607,Nd23,EA036,?,EA036-NA,,,,,, +43608,Nd24,EA036,One to six months,EA036-3,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +43609,Nd25,EA036,One to six months,EA036-3,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +43610,Nd26,EA036,?,EA036-NA,,,,,, +43611,Nd27,EA036,Six months to a year,EA036-4,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +43612,Nd28,EA036,Six months to a year,EA036-4,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +43613,Nd29,EA036,Up to one month,EA036-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +43614,Nd3,EA036,?,EA036-NA,,,,,, +43615,Nd30,EA036,A year to two years,EA036-5,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +43616,Nd31,EA036,?,EA036-NA,,,,,, +43617,Nd32,EA036,Up to one month,EA036-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +43618,Nd33,EA036,Up to one month,EA036-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +43619,Nd34,EA036,?,EA036-NA,,,,,, +43620,Nd35,EA036,?,EA036-NA,,,,,, +43621,Nd36,EA036,?,EA036-NA,,,,,, +43622,Nd37,EA036,?,EA036-NA,,,,,, +43623,Nd38,EA036,?,EA036-NA,,,,,, +43624,Nd39,EA036,?,EA036-NA,,,,,, +43625,Nd4,EA036,Up to one month,EA036-2,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +43626,Nd40,EA036,?,EA036-NA,,,,,, +43627,Nd41,EA036,?,EA036-NA,,,,,, +43628,Nd42,EA036,?,EA036-NA,,,,,, +43629,Nd43,EA036,?,EA036-NA,,,,,, +43630,Nd44,EA036,?,EA036-NA,,,,,, +43631,Nd45,EA036,?,EA036-NA,,,,,, +43632,Nd46,EA036,One to six months,EA036-3,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +43633,Nd47,EA036,?,EA036-NA,,,,,, +43634,Nd48,EA036,A year to two years,EA036-5,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +43635,Nd49,EA036,A year to two years,EA036-5,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +43636,Nd5,EA036,?,EA036-NA,,,,,, +43637,Nd50,EA036,?,EA036-NA,,,,,, +43638,Nd51,EA036,One to six months,EA036-3,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +43639,Nd52,EA036,One to six months,EA036-3,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +43640,Nd53,EA036,One to six months,EA036-3,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +43641,Nd54,EA036,One to six months,EA036-3,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43642,Nd55,EA036,?,EA036-NA,,,,,, +43643,Nd56,EA036,One to six months,EA036-3,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +43644,Nd57,EA036,?,EA036-NA,,,,,, +43645,Nd58,EA036,A year to two years,EA036-5,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +43646,Nd59,EA036,One to six months,EA036-3,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +43647,Nd6,EA036,Six months to a year,EA036-4,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +43648,Nd60,EA036,One to six months,EA036-3,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +43649,Nd61,EA036,A year to two years,EA036-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +43650,Nd62,EA036,A year to two years,EA036-5,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +43651,Nd63,EA036,One to six months,EA036-3,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +43652,Nd64,EA036,One to six months,EA036-3,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +43653,Nd65,EA036,One to six months,EA036-3,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +43654,Nd66,EA036,One to six months,EA036-3,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +43655,Nd67,EA036,?,EA036-NA,,,,,, +43656,Nd7,EA036,One to six months,EA036-3,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +43657,Nd8,EA036,Up to one month,EA036-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +43658,Nd9,EA036,One to six months,EA036-3,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +43659,Ne1,EA036,One to six months,EA036-3,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +43660,Ne10,EA036,?,EA036-NA,,,,,, +43661,Ne11,EA036,More than two years,EA036-6,"From the statement that children ""were weaned when they were about three years old""",denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +43662,Ne12,EA036,Up to one month,EA036-2,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +43663,Ne13,EA036,Up to one month,EA036-2,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +43664,Ne14,EA036,?,EA036-NA,,,,,, +43665,Ne15,EA036,?,EA036-NA,,,,,, +43666,Ne16,EA036,A year to two years,EA036-5,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +43667,Ne17,EA036,?,EA036-NA,,,,,, +43668,Ne18,EA036,?,EA036-NA,,,,,, +43669,Ne19,EA036,A year to two years,EA036-5,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +43670,Ne2,EA036,?,EA036-NA,,,,,, +43671,Ne20,EA036,?,EA036-NA,,,,,, +43672,Ne21,EA036,?,EA036-NA,,,,,, +43673,Ne3,EA036,?,EA036-NA,,,,,, +43674,Ne4,EA036,Up to one month,EA036-2,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +43675,Ne5,EA036,More than two years,EA036-6,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +43676,Ne6,EA036,?,EA036-NA,,,,,, +43677,Ne7,EA036,One to six months,EA036-3,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +43678,Ne8,EA036,?,EA036-NA,,,,,, +43679,Ne9,EA036,More than two years,EA036-6,"According to Hilger, ""children were nursed until they were 4 years old""",eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +43680,Nf10,EA036,?,EA036-NA,,,,,, +43681,Nf11,EA036,?,EA036-NA,,,,,, +43682,Nf12,EA036,?,EA036-NA,,,,,, +43683,Nf13,EA036,?,EA036-NA,,,,,, +43684,Nf14,EA036,?,EA036-NA,,,,,, +43685,Nf15,EA036,?,EA036-NA,,,,,, +43686,Nf2,EA036,?,EA036-NA,,,,,, +43687,Nf3,EA036,Up to one month,EA036-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +43688,Nf4,EA036,?,EA036-NA,,,,,, +43689,Nf5,EA036,More than two years,EA036-6,A taboo throughout the nursing periods was the ideal; it was sanctioned by a belief that its violation would cause illness in the baby,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +43690,Nf6,EA036,Up to one month,EA036-2,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +43691,Nf7,EA036,?,EA036-NA,,,,,, +43692,Nf8,EA036,?,EA036-NA,,,,,, +43693,Nf9,EA036,?,EA036-NA,"""A child was nursed for as long as it would reach for the breast""",hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +43694,Ng1,EA036,More than two years,EA036-6,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +43695,Ng10,EA036,A year to two years,EA036-5,"""A mother nurses her child for two to three years""",fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +43696,Ng11,EA036,?,EA036-NA,,,,,, +43697,Ng12,EA036,?,EA036-NA,,,,,, +43698,Ng13,EA036,?,EA036-NA,,,,,, +43699,Ng14,EA036,?,EA036-NA,,,,,, +43700,Ng15,EA036,?,EA036-NA,,,,,, +43701,Ng2,EA036,?,EA036-NA,,,,,, +43702,Ng3,EA036,One to six months,EA036-3,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +43703,Ng4,EA036,?,EA036-NA,,,,,, +43704,Ng5,EA036,?,EA036-NA,,,,,, +43705,Ng6,EA036,?,EA036-NA,,,,,, +43706,Ng7,EA036,?,EA036-NA,,,,,, +43707,Ng8,EA036,?,EA036-NA,,,,,, +43708,Ng9,EA036,?,EA036-NA,,,,,, +43709,Nh1,EA036,More than two years,EA036-6,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +43710,Nh10,EA036,?,EA036-NA,,,,,, +43711,Nh11,EA036,?,EA036-NA,,,,,, +43712,Nh12,EA036,One to six months,EA036-3,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +43713,Nh13,EA036,?,EA036-NA,,,,,, +43714,Nh14,EA036,?,EA036-NA,,,,,, +43715,Nh15,EA036,?,EA036-NA,,,,,, +43716,Nh16,EA036,A year to two years,EA036-5,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43717,Nh17,EA036,?,EA036-NA,,,,,, +43718,Nh18,EA036,One to six months,EA036-3,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43719,Nh19,EA036,Six months to a year,EA036-4,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +43720,Nh2,EA036,?,EA036-NA,,,,,, +43721,Nh20,EA036,?,EA036-NA,,,,,, +43722,Nh21,EA036,?,EA036-NA,,,,,, +43723,Nh22,EA036,Up to one month,EA036-2,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +43724,Nh23,EA036,?,EA036-NA,,,,,, +43725,Nh24,EA036,?,EA036-NA,,,,,, +43726,Nh25,EA036,One to six months,EA036-3,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +43727,Nh26,EA036,?,EA036-NA,,,,,, +43728,Nh27,EA036,?,EA036-NA,,,,,, +43729,Nh3,EA036,One to six months,EA036-3,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +43730,Nh4,EA036,?,EA036-NA,,,,,, +43731,Nh5,EA036,?,EA036-NA,,,,,, +43732,Nh6,EA036,?,EA036-NA,,,,,, +43733,Nh7,EA036,Up to one month,EA036-2,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +43734,Nh8,EA036,?,EA036-NA,,,,,, +43735,Nh9,EA036,?,EA036-NA,,,,,, +43736,Ni1,EA036,Up to one month,EA036-2,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +43737,Ni2,EA036,Up to one month,EA036-2,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +43738,Ni3,EA036,?,EA036-NA,,,,,, +43739,Ni4,EA036,?,EA036-NA,,,,,, +43740,Ni5,EA036,One to six months,EA036-3,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +43741,Ni6,EA036,?,EA036-NA,,,,,, +43742,Ni7,EA036,?,EA036-NA,,,,,, +43743,Ni8,EA036,?,EA036-NA,,,,,, +43744,Ni9,EA036,?,EA036-NA,,,,,, +43745,Nj1,EA036,?,EA036-NA,,,,,, +43746,Nj10,EA036,?,EA036-NA,,,,,, +43747,Nj11,EA036,?,EA036-NA,,,,,, +43748,Nj12,EA036,?,EA036-NA,,,,,, +43749,Nj13,EA036,?,EA036-NA,,,,,, +43750,Nj14,EA036,?,EA036-NA,,,,,, +43751,Nj2,EA036,More than two years,EA036-6,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +43752,Nj3,EA036,?,EA036-NA,,,,,, +43753,Nj4,EA036,?,EA036-NA,,,,,, +43754,Nj5,EA036,?,EA036-NA,,,,,, +43755,Nj6,EA036,?,EA036-NA,,,,,, +43756,Nj7,EA036,One to six months,EA036-3,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43757,Nj8,EA036,?,EA036-NA,,,,,, +43758,Nj9,EA036,Six months to a year,EA036-4,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +43759,Sa1,EA036,?,EA036-NA,,,,,, +43760,Sa10,EA036,?,EA036-NA,,,,,, +43761,Sa11,EA036,?,EA036-NA,,,,,, +43762,Sa12,EA036,?,EA036-NA,,,,,, +43763,Sa13,EA036,?,EA036-NA,,,,,, +43764,Sa14,EA036,?,EA036-NA,,,,,, +43765,Sa15,EA036,?,EA036-NA,,,,,, +43766,Sa16,EA036,?,EA036-NA,,,,,, +43767,Sa17,EA036,?,EA036-NA,,,,,, +43768,Sa2,EA036,?,EA036-NA,,,,,, +43769,Sa3,EA036,?,EA036-NA,,,,,, +43770,Sa4,EA036,?,EA036-NA,,,,,, +43771,Sa5,EA036,One to six months,EA036-3,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +43772,Sa6,EA036,?,EA036-NA,,,,,, +43773,Sa7,EA036,One to six months,EA036-3,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +43774,Sa8,EA036,?,EA036-NA,,,,,, +43775,Sa9,EA036,Up to one month,EA036-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +43776,Sb1,EA036,One to six months,EA036-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +43777,Sb2,EA036,?,EA036-NA,,,,,, +43778,Sb3,EA036,?,EA036-NA,,,,,, +43779,Sb4,EA036,One to six months,EA036-3,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +43780,Sb5,EA036,?,EA036-NA,,,,,, +43781,Sb6,EA036,One to six months,EA036-3,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +43782,Sb7,EA036,?,EA036-NA,,,,,, +43783,Sb8,EA036,?,EA036-NA,,,,,, +43784,Sb9,EA036,No taboo,EA036-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +43785,Sc1,EA036,One to six months,EA036-3,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +43786,Sc10,EA036,?,EA036-NA,,,,,, +43787,Sc11,EA036,?,EA036-NA,,,,,, +43788,Sc12,EA036,?,EA036-NA,,,,,, +43789,Sc13,EA036,?,EA036-NA,,,,,, +43790,Sc14,EA036,?,EA036-NA,,,,,, +43791,Sc15,EA036,?,EA036-NA,,,,,, +43792,Sc16,EA036,?,EA036-NA,,,,,, +43793,Sc17,EA036,?,EA036-NA,,,,,, +43794,Sc18,EA036,One to six months,EA036-3,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +43795,Sc2,EA036,Up to one month,EA036-2,,leedsnd,,1950,EthnographicAtlas_1967_p119, +43796,Sc3,EA036,Up to one month,EA036-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +43797,Sc4,EA036,One to six months,EA036-3,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +43798,Sc5,EA036,?,EA036-NA,,,,,, +43799,Sc6,EA036,?,EA036-NA,,,,,, +43800,Sc7,EA036,One to six months,EA036-3,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +43801,Sc8,EA036,?,EA036-NA,,,,,, +43802,Sc9,EA036,?,EA036-NA,,,,,, +43803,Sd1,EA036,?,EA036-NA,,,,,, +43804,Sd2,EA036,Six months to a year,EA036-4,"""Until the child is weaned, the parents must refrain from sexual relations,"" but age of weaning is not specified",wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +43805,Sd3,EA036,?,EA036-NA,,,,,, +43806,Sd4,EA036,?,EA036-NA,,,,,, +43807,Sd5,EA036,One to six months,EA036-3,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +43808,Sd6,EA036,?,EA036-NA,,,,,, +43809,Sd7,EA036,?,EA036-NA,,,,,, +43810,Sd8,EA036,?,EA036-NA,,,,,, +43811,Sd9,EA036,?,EA036-NA,,,,,, +43812,Se1,EA036,Up to one month,EA036-2,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +43813,Se10,EA036,?,EA036-NA,,,,,, +43814,Se11,EA036,More than two years,EA036-6,,prost1965,,1960,EthnographicAtlas_1967_p123, +43815,Se12,EA036,?,EA036-NA,,,,,, +43816,Se2,EA036,Six months to a year,EA036-4,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +43817,Se3,EA036,More than two years,EA036-6,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +43818,Se4,EA036,Six months to a year,EA036-4,,fejos1943,,1940,EthnographicAtlas_1967_p119, +43819,Se5,EA036,A year to two years,EA036-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +43820,Se6,EA036,More than two years,EA036-6,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +43821,Se7,EA036,?,EA036-NA,,,,,, +43822,Se8,EA036,Up to one month,EA036-2,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +43823,Se9,EA036,?,EA036-NA,,,,,, +43824,Sf1,EA036,?,EA036-NA,,,,,, +43825,Sf2,EA036,Up to one month,EA036-2,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +43826,Sf3,EA036,?,EA036-NA,,,,,, +43827,Sf4,EA036,?,EA036-NA,,,,,, +43828,Sf5,EA036,Up to one month,EA036-2,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +43829,Sf6,EA036,?,EA036-NA,,,,,, +43830,Sf7,EA036,?,EA036-NA,,,,,, +43831,Sf8,EA036,?,EA036-NA,,,,,, +43832,Sf9,EA036,?,EA036-NA,,,,,, +43833,Sg1,EA036,One to six months,EA036-3,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +43834,Sg2,EA036,Six months to a year,EA036-4,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43835,Sg3,EA036,?,EA036-NA,,,,,, +43836,Sg4,EA036,Six months to a year,EA036-4,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +43837,Sg5,EA036,Up to one month,EA036-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43838,Sh1,EA036,Six months to a year,EA036-4,The taboo lasted until the child's teeth began to erupt,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +43839,Sh2,EA036,?,EA036-NA,,,,,, +43840,Sh3,EA036,More than two years,EA036-6,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +43841,Sh4,EA036,A year to two years,EA036-5,"Oberg states that ""a woman was prohibited from having sexual intercourse while nursing a child""",oberg1949,,1940,EthnographicAtlas_1967_p123, +43842,Sh5,EA036,?,EA036-NA,,,,,, +43843,Sh6,EA036,A year to two years,EA036-5,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +43844,Sh7,EA036,?,EA036-NA,,,,,, +43845,Sh8,EA036,Six months to a year,EA036-4,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +43846,Sh9,EA036,?,EA036-NA,,,,,, +43847,Si1,EA036,?,EA036-NA,,,,,, +43848,Si10,EA036,?,EA036-NA,,,,,, +43849,Si2,EA036,A year to two years,EA036-5,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +43850,Si3,EA036,?,EA036-NA,,,,,, +43851,Si4,EA036,A year to two years,EA036-5,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +43852,Si5,EA036,?,EA036-NA,,,,,, +43853,Si6,EA036,?,EA036-NA,,,,,, +43854,Si7,EA036,?,EA036-NA,,,,,, +43855,Si8,EA036,?,EA036-NA,,,,,, +43856,Si9,EA036,?,EA036-NA,,,,,, +43857,Sj1,EA036,?,EA036-NA,,,,,, +43858,Sj10,EA036,?,EA036-NA,,,,,, +43859,Sj11,EA036,More than two years,EA036-6,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +43860,Sj2,EA036,?,EA036-NA,,,,,, +43861,Sj3,EA036,?,EA036-NA,,,,,, +43862,Sj4,EA036,One to six months,EA036-3,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +43863,Sj5,EA036,?,EA036-NA,,,,,, +43864,Sj6,EA036,One to six months,EA036-3,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +43865,Sj7,EA036,One to six months,EA036-3,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +43866,Sj8,EA036,?,EA036-NA,,,,,, +43867,Sj9,EA036,A year to two years,EA036-5,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +43868,ch12,EA036,?,EA036-NA,,,,,, +43869,ch13,EA036,?,EA036-NA,,,,,, +43870,ch14,EA036,?,EA036-NA,,,,,, +43871,ch15,EA036,?,EA036-NA,,,,,, +43872,ch16,EA036,?,EA036-NA,,,,,, +43873,ch17,EA036,Up to one month,EA036-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +43874,ch18,EA036,?,EA036-NA,,,,,, +43875,ch19,EA036,Six months to a year,EA036-4,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +43876,ch20,EA036,Up to one month,EA036-2,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +43877,ch21,EA036,?,EA036-NA,,,,,, +43878,ch22,EA036,A year to two years,EA036-5,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +43879,ch23,EA036,?,EA036-NA,,,,,, +43880,ch24,EA036,?,EA036-NA,,,,,, +43881,ch25,EA036,?,EA036-NA,,,,,, +43882,ch26,EA036,?,EA036-NA,,,,,, +43883,ch27,EA036,Up to one month,EA036-2,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +43884,ch28,EA036,?,EA036-NA,,,,,, +43885,ec12,EA036,Up to one month,EA036-2,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +43886,ec13,EA036,Up to one month,EA036-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +43887,ec14,EA036,Up to one month,EA036-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +43888,ec15,EA036,Up to one month,EA036-2,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +43889,ec16,EA036,Up to one month,EA036-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +43890,ec17,EA036,?,EA036-NA,,,,,, +43891,ec18,EA036,Up to one month,EA036-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +43892,ec19,EA036,Up to one month,EA036-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +43893,ec20,EA036,Up to one month,EA036-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +43894,ec21,EA036,Up to one month,EA036-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +43895,Aa1,EA037,Absent,EA037-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +43896,Aa2,EA037,Early adulthood,EA037-7,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +43897,Aa3,EA037,Absent,EA037-1,But early sources report the excision of one testicle at the age of nine or ten,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +43898,Aa4,EA037,?,EA037-NA,,,,,, +43899,Aa5,EA037,Adolescence,EA037-6,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +43900,Aa6,EA037,Late childhood,EA037-5,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p63, +43901,Aa7,EA037,Absent,EA037-1,But boys at puberty are incised on the back and between the eyebrows,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +43902,Aa8,EA037,Absent,EA037-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +43903,Aa9,EA037,Absent,EA037-1,But circumcision has recently been adopted from the Bantu Isansu,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +43904,Ab1,EA037,"Customary, age unclear",EA037-10,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p63, +43905,Ab10,EA037,Absent,EA037-1,"But 'in early adulthood' (code""7"") prior to 1860",hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +43906,Ab11,EA037,Early adulthood,EA037-7,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +43907,Ab12,EA037,Absent,EA037-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p63, +43908,Ab13,EA037,Early adulthood,EA037-7,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +43909,Ab14,EA037,Adolescence,EA037-6,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +43910,Ab15,EA037,Adolescence,EA037-6,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +43911,Ab16,EA037,?,EA037-NA,,,,,, +43912,Ab17,EA037,?,EA037-NA,,,,,, +43913,Ab18,EA037,Adolescence,EA037-6,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +43914,Ab19,EA037,Adolescence,EA037-6,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +43915,Ab2,EA037,Adolescence,EA037-6,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +43916,Ab20,EA037,?,EA037-NA,,,,,, +43917,Ab21a,EA037,Adolescence,EA037-6,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +43918,Ab21b,EA037,?,EA037-NA,,,,,, +43919,Ab22,EA037,?,EA037-NA,,,,,, +43920,Ab3,EA037,Absent,EA037-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +43921,Ab4,EA037,Adolescence,EA037-6,,junod1927,,1920,EthnographicAtlas_1967_p63, +43922,Ab5,EA037,Absent,EA037-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +43923,Ab6,EA037,Early adulthood,EA037-7,But only recently adopted,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +43924,Ab7,EA037,Adolescence,EA037-6,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p63, +43925,Ab8,EA037,Absent,EA037-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +43926,Ab9,EA037,Absent,EA037-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +43927,Ac1,EA037,Absent,EA037-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +43928,Ac10,EA037,Absent,EA037-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +43929,Ac11,EA037,Adolescence,EA037-6,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +43930,Ac12,EA037,?,EA037-NA,,,,,, +43931,Ac13,EA037,?,EA037-NA,,,,,, +43932,Ac14,EA037,Adolescence,EA037-6,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p63, +43933,Ac15,EA037,?,EA037-NA,,,,,, +43934,Ac16,EA037,"Customary, age unclear",EA037-10,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +43935,Ac17,EA037,Adolescence,EA037-6,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +43936,Ac18,EA037,"Customary, age unclear",EA037-10,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +43937,Ac19,EA037,Infancy ,EA037-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +43938,Ac2,EA037,?,EA037-NA,,,,,, +43939,Ac20,EA037,?,EA037-NA,,,,,, +43940,Ac21,EA037,?,EA037-NA,,,,,, +43941,Ac22,EA037,?,EA037-NA,,,,,, +43942,Ac23,EA037,?,EA037-NA,,,,,, +43943,Ac24,EA037,Infancy ,EA037-3,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +43944,Ac25,EA037,?,EA037-NA,,,,,, +43945,Ac26,EA037,Early childhood,EA037-4,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +43946,Ac27,EA037,Adolescence,EA037-6,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +43947,Ac28,EA037,?,EA037-NA,,,,,, +43948,Ac29,EA037,?,EA037-NA,,,,,, +43949,Ac3,EA037,Absent,EA037-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +43950,Ac30,EA037,Absent,EA037-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +43951,Ac31,EA037,Late childhood,EA037-5,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +43952,Ac32,EA037,Absent,EA037-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +43953,Ac33,EA037,Absent,EA037-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +43954,Ac34,EA037,Adolescence,EA037-6,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +43955,Ac35,EA037,?,EA037-NA,,,,,, +43956,Ac36,EA037,Absent,EA037-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +43957,Ac37,EA037,?,EA037-NA,,,,,, +43958,Ac38,EA037,Absent,EA037-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p63, +43959,Ac39,EA037,?,EA037-NA,,,,,, +43960,Ac4,EA037,Shortly after birth,EA037-2,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +43961,Ac40,EA037,Absent,EA037-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +43962,Ac41,EA037,Adolescence,EA037-6,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +43963,Ac42,EA037,?,EA037-NA,,,,,, +43964,Ac43,EA037,Absent,EA037-1,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +43965,Ac5,EA037,Absent,EA037-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +43966,Ac6,EA037,?,EA037-NA,,,,,, +43967,Ac7,EA037,Late childhood,EA037-5,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +43968,Ac8,EA037,"Customary, age unclear",EA037-10,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +43969,Ac9,EA037,Absent,EA037-1,But circumcision was formerly practiced,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +43970,Ad1,EA037,Adolescence,EA037-6,,grottanelli1955,,1950,EthnographicAtlas_1967_p63, +43971,Ad10,EA037,Early childhood,EA037-4,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +43972,Ad11,EA037,Absent,EA037-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +43973,Ad12,EA037,Adolescence,EA037-6,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +43974,Ad13,EA037,Absent,EA037-1,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +43975,Ad14,EA037,Adolescence,EA037-6,"But 'absent' (code ""1"") prior to 1910",beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +43976,Ad15,EA037,Absent,EA037-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +43977,Ad16,EA037,Absent,EA037-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +43978,Ad17,EA037,Absent,EA037-1,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +43979,Ad18,EA037,Absent,EA037-1,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +43980,Ad19,EA037,Absent,EA037-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +43981,Ad2,EA037,Absent,EA037-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +43982,Ad20,EA037,Absent,EA037-1,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +43983,Ad21,EA037,Absent,EA037-1,,maurice193538,,1930,EthnographicAtlas_1967_p67, +43984,Ad22,EA037,Absent,EA037-1,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +43985,Ad23,EA037,Absent,EA037-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +43986,Ad24,EA037,Adolescence,EA037-6,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +43987,Ad25,EA037,"Customary, age unclear",EA037-10,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +43988,Ad26,EA037,Adolescence,EA037-6,,sick1916,,1910,Ethnology_Vol7_No2_Apr_1968, +43989,Ad27,EA037,Late childhood,EA037-5,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +43990,Ad28,EA037,Adolescence,EA037-6,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +43991,Ad29,EA037,Adolescence,EA037-6,"But Prins reports 'early childhood' (code ""4"") for the Swahili in general",ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p67, +43992,Ad3,EA037,Adolescence,EA037-6,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +43993,Ad30,EA037,"Customary, age unclear",EA037-10,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p67, +43994,Ad31,EA037,?,EA037-NA,,,,,, +43995,Ad32,EA037,Adolescence,EA037-6,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p67, +43996,Ad33,EA037,Adolescence,EA037-6,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p67, +43997,Ad34,EA037,Late childhood,EA037-5,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +43998,Ad35,EA037,Adolescence,EA037-6,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p67, +43999,Ad36,EA037,"Customary, age unclear",EA037-10,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +44000,Ad37,EA037,Adolescence,EA037-6,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +44001,Ad38,EA037,Absent,EA037-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +44002,Ad39,EA037,Adolescence,EA037-6,,gray1963,,1950,EthnographicAtlas_1967_p67, +44003,Ad4,EA037,Early adulthood,EA037-7,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +44004,Ad40,EA037,Adolescence,EA037-6,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +44005,Ad41,EA037,Adolescence,EA037-6,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p67, +44006,Ad42,EA037,Absent,EA037-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +44007,Ad43,EA037,Absent,EA037-1,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +44008,Ad44,EA037,Absent,EA037-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p67, +44009,Ad45,EA037,Absent,EA037-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +44010,Ad46,EA037,Absent,EA037-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p67, +44011,Ad47,EA037,Absent,EA037-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +44012,Ad48,EA037,Absent,EA037-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +44013,Ad49,EA037,?,EA037-NA,,,,,, +44014,Ad5,EA037,?,EA037-NA,,,,,, +44015,Ad50,EA037,Adolescence,EA037-6,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +44016,Ad51,EA037,Absent,EA037-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +44017,Ad6,EA037,Absent,EA037-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +44018,Ad7,EA037,Absent,EA037-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +44019,Ad8,EA037,Absent,EA037-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +44020,Ad9,EA037,Early adulthood,EA037-7,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +44021,Ae1,EA037,Absent,EA037-1,"Until 1933, circumcision rites were held every fifteenth year",winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67, +44022,Ae10,EA037,Absent,EA037-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +44023,Ae11,EA037,Adolescence,EA037-6,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +44024,Ae12,EA037,Late childhood,EA037-5,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +44025,Ae13,EA037,?,EA037-NA,,,,,, +44026,Ae14,EA037,Absent,EA037-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +44027,Ae15,EA037,Absent,EA037-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p67, +44028,Ae16,EA037,?,EA037-NA,,,,,, +44029,Ae17,EA037,Adolescence,EA037-6,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +44030,Ae18,EA037,Early childhood,EA037-4,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +44031,Ae19,EA037,?,EA037-NA,,,,,, +44032,Ae2,EA037,Late childhood,EA037-5,"Formerly 'in early adulthood' (code""7"")",ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +44033,Ae20,EA037,"Customary, age unclear",EA037-10,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +44034,Ae21,EA037,"Customary, age unclear",EA037-10,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +44035,Ae22,EA037,"Customary, age unclear",EA037-10,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p67, +44036,Ae23,EA037,?,EA037-NA,,,,,, +44037,Ae24,EA037,?,EA037-NA,,,,,, +44038,Ae25,EA037,?,EA037-NA,,,,,, +44039,Ae26,EA037,"Customary, age unclear",EA037-10,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +44040,Ae27,EA037,"Customary, age unclear",EA037-10,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +44041,Ae28,EA037,Early childhood,EA037-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +44042,Ae29,EA037,"Customary, age unclear",EA037-10,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p67, +44043,Ae3,EA037,Adolescence,EA037-6,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +44044,Ae30,EA037,Late childhood,EA037-5,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +44045,Ae31,EA037,Early childhood,EA037-4,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +44046,Ae32,EA037,Adolescence,EA037-6,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +44047,Ae33,EA037,Absent,EA037-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +44048,Ae34,EA037,Absent,EA037-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +44049,Ae35,EA037,Adolescence,EA037-6,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +44050,Ae36,EA037,Late childhood,EA037-5,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +44051,Ae37,EA037,?,EA037-NA,,,,,, +44052,Ae38,EA037,?,EA037-NA,,,,,, +44053,Ae39,EA037,Early childhood,EA037-4,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +44054,Ae4,EA037,Late childhood,EA037-5,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +44055,Ae40,EA037,"Customary, age unclear",EA037-10,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +44056,Ae41,EA037,Adolescence,EA037-6,,andersson1953,,1940,EthnographicAtlas_1967_p67, +44057,Ae42,EA037,Late childhood,EA037-5,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +44058,Ae43,EA037,Early adulthood,EA037-7,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +44059,Ae44,EA037,Absent,EA037-1,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +44060,Ae45,EA037,"Customary, age unclear",EA037-10,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +44061,Ae46,EA037,"Customary, age unclear",EA037-10,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +44062,Ae47,EA037,"Customary, age unclear",EA037-10,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +44063,Ae48,EA037,Adolescence,EA037-6,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p67, +44064,Ae49,EA037,?,EA037-NA,,,,,, +44065,Ae5,EA037,Absent,EA037-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p67, +44066,Ae50,EA037,"Customary, age unclear",EA037-10,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p67, +44067,Ae51,EA037,Adolescence,EA037-6,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p67, +44068,Ae52,EA037,?,EA037-NA,,,,,, +44069,Ae53,EA037,?,EA037-NA,,,,,, +44070,Ae54,EA037,?,EA037-NA,,,,,, +44071,Ae55,EA037,?,EA037-NA,,,,,, +44072,Ae56,EA037,?,EA037-NA,,,,,, +44073,Ae57,EA037,"Customary, age unclear",EA037-10,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +44074,Ae58,EA037,?,EA037-NA,,,,,, +44075,Ae59,EA037,?,EA037-NA,,,,,, +44076,Ae6,EA037,?,EA037-NA,,,,,, +44077,Ae7,EA037,Absent,EA037-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +44078,Ae8,EA037,Absent,EA037-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +44079,Ae9,EA037,?,EA037-NA,,,,,, +44080,Af1,EA037,Early adulthood,EA037-7,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +44081,Af10,EA037,Shortly after birth,EA037-2,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +44082,Af11,EA037,Adolescence,EA037-6,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +44083,Af12,EA037,Absent,EA037-1,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +44084,Af13,EA037,Infancy ,EA037-3,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +44085,Af14,EA037,"Customary, age unclear",EA037-10,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p71, +44086,Af15,EA037,Adolescence,EA037-6,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +44087,Af16,EA037,"Customary, age unclear",EA037-10,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +44088,Af17,EA037,?,EA037-NA,,,,,, +44089,Af18,EA037,Infancy ,EA037-3,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +44090,Af19,EA037,Shortly after birth,EA037-2,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +44091,Af2,EA037,Adolescence,EA037-6,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +44092,Af20,EA037,Infancy ,EA037-3,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +44093,Af21,EA037,Infancy ,EA037-3,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +44094,Af22,EA037,Infancy ,EA037-3,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p71, +44095,Af23,EA037,Shortly after birth,EA037-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +44096,Af24,EA037,Infancy ,EA037-3,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +44097,Af25,EA037,Early childhood,EA037-4,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +44098,Af26,EA037,Shortly after birth,EA037-2,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +44099,Af27,EA037,"Customary, age unclear",EA037-10,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +44100,Af28,EA037,Absent,EA037-1,But circumcision occurs sporadically,gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +44101,Af29,EA037,Late childhood,EA037-5,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +44102,Af3,EA037,Absent,EA037-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +44103,Af30,EA037,Infancy ,EA037-3,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +44104,Af31,EA037,?,EA037-NA,,,,,, +44105,Af32,EA037,"Customary, age unclear",EA037-10,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44106,Af33,EA037,"Customary, age unclear",EA037-10,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44107,Af34,EA037,?,EA037-NA,,,,,, +44108,Af35,EA037,Late childhood,EA037-5,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +44109,Af36,EA037,Early childhood,EA037-4,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p71, +44110,Af37,EA037,Absent,EA037-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +44111,Af38,EA037,?,EA037-NA,,,,,, +44112,Af39,EA037,?,EA037-NA,,,,,, +44113,Af4,EA037,Absent,EA037-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +44114,Af40,EA037,?,EA037-NA,,,,,, +44115,Af41,EA037,?,EA037-NA,,,,,, +44116,Af42,EA037,Absent,EA037-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p71, +44117,Af43,EA037,Shortly after birth,EA037-2,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p71, +44118,Af44,EA037,?,EA037-NA,,,,,, +44119,Af45,EA037,?,EA037-NA,,,,,, +44120,Af46,EA037,"Customary, age unclear",EA037-10,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +44121,Af47,EA037,Early childhood,EA037-4,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +44122,Af48,EA037,?,EA037-NA,,,,,, +44123,Af49,EA037,"Customary, age unclear",EA037-10,,schwab1947,,1940,EthnographicAtlas_1967_p71, +44124,Af5,EA037,Adolescence,EA037-6,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +44125,Af50,EA037,"Customary, age unclear",EA037-10,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +44126,Af51,EA037,Absent,EA037-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +44127,Af52,EA037,Absent,EA037-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +44128,Af53,EA037,Adolescence,EA037-6,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +44129,Af54,EA037,Adolescence,EA037-6,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +44130,Af55,EA037,?,EA037-NA,,,,,, +44131,Af56,EA037,Adolescence,EA037-6,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +44132,Af57,EA037,Adolescence,EA037-6,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +44133,Af58,EA037,Adolescence,EA037-6,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +44134,Af6,EA037,Infancy ,EA037-3,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +44135,Af7,EA037,Absent,EA037-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +44136,Af8,EA037,Late childhood,EA037-5,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +44137,Af9,EA037,Absent,EA037-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p71, +44138,Ag1,EA037,Adolescence,EA037-6,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +44139,Ag10,EA037,Absent,EA037-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +44140,Ag11,EA037,Absent,EA037-1,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +44141,Ag12,EA037,Absent,EA037-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +44142,Ag13,EA037,Absent,EA037-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +44143,Ag14,EA037,"Customary, age unclear",EA037-10,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +44144,Ag15,EA037,Early adulthood,EA037-7,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +44145,Ag16,EA037,Adolescence,EA037-6,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p71, +44146,Ag17,EA037,"Customary, age unclear",EA037-10,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +44147,Ag18,EA037,Absent,EA037-1,"But Santos Lima, in contradiction to earlier sources, reports circumcision",bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p71, +44148,Ag19,EA037,Adolescence,EA037-6,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p71, +44149,Ag2,EA037,Late childhood,EA037-5,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +44150,Ag20,EA037,Adolescence,EA037-6,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +44151,Ag21,EA037,Late childhood,EA037-5,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +44152,Ag22,EA037,?,EA037-NA,,,,,, +44153,Ag23,EA037,"Customary, age unclear",EA037-10,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +44154,Ag24,EA037,Adolescence,EA037-6,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +44155,Ag25,EA037,Adolescence,EA037-6,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p71, +44156,Ag26,EA037,"Customary, age unclear",EA037-10,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p71, +44157,Ag27,EA037,Infancy ,EA037-3,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +44158,Ag28,EA037,"Customary, age unclear",EA037-10,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +44159,Ag29,EA037,Infancy ,EA037-3,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +44160,Ag3,EA037,Adolescence,EA037-6,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p71, +44161,Ag30,EA037,Adolescence,EA037-6,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p71, +44162,Ag31,EA037,Adolescence,EA037-6,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p71, +44163,Ag32,EA037,Infancy ,EA037-3,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p71, +44164,Ag33,EA037,Absent,EA037-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +44165,Ag34,EA037,Absent,EA037-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +44166,Ag35,EA037,Absent,EA037-1,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +44167,Ag36,EA037,Absent,EA037-1,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +44168,Ag37,EA037,Absent,EA037-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +44169,Ag38,EA037,Absent,EA037-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +44170,Ag39,EA037,Absent,EA037-1,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +44171,Ag4,EA037,Absent,EA037-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +44172,Ag40,EA037,Absent,EA037-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +44173,Ag41,EA037,Absent,EA037-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +44174,Ag42,EA037,Absent,EA037-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +44175,Ag43,EA037,Absent,EA037-1,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +44176,Ag44,EA037,Infancy ,EA037-3,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +44177,Ag45,EA037,Adolescence,EA037-6,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +44178,Ag46,EA037,"Customary, age unclear",EA037-10,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +44179,Ag47,EA037,Late childhood,EA037-5,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +44180,Ag48,EA037,Absent,EA037-1,But increasingly practiced in recent years,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p75, +44181,Ag49,EA037,Absent,EA037-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +44182,Ag5,EA037,Absent,EA037-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +44183,Ag50,EA037,Absent,EA037-1,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +44184,Ag51,EA037,Absent,EA037-1,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +44185,Ag52,EA037,?,EA037-NA,"Circumcision, though common, is not universal",froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +44186,Ag53,EA037,Adolescence,EA037-6,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +44187,Ag54,EA037,Adolescence,EA037-6,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +44188,Ag6,EA037,Adolescence,EA037-6,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +44189,Ag7,EA037,Adolescence,EA037-6,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +44190,Ag8,EA037,Late childhood,EA037-5,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +44191,Ag9,EA037,Adolescence,EA037-6,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p71, +44192,Ah1,EA037,"Customary, age unclear",EA037-10,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44193,Ah10,EA037,"Customary, age unclear",EA037-10,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +44194,Ah11,EA037,Absent,EA037-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p75, +44195,Ah12,EA037,Absent,EA037-1,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +44196,Ah13,EA037,Absent,EA037-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +44197,Ah14,EA037,Absent,EA037-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +44198,Ah15,EA037,Late childhood,EA037-5,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p75, +44199,Ah16,EA037,Late childhood,EA037-5,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +44200,Ah17,EA037,?,EA037-NA,"One early source reports circumcision, another denies it",gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +44201,Ah18,EA037,Absent,EA037-1,Recently introduced and sporadic,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +44202,Ah19,EA037,Late childhood,EA037-5,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p75, +44203,Ah2,EA037,Adolescence,EA037-6,,meek1931a,,1920,EthnographicAtlas_1967_p75, +44204,Ah20,EA037,"Customary, age unclear",EA037-10,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +44205,Ah21,EA037,Early childhood,EA037-4,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +44206,Ah22,EA037,?,EA037-NA,,,,,, +44207,Ah23,EA037,?,EA037-NA,,,,,, +44208,Ah24,EA037,?,EA037-NA,,,,,, +44209,Ah25,EA037,?,EA037-NA,,,,,, +44210,Ah26,EA037,Infancy ,EA037-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +44211,Ah27,EA037,?,EA037-NA,,,,,, +44212,Ah28,EA037,Adolescence,EA037-6,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +44213,Ah29,EA037,?,EA037-NA,,,,,, +44214,Ah3,EA037,Late childhood,EA037-5,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +44215,Ah30,EA037,Absent,EA037-1,,meek1931b,,1920,EthnographicAtlas_1967_p75, +44216,Ah31,EA037,Absent,EA037-1,Circumcision occurs only sporadically,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p75, +44217,Ah32,EA037,Adolescence,EA037-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +44218,Ah33,EA037,Absent,EA037-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p75, +44219,Ah34,EA037,"Customary, age unclear",EA037-10,"The Malabu practice circumcision, but most Bata subtribes do not",meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +44220,Ah35,EA037,Absent,EA037-1,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +44221,Ah36,EA037,"Customary, age unclear",EA037-10,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +44222,Ah37,EA037,Absent,EA037-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +44223,Ah38,EA037,Absent,EA037-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +44224,Ah39,EA037,Absent,EA037-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +44225,Ah4,EA037,?,EA037-NA,,,,,, +44226,Ah5,EA037,Absent,EA037-1,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +44227,Ah6,EA037,"Customary, age unclear",EA037-10,"The age of circumcision is variable, being determined by divination",dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +44228,Ah7,EA037,Absent,EA037-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +44229,Ah8,EA037,Late childhood,EA037-5,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +44230,Ah9,EA037,Adolescence,EA037-6,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75, +44231,Ai1,EA037,Adolescence,EA037-6,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p75, +44232,Ai10,EA037,Absent,EA037-1,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p75, +44233,Ai11,EA037,Late childhood,EA037-5,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +44234,Ai12,EA037,Absent,EA037-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +44235,Ai13,EA037,Absent,EA037-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +44236,Ai14,EA037,Adolescence,EA037-6,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +44237,Ai15,EA037,Adolescence,EA037-6,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +44238,Ai16,EA037,Adolescence,EA037-6,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +44239,Ai17,EA037,Absent,EA037-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +44240,Ai18,EA037,Adolescence,EA037-6,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +44241,Ai19,EA037,Absent,EA037-1,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +44242,Ai2,EA037,?,EA037-NA,,,,,, +44243,Ai20,EA037,Absent,EA037-1,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +44244,Ai21,EA037,"Customary, age unclear",EA037-10,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +44245,Ai22,EA037,Absent,EA037-1,,delafosse1897,,1890,EthnographicAtlas_1967_p75, +44246,Ai23,EA037,Adolescence,EA037-6,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +44247,Ai24,EA037,Adolescence,EA037-6,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +44248,Ai25,EA037,"Customary, age unclear",EA037-10,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +44249,Ai26,EA037,Absent,EA037-1,Entry follows Burssens; Nelson reports circumcision without ceremony,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p75, +44250,Ai27,EA037,Late childhood,EA037-5,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +44251,Ai28,EA037,Late childhood,EA037-5,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +44252,Ai29,EA037,Late childhood,EA037-5,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +44253,Ai3,EA037,Late childhood,EA037-5,"Entry follows Seligman; one early source reports 'adolescence' (code ""6"")",baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +44254,Ai30,EA037,Adolescence,EA037-6,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +44255,Ai31,EA037,Absent,EA037-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +44256,Ai32,EA037,Absent,EA037-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +44257,Ai33,EA037,Absent,EA037-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +44258,Ai34,EA037,Absent,EA037-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +44259,Ai35,EA037,Absent,EA037-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +44260,Ai36,EA037,Late childhood,EA037-5,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +44261,Ai37,EA037,?,EA037-NA,,,,,, +44262,Ai38,EA037,Absent,EA037-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +44263,Ai39,EA037,Absent,EA037-1,,nadel1947,,1940,EthnographicAtlas_1967_p75, +44264,Ai4,EA037,"Customary, age unclear",EA037-10,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +44265,Ai40,EA037,Absent,EA037-1,,nadel1947,,1940,EthnographicAtlas_1967_p75, +44266,Ai41,EA037,Absent,EA037-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +44267,Ai42,EA037,Absent,EA037-1,But circumcision is practiced in two villages,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p75, +44268,Ai43,EA037,Early adulthood,EA037-7,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p75, +44269,Ai44,EA037,Absent,EA037-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +44270,Ai45,EA037,Absent,EA037-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +44271,Ai46,EA037,Absent,EA037-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p75, +44272,Ai47,EA037,Adolescence,EA037-6,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +44273,Ai5,EA037,Adolescence,EA037-6,Circumcision was not adopted until the end of the nineteenth century,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +44274,Ai6,EA037,Absent,EA037-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +44275,Ai7,EA037,Late childhood,EA037-5,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +44276,Ai8,EA037,Adolescence,EA037-6,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p75, +44277,Ai9,EA037,Absent,EA037-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +44278,Aj1,EA037,Absent,EA037-1,,lawrance1957,,1950,EthnographicAtlas_1967_p75, +44279,Aj10,EA037,Absent,EA037-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +44280,Aj11,EA037,Absent,EA037-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +44281,Aj12,EA037,Absent,EA037-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +44282,Aj13,EA037,Absent,EA037-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +44283,Aj14,EA037,Absent,EA037-1,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +44284,Aj15,EA037,Absent,EA037-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +44285,Aj16,EA037,Absent,EA037-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p79, +44286,Aj17,EA037,Absent,EA037-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +44287,Aj18,EA037,Absent,EA037-1,,jensen1959,,1950,EthnographicAtlas_1967_p79, +44288,Aj19,EA037,Late childhood,EA037-5,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p79, +44289,Aj2,EA037,Adolescence,EA037-6,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +44290,Aj20,EA037,?,EA037-NA,"Possibly in error since 'adolescence' (code ""6"") is reported for the kindred Surma",cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p79, +44291,Aj21,EA037,Absent,EA037-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +44292,Aj22,EA037,Absent,EA037-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +44293,Aj23,EA037,Adolescence,EA037-6,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +44294,Aj24,EA037,Absent,EA037-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +44295,Aj25,EA037,"Customary, age unclear",EA037-10,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +44296,Aj26,EA037,Adolescence,EA037-6,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p79, +44297,Aj27,EA037,"Customary, age unclear",EA037-10,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +44298,Aj28,EA037,Late childhood,EA037-5,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +44299,Aj29,EA037,Adolescence,EA037-6,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +44300,Aj3,EA037,Absent,EA037-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +44301,Aj30,EA037,?,EA037-NA,,,,,, +44302,Aj31,EA037,?,EA037-NA,,,,,, +44303,Aj4,EA037,Absent,EA037-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +44304,Aj5,EA037,Absent,EA037-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +44305,Aj6,EA037,Absent,EA037-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +44306,Aj7,EA037,Early adulthood,EA037-7,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +44307,Aj8,EA037,Absent,EA037-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +44308,Aj9,EA037,Adolescence,EA037-6,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +44309,Ca1,EA037,Old age,EA037-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +44310,Ca10,EA037,Adolescence,EA037-6,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +44311,Ca11,EA037,"Customary, age unclear",EA037-10,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p79, +44312,Ca12,EA037,Infancy ,EA037-3,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p79, +44313,Ca13,EA037,Maturity,EA037-8,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p79, +44314,Ca14,EA037,Maturity,EA037-8,"Entry follows Fleming; Cerulli reports 'late childhood' (code ""5"")",cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p79, +44315,Ca15,EA037,Maturity,EA037-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +44316,Ca16,EA037,Maturity,EA037-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +44317,Ca17,EA037,Adolescence,EA037-6,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +44318,Ca18,EA037,Absent,EA037-1,"But 'adolescence' (code ""6"") in sporadic occurrence",cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +44319,Ca19,EA037,Adolescence,EA037-6,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +44320,Ca2,EA037,Late childhood,EA037-5,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +44321,Ca20,EA037,Adolescence,EA037-6,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +44322,Ca21,EA037,Adolescence,EA037-6,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +44323,Ca22,EA037,?,EA037-NA,,,,,, +44324,Ca23,EA037,Absent,EA037-1,,jensen1959,,1950,EthnographicAtlas_1967_p79, +44325,Ca24,EA037,Absent,EA037-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +44326,Ca25,EA037,Absent,EA037-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +44327,Ca26,EA037,Absent,EA037-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +44328,Ca27,EA037,"Customary, age unclear",EA037-10,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +44329,Ca28,EA037,Absent,EA037-1,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p79, +44330,Ca29,EA037,Infancy ,EA037-3,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p79, +44331,Ca3,EA037,Shortly after birth,EA037-2,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +44332,Ca30,EA037,Shortly after birth,EA037-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p79, +44333,Ca31,EA037,Shortly after birth,EA037-2,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +44334,Ca32,EA037,Infancy ,EA037-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +44335,Ca33,EA037,Early childhood,EA037-4,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +44336,Ca34,EA037,Late childhood,EA037-5,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +44337,Ca35,EA037,Infancy ,EA037-3,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +44338,Ca36,EA037,Late childhood,EA037-5,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +44339,Ca37,EA037,?,EA037-NA,,,,,, +44340,Ca38,EA037,Infancy ,EA037-3,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +44341,Ca39,EA037,"Customary, age unclear",EA037-10,,lewis1965b,,1930,EthnographicAtlas_1967_p79, +44342,Ca4,EA037,"Customary, age unclear",EA037-10,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p79, +44343,Ca40,EA037,Absent,EA037-1,Straube was unable to confirm Cerulli's report that boys are circumcised,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +44344,Ca41,EA037,Maturity,EA037-8,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +44345,Ca42,EA037,Absent,EA037-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +44346,Ca43,EA037,?,EA037-NA,,,,,, +44347,Ca5,EA037,Late childhood,EA037-5,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p79, +44348,Ca6,EA037,Adolescence,EA037-6,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +44349,Ca7,EA037,Shortly after birth,EA037-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +44350,Ca8,EA037,Late childhood,EA037-5,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p79, +44351,Ca9,EA037,"Customary, age unclear",EA037-10,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +44352,Cb1,EA037,?,EA037-NA,,,,,, +44353,Cb10,EA037,Late childhood,EA037-5,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +44354,Cb11,EA037,"Customary, age unclear",EA037-10,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +44355,Cb12,EA037,"Customary, age unclear",EA037-10,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +44356,Cb13,EA037,"Customary, age unclear",EA037-10,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +44357,Cb14,EA037,"Customary, age unclear",EA037-10,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +44358,Cb15,EA037,Late childhood,EA037-5,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +44359,Cb16,EA037,Adolescence,EA037-6,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +44360,Cb17,EA037,Adolescence,EA037-6,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +44361,Cb18,EA037,Late childhood,EA037-5,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p79, +44362,Cb19,EA037,Late childhood,EA037-5,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +44363,Cb2,EA037,Late childhood,EA037-5,"Formerly 'in early adulthood' (code""7"")",ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +44364,Cb20,EA037,"Customary, age unclear",EA037-10,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +44365,Cb21,EA037,Late childhood,EA037-5,,pfeffer1936,,1930,EthnographicAtlas_1967_p83, +44366,Cb22,EA037,Late childhood,EA037-5,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +44367,Cb23,EA037,Infancy ,EA037-3,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p83, +44368,Cb24,EA037,Adolescence,EA037-6,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +44369,Cb25,EA037,Infancy ,EA037-3,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +44370,Cb26,EA037,Late childhood,EA037-5,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +44371,Cb27,EA037,?,EA037-NA,,,,,, +44372,Cb28,EA037,"Customary, age unclear",EA037-10,Circumcision is relatively recent,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +44373,Cb29,EA037,?,EA037-NA,,,,,, +44374,Cb3,EA037,Late childhood,EA037-5,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +44375,Cb4,EA037,"Customary, age unclear",EA037-10,,reid1930,,1920,EthnographicAtlas_1967_p79, +44376,Cb5,EA037,Adolescence,EA037-6,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p79, +44377,Cb6,EA037,Late childhood,EA037-5,,woodnd,,1920,EthnographicAtlas_1967_p79, +44378,Cb7,EA037,"Customary, age unclear",EA037-10,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +44379,Cb8,EA037,Late childhood,EA037-5,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +44380,Cb9,EA037,Late childhood,EA037-5,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +44381,Cc1,EA037,Late childhood,EA037-5,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +44382,Cc10,EA037,"Customary, age unclear",EA037-10,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +44383,Cc11,EA037,"Customary, age unclear",EA037-10,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +44384,Cc12,EA037,"Customary, age unclear",EA037-10,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +44385,Cc13,EA037,"Customary, age unclear",EA037-10,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +44386,Cc14,EA037,Adolescence,EA037-6,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +44387,Cc15,EA037,?,EA037-NA,,,,,, +44388,Cc16,EA037,Late childhood,EA037-5,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +44389,Cc17,EA037,Late childhood,EA037-5,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p83, +44390,Cc18,EA037,"Customary, age unclear",EA037-10,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +44391,Cc19,EA037,"Customary, age unclear",EA037-10,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +44392,Cc2,EA037,Adolescence,EA037-6,"Entry follows Kline, but Fuchs reports 'late childhood' (code ""5"") and Le Coeur 'early adulthoold' (code ""7"")",briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +44393,Cc20,EA037,"Customary, age unclear",EA037-10,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p83, +44394,Cc3,EA037,Late childhood,EA037-5,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +44395,Cc4,EA037,Early childhood,EA037-4,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +44396,Cc5,EA037,Late childhood,EA037-5,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p83, +44397,Cc6,EA037,"Customary, age unclear",EA037-10,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +44398,Cc7,EA037,Early childhood,EA037-4,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44399,Cc8,EA037,?,EA037-NA,,,,,, +44400,Cc9,EA037,Early childhood,EA037-4,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +44401,Cd1,EA037,Late childhood,EA037-5,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +44402,Cd10,EA037,Adolescence,EA037-6,"Though general, circumcision is not universal",destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +44403,Cd11,EA037,?,EA037-NA,,,,,, +44404,Cd12,EA037,Late childhood,EA037-5,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +44405,Cd13,EA037,Infancy ,EA037-3,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +44406,Cd14,EA037,Late childhood,EA037-5,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +44407,Cd15,EA037,Early childhood,EA037-4,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +44408,Cd16,EA037,Infancy ,EA037-3,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +44409,Cd17,EA037,"Customary, age unclear",EA037-10,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +44410,Cd18,EA037,Adolescence,EA037-6,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +44411,Cd19,EA037,Infancy ,EA037-3,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +44412,Cd2,EA037,Early childhood,EA037-4,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +44413,Cd20,EA037,"Customary, age unclear",EA037-10,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +44414,Cd21,EA037,"Customary, age unclear",EA037-10,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +44415,Cd3,EA037,Shortly after birth,EA037-2,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +44416,Cd4,EA037,"Customary, age unclear",EA037-10,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +44417,Cd5,EA037,"Customary, age unclear",EA037-10,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +44418,Cd6,EA037,?,EA037-NA,,,,,, +44419,Cd7,EA037,Infancy ,EA037-3,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +44420,Cd8,EA037,"Customary, age unclear",EA037-10,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +44421,Cd9,EA037,"Customary, age unclear",EA037-10,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +44422,Ce1,EA037,Absent,EA037-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +44423,Ce2,EA037,?,EA037-NA,,,,,, +44424,Ce3,EA037,Absent,EA037-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +44425,Ce4,EA037,Absent,EA037-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44426,Ce5,EA037,Absent,EA037-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +44427,Ce6,EA037,Absent,EA037-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +44428,Ce7,EA037,Absent,EA037-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +44429,Ce8,EA037,Absent,EA037-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +44430,Cf1,EA037,Absent,EA037-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +44431,Cf2,EA037,Absent,EA037-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No4_Oct_1962, +44432,Cf3,EA037,Absent,EA037-1,,munch1945,,1930,EthnographicAtlas_1967_p83, +44433,Cf4,EA037,Absent,EA037-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +44434,Cf5,EA037,Absent,EA037-1,,miner1939,,1930,EthnographicAtlas_1967_p83, +44435,Cg1,EA037,Absent,EA037-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +44436,Cg2,EA037,Absent,EA037-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +44437,Cg3,EA037,Absent,EA037-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +44438,Cg4,EA037,Absent,EA037-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +44439,Cg5,EA037,Absent,EA037-1,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +44440,Ch1,EA037,Absent,EA037-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +44441,Ch10,EA037,?,EA037-NA,,,,,, +44442,Ch11,EA037,Absent,EA037-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +44443,Ch2,EA037,Absent,EA037-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +44444,Ch3,EA037,Absent,EA037-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +44445,Ch4,EA037,?,EA037-NA,,,,,, +44446,Ch5,EA037,Absent,EA037-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +44447,Ch6,EA037,Absent,EA037-1,,ember1954,,1910,EthnographicAtlas_1967_p83, +44448,Ch7,EA037,Absent,EA037-1,,friedrich1954,,1930,EthnographicAtlas_1967_p83, +44449,Ch8,EA037,Absent,EA037-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +44450,Ch9,EA037,Absent,EA037-1,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +44451,Ci1,EA037,?,EA037-NA,,,,,, +44452,Ci10,EA037,Absent,EA037-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +44453,Ci11,EA037,Late childhood,EA037-5,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +44454,Ci12,EA037,?,EA037-NA,,,,,, +44455,Ci2,EA037,?,EA037-NA,,,,,, +44456,Ci3,EA037,"Customary, age unclear",EA037-10,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p83, +44457,Ci4,EA037,"Customary, age unclear",EA037-10,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +44458,Ci5,EA037,"Customary, age unclear",EA037-10,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +44459,Ci6,EA037,Absent,EA037-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p83, +44460,Ci7,EA037,"Customary, age unclear",EA037-10,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p83, +44461,Ci8,EA037,?,EA037-NA,,,,,, +44462,Ci9,EA037,"Customary, age unclear",EA037-10,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +44463,Cj1,EA037,Infancy ,EA037-3,Sweet reports from one month to seven years of age,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +44464,Cj10,EA037,"Customary, age unclear",EA037-10,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +44465,Cj2,EA037,Early childhood,EA037-4,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +44466,Cj3,EA037,Shortly after birth,EA037-2,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +44467,Cj4,EA037,Absent,EA037-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +44468,Cj5,EA037,Late childhood,EA037-5,,dickson1949,,1930,EthnographicAtlas_1967_p87, +44469,Cj6,EA037,"Customary, age unclear",EA037-10,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +44470,Cj7,EA037,?,EA037-NA,,,,,, +44471,Cj8,EA037,Adolescence,EA037-6,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +44472,Cj9,EA037,"Customary, age unclear",EA037-10,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +44473,Ea1,EA037,"Customary, age unclear",EA037-10,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +44474,Ea10,EA037,"Customary, age unclear",EA037-10,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +44475,Ea11,EA037,Late childhood,EA037-5,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +44476,Ea12,EA037,"Customary, age unclear",EA037-10,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +44477,Ea13,EA037,Absent,EA037-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +44478,Ea2,EA037,Early childhood,EA037-4,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +44479,Ea3,EA037,"Customary, age unclear",EA037-10,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +44480,Ea4,EA037,Early childhood,EA037-4,,barth1956b,,1950,EthnographicAtlas_1967_p87, +44481,Ea5,EA037,?,EA037-NA,,,,,, +44482,Ea6,EA037,Infancy ,EA037-3,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +44483,Ea7,EA037,Early childhood,EA037-4,,schurmann1962,,1950,EthnographicAtlas_1967_p87, +44484,Ea8,EA037,"Customary, age unclear",EA037-10,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p87, +44485,Ea9,EA037,"Customary, age unclear",EA037-10,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +44486,Eb1,EA037,Late childhood,EA037-5,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +44487,Eb2,EA037,Absent,EA037-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p87, +44488,Eb3,EA037,Absent,EA037-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p87, +44489,Eb4,EA037,?,EA037-NA,,,,,, +44490,Eb5,EA037,"Customary, age unclear",EA037-10,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No2_Apr_1963, +44491,Eb6,EA037,?,EA037-NA,,,,,, +44492,Eb7,EA037,Absent,EA037-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +44493,Eb8,EA037,?,EA037-NA,,,,,, +44494,Ec1,EA037,Absent,EA037-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +44495,Ec10,EA037,Absent,EA037-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +44496,Ec11,EA037,Absent,EA037-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +44497,Ec2,EA037,Absent,EA037-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44498,Ec3,EA037,Absent,EA037-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +44499,Ec4,EA037,Absent,EA037-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +44500,Ec5,EA037,Absent,EA037-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +44501,Ec6,EA037,Absent,EA037-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +44502,Ec7,EA037,Absent,EA037-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +44503,Ec8,EA037,Absent,EA037-1,,shimkin1939,,1900,EthnographicAtlas_1967_p87, +44504,Ec9,EA037,Absent,EA037-1,,lattimore1933,,1920,EthnographicAtlas_1967_p87, +44505,Ed1,EA037,Absent,EA037-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +44506,Ed10,EA037,Absent,EA037-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +44507,Ed13,EA037,?,EA037-NA,,,,,, +44508,Ed14,EA037,?,EA037-NA,,,,,, +44509,Ed15a,EA037,?,EA037-NA,,,,,, +44510,Ed15b,EA037,Absent,EA037-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +44511,Ed16,EA037,?,EA037-NA,,,,,, +44512,Ed2,EA037,Absent,EA037-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +44513,Ed3,EA037,Absent,EA037-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p87, +44514,Ed4,EA037,Absent,EA037-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +44515,Ed5,EA037,Absent,EA037-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44516,Ed6,EA037,Absent,EA037-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +44517,Ed7,EA037,Absent,EA037-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +44518,Ed8,EA037,Absent,EA037-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +44519,Ed9,EA037,Absent,EA037-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +44520,Ee1,EA037,Absent,EA037-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +44521,Ee2,EA037,"Customary, age unclear",EA037-10,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +44522,Ee3,EA037,Absent,EA037-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +44523,Ee4,EA037,Absent,EA037-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +44524,Ee5,EA037,Absent,EA037-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +44525,Ee6,EA037,Absent,EA037-1,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +44526,Ee7,EA037,?,EA037-NA,,,,,, +44527,Ee8,EA037,Absent,EA037-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +44528,Ef1,EA037,Absent,EA037-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +44529,Ef10,EA037,?,EA037-NA,,,,,, +44530,Ef11,EA037,Absent,EA037-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +44531,Ef2,EA037,Absent,EA037-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +44532,Ef3,EA037,?,EA037-NA,,,,,, +44533,Ef4,EA037,?,EA037-NA,,,,,, +44534,Ef5,EA037,Absent,EA037-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +44535,Ef6,EA037,Absent,EA037-1,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p87, +44536,Ef7,EA037,Absent,EA037-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +44537,Ef8,EA037,Early childhood,EA037-4,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +44538,Ef9,EA037,Absent,EA037-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44539,Eg1,EA037,Absent,EA037-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44540,Eg10,EA037,Absent,EA037-1,"But early or late childhood (codes ""4"" or ""5"") for Moslems",dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +44541,Eg11,EA037,?,EA037-NA,,,,,, +44542,Eg12,EA037,?,EA037-NA,,,,,, +44543,Eg13,EA037,Absent,EA037-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44544,Eg14,EA037,Absent,EA037-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +44545,Eg2,EA037,Absent,EA037-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +44546,Eg3,EA037,Absent,EA037-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +44547,Eg4,EA037,Absent,EA037-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +44548,Eg5,EA037,Absent,EA037-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +44549,Eg6,EA037,Absent,EA037-1,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +44550,Eg7,EA037,Absent,EA037-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +44551,Eg8,EA037,Absent,EA037-1,,griffiths1946,,1940,EthnographicAtlas_1967_p91, +44552,Eg9,EA037,Absent,EA037-1,,elwin1939,,1930,EthnographicAtlas_1967_p91, +44553,Eh1,EA037,Absent,EA037-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +44554,Eh10,EA037,?,EA037-NA,,,,,, +44555,Eh2,EA037,Infancy ,EA037-3,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +44556,Eh3,EA037,Early childhood,EA037-4,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +44557,Eh4,EA037,Absent,EA037-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44558,Eh5,EA037,Absent,EA037-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +44559,Eh6,EA037,Absent,EA037-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +44560,Eh7,EA037,Adolescence,EA037-6,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +44561,Eh8,EA037,Adolescence,EA037-6,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91, +44562,Eh9,EA037,"Customary, age unclear",EA037-10,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +44563,Ei1,EA037,Absent,EA037-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44564,Ei10,EA037,Absent,EA037-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p91, +44565,Ei11,EA037,Absent,EA037-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +44566,Ei12,EA037,Absent,EA037-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +44567,Ei13,EA037,Absent,EA037-1,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +44568,Ei14,EA037,Absent,EA037-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +44569,Ei15,EA037,?,EA037-NA,,,,,, +44570,Ei16,EA037,Absent,EA037-1,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +44571,Ei17,EA037,?,EA037-NA,,,,,, +44572,Ei18,EA037,Absent,EA037-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +44573,Ei19,EA037,Absent,EA037-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +44574,Ei2,EA037,Absent,EA037-1,,mills1922,,1920,EthnographicAtlas_1967_p91, +44575,Ei20,EA037,?,EA037-NA,,,,,, +44576,Ei3,EA037,Absent,EA037-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +44577,Ei4,EA037,Absent,EA037-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +44578,Ei5,EA037,Absent,EA037-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +44579,Ei6,EA037,Absent,EA037-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +44580,Ei7,EA037,Absent,EA037-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +44581,Ei8,EA037,Absent,EA037-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +44582,Ei9,EA037,?,EA037-NA,,,,,, +44583,Ej1,EA037,Absent,EA037-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +44584,Ej10,EA037,Absent,EA037-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +44585,Ej11,EA037,Absent,EA037-1,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +44586,Ej12,EA037,Absent,EA037-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +44587,Ej13,EA037,Absent,EA037-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +44588,Ej14,EA037,Absent,EA037-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44589,Ej15,EA037,Absent,EA037-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +44590,Ej16,EA037,Adolescence,EA037-6,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +44591,Ej2,EA037,Absent,EA037-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +44592,Ej3,EA037,Absent,EA037-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +44593,Ej4,EA037,Absent,EA037-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +44594,Ej5,EA037,Absent,EA037-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +44595,Ej6,EA037,Absent,EA037-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p91, +44596,Ej7,EA037,Absent,EA037-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +44597,Ej8,EA037,"Customary, age unclear",EA037-10,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +44598,Ej9,EA037,Absent,EA037-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +44599,Ia1,EA037,Absent,EA037-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +44600,Ia10,EA037,Absent,EA037-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p91, +44601,Ia11,EA037,Absent,EA037-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +44602,Ia12,EA037,Absent,EA037-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +44603,Ia13,EA037,"Customary, age unclear",EA037-10,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +44604,Ia14,EA037,Absent,EA037-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p95, +44605,Ia15,EA037,Absent,EA037-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +44606,Ia16,EA037,Absent,EA037-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +44607,Ia17,EA037,?,EA037-NA,,,,,, +44608,Ia18,EA037,?,EA037-NA,,,,,, +44609,Ia2,EA037,Absent,EA037-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +44610,Ia3,EA037,Absent,EA037-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +44611,Ia4,EA037,Absent,EA037-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +44612,Ia5,EA037,Absent,EA037-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +44613,Ia6,EA037,Absent,EA037-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44614,Ia7,EA037,Absent,EA037-1,,fox1954,,1950,EthnographicAtlas_1967_p91, +44615,Ia8,EA037,Absent,EA037-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +44616,Ia9,EA037,Absent,EA037-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +44617,Ib1,EA037,Absent,EA037-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44618,Ib2,EA037,Adolescence,EA037-6,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44619,Ib3,EA037,Absent,EA037-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +44620,Ib4,EA037,?,EA037-NA,,,,,, +44621,Ib5,EA037,Absent,EA037-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +44622,Ib6,EA037,"Customary, age unclear",EA037-10,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +44623,Ib7,EA037,Absent,EA037-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p95, +44624,Ib8,EA037,Absent,EA037-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p95, +44625,Ib9,EA037,?,EA037-NA,,,,,, +44626,Ic1,EA037,Late childhood,EA037-5,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44627,Ic10,EA037,Absent,EA037-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p95, +44628,Ic11,EA037,"Customary, age unclear",EA037-10,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44629,Ic12,EA037,Late childhood,EA037-5,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +44630,Ic13,EA037,?,EA037-NA,,,,,, +44631,Ic2,EA037,Absent,EA037-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +44632,Ic3,EA037,"Customary, age unclear",EA037-10,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p95, +44633,Ic4,EA037,?,EA037-NA,,,,,, +44634,Ic5,EA037,Absent,EA037-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p95, +44635,Ic6,EA037,Absent,EA037-1,,drabbe1940,,1930,EthnographicAtlas_1967_p95, +44636,Ic7,EA037,Absent,EA037-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +44637,Ic8,EA037,Absent,EA037-1,,pleyte1893,,1890,EthnographicAtlas_1967_p95, +44638,Ic9,EA037,Adolescence,EA037-6,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p95, +44639,Id1,EA037,Adolescence,EA037-6,Also subincision,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +44640,Id10,EA037,Adolescence,EA037-6,Also subincision at about 17 years of age,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +44641,Id11,EA037,Adolescence,EA037-6,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +44642,Id12,EA037,?,EA037-NA,,,,,, +44643,Id13,EA037,Late childhood,EA037-5,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +44644,Id2,EA037,Late childhood,EA037-5,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +44645,Id3,EA037,Absent,EA037-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +44646,Id4,EA037,Late childhood,EA037-5,And subsequently also subincision,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +44647,Id5,EA037,Absent,EA037-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +44648,Id6,EA037,Absent,EA037-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p95, +44649,Id7,EA037,Adolescence,EA037-6,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +44650,Id8,EA037,Absent,EA037-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +44651,Id9,EA037,Absent,EA037-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p95, +44652,Ie1,EA037,Absent,EA037-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44653,Ie10,EA037,Absent,EA037-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +44654,Ie11,EA037,Absent,EA037-1,,bowers1964,,1950,EthnographicAtlas_1967_p95, +44655,Ie12,EA037,Absent,EA037-1,"But 'adolescence' (code ""6"") if slashing a boy's penis is equated with circumcision",whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44656,Ie13,EA037,Absent,EA037-1,,landtman1927,,1920,EthnographicAtlas_1967_p95, +44657,Ie14,EA037,Absent,EA037-1,,haddon1908,,1900,EthnographicAtlas_1967_p95, +44658,Ie15,EA037,Absent,EA037-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44659,Ie16,EA037,Absent,EA037-1,,williams194041,,1940,EthnographicAtlas_1967_p95, +44660,Ie17,EA037,?,EA037-NA,,,,,, +44661,Ie18,EA037,Absent,EA037-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +44662,Ie19,EA037,Absent,EA037-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +44663,Ie2,EA037,Absent,EA037-1,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +44664,Ie20,EA037,Absent,EA037-1,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +44665,Ie21,EA037,Absent,EA037-1,,malinowski1916,,1900,EthnographicAtlas_1967_p95, +44666,Ie22,EA037,Absent,EA037-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +44667,Ie23,EA037,Absent,EA037-1,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +44668,Ie24,EA037,Absent,EA037-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p95, +44669,Ie25,EA037,Absent,EA037-1,,williamson1912,,1920,EthnographicAtlas_1967_p95, +44670,Ie26,EA037,Absent,EA037-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +44671,Ie27,EA037,Absent,EA037-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p99, +44672,Ie28,EA037,Absent,EA037-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +44673,Ie29,EA037,Absent,EA037-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44674,Ie3,EA037,Absent,EA037-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44675,Ie30,EA037,Absent,EA037-1,,pouwer1955,,1950,EthnographicAtlas_1967_p99, +44676,Ie31,EA037,Absent,EA037-1,But penis-bleeding is performed at the age of 18 to 20,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +44677,Ie32,EA037,Absent,EA037-1,But circumcision was formerly practiced,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +44678,Ie33,EA037,?,EA037-NA,,,,,, +44679,Ie34,EA037,?,EA037-NA,,,,,, +44680,Ie35,EA037,?,EA037-NA,,,,,, +44681,Ie36,EA037,?,EA037-NA,,,,,, +44682,Ie37,EA037,?,EA037-NA,,,,,, +44683,Ie38,EA037,Absent,EA037-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +44684,Ie39,EA037,Absent,EA037-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +44685,Ie4,EA037,Adolescence,EA037-6,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44686,Ie5,EA037,Absent,EA037-1,,williams1936,,1930,EthnographicAtlas_1967_p95, +44687,Ie6,EA037,?,EA037-NA,,,,,, +44688,Ie7,EA037,Absent,EA037-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +44689,Ie8,EA037,Absent,EA037-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +44690,Ie9,EA037,Absent,EA037-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +44691,If1,EA037,Absent,EA037-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44692,If10,EA037,?,EA037-NA,,,,,, +44693,If11,EA037,Absent,EA037-1,,sarfert1919,,1860,EthnographicAtlas_1967_p99, +44694,If12,EA037,Absent,EA037-1,,mason1954,,1940,EthnographicAtlas_1967_p99, +44695,If13,EA037,Absent,EA037-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p99, +44696,If14,EA037,Late childhood,EA037-5,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +44697,If15,EA037,Absent,EA037-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +44698,If16,EA037,Absent,EA037-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +44699,If17,EA037,Absent,EA037-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +44700,If2,EA037,Absent,EA037-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +44701,If3,EA037,Absent,EA037-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +44702,If4,EA037,Absent,EA037-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +44703,If5,EA037,Absent,EA037-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +44704,If6,EA037,Absent,EA037-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +44705,If7,EA037,?,EA037-NA,,,,,, +44706,If8,EA037,Absent,EA037-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +44707,If9,EA037,Absent,EA037-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +44708,Ig1,EA037,Absent,EA037-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +44709,Ig10,EA037,Absent,EA037-1,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +44710,Ig11,EA037,Absent,EA037-1,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +44711,Ig12,EA037,?,EA037-NA,,,,,, +44712,Ig13,EA037,?,EA037-NA,,,,,, +44713,Ig14,EA037,"Customary, age unclear",EA037-10,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +44714,Ig15,EA037,?,EA037-NA,,,,,, +44715,Ig16,EA037,?,EA037-NA,,,,,, +44716,Ig17,EA037,?,EA037-NA,,,,,, +44717,Ig18,EA037,?,EA037-NA,,,,,, +44718,Ig19,EA037,?,EA037-NA,,,,,, +44719,Ig2,EA037,Absent,EA037-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +44720,Ig20,EA037,Absent,EA037-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +44721,Ig21,EA037,Absent,EA037-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +44722,Ig3,EA037,Absent,EA037-1,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +44723,Ig4,EA037,Late childhood,EA037-5,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +44724,Ig5,EA037,?,EA037-NA,,,,,, +44725,Ig6,EA037,Absent,EA037-1,,ivens1927,,1900,EthnographicAtlas_1967_p99, +44726,Ig7,EA037,Absent,EA037-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +44727,Ig8,EA037,?,EA037-NA,,,,,, +44728,Ig9,EA037,Absent,EA037-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +44729,Ih1,EA037,Absent,EA037-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +44730,Ih10,EA037,"Customary, age unclear",EA037-10,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44731,Ih11,EA037,?,EA037-NA,,,,,, +44732,Ih12,EA037,?,EA037-NA,,,,,, +44733,Ih13,EA037,?,EA037-NA,,,,,, +44734,Ih14,EA037,Late childhood,EA037-5,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +44735,Ih2,EA037,Absent,EA037-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44736,Ih3,EA037,Early childhood,EA037-4,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +44737,Ih4,EA037,Adolescence,EA037-6,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44738,Ih5,EA037,?,EA037-NA,,,,,, +44739,Ih6,EA037,?,EA037-NA,,,,,, +44740,Ih7,EA037,?,EA037-NA,,,,,, +44741,Ih8,EA037,Adolescence,EA037-6,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +44742,Ih9,EA037,?,EA037-NA,,,,,, +44743,Ii1,EA037,Late childhood,EA037-5,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +44744,Ii10,EA037,?,EA037-NA,,,,,, +44745,Ii12,EA037,Adolescence,EA037-6,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44746,Ii13,EA037,Adolescence,EA037-6,,burrows1937,,1830,EthnographicAtlas_1967_p99, +44747,Ii14,EA037,Late childhood,EA037-5,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +44748,Ii2,EA037,Adolescence,EA037-6,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +44749,Ii3,EA037,Absent,EA037-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +44750,Ii4,EA037,?,EA037-NA,,,,,, +44751,Ii5,EA037,?,EA037-NA,,,,,, +44752,Ii6,EA037,Adolescence,EA037-6,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +44753,Ii7,EA037,Absent,EA037-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +44754,Ii8,EA037,Adolescence,EA037-6,,burrows1936,,1840,EthnographicAtlas_1967_p99, +44755,Ii9,EA037,Adolescence,EA037-6,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +44756,Ij1,EA037,Early adulthood,EA037-7,,buck1934,,1820,EthnographicAtlas_1967_p99, +44757,Ij10,EA037,?,EA037-NA,,,,,, +44758,Ij2,EA037,Absent,EA037-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +44759,Ij3,EA037,Late childhood,EA037-5,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +44760,Ij4,EA037,Absent,EA037-1,,buck1932a,,1850,EthnographicAtlas_1967_p103, +44761,Ij5,EA037,?,EA037-NA,,,,,, +44762,Ij6,EA037,?,EA037-NA,,,,,, +44763,Ij7,EA037,Adolescence,EA037-6,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +44764,Ij8,EA037,?,EA037-NA,,,,,, +44765,Ij9,EA037,?,EA037-NA,,,,,, +44766,Na1,EA037,Absent,EA037-1,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +44767,Na10,EA037,Absent,EA037-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +44768,Na11,EA037,Absent,EA037-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +44769,Na12,EA037,Absent,EA037-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +44770,Na13,EA037,Absent,EA037-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +44771,Na14,EA037,Absent,EA037-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +44772,Na15,EA037,Absent,EA037-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p103, +44773,Na16,EA037,Absent,EA037-1,Osgood could not confirm an early report of circumcision by Petitot,osgood1931,,1860,EthnographicAtlas_1967_p103, +44774,Na17,EA037,Absent,EA037-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44775,Na19,EA037,Absent,EA037-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +44776,Na2,EA037,Absent,EA037-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +44777,Na20,EA037,Absent,EA037-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +44778,Na21,EA037,Absent,EA037-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +44779,Na22,EA037,Absent,EA037-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +44780,Na23,EA037,Absent,EA037-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +44781,Na24,EA037,Absent,EA037-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +44782,Na25,EA037,Absent,EA037-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +44783,Na26,EA037,Absent,EA037-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +44784,Na27,EA037,Absent,EA037-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +44785,Na28,EA037,Absent,EA037-1,,jenness1937,,1880,EthnographicAtlas_1967_p103, +44786,Na29,EA037,Absent,EA037-1,,goddard1916,,1850,EthnographicAtlas_1967_p103, +44787,Na3,EA037,Absent,EA037-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +44788,Na30,EA037,Absent,EA037-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +44789,Na31,EA037,Absent,EA037-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +44790,Na32,EA037,Absent,EA037-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +44791,Na33,EA037,Absent,EA037-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +44792,Na34,EA037,Absent,EA037-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +44793,Na35,EA037,Absent,EA037-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +44794,Na36,EA037,Absent,EA037-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +44795,Na37,EA037,Absent,EA037-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +44796,Na38,EA037,Absent,EA037-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +44797,Na39,EA037,Absent,EA037-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +44798,Na4,EA037,Absent,EA037-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +44799,Na40,EA037,Absent,EA037-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +44800,Na41,EA037,Absent,EA037-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +44801,Na42,EA037,Absent,EA037-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +44802,Na43,EA037,Absent,EA037-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +44803,Na44,EA037,Absent,EA037-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +44804,Na45,EA037,Absent,EA037-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +44805,Na5,EA037,Absent,EA037-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +44806,Na6,EA037,Absent,EA037-1,,lantis1946,,1930,EthnographicAtlas_1967_p103, +44807,Na7,EA037,Absent,EA037-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +44808,Na8,EA037,Absent,EA037-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +44809,Na9,EA037,Absent,EA037-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44810,Nb1,EA037,Absent,EA037-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +44811,Nb10,EA037,Absent,EA037-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +44812,Nb11,EA037,Absent,EA037-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +44813,Nb12,EA037,Absent,EA037-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +44814,Nb13,EA037,Absent,EA037-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +44815,Nb14,EA037,Absent,EA037-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +44816,Nb15,EA037,Absent,EA037-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +44817,Nb16,EA037,Absent,EA037-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +44818,Nb17,EA037,Absent,EA037-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +44819,Nb18,EA037,Absent,EA037-1,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +44820,Nb19,EA037,Absent,EA037-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +44821,Nb2,EA037,Absent,EA037-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +44822,Nb20,EA037,Absent,EA037-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +44823,Nb21,EA037,Absent,EA037-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +44824,Nb22,EA037,Absent,EA037-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +44825,Nb23,EA037,Absent,EA037-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +44826,Nb24,EA037,Absent,EA037-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +44827,Nb25,EA037,Absent,EA037-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +44828,Nb26,EA037,Absent,EA037-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +44829,Nb27,EA037,Absent,EA037-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +44830,Nb28,EA037,Absent,EA037-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +44831,Nb29,EA037,Absent,EA037-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +44832,Nb3,EA037,Absent,EA037-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +44833,Nb30,EA037,Absent,EA037-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +44834,Nb31,EA037,Absent,EA037-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p107, +44835,Nb32,EA037,Absent,EA037-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +44836,Nb33,EA037,Absent,EA037-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +44837,Nb34,EA037,Absent,EA037-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +44838,Nb35,EA037,Absent,EA037-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +44839,Nb36,EA037,Absent,EA037-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +44840,Nb37,EA037,Absent,EA037-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +44841,Nb38,EA037,Absent,EA037-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +44842,Nb39,EA037,Absent,EA037-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +44843,Nb4,EA037,Absent,EA037-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +44844,Nb5,EA037,Absent,EA037-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +44845,Nb6,EA037,Absent,EA037-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +44846,Nb7,EA037,Absent,EA037-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +44847,Nb8,EA037,Absent,EA037-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +44848,Nb9,EA037,Absent,EA037-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +44849,Nc1,EA037,Absent,EA037-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +44850,Nc10,EA037,Absent,EA037-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +44851,Nc11,EA037,Absent,EA037-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +44852,Nc12,EA037,Absent,EA037-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +44853,Nc13,EA037,Absent,EA037-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +44854,Nc14,EA037,Absent,EA037-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +44855,Nc15,EA037,Absent,EA037-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +44856,Nc16,EA037,Absent,EA037-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +44857,Nc17,EA037,Absent,EA037-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +44858,Nc18,EA037,Absent,EA037-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +44859,Nc19,EA037,Absent,EA037-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p107, +44860,Nc2,EA037,Absent,EA037-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +44861,Nc20,EA037,Absent,EA037-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +44862,Nc21,EA037,Absent,EA037-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +44863,Nc22,EA037,Absent,EA037-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +44864,Nc23,EA037,Absent,EA037-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +44865,Nc24,EA037,Absent,EA037-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +44866,Nc25,EA037,Absent,EA037-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +44867,Nc26,EA037,Absent,EA037-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +44868,Nc27,EA037,Absent,EA037-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p107, +44869,Nc28,EA037,Absent,EA037-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +44870,Nc29,EA037,Absent,EA037-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +44871,Nc3,EA037,Absent,EA037-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +44872,Nc30,EA037,Absent,EA037-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +44873,Nc31,EA037,Absent,EA037-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +44874,Nc32,EA037,Absent,EA037-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +44875,Nc33,EA037,Absent,EA037-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +44876,Nc34,EA037,Absent,EA037-1,,meigs1939,,1880,EthnographicAtlas_1967_p107, +44877,Nc4,EA037,Absent,EA037-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +44878,Nc5,EA037,Absent,EA037-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +44879,Nc6,EA037,Absent,EA037-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +44880,Nc7,EA037,Absent,EA037-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +44881,Nc8,EA037,Absent,EA037-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +44882,Nc9,EA037,Absent,EA037-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +44883,Nd1,EA037,Absent,EA037-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +44884,Nd10,EA037,Absent,EA037-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +44885,Nd11,EA037,Absent,EA037-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +44886,Nd12,EA037,Absent,EA037-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +44887,Nd13,EA037,Absent,EA037-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +44888,Nd14,EA037,Absent,EA037-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +44889,Nd15,EA037,Absent,EA037-1,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +44890,Nd16,EA037,Absent,EA037-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +44891,Nd17,EA037,Absent,EA037-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +44892,Nd18,EA037,Absent,EA037-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +44893,Nd19,EA037,Absent,EA037-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +44894,Nd2,EA037,Absent,EA037-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +44895,Nd20,EA037,Absent,EA037-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +44896,Nd21,EA037,Absent,EA037-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +44897,Nd22,EA037,Absent,EA037-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +44898,Nd23,EA037,Absent,EA037-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +44899,Nd24,EA037,Absent,EA037-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +44900,Nd25,EA037,Absent,EA037-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +44901,Nd26,EA037,Absent,EA037-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +44902,Nd27,EA037,Absent,EA037-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +44903,Nd28,EA037,Absent,EA037-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +44904,Nd29,EA037,Absent,EA037-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +44905,Nd3,EA037,Absent,EA037-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +44906,Nd30,EA037,Absent,EA037-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +44907,Nd31,EA037,Absent,EA037-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +44908,Nd32,EA037,Absent,EA037-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +44909,Nd33,EA037,Absent,EA037-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +44910,Nd34,EA037,Absent,EA037-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +44911,Nd35,EA037,Absent,EA037-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +44912,Nd36,EA037,Absent,EA037-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +44913,Nd37,EA037,Absent,EA037-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +44914,Nd38,EA037,Absent,EA037-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +44915,Nd39,EA037,Absent,EA037-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +44916,Nd4,EA037,Absent,EA037-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +44917,Nd40,EA037,Absent,EA037-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +44918,Nd41,EA037,Absent,EA037-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +44919,Nd42,EA037,Absent,EA037-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +44920,Nd43,EA037,Absent,EA037-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +44921,Nd44,EA037,Absent,EA037-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +44922,Nd45,EA037,Absent,EA037-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +44923,Nd46,EA037,Absent,EA037-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +44924,Nd47,EA037,Absent,EA037-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +44925,Nd48,EA037,Absent,EA037-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +44926,Nd49,EA037,Absent,EA037-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +44927,Nd5,EA037,Absent,EA037-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +44928,Nd50,EA037,Absent,EA037-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +44929,Nd51,EA037,Absent,EA037-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +44930,Nd52,EA037,Absent,EA037-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +44931,Nd53,EA037,Absent,EA037-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +44932,Nd54,EA037,Absent,EA037-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44933,Nd55,EA037,Absent,EA037-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +44934,Nd56,EA037,Absent,EA037-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +44935,Nd57,EA037,Absent,EA037-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +44936,Nd58,EA037,Absent,EA037-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +44937,Nd59,EA037,Absent,EA037-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +44938,Nd6,EA037,Absent,EA037-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +44939,Nd60,EA037,Absent,EA037-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +44940,Nd61,EA037,Absent,EA037-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +44941,Nd62,EA037,Absent,EA037-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +44942,Nd63,EA037,Absent,EA037-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +44943,Nd64,EA037,Absent,EA037-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +44944,Nd65,EA037,Absent,EA037-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +44945,Nd66,EA037,Absent,EA037-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +44946,Nd67,EA037,Absent,EA037-1,,gifford1936,,1870,EthnographicAtlas_1967_p111, +44947,Nd7,EA037,Absent,EA037-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +44948,Nd8,EA037,Absent,EA037-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +44949,Nd9,EA037,Absent,EA037-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +44950,Ne1,EA037,Absent,EA037-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +44951,Ne10,EA037,Absent,EA037-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +44952,Ne11,EA037,Absent,EA037-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +44953,Ne12,EA037,Absent,EA037-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +44954,Ne13,EA037,Absent,EA037-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +44955,Ne14,EA037,Absent,EA037-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +44956,Ne15,EA037,Absent,EA037-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +44957,Ne16,EA037,Absent,EA037-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +44958,Ne17,EA037,Absent,EA037-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +44959,Ne18,EA037,Absent,EA037-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +44960,Ne19,EA037,Absent,EA037-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +44961,Ne2,EA037,Absent,EA037-1,,mcallister1937,,1870,EthnographicAtlas_1967_p111, +44962,Ne20,EA037,Absent,EA037-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p115, +44963,Ne21,EA037,?,EA037-NA,,,,,, +44964,Ne3,EA037,Absent,EA037-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p111, +44965,Ne4,EA037,Absent,EA037-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +44966,Ne5,EA037,Absent,EA037-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +44967,Ne6,EA037,Absent,EA037-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p111, +44968,Ne7,EA037,Absent,EA037-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +44969,Ne8,EA037,Absent,EA037-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +44970,Ne9,EA037,Absent,EA037-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +44971,Nf10,EA037,Absent,EA037-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +44972,Nf11,EA037,Absent,EA037-1,,whitman1937,,1870,EthnographicAtlas_1967_p115, +44973,Nf12,EA037,Absent,EA037-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +44974,Nf13,EA037,Absent,EA037-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44975,Nf14,EA037,Absent,EA037-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +44976,Nf15,EA037,?,EA037-NA,,,,,, +44977,Nf2,EA037,Absent,EA037-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p115, +44978,Nf3,EA037,Absent,EA037-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +44979,Nf4,EA037,Absent,EA037-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +44980,Nf5,EA037,Absent,EA037-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +44981,Nf6,EA037,Absent,EA037-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +44982,Nf7,EA037,Absent,EA037-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +44983,Nf8,EA037,Absent,EA037-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +44984,Nf9,EA037,Absent,EA037-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +44985,Ng1,EA037,Absent,EA037-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +44986,Ng10,EA037,Absent,EA037-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +44987,Ng11,EA037,Absent,EA037-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p115, +44988,Ng12,EA037,Absent,EA037-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p115, +44989,Ng13,EA037,?,EA037-NA,,,,,, +44990,Ng14,EA037,?,EA037-NA,,,,,, +44991,Ng15,EA037,?,EA037-NA,,,,,, +44992,Ng2,EA037,?,EA037-NA,,,,,, +44993,Ng3,EA037,Absent,EA037-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +44994,Ng4,EA037,?,EA037-NA,,,,,, +44995,Ng5,EA037,Absent,EA037-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +44996,Ng6,EA037,Absent,EA037-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +44997,Ng7,EA037,Absent,EA037-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +44998,Ng8,EA037,Absent,EA037-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p115, +44999,Ng9,EA037,Absent,EA037-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +45000,Nh1,EA037,Absent,EA037-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +45001,Nh10,EA037,Absent,EA037-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +45002,Nh11,EA037,Absent,EA037-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +45003,Nh12,EA037,Absent,EA037-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +45004,Nh13,EA037,Absent,EA037-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +45005,Nh14,EA037,Absent,EA037-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +45006,Nh15,EA037,Absent,EA037-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +45007,Nh16,EA037,Absent,EA037-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45008,Nh17,EA037,Absent,EA037-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +45009,Nh18,EA037,Absent,EA037-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45010,Nh19,EA037,Absent,EA037-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +45011,Nh2,EA037,Absent,EA037-1,,dozier1954,,1950,EthnographicAtlas_1967_p115, +45012,Nh20,EA037,Absent,EA037-1,,gifford1931,,1860,EthnographicAtlas_1967_p115, +45013,Nh21,EA037,Absent,EA037-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45014,Nh22,EA037,Absent,EA037-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +45015,Nh23,EA037,Absent,EA037-1,,gifford1932a,,1870,EthnographicAtlas_1967_p115, +45016,Nh24,EA037,Absent,EA037-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +45017,Nh25,EA037,Absent,EA037-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +45018,Nh26,EA037,?,EA037-NA,,,,,, +45019,Nh27,EA037,?,EA037-NA,,,,,, +45020,Nh3,EA037,Absent,EA037-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +45021,Nh4,EA037,Absent,EA037-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +45022,Nh5,EA037,Absent,EA037-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +45023,Nh6,EA037,Absent,EA037-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +45024,Nh7,EA037,Absent,EA037-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +45025,Nh8,EA037,Absent,EA037-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +45026,Nh9,EA037,Absent,EA037-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p115, +45027,Ni1,EA037,Absent,EA037-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +45028,Ni2,EA037,Absent,EA037-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +45029,Ni3,EA037,Absent,EA037-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +45030,Ni4,EA037,Absent,EA037-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p115, +45031,Ni5,EA037,Absent,EA037-1,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +45032,Ni6,EA037,Absent,EA037-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +45033,Ni7,EA037,Absent,EA037-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +45034,Ni8,EA037,?,EA037-NA,,,,,, +45035,Ni9,EA037,?,EA037-NA,,,,,, +45036,Nj1,EA037,Absent,EA037-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45037,Nj10,EA037,Absent,EA037-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45038,Nj11,EA037,?,EA037-NA,,,,,, +45039,Nj12,EA037,?,EA037-NA,,,,,, +45040,Nj13,EA037,?,EA037-NA,,,,,, +45041,Nj14,EA037,?,EA037-NA,,,,,, +45042,Nj2,EA037,Absent,EA037-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +45043,Nj3,EA037,Absent,EA037-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +45044,Nj4,EA037,Absent,EA037-1,But Palerm reports that boys were circumcised aboriginally,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +45045,Nj5,EA037,?,EA037-NA,,,,,, +45046,Nj6,EA037,?,EA037-NA,,,,,, +45047,Nj7,EA037,Absent,EA037-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45048,Nj8,EA037,Absent,EA037-1,,foster1948,,1500,EthnographicAtlas_1967_p119, +45049,Nj9,EA037,Absent,EA037-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +45050,Sa1,EA037,Absent,EA037-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +45051,Sa10,EA037,Absent,EA037-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p119, +45052,Sa11,EA037,?,EA037-NA,,,,,, +45053,Sa12,EA037,Absent,EA037-1,,stone1948,,1948,EthnographicAtlas_1967_p119, +45054,Sa13,EA037,Absent,EA037-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +45055,Sa14,EA037,?,EA037-NA,,,,,, +45056,Sa15,EA037,?,EA037-NA,,,,,, +45057,Sa16,EA037,?,EA037-NA,,,,,, +45058,Sa17,EA037,?,EA037-NA,,,,,, +45059,Sa2,EA037,?,EA037-NA,,,,,, +45060,Sa3,EA037,Absent,EA037-1,,wisdom1940,,1930,EthnographicAtlas_1967_p119, +45061,Sa4,EA037,Absent,EA037-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +45062,Sa5,EA037,Absent,EA037-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +45063,Sa6,EA037,Absent,EA037-1,Blood letting from the penis was a form of religious sacrifice,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +45064,Sa7,EA037,Absent,EA037-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +45065,Sa8,EA037,Absent,EA037-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +45066,Sa9,EA037,Absent,EA037-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +45067,Sb1,EA037,Absent,EA037-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +45068,Sb2,EA037,Absent,EA037-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +45069,Sb3,EA037,Absent,EA037-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +45070,Sb4,EA037,Absent,EA037-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +45071,Sb5,EA037,Absent,EA037-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +45072,Sb6,EA037,Absent,EA037-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +45073,Sb7,EA037,Absent,EA037-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +45074,Sb8,EA037,Absent,EA037-1,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +45075,Sb9,EA037,Absent,EA037-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +45076,Sc1,EA037,Absent,EA037-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +45077,Sc10,EA037,Absent,EA037-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +45078,Sc11,EA037,Absent,EA037-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p119, +45079,Sc12,EA037,Absent,EA037-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p119, +45080,Sc13,EA037,Absent,EA037-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +45081,Sc14,EA037,?,EA037-NA,,,,,, +45082,Sc15,EA037,Absent,EA037-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p119, +45083,Sc16,EA037,Absent,EA037-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p119, +45084,Sc17,EA037,Absent,EA037-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +45085,Sc18,EA037,Absent,EA037-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +45086,Sc2,EA037,Absent,EA037-1,,leedsnd,,1950,EthnographicAtlas_1967_p119, +45087,Sc3,EA037,Absent,EA037-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +45088,Sc4,EA037,Absent,EA037-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +45089,Sc5,EA037,Absent,EA037-1,,farabee1918,,1900,EthnographicAtlas_1967_p119, +45090,Sc6,EA037,Absent,EA037-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45091,Sc7,EA037,Absent,EA037-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +45092,Sc8,EA037,Absent,EA037-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +45093,Sc9,EA037,Absent,EA037-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +45094,Sd1,EA037,Absent,EA037-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45095,Sd2,EA037,Absent,EA037-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +45096,Sd3,EA037,Absent,EA037-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p119, +45097,Sd4,EA037,Absent,EA037-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +45098,Sd5,EA037,Absent,EA037-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +45099,Sd6,EA037,Absent,EA037-1,,migliazza1964,,1960,EthnographicAtlas_1967_p119, +45100,Sd7,EA037,Absent,EA037-1,,fock1963,,1950,EthnographicAtlas_1967_p119, +45101,Sd8,EA037,Absent,EA037-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +45102,Sd9,EA037,Absent,EA037-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45103,Se1,EA037,Absent,EA037-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +45104,Se10,EA037,Absent,EA037-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +45105,Se11,EA037,Absent,EA037-1,,prost1965,,1960,EthnographicAtlas_1967_p123, +45106,Se12,EA037,?,EA037-NA,,,,,, +45107,Se2,EA037,Absent,EA037-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +45108,Se3,EA037,Absent,EA037-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +45109,Se4,EA037,Absent,EA037-1,,fejos1943,,1940,EthnographicAtlas_1967_p119, +45110,Se5,EA037,Absent,EA037-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +45111,Se6,EA037,Absent,EA037-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +45112,Se7,EA037,?,EA037-NA,,,,,, +45113,Se8,EA037,Absent,EA037-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +45114,Se9,EA037,Absent,EA037-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +45115,Sf1,EA037,Absent,EA037-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +45116,Sf2,EA037,Absent,EA037-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +45117,Sf3,EA037,Absent,EA037-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +45118,Sf4,EA037,Absent,EA037-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +45119,Sf5,EA037,Absent,EA037-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +45120,Sf6,EA037,Absent,EA037-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +45121,Sf7,EA037,Absent,EA037-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +45122,Sf8,EA037,?,EA037-NA,,,,,, +45123,Sf9,EA037,?,EA037-NA,,,,,, +45124,Sg1,EA037,Absent,EA037-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +45125,Sg2,EA037,Absent,EA037-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45126,Sg3,EA037,Absent,EA037-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +45127,Sg4,EA037,Absent,EA037-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +45128,Sg5,EA037,Absent,EA037-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45129,Sh1,EA037,Absent,EA037-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +45130,Sh2,EA037,Absent,EA037-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +45131,Sh3,EA037,Absent,EA037-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +45132,Sh4,EA037,Absent,EA037-1,,oberg1949,,1940,EthnographicAtlas_1967_p123, +45133,Sh5,EA037,Absent,EA037-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +45134,Sh6,EA037,Absent,EA037-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +45135,Sh7,EA037,Absent,EA037-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p123, +45136,Sh8,EA037,Absent,EA037-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +45137,Sh9,EA037,Absent,EA037-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +45138,Si1,EA037,Absent,EA037-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45139,Si10,EA037,Absent,EA037-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +45140,Si2,EA037,Absent,EA037-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +45141,Si3,EA037,Absent,EA037-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45142,Si4,EA037,Absent,EA037-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +45143,Si5,EA037,Absent,EA037-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +45144,Si6,EA037,Absent,EA037-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p123, +45145,Si7,EA037,Absent,EA037-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +45146,Si8,EA037,Absent,EA037-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +45147,Si9,EA037,?,EA037-NA,,,,,, +45148,Sj1,EA037,Absent,EA037-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +45149,Sj10,EA037,Absent,EA037-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45150,Sj11,EA037,Absent,EA037-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +45151,Sj2,EA037,Absent,EA037-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +45152,Sj3,EA037,Absent,EA037-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +45153,Sj4,EA037,Absent,EA037-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +45154,Sj5,EA037,Absent,EA037-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p123, +45155,Sj6,EA037,Absent,EA037-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45156,Sj7,EA037,Absent,EA037-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +45157,Sj8,EA037,Absent,EA037-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +45158,Sj9,EA037,Absent,EA037-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +45159,ch12,EA037,"Customary, age unclear",EA037-10,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +45160,ch13,EA037,Absent,EA037-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +45161,ch14,EA037,Absent,EA037-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +45162,ch15,EA037,Absent,EA037-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +45163,ch16,EA037,Absent,EA037-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +45164,ch17,EA037,Absent,EA037-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +45165,ch18,EA037,Absent,EA037-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +45166,ch19,EA037,Absent,EA037-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +45167,ch20,EA037,Early childhood,EA037-4,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +45168,ch21,EA037,Absent,EA037-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +45169,ch22,EA037,Shortly after birth,EA037-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +45170,ch23,EA037,Absent,EA037-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +45171,ch24,EA037,Absent,EA037-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +45172,ch25,EA037,Absent,EA037-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +45173,ch26,EA037,Absent,EA037-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +45174,ch27,EA037,Absent,EA037-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +45175,ch28,EA037,Absent,EA037-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +45176,ec12,EA037,Absent,EA037-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +45177,ec13,EA037,Absent,EA037-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +45178,ec14,EA037,Absent,EA037-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +45179,ec15,EA037,Absent,EA037-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +45180,ec16,EA037,Absent,EA037-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +45181,ec17,EA037,Absent,EA037-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +45182,ec18,EA037,Absent,EA037-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +45183,ec19,EA037,Absent,EA037-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +45184,ec20,EA037,Absent,EA037-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +45185,ec21,EA037,Absent,EA037-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +45186,Aa1,EA038,Partial,EA038-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +45187,Aa2,EA038,?,EA038-NA,,,,,, +45188,Aa3,EA038,Partial,EA038-2,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +45189,Aa4,EA038,?,EA038-NA,,,,,, +45190,Aa5,EA038,Complete: outside kin,EA038-4,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +45191,Aa6,EA038,?,EA038-NA,,,,,, +45192,Aa7,EA038,?,EA038-NA,,,,,, +45193,Aa8,EA038,?,EA038-NA,,,,,, +45194,Aa9,EA038,?,EA038-NA,,,,,, +45195,Ab1,EA038,Partial,EA038-2,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p63, +45196,Ab10,EA038,?,EA038-NA,,,,,, +45197,Ab11,EA038,?,EA038-NA,,,,,, +45198,Ab12,EA038,Complete: own peers,EA038-5,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p63, +45199,Ab13,EA038,Complete: own peers,EA038-5,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +45200,Ab14,EA038,No segregation,EA038-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +45201,Ab15,EA038,Partial,EA038-2,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +45202,Ab16,EA038,?,EA038-NA,,,,,, +45203,Ab17,EA038,?,EA038-NA,,,,,, +45204,Ab18,EA038,Complete: own peers,EA038-5,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +45205,Ab19,EA038,Partial,EA038-2,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +45206,Ab2,EA038,Partial,EA038-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +45207,Ab20,EA038,?,EA038-NA,,,,,, +45208,Ab21a,EA038,?,EA038-NA,,,,,, +45209,Ab21b,EA038,?,EA038-NA,,,,,, +45210,Ab22,EA038,?,EA038-NA,,,,,, +45211,Ab3,EA038,?,EA038-NA,,,,,, +45212,Ab4,EA038,Complete: outside nuclear family,EA038-3,,junod1927,,1920,EthnographicAtlas_1967_p63, +45213,Ab5,EA038,Partial,EA038-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +45214,Ab6,EA038,Complete: outside kin,EA038-4,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +45215,Ab7,EA038,?,EA038-NA,,,,,, +45216,Ab8,EA038,?,EA038-NA,,,,,, +45217,Ab9,EA038,Complete: own peers,EA038-5,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +45218,Ac1,EA038,Partial,EA038-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +45219,Ac10,EA038,Partial,EA038-2,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +45220,Ac11,EA038,Complete: outside nuclear family,EA038-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +45221,Ac12,EA038,Complete: outside nuclear family,EA038-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p63, +45222,Ac13,EA038,?,EA038-NA,,,,,, +45223,Ac14,EA038,Complete: outside nuclear family,EA038-3,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p63, +45224,Ac15,EA038,?,EA038-NA,,,,,, +45225,Ac16,EA038,Complete: outside nuclear family,EA038-3,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +45226,Ac17,EA038,Partial,EA038-2,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +45227,Ac18,EA038,Complete: outside nuclear family,EA038-3,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +45228,Ac19,EA038,?,EA038-NA,,,,,, +45229,Ac2,EA038,?,EA038-NA,,,,,, +45230,Ac20,EA038,Complete: outside nuclear family,EA038-3,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +45231,Ac21,EA038,Complete: own peers,EA038-5,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p63, +45232,Ac22,EA038,Complete: outside nuclear family,EA038-3,,mertens1935,,1930,EthnographicAtlas_1967_p63, +45233,Ac23,EA038,Complete: own peers,EA038-5,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +45234,Ac24,EA038,Partial,EA038-2,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +45235,Ac25,EA038,Complete: own peers,EA038-5,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p63, +45236,Ac26,EA038,Partial,EA038-2,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +45237,Ac27,EA038,Complete: outside nuclear family,EA038-3,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +45238,Ac28,EA038,?,EA038-NA,,,,,, +45239,Ac29,EA038,?,EA038-NA,,,,,, +45240,Ac3,EA038,Complete: outside nuclear family,EA038-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +45241,Ac30,EA038,Partial,EA038-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +45242,Ac31,EA038,Complete: own peers,EA038-5,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +45243,Ac32,EA038,?,EA038-NA,,,,,, +45244,Ac33,EA038,?,EA038-NA,,,,,, +45245,Ac34,EA038,?,EA038-NA,,,,,, +45246,Ac35,EA038,?,EA038-NA,,,,,, +45247,Ac36,EA038,?,EA038-NA,,,,,, +45248,Ac37,EA038,?,EA038-NA,,,,,, +45249,Ac38,EA038,?,EA038-NA,,,,,, +45250,Ac39,EA038,?,EA038-NA,,,,,, +45251,Ac4,EA038,Partial,EA038-2,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +45252,Ac40,EA038,?,EA038-NA,,,,,, +45253,Ac41,EA038,Complete: outside nuclear family,EA038-3,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +45254,Ac42,EA038,?,EA038-NA,,,,,, +45255,Ac43,EA038,?,EA038-NA,,,,,, +45256,Ac5,EA038,?,EA038-NA,,,,,, +45257,Ac6,EA038,Complete: outside nuclear family,EA038-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p63, +45258,Ac7,EA038,?,EA038-NA,,,,,, +45259,Ac8,EA038,Complete: outside nuclear family,EA038-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +45260,Ac9,EA038,Complete: own peers,EA038-5,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +45261,Ad1,EA038,No segregation,EA038-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p63, +45262,Ad10,EA038,Complete: own peers,EA038-5,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +45263,Ad11,EA038,Complete: own peers,EA038-5,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +45264,Ad12,EA038,Partial,EA038-2,"Formerly 'complete segregation with own peers' (code ""5"")",levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +45265,Ad13,EA038,No segregation,EA038-1,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +45266,Ad14,EA038,?,EA038-NA,,,,,, +45267,Ad15,EA038,?,EA038-NA,,,,,, +45268,Ad16,EA038,Complete: own peers,EA038-5,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +45269,Ad17,EA038,Complete: own peers,EA038-5,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +45270,Ad18,EA038,?,EA038-NA,,,,,, +45271,Ad19,EA038,Complete: own peers,EA038-5,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +45272,Ad2,EA038,No segregation,EA038-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +45273,Ad20,EA038,Complete: own peers,EA038-5,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +45274,Ad21,EA038,?,EA038-NA,,,,,, +45275,Ad22,EA038,Complete: own peers,EA038-5,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +45276,Ad23,EA038,?,EA038-NA,,,,,, +45277,Ad24,EA038,?,EA038-NA,,,,,, +45278,Ad25,EA038,?,EA038-NA,,,,,, +45279,Ad26,EA038,Partial,EA038-2,,sick1916,,1910,Ethnology_Vol7_No2_Apr_1968, +45280,Ad27,EA038,?,EA038-NA,,,,,, +45281,Ad28,EA038,?,EA038-NA,,,,,, +45282,Ad29,EA038,?,EA038-NA,,,,,, +45283,Ad3,EA038,Complete: own peers,EA038-5,Youths are segregated for two to three months at their initiation into an age-grade and wander over the countryside in a group for two months thereafter,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +45284,Ad30,EA038,?,EA038-NA,,,,,, +45285,Ad31,EA038,?,EA038-NA,,,,,, +45286,Ad32,EA038,?,EA038-NA,,,,,, +45287,Ad33,EA038,Complete: own peers,EA038-5,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p67, +45288,Ad34,EA038,?,EA038-NA,,,,,, +45289,Ad35,EA038,Complete: own peers,EA038-5,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p67, +45290,Ad36,EA038,?,EA038-NA,,,,,, +45291,Ad37,EA038,Complete: own peers,EA038-5,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +45292,Ad38,EA038,?,EA038-NA,,,,,, +45293,Ad39,EA038,?,EA038-NA,,,,,, +45294,Ad4,EA038,Complete: own peers,EA038-5,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +45295,Ad40,EA038,Partial,EA038-2,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +45296,Ad41,EA038,?,EA038-NA,,,,,, +45297,Ad42,EA038,?,EA038-NA,,,,,, +45298,Ad43,EA038,?,EA038-NA,,,,,, +45299,Ad44,EA038,?,EA038-NA,,,,,, +45300,Ad45,EA038,?,EA038-NA,,,,,, +45301,Ad46,EA038,Complete: outside nuclear family,EA038-3,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p67, +45302,Ad47,EA038,Complete: own peers,EA038-5,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +45303,Ad48,EA038,?,EA038-NA,,,,,, +45304,Ad49,EA038,?,EA038-NA,,,,,, +45305,Ad5,EA038,?,EA038-NA,,,,,, +45306,Ad50,EA038,?,EA038-NA,,,,,, +45307,Ad51,EA038,No segregation,EA038-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +45308,Ad6,EA038,Complete: own peers,EA038-5,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +45309,Ad7,EA038,Partial,EA038-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +45310,Ad8,EA038,Partial,EA038-2,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +45311,Ad9,EA038,Partial,EA038-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +45312,Ae1,EA038,No segregation,EA038-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67, +45313,Ae10,EA038,No segregation,EA038-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +45314,Ae11,EA038,Complete: own peers,EA038-5,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +45315,Ae12,EA038,No segregation,EA038-1,"Formerly 'complete segregation with own peers' (code ""5"")",ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +45316,Ae13,EA038,?,EA038-NA,,,,,, +45317,Ae14,EA038,Partial,EA038-2,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +45318,Ae15,EA038,?,EA038-NA,,,,,, +45319,Ae16,EA038,?,EA038-NA,,,,,, +45320,Ae17,EA038,?,EA038-NA,,,,,, +45321,Ae18,EA038,?,EA038-NA,,,,,, +45322,Ae19,EA038,?,EA038-NA,,,,,, +45323,Ae2,EA038,?,EA038-NA,,,,,, +45324,Ae20,EA038,Partial,EA038-2,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +45325,Ae21,EA038,?,EA038-NA,,,,,, +45326,Ae22,EA038,?,EA038-NA,,,,,, +45327,Ae23,EA038,?,EA038-NA,,,,,, +45328,Ae24,EA038,?,EA038-NA,,,,,, +45329,Ae25,EA038,?,EA038-NA,,,,,, +45330,Ae26,EA038,Complete: outside nuclear family,EA038-3,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +45331,Ae27,EA038,?,EA038-NA,,,,,, +45332,Ae28,EA038,?,EA038-NA,,,,,, +45333,Ae29,EA038,?,EA038-NA,,,,,, +45334,Ae3,EA038,No segregation,EA038-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +45335,Ae30,EA038,?,EA038-NA,,,,,, +45336,Ae31,EA038,Partial,EA038-2,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +45337,Ae32,EA038,?,EA038-NA,,,,,, +45338,Ae33,EA038,?,EA038-NA,,,,,, +45339,Ae34,EA038,?,EA038-NA,,,,,, +45340,Ae35,EA038,?,EA038-NA,,,,,, +45341,Ae36,EA038,Partial,EA038-2,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +45342,Ae37,EA038,?,EA038-NA,,,,,, +45343,Ae38,EA038,?,EA038-NA,,,,,, +45344,Ae39,EA038,No segregation,EA038-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +45345,Ae4,EA038,Partial,EA038-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +45346,Ae40,EA038,?,EA038-NA,,,,,, +45347,Ae41,EA038,Partial,EA038-2,,andersson1953,,1940,EthnographicAtlas_1967_p67, +45348,Ae42,EA038,Partial,EA038-2,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +45349,Ae43,EA038,Partial,EA038-2,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +45350,Ae44,EA038,?,EA038-NA,,,,,, +45351,Ae45,EA038,?,EA038-NA,,,,,, +45352,Ae46,EA038,?,EA038-NA,,,,,, +45353,Ae47,EA038,?,EA038-NA,,,,,, +45354,Ae48,EA038,Complete: own peers,EA038-5,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p67, +45355,Ae49,EA038,?,EA038-NA,,,,,, +45356,Ae5,EA038,Partial,EA038-2,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p67, +45357,Ae50,EA038,?,EA038-NA,,,,,, +45358,Ae51,EA038,?,EA038-NA,,,,,, +45359,Ae52,EA038,?,EA038-NA,,,,,, +45360,Ae53,EA038,?,EA038-NA,,,,,, +45361,Ae54,EA038,?,EA038-NA,,,,,, +45362,Ae55,EA038,?,EA038-NA,,,,,, +45363,Ae56,EA038,?,EA038-NA,,,,,, +45364,Ae57,EA038,Partial,EA038-2,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +45365,Ae58,EA038,Complete: own peers,EA038-5,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +45366,Ae59,EA038,?,EA038-NA,,,,,, +45367,Ae6,EA038,?,EA038-NA,,,,,, +45368,Ae7,EA038,Partial,EA038-2,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +45369,Ae8,EA038,No segregation,EA038-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +45370,Ae9,EA038,?,EA038-NA,,,,,, +45371,Af1,EA038,Partial,EA038-2,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +45372,Af10,EA038,No segregation,EA038-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +45373,Af11,EA038,Complete: own peers,EA038-5,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +45374,Af12,EA038,?,EA038-NA,,,,,, +45375,Af13,EA038,No segregation,EA038-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +45376,Af14,EA038,?,EA038-NA,,,,,, +45377,Af15,EA038,Complete: own peers,EA038-5,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +45378,Af16,EA038,?,EA038-NA,,,,,, +45379,Af17,EA038,?,EA038-NA,,,,,, +45380,Af18,EA038,?,EA038-NA,,,,,, +45381,Af19,EA038,?,EA038-NA,,,,,, +45382,Af2,EA038,Partial,EA038-2,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +45383,Af20,EA038,No segregation,EA038-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +45384,Af21,EA038,?,EA038-NA,,,,,, +45385,Af22,EA038,?,EA038-NA,,,,,, +45386,Af23,EA038,Partial,EA038-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +45387,Af24,EA038,?,EA038-NA,,,,,, +45388,Af25,EA038,No segregation,EA038-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +45389,Af26,EA038,No segregation,EA038-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +45390,Af27,EA038,?,EA038-NA,,,,,, +45391,Af28,EA038,?,EA038-NA,,,,,, +45392,Af29,EA038,Partial,EA038-2,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +45393,Af3,EA038,Complete: outside nuclear family,EA038-3,"But 'absence of segregation' (code ""1"") for about 50 per cent of boys",busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +45394,Af30,EA038,?,EA038-NA,,,,,, +45395,Af31,EA038,?,EA038-NA,,,,,, +45396,Af32,EA038,?,EA038-NA,,,,,, +45397,Af33,EA038,No segregation,EA038-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45398,Af34,EA038,?,EA038-NA,,,,,, +45399,Af35,EA038,?,EA038-NA,,,,,, +45400,Af36,EA038,?,EA038-NA,,,,,, +45401,Af37,EA038,?,EA038-NA,,,,,, +45402,Af38,EA038,?,EA038-NA,,,,,, +45403,Af39,EA038,?,EA038-NA,,,,,, +45404,Af4,EA038,?,EA038-NA,,,,,, +45405,Af40,EA038,?,EA038-NA,,,,,, +45406,Af41,EA038,?,EA038-NA,,,,,, +45407,Af42,EA038,?,EA038-NA,,,,,, +45408,Af43,EA038,?,EA038-NA,,,,,, +45409,Af44,EA038,?,EA038-NA,,,,,, +45410,Af45,EA038,?,EA038-NA,,,,,, +45411,Af46,EA038,?,EA038-NA,,,,,, +45412,Af47,EA038,?,EA038-NA,,,,,, +45413,Af48,EA038,?,EA038-NA,,,,,, +45414,Af49,EA038,?,EA038-NA,,,,,, +45415,Af5,EA038,Complete: own peers,EA038-5,Boys are secluded at initiation for several weeks; in former times the rites might last for several years,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +45416,Af50,EA038,?,EA038-NA,,,,,, +45417,Af51,EA038,?,EA038-NA,,,,,, +45418,Af52,EA038,?,EA038-NA,,,,,, +45419,Af53,EA038,?,EA038-NA,,,,,, +45420,Af54,EA038,?,EA038-NA,,,,,, +45421,Af55,EA038,?,EA038-NA,,,,,, +45422,Af56,EA038,?,EA038-NA,,,,,, +45423,Af57,EA038,?,EA038-NA,,,,,, +45424,Af58,EA038,?,EA038-NA,,,,,, +45425,Af6,EA038,No segregation,EA038-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +45426,Af7,EA038,Partial,EA038-2,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +45427,Af8,EA038,Partial,EA038-2,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +45428,Af9,EA038,?,EA038-NA,,,,,, +45429,Ag1,EA038,?,EA038-NA,,,,,, +45430,Ag10,EA038,No segregation,EA038-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +45431,Ag11,EA038,?,EA038-NA,,,,,, +45432,Ag12,EA038,No segregation,EA038-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +45433,Ag13,EA038,No segregation,EA038-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +45434,Ag14,EA038,?,EA038-NA,,,,,, +45435,Ag15,EA038,?,EA038-NA,,,,,, +45436,Ag16,EA038,Partial,EA038-2,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p71, +45437,Ag17,EA038,?,EA038-NA,,,,,, +45438,Ag18,EA038,?,EA038-NA,,,,,, +45439,Ag19,EA038,?,EA038-NA,,,,,, +45440,Ag2,EA038,Complete: own peers,EA038-5,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +45441,Ag20,EA038,?,EA038-NA,,,,,, +45442,Ag21,EA038,Partial,EA038-2,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +45443,Ag22,EA038,Partial,EA038-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p71, +45444,Ag23,EA038,Partial,EA038-2,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +45445,Ag24,EA038,?,EA038-NA,,,,,, +45446,Ag25,EA038,?,EA038-NA,,,,,, +45447,Ag26,EA038,?,EA038-NA,,,,,, +45448,Ag27,EA038,Partial,EA038-2,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +45449,Ag28,EA038,?,EA038-NA,,,,,, +45450,Ag29,EA038,?,EA038-NA,,,,,, +45451,Ag3,EA038,?,EA038-NA,,,,,, +45452,Ag30,EA038,?,EA038-NA,,,,,, +45453,Ag31,EA038,?,EA038-NA,,,,,, +45454,Ag32,EA038,?,EA038-NA,,,,,, +45455,Ag33,EA038,?,EA038-NA,,,,,, +45456,Ag34,EA038,?,EA038-NA,,,,,, +45457,Ag35,EA038,Complete: outside nuclear family,EA038-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +45458,Ag36,EA038,?,EA038-NA,,,,,, +45459,Ag37,EA038,?,EA038-NA,,,,,, +45460,Ag38,EA038,?,EA038-NA,,,,,, +45461,Ag39,EA038,Partial,EA038-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +45462,Ag4,EA038,No segregation,EA038-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +45463,Ag40,EA038,?,EA038-NA,,,,,, +45464,Ag41,EA038,?,EA038-NA,,,,,, +45465,Ag42,EA038,?,EA038-NA,,,,,, +45466,Ag43,EA038,?,EA038-NA,,,,,, +45467,Ag44,EA038,Complete: outside kin,EA038-4,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +45468,Ag45,EA038,?,EA038-NA,,,,,, +45469,Ag46,EA038,?,EA038-NA,,,,,, +45470,Ag47,EA038,?,EA038-NA,,,,,, +45471,Ag48,EA038,?,EA038-NA,,,,,, +45472,Ag49,EA038,Partial,EA038-2,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +45473,Ag5,EA038,No segregation,EA038-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +45474,Ag50,EA038,?,EA038-NA,,,,,, +45475,Ag51,EA038,?,EA038-NA,,,,,, +45476,Ag52,EA038,?,EA038-NA,,,,,, +45477,Ag53,EA038,Partial,EA038-2,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +45478,Ag54,EA038,?,EA038-NA,,,,,, +45479,Ag6,EA038,Partial,EA038-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +45480,Ag7,EA038,Complete: own peers,EA038-5,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +45481,Ag8,EA038,Complete: own peers,EA038-5,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +45482,Ag9,EA038,Partial,EA038-2,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p71, +45483,Ah1,EA038,Partial,EA038-2,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45484,Ah10,EA038,?,EA038-NA,,,,,, +45485,Ah11,EA038,?,EA038-NA,,,,,, +45486,Ah12,EA038,?,EA038-NA,,,,,, +45487,Ah13,EA038,Partial,EA038-2,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +45488,Ah14,EA038,Partial,EA038-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +45489,Ah15,EA038,?,EA038-NA,,,,,, +45490,Ah16,EA038,?,EA038-NA,,,,,, +45491,Ah17,EA038,?,EA038-NA,,,,,, +45492,Ah18,EA038,?,EA038-NA,,,,,, +45493,Ah19,EA038,?,EA038-NA,,,,,, +45494,Ah2,EA038,?,EA038-NA,,,,,, +45495,Ah20,EA038,?,EA038-NA,,,,,, +45496,Ah21,EA038,?,EA038-NA,,,,,, +45497,Ah22,EA038,?,EA038-NA,,,,,, +45498,Ah23,EA038,?,EA038-NA,,,,,, +45499,Ah24,EA038,?,EA038-NA,,,,,, +45500,Ah25,EA038,No segregation,EA038-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +45501,Ah26,EA038,?,EA038-NA,,,,,, +45502,Ah27,EA038,?,EA038-NA,,,,,, +45503,Ah28,EA038,?,EA038-NA,,,,,, +45504,Ah29,EA038,?,EA038-NA,,,,,, +45505,Ah3,EA038,No segregation,EA038-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +45506,Ah30,EA038,Complete: outside nuclear family,EA038-3,,meek1931b,,1920,EthnographicAtlas_1967_p75, +45507,Ah31,EA038,?,EA038-NA,,,,,, +45508,Ah32,EA038,?,EA038-NA,,,,,, +45509,Ah33,EA038,?,EA038-NA,,,,,, +45510,Ah34,EA038,?,EA038-NA,,,,,, +45511,Ah35,EA038,?,EA038-NA,,,,,, +45512,Ah36,EA038,No segregation,EA038-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +45513,Ah37,EA038,?,EA038-NA,,,,,, +45514,Ah38,EA038,No segregation,EA038-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +45515,Ah39,EA038,No segregation,EA038-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +45516,Ah4,EA038,No segregation,EA038-1,But young men not infrequently go to live with a MoBr,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p75, +45517,Ah5,EA038,No segregation,EA038-1,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +45518,Ah6,EA038,Complete: outside nuclear family,EA038-3,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +45519,Ah7,EA038,No segregation,EA038-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +45520,Ah8,EA038,No segregation,EA038-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +45521,Ah9,EA038,Partial,EA038-2,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75, +45522,Ai1,EA038,?,EA038-NA,,,,,, +45523,Ai10,EA038,Partial,EA038-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p75, +45524,Ai11,EA038,Complete: own peers,EA038-5,Inferred from presence of men's clubhouses,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +45525,Ai12,EA038,Partial,EA038-2,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +45526,Ai13,EA038,?,EA038-NA,,,,,, +45527,Ai14,EA038,Complete: outside nuclear family,EA038-3,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +45528,Ai15,EA038,Partial,EA038-2,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +45529,Ai16,EA038,?,EA038-NA,,,,,, +45530,Ai17,EA038,?,EA038-NA,,,,,, +45531,Ai18,EA038,?,EA038-NA,,,,,, +45532,Ai19,EA038,Partial,EA038-2,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +45533,Ai2,EA038,?,EA038-NA,,,,,, +45534,Ai20,EA038,?,EA038-NA,,,,,, +45535,Ai21,EA038,?,EA038-NA,,,,,, +45536,Ai22,EA038,Partial,EA038-2,,delafosse1897,,1890,EthnographicAtlas_1967_p75, +45537,Ai23,EA038,Partial,EA038-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +45538,Ai24,EA038,?,EA038-NA,,,,,, +45539,Ai25,EA038,?,EA038-NA,,,,,, +45540,Ai26,EA038,?,EA038-NA,,,,,, +45541,Ai27,EA038,?,EA038-NA,,,,,, +45542,Ai28,EA038,Partial,EA038-2,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +45543,Ai29,EA038,No segregation,EA038-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +45544,Ai3,EA038,Partial,EA038-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +45545,Ai30,EA038,No segregation,EA038-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +45546,Ai31,EA038,Partial,EA038-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +45547,Ai32,EA038,Partial,EA038-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +45548,Ai33,EA038,Partial,EA038-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +45549,Ai34,EA038,?,EA038-NA,,,,,, +45550,Ai35,EA038,Partial,EA038-2,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +45551,Ai36,EA038,Complete: own peers,EA038-5,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +45552,Ai37,EA038,?,EA038-NA,,,,,, +45553,Ai38,EA038,Complete: outside nuclear family,EA038-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +45554,Ai39,EA038,Complete: outside nuclear family,EA038-3,,nadel1947,,1940,EthnographicAtlas_1967_p75, +45555,Ai4,EA038,Complete: outside nuclear family,EA038-3,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +45556,Ai40,EA038,?,EA038-NA,,,,,, +45557,Ai41,EA038,Partial,EA038-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +45558,Ai42,EA038,?,EA038-NA,,,,,, +45559,Ai43,EA038,Partial,EA038-2,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p75, +45560,Ai44,EA038,Partial,EA038-2,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +45561,Ai45,EA038,?,EA038-NA,,,,,, +45562,Ai46,EA038,?,EA038-NA,,,,,, +45563,Ai47,EA038,No segregation,EA038-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +45564,Ai5,EA038,?,EA038-NA,,,,,, +45565,Ai6,EA038,Partial,EA038-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +45566,Ai7,EA038,?,EA038-NA,,,,,, +45567,Ai8,EA038,Partial,EA038-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p75, +45568,Ai9,EA038,Complete: own peers,EA038-5,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +45569,Aj1,EA038,?,EA038-NA,,,,,, +45570,Aj10,EA038,Complete: own peers,EA038-5,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +45571,Aj11,EA038,Partial,EA038-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +45572,Aj12,EA038,Complete: own peers,EA038-5,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +45573,Aj13,EA038,?,EA038-NA,,,,,, +45574,Aj14,EA038,?,EA038-NA,,,,,, +45575,Aj15,EA038,Partial,EA038-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +45576,Aj16,EA038,Partial,EA038-2,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p79, +45577,Aj17,EA038,Partial,EA038-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +45578,Aj18,EA038,Partial,EA038-2,,jensen1959,,1950,EthnographicAtlas_1967_p79, +45579,Aj19,EA038,?,EA038-NA,,,,,, +45580,Aj2,EA038,Complete: own peers,EA038-5,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +45581,Aj20,EA038,?,EA038-NA,,,,,, +45582,Aj21,EA038,Partial,EA038-2,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +45583,Aj22,EA038,Partial,EA038-2,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +45584,Aj23,EA038,Partial,EA038-2,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +45585,Aj24,EA038,Partial,EA038-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +45586,Aj25,EA038,?,EA038-NA,,,,,, +45587,Aj26,EA038,?,EA038-NA,,,,,, +45588,Aj27,EA038,?,EA038-NA,,,,,, +45589,Aj28,EA038,?,EA038-NA,,,,,, +45590,Aj29,EA038,Complete: own peers,EA038-5,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +45591,Aj3,EA038,Partial,EA038-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +45592,Aj30,EA038,?,EA038-NA,,,,,, +45593,Aj31,EA038,?,EA038-NA,,,,,, +45594,Aj4,EA038,Complete: own peers,EA038-5,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +45595,Aj5,EA038,?,EA038-NA,,,,,, +45596,Aj6,EA038,Partial,EA038-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +45597,Aj7,EA038,Complete: own peers,EA038-5,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +45598,Aj8,EA038,Partial,EA038-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +45599,Aj9,EA038,Complete: own peers,EA038-5,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +45600,Ca1,EA038,Partial,EA038-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +45601,Ca10,EA038,?,EA038-NA,,,,,, +45602,Ca11,EA038,?,EA038-NA,,,,,, +45603,Ca12,EA038,?,EA038-NA,,,,,, +45604,Ca13,EA038,?,EA038-NA,,,,,, +45605,Ca14,EA038,?,EA038-NA,,,,,, +45606,Ca15,EA038,?,EA038-NA,,,,,, +45607,Ca16,EA038,?,EA038-NA,,,,,, +45608,Ca17,EA038,?,EA038-NA,,,,,, +45609,Ca18,EA038,?,EA038-NA,,,,,, +45610,Ca19,EA038,Partial,EA038-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +45611,Ca2,EA038,Complete: own peers,EA038-5,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +45612,Ca20,EA038,?,EA038-NA,,,,,, +45613,Ca21,EA038,?,EA038-NA,,,,,, +45614,Ca22,EA038,?,EA038-NA,,,,,, +45615,Ca23,EA038,?,EA038-NA,,,,,, +45616,Ca24,EA038,?,EA038-NA,,,,,, +45617,Ca25,EA038,?,EA038-NA,,,,,, +45618,Ca26,EA038,?,EA038-NA,,,,,, +45619,Ca27,EA038,?,EA038-NA,,,,,, +45620,Ca28,EA038,?,EA038-NA,,,,,, +45621,Ca29,EA038,?,EA038-NA,,,,,, +45622,Ca3,EA038,?,EA038-NA,,,,,, +45623,Ca30,EA038,?,EA038-NA,,,,,, +45624,Ca31,EA038,No segregation,EA038-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +45625,Ca32,EA038,Partial,EA038-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +45626,Ca33,EA038,Partial,EA038-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +45627,Ca34,EA038,?,EA038-NA,,,,,, +45628,Ca35,EA038,?,EA038-NA,,,,,, +45629,Ca36,EA038,No segregation,EA038-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +45630,Ca37,EA038,?,EA038-NA,,,,,, +45631,Ca38,EA038,No segregation,EA038-1,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +45632,Ca39,EA038,?,EA038-NA,,,,,, +45633,Ca4,EA038,?,EA038-NA,,,,,, +45634,Ca40,EA038,Partial,EA038-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +45635,Ca41,EA038,?,EA038-NA,,,,,, +45636,Ca42,EA038,?,EA038-NA,,,,,, +45637,Ca43,EA038,?,EA038-NA,,,,,, +45638,Ca5,EA038,?,EA038-NA,,,,,, +45639,Ca6,EA038,?,EA038-NA,,,,,, +45640,Ca7,EA038,No segregation,EA038-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +45641,Ca8,EA038,?,EA038-NA,,,,,, +45642,Ca9,EA038,?,EA038-NA,,,,,, +45643,Cb1,EA038,?,EA038-NA,,,,,, +45644,Cb10,EA038,Partial,EA038-2,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +45645,Cb11,EA038,?,EA038-NA,,,,,, +45646,Cb12,EA038,?,EA038-NA,,,,,, +45647,Cb13,EA038,?,EA038-NA,,,,,, +45648,Cb14,EA038,?,EA038-NA,,,,,, +45649,Cb15,EA038,Partial,EA038-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +45650,Cb16,EA038,Partial,EA038-2,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +45651,Cb17,EA038,Partial,EA038-2,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +45652,Cb18,EA038,?,EA038-NA,,,,,, +45653,Cb19,EA038,No segregation,EA038-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +45654,Cb2,EA038,No segregation,EA038-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +45655,Cb20,EA038,?,EA038-NA,,,,,, +45656,Cb21,EA038,Partial,EA038-2,,pfeffer1936,,1930,EthnographicAtlas_1967_p83, +45657,Cb22,EA038,?,EA038-NA,,,,,, +45658,Cb23,EA038,?,EA038-NA,,,,,, +45659,Cb24,EA038,Partial,EA038-2,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +45660,Cb25,EA038,?,EA038-NA,,,,,, +45661,Cb26,EA038,Partial,EA038-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +45662,Cb27,EA038,?,EA038-NA,,,,,, +45663,Cb28,EA038,?,EA038-NA,,,,,, +45664,Cb29,EA038,?,EA038-NA,,,,,, +45665,Cb3,EA038,?,EA038-NA,,,,,, +45666,Cb4,EA038,?,EA038-NA,,,,,, +45667,Cb5,EA038,?,EA038-NA,,,,,, +45668,Cb6,EA038,No segregation,EA038-1,,woodnd,,1920,EthnographicAtlas_1967_p79, +45669,Cb7,EA038,Partial,EA038-2,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +45670,Cb8,EA038,No segregation,EA038-1,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +45671,Cb9,EA038,No segregation,EA038-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +45672,Cc1,EA038,No segregation,EA038-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +45673,Cc10,EA038,No segregation,EA038-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +45674,Cc11,EA038,?,EA038-NA,,,,,, +45675,Cc12,EA038,?,EA038-NA,,,,,, +45676,Cc13,EA038,No segregation,EA038-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +45677,Cc14,EA038,?,EA038-NA,,,,,, +45678,Cc15,EA038,?,EA038-NA,,,,,, +45679,Cc16,EA038,Partial,EA038-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +45680,Cc17,EA038,?,EA038-NA,,,,,, +45681,Cc18,EA038,Complete: outside nuclear family,EA038-3,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +45682,Cc19,EA038,?,EA038-NA,,,,,, +45683,Cc2,EA038,?,EA038-NA,,,,,, +45684,Cc20,EA038,?,EA038-NA,,,,,, +45685,Cc3,EA038,?,EA038-NA,,,,,, +45686,Cc4,EA038,No segregation,EA038-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +45687,Cc5,EA038,?,EA038-NA,,,,,, +45688,Cc6,EA038,No segregation,EA038-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +45689,Cc7,EA038,No segregation,EA038-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45690,Cc8,EA038,?,EA038-NA,,,,,, +45691,Cc9,EA038,No segregation,EA038-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +45692,Cd1,EA038,?,EA038-NA,,,,,, +45693,Cd10,EA038,?,EA038-NA,,,,,, +45694,Cd11,EA038,?,EA038-NA,,,,,, +45695,Cd12,EA038,No segregation,EA038-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +45696,Cd13,EA038,?,EA038-NA,,,,,, +45697,Cd14,EA038,?,EA038-NA,,,,,, +45698,Cd15,EA038,?,EA038-NA,,,,,, +45699,Cd16,EA038,?,EA038-NA,,,,,, +45700,Cd17,EA038,?,EA038-NA,,,,,, +45701,Cd18,EA038,?,EA038-NA,,,,,, +45702,Cd19,EA038,?,EA038-NA,,,,,, +45703,Cd2,EA038,No segregation,EA038-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +45704,Cd20,EA038,?,EA038-NA,,,,,, +45705,Cd21,EA038,?,EA038-NA,,,,,, +45706,Cd3,EA038,No segregation,EA038-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +45707,Cd4,EA038,No segregation,EA038-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +45708,Cd5,EA038,No segregation,EA038-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +45709,Cd6,EA038,No segregation,EA038-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +45710,Cd7,EA038,?,EA038-NA,,,,,, +45711,Cd8,EA038,No segregation,EA038-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +45712,Cd9,EA038,?,EA038-NA,,,,,, +45713,Ce1,EA038,No segregation,EA038-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +45714,Ce2,EA038,?,EA038-NA,,,,,, +45715,Ce3,EA038,No segregation,EA038-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +45716,Ce4,EA038,No segregation,EA038-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45717,Ce5,EA038,No segregation,EA038-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +45718,Ce6,EA038,No segregation,EA038-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +45719,Ce7,EA038,No segregation,EA038-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +45720,Ce8,EA038,No segregation,EA038-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +45721,Cf1,EA038,No segregation,EA038-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +45722,Cf2,EA038,No segregation,EA038-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No4_Oct_1962, +45723,Cf3,EA038,No segregation,EA038-1,,munch1945,,1930,EthnographicAtlas_1967_p83, +45724,Cf4,EA038,No segregation,EA038-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +45725,Cf5,EA038,No segregation,EA038-1,,miner1939,,1930,EthnographicAtlas_1967_p83, +45726,Cg1,EA038,No segregation,EA038-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +45727,Cg2,EA038,No segregation,EA038-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +45728,Cg3,EA038,No segregation,EA038-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +45729,Cg4,EA038,No segregation,EA038-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +45730,Cg5,EA038,No segregation,EA038-1,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +45731,Ch1,EA038,No segregation,EA038-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +45732,Ch10,EA038,?,EA038-NA,,,,,, +45733,Ch11,EA038,No segregation,EA038-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +45734,Ch2,EA038,No segregation,EA038-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +45735,Ch3,EA038,No segregation,EA038-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +45736,Ch4,EA038,?,EA038-NA,,,,,, +45737,Ch5,EA038,No segregation,EA038-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +45738,Ch6,EA038,No segregation,EA038-1,,ember1954,,1910,EthnographicAtlas_1967_p83, +45739,Ch7,EA038,No segregation,EA038-1,,friedrich1954,,1930,EthnographicAtlas_1967_p83, +45740,Ch8,EA038,No segregation,EA038-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +45741,Ch9,EA038,No segregation,EA038-1,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +45742,Ci1,EA038,No segregation,EA038-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p83, +45743,Ci10,EA038,No segregation,EA038-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +45744,Ci11,EA038,No segregation,EA038-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +45745,Ci12,EA038,?,EA038-NA,,,,,, +45746,Ci2,EA038,?,EA038-NA,,,,,, +45747,Ci3,EA038,?,EA038-NA,,,,,, +45748,Ci4,EA038,Complete: outside kin,EA038-4,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +45749,Ci5,EA038,No segregation,EA038-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +45750,Ci6,EA038,?,EA038-NA,,,,,, +45751,Ci7,EA038,?,EA038-NA,,,,,, +45752,Ci8,EA038,?,EA038-NA,,,,,, +45753,Ci9,EA038,?,EA038-NA,,,,,, +45754,Cj1,EA038,No segregation,EA038-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +45755,Cj10,EA038,?,EA038-NA,,,,,, +45756,Cj2,EA038,No segregation,EA038-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +45757,Cj3,EA038,No segregation,EA038-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +45758,Cj4,EA038,No segregation,EA038-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +45759,Cj5,EA038,?,EA038-NA,,,,,, +45760,Cj6,EA038,?,EA038-NA,,,,,, +45761,Cj7,EA038,?,EA038-NA,,,,,, +45762,Cj8,EA038,No segregation,EA038-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +45763,Cj9,EA038,?,EA038-NA,,,,,, +45764,Ea1,EA038,No segregation,EA038-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +45765,Ea10,EA038,?,EA038-NA,,,,,, +45766,Ea11,EA038,No segregation,EA038-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +45767,Ea12,EA038,No segregation,EA038-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +45768,Ea13,EA038,No segregation,EA038-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +45769,Ea2,EA038,?,EA038-NA,,,,,, +45770,Ea3,EA038,No segregation,EA038-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +45771,Ea4,EA038,No segregation,EA038-1,,barth1956b,,1950,EthnographicAtlas_1967_p87, +45772,Ea5,EA038,No segregation,EA038-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +45773,Ea6,EA038,No segregation,EA038-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +45774,Ea7,EA038,No segregation,EA038-1,,schurmann1962,,1950,EthnographicAtlas_1967_p87, +45775,Ea8,EA038,?,EA038-NA,,,,,, +45776,Ea9,EA038,No segregation,EA038-1,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +45777,Eb1,EA038,Partial,EA038-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +45778,Eb2,EA038,No segregation,EA038-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p87, +45779,Eb3,EA038,No segregation,EA038-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p87, +45780,Eb4,EA038,?,EA038-NA,,,,,, +45781,Eb5,EA038,?,EA038-NA,,,,,, +45782,Eb6,EA038,?,EA038-NA,,,,,, +45783,Eb7,EA038,No segregation,EA038-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +45784,Eb8,EA038,?,EA038-NA,,,,,, +45785,Ec1,EA038,No segregation,EA038-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +45786,Ec10,EA038,No segregation,EA038-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +45787,Ec11,EA038,?,EA038-NA,,,,,, +45788,Ec2,EA038,No segregation,EA038-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45789,Ec3,EA038,No segregation,EA038-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +45790,Ec4,EA038,No segregation,EA038-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +45791,Ec5,EA038,No segregation,EA038-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +45792,Ec6,EA038,No segregation,EA038-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +45793,Ec7,EA038,No segregation,EA038-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +45794,Ec8,EA038,?,EA038-NA,,,,,, +45795,Ec9,EA038,?,EA038-NA,,,,,, +45796,Ed1,EA038,No segregation,EA038-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +45797,Ed10,EA038,No segregation,EA038-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +45798,Ed13,EA038,?,EA038-NA,,,,,, +45799,Ed14,EA038,?,EA038-NA,,,,,, +45800,Ed15a,EA038,?,EA038-NA,,,,,, +45801,Ed15b,EA038,No segregation,EA038-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +45802,Ed16,EA038,?,EA038-NA,,,,,, +45803,Ed2,EA038,No segregation,EA038-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +45804,Ed3,EA038,?,EA038-NA,,,,,, +45805,Ed4,EA038,No segregation,EA038-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +45806,Ed5,EA038,No segregation,EA038-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45807,Ed6,EA038,No segregation,EA038-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +45808,Ed7,EA038,No segregation,EA038-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +45809,Ed8,EA038,No segregation,EA038-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +45810,Ed9,EA038,No segregation,EA038-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +45811,Ee1,EA038,Complete: own peers,EA038-5,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +45812,Ee2,EA038,No segregation,EA038-1,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +45813,Ee3,EA038,No segregation,EA038-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +45814,Ee4,EA038,?,EA038-NA,,,,,, +45815,Ee5,EA038,No segregation,EA038-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +45816,Ee6,EA038,No segregation,EA038-1,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +45817,Ee7,EA038,?,EA038-NA,,,,,, +45818,Ee8,EA038,No segregation,EA038-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +45819,Ef1,EA038,No segregation,EA038-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +45820,Ef10,EA038,?,EA038-NA,,,,,, +45821,Ef11,EA038,No segregation,EA038-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +45822,Ef2,EA038,No segregation,EA038-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +45823,Ef3,EA038,?,EA038-NA,,,,,, +45824,Ef4,EA038,?,EA038-NA,,,,,, +45825,Ef5,EA038,No segregation,EA038-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +45826,Ef6,EA038,Complete: own peers,EA038-5,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p87, +45827,Ef7,EA038,No segregation,EA038-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +45828,Ef8,EA038,No segregation,EA038-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +45829,Ef9,EA038,No segregation,EA038-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45830,Eg1,EA038,No segregation,EA038-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45831,Eg10,EA038,No segregation,EA038-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +45832,Eg11,EA038,?,EA038-NA,,,,,, +45833,Eg12,EA038,?,EA038-NA,,,,,, +45834,Eg13,EA038,Complete: own peers,EA038-5,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45835,Eg14,EA038,No segregation,EA038-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +45836,Eg2,EA038,No segregation,EA038-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +45837,Eg3,EA038,Complete: own peers,EA038-5,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +45838,Eg4,EA038,No segregation,EA038-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +45839,Eg5,EA038,No segregation,EA038-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +45840,Eg6,EA038,Complete: outside nuclear family,EA038-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +45841,Eg7,EA038,Complete: own peers,EA038-5,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +45842,Eg8,EA038,No segregation,EA038-1,,griffiths1946,,1940,EthnographicAtlas_1967_p91, +45843,Eg9,EA038,Complete: own peers,EA038-5,,elwin1939,,1930,EthnographicAtlas_1967_p91, +45844,Eh1,EA038,Complete: own peers,EA038-5,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +45845,Eh10,EA038,?,EA038-NA,,,,,, +45846,Eh2,EA038,No segregation,EA038-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +45847,Eh3,EA038,No segregation,EA038-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +45848,Eh4,EA038,No segregation,EA038-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45849,Eh5,EA038,No segregation,EA038-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +45850,Eh6,EA038,No segregation,EA038-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +45851,Eh7,EA038,No segregation,EA038-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +45852,Eh8,EA038,No segregation,EA038-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91, +45853,Eh9,EA038,No segregation,EA038-1,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +45854,Ei1,EA038,Partial,EA038-2,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45855,Ei10,EA038,No segregation,EA038-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p91, +45856,Ei11,EA038,Complete: own peers,EA038-5,"Bachelor houses present, at least formerly",bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +45857,Ei12,EA038,Complete: outside kin,EA038-4,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +45858,Ei13,EA038,Complete: own peers,EA038-5,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +45859,Ei14,EA038,Complete: own peers,EA038-5,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +45860,Ei15,EA038,?,EA038-NA,,,,,, +45861,Ei16,EA038,Complete: outside kin,EA038-4,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +45862,Ei17,EA038,?,EA038-NA,,,,,, +45863,Ei18,EA038,?,EA038-NA,,,,,, +45864,Ei19,EA038,No segregation,EA038-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +45865,Ei2,EA038,Complete: own peers,EA038-5,,mills1922,,1920,EthnographicAtlas_1967_p91, +45866,Ei20,EA038,?,EA038-NA,,,,,, +45867,Ei3,EA038,No segregation,EA038-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +45868,Ei4,EA038,Complete: outside kin,EA038-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +45869,Ei5,EA038,No segregation,EA038-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +45870,Ei6,EA038,Complete: outside kin,EA038-4,"After twelve or thirteen years of age, boys go to live in the homes of marriageable girls",das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +45871,Ei7,EA038,?,EA038-NA,,,,,, +45872,Ei8,EA038,No segregation,EA038-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +45873,Ei9,EA038,?,EA038-NA,,,,,, +45874,Ej1,EA038,Complete: own peers,EA038-5,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +45875,Ej10,EA038,No segregation,EA038-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +45876,Ej11,EA038,?,EA038-NA,,,,,, +45877,Ej12,EA038,No segregation,EA038-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +45878,Ej13,EA038,No segregation,EA038-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +45879,Ej14,EA038,No segregation,EA038-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45880,Ej15,EA038,No segregation,EA038-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +45881,Ej16,EA038,No segregation,EA038-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +45882,Ej2,EA038,No segregation,EA038-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +45883,Ej3,EA038,No segregation,EA038-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +45884,Ej4,EA038,No segregation,EA038-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +45885,Ej5,EA038,No segregation,EA038-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +45886,Ej6,EA038,No segregation,EA038-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p91, +45887,Ej7,EA038,?,EA038-NA,,,,,, +45888,Ej8,EA038,No segregation,EA038-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +45889,Ej9,EA038,No segregation,EA038-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +45890,Ia1,EA038,No segregation,EA038-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +45891,Ia10,EA038,?,EA038-NA,,,,,, +45892,Ia11,EA038,Complete: own peers,EA038-5,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +45893,Ia12,EA038,No segregation,EA038-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +45894,Ia13,EA038,No segregation,EA038-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +45895,Ia14,EA038,?,EA038-NA,,,,,, +45896,Ia15,EA038,?,EA038-NA,,,,,, +45897,Ia16,EA038,Partial,EA038-2,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +45898,Ia17,EA038,?,EA038-NA,,,,,, +45899,Ia18,EA038,?,EA038-NA,,,,,, +45900,Ia2,EA038,Partial,EA038-2,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +45901,Ia3,EA038,Complete: outside kin,EA038-4,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +45902,Ia4,EA038,No segregation,EA038-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +45903,Ia5,EA038,No segregation,EA038-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +45904,Ia6,EA038,Complete: outside nuclear family,EA038-3,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45905,Ia7,EA038,No segregation,EA038-1,,fox1954,,1950,EthnographicAtlas_1967_p91, +45906,Ia8,EA038,Partial,EA038-2,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +45907,Ia9,EA038,Complete: own peers,EA038-5,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +45908,Ib1,EA038,No segregation,EA038-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45909,Ib2,EA038,No segregation,EA038-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45910,Ib3,EA038,No segregation,EA038-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +45911,Ib4,EA038,Partial,EA038-2,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p95, +45912,Ib5,EA038,No segregation,EA038-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +45913,Ib6,EA038,Partial,EA038-2,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +45914,Ib7,EA038,?,EA038-NA,,,,,, +45915,Ib8,EA038,No segregation,EA038-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p95, +45916,Ib9,EA038,?,EA038-NA,,,,,, +45917,Ic1,EA038,No segregation,EA038-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45918,Ic10,EA038,?,EA038-NA,,,,,, +45919,Ic11,EA038,No segregation,EA038-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45920,Ic12,EA038,No segregation,EA038-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +45921,Ic13,EA038,?,EA038-NA,,,,,, +45922,Ic2,EA038,No segregation,EA038-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +45923,Ic3,EA038,No segregation,EA038-1,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p95, +45924,Ic4,EA038,?,EA038-NA,,,,,, +45925,Ic5,EA038,No segregation,EA038-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p95, +45926,Ic6,EA038,Partial,EA038-2,,drabbe1940,,1930,EthnographicAtlas_1967_p95, +45927,Ic7,EA038,No segregation,EA038-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +45928,Ic8,EA038,?,EA038-NA,,,,,, +45929,Ic9,EA038,No segregation,EA038-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p95, +45930,Id1,EA038,Partial,EA038-2,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +45931,Id10,EA038,Partial,EA038-2,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +45932,Id11,EA038,Partial,EA038-2,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +45933,Id12,EA038,?,EA038-NA,,,,,, +45934,Id13,EA038,Complete: own peers,EA038-5,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +45935,Id2,EA038,Complete: own peers,EA038-5,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +45936,Id3,EA038,Complete: outside kin,EA038-4,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +45937,Id4,EA038,Partial,EA038-2,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +45938,Id5,EA038,Partial,EA038-2,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +45939,Id6,EA038,?,EA038-NA,,,,,, +45940,Id7,EA038,?,EA038-NA,,,,,, +45941,Id8,EA038,?,EA038-NA,,,,,, +45942,Id9,EA038,?,EA038-NA,,,,,, +45943,Ie1,EA038,Complete: outside nuclear family,EA038-3,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45944,Ie10,EA038,Complete: outside nuclear family,EA038-3,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +45945,Ie11,EA038,Partial,EA038-2,,bowers1964,,1950,EthnographicAtlas_1967_p95, +45946,Ie12,EA038,?,EA038-NA,Temporary segregation only,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45947,Ie13,EA038,No segregation,EA038-1,,landtman1927,,1920,EthnographicAtlas_1967_p95, +45948,Ie14,EA038,?,EA038-NA,,,,,, +45949,Ie15,EA038,?,EA038-NA,,,,,, +45950,Ie16,EA038,Complete: own peers,EA038-5,,williams194041,,1940,EthnographicAtlas_1967_p95, +45951,Ie17,EA038,Complete: own peers,EA038-5,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +45952,Ie18,EA038,Complete: own peers,EA038-5,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +45953,Ie19,EA038,Complete: own peers,EA038-5,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +45954,Ie2,EA038,Complete: own peers,EA038-5,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +45955,Ie20,EA038,Complete: outside nuclear family,EA038-3,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +45956,Ie21,EA038,Complete: own peers,EA038-5,,malinowski1916,,1900,EthnographicAtlas_1967_p95, +45957,Ie22,EA038,Complete: own peers,EA038-5,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +45958,Ie23,EA038,?,EA038-NA,,,,,, +45959,Ie24,EA038,?,EA038-NA,,,,,, +45960,Ie25,EA038,Complete: own peers,EA038-5,,williamson1912,,1920,EthnographicAtlas_1967_p95, +45961,Ie26,EA038,Complete: own peers,EA038-5,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +45962,Ie27,EA038,?,EA038-NA,,,,,, +45963,Ie28,EA038,Complete: own peers,EA038-5,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +45964,Ie29,EA038,Complete: own peers,EA038-5,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45965,Ie3,EA038,No segregation,EA038-1,Boys are secluded for three months during puberty initiation,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45966,Ie30,EA038,?,EA038-NA,,,,,, +45967,Ie31,EA038,Complete: own peers,EA038-5,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +45968,Ie32,EA038,?,EA038-NA,,,,,, +45969,Ie33,EA038,Complete: own peers,EA038-5,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +45970,Ie34,EA038,?,EA038-NA,,,,,, +45971,Ie35,EA038,Complete: own peers,EA038-5,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +45972,Ie36,EA038,?,EA038-NA,,,,,, +45973,Ie37,EA038,?,EA038-NA,,,,,, +45974,Ie38,EA038,Partial,EA038-2,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +45975,Ie39,EA038,Complete: own peers,EA038-5,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +45976,Ie4,EA038,Complete: own peers,EA038-5,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45977,Ie5,EA038,Complete: own peers,EA038-5,,williams1936,,1930,EthnographicAtlas_1967_p95, +45978,Ie6,EA038,?,EA038-NA,,,,,, +45979,Ie7,EA038,Complete: own peers,EA038-5,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +45980,Ie8,EA038,Complete: own peers,EA038-5,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +45981,Ie9,EA038,No segregation,EA038-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +45982,If1,EA038,No segregation,EA038-1,"Formerly 'complete segregation with own peers' (code ""5"")",barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +45983,If10,EA038,?,EA038-NA,,,,,, +45984,If11,EA038,Partial,EA038-2,,sarfert1919,,1860,EthnographicAtlas_1967_p99, +45985,If12,EA038,?,EA038-NA,,,,,, +45986,If13,EA038,?,EA038-NA,,,,,, +45987,If14,EA038,Partial,EA038-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +45988,If15,EA038,Complete: own peers,EA038-5,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +45989,If16,EA038,Partial,EA038-2,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +45990,If17,EA038,No segregation,EA038-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +45991,If2,EA038,Complete: own peers,EA038-5,But the men's house is now obsolescent,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +45992,If3,EA038,No segregation,EA038-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +45993,If4,EA038,No segregation,EA038-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +45994,If5,EA038,?,EA038-NA,,,,,, +45995,If6,EA038,Complete: own peers,EA038-5,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +45996,If7,EA038,No segregation,EA038-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p99, +45997,If8,EA038,No segregation,EA038-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +45998,If9,EA038,Complete: own peers,EA038-5,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +45999,Ig1,EA038,No segregation,EA038-1,Nearly all young men over fourteen leave their homes for a three-year period of contract labor on plantations,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +46000,Ig10,EA038,Complete: own peers,EA038-5,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +46001,Ig11,EA038,?,EA038-NA,,,,,, +46002,Ig12,EA038,Complete: own peers,EA038-5,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p99, +46003,Ig13,EA038,Complete: own peers,EA038-5,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p99, +46004,Ig14,EA038,Complete: own peers,EA038-5,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +46005,Ig15,EA038,?,EA038-NA,,,,,, +46006,Ig16,EA038,?,EA038-NA,,,,,, +46007,Ig17,EA038,?,EA038-NA,,,,,, +46008,Ig18,EA038,?,EA038-NA,,,,,, +46009,Ig19,EA038,?,EA038-NA,,,,,, +46010,Ig2,EA038,Complete: own peers,EA038-5,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +46011,Ig20,EA038,?,EA038-NA,,,,,, +46012,Ig21,EA038,Complete: own peers,EA038-5,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +46013,Ig3,EA038,Complete: own peers,EA038-5,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +46014,Ig4,EA038,Complete: own peers,EA038-5,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +46015,Ig5,EA038,Partial,EA038-2,,fortune1932b,,1920,EthnographicAtlas_1967_p99, +46016,Ig6,EA038,Complete: own peers,EA038-5,,ivens1927,,1900,EthnographicAtlas_1967_p99, +46017,Ig7,EA038,Complete: own peers,EA038-5,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +46018,Ig8,EA038,?,EA038-NA,,,,,, +46019,Ig9,EA038,Complete: outside nuclear family,EA038-3,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +46020,Ih1,EA038,Complete: own peers,EA038-5,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +46021,Ih10,EA038,Complete: own peers,EA038-5,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46022,Ih11,EA038,?,EA038-NA,,,,,, +46023,Ih12,EA038,?,EA038-NA,,,,,, +46024,Ih13,EA038,?,EA038-NA,,,,,, +46025,Ih14,EA038,?,EA038-NA,,,,,, +46026,Ih2,EA038,Complete: own peers,EA038-5,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46027,Ih3,EA038,Complete: own peers,EA038-5,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +46028,Ih4,EA038,Complete: own peers,EA038-5,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46029,Ih5,EA038,?,EA038-NA,,,,,, +46030,Ih6,EA038,No segregation,EA038-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p99, +46031,Ih7,EA038,Complete: own peers,EA038-5,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p99, +46032,Ih8,EA038,?,EA038-NA,,,,,, +46033,Ih9,EA038,Complete: own peers,EA038-5,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46034,Ii1,EA038,No segregation,EA038-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +46035,Ii10,EA038,?,EA038-NA,,,,,, +46036,Ii12,EA038,No segregation,EA038-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46037,Ii13,EA038,Complete: own peers,EA038-5,,burrows1937,,1830,EthnographicAtlas_1967_p99, +46038,Ii14,EA038,No segregation,EA038-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +46039,Ii2,EA038,No segregation,EA038-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +46040,Ii3,EA038,No segregation,EA038-1,But young men enter a men's house at the age of 18 or 20,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +46041,Ii4,EA038,Complete: own peers,EA038-5,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +46042,Ii5,EA038,No segregation,EA038-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p99, +46043,Ii6,EA038,Complete: own peers,EA038-5,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +46044,Ii7,EA038,Complete: own peers,EA038-5,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +46045,Ii8,EA038,Complete: own peers,EA038-5,,burrows1936,,1840,EthnographicAtlas_1967_p99, +46046,Ii9,EA038,?,EA038-NA,,,,,, +46047,Ij1,EA038,No segregation,EA038-1,,buck1934,,1820,EthnographicAtlas_1967_p99, +46048,Ij10,EA038,?,EA038-NA,,,,,, +46049,Ij2,EA038,No segregation,EA038-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +46050,Ij3,EA038,No segregation,EA038-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +46051,Ij4,EA038,?,EA038-NA,,,,,, +46052,Ij5,EA038,?,EA038-NA,,,,,, +46053,Ij6,EA038,?,EA038-NA,,,,,, +46054,Ij7,EA038,?,EA038-NA,,,,,, +46055,Ij8,EA038,?,EA038-NA,,,,,, +46056,Ij9,EA038,?,EA038-NA,,,,,, +46057,Na1,EA038,?,EA038-NA,,,,,, +46058,Na10,EA038,Partial,EA038-2,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +46059,Na11,EA038,No segregation,EA038-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +46060,Na12,EA038,No segregation,EA038-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +46061,Na13,EA038,No segregation,EA038-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +46062,Na14,EA038,Partial,EA038-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +46063,Na15,EA038,No segregation,EA038-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p103, +46064,Na16,EA038,?,EA038-NA,,,,,, +46065,Na17,EA038,No segregation,EA038-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46066,Na19,EA038,No segregation,EA038-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +46067,Na2,EA038,No segregation,EA038-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +46068,Na20,EA038,Partial,EA038-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +46069,Na21,EA038,No segregation,EA038-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +46070,Na22,EA038,No segregation,EA038-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +46071,Na23,EA038,No segregation,EA038-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +46072,Na24,EA038,No segregation,EA038-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +46073,Na25,EA038,No segregation,EA038-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +46074,Na26,EA038,Complete: outside nuclear family,EA038-3,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +46075,Na27,EA038,Partial,EA038-2,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +46076,Na28,EA038,?,EA038-NA,,,,,, +46077,Na29,EA038,?,EA038-NA,,,,,, +46078,Na3,EA038,No segregation,EA038-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +46079,Na30,EA038,No segregation,EA038-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +46080,Na31,EA038,No segregation,EA038-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +46081,Na32,EA038,No segregation,EA038-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +46082,Na33,EA038,No segregation,EA038-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +46083,Na34,EA038,No segregation,EA038-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +46084,Na35,EA038,No segregation,EA038-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +46085,Na36,EA038,No segregation,EA038-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +46086,Na37,EA038,No segregation,EA038-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +46087,Na38,EA038,No segregation,EA038-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +46088,Na39,EA038,No segregation,EA038-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +46089,Na4,EA038,?,EA038-NA,,,,,, +46090,Na40,EA038,?,EA038-NA,,,,,, +46091,Na41,EA038,No segregation,EA038-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +46092,Na42,EA038,No segregation,EA038-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +46093,Na43,EA038,No segregation,EA038-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +46094,Na44,EA038,?,EA038-NA,,,,,, +46095,Na45,EA038,No segregation,EA038-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +46096,Na5,EA038,No segregation,EA038-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +46097,Na6,EA038,Partial,EA038-2,,lantis1946,,1930,EthnographicAtlas_1967_p103, +46098,Na7,EA038,No segregation,EA038-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +46099,Na8,EA038,?,EA038-NA,,,,,, +46100,Na9,EA038,No segregation,EA038-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46101,Nb1,EA038,Complete: outside nuclear family,EA038-3,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +46102,Nb10,EA038,No segregation,EA038-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +46103,Nb11,EA038,No segregation,EA038-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +46104,Nb12,EA038,No segregation,EA038-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +46105,Nb13,EA038,No segregation,EA038-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +46106,Nb14,EA038,No segregation,EA038-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +46107,Nb15,EA038,No segregation,EA038-1,But boys of fourteen or fifteen leave the village in quest of guardian spirits and do not return for a year or more,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +46108,Nb16,EA038,?,EA038-NA,,,,,, +46109,Nb17,EA038,?,EA038-NA,,,,,, +46110,Nb18,EA038,?,EA038-NA,,,,,, +46111,Nb19,EA038,No segregation,EA038-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +46112,Nb2,EA038,No segregation,EA038-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +46113,Nb20,EA038,No segregation,EA038-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +46114,Nb21,EA038,No segregation,EA038-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +46115,Nb22,EA038,Complete: outside nuclear family,EA038-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +46116,Nb23,EA038,No segregation,EA038-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +46117,Nb24,EA038,No segregation,EA038-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +46118,Nb25,EA038,No segregation,EA038-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +46119,Nb26,EA038,No segregation,EA038-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +46120,Nb27,EA038,No segregation,EA038-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +46121,Nb28,EA038,Partial,EA038-2,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +46122,Nb29,EA038,Partial,EA038-2,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +46123,Nb3,EA038,No segregation,EA038-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +46124,Nb30,EA038,?,EA038-NA,,,,,, +46125,Nb31,EA038,?,EA038-NA,,,,,, +46126,Nb32,EA038,No segregation,EA038-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +46127,Nb33,EA038,?,EA038-NA,,,,,, +46128,Nb34,EA038,?,EA038-NA,,,,,, +46129,Nb35,EA038,?,EA038-NA,,,,,, +46130,Nb36,EA038,?,EA038-NA,,,,,, +46131,Nb37,EA038,?,EA038-NA,,,,,, +46132,Nb38,EA038,?,EA038-NA,,,,,, +46133,Nb39,EA038,No segregation,EA038-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +46134,Nb4,EA038,No segregation,EA038-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +46135,Nb5,EA038,Complete: outside nuclear family,EA038-3,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +46136,Nb6,EA038,No segregation,EA038-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +46137,Nb7,EA038,Complete: outside nuclear family,EA038-3,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +46138,Nb8,EA038,Complete: outside nuclear family,EA038-3,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +46139,Nb9,EA038,No segregation,EA038-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +46140,Nc1,EA038,?,EA038-NA,,,,,, +46141,Nc10,EA038,No segregation,EA038-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +46142,Nc11,EA038,No segregation,EA038-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +46143,Nc12,EA038,No segregation,EA038-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +46144,Nc13,EA038,No segregation,EA038-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +46145,Nc14,EA038,Partial,EA038-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +46146,Nc15,EA038,No segregation,EA038-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +46147,Nc16,EA038,?,EA038-NA,,,,,, +46148,Nc17,EA038,?,EA038-NA,,,,,, +46149,Nc18,EA038,No segregation,EA038-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +46150,Nc19,EA038,?,EA038-NA,,,,,, +46151,Nc2,EA038,?,EA038-NA,,,,,, +46152,Nc20,EA038,No segregation,EA038-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +46153,Nc21,EA038,?,EA038-NA,,,,,, +46154,Nc22,EA038,Partial,EA038-2,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +46155,Nc23,EA038,?,EA038-NA,,,,,, +46156,Nc24,EA038,No segregation,EA038-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +46157,Nc25,EA038,Partial,EA038-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +46158,Nc26,EA038,?,EA038-NA,,,,,, +46159,Nc27,EA038,?,EA038-NA,,,,,, +46160,Nc28,EA038,?,EA038-NA,,,,,, +46161,Nc29,EA038,?,EA038-NA,,,,,, +46162,Nc3,EA038,No segregation,EA038-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +46163,Nc30,EA038,?,EA038-NA,,,,,, +46164,Nc31,EA038,?,EA038-NA,,,,,, +46165,Nc32,EA038,?,EA038-NA,,,,,, +46166,Nc33,EA038,No segregation,EA038-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +46167,Nc34,EA038,No segregation,EA038-1,But boys were secluded for two months at puberty,meigs1939,,1880,EthnographicAtlas_1967_p107, +46168,Nc4,EA038,No segregation,EA038-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +46169,Nc5,EA038,No segregation,EA038-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +46170,Nc6,EA038,No segregation,EA038-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +46171,Nc7,EA038,No segregation,EA038-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +46172,Nc8,EA038,No segregation,EA038-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +46173,Nc9,EA038,No segregation,EA038-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +46174,Nd1,EA038,No segregation,EA038-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +46175,Nd10,EA038,?,EA038-NA,,,,,, +46176,Nd11,EA038,Partial,EA038-2,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +46177,Nd12,EA038,No segregation,EA038-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +46178,Nd13,EA038,Partial,EA038-2,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +46179,Nd14,EA038,Partial,EA038-2,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +46180,Nd15,EA038,No segregation,EA038-1,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +46181,Nd16,EA038,No segregation,EA038-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +46182,Nd17,EA038,?,EA038-NA,,,,,, +46183,Nd18,EA038,No segregation,EA038-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +46184,Nd19,EA038,?,EA038-NA,,,,,, +46185,Nd2,EA038,No segregation,EA038-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +46186,Nd20,EA038,Partial,EA038-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +46187,Nd21,EA038,No segregation,EA038-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +46188,Nd22,EA038,No segregation,EA038-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +46189,Nd23,EA038,No segregation,EA038-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +46190,Nd24,EA038,No segregation,EA038-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +46191,Nd25,EA038,No segregation,EA038-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +46192,Nd26,EA038,No segregation,EA038-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +46193,Nd27,EA038,No segregation,EA038-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +46194,Nd28,EA038,?,EA038-NA,,,,,, +46195,Nd29,EA038,No segregation,EA038-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +46196,Nd3,EA038,No segregation,EA038-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +46197,Nd30,EA038,No segregation,EA038-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +46198,Nd31,EA038,No segregation,EA038-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +46199,Nd32,EA038,No segregation,EA038-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +46200,Nd33,EA038,No segregation,EA038-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +46201,Nd34,EA038,No segregation,EA038-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +46202,Nd35,EA038,No segregation,EA038-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +46203,Nd36,EA038,No segregation,EA038-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +46204,Nd37,EA038,No segregation,EA038-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +46205,Nd38,EA038,No segregation,EA038-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +46206,Nd39,EA038,No segregation,EA038-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +46207,Nd4,EA038,No segregation,EA038-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +46208,Nd40,EA038,No segregation,EA038-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +46209,Nd41,EA038,No segregation,EA038-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +46210,Nd42,EA038,No segregation,EA038-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +46211,Nd43,EA038,No segregation,EA038-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +46212,Nd44,EA038,No segregation,EA038-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +46213,Nd45,EA038,No segregation,EA038-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +46214,Nd46,EA038,No segregation,EA038-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +46215,Nd47,EA038,No segregation,EA038-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +46216,Nd48,EA038,No segregation,EA038-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +46217,Nd49,EA038,No segregation,EA038-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +46218,Nd5,EA038,No segregation,EA038-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +46219,Nd50,EA038,No segregation,EA038-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +46220,Nd51,EA038,No segregation,EA038-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +46221,Nd52,EA038,No segregation,EA038-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +46222,Nd53,EA038,No segregation,EA038-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +46223,Nd54,EA038,No segregation,EA038-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46224,Nd55,EA038,No segregation,EA038-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +46225,Nd56,EA038,No segregation,EA038-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +46226,Nd57,EA038,No segregation,EA038-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +46227,Nd58,EA038,?,EA038-NA,,,,,, +46228,Nd59,EA038,No segregation,EA038-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +46229,Nd6,EA038,No segregation,EA038-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +46230,Nd60,EA038,No segregation,EA038-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +46231,Nd61,EA038,No segregation,EA038-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +46232,Nd62,EA038,No segregation,EA038-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +46233,Nd63,EA038,No segregation,EA038-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +46234,Nd64,EA038,No segregation,EA038-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +46235,Nd65,EA038,No segregation,EA038-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +46236,Nd66,EA038,No segregation,EA038-1,"""Sometimes a boy stayed with father's father, occasionally with mother's father""",drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +46237,Nd67,EA038,No segregation,EA038-1,,gifford1936,,1870,EthnographicAtlas_1967_p111, +46238,Nd7,EA038,No segregation,EA038-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +46239,Nd8,EA038,No segregation,EA038-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +46240,Nd9,EA038,No segregation,EA038-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +46241,Ne1,EA038,?,EA038-NA,,,,,, +46242,Ne10,EA038,?,EA038-NA,,,,,, +46243,Ne11,EA038,?,EA038-NA,,,,,, +46244,Ne12,EA038,No segregation,EA038-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +46245,Ne13,EA038,No segregation,EA038-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +46246,Ne14,EA038,No segregation,EA038-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +46247,Ne15,EA038,No segregation,EA038-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +46248,Ne16,EA038,?,EA038-NA,,,,,, +46249,Ne17,EA038,No segregation,EA038-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +46250,Ne18,EA038,No segregation,EA038-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +46251,Ne19,EA038,No segregation,EA038-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +46252,Ne2,EA038,No segregation,EA038-1,,mcallister1937,,1870,EthnographicAtlas_1967_p111, +46253,Ne20,EA038,?,EA038-NA,,,,,, +46254,Ne21,EA038,?,EA038-NA,,,,,, +46255,Ne3,EA038,?,EA038-NA,,,,,, +46256,Ne4,EA038,?,EA038-NA,,,,,, +46257,Ne5,EA038,No segregation,EA038-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +46258,Ne6,EA038,No segregation,EA038-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p111, +46259,Ne7,EA038,No segregation,EA038-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +46260,Ne8,EA038,?,EA038-NA,,,,,, +46261,Ne9,EA038,No segregation,EA038-1,But strong brother-sister avoidance prevailed,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +46262,Nf10,EA038,No segregation,EA038-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +46263,Nf11,EA038,No segregation,EA038-1,,whitman1937,,1870,EthnographicAtlas_1967_p115, +46264,Nf12,EA038,No segregation,EA038-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +46265,Nf13,EA038,No segregation,EA038-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46266,Nf14,EA038,?,EA038-NA,,,,,, +46267,Nf15,EA038,?,EA038-NA,,,,,, +46268,Nf2,EA038,Partial,EA038-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p115, +46269,Nf3,EA038,No segregation,EA038-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +46270,Nf4,EA038,?,EA038-NA,,,,,, +46271,Nf5,EA038,No segregation,EA038-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +46272,Nf6,EA038,Complete: outside nuclear family,EA038-3,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +46273,Nf7,EA038,No segregation,EA038-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46274,Nf8,EA038,No segregation,EA038-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +46275,Nf9,EA038,?,EA038-NA,,,,,, +46276,Ng1,EA038,No segregation,EA038-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +46277,Ng10,EA038,Partial,EA038-2,Boys were segregated for one year at puberty,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +46278,Ng11,EA038,?,EA038-NA,,,,,, +46279,Ng12,EA038,No segregation,EA038-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p115, +46280,Ng13,EA038,?,EA038-NA,,,,,, +46281,Ng14,EA038,?,EA038-NA,,,,,, +46282,Ng15,EA038,?,EA038-NA,,,,,, +46283,Ng2,EA038,?,EA038-NA,,,,,, +46284,Ng3,EA038,?,EA038-NA,,,,,, +46285,Ng4,EA038,?,EA038-NA,,,,,, +46286,Ng5,EA038,No segregation,EA038-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +46287,Ng6,EA038,No segregation,EA038-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +46288,Ng7,EA038,?,EA038-NA,,,,,, +46289,Ng8,EA038,?,EA038-NA,,,,,, +46290,Ng9,EA038,No segregation,EA038-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +46291,Nh1,EA038,No segregation,EA038-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +46292,Nh10,EA038,No segregation,EA038-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +46293,Nh11,EA038,?,EA038-NA,,,,,, +46294,Nh12,EA038,No segregation,EA038-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +46295,Nh13,EA038,No segregation,EA038-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +46296,Nh14,EA038,No segregation,EA038-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +46297,Nh15,EA038,No segregation,EA038-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +46298,Nh16,EA038,No segregation,EA038-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46299,Nh17,EA038,No segregation,EA038-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +46300,Nh18,EA038,Partial,EA038-2,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46301,Nh19,EA038,No segregation,EA038-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +46302,Nh2,EA038,No segregation,EA038-1,,dozier1954,,1950,EthnographicAtlas_1967_p115, +46303,Nh20,EA038,?,EA038-NA,,,,,, +46304,Nh21,EA038,?,EA038-NA,,,,,, +46305,Nh22,EA038,No segregation,EA038-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +46306,Nh23,EA038,?,EA038-NA,,,,,, +46307,Nh24,EA038,No segregation,EA038-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +46308,Nh25,EA038,No segregation,EA038-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +46309,Nh26,EA038,?,EA038-NA,,,,,, +46310,Nh27,EA038,?,EA038-NA,,,,,, +46311,Nh3,EA038,No segregation,EA038-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +46312,Nh4,EA038,No segregation,EA038-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +46313,Nh5,EA038,No segregation,EA038-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +46314,Nh6,EA038,No segregation,EA038-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +46315,Nh7,EA038,No segregation,EA038-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +46316,Nh8,EA038,No segregation,EA038-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +46317,Nh9,EA038,?,EA038-NA,,,,,, +46318,Ni1,EA038,No segregation,EA038-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +46319,Ni2,EA038,No segregation,EA038-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +46320,Ni3,EA038,No segregation,EA038-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +46321,Ni4,EA038,No segregation,EA038-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p115, +46322,Ni5,EA038,No segregation,EA038-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +46323,Ni6,EA038,No segregation,EA038-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +46324,Ni7,EA038,No segregation,EA038-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +46325,Ni8,EA038,?,EA038-NA,,,,,, +46326,Ni9,EA038,?,EA038-NA,,,,,, +46327,Nj1,EA038,No segregation,EA038-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46328,Nj10,EA038,No segregation,EA038-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46329,Nj11,EA038,?,EA038-NA,,,,,, +46330,Nj12,EA038,?,EA038-NA,,,,,, +46331,Nj13,EA038,?,EA038-NA,,,,,, +46332,Nj14,EA038,?,EA038-NA,,,,,, +46333,Nj2,EA038,No segregation,EA038-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +46334,Nj3,EA038,?,EA038-NA,,,,,, +46335,Nj4,EA038,No segregation,EA038-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +46336,Nj5,EA038,?,EA038-NA,,,,,, +46337,Nj6,EA038,?,EA038-NA,,,,,, +46338,Nj7,EA038,No segregation,EA038-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46339,Nj8,EA038,?,EA038-NA,,,,,, +46340,Nj9,EA038,No segregation,EA038-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +46341,Sa1,EA038,No segregation,EA038-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +46342,Sa10,EA038,No segregation,EA038-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p119, +46343,Sa11,EA038,?,EA038-NA,,,,,, +46344,Sa12,EA038,No segregation,EA038-1,,stone1948,,1948,EthnographicAtlas_1967_p119, +46345,Sa13,EA038,No segregation,EA038-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +46346,Sa14,EA038,?,EA038-NA,,,,,, +46347,Sa15,EA038,?,EA038-NA,,,,,, +46348,Sa16,EA038,?,EA038-NA,,,,,, +46349,Sa17,EA038,?,EA038-NA,,,,,, +46350,Sa2,EA038,?,EA038-NA,,,,,, +46351,Sa3,EA038,No segregation,EA038-1,,wisdom1940,,1930,EthnographicAtlas_1967_p119, +46352,Sa4,EA038,No segregation,EA038-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +46353,Sa5,EA038,No segregation,EA038-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +46354,Sa6,EA038,Complete: own peers,EA038-5,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +46355,Sa7,EA038,No segregation,EA038-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +46356,Sa8,EA038,No segregation,EA038-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +46357,Sa9,EA038,No segregation,EA038-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +46358,Sb1,EA038,Complete: own peers,EA038-5,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +46359,Sb2,EA038,?,EA038-NA,,,,,, +46360,Sb3,EA038,?,EA038-NA,,,,,, +46361,Sb4,EA038,No segregation,EA038-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +46362,Sb5,EA038,No segregation,EA038-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +46363,Sb6,EA038,?,EA038-NA,,,,,, +46364,Sb7,EA038,No segregation,EA038-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +46365,Sb8,EA038,?,EA038-NA,,,,,, +46366,Sb9,EA038,No segregation,EA038-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +46367,Sc1,EA038,No segregation,EA038-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +46368,Sc10,EA038,?,EA038-NA,,,,,, +46369,Sc11,EA038,?,EA038-NA,,,,,, +46370,Sc12,EA038,?,EA038-NA,,,,,, +46371,Sc13,EA038,?,EA038-NA,,,,,, +46372,Sc14,EA038,?,EA038-NA,,,,,, +46373,Sc15,EA038,?,EA038-NA,,,,,, +46374,Sc16,EA038,Partial,EA038-2,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p119, +46375,Sc17,EA038,?,EA038-NA,,,,,, +46376,Sc18,EA038,Partial,EA038-2,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +46377,Sc2,EA038,?,EA038-NA,,,,,, +46378,Sc3,EA038,No segregation,EA038-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +46379,Sc4,EA038,No segregation,EA038-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +46380,Sc5,EA038,No segregation,EA038-1,,farabee1918,,1900,EthnographicAtlas_1967_p119, +46381,Sc6,EA038,?,EA038-NA,,,,,, +46382,Sc7,EA038,?,EA038-NA,,,,,, +46383,Sc8,EA038,?,EA038-NA,,,,,, +46384,Sc9,EA038,?,EA038-NA,,,,,, +46385,Sd1,EA038,Complete: own peers,EA038-5,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46386,Sd2,EA038,Complete: own peers,EA038-5,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +46387,Sd3,EA038,?,EA038-NA,,,,,, +46388,Sd4,EA038,?,EA038-NA,,,,,, +46389,Sd5,EA038,?,EA038-NA,,,,,, +46390,Sd6,EA038,No segregation,EA038-1,,migliazza1964,,1960,EthnographicAtlas_1967_p119, +46391,Sd7,EA038,No segregation,EA038-1,,fock1963,,1950,EthnographicAtlas_1967_p119, +46392,Sd8,EA038,?,EA038-NA,,,,,, +46393,Sd9,EA038,No segregation,EA038-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46394,Se1,EA038,No segregation,EA038-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +46395,Se10,EA038,No segregation,EA038-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +46396,Se11,EA038,Complete: own peers,EA038-5,,prost1965,,1960,EthnographicAtlas_1967_p123, +46397,Se12,EA038,?,EA038-NA,,,,,, +46398,Se2,EA038,Partial,EA038-2,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +46399,Se3,EA038,No segregation,EA038-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +46400,Se4,EA038,No segregation,EA038-1,,fejos1943,,1940,EthnographicAtlas_1967_p119, +46401,Se5,EA038,No segregation,EA038-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +46402,Se6,EA038,No segregation,EA038-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +46403,Se7,EA038,?,EA038-NA,,,,,, +46404,Se8,EA038,No segregation,EA038-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +46405,Se9,EA038,Complete: own peers,EA038-5,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +46406,Sf1,EA038,No segregation,EA038-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +46407,Sf2,EA038,No segregation,EA038-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +46408,Sf3,EA038,No segregation,EA038-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +46409,Sf4,EA038,No segregation,EA038-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +46410,Sf5,EA038,?,EA038-NA,,,,,, +46411,Sf6,EA038,?,EA038-NA,,,,,, +46412,Sf7,EA038,Complete: own peers,EA038-5,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +46413,Sf8,EA038,?,EA038-NA,,,,,, +46414,Sf9,EA038,?,EA038-NA,,,,,, +46415,Sg1,EA038,?,EA038-NA,,,,,, +46416,Sg2,EA038,No segregation,EA038-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46417,Sg3,EA038,No segregation,EA038-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +46418,Sg4,EA038,No segregation,EA038-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +46419,Sg5,EA038,?,EA038-NA,,,,,, +46420,Sh1,EA038,No segregation,EA038-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +46421,Sh2,EA038,No segregation,EA038-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +46422,Sh3,EA038,?,EA038-NA,,,,,, +46423,Sh4,EA038,No segregation,EA038-1,,oberg1949,,1940,EthnographicAtlas_1967_p123, +46424,Sh5,EA038,No segregation,EA038-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +46425,Sh6,EA038,?,EA038-NA,,,,,, +46426,Sh7,EA038,?,EA038-NA,,,,,, +46427,Sh8,EA038,No segregation,EA038-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +46428,Sh9,EA038,No segregation,EA038-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +46429,Si1,EA038,?,EA038-NA,,,,,, +46430,Si10,EA038,No segregation,EA038-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +46431,Si2,EA038,?,EA038-NA,,,,,, +46432,Si3,EA038,?,EA038-NA,Boys at puberty go into seclusion for from two months to a year,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46433,Si4,EA038,No segregation,EA038-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +46434,Si5,EA038,Partial,EA038-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +46435,Si6,EA038,Complete: outside nuclear family,EA038-3,Boys left the parental home immediately after puberty,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p123, +46436,Si7,EA038,No segregation,EA038-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +46437,Si8,EA038,No segregation,EA038-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +46438,Si9,EA038,?,EA038-NA,,,,,, +46439,Sj1,EA038,Complete: own peers,EA038-5,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +46440,Sj10,EA038,?,EA038-NA,,,,,, +46441,Sj11,EA038,Complete: own peers,EA038-5,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +46442,Sj2,EA038,Complete: own peers,EA038-5,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +46443,Sj3,EA038,No segregation,EA038-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +46444,Sj4,EA038,Partial,EA038-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +46445,Sj5,EA038,?,EA038-NA,,,,,, +46446,Sj6,EA038,No segregation,EA038-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46447,Sj7,EA038,No segregation,EA038-1,But boys are secluded temporarily during an initiation ceremony,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +46448,Sj8,EA038,?,EA038-NA,,,,,, +46449,Sj9,EA038,Complete: own peers,EA038-5,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +46450,ch12,EA038,?,EA038-NA,,,,,, +46451,ch13,EA038,?,EA038-NA,,,,,, +46452,ch14,EA038,No segregation,EA038-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +46453,ch15,EA038,?,EA038-NA,,,,,, +46454,ch16,EA038,Partial,EA038-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +46455,ch17,EA038,No segregation,EA038-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +46456,ch18,EA038,?,EA038-NA,,,,,, +46457,ch19,EA038,No segregation,EA038-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +46458,ch20,EA038,No segregation,EA038-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +46459,ch21,EA038,?,EA038-NA,,,,,, +46460,ch22,EA038,?,EA038-NA,,,,,, +46461,ch23,EA038,?,EA038-NA,,,,,, +46462,ch24,EA038,?,EA038-NA,,,,,, +46463,ch25,EA038,?,EA038-NA,,,,,, +46464,ch26,EA038,?,EA038-NA,,,,,, +46465,ch27,EA038,No segregation,EA038-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +46466,ch28,EA038,?,EA038-NA,,,,,, +46467,ec12,EA038,No segregation,EA038-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +46468,ec13,EA038,No segregation,EA038-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +46469,ec14,EA038,No segregation,EA038-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +46470,ec15,EA038,No segregation,EA038-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +46471,ec16,EA038,No segregation,EA038-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +46472,ec17,EA038,No segregation,EA038-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +46473,ec18,EA038,No segregation,EA038-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +46474,ec19,EA038,No segregation,EA038-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +46475,ec20,EA038,No segregation,EA038-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +46476,ec21,EA038,No segregation,EA038-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +46477,Aa1,EA039,Absent,EA039-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +46478,Aa2,EA039,Absent,EA039-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +46479,Aa3,EA039,Absent,EA039-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +46480,Aa4,EA039,?,EA039-NA,,,,,, +46481,Aa5,EA039,Absent,EA039-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +46482,Aa6,EA039,Absent,EA039-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p63, +46483,Aa7,EA039,Absent,EA039-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +46484,Aa8,EA039,Absent,EA039-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +46485,Aa9,EA039,Absent,EA039-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +46486,Ab1,EA039,Absent,EA039-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p63, +46487,Ab10,EA039,Not aboriginal but present,EA039-2,,hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +46488,Ab11,EA039,Not aboriginal but present,EA039-2,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +46489,Ab12,EA039,Absent,EA039-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p63, +46490,Ab13,EA039,Absent,EA039-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +46491,Ab14,EA039,Not aboriginal but present,EA039-2,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +46492,Ab15,EA039,Absent,EA039-1,The plow was introduced in 1865,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +46493,Ab16,EA039,Absent,EA039-1,,earthy1933,,1930,EthnographicAtlas_1967_p63, +46494,Ab17,EA039,?,EA039-NA,,,,,, +46495,Ab18,EA039,Absent,EA039-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +46496,Ab19,EA039,Absent,EA039-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +46497,Ab2,EA039,Not aboriginal but present,EA039-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +46498,Ab20,EA039,?,EA039-NA,,,,,, +46499,Ab21a,EA039,Absent,EA039-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +46500,Ab21b,EA039,?,EA039-NA,,,,,, +46501,Ab22,EA039,?,EA039-NA,,,,,, +46502,Ab3,EA039,Absent,EA039-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +46503,Ab4,EA039,Absent,EA039-1,,junod1927,,1920,EthnographicAtlas_1967_p63, +46504,Ab5,EA039,Absent,EA039-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +46505,Ab6,EA039,Absent,EA039-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +46506,Ab7,EA039,Absent,EA039-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p63, +46507,Ab8,EA039,Not aboriginal but present,EA039-2,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +46508,Ab9,EA039,Absent,EA039-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +46509,Ac1,EA039,Absent,EA039-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +46510,Ac10,EA039,Absent,EA039-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +46511,Ac11,EA039,Absent,EA039-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +46512,Ac12,EA039,Absent,EA039-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p63, +46513,Ac13,EA039,Absent,EA039-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p63, +46514,Ac14,EA039,Absent,EA039-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p63, +46515,Ac15,EA039,?,EA039-NA,,,,,, +46516,Ac16,EA039,Absent,EA039-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +46517,Ac17,EA039,Absent,EA039-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +46518,Ac18,EA039,Absent,EA039-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +46519,Ac19,EA039,Absent,EA039-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +46520,Ac2,EA039,Absent,EA039-1,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p63, +46521,Ac20,EA039,Absent,EA039-1,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +46522,Ac21,EA039,Absent,EA039-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p63, +46523,Ac22,EA039,Absent,EA039-1,,mertens1935,,1930,EthnographicAtlas_1967_p63, +46524,Ac23,EA039,Absent,EA039-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +46525,Ac24,EA039,Absent,EA039-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +46526,Ac25,EA039,Absent,EA039-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p63, +46527,Ac26,EA039,Absent,EA039-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +46528,Ac27,EA039,Absent,EA039-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +46529,Ac28,EA039,Absent,EA039-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p63, +46530,Ac29,EA039,?,EA039-NA,,,,,, +46531,Ac3,EA039,Absent,EA039-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +46532,Ac30,EA039,Absent,EA039-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +46533,Ac31,EA039,Absent,EA039-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +46534,Ac32,EA039,Absent,EA039-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +46535,Ac33,EA039,Absent,EA039-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +46536,Ac34,EA039,Absent,EA039-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +46537,Ac35,EA039,?,EA039-NA,,,,,, +46538,Ac36,EA039,Absent,EA039-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +46539,Ac37,EA039,Absent,EA039-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +46540,Ac38,EA039,Absent,EA039-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p63, +46541,Ac39,EA039,?,EA039-NA,,,,,, +46542,Ac4,EA039,Absent,EA039-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +46543,Ac40,EA039,Absent,EA039-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +46544,Ac41,EA039,Absent,EA039-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +46545,Ac42,EA039,?,EA039-NA,,,,,, +46546,Ac43,EA039,Absent,EA039-1,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +46547,Ac5,EA039,Absent,EA039-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +46548,Ac6,EA039,Absent,EA039-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p63, +46549,Ac7,EA039,Absent,EA039-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +46550,Ac8,EA039,Absent,EA039-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +46551,Ac9,EA039,Absent,EA039-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +46552,Ad1,EA039,Absent,EA039-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p63, +46553,Ad10,EA039,Absent,EA039-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +46554,Ad11,EA039,Absent,EA039-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +46555,Ad12,EA039,Absent,EA039-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +46556,Ad13,EA039,Absent,EA039-1,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +46557,Ad14,EA039,Absent,EA039-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +46558,Ad15,EA039,Absent,EA039-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +46559,Ad16,EA039,Absent,EA039-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +46560,Ad17,EA039,Absent,EA039-1,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +46561,Ad18,EA039,Absent,EA039-1,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +46562,Ad19,EA039,Absent,EA039-1,"But 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"") in some districts",fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +46563,Ad2,EA039,Absent,EA039-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +46564,Ad20,EA039,Absent,EA039-1,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +46565,Ad21,EA039,Absent,EA039-1,,maurice193538,,1930,EthnographicAtlas_1967_p67, +46566,Ad22,EA039,Absent,EA039-1,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +46567,Ad23,EA039,Absent,EA039-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +46568,Ad24,EA039,Absent,EA039-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +46569,Ad25,EA039,Absent,EA039-1,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +46570,Ad26,EA039,Absent,EA039-1,,sick1916,,1910,Ethnology_Vol7_No2_Apr_1968, +46571,Ad27,EA039,Absent,EA039-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +46572,Ad28,EA039,Absent,EA039-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +46573,Ad29,EA039,Absent,EA039-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p67, +46574,Ad3,EA039,Absent,EA039-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +46575,Ad30,EA039,Absent,EA039-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p67, +46576,Ad31,EA039,?,EA039-NA,,,,,, +46577,Ad32,EA039,Absent,EA039-1,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p67, +46578,Ad33,EA039,Absent,EA039-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p67, +46579,Ad34,EA039,Absent,EA039-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +46580,Ad35,EA039,Absent,EA039-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p67, +46581,Ad36,EA039,Absent,EA039-1,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +46582,Ad37,EA039,Absent,EA039-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +46583,Ad38,EA039,Absent,EA039-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +46584,Ad39,EA039,Absent,EA039-1,,gray1963,,1950,EthnographicAtlas_1967_p67, +46585,Ad4,EA039,Absent,EA039-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +46586,Ad40,EA039,Absent,EA039-1,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +46587,Ad41,EA039,Absent,EA039-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p67, +46588,Ad42,EA039,Absent,EA039-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +46589,Ad43,EA039,Absent,EA039-1,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +46590,Ad44,EA039,Absent,EA039-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p67, +46591,Ad45,EA039,Absent,EA039-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +46592,Ad46,EA039,Absent,EA039-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p67, +46593,Ad47,EA039,Absent,EA039-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +46594,Ad48,EA039,Absent,EA039-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +46595,Ad49,EA039,Absent,EA039-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +46596,Ad5,EA039,?,EA039-NA,,,,,, +46597,Ad50,EA039,Absent,EA039-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +46598,Ad51,EA039,Absent,EA039-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +46599,Ad6,EA039,Absent,EA039-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +46600,Ad7,EA039,Absent,EA039-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +46601,Ad8,EA039,Absent,EA039-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +46602,Ad9,EA039,Absent,EA039-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +46603,Ae1,EA039,Absent,EA039-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67, +46604,Ae10,EA039,Absent,EA039-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +46605,Ae11,EA039,Absent,EA039-1,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +46606,Ae12,EA039,Absent,EA039-1,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +46607,Ae13,EA039,?,EA039-NA,,,,,, +46608,Ae14,EA039,Absent,EA039-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +46609,Ae15,EA039,Absent,EA039-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p67, +46610,Ae16,EA039,?,EA039-NA,,,,,, +46611,Ae17,EA039,Absent,EA039-1,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +46612,Ae18,EA039,Absent,EA039-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +46613,Ae19,EA039,?,EA039-NA,,,,,, +46614,Ae2,EA039,Absent,EA039-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +46615,Ae20,EA039,Absent,EA039-1,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +46616,Ae21,EA039,Absent,EA039-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +46617,Ae22,EA039,Absent,EA039-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p67, +46618,Ae23,EA039,?,EA039-NA,,,,,, +46619,Ae24,EA039,?,EA039-NA,,,,,, +46620,Ae25,EA039,?,EA039-NA,,,,,, +46621,Ae26,EA039,Absent,EA039-1,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +46622,Ae27,EA039,Absent,EA039-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +46623,Ae28,EA039,Absent,EA039-1,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +46624,Ae29,EA039,Absent,EA039-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p67, +46625,Ae3,EA039,Absent,EA039-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +46626,Ae30,EA039,Absent,EA039-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +46627,Ae31,EA039,Absent,EA039-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +46628,Ae32,EA039,Absent,EA039-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +46629,Ae33,EA039,Absent,EA039-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +46630,Ae34,EA039,Absent,EA039-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +46631,Ae35,EA039,Absent,EA039-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +46632,Ae36,EA039,Absent,EA039-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +46633,Ae37,EA039,?,EA039-NA,,,,,, +46634,Ae38,EA039,Absent,EA039-1,"Possibly 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1""), though there is no specific mention of goats",wijnant192526,,1920,EthnographicAtlas_1967_p67, +46635,Ae39,EA039,Absent,EA039-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +46636,Ae4,EA039,Absent,EA039-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +46637,Ae40,EA039,Absent,EA039-1,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +46638,Ae41,EA039,Absent,EA039-1,,andersson1953,,1940,EthnographicAtlas_1967_p67, +46639,Ae42,EA039,Absent,EA039-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +46640,Ae43,EA039,Absent,EA039-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +46641,Ae44,EA039,Absent,EA039-1,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +46642,Ae45,EA039,Absent,EA039-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +46643,Ae46,EA039,Absent,EA039-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +46644,Ae47,EA039,Absent,EA039-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +46645,Ae48,EA039,Absent,EA039-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p67, +46646,Ae49,EA039,?,EA039-NA,,,,,, +46647,Ae5,EA039,Absent,EA039-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p67, +46648,Ae50,EA039,Absent,EA039-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p67, +46649,Ae51,EA039,Absent,EA039-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p67, +46650,Ae52,EA039,?,EA039-NA,,,,,, +46651,Ae53,EA039,?,EA039-NA,,,,,, +46652,Ae54,EA039,?,EA039-NA,,,,,, +46653,Ae55,EA039,Absent,EA039-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +46654,Ae56,EA039,Absent,EA039-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +46655,Ae57,EA039,Absent,EA039-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +46656,Ae58,EA039,Absent,EA039-1,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +46657,Ae59,EA039,?,EA039-NA,,,,,, +46658,Ae6,EA039,Absent,EA039-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,Ethnology_Vol7_No2_Apr_1968, +46659,Ae7,EA039,Absent,EA039-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +46660,Ae8,EA039,Absent,EA039-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +46661,Ae9,EA039,Absent,EA039-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +46662,Af1,EA039,Absent,EA039-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +46663,Af10,EA039,Absent,EA039-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +46664,Af11,EA039,Absent,EA039-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +46665,Af12,EA039,Absent,EA039-1,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +46666,Af13,EA039,Absent,EA039-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +46667,Af14,EA039,Absent,EA039-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p71, +46668,Af15,EA039,Absent,EA039-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +46669,Af16,EA039,Absent,EA039-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +46670,Af17,EA039,Absent,EA039-1,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +46671,Af18,EA039,Absent,EA039-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +46672,Af19,EA039,Absent,EA039-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +46673,Af2,EA039,Absent,EA039-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +46674,Af20,EA039,Absent,EA039-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +46675,Af21,EA039,Absent,EA039-1,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +46676,Af22,EA039,Absent,EA039-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p71, +46677,Af23,EA039,Absent,EA039-1,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +46678,Af24,EA039,Absent,EA039-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +46679,Af25,EA039,Absent,EA039-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +46680,Af26,EA039,Absent,EA039-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +46681,Af27,EA039,Absent,EA039-1,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +46682,Af28,EA039,Absent,EA039-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +46683,Af29,EA039,Absent,EA039-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +46684,Af3,EA039,Absent,EA039-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +46685,Af30,EA039,Absent,EA039-1,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +46686,Af31,EA039,?,EA039-NA,,,,,, +46687,Af32,EA039,Absent,EA039-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46688,Af33,EA039,Absent,EA039-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46689,Af34,EA039,Absent,EA039-1,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46690,Af35,EA039,Absent,EA039-1,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +46691,Af36,EA039,Absent,EA039-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p71, +46692,Af37,EA039,Absent,EA039-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +46693,Af38,EA039,Absent,EA039-1,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +46694,Af39,EA039,Absent,EA039-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +46695,Af4,EA039,Absent,EA039-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +46696,Af40,EA039,Absent,EA039-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +46697,Af41,EA039,Absent,EA039-1,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +46698,Af42,EA039,Absent,EA039-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p71, +46699,Af43,EA039,Absent,EA039-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p71, +46700,Af44,EA039,?,EA039-NA,,,,,, +46701,Af45,EA039,Absent,EA039-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +46702,Af46,EA039,Absent,EA039-1,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +46703,Af47,EA039,Absent,EA039-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +46704,Af48,EA039,Absent,EA039-1,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +46705,Af49,EA039,Absent,EA039-1,,schwab1947,,1940,EthnographicAtlas_1967_p71, +46706,Af5,EA039,Absent,EA039-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +46707,Af50,EA039,Absent,EA039-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +46708,Af51,EA039,Absent,EA039-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +46709,Af52,EA039,Absent,EA039-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +46710,Af53,EA039,Absent,EA039-1,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +46711,Af54,EA039,Absent,EA039-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +46712,Af55,EA039,Absent,EA039-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +46713,Af56,EA039,Absent,EA039-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +46714,Af57,EA039,Absent,EA039-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +46715,Af58,EA039,Absent,EA039-1,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +46716,Af6,EA039,Absent,EA039-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +46717,Af7,EA039,Absent,EA039-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +46718,Af8,EA039,Absent,EA039-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +46719,Af9,EA039,Absent,EA039-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p71, +46720,Ag1,EA039,Absent,EA039-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +46721,Ag10,EA039,Absent,EA039-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +46722,Ag11,EA039,Absent,EA039-1,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +46723,Ag12,EA039,Absent,EA039-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +46724,Ag13,EA039,Absent,EA039-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +46725,Ag14,EA039,Absent,EA039-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +46726,Ag15,EA039,Absent,EA039-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +46727,Ag16,EA039,Absent,EA039-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p71, +46728,Ag17,EA039,Absent,EA039-1,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +46729,Ag18,EA039,Absent,EA039-1,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p71, +46730,Ag19,EA039,Absent,EA039-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p71, +46731,Ag2,EA039,Absent,EA039-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +46732,Ag20,EA039,Absent,EA039-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +46733,Ag21,EA039,Absent,EA039-1,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +46734,Ag22,EA039,Absent,EA039-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p71, +46735,Ag23,EA039,Absent,EA039-1,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +46736,Ag24,EA039,Absent,EA039-1,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +46737,Ag25,EA039,Absent,EA039-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p71, +46738,Ag26,EA039,Absent,EA039-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p71, +46739,Ag27,EA039,Absent,EA039-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +46740,Ag28,EA039,Absent,EA039-1,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +46741,Ag29,EA039,Absent,EA039-1,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +46742,Ag3,EA039,Absent,EA039-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p71, +46743,Ag30,EA039,Absent,EA039-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p71, +46744,Ag31,EA039,Absent,EA039-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p71, +46745,Ag32,EA039,Absent,EA039-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p71, +46746,Ag33,EA039,Absent,EA039-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +46747,Ag34,EA039,Absent,EA039-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +46748,Ag35,EA039,Absent,EA039-1,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +46749,Ag36,EA039,Absent,EA039-1,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +46750,Ag37,EA039,Absent,EA039-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +46751,Ag38,EA039,Absent,EA039-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +46752,Ag39,EA039,Absent,EA039-1,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +46753,Ag4,EA039,Absent,EA039-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +46754,Ag40,EA039,Absent,EA039-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +46755,Ag41,EA039,Absent,EA039-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +46756,Ag42,EA039,Absent,EA039-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +46757,Ag43,EA039,Absent,EA039-1,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +46758,Ag44,EA039,Absent,EA039-1,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +46759,Ag45,EA039,Absent,EA039-1,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +46760,Ag46,EA039,Absent,EA039-1,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +46761,Ag47,EA039,Absent,EA039-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +46762,Ag48,EA039,Absent,EA039-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p75, +46763,Ag49,EA039,Absent,EA039-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +46764,Ag5,EA039,Absent,EA039-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +46765,Ag50,EA039,Absent,EA039-1,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +46766,Ag51,EA039,Absent,EA039-1,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +46767,Ag52,EA039,Absent,EA039-1,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +46768,Ag53,EA039,Absent,EA039-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +46769,Ag54,EA039,Absent,EA039-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +46770,Ag6,EA039,Absent,EA039-1,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +46771,Ag7,EA039,Absent,EA039-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +46772,Ag8,EA039,Absent,EA039-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +46773,Ag9,EA039,Absent,EA039-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p71, +46774,Ah1,EA039,Absent,EA039-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46775,Ah10,EA039,Absent,EA039-1,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +46776,Ah11,EA039,Absent,EA039-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p75, +46777,Ah12,EA039,Absent,EA039-1,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +46778,Ah13,EA039,Absent,EA039-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +46779,Ah14,EA039,Absent,EA039-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +46780,Ah15,EA039,Absent,EA039-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p75, +46781,Ah16,EA039,Absent,EA039-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +46782,Ah17,EA039,Absent,EA039-1,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +46783,Ah18,EA039,Absent,EA039-1,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +46784,Ah19,EA039,Absent,EA039-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p75, +46785,Ah2,EA039,Absent,EA039-1,,meek1931a,,1920,EthnographicAtlas_1967_p75, +46786,Ah20,EA039,Absent,EA039-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +46787,Ah21,EA039,?,EA039-NA,,,,,, +46788,Ah22,EA039,?,EA039-NA,,,,,, +46789,Ah23,EA039,?,EA039-NA,,,,,, +46790,Ah24,EA039,?,EA039-NA,,,,,, +46791,Ah25,EA039,Absent,EA039-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +46792,Ah26,EA039,Absent,EA039-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +46793,Ah27,EA039,Absent,EA039-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +46794,Ah28,EA039,Absent,EA039-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +46795,Ah29,EA039,Absent,EA039-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +46796,Ah3,EA039,Absent,EA039-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +46797,Ah30,EA039,Absent,EA039-1,,meek1931b,,1920,EthnographicAtlas_1967_p75, +46798,Ah31,EA039,Absent,EA039-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p75, +46799,Ah32,EA039,Absent,EA039-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +46800,Ah33,EA039,Absent,EA039-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p75, +46801,Ah34,EA039,Absent,EA039-1,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +46802,Ah35,EA039,Absent,EA039-1,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +46803,Ah36,EA039,Absent,EA039-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +46804,Ah37,EA039,Absent,EA039-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +46805,Ah38,EA039,Absent,EA039-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +46806,Ah39,EA039,Absent,EA039-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +46807,Ah4,EA039,Absent,EA039-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p75, +46808,Ah5,EA039,Absent,EA039-1,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +46809,Ah6,EA039,Absent,EA039-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +46810,Ah7,EA039,Absent,EA039-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +46811,Ah8,EA039,Absent,EA039-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +46812,Ah9,EA039,Absent,EA039-1,"Diamond reports 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"")",diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75,"Assume Murdock comment refers to col 39, not col 30 as stated in Gray (1999); in that case however the codes for EA039/EA040/EA041 are as reported by Diamond." +46813,Ai1,EA039,Absent,EA039-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p75, +46814,Ai10,EA039,Absent,EA039-1,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p75, +46815,Ai11,EA039,Absent,EA039-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +46816,Ai12,EA039,Absent,EA039-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +46817,Ai13,EA039,Absent,EA039-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +46818,Ai14,EA039,Absent,EA039-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +46819,Ai15,EA039,Absent,EA039-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +46820,Ai16,EA039,Absent,EA039-1,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +46821,Ai17,EA039,Absent,EA039-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +46822,Ai18,EA039,Absent,EA039-1,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +46823,Ai19,EA039,Absent,EA039-1,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +46824,Ai2,EA039,?,EA039-NA,,,,,, +46825,Ai20,EA039,Absent,EA039-1,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +46826,Ai21,EA039,Absent,EA039-1,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +46827,Ai22,EA039,Absent,EA039-1,,delafosse1897,,1890,EthnographicAtlas_1967_p75, +46828,Ai23,EA039,Absent,EA039-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +46829,Ai24,EA039,Absent,EA039-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +46830,Ai25,EA039,Absent,EA039-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +46831,Ai26,EA039,Absent,EA039-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p75, +46832,Ai27,EA039,Absent,EA039-1,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +46833,Ai28,EA039,Absent,EA039-1,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +46834,Ai29,EA039,Absent,EA039-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +46835,Ai3,EA039,Absent,EA039-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +46836,Ai30,EA039,Absent,EA039-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +46837,Ai31,EA039,Absent,EA039-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +46838,Ai32,EA039,Absent,EA039-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +46839,Ai33,EA039,Absent,EA039-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +46840,Ai34,EA039,Absent,EA039-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +46841,Ai35,EA039,Absent,EA039-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +46842,Ai36,EA039,Absent,EA039-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +46843,Ai37,EA039,Absent,EA039-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +46844,Ai38,EA039,Absent,EA039-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +46845,Ai39,EA039,Absent,EA039-1,,nadel1947,,1940,EthnographicAtlas_1967_p75, +46846,Ai4,EA039,Absent,EA039-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +46847,Ai40,EA039,Absent,EA039-1,,nadel1947,,1940,EthnographicAtlas_1967_p75, +46848,Ai41,EA039,Absent,EA039-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +46849,Ai42,EA039,Absent,EA039-1,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p75, +46850,Ai43,EA039,Absent,EA039-1,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p75, +46851,Ai44,EA039,Absent,EA039-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +46852,Ai45,EA039,Absent,EA039-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +46853,Ai46,EA039,Absent,EA039-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p75, +46854,Ai47,EA039,Absent,EA039-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +46855,Ai5,EA039,Absent,EA039-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +46856,Ai6,EA039,Absent,EA039-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +46857,Ai7,EA039,Absent,EA039-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +46858,Ai8,EA039,Absent,EA039-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p75, +46859,Ai9,EA039,Absent,EA039-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +46860,Aj1,EA039,Not aboriginal but present,EA039-2,,lawrance1957,,1950,EthnographicAtlas_1967_p75, +46861,Aj10,EA039,Absent,EA039-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +46862,Aj11,EA039,Absent,EA039-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +46863,Aj12,EA039,Absent,EA039-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +46864,Aj13,EA039,Absent,EA039-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +46865,Aj14,EA039,Absent,EA039-1,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +46866,Aj15,EA039,Absent,EA039-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +46867,Aj16,EA039,Absent,EA039-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p79, +46868,Aj17,EA039,Absent,EA039-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +46869,Aj18,EA039,Absent,EA039-1,,jensen1959,,1950,EthnographicAtlas_1967_p79, +46870,Aj19,EA039,Absent,EA039-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p79, +46871,Aj2,EA039,Absent,EA039-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +46872,Aj20,EA039,Absent,EA039-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p79, +46873,Aj21,EA039,Absent,EA039-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +46874,Aj22,EA039,Absent,EA039-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +46875,Aj23,EA039,Absent,EA039-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +46876,Aj24,EA039,Absent,EA039-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +46877,Aj25,EA039,Absent,EA039-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +46878,Aj26,EA039,Absent,EA039-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p79, +46879,Aj27,EA039,Absent,EA039-1,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +46880,Aj28,EA039,Absent,EA039-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +46881,Aj29,EA039,Absent,EA039-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +46882,Aj3,EA039,Absent,EA039-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +46883,Aj30,EA039,?,EA039-NA,,,,,, +46884,Aj31,EA039,?,EA039-NA,,,,,, +46885,Aj4,EA039,Absent,EA039-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +46886,Aj5,EA039,Absent,EA039-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +46887,Aj6,EA039,Absent,EA039-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +46888,Aj7,EA039,Absent,EA039-1,The plow was introduced in 1927,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +46889,Aj8,EA039,Absent,EA039-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +46890,Aj9,EA039,Absent,EA039-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +46891,Ca1,EA039,Not aboriginal but present,EA039-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +46892,Ca10,EA039,Absent,EA039-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +46893,Ca11,EA039,Present,EA039-3,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p79, +46894,Ca12,EA039,Present,EA039-3,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p79, +46895,Ca13,EA039,Present,EA039-3,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p79, +46896,Ca14,EA039,Absent,EA039-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p79, +46897,Ca15,EA039,Absent,EA039-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +46898,Ca16,EA039,Absent,EA039-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +46899,Ca17,EA039,Absent,EA039-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +46900,Ca18,EA039,Absent,EA039-1,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +46901,Ca19,EA039,Absent,EA039-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +46902,Ca2,EA039,Absent,EA039-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +46903,Ca20,EA039,Absent,EA039-1,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +46904,Ca21,EA039,Absent,EA039-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +46905,Ca22,EA039,Absent,EA039-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +46906,Ca23,EA039,Absent,EA039-1,,jensen1959,,1950,EthnographicAtlas_1967_p79, +46907,Ca24,EA039,Absent,EA039-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +46908,Ca25,EA039,Absent,EA039-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +46909,Ca26,EA039,Absent,EA039-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +46910,Ca27,EA039,Absent,EA039-1,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +46911,Ca28,EA039,Absent,EA039-1,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p79, +46912,Ca29,EA039,Present,EA039-3,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p79, +46913,Ca3,EA039,Present,EA039-3,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +46914,Ca30,EA039,Present,EA039-3,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p79, +46915,Ca31,EA039,Present,EA039-3,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +46916,Ca32,EA039,Present,EA039-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +46917,Ca33,EA039,Present,EA039-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +46918,Ca34,EA039,Absent,EA039-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +46919,Ca35,EA039,Absent,EA039-1,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +46920,Ca36,EA039,Absent,EA039-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +46921,Ca37,EA039,Absent,EA039-1,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +46922,Ca38,EA039,Present,EA039-3,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +46923,Ca39,EA039,Present,EA039-3,,lewis1965b,,1930,EthnographicAtlas_1967_p79, +46924,Ca4,EA039,Absent,EA039-1,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p79, +46925,Ca40,EA039,Absent,EA039-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +46926,Ca41,EA039,Absent,EA039-1,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +46927,Ca42,EA039,Absent,EA039-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +46928,Ca43,EA039,?,EA039-NA,,,,,, +46929,Ca5,EA039,Absent,EA039-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p79, +46930,Ca6,EA039,Absent,EA039-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +46931,Ca7,EA039,Present,EA039-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +46932,Ca8,EA039,Absent,EA039-1,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p79, +46933,Ca9,EA039,Absent,EA039-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +46934,Cb1,EA039,?,EA039-NA,,,,,, +46935,Cb10,EA039,Absent,EA039-1,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +46936,Cb11,EA039,Absent,EA039-1,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +46937,Cb12,EA039,Absent,EA039-1,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +46938,Cb13,EA039,Absent,EA039-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +46939,Cb14,EA039,Absent,EA039-1,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +46940,Cb15,EA039,Absent,EA039-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +46941,Cb16,EA039,Absent,EA039-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +46942,Cb17,EA039,Absent,EA039-1,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +46943,Cb18,EA039,Absent,EA039-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p79, +46944,Cb19,EA039,Absent,EA039-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +46945,Cb2,EA039,Absent,EA039-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +46946,Cb20,EA039,Absent,EA039-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +46947,Cb21,EA039,Absent,EA039-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p83, +46948,Cb22,EA039,Absent,EA039-1,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +46949,Cb23,EA039,Absent,EA039-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p83, +46950,Cb24,EA039,Absent,EA039-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +46951,Cb25,EA039,Absent,EA039-1,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +46952,Cb26,EA039,Absent,EA039-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +46953,Cb27,EA039,Absent,EA039-1,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +46954,Cb28,EA039,Absent,EA039-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +46955,Cb29,EA039,?,EA039-NA,,,,,, +46956,Cb3,EA039,Absent,EA039-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +46957,Cb4,EA039,Absent,EA039-1,,reid1930,,1920,EthnographicAtlas_1967_p79, +46958,Cb5,EA039,Absent,EA039-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p79, +46959,Cb6,EA039,Absent,EA039-1,,woodnd,,1920,EthnographicAtlas_1967_p79, +46960,Cb7,EA039,Absent,EA039-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +46961,Cb8,EA039,Absent,EA039-1,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +46962,Cb9,EA039,Absent,EA039-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +46963,Cc1,EA039,Present,EA039-3,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +46964,Cc10,EA039,Absent,EA039-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +46965,Cc11,EA039,Absent,EA039-1,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +46966,Cc12,EA039,Absent,EA039-1,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +46967,Cc13,EA039,Absent,EA039-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +46968,Cc14,EA039,Absent,EA039-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +46969,Cc15,EA039,?,EA039-NA,,,,,, +46970,Cc16,EA039,Absent,EA039-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +46971,Cc17,EA039,Present,EA039-3,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p83, +46972,Cc18,EA039,Absent,EA039-1,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +46973,Cc19,EA039,Absent,EA039-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +46974,Cc2,EA039,Absent,EA039-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +46975,Cc20,EA039,Absent,EA039-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p83, +46976,Cc3,EA039,Absent,EA039-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +46977,Cc4,EA039,Absent,EA039-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +46978,Cc5,EA039,Absent,EA039-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p83, +46979,Cc6,EA039,Absent,EA039-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +46980,Cc7,EA039,Absent,EA039-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +46981,Cc8,EA039,?,EA039-NA,,,,,, +46982,Cc9,EA039,Absent,EA039-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +46983,Cd1,EA039,Absent,EA039-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +46984,Cd10,EA039,Present,EA039-3,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +46985,Cd11,EA039,Absent,EA039-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p83, +46986,Cd12,EA039,Present,EA039-3,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +46987,Cd13,EA039,Present,EA039-3,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +46988,Cd14,EA039,Present,EA039-3,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +46989,Cd15,EA039,Present,EA039-3,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +46990,Cd16,EA039,Present,EA039-3,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +46991,Cd17,EA039,Present,EA039-3,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +46992,Cd18,EA039,Present,EA039-3,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +46993,Cd19,EA039,Absent,EA039-1,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +46994,Cd2,EA039,Present,EA039-3,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +46995,Cd20,EA039,Present,EA039-3,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +46996,Cd21,EA039,Present,EA039-3,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +46997,Cd3,EA039,Present,EA039-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +46998,Cd4,EA039,Present,EA039-3,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +46999,Cd5,EA039,Present,EA039-3,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +47000,Cd6,EA039,Present,EA039-3,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +47001,Cd7,EA039,Present,EA039-3,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +47002,Cd8,EA039,Present,EA039-3,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +47003,Cd9,EA039,Present,EA039-3,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +47004,Ce1,EA039,Present,EA039-3,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +47005,Ce2,EA039,?,EA039-NA,,,,,, +47006,Ce3,EA039,Present,EA039-3,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +47007,Ce4,EA039,Present,EA039-3,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47008,Ce5,EA039,Present,EA039-3,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +47009,Ce6,EA039,Present,EA039-3,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +47010,Ce7,EA039,Present,EA039-3,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +47011,Ce8,EA039,Present,EA039-3,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +47012,Cf1,EA039,Present,EA039-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +47013,Cf2,EA039,Present,EA039-3,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No4_Oct_1962, +47014,Cf3,EA039,Present,EA039-3,,munch1945,,1930,EthnographicAtlas_1967_p83, +47015,Cf4,EA039,Present,EA039-3,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +47016,Cf5,EA039,Present,EA039-3,,miner1939,,1930,EthnographicAtlas_1967_p83, +47017,Cg1,EA039,Present,EA039-3,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +47018,Cg2,EA039,Absent,EA039-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +47019,Cg3,EA039,Present,EA039-3,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +47020,Cg4,EA039,Absent,EA039-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +47021,Cg5,EA039,Present,EA039-3,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +47022,Ch1,EA039,Present,EA039-3,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +47023,Ch10,EA039,?,EA039-NA,,,,,, +47024,Ch11,EA039,Present,EA039-3,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +47025,Ch2,EA039,Present,EA039-3,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +47026,Ch3,EA039,Present,EA039-3,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +47027,Ch4,EA039,Present,EA039-3,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p83, +47028,Ch5,EA039,Present,EA039-3,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +47029,Ch6,EA039,Present,EA039-3,,ember1954,,1910,EthnographicAtlas_1967_p83, +47030,Ch7,EA039,Present,EA039-3,,friedrich1954,,1930,EthnographicAtlas_1967_p83, +47031,Ch8,EA039,Present,EA039-3,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +47032,Ch9,EA039,Present,EA039-3,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +47033,Ci1,EA039,Absent,EA039-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p83, +47034,Ci10,EA039,Present,EA039-3,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +47035,Ci11,EA039,Present,EA039-3,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +47036,Ci12,EA039,Present,EA039-3,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +47037,Ci2,EA039,Present,EA039-3,,grigolia1939,,1930,EthnographicAtlas_1967_p83, +47038,Ci3,EA039,Present,EA039-3,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p83, +47039,Ci4,EA039,Present,EA039-3,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +47040,Ci5,EA039,Present,EA039-3,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +47041,Ci6,EA039,Present,EA039-3,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p83, +47042,Ci7,EA039,Present,EA039-3,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p83, +47043,Ci8,EA039,Present,EA039-3,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +47044,Ci9,EA039,Present,EA039-3,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +47045,Cj1,EA039,Present,EA039-3,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +47046,Cj10,EA039,Present,EA039-3,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +47047,Cj2,EA039,Absent,EA039-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +47048,Cj3,EA039,Present,EA039-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +47049,Cj4,EA039,Present,EA039-3,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +47050,Cj5,EA039,Absent,EA039-1,,dickson1949,,1930,EthnographicAtlas_1967_p87, +47051,Cj6,EA039,Present,EA039-3,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +47052,Cj7,EA039,Present,EA039-3,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p87, +47053,Cj8,EA039,Present,EA039-3,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +47054,Cj9,EA039,Present,EA039-3,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +47055,Ea1,EA039,Present,EA039-3,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +47056,Ea10,EA039,Present,EA039-3,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +47057,Ea11,EA039,Present,EA039-3,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +47058,Ea12,EA039,Absent,EA039-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +47059,Ea13,EA039,Present,EA039-3,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +47060,Ea2,EA039,Present,EA039-3,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +47061,Ea3,EA039,Present,EA039-3,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +47062,Ea4,EA039,Present,EA039-3,,barth1956b,,1950,EthnographicAtlas_1967_p87, +47063,Ea5,EA039,Present,EA039-3,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +47064,Ea6,EA039,Absent,EA039-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +47065,Ea7,EA039,Present,EA039-3,,schurmann1962,,1950,EthnographicAtlas_1967_p87, +47066,Ea8,EA039,Absent,EA039-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p87, +47067,Ea9,EA039,Present,EA039-3,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +47068,Eb1,EA039,Absent,EA039-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +47069,Eb2,EA039,Present,EA039-3,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p87, +47070,Eb3,EA039,Present,EA039-3,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p87, +47071,Eb4,EA039,?,EA039-NA,,,,,, +47072,Eb5,EA039,Present,EA039-3,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No2_Apr_1963, +47073,Eb6,EA039,?,EA039-NA,,,,,, +47074,Eb7,EA039,Present,EA039-3,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +47075,Eb8,EA039,?,EA039-NA,,,,,, +47076,Ec1,EA039,Absent,EA039-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +47077,Ec10,EA039,Absent,EA039-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +47078,Ec11,EA039,Absent,EA039-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +47079,Ec2,EA039,Absent,EA039-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47080,Ec3,EA039,Absent,EA039-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +47081,Ec4,EA039,Absent,EA039-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +47082,Ec5,EA039,Absent,EA039-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +47083,Ec6,EA039,Absent,EA039-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +47084,Ec7,EA039,Absent,EA039-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +47085,Ec8,EA039,Absent,EA039-1,,shimkin1939,,1900,EthnographicAtlas_1967_p87, +47086,Ec9,EA039,Absent,EA039-1,,lattimore1933,,1920,EthnographicAtlas_1967_p87, +47087,Ed1,EA039,Present,EA039-3,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +47088,Ed10,EA039,Present,EA039-3,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +47089,Ed13,EA039,?,EA039-NA,,,,,, +47090,Ed14,EA039,?,EA039-NA,,,,,, +47091,Ed15a,EA039,?,EA039-NA,,,,,, +47092,Ed15b,EA039,Absent,EA039-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +47093,Ed16,EA039,?,EA039-NA,,,,,, +47094,Ed2,EA039,Present,EA039-3,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +47095,Ed3,EA039,Present,EA039-3,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p87, +47096,Ed4,EA039,Absent,EA039-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +47097,Ed5,EA039,Present,EA039-3,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47098,Ed6,EA039,Present,EA039-3,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +47099,Ed7,EA039,Present,EA039-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +47100,Ed8,EA039,Present,EA039-3,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +47101,Ed9,EA039,Present,EA039-3,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +47102,Ee1,EA039,Absent,EA039-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +47103,Ee2,EA039,Present,EA039-3,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +47104,Ee3,EA039,Present,EA039-3,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +47105,Ee4,EA039,Present,EA039-3,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +47106,Ee5,EA039,Present,EA039-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +47107,Ee6,EA039,Present,EA039-3,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +47108,Ee7,EA039,?,EA039-NA,,,,,, +47109,Ee8,EA039,Present,EA039-3,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +47110,Ef1,EA039,Present,EA039-3,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +47111,Ef10,EA039,?,EA039-NA,,,,,, +47112,Ef11,EA039,Present,EA039-3,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +47113,Ef2,EA039,Present,EA039-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +47114,Ef3,EA039,?,EA039-NA,,,,,, +47115,Ef4,EA039,?,EA039-NA,,,,,, +47116,Ef5,EA039,Present,EA039-3,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +47117,Ef6,EA039,Present,EA039-3,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p87, +47118,Ef7,EA039,Present,EA039-3,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +47119,Ef8,EA039,Present,EA039-3,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +47120,Ef9,EA039,Present,EA039-3,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47121,Eg1,EA039,Absent,EA039-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47122,Eg10,EA039,Present,EA039-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +47123,Eg11,EA039,?,EA039-NA,,,,,, +47124,Eg12,EA039,?,EA039-NA,,,,,, +47125,Eg13,EA039,Present,EA039-3,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47126,Eg14,EA039,Present,EA039-3,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +47127,Eg2,EA039,Present,EA039-3,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +47128,Eg3,EA039,Absent,EA039-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +47129,Eg4,EA039,Absent,EA039-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +47130,Eg5,EA039,Present,EA039-3,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +47131,Eg6,EA039,Present,EA039-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +47132,Eg7,EA039,Present,EA039-3,A few prosperous men have adopted the plow,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +47133,Eg8,EA039,Present,EA039-3,,griffiths1946,,1940,EthnographicAtlas_1967_p91, +47134,Eg9,EA039,Absent,EA039-1,,elwin1939,,1930,EthnographicAtlas_1967_p91, +47135,Eh1,EA039,Absent,EA039-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +47136,Eh10,EA039,?,EA039-NA,,,,,, +47137,Eh2,EA039,Absent,EA039-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +47138,Eh3,EA039,Absent,EA039-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +47139,Eh4,EA039,Absent,EA039-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47140,Eh5,EA039,Absent,EA039-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +47141,Eh6,EA039,Present,EA039-3,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +47142,Eh7,EA039,Absent,EA039-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +47143,Eh8,EA039,Absent,EA039-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91, +47144,Eh9,EA039,Absent,EA039-1,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +47145,Ei1,EA039,Absent,EA039-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47146,Ei10,EA039,Not aboriginal but present,EA039-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p91, +47147,Ei11,EA039,Absent,EA039-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +47148,Ei12,EA039,Absent,EA039-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +47149,Ei13,EA039,Absent,EA039-1,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +47150,Ei14,EA039,Absent,EA039-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +47151,Ei15,EA039,?,EA039-NA,,,,,, +47152,Ei16,EA039,Absent,EA039-1,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +47153,Ei17,EA039,?,EA039-NA,,,,,, +47154,Ei18,EA039,Absent,EA039-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +47155,Ei19,EA039,Absent,EA039-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +47156,Ei2,EA039,Absent,EA039-1,,mills1922,,1920,EthnographicAtlas_1967_p91, +47157,Ei20,EA039,?,EA039-NA,,,,,, +47158,Ei3,EA039,Present,EA039-3,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +47159,Ei4,EA039,Absent,EA039-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +47160,Ei5,EA039,Absent,EA039-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +47161,Ei6,EA039,Not aboriginal but present,EA039-2,,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +47162,Ei7,EA039,Absent,EA039-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +47163,Ei8,EA039,Absent,EA039-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +47164,Ei9,EA039,Not aboriginal but present,EA039-2,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p91, +47165,Ej1,EA039,Absent,EA039-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +47166,Ej10,EA039,Absent,EA039-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +47167,Ej11,EA039,Present,EA039-3,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +47168,Ej12,EA039,Present,EA039-3,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +47169,Ej13,EA039,Present,EA039-3,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +47170,Ej14,EA039,Absent,EA039-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47171,Ej15,EA039,Present,EA039-3,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +47172,Ej16,EA039,Absent,EA039-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +47173,Ej2,EA039,Absent,EA039-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +47174,Ej3,EA039,Absent,EA039-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +47175,Ej4,EA039,Present,EA039-3,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +47176,Ej5,EA039,Present,EA039-3,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +47177,Ej6,EA039,Absent,EA039-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p91, +47178,Ej7,EA039,Absent,EA039-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +47179,Ej8,EA039,Present,EA039-3,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +47180,Ej9,EA039,Present,EA039-3,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +47181,Ia1,EA039,Absent,EA039-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +47182,Ia10,EA039,Absent,EA039-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p91, +47183,Ia11,EA039,Present,EA039-3,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +47184,Ia12,EA039,Present,EA039-3,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +47185,Ia13,EA039,Absent,EA039-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +47186,Ia14,EA039,Absent,EA039-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p95, +47187,Ia15,EA039,Absent,EA039-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +47188,Ia16,EA039,Absent,EA039-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +47189,Ia17,EA039,?,EA039-NA,,,,,, +47190,Ia18,EA039,?,EA039-NA,,,,,, +47191,Ia2,EA039,Present,EA039-3,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +47192,Ia3,EA039,Absent,EA039-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +47193,Ia4,EA039,Absent,EA039-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +47194,Ia5,EA039,Absent,EA039-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +47195,Ia6,EA039,Absent,EA039-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47196,Ia7,EA039,Absent,EA039-1,,fox1954,,1950,EthnographicAtlas_1967_p91, +47197,Ia8,EA039,Absent,EA039-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +47198,Ia9,EA039,Present,EA039-3,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +47199,Ib1,EA039,Absent,EA039-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47200,Ib2,EA039,Present,EA039-3,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47201,Ib3,EA039,Present,EA039-3,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +47202,Ib4,EA039,Present,EA039-3,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p95, +47203,Ib5,EA039,Not aboriginal but present,EA039-2,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +47204,Ib6,EA039,Present,EA039-3,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +47205,Ib7,EA039,Absent,EA039-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p95, +47206,Ib8,EA039,Absent,EA039-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p95, +47207,Ib9,EA039,?,EA039-NA,,,,,, +47208,Ic1,EA039,Present,EA039-3,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47209,Ic10,EA039,Absent,EA039-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p95, +47210,Ic11,EA039,Absent,EA039-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47211,Ic12,EA039,Absent,EA039-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +47212,Ic13,EA039,?,EA039-NA,,,,,, +47213,Ic2,EA039,Absent,EA039-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +47214,Ic3,EA039,Absent,EA039-1,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p95, +47215,Ic4,EA039,?,EA039-NA,,,,,, +47216,Ic5,EA039,Absent,EA039-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p95, +47217,Ic6,EA039,Absent,EA039-1,,drabbe1940,,1930,EthnographicAtlas_1967_p95, +47218,Ic7,EA039,Absent,EA039-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +47219,Ic8,EA039,Absent,EA039-1,,pleyte1893,,1890,EthnographicAtlas_1967_p95, +47220,Ic9,EA039,Present,EA039-3,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p95, +47221,Id1,EA039,Absent,EA039-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +47222,Id10,EA039,Absent,EA039-1,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +47223,Id11,EA039,Absent,EA039-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +47224,Id12,EA039,Absent,EA039-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +47225,Id13,EA039,Absent,EA039-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +47226,Id2,EA039,Absent,EA039-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +47227,Id3,EA039,Absent,EA039-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +47228,Id4,EA039,Absent,EA039-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +47229,Id5,EA039,Absent,EA039-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +47230,Id6,EA039,Absent,EA039-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p95, +47231,Id7,EA039,Absent,EA039-1,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +47232,Id8,EA039,Absent,EA039-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +47233,Id9,EA039,Absent,EA039-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p95, +47234,Ie1,EA039,Absent,EA039-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47235,Ie10,EA039,Absent,EA039-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +47236,Ie11,EA039,Absent,EA039-1,,bowers1964,,1950,EthnographicAtlas_1967_p95, +47237,Ie12,EA039,Absent,EA039-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47238,Ie13,EA039,Absent,EA039-1,,landtman1927,,1920,EthnographicAtlas_1967_p95, +47239,Ie14,EA039,Absent,EA039-1,,haddon1908,,1900,EthnographicAtlas_1967_p95, +47240,Ie15,EA039,Absent,EA039-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47241,Ie16,EA039,Absent,EA039-1,,williams194041,,1940,EthnographicAtlas_1967_p95, +47242,Ie17,EA039,Absent,EA039-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +47243,Ie18,EA039,Absent,EA039-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +47244,Ie19,EA039,Absent,EA039-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +47245,Ie2,EA039,Absent,EA039-1,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +47246,Ie20,EA039,Absent,EA039-1,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +47247,Ie21,EA039,Absent,EA039-1,,malinowski1916,,1900,EthnographicAtlas_1967_p95, +47248,Ie22,EA039,Absent,EA039-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +47249,Ie23,EA039,Absent,EA039-1,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +47250,Ie24,EA039,Absent,EA039-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p95, +47251,Ie25,EA039,Absent,EA039-1,,williamson1912,,1920,EthnographicAtlas_1967_p95, +47252,Ie26,EA039,Absent,EA039-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +47253,Ie27,EA039,Absent,EA039-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p99, +47254,Ie28,EA039,Absent,EA039-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +47255,Ie29,EA039,Absent,EA039-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47256,Ie3,EA039,Absent,EA039-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47257,Ie30,EA039,Absent,EA039-1,,pouwer1955,,1950,EthnographicAtlas_1967_p99, +47258,Ie31,EA039,Absent,EA039-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +47259,Ie32,EA039,Absent,EA039-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +47260,Ie33,EA039,Absent,EA039-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +47261,Ie34,EA039,?,EA039-NA,,,,,, +47262,Ie35,EA039,Absent,EA039-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +47263,Ie36,EA039,?,EA039-NA,,,,,, +47264,Ie37,EA039,?,EA039-NA,,,,,, +47265,Ie38,EA039,Absent,EA039-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +47266,Ie39,EA039,Absent,EA039-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +47267,Ie4,EA039,Absent,EA039-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47268,Ie5,EA039,Absent,EA039-1,,williams1936,,1930,EthnographicAtlas_1967_p95, +47269,Ie6,EA039,Absent,EA039-1,,held1947,,1930,EthnographicAtlas_1967_p95, +47270,Ie7,EA039,Absent,EA039-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +47271,Ie8,EA039,Absent,EA039-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +47272,Ie9,EA039,Absent,EA039-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +47273,If1,EA039,Absent,EA039-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47274,If10,EA039,?,EA039-NA,,,,,, +47275,If11,EA039,Absent,EA039-1,,sarfert1919,,1860,EthnographicAtlas_1967_p99, +47276,If12,EA039,Absent,EA039-1,,mason1954,,1940,EthnographicAtlas_1967_p99, +47277,If13,EA039,Absent,EA039-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p99, +47278,If14,EA039,Absent,EA039-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +47279,If15,EA039,Absent,EA039-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +47280,If16,EA039,Absent,EA039-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +47281,If17,EA039,Absent,EA039-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +47282,If2,EA039,Absent,EA039-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +47283,If3,EA039,Absent,EA039-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +47284,If4,EA039,Absent,EA039-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +47285,If5,EA039,Absent,EA039-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +47286,If6,EA039,Absent,EA039-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +47287,If7,EA039,Absent,EA039-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p99, +47288,If8,EA039,Absent,EA039-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +47289,If9,EA039,Absent,EA039-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +47290,Ig1,EA039,Absent,EA039-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +47291,Ig10,EA039,Absent,EA039-1,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +47292,Ig11,EA039,Absent,EA039-1,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +47293,Ig12,EA039,Absent,EA039-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p99, +47294,Ig13,EA039,Absent,EA039-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p99, +47295,Ig14,EA039,Absent,EA039-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +47296,Ig15,EA039,?,EA039-NA,,,,,, +47297,Ig16,EA039,?,EA039-NA,,,,,, +47298,Ig17,EA039,?,EA039-NA,,,,,, +47299,Ig18,EA039,?,EA039-NA,,,,,, +47300,Ig19,EA039,?,EA039-NA,,,,,, +47301,Ig2,EA039,Absent,EA039-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +47302,Ig20,EA039,Absent,EA039-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +47303,Ig21,EA039,Absent,EA039-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +47304,Ig3,EA039,Absent,EA039-1,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +47305,Ig4,EA039,Absent,EA039-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +47306,Ig5,EA039,Absent,EA039-1,,fortune1932b,,1920,EthnographicAtlas_1967_p99, +47307,Ig6,EA039,Absent,EA039-1,,ivens1927,,1900,EthnographicAtlas_1967_p99, +47308,Ig7,EA039,Absent,EA039-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +47309,Ig8,EA039,?,EA039-NA,,,,,, +47310,Ig9,EA039,Absent,EA039-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +47311,Ih1,EA039,Absent,EA039-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +47312,Ih10,EA039,Absent,EA039-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47313,Ih11,EA039,?,EA039-NA,,,,,, +47314,Ih12,EA039,?,EA039-NA,,,,,, +47315,Ih13,EA039,?,EA039-NA,,,,,, +47316,Ih14,EA039,Absent,EA039-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +47317,Ih2,EA039,Absent,EA039-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47318,Ih3,EA039,Absent,EA039-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +47319,Ih4,EA039,Absent,EA039-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47320,Ih5,EA039,Absent,EA039-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p99, +47321,Ih6,EA039,Absent,EA039-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p99, +47322,Ih7,EA039,Absent,EA039-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p99, +47323,Ih8,EA039,Absent,EA039-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +47324,Ih9,EA039,Absent,EA039-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47325,Ii1,EA039,Absent,EA039-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +47326,Ii10,EA039,Absent,EA039-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +47327,Ii12,EA039,Absent,EA039-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47328,Ii13,EA039,Absent,EA039-1,,burrows1937,,1830,EthnographicAtlas_1967_p99, +47329,Ii14,EA039,Absent,EA039-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +47330,Ii2,EA039,Absent,EA039-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +47331,Ii3,EA039,Absent,EA039-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +47332,Ii4,EA039,Absent,EA039-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +47333,Ii5,EA039,Absent,EA039-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p99, +47334,Ii6,EA039,Absent,EA039-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +47335,Ii7,EA039,Absent,EA039-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +47336,Ii8,EA039,Absent,EA039-1,,burrows1936,,1840,EthnographicAtlas_1967_p99, +47337,Ii9,EA039,Absent,EA039-1,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +47338,Ij1,EA039,Absent,EA039-1,,buck1934,,1820,EthnographicAtlas_1967_p99, +47339,Ij10,EA039,Absent,EA039-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +47340,Ij2,EA039,Absent,EA039-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +47341,Ij3,EA039,Absent,EA039-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +47342,Ij4,EA039,Absent,EA039-1,,buck1932a,,1850,EthnographicAtlas_1967_p103, +47343,Ij5,EA039,Absent,EA039-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p103, +47344,Ij6,EA039,Absent,EA039-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p103, +47345,Ij7,EA039,Absent,EA039-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +47346,Ij8,EA039,Absent,EA039-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p103, +47347,Ij9,EA039,Absent,EA039-1,,metraux1940,,1860,EthnographicAtlas_1967_p103, +47348,Na1,EA039,Absent,EA039-1,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +47349,Na10,EA039,Absent,EA039-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +47350,Na11,EA039,Absent,EA039-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +47351,Na12,EA039,Absent,EA039-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +47352,Na13,EA039,Absent,EA039-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +47353,Na14,EA039,Absent,EA039-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +47354,Na15,EA039,Absent,EA039-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p103, +47355,Na16,EA039,Absent,EA039-1,,osgood1931,,1860,EthnographicAtlas_1967_p103, +47356,Na17,EA039,Absent,EA039-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47357,Na19,EA039,Absent,EA039-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +47358,Na2,EA039,Absent,EA039-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +47359,Na20,EA039,Absent,EA039-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +47360,Na21,EA039,Absent,EA039-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +47361,Na22,EA039,Absent,EA039-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +47362,Na23,EA039,Absent,EA039-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +47363,Na24,EA039,Absent,EA039-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +47364,Na25,EA039,Absent,EA039-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +47365,Na26,EA039,Absent,EA039-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +47366,Na27,EA039,Absent,EA039-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +47367,Na28,EA039,Absent,EA039-1,,jenness1937,,1880,EthnographicAtlas_1967_p103, +47368,Na29,EA039,Absent,EA039-1,,goddard1916,,1850,EthnographicAtlas_1967_p103, +47369,Na3,EA039,Absent,EA039-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +47370,Na30,EA039,Absent,EA039-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +47371,Na31,EA039,Absent,EA039-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +47372,Na32,EA039,Absent,EA039-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +47373,Na33,EA039,Absent,EA039-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +47374,Na34,EA039,Absent,EA039-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +47375,Na35,EA039,Absent,EA039-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +47376,Na36,EA039,Absent,EA039-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +47377,Na37,EA039,Absent,EA039-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +47378,Na38,EA039,Absent,EA039-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +47379,Na39,EA039,Absent,EA039-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +47380,Na4,EA039,Absent,EA039-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +47381,Na40,EA039,Absent,EA039-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +47382,Na41,EA039,Absent,EA039-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +47383,Na42,EA039,Absent,EA039-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +47384,Na43,EA039,Absent,EA039-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +47385,Na44,EA039,Absent,EA039-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +47386,Na45,EA039,Absent,EA039-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +47387,Na5,EA039,Absent,EA039-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +47388,Na6,EA039,Absent,EA039-1,,lantis1946,,1930,EthnographicAtlas_1967_p103, +47389,Na7,EA039,Absent,EA039-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +47390,Na8,EA039,Absent,EA039-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +47391,Na9,EA039,Absent,EA039-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47392,Nb1,EA039,Absent,EA039-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +47393,Nb10,EA039,Absent,EA039-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +47394,Nb11,EA039,Absent,EA039-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +47395,Nb12,EA039,Absent,EA039-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +47396,Nb13,EA039,Absent,EA039-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +47397,Nb14,EA039,Absent,EA039-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +47398,Nb15,EA039,Absent,EA039-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +47399,Nb16,EA039,Absent,EA039-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +47400,Nb17,EA039,Absent,EA039-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +47401,Nb18,EA039,Absent,EA039-1,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +47402,Nb19,EA039,Absent,EA039-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +47403,Nb2,EA039,Absent,EA039-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +47404,Nb20,EA039,Absent,EA039-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +47405,Nb21,EA039,Absent,EA039-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +47406,Nb22,EA039,Absent,EA039-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +47407,Nb23,EA039,Absent,EA039-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +47408,Nb24,EA039,Absent,EA039-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +47409,Nb25,EA039,Absent,EA039-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +47410,Nb26,EA039,Absent,EA039-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +47411,Nb27,EA039,Absent,EA039-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +47412,Nb28,EA039,Absent,EA039-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +47413,Nb29,EA039,Absent,EA039-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +47414,Nb3,EA039,Absent,EA039-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +47415,Nb30,EA039,Absent,EA039-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +47416,Nb31,EA039,Absent,EA039-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p107, +47417,Nb32,EA039,Absent,EA039-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +47418,Nb33,EA039,Absent,EA039-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +47419,Nb34,EA039,Absent,EA039-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +47420,Nb35,EA039,Absent,EA039-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +47421,Nb36,EA039,Absent,EA039-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +47422,Nb37,EA039,Absent,EA039-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +47423,Nb38,EA039,Absent,EA039-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +47424,Nb39,EA039,Absent,EA039-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +47425,Nb4,EA039,Absent,EA039-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +47426,Nb5,EA039,Absent,EA039-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +47427,Nb6,EA039,Absent,EA039-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +47428,Nb7,EA039,Absent,EA039-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +47429,Nb8,EA039,Absent,EA039-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +47430,Nb9,EA039,Absent,EA039-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +47431,Nc1,EA039,Absent,EA039-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +47432,Nc10,EA039,Absent,EA039-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +47433,Nc11,EA039,Absent,EA039-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +47434,Nc12,EA039,Absent,EA039-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +47435,Nc13,EA039,Absent,EA039-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +47436,Nc14,EA039,Absent,EA039-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +47437,Nc15,EA039,Absent,EA039-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +47438,Nc16,EA039,Absent,EA039-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +47439,Nc17,EA039,Absent,EA039-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +47440,Nc18,EA039,Absent,EA039-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +47441,Nc19,EA039,Absent,EA039-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p107, +47442,Nc2,EA039,Absent,EA039-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +47443,Nc20,EA039,Absent,EA039-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +47444,Nc21,EA039,Absent,EA039-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +47445,Nc22,EA039,Absent,EA039-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +47446,Nc23,EA039,Absent,EA039-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +47447,Nc24,EA039,Absent,EA039-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +47448,Nc25,EA039,Absent,EA039-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +47449,Nc26,EA039,Absent,EA039-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +47450,Nc27,EA039,Absent,EA039-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p107, +47451,Nc28,EA039,Absent,EA039-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +47452,Nc29,EA039,Absent,EA039-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +47453,Nc3,EA039,Absent,EA039-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +47454,Nc30,EA039,Absent,EA039-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +47455,Nc31,EA039,Absent,EA039-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +47456,Nc32,EA039,Absent,EA039-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +47457,Nc33,EA039,Absent,EA039-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +47458,Nc34,EA039,Absent,EA039-1,,meigs1939,,1880,EthnographicAtlas_1967_p107, +47459,Nc4,EA039,Absent,EA039-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +47460,Nc5,EA039,Absent,EA039-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +47461,Nc6,EA039,Absent,EA039-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +47462,Nc7,EA039,Absent,EA039-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +47463,Nc8,EA039,Absent,EA039-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +47464,Nc9,EA039,Absent,EA039-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +47465,Nd1,EA039,Absent,EA039-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +47466,Nd10,EA039,Absent,EA039-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +47467,Nd11,EA039,Absent,EA039-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +47468,Nd12,EA039,Absent,EA039-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +47469,Nd13,EA039,Absent,EA039-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +47470,Nd14,EA039,Absent,EA039-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +47471,Nd15,EA039,Absent,EA039-1,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +47472,Nd16,EA039,Absent,EA039-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +47473,Nd17,EA039,Absent,EA039-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +47474,Nd18,EA039,Absent,EA039-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +47475,Nd19,EA039,Absent,EA039-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +47476,Nd2,EA039,Absent,EA039-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +47477,Nd20,EA039,Absent,EA039-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +47478,Nd21,EA039,Absent,EA039-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +47479,Nd22,EA039,Absent,EA039-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +47480,Nd23,EA039,Absent,EA039-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +47481,Nd24,EA039,Absent,EA039-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +47482,Nd25,EA039,Absent,EA039-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +47483,Nd26,EA039,Absent,EA039-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +47484,Nd27,EA039,Absent,EA039-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +47485,Nd28,EA039,Absent,EA039-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +47486,Nd29,EA039,Absent,EA039-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +47487,Nd3,EA039,Absent,EA039-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +47488,Nd30,EA039,Absent,EA039-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +47489,Nd31,EA039,Absent,EA039-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +47490,Nd32,EA039,Absent,EA039-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +47491,Nd33,EA039,Absent,EA039-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +47492,Nd34,EA039,Absent,EA039-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +47493,Nd35,EA039,Absent,EA039-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +47494,Nd36,EA039,Absent,EA039-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +47495,Nd37,EA039,Absent,EA039-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +47496,Nd38,EA039,Absent,EA039-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +47497,Nd39,EA039,Absent,EA039-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +47498,Nd4,EA039,Absent,EA039-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +47499,Nd40,EA039,Absent,EA039-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +47500,Nd41,EA039,Absent,EA039-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +47501,Nd42,EA039,Absent,EA039-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +47502,Nd43,EA039,Absent,EA039-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +47503,Nd44,EA039,Absent,EA039-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +47504,Nd45,EA039,Absent,EA039-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +47505,Nd46,EA039,Absent,EA039-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +47506,Nd47,EA039,Absent,EA039-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +47507,Nd48,EA039,Absent,EA039-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +47508,Nd49,EA039,Absent,EA039-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +47509,Nd5,EA039,Absent,EA039-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +47510,Nd50,EA039,Absent,EA039-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +47511,Nd51,EA039,Absent,EA039-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +47512,Nd52,EA039,Absent,EA039-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +47513,Nd53,EA039,Absent,EA039-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +47514,Nd54,EA039,Absent,EA039-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47515,Nd55,EA039,Absent,EA039-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +47516,Nd56,EA039,Absent,EA039-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +47517,Nd57,EA039,Absent,EA039-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +47518,Nd58,EA039,Absent,EA039-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +47519,Nd59,EA039,Absent,EA039-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +47520,Nd6,EA039,Absent,EA039-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +47521,Nd60,EA039,Absent,EA039-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +47522,Nd61,EA039,Absent,EA039-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +47523,Nd62,EA039,Absent,EA039-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +47524,Nd63,EA039,Absent,EA039-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +47525,Nd64,EA039,Absent,EA039-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +47526,Nd65,EA039,Absent,EA039-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +47527,Nd66,EA039,Absent,EA039-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +47528,Nd67,EA039,Absent,EA039-1,,gifford1936,,1870,EthnographicAtlas_1967_p111, +47529,Nd7,EA039,Absent,EA039-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +47530,Nd8,EA039,Absent,EA039-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +47531,Nd9,EA039,Absent,EA039-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +47532,Ne1,EA039,Absent,EA039-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +47533,Ne10,EA039,Absent,EA039-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +47534,Ne11,EA039,Absent,EA039-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +47535,Ne12,EA039,Absent,EA039-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +47536,Ne13,EA039,Absent,EA039-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +47537,Ne14,EA039,Absent,EA039-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +47538,Ne15,EA039,Absent,EA039-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +47539,Ne16,EA039,Absent,EA039-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +47540,Ne17,EA039,Absent,EA039-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +47541,Ne18,EA039,Absent,EA039-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +47542,Ne19,EA039,Absent,EA039-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +47543,Ne2,EA039,Absent,EA039-1,,mcallister1937,,1870,EthnographicAtlas_1967_p111, +47544,Ne20,EA039,Absent,EA039-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p115, +47545,Ne21,EA039,?,EA039-NA,,,,,, +47546,Ne3,EA039,Absent,EA039-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p111, +47547,Ne4,EA039,Absent,EA039-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +47548,Ne5,EA039,Absent,EA039-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +47549,Ne6,EA039,Absent,EA039-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p111, +47550,Ne7,EA039,Absent,EA039-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +47551,Ne8,EA039,Absent,EA039-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +47552,Ne9,EA039,Absent,EA039-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +47553,Nf10,EA039,Absent,EA039-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +47554,Nf11,EA039,Absent,EA039-1,,whitman1937,,1870,EthnographicAtlas_1967_p115, +47555,Nf12,EA039,Absent,EA039-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +47556,Nf13,EA039,Absent,EA039-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47557,Nf14,EA039,Absent,EA039-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +47558,Nf15,EA039,?,EA039-NA,,,,,, +47559,Nf2,EA039,Absent,EA039-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p115, +47560,Nf3,EA039,Absent,EA039-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +47561,Nf4,EA039,Absent,EA039-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +47562,Nf5,EA039,Absent,EA039-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +47563,Nf6,EA039,Absent,EA039-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +47564,Nf7,EA039,Absent,EA039-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47565,Nf8,EA039,Absent,EA039-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +47566,Nf9,EA039,Absent,EA039-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +47567,Ng1,EA039,Absent,EA039-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +47568,Ng10,EA039,Absent,EA039-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +47569,Ng11,EA039,Absent,EA039-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p115, +47570,Ng12,EA039,Absent,EA039-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p115, +47571,Ng13,EA039,?,EA039-NA,,,,,, +47572,Ng14,EA039,?,EA039-NA,,,,,, +47573,Ng15,EA039,?,EA039-NA,,,,,, +47574,Ng2,EA039,?,EA039-NA,,,,,, +47575,Ng3,EA039,Absent,EA039-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +47576,Ng4,EA039,?,EA039-NA,,,,,, +47577,Ng5,EA039,Absent,EA039-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +47578,Ng6,EA039,Absent,EA039-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +47579,Ng7,EA039,Absent,EA039-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +47580,Ng8,EA039,Absent,EA039-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p115, +47581,Ng9,EA039,?,EA039-NA,,,,,, +47582,Nh1,EA039,Absent,EA039-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +47583,Nh10,EA039,Absent,EA039-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +47584,Nh11,EA039,Not aboriginal but present,EA039-2,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +47585,Nh12,EA039,Not aboriginal but present,EA039-2,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +47586,Nh13,EA039,Absent,EA039-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +47587,Nh14,EA039,?,EA039-NA,,,,,, +47588,Nh15,EA039,Absent,EA039-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +47589,Nh16,EA039,Absent,EA039-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47590,Nh17,EA039,Absent,EA039-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +47591,Nh18,EA039,Absent,EA039-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47592,Nh19,EA039,Absent,EA039-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +47593,Nh2,EA039,Absent,EA039-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954,,1950,EthnographicAtlas_1967_p115, +47594,Nh20,EA039,Absent,EA039-1,,gifford1931,,1860,EthnographicAtlas_1967_p115, +47595,Nh21,EA039,Absent,EA039-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47596,Nh22,EA039,Absent,EA039-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +47597,Nh23,EA039,Absent,EA039-1,,gifford1932a,,1870,EthnographicAtlas_1967_p115, +47598,Nh24,EA039,Absent,EA039-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +47599,Nh25,EA039,Absent,EA039-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +47600,Nh26,EA039,?,EA039-NA,,,,,, +47601,Nh27,EA039,?,EA039-NA,,,,,, +47602,Nh3,EA039,Absent,EA039-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +47603,Nh4,EA039,Absent,EA039-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +47604,Nh5,EA039,Absent,EA039-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +47605,Nh6,EA039,Not aboriginal but present,EA039-2,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +47606,Nh7,EA039,Not aboriginal but present,EA039-2,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +47607,Nh8,EA039,Absent,EA039-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +47608,Nh9,EA039,?,EA039-NA,,,,,, +47609,Ni1,EA039,Absent,EA039-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +47610,Ni2,EA039,Absent,EA039-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +47611,Ni3,EA039,Absent,EA039-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +47612,Ni4,EA039,Absent,EA039-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p115, +47613,Ni5,EA039,Absent,EA039-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +47614,Ni6,EA039,Absent,EA039-1,"Aboriginally, but subsequently plow cultivaton (EA039 code ""2"") and 'bovine' (EA040 code ""7"")",castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +47615,Ni7,EA039,Absent,EA039-1,"Aboriginally, but 'no plow animals' (EA039 code ""1""), 'bovine' (EA040 code ""7""), and 'milking, more often than sporadically' (EA041 code ""2"")",beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +47616,Ni8,EA039,?,EA039-NA,,,,,, +47617,Ni9,EA039,?,EA039-NA,,,,,, +47618,Nj1,EA039,Absent,EA039-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47619,Nj10,EA039,?,EA039-NA,,,,,, +47620,Nj11,EA039,?,EA039-NA,,,,,, +47621,Nj12,EA039,?,EA039-NA,,,,,, +47622,Nj13,EA039,?,EA039-NA,,,,,, +47623,Nj14,EA039,?,EA039-NA,,,,,, +47624,Nj2,EA039,Absent,EA039-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +47625,Nj3,EA039,Absent,EA039-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +47626,Nj4,EA039,Absent,EA039-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +47627,Nj5,EA039,?,EA039-NA,,,,,, +47628,Nj6,EA039,?,EA039-NA,,,,,, +47629,Nj7,EA039,Not aboriginal but present,EA039-2,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47630,Nj8,EA039,Absent,EA039-1,,foster1948,,1500,EthnographicAtlas_1967_p119, +47631,Nj9,EA039,Not aboriginal but present,EA039-2,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +47632,Sa1,EA039,Absent,EA039-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +47633,Sa10,EA039,?,EA039-NA,,,,,, +47634,Sa11,EA039,?,EA039-NA,,,,,, +47635,Sa12,EA039,Absent,EA039-1,,stone1948,,1948,EthnographicAtlas_1967_p119, +47636,Sa13,EA039,Absent,EA039-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +47637,Sa14,EA039,?,EA039-NA,,,,,, +47638,Sa15,EA039,?,EA039-NA,,,,,, +47639,Sa16,EA039,?,EA039-NA,,,,,, +47640,Sa17,EA039,?,EA039-NA,,,,,, +47641,Sa2,EA039,?,EA039-NA,,,,,, +47642,Sa3,EA039,Absent,EA039-1,,wisdom1940,,1930,EthnographicAtlas_1967_p119, +47643,Sa4,EA039,Absent,EA039-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +47644,Sa5,EA039,Absent,EA039-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +47645,Sa6,EA039,Absent,EA039-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +47646,Sa7,EA039,Absent,EA039-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +47647,Sa8,EA039,Absent,EA039-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +47648,Sa9,EA039,Absent,EA039-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +47649,Sb1,EA039,Absent,EA039-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +47650,Sb2,EA039,Absent,EA039-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +47651,Sb3,EA039,Absent,EA039-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +47652,Sb4,EA039,Absent,EA039-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +47653,Sb5,EA039,Absent,EA039-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +47654,Sb6,EA039,Absent,EA039-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +47655,Sb7,EA039,Absent,EA039-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +47656,Sb8,EA039,Absent,EA039-1,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +47657,Sb9,EA039,Absent,EA039-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +47658,Sc1,EA039,Absent,EA039-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +47659,Sc10,EA039,Absent,EA039-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +47660,Sc11,EA039,Absent,EA039-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p119, +47661,Sc12,EA039,Absent,EA039-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p119, +47662,Sc13,EA039,Absent,EA039-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +47663,Sc14,EA039,?,EA039-NA,,,,,, +47664,Sc15,EA039,Absent,EA039-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p119, +47665,Sc16,EA039,Absent,EA039-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p119, +47666,Sc17,EA039,Absent,EA039-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +47667,Sc18,EA039,Absent,EA039-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +47668,Sc2,EA039,Absent,EA039-1,,leedsnd,,1950,EthnographicAtlas_1967_p119, +47669,Sc3,EA039,Absent,EA039-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +47670,Sc4,EA039,Absent,EA039-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +47671,Sc5,EA039,Absent,EA039-1,,farabee1918,,1900,EthnographicAtlas_1967_p119, +47672,Sc6,EA039,Absent,EA039-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47673,Sc7,EA039,Absent,EA039-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +47674,Sc8,EA039,Absent,EA039-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +47675,Sc9,EA039,Absent,EA039-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +47676,Sd1,EA039,Absent,EA039-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47677,Sd2,EA039,Absent,EA039-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +47678,Sd3,EA039,Absent,EA039-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p119, +47679,Sd4,EA039,Absent,EA039-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +47680,Sd5,EA039,Absent,EA039-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +47681,Sd6,EA039,Absent,EA039-1,,migliazza1964,,1960,EthnographicAtlas_1967_p119, +47682,Sd7,EA039,Absent,EA039-1,,fock1963,,1950,EthnographicAtlas_1967_p119, +47683,Sd8,EA039,Absent,EA039-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +47684,Sd9,EA039,Absent,EA039-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47685,Se1,EA039,Absent,EA039-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +47686,Se10,EA039,Absent,EA039-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +47687,Se11,EA039,Absent,EA039-1,,prost1965,,1960,EthnographicAtlas_1967_p123, +47688,Se12,EA039,?,EA039-NA,,,,,, +47689,Se2,EA039,Absent,EA039-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +47690,Se3,EA039,Absent,EA039-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +47691,Se4,EA039,Absent,EA039-1,,fejos1943,,1940,EthnographicAtlas_1967_p119, +47692,Se5,EA039,Absent,EA039-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +47693,Se6,EA039,Absent,EA039-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +47694,Se7,EA039,?,EA039-NA,,,,,, +47695,Se8,EA039,Absent,EA039-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +47696,Se9,EA039,Absent,EA039-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +47697,Sf1,EA039,Absent,EA039-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +47698,Sf2,EA039,Not aboriginal but present,EA039-2,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +47699,Sf3,EA039,Absent,EA039-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +47700,Sf4,EA039,Absent,EA039-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +47701,Sf5,EA039,Absent,EA039-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +47702,Sf6,EA039,Absent,EA039-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +47703,Sf7,EA039,Absent,EA039-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +47704,Sf8,EA039,?,EA039-NA,,,,,, +47705,Sf9,EA039,?,EA039-NA,,,,,, +47706,Sg1,EA039,Absent,EA039-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +47707,Sg2,EA039,Absent,EA039-1,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47708,Sg3,EA039,Absent,EA039-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +47709,Sg4,EA039,Absent,EA039-1,"But absence or near absence of domestic animals (EA039 and EA040 code ""1"") prior to 1725",bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +47710,Sg5,EA039,Absent,EA039-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47711,Sh1,EA039,Absent,EA039-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +47712,Sh2,EA039,Absent,EA039-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +47713,Sh3,EA039,Absent,EA039-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +47714,Sh4,EA039,Absent,EA039-1,,oberg1949,,1940,EthnographicAtlas_1967_p123, +47715,Sh5,EA039,Absent,EA039-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +47716,Sh6,EA039,Absent,EA039-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +47717,Sh7,EA039,Absent,EA039-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p123, +47718,Sh8,EA039,Absent,EA039-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +47719,Sh9,EA039,Absent,EA039-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +47720,Si1,EA039,Absent,EA039-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47721,Si10,EA039,Absent,EA039-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +47722,Si2,EA039,Absent,EA039-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +47723,Si3,EA039,Absent,EA039-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47724,Si4,EA039,Absent,EA039-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +47725,Si5,EA039,Absent,EA039-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +47726,Si6,EA039,Absent,EA039-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p123, +47727,Si7,EA039,Absent,EA039-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +47728,Si8,EA039,Absent,EA039-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +47729,Si9,EA039,?,EA039-NA,,,,,, +47730,Sj1,EA039,Absent,EA039-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +47731,Sj10,EA039,Absent,EA039-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47732,Sj11,EA039,Absent,EA039-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +47733,Sj2,EA039,Absent,EA039-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +47734,Sj3,EA039,Absent,EA039-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +47735,Sj4,EA039,Absent,EA039-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +47736,Sj5,EA039,Absent,EA039-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p123, +47737,Sj6,EA039,Absent,EA039-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47738,Sj7,EA039,Absent,EA039-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +47739,Sj8,EA039,Absent,EA039-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +47740,Sj9,EA039,Absent,EA039-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +47741,ch12,EA039,Not aboriginal but present,EA039-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +47742,ch13,EA039,Present,EA039-3,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +47743,ch14,EA039,Present,EA039-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +47744,ch15,EA039,Present,EA039-3,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +47745,ch16,EA039,Present,EA039-3,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +47746,ch17,EA039,Not aboriginal but present,EA039-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +47747,ch18,EA039,Present,EA039-3,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +47748,ch19,EA039,Present,EA039-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +47749,ch20,EA039,Present,EA039-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +47750,ch21,EA039,Present,EA039-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +47751,ch22,EA039,Not aboriginal but present,EA039-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +47752,ch23,EA039,Not aboriginal but present,EA039-2,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +47753,ch24,EA039,Present,EA039-3,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +47754,ch25,EA039,Present,EA039-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +47755,ch26,EA039,Present,EA039-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +47756,ch27,EA039,Present,EA039-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +47757,ch28,EA039,Present,EA039-3,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +47758,ec12,EA039,Absent,EA039-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +47759,ec13,EA039,Absent,EA039-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +47760,ec14,EA039,Absent,EA039-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +47761,ec15,EA039,Absent,EA039-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +47762,ec16,EA039,Absent,EA039-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +47763,ec17,EA039,Absent,EA039-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +47764,ec18,EA039,Absent,EA039-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +47765,ec19,EA039,Absent,EA039-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +47766,ec20,EA039,Absent,EA039-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +47767,ec21,EA039,Absent,EA039-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +47768,Aa1,EA004,0-5%,EA004-0,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +47769,Aa2,EA004,0-5%,EA004-0,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +47770,Aa3,EA004,46-55%,EA004-5,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +47771,Aa4,EA004,16-25%,EA004-2,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +47772,Aa5,EA004,0-5%,EA004-0,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +47773,Aa6,EA004,16-25%,EA004-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +47774,Aa7,EA004,0-5%,EA004-0,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +47775,Aa8,EA004,0-5%,EA004-0,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +47776,Aa9,EA004,0-5%,EA004-0,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +47777,Ab1,EA004,56-65%,EA004-6,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +47778,Ab10,EA004,46-55%,EA004-5,,hunter1936,,1936,EthnographicAtlas_1967_p62, +47779,Ab11,EA004,26-35%,EA004-3,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +47780,Ab12,EA004,36-45%,EA004-4,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +47781,Ab13,EA004,36-45%,EA004-4,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +47782,Ab14,EA004,26-35%,EA004-3,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +47783,Ab15,EA004,26-35%,EA004-3,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +47784,Ab16,EA004,16-25%,EA004-2,,earthy1933,,1930,EthnographicAtlas_1967_p62, +47785,Ab17,EA004,16-25%,EA004-2,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +47786,Ab18,EA004,16-25%,EA004-2,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +47787,Ab19,EA004,26-35%,EA004-3,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +47788,Ab2,EA004,16-25%,EA004-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +47789,Ab20,EA004,26-35%,EA004-3,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +47790,Ab21a,EA004,6-15%,EA004-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +47791,Ab21b,EA004,36-45%,EA004-4,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +47792,Ab22,EA004,16-25%,EA004-2,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +47793,Ab3,EA004,16-25%,EA004-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +47794,Ab4,EA004,26-35%,EA004-3,,junod1927,,1920,EthnographicAtlas_1967_p62, +47795,Ab5,EA004,16-25%,EA004-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +47796,Ab6,EA004,16-25%,EA004-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +47797,Ab7,EA004,36-45%,EA004-4,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +47798,Ab8,EA004,26-35%,EA004-3,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +47799,Ab9,EA004,36-45%,EA004-4,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +47800,Ac1,EA004,26-35%,EA004-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +47801,Ac10,EA004,6-15%,EA004-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +47802,Ac11,EA004,0-5%,EA004-0,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +47803,Ac12,EA004,6-15%,EA004-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +47804,Ac13,EA004,6-15%,EA004-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +47805,Ac14,EA004,6-15%,EA004-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +47806,Ac15,EA004,6-15%,EA004-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +47807,Ac16,EA004,6-15%,EA004-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +47808,Ac17,EA004,0-5%,EA004-0,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +47809,Ac18,EA004,6-15%,EA004-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +47810,Ac19,EA004,6-15%,EA004-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +47811,Ac2,EA004,16-25%,EA004-2,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +47812,Ac20,EA004,6-15%,EA004-1,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +47813,Ac21,EA004,6-15%,EA004-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +47814,Ac22,EA004,6-15%,EA004-1,,mertens1935,,1930,EthnographicAtlas_1967_p62, +47815,Ac23,EA004,6-15%,EA004-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +47816,Ac24,EA004,0-5%,EA004-0,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +47817,Ac25,EA004,6-15%,EA004-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +47818,Ac26,EA004,6-15%,EA004-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +47819,Ac27,EA004,6-15%,EA004-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +47820,Ac28,EA004,6-15%,EA004-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +47821,Ac29,EA004,0-5%,EA004-0,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +47822,Ac3,EA004,0-5%,EA004-0,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +47823,Ac30,EA004,16-25%,EA004-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +47824,Ac31,EA004,6-15%,EA004-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +47825,Ac32,EA004,0-5%,EA004-0,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +47826,Ac33,EA004,6-15%,EA004-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +47827,Ac34,EA004,6-15%,EA004-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +47828,Ac35,EA004,6-15%,EA004-1,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +47829,Ac36,EA004,6-15%,EA004-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +47830,Ac37,EA004,0-5%,EA004-0,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +47831,Ac38,EA004,6-15%,EA004-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +47832,Ac39,EA004,6-15%,EA004-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +47833,Ac4,EA004,6-15%,EA004-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +47834,Ac40,EA004,6-15%,EA004-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +47835,Ac41,EA004,6-15%,EA004-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +47836,Ac42,EA004,6-15%,EA004-1,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +47837,Ac43,EA004,16-25%,EA004-2,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +47838,Ac5,EA004,0-5%,EA004-0,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +47839,Ac6,EA004,6-15%,EA004-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +47840,Ac7,EA004,6-15%,EA004-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +47841,Ac8,EA004,6-15%,EA004-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +47842,Ac9,EA004,6-15%,EA004-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +47843,Ad1,EA004,6-15%,EA004-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +47844,Ad10,EA004,26-35%,EA004-3,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +47845,Ad11,EA004,26-35%,EA004-3,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +47846,Ad12,EA004,26-35%,EA004-3,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +47847,Ad13,EA004,16-25%,EA004-2,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +47848,Ad14,EA004,6-15%,EA004-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +47849,Ad15,EA004,6-15%,EA004-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +47850,Ad16,EA004,16-25%,EA004-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +47851,Ad17,EA004,16-25%,EA004-2,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +47852,Ad18,EA004,0-5%,EA004-0,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +47853,Ad19,EA004,6-15%,EA004-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +47854,Ad2,EA004,16-25%,EA004-2,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +47855,Ad20,EA004,6-15%,EA004-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +47856,Ad21,EA004,6-15%,EA004-1,,maurice193538,,1930,EthnographicAtlas_1967_p66, +47857,Ad22,EA004,26-35%,EA004-3,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +47858,Ad23,EA004,46-55%,EA004-5,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +47859,Ad24,EA004,36-45%,EA004-4,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +47860,Ad25,EA004,26-35%,EA004-3,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +47861,Ad26,EA004,46-55%,EA004-5,,sick1916,,1910,EthnographicAtlas_1967_p66, +47862,Ad27,EA004,6-15%,EA004-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +47863,Ad28,EA004,16-25%,EA004-2,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +47864,Ad29,EA004,16-25%,EA004-2,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +47865,Ad3,EA004,26-35%,EA004-3,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +47866,Ad30,EA004,6-15%,EA004-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +47867,Ad31,EA004,26-35%,EA004-3,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +47868,Ad32,EA004,16-25%,EA004-2,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +47869,Ad33,EA004,0-5%,EA004-0,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +47870,Ad34,EA004,26-35%,EA004-3,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +47871,Ad35,EA004,26-35%,EA004-3,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +47872,Ad36,EA004,36-45%,EA004-4,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +47873,Ad37,EA004,26-35%,EA004-3,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +47874,Ad38,EA004,26-35%,EA004-3,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +47875,Ad39,EA004,16-25%,EA004-2,,gray1963,,1950,EthnographicAtlas_1967_p66, +47876,Ad4,EA004,26-35%,EA004-3,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +47877,Ad40,EA004,26-35%,EA004-3,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +47878,Ad41,EA004,36-45%,EA004-4,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +47879,Ad42,EA004,26-35%,EA004-3,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +47880,Ad43,EA004,26-35%,EA004-3,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +47881,Ad44,EA004,6-15%,EA004-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +47882,Ad45,EA004,36-45%,EA004-4,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +47883,Ad46,EA004,16-25%,EA004-2,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +47884,Ad47,EA004,6-15%,EA004-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +47885,Ad48,EA004,26-35%,EA004-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +47886,Ad49,EA004,26-35%,EA004-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +47887,Ad5,EA004,36-45%,EA004-4,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +47888,Ad50,EA004,16-25%,EA004-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +47889,Ad51,EA004,6-15%,EA004-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +47890,Ad6,EA004,16-25%,EA004-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +47891,Ad7,EA004,6-15%,EA004-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +47892,Ad8,EA004,26-35%,EA004-3,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +47893,Ad9,EA004,16-25%,EA004-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +47894,Ae1,EA004,6-15%,EA004-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +47895,Ae10,EA004,26-35%,EA004-3,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +47896,Ae11,EA004,0-5%,EA004-0,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +47897,Ae12,EA004,6-15%,EA004-1,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +47898,Ae13,EA004,36-45%,EA004-4,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +47899,Ae14,EA004,36-45%,EA004-4,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +47900,Ae15,EA004,26-35%,EA004-3,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +47901,Ae16,EA004,6-15%,EA004-1,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +47902,Ae17,EA004,6-15%,EA004-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +47903,Ae18,EA004,6-15%,EA004-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +47904,Ae19,EA004,16-25%,EA004-2,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +47905,Ae2,EA004,26-35%,EA004-3,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +47906,Ae20,EA004,6-15%,EA004-1,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +47907,Ae21,EA004,6-15%,EA004-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +47908,Ae22,EA004,6-15%,EA004-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +47909,Ae23,EA004,6-15%,EA004-1,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +47910,Ae24,EA004,6-15%,EA004-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +47911,Ae25,EA004,6-15%,EA004-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +47912,Ae26,EA004,6-15%,EA004-1,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +47913,Ae27,EA004,6-15%,EA004-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +47914,Ae28,EA004,6-15%,EA004-1,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +47915,Ae29,EA004,6-15%,EA004-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +47916,Ae3,EA004,6-15%,EA004-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +47917,Ae30,EA004,6-15%,EA004-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +47918,Ae31,EA004,0-5%,EA004-0,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +47919,Ae32,EA004,6-15%,EA004-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +47920,Ae33,EA004,6-15%,EA004-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +47921,Ae34,EA004,6-15%,EA004-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +47922,Ae35,EA004,6-15%,EA004-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +47923,Ae36,EA004,0-5%,EA004-0,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +47924,Ae37,EA004,6-15%,EA004-1,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +47925,Ae38,EA004,0-5%,EA004-0,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +47926,Ae39,EA004,0-5%,EA004-0,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +47927,Ae4,EA004,0-5%,EA004-0,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +47928,Ae40,EA004,6-15%,EA004-1,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +47929,Ae41,EA004,6-15%,EA004-1,,andersson1953,,1940,EthnographicAtlas_1967_p66, +47930,Ae42,EA004,6-15%,EA004-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +47931,Ae43,EA004,6-15%,EA004-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +47932,Ae44,EA004,6-15%,EA004-1,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +47933,Ae45,EA004,16-25%,EA004-2,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +47934,Ae46,EA004,0-5%,EA004-0,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +47935,Ae47,EA004,6-15%,EA004-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +47936,Ae48,EA004,16-25%,EA004-2,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +47937,Ae49,EA004,6-15%,EA004-1,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +47938,Ae5,EA004,6-15%,EA004-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +47939,Ae50,EA004,6-15%,EA004-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +47940,Ae51,EA004,6-15%,EA004-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +47941,Ae52,EA004,6-15%,EA004-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +47942,Ae53,EA004,6-15%,EA004-1,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +47943,Ae54,EA004,6-15%,EA004-1,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +47944,Ae55,EA004,6-15%,EA004-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +47945,Ae56,EA004,6-15%,EA004-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +47946,Ae57,EA004,6-15%,EA004-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +47947,Ae58,EA004,6-15%,EA004-1,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +47948,Ae59,EA004,6-15%,EA004-1,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +47949,Ae6,EA004,6-15%,EA004-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +47950,Ae7,EA004,0-5%,EA004-0,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +47951,Ae8,EA004,26-35%,EA004-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +47952,Ae9,EA004,6-15%,EA004-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +47953,Af1,EA004,16-25%,EA004-2,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +47954,Af10,EA004,6-15%,EA004-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +47955,Af11,EA004,6-15%,EA004-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +47956,Af12,EA004,6-15%,EA004-1,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +47957,Af13,EA004,6-15%,EA004-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +47958,Af14,EA004,6-15%,EA004-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +47959,Af15,EA004,6-15%,EA004-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +47960,Af16,EA004,6-15%,EA004-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +47961,Af17,EA004,6-15%,EA004-1,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +47962,Af18,EA004,16-25%,EA004-2,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +47963,Af19,EA004,6-15%,EA004-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +47964,Af2,EA004,6-15%,EA004-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +47965,Af20,EA004,6-15%,EA004-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +47966,Af21,EA004,6-15%,EA004-1,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +47967,Af22,EA004,6-15%,EA004-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +47968,Af23,EA004,6-15%,EA004-1,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +47969,Af24,EA004,6-15%,EA004-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +47970,Af25,EA004,6-15%,EA004-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +47971,Af26,EA004,6-15%,EA004-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +47972,Af27,EA004,6-15%,EA004-1,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +47973,Af28,EA004,16-25%,EA004-2,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +47974,Af29,EA004,6-15%,EA004-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +47975,Af3,EA004,0-5%,EA004-0,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +47976,Af30,EA004,6-15%,EA004-1,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +47977,Af31,EA004,16-25%,EA004-2,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +47978,Af32,EA004,6-15%,EA004-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47979,Af33,EA004,6-15%,EA004-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47980,Af34,EA004,6-15%,EA004-1,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +47981,Af35,EA004,6-15%,EA004-1,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +47982,Af36,EA004,6-15%,EA004-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +47983,Af37,EA004,6-15%,EA004-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +47984,Af38,EA004,6-15%,EA004-1,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +47985,Af39,EA004,6-15%,EA004-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +47986,Af4,EA004,6-15%,EA004-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +47987,Af40,EA004,6-15%,EA004-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +47988,Af41,EA004,6-15%,EA004-1,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +47989,Af42,EA004,6-15%,EA004-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +47990,Af43,EA004,6-15%,EA004-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +47991,Af44,EA004,6-15%,EA004-1,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +47992,Af45,EA004,6-15%,EA004-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +47993,Af46,EA004,6-15%,EA004-1,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +47994,Af47,EA004,6-15%,EA004-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +47995,Af48,EA004,6-15%,EA004-1,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +47996,Af49,EA004,6-15%,EA004-1,,schwab1947,,1940,EthnographicAtlas_1967_p70, +47997,Af5,EA004,6-15%,EA004-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +47998,Af50,EA004,6-15%,EA004-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +47999,Af51,EA004,6-15%,EA004-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +48000,Af52,EA004,6-15%,EA004-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +48001,Af53,EA004,6-15%,EA004-1,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +48002,Af54,EA004,6-15%,EA004-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +48003,Af55,EA004,6-15%,EA004-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +48004,Af56,EA004,16-25%,EA004-2,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +48005,Af57,EA004,16-25%,EA004-2,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +48006,Af58,EA004,16-25%,EA004-2,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +48007,Af6,EA004,6-15%,EA004-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +48008,Af7,EA004,6-15%,EA004-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +48009,Af8,EA004,6-15%,EA004-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +48010,Af9,EA004,6-15%,EA004-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +48011,Ag1,EA004,16-25%,EA004-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +48012,Ag10,EA004,6-15%,EA004-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +48013,Ag11,EA004,6-15%,EA004-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +48014,Ag12,EA004,16-25%,EA004-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +48015,Ag13,EA004,16-25%,EA004-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +48016,Ag14,EA004,6-15%,EA004-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +48017,Ag15,EA004,16-25%,EA004-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +48018,Ag16,EA004,6-15%,EA004-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +48019,Ag17,EA004,6-15%,EA004-1,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +48020,Ag18,EA004,16-25%,EA004-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +48021,Ag19,EA004,16-25%,EA004-2,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +48022,Ag2,EA004,16-25%,EA004-2,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +48023,Ag20,EA004,16-25%,EA004-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +48024,Ag21,EA004,16-25%,EA004-2,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +48025,Ag22,EA004,16-25%,EA004-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +48026,Ag23,EA004,26-35%,EA004-3,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +48027,Ag24,EA004,26-35%,EA004-3,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +48028,Ag25,EA004,16-25%,EA004-2,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +48029,Ag26,EA004,16-25%,EA004-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +48030,Ag27,EA004,6-15%,EA004-1,But the economy is primarily mercantile,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +48031,Ag28,EA004,16-25%,EA004-2,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +48032,Ag29,EA004,6-15%,EA004-1,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +48033,Ag3,EA004,16-25%,EA004-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +48034,Ag30,EA004,16-25%,EA004-2,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +48035,Ag31,EA004,16-25%,EA004-2,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +48036,Ag32,EA004,6-15%,EA004-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +48037,Ag33,EA004,26-35%,EA004-3,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +48038,Ag34,EA004,26-35%,EA004-3,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +48039,Ag35,EA004,16-25%,EA004-2,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +48040,Ag36,EA004,16-25%,EA004-2,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +48041,Ag37,EA004,16-25%,EA004-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +48042,Ag38,EA004,26-35%,EA004-3,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +48043,Ag39,EA004,26-35%,EA004-3,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +48044,Ag4,EA004,16-25%,EA004-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +48045,Ag40,EA004,16-25%,EA004-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +48046,Ag41,EA004,26-35%,EA004-3,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +48047,Ag42,EA004,16-25%,EA004-2,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +48048,Ag43,EA004,16-25%,EA004-2,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +48049,Ag44,EA004,16-25%,EA004-2,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +48050,Ag45,EA004,16-25%,EA004-2,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +48051,Ag46,EA004,26-35%,EA004-3,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +48052,Ag47,EA004,16-25%,EA004-2,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +48053,Ag48,EA004,16-25%,EA004-2,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +48054,Ag49,EA004,16-25%,EA004-2,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +48055,Ag5,EA004,6-15%,EA004-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +48056,Ag50,EA004,16-25%,EA004-2,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +48057,Ag51,EA004,26-35%,EA004-3,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +48058,Ag52,EA004,16-25%,EA004-2,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +48059,Ag53,EA004,6-15%,EA004-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +48060,Ag54,EA004,16-25%,EA004-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +48061,Ag6,EA004,46-55%,EA004-5,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +48062,Ag7,EA004,0-5%,EA004-0,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +48063,Ag8,EA004,6-15%,EA004-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +48064,Ag9,EA004,6-15%,EA004-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +48065,Ah1,EA004,6-15%,EA004-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48066,Ah10,EA004,16-25%,EA004-2,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +48067,Ah11,EA004,16-25%,EA004-2,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +48068,Ah12,EA004,16-25%,EA004-2,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +48069,Ah13,EA004,16-25%,EA004-2,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +48070,Ah14,EA004,16-25%,EA004-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +48071,Ah15,EA004,16-25%,EA004-2,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +48072,Ah16,EA004,16-25%,EA004-2,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +48073,Ah17,EA004,16-25%,EA004-2,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +48074,Ah18,EA004,16-25%,EA004-2,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +48075,Ah19,EA004,16-25%,EA004-2,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +48076,Ah2,EA004,16-25%,EA004-2,,meek1931a,,1920,EthnographicAtlas_1967_p74, +48077,Ah20,EA004,16-25%,EA004-2,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +48078,Ah21,EA004,16-25%,EA004-2,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48079,Ah22,EA004,16-25%,EA004-2,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +48080,Ah23,EA004,16-25%,EA004-2,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48081,Ah24,EA004,16-25%,EA004-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48082,Ah25,EA004,16-25%,EA004-2,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48083,Ah26,EA004,6-15%,EA004-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48084,Ah27,EA004,6-15%,EA004-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48085,Ah28,EA004,16-25%,EA004-2,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +48086,Ah29,EA004,16-25%,EA004-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48087,Ah3,EA004,6-15%,EA004-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +48088,Ah30,EA004,26-35%,EA004-3,,meek1931b,,1920,EthnographicAtlas_1967_p74, +48089,Ah31,EA004,16-25%,EA004-2,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +48090,Ah32,EA004,16-25%,EA004-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48091,Ah33,EA004,26-35%,EA004-3,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +48092,Ah34,EA004,16-25%,EA004-2,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +48093,Ah35,EA004,26-35%,EA004-3,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48094,Ah36,EA004,16-25%,EA004-2,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +48095,Ah37,EA004,26-35%,EA004-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48096,Ah38,EA004,16-25%,EA004-2,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +48097,Ah39,EA004,16-25%,EA004-2,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +48098,Ah4,EA004,16-25%,EA004-2,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +48099,Ah5,EA004,16-25%,EA004-2,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +48100,Ah6,EA004,16-25%,EA004-2,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +48101,Ah7,EA004,6-15%,EA004-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +48102,Ah8,EA004,6-15%,EA004-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +48103,Ah9,EA004,6-15%,EA004-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +48104,Ai1,EA004,6-15%,EA004-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +48105,Ai10,EA004,16-25%,EA004-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +48106,Ai11,EA004,6-15%,EA004-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +48107,Ai12,EA004,16-25%,EA004-2,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +48108,Ai13,EA004,6-15%,EA004-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +48109,Ai14,EA004,6-15%,EA004-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +48110,Ai15,EA004,36-45%,EA004-4,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +48111,Ai16,EA004,26-35%,EA004-3,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +48112,Ai17,EA004,16-25%,EA004-2,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +48113,Ai18,EA004,16-25%,EA004-2,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +48114,Ai19,EA004,16-25%,EA004-2,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +48115,Ai2,EA004,16-25%,EA004-2,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +48116,Ai20,EA004,26-35%,EA004-3,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +48117,Ai21,EA004,16-25%,EA004-2,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +48118,Ai22,EA004,26-35%,EA004-3,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +48119,Ai23,EA004,6-15%,EA004-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +48120,Ai24,EA004,6-15%,EA004-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +48121,Ai25,EA004,6-15%,EA004-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +48122,Ai26,EA004,6-15%,EA004-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +48123,Ai27,EA004,6-15%,EA004-1,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +48124,Ai28,EA004,6-15%,EA004-1,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +48125,Ai29,EA004,26-35%,EA004-3,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +48126,Ai3,EA004,0-5%,EA004-0,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +48127,Ai30,EA004,16-25%,EA004-2,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +48128,Ai31,EA004,16-25%,EA004-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +48129,Ai32,EA004,36-45%,EA004-4,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +48130,Ai33,EA004,26-35%,EA004-3,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +48131,Ai34,EA004,16-25%,EA004-2,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +48132,Ai35,EA004,6-15%,EA004-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +48133,Ai36,EA004,16-25%,EA004-2,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +48134,Ai37,EA004,16-25%,EA004-2,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +48135,Ai38,EA004,26-35%,EA004-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +48136,Ai39,EA004,26-35%,EA004-3,,nadel1947,,1940,EthnographicAtlas_1967_p74, +48137,Ai4,EA004,26-35%,EA004-3,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +48138,Ai40,EA004,26-35%,EA004-3,,nadel1947,,1940,EthnographicAtlas_1967_p74, +48139,Ai41,EA004,26-35%,EA004-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +48140,Ai42,EA004,26-35%,EA004-3,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +48141,Ai43,EA004,26-35%,EA004-3,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +48142,Ai44,EA004,6-15%,EA004-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +48143,Ai45,EA004,16-25%,EA004-2,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +48144,Ai46,EA004,6-15%,EA004-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +48145,Ai47,EA004,6-15%,EA004-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +48146,Ai5,EA004,6-15%,EA004-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +48147,Ai6,EA004,16-25%,EA004-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +48148,Ai7,EA004,6-15%,EA004-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +48149,Ai8,EA004,26-35%,EA004-3,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +48150,Ai9,EA004,6-15%,EA004-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +48151,Aj1,EA004,26-35%,EA004-3,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +48152,Aj10,EA004,26-35%,EA004-3,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +48153,Aj11,EA004,46-55%,EA004-5,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +48154,Aj12,EA004,26-35%,EA004-3,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +48155,Aj13,EA004,16-25%,EA004-2,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +48156,Aj14,EA004,16-25%,EA004-2,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +48157,Aj15,EA004,26-35%,EA004-3,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +48158,Aj16,EA004,16-25%,EA004-2,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +48159,Aj17,EA004,16-25%,EA004-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +48160,Aj18,EA004,46-55%,EA004-5,,jensen1959,,1950,EthnographicAtlas_1967_p78, +48161,Aj19,EA004,36-45%,EA004-4,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +48162,Aj2,EA004,86-100%,EA004-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +48163,Aj20,EA004,26-35%,EA004-3,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +48164,Aj21,EA004,36-45%,EA004-4,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +48165,Aj22,EA004,16-25%,EA004-2,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +48166,Aj23,EA004,56-65%,EA004-6,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +48167,Aj24,EA004,46-55%,EA004-5,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +48168,Aj25,EA004,36-45%,EA004-4,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +48169,Aj26,EA004,26-35%,EA004-3,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +48170,Aj27,EA004,36-45%,EA004-4,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +48171,Aj28,EA004,66-75%,EA004-7,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +48172,Aj29,EA004,86-100%,EA004-9,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +48173,Aj3,EA004,46-55%,EA004-5,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +48174,Aj30,EA004,56-65%,EA004-6,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +48175,Aj31,EA004,36-45%,EA004-4,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +48176,Aj4,EA004,36-45%,EA004-4,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +48177,Aj5,EA004,26-35%,EA004-3,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +48178,Aj6,EA004,16-25%,EA004-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +48179,Aj7,EA004,46-55%,EA004-5,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +48180,Aj8,EA004,36-45%,EA004-4,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +48181,Aj9,EA004,36-45%,EA004-4,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +48182,Ca1,EA004,16-25%,EA004-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +48183,Ca10,EA004,86-100%,EA004-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +48184,Ca11,EA004,46-55%,EA004-5,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +48185,Ca12,EA004,26-35%,EA004-3,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +48186,Ca13,EA004,26-35%,EA004-3,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +48187,Ca14,EA004,16-25%,EA004-2,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +48188,Ca15,EA004,16-25%,EA004-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +48189,Ca16,EA004,26-35%,EA004-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +48190,Ca17,EA004,26-35%,EA004-3,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +48191,Ca18,EA004,36-45%,EA004-4,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +48192,Ca19,EA004,46-55%,EA004-5,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +48193,Ca2,EA004,86-100%,EA004-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +48194,Ca20,EA004,46-55%,EA004-5,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +48195,Ca21,EA004,46-55%,EA004-5,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +48196,Ca22,EA004,46-55%,EA004-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +48197,Ca23,EA004,26-35%,EA004-3,,jensen1959,,1950,EthnographicAtlas_1967_p78, +48198,Ca24,EA004,26-35%,EA004-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +48199,Ca25,EA004,26-35%,EA004-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +48200,Ca26,EA004,16-25%,EA004-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +48201,Ca27,EA004,16-25%,EA004-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +48202,Ca28,EA004,26-35%,EA004-3,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +48203,Ca29,EA004,16-25%,EA004-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +48204,Ca3,EA004,26-35%,EA004-3,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +48205,Ca30,EA004,16-25%,EA004-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +48206,Ca31,EA004,26-35%,EA004-3,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +48207,Ca32,EA004,16-25%,EA004-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +48208,Ca33,EA004,16-25%,EA004-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +48209,Ca34,EA004,76-85%,EA004-8,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +48210,Ca35,EA004,86-100%,EA004-9,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +48211,Ca36,EA004,76-85%,EA004-8,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +48212,Ca37,EA004,86-100%,EA004-9,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +48213,Ca38,EA004,76-85%,EA004-8,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +48214,Ca39,EA004,26-35%,EA004-3,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +48215,Ca4,EA004,46-55%,EA004-5,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +48216,Ca40,EA004,16-25%,EA004-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +48217,Ca41,EA004,16-25%,EA004-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +48218,Ca42,EA004,16-25%,EA004-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +48219,Ca43,EA004,56-65%,EA004-6,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +48220,Ca5,EA004,76-85%,EA004-8,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +48221,Ca6,EA004,76-85%,EA004-8,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +48222,Ca7,EA004,26-35%,EA004-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +48223,Ca8,EA004,36-45%,EA004-4,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +48224,Ca9,EA004,46-55%,EA004-5,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +48225,Cb1,EA004,16-25%,EA004-2,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +48226,Cb10,EA004,6-15%,EA004-1,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +48227,Cb11,EA004,86-100%,EA004-9,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +48228,Cb12,EA004,66-75%,EA004-7,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +48229,Cb13,EA004,46-55%,EA004-5,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +48230,Cb14,EA004,46-55%,EA004-5,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +48231,Cb15,EA004,66-75%,EA004-7,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +48232,Cb16,EA004,56-65%,EA004-6,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +48233,Cb17,EA004,26-35%,EA004-3,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +48234,Cb18,EA004,26-35%,EA004-3,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +48235,Cb19,EA004,16-25%,EA004-2,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +48236,Cb2,EA004,26-35%,EA004-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +48237,Cb20,EA004,36-45%,EA004-4,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +48238,Cb21,EA004,86-100%,EA004-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +48239,Cb22,EA004,36-45%,EA004-4,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +48240,Cb23,EA004,36-45%,EA004-4,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +48241,Cb24,EA004,86-100%,EA004-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +48242,Cb25,EA004,26-35%,EA004-3,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +48243,Cb26,EA004,26-35%,EA004-3,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +48244,Cb27,EA004,16-25%,EA004-2,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48245,Cb28,EA004,16-25%,EA004-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48246,Cb29,EA004,16-25%,EA004-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +48247,Cb3,EA004,26-35%,EA004-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +48248,Cb4,EA004,46-55%,EA004-5,,reid1930,,1920,EthnographicAtlas_1967_p78, +48249,Cb5,EA004,36-45%,EA004-4,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +48250,Cb6,EA004,6-15%,EA004-1,,woodnd,,1920,EthnographicAtlas_1967_p78, +48251,Cb7,EA004,16-25%,EA004-2,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +48252,Cb8,EA004,76-85%,EA004-8,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +48253,Cb9,EA004,16-25%,EA004-2,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +48254,Cc1,EA004,66-75%,EA004-7,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +48255,Cc10,EA004,46-55%,EA004-5,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +48256,Cc11,EA004,46-55%,EA004-5,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +48257,Cc12,EA004,46-55%,EA004-5,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +48258,Cc13,EA004,16-25%,EA004-2,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +48259,Cc14,EA004,36-45%,EA004-4,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +48260,Cc15,EA004,16-25%,EA004-2,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +48261,Cc16,EA004,66-75%,EA004-7,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +48262,Cc17,EA004,46-55%,EA004-5,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +48263,Cc18,EA004,56-65%,EA004-6,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +48264,Cc19,EA004,56-65%,EA004-6,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +48265,Cc2,EA004,26-35%,EA004-3,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +48266,Cc20,EA004,66-75%,EA004-7,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +48267,Cc3,EA004,26-35%,EA004-3,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +48268,Cc4,EA004,6-15%,EA004-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +48269,Cc5,EA004,56-65%,EA004-6,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +48270,Cc6,EA004,76-85%,EA004-8,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +48271,Cc7,EA004,86-100%,EA004-9,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48272,Cc8,EA004,56-65%,EA004-6,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +48273,Cc9,EA004,46-55%,EA004-5,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +48274,Cd1,EA004,26-35%,EA004-3,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +48275,Cd10,EA004,36-45%,EA004-4,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +48276,Cd11,EA004,16-25%,EA004-2,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +48277,Cd12,EA004,26-35%,EA004-3,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +48278,Cd13,EA004,66-75%,EA004-7,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +48279,Cd14,EA004,66-75%,EA004-7,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +48280,Cd15,EA004,26-35%,EA004-3,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +48281,Cd16,EA004,26-35%,EA004-3,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +48282,Cd17,EA004,66-75%,EA004-7,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +48283,Cd18,EA004,56-65%,EA004-6,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +48284,Cd19,EA004,26-35%,EA004-3,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +48285,Cd2,EA004,26-35%,EA004-3,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +48286,Cd20,EA004,56-65%,EA004-6,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +48287,Cd21,EA004,16-25%,EA004-2,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +48288,Cd3,EA004,26-35%,EA004-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +48289,Cd4,EA004,26-35%,EA004-3,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +48290,Cd5,EA004,26-35%,EA004-3,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +48291,Cd6,EA004,16-25%,EA004-2,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +48292,Cd7,EA004,36-45%,EA004-4,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +48293,Cd8,EA004,26-35%,EA004-3,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +48294,Cd9,EA004,36-45%,EA004-4,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +48295,Ce1,EA004,36-45%,EA004-4,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +48296,Ce2,EA004,36-45%,EA004-4,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +48297,Ce3,EA004,16-25%,EA004-2,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +48298,Ce4,EA004,26-35%,EA004-3,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48299,Ce5,EA004,6-15%,EA004-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +48300,Ce6,EA004,26-35%,EA004-3,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +48301,Ce7,EA004,26-35%,EA004-3,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +48302,Ce8,EA004,36-45%,EA004-4,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +48303,Cf1,EA004,26-35%,EA004-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +48304,Cf2,EA004,76-85%,EA004-8,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +48305,Cf3,EA004,16-25%,EA004-2,,munch1945,,1930,EthnographicAtlas_1967_p82, +48306,Cf4,EA004,16-25%,EA004-2,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +48307,Cf5,EA004,16-25%,EA004-2,,miner1939,,1930,EthnographicAtlas_1967_p82, +48308,Cg1,EA004,26-35%,EA004-3,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +48309,Cg2,EA004,36-45%,EA004-4,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +48310,Cg3,EA004,36-45%,EA004-4,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +48311,Cg4,EA004,56-65%,EA004-6,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +48312,Cg5,EA004,26-35%,EA004-3,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +48313,Ch1,EA004,36-45%,EA004-4,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +48314,Ch10,EA004,26-35%,EA004-3,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +48315,Ch11,EA004,26-35%,EA004-3,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +48316,Ch2,EA004,36-45%,EA004-4,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +48317,Ch3,EA004,26-35%,EA004-3,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +48318,Ch4,EA004,26-35%,EA004-3,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +48319,Ch5,EA004,16-25%,EA004-2,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +48320,Ch6,EA004,26-35%,EA004-3,,ember1954,,1910,EthnographicAtlas_1967_p82, +48321,Ch7,EA004,26-35%,EA004-3,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +48322,Ch8,EA004,16-25%,EA004-2,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +48323,Ch9,EA004,36-45%,EA004-4,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +48324,Ci1,EA004,66-75%,EA004-7,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +48325,Ci10,EA004,26-35%,EA004-3,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +48326,Ci11,EA004,36-45%,EA004-4,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +48327,Ci12,EA004,56-65%,EA004-6,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +48328,Ci2,EA004,26-35%,EA004-3,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +48329,Ci3,EA004,26-35%,EA004-3,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +48330,Ci4,EA004,36-45%,EA004-4,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +48331,Ci5,EA004,36-45%,EA004-4,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +48332,Ci6,EA004,46-55%,EA004-5,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +48333,Ci7,EA004,46-55%,EA004-5,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +48334,Ci8,EA004,26-35%,EA004-3,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +48335,Ci9,EA004,36-45%,EA004-4,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +48336,Cj1,EA004,36-45%,EA004-4,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +48337,Cj10,EA004,16-25%,EA004-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +48338,Cj2,EA004,76-85%,EA004-8,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +48339,Cj3,EA004,26-35%,EA004-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +48340,Cj4,EA004,16-25%,EA004-2,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +48341,Cj5,EA004,86-100%,EA004-9,,dickson1949,,1930,EthnographicAtlas_1967_p86, +48342,Cj6,EA004,26-35%,EA004-3,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +48343,Cj7,EA004,16-25%,EA004-2,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +48344,Cj8,EA004,6-15%,EA004-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +48345,Cj9,EA004,26-35%,EA004-3,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +48346,Ea1,EA004,26-35%,EA004-3,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +48347,Ea10,EA004,46-55%,EA004-5,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +48348,Ea11,EA004,26-35%,EA004-3,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +48349,Ea12,EA004,76-85%,EA004-8,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +48350,Ea13,EA004,16-25%,EA004-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +48351,Ea2,EA004,26-35%,EA004-3,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +48352,Ea3,EA004,46-55%,EA004-5,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +48353,Ea4,EA004,36-45%,EA004-4,,barth1956b,,1950,EthnographicAtlas_1967_p86, +48354,Ea5,EA004,26-35%,EA004-3,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +48355,Ea6,EA004,76-85%,EA004-8,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +48356,Ea7,EA004,36-45%,EA004-4,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +48357,Ea8,EA004,76-85%,EA004-8,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +48358,Ea9,EA004,26-35%,EA004-3,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +48359,Eb1,EA004,76-85%,EA004-8,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +48360,Eb2,EA004,26-35%,EA004-3,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +48361,Eb3,EA004,76-85%,EA004-8,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +48362,Eb4,EA004,26-35%,EA004-3,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +48363,Eb5,EA004,36-45%,EA004-4,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +48364,Eb6,EA004,66-75%,EA004-7,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +48365,Eb7,EA004,76-85%,EA004-8,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +48366,Eb8,EA004,46-55%,EA004-5,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +48367,Ec1,EA004,0-5%,EA004-0,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +48368,Ec10,EA004,26-35%,EA004-3,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +48369,Ec11,EA004,36-45%,EA004-4,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +48370,Ec2,EA004,36-45%,EA004-4,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48371,Ec3,EA004,46-55%,EA004-5,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +48372,Ec4,EA004,36-45%,EA004-4,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +48373,Ec5,EA004,26-35%,EA004-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +48374,Ec6,EA004,0-5%,EA004-0,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +48375,Ec7,EA004,0-5%,EA004-0,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +48376,Ec8,EA004,6-15%,EA004-1,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +48377,Ec9,EA004,6-15%,EA004-1,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +48378,Ed1,EA004,16-25%,EA004-2,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +48379,Ed10,EA004,16-25%,EA004-2,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +48380,Ed13,EA004,6-15%,EA004-1,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +48381,Ed14,EA004,6-15%,EA004-1,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +48382,Ed15a,EA004,6-15%,EA004-1,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +48383,Ed15b,EA004,6-15%,EA004-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +48384,Ed16,EA004,16-25%,EA004-2,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +48385,Ed2,EA004,26-35%,EA004-3,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +48386,Ed3,EA004,16-25%,EA004-2,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +48387,Ed4,EA004,16-25%,EA004-2,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +48388,Ed5,EA004,6-15%,EA004-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48389,Ed6,EA004,16-25%,EA004-2,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +48390,Ed7,EA004,16-25%,EA004-2,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +48391,Ed8,EA004,16-25%,EA004-2,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +48392,Ed9,EA004,6-15%,EA004-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +48393,Ee1,EA004,16-25%,EA004-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +48394,Ee2,EA004,36-45%,EA004-4,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +48395,Ee3,EA004,26-35%,EA004-3,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +48396,Ee4,EA004,36-45%,EA004-4,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +48397,Ee5,EA004,26-35%,EA004-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +48398,Ee6,EA004,46-55%,EA004-5,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +48399,Ee7,EA004,6-15%,EA004-1,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +48400,Ee8,EA004,16-25%,EA004-2,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +48401,Ef1,EA004,6-15%,EA004-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +48402,Ef10,EA004,16-25%,EA004-2,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48403,Ef11,EA004,16-25%,EA004-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +48404,Ef2,EA004,16-25%,EA004-2,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +48405,Ef3,EA004,26-35%,EA004-3,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +48406,Ef4,EA004,16-25%,EA004-2,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +48407,Ef5,EA004,16-25%,EA004-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +48408,Ef6,EA004,16-25%,EA004-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +48409,Ef7,EA004,36-45%,EA004-4,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +48410,Ef8,EA004,16-25%,EA004-2,But the Pandit themselves do not engage in food production,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +48411,Ef9,EA004,16-25%,EA004-2,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48412,Eg1,EA004,6-15%,EA004-1,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48413,Eg10,EA004,26-35%,EA004-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +48414,Eg11,EA004,16-25%,EA004-2,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +48415,Eg12,EA004,16-25%,EA004-2,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +48416,Eg13,EA004,6-15%,EA004-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48417,Eg14,EA004,6-15%,EA004-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +48418,Eg2,EA004,16-25%,EA004-2,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +48419,Eg3,EA004,16-25%,EA004-2,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +48420,Eg4,EA004,86-100%,EA004-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +48421,Eg5,EA004,16-25%,EA004-2,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +48422,Eg6,EA004,26-35%,EA004-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +48423,Eg7,EA004,16-25%,EA004-2,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +48424,Eg8,EA004,16-25%,EA004-2,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +48425,Eg9,EA004,0-5%,EA004-0,,elwin1939,,1930,EthnographicAtlas_1967_p90, +48426,Eh1,EA004,0-5%,EA004-0,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +48427,Eh10,EA004,16-25%,EA004-2,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +48428,Eh2,EA004,16-25%,EA004-2,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +48429,Eh3,EA004,16-25%,EA004-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +48430,Eh4,EA004,0-5%,EA004-0,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48431,Eh5,EA004,6-15%,EA004-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +48432,Eh6,EA004,26-35%,EA004-3,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +48433,Eh7,EA004,36-45%,EA004-4,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +48434,Eh8,EA004,46-55%,EA004-5,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +48435,Eh9,EA004,26-35%,EA004-3,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +48436,Ei1,EA004,6-15%,EA004-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48437,Ei10,EA004,16-25%,EA004-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +48438,Ei11,EA004,16-25%,EA004-2,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +48439,Ei12,EA004,16-25%,EA004-2,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +48440,Ei13,EA004,16-25%,EA004-2,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +48441,Ei14,EA004,16-25%,EA004-2,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +48442,Ei15,EA004,16-25%,EA004-2,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +48443,Ei16,EA004,16-25%,EA004-2,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +48444,Ei17,EA004,16-25%,EA004-2,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +48445,Ei18,EA004,16-25%,EA004-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +48446,Ei19,EA004,6-15%,EA004-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +48447,Ei2,EA004,16-25%,EA004-2,,mills1922,,1920,EthnographicAtlas_1967_p90, +48448,Ei20,EA004,16-25%,EA004-2,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +48449,Ei3,EA004,16-25%,EA004-2,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +48450,Ei4,EA004,6-15%,EA004-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +48451,Ei5,EA004,16-25%,EA004-2,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +48452,Ei6,EA004,16-25%,EA004-2,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +48453,Ei7,EA004,6-15%,EA004-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +48454,Ei8,EA004,16-25%,EA004-2,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +48455,Ei9,EA004,16-25%,EA004-2,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +48456,Ej1,EA004,16-25%,EA004-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +48457,Ej10,EA004,6-15%,EA004-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +48458,Ej11,EA004,6-15%,EA004-1,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +48459,Ej12,EA004,6-15%,EA004-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +48460,Ej13,EA004,16-25%,EA004-2,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +48461,Ej14,EA004,0-5%,EA004-0,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48462,Ej15,EA004,26-35%,EA004-3,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +48463,Ej16,EA004,6-15%,EA004-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +48464,Ej2,EA004,16-25%,EA004-2,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +48465,Ej3,EA004,0-5%,EA004-0,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +48466,Ej4,EA004,16-25%,EA004-2,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +48467,Ej5,EA004,6-15%,EA004-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +48468,Ej6,EA004,0-5%,EA004-0,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +48469,Ej7,EA004,6-15%,EA004-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +48470,Ej8,EA004,16-25%,EA004-2,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +48471,Ej9,EA004,6-15%,EA004-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +48472,Ia1,EA004,6-15%,EA004-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +48473,Ia10,EA004,6-15%,EA004-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +48474,Ia11,EA004,6-15%,EA004-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +48475,Ia12,EA004,6-15%,EA004-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +48476,Ia13,EA004,0-5%,EA004-0,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +48477,Ia14,EA004,6-15%,EA004-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +48478,Ia15,EA004,6-15%,EA004-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +48479,Ia16,EA004,6-15%,EA004-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +48480,Ia17,EA004,6-15%,EA004-1,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +48481,Ia18,EA004,6-15%,EA004-1,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +48482,Ia2,EA004,26-35%,EA004-3,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +48483,Ia3,EA004,6-15%,EA004-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +48484,Ia4,EA004,6-15%,EA004-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +48485,Ia5,EA004,6-15%,EA004-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +48486,Ia6,EA004,6-15%,EA004-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48487,Ia7,EA004,6-15%,EA004-1,,fox1954,,1950,EthnographicAtlas_1967_p90, +48488,Ia8,EA004,16-25%,EA004-2,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +48489,Ia9,EA004,6-15%,EA004-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +48490,Ib1,EA004,16-25%,EA004-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48491,Ib2,EA004,16-25%,EA004-2,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48492,Ib3,EA004,26-35%,EA004-3,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +48493,Ib4,EA004,16-25%,EA004-2,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +48494,Ib5,EA004,16-25%,EA004-2,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +48495,Ib6,EA004,16-25%,EA004-2,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +48496,Ib7,EA004,6-15%,EA004-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +48497,Ib8,EA004,0-5%,EA004-0,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +48498,Ib9,EA004,6-15%,EA004-1,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +48499,Ic1,EA004,16-25%,EA004-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48500,Ic10,EA004,0-5%,EA004-0,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +48501,Ic11,EA004,6-15%,EA004-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48502,Ic12,EA004,6-15%,EA004-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +48503,Ic13,EA004,16-25%,EA004-2,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +48504,Ic2,EA004,6-15%,EA004-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +48505,Ic3,EA004,26-35%,EA004-3,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +48506,Ic4,EA004,16-25%,EA004-2,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +48507,Ic5,EA004,16-25%,EA004-2,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +48508,Ic6,EA004,6-15%,EA004-1,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +48509,Ic7,EA004,6-15%,EA004-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +48510,Ic8,EA004,6-15%,EA004-1,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +48511,Ic9,EA004,16-25%,EA004-2,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +48512,Id1,EA004,0-5%,EA004-0,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +48513,Id10,EA004,0-5%,EA004-0,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +48514,Id11,EA004,0-5%,EA004-0,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +48515,Id12,EA004,0-5%,EA004-0,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +48516,Id13,EA004,0-5%,EA004-0,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +48517,Id2,EA004,0-5%,EA004-0,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +48518,Id3,EA004,0-5%,EA004-0,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +48519,Id4,EA004,0-5%,EA004-0,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +48520,Id5,EA004,0-5%,EA004-0,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +48521,Id6,EA004,0-5%,EA004-0,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +48522,Id7,EA004,0-5%,EA004-0,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +48523,Id8,EA004,0-5%,EA004-0,,roth1890,,1830,EthnographicAtlas_1967_p94, +48524,Id9,EA004,0-5%,EA004-0,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +48525,Ie1,EA004,16-25%,EA004-2,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48526,Ie10,EA004,0-5%,EA004-0,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +48527,Ie11,EA004,6-15%,EA004-1,,bowers1964,,1950,EthnographicAtlas_1967_p94, +48528,Ie12,EA004,6-15%,EA004-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48529,Ie13,EA004,0-5%,EA004-0,,landtman1927,,1920,EthnographicAtlas_1967_p94, +48530,Ie14,EA004,6-15%,EA004-1,,haddon1908,,1900,EthnographicAtlas_1967_p94, +48531,Ie15,EA004,6-15%,EA004-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48532,Ie16,EA004,6-15%,EA004-1,,williams194041,,1940,EthnographicAtlas_1967_p94, +48533,Ie17,EA004,6-15%,EA004-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +48534,Ie18,EA004,0-5%,EA004-0,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +48535,Ie19,EA004,6-15%,EA004-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +48536,Ie2,EA004,6-15%,EA004-1,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +48537,Ie20,EA004,6-15%,EA004-1,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +48538,Ie21,EA004,6-15%,EA004-1,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +48539,Ie22,EA004,6-15%,EA004-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +48540,Ie23,EA004,16-25%,EA004-2,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +48541,Ie24,EA004,6-15%,EA004-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +48542,Ie25,EA004,6-15%,EA004-1,,williamson1912,,1920,EthnographicAtlas_1967_p94, +48543,Ie26,EA004,6-15%,EA004-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +48544,Ie27,EA004,6-15%,EA004-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +48545,Ie28,EA004,6-15%,EA004-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +48546,Ie29,EA004,6-15%,EA004-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48547,Ie3,EA004,6-15%,EA004-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48548,Ie30,EA004,0-5%,EA004-0,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +48549,Ie31,EA004,6-15%,EA004-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +48550,Ie32,EA004,6-15%,EA004-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +48551,Ie33,EA004,0-5%,EA004-0,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +48552,Ie34,EA004,0-5%,EA004-0,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +48553,Ie35,EA004,6-15%,EA004-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +48554,Ie36,EA004,6-15%,EA004-1,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +48555,Ie37,EA004,6-15%,EA004-1,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +48556,Ie38,EA004,6-15%,EA004-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +48557,Ie39,EA004,6-15%,EA004-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +48558,Ie4,EA004,6-15%,EA004-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48559,Ie5,EA004,6-15%,EA004-1,,williams1936,,1930,EthnographicAtlas_1967_p94, +48560,Ie6,EA004,6-15%,EA004-1,,held1947,,1930,EthnographicAtlas_1967_p94, +48561,Ie7,EA004,16-25%,EA004-2,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +48562,Ie8,EA004,6-15%,EA004-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +48563,Ie9,EA004,6-15%,EA004-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +48564,If1,EA004,6-15%,EA004-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48565,If10,EA004,6-15%,EA004-1,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +48566,If11,EA004,6-15%,EA004-1,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +48567,If12,EA004,6-15%,EA004-1,,mason1954,,1940,EthnographicAtlas_1967_p98, +48568,If13,EA004,0-5%,EA004-0,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +48569,If14,EA004,6-15%,EA004-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +48570,If15,EA004,0-5%,EA004-0,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +48571,If16,EA004,6-15%,EA004-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +48572,If17,EA004,0-5%,EA004-0,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +48573,If2,EA004,0-5%,EA004-0,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +48574,If3,EA004,6-15%,EA004-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +48575,If4,EA004,6-15%,EA004-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +48576,If5,EA004,6-15%,EA004-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +48577,If6,EA004,6-15%,EA004-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +48578,If7,EA004,0-5%,EA004-0,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +48579,If8,EA004,16-25%,EA004-2,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +48580,If9,EA004,6-15%,EA004-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +48581,Ig1,EA004,16-25%,EA004-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +48582,Ig10,EA004,16-25%,EA004-2,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +48583,Ig11,EA004,0-5%,EA004-0,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +48584,Ig12,EA004,6-15%,EA004-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +48585,Ig13,EA004,0-5%,EA004-0,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +48586,Ig14,EA004,6-15%,EA004-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +48587,Ig15,EA004,6-15%,EA004-1,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +48588,Ig16,EA004,6-15%,EA004-1,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +48589,Ig17,EA004,0-5%,EA004-0,Primarily traders,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +48590,Ig18,EA004,0-5%,EA004-0,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +48591,Ig19,EA004,6-15%,EA004-1,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +48592,Ig2,EA004,6-15%,EA004-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +48593,Ig20,EA004,6-15%,EA004-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +48594,Ig21,EA004,6-15%,EA004-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +48595,Ig3,EA004,6-15%,EA004-1,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +48596,Ig4,EA004,6-15%,EA004-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +48597,Ig5,EA004,6-15%,EA004-1,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +48598,Ig6,EA004,0-5%,EA004-0,,ivens1927,,1900,EthnographicAtlas_1967_p98, +48599,Ig7,EA004,6-15%,EA004-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +48600,Ig8,EA004,6-15%,EA004-1,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +48601,Ig9,EA004,6-15%,EA004-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +48602,Ih1,EA004,6-15%,EA004-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +48603,Ih10,EA004,6-15%,EA004-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48604,Ih11,EA004,6-15%,EA004-1,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +48605,Ih12,EA004,6-15%,EA004-1,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +48606,Ih13,EA004,6-15%,EA004-1,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +48607,Ih14,EA004,0-5%,EA004-0,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +48608,Ih2,EA004,6-15%,EA004-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48609,Ih3,EA004,6-15%,EA004-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +48610,Ih4,EA004,6-15%,EA004-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48611,Ih5,EA004,6-15%,EA004-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +48612,Ih6,EA004,6-15%,EA004-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +48613,Ih7,EA004,6-15%,EA004-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +48614,Ih8,EA004,0-5%,EA004-0,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +48615,Ih9,EA004,6-15%,EA004-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48616,Ii1,EA004,6-15%,EA004-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +48617,Ii10,EA004,0-5%,EA004-0,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +48618,Ii12,EA004,6-15%,EA004-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48619,Ii13,EA004,0-5%,EA004-0,,burrows1937,,1830,EthnographicAtlas_1967_p98, +48620,Ii14,EA004,6-15%,EA004-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +48621,Ii2,EA004,0-5%,EA004-0,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +48622,Ii3,EA004,6-15%,EA004-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +48623,Ii4,EA004,6-15%,EA004-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +48624,Ii5,EA004,0-5%,EA004-0,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +48625,Ii6,EA004,0-5%,EA004-0,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +48626,Ii7,EA004,6-15%,EA004-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +48627,Ii8,EA004,6-15%,EA004-1,,burrows1936,,1840,EthnographicAtlas_1967_p98, +48628,Ii9,EA004,0-5%,EA004-0,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +48629,Ij1,EA004,0-5%,EA004-0,,buck1934,,1820,EthnographicAtlas_1967_p98, +48630,Ij10,EA004,0-5%,EA004-0,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +48631,Ij2,EA004,0-5%,EA004-0,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +48632,Ij3,EA004,6-15%,EA004-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +48633,Ij4,EA004,0-5%,EA004-0,,buck1932a,,1850,EthnographicAtlas_1967_p102, +48634,Ij5,EA004,0-5%,EA004-0,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +48635,Ij6,EA004,0-5%,EA004-0,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +48636,Ij7,EA004,0-5%,EA004-0,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +48637,Ij8,EA004,6-15%,EA004-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +48638,Ij9,EA004,0-5%,EA004-0,,metraux1940,,1860,EthnographicAtlas_1967_p102, +48639,Na1,EA004,0-5%,EA004-0,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +48640,Na10,EA004,0-5%,EA004-0,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +48641,Na11,EA004,0-5%,EA004-0,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +48642,Na12,EA004,0-5%,EA004-0,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +48643,Na13,EA004,0-5%,EA004-0,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +48644,Na14,EA004,0-5%,EA004-0,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +48645,Na15,EA004,0-5%,EA004-0,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +48646,Na16,EA004,0-5%,EA004-0,,osgood1931,,1860,EthnographicAtlas_1967_p102, +48647,Na17,EA004,0-5%,EA004-0,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48648,Na19,EA004,0-5%,EA004-0,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +48649,Na2,EA004,0-5%,EA004-0,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +48650,Na20,EA004,0-5%,EA004-0,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +48651,Na21,EA004,0-5%,EA004-0,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +48652,Na22,EA004,0-5%,EA004-0,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +48653,Na23,EA004,0-5%,EA004-0,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +48654,Na24,EA004,0-5%,EA004-0,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +48655,Na25,EA004,0-5%,EA004-0,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +48656,Na26,EA004,0-5%,EA004-0,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +48657,Na27,EA004,0-5%,EA004-0,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +48658,Na28,EA004,0-5%,EA004-0,,jenness1937,,1880,EthnographicAtlas_1967_p102, +48659,Na29,EA004,0-5%,EA004-0,,goddard1916,,1850,EthnographicAtlas_1967_p102, +48660,Na3,EA004,0-5%,EA004-0,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +48661,Na30,EA004,0-5%,EA004-0,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +48662,Na31,EA004,0-5%,EA004-0,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +48663,Na32,EA004,0-5%,EA004-0,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +48664,Na33,EA004,0-5%,EA004-0,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +48665,Na34,EA004,0-5%,EA004-0,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +48666,Na35,EA004,0-5%,EA004-0,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +48667,Na36,EA004,0-5%,EA004-0,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +48668,Na37,EA004,0-5%,EA004-0,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +48669,Na38,EA004,0-5%,EA004-0,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +48670,Na39,EA004,0-5%,EA004-0,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +48671,Na4,EA004,0-5%,EA004-0,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +48672,Na40,EA004,0-5%,EA004-0,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +48673,Na41,EA004,0-5%,EA004-0,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +48674,Na42,EA004,0-5%,EA004-0,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +48675,Na43,EA004,0-5%,EA004-0,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +48676,Na44,EA004,0-5%,EA004-0,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +48677,Na45,EA004,0-5%,EA004-0,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +48678,Na5,EA004,0-5%,EA004-0,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +48679,Na6,EA004,0-5%,EA004-0,,lantis1946,,1930,EthnographicAtlas_1967_p102, +48680,Na7,EA004,0-5%,EA004-0,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +48681,Na8,EA004,0-5%,EA004-0,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +48682,Na9,EA004,0-5%,EA004-0,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48683,Nb1,EA004,0-5%,EA004-0,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +48684,Nb10,EA004,0-5%,EA004-0,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +48685,Nb11,EA004,0-5%,EA004-0,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +48686,Nb12,EA004,0-5%,EA004-0,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +48687,Nb13,EA004,0-5%,EA004-0,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +48688,Nb14,EA004,0-5%,EA004-0,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +48689,Nb15,EA004,0-5%,EA004-0,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +48690,Nb16,EA004,0-5%,EA004-0,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +48691,Nb17,EA004,0-5%,EA004-0,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +48692,Nb18,EA004,0-5%,EA004-0,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +48693,Nb19,EA004,0-5%,EA004-0,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +48694,Nb2,EA004,0-5%,EA004-0,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +48695,Nb20,EA004,0-5%,EA004-0,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +48696,Nb21,EA004,0-5%,EA004-0,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +48697,Nb22,EA004,0-5%,EA004-0,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +48698,Nb23,EA004,0-5%,EA004-0,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +48699,Nb24,EA004,0-5%,EA004-0,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +48700,Nb25,EA004,0-5%,EA004-0,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +48701,Nb26,EA004,0-5%,EA004-0,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +48702,Nb27,EA004,0-5%,EA004-0,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +48703,Nb28,EA004,0-5%,EA004-0,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +48704,Nb29,EA004,0-5%,EA004-0,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +48705,Nb3,EA004,0-5%,EA004-0,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +48706,Nb30,EA004,0-5%,EA004-0,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +48707,Nb31,EA004,0-5%,EA004-0,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +48708,Nb32,EA004,0-5%,EA004-0,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +48709,Nb33,EA004,0-5%,EA004-0,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +48710,Nb34,EA004,0-5%,EA004-0,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +48711,Nb35,EA004,0-5%,EA004-0,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +48712,Nb36,EA004,0-5%,EA004-0,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +48713,Nb37,EA004,0-5%,EA004-0,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +48714,Nb38,EA004,0-5%,EA004-0,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +48715,Nb39,EA004,0-5%,EA004-0,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +48716,Nb4,EA004,0-5%,EA004-0,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +48717,Nb5,EA004,0-5%,EA004-0,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +48718,Nb6,EA004,0-5%,EA004-0,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +48719,Nb7,EA004,0-5%,EA004-0,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +48720,Nb8,EA004,0-5%,EA004-0,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +48721,Nb9,EA004,0-5%,EA004-0,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +48722,Nc1,EA004,0-5%,EA004-0,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +48723,Nc10,EA004,0-5%,EA004-0,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +48724,Nc11,EA004,0-5%,EA004-0,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +48725,Nc12,EA004,0-5%,EA004-0,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +48726,Nc13,EA004,0-5%,EA004-0,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +48727,Nc14,EA004,0-5%,EA004-0,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +48728,Nc15,EA004,0-5%,EA004-0,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +48729,Nc16,EA004,0-5%,EA004-0,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +48730,Nc17,EA004,0-5%,EA004-0,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +48731,Nc18,EA004,0-5%,EA004-0,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +48732,Nc19,EA004,0-5%,EA004-0,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +48733,Nc2,EA004,0-5%,EA004-0,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +48734,Nc20,EA004,0-5%,EA004-0,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +48735,Nc21,EA004,0-5%,EA004-0,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +48736,Nc22,EA004,0-5%,EA004-0,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +48737,Nc23,EA004,0-5%,EA004-0,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +48738,Nc24,EA004,0-5%,EA004-0,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +48739,Nc25,EA004,0-5%,EA004-0,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +48740,Nc26,EA004,0-5%,EA004-0,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +48741,Nc27,EA004,0-5%,EA004-0,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +48742,Nc28,EA004,0-5%,EA004-0,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +48743,Nc29,EA004,0-5%,EA004-0,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +48744,Nc3,EA004,0-5%,EA004-0,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +48745,Nc30,EA004,0-5%,EA004-0,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +48746,Nc31,EA004,0-5%,EA004-0,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +48747,Nc32,EA004,0-5%,EA004-0,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +48748,Nc33,EA004,0-5%,EA004-0,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +48749,Nc34,EA004,0-5%,EA004-0,,meigs1939,,1880,EthnographicAtlas_1967_p106, +48750,Nc4,EA004,0-5%,EA004-0,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +48751,Nc5,EA004,0-5%,EA004-0,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +48752,Nc6,EA004,0-5%,EA004-0,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +48753,Nc7,EA004,0-5%,EA004-0,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +48754,Nc8,EA004,0-5%,EA004-0,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +48755,Nc9,EA004,0-5%,EA004-0,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +48756,Nd1,EA004,0-5%,EA004-0,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +48757,Nd10,EA004,0-5%,EA004-0,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +48758,Nd11,EA004,0-5%,EA004-0,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +48759,Nd12,EA004,0-5%,EA004-0,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +48760,Nd13,EA004,0-5%,EA004-0,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +48761,Nd14,EA004,0-5%,EA004-0,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +48762,Nd15,EA004,0-5%,EA004-0,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +48763,Nd16,EA004,0-5%,EA004-0,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +48764,Nd17,EA004,0-5%,EA004-0,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +48765,Nd18,EA004,0-5%,EA004-0,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +48766,Nd19,EA004,0-5%,EA004-0,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +48767,Nd2,EA004,0-5%,EA004-0,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +48768,Nd20,EA004,0-5%,EA004-0,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +48769,Nd21,EA004,0-5%,EA004-0,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +48770,Nd22,EA004,0-5%,EA004-0,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +48771,Nd23,EA004,0-5%,EA004-0,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +48772,Nd24,EA004,0-5%,EA004-0,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +48773,Nd25,EA004,0-5%,EA004-0,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +48774,Nd26,EA004,0-5%,EA004-0,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +48775,Nd27,EA004,0-5%,EA004-0,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +48776,Nd28,EA004,0-5%,EA004-0,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +48777,Nd29,EA004,0-5%,EA004-0,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +48778,Nd3,EA004,0-5%,EA004-0,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +48779,Nd30,EA004,0-5%,EA004-0,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +48780,Nd31,EA004,0-5%,EA004-0,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +48781,Nd32,EA004,0-5%,EA004-0,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +48782,Nd33,EA004,0-5%,EA004-0,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +48783,Nd34,EA004,0-5%,EA004-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +48784,Nd35,EA004,0-5%,EA004-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +48785,Nd36,EA004,0-5%,EA004-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +48786,Nd37,EA004,0-5%,EA004-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +48787,Nd38,EA004,0-5%,EA004-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +48788,Nd39,EA004,0-5%,EA004-0,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +48789,Nd4,EA004,0-5%,EA004-0,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +48790,Nd40,EA004,0-5%,EA004-0,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +48791,Nd41,EA004,0-5%,EA004-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +48792,Nd42,EA004,0-5%,EA004-0,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +48793,Nd43,EA004,0-5%,EA004-0,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +48794,Nd44,EA004,0-5%,EA004-0,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +48795,Nd45,EA004,0-5%,EA004-0,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +48796,Nd46,EA004,0-5%,EA004-0,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +48797,Nd47,EA004,0-5%,EA004-0,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +48798,Nd48,EA004,0-5%,EA004-0,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +48799,Nd49,EA004,0-5%,EA004-0,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +48800,Nd5,EA004,0-5%,EA004-0,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +48801,Nd50,EA004,0-5%,EA004-0,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +48802,Nd51,EA004,0-5%,EA004-0,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +48803,Nd52,EA004,0-5%,EA004-0,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +48804,Nd53,EA004,0-5%,EA004-0,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +48805,Nd54,EA004,0-5%,EA004-0,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48806,Nd55,EA004,0-5%,EA004-0,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +48807,Nd56,EA004,0-5%,EA004-0,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +48808,Nd57,EA004,0-5%,EA004-0,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +48809,Nd58,EA004,0-5%,EA004-0,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +48810,Nd59,EA004,0-5%,EA004-0,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +48811,Nd6,EA004,0-5%,EA004-0,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +48812,Nd60,EA004,0-5%,EA004-0,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +48813,Nd61,EA004,0-5%,EA004-0,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +48814,Nd62,EA004,0-5%,EA004-0,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +48815,Nd63,EA004,0-5%,EA004-0,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +48816,Nd64,EA004,0-5%,EA004-0,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +48817,Nd65,EA004,0-5%,EA004-0,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +48818,Nd66,EA004,0-5%,EA004-0,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +48819,Nd67,EA004,0-5%,EA004-0,,gifford1936,,1870,EthnographicAtlas_1967_p110, +48820,Nd7,EA004,0-5%,EA004-0,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +48821,Nd8,EA004,0-5%,EA004-0,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +48822,Nd9,EA004,0-5%,EA004-0,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +48823,Ne1,EA004,0-5%,EA004-0,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +48824,Ne10,EA004,0-5%,EA004-0,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +48825,Ne11,EA004,0-5%,EA004-0,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +48826,Ne12,EA004,0-5%,EA004-0,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +48827,Ne13,EA004,0-5%,EA004-0,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +48828,Ne14,EA004,0-5%,EA004-0,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +48829,Ne15,EA004,0-5%,EA004-0,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +48830,Ne16,EA004,0-5%,EA004-0,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +48831,Ne17,EA004,0-5%,EA004-0,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +48832,Ne18,EA004,0-5%,EA004-0,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +48833,Ne19,EA004,0-5%,EA004-0,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +48834,Ne2,EA004,0-5%,EA004-0,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +48835,Ne20,EA004,0-5%,EA004-0,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +48836,Ne21,EA004,0-5%,EA004-0,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968, +48837,Ne3,EA004,0-5%,EA004-0,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +48838,Ne4,EA004,0-5%,EA004-0,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +48839,Ne5,EA004,0-5%,EA004-0,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +48840,Ne6,EA004,0-5%,EA004-0,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +48841,Ne7,EA004,0-5%,EA004-0,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +48842,Ne8,EA004,0-5%,EA004-0,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +48843,Ne9,EA004,0-5%,EA004-0,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +48844,Nf10,EA004,0-5%,EA004-0,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +48845,Nf11,EA004,0-5%,EA004-0,,whitman1937,,1870,EthnographicAtlas_1967_p114, +48846,Nf12,EA004,0-5%,EA004-0,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +48847,Nf13,EA004,0-5%,EA004-0,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48848,Nf14,EA004,0-5%,EA004-0,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +48849,Nf15,EA004,0-5%,EA004-0,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +48850,Nf2,EA004,0-5%,EA004-0,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +48851,Nf3,EA004,0-5%,EA004-0,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +48852,Nf4,EA004,0-5%,EA004-0,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +48853,Nf5,EA004,0-5%,EA004-0,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +48854,Nf6,EA004,0-5%,EA004-0,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +48855,Nf7,EA004,0-5%,EA004-0,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48856,Nf8,EA004,0-5%,EA004-0,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +48857,Nf9,EA004,0-5%,EA004-0,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +48858,Ng1,EA004,0-5%,EA004-0,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +48859,Ng10,EA004,0-5%,EA004-0,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +48860,Ng11,EA004,0-5%,EA004-0,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +48861,Ng12,EA004,0-5%,EA004-0,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +48862,Ng13,EA004,0-5%,EA004-0,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +48863,Ng14,EA004,0-5%,EA004-0,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +48864,Ng15,EA004,0-5%,EA004-0,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +48865,Ng2,EA004,?,EA004-NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +48866,Ng3,EA004,0-5%,EA004-0,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +48867,Ng4,EA004,0-5%,EA004-0,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +48868,Ng5,EA004,0-5%,EA004-0,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +48869,Ng6,EA004,0-5%,EA004-0,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +48870,Ng7,EA004,0-5%,EA004-0,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +48871,Ng8,EA004,0-5%,EA004-0,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +48872,Ng9,EA004,6-15%,EA004-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +48873,Nh1,EA004,0-5%,EA004-0,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +48874,Nh10,EA004,6-15%,EA004-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +48875,Nh11,EA004,6-15%,EA004-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +48876,Nh12,EA004,16-25%,EA004-2,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +48877,Nh13,EA004,6-15%,EA004-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +48878,Nh14,EA004,6-15%,EA004-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +48879,Nh15,EA004,0-5%,EA004-0,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +48880,Nh16,EA004,0-5%,EA004-0,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48881,Nh17,EA004,0-5%,EA004-0,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +48882,Nh18,EA004,6-15%,EA004-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48883,Nh19,EA004,0-5%,EA004-0,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +48884,Nh2,EA004,26-35%,EA004-3,,dozier1954,,1950,EthnographicAtlas_1967_p114, +48885,Nh20,EA004,0-5%,EA004-0,,gifford1931,,1860,EthnographicAtlas_1967_p114, +48886,Nh21,EA004,0-5%,EA004-0,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48887,Nh22,EA004,0-5%,EA004-0,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +48888,Nh23,EA004,0-5%,EA004-0,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +48889,Nh24,EA004,0-5%,EA004-0,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +48890,Nh25,EA004,16-25%,EA004-2,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +48891,Nh26,EA004,6-15%,EA004-1,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +48892,Nh27,EA004,0-5%,EA004-0,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +48893,Nh3,EA004,26-35%,EA004-3,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +48894,Nh4,EA004,0-5%,EA004-0,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +48895,Nh5,EA004,0-5%,EA004-0,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +48896,Nh6,EA004,6-15%,EA004-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +48897,Nh7,EA004,0-5%,EA004-0,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +48898,Nh8,EA004,0-5%,EA004-0,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +48899,Nh9,EA004,6-15%,EA004-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +48900,Ni1,EA004,26-35%,EA004-3,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +48901,Ni2,EA004,0-5%,EA004-0,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +48902,Ni3,EA004,6-15%,EA004-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +48903,Ni4,EA004,0-5%,EA004-0,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +48904,Ni5,EA004,0-5%,EA004-0,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +48905,Ni6,EA004,0-5%,EA004-0,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +48906,Ni7,EA004,0-5%,EA004-0,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +48907,Ni8,EA004,0-5%,EA004-0,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +48908,Ni9,EA004,0-5%,EA004-0,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968, +48909,Nj1,EA004,16-25%,EA004-2,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48910,Nj10,EA004,6-15%,EA004-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48911,Nj11,EA004,0-5%,EA004-0,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +48912,Nj12,EA004,6-15%,EA004-1,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968, +48913,Nj13,EA004,0-5%,EA004-0,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +48914,Nj14,EA004,6-15%,EA004-1,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +48915,Nj2,EA004,6-15%,EA004-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +48916,Nj3,EA004,0-5%,EA004-0,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +48917,Nj4,EA004,6-15%,EA004-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +48918,Nj5,EA004,16-25%,EA004-2,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +48919,Nj6,EA004,6-15%,EA004-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +48920,Nj7,EA004,6-15%,EA004-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48921,Nj8,EA004,0-5%,EA004-0,,foster1948,,1500,EthnographicAtlas_1967_p118, +48922,Nj9,EA004,16-25%,EA004-2,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +48923,Sa1,EA004,0-5%,EA004-0,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +48924,Sa10,EA004,0-5%,EA004-0,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +48925,Sa11,EA004,0-5%,EA004-0,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +48926,Sa12,EA004,0-5%,EA004-0,,stone1948,,1948,EthnographicAtlas_1967_p118, +48927,Sa13,EA004,6-15%,EA004-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +48928,Sa14,EA004,0-5%,EA004-0,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +48929,Sa15,EA004,6-15%,EA004-1,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +48930,Sa16,EA004,0-5%,EA004-0,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +48931,Sa17,EA004,6-15%,EA004-1,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +48932,Sa2,EA004,16-25%,EA004-2,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48933,Sa3,EA004,16-25%,EA004-2,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +48934,Sa4,EA004,0-5%,EA004-0,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +48935,Sa5,EA004,6-15%,EA004-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +48936,Sa6,EA004,0-5%,EA004-0,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +48937,Sa7,EA004,0-5%,EA004-0,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +48938,Sa8,EA004,6-15%,EA004-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +48939,Sa9,EA004,6-15%,EA004-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +48940,Sb1,EA004,0-5%,EA004-0,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +48941,Sb2,EA004,16-25%,EA004-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +48942,Sb3,EA004,0-5%,EA004-0,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +48943,Sb4,EA004,0-5%,EA004-0,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +48944,Sb5,EA004,0-5%,EA004-0,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +48945,Sb6,EA004,66-75%,EA004-7,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +48946,Sb7,EA004,0-5%,EA004-0,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +48947,Sb8,EA004,0-5%,EA004-0,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +48948,Sb9,EA004,16-25%,EA004-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +48949,Sc1,EA004,0-5%,EA004-0,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +48950,Sc10,EA004,0-5%,EA004-0,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +48951,Sc11,EA004,0-5%,EA004-0,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +48952,Sc12,EA004,0-5%,EA004-0,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +48953,Sc13,EA004,0-5%,EA004-0,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +48954,Sc14,EA004,0-5%,EA004-0,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +48955,Sc15,EA004,0-5%,EA004-0,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +48956,Sc16,EA004,0-5%,EA004-0,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +48957,Sc17,EA004,0-5%,EA004-0,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +48958,Sc18,EA004,0-5%,EA004-0,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +48959,Sc2,EA004,6-15%,EA004-1,,leedsnd,,1950,EthnographicAtlas_1967_p118, +48960,Sc3,EA004,0-5%,EA004-0,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +48961,Sc4,EA004,0-5%,EA004-0,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +48962,Sc5,EA004,0-5%,EA004-0,,farabee1918,,1900,EthnographicAtlas_1967_p118, +48963,Sc6,EA004,0-5%,EA004-0,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48964,Sc7,EA004,0-5%,EA004-0,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +48965,Sc8,EA004,0-5%,EA004-0,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +48966,Sc9,EA004,0-5%,EA004-0,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +48967,Sd1,EA004,0-5%,EA004-0,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48968,Sd2,EA004,0-5%,EA004-0,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +48969,Sd3,EA004,0-5%,EA004-0,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +48970,Sd4,EA004,0-5%,EA004-0,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +48971,Sd5,EA004,0-5%,EA004-0,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +48972,Sd6,EA004,0-5%,EA004-0,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +48973,Sd7,EA004,0-5%,EA004-0,,fock1963,,1950,EthnographicAtlas_1967_p118, +48974,Sd8,EA004,0-5%,EA004-0,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +48975,Sd9,EA004,0-5%,EA004-0,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48976,Se1,EA004,0-5%,EA004-0,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +48977,Se10,EA004,0-5%,EA004-0,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +48978,Se11,EA004,0-5%,EA004-0,,prost1965,,1960,EthnographicAtlas_1967_p122, +48979,Se12,EA004,0-5%,EA004-0,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +48980,Se2,EA004,0-5%,EA004-0,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +48981,Se3,EA004,0-5%,EA004-0,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +48982,Se4,EA004,0-5%,EA004-0,,fejos1943,,1940,EthnographicAtlas_1967_p118, +48983,Se5,EA004,0-5%,EA004-0,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +48984,Se6,EA004,0-5%,EA004-0,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +48985,Se7,EA004,6-15%,EA004-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48986,Se8,EA004,0-5%,EA004-0,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +48987,Se9,EA004,0-5%,EA004-0,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +48988,Sf1,EA004,16-25%,EA004-2,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +48989,Sf2,EA004,26-35%,EA004-3,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +48990,Sf3,EA004,6-15%,EA004-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +48991,Sf4,EA004,0-5%,EA004-0,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +48992,Sf5,EA004,16-25%,EA004-2,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +48993,Sf6,EA004,0-5%,EA004-0,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +48994,Sf7,EA004,0-5%,EA004-0,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +48995,Sf8,EA004,0-5%,EA004-0,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +48996,Sf9,EA004,6-15%,EA004-1,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +48997,Sg1,EA004,0-5%,EA004-0,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +48998,Sg2,EA004,16-25%,EA004-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +48999,Sg3,EA004,0-5%,EA004-0,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +49000,Sg4,EA004,0-5%,EA004-0,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +49001,Sg5,EA004,0-5%,EA004-0,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49002,Sh1,EA004,6-15%,EA004-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +49003,Sh2,EA004,6-15%,EA004-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +49004,Sh3,EA004,6-15%,EA004-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +49005,Sh4,EA004,6-15%,EA004-1,,oberg1949,,1940,EthnographicAtlas_1967_p122, +49006,Sh5,EA004,0-5%,EA004-0,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +49007,Sh6,EA004,0-5%,EA004-0,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +49008,Sh7,EA004,6-15%,EA004-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +49009,Sh8,EA004,6-15%,EA004-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +49010,Sh9,EA004,0-5%,EA004-0,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +49011,Si1,EA004,0-5%,EA004-0,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49012,Si10,EA004,0-5%,EA004-0,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +49013,Si2,EA004,0-5%,EA004-0,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +49014,Si3,EA004,0-5%,EA004-0,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49015,Si4,EA004,0-5%,EA004-0,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +49016,Si5,EA004,0-5%,EA004-0,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +49017,Si6,EA004,0-5%,EA004-0,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +49018,Si7,EA004,0-5%,EA004-0,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +49019,Si8,EA004,0-5%,EA004-0,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +49020,Si9,EA004,0-5%,EA004-0,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +49021,Sj1,EA004,0-5%,EA004-0,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +49022,Sj10,EA004,0-5%,EA004-0,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49023,Sj11,EA004,0-5%,EA004-0,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +49024,Sj2,EA004,0-5%,EA004-0,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +49025,Sj3,EA004,0-5%,EA004-0,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +49026,Sj4,EA004,0-5%,EA004-0,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +49027,Sj5,EA004,0-5%,EA004-0,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +49028,Sj6,EA004,6-15%,EA004-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49029,Sj7,EA004,0-5%,EA004-0,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +49030,Sj8,EA004,0-5%,EA004-0,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +49031,Sj9,EA004,0-5%,EA004-0,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +49032,ch12,EA004,46-55%,EA004-5,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +49033,ch13,EA004,6-15%,EA004-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +49034,ch14,EA004,6-15%,EA004-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +49035,ch15,EA004,16-25%,EA004-2,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +49036,ch16,EA004,26-35%,EA004-3,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +49037,ch17,EA004,26-35%,EA004-3,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +49038,ch18,EA004,6-15%,EA004-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +49039,ch19,EA004,16-25%,EA004-2,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +49040,ch20,EA004,36-45%,EA004-4,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +49041,ch21,EA004,16-25%,EA004-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +49042,ch22,EA004,6-15%,EA004-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +49043,ch23,EA004,6-15%,EA004-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +49044,ch24,EA004,6-15%,EA004-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +49045,ch25,EA004,36-45%,EA004-4,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +49046,ch26,EA004,6-15%,EA004-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +49047,ch27,EA004,16-25%,EA004-2,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +49048,ch28,EA004,6-15%,EA004-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +49049,ec12,EA004,0-5%,EA004-0,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +49050,ec13,EA004,0-5%,EA004-0,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +49051,ec14,EA004,0-5%,EA004-0,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +49052,ec15,EA004,0-5%,EA004-0,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +49053,ec16,EA004,6-15%,EA004-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +49054,ec17,EA004,0-5%,EA004-0,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +49055,ec18,EA004,0-5%,EA004-0,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +49056,ec19,EA004,0-5%,EA004-0,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +49057,ec20,EA004,0-5%,EA004-0,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +49058,ec21,EA004,0-5%,EA004-0,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +49059,Aa1,EA040,Absence or near absence,EA040-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +49060,Aa2,EA040,Absence or near absence,EA040-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +49061,Aa3,EA040,Bovine,EA040-7,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +49062,Aa4,EA040,?,EA040-NA,,,,,, +49063,Aa5,EA040,Absence or near absence,EA040-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +49064,Aa6,EA040,Bovine,EA040-7,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p63, +49065,Aa7,EA040,Absence or near absence,EA040-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +49066,Aa8,EA040,Absence or near absence,EA040-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +49067,Aa9,EA040,Absence or near absence,EA040-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +49068,Ab1,EA040,Bovine,EA040-7,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p63, +49069,Ab10,EA040,Bovine,EA040-7,,hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +49070,Ab11,EA040,Bovine,EA040-7,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +49071,Ab12,EA040,Bovine,EA040-7,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p63, +49072,Ab13,EA040,Bovine,EA040-7,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +49073,Ab14,EA040,Bovine,EA040-7,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +49074,Ab15,EA040,Bovine,EA040-7,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +49075,Ab16,EA040,Sheep/goats,EA040-3,,earthy1933,,1930,EthnographicAtlas_1967_p63, +49076,Ab17,EA040,?,EA040-NA,,,,,, +49077,Ab18,EA040,Bovine,EA040-7,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +49078,Ab19,EA040,Bovine,EA040-7,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +49079,Ab2,EA040,Bovine,EA040-7,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +49080,Ab20,EA040,?,EA040-NA,,,,,, +49081,Ab21a,EA040,Sheep/goats,EA040-3,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +49082,Ab21b,EA040,?,EA040-NA,,,,,, +49083,Ab22,EA040,?,EA040-NA,,,,,, +49084,Ab3,EA040,Bovine,EA040-7,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +49085,Ab4,EA040,Bovine,EA040-7,,junod1927,,1920,EthnographicAtlas_1967_p63, +49086,Ab5,EA040,Bovine,EA040-7,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +49087,Ab6,EA040,Bovine,EA040-7,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +49088,Ab7,EA040,Bovine,EA040-7,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p63, +49089,Ab8,EA040,Bovine,EA040-7,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +49090,Ab9,EA040,Bovine,EA040-7,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +49091,Ac1,EA040,Bovine,EA040-7,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +49092,Ac10,EA040,Bovine,EA040-7,But goats and sheep are more numerous than cattle,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +49093,Ac11,EA040,Sheep/goats,EA040-3,A few cattle are kept today,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +49094,Ac12,EA040,Sheep/goats,EA040-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p63, +49095,Ac13,EA040,Sheep/goats,EA040-3,But a very few exceptional individuals keep cattle,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p63, +49096,Ac14,EA040,Sheep/goats,EA040-3,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p63, +49097,Ac15,EA040,?,EA040-NA,,,,,, +49098,Ac16,EA040,Sheep/goats,EA040-3,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +49099,Ac17,EA040,Sheep/goats,EA040-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +49100,Ac18,EA040,Sheep/goats,EA040-3,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +49101,Ac19,EA040,Sheep/goats,EA040-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +49102,Ac2,EA040,Sheep/goats,EA040-3,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p63, +49103,Ac20,EA040,Sheep/goats,EA040-3,"A few cattle, which are not milked",milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +49104,Ac21,EA040,Sheep/goats,EA040-3,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p63, +49105,Ac22,EA040,Sheep/goats,EA040-3,,mertens1935,,1930,EthnographicAtlas_1967_p63, +49106,Ac23,EA040,Sheep/goats,EA040-3,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +49107,Ac24,EA040,Sheep/goats,EA040-3,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +49108,Ac25,EA040,Sheep/goats,EA040-3,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p63, +49109,Ac26,EA040,Sheep/goats,EA040-3,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +49110,Ac27,EA040,Sheep/goats,EA040-3,But cattle are kept in the extreme west,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +49111,Ac28,EA040,Bovine,EA040-7,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p63, +49112,Ac29,EA040,?,EA040-NA,,,,,, +49113,Ac3,EA040,Sheep/goats,EA040-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +49114,Ac30,EA040,Bovine,EA040-7,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +49115,Ac31,EA040,Sheep/goats,EA040-3,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +49116,Ac32,EA040,Absence or near absence,EA040-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +49117,Ac33,EA040,Sheep/goats,EA040-3,A very few cattle were kept,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +49118,Ac34,EA040,Sheep/goats,EA040-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +49119,Ac35,EA040,?,EA040-NA,,,,,, +49120,Ac36,EA040,Sheep/goats,EA040-3,But cattle were formerly kept,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +49121,Ac37,EA040,Sheep/goats,EA040-3,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +49122,Ac38,EA040,Sheep/goats,EA040-3,"A few cattle, which are not milked",malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p63, +49123,Ac39,EA040,?,EA040-NA,A few cattle are kept,johnson1922;tew1950,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +49124,Ac4,EA040,Sheep/goats,EA040-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +49125,Ac40,EA040,Sheep/goats,EA040-3,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +49126,Ac41,EA040,Sheep/goats,EA040-3,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +49127,Ac42,EA040,?,EA040-NA,,,,,, +49128,Ac43,EA040,Bovine,EA040-7,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +49129,Ac5,EA040,Absence or near absence,EA040-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +49130,Ac6,EA040,Sheep/goats,EA040-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p63, +49131,Ac7,EA040,Absence or near absence,EA040-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +49132,Ac8,EA040,Sheep/goats,EA040-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +49133,Ac9,EA040,Bovine,EA040-7,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +49134,Ad1,EA040,Bovine,EA040-7,,grottanelli1955,,1950,EthnographicAtlas_1967_p63, +49135,Ad10,EA040,Bovine,EA040-7,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +49136,Ad11,EA040,Bovine,EA040-7,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +49137,Ad12,EA040,Bovine,EA040-7,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +49138,Ad13,EA040,Bovine,EA040-7,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +49139,Ad14,EA040,Sheep/goats,EA040-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +49140,Ad15,EA040,Sheep/goats,EA040-3,But some cattle are kept,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +49141,Ad16,EA040,Bovine,EA040-7,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +49142,Ad17,EA040,Bovine,EA040-7,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +49143,Ad18,EA040,Sheep/goats,EA040-3,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +49144,Ad19,EA040,Bovine,EA040-7,"But 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"") in some districts",fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +49145,Ad2,EA040,Bovine,EA040-7,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +49146,Ad20,EA040,Bovine,EA040-7,The occasional cattle are tended by alien Tusi or Sangu herdsmen,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +49147,Ad21,EA040,Sheep/goats,EA040-3,,maurice193538,,1930,EthnographicAtlas_1967_p67, +49148,Ad22,EA040,Bovine,EA040-7,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +49149,Ad23,EA040,Bovine,EA040-7,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +49150,Ad24,EA040,Bovine,EA040-7,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +49151,Ad25,EA040,Bovine,EA040-7,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +49152,Ad26,EA040,Bovine,EA040-7,,sick1916,,1910,Ethnology_Vol7_No2_Apr_1968, +49153,Ad27,EA040,Sheep/goats,EA040-3,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +49154,Ad28,EA040,Bovine,EA040-7,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +49155,Ad29,EA040,Bovine,EA040-7,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p67, +49156,Ad3,EA040,Bovine,EA040-7,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +49157,Ad30,EA040,Sheep/goats,EA040-3,Also a very few cattle,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p67, +49158,Ad31,EA040,?,EA040-NA,,,,,, +49159,Ad32,EA040,Bovine,EA040-7,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p67, +49160,Ad33,EA040,Absence or near absence,EA040-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p67, +49161,Ad34,EA040,Bovine,EA040-7,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +49162,Ad35,EA040,Bovine,EA040-7,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p67, +49163,Ad36,EA040,Bovine,EA040-7,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +49164,Ad37,EA040,Bovine,EA040-7,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +49165,Ad38,EA040,Bovine,EA040-7,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +49166,Ad39,EA040,Sheep/goats,EA040-3,,gray1963,,1950,EthnographicAtlas_1967_p67, +49167,Ad4,EA040,Bovine,EA040-7,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +49168,Ad40,EA040,Bovine,EA040-7,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +49169,Ad41,EA040,Bovine,EA040-7,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p67, +49170,Ad42,EA040,Bovine,EA040-7,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +49171,Ad43,EA040,Bovine,EA040-7,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +49172,Ad44,EA040,Sheep/goats,EA040-3,Occasional cattle tended by Hima herders,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p67, +49173,Ad45,EA040,Bovine,EA040-7,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +49174,Ad46,EA040,Bovine,EA040-7,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p67, +49175,Ad47,EA040,Sheep/goats,EA040-3,The occasional cattle are tended by immigrant Tusi headsmen,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +49176,Ad48,EA040,Bovine,EA040-7,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +49177,Ad49,EA040,Bovine,EA040-7,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +49178,Ad5,EA040,?,EA040-NA,,,,,, +49179,Ad50,EA040,Bovine,EA040-7,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +49180,Ad51,EA040,Sheep/goats,EA040-3,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +49181,Ad6,EA040,Bovine,EA040-7,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +49182,Ad7,EA040,Bovine,EA040-7,But goats are far more numerous than cattle,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +49183,Ad8,EA040,Bovine,EA040-7,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +49184,Ad9,EA040,Bovine,EA040-7,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +49185,Ae1,EA040,Sheep/goats,EA040-3,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67, +49186,Ae10,EA040,Bovine,EA040-7,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +49187,Ae11,EA040,Sheep/goats,EA040-3,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +49188,Ae12,EA040,Sheep/goats,EA040-3,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +49189,Ae13,EA040,?,EA040-NA,,,,,, +49190,Ae14,EA040,Bovine,EA040-7,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +49191,Ae15,EA040,Bovine,EA040-7,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p67, +49192,Ae16,EA040,?,EA040-NA,,,,,, +49193,Ae17,EA040,Sheep/goats,EA040-3,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +49194,Ae18,EA040,Sheep/goats,EA040-3,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +49195,Ae19,EA040,?,EA040-NA,,,,,, +49196,Ae2,EA040,Bovine,EA040-7,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +49197,Ae20,EA040,Sheep/goats,EA040-3,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +49198,Ae21,EA040,Sheep/goats,EA040-3,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +49199,Ae22,EA040,Sheep/goats,EA040-3,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p67, +49200,Ae23,EA040,?,EA040-NA,,,,,, +49201,Ae24,EA040,?,EA040-NA,,,,,, +49202,Ae25,EA040,?,EA040-NA,,,,,, +49203,Ae26,EA040,Sheep/goats,EA040-3,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +49204,Ae27,EA040,Sheep/goats,EA040-3,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +49205,Ae28,EA040,Sheep/goats,EA040-3,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +49206,Ae29,EA040,Sheep/goats,EA040-3,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p67, +49207,Ae3,EA040,Sheep/goats,EA040-3,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +49208,Ae30,EA040,Sheep/goats,EA040-3,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +49209,Ae31,EA040,Absence or near absence,EA040-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +49210,Ae32,EA040,Sheep/goats,EA040-3,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +49211,Ae33,EA040,Sheep/goats,EA040-3,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +49212,Ae34,EA040,Sheep/goats,EA040-3,Cattle are rare and are usually herded by immigrant Hima,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +49213,Ae35,EA040,Sheep/goats,EA040-3,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +49214,Ae36,EA040,Absence or near absence,EA040-1,"Possibly goats, though not specifically reported",verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +49215,Ae37,EA040,?,EA040-NA,,,,,, +49216,Ae38,EA040,Absence or near absence,EA040-1,"Possibly 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1""), though there is no specific mention of goats",wijnant192526,,1920,EthnographicAtlas_1967_p67, +49217,Ae39,EA040,Absence or near absence,EA040-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +49218,Ae4,EA040,Sheep/goats,EA040-3,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +49219,Ae40,EA040,Sheep/goats,EA040-3,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +49220,Ae41,EA040,Sheep/goats,EA040-3,,andersson1953,,1940,EthnographicAtlas_1967_p67, +49221,Ae42,EA040,Sheep/goats,EA040-3,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +49222,Ae43,EA040,Sheep/goats,EA040-3,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +49223,Ae44,EA040,Sheep/goats,EA040-3,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +49224,Ae45,EA040,Bovine,EA040-7,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +49225,Ae46,EA040,Absence or near absence,EA040-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +49226,Ae47,EA040,Sheep/goats,EA040-3,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +49227,Ae48,EA040,Sheep/goats,EA040-3,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p67, +49228,Ae49,EA040,?,EA040-NA,,,,,, +49229,Ae5,EA040,Absence or near absence,EA040-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p67, +49230,Ae50,EA040,Sheep/goats,EA040-3,"But there are a few cattle, tended by Fulani herdsmen",hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p67, +49231,Ae51,EA040,Sheep/goats,EA040-3,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p67, +49232,Ae52,EA040,?,EA040-NA,,,,,, +49233,Ae53,EA040,?,EA040-NA,,,,,, +49234,Ae54,EA040,?,EA040-NA,,,,,, +49235,Ae55,EA040,Sheep/goats,EA040-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +49236,Ae56,EA040,Sheep/goats,EA040-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +49237,Ae57,EA040,Sheep/goats,EA040-3,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +49238,Ae58,EA040,Sheep/goats,EA040-3,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +49239,Ae59,EA040,?,EA040-NA,,,,,, +49240,Ae6,EA040,Sheep/goats,EA040-3,,verhulpen1936,with special reference to the Bena Kalundwe,1930,Ethnology_Vol7_No2_Apr_1968, +49241,Ae7,EA040,Bovine,EA040-7,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +49242,Ae8,EA040,Bovine,EA040-7,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +49243,Ae9,EA040,Sheep/goats,EA040-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +49244,Af1,EA040,Sheep/goats,EA040-3,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +49245,Af10,EA040,Bovine,EA040-7,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +49246,Af11,EA040,Bovine,EA040-7,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +49247,Af12,EA040,Sheep/goats,EA040-3,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +49248,Af13,EA040,Bovine,EA040-7,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +49249,Af14,EA040,Bovine,EA040-7,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p71, +49250,Af15,EA040,Bovine,EA040-7,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +49251,Af16,EA040,Sheep/goats,EA040-3,Formerly a few cattle,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +49252,Af17,EA040,Bovine,EA040-7,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +49253,Af18,EA040,Bovine,EA040-7,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +49254,Af19,EA040,Bovine,EA040-7,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +49255,Af2,EA040,Bovine,EA040-7,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +49256,Af20,EA040,Bovine,EA040-7,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +49257,Af21,EA040,Bovine,EA040-7,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +49258,Af22,EA040,Sheep/goats,EA040-3,Also a few dwarf cattle,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p71, +49259,Af23,EA040,Bovine,EA040-7,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +49260,Af24,EA040,Sheep/goats,EA040-3,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +49261,Af25,EA040,Sheep/goats,EA040-3,Also a few cattle,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +49262,Af26,EA040,Bovine,EA040-7,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +49263,Af27,EA040,Sheep/goats,EA040-3,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +49264,Af28,EA040,Sheep/goats,EA040-3,"There are also a fair number of cattle, but they are owned, herded and milked exclusively by Fulani",gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +49265,Af29,EA040,Sheep/goats,EA040-3,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +49266,Af3,EA040,Sheep/goats,EA040-3,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +49267,Af30,EA040,Bovine,EA040-7,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +49268,Af31,EA040,?,EA040-NA,,,,,, +49269,Af32,EA040,Sheep/goats,EA040-3,Also a few dwarf cattle,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49270,Af33,EA040,Bovine,EA040-7,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49271,Af34,EA040,Sheep/goats,EA040-3,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49272,Af35,EA040,Sheep/goats,EA040-3,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +49273,Af36,EA040,Sheep/goats,EA040-3,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p71, +49274,Af37,EA040,Sheep/goats,EA040-3,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +49275,Af38,EA040,Sheep/goats,EA040-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +49276,Af39,EA040,Sheep/goats,EA040-3,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +49277,Af4,EA040,Bovine,EA040-7,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +49278,Af40,EA040,Bovine,EA040-7,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +49279,Af41,EA040,Bovine,EA040-7,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +49280,Af42,EA040,Sheep/goats,EA040-3,Also a few cattle,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p71, +49281,Af43,EA040,Sheep/goats,EA040-3,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p71, +49282,Af44,EA040,?,EA040-NA,,,,,, +49283,Af45,EA040,Sheep/goats,EA040-3,Also a few cattle,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +49284,Af46,EA040,Bovine,EA040-7,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +49285,Af47,EA040,Bovine,EA040-7,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +49286,Af48,EA040,Bovine,EA040-7,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +49287,Af49,EA040,Bovine,EA040-7,,schwab1947,,1940,EthnographicAtlas_1967_p71, +49288,Af5,EA040,Sheep/goats,EA040-3,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +49289,Af50,EA040,Sheep/goats,EA040-3,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +49290,Af51,EA040,Sheep/goats,EA040-3,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +49291,Af52,EA040,Bovine,EA040-7,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +49292,Af53,EA040,Sheep/goats,EA040-3,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +49293,Af54,EA040,Bovine,EA040-7,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +49294,Af55,EA040,Sheep/goats,EA040-3,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +49295,Af56,EA040,Bovine,EA040-7,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +49296,Af57,EA040,Bovine,EA040-7,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +49297,Af58,EA040,Bovine,EA040-7,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +49298,Af6,EA040,Sheep/goats,EA040-3,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +49299,Af7,EA040,Sheep/goats,EA040-3,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +49300,Af8,EA040,Sheep/goats,EA040-3,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +49301,Af9,EA040,Sheep/goats,EA040-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p71, +49302,Ag1,EA040,Bovine,EA040-7,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +49303,Ag10,EA040,Bovine,EA040-7,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +49304,Ag11,EA040,Bovine,EA040-7,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +49305,Ag12,EA040,Bovine,EA040-7,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +49306,Ag13,EA040,Bovine,EA040-7,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +49307,Ag14,EA040,Bovine,EA040-7,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +49308,Ag15,EA040,Bovine,EA040-7,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +49309,Ag16,EA040,Pigs,EA040-2,"Also a few cattle, sheep, and goats",bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p71, +49310,Ag17,EA040,Pigs,EA040-2,"Inferentially also a few cattle, sheep, and goats",gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +49311,Ag18,EA040,Bovine,EA040-7,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p71, +49312,Ag19,EA040,Bovine,EA040-7,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p71, +49313,Ag2,EA040,Bovine,EA040-7,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +49314,Ag20,EA040,Bovine,EA040-7,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +49315,Ag21,EA040,Bovine,EA040-7,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +49316,Ag22,EA040,Bovine,EA040-7,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p71, +49317,Ag23,EA040,Bovine,EA040-7,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +49318,Ag24,EA040,Bovine,EA040-7,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +49319,Ag25,EA040,Bovine,EA040-7,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p71, +49320,Ag26,EA040,Bovine,EA040-7,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p71, +49321,Ag27,EA040,Sheep/goats,EA040-3,Also a few cattle,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +49322,Ag28,EA040,Bovine,EA040-7,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +49323,Ag29,EA040,Sheep/goats,EA040-3,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +49324,Ag3,EA040,Bovine,EA040-7,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p71, +49325,Ag30,EA040,Sheep/goats,EA040-3,Cattle are few and are commonly tended by Fulani,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p71, +49326,Ag31,EA040,Sheep/goats,EA040-3,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p71, +49327,Ag32,EA040,Sheep/goats,EA040-3,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p71, +49328,Ag33,EA040,Bovine,EA040-7,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +49329,Ag34,EA040,Bovine,EA040-7,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +49330,Ag35,EA040,Sheep/goats,EA040-3,Also a few cattle,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +49331,Ag36,EA040,Bovine,EA040-7,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +49332,Ag37,EA040,Bovine,EA040-7,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +49333,Ag38,EA040,Bovine,EA040-7,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +49334,Ag39,EA040,Bovine,EA040-7,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +49335,Ag4,EA040,Bovine,EA040-7,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +49336,Ag40,EA040,Bovine,EA040-7,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +49337,Ag41,EA040,Bovine,EA040-7,Cattle are commonly tended by Fulani herdsmen,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +49338,Ag42,EA040,Bovine,EA040-7,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +49339,Ag43,EA040,Sheep/goats,EA040-3,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +49340,Ag44,EA040,Sheep/goats,EA040-3,Also a few cattle,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +49341,Ag45,EA040,Bovine,EA040-7,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +49342,Ag46,EA040,Bovine,EA040-7,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +49343,Ag47,EA040,Bovine,EA040-7,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +49344,Ag48,EA040,Bovine,EA040-7,But herding and milking are done mainly by Fulani,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p75, +49345,Ag49,EA040,Bovine,EA040-7,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +49346,Ag5,EA040,Bovine,EA040-7,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +49347,Ag50,EA040,Bovine,EA040-7,But cattle are tended and milked only by Fulani,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +49348,Ag51,EA040,Bovine,EA040-7,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +49349,Ag52,EA040,Bovine,EA040-7,Cattle are tended almost exclusively by Fulani,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +49350,Ag53,EA040,Bovine,EA040-7,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +49351,Ag54,EA040,Bovine,EA040-7,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +49352,Ag6,EA040,Bovine,EA040-7,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +49353,Ag7,EA040,Absence or near absence,EA040-1,But the Fulani of Masina pasture their herds in Bozo country in the dry season,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +49354,Ag8,EA040,Bovine,EA040-7,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +49355,Ag9,EA040,Bovine,EA040-7,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p71, +49356,Ah1,EA040,Sheep/goats,EA040-3,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49357,Ah10,EA040,Sheep/goats,EA040-3,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +49358,Ah11,EA040,Sheep/goats,EA040-3,,gunnandconant1960,,1950,EthnographicAtlas_1967_p75, +49359,Ah12,EA040,Sheep/goats,EA040-3,Also a few cattle,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +49360,Ah13,EA040,Sheep/goats,EA040-3,Also a few cattle,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +49361,Ah14,EA040,Sheep/goats,EA040-3,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +49362,Ah15,EA040,Sheep/goats,EA040-3,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p75, +49363,Ah16,EA040,Sheep/goats,EA040-3,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +49364,Ah17,EA040,Sheep/goats,EA040-3,Also a very few cattle (not milked) and a fair number of horses,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +49365,Ah18,EA040,Sheep/goats,EA040-3,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +49366,Ah19,EA040,Sheep/goats,EA040-3,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p75, +49367,Ah2,EA040,Sheep/goats,EA040-3,,meek1931a,,1920,EthnographicAtlas_1967_p75, +49368,Ah20,EA040,Sheep/goats,EA040-3,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +49369,Ah21,EA040,?,EA040-NA,,,,,, +49370,Ah22,EA040,?,EA040-NA,,,,,, +49371,Ah23,EA040,?,EA040-NA,,,,,, +49372,Ah24,EA040,?,EA040-NA,,,,,, +49373,Ah25,EA040,Sheep/goats,EA040-3,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +49374,Ah26,EA040,Sheep/goats,EA040-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +49375,Ah27,EA040,Sheep/goats,EA040-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +49376,Ah28,EA040,Sheep/goats,EA040-3,Apparently also a few cattle,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +49377,Ah29,EA040,Sheep/goats,EA040-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +49378,Ah3,EA040,Sheep/goats,EA040-3,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +49379,Ah30,EA040,Bovine,EA040-7,,meek1931b,,1920,EthnographicAtlas_1967_p75, +49380,Ah31,EA040,Bovine,EA040-7,But sheep and goats greatly outnumber cattle,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p75, +49381,Ah32,EA040,Sheep/goats,EA040-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +49382,Ah33,EA040,Bovine,EA040-7,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p75, +49383,Ah34,EA040,Bovine,EA040-7,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +49384,Ah35,EA040,Bovine,EA040-7,But cattle are tended almost exclusively by Fulani,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +49385,Ah36,EA040,Sheep/goats,EA040-3,Also a few cattle,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +49386,Ah37,EA040,Bovine,EA040-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +49387,Ah38,EA040,Sheep/goats,EA040-3,But a few cattle are kept,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +49388,Ah39,EA040,Bovine,EA040-7,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +49389,Ah4,EA040,Sheep/goats,EA040-3,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p75, +49390,Ah5,EA040,Bovine,EA040-7,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +49391,Ah6,EA040,Sheep/goats,EA040-3,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +49392,Ah7,EA040,Sheep/goats,EA040-3,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +49393,Ah8,EA040,Sheep/goats,EA040-3,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +49394,Ah9,EA040,Sheep/goats,EA040-3,"Diamond reports 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"")",diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75,"Assume Murdock comment refers to col 39, not col 30 as stated in Gray (1999); in that case however the codes for EA039/EA040/EA041 are as reported by Diamond." +49395,Ai1,EA040,Sheep/goats,EA040-3,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p75, +49396,Ai10,EA040,Bovine,EA040-7,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p75, +49397,Ai11,EA040,Sheep/goats,EA040-3,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +49398,Ai12,EA040,Sheep/goats,EA040-3,Also a few cattle,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +49399,Ai13,EA040,Sheep/goats,EA040-3,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +49400,Ai14,EA040,Sheep/goats,EA040-3,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +49401,Ai15,EA040,Bovine,EA040-7,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +49402,Ai16,EA040,Bovine,EA040-7,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +49403,Ai17,EA040,Sheep/goats,EA040-3,But cattle were formerly kept,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +49404,Ai18,EA040,Bovine,EA040-7,"Only a few cattle, tended exclusively by Arab herdsmen",lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +49405,Ai19,EA040,Bovine,EA040-7,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +49406,Ai2,EA040,?,EA040-NA,,,,,, +49407,Ai20,EA040,Bovine,EA040-7,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +49408,Ai21,EA040,Bovine,EA040-7,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +49409,Ai22,EA040,Bovine,EA040-7,,delafosse1897,,1890,EthnographicAtlas_1967_p75, +49410,Ai23,EA040,Sheep/goats,EA040-3,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +49411,Ai24,EA040,Sheep/goats,EA040-3,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +49412,Ai25,EA040,Sheep/goats,EA040-3,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +49413,Ai26,EA040,Sheep/goats,EA040-3,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p75, +49414,Ai27,EA040,Sheep/goats,EA040-3,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +49415,Ai28,EA040,Sheep/goats,EA040-3,A few goats but no sheep,delhaise1912,,1910,EthnographicAtlas_1967_p75, +49416,Ai29,EA040,Bovine,EA040-7,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +49417,Ai3,EA040,Absence or near absence,EA040-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +49418,Ai30,EA040,Sheep/goats,EA040-3,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +49419,Ai31,EA040,Sheep/goats,EA040-3,Also a very few cattle,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +49420,Ai32,EA040,Bovine,EA040-7,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +49421,Ai33,EA040,Bovine,EA040-7,But goats are much more numerous than cattle,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +49422,Ai34,EA040,Bovine,EA040-7,But goats greatly outnumber cattle,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +49423,Ai35,EA040,Sheep/goats,EA040-3,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +49424,Ai36,EA040,Bovine,EA040-7,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +49425,Ai37,EA040,Bovine,EA040-7,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +49426,Ai38,EA040,Bovine,EA040-7,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +49427,Ai39,EA040,Bovine,EA040-7,,nadel1947,,1940,EthnographicAtlas_1967_p75, +49428,Ai4,EA040,Bovine,EA040-7,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +49429,Ai40,EA040,Bovine,EA040-7,,nadel1947,,1940,EthnographicAtlas_1967_p75, +49430,Ai41,EA040,Bovine,EA040-7,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +49431,Ai42,EA040,Bovine,EA040-7,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p75, +49432,Ai43,EA040,Bovine,EA040-7,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p75, +49433,Ai44,EA040,Sheep/goats,EA040-3,A few cattle are also kept,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +49434,Ai45,EA040,Bovine,EA040-7,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +49435,Ai46,EA040,Sheep/goats,EA040-3,A few cattle are also kept,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p75, +49436,Ai47,EA040,Bovine,EA040-7,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +49437,Ai5,EA040,Sheep/goats,EA040-3,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +49438,Ai6,EA040,Bovine,EA040-7,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +49439,Ai7,EA040,Sheep/goats,EA040-3,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +49440,Ai8,EA040,Bovine,EA040-7,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p75, +49441,Ai9,EA040,Bovine,EA040-7,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +49442,Aj1,EA040,Bovine,EA040-7,,lawrance1957,,1950,EthnographicAtlas_1967_p75, +49443,Aj10,EA040,Sheep/goats,EA040-3,But a few cattle are kept,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +49444,Aj11,EA040,Bovine,EA040-7,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +49445,Aj12,EA040,Bovine,EA040-7,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +49446,Aj13,EA040,Bovine,EA040-7,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +49447,Aj14,EA040,Bovine,EA040-7,But goats greatly outnumber cattle,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +49448,Aj15,EA040,Bovine,EA040-7,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +49449,Aj16,EA040,Bovine,EA040-7,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p79, +49450,Aj17,EA040,Bovine,EA040-7,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +49451,Aj18,EA040,Bovine,EA040-7,,jensen1959,,1950,EthnographicAtlas_1967_p79, +49452,Aj19,EA040,Bovine,EA040-7,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p79, +49453,Aj2,EA040,Bovine,EA040-7,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +49454,Aj20,EA040,Bovine,EA040-7,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p79, +49455,Aj21,EA040,Bovine,EA040-7,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +49456,Aj22,EA040,Bovine,EA040-7,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +49457,Aj23,EA040,Bovine,EA040-7,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +49458,Aj24,EA040,Bovine,EA040-7,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +49459,Aj25,EA040,Bovine,EA040-7,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +49460,Aj26,EA040,Bovine,EA040-7,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p79, +49461,Aj27,EA040,Bovine,EA040-7,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +49462,Aj28,EA040,Bovine,EA040-7,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +49463,Aj29,EA040,Bovine,EA040-7,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +49464,Aj3,EA040,Bovine,EA040-7,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +49465,Aj30,EA040,?,EA040-NA,,,,,, +49466,Aj31,EA040,?,EA040-NA,,,,,, +49467,Aj4,EA040,Bovine,EA040-7,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +49468,Aj5,EA040,Bovine,EA040-7,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +49469,Aj6,EA040,Bovine,EA040-7,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +49470,Aj7,EA040,Bovine,EA040-7,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +49471,Aj8,EA040,Bovine,EA040-7,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +49472,Aj9,EA040,Bovine,EA040-7,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +49473,Ca1,EA040,Bovine,EA040-7,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +49474,Ca10,EA040,Camelids,EA040-6,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +49475,Ca11,EA040,Bovine,EA040-7,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p79, +49476,Ca12,EA040,Bovine,EA040-7,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p79, +49477,Ca13,EA040,Bovine,EA040-7,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p79, +49478,Ca14,EA040,Bovine,EA040-7,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p79, +49479,Ca15,EA040,Bovine,EA040-7,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +49480,Ca16,EA040,Bovine,EA040-7,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +49481,Ca17,EA040,Bovine,EA040-7,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +49482,Ca18,EA040,Bovine,EA040-7,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +49483,Ca19,EA040,Bovine,EA040-7,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +49484,Ca2,EA040,Camelids,EA040-6,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +49485,Ca20,EA040,Bovine,EA040-7,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +49486,Ca21,EA040,Bovine,EA040-7,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +49487,Ca22,EA040,Bovine,EA040-7,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +49488,Ca23,EA040,Bovine,EA040-7,,jensen1959,,1950,EthnographicAtlas_1967_p79, +49489,Ca24,EA040,Bovine,EA040-7,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +49490,Ca25,EA040,Bovine,EA040-7,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +49491,Ca26,EA040,Bovine,EA040-7,But sheep are much more numerous than cattle,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +49492,Ca27,EA040,Bovine,EA040-7,But cattle are scarce,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +49493,Ca28,EA040,Bovine,EA040-7,But sheep and goats greatly outnumber cattle,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p79, +49494,Ca29,EA040,Bovine,EA040-7,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p79, +49495,Ca3,EA040,Bovine,EA040-7,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +49496,Ca30,EA040,Bovine,EA040-7,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p79, +49497,Ca31,EA040,Bovine,EA040-7,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +49498,Ca32,EA040,Bovine,EA040-7,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +49499,Ca33,EA040,Bovine,EA040-7,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +49500,Ca34,EA040,Camelids,EA040-6,But cattle are more numerous than camels,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +49501,Ca35,EA040,Camelids,EA040-6,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +49502,Ca36,EA040,Camelids,EA040-6,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +49503,Ca37,EA040,Bovine,EA040-7,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +49504,Ca38,EA040,Bovine,EA040-7,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +49505,Ca39,EA040,Bovine,EA040-7,,lewis1965b,,1930,EthnographicAtlas_1967_p79, +49506,Ca4,EA040,Bovine,EA040-7,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p79, +49507,Ca40,EA040,Bovine,EA040-7,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +49508,Ca41,EA040,Bovine,EA040-7,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +49509,Ca42,EA040,Bovine,EA040-7,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +49510,Ca43,EA040,?,EA040-NA,,,,,, +49511,Ca5,EA040,Camelids,EA040-6,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p79, +49512,Ca6,EA040,Camelids,EA040-6,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +49513,Ca7,EA040,Bovine,EA040-7,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +49514,Ca8,EA040,Bovine,EA040-7,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p79, +49515,Ca9,EA040,Bovine,EA040-7,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +49516,Cb1,EA040,?,EA040-NA,,,,,, +49517,Cb10,EA040,Bovine,EA040-7,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +49518,Cb11,EA040,Bovine,EA040-7,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +49519,Cb12,EA040,Bovine,EA040-7,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +49520,Cb13,EA040,Bovine,EA040-7,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +49521,Cb14,EA040,Bovine,EA040-7,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +49522,Cb15,EA040,Bovine,EA040-7,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +49523,Cb16,EA040,Bovine,EA040-7,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +49524,Cb17,EA040,Bovine,EA040-7,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +49525,Cb18,EA040,Bovine,EA040-7,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p79, +49526,Cb19,EA040,Bovine,EA040-7,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +49527,Cb2,EA040,Bovine,EA040-7,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +49528,Cb20,EA040,Bovine,EA040-7,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +49529,Cb21,EA040,Bovine,EA040-7,,pfeffer1936,,1930,EthnographicAtlas_1967_p83, +49530,Cb22,EA040,Bovine,EA040-7,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +49531,Cb23,EA040,Bovine,EA040-7,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p83, +49532,Cb24,EA040,Bovine,EA040-7,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +49533,Cb25,EA040,Bovine,EA040-7,But cattle are mainly tended by Fulani,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +49534,Cb26,EA040,Bovine,EA040-7,But cattle are mainly tended by Fulani,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +49535,Cb27,EA040,Bovine,EA040-7,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +49536,Cb28,EA040,Equine,EA040-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +49537,Cb29,EA040,?,EA040-NA,,,,,, +49538,Cb3,EA040,Bovine,EA040-7,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +49539,Cb4,EA040,Bovine,EA040-7,,reid1930,,1920,EthnographicAtlas_1967_p79, +49540,Cb5,EA040,Bovine,EA040-7,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p79, +49541,Cb6,EA040,Equine,EA040-4,Also goats and a few cattle,woodnd,,1920,EthnographicAtlas_1967_p79, +49542,Cb7,EA040,Bovine,EA040-7,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +49543,Cb8,EA040,Bovine,EA040-7,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +49544,Cb9,EA040,Bovine,EA040-7,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +49545,Cc1,EA040,Camelids,EA040-6,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +49546,Cc10,EA040,Camelids,EA040-6,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +49547,Cc11,EA040,Camelids,EA040-6,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +49548,Cc12,EA040,Camelids,EA040-6,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +49549,Cc13,EA040,Camelids,EA040-6,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +49550,Cc14,EA040,Bovine,EA040-7,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +49551,Cc15,EA040,?,EA040-NA,,,,,, +49552,Cc16,EA040,Camelids,EA040-6,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +49553,Cc17,EA040,Camelids,EA040-6,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p83, +49554,Cc18,EA040,Bovine,EA040-7,Also a few camels and many sheep,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +49555,Cc19,EA040,Bovine,EA040-7,Also camels in the north and many sheep,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +49556,Cc2,EA040,Camelids,EA040-6,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +49557,Cc20,EA040,Camelids,EA040-6,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p83, +49558,Cc3,EA040,Bovine,EA040-7,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +49559,Cc4,EA040,Sheep/goats,EA040-3,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +49560,Cc5,EA040,Camelids,EA040-6,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p83, +49561,Cc6,EA040,Camelids,EA040-6,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +49562,Cc7,EA040,Camelids,EA040-6,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49563,Cc8,EA040,?,EA040-NA,,,,,, +49564,Cc9,EA040,Camelids,EA040-6,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +49565,Cd1,EA040,Bovine,EA040-7,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +49566,Cd10,EA040,Bovine,EA040-7,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +49567,Cd11,EA040,Sheep/goats,EA040-3,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p83, +49568,Cd12,EA040,Bovine,EA040-7,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +49569,Cd13,EA040,Sheep/goats,EA040-3,Also camels and a few cattle,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +49570,Cd14,EA040,Sheep/goats,EA040-3,Also a few camels and cattle,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +49571,Cd15,EA040,Bovine,EA040-7,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +49572,Cd16,EA040,Bovine,EA040-7,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +49573,Cd17,EA040,Camelids,EA040-6,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +49574,Cd18,EA040,Camelids,EA040-6,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +49575,Cd19,EA040,Sheep/goats,EA040-3,Also a few cattle and camels,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +49576,Cd2,EA040,Bovine,EA040-7,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +49577,Cd20,EA040,Camelids,EA040-6,But goats and sheep predominate,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +49578,Cd21,EA040,Bovine,EA040-7,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +49579,Cd3,EA040,Bovine,EA040-7,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +49580,Cd4,EA040,Bovine,EA040-7,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +49581,Cd5,EA040,Bovine,EA040-7,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +49582,Cd6,EA040,Bovine,EA040-7,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +49583,Cd7,EA040,Bovine,EA040-7,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +49584,Cd8,EA040,Bovine,EA040-7,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +49585,Cd9,EA040,Bovine,EA040-7,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +49586,Ce1,EA040,Bovine,EA040-7,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +49587,Ce2,EA040,?,EA040-NA,,,,,, +49588,Ce3,EA040,Bovine,EA040-7,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +49589,Ce4,EA040,Bovine,EA040-7,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49590,Ce5,EA040,Bovine,EA040-7,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +49591,Ce6,EA040,Bovine,EA040-7,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +49592,Ce7,EA040,Bovine,EA040-7,But principally sheep and horses,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +49593,Ce8,EA040,Bovine,EA040-7,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +49594,Cf1,EA040,Bovine,EA040-7,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +49595,Cf2,EA040,Bovine,EA040-7,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No4_Oct_1962, +49596,Cf3,EA040,Bovine,EA040-7,,munch1945,,1930,EthnographicAtlas_1967_p83, +49597,Cf4,EA040,Bovine,EA040-7,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +49598,Cf5,EA040,Bovine,EA040-7,,miner1939,,1930,EthnographicAtlas_1967_p83, +49599,Cg1,EA040,Bovine,EA040-7,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +49600,Cg2,EA040,Bovine,EA040-7,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +49601,Cg3,EA040,Bovine,EA040-7,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +49602,Cg4,EA040,Deer,EA040-5,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +49603,Cg5,EA040,Bovine,EA040-7,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +49604,Ch1,EA040,Bovine,EA040-7,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +49605,Ch10,EA040,?,EA040-NA,,,,,, +49606,Ch11,EA040,Bovine,EA040-7,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +49607,Ch2,EA040,Bovine,EA040-7,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +49608,Ch3,EA040,Bovine,EA040-7,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +49609,Ch4,EA040,Bovine,EA040-7,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p83, +49610,Ch5,EA040,Bovine,EA040-7,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +49611,Ch6,EA040,Bovine,EA040-7,,ember1954,,1910,EthnographicAtlas_1967_p83, +49612,Ch7,EA040,Bovine,EA040-7,,friedrich1954,,1930,EthnographicAtlas_1967_p83, +49613,Ch8,EA040,Bovine,EA040-7,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +49614,Ch9,EA040,Bovine,EA040-7,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +49615,Ci1,EA040,Bovine,EA040-7,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p83, +49616,Ci10,EA040,Bovine,EA040-7,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +49617,Ci11,EA040,Bovine,EA040-7,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +49618,Ci12,EA040,Bovine,EA040-7,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +49619,Ci2,EA040,Bovine,EA040-7,,grigolia1939,,1930,EthnographicAtlas_1967_p83, +49620,Ci3,EA040,Bovine,EA040-7,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p83, +49621,Ci4,EA040,Bovine,EA040-7,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +49622,Ci5,EA040,Bovine,EA040-7,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +49623,Ci6,EA040,Bovine,EA040-7,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p83, +49624,Ci7,EA040,Bovine,EA040-7,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p83, +49625,Ci8,EA040,Bovine,EA040-7,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +49626,Ci9,EA040,Bovine,EA040-7,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +49627,Cj1,EA040,Bovine,EA040-7,The most important animals are sheep,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +49628,Cj10,EA040,Bovine,EA040-7,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +49629,Cj2,EA040,Camelids,EA040-6,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +49630,Cj3,EA040,Bovine,EA040-7,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +49631,Cj4,EA040,Bovine,EA040-7,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +49632,Cj5,EA040,Camelids,EA040-6,,dickson1949,,1930,EthnographicAtlas_1967_p87, +49633,Cj6,EA040,Bovine,EA040-7,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +49634,Cj7,EA040,Bovine,EA040-7,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p87, +49635,Cj8,EA040,Bovine,EA040-7,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +49636,Cj9,EA040,Bovine,EA040-7,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +49637,Ea1,EA040,Bovine,EA040-7,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +49638,Ea10,EA040,Bovine,EA040-7,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +49639,Ea11,EA040,Bovine,EA040-7,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +49640,Ea12,EA040,Bovine,EA040-7,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +49641,Ea13,EA040,Bovine,EA040-7,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +49642,Ea2,EA040,Bovine,EA040-7,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +49643,Ea3,EA040,Bovine,EA040-7,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +49644,Ea4,EA040,Bovine,EA040-7,,barth1956b,,1950,EthnographicAtlas_1967_p87, +49645,Ea5,EA040,Bovine,EA040-7,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +49646,Ea6,EA040,Sheep/goats,EA040-3,"Donkeys, horses, and camels are also kept in smaller numbers",barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +49647,Ea7,EA040,Bovine,EA040-7,,schurmann1962,,1950,EthnographicAtlas_1967_p87, +49648,Ea8,EA040,Bovine,EA040-7,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p87, +49649,Ea9,EA040,Bovine,EA040-7,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +49650,Eb1,EA040,Equine,EA040-4,"Also cattle, camels, and especially sheep",castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +49651,Eb2,EA040,Bovine,EA040-7,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p87, +49652,Eb3,EA040,Bovine,EA040-7,"Also cattle, yaks, and especially sheep",ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p87,"Assume Murdock comment refers to Col 39, not Col 30 as stated in Gray (1999)" +49653,Eb4,EA040,?,EA040-NA,,,,,, +49654,Eb5,EA040,Bovine,EA040-7,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No2_Apr_1963, +49655,Eb6,EA040,?,EA040-NA,,,,,, +49656,Eb7,EA040,Bovine,EA040-7,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +49657,Eb8,EA040,?,EA040-NA,,,,,, +49658,Ec1,EA040,Absence or near absence,EA040-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +49659,Ec10,EA040,Deer,EA040-5,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +49660,Ec11,EA040,Deer,EA040-5,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +49661,Ec2,EA040,Bovine,EA040-7,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49662,Ec3,EA040,Deer,EA040-5,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +49663,Ec4,EA040,Deer,EA040-5,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +49664,Ec5,EA040,Deer,EA040-5,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +49665,Ec6,EA040,Absence or near absence,EA040-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +49666,Ec7,EA040,Absence or near absence,EA040-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +49667,Ec8,EA040,Deer,EA040-5,,shimkin1939,,1900,EthnographicAtlas_1967_p87, +49668,Ec9,EA040,Pigs,EA040-2,,lattimore1933,,1920,EthnographicAtlas_1967_p87, +49669,Ed1,EA040,Bovine,EA040-7,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +49670,Ed10,EA040,Bovine,EA040-7,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +49671,Ed13,EA040,?,EA040-NA,,,,,, +49672,Ed14,EA040,?,EA040-NA,,,,,, +49673,Ed15a,EA040,?,EA040-NA,,,,,, +49674,Ed15b,EA040,Sheep/goats,EA040-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +49675,Ed16,EA040,?,EA040-NA,,,,,, +49676,Ed2,EA040,Bovine,EA040-7,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +49677,Ed3,EA040,Bovine,EA040-7,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p87, +49678,Ed4,EA040,Bovine,EA040-7,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +49679,Ed5,EA040,Bovine,EA040-7,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49680,Ed6,EA040,Bovine,EA040-7,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +49681,Ed7,EA040,Bovine,EA040-7,There are few horses and cattle; pigs are by far the principal domestic animals,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +49682,Ed8,EA040,Bovine,EA040-7,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +49683,Ed9,EA040,Bovine,EA040-7,But cows and goats are milked only occasionally to feed calves or children,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +49684,Ee1,EA040,Bovine,EA040-7,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +49685,Ee2,EA040,Bovine,EA040-7,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +49686,Ee3,EA040,Bovine,EA040-7,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +49687,Ee4,EA040,Bovine,EA040-7,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +49688,Ee5,EA040,Bovine,EA040-7,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +49689,Ee6,EA040,Bovine,EA040-7,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +49690,Ee7,EA040,?,EA040-NA,,,,,, +49691,Ee8,EA040,Bovine,EA040-7,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +49692,Ef1,EA040,Bovine,EA040-7,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +49693,Ef10,EA040,?,EA040-NA,,,,,, +49694,Ef11,EA040,Bovine,EA040-7,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +49695,Ef2,EA040,Bovine,EA040-7,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +49696,Ef3,EA040,?,EA040-NA,,,,,, +49697,Ef4,EA040,?,EA040-NA,,,,,, +49698,Ef5,EA040,Bovine,EA040-7,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +49699,Ef6,EA040,Bovine,EA040-7,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p87, +49700,Ef7,EA040,Bovine,EA040-7,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +49701,Ef8,EA040,Bovine,EA040-7,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +49702,Ef9,EA040,Bovine,EA040-7,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49703,Eg1,EA040,Bovine,EA040-7,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49704,Eg10,EA040,Bovine,EA040-7,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +49705,Eg11,EA040,?,EA040-NA,,,,,, +49706,Eg12,EA040,?,EA040-NA,,,,,, +49707,Eg13,EA040,Bovine,EA040-7,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49708,Eg14,EA040,Bovine,EA040-7,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +49709,Eg2,EA040,Bovine,EA040-7,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +49710,Eg3,EA040,Sheep/goats,EA040-3,"A few cattle are kept, but are not milked",grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +49711,Eg4,EA040,Bovine,EA040-7,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +49712,Eg5,EA040,Bovine,EA040-7,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +49713,Eg6,EA040,Bovine,EA040-7,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +49714,Eg7,EA040,Bovine,EA040-7,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +49715,Eg8,EA040,Bovine,EA040-7,,griffiths1946,,1940,EthnographicAtlas_1967_p91, +49716,Eg9,EA040,Absence or near absence,EA040-1,,elwin1939,,1930,EthnographicAtlas_1967_p91, +49717,Eh1,EA040,Absence or near absence,EA040-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +49718,Eh10,EA040,?,EA040-NA,,,,,, +49719,Eh2,EA040,Bovine,EA040-7,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +49720,Eh3,EA040,Bovine,EA040-7,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +49721,Eh4,EA040,Absence or near absence,EA040-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49722,Eh5,EA040,Pigs,EA040-2,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +49723,Eh6,EA040,Bovine,EA040-7,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +49724,Eh7,EA040,Bovine,EA040-7,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +49725,Eh8,EA040,Bovine,EA040-7,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91, +49726,Eh9,EA040,Bovine,EA040-7,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +49727,Ei1,EA040,Bovine,EA040-7,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49728,Ei10,EA040,Bovine,EA040-7,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p91, +49729,Ei11,EA040,Bovine,EA040-7,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +49730,Ei12,EA040,Bovine,EA040-7,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +49731,Ei13,EA040,Bovine,EA040-7,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +49732,Ei14,EA040,Bovine,EA040-7,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +49733,Ei15,EA040,?,EA040-NA,,,,,, +49734,Ei16,EA040,Bovine,EA040-7,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +49735,Ei17,EA040,?,EA040-NA,,,,,, +49736,Ei18,EA040,Bovine,EA040-7,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +49737,Ei19,EA040,Bovine,EA040-7,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +49738,Ei2,EA040,Bovine,EA040-7,,mills1922,,1920,EthnographicAtlas_1967_p91, +49739,Ei20,EA040,?,EA040-NA,,,,,, +49740,Ei3,EA040,Bovine,EA040-7,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +49741,Ei4,EA040,Bovine,EA040-7,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +49742,Ei5,EA040,Bovine,EA040-7,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +49743,Ei6,EA040,Bovine,EA040-7,,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +49744,Ei7,EA040,Bovine,EA040-7,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +49745,Ei8,EA040,Bovine,EA040-7,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +49746,Ei9,EA040,Bovine,EA040-7,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p91, +49747,Ej1,EA040,Bovine,EA040-7,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +49748,Ej10,EA040,Bovine,EA040-7,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +49749,Ej11,EA040,Bovine,EA040-7,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +49750,Ej12,EA040,Bovine,EA040-7,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +49751,Ej13,EA040,Bovine,EA040-7,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +49752,Ej14,EA040,Absence or near absence,EA040-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49753,Ej15,EA040,Bovine,EA040-7,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +49754,Ej16,EA040,Bovine,EA040-7,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +49755,Ej2,EA040,Bovine,EA040-7,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +49756,Ej3,EA040,Absence or near absence,EA040-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +49757,Ej4,EA040,Bovine,EA040-7,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +49758,Ej5,EA040,Bovine,EA040-7,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +49759,Ej6,EA040,Absence or near absence,EA040-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p91, +49760,Ej7,EA040,Bovine,EA040-7,But pigs are the principal domestic animals,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +49761,Ej8,EA040,Bovine,EA040-7,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +49762,Ej9,EA040,Bovine,EA040-7,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +49763,Ia1,EA040,Pigs,EA040-2,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +49764,Ia10,EA040,Pigs,EA040-2,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p91, +49765,Ia11,EA040,Bovine,EA040-7,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +49766,Ia12,EA040,Bovine,EA040-7,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +49767,Ia13,EA040,Sheep/goats,EA040-3,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +49768,Ia14,EA040,Sheep/goats,EA040-3,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p95, +49769,Ia15,EA040,Pigs,EA040-2,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +49770,Ia16,EA040,Bovine,EA040-7,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +49771,Ia17,EA040,?,EA040-NA,,,,,, +49772,Ia18,EA040,?,EA040-NA,,,,,, +49773,Ia2,EA040,Bovine,EA040-7,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +49774,Ia3,EA040,Pigs,EA040-2,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +49775,Ia4,EA040,Pigs,EA040-2,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +49776,Ia5,EA040,Bovine,EA040-7,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +49777,Ia6,EA040,Pigs,EA040-2,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49778,Ia7,EA040,Bovine,EA040-7,,fox1954,,1950,EthnographicAtlas_1967_p91, +49779,Ia8,EA040,Bovine,EA040-7,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +49780,Ia9,EA040,Bovine,EA040-7,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +49781,Ib1,EA040,Pigs,EA040-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49782,Ib2,EA040,Bovine,EA040-7,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49783,Ib3,EA040,Bovine,EA040-7,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +49784,Ib4,EA040,Bovine,EA040-7,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p95, +49785,Ib5,EA040,Bovine,EA040-7,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +49786,Ib6,EA040,Bovine,EA040-7,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +49787,Ib7,EA040,Pigs,EA040-2,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p95, +49788,Ib8,EA040,Absence or near absence,EA040-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p95, +49789,Ib9,EA040,?,EA040-NA,,,,,, +49790,Ic1,EA040,Bovine,EA040-7,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49791,Ic10,EA040,Pigs,EA040-2,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p95, +49792,Ic11,EA040,Pigs,EA040-2,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49793,Ic12,EA040,Bovine,EA040-7,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +49794,Ic13,EA040,?,EA040-NA,,,,,, +49795,Ic2,EA040,Pigs,EA040-2,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +49796,Ic3,EA040,Bovine,EA040-7,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p95, +49797,Ic4,EA040,?,EA040-NA,,,,,, +49798,Ic5,EA040,Bovine,EA040-7,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p95, +49799,Ic6,EA040,Pigs,EA040-2,,drabbe1940,,1930,EthnographicAtlas_1967_p95, +49800,Ic7,EA040,Sheep/goats,EA040-3,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +49801,Ic8,EA040,Pigs,EA040-2,,pleyte1893,,1890,EthnographicAtlas_1967_p95, +49802,Ic9,EA040,Bovine,EA040-7,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p95, +49803,Id1,EA040,Absence or near absence,EA040-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +49804,Id10,EA040,Absence or near absence,EA040-1,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +49805,Id11,EA040,Absence or near absence,EA040-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +49806,Id12,EA040,Absence or near absence,EA040-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +49807,Id13,EA040,Absence or near absence,EA040-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +49808,Id2,EA040,Absence or near absence,EA040-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +49809,Id3,EA040,Absence or near absence,EA040-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +49810,Id4,EA040,Absence or near absence,EA040-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +49811,Id5,EA040,Absence or near absence,EA040-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +49812,Id6,EA040,Absence or near absence,EA040-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p95, +49813,Id7,EA040,Absence or near absence,EA040-1,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +49814,Id8,EA040,Absence or near absence,EA040-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +49815,Id9,EA040,Absence or near absence,EA040-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p95, +49816,Ie1,EA040,Pigs,EA040-2,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49817,Ie10,EA040,Pigs,EA040-2,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +49818,Ie11,EA040,Pigs,EA040-2,,bowers1964,,1950,EthnographicAtlas_1967_p95, +49819,Ie12,EA040,Pigs,EA040-2,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49820,Ie13,EA040,Absence or near absence,EA040-1,,landtman1927,,1920,EthnographicAtlas_1967_p95, +49821,Ie14,EA040,Pigs,EA040-2,,haddon1908,,1900,EthnographicAtlas_1967_p95, +49822,Ie15,EA040,Pigs,EA040-2,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49823,Ie16,EA040,Pigs,EA040-2,,williams194041,,1940,EthnographicAtlas_1967_p95, +49824,Ie17,EA040,Pigs,EA040-2,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +49825,Ie18,EA040,Pigs,EA040-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +49826,Ie19,EA040,Pigs,EA040-2,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +49827,Ie2,EA040,Pigs,EA040-2,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +49828,Ie20,EA040,Pigs,EA040-2,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +49829,Ie21,EA040,Pigs,EA040-2,,malinowski1916,,1900,EthnographicAtlas_1967_p95, +49830,Ie22,EA040,Pigs,EA040-2,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +49831,Ie23,EA040,Pigs,EA040-2,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +49832,Ie24,EA040,Pigs,EA040-2,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p95, +49833,Ie25,EA040,Pigs,EA040-2,,williamson1912,,1920,EthnographicAtlas_1967_p95, +49834,Ie26,EA040,Pigs,EA040-2,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +49835,Ie27,EA040,Pigs,EA040-2,,thurnwald1916,,1910,EthnographicAtlas_1967_p99, +49836,Ie28,EA040,Pigs,EA040-2,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +49837,Ie29,EA040,Pigs,EA040-2,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49838,Ie3,EA040,Pigs,EA040-2,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49839,Ie30,EA040,Absence or near absence,EA040-1,,pouwer1955,,1950,EthnographicAtlas_1967_p99, +49840,Ie31,EA040,Pigs,EA040-2,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +49841,Ie32,EA040,Pigs,EA040-2,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +49842,Ie33,EA040,Pigs,EA040-2,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +49843,Ie34,EA040,?,EA040-NA,,,,,, +49844,Ie35,EA040,Pigs,EA040-2,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +49845,Ie36,EA040,?,EA040-NA,,,,,, +49846,Ie37,EA040,?,EA040-NA,,,,,, +49847,Ie38,EA040,Pigs,EA040-2,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +49848,Ie39,EA040,Pigs,EA040-2,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +49849,Ie4,EA040,Pigs,EA040-2,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49850,Ie5,EA040,Pigs,EA040-2,,williams1936,,1930,EthnographicAtlas_1967_p95, +49851,Ie6,EA040,Pigs,EA040-2,,held1947,,1930,EthnographicAtlas_1967_p95, +49852,Ie7,EA040,Pigs,EA040-2,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +49853,Ie8,EA040,Pigs,EA040-2,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +49854,Ie9,EA040,Pigs,EA040-2,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +49855,If1,EA040,Pigs,EA040-2,Pigs were introduced by Europeans,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49856,If10,EA040,?,EA040-NA,,,,,, +49857,If11,EA040,Pigs,EA040-2,,sarfert1919,,1860,EthnographicAtlas_1967_p99, +49858,If12,EA040,Pigs,EA040-2,,mason1954,,1940,EthnographicAtlas_1967_p99, +49859,If13,EA040,Absence or near absence,EA040-1,But pigs have been introduced,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p99, +49860,If14,EA040,Pigs,EA040-2,The pig was introduced by Europeans,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +49861,If15,EA040,Pigs,EA040-2,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +49862,If16,EA040,Pigs,EA040-2,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +49863,If17,EA040,Pigs,EA040-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +49864,If2,EA040,Pigs,EA040-2,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +49865,If3,EA040,Pigs,EA040-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +49866,If4,EA040,Pigs,EA040-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +49867,If5,EA040,Pigs,EA040-2,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +49868,If6,EA040,Pigs,EA040-2,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +49869,If7,EA040,Pigs,EA040-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p99, +49870,If8,EA040,Bovine,EA040-7,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +49871,If9,EA040,Pigs,EA040-2,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +49872,Ig1,EA040,Pigs,EA040-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +49873,Ig10,EA040,Pigs,EA040-2,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +49874,Ig11,EA040,Pigs,EA040-2,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +49875,Ig12,EA040,Pigs,EA040-2,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p99, +49876,Ig13,EA040,Absence or near absence,EA040-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p99, +49877,Ig14,EA040,Pigs,EA040-2,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +49878,Ig15,EA040,?,EA040-NA,,,,,, +49879,Ig16,EA040,?,EA040-NA,,,,,, +49880,Ig17,EA040,?,EA040-NA,,,,,, +49881,Ig18,EA040,?,EA040-NA,,,,,, +49882,Ig19,EA040,?,EA040-NA,,,,,, +49883,Ig2,EA040,Pigs,EA040-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +49884,Ig20,EA040,Pigs,EA040-2,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +49885,Ig21,EA040,Pigs,EA040-2,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +49886,Ig3,EA040,Pigs,EA040-2,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +49887,Ig4,EA040,Pigs,EA040-2,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +49888,Ig5,EA040,Pigs,EA040-2,,fortune1932b,,1920,EthnographicAtlas_1967_p99, +49889,Ig6,EA040,Pigs,EA040-2,,ivens1927,,1900,EthnographicAtlas_1967_p99, +49890,Ig7,EA040,Pigs,EA040-2,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +49891,Ig8,EA040,?,EA040-NA,,,,,, +49892,Ig9,EA040,Pigs,EA040-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +49893,Ih1,EA040,Pigs,EA040-2,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +49894,Ih10,EA040,Pigs,EA040-2,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49895,Ih11,EA040,?,EA040-NA,,,,,, +49896,Ih12,EA040,?,EA040-NA,,,,,, +49897,Ih13,EA040,?,EA040-NA,,,,,, +49898,Ih14,EA040,Pigs,EA040-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +49899,Ih2,EA040,Pigs,EA040-2,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49900,Ih3,EA040,Pigs,EA040-2,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +49901,Ih4,EA040,Pigs,EA040-2,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49902,Ih5,EA040,Pigs,EA040-2,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p99, +49903,Ih6,EA040,Pigs,EA040-2,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p99, +49904,Ih7,EA040,Pigs,EA040-2,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p99, +49905,Ih8,EA040,Pigs,EA040-2,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +49906,Ih9,EA040,Pigs,EA040-2,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49907,Ii1,EA040,Pigs,EA040-2,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +49908,Ii10,EA040,Absence or near absence,EA040-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +49909,Ii12,EA040,Pigs,EA040-2,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49910,Ii13,EA040,Pigs,EA040-2,,burrows1937,,1830,EthnographicAtlas_1967_p99, +49911,Ii14,EA040,Pigs,EA040-2,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +49912,Ii2,EA040,Absence or near absence,EA040-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +49913,Ii3,EA040,Pigs,EA040-2,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +49914,Ii4,EA040,Pigs,EA040-2,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +49915,Ii5,EA040,Absence or near absence,EA040-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p99, +49916,Ii6,EA040,Absence or near absence,EA040-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +49917,Ii7,EA040,Pigs,EA040-2,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +49918,Ii8,EA040,Pigs,EA040-2,,burrows1936,,1840,EthnographicAtlas_1967_p99, +49919,Ii9,EA040,Absence or near absence,EA040-1,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +49920,Ij1,EA040,Absence or near absence,EA040-1,The pig was introduced by Europeans in the 1820s,buck1934,,1820,EthnographicAtlas_1967_p99, +49921,Ij10,EA040,Absence or near absence,EA040-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +49922,Ij2,EA040,Absence or near absence,EA040-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +49923,Ij3,EA040,Pigs,EA040-2,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +49924,Ij4,EA040,Absence or near absence,EA040-1,,buck1932a,,1850,EthnographicAtlas_1967_p103, +49925,Ij5,EA040,Absence or near absence,EA040-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p103, +49926,Ij6,EA040,Pigs,EA040-2,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p103, +49927,Ij7,EA040,Absence or near absence,EA040-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +49928,Ij8,EA040,Pigs,EA040-2,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p103, +49929,Ij9,EA040,Absence or near absence,EA040-1,,metraux1940,,1860,EthnographicAtlas_1967_p103, +49930,Na1,EA040,Absence or near absence,EA040-1,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +49931,Na10,EA040,Absence or near absence,EA040-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +49932,Na11,EA040,Deer,EA040-5,"But reindeer were introduced in 1900, but the herds died out in the 1940s",hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +49933,Na12,EA040,Absence or near absence,EA040-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +49934,Na13,EA040,Absence or near absence,EA040-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +49935,Na14,EA040,Absence or near absence,EA040-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +49936,Na15,EA040,Absence or near absence,EA040-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p103, +49937,Na16,EA040,Absence or near absence,EA040-1,,osgood1931,,1860,EthnographicAtlas_1967_p103, +49938,Na17,EA040,Absence or near absence,EA040-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49939,Na19,EA040,Absence or near absence,EA040-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +49940,Na2,EA040,Absence or near absence,EA040-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +49941,Na20,EA040,Absence or near absence,EA040-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +49942,Na21,EA040,Absence or near absence,EA040-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +49943,Na22,EA040,Absence or near absence,EA040-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +49944,Na23,EA040,Absence or near absence,EA040-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +49945,Na24,EA040,Absence or near absence,EA040-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +49946,Na25,EA040,Absence or near absence,EA040-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +49947,Na26,EA040,Absence or near absence,EA040-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +49948,Na27,EA040,Absence or near absence,EA040-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +49949,Na28,EA040,Absence or near absence,EA040-1,,jenness1937,,1880,EthnographicAtlas_1967_p103, +49950,Na29,EA040,Absence or near absence,EA040-1,But horses were introduced in the late nineteenth century,goddard1916,,1850,EthnographicAtlas_1967_p103, +49951,Na3,EA040,Absence or near absence,EA040-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +49952,Na30,EA040,Absence or near absence,EA040-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +49953,Na31,EA040,Absence or near absence,EA040-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +49954,Na32,EA040,Absence or near absence,EA040-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +49955,Na33,EA040,Absence or near absence,EA040-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +49956,Na34,EA040,Absence or near absence,EA040-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +49957,Na35,EA040,Absence or near absence,EA040-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +49958,Na36,EA040,Absence or near absence,EA040-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +49959,Na37,EA040,Absence or near absence,EA040-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +49960,Na38,EA040,Absence or near absence,EA040-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +49961,Na39,EA040,Absence or near absence,EA040-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +49962,Na4,EA040,Absence or near absence,EA040-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +49963,Na40,EA040,Absence or near absence,EA040-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +49964,Na41,EA040,Absence or near absence,EA040-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +49965,Na42,EA040,Absence or near absence,EA040-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +49966,Na43,EA040,Absence or near absence,EA040-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +49967,Na44,EA040,Absence or near absence,EA040-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +49968,Na45,EA040,Absence or near absence,EA040-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +49969,Na5,EA040,Absence or near absence,EA040-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +49970,Na6,EA040,Absence or near absence,EA040-1,,lantis1946,,1930,EthnographicAtlas_1967_p103, +49971,Na7,EA040,Absence or near absence,EA040-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +49972,Na8,EA040,Absence or near absence,EA040-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +49973,Na9,EA040,Absence or near absence,EA040-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +49974,Nb1,EA040,Absence or near absence,EA040-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +49975,Nb10,EA040,Absence or near absence,EA040-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +49976,Nb11,EA040,Absence or near absence,EA040-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +49977,Nb12,EA040,Absence or near absence,EA040-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +49978,Nb13,EA040,Absence or near absence,EA040-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +49979,Nb14,EA040,Absence or near absence,EA040-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +49980,Nb15,EA040,Absence or near absence,EA040-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +49981,Nb16,EA040,Absence or near absence,EA040-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +49982,Nb17,EA040,Absence or near absence,EA040-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +49983,Nb18,EA040,Absence or near absence,EA040-1,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +49984,Nb19,EA040,Absence or near absence,EA040-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +49985,Nb2,EA040,Absence or near absence,EA040-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +49986,Nb20,EA040,Absence or near absence,EA040-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +49987,Nb21,EA040,Absence or near absence,EA040-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +49988,Nb22,EA040,Absence or near absence,EA040-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +49989,Nb23,EA040,Absence or near absence,EA040-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +49990,Nb24,EA040,Absence or near absence,EA040-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +49991,Nb25,EA040,Absence or near absence,EA040-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +49992,Nb26,EA040,Absence or near absence,EA040-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +49993,Nb27,EA040,Absence or near absence,EA040-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +49994,Nb28,EA040,Absence or near absence,EA040-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +49995,Nb29,EA040,Absence or near absence,EA040-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +49996,Nb3,EA040,Absence or near absence,EA040-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +49997,Nb30,EA040,Absence or near absence,EA040-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +49998,Nb31,EA040,Absence or near absence,EA040-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p107, +49999,Nb32,EA040,Absence or near absence,EA040-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +50000,Nb33,EA040,Absence or near absence,EA040-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +50001,Nb34,EA040,Absence or near absence,EA040-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +50002,Nb35,EA040,Absence or near absence,EA040-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +50003,Nb36,EA040,Absence or near absence,EA040-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +50004,Nb37,EA040,Absence or near absence,EA040-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +50005,Nb38,EA040,Absence or near absence,EA040-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +50006,Nb39,EA040,Absence or near absence,EA040-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +50007,Nb4,EA040,Absence or near absence,EA040-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +50008,Nb5,EA040,Absence or near absence,EA040-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +50009,Nb6,EA040,Absence or near absence,EA040-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +50010,Nb7,EA040,Absence or near absence,EA040-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +50011,Nb8,EA040,Absence or near absence,EA040-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +50012,Nb9,EA040,Absence or near absence,EA040-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +50013,Nc1,EA040,Absence or near absence,EA040-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +50014,Nc10,EA040,Absence or near absence,EA040-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +50015,Nc11,EA040,Absence or near absence,EA040-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +50016,Nc12,EA040,Absence or near absence,EA040-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +50017,Nc13,EA040,Absence or near absence,EA040-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +50018,Nc14,EA040,Absence or near absence,EA040-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +50019,Nc15,EA040,Absence or near absence,EA040-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +50020,Nc16,EA040,Absence or near absence,EA040-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +50021,Nc17,EA040,Absence or near absence,EA040-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +50022,Nc18,EA040,Absence or near absence,EA040-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +50023,Nc19,EA040,Absence or near absence,EA040-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p107, +50024,Nc2,EA040,Absence or near absence,EA040-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +50025,Nc20,EA040,Absence or near absence,EA040-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +50026,Nc21,EA040,Absence or near absence,EA040-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +50027,Nc22,EA040,Absence or near absence,EA040-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +50028,Nc23,EA040,Absence or near absence,EA040-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +50029,Nc24,EA040,Absence or near absence,EA040-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +50030,Nc25,EA040,Absence or near absence,EA040-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +50031,Nc26,EA040,Absence or near absence,EA040-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +50032,Nc27,EA040,Absence or near absence,EA040-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p107, +50033,Nc28,EA040,Absence or near absence,EA040-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +50034,Nc29,EA040,Absence or near absence,EA040-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +50035,Nc3,EA040,Absence or near absence,EA040-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +50036,Nc30,EA040,Absence or near absence,EA040-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +50037,Nc31,EA040,Absence or near absence,EA040-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +50038,Nc32,EA040,Absence or near absence,EA040-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +50039,Nc33,EA040,Absence or near absence,EA040-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +50040,Nc34,EA040,Absence or near absence,EA040-1,,meigs1939,,1880,EthnographicAtlas_1967_p107, +50041,Nc4,EA040,Absence or near absence,EA040-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +50042,Nc5,EA040,Absence or near absence,EA040-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +50043,Nc6,EA040,Absence or near absence,EA040-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +50044,Nc7,EA040,Absence or near absence,EA040-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +50045,Nc8,EA040,Absence or near absence,EA040-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +50046,Nc9,EA040,Absence or near absence,EA040-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +50047,Nd1,EA040,Absence or near absence,EA040-1,But some horses were obtained by trade from tribes to the east,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +50048,Nd10,EA040,Absence or near absence,EA040-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +50049,Nd11,EA040,Absence or near absence,EA040-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +50050,Nd12,EA040,Equine,EA040-4,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +50051,Nd13,EA040,Equine,EA040-4,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +50052,Nd14,EA040,Equine,EA040-4,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +50053,Nd15,EA040,Equine,EA040-4,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +50054,Nd16,EA040,Equine,EA040-4,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +50055,Nd17,EA040,Absence or near absence,EA040-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +50056,Nd18,EA040,Absence or near absence,EA040-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +50057,Nd19,EA040,Equine,EA040-4,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +50058,Nd2,EA040,Equine,EA040-4,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +50059,Nd20,EA040,Equine,EA040-4,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +50060,Nd21,EA040,Absence or near absence,EA040-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +50061,Nd22,EA040,Absence or near absence,EA040-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +50062,Nd23,EA040,Absence or near absence,EA040-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +50063,Nd24,EA040,Absence or near absence,EA040-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +50064,Nd25,EA040,Absence or near absence,EA040-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +50065,Nd26,EA040,Absence or near absence,EA040-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +50066,Nd27,EA040,Absence or near absence,EA040-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +50067,Nd28,EA040,Absence or near absence,EA040-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +50068,Nd29,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +50069,Nd3,EA040,Absence or near absence,EA040-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +50070,Nd30,EA040,Absence or near absence,EA040-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +50071,Nd31,EA040,Absence or near absence,EA040-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +50072,Nd32,EA040,Absence or near absence,EA040-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +50073,Nd33,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +50074,Nd34,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +50075,Nd35,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +50076,Nd36,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +50077,Nd37,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +50078,Nd38,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +50079,Nd39,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +50080,Nd4,EA040,Absence or near absence,EA040-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +50081,Nd40,EA040,Absence or near absence,EA040-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +50082,Nd41,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +50083,Nd42,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +50084,Nd43,EA040,Absence or near absence,EA040-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +50085,Nd44,EA040,Absence or near absence,EA040-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +50086,Nd45,EA040,Equine,EA040-4,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +50087,Nd46,EA040,Absence or near absence,EA040-1,But a few people had horses,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +50088,Nd47,EA040,Absence or near absence,EA040-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +50089,Nd48,EA040,Absence or near absence,EA040-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +50090,Nd49,EA040,Absence or near absence,EA040-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +50091,Nd5,EA040,Absence or near absence,EA040-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +50092,Nd50,EA040,Absence or near absence,EA040-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +50093,Nd51,EA040,Absence or near absence,EA040-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +50094,Nd52,EA040,Absence or near absence,EA040-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +50095,Nd53,EA040,Absence or near absence,EA040-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +50096,Nd54,EA040,Absence or near absence,EA040-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50097,Nd55,EA040,Absence or near absence,EA040-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +50098,Nd56,EA040,Equine,EA040-4,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +50099,Nd57,EA040,Equine,EA040-4,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +50100,Nd58,EA040,Equine,EA040-4,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +50101,Nd59,EA040,Absence or near absence,EA040-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +50102,Nd6,EA040,Absence or near absence,EA040-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +50103,Nd60,EA040,Equine,EA040-4,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +50104,Nd61,EA040,Equine,EA040-4,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +50105,Nd62,EA040,Equine,EA040-4,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +50106,Nd63,EA040,Equine,EA040-4,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +50107,Nd64,EA040,Equine,EA040-4,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +50108,Nd65,EA040,Equine,EA040-4,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +50109,Nd66,EA040,Absence or near absence,EA040-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +50110,Nd67,EA040,Absence or near absence,EA040-1,,gifford1936,,1870,EthnographicAtlas_1967_p111, +50111,Nd7,EA040,Equine,EA040-4,But horses were few,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +50112,Nd8,EA040,Absence or near absence,EA040-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +50113,Nd9,EA040,Absence or near absence,EA040-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +50114,Ne1,EA040,Equine,EA040-4,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +50115,Ne10,EA040,Equine,EA040-4,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +50116,Ne11,EA040,Equine,EA040-4,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +50117,Ne12,EA040,Equine,EA040-4,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +50118,Ne13,EA040,Equine,EA040-4,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +50119,Ne14,EA040,Equine,EA040-4,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +50120,Ne15,EA040,Equine,EA040-4,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +50121,Ne16,EA040,Equine,EA040-4,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +50122,Ne17,EA040,Equine,EA040-4,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +50123,Ne18,EA040,Equine,EA040-4,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +50124,Ne19,EA040,Equine,EA040-4,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +50125,Ne2,EA040,Equine,EA040-4,,mcallister1937,,1870,EthnographicAtlas_1967_p111, +50126,Ne20,EA040,Equine,EA040-4,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p115, +50127,Ne21,EA040,?,EA040-NA,,,,,, +50128,Ne3,EA040,Equine,EA040-4,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p111, +50129,Ne4,EA040,Equine,EA040-4,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +50130,Ne5,EA040,Equine,EA040-4,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +50131,Ne6,EA040,Equine,EA040-4,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p111, +50132,Ne7,EA040,Equine,EA040-4,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +50133,Ne8,EA040,Equine,EA040-4,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +50134,Ne9,EA040,Equine,EA040-4,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +50135,Nf10,EA040,Equine,EA040-4,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +50136,Nf11,EA040,Equine,EA040-4,,whitman1937,,1870,EthnographicAtlas_1967_p115, +50137,Nf12,EA040,Equine,EA040-4,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +50138,Nf13,EA040,Absence or near absence,EA040-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50139,Nf14,EA040,Absence or near absence,EA040-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +50140,Nf15,EA040,?,EA040-NA,,,,,, +50141,Nf2,EA040,Absence or near absence,EA040-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p115, +50142,Nf3,EA040,Equine,EA040-4,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +50143,Nf4,EA040,Absence or near absence,EA040-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +50144,Nf5,EA040,Equine,EA040-4,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +50145,Nf6,EA040,Equine,EA040-4,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +50146,Nf7,EA040,Equine,EA040-4,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50147,Nf8,EA040,Absence or near absence,EA040-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +50148,Nf9,EA040,Absence or near absence,EA040-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +50149,Ng1,EA040,Absence or near absence,EA040-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +50150,Ng10,EA040,Absence or near absence,EA040-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +50151,Ng11,EA040,Absence or near absence,EA040-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p115, +50152,Ng12,EA040,Absence or near absence,EA040-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p115, +50153,Ng13,EA040,?,EA040-NA,,,,,, +50154,Ng14,EA040,?,EA040-NA,,,,,, +50155,Ng15,EA040,?,EA040-NA,,,,,, +50156,Ng2,EA040,?,EA040-NA,,,,,, +50157,Ng3,EA040,Absence or near absence,EA040-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +50158,Ng4,EA040,?,EA040-NA,,,,,, +50159,Ng5,EA040,Absence or near absence,EA040-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +50160,Ng6,EA040,Absence or near absence,EA040-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +50161,Ng7,EA040,Absence or near absence,EA040-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +50162,Ng8,EA040,Absence or near absence,EA040-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p115, +50163,Ng9,EA040,?,EA040-NA,,,,,, +50164,Nh1,EA040,Equine,EA040-4,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +50165,Nh10,EA040,Sheep/goats,EA040-3,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +50166,Nh11,EA040,Equine,EA040-4,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +50167,Nh12,EA040,Bovine,EA040-7,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +50168,Nh13,EA040,Sheep/goats,EA040-3,Also some cattle,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +50169,Nh14,EA040,?,EA040-NA,,,,,, +50170,Nh15,EA040,Absence or near absence,EA040-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +50171,Nh16,EA040,Equine,EA040-4,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50172,Nh17,EA040,Equine,EA040-4,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +50173,Nh18,EA040,Sheep/goats,EA040-3,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50174,Nh19,EA040,Equine,EA040-4,But horses were adopted from Europeans as early as 1828,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +50175,Nh2,EA040,Bovine,EA040-7,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954,,1950,EthnographicAtlas_1967_p115, +50176,Nh20,EA040,Absence or near absence,EA040-1,,gifford1931,,1860,EthnographicAtlas_1967_p115, +50177,Nh21,EA040,Absence or near absence,EA040-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50178,Nh22,EA040,Absence or near absence,EA040-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +50179,Nh23,EA040,Absence or near absence,EA040-1,,gifford1932a,,1870,EthnographicAtlas_1967_p115, +50180,Nh24,EA040,Equine,EA040-4,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +50181,Nh25,EA040,Bovine,EA040-7,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +50182,Nh26,EA040,?,EA040-NA,,,,,, +50183,Nh27,EA040,?,EA040-NA,,,,,, +50184,Nh3,EA040,Sheep/goats,EA040-3,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +50185,Nh4,EA040,Sheep/goats,EA040-3,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +50186,Nh5,EA040,Absence or near absence,EA040-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +50187,Nh6,EA040,Equine,EA040-4,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +50188,Nh7,EA040,Equine,EA040-4,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +50189,Nh8,EA040,Equine,EA040-4,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +50190,Nh9,EA040,?,EA040-NA,,,,,, +50191,Ni1,EA040,Bovine,EA040-7,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +50192,Ni2,EA040,Absence or near absence,EA040-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +50193,Ni3,EA040,Bovine,EA040-7,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +50194,Ni4,EA040,Absence or near absence,EA040-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p115, +50195,Ni5,EA040,Absence or near absence,EA040-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +50196,Ni6,EA040,Absence or near absence,EA040-1,"Aboriginally, but subsequently plow cultivaton (EA039 code ""2"") and 'bovine' (EA040 code ""7"")",castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +50197,Ni7,EA040,Absence or near absence,EA040-1,"Aboriginally, but 'no plow animals' (EA039 code ""1""), 'bovine' (EA040 code ""7""), and 'milking, more often than sporadically' (EA041 code ""2"")",beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +50198,Ni8,EA040,?,EA040-NA,,,,,, +50199,Ni9,EA040,?,EA040-NA,,,,,, +50200,Nj1,EA040,Sheep/goats,EA040-3,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50201,Nj10,EA040,?,EA040-NA,,,,,, +50202,Nj11,EA040,?,EA040-NA,,,,,, +50203,Nj12,EA040,?,EA040-NA,,,,,, +50204,Nj13,EA040,?,EA040-NA,,,,,, +50205,Nj14,EA040,?,EA040-NA,,,,,, +50206,Nj2,EA040,Absence or near absence,EA040-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +50207,Nj3,EA040,Pigs,EA040-2,"Also a few horses, mules, and cattle",foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +50208,Nj4,EA040,Equine,EA040-4,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +50209,Nj5,EA040,?,EA040-NA,,,,,, +50210,Nj6,EA040,?,EA040-NA,,,,,, +50211,Nj7,EA040,Bovine,EA040-7,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50212,Nj8,EA040,Absence or near absence,EA040-1,,foster1948,,1500,EthnographicAtlas_1967_p119, +50213,Nj9,EA040,Bovine,EA040-7,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +50214,Sa1,EA040,Pigs,EA040-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +50215,Sa10,EA040,?,EA040-NA,,,,,, +50216,Sa11,EA040,?,EA040-NA,,,,,, +50217,Sa12,EA040,Pigs,EA040-2,,stone1948,,1948,EthnographicAtlas_1967_p119, +50218,Sa13,EA040,Sheep/goats,EA040-3,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +50219,Sa14,EA040,?,EA040-NA,,,,,, +50220,Sa15,EA040,?,EA040-NA,,,,,, +50221,Sa16,EA040,?,EA040-NA,,,,,, +50222,Sa17,EA040,?,EA040-NA,,,,,, +50223,Sa2,EA040,?,EA040-NA,,,,,, +50224,Sa3,EA040,Pigs,EA040-2,"Also a few cattle, which ""are of little importance""",wisdom1940,,1930,EthnographicAtlas_1967_p119, +50225,Sa4,EA040,Absence or near absence,EA040-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +50226,Sa5,EA040,Pigs,EA040-2,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +50227,Sa6,EA040,Absence or near absence,EA040-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +50228,Sa7,EA040,Absence or near absence,EA040-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +50229,Sa8,EA040,Equine,EA040-4,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +50230,Sa9,EA040,Bovine,EA040-7,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +50231,Sb1,EA040,Absence or near absence,EA040-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +50232,Sb2,EA040,Pigs,EA040-2,"Also a few cattle, especially pack oxen",park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +50233,Sb3,EA040,Absence or near absence,EA040-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +50234,Sb4,EA040,Absence or near absence,EA040-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +50235,Sb5,EA040,Absence or near absence,EA040-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +50236,Sb6,EA040,Bovine,EA040-7,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +50237,Sb7,EA040,Absence or near absence,EA040-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +50238,Sb8,EA040,Absence or near absence,EA040-1,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +50239,Sb9,EA040,Bovine,EA040-7,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +50240,Sc1,EA040,Absence or near absence,EA040-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +50241,Sc10,EA040,Absence or near absence,EA040-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +50242,Sc11,EA040,Absence or near absence,EA040-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p119, +50243,Sc12,EA040,Absence or near absence,EA040-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p119, +50244,Sc13,EA040,Absence or near absence,EA040-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +50245,Sc14,EA040,?,EA040-NA,,,,,, +50246,Sc15,EA040,Absence or near absence,EA040-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p119, +50247,Sc16,EA040,Absence or near absence,EA040-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p119, +50248,Sc17,EA040,Absence or near absence,EA040-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +50249,Sc18,EA040,Absence or near absence,EA040-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +50250,Sc2,EA040,Pigs,EA040-2,,leedsnd,,1950,EthnographicAtlas_1967_p119, +50251,Sc3,EA040,Absence or near absence,EA040-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +50252,Sc4,EA040,Absence or near absence,EA040-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +50253,Sc5,EA040,Absence or near absence,EA040-1,,farabee1918,,1900,EthnographicAtlas_1967_p119, +50254,Sc6,EA040,Absence or near absence,EA040-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50255,Sc7,EA040,Absence or near absence,EA040-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +50256,Sc8,EA040,Absence or near absence,EA040-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +50257,Sc9,EA040,Absence or near absence,EA040-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +50258,Sd1,EA040,Absence or near absence,EA040-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50259,Sd2,EA040,Absence or near absence,EA040-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +50260,Sd3,EA040,Absence or near absence,EA040-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p119, +50261,Sd4,EA040,Absence or near absence,EA040-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +50262,Sd5,EA040,Absence or near absence,EA040-1,But a few pigs are kept today,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +50263,Sd6,EA040,Absence or near absence,EA040-1,,migliazza1964,,1960,EthnographicAtlas_1967_p119, +50264,Sd7,EA040,Absence or near absence,EA040-1,,fock1963,,1950,EthnographicAtlas_1967_p119, +50265,Sd8,EA040,Absence or near absence,EA040-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +50266,Sd9,EA040,Absence or near absence,EA040-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50267,Se1,EA040,Absence or near absence,EA040-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +50268,Se10,EA040,Pigs,EA040-2,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +50269,Se11,EA040,Absence or near absence,EA040-1,,prost1965,,1960,EthnographicAtlas_1967_p123, +50270,Se12,EA040,?,EA040-NA,,,,,, +50271,Se2,EA040,Absence or near absence,EA040-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +50272,Se3,EA040,Pigs,EA040-2,"A few llamas were kept aboriginally; The Jivaro keep a few pigs, introduced by the Spaniards in the sixteenth century",harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +50273,Se4,EA040,Absence or near absence,EA040-1,,fejos1943,,1940,EthnographicAtlas_1967_p119, +50274,Se5,EA040,Pigs,EA040-2,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +50275,Se6,EA040,Absence or near absence,EA040-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +50276,Se7,EA040,?,EA040-NA,,,,,, +50277,Se8,EA040,Absence or near absence,EA040-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +50278,Se9,EA040,Absence or near absence,EA040-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +50279,Sf1,EA040,Camelids,EA040-6,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +50280,Sf2,EA040,Bovine,EA040-7,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +50281,Sf3,EA040,Pigs,EA040-2,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +50282,Sf4,EA040,Absence or near absence,EA040-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +50283,Sf5,EA040,Bovine,EA040-7,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +50284,Sf6,EA040,Absence or near absence,EA040-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +50285,Sf7,EA040,Absence or near absence,EA040-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +50286,Sf8,EA040,?,EA040-NA,,,,,, +50287,Sf9,EA040,?,EA040-NA,,,,,, +50288,Sg1,EA040,Absence or near absence,EA040-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +50289,Sg2,EA040,Bovine,EA040-7,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50290,Sg3,EA040,Absence or near absence,EA040-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +50291,Sg4,EA040,Equine,EA040-4,"But absence or near absence of domestic animals (EA039 and EA040 code ""1"") prior to 1725",bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +50292,Sg5,EA040,Absence or near absence,EA040-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50293,Sh1,EA040,Sheep/goats,EA040-3,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +50294,Sh2,EA040,Bovine,EA040-7,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +50295,Sh3,EA040,Equine,EA040-4,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +50296,Sh4,EA040,Equine,EA040-4,,oberg1949,,1940,EthnographicAtlas_1967_p123, +50297,Sh5,EA040,Absence or near absence,EA040-1,But both small and large livestock have recently been introduced,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +50298,Sh6,EA040,Absence or near absence,EA040-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +50299,Sh7,EA040,Absence or near absence,EA040-1,But some sheep and cattle are kept today,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p123, +50300,Sh8,EA040,Equine,EA040-4,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +50301,Sh9,EA040,Absence or near absence,EA040-1,But a few livestock have recently been acquired,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +50302,Si1,EA040,Absence or near absence,EA040-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50303,Si10,EA040,Absence or near absence,EA040-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +50304,Si2,EA040,Absence or near absence,EA040-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +50305,Si3,EA040,Absence or near absence,EA040-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50306,Si4,EA040,Absence or near absence,EA040-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +50307,Si5,EA040,Absence or near absence,EA040-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +50308,Si6,EA040,Absence or near absence,EA040-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p123, +50309,Si7,EA040,Absence or near absence,EA040-1,But pigs are kept today,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +50310,Si8,EA040,Absence or near absence,EA040-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +50311,Si9,EA040,?,EA040-NA,,,,,, +50312,Sj1,EA040,Absence or near absence,EA040-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +50313,Sj10,EA040,Absence or near absence,EA040-1,But a few horses are kept today,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50314,Sj11,EA040,Absence or near absence,EA040-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +50315,Sj2,EA040,Absence or near absence,EA040-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +50316,Sj3,EA040,Absence or near absence,EA040-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +50317,Sj4,EA040,Pigs,EA040-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +50318,Sj5,EA040,Absence or near absence,EA040-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p123, +50319,Sj6,EA040,Sheep/goats,EA040-3,Animal husbandry is recent,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50320,Sj7,EA040,Absence or near absence,EA040-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +50321,Sj8,EA040,Absence or near absence,EA040-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +50322,Sj9,EA040,Absence or near absence,EA040-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +50323,ch12,EA040,Equine,EA040-4,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +50324,ch13,EA040,Equine,EA040-4,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +50325,ch14,EA040,Sheep/goats,EA040-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +50326,ch15,EA040,Bovine,EA040-7,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +50327,ch16,EA040,Bovine,EA040-7,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +50328,ch17,EA040,Bovine,EA040-7,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +50329,ch18,EA040,Bovine,EA040-7,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +50330,ch19,EA040,Bovine,EA040-7,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +50331,ch20,EA040,Equine,EA040-4,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +50332,ch21,EA040,Bovine,EA040-7,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +50333,ch22,EA040,Equine,EA040-4,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +50334,ch23,EA040,Equine,EA040-4,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +50335,ch24,EA040,Bovine,EA040-7,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +50336,ch25,EA040,Bovine,EA040-7,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +50337,ch26,EA040,Bovine,EA040-7,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +50338,ch27,EA040,Bovine,EA040-7,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +50339,ch28,EA040,Bovine,EA040-7,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +50340,ec12,EA040,Deer,EA040-5,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +50341,ec13,EA040,Absence or near absence,EA040-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +50342,ec14,EA040,Absence or near absence,EA040-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +50343,ec15,EA040,Deer,EA040-5,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +50344,ec16,EA040,Deer,EA040-5,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +50345,ec17,EA040,Deer,EA040-5,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +50346,ec18,EA040,Absence or near absence,EA040-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +50347,ec19,EA040,Deer,EA040-5,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +50348,ec20,EA040,Absence or near absence,EA040-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +50349,ec21,EA040,Absence or near absence,EA040-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +50350,Aa1,EA041,Absence or near absence,EA041-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p63, +50351,Aa2,EA041,Absence or near absence,EA041-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p63, +50352,Aa3,EA041,More than sporadically,EA041-2,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p63, +50353,Aa4,EA041,?,EA041-NA,,,,,, +50354,Aa5,EA041,Absence or near absence,EA041-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,Ethnology_Vol10_No1_Jan_1971, +50355,Aa6,EA041,More than sporadically,EA041-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p63, +50356,Aa7,EA041,Absence or near absence,EA041-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p63, +50357,Aa8,EA041,Absence or near absence,EA041-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +50358,Aa9,EA041,Absence or near absence,EA041-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,Ethnology_Vol10_No1_Jan_1971, +50359,Ab1,EA041,More than sporadically,EA041-2,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p63, +50360,Ab10,EA041,More than sporadically,EA041-2,,hunter1936,,1936,Ethnology_Vol7_No2_Apr_1968, +50361,Ab11,EA041,More than sporadically,EA041-2,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +50362,Ab12,EA041,More than sporadically,EA041-2,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p63, +50363,Ab13,EA041,More than sporadically,EA041-2,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p63, +50364,Ab14,EA041,More than sporadically,EA041-2,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p63, +50365,Ab15,EA041,More than sporadically,EA041-2,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +50366,Ab16,EA041,Absence or near absence,EA041-1,,earthy1933,,1930,EthnographicAtlas_1967_p63, +50367,Ab17,EA041,?,EA041-NA,,,,,, +50368,Ab18,EA041,More than sporadically,EA041-2,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,Ethnology_Vol7_No2_Apr_1968, +50369,Ab19,EA041,More than sporadically,EA041-2,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p63, +50370,Ab2,EA041,More than sporadically,EA041-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p63, +50371,Ab20,EA041,?,EA041-NA,,,,,, +50372,Ab21a,EA041,Absence or near absence,EA041-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +50373,Ab21b,EA041,?,EA041-NA,,,,,, +50374,Ab22,EA041,?,EA041-NA,,,,,, +50375,Ab3,EA041,More than sporadically,EA041-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p63, +50376,Ab4,EA041,More than sporadically,EA041-2,,junod1927,,1920,EthnographicAtlas_1967_p63, +50377,Ab5,EA041,Absence or near absence,EA041-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p63, +50378,Ab6,EA041,More than sporadically,EA041-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p63, +50379,Ab7,EA041,More than sporadically,EA041-2,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p63, +50380,Ab8,EA041,More than sporadically,EA041-2,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p63, +50381,Ab9,EA041,More than sporadically,EA041-2,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p63, +50382,Ac1,EA041,More than sporadically,EA041-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p63, +50383,Ac10,EA041,More than sporadically,EA041-2,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p63, +50384,Ac11,EA041,Absence or near absence,EA041-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p63, +50385,Ac12,EA041,Absence or near absence,EA041-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p63, +50386,Ac13,EA041,Absence or near absence,EA041-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p63, +50387,Ac14,EA041,Absence or near absence,EA041-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p63, +50388,Ac15,EA041,?,EA041-NA,,,,,, +50389,Ac16,EA041,Absence or near absence,EA041-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +50390,Ac17,EA041,Absence or near absence,EA041-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p63, +50391,Ac18,EA041,Absence or near absence,EA041-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p63, +50392,Ac19,EA041,Absence or near absence,EA041-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +50393,Ac2,EA041,Absence or near absence,EA041-1,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p63, +50394,Ac20,EA041,Absence or near absence,EA041-1,"A few cattle, which are not milked",milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +50395,Ac21,EA041,Absence or near absence,EA041-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p63, +50396,Ac22,EA041,Absence or near absence,EA041-1,,mertens1935,,1930,EthnographicAtlas_1967_p63, +50397,Ac23,EA041,Absence or near absence,EA041-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p63, +50398,Ac24,EA041,Absence or near absence,EA041-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +50399,Ac25,EA041,Absence or near absence,EA041-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p63, +50400,Ac26,EA041,Absence or near absence,EA041-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +50401,Ac27,EA041,Absence or near absence,EA041-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +50402,Ac28,EA041,Absence or near absence,EA041-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p63, +50403,Ac29,EA041,?,EA041-NA,,,,,, +50404,Ac3,EA041,Absence or near absence,EA041-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p63, +50405,Ac30,EA041,More than sporadically,EA041-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p63, +50406,Ac31,EA041,Absence or near absence,EA041-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +50407,Ac32,EA041,Absence or near absence,EA041-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +50408,Ac33,EA041,Absence or near absence,EA041-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p63, +50409,Ac34,EA041,Absence or near absence,EA041-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p63, +50410,Ac35,EA041,?,EA041-NA,,,,,, +50411,Ac36,EA041,Absence or near absence,EA041-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p63, +50412,Ac37,EA041,Absence or near absence,EA041-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +50413,Ac38,EA041,Absence or near absence,EA041-1,"A few cattle, which are not milked",malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p63, +50414,Ac39,EA041,?,EA041-NA,,,,,, +50415,Ac4,EA041,Absence or near absence,EA041-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p63, +50416,Ac40,EA041,Absence or near absence,EA041-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +50417,Ac41,EA041,Absence or near absence,EA041-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +50418,Ac42,EA041,?,EA041-NA,,,,,, +50419,Ac43,EA041,More than sporadically,EA041-2,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +50420,Ac5,EA041,Absence or near absence,EA041-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p63, +50421,Ac6,EA041,Absence or near absence,EA041-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p63, +50422,Ac7,EA041,Absence or near absence,EA041-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p63, +50423,Ac8,EA041,Absence or near absence,EA041-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p63, +50424,Ac9,EA041,More than sporadically,EA041-2,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p63, +50425,Ad1,EA041,More than sporadically,EA041-2,,grottanelli1955,,1950,EthnographicAtlas_1967_p63, +50426,Ad10,EA041,More than sporadically,EA041-2,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p67, +50427,Ad11,EA041,More than sporadically,EA041-2,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p67, +50428,Ad12,EA041,More than sporadically,EA041-2,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +50429,Ad13,EA041,More than sporadically,EA041-2,,edel1937;edel1957;taylor1962,,1930,Ethnology_Vol7_No2_Apr_1968, +50430,Ad14,EA041,Absence or near absence,EA041-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,Ethnology_Vol7_No2_Apr_1968, +50431,Ad15,EA041,Absence or near absence,EA041-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p67, +50432,Ad16,EA041,More than sporadically,EA041-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p67, +50433,Ad17,EA041,More than sporadically,EA041-2,,kootzkretschmer192629,,1920,Ethnology_Vol7_No2_Apr_1968, +50434,Ad18,EA041,Absence or near absence,EA041-1,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +50435,Ad19,EA041,More than sporadically,EA041-2,"But 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"") in some districts",fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p67, +50436,Ad2,EA041,More than sporadically,EA041-2,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p63, +50437,Ad20,EA041,More than sporadically,EA041-2,,blohm193133;bosch1930;spellig1927,,1920,Ethnology_Vol7_No2_Apr_1968, +50438,Ad21,EA041,Absence or near absence,EA041-1,,maurice193538,,1930,EthnographicAtlas_1967_p67, +50439,Ad22,EA041,More than sporadically,EA041-2,,abrahams1967;cory1953;malcolm1953,,1950,Ethnology_Vol7_No2_Apr_1968, +50440,Ad23,EA041,More than sporadically,EA041-2,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +50441,Ad24,EA041,More than sporadically,EA041-2,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,Ethnology_Vol7_No2_Apr_1968, +50442,Ad25,EA041,More than sporadically,EA041-2,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +50443,Ad26,EA041,More than sporadically,EA041-2,,sick1916,,1910,Ethnology_Vol7_No2_Apr_1968, +50444,Ad27,EA041,Absence or near absence,EA041-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +50445,Ad28,EA041,More than sporadically,EA041-2,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +50446,Ad29,EA041,More than sporadically,EA041-2,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p67, +50447,Ad3,EA041,More than sporadically,EA041-2,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p63, +50448,Ad30,EA041,Absence or near absence,EA041-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p67, +50449,Ad31,EA041,?,EA041-NA,,,,,, +50450,Ad32,EA041,More than sporadically,EA041-2,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p67, +50451,Ad33,EA041,Absence or near absence,EA041-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p67, +50452,Ad34,EA041,More than sporadically,EA041-2,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +50453,Ad35,EA041,More than sporadically,EA041-2,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p67, +50454,Ad36,EA041,More than sporadically,EA041-2,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +50455,Ad37,EA041,More than sporadically,EA041-2,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +50456,Ad38,EA041,More than sporadically,EA041-2,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +50457,Ad39,EA041,More than sporadically,EA041-2,,gray1963,,1950,EthnographicAtlas_1967_p67, +50458,Ad4,EA041,More than sporadically,EA041-2,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p63, +50459,Ad40,EA041,More than sporadically,EA041-2,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +50460,Ad41,EA041,More than sporadically,EA041-2,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p67, +50461,Ad42,EA041,More than sporadically,EA041-2,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p67, +50462,Ad43,EA041,More than sporadically,EA041-2,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +50463,Ad44,EA041,Absence or near absence,EA041-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p67, +50464,Ad45,EA041,More than sporadically,EA041-2,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p67, +50465,Ad46,EA041,More than sporadically,EA041-2,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p67, +50466,Ad47,EA041,Absence or near absence,EA041-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +50467,Ad48,EA041,More than sporadically,EA041-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +50468,Ad49,EA041,More than sporadically,EA041-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +50469,Ad5,EA041,?,EA041-NA,,,,,, +50470,Ad50,EA041,More than sporadically,EA041-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +50471,Ad51,EA041,Absence or near absence,EA041-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +50472,Ad6,EA041,More than sporadically,EA041-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p63, +50473,Ad7,EA041,More than sporadically,EA041-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p63, +50474,Ad8,EA041,More than sporadically,EA041-2,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p67, +50475,Ad9,EA041,More than sporadically,EA041-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p67, +50476,Ae1,EA041,Absence or near absence,EA041-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p67, +50477,Ae10,EA041,More than sporadically,EA041-2,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +50478,Ae11,EA041,Absence or near absence,EA041-1,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +50479,Ae12,EA041,Absence or near absence,EA041-1,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p67, +50480,Ae13,EA041,?,EA041-NA,,,,,, +50481,Ae14,EA041,More than sporadically,EA041-2,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p67, +50482,Ae15,EA041,More than sporadically,EA041-2,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p67, +50483,Ae16,EA041,?,EA041-NA,,,,,, +50484,Ae17,EA041,Absence or near absence,EA041-1,,delhaise1909b;salmon1953,,1900,Ethnology_Vol7_No2_Apr_1968, +50485,Ae18,EA041,Absence or near absence,EA041-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +50486,Ae19,EA041,?,EA041-NA,,,,,, +50487,Ae2,EA041,Absence or near absence,EA041-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p67, +50488,Ae20,EA041,Absence or near absence,EA041-1,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +50489,Ae21,EA041,Absence or near absence,EA041-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +50490,Ae22,EA041,Absence or near absence,EA041-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p67, +50491,Ae23,EA041,?,EA041-NA,,,,,, +50492,Ae24,EA041,?,EA041-NA,,,,,, +50493,Ae25,EA041,?,EA041-NA,,,,,, +50494,Ae26,EA041,Absence or near absence,EA041-1,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +50495,Ae27,EA041,Absence or near absence,EA041-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +50496,Ae28,EA041,Absence or near absence,EA041-1,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p67, +50497,Ae29,EA041,Absence or near absence,EA041-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p67, +50498,Ae3,EA041,Absence or near absence,EA041-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p67, +50499,Ae30,EA041,Absence or near absence,EA041-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +50500,Ae31,EA041,Absence or near absence,EA041-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +50501,Ae32,EA041,Absence or near absence,EA041-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +50502,Ae33,EA041,Absence or near absence,EA041-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +50503,Ae34,EA041,More than sporadically,EA041-2,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +50504,Ae35,EA041,Absence or near absence,EA041-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +50505,Ae36,EA041,Absence or near absence,EA041-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +50506,Ae37,EA041,?,EA041-NA,,,,,, +50507,Ae38,EA041,Absence or near absence,EA041-1,"Possibly 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1""), though there is no specific mention of goats",wijnant192526,,1920,EthnographicAtlas_1967_p67, +50508,Ae39,EA041,Absence or near absence,EA041-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p67, +50509,Ae4,EA041,Absence or near absence,EA041-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p67, +50510,Ae40,EA041,Absence or near absence,EA041-1,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +50511,Ae41,EA041,Absence or near absence,EA041-1,,andersson1953,,1940,EthnographicAtlas_1967_p67, +50512,Ae42,EA041,Absence or near absence,EA041-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +50513,Ae43,EA041,Absence or near absence,EA041-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +50514,Ae44,EA041,Absence or near absence,EA041-1,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +50515,Ae45,EA041,Absence or near absence,EA041-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +50516,Ae46,EA041,Absence or near absence,EA041-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +50517,Ae47,EA041,Absence or near absence,EA041-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +50518,Ae48,EA041,Absence or near absence,EA041-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p67, +50519,Ae49,EA041,?,EA041-NA,,,,,, +50520,Ae5,EA041,Absence or near absence,EA041-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p67, +50521,Ae50,EA041,Absence or near absence,EA041-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p67, +50522,Ae51,EA041,Absence or near absence,EA041-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p67, +50523,Ae52,EA041,?,EA041-NA,,,,,, +50524,Ae53,EA041,?,EA041-NA,,,,,, +50525,Ae54,EA041,?,EA041-NA,,,,,, +50526,Ae55,EA041,Absence or near absence,EA041-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +50527,Ae56,EA041,Absence or near absence,EA041-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +50528,Ae57,EA041,Absence or near absence,EA041-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +50529,Ae58,EA041,Absence or near absence,EA041-1,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +50530,Ae59,EA041,?,EA041-NA,,,,,, +50531,Ae6,EA041,Absence or near absence,EA041-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,Ethnology_Vol7_No2_Apr_1968, +50532,Ae7,EA041,Absence or near absence,EA041-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,Ethnology_Vol7_No2_Apr_1968, +50533,Ae8,EA041,More than sporadically,EA041-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p67, +50534,Ae9,EA041,Absence or near absence,EA041-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p67, +50535,Af1,EA041,Absence or near absence,EA041-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p67, +50536,Af10,EA041,Absence or near absence,EA041-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p71, +50537,Af11,EA041,Absence or near absence,EA041-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p71, +50538,Af12,EA041,Absence or near absence,EA041-1,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +50539,Af13,EA041,Absence or near absence,EA041-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p71, +50540,Af14,EA041,Absence or near absence,EA041-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p71, +50541,Af15,EA041,Absence or near absence,EA041-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p71, +50542,Af16,EA041,Absence or near absence,EA041-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +50543,Af17,EA041,Absence or near absence,EA041-1,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +50544,Af18,EA041,Absence or near absence,EA041-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +50545,Af19,EA041,Absence or near absence,EA041-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p71, +50546,Af2,EA041,Absence or near absence,EA041-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p67, +50547,Af20,EA041,Absence or near absence,EA041-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p71, +50548,Af21,EA041,Absence or near absence,EA041-1,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +50549,Af22,EA041,Absence or near absence,EA041-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p71, +50550,Af23,EA041,Absence or near absence,EA041-1,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p71, +50551,Af24,EA041,Absence or near absence,EA041-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p71, +50552,Af25,EA041,Absence or near absence,EA041-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p71, +50553,Af26,EA041,Absence or near absence,EA041-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +50554,Af27,EA041,Absence or near absence,EA041-1,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +50555,Af28,EA041,Absence or near absence,EA041-1,"There are also a fair number of cattle, but they are owned, herded and milked exclusively by Fulani",gunnandconant1960,,1910,EthnographicAtlas_1967_p71, +50556,Af29,EA041,Absence or near absence,EA041-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +50557,Af3,EA041,Absence or near absence,EA041-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p67, +50558,Af30,EA041,Absence or near absence,EA041-1,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +50559,Af31,EA041,?,EA041-NA,,,,,, +50560,Af32,EA041,Absence or near absence,EA041-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50561,Af33,EA041,Absence or near absence,EA041-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50562,Af34,EA041,Absence or near absence,EA041-1,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50563,Af35,EA041,Absence or near absence,EA041-1,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +50564,Af36,EA041,Absence or near absence,EA041-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p71, +50565,Af37,EA041,Absence or near absence,EA041-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +50566,Af38,EA041,Absence or near absence,EA041-1,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +50567,Af39,EA041,Absence or near absence,EA041-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +50568,Af4,EA041,Absence or near absence,EA041-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p71, +50569,Af40,EA041,Absence or near absence,EA041-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +50570,Af41,EA041,Absence or near absence,EA041-1,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +50571,Af42,EA041,Absence or near absence,EA041-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p71, +50572,Af43,EA041,Absence or near absence,EA041-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p71, +50573,Af44,EA041,?,EA041-NA,,,,,, +50574,Af45,EA041,Absence or near absence,EA041-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +50575,Af46,EA041,Absence or near absence,EA041-1,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +50576,Af47,EA041,Absence or near absence,EA041-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +50577,Af48,EA041,Absence or near absence,EA041-1,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +50578,Af49,EA041,Absence or near absence,EA041-1,,schwab1947,,1940,EthnographicAtlas_1967_p71, +50579,Af5,EA041,Absence or near absence,EA041-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p71, +50580,Af50,EA041,Absence or near absence,EA041-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +50581,Af51,EA041,Absence or near absence,EA041-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +50582,Af52,EA041,Absence or near absence,EA041-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p71, +50583,Af53,EA041,Absence or near absence,EA041-1,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +50584,Af54,EA041,Absence or near absence,EA041-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p71, +50585,Af55,EA041,Absence or near absence,EA041-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +50586,Af56,EA041,Absence or near absence,EA041-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p71, +50587,Af57,EA041,Absence or near absence,EA041-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p71, +50588,Af58,EA041,Absence or near absence,EA041-1,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +50589,Af6,EA041,Absence or near absence,EA041-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p71, +50590,Af7,EA041,Absence or near absence,EA041-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p71, +50591,Af8,EA041,Absence or near absence,EA041-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p71, +50592,Af9,EA041,Absence or near absence,EA041-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p71, +50593,Ag1,EA041,More than sporadically,EA041-2,Milking is done almost exclusively by resident Fulani,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p71, +50594,Ag10,EA041,Absence or near absence,EA041-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p71, +50595,Ag11,EA041,Absence or near absence,EA041-1,,charles1911;haumant1929;labouret1931,,1910,Ethnology_Vol7_No2_Apr_1968, +50596,Ag12,EA041,More than sporadically,EA041-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p71, +50597,Ag13,EA041,Absence or near absence,EA041-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p71, +50598,Ag14,EA041,Absence or near absence,EA041-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +50599,Ag15,EA041,More than sporadically,EA041-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +50600,Ag16,EA041,Absence or near absence,EA041-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p71, +50601,Ag17,EA041,Absence or near absence,EA041-1,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +50602,Ag18,EA041,Absence or near absence,EA041-1,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p71, +50603,Ag19,EA041,More than sporadically,EA041-2,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p71, +50604,Ag2,EA041,Absence or near absence,EA041-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p71, +50605,Ag20,EA041,More than sporadically,EA041-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +50606,Ag21,EA041,Absence or near absence,EA041-1,,lestrange1950,,1910,EthnographicAtlas_1967_p71, +50607,Ag22,EA041,More than sporadically,EA041-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p71, +50608,Ag23,EA041,More than sporadically,EA041-2,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +50609,Ag24,EA041,More than sporadically,EA041-2,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +50610,Ag25,EA041,More than sporadically,EA041-2,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p71, +50611,Ag26,EA041,More than sporadically,EA041-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p71, +50612,Ag27,EA041,Absence or near absence,EA041-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p71, +50613,Ag28,EA041,More than sporadically,EA041-2,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +50614,Ag29,EA041,Absence or near absence,EA041-1,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +50615,Ag3,EA041,Absence or near absence,EA041-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p71, +50616,Ag30,EA041,Absence or near absence,EA041-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p71, +50617,Ag31,EA041,Absence or near absence,EA041-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p71, +50618,Ag32,EA041,Absence or near absence,EA041-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p71, +50619,Ag33,EA041,Absence or near absence,EA041-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +50620,Ag34,EA041,Absence or near absence,EA041-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +50621,Ag35,EA041,Absence or near absence,EA041-1,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +50622,Ag36,EA041,Absence or near absence,EA041-1,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +50623,Ag37,EA041,Absence or near absence,EA041-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +50624,Ag38,EA041,Absence or near absence,EA041-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +50625,Ag39,EA041,Absence or near absence,EA041-1,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +50626,Ag4,EA041,More than sporadically,EA041-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p71, +50627,Ag40,EA041,Absence or near absence,EA041-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +50628,Ag41,EA041,More than sporadically,EA041-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p71, +50629,Ag42,EA041,Absence or near absence,EA041-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +50630,Ag43,EA041,Absence or near absence,EA041-1,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +50631,Ag44,EA041,Absence or near absence,EA041-1,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +50632,Ag45,EA041,More than sporadically,EA041-2,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +50633,Ag46,EA041,Absence or near absence,EA041-1,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +50634,Ag47,EA041,More than sporadically,EA041-2,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p75, +50635,Ag48,EA041,More than sporadically,EA041-2,But herding and milking are done mainly by Fulani,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p75, +50636,Ag49,EA041,Absence or near absence,EA041-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p75, +50637,Ag5,EA041,Absence or near absence,EA041-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p71, +50638,Ag50,EA041,More than sporadically,EA041-2,But cattle are tended and milked only by Fulani,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +50639,Ag51,EA041,Absence or near absence,EA041-1,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +50640,Ag52,EA041,More than sporadically,EA041-2,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +50641,Ag53,EA041,More than sporadically,EA041-2,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +50642,Ag54,EA041,Absence or near absence,EA041-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +50643,Ag6,EA041,More than sporadically,EA041-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p71, +50644,Ag7,EA041,Absence or near absence,EA041-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p71, +50645,Ag8,EA041,Absence or near absence,EA041-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p71, +50646,Ag9,EA041,Absence or near absence,EA041-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p71, +50647,Ah1,EA041,Absence or near absence,EA041-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50648,Ah10,EA041,Absence or near absence,EA041-1,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +50649,Ah11,EA041,Absence or near absence,EA041-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p75, +50650,Ah12,EA041,Absence or near absence,EA041-1,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +50651,Ah13,EA041,Absence or near absence,EA041-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +50652,Ah14,EA041,Absence or near absence,EA041-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p75, +50653,Ah15,EA041,Absence or near absence,EA041-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p75, +50654,Ah16,EA041,Absence or near absence,EA041-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +50655,Ah17,EA041,Absence or near absence,EA041-1,Also a very few cattle (not milked) and a fair number of horses,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +50656,Ah18,EA041,Absence or near absence,EA041-1,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +50657,Ah19,EA041,Absence or near absence,EA041-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p75, +50658,Ah2,EA041,Absence or near absence,EA041-1,,meek1931a,,1920,EthnographicAtlas_1967_p75, +50659,Ah20,EA041,Absence or near absence,EA041-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p75, +50660,Ah21,EA041,?,EA041-NA,,,,,, +50661,Ah22,EA041,?,EA041-NA,,,,,, +50662,Ah23,EA041,?,EA041-NA,,,,,, +50663,Ah24,EA041,?,EA041-NA,,,,,, +50664,Ah25,EA041,Absence or near absence,EA041-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +50665,Ah26,EA041,Absence or near absence,EA041-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +50666,Ah27,EA041,Absence or near absence,EA041-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +50667,Ah28,EA041,Absence or near absence,EA041-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +50668,Ah29,EA041,Absence or near absence,EA041-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +50669,Ah3,EA041,Absence or near absence,EA041-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p75, +50670,Ah30,EA041,Absence or near absence,EA041-1,,meek1931b,,1920,EthnographicAtlas_1967_p75, +50671,Ah31,EA041,Absence or near absence,EA041-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p75, +50672,Ah32,EA041,Absence or near absence,EA041-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +50673,Ah33,EA041,Absence or near absence,EA041-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p75, +50674,Ah34,EA041,Absence or near absence,EA041-1,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +50675,Ah35,EA041,More than sporadically,EA041-2,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +50676,Ah36,EA041,Absence or near absence,EA041-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p75, +50677,Ah37,EA041,Absence or near absence,EA041-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +50678,Ah38,EA041,Absence or near absence,EA041-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p75, +50679,Ah39,EA041,More than sporadically,EA041-2,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p75, +50680,Ah4,EA041,Absence or near absence,EA041-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p75, +50681,Ah5,EA041,Absence or near absence,EA041-1,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No4_Oct_1962, +50682,Ah6,EA041,Absence or near absence,EA041-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +50683,Ah7,EA041,Absence or near absence,EA041-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p75, +50684,Ah8,EA041,Absence or near absence,EA041-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p75, +50685,Ah9,EA041,Absence or near absence,EA041-1,"Diamond reports 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"")",diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p75,"Assume Murdock comment refers to col 39, not col 30 as stated in Gray (1999); in that case however the codes for EA039/EA040/EA041 are as reported by Diamond." +50686,Ai1,EA041,Absence or near absence,EA041-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p75, +50687,Ai10,EA041,More than sporadically,EA041-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p75, +50688,Ai11,EA041,Absence or near absence,EA041-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p75, +50689,Ai12,EA041,Absence or near absence,EA041-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p75, +50690,Ai13,EA041,Absence or near absence,EA041-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +50691,Ai14,EA041,Absence or near absence,EA041-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p75, +50692,Ai15,EA041,More than sporadically,EA041-2,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p75, +50693,Ai16,EA041,More than sporadically,EA041-2,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +50694,Ai17,EA041,More than sporadically,EA041-2,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +50695,Ai18,EA041,More than sporadically,EA041-2,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +50696,Ai19,EA041,More than sporadically,EA041-2,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +50697,Ai2,EA041,?,EA041-NA,,,,,, +50698,Ai20,EA041,More than sporadically,EA041-2,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +50699,Ai21,EA041,More than sporadically,EA041-2,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p75, +50700,Ai22,EA041,More than sporadically,EA041-2,,delafosse1897,,1890,EthnographicAtlas_1967_p75, +50701,Ai23,EA041,Absence or near absence,EA041-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p75, +50702,Ai24,EA041,Absence or near absence,EA041-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +50703,Ai25,EA041,Absence or near absence,EA041-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +50704,Ai26,EA041,Absence or near absence,EA041-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p75, +50705,Ai27,EA041,Absence or near absence,EA041-1,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +50706,Ai28,EA041,Absence or near absence,EA041-1,,delhaise1912,,1910,EthnographicAtlas_1967_p75, +50707,Ai29,EA041,More than sporadically,EA041-2,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p75, +50708,Ai3,EA041,Absence or near absence,EA041-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p75, +50709,Ai30,EA041,More than sporadically,EA041-2,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +50710,Ai31,EA041,More than sporadically,EA041-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +50711,Ai32,EA041,More than sporadically,EA041-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p75, +50712,Ai33,EA041,More than sporadically,EA041-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p75, +50713,Ai34,EA041,More than sporadically,EA041-2,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +50714,Ai35,EA041,Absence or near absence,EA041-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p75, +50715,Ai36,EA041,More than sporadically,EA041-2,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p75, +50716,Ai37,EA041,More than sporadically,EA041-2,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +50717,Ai38,EA041,More than sporadically,EA041-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +50718,Ai39,EA041,More than sporadically,EA041-2,,nadel1947,,1940,EthnographicAtlas_1967_p75, +50719,Ai4,EA041,More than sporadically,EA041-2,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +50720,Ai40,EA041,More than sporadically,EA041-2,,nadel1947,,1940,EthnographicAtlas_1967_p75, +50721,Ai41,EA041,More than sporadically,EA041-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p75, +50722,Ai42,EA041,More than sporadically,EA041-2,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p75, +50723,Ai43,EA041,More than sporadically,EA041-2,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p75, +50724,Ai44,EA041,More than sporadically,EA041-2,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p75, +50725,Ai45,EA041,More than sporadically,EA041-2,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +50726,Ai46,EA041,More than sporadically,EA041-2,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p75, +50727,Ai47,EA041,More than sporadically,EA041-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p75, +50728,Ai5,EA041,Absence or near absence,EA041-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p75, +50729,Ai6,EA041,More than sporadically,EA041-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p75, +50730,Ai7,EA041,Absence or near absence,EA041-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p75, +50731,Ai8,EA041,More than sporadically,EA041-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p75, +50732,Ai9,EA041,More than sporadically,EA041-2,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p75, +50733,Aj1,EA041,More than sporadically,EA041-2,,lawrance1957,,1950,EthnographicAtlas_1967_p75, +50734,Aj10,EA041,More than sporadically,EA041-2,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +50735,Aj11,EA041,More than sporadically,EA041-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p79, +50736,Aj12,EA041,More than sporadically,EA041-2,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +50737,Aj13,EA041,More than sporadically,EA041-2,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +50738,Aj14,EA041,More than sporadically,EA041-2,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +50739,Aj15,EA041,More than sporadically,EA041-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p79, +50740,Aj16,EA041,More than sporadically,EA041-2,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p79, +50741,Aj17,EA041,More than sporadically,EA041-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p79, +50742,Aj18,EA041,More than sporadically,EA041-2,,jensen1959,,1950,EthnographicAtlas_1967_p79, +50743,Aj19,EA041,More than sporadically,EA041-2,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p79, +50744,Aj2,EA041,More than sporadically,EA041-2,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p79, +50745,Aj20,EA041,More than sporadically,EA041-2,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p79, +50746,Aj21,EA041,More than sporadically,EA041-2,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p79, +50747,Aj22,EA041,More than sporadically,EA041-2,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +50748,Aj23,EA041,More than sporadically,EA041-2,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p79, +50749,Aj24,EA041,More than sporadically,EA041-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p79, +50750,Aj25,EA041,More than sporadically,EA041-2,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +50751,Aj26,EA041,More than sporadically,EA041-2,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p79, +50752,Aj27,EA041,More than sporadically,EA041-2,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +50753,Aj28,EA041,More than sporadically,EA041-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +50754,Aj29,EA041,More than sporadically,EA041-2,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +50755,Aj3,EA041,More than sporadically,EA041-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p79, +50756,Aj30,EA041,?,EA041-NA,,,,,, +50757,Aj31,EA041,?,EA041-NA,,,,,, +50758,Aj4,EA041,More than sporadically,EA041-2,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p79, +50759,Aj5,EA041,More than sporadically,EA041-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p79, +50760,Aj6,EA041,More than sporadically,EA041-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p79, +50761,Aj7,EA041,More than sporadically,EA041-2,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p79, +50762,Aj8,EA041,More than sporadically,EA041-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p79, +50763,Aj9,EA041,More than sporadically,EA041-2,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p79, +50764,Ca1,EA041,More than sporadically,EA041-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +50765,Ca10,EA041,More than sporadically,EA041-2,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +50766,Ca11,EA041,More than sporadically,EA041-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p79, +50767,Ca12,EA041,More than sporadically,EA041-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p79, +50768,Ca13,EA041,More than sporadically,EA041-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p79, +50769,Ca14,EA041,More than sporadically,EA041-2,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p79, +50770,Ca15,EA041,More than sporadically,EA041-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +50771,Ca16,EA041,More than sporadically,EA041-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p79, +50772,Ca17,EA041,More than sporadically,EA041-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +50773,Ca18,EA041,More than sporadically,EA041-2,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +50774,Ca19,EA041,More than sporadically,EA041-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p79, +50775,Ca2,EA041,More than sporadically,EA041-2,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p79, +50776,Ca20,EA041,More than sporadically,EA041-2,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +50777,Ca21,EA041,More than sporadically,EA041-2,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +50778,Ca22,EA041,More than sporadically,EA041-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +50779,Ca23,EA041,More than sporadically,EA041-2,,jensen1959,,1950,EthnographicAtlas_1967_p79, +50780,Ca24,EA041,More than sporadically,EA041-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +50781,Ca25,EA041,More than sporadically,EA041-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +50782,Ca26,EA041,More than sporadically,EA041-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +50783,Ca27,EA041,More than sporadically,EA041-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +50784,Ca28,EA041,More than sporadically,EA041-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p79, +50785,Ca29,EA041,More than sporadically,EA041-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p79, +50786,Ca3,EA041,More than sporadically,EA041-2,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p79, +50787,Ca30,EA041,More than sporadically,EA041-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p79, +50788,Ca31,EA041,More than sporadically,EA041-2,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p79, +50789,Ca32,EA041,More than sporadically,EA041-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +50790,Ca33,EA041,More than sporadically,EA041-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p79, +50791,Ca34,EA041,More than sporadically,EA041-2,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +50792,Ca35,EA041,More than sporadically,EA041-2,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +50793,Ca36,EA041,More than sporadically,EA041-2,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +50794,Ca37,EA041,More than sporadically,EA041-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +50795,Ca38,EA041,More than sporadically,EA041-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +50796,Ca39,EA041,More than sporadically,EA041-2,,lewis1965b,,1930,EthnographicAtlas_1967_p79, +50797,Ca4,EA041,More than sporadically,EA041-2,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p79, +50798,Ca40,EA041,More than sporadically,EA041-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +50799,Ca41,EA041,More than sporadically,EA041-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +50800,Ca42,EA041,More than sporadically,EA041-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +50801,Ca43,EA041,?,EA041-NA,,,,,, +50802,Ca5,EA041,More than sporadically,EA041-2,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p79, +50803,Ca6,EA041,More than sporadically,EA041-2,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p79, +50804,Ca7,EA041,More than sporadically,EA041-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p79, +50805,Ca8,EA041,More than sporadically,EA041-2,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p79, +50806,Ca9,EA041,More than sporadically,EA041-2,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +50807,Cb1,EA041,?,EA041-NA,,,,,, +50808,Cb10,EA041,Absence or near absence,EA041-1,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +50809,Cb11,EA041,More than sporadically,EA041-2,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +50810,Cb12,EA041,More than sporadically,EA041-2,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +50811,Cb13,EA041,More than sporadically,EA041-2,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +50812,Cb14,EA041,More than sporadically,EA041-2,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +50813,Cb15,EA041,More than sporadically,EA041-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +50814,Cb16,EA041,More than sporadically,EA041-2,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +50815,Cb17,EA041,More than sporadically,EA041-2,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p79, +50816,Cb18,EA041,More than sporadically,EA041-2,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p79, +50817,Cb19,EA041,More than sporadically,EA041-2,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p79, +50818,Cb2,EA041,More than sporadically,EA041-2,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p79, +50819,Cb20,EA041,More than sporadically,EA041-2,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +50820,Cb21,EA041,More than sporadically,EA041-2,,pfeffer1936,,1930,EthnographicAtlas_1967_p83, +50821,Cb22,EA041,More than sporadically,EA041-2,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +50822,Cb23,EA041,More than sporadically,EA041-2,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p83, +50823,Cb24,EA041,More than sporadically,EA041-2,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p83, +50824,Cb25,EA041,More than sporadically,EA041-2,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +50825,Cb26,EA041,More than sporadically,EA041-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p83, +50826,Cb27,EA041,Absence or near absence,EA041-1,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +50827,Cb28,EA041,Absence or near absence,EA041-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +50828,Cb29,EA041,?,EA041-NA,,,,,, +50829,Cb3,EA041,More than sporadically,EA041-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p79, +50830,Cb4,EA041,More than sporadically,EA041-2,,reid1930,,1920,EthnographicAtlas_1967_p79, +50831,Cb5,EA041,More than sporadically,EA041-2,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p79, +50832,Cb6,EA041,Absence or near absence,EA041-1,,woodnd,,1920,EthnographicAtlas_1967_p79, +50833,Cb7,EA041,Absence or near absence,EA041-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p79, +50834,Cb8,EA041,More than sporadically,EA041-2,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p79, +50835,Cb9,EA041,Absence or near absence,EA041-1,Milking is done exclusively by Fulani,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p79, +50836,Cc1,EA041,More than sporadically,EA041-2,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p83, +50837,Cc10,EA041,More than sporadically,EA041-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p83, +50838,Cc11,EA041,More than sporadically,EA041-2,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +50839,Cc12,EA041,More than sporadically,EA041-2,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +50840,Cc13,EA041,More than sporadically,EA041-2,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +50841,Cc14,EA041,More than sporadically,EA041-2,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +50842,Cc15,EA041,?,EA041-NA,,,,,, +50843,Cc16,EA041,More than sporadically,EA041-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p83, +50844,Cc17,EA041,More than sporadically,EA041-2,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p83, +50845,Cc18,EA041,More than sporadically,EA041-2,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +50846,Cc19,EA041,More than sporadically,EA041-2,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +50847,Cc2,EA041,More than sporadically,EA041-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p83, +50848,Cc20,EA041,More than sporadically,EA041-2,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p83, +50849,Cc3,EA041,More than sporadically,EA041-2,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p83, +50850,Cc4,EA041,More than sporadically,EA041-2,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p83, +50851,Cc5,EA041,More than sporadically,EA041-2,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p83, +50852,Cc6,EA041,More than sporadically,EA041-2,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +50853,Cc7,EA041,More than sporadically,EA041-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50854,Cc8,EA041,?,EA041-NA,,,,,, +50855,Cc9,EA041,More than sporadically,EA041-2,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p83, +50856,Cd1,EA041,More than sporadically,EA041-2,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p83, +50857,Cd10,EA041,More than sporadically,EA041-2,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +50858,Cd11,EA041,More than sporadically,EA041-2,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p83, +50859,Cd12,EA041,More than sporadically,EA041-2,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p83, +50860,Cd13,EA041,More than sporadically,EA041-2,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +50861,Cd14,EA041,More than sporadically,EA041-2,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +50862,Cd15,EA041,More than sporadically,EA041-2,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +50863,Cd16,EA041,More than sporadically,EA041-2,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +50864,Cd17,EA041,More than sporadically,EA041-2,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +50865,Cd18,EA041,More than sporadically,EA041-2,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +50866,Cd19,EA041,More than sporadically,EA041-2,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +50867,Cd2,EA041,More than sporadically,EA041-2,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p83, +50868,Cd20,EA041,More than sporadically,EA041-2,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +50869,Cd21,EA041,More than sporadically,EA041-2,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +50870,Cd3,EA041,More than sporadically,EA041-2,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p83, +50871,Cd4,EA041,More than sporadically,EA041-2,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p83, +50872,Cd5,EA041,More than sporadically,EA041-2,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p83, +50873,Cd6,EA041,More than sporadically,EA041-2,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p83, +50874,Cd7,EA041,More than sporadically,EA041-2,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +50875,Cd8,EA041,More than sporadically,EA041-2,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +50876,Cd9,EA041,More than sporadically,EA041-2,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +50877,Ce1,EA041,More than sporadically,EA041-2,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p83, +50878,Ce2,EA041,?,EA041-NA,,,,,, +50879,Ce3,EA041,More than sporadically,EA041-2,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +50880,Ce4,EA041,More than sporadically,EA041-2,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50881,Ce5,EA041,More than sporadically,EA041-2,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p83, +50882,Ce6,EA041,More than sporadically,EA041-2,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p83, +50883,Ce7,EA041,More than sporadically,EA041-2,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p83, +50884,Ce8,EA041,More than sporadically,EA041-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +50885,Cf1,EA041,More than sporadically,EA041-2,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p83, +50886,Cf2,EA041,More than sporadically,EA041-2,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No4_Oct_1962, +50887,Cf3,EA041,More than sporadically,EA041-2,,munch1945,,1930,EthnographicAtlas_1967_p83, +50888,Cf4,EA041,More than sporadically,EA041-2,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p83, +50889,Cf5,EA041,More than sporadically,EA041-2,,miner1939,,1930,EthnographicAtlas_1967_p83, +50890,Cg1,EA041,More than sporadically,EA041-2,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p83, +50891,Cg2,EA041,More than sporadically,EA041-2,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p83, +50892,Cg3,EA041,More than sporadically,EA041-2,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p83, +50893,Cg4,EA041,More than sporadically,EA041-2,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p83, +50894,Cg5,EA041,More than sporadically,EA041-2,,turneyhigh1953,,1950,Ethnology_Vol1_No4_Oct_1962, +50895,Ch1,EA041,More than sporadically,EA041-2,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p83, +50896,Ch10,EA041,?,EA041-NA,,,,,, +50897,Ch11,EA041,More than sporadically,EA041-2,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +50898,Ch2,EA041,More than sporadically,EA041-2,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p83, +50899,Ch3,EA041,More than sporadically,EA041-2,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p83, +50900,Ch4,EA041,More than sporadically,EA041-2,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p83, +50901,Ch5,EA041,More than sporadically,EA041-2,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p83, +50902,Ch6,EA041,More than sporadically,EA041-2,,ember1954,,1910,EthnographicAtlas_1967_p83, +50903,Ch7,EA041,More than sporadically,EA041-2,,friedrich1954,,1930,EthnographicAtlas_1967_p83, +50904,Ch8,EA041,More than sporadically,EA041-2,,hanzeli1955,,1940,EthnographicAtlas_1967_p83, +50905,Ch9,EA041,More than sporadically,EA041-2,,maciuika1955,,1930,EthnographicAtlas_1967_p83, +50906,Ci1,EA041,More than sporadically,EA041-2,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p83, +50907,Ci10,EA041,More than sporadically,EA041-2,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p83, +50908,Ci11,EA041,More than sporadically,EA041-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p83, +50909,Ci12,EA041,More than sporadically,EA041-2,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +50910,Ci2,EA041,More than sporadically,EA041-2,,grigolia1939,,1930,EthnographicAtlas_1967_p83, +50911,Ci3,EA041,More than sporadically,EA041-2,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p83, +50912,Ci4,EA041,More than sporadically,EA041-2,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p83, +50913,Ci5,EA041,More than sporadically,EA041-2,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +50914,Ci6,EA041,More than sporadically,EA041-2,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p83, +50915,Ci7,EA041,More than sporadically,EA041-2,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p83, +50916,Ci8,EA041,More than sporadically,EA041-2,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +50917,Ci9,EA041,More than sporadically,EA041-2,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +50918,Cj1,EA041,More than sporadically,EA041-2,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p83, +50919,Cj10,EA041,More than sporadically,EA041-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p87, +50920,Cj2,EA041,More than sporadically,EA041-2,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p83, +50921,Cj3,EA041,More than sporadically,EA041-2,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p87, +50922,Cj4,EA041,More than sporadically,EA041-2,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p87, +50923,Cj5,EA041,More than sporadically,EA041-2,,dickson1949,,1930,EthnographicAtlas_1967_p87, +50924,Cj6,EA041,More than sporadically,EA041-2,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +50925,Cj7,EA041,More than sporadically,EA041-2,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p87, +50926,Cj8,EA041,More than sporadically,EA041-2,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p87, +50927,Cj9,EA041,More than sporadically,EA041-2,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +50928,Ea1,EA041,More than sporadically,EA041-2,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p87, +50929,Ea10,EA041,More than sporadically,EA041-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +50930,Ea11,EA041,More than sporadically,EA041-2,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +50931,Ea12,EA041,More than sporadically,EA041-2,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +50932,Ea13,EA041,More than sporadically,EA041-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +50933,Ea2,EA041,More than sporadically,EA041-2,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p87, +50934,Ea3,EA041,More than sporadically,EA041-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p87, +50935,Ea4,EA041,More than sporadically,EA041-2,,barth1956b,,1950,EthnographicAtlas_1967_p87, +50936,Ea5,EA041,More than sporadically,EA041-2,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p87, +50937,Ea6,EA041,More than sporadically,EA041-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p87, +50938,Ea7,EA041,More than sporadically,EA041-2,,schurmann1962,,1950,EthnographicAtlas_1967_p87, +50939,Ea8,EA041,More than sporadically,EA041-2,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p87, +50940,Ea9,EA041,More than sporadically,EA041-2,,vreeland1957,,1950,EthnographicAtlas_1967_p87, +50941,Eb1,EA041,More than sporadically,EA041-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p87, +50942,Eb2,EA041,More than sporadically,EA041-2,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p87, +50943,Eb3,EA041,More than sporadically,EA041-2,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p87, +50944,Eb4,EA041,?,EA041-NA,,,,,, +50945,Eb5,EA041,More than sporadically,EA041-2,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No2_Apr_1963, +50946,Eb6,EA041,?,EA041-NA,,,,,, +50947,Eb7,EA041,More than sporadically,EA041-2,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p87, +50948,Eb8,EA041,?,EA041-NA,,,,,, +50949,Ec1,EA041,Absence or near absence,EA041-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p87, +50950,Ec10,EA041,Absence or near absence,EA041-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p87, +50951,Ec11,EA041,Absence or near absence,EA041-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +50952,Ec2,EA041,More than sporadically,EA041-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50953,Ec3,EA041,Absence or near absence,EA041-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p87, +50954,Ec4,EA041,Absence or near absence,EA041-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p87, +50955,Ec5,EA041,Absence or near absence,EA041-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p87, +50956,Ec6,EA041,Absence or near absence,EA041-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p87, +50957,Ec7,EA041,Absence or near absence,EA041-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p87, +50958,Ec8,EA041,Absence or near absence,EA041-1,,shimkin1939,,1900,EthnographicAtlas_1967_p87, +50959,Ec9,EA041,Absence or near absence,EA041-1,,lattimore1933,,1920,EthnographicAtlas_1967_p87, +50960,Ed1,EA041,Absence or near absence,EA041-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p87, +50961,Ed10,EA041,Absence or near absence,EA041-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p87, +50962,Ed13,EA041,?,EA041-NA,,,,,, +50963,Ed14,EA041,?,EA041-NA,,,,,, +50964,Ed15a,EA041,?,EA041-NA,,,,,, +50965,Ed15b,EA041,Absence or near absence,EA041-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +50966,Ed16,EA041,?,EA041-NA,,,,,, +50967,Ed2,EA041,Absence or near absence,EA041-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p87, +50968,Ed3,EA041,Absence or near absence,EA041-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p87, +50969,Ed4,EA041,Absence or near absence,EA041-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p87, +50970,Ed5,EA041,More than sporadically,EA041-2,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50971,Ed6,EA041,Absence or near absence,EA041-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p87, +50972,Ed7,EA041,Absence or near absence,EA041-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p87, +50973,Ed8,EA041,More than sporadically,EA041-2,,fitzgerald1941,,1930,EthnographicAtlas_1967_p87, +50974,Ed9,EA041,Absence or near absence,EA041-1,But cows and goats are milked only occasionally to feed calves or children,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p87, +50975,Ee1,EA041,Absence or near absence,EA041-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p87, +50976,Ee2,EA041,More than sporadically,EA041-2,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p87, +50977,Ee3,EA041,More than sporadically,EA041-2,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p87, +50978,Ee4,EA041,More than sporadically,EA041-2,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p87, +50979,Ee5,EA041,More than sporadically,EA041-2,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p87, +50980,Ee6,EA041,More than sporadically,EA041-2,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p87, +50981,Ee7,EA041,?,EA041-NA,,,,,, +50982,Ee8,EA041,More than sporadically,EA041-2,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +50983,Ef1,EA041,Absence or near absence,EA041-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p87, +50984,Ef10,EA041,?,EA041-NA,,,,,, +50985,Ef11,EA041,More than sporadically,EA041-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +50986,Ef2,EA041,More than sporadically,EA041-2,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +50987,Ef3,EA041,?,EA041-NA,,,,,, +50988,Ef4,EA041,?,EA041-NA,,,,,, +50989,Ef5,EA041,More than sporadically,EA041-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p87, +50990,Ef6,EA041,More than sporadically,EA041-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p87, +50991,Ef7,EA041,More than sporadically,EA041-2,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p87, +50992,Ef8,EA041,More than sporadically,EA041-2,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p87, +50993,Ef9,EA041,More than sporadically,EA041-2,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50994,Eg1,EA041,More than sporadically,EA041-2,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50995,Eg10,EA041,More than sporadically,EA041-2,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p91, +50996,Eg11,EA041,?,EA041-NA,,,,,, +50997,Eg12,EA041,?,EA041-NA,,,,,, +50998,Eg13,EA041,Absence or near absence,EA041-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +50999,Eg14,EA041,More than sporadically,EA041-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +51000,Eg2,EA041,More than sporadically,EA041-2,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p87, +51001,Eg3,EA041,Absence or near absence,EA041-1,"A few cattle are kept, but are not milked",grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p87, +51002,Eg4,EA041,More than sporadically,EA041-2,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p87, +51003,Eg5,EA041,More than sporadically,EA041-2,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p91, +51004,Eg6,EA041,More than sporadically,EA041-2,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p91, +51005,Eg7,EA041,Absence or near absence,EA041-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p91, +51006,Eg8,EA041,Absence or near absence,EA041-1,,griffiths1946,,1940,EthnographicAtlas_1967_p91, +51007,Eg9,EA041,Absence or near absence,EA041-1,,elwin1939,,1930,EthnographicAtlas_1967_p91, +51008,Eh1,EA041,Absence or near absence,EA041-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p91, +51009,Eh10,EA041,?,EA041-NA,,,,,, +51010,Eh2,EA041,Absence or near absence,EA041-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p91, +51011,Eh3,EA041,More than sporadically,EA041-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p91, +51012,Eh4,EA041,Absence or near absence,EA041-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51013,Eh5,EA041,Absence or near absence,EA041-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p91, +51014,Eh6,EA041,More than sporadically,EA041-2,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p91, +51015,Eh7,EA041,More than sporadically,EA041-2,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p91, +51016,Eh8,EA041,More than sporadically,EA041-2,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p91, +51017,Eh9,EA041,More than sporadically,EA041-2,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +51018,Ei1,EA041,Absence or near absence,EA041-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51019,Ei10,EA041,More than sporadically,EA041-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p91, +51020,Ei11,EA041,Absence or near absence,EA041-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p91, +51021,Ei12,EA041,Absence or near absence,EA041-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +51022,Ei13,EA041,Absence or near absence,EA041-1,,hutton1921a,,1910,EthnographicAtlas_1967_p91, +51023,Ei14,EA041,Absence or near absence,EA041-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p91, +51024,Ei15,EA041,?,EA041-NA,,,,,, +51025,Ei16,EA041,Absence or near absence,EA041-1,,hutton1921b,,1910,EthnographicAtlas_1967_p91, +51026,Ei17,EA041,?,EA041-NA,,,,,, +51027,Ei18,EA041,Absence or near absence,EA041-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p91, +51028,Ei19,EA041,Absence or near absence,EA041-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p91, +51029,Ei2,EA041,Absence or near absence,EA041-1,,mills1922,,1920,EthnographicAtlas_1967_p91, +51030,Ei20,EA041,?,EA041-NA,,,,,, +51031,Ei3,EA041,Absence or near absence,EA041-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p91, +51032,Ei4,EA041,Absence or near absence,EA041-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p91, +51033,Ei5,EA041,Absence or near absence,EA041-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p91, +51034,Ei6,EA041,Absence or near absence,EA041-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p91, +51035,Ei7,EA041,Absence or near absence,EA041-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p91, +51036,Ei8,EA041,Absence or near absence,EA041-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p91, +51037,Ei9,EA041,Absence or near absence,EA041-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p91, +51038,Ej1,EA041,Absence or near absence,EA041-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p91, +51039,Ej10,EA041,Absence or near absence,EA041-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p91, +51040,Ej11,EA041,Absence or near absence,EA041-1,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p91, +51041,Ej12,EA041,Absence or near absence,EA041-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p91, +51042,Ej13,EA041,Absence or near absence,EA041-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p91, +51043,Ej14,EA041,Absence or near absence,EA041-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51044,Ej15,EA041,Absence or near absence,EA041-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +51045,Ej16,EA041,Absence or near absence,EA041-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +51046,Ej2,EA041,Absence or near absence,EA041-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p91, +51047,Ej3,EA041,Absence or near absence,EA041-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p91, +51048,Ej4,EA041,Absence or near absence,EA041-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p91, +51049,Ej5,EA041,Absence or near absence,EA041-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p91, +51050,Ej6,EA041,Absence or near absence,EA041-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p91, +51051,Ej7,EA041,Absence or near absence,EA041-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p91, +51052,Ej8,EA041,Absence or near absence,EA041-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p91, +51053,Ej9,EA041,Absence or near absence,EA041-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +51054,Ia1,EA041,Absence or near absence,EA041-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p91, +51055,Ia10,EA041,Absence or near absence,EA041-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p91, +51056,Ia11,EA041,Absence or near absence,EA041-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p91, +51057,Ia12,EA041,Absence or near absence,EA041-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p95, +51058,Ia13,EA041,Absence or near absence,EA041-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p95, +51059,Ia14,EA041,Absence or near absence,EA041-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p95, +51060,Ia15,EA041,Absence or near absence,EA041-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +51061,Ia16,EA041,Absence or near absence,EA041-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p95, +51062,Ia17,EA041,?,EA041-NA,,,,,, +51063,Ia18,EA041,?,EA041-NA,,,,,, +51064,Ia2,EA041,Absence or near absence,EA041-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p91, +51065,Ia3,EA041,Absence or near absence,EA041-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p91, +51066,Ia4,EA041,Absence or near absence,EA041-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p91, +51067,Ia5,EA041,Absence or near absence,EA041-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p91, +51068,Ia6,EA041,Absence or near absence,EA041-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51069,Ia7,EA041,Absence or near absence,EA041-1,,fox1954,,1950,EthnographicAtlas_1967_p91, +51070,Ia8,EA041,Absence or near absence,EA041-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +51071,Ia9,EA041,Absence or near absence,EA041-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p91, +51072,Ib1,EA041,Absence or near absence,EA041-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51073,Ib2,EA041,Absence or near absence,EA041-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51074,Ib3,EA041,Absence or near absence,EA041-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p95, +51075,Ib4,EA041,Absence or near absence,EA041-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p95, +51076,Ib5,EA041,Absence or near absence,EA041-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p95, +51077,Ib6,EA041,Absence or near absence,EA041-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p95, +51078,Ib7,EA041,Absence or near absence,EA041-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p95, +51079,Ib8,EA041,Absence or near absence,EA041-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p95, +51080,Ib9,EA041,?,EA041-NA,,,,,, +51081,Ic1,EA041,Absence or near absence,EA041-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51082,Ic10,EA041,Absence or near absence,EA041-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p95, +51083,Ic11,EA041,Absence or near absence,EA041-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51084,Ic12,EA041,Absence or near absence,EA041-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +51085,Ic13,EA041,?,EA041-NA,,,,,, +51086,Ic2,EA041,Absence or near absence,EA041-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p95, +51087,Ic3,EA041,Absence or near absence,EA041-1,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p95, +51088,Ic4,EA041,?,EA041-NA,,,,,, +51089,Ic5,EA041,Absence or near absence,EA041-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p95, +51090,Ic6,EA041,Absence or near absence,EA041-1,,drabbe1940,,1930,EthnographicAtlas_1967_p95, +51091,Ic7,EA041,Absence or near absence,EA041-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p95, +51092,Ic8,EA041,Absence or near absence,EA041-1,,pleyte1893,,1890,EthnographicAtlas_1967_p95, +51093,Ic9,EA041,Absence or near absence,EA041-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p95, +51094,Id1,EA041,Absence or near absence,EA041-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p95, +51095,Id10,EA041,Absence or near absence,EA041-1,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +51096,Id11,EA041,Absence or near absence,EA041-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +51097,Id12,EA041,Absence or near absence,EA041-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +51098,Id13,EA041,Absence or near absence,EA041-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +51099,Id2,EA041,Absence or near absence,EA041-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p95, +51100,Id3,EA041,Absence or near absence,EA041-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p95, +51101,Id4,EA041,Absence or near absence,EA041-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p95, +51102,Id5,EA041,Absence or near absence,EA041-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p95, +51103,Id6,EA041,Absence or near absence,EA041-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p95, +51104,Id7,EA041,Absence or near absence,EA041-1,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +51105,Id8,EA041,Absence or near absence,EA041-1,,roth1890,,1830,EthnographicAtlas_1967_p95, +51106,Id9,EA041,Absence or near absence,EA041-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p95, +51107,Ie1,EA041,Absence or near absence,EA041-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51108,Ie10,EA041,Absence or near absence,EA041-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p95, +51109,Ie11,EA041,Absence or near absence,EA041-1,,bowers1964,,1950,EthnographicAtlas_1967_p95, +51110,Ie12,EA041,Absence or near absence,EA041-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51111,Ie13,EA041,Absence or near absence,EA041-1,,landtman1927,,1920,EthnographicAtlas_1967_p95, +51112,Ie14,EA041,Absence or near absence,EA041-1,,haddon1908,,1900,EthnographicAtlas_1967_p95, +51113,Ie15,EA041,Absence or near absence,EA041-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51114,Ie16,EA041,Absence or near absence,EA041-1,,williams194041,,1940,EthnographicAtlas_1967_p95, +51115,Ie17,EA041,Absence or near absence,EA041-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p95, +51116,Ie18,EA041,Absence or near absence,EA041-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p95, +51117,Ie19,EA041,Absence or near absence,EA041-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p95, +51118,Ie2,EA041,Absence or near absence,EA041-1,,schmitz1960,,1920,EthnographicAtlas_1967_p95, +51119,Ie20,EA041,Absence or near absence,EA041-1,,seligmann1910,,1900,EthnographicAtlas_1967_p95, +51120,Ie21,EA041,Absence or near absence,EA041-1,,malinowski1916,,1900,EthnographicAtlas_1967_p95, +51121,Ie22,EA041,Absence or near absence,EA041-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p95, +51122,Ie23,EA041,Absence or near absence,EA041-1,,schoorl1957,,1950,EthnographicAtlas_1967_p95, +51123,Ie24,EA041,Absence or near absence,EA041-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p95, +51124,Ie25,EA041,Absence or near absence,EA041-1,,williamson1912,,1920,EthnographicAtlas_1967_p95, +51125,Ie26,EA041,Absence or near absence,EA041-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p99, +51126,Ie27,EA041,Absence or near absence,EA041-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p99, +51127,Ie28,EA041,Absence or near absence,EA041-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p99, +51128,Ie29,EA041,Absence or near absence,EA041-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51129,Ie3,EA041,Absence or near absence,EA041-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51130,Ie30,EA041,Absence or near absence,EA041-1,,pouwer1955,,1950,EthnographicAtlas_1967_p99, +51131,Ie31,EA041,Absence or near absence,EA041-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +51132,Ie32,EA041,Absence or near absence,EA041-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +51133,Ie33,EA041,Absence or near absence,EA041-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +51134,Ie34,EA041,?,EA041-NA,,,,,, +51135,Ie35,EA041,Absence or near absence,EA041-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +51136,Ie36,EA041,?,EA041-NA,,,,,, +51137,Ie37,EA041,?,EA041-NA,,,,,, +51138,Ie38,EA041,Absence or near absence,EA041-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +51139,Ie39,EA041,Absence or near absence,EA041-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +51140,Ie4,EA041,Absence or near absence,EA041-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51141,Ie5,EA041,Absence or near absence,EA041-1,,williams1936,,1930,EthnographicAtlas_1967_p95, +51142,Ie6,EA041,Absence or near absence,EA041-1,,held1947,,1930,EthnographicAtlas_1967_p95, +51143,Ie7,EA041,Absence or near absence,EA041-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p95, +51144,Ie8,EA041,Absence or near absence,EA041-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p95, +51145,Ie9,EA041,Absence or near absence,EA041-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p95, +51146,If1,EA041,Absence or near absence,EA041-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51147,If10,EA041,?,EA041-NA,,,,,, +51148,If11,EA041,Absence or near absence,EA041-1,,sarfert1919,,1860,EthnographicAtlas_1967_p99, +51149,If12,EA041,Absence or near absence,EA041-1,,mason1954,,1940,EthnographicAtlas_1967_p99, +51150,If13,EA041,Absence or near absence,EA041-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p99, +51151,If14,EA041,Absence or near absence,EA041-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p99, +51152,If15,EA041,Absence or near absence,EA041-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p99, +51153,If16,EA041,Absence or near absence,EA041-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +51154,If17,EA041,Absence or near absence,EA041-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +51155,If2,EA041,Absence or near absence,EA041-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p99, +51156,If3,EA041,Absence or near absence,EA041-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,Ethnology_Vol10_No1_Jan_1971, +51157,If4,EA041,Absence or near absence,EA041-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p99, +51158,If5,EA041,Absence or near absence,EA041-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p99, +51159,If6,EA041,Absence or near absence,EA041-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p99, +51160,If7,EA041,Absence or near absence,EA041-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p99, +51161,If8,EA041,More than sporadically,EA041-2,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p99, +51162,If9,EA041,Absence or near absence,EA041-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p99, +51163,Ig1,EA041,Absence or near absence,EA041-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p99, +51164,Ig10,EA041,Absence or near absence,EA041-1,,schwartz1964,,1950,EthnographicAtlas_1967_p99, +51165,Ig11,EA041,Absence or near absence,EA041-1,,armstrong1928,,1920,EthnographicAtlas_1967_p99, +51166,Ig12,EA041,Absence or near absence,EA041-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p99, +51167,Ig13,EA041,Absence or near absence,EA041-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p99, +51168,Ig14,EA041,Absence or near absence,EA041-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p99, +51169,Ig15,EA041,?,EA041-NA,,,,,, +51170,Ig16,EA041,?,EA041-NA,,,,,, +51171,Ig17,EA041,?,EA041-NA,,,,,, +51172,Ig18,EA041,?,EA041-NA,,,,,, +51173,Ig19,EA041,?,EA041-NA,,,,,, +51174,Ig2,EA041,Absence or near absence,EA041-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p99, +51175,Ig20,EA041,Absence or near absence,EA041-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +51176,Ig21,EA041,Absence or near absence,EA041-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +51177,Ig3,EA041,Absence or near absence,EA041-1,,blackwood1935,,1930,EthnographicAtlas_1967_p99, +51178,Ig4,EA041,Absence or near absence,EA041-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p99, +51179,Ig5,EA041,Absence or near absence,EA041-1,,fortune1932b,,1920,EthnographicAtlas_1967_p99, +51180,Ig6,EA041,Absence or near absence,EA041-1,,ivens1927,,1900,EthnographicAtlas_1967_p99, +51181,Ig7,EA041,Absence or near absence,EA041-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p99, +51182,Ig8,EA041,?,EA041-NA,,,,,, +51183,Ig9,EA041,Absence or near absence,EA041-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p99, +51184,Ih1,EA041,Absence or near absence,EA041-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p99, +51185,Ih10,EA041,Absence or near absence,EA041-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51186,Ih11,EA041,?,EA041-NA,,,,,, +51187,Ih12,EA041,?,EA041-NA,,,,,, +51188,Ih13,EA041,?,EA041-NA,,,,,, +51189,Ih14,EA041,Absence or near absence,EA041-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +51190,Ih2,EA041,Absence or near absence,EA041-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51191,Ih3,EA041,Absence or near absence,EA041-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p99, +51192,Ih4,EA041,Absence or near absence,EA041-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51193,Ih5,EA041,Absence or near absence,EA041-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p99, +51194,Ih6,EA041,Absence or near absence,EA041-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p99, +51195,Ih7,EA041,Absence or near absence,EA041-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p99, +51196,Ih8,EA041,Absence or near absence,EA041-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p99, +51197,Ih9,EA041,Absence or near absence,EA041-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51198,Ii1,EA041,Absence or near absence,EA041-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p99, +51199,Ii10,EA041,Absence or near absence,EA041-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +51200,Ii12,EA041,Absence or near absence,EA041-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51201,Ii13,EA041,Absence or near absence,EA041-1,,burrows1937,,1830,EthnographicAtlas_1967_p99, +51202,Ii14,EA041,Absence or near absence,EA041-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +51203,Ii2,EA041,Absence or near absence,EA041-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p99, +51204,Ii3,EA041,Absence or near absence,EA041-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p99, +51205,Ii4,EA041,Absence or near absence,EA041-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p99, +51206,Ii5,EA041,Absence or near absence,EA041-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p99, +51207,Ii6,EA041,Absence or near absence,EA041-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p99, +51208,Ii7,EA041,Absence or near absence,EA041-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p99, +51209,Ii8,EA041,Absence or near absence,EA041-1,,burrows1936,,1840,EthnographicAtlas_1967_p99, +51210,Ii9,EA041,Absence or near absence,EA041-1,,loeb1926a,,1840,EthnographicAtlas_1967_p99, +51211,Ij1,EA041,Absence or near absence,EA041-1,,buck1934,,1820,EthnographicAtlas_1967_p99, +51212,Ij10,EA041,Absence or near absence,EA041-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +51213,Ij2,EA041,Absence or near absence,EA041-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p99, +51214,Ij3,EA041,Absence or near absence,EA041-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p103, +51215,Ij4,EA041,Absence or near absence,EA041-1,,buck1932a,,1850,EthnographicAtlas_1967_p103, +51216,Ij5,EA041,Absence or near absence,EA041-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p103, +51217,Ij6,EA041,Absence or near absence,EA041-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p103, +51218,Ij7,EA041,Absence or near absence,EA041-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p103, +51219,Ij8,EA041,Absence or near absence,EA041-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p103, +51220,Ij9,EA041,Absence or near absence,EA041-1,,metraux1940,,1860,EthnographicAtlas_1967_p103, +51221,Na1,EA041,Absence or near absence,EA041-1,,mckennan1959,,1930,EthnographicAtlas_1967_p103, +51222,Na10,EA041,Absence or near absence,EA041-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p103, +51223,Na11,EA041,Absence or near absence,EA041-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p103, +51224,Na12,EA041,Absence or near absence,EA041-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p103, +51225,Na13,EA041,Absence or near absence,EA041-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p103, +51226,Na14,EA041,Absence or near absence,EA041-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p103, +51227,Na15,EA041,Absence or near absence,EA041-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p103, +51228,Na16,EA041,Absence or near absence,EA041-1,,osgood1931,,1860,EthnographicAtlas_1967_p103, +51229,Na17,EA041,Absence or near absence,EA041-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51230,Na19,EA041,Absence or near absence,EA041-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p103, +51231,Na2,EA041,Absence or near absence,EA041-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p103, +51232,Na20,EA041,Absence or near absence,EA041-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p103, +51233,Na21,EA041,Absence or near absence,EA041-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p103, +51234,Na22,EA041,Absence or near absence,EA041-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p103, +51235,Na23,EA041,Absence or near absence,EA041-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p103, +51236,Na24,EA041,Absence or near absence,EA041-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p103, +51237,Na25,EA041,Absence or near absence,EA041-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +51238,Na26,EA041,Absence or near absence,EA041-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p103, +51239,Na27,EA041,Absence or near absence,EA041-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p103, +51240,Na28,EA041,Absence or near absence,EA041-1,,jenness1937,,1880,EthnographicAtlas_1967_p103, +51241,Na29,EA041,Absence or near absence,EA041-1,,goddard1916,,1850,EthnographicAtlas_1967_p103, +51242,Na3,EA041,Absence or near absence,EA041-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p103, +51243,Na30,EA041,Absence or near absence,EA041-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p103, +51244,Na31,EA041,Absence or near absence,EA041-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p103, +51245,Na32,EA041,Absence or near absence,EA041-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p103, +51246,Na33,EA041,Absence or near absence,EA041-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p103, +51247,Na34,EA041,Absence or near absence,EA041-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p103, +51248,Na35,EA041,Absence or near absence,EA041-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p103, +51249,Na36,EA041,Absence or near absence,EA041-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p103, +51250,Na37,EA041,Absence or near absence,EA041-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p103, +51251,Na38,EA041,Absence or near absence,EA041-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p103, +51252,Na39,EA041,Absence or near absence,EA041-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p103, +51253,Na4,EA041,Absence or near absence,EA041-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p103, +51254,Na40,EA041,Absence or near absence,EA041-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +51255,Na41,EA041,Absence or near absence,EA041-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p103, +51256,Na42,EA041,Absence or near absence,EA041-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p103, +51257,Na43,EA041,Absence or near absence,EA041-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +51258,Na44,EA041,Absence or near absence,EA041-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +51259,Na45,EA041,Absence or near absence,EA041-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +51260,Na5,EA041,Absence or near absence,EA041-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p103, +51261,Na6,EA041,Absence or near absence,EA041-1,,lantis1946,,1930,EthnographicAtlas_1967_p103, +51262,Na7,EA041,Absence or near absence,EA041-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p103, +51263,Na8,EA041,Absence or near absence,EA041-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p103, +51264,Na9,EA041,Absence or near absence,EA041-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51265,Nb1,EA041,Absence or near absence,EA041-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p103, +51266,Nb10,EA041,Absence or near absence,EA041-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p107, +51267,Nb11,EA041,Absence or near absence,EA041-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p107, +51268,Nb12,EA041,Absence or near absence,EA041-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +51269,Nb13,EA041,Absence or near absence,EA041-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p107, +51270,Nb14,EA041,Absence or near absence,EA041-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +51271,Nb15,EA041,Absence or near absence,EA041-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p107, +51272,Nb16,EA041,Absence or near absence,EA041-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p107, +51273,Nb17,EA041,Absence or near absence,EA041-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p107, +51274,Nb18,EA041,Absence or near absence,EA041-1,,pettitt1950,,1880,EthnographicAtlas_1967_p107, +51275,Nb19,EA041,Absence or near absence,EA041-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p107, +51276,Nb2,EA041,Absence or near absence,EA041-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p103, +51277,Nb20,EA041,Absence or near absence,EA041-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +51278,Nb21,EA041,Absence or near absence,EA041-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p107, +51279,Nb22,EA041,Absence or near absence,EA041-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p107, +51280,Nb23,EA041,Absence or near absence,EA041-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p107, +51281,Nb24,EA041,Absence or near absence,EA041-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p107, +51282,Nb25,EA041,Absence or near absence,EA041-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p107, +51283,Nb26,EA041,Absence or near absence,EA041-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p107, +51284,Nb27,EA041,Absence or near absence,EA041-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p107, +51285,Nb28,EA041,Absence or near absence,EA041-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p107, +51286,Nb29,EA041,Absence or near absence,EA041-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +51287,Nb3,EA041,Absence or near absence,EA041-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p103, +51288,Nb30,EA041,Absence or near absence,EA041-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +51289,Nb31,EA041,Absence or near absence,EA041-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p107, +51290,Nb32,EA041,Absence or near absence,EA041-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p107, +51291,Nb33,EA041,Absence or near absence,EA041-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p107, +51292,Nb34,EA041,Absence or near absence,EA041-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p107, +51293,Nb35,EA041,Absence or near absence,EA041-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p107, +51294,Nb36,EA041,Absence or near absence,EA041-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p107, +51295,Nb37,EA041,Absence or near absence,EA041-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +51296,Nb38,EA041,Absence or near absence,EA041-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +51297,Nb39,EA041,Absence or near absence,EA041-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p107, +51298,Nb4,EA041,Absence or near absence,EA041-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p103, +51299,Nb5,EA041,Absence or near absence,EA041-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p103, +51300,Nb6,EA041,Absence or near absence,EA041-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p103, +51301,Nb7,EA041,Absence or near absence,EA041-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p103, +51302,Nb8,EA041,Absence or near absence,EA041-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p103, +51303,Nb9,EA041,Absence or near absence,EA041-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p103, +51304,Nc1,EA041,Absence or near absence,EA041-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p107, +51305,Nc10,EA041,Absence or near absence,EA041-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p107, +51306,Nc11,EA041,Absence or near absence,EA041-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p107, +51307,Nc12,EA041,Absence or near absence,EA041-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p107, +51308,Nc13,EA041,Absence or near absence,EA041-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p107, +51309,Nc14,EA041,Absence or near absence,EA041-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p107, +51310,Nc15,EA041,Absence or near absence,EA041-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p107, +51311,Nc16,EA041,Absence or near absence,EA041-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +51312,Nc17,EA041,Absence or near absence,EA041-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p107, +51313,Nc18,EA041,Absence or near absence,EA041-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p107, +51314,Nc19,EA041,Absence or near absence,EA041-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p107, +51315,Nc2,EA041,Absence or near absence,EA041-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p107, +51316,Nc20,EA041,Absence or near absence,EA041-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p107, +51317,Nc21,EA041,Absence or near absence,EA041-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +51318,Nc22,EA041,Absence or near absence,EA041-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p107, +51319,Nc23,EA041,Absence or near absence,EA041-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p107, +51320,Nc24,EA041,Absence or near absence,EA041-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p107, +51321,Nc25,EA041,Absence or near absence,EA041-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p107, +51322,Nc26,EA041,Absence or near absence,EA041-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +51323,Nc27,EA041,Absence or near absence,EA041-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p107, +51324,Nc28,EA041,Absence or near absence,EA041-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +51325,Nc29,EA041,Absence or near absence,EA041-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p107, +51326,Nc3,EA041,Absence or near absence,EA041-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p107, +51327,Nc30,EA041,Absence or near absence,EA041-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +51328,Nc31,EA041,Absence or near absence,EA041-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p107, +51329,Nc32,EA041,Absence or near absence,EA041-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p107, +51330,Nc33,EA041,Absence or near absence,EA041-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p107, +51331,Nc34,EA041,Absence or near absence,EA041-1,,meigs1939,,1880,EthnographicAtlas_1967_p107, +51332,Nc4,EA041,Absence or near absence,EA041-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p107, +51333,Nc5,EA041,Absence or near absence,EA041-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p107, +51334,Nc6,EA041,Absence or near absence,EA041-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p107, +51335,Nc7,EA041,Absence or near absence,EA041-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p107, +51336,Nc8,EA041,Absence or near absence,EA041-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p107, +51337,Nc9,EA041,Absence or near absence,EA041-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p107, +51338,Nd1,EA041,Absence or near absence,EA041-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p107, +51339,Nd10,EA041,Absence or near absence,EA041-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p111, +51340,Nd11,EA041,Absence or near absence,EA041-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p111, +51341,Nd12,EA041,Absence or near absence,EA041-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p111, +51342,Nd13,EA041,Absence or near absence,EA041-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +51343,Nd14,EA041,Absence or near absence,EA041-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p111, +51344,Nd15,EA041,Absence or near absence,EA041-1,,clineetal1938,,1880,EthnographicAtlas_1967_p111, +51345,Nd16,EA041,Absence or near absence,EA041-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +51346,Nd17,EA041,Absence or near absence,EA041-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +51347,Nd18,EA041,Absence or near absence,EA041-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p111, +51348,Nd19,EA041,Absence or near absence,EA041-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p111, +51349,Nd2,EA041,Absence or near absence,EA041-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p107, +51350,Nd20,EA041,Absence or near absence,EA041-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p111, +51351,Nd21,EA041,Absence or near absence,EA041-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +51352,Nd22,EA041,Absence or near absence,EA041-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p111, +51353,Nd23,EA041,Absence or near absence,EA041-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +51354,Nd24,EA041,Absence or near absence,EA041-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p111, +51355,Nd25,EA041,Absence or near absence,EA041-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +51356,Nd26,EA041,Absence or near absence,EA041-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +51357,Nd27,EA041,Absence or near absence,EA041-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p111, +51358,Nd28,EA041,Absence or near absence,EA041-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +51359,Nd29,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +51360,Nd3,EA041,Absence or near absence,EA041-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p111, +51361,Nd30,EA041,Absence or near absence,EA041-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p111, +51362,Nd31,EA041,Absence or near absence,EA041-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +51363,Nd32,EA041,Absence or near absence,EA041-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p111, +51364,Nd33,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +51365,Nd34,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +51366,Nd35,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +51367,Nd36,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +51368,Nd37,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +51369,Nd38,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +51370,Nd39,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +51371,Nd4,EA041,Absence or near absence,EA041-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p111, +51372,Nd40,EA041,Absence or near absence,EA041-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +51373,Nd41,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +51374,Nd42,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +51375,Nd43,EA041,Absence or near absence,EA041-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p111, +51376,Nd44,EA041,Absence or near absence,EA041-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +51377,Nd45,EA041,Absence or near absence,EA041-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +51378,Nd46,EA041,Absence or near absence,EA041-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p111, +51379,Nd47,EA041,Absence or near absence,EA041-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +51380,Nd48,EA041,Absence or near absence,EA041-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p111, +51381,Nd49,EA041,Absence or near absence,EA041-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p111, +51382,Nd5,EA041,Absence or near absence,EA041-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p111, +51383,Nd50,EA041,Absence or near absence,EA041-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +51384,Nd51,EA041,Absence or near absence,EA041-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +51385,Nd52,EA041,Absence or near absence,EA041-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p111, +51386,Nd53,EA041,Absence or near absence,EA041-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +51387,Nd54,EA041,Absence or near absence,EA041-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51388,Nd55,EA041,Absence or near absence,EA041-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +51389,Nd56,EA041,Absence or near absence,EA041-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p111, +51390,Nd57,EA041,Absence or near absence,EA041-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +51391,Nd58,EA041,Absence or near absence,EA041-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +51392,Nd59,EA041,Absence or near absence,EA041-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +51393,Nd6,EA041,Absence or near absence,EA041-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p111, +51394,Nd60,EA041,Absence or near absence,EA041-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +51395,Nd61,EA041,Absence or near absence,EA041-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +51396,Nd62,EA041,Absence or near absence,EA041-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p111, +51397,Nd63,EA041,Absence or near absence,EA041-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p111, +51398,Nd64,EA041,Absence or near absence,EA041-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p111, +51399,Nd65,EA041,Absence or near absence,EA041-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p111, +51400,Nd66,EA041,Absence or near absence,EA041-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p111, +51401,Nd67,EA041,Absence or near absence,EA041-1,,gifford1936,,1870,EthnographicAtlas_1967_p111, +51402,Nd7,EA041,Absence or near absence,EA041-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p111, +51403,Nd8,EA041,Absence or near absence,EA041-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p111, +51404,Nd9,EA041,Absence or near absence,EA041-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p111, +51405,Ne1,EA041,Absence or near absence,EA041-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p111, +51406,Ne10,EA041,Absence or near absence,EA041-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p111, +51407,Ne11,EA041,Absence or near absence,EA041-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p111, +51408,Ne12,EA041,Absence or near absence,EA041-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +51409,Ne13,EA041,Absence or near absence,EA041-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p111, +51410,Ne14,EA041,Absence or near absence,EA041-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p111, +51411,Ne15,EA041,Absence or near absence,EA041-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p111, +51412,Ne16,EA041,Absence or near absence,EA041-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p111, +51413,Ne17,EA041,Absence or near absence,EA041-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p111, +51414,Ne18,EA041,Absence or near absence,EA041-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p111, +51415,Ne19,EA041,Absence or near absence,EA041-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p111, +51416,Ne2,EA041,Absence or near absence,EA041-1,,mcallister1937,,1870,EthnographicAtlas_1967_p111, +51417,Ne20,EA041,Absence or near absence,EA041-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p115, +51418,Ne21,EA041,?,EA041-NA,,,,,, +51419,Ne3,EA041,Absence or near absence,EA041-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p111, +51420,Ne4,EA041,Absence or near absence,EA041-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p111, +51421,Ne5,EA041,Absence or near absence,EA041-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p111, +51422,Ne6,EA041,Absence or near absence,EA041-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p111, +51423,Ne7,EA041,Absence or near absence,EA041-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p111, +51424,Ne8,EA041,Absence or near absence,EA041-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p111, +51425,Ne9,EA041,Absence or near absence,EA041-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p111, +51426,Nf10,EA041,Absence or near absence,EA041-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p115, +51427,Nf11,EA041,Absence or near absence,EA041-1,,whitman1937,,1870,EthnographicAtlas_1967_p115, +51428,Nf12,EA041,Absence or near absence,EA041-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p115, +51429,Nf13,EA041,Absence or near absence,EA041-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51430,Nf14,EA041,Absence or near absence,EA041-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +51431,Nf15,EA041,?,EA041-NA,,,,,, +51432,Nf2,EA041,Absence or near absence,EA041-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p115, +51433,Nf3,EA041,Absence or near absence,EA041-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p115, +51434,Nf4,EA041,Absence or near absence,EA041-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p115, +51435,Nf5,EA041,Absence or near absence,EA041-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p115, +51436,Nf6,EA041,Absence or near absence,EA041-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p115, +51437,Nf7,EA041,Absence or near absence,EA041-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51438,Nf8,EA041,Absence or near absence,EA041-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p115, +51439,Nf9,EA041,Absence or near absence,EA041-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p115, +51440,Ng1,EA041,Absence or near absence,EA041-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p115, +51441,Ng10,EA041,Absence or near absence,EA041-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p115, +51442,Ng11,EA041,Absence or near absence,EA041-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p115, +51443,Ng12,EA041,Absence or near absence,EA041-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p115, +51444,Ng13,EA041,?,EA041-NA,,,,,, +51445,Ng14,EA041,?,EA041-NA,,,,,, +51446,Ng15,EA041,?,EA041-NA,,,,,, +51447,Ng2,EA041,?,EA041-NA,,,,,, +51448,Ng3,EA041,Absence or near absence,EA041-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p115, +51449,Ng4,EA041,?,EA041-NA,,,,,, +51450,Ng5,EA041,Absence or near absence,EA041-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p115, +51451,Ng6,EA041,Absence or near absence,EA041-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p115, +51452,Ng7,EA041,Absence or near absence,EA041-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p115, +51453,Ng8,EA041,Absence or near absence,EA041-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p115, +51454,Ng9,EA041,?,EA041-NA,,,,,, +51455,Nh1,EA041,Absence or near absence,EA041-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p115, +51456,Nh10,EA041,Absence or near absence,EA041-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p115, +51457,Nh11,EA041,Absence or near absence,EA041-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p115, +51458,Nh12,EA041,Absence or near absence,EA041-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",gifford1940;white1942,,1920,EthnographicAtlas_1967_p115, +51459,Nh13,EA041,Absence or near absence,EA041-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p115, +51460,Nh14,EA041,?,EA041-NA,,,,,, +51461,Nh15,EA041,Absence or near absence,EA041-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p115, +51462,Nh16,EA041,Absence or near absence,EA041-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51463,Nh17,EA041,Absence or near absence,EA041-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p115, +51464,Nh18,EA041,Absence or near absence,EA041-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51465,Nh19,EA041,Absence or near absence,EA041-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p115, +51466,Nh2,EA041,Absence or near absence,EA041-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954,,1950,EthnographicAtlas_1967_p115, +51467,Nh20,EA041,Absence or near absence,EA041-1,,gifford1931,,1860,EthnographicAtlas_1967_p115, +51468,Nh21,EA041,Absence or near absence,EA041-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51469,Nh22,EA041,Absence or near absence,EA041-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p115, +51470,Nh23,EA041,Absence or near absence,EA041-1,,gifford1932a,,1870,EthnographicAtlas_1967_p115, +51471,Nh24,EA041,Absence or near absence,EA041-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p115, +51472,Nh25,EA041,Absence or near absence,EA041-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p115, +51473,Nh26,EA041,?,EA041-NA,,,,,, +51474,Nh27,EA041,?,EA041-NA,,,,,, +51475,Nh3,EA041,Absence or near absence,EA041-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p115, +51476,Nh4,EA041,Absence or near absence,EA041-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p115, +51477,Nh5,EA041,Absence or near absence,EA041-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p115, +51478,Nh6,EA041,Absence or near absence,EA041-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p115, +51479,Nh7,EA041,Absence or near absence,EA041-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p115, +51480,Nh8,EA041,Absence or near absence,EA041-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p115, +51481,Nh9,EA041,?,EA041-NA,,,,,, +51482,Ni1,EA041,Absence or near absence,EA041-1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p115, +51483,Ni2,EA041,Absence or near absence,EA041-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p115, +51484,Ni3,EA041,More than sporadically,EA041-2,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p115, +51485,Ni4,EA041,Absence or near absence,EA041-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p115, +51486,Ni5,EA041,Absence or near absence,EA041-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p115, +51487,Ni6,EA041,Absence or near absence,EA041-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p115, +51488,Ni7,EA041,Absence or near absence,EA041-1,"Aboriginally, but 'no plow animals' (EA039 code ""1""), 'bovine' (EA040 code ""7""), and 'milking, more often than sporadically' (EA041 code ""2"")",beals1943;drucker1941,,1870,EthnographicAtlas_1967_p115, +51489,Ni8,EA041,?,EA041-NA,,,,,, +51490,Ni9,EA041,?,EA041-NA,,,,,, +51491,Nj1,EA041,Absence or near absence,EA041-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51492,Nj10,EA041,?,EA041-NA,,,,,, +51493,Nj11,EA041,?,EA041-NA,,,,,, +51494,Nj12,EA041,?,EA041-NA,,,,,, +51495,Nj13,EA041,?,EA041-NA,,,,,, +51496,Nj14,EA041,?,EA041-NA,,,,,, +51497,Nj2,EA041,Absence or near absence,EA041-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p115, +51498,Nj3,EA041,Absence or near absence,EA041-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p119, +51499,Nj4,EA041,Absence or near absence,EA041-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p119, +51500,Nj5,EA041,?,EA041-NA,,,,,, +51501,Nj6,EA041,?,EA041-NA,,,,,, +51502,Nj7,EA041,Absence or near absence,EA041-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51503,Nj8,EA041,Absence or near absence,EA041-1,,foster1948,,1500,EthnographicAtlas_1967_p119, +51504,Nj9,EA041,More than sporadically,EA041-2,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p119, +51505,Sa1,EA041,Absence or near absence,EA041-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p119, +51506,Sa10,EA041,?,EA041-NA,,,,,, +51507,Sa11,EA041,?,EA041-NA,,,,,, +51508,Sa12,EA041,Absence or near absence,EA041-1,,stone1948,,1948,EthnographicAtlas_1967_p119, +51509,Sa13,EA041,More than sporadically,EA041-2,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p119, +51510,Sa14,EA041,?,EA041-NA,,,,,, +51511,Sa15,EA041,?,EA041-NA,,,,,, +51512,Sa16,EA041,?,EA041-NA,,,,,, +51513,Sa17,EA041,?,EA041-NA,,,,,, +51514,Sa2,EA041,?,EA041-NA,,,,,, +51515,Sa3,EA041,Absence or near absence,EA041-1,,wisdom1940,,1930,EthnographicAtlas_1967_p119, +51516,Sa4,EA041,Absence or near absence,EA041-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p119, +51517,Sa5,EA041,Absence or near absence,EA041-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p119, +51518,Sa6,EA041,Absence or near absence,EA041-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p119, +51519,Sa7,EA041,Absence or near absence,EA041-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p119, +51520,Sa8,EA041,Absence or near absence,EA041-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p119, +51521,Sa9,EA041,More than sporadically,EA041-2,But milking is not common,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p119, +51522,Sb1,EA041,Absence or near absence,EA041-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p119, +51523,Sb2,EA041,Absence or near absence,EA041-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p119, +51524,Sb3,EA041,Absence or near absence,EA041-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +51525,Sb4,EA041,Absence or near absence,EA041-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +51526,Sb5,EA041,Absence or near absence,EA041-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p119, +51527,Sb6,EA041,More than sporadically,EA041-2,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p119, +51528,Sb7,EA041,Absence or near absence,EA041-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p119, +51529,Sb8,EA041,Absence or near absence,EA041-1,,rouse1948a,,1520,EthnographicAtlas_1967_p119, +51530,Sb9,EA041,Absence or near absence,EA041-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +51531,Sc1,EA041,Absence or near absence,EA041-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p119, +51532,Sc10,EA041,Absence or near absence,EA041-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p119, +51533,Sc11,EA041,Absence or near absence,EA041-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p119, +51534,Sc12,EA041,Absence or near absence,EA041-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p119, +51535,Sc13,EA041,Absence or near absence,EA041-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +51536,Sc14,EA041,?,EA041-NA,,,,,, +51537,Sc15,EA041,Absence or near absence,EA041-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p119, +51538,Sc16,EA041,Absence or near absence,EA041-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p119, +51539,Sc17,EA041,Absence or near absence,EA041-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +51540,Sc18,EA041,Absence or near absence,EA041-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +51541,Sc2,EA041,Absence or near absence,EA041-1,,leedsnd,,1950,EthnographicAtlas_1967_p119, +51542,Sc3,EA041,Absence or near absence,EA041-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p119, +51543,Sc4,EA041,Absence or near absence,EA041-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p119, +51544,Sc5,EA041,Absence or near absence,EA041-1,,farabee1918,,1900,EthnographicAtlas_1967_p119, +51545,Sc6,EA041,Absence or near absence,EA041-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51546,Sc7,EA041,Absence or near absence,EA041-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p119, +51547,Sc8,EA041,Absence or near absence,EA041-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +51548,Sc9,EA041,Absence or near absence,EA041-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p119, +51549,Sd1,EA041,Absence or near absence,EA041-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51550,Sd2,EA041,Absence or near absence,EA041-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p119, +51551,Sd3,EA041,Absence or near absence,EA041-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p119, +51552,Sd4,EA041,Absence or near absence,EA041-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +51553,Sd5,EA041,Absence or near absence,EA041-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p119, +51554,Sd6,EA041,Absence or near absence,EA041-1,,migliazza1964,,1960,EthnographicAtlas_1967_p119, +51555,Sd7,EA041,Absence or near absence,EA041-1,,fock1963,,1950,EthnographicAtlas_1967_p119, +51556,Sd8,EA041,Absence or near absence,EA041-1,,wilbert1963,,1950,EthnographicAtlas_1967_p119, +51557,Sd9,EA041,Absence or near absence,EA041-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51558,Se1,EA041,Absence or near absence,EA041-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p119, +51559,Se10,EA041,Absence or near absence,EA041-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p119, +51560,Se11,EA041,Absence or near absence,EA041-1,,prost1965,,1960,EthnographicAtlas_1967_p123, +51561,Se12,EA041,?,EA041-NA,,,,,, +51562,Se2,EA041,Absence or near absence,EA041-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p119, +51563,Se3,EA041,Absence or near absence,EA041-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p119, +51564,Se4,EA041,Absence or near absence,EA041-1,,fejos1943,,1940,EthnographicAtlas_1967_p119, +51565,Se5,EA041,Absence or near absence,EA041-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p119, +51566,Se6,EA041,Absence or near absence,EA041-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p119, +51567,Se7,EA041,?,EA041-NA,,,,,, +51568,Se8,EA041,Absence or near absence,EA041-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p119, +51569,Se9,EA041,Absence or near absence,EA041-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p119, +51570,Sf1,EA041,Absence or near absence,EA041-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p123, +51571,Sf2,EA041,More than sporadically,EA041-2,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p123, +51572,Sf3,EA041,Absence or near absence,EA041-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p123, +51573,Sf4,EA041,Absence or near absence,EA041-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p123, +51574,Sf5,EA041,More than sporadically,EA041-2,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p123, +51575,Sf6,EA041,Absence or near absence,EA041-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p123, +51576,Sf7,EA041,Absence or near absence,EA041-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p123, +51577,Sf8,EA041,?,EA041-NA,,,,,, +51578,Sf9,EA041,?,EA041-NA,,,,,, +51579,Sg1,EA041,Absence or near absence,EA041-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p123, +51580,Sg2,EA041,More than sporadically,EA041-2,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51581,Sg3,EA041,Absence or near absence,EA041-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p123, +51582,Sg4,EA041,Absence or near absence,EA041-1,"But absence or near absence of domestic animals prior to 1725 (EA039 and EA040 code ""1"")",bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p123, +51583,Sg5,EA041,Absence or near absence,EA041-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51584,Sh1,EA041,Absence or near absence,EA041-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p123, +51585,Sh2,EA041,Absence or near absence,EA041-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p123, +51586,Sh3,EA041,Absence or near absence,EA041-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p123, +51587,Sh4,EA041,Absence or near absence,EA041-1,,oberg1949,,1940,EthnographicAtlas_1967_p123, +51588,Sh5,EA041,Absence or near absence,EA041-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p123, +51589,Sh6,EA041,Absence or near absence,EA041-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p123, +51590,Sh7,EA041,Absence or near absence,EA041-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p123, +51591,Sh8,EA041,Absence or near absence,EA041-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p123, +51592,Sh9,EA041,Absence or near absence,EA041-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p123, +51593,Si1,EA041,Absence or near absence,EA041-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51594,Si10,EA041,Absence or near absence,EA041-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +51595,Si2,EA041,Absence or near absence,EA041-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p123, +51596,Si3,EA041,Absence or near absence,EA041-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51597,Si4,EA041,Absence or near absence,EA041-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p123, +51598,Si5,EA041,Absence or near absence,EA041-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +51599,Si6,EA041,Absence or near absence,EA041-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p123, +51600,Si7,EA041,Absence or near absence,EA041-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p123, +51601,Si8,EA041,Absence or near absence,EA041-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p123, +51602,Si9,EA041,?,EA041-NA,,,,,, +51603,Sj1,EA041,Absence or near absence,EA041-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p123, +51604,Sj10,EA041,Absence or near absence,EA041-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51605,Sj11,EA041,Absence or near absence,EA041-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +51606,Sj2,EA041,Absence or near absence,EA041-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p123, +51607,Sj3,EA041,Absence or near absence,EA041-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p123, +51608,Sj4,EA041,Absence or near absence,EA041-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p123, +51609,Sj5,EA041,Absence or near absence,EA041-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p123, +51610,Sj6,EA041,Absence or near absence,EA041-1,Animal husbandry is recent,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51611,Sj7,EA041,Absence or near absence,EA041-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p123, +51612,Sj8,EA041,Absence or near absence,EA041-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p123, +51613,Sj9,EA041,Absence or near absence,EA041-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p123, +51614,ch12,EA041,More than sporadically,EA041-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +51615,ch13,EA041,More than sporadically,EA041-2,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +51616,ch14,EA041,More than sporadically,EA041-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +51617,ch15,EA041,More than sporadically,EA041-2,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +51618,ch16,EA041,More than sporadically,EA041-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +51619,ch17,EA041,More than sporadically,EA041-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +51620,ch18,EA041,More than sporadically,EA041-2,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +51621,ch19,EA041,More than sporadically,EA041-2,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +51622,ch20,EA041,More than sporadically,EA041-2,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +51623,ch21,EA041,More than sporadically,EA041-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +51624,ch22,EA041,More than sporadically,EA041-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +51625,ch23,EA041,More than sporadically,EA041-2,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +51626,ch24,EA041,More than sporadically,EA041-2,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +51627,ch25,EA041,More than sporadically,EA041-2,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +51628,ch26,EA041,More than sporadically,EA041-2,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +51629,ch27,EA041,More than sporadically,EA041-2,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +51630,ch28,EA041,More than sporadically,EA041-2,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +51631,ec12,EA041,Absence or near absence,EA041-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +51632,ec13,EA041,Absence or near absence,EA041-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +51633,ec14,EA041,Absence or near absence,EA041-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +51634,ec15,EA041,Absence or near absence,EA041-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +51635,ec16,EA041,More than sporadically,EA041-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +51636,ec17,EA041,More than sporadically,EA041-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +51637,ec18,EA041,Absence or near absence,EA041-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +51638,ec19,EA041,More than sporadically,EA041-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +51639,ec20,EA041,Absence or near absence,EA041-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +51640,ec21,EA041,Absence or near absence,EA041-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +51641,Aa1,EA042,Gathering,EA042-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51642,Aa2,EA042,Hunting,EA042-3,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51643,Aa3,EA042,Pastoralism,EA042-4,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51644,Aa4,EA042,Gathering,EA042-1,,lebzelter1934;schmidt1930;vedder1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51645,Aa5,EA042,Hunting,EA042-3,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51646,Aa6,EA042,Extensive agriculture,EA042-6,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51647,Aa7,EA042,Gathering,EA042-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51648,Aa8,EA042,Gathering,EA042-1,,barrow180104;bleek1924b;fritsch1872,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51649,Aa9,EA042,Gathering,EA042-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51650,Ab1,EA042,Pastoralism,EA042-4,,irle1906;vedder1928,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51651,Ab10,EA042,Two or more sources,EA042-8,,hunter1936,,1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51652,Ab11,EA042,Extensive agriculture,EA042-6,,borwnlee1927;kropf1889;soga1932,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51653,Ab12,EA042,Extensive agriculture,EA042-6,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51654,Ab13,EA042,Extensive agriculture,EA042-6,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51655,Ab14,EA042,Intensive agriculture,EA042-7,,krigeandkrige1943,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51656,Ab15,EA042,Extensive agriculture,EA042-6,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51657,Ab16,EA042,Extensive agriculture,EA042-6,,earthy1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51658,Ab17,EA042,"Agriculture, type unknown",EA042-9,,boas1922;dossantos1901;herskovits1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51659,Ab18,EA042,Extensive agriculture,EA042-6,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51660,Ab19,EA042,Extensive agriculture,EA042-6,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51661,Ab2,EA042,Extensive agriculture,EA042-6,,kuper1950;kuper1974;marwick1940,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51662,Ab20,EA042,"Agriculture, type unknown",EA042-9,,wunenberger1888,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51663,Ab21a,EA042,Extensive agriculture,EA042-6,,magyar1859;mattenklodt1944,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51664,Ab21b,EA042,"Agriculture, type unknown",EA042-9,,cook1931,,1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51665,Ab22,EA042,"Agriculture, type unknown",EA042-9,,junod1936,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51666,Ab3,EA042,Intensive agriculture,EA042-7,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51667,Ab4,EA042,Extensive agriculture,EA042-6,,junod1927,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51668,Ab5,EA042,Extensive agriculture,EA042-6,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51669,Ab6,EA042,Intensive agriculture,EA042-7,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51670,Ab7,EA042,Two or more sources,EA042-8,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51671,Ab8,EA042,Intensive agriculture,EA042-7,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51672,Ab9,EA042,Extensive agriculture,EA042-6,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51673,Ac1,EA042,Extensive agriculture,EA042-6,,smithanddale1920;tudennd,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51674,Ac10,EA042,Extensive agriculture,EA042-6,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51675,Ac11,EA042,Extensive agriculture,EA042-6,,mcculloch1951;white1955,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51676,Ac12,EA042,Extensive agriculture,EA042-6,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51677,Ac13,EA042,Two or more sources,EA042-8,,tew1950;velsen1964,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51678,Ac14,EA042,Extensive agriculture,EA042-6,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51679,Ac15,EA042,"Agriculture, type unknown",EA042-9,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51680,Ac16,EA042,Extensive agriculture,EA042-6,,balandier1952;maclatchy1945,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51681,Ac17,EA042,Extensive agriculture,EA042-6,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51682,Ac18,EA042,Extensive agriculture,EA042-6,,even1931;hutereau1910b;laman1953;soret1959,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51683,Ac19,EA042,Extensive agriculture,EA042-6,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51684,Ac2,EA042,Extensive agriculture,EA042-6,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51685,Ac20,EA042,Extensive agriculture,EA042-6,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51686,Ac21,EA042,Extensive agriculture,EA042-6,,decker1942;torday1910;weekx1937,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51687,Ac22,EA042,Extensive agriculture,EA042-6,,mertens1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51688,Ac23,EA042,Extensive agriculture,EA042-6,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51689,Ac24,EA042,Extensive agriculture,EA042-6,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51690,Ac25,EA042,Extensive agriculture,EA042-6,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51691,Ac26,EA042,Extensive agriculture,EA042-6,,beaucorps1933;tordayandjoyce1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51692,Ac27,EA042,Extensive agriculture,EA042-6,,baumann1935;mcculloch1951,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51693,Ac28,EA042,Fishing,EA042-2,,baumann1935;mcculloch1951,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51694,Ac29,EA042,"Agriculture, type unknown",EA042-9,,brau1942,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51695,Ac3,EA042,Extensive agriculture,EA042-6,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51696,Ac30,EA042,Extensive agriculture,EA042-6,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51697,Ac31,EA042,Extensive agriculture,EA042-6,,colle1913,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51698,Ac32,EA042,Extensive agriculture,EA042-6,,melland1923;watson1954a,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51699,Ac33,EA042,Extensive agriculture,EA042-6,,lambo1946;munday1941;whiteley1951,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51700,Ac34,EA042,Extensive agriculture,EA042-6,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51701,Ac35,EA042,"Agriculture, type unknown",EA042-9,,brohez1905;marchal1935,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51702,Ac36,EA042,Extensive agriculture,EA042-6,,sanderson1923;tew1950;young1931,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51703,Ac37,EA042,Extensive agriculture,EA042-6,,bruwer1958,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51704,Ac38,EA042,Extensive agriculture,EA042-6,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51705,Ac39,EA042,"Agriculture, type unknown",EA042-9,,johnson1922;tew1950,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51706,Ac4,EA042,Extensive agriculture,EA042-6,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51707,Ac40,EA042,Extensive agriculture,EA042-6,,maugham1910;menteirolopez1906;schebesta1926,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51708,Ac41,EA042,Extensive agriculture,EA042-6,,behr1893;weule1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51709,Ac42,EA042,"Agriculture, type unknown",EA042-9,,tew1950;weule1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51710,Ac43,EA042,Extensive agriculture,EA042-6,,watson1954b;willis1966,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51711,Ac5,EA042,Extensive agriculture,EA042-6,,doke1931;mitchellandbarnes1950,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51712,Ac6,EA042,Extensive agriculture,EA042-6,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51713,Ac7,EA042,Extensive agriculture,EA042-6,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51714,Ac8,EA042,Extensive agriculture,EA042-6,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51715,Ac9,EA042,Extensive agriculture,EA042-6,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51716,Ad1,EA042,Two or more sources,EA042-8,,grottanelli1955,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51717,Ad10,EA042,Intensive agriculture,EA042-7,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51718,Ad11,EA042,Intensive agriculture,EA042-7,,culwickandculwick1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51719,Ad12,EA042,Extensive agriculture,EA042-6,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51720,Ad13,EA042,Extensive agriculture,EA042-6,,edel1937;edel1957;taylor1962,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51721,Ad14,EA042,Extensive agriculture,EA042-6,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51722,Ad15,EA042,Extensive agriculture,EA042-6,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51723,Ad16,EA042,Intensive agriculture,EA042-7,,mackenzie1925;sanderson1923;tew1950,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51724,Ad17,EA042,Extensive agriculture,EA042-6,,kootzkretschmer192629,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51725,Ad18,EA042,Extensive agriculture,EA042-6,,avon191516;majerus191516,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51726,Ad19,EA042,Extensive agriculture,EA042-6,,fromm1912;popplewell1937;willis1966,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51727,Ad2,EA042,Intensive agriculture,EA042-7,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51728,Ad20,EA042,Extensive agriculture,EA042-6,,blohm193133;bosch1930;spellig1927,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51729,Ad21,EA042,Extensive agriculture,EA042-6,,maurice193538,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51730,Ad22,EA042,Intensive agriculture,EA042-7,,abrahams1967;cory1953;malcolm1953,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51731,Ad23,EA042,Pastoralism,EA042-4,,heese1913;mumford1934,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51732,Ad24,EA042,Extensive agriculture,EA042-6,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51733,Ad25,EA042,Extensive agriculture,EA042-6,,baumstark1900;gray1953;kannenberg1900,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51734,Ad26,EA042,Two or more sources,EA042-8,,sick1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51735,Ad27,EA042,Extensive agriculture,EA042-6,,picarda1886;reidelman1967,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51736,Ad28,EA042,Extensive agriculture,EA042-6,,baumann1891;beidelman1967;picarda1886,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51737,Ad29,EA042,Extensive agriculture,EA042-6,,ingrams1930;prins1961,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51738,Ad3,EA042,Intensive agriculture,EA042-7,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51739,Ad30,EA042,Extensive agriculture,EA042-6,,baumann1891;prins1952;stpaulhilaire1895,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51740,Ad31,EA042,"Agriculture, type unknown",EA042-9,,prins1952;werner1915,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51741,Ad32,EA042,Extensive agriculture,EA042-6,,barrett1911b;johnstone1902;princs1952,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51742,Ad33,EA042,Intensive agriculture,EA042-7,,fischer187879;kraft1903;prins1952;werner1913,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51743,Ad34,EA042,Intensive agriculture,EA042-7,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51744,Ad35,EA042,Extensive agriculture,EA042-6,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51745,Ad36,EA042,Intensive agriculture,EA042-7,,baumann1891;storch1895,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51746,Ad37,EA042,Intensive agriculture,EA042-7,,bostock1950;prins1950;prins1952,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51747,Ad38,EA042,Intensive agriculture,EA042-7,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51748,Ad39,EA042,Intensive agriculture,EA042-7,,gray1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51749,Ad4,EA042,Intensive agriculture,EA042-7,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51750,Ad40,EA042,Intensive agriculture,EA042-7,,sangree1965,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51751,Ad41,EA042,Extensive agriculture,EA042-6,,wagner1939;wagner1940;wagner194950,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51752,Ad42,EA042,Intensive agriculture,EA042-7,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51753,Ad43,EA042,Intensive agriculture,EA042-7,,hurel1911,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51754,Ad44,EA042,Extensive agriculture,EA042-6,,czekanowski1924[358-399];taylor1962,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51755,Ad45,EA042,Extensive agriculture,EA042-6,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51756,Ad46,EA042,Intensive agriculture,EA042-7,,fallers1956;fallers1960;roscoe1915,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51757,Ad47,EA042,Intensive agriculture,EA042-7,,abrahams1967;blohm193133;desoignies1903,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51758,Ad48,EA042,Extensive agriculture,EA042-6,,taylor1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51759,Ad49,EA042,Extensive agriculture,EA042-6,,taylor1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51760,Ad5,EA042,Two or more sources,EA042-8,,graynd,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51761,Ad50,EA042,Extensive agriculture,EA042-6,,beidelman1967,with special reference to the Mountain Kaguru,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51762,Ad51,EA042,Extensive agriculture,EA042-6,,beidelman1967;mcvicar1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51763,Ad6,EA042,Intensive agriculture,EA042-7,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51764,Ad7,EA042,Intensive agriculture,EA042-7,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51765,Ad8,EA042,Intensive agriculture,EA042-7,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51766,Ad9,EA042,Extensive agriculture,EA042-6,,lafontaine1959;roscoe1915,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51767,Ae1,EA042,Extensive agriculture,EA042-6,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51768,Ae10,EA042,Intensive agriculture,EA042-7,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51769,Ae11,EA042,Fishing,EA042-2,,delhaise1909a,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51770,Ae12,EA042,Extensive agriculture,EA042-6,,ardener1956;brutsch1950;buchner1887,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51771,Ae13,EA042,"Agriculture, type unknown",EA042-9,,colle1921;colle1922a;colle1922b;roy192425,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51772,Ae14,EA042,Intensive agriculture,EA042-7,,hertefeltetal1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51773,Ae15,EA042,Intensive agriculture,EA042-7,,schumacher1949;viaene1951;viaene1952,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51774,Ae16,EA042,"Agriculture, type unknown",EA042-9,,lietard1929;vervaecke1910;wissmannetal1888,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51775,Ae17,EA042,Extensive agriculture,EA042-6,,delhaise1909b;salmon1953,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51776,Ae18,EA042,Extensive agriculture,EA042-6,,tordayandjoyce1922;vanoverbergh1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51777,Ae19,EA042,"Agriculture, type unknown",EA042-9,,grevisse193738,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51778,Ae2,EA042,Extensive agriculture,EA042-6,,ardener1956;leuschner1903,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51779,Ae20,EA042,Extensive agriculture,EA042-6,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51780,Ae21,EA042,Extensive agriculture,EA042-6,,empain1922;tordayandjoyce1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51781,Ae22,EA042,Extensive agriculture,EA042-6,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51782,Ae23,EA042,"Agriculture, type unknown",EA042-9,,maes1934;rijek1937;vanderkerken1944,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51783,Ae24,EA042,"Agriculture, type unknown",EA042-9,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51784,Ae25,EA042,"Agriculture, type unknown",EA042-9,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51785,Ae26,EA042,Extensive agriculture,EA042-6,,torday1911;tordayandjoyce1922,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51786,Ae27,EA042,Fishing,EA042-2,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51787,Ae28,EA042,Two or more sources,EA042-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51788,Ae29,EA042,Fishing,EA042-2,,hutereau1910a;lindemann1906,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51789,Ae3,EA042,Extensive agriculture,EA042-6,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51790,Ae30,EA042,Extensive agriculture,EA042-6,,czekanowski1924[327-357];vangeluwe1956,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51791,Ae31,EA042,Extensive agriculture,EA042-6,,czekanowski1924[282-297];vangeluwe1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51792,Ae32,EA042,Extensive agriculture,EA042-6,,vangeluwe1956,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51793,Ae33,EA042,Extensive agriculture,EA042-6,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51794,Ae34,EA042,Extensive agriculture,EA042-6,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51795,Ae35,EA042,Extensive agriculture,EA042-6,,maes1909;vangeluwe1956,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51796,Ae36,EA042,Extensive agriculture,EA042-6,,verbeke1928,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51797,Ae37,EA042,"Agriculture, type unknown",EA042-9,,soupart1938;vandenbergh1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51798,Ae38,EA042,Extensive agriculture,EA042-6,,wijnant192526,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51799,Ae39,EA042,Extensive agriculture,EA042-6,,burssens1958;wolfe1961;wolfe1965,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51800,Ae4,EA042,Extensive agriculture,EA042-6,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51801,Ae40,EA042,Extensive agriculture,EA042-6,,allys1930;koch1913,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51802,Ae41,EA042,Extensive agriculture,EA042-6,,andersson1953,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51803,Ae42,EA042,Extensive agriculture,EA042-6,,conradt1902;dugast1949,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51804,Ae43,EA042,Extensive agriculture,EA042-6,,burel1910;koch1913,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51805,Ae44,EA042,Extensive agriculture,EA042-6,,baumann1888;gildelgado1949;tessmann1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51806,Ae45,EA042,Extensive agriculture,EA042-6,,bufe1913;lessner1904,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51807,Ae46,EA042,Extensive agriculture,EA042-6,,allegret1927;burton1876;duchaillu1861,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51808,Ae47,EA042,Extensive agriculture,EA042-6,,oertzen1903;zeller1885,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51809,Ae48,EA042,Extensive agriculture,EA042-6,,mccullochetal1954;tessmann1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51810,Ae49,EA042,"Agriculture, type unknown",EA042-9,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51811,Ae5,EA042,Extensive agriculture,EA042-6,,egerton1939;mccullochetal1954,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51812,Ae50,EA042,Extensive agriculture,EA042-6,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51813,Ae51,EA042,Extensive agriculture,EA042-6,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51814,Ae52,EA042,"Agriculture, type unknown",EA042-9,,kaberry1952;mccullochetal1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51815,Ae53,EA042,"Agriculture, type unknown",EA042-9,,nicol1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51816,Ae54,EA042,"Agriculture, type unknown",EA042-9,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51817,Ae55,EA042,Extensive agriculture,EA042-6,,kaberry1952;mccullochetal1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51818,Ae56,EA042,Extensive agriculture,EA042-6,,kaberry1952;mccullochetal1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51819,Ae57,EA042,Extensive agriculture,EA042-6,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51820,Ae58,EA042,Extensive agriculture,EA042-6,,thorbecke1916;thorbeckeandthorbecke1919,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51821,Ae59,EA042,"Agriculture, type unknown",EA042-9,,kaberry1952,with special reference to the Ngie subtribe,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51822,Ae6,EA042,Extensive agriculture,EA042-6,,verhulpen1936,with special reference to the Bena Kalundwe,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51823,Ae7,EA042,Extensive agriculture,EA042-6,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51824,Ae8,EA042,Intensive agriculture,EA042-7,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51825,Ae9,EA042,Extensive agriculture,EA042-6,,kaberry1952;mccullochetal1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51826,Af1,EA042,Extensive agriculture,EA042-6,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51827,Af10,EA042,Extensive agriculture,EA042-6,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51828,Af11,EA042,Extensive agriculture,EA042-6,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51829,Af12,EA042,Extensive agriculture,EA042-6,,field1949;mead1937a,with special reference to the Kwahu,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51830,Af13,EA042,Extensive agriculture,EA042-6,,brown1955;wilsonhaffenden1930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51831,Af14,EA042,Extensive agriculture,EA042-6,,hall1938;mcculloch1950;thomas1916,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51832,Af15,EA042,Extensive agriculture,EA042-6,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51833,Af16,EA042,Extensive agriculture,EA042-6,,ruel1956;schuster1914;staschewski1917,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51834,Af17,EA042,Extensive agriculture,EA042-6,,mansfeld1908;talbot1926,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51835,Af18,EA042,Extensive agriculture,EA042-6,,bystrom1954;talbot1912,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51836,Af19,EA042,Extensive agriculture,EA042-6,,fordeandjones1950;simmons1957;simmons1960,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51837,Af2,EA042,Extensive agriculture,EA042-6,,neel1913;paulme1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51838,Af20,EA042,Extensive agriculture,EA042-6,,fordeandjones1950;talbot1915;talbot1923,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51839,Af21,EA042,Extensive agriculture,EA042-6,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51840,Af22,EA042,Fishing,EA042-2,,lloyd1957;omoneukanrin1942,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51841,Af23,EA042,Intensive agriculture,EA042-7,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51842,Af24,EA042,Extensive agriculture,EA042-6,,bradbury1957;roth1903;thomas1910,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51843,Af25,EA042,Extensive agriculture,EA042-6,,bradbury1957;welch1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51844,Af26,EA042,Extensive agriculture,EA042-6,,bradbury1957;thomas1910,with special reference to the Etsako,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51845,Af27,EA042,Extensive agriculture,EA042-6,,fordeetal1955;tschudi1956,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51846,Af28,EA042,Intensive agriculture,EA042-7,,gunnandconant1960,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51847,Af29,EA042,Extensive agriculture,EA042-6,,armstrong1954;fordeetal1955;temple1922,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51848,Af3,EA042,Extensive agriculture,EA042-6,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51849,Af30,EA042,Extensive agriculture,EA042-6,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51850,Af31,EA042,"Agriculture, type unknown",EA042-9,,gunnandconant1960,with special reference to the Lafia,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51851,Af32,EA042,Extensive agriculture,EA042-6,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51852,Af33,EA042,Extensive agriculture,EA042-6,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51853,Af34,EA042,Extensive agriculture,EA042-6,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51854,Af35,EA042,Extensive agriculture,EA042-6,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51855,Af36,EA042,Extensive agriculture,EA042-6,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51856,Af37,EA042,Extensive agriculture,EA042-6,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51857,Af38,EA042,Extensive agriculture,EA042-6,,alland1963;clozelandvillamur1902;tauxier1921,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51858,Af39,EA042,Extensive agriculture,EA042-6,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51859,Af4,EA042,Extensive agriculture,EA042-6,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51860,Af40,EA042,Extensive agriculture,EA042-6,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51861,Af41,EA042,Extensive agriculture,EA042-6,,crosson1900;dreyfus1900;vincenti1922,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51862,Af42,EA042,Extensive agriculture,EA042-6,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51863,Af43,EA042,Two or more sources,EA042-8,,daniell1856;field1937;field1940;manoukian1950,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51864,Af44,EA042,Fishing,EA042-2,,clozelandvillamur1902,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51865,Af45,EA042,Two or more sources,EA042-8,,clozelandvillamur1902;grivot1942,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51866,Af46,EA042,Extensive agriculture,EA042-6,,clozelandvillamur1902;coutouly1920,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51867,Af47,EA042,Extensive agriculture,EA042-6,,beckerdonner1944;schwab1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51868,Af48,EA042,Extensive agriculture,EA042-6,,wilson1856,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51869,Af49,EA042,Extensive agriculture,EA042-6,,schwab1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51870,Af5,EA042,Extensive agriculture,EA042-6,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51871,Af50,EA042,Extensive agriculture,EA042-6,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51872,Af51,EA042,Extensive agriculture,EA042-6,,tauxier1924a,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51873,Af52,EA042,Extensive agriculture,EA042-6,,tauxier1924a,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51874,Af53,EA042,Extensive agriculture,EA042-6,,holas1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51875,Af54,EA042,Extensive agriculture,EA042-6,,germann1933;schwab1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51876,Af55,EA042,Extensive agriculture,EA042-6,,dazevedo1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51877,Af56,EA042,Extensive agriculture,EA042-6,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51878,Af57,EA042,Extensive agriculture,EA042-6,,langley1939;mcculloch1950;thomas1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51879,Af58,EA042,Extensive agriculture,EA042-6,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51880,Af6,EA042,Extensive agriculture,EA042-6,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51881,Af7,EA042,Extensive agriculture,EA042-6,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51882,Af8,EA042,Extensive agriculture,EA042-6,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51883,Af9,EA042,Extensive agriculture,EA042-6,,clozelandvillamur1902;labouret1914;menalque1933,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51884,Ag1,EA042,Intensive agriculture,EA042-7,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51885,Ag10,EA042,Extensive agriculture,EA042-6,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51886,Ag11,EA042,Extensive agriculture,EA042-6,,charles1911;haumant1929;labouret1931,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51887,Ag12,EA042,Extensive agriculture,EA042-6,,manoukian1952b;rattray1932;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51888,Ag13,EA042,Extensive agriculture,EA042-6,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51889,Ag14,EA042,Extensive agriculture,EA042-6,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51890,Ag15,EA042,Extensive agriculture,EA042-6,,bernatzik1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51891,Ag16,EA042,Extensive agriculture,EA042-6,,bernatzik1933;nogueira1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51892,Ag17,EA042,Extensive agriculture,EA042-6,,gomes1946,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51893,Ag18,EA042,Extensive agriculture,EA042-6,,bernatzik1933;bernatzik1944;santoslima1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51894,Ag19,EA042,Extensive agriculture,EA042-6,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51895,Ag2,EA042,Intensive agriculture,EA042-7,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51896,Ag20,EA042,Extensive agriculture,EA042-6,,bernatzik1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51897,Ag21,EA042,Extensive agriculture,EA042-6,,lestrange1950,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51898,Ag22,EA042,Extensive agriculture,EA042-6,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51899,Ag23,EA042,Extensive agriculture,EA042-6,,monteil1915,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51900,Ag24,EA042,Extensive agriculture,EA042-6,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51901,Ag25,EA042,Extensive agriculture,EA042-6,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51902,Ag26,EA042,Extensive agriculture,EA042-6,,anonymous1939a;aubert1936;thomas1916,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51903,Ag27,EA042,Extensive agriculture,EA042-6,But the economy is primarily mercantile,tauxier1912;tauxier1921,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51904,Ag28,EA042,Intensive agriculture,EA042-7,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51905,Ag29,EA042,Intensive agriculture,EA042-7,,tauxier1917,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51906,Ag3,EA042,Intensive agriculture,EA042-7,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51907,Ag30,EA042,Extensive agriculture,EA042-6,,cremer192427;guebhard1911;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51908,Ag31,EA042,Extensive agriculture,EA042-6,,cheron1913;holas1957,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51909,Ag32,EA042,Intensive agriculture,EA042-7,,delafosse190809;holas1957;vendeix1935,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51910,Ag33,EA042,Extensive agriculture,EA042-6,,labouret1931,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51911,Ag34,EA042,Extensive agriculture,EA042-6,,labouret1931;tauxier1931,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51912,Ag35,EA042,Extensive agriculture,EA042-6,,tauxier1921,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51913,Ag36,EA042,Intensive agriculture,EA042-7,,goody1956;goody1958,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51914,Ag37,EA042,Extensive agriculture,EA042-6,,rattray1932;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51915,Ag38,EA042,Extensive agriculture,EA042-6,,rattray1932;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51916,Ag39,EA042,Extensive agriculture,EA042-6,,labouret1920;rattray1932;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51917,Ag4,EA042,Intensive agriculture,EA042-7,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51918,Ag40,EA042,Extensive agriculture,EA042-6,,rattray1932;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51919,Ag41,EA042,Intensive agriculture,EA042-7,,manoukian1952b;rattray1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51920,Ag42,EA042,Intensive agriculture,EA042-7,,tauxier1912;tauxier1924b,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51921,Ag43,EA042,Extensive agriculture,EA042-6,,rattray1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51922,Ag44,EA042,Extensive agriculture,EA042-6,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51923,Ag45,EA042,Extensive agriculture,EA042-6,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51924,Ag46,EA042,Intensive agriculture,EA042-7,,manoukian1952b;rattray1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51925,Ag47,EA042,Extensive agriculture,EA042-6,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51926,Ag48,EA042,Intensive agriculture,EA042-7,,froelichetal1963;klose1899;klose1903;zech1899,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51927,Ag49,EA042,Intensive agriculture,EA042-7,,froelich1949a;froelichetal1963;puig1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51928,Ag5,EA042,Extensive agriculture,EA042-6,,goody1956;labouret1931;rattray1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51929,Ag50,EA042,Extensive agriculture,EA042-6,,asmis1912;froelichetal1963,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51930,Ag51,EA042,Extensive agriculture,EA042-6,,mercier1950;mercier1953,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51931,Ag52,EA042,Intensive agriculture,EA042-7,,froelichetal1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51932,Ag53,EA042,Extensive agriculture,EA042-6,,bernard1966,with special reference to those of Garango,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51933,Ag54,EA042,Extensive agriculture,EA042-6,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51934,Ag6,EA042,Two or more sources,EA042-8,,durand1929;vieillard1939;vieillard1940,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51935,Ag7,EA042,Fishing,EA042-2,,malzy1946;ortoli1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51936,Ag8,EA042,Extensive agriculture,EA042-6,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51937,Ag9,EA042,Extensive agriculture,EA042-6,,labouret1934;sidibe1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51938,Ah1,EA042,Intensive agriculture,EA042-7,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +51939,Ah10,EA042,Extensive agriculture,EA042-6,,gunn1953;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51940,Ah11,EA042,Extensive agriculture,EA042-6,,gunnandconant1960,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51941,Ah12,EA042,Extensive agriculture,EA042-6,,bynghall1909;clifford1944;gunnandconant1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51942,Ah13,EA042,Extensive agriculture,EA042-6,,harris1938,with special reference to the Liliwa,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51943,Ah14,EA042,Intensive agriculture,EA042-7,,gunnandconant1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51944,Ah15,EA042,Intensive agriculture,EA042-7,,gunnandconant1960;harris1930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51945,Ah16,EA042,Intensive agriculture,EA042-7,,fitzpatrick1910;mohr1958,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51946,Ah17,EA042,Extensive agriculture,EA042-6,,gunn1953,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51947,Ah18,EA042,Intensive agriculture,EA042-7,,bestnd,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51948,Ah19,EA042,Intensive agriculture,EA042-7,,gunn1953;smithnda;smithndb,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51949,Ah2,EA042,Extensive agriculture,EA042-6,,meek1931a,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51950,Ah20,EA042,Intensive agriculture,EA042-7,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51951,Ah21,EA042,Extensive agriculture,EA042-6,,gunn1956;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51952,Ah22,EA042,"Agriculture, type unknown",EA042-9,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51953,Ah23,EA042,"Agriculture, type unknown",EA042-9,,meek1931a;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51954,Ah24,EA042,"Agriculture, type unknown",EA042-9,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51955,Ah25,EA042,Extensive agriculture,EA042-6,,kaberry1952;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51956,Ah26,EA042,Extensive agriculture,EA042-6,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51957,Ah27,EA042,Extensive agriculture,EA042-6,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51958,Ah28,EA042,Extensive agriculture,EA042-6,,meek1931b,with special reference to the Lekon subtribe,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51959,Ah29,EA042,Extensive agriculture,EA042-6,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51960,Ah3,EA042,Extensive agriculture,EA042-6,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51961,Ah30,EA042,Intensive agriculture,EA042-7,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51962,Ah31,EA042,Intensive agriculture,EA042-7,,haughton1912;meek1931b,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51963,Ah32,EA042,Intensive agriculture,EA042-7,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51964,Ah33,EA042,Intensive agriculture,EA042-7,,meek1931b;temple1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51965,Ah34,EA042,Intensive agriculture,EA042-7,,meek1931b,with special reference to the Malabu,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51966,Ah35,EA042,Intensive agriculture,EA042-7,,helser1926;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51967,Ah36,EA042,Intensive agriculture,EA042-7,,lembezat1961;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51968,Ah37,EA042,Intensive agriculture,EA042-7,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51969,Ah38,EA042,Intensive agriculture,EA042-7,,lembezat1950;lembezat1961;meek1931b,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51970,Ah39,EA042,Intensive agriculture,EA042-7,,lembezat1952;lembezat1961,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51971,Ah4,EA042,Intensive agriculture,EA042-7,,meek1931b;percival1938;rehfisch1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51972,Ah5,EA042,Intensive agriculture,EA042-7,,meek1931b;rowling1930,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51973,Ah6,EA042,Extensive agriculture,EA042-6,,dunn1956;meek1931b[189-219],,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51974,Ah7,EA042,Intensive agriculture,EA042-7,,hinderling1955;lavergne1949;lembezat1961,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51975,Ah8,EA042,Extensive agriculture,EA042-6,,lembezat1961;sieber1925;thorbecke1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51976,Ah9,EA042,Extensive agriculture,EA042-6,,diamond1964;gunn1953,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51977,Ai1,EA042,Extensive agriculture,EA042-6,,daigre193232;leynaud1954,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51978,Ai10,EA042,Intensive agriculture,EA042-7,,nadel1947,Nuba Hills,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51979,Ai11,EA042,Extensive agriculture,EA042-6,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51980,Ai12,EA042,Extensive agriculture,EA042-6,,foelich1956;lembezat1961;malzy1956,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51981,Ai13,EA042,Extensive agriculture,EA042-6,,tessmann1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51982,Ai14,EA042,Extensive agriculture,EA042-6,,lembezat1961;tessmann1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51983,Ai15,EA042,Extensive agriculture,EA042-6,,brussaux1907;lembezat1916a;martin1947,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51984,Ai16,EA042,Extensive agriculture,EA042-6,,lembezat1916a;savini1937,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51985,Ai17,EA042,Extensive agriculture,EA042-6,,fourneau1938;lembezat1961,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51986,Ai18,EA042,Intensive agriculture,EA042-7,,lebeuf1959,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51987,Ai19,EA042,Intensive agriculture,EA042-7,,hagen1912;lembezat1961,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51988,Ai2,EA042,"Agriculture, type unknown",EA042-9,,nadel1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51989,Ai20,EA042,Extensive agriculture,EA042-6,,lamouroux1913;lembezat1961,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51990,Ai21,EA042,Extensive agriculture,EA042-6,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51991,Ai22,EA042,Extensive agriculture,EA042-6,,delafosse1897,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51992,Ai23,EA042,Extensive agriculture,EA042-6,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51993,Ai24,EA042,Extensive agriculture,EA042-6,,gaud1911;vergiat1937,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51994,Ai25,EA042,Extensive agriculture,EA042-6,,burssens1958,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51995,Ai26,EA042,Extensive agriculture,EA042-6,,burssens1958;nelson1951;tanghe1928,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51996,Ai27,EA042,Extensive agriculture,EA042-6,,czekanowski1924;nvs1896,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51997,Ai28,EA042,Extensive agriculture,EA042-6,,delhaise1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51998,Ai29,EA042,Extensive agriculture,EA042-6,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +51999,Ai3,EA042,Extensive agriculture,EA042-6,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52000,Ai30,EA042,Extensive agriculture,EA042-6,,czekanowski1924;vangeluwe1957,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52001,Ai31,EA042,Extensive agriculture,EA042-6,,baxterandbutt1953;czekanowski1924,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52002,Ai32,EA042,Extensive agriculture,EA042-6,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52003,Ai33,EA042,Extensive agriculture,EA042-6,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52004,Ai34,EA042,Extensive agriculture,EA042-6,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52005,Ai35,EA042,Extensive agriculture,EA042-6,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52006,Ai36,EA042,Extensive agriculture,EA042-6,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52007,Ai37,EA042,Intensive agriculture,EA042-7,,nadel1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52008,Ai38,EA042,Extensive agriculture,EA042-6,,nadel1947;seligmanandseligman1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52009,Ai39,EA042,Extensive agriculture,EA042-6,,nadel1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52010,Ai4,EA042,Intensive agriculture,EA042-7,,evanspritchard1927;seligmanandseligman1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52011,Ai40,EA042,Intensive agriculture,EA042-7,,nadel1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52012,Ai41,EA042,Intensive agriculture,EA042-7,,nadel1947;seligmanandseligman1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52013,Ai42,EA042,Extensive agriculture,EA042-6,,nadel1947;nadel1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52014,Ai43,EA042,Intensive agriculture,EA042-7,,nadel1947;stevenson1940,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52015,Ai44,EA042,Intensive agriculture,EA042-7,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52016,Ai45,EA042,Extensive agriculture,EA042-6,,evanspritchard1932a;seligman1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52017,Ai46,EA042,Extensive agriculture,EA042-6,,corfield1938;grottanelli1948,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52018,Ai47,EA042,Extensive agriculture,EA042-6,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52019,Ai5,EA042,Extensive agriculture,EA042-6,,czekanowski1924[400-467];vangeluwe1957,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52020,Ai6,EA042,Extensive agriculture,EA042-6,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52021,Ai7,EA042,Extensive agriculture,EA042-6,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52022,Ai8,EA042,Intensive agriculture,EA042-7,,hawkesworth1932;nadel1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52023,Ai9,EA042,Intensive agriculture,EA042-7,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52024,Aj1,EA042,Extensive agriculture,EA042-6,,lawrance1957,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52025,Aj10,EA042,Extensive agriculture,EA042-6,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52026,Aj11,EA042,Pastoralism,EA042-4,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52027,Aj12,EA042,Extensive agriculture,EA042-6,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52028,Aj13,EA042,Extensive agriculture,EA042-6,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52029,Aj14,EA042,Extensive agriculture,EA042-6,,huntingford1953a;nalder1937,,1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52030,Aj15,EA042,Intensive agriculture,EA042-7,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52031,Aj16,EA042,Extensive agriculture,EA042-6,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52032,Aj17,EA042,Extensive agriculture,EA042-6,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52033,Aj18,EA042,Pastoralism,EA042-4,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52034,Aj19,EA042,Two or more sources,EA042-8,,driberg1922;driberg1925a;driberg1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52035,Aj2,EA042,Pastoralism,EA042-4,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52036,Aj20,EA042,Extensive agriculture,EA042-6,,cerulli1956;lyth1947;pauli1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52037,Aj21,EA042,Extensive agriculture,EA042-6,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52038,Aj22,EA042,Extensive agriculture,EA042-6,,gulliverandgulliver1953;wayland1931,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52039,Aj23,EA042,Pastoralism,EA042-4,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52040,Aj24,EA042,Pastoralism,EA042-4,,gulliverandgulliver1953;nalder1937,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52041,Aj25,EA042,Two or more sources,EA042-8,,huntingford1953b;massam1927,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52042,Aj26,EA042,Intensive agriculture,EA042-7,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52043,Aj27,EA042,Two or more sources,EA042-8,,roscoe1924,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52044,Aj28,EA042,Pastoralism,EA042-4,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52045,Aj29,EA042,Pastoralism,EA042-4,,spencer1965,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52046,Aj3,EA042,Pastoralism,EA042-4,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52047,Aj30,EA042,Pastoralism,EA042-4,,dysonhudson1963;gulliverandgulliver1953,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52048,Aj31,EA042,"Agriculture, type unknown",EA042-9,,driberg1925b;evanspritchard1940c;walsh1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52049,Aj4,EA042,Extensive agriculture,EA042-6,,driberg1923;hayley1947,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52050,Aj5,EA042,Extensive agriculture,EA042-6,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52051,Aj6,EA042,Intensive agriculture,EA042-7,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52052,Aj7,EA042,Two or more sources,EA042-8,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52053,Aj8,EA042,Extensive agriculture,EA042-6,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52054,Aj9,EA042,Intensive agriculture,EA042-7,,barton1923;huntingford1953b;peristiany1938,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52055,Ca1,EA042,Intensive agriculture,EA042-7,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52056,Ca10,EA042,Pastoralism,EA042-4,,hildebrandt1875;lewis1955;paulitschke1888,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52057,Ca11,EA042,Pastoralism,EA042-4,,huntingford1955b;paulitschke189396b,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52058,Ca12,EA042,Intensive agriculture,EA042-7,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52059,Ca13,EA042,Intensive agriculture,EA042-7,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52060,Ca14,EA042,Intensive agriculture,EA042-7,,cerulli1956;fleming1965,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52061,Ca15,EA042,Intensive agriculture,EA042-7,,cerulli1956;jensen1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52062,Ca16,EA042,Intensive agriculture,EA042-7,,cerulli1956;jensen1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52063,Ca17,EA042,Intensive agriculture,EA042-7,,fleming1965;jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52064,Ca18,EA042,Extensive agriculture,EA042-6,,cerulli1956;jensen1959;ricci1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52065,Ca19,EA042,Pastoralism,EA042-4,,fleming1965;jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52066,Ca2,EA042,Pastoralism,EA042-4,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52067,Ca20,EA042,Pastoralism,EA042-4,,cerulli1956;hohnel1890;nalder1937,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52068,Ca21,EA042,Pastoralism,EA042-4,,fleming1965;jensen1959;ricci1952,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52069,Ca22,EA042,Two or more sources,EA042-8,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52070,Ca23,EA042,Intensive agriculture,EA042-7,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52071,Ca24,EA042,Intensive agriculture,EA042-7,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52072,Ca25,EA042,Intensive agriculture,EA042-7,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52073,Ca26,EA042,Intensive agriculture,EA042-7,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52074,Ca27,EA042,Extensive agriculture,EA042-6,,cerulli1956;grottanelli1940,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52075,Ca28,EA042,Intensive agriculture,EA042-7,,cerulli1956;jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52076,Ca29,EA042,Intensive agriculture,EA042-7,,huntingford1955b;straube1963,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52077,Ca3,EA042,Intensive agriculture,EA042-7,,fischer1957b;munzinger1864;nadel1946,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52078,Ca30,EA042,Intensive agriculture,EA042-7,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52079,Ca31,EA042,Intensive agriculture,EA042-7,,flad1860;leslau1951;leslau1957;stern1862,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52080,Ca32,EA042,Extensive agriculture,EA042-6,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52081,Ca33,EA042,Extensive agriculture,EA042-6,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52082,Ca34,EA042,Pastoralism,EA042-4,,klunzinger1876;murray1923;murray1935,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52083,Ca35,EA042,Pastoralism,EA042-4,,clark1938;sandars1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52084,Ca36,EA042,Pastoralism,EA042-4,,munzinger1864;nadel1945;paul1950,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52085,Ca37,EA042,Pastoralism,EA042-4,,munzinger1859,Bogo Tribe,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52086,Ca38,EA042,Pastoralism,EA042-4,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52087,Ca39,EA042,Intensive agriculture,EA042-7,,lewis1965b,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52088,Ca4,EA042,Two or more sources,EA042-8,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52089,Ca40,EA042,Intensive agriculture,EA042-7,,straube1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52090,Ca41,EA042,Intensive agriculture,EA042-7,,straube1957;straube1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52091,Ca42,EA042,Intensive agriculture,EA042-7,,straube1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52092,Ca43,EA042,Pastoralism,EA042-4,,owen1937;rober1928,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52093,Ca5,EA042,Pastoralism,EA042-4,,clark1938;murray1935;sandars1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52094,Ca6,EA042,Pastoralism,EA042-4,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52095,Ca7,EA042,Intensive agriculture,EA042-7,,lipsky1962;messing1957,Gondar district,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52096,Ca8,EA042,Intensive agriculture,EA042-7,,leslau1950;shack1963,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52097,Ca9,EA042,Two or more sources,EA042-8,,baumann1894;huntingford1953b;reche1914,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52098,Cb1,EA042,"Agriculture, type unknown",EA042-9,,greenberg1946;greenberg1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52099,Cb10,EA042,Extensive agriculture,EA042-6,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52100,Cb11,EA042,Pastoralism,EA042-4,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52101,Cb12,EA042,Pastoralism,EA042-4,,reid1930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52102,Cb13,EA042,Pastoralism,EA042-4,,lampen1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52103,Cb14,EA042,Two or more sources,EA042-8,,lagrange1913;martine1924,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52104,Cb15,EA042,Pastoralism,EA042-4,,cunnison1954;henderson1939,with special reference to the Humr,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52105,Cb16,EA042,Pastoralism,EA042-4,,bouille1937;devallee1925,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52106,Cb17,EA042,Intensive agriculture,EA042-7,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52107,Cb18,EA042,Intensive agriculture,EA042-7,,bouille1937;carbou1912;lebeuf1959,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52108,Cb19,EA042,Intensive agriculture,EA042-7,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52109,Cb2,EA042,Extensive agriculture,EA042-6,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52110,Cb20,EA042,Intensive agriculture,EA042-7,,dupicq1931;robin1947,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52111,Cb21,EA042,Pastoralism,EA042-4,,pfeffer1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52112,Cb22,EA042,Extensive agriculture,EA042-6,,coutouly1923;delmond1953,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52113,Cb23,EA042,Extensive agriculture,EA042-6,,kane1939;lafont1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52114,Cb24,EA042,Pastoralism,EA042-4,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52115,Cb25,EA042,Extensive agriculture,EA042-6,,anonymous1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52116,Cb26,EA042,Intensive agriculture,EA042-7,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52117,Cb27,EA042,Intensive agriculture,EA042-7,,fegan1930;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52118,Cb28,EA042,Intensive agriculture,EA042-7,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52119,Cb29,EA042,"Agriculture, type unknown",EA042-9,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52120,Cb3,EA042,Intensive agriculture,EA042-7,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52121,Cb4,EA042,Two or more sources,EA042-8,,reid1930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52122,Cb5,EA042,Two or more sources,EA042-8,,bouille1937;lebeuf1959;talbot1911,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52123,Cb6,EA042,Extensive agriculture,EA042-6,,woodnd,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52124,Cb7,EA042,Extensive agriculture,EA042-6,,meek1931b[288-310],,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52125,Cb8,EA042,Pastoralism,EA042-4,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52126,Cb9,EA042,Extensive agriculture,EA042-6,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52127,Cc1,EA042,Pastoralism,EA042-4,,briggs1958;carobaroja1955;cauneille1950,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52128,Cc10,EA042,Pastoralism,EA042-4,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52129,Cc11,EA042,Pastoralism,EA042-4,,duveyrier1864,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52130,Cc12,EA042,Pastoralism,EA042-4,,cortier1908,,1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52131,Cc13,EA042,Intensive agriculture,EA042-7,,coutouly1923;gaalon1939,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52132,Cc14,EA042,Two or more sources,EA042-8,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52133,Cc15,EA042,"Agriculture, type unknown",EA042-9,,chapelle1929;meunie1947;spillmann1931,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52134,Cc16,EA042,Pastoralism,EA042-4,,briggs1958;darmagnac1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52135,Cc17,EA042,Pastoralism,EA042-4,,carobaroja1955;lotte1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52136,Cc18,EA042,Pastoralism,EA042-4,,salvy1951;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52137,Cc19,EA042,Pastoralism,EA042-4,,dubie1953;martv1919,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52138,Cc2,EA042,Intensive agriculture,EA042-7,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52139,Cc20,EA042,Pastoralism,EA042-4,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52140,Cc3,EA042,Intensive agriculture,EA042-7,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52141,Cc4,EA042,Intensive agriculture,EA042-7,,goichon1927;mercier1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52142,Cc5,EA042,Pastoralism,EA042-4,,aymard1911;miner1953;said1903;zeltner1914,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52143,Cc6,EA042,Pastoralism,EA042-4,,parkyns1951;seligmanandseligman1918,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52144,Cc7,EA042,Pastoralism,EA042-4,,miner1953,Timbuctoo,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52145,Cc8,EA042,Pastoralism,EA042-4,,hourst1899,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52146,Cc9,EA042,Pastoralism,EA042-4,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52147,Cd1,EA042,Intensive agriculture,EA042-7,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52148,Cd10,EA042,Two or more sources,EA042-8,,destaing190711;moulieras1905,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52149,Cd11,EA042,Extensive agriculture,EA042-6,,cook1900;espinosa1907;gambier1894,,1500,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52150,Cd12,EA042,Intensive agriculture,EA042-7,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52151,Cd13,EA042,Pastoralism,EA042-4,,bardin1944;despois1940;ubachandrackow1923,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52152,Cd14,EA042,Pastoralism,EA042-4,,bernard1929;villot1875,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52153,Cd15,EA042,Intensive agriculture,EA042-7,,michauxbellaire1911;rackow1958,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52154,Cd16,EA042,Intensive agriculture,EA042-7,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52155,Cd17,EA042,Pastoralism,EA042-4,,ubachandrackow1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52156,Cd18,EA042,Pastoralism,EA042-4,,kennett1925;murray1935,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52157,Cd19,EA042,Intensive agriculture,EA042-7,,despois1940;ubachandrackow1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52158,Cd2,EA042,Intensive agriculture,EA042-7,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52159,Cd20,EA042,Pastoralism,EA042-4,,evanspritchard1949b,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52160,Cd21,EA042,Intensive agriculture,EA042-7,,bonniard1934;despois1930,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52161,Cd3,EA042,Intensive agriculture,EA042-7,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52162,Cd4,EA042,Intensive agriculture,EA042-7,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52163,Cd5,EA042,Intensive agriculture,EA042-7,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52164,Cd6,EA042,Intensive agriculture,EA042-7,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52165,Cd7,EA042,Intensive agriculture,EA042-7,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52166,Cd8,EA042,Intensive agriculture,EA042-7,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52167,Cd9,EA042,Intensive agriculture,EA042-7,,justinard1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52168,Ce1,EA042,Intensive agriculture,EA042-7,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52169,Ce2,EA042,"Agriculture, type unknown",EA042-9,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52170,Ce3,EA042,Intensive agriculture,EA042-7,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52171,Ce4,EA042,Intensive agriculture,EA042-7,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52172,Ce5,EA042,Intensive agriculture,EA042-7,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52173,Ce6,EA042,Intensive agriculture,EA042-7,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52174,Ce7,EA042,Intensive agriculture,EA042-7,,firedl1962,with special reference to the village of Vasilika,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52175,Ce8,EA042,Intensive agriculture,EA042-7,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52176,Cf1,EA042,Intensive agriculture,EA042-7,,murdocknd,Small City in Connecticut,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52177,Cf2,EA042,Pastoralism,EA042-4,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52178,Cf3,EA042,Intensive agriculture,EA042-7,,munch1945,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52179,Cf4,EA042,Intensive agriculture,EA042-7,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52180,Cf5,EA042,Intensive agriculture,EA042-7,,miner1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52181,Cg1,EA042,Intensive agriculture,EA042-7,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52182,Cg2,EA042,Pastoralism,EA042-4,,dasent1861;johnson1930;merrill1964,,1100,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52183,Cg3,EA042,Intensive agriculture,EA042-7,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52184,Cg4,EA042,Pastoralism,EA042-4,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52185,Cg5,EA042,Intensive agriculture,EA042-7,,turneyhigh1953,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52186,Ch1,EA042,Intensive agriculture,EA042-7,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52187,Ch10,EA042,"Agriculture, type unknown",EA042-9,,cotlarciuc1913,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52188,Ch11,EA042,Intensive agriculture,EA042-7,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52189,Ch2,EA042,Two or more sources,EA042-8,,kaindl1894;koenig1935;szuchiewicz190208,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52190,Ch3,EA042,Intensive agriculture,EA042-7,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52191,Ch4,EA042,Intensive agriculture,EA042-7,,heffner1955;wichmann1913,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52192,Ch5,EA042,Intensive agriculture,EA042-7,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52193,Ch6,EA042,Intensive agriculture,EA042-7,,ember1954,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52194,Ch7,EA042,Intensive agriculture,EA042-7,,friedrich1954,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52195,Ch8,EA042,Intensive agriculture,EA042-7,,hanzeli1955,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52196,Ch9,EA042,Intensive agriculture,EA042-7,,maciuika1955,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52197,Ci1,EA042,Pastoralism,EA042-4,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52198,Ci10,EA042,Intensive agriculture,EA042-7,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52199,Ci11,EA042,Intensive agriculture,EA042-7,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52200,Ci12,EA042,Pastoralism,EA042-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52201,Ci2,EA042,Intensive agriculture,EA042-7,,grigolia1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52202,Ci3,EA042,Intensive agriculture,EA042-7,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52203,Ci4,EA042,Intensive agriculture,EA042-7,,castagne1929;ladysenskij1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52204,Ci5,EA042,Intensive agriculture,EA042-7,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52205,Ci6,EA042,Pastoralism,EA042-4,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52206,Ci7,EA042,Two or more sources,EA042-8,,lotz1956;plaetschke1929,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52207,Ci8,EA042,Intensive agriculture,EA042-7,,abasadse1894;allen1932;haxthausen1854,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52208,Ci9,EA042,Two or more sources,EA042-8,,grigolia1939,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52209,Cj1,EA042,Intensive agriculture,EA042-7,,sweet1960,with special reference to the village of Tell Toqaan,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52210,Cj10,EA042,Two or more sources,EA042-8,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52211,Cj2,EA042,Pastoralism,EA042-4,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52212,Cj3,EA042,Intensive agriculture,EA042-7,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52213,Cj4,EA042,Intensive agriculture,EA042-7,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52214,Cj5,EA042,Pastoralism,EA042-4,,dickson1949,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52215,Cj6,EA042,Intensive agriculture,EA042-7,,granqvist193135;harris1958,with special reference to the sedentary population,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52216,Cj7,EA042,Intensive agriculture,EA042-7,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52217,Cj8,EA042,Intensive agriculture,EA042-7,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52218,Cj9,EA042,Intensive agriculture,EA042-7,,hazard1956,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52219,Ea1,EA042,Intensive agriculture,EA042-7,,bordiend;wilber1964,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52220,Ea10,EA042,Pastoralism,EA042-4,,pehrson1966,with special reference to the more nomadic groups,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52221,Ea11,EA042,Intensive agriculture,EA042-7,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52222,Ea12,EA042,Pastoralism,EA042-4,,garrod1946a;garrod1946b,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52223,Ea13,EA042,Intensive agriculture,EA042-7,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52224,Ea2,EA042,Intensive agriculture,EA042-7,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52225,Ea3,EA042,Two or more sources,EA042-8,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52226,Ea4,EA042,Two or more sources,EA042-8,,barth1956b,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52227,Ea5,EA042,Intensive agriculture,EA042-7,,robertson1896;wilber1956,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52228,Ea6,EA042,Pastoralism,EA042-4,,barth1961;barth1964,Nomadic branch,1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52229,Ea7,EA042,Intensive agriculture,EA042-7,,schurmann1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52230,Ea8,EA042,Pastoralism,EA042-4,,feilberg1952;wilson1926,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52231,Ea9,EA042,Intensive agriculture,EA042-7,,vreeland1957,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52232,Eb1,EA042,Pastoralism,EA042-4,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52233,Eb2,EA042,Intensive agriculture,EA042-7,,krader1963;schram1954,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52234,Eb3,EA042,Pastoralism,EA042-4,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52235,Eb4,EA042,"Agriculture, type unknown",EA042-9,,vreeland1954,with special reference to the Botaha area,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52236,Eb5,EA042,Intensive agriculture,EA042-7,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52237,Eb6,EA042,Pastoralism,EA042-4,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52238,Eb7,EA042,Pastoralism,EA042-4,,krader1954b;vreeland1954,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52239,Eb8,EA042,Pastoralism,EA042-4,,zadykhina1952,with special reference to the Kongrat tribe,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52240,Ec1,EA042,Fishing,EA042-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52241,Ec10,EA042,Fishing,EA042-2,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52242,Ec11,EA042,Two or more sources,EA042-8,,donner1932;donner1954,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52243,Ec2,EA042,Pastoralism,EA042-4,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52244,Ec3,EA042,Pastoralism,EA042-4,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52245,Ec4,EA042,Pastoralism,EA042-4,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52246,Ec5,EA042,Fishing,EA042-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52247,Ec6,EA042,Hunting,EA042-3,,jochelson191926,Upper Kolyma River,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52248,Ec7,EA042,Fishing,EA042-2,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52249,Ec8,EA042,Fishing,EA042-2,,shimkin1939,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52250,Ec9,EA042,Fishing,EA042-2,,lattimore1933,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52251,Ed1,EA042,Intensive agriculture,EA042-7,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52252,Ed10,EA042,Intensive agriculture,EA042-7,,yang1945,with special reference to the village of Taitou,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52253,Ed13,EA042,"Agriculture, type unknown",EA042-9,,smith1952,with special reference to the town of Kabira,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52254,Ed14,EA042,"Agriculture, type unknown",EA042-9,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52255,Ed15a,EA042,"Agriculture, type unknown",EA042-9,,burd1952,with special reference to the village of Karimata,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52256,Ed15b,EA042,Intensive agriculture,EA042-7,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52257,Ed16,EA042,"Agriculture, type unknown",EA042-9,,davenportnd,with special reference to the village of Yannon,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52258,Ed2,EA042,Intensive agriculture,EA042-7,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52259,Ed3,EA042,Intensive agriculture,EA042-7,,shirokogoroff1924,Aigun District,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52260,Ed4,EA042,Intensive agriculture,EA042-7,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52261,Ed5,EA042,Intensive agriculture,EA042-7,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52262,Ed6,EA042,Intensive agriculture,EA042-7,,kulp1925,with special reference to those in the hinterland of Swatow,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52263,Ed7,EA042,Intensive agriculture,EA042-7,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52264,Ed8,EA042,Intensive agriculture,EA042-7,,fitzgerald1941,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52265,Ed9,EA042,Intensive agriculture,EA042-7,,lebaretal1964;odaka1950;strubel1937,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52266,Ee1,EA042,Extensive agriculture,EA042-6,,duffsutherlanddunbar1915;roy1960,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52267,Ee2,EA042,Intensive agriculture,EA042-7,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52268,Ee3,EA042,Intensive agriculture,EA042-7,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52269,Ee4,EA042,Intensive agriculture,EA042-7,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52270,Ee5,EA042,Intensive agriculture,EA042-7,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52271,Ee6,EA042,Two or more sources,EA042-8,,furerhaimendorf1964,with special reference to those of Khumbu,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52272,Ee7,EA042,"Agriculture, type unknown",EA042-9,,endle1911;hodgson1847,,1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52273,Ee8,EA042,Intensive agriculture,EA042-7,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52274,Ef1,EA042,Intensive agriculture,EA042-7,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52275,Ef10,EA042,"Agriculture, type unknown",EA042-9,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52276,Ef11,EA042,Intensive agriculture,EA042-7,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52277,Ef2,EA042,Intensive agriculture,EA042-7,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52278,Ef3,EA042,"Agriculture, type unknown",EA042-9,,karve1953,,-800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52279,Ef4,EA042,"Agriculture, type unknown",EA042-9,,chatterjeeanddas1927;majumdar1937,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52280,Ef5,EA042,Intensive agriculture,EA042-7,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52281,Ef6,EA042,Intensive agriculture,EA042-7,,roy1915;roy1951,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52282,Ef7,EA042,Intensive agriculture,EA042-7,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52283,Ef8,EA042,Intensive agriculture,EA042-7,But the Pandit themselves do not engage in food production,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52284,Ef9,EA042,Intensive agriculture,EA042-7,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52285,Eg1,EA042,Gathering,EA042-1,,furerhaimendorf1943b,with special reference to the forest group,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52286,Eg10,EA042,Intensive agriculture,EA042-7,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52287,Eg11,EA042,"Agriculture, type unknown",EA042-9,,tyler1965,with special reference to the Gommu Koya,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52288,Eg12,EA042,"Agriculture, type unknown",EA042-9,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52289,Eg13,EA042,Extensive agriculture,EA042-6,,elwin1957,Bastar State,1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52290,Eg14,EA042,Extensive agriculture,EA042-6,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52291,Eg2,EA042,Intensive agriculture,EA042-7,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52292,Eg3,EA042,Extensive agriculture,EA042-6,,grigson1938,Hill Maria,1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52293,Eg4,EA042,Pastoralism,EA042-4,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52294,Eg5,EA042,Intensive agriculture,EA042-7,,emeneau1939;srinivas1952,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52295,Eg6,EA042,Intensive agriculture,EA042-7,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52296,Eg7,EA042,Extensive agriculture,EA042-6,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52297,Eg8,EA042,Intensive agriculture,EA042-7,,griffiths1946,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52298,Eg9,EA042,Extensive agriculture,EA042-6,,elwin1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52299,Eh1,EA042,Two or more sources,EA042-8,,man1882;radcliffebrown1922,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52300,Eh10,EA042,"Agriculture, type unknown",EA042-9,,dubois1938,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52301,Eh2,EA042,Intensive agriculture,EA042-7,,grandidierandgrandidier190828;sibree1880,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52302,Eh3,EA042,Intensive agriculture,EA042-7,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52303,Eh4,EA042,Gathering,EA042-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52304,Eh5,EA042,Extensive agriculture,EA042-6,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52305,Eh6,EA042,Intensive agriculture,EA042-7,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52306,Eh7,EA042,Pastoralism,EA042-4,,decary193033;mcleod1964;rajohnson1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52307,Eh8,EA042,Pastoralism,EA042-4,,faublee1946;kurze188689;mcleod1964,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52308,Eh9,EA042,Intensive agriculture,EA042-7,,deschamps1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52309,Ei1,EA042,Extensive agriculture,EA042-6,,burling1963;playfair1909,Rengsanggr,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52310,Ei10,EA042,Extensive agriculture,EA042-6,,bessaignet1958;levistrauss1952;lewin1869,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52311,Ei11,EA042,Extensive agriculture,EA042-6,,bose1936;needham1960;shakespear1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52312,Ei12,EA042,Extensive agriculture,EA042-6,,shakespear1912;shaw1929,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52313,Ei13,EA042,Intensive agriculture,EA042-7,,hutton1921a,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52314,Ei14,EA042,Extensive agriculture,EA042-6,,mills1926;smith1925b,with special reference to the Chongli,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52315,Ei15,EA042,"Agriculture, type unknown",EA042-9,,mills1937,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52316,Ei16,EA042,Extensive agriculture,EA042-6,,hutton1921b,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52317,Ei17,EA042,"Agriculture, type unknown",EA042-9,,stack1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52318,Ei18,EA042,Extensive agriculture,EA042-6,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52319,Ei19,EA042,Extensive agriculture,EA042-6,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52320,Ei2,EA042,Extensive agriculture,EA042-6,,mills1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52321,Ei20,EA042,"Agriculture, type unknown",EA042-9,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52322,Ei3,EA042,Intensive agriculture,EA042-7,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52323,Ei4,EA042,Extensive agriculture,EA042-6,,parry1932,Lakher Tribe,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52324,Ei5,EA042,Extensive agriculture,EA042-6,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52325,Ei6,EA042,Extensive agriculture,EA042-6,,das1945;needham1958,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52326,Ei7,EA042,Intensive agriculture,EA042-7,,marshall1922;mcmahon1876,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52327,Ei8,EA042,Extensive agriculture,EA042-6,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52328,Ei9,EA042,Extensive agriculture,EA042-6,,bessaignet1958;levistrauss1952,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52329,Ej1,EA042,Extensive agriculture,EA042-6,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52330,Ej10,EA042,Extensive agriculture,EA042-6,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52331,Ej11,EA042,Intensive agriculture,EA042-7,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52332,Ej12,EA042,Extensive agriculture,EA042-6,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52333,Ej13,EA042,Intensive agriculture,EA042-7,,cusinier1946;lebaretal1964,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52334,Ej14,EA042,Extensive agriculture,EA042-6,,dentan1967,with special reference to the eastern Semai,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52335,Ej15,EA042,Intensive agriculture,EA042-7,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52336,Ej16,EA042,Intensive agriculture,EA042-7,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52337,Ej2,EA042,Extensive agriculture,EA042-6,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52338,Ej3,EA042,Gathering,EA042-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52339,Ej4,EA042,Intensive agriculture,EA042-7,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52340,Ej5,EA042,Intensive agriculture,EA042-7,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52341,Ej6,EA042,Fishing,EA042-2,,carrapiett1909;white1922,of the Mergui Archipelago,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52342,Ej7,EA042,Extensive agriculture,EA042-6,,bernatzik1947,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52343,Ej8,EA042,Intensive agriculture,EA042-7,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52344,Ej9,EA042,Intensive agriculture,EA042-7,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52345,Ia1,EA042,Extensive agriculture,EA042-6,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52346,Ia10,EA042,Extensive agriculture,EA042-6,,chiu1962;mabuchi1952;mabuchi1960,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52347,Ia11,EA042,Intensive agriculture,EA042-7,,mabuchi1960,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52348,Ia12,EA042,Intensive agriculture,EA042-7,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52349,Ia13,EA042,Fishing,EA042-2,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52350,Ia14,EA042,Extensive agriculture,EA042-6,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52351,Ia15,EA042,Extensive agriculture,EA042-6,,garvan1931,with special reference to those of the Agusan Valley,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52352,Ia16,EA042,Intensive agriculture,EA042-7,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52353,Ia17,EA042,"Agriculture, type unknown",EA042-9,,cole1913;deananddean1954;wood1951,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52354,Ia18,EA042,"Agriculture, type unknown",EA042-9,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52355,Ia2,EA042,Intensive agriculture,EA042-7,,bacdayan1962;eggan1960,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52356,Ia3,EA042,Intensive agriculture,EA042-7,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52357,Ia4,EA042,Extensive agriculture,EA042-6,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52358,Ia5,EA042,Extensive agriculture,EA042-6,,conklin1954;conklin1955;conklin1957,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52359,Ia6,EA042,Extensive agriculture,EA042-6,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52360,Ia7,EA042,Extensive agriculture,EA042-6,,fox1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52361,Ia8,EA042,Intensive agriculture,EA042-7,,jenks1905;keesing1949,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52362,Ia9,EA042,Intensive agriculture,EA042-7,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52363,Ib1,EA042,Extensive agriculture,EA042-6,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52364,Ib2,EA042,Intensive agriculture,EA042-7,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52365,Ib3,EA042,Intensive agriculture,EA042-7,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52366,Ib4,EA042,Intensive agriculture,EA042-7,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52367,Ib5,EA042,Extensive agriculture,EA042-6,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52368,Ib6,EA042,Intensive agriculture,EA042-7,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52369,Ib7,EA042,Extensive agriculture,EA042-6,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52370,Ib8,EA042,Two or more sources,EA042-8,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52371,Ib9,EA042,"Agriculture, type unknown",EA042-9,,needham1955,with special reference to settled Punan,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52372,Ic1,EA042,Intensive agriculture,EA042-7,,chabot1950,Borongloe,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52373,Ic10,EA042,Extensive agriculture,EA042-6,,hueting1921;riedel1885,Tobelo District,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52374,Ic11,EA042,Extensive agriculture,EA042-6,,cooley1962a;cooley1962b,Allang,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52375,Ic12,EA042,Extensive agriculture,EA042-6,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52376,Ic13,EA042,"Agriculture, type unknown",EA042-9,,fischer1957a,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52377,Ic2,EA042,Extensive agriculture,EA042-6,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52378,Ic3,EA042,Extensive agriculture,EA042-6,,vroklage1952,with special reference to the Mountain Belu,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52379,Ic4,EA042,"Agriculture, type unknown",EA042-9,,kruyt1921;wetering1925,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52380,Ic5,EA042,Extensive agriculture,EA042-6,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52381,Ic6,EA042,Extensive agriculture,EA042-6,,drabbe1940,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52382,Ic7,EA042,Extensive agriculture,EA042-6,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52383,Ic8,EA042,Extensive agriculture,EA042-6,,pleyte1893,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52384,Ic9,EA042,Intensive agriculture,EA042-7,,nooteboom1940,with special reference to eastern Sumba,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52385,Id1,EA042,Gathering,EA042-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52386,Id10,EA042,Gathering,EA042-1,,meggitt1962a,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52387,Id11,EA042,Gathering,EA042-1,,hiatt1965,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52388,Id12,EA042,Gathering,EA042-1,,sharp1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52389,Id13,EA042,Fishing,EA042-2,,rose1960,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52390,Id2,EA042,Gathering,EA042-1,,berndt1955;elkin1950;warner1937,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52391,Id3,EA042,Gathering,EA042-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52392,Id4,EA042,Gathering,EA042-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52393,Id5,EA042,Hunting,EA042-3,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52394,Id6,EA042,Two or more sources,EA042-8,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52395,Id7,EA042,Gathering,EA042-1,,falkenberg1962,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52396,Id8,EA042,Two or more sources,EA042-8,,roth1890,,1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52397,Id9,EA042,Fishing,EA042-2,,howitt1904;radcliffebrown1923,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52398,Ie1,EA042,Extensive agriculture,EA042-6,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52399,Ie10,EA042,Extensive agriculture,EA042-6,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52400,Ie11,EA042,Intensive agriculture,EA042-7,,bowers1964,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52401,Ie12,EA042,Extensive agriculture,EA042-6,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52402,Ie13,EA042,Extensive agriculture,EA042-6,,landtman1927,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52403,Ie14,EA042,Extensive agriculture,EA042-6,,haddon1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52404,Ie15,EA042,Extensive agriculture,EA042-6,,kaberry1941,Kalabu; Northern Abelam,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52405,Ie16,EA042,Two or more sources,EA042-8,,williams194041,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52406,Ie17,EA042,Extensive agriculture,EA042-6,,salisbury1956;salisbury1962,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52407,Ie18,EA042,Intensive agriculture,EA042-7,,serpenti1965,Bamol Village,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52408,Ie19,EA042,Extensive agriculture,EA042-6,,vanbaal1966,with special reference to the coastal inhabitants,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52409,Ie2,EA042,Extensive agriculture,EA042-6,,schmitz1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52410,Ie20,EA042,Extensive agriculture,EA042-6,,seligmann1910,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52411,Ie21,EA042,Extensive agriculture,EA042-6,,malinowski1916,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52412,Ie22,EA042,Extensive agriculture,EA042-6,,belshaw1951;seligmann1910;williamson1913,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52413,Ie23,EA042,Extensive agriculture,EA042-6,,schoorl1957,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52414,Ie24,EA042,Extensive agriculture,EA042-6,,chalmers1890;lawes1879,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52415,Ie25,EA042,Extensive agriculture,EA042-6,,williamson1912,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52416,Ie26,EA042,Extensive agriculture,EA042-6,,read1946;read1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52417,Ie27,EA042,Extensive agriculture,EA042-6,,thurnwald1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52418,Ie28,EA042,Extensive agriculture,EA042-6,,hogbin194647;hogbin1946b,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52419,Ie29,EA042,Extensive agriculture,EA042-6,,wedgwood1934;wedgwood1937,principally Tsogari,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52420,Ie3,EA042,Extensive agriculture,EA042-6,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52421,Ie30,EA042,Two or more sources,EA042-8,,pouwer1955,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52422,Ie31,EA042,Extensive agriculture,EA042-6,,berndt1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52423,Ie32,EA042,Extensive agriculture,EA042-6,,groves1934;harding1967,,1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52424,Ie33,EA042,Gathering,EA042-1,,oosterwal1967,with special reference to the village of Muramarew,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52425,Ie34,EA042,Gathering,EA042-1,,koentjaraningrat1966,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52426,Ie35,EA042,Extensive agriculture,EA042-6,,bateson1932;bateson1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52427,Ie36,EA042,Gathering,EA042-1,,vanderleeden1956,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52428,Ie37,EA042,"Agriculture, type unknown",EA042-9,,pouwer1964,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52429,Ie38,EA042,Extensive agriculture,EA042-6,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52430,Ie39,EA042,Two or more sources,EA042-8,,williams1940,with special reference to those of Orokolo Bay,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52431,Ie4,EA042,Extensive agriculture,EA042-6,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52432,Ie5,EA042,Extensive agriculture,EA042-6,,williams1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52433,Ie6,EA042,Two or more sources,EA042-8,,held1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52434,Ie7,EA042,Extensive agriculture,EA042-6,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52435,Ie8,EA042,Gathering,EA042-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52436,Ie9,EA042,Extensive agriculture,EA042-6,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52437,If1,EA042,Extensive agriculture,EA042-6,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52438,If10,EA042,"Agriculture, type unknown",EA042-9,,tolertonandrauch1949,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52439,If11,EA042,Extensive agriculture,EA042-6,,sarfert1919,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52440,If12,EA042,Extensive agriculture,EA042-6,,mason1954,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52441,If13,EA042,Extensive agriculture,EA042-6,,hambruch191415;stephen1936;wedgwood1936,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52442,If14,EA042,Two or more sources,EA042-8,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52443,If15,EA042,Two or more sources,EA042-8,,josephandmurray1951;spehr1954,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52444,If16,EA042,Extensive agriculture,EA042-6,,alkire1965,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52445,If17,EA042,Fishing,EA042-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52446,If2,EA042,Two or more sources,EA042-8,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52447,If3,EA042,Extensive agriculture,EA042-6,,spoehr1949,With special reference to the inhabitants of Majuro,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52448,If4,EA042,Extensive agriculture,EA042-6,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52449,If5,EA042,Extensive agriculture,EA042-6,,bascom1965;hambruch193236;riesenberg1949,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52450,If6,EA042,Extensive agriculture,EA042-6,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52451,If7,EA042,Fishing,EA042-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52452,If8,EA042,Extensive agriculture,EA042-6,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52453,If9,EA042,Extensive agriculture,EA042-6,,lessa1950;william1966,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52454,Ig1,EA042,Extensive agriculture,EA042-6,,oliver1949;oliver1955,Northeastern group,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52455,Ig10,EA042,Extensive agriculture,EA042-6,,schwartz1964,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52456,Ig11,EA042,Two or more sources,EA042-8,,armstrong1928,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52457,Ig12,EA042,Extensive agriculture,EA042-6,,scheffler1965,with special reference to the Varisi,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52458,Ig13,EA042,Fishing,EA042-2,,hambruch1907;pittrivers1925,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52459,Ig14,EA042,Extensive agriculture,EA042-6,,belshaw1955;seligman1910,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52460,Ig15,EA042,"Agriculture, type unknown",EA042-9,,goodenough1954a,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52461,Ig16,EA042,"Agriculture, type unknown",EA042-9,,goodenough1951a,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52462,Ig17,EA042,Fishing,EA042-2,Primarily traders,goodenough1954b,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52463,Ig18,EA042,"Agriculture, type unknown",EA042-9,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52464,Ig19,EA042,"Agriculture, type unknown",EA042-9,,chowning1962;goodenough1952,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52465,Ig2,EA042,Extensive agriculture,EA042-6,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52466,Ig20,EA042,Extensive agriculture,EA042-6,,hogbin1965,with special reference to the village of Longgu,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52467,Ig21,EA042,Extensive agriculture,EA042-6,,bell1934;bell1938,with special reference to Boieng Island,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52468,Ig3,EA042,Extensive agriculture,EA042-6,,blackwood1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52469,Ig4,EA042,Two or more sources,EA042-8,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52470,Ig5,EA042,Extensive agriculture,EA042-6,,fortune1932b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52471,Ig6,EA042,Extensive agriculture,EA042-6,,ivens1927,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52472,Ig7,EA042,Extensive agriculture,EA042-6,,chowning1957;goodenough1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52473,Ig8,EA042,"Agriculture, type unknown",EA042-9,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52474,Ig9,EA042,Fishing,EA042-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52475,Ih1,EA042,Extensive agriculture,EA042-6,,codrington1891;rivers1914a,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52476,Ih10,EA042,Extensive agriculture,EA042-6,,humphreys1926,Whitsands,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52477,Ih11,EA042,"Agriculture, type unknown",EA042-9,,deacon1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52478,Ih12,EA042,"Agriculture, type unknown",EA042-9,,humphreys1926,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52479,Ih13,EA042,"Agriculture, type unknown",EA042-9,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52480,Ih14,EA042,Fishing,EA042-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52481,Ih2,EA042,Extensive agriculture,EA042-6,,deacon1934,Malekula Island,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52482,Ih3,EA042,Extensive agriculture,EA042-6,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52483,Ih4,EA042,Extensive agriculture,EA042-6,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52484,Ih5,EA042,Intensive agriculture,EA042-7,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52485,Ih6,EA042,Extensive agriculture,EA042-6,,gardner1897;howardandhoward1964;russell1942,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52486,Ih7,EA042,Extensive agriculture,EA042-6,,hadfield1920;ray1917,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52487,Ih8,EA042,Extensive agriculture,EA042-6,,quain1949,with special reference to the village of Nakaroka,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52488,Ih9,EA042,Extensive agriculture,EA042-6,,davenport1964,Graciosa Bay,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52489,Ii1,EA042,Extensive agriculture,EA042-6,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52490,Ii10,EA042,Extensive agriculture,EA042-6,,birketsmith1956,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52491,Ii12,EA042,Extensive agriculture,EA042-6,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52492,Ii13,EA042,Extensive agriculture,EA042-6,,burrows1937,,1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52493,Ii14,EA042,Extensive agriculture,EA042-6,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52494,Ii2,EA042,Two or more sources,EA042-8,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52495,Ii3,EA042,Extensive agriculture,EA042-6,,beagleholeandbeaglehole1938;macgregor1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52496,Ii4,EA042,Fishing,EA042-2,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52497,Ii5,EA042,Two or more sources,EA042-8,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52498,Ii6,EA042,Fishing,EA042-2,,macgregor1937,with special reference to Atafu,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52499,Ii7,EA042,Extensive agriculture,EA042-6,,buck1950;eilers1934;emory1965,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52500,Ii8,EA042,Extensive agriculture,EA042-6,,burrows1936,,1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52501,Ii9,EA042,Two or more sources,EA042-8,,loeb1926a,,1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52502,Ij1,EA042,Extensive agriculture,EA042-6,,buck1934,,1820,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52503,Ij10,EA042,Fishing,EA042-2,,buck1932b,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52504,Ij2,EA042,Extensive agriculture,EA042-6,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52505,Ij3,EA042,Extensive agriculture,EA042-6,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52506,Ij4,EA042,Two or more sources,EA042-8,,buck1932a,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52507,Ij5,EA042,Fishing,EA042-2,,danielsson1954;danielsson1955,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52508,Ij6,EA042,Intensive agriculture,EA042-7,,buck1957;handyetal1933;malo1951;vayda1956,,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52509,Ij7,EA042,Fishing,EA042-2,,buck1938;laval1938,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52510,Ij8,EA042,Extensive agriculture,EA042-6,,ellis1905;handy1930;henry1928,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52511,Ij9,EA042,Extensive agriculture,EA042-6,,metraux1940,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52512,Na1,EA042,Hunting,EA042-3,,mckennan1959,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52513,Na10,EA042,Fishing,EA042-2,,birketsmith1953,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52514,Na11,EA042,Fishing,EA042-2,,hughes1958;hughes1960;moore1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52515,Na12,EA042,Hunting,EA042-3,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52516,Na13,EA042,Fishing,EA042-2,,boas1888;boas190107,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52517,Na14,EA042,Fishing,EA042-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52518,Na15,EA042,Fishing,EA042-2,,helmandlurie1961,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52519,Na16,EA042,Fishing,EA042-2,,osgood1931,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52520,Na17,EA042,Hunting,EA042-3,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52521,Na19,EA042,Two or more sources,EA042-8,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52522,Na2,EA042,Fishing,EA042-2,,chance1966;murdoch1892;spencer1959,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52523,Na20,EA042,Fishing,EA042-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52524,Na21,EA042,Hunting,EA042-3,,birketsmith1929;rasmussen1930,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52525,Na22,EA042,Two or more sources,EA042-8,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52526,Na23,EA042,Fishing,EA042-2,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52527,Na24,EA042,Fishing,EA042-2,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52528,Na25,EA042,Fishing,EA042-2,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52529,Na26,EA042,Fishing,EA042-2,,osgood1933;osgood1937,with special reference to the Iliamna,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52530,Na27,EA042,Hunting,EA042-3,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52531,Na28,EA042,Hunting,EA042-3,,jenness1937,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52532,Na29,EA042,Hunting,EA042-3,,goddard1916,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52533,Na3,EA042,Fishing,EA042-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52534,Na30,EA042,Hunting,EA042-3,,birketsmith1930;macneish1960a;vanstone1965,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52535,Na31,EA042,Hunting,EA042-3,,skinner1912,with special reference to those of Albany and Moose Creek,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52536,Na32,EA042,Hunting,EA042-3,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52537,Na33,EA042,Two or more sources,EA042-8,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52538,Na34,EA042,Two or more sources,EA042-8,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52539,Na35,EA042,Hunting,EA042-3,,cameron1890;grant1890,,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52540,Na36,EA042,Fishing,EA042-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52541,Na37,EA042,Hunting,EA042-3,,landes1937a;landes1937b;landes1938,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52542,Na38,EA042,Fishing,EA042-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52543,Na39,EA042,Fishing,EA042-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52544,Na4,EA042,Fishing,EA042-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52545,Na40,EA042,Hunting,EA042-3,,kinietz1940c;morgan1871,,1650,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52546,Na41,EA042,Hunting,EA042-3,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52547,Na42,EA042,Hunting,EA042-3,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52548,Na43,EA042,Fishing,EA042-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52549,Na44,EA042,Hunting,EA042-3,,graburn1964,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52550,Na45,EA042,Hunting,EA042-3,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52551,Na5,EA042,Hunting,EA042-3,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52552,Na6,EA042,Fishing,EA042-2,,lantis1946,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52553,Na7,EA042,Fishing,EA042-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52554,Na8,EA042,Fishing,EA042-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52555,Na9,EA042,Fishing,EA042-2,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52556,Nb1,EA042,Fishing,EA042-2,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52557,Nb10,EA042,Fishing,EA042-2,,goldman1940;goldman1941,,1865,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52558,Nb11,EA042,Fishing,EA042-2,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52559,Nb12,EA042,Fishing,EA042-2,,barnett1938;barnett1939;barnett1955,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52560,Nb13,EA042,Fishing,EA042-2,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52561,Nb14,EA042,Fishing,EA042-2,,barnett1938;barnett1939;barnett1955,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52562,Nb15,EA042,Fishing,EA042-2,,curtis1912;stern1934;suttles1954,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52563,Nb16,EA042,Fishing,EA042-2,,eells1887b;gunthere1927,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52564,Nb17,EA042,Fishing,EA042-2,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52565,Nb18,EA042,Fishing,EA042-2,,pettitt1950,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52566,Nb19,EA042,Fishing,EA042-2,,ray1938;ray1942,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52567,Nb2,EA042,Fishing,EA042-2,,eells1877;elmendorf1960,Twana Tribe,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52568,Nb20,EA042,Fishing,EA042-2,,barnett1937;boas1923,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52569,Nb21,EA042,Fishing,EA042-2,,barnett1937;jacobs1940,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52570,Nb22,EA042,Fishing,EA042-2,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52571,Nb23,EA042,Fishing,EA042-2,,boas1938;drucker1950;olson1955,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52572,Nb24,EA042,Fishing,EA042-2,,colson1953;swan1868,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52573,Nb25,EA042,Fishing,EA042-2,,olson1936a;willoughby1889,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52574,Nb26,EA042,Fishing,EA042-2,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52575,Nb27,EA042,Fishing,EA042-2,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52576,Nb28,EA042,Fishing,EA042-2,,barnett1937;drucker1939,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52577,Nb29,EA042,Fishing,EA042-2,,barnett1937;frachtenberg1914,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52578,Nb3,EA042,Fishing,EA042-2,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52579,Nb30,EA042,Gathering,EA042-1,,sapir1907,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52580,Nb31,EA042,Fishing,EA042-2,,barnett1937;drucker1936a;dubois1936,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52581,Nb32,EA042,Gathering,EA042-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52582,Nb33,EA042,Gathering,EA042-1,,dixon1910;driver1939,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52583,Nb34,EA042,Fishing,EA042-2,,driver1939;gifford1922[31-33];kroeber1925c,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52584,Nb35,EA042,Fishing,EA042-2,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52585,Nb36,EA042,Fishing,EA042-2,,driver1939;gifford1922[29-30];kroeber1925a,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52586,Nb37,EA042,Fishing,EA042-2,,essene1940;gifford1922,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52587,Nb38,EA042,Hunting,EA042-3,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52588,Nb39,EA042,Gathering,EA042-1,,driver1939;nomland1935,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52589,Nb4,EA042,Fishing,EA042-2,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52590,Nb5,EA042,Fishing,EA042-2,,birketsmithanddelaguna1938,Eyak Tribe,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52591,Nb6,EA042,Two or more sources,EA042-8,,driver1939;drucker1936a;dubois1932,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52592,Nb7,EA042,Fishing,EA042-2,,garfield1939;garfieldetal1951,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52593,Nb8,EA042,Fishing,EA042-2,,lopatin1945;olson1940,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52594,Nb9,EA042,Fishing,EA042-2,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52595,Nc1,EA042,Gathering,EA042-1,,goldschmidt1951,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52596,Nc10,EA042,Hunting,EA042-3,,goldman1940;goldman1941,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52597,Nc11,EA042,Gathering,EA042-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52598,Nc12,EA042,Gathering,EA042-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52599,Nc13,EA042,Gathering,EA042-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52600,Nc14,EA042,Fishing,EA042-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52601,Nc15,EA042,Two or more sources,EA042-8,,driver1939;gifford1939,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52602,Nc16,EA042,Gathering,EA042-1,,foster1944;gifford1922[118-119],,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52603,Nc17,EA042,Gathering,EA042-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52604,Nc18,EA042,Gathering,EA042-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52605,Nc19,EA042,Gathering,EA042-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52606,Nc2,EA042,Gathering,EA042-1,,gifford1917;voegelin1938,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52607,Nc20,EA042,Gathering,EA042-1,,driver1936;gifford1922[115-118];radin1924,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52608,Nc21,EA042,Gathering,EA042-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52609,Nc22,EA042,Gathering,EA042-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52610,Nc23,EA042,Gathering,EA042-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52611,Nc24,EA042,Gathering,EA042-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52612,Nc25,EA042,Gathering,EA042-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52613,Nc26,EA042,Gathering,EA042-1,,harrington1942;mason1912,,1770,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52614,Nc27,EA042,Gathering,EA042-1,,driver1937;gifford1917,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52615,Nc28,EA042,Fishing,EA042-2,,harrington1942;kroeber1925f,,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52616,Nc29,EA042,Two or more sources,EA042-8,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52617,Nc3,EA042,Gathering,EA042-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52618,Nc30,EA042,Gathering,EA042-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52619,Nc31,EA042,Gathering,EA042-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52620,Nc32,EA042,Gathering,EA042-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52621,Nc33,EA042,Gathering,EA042-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52622,Nc34,EA042,Gathering,EA042-1,,meigs1939,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52623,Nc4,EA042,Gathering,EA042-1,,garth1944;garth1953;voegelin1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52624,Nc5,EA042,Gathering,EA042-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52625,Nc6,EA042,Gathering,EA042-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52626,Nc7,EA042,Gathering,EA042-1,,essene1942;foster1944;gifford1922[118-122],,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52627,Nc8,EA042,Fishing,EA042-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52628,Nc9,EA042,Gathering,EA042-1,,ray1963;voegelin1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52629,Nd1,EA042,Fishing,EA042-2,,murdock1958;ray1942,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52630,Nd10,EA042,Fishing,EA042-2,,ray1942;teit1900,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52631,Nd11,EA042,Fishing,EA042-2,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52632,Nd12,EA042,Hunting,EA042-3,,ray1942;teit1930;turneyhigh1937,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52633,Nd13,EA042,Hunting,EA042-3,,ray1942;teit1930,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52634,Nd14,EA042,Hunting,EA042-3,,ray1942;teit1930,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52635,Nd15,EA042,Fishing,EA042-2,,clineetal1938,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52636,Nd16,EA042,Fishing,EA042-2,,ray1942;teit1928,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52637,Nd17,EA042,Fishing,EA042-2,,jacobs1932;ray1942,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52638,Nd18,EA042,Fishing,EA042-2,,spierandsapir1930,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52639,Nd19,EA042,Fishing,EA042-2,,ray1939;ray1942;rigsby1963,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52640,Nd2,EA042,Hunting,EA042-3,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52641,Nd20,EA042,Fishing,EA042-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52642,Nd21,EA042,Gathering,EA042-1,,stewart1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52643,Nd22,EA042,Gathering,EA042-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52644,Nd23,EA042,Gathering,EA042-1,,stewart1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52645,Nd24,EA042,Hunting,EA042-3,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52646,Nd25,EA042,Gathering,EA042-1,,steward1941;stewart1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52647,Nd26,EA042,Gathering,EA042-1,,riddell1960,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52648,Nd27,EA042,Gathering,EA042-1,,park1934;park1937;park1938a;stewart1941,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52649,Nd28,EA042,Gathering,EA042-1,,stewart1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52650,Nd29,EA042,Gathering,EA042-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52651,Nd3,EA042,Intensive agriculture,EA042-7,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52652,Nd30,EA042,Gathering,EA042-1,,driver1937;steward1933,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52653,Nd31,EA042,Gathering,EA042-1,,driver1937;steward1938,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52654,Nd32,EA042,Gathering,EA042-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52655,Nd33,EA042,Gathering,EA042-1,,steward1938;steward1941,including the Belted Range group,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52656,Nd34,EA042,Gathering,EA042-1,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52657,Nd35,EA042,Gathering,EA042-1,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52658,Nd36,EA042,Gathering,EA042-1,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52659,Nd37,EA042,Gathering,EA042-1,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52660,Nd38,EA042,Gathering,EA042-1,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52661,Nd39,EA042,Gathering,EA042-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52662,Nd4,EA042,Fishing,EA042-2,,ray1932;ray1942,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52663,Nd40,EA042,Gathering,EA042-1,,steward1938;steward1943,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52664,Nd41,EA042,Gathering,EA042-1,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52665,Nd42,EA042,Gathering,EA042-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52666,Nd43,EA042,Gathering,EA042-1,,harris1940;steward1941,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52667,Nd44,EA042,Fishing,EA042-2,,steward1938;steward1941,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52668,Nd45,EA042,Hunting,EA042-3,,murphyandmurphy1960;steward1938;steward1943,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52669,Nd46,EA042,Fishing,EA042-2,,lowie1909;steward1938;steward1943,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52670,Nd47,EA042,Hunting,EA042-3,,hultkrantz1957;lowie1909;steward1938,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52671,Nd48,EA042,Gathering,EA042-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52672,Nd49,EA042,Gathering,EA042-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52673,Nd5,EA042,Gathering,EA042-1,,hoebel1939;steward1943,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52674,Nd50,EA042,Gathering,EA042-1,,kelly1964,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52675,Nd51,EA042,Gathering,EA042-1,,lowie1924;watkins1945,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52676,Nd52,EA042,Gathering,EA042-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52677,Nd53,EA042,Gathering,EA042-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52678,Nd54,EA042,Gathering,EA042-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52679,Nd55,EA042,Gathering,EA042-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52680,Nd56,EA042,Gathering,EA042-1,,kelly1964;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52681,Nd57,EA042,Hunting,EA042-3,,steward1938;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52682,Nd58,EA042,Hunting,EA042-3,,gifford1917;lowie1924;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52683,Nd59,EA042,Hunting,EA042-3,,stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52684,Nd6,EA042,Gathering,EA042-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52685,Nd60,EA042,Hunting,EA042-3,,stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52686,Nd61,EA042,Hunting,EA042-3,,stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52687,Nd62,EA042,Hunting,EA042-3,,lowie1924;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52688,Nd63,EA042,Hunting,EA042-3,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52689,Nd64,EA042,Hunting,EA042-3,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52690,Nd65,EA042,Gathering,EA042-1,,drucker1941;kniffenetal1935,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52691,Nd66,EA042,Gathering,EA042-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52692,Nd67,EA042,Gathering,EA042-1,,gifford1936,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52693,Nd7,EA042,Fishing,EA042-2,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52694,Nd8,EA042,Fishing,EA042-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52695,Nd9,EA042,Fishing,EA042-2,,hilltout1905;ray1942;teit1906b,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52696,Ne1,EA042,Hunting,EA042-3,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52697,Ne10,EA042,Intensive agriculture,EA042-7,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52698,Ne11,EA042,Hunting,EA042-3,,denig1930;lowie1910;rodnick1938,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52699,Ne12,EA042,Hunting,EA042-3,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52700,Ne13,EA042,Hunting,EA042-3,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52701,Ne14,EA042,Hunting,EA042-3,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52702,Ne15,EA042,Intensive agriculture,EA042-7,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52703,Ne16,EA042,Fishing,EA042-2,,gatschet1891;schaedel1949,,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52704,Ne17,EA042,Hunting,EA042-3,,lowie1923;mooney1898;richardson1940,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52705,Ne18,EA042,Hunting,EA042-3,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52706,Ne19,EA042,Hunting,EA042-3,,mandelbaum1940;skinner1914a,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52707,Ne2,EA042,Hunting,EA042-3,,mcallister1937,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52708,Ne20,EA042,Hunting,EA042-3,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52709,Ne21,EA042,Hunting,EA042-3,,driverandmassey1957;garcia1760;romneynd,,1760,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52710,Ne3,EA042,Hunting,EA042-3,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52711,Ne4,EA042,Hunting,EA042-3,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52712,Ne5,EA042,Hunting,EA042-3,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52713,Ne6,EA042,Intensive agriculture,EA042-7,,bowers1950;lowie1917a;willandspinden1906,,1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52714,Ne7,EA042,Hunting,EA042-3,,honigmann1956a;jenness1938,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52715,Ne8,EA042,Hunting,EA042-3,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52716,Ne9,EA042,Hunting,EA042-3,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52717,Nf10,EA042,Two or more sources,EA042-8,,morgan1871;skinner1926,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52718,Nf11,EA042,Hunting,EA042-3,,whitman1937,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52719,Nf12,EA042,Hunting,EA042-3,,dorsey1897;howard1965b,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52720,Nf13,EA042,Hunting,EA042-3,,trowbridge1939,with special reference to the Kiskopotha band,1820,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52721,Nf14,EA042,Extensive agriculture,EA042-6,,parsons1941;swanton1942b,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52722,Nf15,EA042,"Agriculture, type unknown",EA042-9,,hockett1938;jones1913;morgan1871,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52723,Nf2,EA042,Two or more sources,EA042-8,,michelson1935;oestreich1948;radin1923,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52724,Nf3,EA042,Two or more sources,EA042-8,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52725,Nf4,EA042,Extensive agriculture,EA042-6,,kinietz1940b;morgan1871,,1720,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52726,Nf5,EA042,Extensive agriculture,EA042-6,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52727,Nf6,EA042,Extensive agriculture,EA042-6,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52728,Nf7,EA042,Two or more sources,EA042-8,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52729,Nf8,EA042,Extensive agriculture,EA042-6,,griffith1954;parson1941;spier1924;swanton1942b,,1770,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52730,Nf9,EA042,Gathering,EA042-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52731,Ng1,EA042,Extensive agriculture,EA042-6,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52732,Ng10,EA042,Extensive agriculture,EA042-6,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52733,Ng11,EA042,Extensive agriculture,EA042-6,,eggan1937a;speck1909;swanton1946,,1750,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52734,Ng12,EA042,Extensive agriculture,EA042-6,,eggan1937a;swanton1931;swanton1946,,1760,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52735,Ng13,EA042,Hunting,EA042-3,,hallowell1926;speck1818;vetromile1866,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52736,Ng14,EA042,"Agriculture, type unknown",EA042-9,,swanton1928b;swanton1946,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52737,Ng15,EA042,"Agriculture, type unknown",EA042-9,,haas1939;swanton1911,,1750,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52738,Ng2,EA042,Missing for at least 1 activity,EA042-NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52739,Ng3,EA042,Extensive agriculture,EA042-6,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52740,Ng4,EA042,Hunting,EA042-3,,speck1918;speck1940,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52741,Ng5,EA042,Extensive agriculture,EA042-6,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52742,Ng6,EA042,Extensive agriculture,EA042-6,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52743,Ng7,EA042,Extensive agriculture,EA042-6,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52744,Ng8,EA042,Extensive agriculture,EA042-6,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52745,Ng9,EA042,Intensive agriculture,EA042-7,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52746,Nh1,EA042,Gathering,EA042-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52747,Nh10,EA042,Intensive agriculture,EA042-7,,parsons1932a;trager1943,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52748,Nh11,EA042,Intensive agriculture,EA042-7,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52749,Nh12,EA042,Intensive agriculture,EA042-7,,gifford1940;white1942,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52750,Nh13,EA042,Intensive agriculture,EA042-7,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52751,Nh14,EA042,Intensive agriculture,EA042-7,,eggan1950;parson1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52752,Nh15,EA042,Two or more sources,EA042-8,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52753,Nh16,EA042,Hunting,EA042-3,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52754,Nh17,EA042,Hunting,EA042-3,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52755,Nh18,EA042,Intensive agriculture,EA042-7,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52756,Nh19,EA042,Intensive agriculture,EA042-7,,drucker1941;gifford1933,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52757,Nh2,EA042,Intensive agriculture,EA042-7,,dozier1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52758,Nh20,EA042,Intensive agriculture,EA042-7,,gifford1931,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52759,Nh21,EA042,Intensive agriculture,EA042-7,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52760,Nh22,EA042,Intensive agriculture,EA042-7,,bee1963;drucker1937;forde1931;halpern1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52761,Nh23,EA042,Gathering,EA042-1,,gifford1932a,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52762,Nh24,EA042,Gathering,EA042-1,,gifford1940;opler1936a,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52763,Nh25,EA042,Intensive agriculture,EA042-7,,hawleyetal1943;stevenson1894;white1962,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52764,Nh26,EA042,"Agriculture, type unknown",EA042-9,,harrington1912;parsons1924;parsons1929,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52765,Nh27,EA042,"Agriculture, type unknown",EA042-9,,white1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52766,Nh3,EA042,Intensive agriculture,EA042-7,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52767,Nh4,EA042,Intensive agriculture,EA042-7,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52768,Nh5,EA042,Gathering,EA042-1,,drucker1941;spier1933,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52769,Nh6,EA042,Intensive agriculture,EA042-7,,parsons1936b;trager1943,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52770,Nh7,EA042,Intensive agriculture,EA042-7,,dumarest1919;goldfrank1927;parsons1932b,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52771,Nh8,EA042,Intensive agriculture,EA042-7,,hawley1964;parsons1925;parsons1932b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52772,Nh9,EA042,Intensive agriculture,EA042-7,,parsons1939;trager1943,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52773,Ni1,EA042,Intensive agriculture,EA042-7,,bennettandzingg1935;passin1943,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52774,Ni2,EA042,Intensive agriculture,EA042-7,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52775,Ni3,EA042,Extensive agriculture,EA042-6,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52776,Ni4,EA042,Fishing,EA042-2,,ascher1962;kroeber1931;mcgee1898,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52777,Ni5,EA042,Gathering,EA042-1,,driveranddriver1963,,1570,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52778,Ni6,EA042,Intensive agriculture,EA042-7,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52779,Ni7,EA042,Intensive agriculture,EA042-7,,beals1943;drucker1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52780,Ni8,EA042,"Agriculture, type unknown",EA042-9,,johnson1950,,1550,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52781,Ni9,EA042,"Agriculture, type unknown",EA042-9,,mason1948;radin1931,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52782,Nj1,EA042,Extensive agriculture,EA042-6,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52783,Nj10,EA042,Extensive agriculture,EA042-6,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52784,Nj11,EA042,"Agriculture, type unknown",EA042-9,,guiterasholmes1948;schuller1927;stresserpeau195253,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52785,Nj12,EA042,"Agriculture, type unknown",EA042-9,,romneyandromney1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52786,Nj13,EA042,"Agriculture, type unknown",EA042-9,,soustelle1937,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52787,Nj14,EA042,"Agriculture, type unknown",EA042-9,,turnerandolmstead1966,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52788,Nj2,EA042,Intensive agriculture,EA042-7,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52789,Nj3,EA042,Extensive agriculture,EA042-6,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52790,Nj4,EA042,Extensive agriculture,EA042-6,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52791,Nj5,EA042,"Agriculture, type unknown",EA042-9,,cowan1946;cowan1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52792,Nj6,EA042,Fishing,EA042-2,,diebold1966,with special reference to San Mateo,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52793,Nj7,EA042,Extensive agriculture,EA042-6,,beals1945,with special reference to Ayutla,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52794,Nj8,EA042,Intensive agriculture,EA042-7,,foster1948,,1500,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52795,Nj9,EA042,Extensive agriculture,EA042-6,,nutini1962;nutini1965,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52796,Sa1,EA042,Extensive agriculture,EA042-6,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52797,Sa10,EA042,Extensive agriculture,EA042-6,,baerandbaer1949;tozzer1907,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52798,Sa11,EA042,"Agriculture, type unknown",EA042-9,,stoll1889,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52799,Sa12,EA042,Extensive agriculture,EA042-6,,stone1948,,1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52800,Sa13,EA042,Extensive agriculture,EA042-6,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52801,Sa14,EA042,"Agriculture, type unknown",EA042-9,,alphonse1956;johnson1938,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52802,Sa15,EA042,"Agriculture, type unknown",EA042-9,,lafargeandbyers1931,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52803,Sa16,EA042,"Agriculture, type unknown",EA042-9,,hagen1943;kirchhoff1948a,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52804,Sa17,EA042,"Agriculture, type unknown",EA042-9,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52805,Sa2,EA042,"Agriculture, type unknown",EA042-9,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52806,Sa3,EA042,Extensive agriculture,EA042-6,,wisdom1940,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52807,Sa4,EA042,Extensive agriculture,EA042-6,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52808,Sa5,EA042,Extensive agriculture,EA042-6,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52809,Sa6,EA042,Extensive agriculture,EA042-6,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52810,Sa7,EA042,Extensive agriculture,EA042-6,,solien1960a;solien1960b;taylor1951,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52811,Sa8,EA042,Extensive agriculture,EA042-6,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52812,Sa9,EA042,Gathering,EA042-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52813,Sb1,EA042,Fishing,EA042-2,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52814,Sb2,EA042,Extensive agriculture,EA042-6,,park1946;reicheldolmatoff194951,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52815,Sb3,EA042,Gathering,EA042-1,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52816,Sb4,EA042,Extensive agriculture,EA042-6,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52817,Sb5,EA042,Fishing,EA042-2,,jahn1914;wilbert1959c,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52818,Sb6,EA042,Pastoralism,EA042-4,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52819,Sb7,EA042,Extensive agriculture,EA042-6,,wilbert1961b,with special reference to the Pariri,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52820,Sb8,EA042,Intensive agriculture,EA042-7,,rouse1948a,,1520,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52821,Sb9,EA042,Intensive agriculture,EA042-7,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52822,Sc1,EA042,Gathering,EA042-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52823,Sc10,EA042,Extensive agriculture,EA042-6,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52824,Sc11,EA042,Extensive agriculture,EA042-6,,simpson1940b;wilbert1961a,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52825,Sc12,EA042,Extensive agriculture,EA042-6,,farabee1924;kirchhoff1931,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52826,Sc13,EA042,Extensive agriculture,EA042-6,,riley1954;wilbert1959a;wilbert1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52827,Sc14,EA042,"Agriculture, type unknown",EA042-9,,coudreau1893,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52828,Sc15,EA042,Extensive agriculture,EA042-6,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52829,Sc16,EA042,Two or more sources,EA042-8,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52830,Sc17,EA042,Extensive agriculture,EA042-6,,wilbert1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52831,Sc18,EA042,Extensive agriculture,EA042-6,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52832,Sc2,EA042,Extensive agriculture,EA042-6,,leedsnd,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52833,Sc3,EA042,Extensive agriculture,EA042-6,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52834,Sc4,EA042,Extensive agriculture,EA042-6,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52835,Sc5,EA042,Extensive agriculture,EA042-6,,farabee1918,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52836,Sc6,EA042,Extensive agriculture,EA042-6,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52837,Sc7,EA042,Extensive agriculture,EA042-6,,wilbert1959b,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52838,Sc8,EA042,Hunting,EA042-3,,wilbert1958a;wilbert1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52839,Sc9,EA042,Extensive agriculture,EA042-6,,wilbert1960a;wilbert1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52840,Sd1,EA042,Extensive agriculture,EA042-6,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52841,Sd2,EA042,Extensive agriculture,EA042-6,,wagley1943;wagleyandgalvao1948a,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52842,Sd3,EA042,Extensive agriculture,EA042-6,,nimuendaju1926,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52843,Sd4,EA042,Two or more sources,EA042-8,,barker1953;zerries1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52844,Sd5,EA042,Extensive agriculture,EA042-6,,lecock1964;nimuendaju1948,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52845,Sd6,EA042,Hunting,EA042-3,,migliazza1964,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52846,Sd7,EA042,Extensive agriculture,EA042-6,,fock1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52847,Sd8,EA042,Hunting,EA042-3,,wilbert1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52848,Sd9,EA042,Extensive agriculture,EA042-6,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52849,Se1,EA042,Hunting,EA042-3,,holmberg1950,Vicinity of the Rio Blanco,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52850,Se10,EA042,Fishing,EA042-2,,espinosa1935;metraux1948b;tessmann1930,,1670,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52851,Se11,EA042,Extensive agriculture,EA042-6,,prost1965,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52852,Se12,EA042,"Agriculture, type unknown",EA042-9,,fulop1955,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52853,Se2,EA042,Two or more sources,EA042-8,,leeds1961;nimenuendaju1952,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52854,Se3,EA042,Extensive agriculture,EA042-6,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52855,Se4,EA042,Hunting,EA042-3,,fejos1943,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52856,Se5,EA042,Extensive agriculture,EA042-6,,goldman1948;goldman1963,Village on Caduiari River,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52857,Se6,EA042,Extensive agriculture,EA042-6,,murdock1936b;tessmann1930;whitten1915,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52858,Se7,EA042,"Agriculture, type unknown",EA042-9,,heath1959,a mestizo group in lowland Bolivia,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52859,Se8,EA042,Extensive agriculture,EA042-6,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52860,Se9,EA042,Fishing,EA042-2,,stcricq1853;stewardandmetraux1948a,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52861,Sf1,EA042,Intensive agriculture,EA042-7,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52862,Sf2,EA042,Extensive agriculture,EA042-6,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52863,Sf3,EA042,Extensive agriculture,EA042-6,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52864,Sf4,EA042,Extensive agriculture,EA042-6,,rochereau1919;rochereau1961;wilbert1960b,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52865,Sf5,EA042,Intensive agriculture,EA042-7,,bernalvilla1954;pittierdefabrega1907,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52866,Sf6,EA042,Intensive agriculture,EA042-7,,ghisletti1954;kroeber1946;restrepo1895,,1540,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52867,Sf7,EA042,Extensive agriculture,EA042-6,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52868,Sf8,EA042,"Agriculture, type unknown",EA042-9,,matteson1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52869,Sf9,EA042,Fishing,EA042-2,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52870,Sg1,EA042,Fishing,EA042-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52871,Sg2,EA042,Intensive agriculture,EA042-7,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52872,Sg3,EA042,Hunting,EA042-3,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52873,Sg4,EA042,Hunting,EA042-3,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52874,Sg5,EA042,Fishing,EA042-2,,bird1946;cooper1917,with special reference to the southern bands,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52875,Sh1,EA042,Fishing,EA042-2,,karsten1932;pelleschi1896,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52876,Sh2,EA042,Two or more sources,EA042-8,,oberg1948a;oberg1949,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52877,Sh3,EA042,Hunting,EA042-3,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52878,Sh4,EA042,Hunting,EA042-3,,oberg1949,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52879,Sh5,EA042,Gathering,EA042-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52880,Sh6,EA042,Gathering,EA042-1,,baldus1931;boggiani1894,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52881,Sh7,EA042,Extensive agriculture,EA042-6,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52882,Sh8,EA042,Two or more sources,EA042-8,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52883,Sh9,EA042,Hunting,EA042-3,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52884,Si1,EA042,Hunting,EA042-3,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52885,Si10,EA042,Extensive agriculture,EA042-6,,carneiro1958;carneiroanddole1957;dole1958,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52886,Si2,EA042,Extensive agriculture,EA042-6,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52887,Si3,EA042,Extensive agriculture,EA042-6,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52888,Si4,EA042,Gathering,EA042-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52889,Si5,EA042,Extensive agriculture,EA042-6,,oberg1953[1-144],,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52890,Si6,EA042,Gathering,EA042-1,,schmidt1905;schmidt1942,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52891,Si7,EA042,Extensive agriculture,EA042-6,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52892,Si8,EA042,Extensive agriculture,EA042-6,,oberg1953[1-144],,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52893,Si9,EA042,"Agriculture, type unknown",EA042-9,,levistrauss1948c;oberg1953[1-144],,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52894,Sj1,EA042,Fishing,EA042-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52895,Sj10,EA042,Extensive agriculture,EA042-6,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52896,Sj11,EA042,Gathering,EA042-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52897,Sj2,EA042,Extensive agriculture,EA042-6,,nimuendaju1942,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52898,Sj3,EA042,Hunting,EA042-3,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52899,Sj4,EA042,Extensive agriculture,EA042-6,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52900,Sj5,EA042,Gathering,EA042-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52901,Sj6,EA042,Extensive agriculture,EA042-6,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +52902,Sj7,EA042,Extensive agriculture,EA042-6,,mayburylewis1960;nimuendaju1939,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52903,Sj8,EA042,Extensive agriculture,EA042-6,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52904,Sj9,EA042,Extensive agriculture,EA042-6,,dreyfus1963;krause1911;soatesdiniz1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52905,ch12,EA042,Two or more sources,EA042-8,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52906,ch13,EA042,Intensive agriculture,EA042-7,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52907,ch14,EA042,Intensive agriculture,EA042-7,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52908,ch15,EA042,Intensive agriculture,EA042-7,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52909,ch16,EA042,Intensive agriculture,EA042-7,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52910,ch17,EA042,Intensive agriculture,EA042-7,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52911,ch18,EA042,Intensive agriculture,EA042-7,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52912,ch19,EA042,Two or more sources,EA042-8,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52913,ch20,EA042,Intensive agriculture,EA042-7,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52914,ch21,EA042,Intensive agriculture,EA042-7,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52915,ch22,EA042,Extensive agriculture,EA042-6,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52916,ch23,EA042,Extensive agriculture,EA042-6,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52917,ch24,EA042,Fishing,EA042-2,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52918,ch25,EA042,Intensive agriculture,EA042-7,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52919,ch26,EA042,Intensive agriculture,EA042-7,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52920,ch27,EA042,Intensive agriculture,EA042-7,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52921,ch28,EA042,Intensive agriculture,EA042-7,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52922,ec12,EA042,Hunting,EA042-3,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52923,ec13,EA042,Fishing,EA042-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52924,ec14,EA042,Fishing,EA042-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52925,ec15,EA042,Fishing,EA042-2,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52926,ec16,EA042,Hunting,EA042-3,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52927,ec17,EA042,Fishing,EA042-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52928,ec18,EA042,Fishing,EA042-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52929,ec19,EA042,Fishing,EA042-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52930,ec20,EA042,Fishing,EA042-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52931,ec21,EA042,Two or more sources,EA042-8,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52932,Aa1,EA043,Bilateral,EA043-6,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52933,Aa2,EA043,Patrilineal,EA043-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52934,Aa3,EA043,Patrilineal,EA043-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52935,Aa4,EA043,Bilateral,EA043-6,,lebzelter1934;schmidt1930;vedder1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52936,Aa5,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA017: Entry follows Schebesta; Czekanowski denies unilineal descent groups; variable EA021: Entry follows Schebesta; Czekanowski reports bilateral (inferred) (code ""1"")",deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52937,Aa6,EA043,Patrilineal,EA043-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52938,Aa7,EA043,Bilateral,EA043-6,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52939,Aa8,EA043,Bilateral,EA043-6,,barrow180104;bleek1924b;fritsch1872,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52940,Aa9,EA043,Bilateral,EA043-6,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52941,Ab1,EA043,Duolateral,EA043-2,,irle1906;vedder1928,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52942,Ab10,EA043,Patrilineal,EA043-1,,hunter1936,,1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52943,Ab11,EA043,Patrilineal,EA043-1,,borwnlee1927;kropf1889;soga1932,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52944,Ab12,EA043,Patrilineal,EA043-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52945,Ab13,EA043,Quasi-lineages,EA043-4,"See related comment(s) by Murdock: variable EA017, EA019: Quasi-lineages inferred from the patrilocal but basically territorial ward organization and from vestigial patrisibs",brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52946,Ab14,EA043,Patrilineal,EA043-1,,krigeandkrige1943,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52947,Ab15,EA043,Patrilineal,EA043-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52948,Ab16,EA043,Patrilineal,EA043-1,,earthy1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52949,Ab17,EA043,Duolateral,EA043-2,,boas1922;dossantos1901;herskovits1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52950,Ab18,EA043,Mixed,EA043-7,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52951,Ab19,EA043,Matrilineal,EA043-3,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52952,Ab2,EA043,Patrilineal,EA043-1,,kuper1950;kuper1974;marwick1940,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52953,Ab20,EA043,Matrilineal,EA043-3,,wunenberger1888,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52954,Ab21a,EA043,Patrilineal,EA043-1,,magyar1859;mattenklodt1944,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52955,Ab21b,EA043,Patrilineal,EA043-1,,cook1931,,1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52956,Ab22,EA043,Patrilineal,EA043-1,,junod1936,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52957,Ab3,EA043,Ambilineal,EA043-5,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52958,Ab4,EA043,Patrilineal,EA043-1,,junod1927,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52959,Ab5,EA043,Duolateral,EA043-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52960,Ab6,EA043,Duolateral,EA043-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52961,Ab7,EA043,Matrilineal,EA043-3,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52962,Ab8,EA043,Patrilineal,EA043-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52963,Ab9,EA043,Patrilineal,EA043-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52964,Ac1,EA043,Duolateral,EA043-2,,smithanddale1920;tudennd,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52965,Ac10,EA043,Matrilineal,EA043-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52966,Ac11,EA043,Matrilineal,EA043-3,,mcculloch1951;white1955,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52967,Ac12,EA043,Matrilineal,EA043-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52968,Ac13,EA043,Matrilineal,EA043-3,,tew1950;velsen1964,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52969,Ac14,EA043,Matrilineal,EA043-3,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52970,Ac15,EA043,Matrilineal,EA043-3,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52971,Ac16,EA043,Matrilineal,EA043-3,,balandier1952;maclatchy1945,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52972,Ac17,EA043,Matrilineal,EA043-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52973,Ac18,EA043,Matrilineal,EA043-3,,even1931;hutereau1910b;laman1953;soret1959,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52974,Ac19,EA043,Matrilineal,EA043-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52975,Ac2,EA043,Matrilineal,EA043-3,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52976,Ac20,EA043,Matrilineal,EA043-3,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52977,Ac21,EA043,Matrilineal,EA043-3,,decker1942;torday1910;weekx1937,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52978,Ac22,EA043,Matrilineal,EA043-3,,mertens1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52979,Ac23,EA043,Matrilineal,EA043-3,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52980,Ac24,EA043,Matrilineal,EA043-3,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52981,Ac25,EA043,Matrilineal,EA043-3,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52982,Ac26,EA043,Matrilineal,EA043-3,,beaucorps1933;tordayandjoyce1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52983,Ac27,EA043,Matrilineal,EA043-3,,baumann1935;mcculloch1951,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52984,Ac28,EA043,Matrilineal,EA043-3,,baumann1935;mcculloch1951,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52985,Ac29,EA043,Matrilineal,EA043-3,,brau1942,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52986,Ac3,EA043,Mixed,EA043-7,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52987,Ac30,EA043,Matrilineal,EA043-3,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52988,Ac31,EA043,Matrilineal,EA043-3,,colle1913,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52989,Ac32,EA043,Matrilineal,EA043-3,,melland1923;watson1954a,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52990,Ac33,EA043,Matrilineal,EA043-3,,lambo1946;munday1941;whiteley1951,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52991,Ac34,EA043,Matrilineal,EA043-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52992,Ac35,EA043,Matrilineal,EA043-3,,brohez1905;marchal1935,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52993,Ac36,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017: Formerly 'none' (code ""1""); variable EA019: Formerly sibs (code ""4"")",sanderson1923;tew1950;young1931,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52994,Ac37,EA043,Matrilineal,EA043-3,,bruwer1958,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52995,Ac38,EA043,Matrilineal,EA043-3,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52996,Ac39,EA043,Matrilineal,EA043-3,,johnson1922;tew1950,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52997,Ac4,EA043,Matrilineal,EA043-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52998,Ac40,EA043,Matrilineal,EA043-3,,maugham1910;menteirolopez1906;schebesta1926,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +52999,Ac41,EA043,Matrilineal,EA043-3,,behr1893;weule1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53000,Ac42,EA043,Matrilineal,EA043-3,,tew1950;weule1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53001,Ac43,EA043,Patrilineal,EA043-1,,watson1954b;willis1966,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53002,Ac5,EA043,Matrilineal,EA043-3,,doke1931;mitchellandbarnes1950,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53003,Ac6,EA043,Matrilineal,EA043-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53004,Ac7,EA043,Matrilineal,EA043-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53005,Ac8,EA043,Matrilineal,EA043-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53006,Ac9,EA043,Quasi-lineages,EA043-4,See related comment(s) by Murdock: variable EA021: There are vestigial patrisibs,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53007,Ad1,EA043,Patrilineal,EA043-1,,grottanelli1955,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53008,Ad10,EA043,Patrilineal,EA043-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53009,Ad11,EA043,Mixed,EA043-7,,culwickandculwick1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53010,Ad12,EA043,Patrilineal,EA043-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53011,Ad13,EA043,Patrilineal,EA043-1,,edel1937;edel1957;taylor1962,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53012,Ad14,EA043,Matrilineal,EA043-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53013,Ad15,EA043,Patrilineal,EA043-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53014,Ad16,EA043,Patrilineal,EA043-1,,mackenzie1925;sanderson1923;tew1950,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53015,Ad17,EA043,Patrilineal,EA043-1,,kootzkretschmer192629,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53016,Ad18,EA043,Patrilineal,EA043-1,,avon191516;majerus191516,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53017,Ad19,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: Uncertain since succession is reported to be matrilineal,fromm1912;popplewell1937;willis1966,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53018,Ad2,EA043,Patrilineal,EA043-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53019,Ad20,EA043,Ambilineal,EA043-5,,blohm193133;bosch1930;spellig1927,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53020,Ad21,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017, EA019: ""A man belongs to the kin group (uluko) of his father's father or his son's son, but not to that of his father or of his son (who both belong to another uluko). There is perpetual alternation of two uluko-names in each patrilineage.""",maurice193538,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53021,Ad22,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA017, EA021: The incompletely exogamous patrisibs are better classed as ramages since affiliation is to a considerable extent ambilineal",abrahams1967;cory1953;malcolm1953,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53022,Ad23,EA043,Patrilineal,EA043-1,,heese1913;mumford1934,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53023,Ad24,EA043,Patrilineal,EA043-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53024,Ad25,EA043,Matrilineal,EA043-3,,baumstark1900;gray1953;kannenberg1900,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53025,Ad26,EA043,Patrilineal,EA043-1,,sick1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53026,Ad27,EA043,Matrilineal,EA043-3,,picarda1886;reidelman1967,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53027,Ad28,EA043,Matrilineal,EA043-3,,baumann1891;beidelman1967;picarda1886,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53028,Ad29,EA043,Ambilineal,EA043-5,See related comment(s) by Murdock: variable EA021: But with patrilineal bias,ingrams1930;prins1961,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53029,Ad3,EA043,Patrilineal,EA043-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53030,Ad30,EA043,Duolateral,EA043-2,,baumann1891;prins1952;stpaulhilaire1895,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53031,Ad31,EA043,Duolateral,EA043-2,,prins1952;werner1915,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53032,Ad32,EA043,Patrilineal,EA043-1,,barrett1911b;johnstone1902;princs1952,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53033,Ad33,EA043,Patrilineal,EA043-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53034,Ad34,EA043,Patrilineal,EA043-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53035,Ad35,EA043,Patrilineal,EA043-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53036,Ad36,EA043,Patrilineal,EA043-1,,baumann1891;storch1895,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53037,Ad37,EA043,Patrilineal,EA043-1,,bostock1950;prins1950;prins1952,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53038,Ad38,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017, EA021: Inferential from distributional evidence",paterson1956;paulssen1914;thorntonandrounce1936,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53039,Ad39,EA043,Patrilineal,EA043-1,,gray1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53040,Ad4,EA043,Patrilineal,EA043-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53041,Ad40,EA043,Patrilineal,EA043-1,,sangree1965,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53042,Ad41,EA043,Patrilineal,EA043-1,,wagner1939;wagner1940;wagner194950,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53043,Ad42,EA043,Patrilineal,EA043-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53044,Ad43,EA043,Patrilineal,EA043-1,,hurel1911,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53045,Ad44,EA043,Patrilineal,EA043-1,,czekanowski1924[358-399];taylor1962,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53046,Ad45,EA043,Mixed,EA043-7,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53047,Ad46,EA043,Patrilineal,EA043-1,,fallers1956;fallers1960;roscoe1915,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53048,Ad47,EA043,Patrilineal,EA043-1,,abrahams1967;blohm193133;desoignies1903,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53049,Ad48,EA043,Patrilineal,EA043-1,,taylor1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53050,Ad49,EA043,Patrilineal,EA043-1,,taylor1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53051,Ad5,EA043,Duolateral,EA043-2,,graynd,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53052,Ad50,EA043,Matrilineal,EA043-3,,beidelman1967,with special reference to the Mountain Kaguru,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53053,Ad51,EA043,Matrilineal,EA043-3,,beidelman1967;mcvicar1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53054,Ad6,EA043,Mixed,EA043-7,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53055,Ad7,EA043,Patrilineal,EA043-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53056,Ad8,EA043,Patrilineal,EA043-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53057,Ad9,EA043,Patrilineal,EA043-1,,lafontaine1959;roscoe1915,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53058,Ae1,EA043,Patrilineal,EA043-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53059,Ae10,EA043,Patrilineal,EA043-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53060,Ae11,EA043,Patrilineal,EA043-1,,delhaise1909a,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53061,Ae12,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA019: Matrilineal descent was formerly recognized,ardener1956;brutsch1950;buchner1887,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53062,Ae13,EA043,Patrilineal,EA043-1,,colle1921;colle1922a;colle1922b;roy192425,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53063,Ae14,EA043,Patrilineal,EA043-1,,hertefeltetal1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53064,Ae15,EA043,Patrilineal,EA043-1,,schumacher1949;viaene1951;viaene1952,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53065,Ae16,EA043,Patrilineal,EA043-1,,lietard1929;vervaecke1910;wissmannetal1888,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53066,Ae17,EA043,Patrilineal,EA043-1,,delhaise1909b;salmon1953,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53067,Ae18,EA043,Patrilineal,EA043-1,,tordayandjoyce1922;vanoverbergh1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53068,Ae19,EA043,Patrilineal,EA043-1,,grevisse193738,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53069,Ae2,EA043,Duolateral,EA043-2,,ardener1956;leuschner1903,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53070,Ae20,EA043,Patrilineal,EA043-1,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53071,Ae21,EA043,Patrilineal,EA043-1,,empain1922;tordayandjoyce1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53072,Ae22,EA043,Patrilineal,EA043-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53073,Ae23,EA043,Patrilineal,EA043-1,,maes1934;rijek1937;vanderkerken1944,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53074,Ae24,EA043,Patrilineal,EA043-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53075,Ae25,EA043,Patrilineal,EA043-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53076,Ae26,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: Patrilineal descent is inferential,torday1911;tordayandjoyce1922,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53077,Ae27,EA043,Patrilineal,EA043-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53078,Ae28,EA043,Patrilineal,EA043-1,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53079,Ae29,EA043,Patrilineal,EA043-1,,hutereau1910a;lindemann1906,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53080,Ae3,EA043,Patrilineal,EA043-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53081,Ae30,EA043,Patrilineal,EA043-1,,czekanowski1924[327-357];vangeluwe1956,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53082,Ae31,EA043,Patrilineal,EA043-1,,czekanowski1924[282-297];vangeluwe1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53083,Ae32,EA043,Patrilineal,EA043-1,,vangeluwe1956,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53084,Ae33,EA043,Patrilineal,EA043-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53085,Ae34,EA043,Patrilineal,EA043-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53086,Ae35,EA043,Patrilineal,EA043-1,,maes1909;vangeluwe1956,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53087,Ae36,EA043,Patrilineal,EA043-1,,verbeke1928,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53088,Ae37,EA043,Patrilineal,EA043-1,,soupart1938;vandenbergh1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53089,Ae38,EA043,Matrilineal,EA043-3,,wijnant192526,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53090,Ae39,EA043,Patrilineal,EA043-1,,burssens1958;wolfe1961;wolfe1965,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53091,Ae4,EA043,Duolateral,EA043-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53092,Ae40,EA043,Duolateral,EA043-2,,allys1930;koch1913,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53093,Ae41,EA043,Patrilineal,EA043-1,,andersson1953,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53094,Ae42,EA043,Patrilineal,EA043-1,,conradt1902;dugast1949,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53095,Ae43,EA043,Patrilineal,EA043-1,,burel1910;koch1913,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53096,Ae44,EA043,?,EA043-NA,"See related comment(s) by Murdock: variables EA017, EA019, EA021: Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888;gildelgado1949;tessmann1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53097,Ae45,EA043,Patrilineal,EA043-1,,bufe1913;lessner1904,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53098,Ae46,EA043,Matrilineal,EA043-3,,allegret1927;burton1876;duchaillu1861,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53099,Ae47,EA043,Patrilineal,EA043-1,,oertzen1903;zeller1885,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53100,Ae48,EA043,Patrilineal,EA043-1,,mccullochetal1954;tessmann1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53101,Ae49,EA043,Patrilineal,EA043-1,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53102,Ae5,EA043,Patrilineal,EA043-1,,egerton1939;mccullochetal1954,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53103,Ae50,EA043,Patrilineal,EA043-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53104,Ae51,EA043,Patrilineal,EA043-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53105,Ae52,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017, EA019: But descent is matrilineal in the extreme south, adjacent to the Kom",kaberry1952;mccullochetal1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53106,Ae53,EA043,Patrilineal,EA043-1,,nicol1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53107,Ae54,EA043,Matrilineal,EA043-3,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53108,Ae55,EA043,Patrilineal,EA043-1,,kaberry1952;mccullochetal1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53109,Ae56,EA043,Patrilineal,EA043-1,,kaberry1952;mccullochetal1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53110,Ae57,EA043,Patrilineal,EA043-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53111,Ae58,EA043,Patrilineal,EA043-1,,thorbecke1916;thorbeckeandthorbecke1919,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53112,Ae59,EA043,Patrilineal,EA043-1,,kaberry1952,with special reference to the Ngie subtribe,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53113,Ae6,EA043,Patrilineal,EA043-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53114,Ae7,EA043,Patrilineal,EA043-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53115,Ae8,EA043,Patrilineal,EA043-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53116,Ae9,EA043,Patrilineal,EA043-1,,kaberry1952;mccullochetal1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53117,Af1,EA043,Patrilineal,EA043-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53118,Af10,EA043,Patrilineal,EA043-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53119,Af11,EA043,Patrilineal,EA043-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53120,Af12,EA043,Matrilineal,EA043-3,See related comment(s) by Murdock: variable EA017: Patrilineages (ntoro groups) formerly existed but are now extinct,field1949;mead1937a,with special reference to the Kwahu,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53121,Af13,EA043,Patrilineal,EA043-1,,brown1955;wilsonhaffenden1930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53122,Af14,EA043,Matrilineal,EA043-3,"See related comment(s) by Murdock: variable EA019, EA021: From a recent report, matrilineages have apparently become converted into ambilineal ramages",hall1938;mcculloch1950;thomas1916,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53123,Af15,EA043,Patrilineal,EA043-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53124,Af16,EA043,Patrilineal,EA043-1,,ruel1956;schuster1914;staschewski1917,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53125,Af17,EA043,?,EA043-NA,"See related comment(s) by Murdock: variables EA017, EA019, EA021: The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families",mansfeld1908;talbot1926,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53126,Af18,EA043,Patrilineal,EA043-1,,bystrom1954;talbot1912,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53127,Af19,EA043,Patrilineal,EA043-1,,fordeandjones1950;simmons1957;simmons1960,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53128,Af2,EA043,Patrilineal,EA043-1,,neel1913;paulme1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53129,Af20,EA043,Patrilineal,EA043-1,,fordeandjones1950;talbot1915;talbot1923,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53130,Af21,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA017, EA019: The so-called ""houses"" are presumably ramages rather than patrilineages in view of the reported avunculocal residence and matrilineal affiliation in cases where only a token bride-price is paid",granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53131,Af22,EA043,Mixed,EA043-7,,lloyd1957;omoneukanrin1942,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53132,Af23,EA043,Duolateral,EA043-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53133,Af24,EA043,Patrilineal,EA043-1,,bradbury1957;roth1903;thomas1910,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53134,Af25,EA043,Patrilineal,EA043-1,,bradbury1957;welch1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53135,Af26,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA021: Descent is ambilineal, depending mainly on the mode of marriage",bradbury1957;thomas1910,with special reference to the Etsako,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53136,Af27,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: But formerly children by other than an exchange wife belonged to their mother's kin group,fordeetal1955;tschudi1956,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53137,Af28,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: But Gunn and Conant suspect ambilineal descent,gunnandconant1960,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53138,Af29,EA043,Patrilineal,EA043-1,,armstrong1954;fordeetal1955;temple1922,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53139,Af3,EA043,Duolateral,EA043-2,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53140,Af30,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: Inferential rather than attested,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53141,Af31,EA043,Patrilineal,EA043-1,,gunnandconant1960,with special reference to the Lafia,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53142,Af32,EA043,Patrilineal,EA043-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53143,Af33,EA043,Patrilineal,EA043-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53144,Af34,EA043,Patrilineal,EA043-1,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53145,Af35,EA043,Duolateral,EA043-2,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53146,Af36,EA043,Patrilineal,EA043-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53147,Af37,EA043,Patrilineal,EA043-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53148,Af38,EA043,Matrilineal,EA043-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53149,Af39,EA043,Matrilineal,EA043-3,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53150,Af4,EA043,Duolateral,EA043-2,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53151,Af40,EA043,Matrilineal,EA043-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53152,Af41,EA043,?,EA043-NA,"See related comment(s) by Murdock: variable EA017, EA019: There are lineages, formerly matrilineal but more recently patrilineal",crosson1900;dreyfus1900;vincenti1922,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53153,Af42,EA043,Duolateral,EA043-2,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53154,Af43,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA019: But Daniell reports exogamy (code ""2"")",daniell1856;field1937;field1940;manoukian1950,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53155,Af44,EA043,Matrilineal,EA043-3,,clozelandvillamur1902,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53156,Af45,EA043,Matrilineal,EA043-3,,clozelandvillamur1902;grivot1942,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53157,Af46,EA043,Patrilineal,EA043-1,,clozelandvillamur1902;coutouly1920,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53158,Af47,EA043,Patrilineal,EA043-1,,beckerdonner1944;schwab1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53159,Af48,EA043,Patrilineal,EA043-1,,wilson1856,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53160,Af49,EA043,Patrilineal,EA043-1,,schwab1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53161,Af5,EA043,Patrilineal,EA043-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53162,Af50,EA043,Patrilineal,EA043-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53163,Af51,EA043,Patrilineal,EA043-1,,tauxier1924a,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53164,Af52,EA043,Patrilineal,EA043-1,,tauxier1924a,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53165,Af53,EA043,Patrilineal,EA043-1,,holas1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53166,Af54,EA043,Patrilineal,EA043-1,,germann1933;schwab1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53167,Af55,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017, EA021: Since children are affiliated with the mother's group in cases of uxorilocal residence, descent groups are in a measure ambilineal",dazevedo1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53168,Af56,EA043,Patrilineal,EA043-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53169,Af57,EA043,Patrilineal,EA043-1,,langley1939;mcculloch1950;thomas1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53170,Af58,EA043,Patrilineal,EA043-1,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53171,Af6,EA043,Mixed,EA043-7,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53172,Af7,EA043,Patrilineal,EA043-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53173,Af8,EA043,Patrilineal,EA043-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53174,Af9,EA043,Matrilineal,EA043-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53175,Ag1,EA043,Patrilineal,EA043-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53176,Ag10,EA043,Patrilineal,EA043-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53177,Ag11,EA043,Matrilineal,EA043-3,,charles1911;haumant1929;labouret1931,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53178,Ag12,EA043,Duolateral,EA043-2,,manoukian1952b;rattray1932;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53179,Ag13,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA019: But witchcraft powers are matrilineally transmitted,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53180,Ag14,EA043,Patrilineal,EA043-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53181,Ag15,EA043,Patrilineal,EA043-1,,bernatzik1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53182,Ag16,EA043,Patrilineal,EA043-1,,bernatzik1933;nogueira1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53183,Ag17,EA043,Patrilineal,EA043-1,,gomes1946,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53184,Ag18,EA043,Matrilineal,EA043-3,,bernatzik1933;bernatzik1944;santoslima1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53185,Ag19,EA043,Patrilineal,EA043-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53186,Ag2,EA043,Patrilineal,EA043-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53187,Ag20,EA043,Patrilineal,EA043-1,,bernatzik1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53188,Ag21,EA043,Matrilineal,EA043-3,,lestrange1950,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53189,Ag22,EA043,Duolateral,EA043-2,See related comment(s) by Murdock: variable EA017: But patrilineal exogamy extends only to second cousins,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53190,Ag23,EA043,Patrilineal,EA043-1,,monteil1915,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53191,Ag24,EA043,Patrilineal,EA043-1,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53192,Ag25,EA043,Patrilineal,EA043-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53193,Ag26,EA043,Patrilineal,EA043-1,,anonymous1939a;aubert1936;thomas1916,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53194,Ag27,EA043,Patrilineal,EA043-1,,tauxier1912;tauxier1921,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53195,Ag28,EA043,?,EA043-NA,,,,,, +53196,Ag29,EA043,Patrilineal,EA043-1,,tauxier1917,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53197,Ag3,EA043,Patrilineal,EA043-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53198,Ag30,EA043,Patrilineal,EA043-1,,cremer192427;guebhard1911;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53199,Ag31,EA043,Patrilineal,EA043-1,,cheron1913;holas1957,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53200,Ag32,EA043,Patrilineal,EA043-1,,delafosse190809;holas1957;vendeix1935,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53201,Ag33,EA043,?,EA043-NA,,,,,, +53202,Ag34,EA043,Matrilineal,EA043-3,,labouret1931;tauxier1931,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53203,Ag35,EA043,Matrilineal,EA043-3,,tauxier1921,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53204,Ag36,EA043,Duolateral,EA043-2,,goody1956;goody1958,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53205,Ag37,EA043,Patrilineal,EA043-1,,rattray1932;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53206,Ag38,EA043,Duolateral,EA043-2,,rattray1932;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53207,Ag39,EA043,Duolateral,EA043-2,,labouret1920;rattray1932;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53208,Ag4,EA043,Duolateral,EA043-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53209,Ag40,EA043,Duolateral,EA043-2,,rattray1932;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53210,Ag41,EA043,Duolateral,EA043-2,,manoukian1952b;rattray1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53211,Ag42,EA043,Patrilineal,EA043-1,,tauxier1912;tauxier1924b,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53212,Ag43,EA043,Patrilineal,EA043-1,,rattray1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53213,Ag44,EA043,Duolateral,EA043-2,See related comment(s) by Murdock: variable EA021: There are exogamous ramages in the chiefly class,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53214,Ag45,EA043,Patrilineal,EA043-1,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53215,Ag46,EA043,Duolateral,EA043-2,,manoukian1952b;rattray1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53216,Ag47,EA043,Patrilineal,EA043-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53217,Ag48,EA043,Patrilineal,EA043-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53218,Ag49,EA043,Patrilineal,EA043-1,,froelich1949a;froelichetal1963;puig1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53219,Ag5,EA043,Duolateral,EA043-2,,goody1956;labouret1931;rattray1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53220,Ag50,EA043,Patrilineal,EA043-1,,asmis1912;froelichetal1963,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53221,Ag51,EA043,Patrilineal,EA043-1,,mercier1950;mercier1953,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53222,Ag52,EA043,Patrilineal,EA043-1,,froelichetal1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53223,Ag53,EA043,Patrilineal,EA043-1,,bernard1966,with special reference to those of Garango,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53224,Ag54,EA043,Patrilineal,EA043-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53225,Ag6,EA043,Patrilineal,EA043-1,,durand1929;vieillard1939;vieillard1940,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53226,Ag7,EA043,Patrilineal,EA043-1,,malzy1946;ortoli1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53227,Ag8,EA043,Matrilineal,EA043-3,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53228,Ag9,EA043,Patrilineal,EA043-1,,labouret1934;sidibe1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53229,Ah1,EA043,Patrilineal,EA043-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53230,Ah10,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA019: But Gunn reports matrilineal ""clans"" as well as patrilineages",gunn1953;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53231,Ah11,EA043,Patrilineal,EA043-1,,gunnandconant1960,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53232,Ah12,EA043,Patrilineal,EA043-1,,bynghall1909;clifford1944;gunnandconant1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53233,Ah13,EA043,?,EA043-NA,See related comment(s) by Murdock: variable EA017: Probably patrilineal,harris1938,with special reference to the Liliwa,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53234,Ah14,EA043,Patrilineal,EA043-1,,gunnandconant1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53235,Ah15,EA043,Patrilineal,EA043-1,,gunnandconant1960;harris1930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53236,Ah16,EA043,Patrilineal,EA043-1,,fitzpatrick1910;mohr1958,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53237,Ah17,EA043,Patrilineal,EA043-1,,gunn1953,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53238,Ah18,EA043,Patrilineal,EA043-1,,bestnd,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53239,Ah19,EA043,Patrilineal,EA043-1,,gunn1953;smithnda;smithndb,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53240,Ah2,EA043,Ambilineal,EA043-5,,meek1931a,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53241,Ah20,EA043,Patrilineal,EA043-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53242,Ah21,EA043,Patrilineal,EA043-1,,gunn1956;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53243,Ah22,EA043,?,EA043-NA,"See related comment(s) by Murdock: variable EA017, EA019: The reported ""clans"" are presumably patrilineal, though Ames mentions very strong survivals of matrilineal descent",ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53244,Ah23,EA043,Ambilineal,EA043-5,,meek1931a;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53245,Ah24,EA043,Patrilineal,EA043-1,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53246,Ah25,EA043,Patrilineal,EA043-1,,kaberry1952;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53247,Ah26,EA043,Matrilineal,EA043-3,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53248,Ah27,EA043,Patrilineal,EA043-1,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53249,Ah28,EA043,Duolateral,EA043-2,See related comment(s) by Murdock: variable EA021: Descent may possibly be ambilineal rather than double,meek1931b,with special reference to the Lekon subtribe,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53250,Ah29,EA043,Matrilineal,EA043-3,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53251,Ah3,EA043,Mixed,EA043-7,See related comment(s) by Murdock: variable EA021: A form of ramage resulted from ambilocal residence (virilocal and avunculocal) and the ambilineal affiliation associated therewith,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53252,Ah30,EA043,Matrilineal,EA043-3,See related comment(s) by Murdock: variable EA017: Patrilineal lineages and moieties have exclusively religious functions,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53253,Ah31,EA043,Patrilineal,EA043-1,,haughton1912;meek1931b,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53254,Ah32,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA021: Inferred from the attested absence of either patrilineal or matrilineal kin groups and from the report that children belong to the father's group if a high bride-price has been paid, otherwise to the group of their MoBr",meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53255,Ah33,EA043,Patrilineal,EA043-1,,meek1931b;temple1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53256,Ah34,EA043,Patrilineal,EA043-1,,meek1931b,with special reference to the Malabu,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53257,Ah35,EA043,Patrilineal,EA043-1,,helser1926;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53258,Ah36,EA043,Patrilineal,EA043-1,,lembezat1961;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53259,Ah37,EA043,Patrilineal,EA043-1,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53260,Ah38,EA043,Patrilineal,EA043-1,,lembezat1950;lembezat1961;meek1931b,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53261,Ah39,EA043,Patrilineal,EA043-1,,lembezat1952;lembezat1961,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53262,Ah4,EA043,Ambilineal,EA043-5,,meek1931b;percival1938;rehfisch1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53263,Ah5,EA043,Patrilineal,EA043-1,,meek1931b;rowling1930,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53264,Ah6,EA043,Matrilineal,EA043-3,,dunn1956;meek1931b[189-219],,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53265,Ah7,EA043,Patrilineal,EA043-1,,hinderling1955;lavergne1949;lembezat1961,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53266,Ah8,EA043,Patrilineal,EA043-1,,lembezat1961;sieber1925;thorbecke1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53267,Ah9,EA043,Patrilineal,EA043-1,,diamond1964;gunn1953,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53268,Ai1,EA043,Patrilineal,EA043-1,,daigre193232;leynaud1954,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53269,Ai10,EA043,Patrilineal,EA043-1,,nadel1947,Nuba Hills,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53270,Ai11,EA043,Patrilineal,EA043-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53271,Ai12,EA043,Patrilineal,EA043-1,,foelich1956;lembezat1961;malzy1956,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53272,Ai13,EA043,Patrilineal,EA043-1,,tessmann1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53273,Ai14,EA043,Patrilineal,EA043-1,,lembezat1961;tessmann1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53274,Ai15,EA043,Patrilineal,EA043-1,,brussaux1907;lembezat1916a;martin1947,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53275,Ai16,EA043,?,EA043-NA,See related comment(s) by Murdock: variable EA017: Presumably patrilineal,lembezat1916a;savini1937,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53276,Ai17,EA043,Patrilineal,EA043-1,,fourneau1938;lembezat1961,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53277,Ai18,EA043,?,EA043-NA,See related comment(s) by Murdock: variable EA017: Inferentially patrilineal,lebeuf1959,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53278,Ai19,EA043,Patrilineal,EA043-1,,hagen1912;lembezat1961,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53279,Ai2,EA043,Duolateral,EA043-2,,nadel1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53280,Ai20,EA043,Patrilineal,EA043-1,,lamouroux1913;lembezat1961,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53281,Ai21,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: Inferential,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53282,Ai22,EA043,Patrilineal,EA043-1,,delafosse1897,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53283,Ai23,EA043,Patrilineal,EA043-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53284,Ai24,EA043,Patrilineal,EA043-1,,gaud1911;vergiat1937,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53285,Ai25,EA043,Patrilineal,EA043-1,,burssens1958,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53286,Ai26,EA043,Patrilineal,EA043-1,,burssens1958;nelson1951;tanghe1928,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53287,Ai27,EA043,Patrilineal,EA043-1,,czekanowski1924;nvs1896,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53288,Ai28,EA043,Patrilineal,EA043-1,,delhaise1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53289,Ai29,EA043,Patrilineal,EA043-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53290,Ai3,EA043,Patrilineal,EA043-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53291,Ai30,EA043,Patrilineal,EA043-1,,czekanowski1924;vangeluwe1957,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53292,Ai31,EA043,Patrilineal,EA043-1,,baxterandbutt1953;czekanowski1924,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53293,Ai32,EA043,Patrilineal,EA043-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53294,Ai33,EA043,Patrilineal,EA043-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53295,Ai34,EA043,Patrilineal,EA043-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53296,Ai35,EA043,Patrilineal,EA043-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53297,Ai36,EA043,Patrilineal,EA043-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53298,Ai37,EA043,Patrilineal,EA043-1,,nadel1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53299,Ai38,EA043,Matrilineal,EA043-3,,nadel1947;seligmanandseligman1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53300,Ai39,EA043,Matrilineal,EA043-3,,nadel1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53301,Ai4,EA043,Ambilineal,EA043-5,,evanspritchard1927;seligmanandseligman1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53302,Ai40,EA043,Patrilineal,EA043-1,,nadel1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53303,Ai41,EA043,Patrilineal,EA043-1,,nadel1947;seligmanandseligman1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53304,Ai42,EA043,Duolateral,EA043-2,,nadel1947;nadel1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53305,Ai43,EA043,Patrilineal,EA043-1,,nadel1947;stevenson1940,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53306,Ai44,EA043,Patrilineal,EA043-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53307,Ai45,EA043,Patrilineal,EA043-1,,evanspritchard1932a;seligman1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53308,Ai46,EA043,Patrilineal,EA043-1,,corfield1938;grottanelli1948,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53309,Ai47,EA043,Patrilineal,EA043-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53310,Ai5,EA043,Patrilineal,EA043-1,,czekanowski1924[400-467];vangeluwe1957,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53311,Ai6,EA043,Patrilineal,EA043-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53312,Ai7,EA043,Patrilineal,EA043-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53313,Ai8,EA043,Patrilineal,EA043-1,,hawkesworth1932;nadel1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53314,Ai9,EA043,Patrilineal,EA043-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53315,Aj1,EA043,Patrilineal,EA043-1,,lawrance1957,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53316,Aj10,EA043,Patrilineal,EA043-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53317,Aj11,EA043,Patrilineal,EA043-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53318,Aj12,EA043,Patrilineal,EA043-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53319,Aj13,EA043,Patrilineal,EA043-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53320,Aj14,EA043,Patrilineal,EA043-1,,huntingford1953a;nalder1937,,1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53321,Aj15,EA043,Patrilineal,EA043-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53322,Aj16,EA043,Patrilineal,EA043-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53323,Aj17,EA043,Patrilineal,EA043-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53324,Aj18,EA043,Patrilineal,EA043-1,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53325,Aj19,EA043,Patrilineal,EA043-1,,driberg1922;driberg1925a;driberg1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53326,Aj2,EA043,Patrilineal,EA043-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53327,Aj20,EA043,Patrilineal,EA043-1,,cerulli1956;lyth1947;pauli1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53328,Aj21,EA043,Patrilineal,EA043-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53329,Aj22,EA043,Patrilineal,EA043-1,,gulliverandgulliver1953;wayland1931,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53330,Aj23,EA043,Patrilineal,EA043-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53331,Aj24,EA043,Patrilineal,EA043-1,,gulliverandgulliver1953;nalder1937,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53332,Aj25,EA043,Patrilineal,EA043-1,,huntingford1953b;massam1927,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53333,Aj26,EA043,Patrilineal,EA043-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53334,Aj27,EA043,Patrilineal,EA043-1,,roscoe1924,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53335,Aj28,EA043,Patrilineal,EA043-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53336,Aj29,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017: The phratries are grouped into moieties, which have ""no very great significance""",spencer1965,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53337,Aj3,EA043,Patrilineal,EA043-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53338,Aj30,EA043,Patrilineal,EA043-1,,dysonhudson1963;gulliverandgulliver1953,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53339,Aj31,EA043,Patrilineal,EA043-1,,driberg1925b;evanspritchard1940c;walsh1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53340,Aj4,EA043,Patrilineal,EA043-1,,driberg1923;hayley1947,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53341,Aj5,EA043,Patrilineal,EA043-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53342,Aj6,EA043,Patrilineal,EA043-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53343,Aj7,EA043,Mixed,EA043-7,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53344,Aj8,EA043,Patrilineal,EA043-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53345,Aj9,EA043,Patrilineal,EA043-1,,barton1923;huntingford1953b;peristiany1938,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53346,Ca1,EA043,Patrilineal,EA043-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53347,Ca10,EA043,Patrilineal,EA043-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53348,Ca11,EA043,Patrilineal,EA043-1,,huntingford1955b;paulitschke189396b,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53349,Ca12,EA043,Patrilineal,EA043-1,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53350,Ca13,EA043,Mixed,EA043-7,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53351,Ca14,EA043,Patrilineal,EA043-1,,cerulli1956;fleming1965,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53352,Ca15,EA043,Patrilineal,EA043-1,,cerulli1956;jensen1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53353,Ca16,EA043,Patrilineal,EA043-1,,cerulli1956;jensen1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53354,Ca17,EA043,Patrilineal,EA043-1,,fleming1965;jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53355,Ca18,EA043,Patrilineal,EA043-1,,cerulli1956;jensen1959;ricci1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53356,Ca19,EA043,Patrilineal,EA043-1,,fleming1965;jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53357,Ca2,EA043,Patrilineal,EA043-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53358,Ca20,EA043,Patrilineal,EA043-1,,cerulli1956;hohnel1890;nalder1937,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53359,Ca21,EA043,Patrilineal,EA043-1,,fleming1965;jensen1959;ricci1952,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53360,Ca22,EA043,Patrilineal,EA043-1,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53361,Ca23,EA043,Patrilineal,EA043-1,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53362,Ca24,EA043,Patrilineal,EA043-1,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53363,Ca25,EA043,Patrilineal,EA043-1,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53364,Ca26,EA043,Patrilineal,EA043-1,,jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53365,Ca27,EA043,Patrilineal,EA043-1,,cerulli1956;grottanelli1940,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53366,Ca28,EA043,Patrilineal,EA043-1,,cerulli1956;jensen1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53367,Ca29,EA043,Patrilineal,EA043-1,,huntingford1955b;straube1963,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53368,Ca3,EA043,Mixed,EA043-7,,fischer1957b;munzinger1864;nadel1946,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53369,Ca30,EA043,Patrilineal,EA043-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53370,Ca31,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA017, EA021: Bilateral descent inferred from lack of mention of unilineal kin groups in any source",flad1860;leslau1951;leslau1957;stern1862,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53371,Ca32,EA043,Matrilineal,EA043-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53372,Ca33,EA043,Matrilineal,EA043-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53373,Ca34,EA043,Patrilineal,EA043-1,,klunzinger1876;murray1923;murray1935,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53374,Ca35,EA043,Patrilineal,EA043-1,,clark1938;sandars1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53375,Ca36,EA043,Patrilineal,EA043-1,,munzinger1864;nadel1945;paul1950,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53376,Ca37,EA043,?,EA043-NA,"See related comment(s) by Murdock: variable EA017: No data on descent, but distributional evidence suggests the patrilineal rule",munzinger1859,Bogo Tribe,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53377,Ca38,EA043,Patrilineal,EA043-1,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53378,Ca39,EA043,Patrilineal,EA043-1,,lewis1965b,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53379,Ca4,EA043,Duolateral,EA043-2,"See related comment(s) by Murdock: variable EA019: Matrilineages are unnamed, unimportant, and not specifically reported to be exogamous",huntingford1953b;winter1955;winterandmolyneaux1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53380,Ca40,EA043,Patrilineal,EA043-1,,straube1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53381,Ca41,EA043,Patrilineal,EA043-1,,straube1957;straube1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53382,Ca42,EA043,Patrilineal,EA043-1,,straube1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53383,Ca43,EA043,Patrilineal,EA043-1,,owen1937;rober1928,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53384,Ca5,EA043,Patrilineal,EA043-1,,clark1938;murray1935;sandars1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53385,Ca6,EA043,Patrilineal,EA043-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53386,Ca7,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA017, EA021: Patronymic but probably not patrilineal",lipsky1962;messing1957,Gondar district,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53387,Ca8,EA043,Patrilineal,EA043-1,,leslau1950;shack1963,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53388,Ca9,EA043,Patrilineal,EA043-1,,baumann1894;huntingford1953b;reche1914,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53389,Cb1,EA043,Patrilineal,EA043-1,,greenberg1946;greenberg1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53390,Cb10,EA043,Patrilineal,EA043-1,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53391,Cb11,EA043,Matrilineal,EA043-3,See related comment(s) by Murdock: variable EA019: Inferred from matrilineal inheritance and succession,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53392,Cb12,EA043,Patrilineal,EA043-1,,reid1930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53393,Cb13,EA043,Patrilineal,EA043-1,,lampen1933,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53394,Cb14,EA043,Patrilineal,EA043-1,,lagrange1913;martine1924,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53395,Cb15,EA043,Patrilineal,EA043-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53396,Cb16,EA043,Patrilineal,EA043-1,,bouille1937;devallee1925,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53397,Cb17,EA043,Matrilineal,EA043-3,"See related comment(s) by Murdock: variable EA019: Inferred from prohibition of marriage with a maternal cousin, from the matrilocal rule of residence, and from the report of ""totemism""",barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53398,Cb18,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA021: Probably though not certainly,bouille1937;carbou1912;lebeuf1959,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53399,Cb19,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA017, EA021: Descent, though patrilineal prior to 1850, is now ""bilateral with an agnatic bias"" (Cohen)",cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53400,Cb2,EA043,Duolateral,EA043-2,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53401,Cb20,EA043,Patrilineal,EA043-1,,dupicq1931;robin1947,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53402,Cb21,EA043,Patrilineal,EA043-1,,pfeffer1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53403,Cb22,EA043,Patrilineal,EA043-1,,coutouly1923;delmond1953,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53404,Cb23,EA043,Patrilineal,EA043-1,,kane1939;lafont1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53405,Cb24,EA043,Patrilineal,EA043-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53406,Cb25,EA043,Patrilineal,EA043-1,,anonymous1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53407,Cb26,EA043,Patrilineal,EA043-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53408,Cb27,EA043,Patrilineal,EA043-1,,fegan1930;meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53409,Cb28,EA043,Duolateral,EA043-2,See related comment(s) by Murdock: variable EA019: Matrilineal exogamy extends only to second cousins,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53410,Cb29,EA043,Patrilineal,EA043-1,,meek1931b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53411,Cb3,EA043,Patrilineal,EA043-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53412,Cb4,EA043,Patrilineal,EA043-1,,reid1930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53413,Cb5,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017, EA021: Descent uncertain, though reported as patrilineal by Bouillie",bouille1937;lebeuf1959;talbot1911,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53414,Cb6,EA043,Patrilineal,EA043-1,,woodnd,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53415,Cb7,EA043,Patrilineal,EA043-1,,meek1931b[288-310],,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53416,Cb8,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA017: But one source speaks of patrilineages,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53417,Cb9,EA043,Patrilineal,EA043-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53418,Cc1,EA043,Patrilineal,EA043-1,,briggs1958;carobaroja1955;cauneille1950,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53419,Cc10,EA043,Matrilineal,EA043-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53420,Cc11,EA043,Matrilineal,EA043-3,,duveyrier1864,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53421,Cc12,EA043,?,EA043-NA,"See related comment(s) by Murdock: variable EA017, EA019: Although descent is specifically reported as patrilineal, it may well be matrilineal as among other Tuareg",cortier1908,,1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53422,Cc13,EA043,Matrilineal,EA043-3,,coutouly1923;gaalon1939,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53423,Cc14,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: Patrilineal descent is inferential,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53424,Cc15,EA043,Patrilineal,EA043-1,,chapelle1929;meunie1947;spillmann1931,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53425,Cc16,EA043,Patrilineal,EA043-1,,briggs1958;darmagnac1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53426,Cc17,EA043,Patrilineal,EA043-1,,carobaroja1955;lotte1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53427,Cc18,EA043,Patrilineal,EA043-1,,salvy1951;tauxier1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53428,Cc19,EA043,Patrilineal,EA043-1,,dubie1953;martv1919,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53429,Cc2,EA043,Patrilineal,EA043-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53430,Cc20,EA043,Patrilineal,EA043-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53431,Cc3,EA043,Patrilineal,EA043-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53432,Cc4,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: The prevalence of sib or lineage exogamy is not reported,goichon1927;mercier1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53433,Cc5,EA043,Matrilineal,EA043-3,,aymard1911;miner1953;said1903;zeltner1914,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53434,Cc6,EA043,Patrilineal,EA043-1,,parkyns1951;seligmanandseligman1918,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53435,Cc7,EA043,Patrilineal,EA043-1,,miner1953,Timbuctoo,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53436,Cc8,EA043,?,EA043-NA,See related comment(s) by Murdock: variable EA017: Said to have shifted from matrilineal to patrilineal descent,hourst1899,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53437,Cc9,EA043,Matrilineal,EA043-3,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53438,Cd1,EA043,Patrilineal,EA043-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53439,Cd10,EA043,Patrilineal,EA043-1,,destaing190711;moulieras1905,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53440,Cd11,EA043,Matrilineal,EA043-3,See related comment(s) by Murdock: variable EA019: All authorities accept matrilineal descent on the basis of reported matrilineal inheritance and succession,cook1900;espinosa1907;gambier1894,,1500,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53441,Cd12,EA043,Patrilineal,EA043-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53442,Cd13,EA043,Patrilineal,EA043-1,,bardin1944;despois1940;ubachandrackow1923,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53443,Cd14,EA043,Patrilineal,EA043-1,,bernard1929;villot1875,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53444,Cd15,EA043,Patrilineal,EA043-1,,michauxbellaire1911;rackow1958,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53445,Cd16,EA043,Patrilineal,EA043-1,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53446,Cd17,EA043,Patrilineal,EA043-1,,ubachandrackow1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53447,Cd18,EA043,Patrilineal,EA043-1,,kennett1925;murray1935,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53448,Cd19,EA043,Patrilineal,EA043-1,,despois1940;ubachandrackow1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53449,Cd2,EA043,Patrilineal,EA043-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53450,Cd20,EA043,Patrilineal,EA043-1,,evanspritchard1949b,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53451,Cd21,EA043,Patrilineal,EA043-1,,bonniard1934;despois1930,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53452,Cd3,EA043,Patrilineal,EA043-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53453,Cd4,EA043,Patrilineal,EA043-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53454,Cd5,EA043,Patrilineal,EA043-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53455,Cd6,EA043,Bilateral,EA043-6,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53456,Cd7,EA043,Patrilineal,EA043-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53457,Cd8,EA043,Patrilineal,EA043-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53458,Cd9,EA043,Patrilineal,EA043-1,,justinard1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53459,Ce1,EA043,Mixed,EA043-7,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53460,Ce2,EA043,Bilateral,EA043-6,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53461,Ce3,EA043,Bilateral,EA043-6,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53462,Ce4,EA043,Bilateral,EA043-6,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53463,Ce5,EA043,Bilateral,EA043-6,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53464,Ce6,EA043,Bilateral,EA043-6,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53465,Ce7,EA043,Bilateral,EA043-6,,firedl1962,with special reference to the village of Vasilika,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53466,Ce8,EA043,Bilateral,EA043-6,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53467,Cf1,EA043,Bilateral,EA043-6,,murdocknd,Small City in Connecticut,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53468,Cf2,EA043,Bilateral,EA043-6,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53469,Cf3,EA043,Bilateral,EA043-6,,munch1945,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53470,Cf4,EA043,Bilateral,EA043-6,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53471,Cf5,EA043,Bilateral,EA043-6,,miner1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53472,Cg1,EA043,Bilateral,EA043-6,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53473,Cg2,EA043,Bilateral,EA043-6,,dasent1861;johnson1930;merrill1964,,1100,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53474,Cg3,EA043,Bilateral,EA043-6,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53475,Cg4,EA043,Bilateral,EA043-6,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53476,Cg5,EA043,Bilateral,EA043-6,,turneyhigh1953,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53477,Ch1,EA043,Patrilineal,EA043-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53478,Ch10,EA043,Bilateral,EA043-6,,cotlarciuc1913,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53479,Ch11,EA043,Bilateral,EA043-6,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53480,Ch2,EA043,Bilateral,EA043-6,,kaindl1894;koenig1935;szuchiewicz190208,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53481,Ch3,EA043,Bilateral,EA043-6,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53482,Ch4,EA043,Bilateral,EA043-6,,heffner1955;wichmann1913,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53483,Ch5,EA043,Bilateral,EA043-6,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53484,Ch6,EA043,Bilateral,EA043-6,,ember1954,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53485,Ch7,EA043,Bilateral,EA043-6,,friedrich1954,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53486,Ch8,EA043,Bilateral,EA043-6,,hanzeli1955,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53487,Ch9,EA043,Bilateral,EA043-6,,maciuika1955,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53488,Ci1,EA043,Patrilineal,EA043-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53489,Ci10,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA017: Formerly patrilineal and still patronymic,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53490,Ci11,EA043,Mixed,EA043-7,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53491,Ci12,EA043,Patrilineal,EA043-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53492,Ci2,EA043,Patrilineal,EA043-1,,grigolia1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53493,Ci3,EA043,Bilateral,EA043-6,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53494,Ci4,EA043,Patrilineal,EA043-1,,castagne1929;ladysenskij1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53495,Ci5,EA043,Patrilineal,EA043-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53496,Ci6,EA043,Patrilineal,EA043-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53497,Ci7,EA043,Patrilineal,EA043-1,,lotz1956;plaetschke1929,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53498,Ci8,EA043,?,EA043-NA,,,,,, +53499,Ci9,EA043,Patrilineal,EA043-1,,grigolia1939,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53500,Cj1,EA043,Patrilineal,EA043-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53501,Cj10,EA043,Patrilineal,EA043-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53502,Cj2,EA043,Mixed,EA043-7,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53503,Cj3,EA043,Patrilineal,EA043-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53504,Cj4,EA043,Bilateral,EA043-6,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53505,Cj5,EA043,Patrilineal,EA043-1,,dickson1949,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53506,Cj6,EA043,Patrilineal,EA043-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53507,Cj7,EA043,Patrilineal,EA043-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53508,Cj8,EA043,Patrilineal,EA043-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53509,Cj9,EA043,Patrilineal,EA043-1,,hazard1956,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53510,Ea1,EA043,Patrilineal,EA043-1,,bordiend;wilber1964,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53511,Ea10,EA043,Patrilineal,EA043-1,,pehrson1966,with special reference to the more nomadic groups,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53512,Ea11,EA043,Patrilineal,EA043-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53513,Ea12,EA043,Patrilineal,EA043-1,,garrod1946a;garrod1946b,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53514,Ea13,EA043,Patrilineal,EA043-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53515,Ea2,EA043,Mixed,EA043-7,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53516,Ea3,EA043,Patrilineal,EA043-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53517,Ea4,EA043,Patrilineal,EA043-1,,barth1956b,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53518,Ea5,EA043,Patrilineal,EA043-1,,robertson1896;wilber1956,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53519,Ea6,EA043,Patrilineal,EA043-1,,barth1961;barth1964,Nomadic branch,1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53520,Ea7,EA043,Patrilineal,EA043-1,,schurmann1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53521,Ea8,EA043,Patrilineal,EA043-1,,feilberg1952;wilson1926,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53522,Ea9,EA043,Patrilineal,EA043-1,,vreeland1957,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53523,Eb1,EA043,Patrilineal,EA043-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53524,Eb2,EA043,Patrilineal,EA043-1,,krader1963;schram1954,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53525,Eb3,EA043,Mixed,EA043-7,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53526,Eb4,EA043,Patrilineal,EA043-1,,vreeland1954,with special reference to the Botaha area,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53527,Eb5,EA043,Patrilineal,EA043-1,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53528,Eb6,EA043,Patrilineal,EA043-1,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53529,Eb7,EA043,Patrilineal,EA043-1,,krader1954b;vreeland1954,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53530,Eb8,EA043,Patrilineal,EA043-1,,zadykhina1952,with special reference to the Kongrat tribe,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53531,Ec1,EA043,Patrilineal,EA043-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53532,Ec10,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: But Steinitz reports agamous patrimoieties,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53533,Ec11,EA043,Patrilineal,EA043-1,,donner1932;donner1954,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53534,Ec2,EA043,Patrilineal,EA043-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53535,Ec3,EA043,Bilateral,EA043-6,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53536,Ec4,EA043,Patrilineal,EA043-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53537,Ec5,EA043,Bilateral,EA043-6,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53538,Ec6,EA043,Bilateral,EA043-6,,jochelson191926,Upper Kolyma River,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53539,Ec7,EA043,Matrilineal,EA043-3,"See related comment(s) by Murdock: variable EA017, EA019: But there are patrilineal kin groups consisting of males only",batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53540,Ec8,EA043,Patrilineal,EA043-1,,shimkin1939,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53541,Ec9,EA043,Patrilineal,EA043-1,,lattimore1933,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53542,Ed1,EA043,Patrilineal,EA043-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53543,Ed10,EA043,Patrilineal,EA043-1,,yang1945,with special reference to the village of Taitou,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53544,Ed13,EA043,Patrilineal,EA043-1,,smith1952,with special reference to the town of Kabira,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53545,Ed14,EA043,Patrilineal,EA043-1,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53546,Ed15a,EA043,Bilateral,EA043-6,,burd1952,with special reference to the village of Karimata,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53547,Ed15b,EA043,Patrilineal,EA043-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53548,Ed16,EA043,Patrilineal,EA043-1,,davenportnd,with special reference to the village of Yannon,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53549,Ed2,EA043,Patrilineal,EA043-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53550,Ed3,EA043,Patrilineal,EA043-1,,shirokogoroff1924,Aigun District,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53551,Ed4,EA043,Mixed,EA043-7,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53552,Ed5,EA043,Bilateral,EA043-6,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53553,Ed6,EA043,Patrilineal,EA043-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53554,Ed7,EA043,Mixed,EA043-7,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53555,Ed8,EA043,Patrilineal,EA043-1,,fitzgerald1941,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53556,Ed9,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: Patronymic name groups resembling those of the Chinese,lebaretal1964;odaka1950;strubel1937,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53557,Ee1,EA043,Patrilineal,EA043-1,,duffsutherlanddunbar1915;roy1960,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53558,Ee2,EA043,Patrilineal,EA043-1,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53559,Ee3,EA043,Patrilineal,EA043-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53560,Ee4,EA043,Patrilineal,EA043-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53561,Ee5,EA043,Patrilineal,EA043-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53562,Ee6,EA043,Patrilineal,EA043-1,,furerhaimendorf1964,with special reference to those of Khumbu,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53563,Ee7,EA043,Patrilineal,EA043-1,,endle1911;hodgson1847,,1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53564,Ee8,EA043,Patrilineal,EA043-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53565,Ef1,EA043,Patrilineal,EA043-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53566,Ef10,EA043,Patrilineal,EA043-1,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53567,Ef11,EA043,Mixed,EA043-7,See related comment(s) by Murdock: variable EA017: But locally exogamous sibs for the Thakur caste,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53568,Ef2,EA043,Mixed,EA043-7,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53569,Ef3,EA043,Mixed,EA043-7,,karve1953,,-800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53570,Ef4,EA043,Patrilineal,EA043-1,,chatterjeeanddas1927;majumdar1937,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53571,Ef5,EA043,Patrilineal,EA043-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53572,Ef6,EA043,Patrilineal,EA043-1,,roy1915;roy1951,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53573,Ef7,EA043,Mixed,EA043-7,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53574,Ef8,EA043,Patrilineal,EA043-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53575,Ef9,EA043,Patrilineal,EA043-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53576,Eg1,EA043,Patrilineal,EA043-1,,furerhaimendorf1943b,with special reference to the forest group,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53577,Eg10,EA043,Patrilineal,EA043-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53578,Eg11,EA043,Patrilineal,EA043-1,,tyler1965,with special reference to the Gommu Koya,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53579,Eg12,EA043,Patrilineal,EA043-1,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53580,Eg13,EA043,Patrilineal,EA043-1,,elwin1957,Bastar State,1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53581,Eg14,EA043,Patrilineal,EA043-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53582,Eg2,EA043,Patrilineal,EA043-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53583,Eg3,EA043,Patrilineal,EA043-1,,grigson1938,Hill Maria,1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53584,Eg4,EA043,Duolateral,EA043-2,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53585,Eg5,EA043,Patrilineal,EA043-1,,emeneau1939;srinivas1952,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53586,Eg6,EA043,Matrilineal,EA043-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53587,Eg7,EA043,Patrilineal,EA043-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53588,Eg8,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA021: The groups called ""endogamous septs"" are apparently not unilineal",griffiths1946,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53589,Eg9,EA043,Patrilineal,EA043-1,,elwin1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53590,Eh1,EA043,Bilateral,EA043-6,,man1882;radcliffebrown1922,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53591,Eh10,EA043,Patrilineal,EA043-1,,dubois1938,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53592,Eh2,EA043,Duolateral,EA043-2,,grandidierandgrandidier190828;sibree1880,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53593,Eh3,EA043,Duolateral,EA043-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53594,Eh4,EA043,Matrilineal,EA043-3,"See related comment(s) by Murdock: variable EA019: Leach, on questionable evidence (see discussion Murdock (1965a)), denies the occurrence of matrilineal sibs",bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53595,Eh5,EA043,Bilateral,EA043-6,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53596,Eh6,EA043,Quasi-lineages,EA043-4,"See related comment(s) by Murdock: variable EA021: Inferred from the preference for V residence and the existence of endogamous ""kindreds"" with a fiction of ""common ancestry""",ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53597,Eh7,EA043,Patrilineal,EA043-1,,decary193033;mcleod1964;rajohnson1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53598,Eh8,EA043,Patrilineal,EA043-1,,faublee1946;kurze188689;mcleod1964,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53599,Eh9,EA043,Patrilineal,EA043-1,,deschamps1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53600,Ei1,EA043,Matrilineal,EA043-3,,burling1963;playfair1909,Rengsanggr,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53601,Ei10,EA043,Patrilineal,EA043-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53602,Ei11,EA043,Patrilineal,EA043-1,,bose1936;needham1960;shakespear1912,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53603,Ei12,EA043,Patrilineal,EA043-1,,shakespear1912;shaw1929,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53604,Ei13,EA043,Patrilineal,EA043-1,,hutton1921a,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53605,Ei14,EA043,Patrilineal,EA043-1,,mills1926;smith1925b,with special reference to the Chongli,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53606,Ei15,EA043,Patrilineal,EA043-1,,mills1937,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53607,Ei16,EA043,Patrilineal,EA043-1,,hutton1921b,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53608,Ei17,EA043,Patrilineal,EA043-1,,stack1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53609,Ei18,EA043,Bilateral,EA043-6,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53610,Ei19,EA043,Patrilineal,EA043-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53611,Ei2,EA043,Patrilineal,EA043-1,,mills1922,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53612,Ei20,EA043,Patrilineal,EA043-1,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53613,Ei3,EA043,Bilateral,EA043-6,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53614,Ei4,EA043,Patrilineal,EA043-1,,parry1932,Lakher Tribe,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53615,Ei5,EA043,Patrilineal,EA043-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53616,Ei6,EA043,Patrilineal,EA043-1,,das1945;needham1958,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53617,Ei7,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA019, EA021: But there are agamous matrilineages which function in ancestor worship",marshall1922;mcmahon1876,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53618,Ei8,EA043,Matrilineal,EA043-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53619,Ei9,EA043,Patrilineal,EA043-1,,bessaignet1958;levistrauss1952,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53620,Ej1,EA043,Patrilineal,EA043-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53621,Ej10,EA043,Matrilineal,EA043-3,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53622,Ej11,EA043,Matrilineal,EA043-3,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53623,Ej12,EA043,Patrilineal,EA043-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53624,Ej13,EA043,Patrilineal,EA043-1,,cusinier1946;lebaretal1964,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53625,Ej14,EA043,Bilateral,EA043-6,,dentan1967,with special reference to the eastern Semai,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53626,Ej15,EA043,Bilateral,EA043-6,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53627,Ej16,EA043,Matrilineal,EA043-3,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53628,Ej2,EA043,Matrilineal,EA043-3,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53629,Ej3,EA043,Bilateral,EA043-6,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53630,Ej4,EA043,Patrilineal,EA043-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53631,Ej5,EA043,Bilateral,EA043-6,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53632,Ej6,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA017: Nomadic boat communities,carrapiett1909;white1922,of the Mergui Archipelago,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53633,Ej7,EA043,Patrilineal,EA043-1,,bernatzik1947,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53634,Ej8,EA043,Bilateral,EA043-6,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53635,Ej9,EA043,Bilateral,EA043-6,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53636,Ia1,EA043,Mixed,EA043-7,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53637,Ia10,EA043,Patrilineal,EA043-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53638,Ia11,EA043,Ambilineal,EA043-5,,mabuchi1960,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53639,Ia12,EA043,Bilateral,EA043-6,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53640,Ia13,EA043,Bilateral,EA043-6,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53641,Ia14,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA017: But Wei and Liu, unlike other sources, report patrilineages",kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53642,Ia15,EA043,Bilateral,EA043-6,,garvan1931,with special reference to those of the Agusan Valley,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53643,Ia16,EA043,Bilateral,EA043-6,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53644,Ia17,EA043,Bilateral,EA043-6,,cole1913;deananddean1954;wood1951,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53645,Ia18,EA043,Bilateral,EA043-6,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53646,Ia2,EA043,Bilateral,EA043-6,,bacdayan1962;eggan1960,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53647,Ia3,EA043,Bilateral,EA043-6,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53648,Ia4,EA043,Bilateral,EA043-6,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53649,Ia5,EA043,Bilateral,EA043-6,,conklin1954;conklin1955;conklin1957,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53650,Ia6,EA043,Ambilineal,EA043-5,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53651,Ia7,EA043,Bilateral,EA043-6,,fox1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53652,Ia8,EA043,Bilateral,EA043-6,,jenks1905;keesing1949,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53653,Ia9,EA043,Matrilineal,EA043-3,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53654,Ib1,EA043,Bilateral,EA043-6,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53655,Ib2,EA043,Bilateral,EA043-6,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53656,Ib3,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017: But 'none' (code ""1"") in upper castes;",belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53657,Ib4,EA043,Patrilineal,EA043-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53658,Ib5,EA043,Bilateral,EA043-6,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53659,Ib6,EA043,Matrilineal,EA043-3,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53660,Ib7,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA021: The uma, though possibly a localized quasi-patrilineage, is more probably a ramage",kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53661,Ib8,EA043,Bilateral,EA043-6,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53662,Ib9,EA043,Bilateral,EA043-6,,needham1955,with special reference to settled Punan,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53663,Ic1,EA043,Ambilineal,EA043-5,,chabot1950,Borongloe,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53664,Ic10,EA043,Bilateral,EA043-6,,hueting1921;riedel1885,Tobelo District,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53665,Ic11,EA043,Mixed,EA043-7,,cooley1962a;cooley1962b,Allang,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53666,Ic12,EA043,Bilateral,EA043-6,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53667,Ic13,EA043,Duolateral,EA043-2,,fischer1957a,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53668,Ic2,EA043,Mixed,EA043-7,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53669,Ic3,EA043,Matrilineal,EA043-3,,vroklage1952,with special reference to the Mountain Belu,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53670,Ic4,EA043,Patrilineal,EA043-1,,kruyt1921;wetering1925,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53671,Ic5,EA043,Bilateral,EA043-6,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53672,Ic6,EA043,Patrilineal,EA043-1,,drabbe1940,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53673,Ic7,EA043,Patrilineal,EA043-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53674,Ic8,EA043,Patrilineal,EA043-1,,pleyte1893,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53675,Ic9,EA043,Patrilineal,EA043-1,,nooteboom1940,with special reference to eastern Sumba,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53676,Id1,EA043,Duolateral,EA043-2,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53677,Id10,EA043,Duolateral,EA043-2,,meggitt1962a,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53678,Id11,EA043,Duolateral,EA043-2,,hiatt1965,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53679,Id12,EA043,Patrilineal,EA043-1,,sharp1934,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53680,Id13,EA043,Duolateral,EA043-2,See related comment(s) by Murdock: variable EA019: Implicit matrimoieties,rose1960,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53681,Id2,EA043,Duolateral,EA043-2,See related comment(s) by Murdock: variable EA019: The matrimoieties are implicit and unnamed,berndt1955;elkin1950;warner1937,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53682,Id3,EA043,Matrilineal,EA043-3,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53683,Id4,EA043,Matrilineal,EA043-3,"See related comment(s) by Murdock: variable EA017: But there are localized totemic groups which do not regulate marriages; in addition, analysis suggests implicit intersecting patrimoieties",berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53684,Id5,EA043,Duolateral,EA043-2,See related comment(s) by Murdock: variable EA019: Implicit matrimoieties intersecting the patrimoieties to form four sections,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53685,Id6,EA043,Patrilineal,EA043-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53686,Id7,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA019: Although subsections were borrowed about 1915, they have not yet been integrated into the social system, and implicit matrimoieties have therefore not been established",falkenberg1962,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53687,Id8,EA043,?,EA043-NA,,,,,, +53688,Id9,EA043,Duolateral,EA043-2,,howitt1904;radcliffebrown1923,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53689,Ie1,EA043,Patrilineal,EA043-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53690,Ie10,EA043,Mixed,EA043-7,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53691,Ie11,EA043,Patrilineal,EA043-1,,bowers1964,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53692,Ie12,EA043,Patrilineal,EA043-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53693,Ie13,EA043,Patrilineal,EA043-1,,landtman1927,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53694,Ie14,EA043,Patrilineal,EA043-1,,haddon1908,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53695,Ie15,EA043,Patrilineal,EA043-1,,kaberry1941,Kalabu; Northern Abelam,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53696,Ie16,EA043,Patrilineal,EA043-1,,williams194041,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53697,Ie17,EA043,Patrilineal,EA043-1,,salisbury1956;salisbury1962,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53698,Ie18,EA043,Mixed,EA043-7,"See related comment(s) by Murdock: variable EA017: Though exogamous, lineages are only incompletely patrilineal and, within a village, tend to be grouped into local moieties",serpenti1965,Bamol Village,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53699,Ie19,EA043,Patrilineal,EA043-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53700,Ie2,EA043,Mixed,EA043-7,"See related comment(s) by Murdock: variable EA021: A ""skewed kindred"" consisting of parts of both Ego's and his mother's patrilineages",schmitz1960,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53701,Ie20,EA043,Patrilineal,EA043-1,,seligmann1910,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53702,Ie21,EA043,Patrilineal,EA043-1,,malinowski1916,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53703,Ie22,EA043,Patrilineal,EA043-1,,belshaw1951;seligmann1910;williamson1913,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53704,Ie23,EA043,Patrilineal,EA043-1,,schoorl1957,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53705,Ie24,EA043,Patrilineal,EA043-1,,chalmers1890;lawes1879,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53706,Ie25,EA043,Patrilineal,EA043-1,,williamson1912,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53707,Ie26,EA043,Patrilineal,EA043-1,,read1946;read1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53708,Ie27,EA043,Patrilineal,EA043-1,,thurnwald1916,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53709,Ie28,EA043,Duolateral,EA043-2,,hogbin194647;hogbin1946b,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53710,Ie29,EA043,Patrilineal,EA043-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53711,Ie3,EA043,Patrilineal,EA043-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53712,Ie30,EA043,Matrilineal,EA043-3,,pouwer1955,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53713,Ie31,EA043,Patrilineal,EA043-1,,berndt1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53714,Ie32,EA043,Mixed,EA043-7,,groves1934;harding1967,,1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53715,Ie33,EA043,Patrilineal,EA043-1,,oosterwal1967,with special reference to the village of Muramarew,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53716,Ie34,EA043,Bilateral,EA043-6,,koentjaraningrat1966,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53717,Ie35,EA043,Patrilineal,EA043-1,,bateson1932;bateson1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53718,Ie36,EA043,Bilateral,EA043-6,,vanderleeden1956,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53719,Ie37,EA043,Patrilineal,EA043-1,,pouwer1964,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53720,Ie38,EA043,Patrilineal,EA043-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53721,Ie39,EA043,Patrilineal,EA043-1,,williams1940,with special reference to those of Orokolo Bay,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53722,Ie4,EA043,Duolateral,EA043-2,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53723,Ie5,EA043,Patrilineal,EA043-1,,williams1936,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53724,Ie6,EA043,Patrilineal,EA043-1,,held1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53725,Ie7,EA043,Patrilineal,EA043-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53726,Ie8,EA043,Patrilineal,EA043-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53727,Ie9,EA043,Patrilineal,EA043-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53728,If1,EA043,Mixed,EA043-7,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53729,If10,EA043,Matrilineal,EA043-3,,tolertonandrauch1949,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53730,If11,EA043,Matrilineal,EA043-3,,sarfert1919,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53731,If12,EA043,Matrilineal,EA043-3,,mason1954,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53732,If13,EA043,Mixed,EA043-7,,hambruch191415;stephen1936;wedgwood1936,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53733,If14,EA043,Ambilineal,EA043-5,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53734,If15,EA043,Matrilineal,EA043-3,,josephandmurray1951;spehr1954,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53735,If16,EA043,Matrilineal,EA043-3,,alkire1965,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53736,If17,EA043,Matrilineal,EA043-3,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53737,If2,EA043,Mixed,EA043-7,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53738,If3,EA043,Mixed,EA043-7,,spoehr1949,With special reference to the inhabitants of Majuro,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53739,If4,EA043,Mixed,EA043-7,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53740,If5,EA043,Matrilineal,EA043-3,,bascom1965;hambruch193236;riesenberg1949,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53741,If6,EA043,Duolateral,EA043-2,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53742,If7,EA043,Ambilineal,EA043-5,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53743,If8,EA043,Bilateral,EA043-6,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53744,If9,EA043,Matrilineal,EA043-3,,lessa1950;william1966,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53745,Ig1,EA043,Matrilineal,EA043-3,,oliver1949;oliver1955,Northeastern group,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53746,Ig10,EA043,Duolateral,EA043-2,,schwartz1964,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53747,Ig11,EA043,Matrilineal,EA043-3,,armstrong1928,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53748,Ig12,EA043,Ambilineal,EA043-5,See related comment(s) by Murdock: variable EA017: There is some emphasis on patrifiliation,scheffler1965,with special reference to the Varisi,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53749,Ig13,EA043,Matrilineal,EA043-3,,hambruch1907;pittrivers1925,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53750,Ig14,EA043,Matrilineal,EA043-3,,belshaw1955;seligman1910,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53751,Ig15,EA043,Patrilineal,EA043-1,,goodenough1954a,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53752,Ig16,EA043,Ambilineal,EA043-5,,goodenough1951a,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53753,Ig17,EA043,Patrilineal,EA043-1,,goodenough1954b,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53754,Ig18,EA043,Mixed,EA043-7,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53755,Ig19,EA043,Ambilineal,EA043-5,,chowning1962;goodenough1952,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53756,Ig2,EA043,Matrilineal,EA043-3,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53757,Ig20,EA043,Matrilineal,EA043-3,,hogbin1965,with special reference to the village of Longgu,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53758,Ig21,EA043,Matrilineal,EA043-3,,bell1934;bell1938,with special reference to Boieng Island,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53759,Ig3,EA043,Mixed,EA043-7,,blackwood1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53760,Ig4,EA043,Matrilineal,EA043-3,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53761,Ig5,EA043,Matrilineal,EA043-3,,fortune1932b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53762,Ig6,EA043,Ambilineal,EA043-5,,ivens1927,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53763,Ig7,EA043,Mixed,EA043-7,,chowning1957;goodenough1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53764,Ig8,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA019: Though descent is actually ambilineal, matrilineal ties are considered stronger than patrilineal ones",hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53765,Ig9,EA043,Duolateral,EA043-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53766,Ih1,EA043,Matrilineal,EA043-3,,codrington1891;rivers1914a,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53767,Ih10,EA043,Patrilineal,EA043-1,,humphreys1926,Whitsands,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53768,Ih11,EA043,Patrilineal,EA043-1,,deacon1929,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53769,Ih12,EA043,Patrilineal,EA043-1,,humphreys1926,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53770,Ih13,EA043,Duolateral,EA043-2,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53771,Ih14,EA043,Patrilineal,EA043-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53772,Ih2,EA043,Patrilineal,EA043-1,,deacon1934,Malekula Island,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53773,Ih3,EA043,Duolateral,EA043-2,See related comment(s) by Murdock: variable EA019: The matrimoieties are implicit,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53774,Ih4,EA043,Patrilineal,EA043-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53775,Ih5,EA043,Patrilineal,EA043-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53776,Ih6,EA043,Mixed,EA043-7,,gardner1897;howardandhoward1964;russell1942,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53777,Ih7,EA043,Patrilineal,EA043-1,,hadfield1920;ray1917,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53778,Ih8,EA043,Duolateral,EA043-2,,quain1949,with special reference to the village of Nakaroka,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53779,Ih9,EA043,Matrilineal,EA043-3,,davenport1964,Graciosa Bay,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53780,Ii1,EA043,Ambilineal,EA043-5,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53781,Ii10,EA043,Bilateral,EA043-6,,birketsmith1956,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53782,Ii12,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA021: Or localized ""stem kindreds""",beagleholeandbeaglehole1941;gifford1929,Pangai,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53783,Ii13,EA043,Ambilineal,EA043-5,,burrows1937,,1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53784,Ii14,EA043,Ambilineal,EA043-5,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53785,Ii2,EA043,Mixed,EA043-7,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53786,Ii3,EA043,Mixed,EA043-7,,beagleholeandbeaglehole1938;macgregor1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53787,Ii4,EA043,Ambilineal,EA043-5,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53788,Ii5,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA017, EA021: The exogamous patrilineages of six generations' depth reported by Hogbin, who calls them ""joint families,"" are presumably ambilineal ramages, since affiliation is reported to be matrilineal for about 10 per cent of their membership",hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53789,Ii6,EA043,Ambilineal,EA043-5,,macgregor1937,with special reference to Atafu,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53790,Ii7,EA043,Bilateral,EA043-6,,buck1950;eilers1934;emory1965,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53791,Ii8,EA043,Ambilineal,EA043-5,,burrows1936,,1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53792,Ii9,EA043,Ambilineal,EA043-5,,loeb1926a,,1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53793,Ij1,EA043,Ambilineal,EA043-5,,buck1934,,1820,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53794,Ij10,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA021: Or very possibly ambilineal,buck1932b,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53795,Ij2,EA043,Ambilineal,EA043-5,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53796,Ij3,EA043,Bilateral,EA043-6,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53797,Ij4,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or very probably ramages (code ""4"")",buck1932a,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53798,Ij5,EA043,Ambilineal,EA043-5,,danielsson1954;danielsson1955,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53799,Ij6,EA043,Ambilineal,EA043-5,,buck1957;handyetal1933;malo1951;vayda1956,,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53800,Ij7,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA021: But called ""extended families"" by Buck",buck1938;laval1938,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53801,Ij8,EA043,Ambilineal,EA043-5,,ellis1905;handy1930;henry1928,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53802,Ij9,EA043,Ambilineal,EA043-5,,metraux1940,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53803,Na1,EA043,Matrilineal,EA043-3,,mckennan1959,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53804,Na10,EA043,Bilateral,EA043-6,,birketsmith1953,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53805,Na11,EA043,Mixed,EA043-7,,hughes1958;hughes1960;moore1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53806,Na12,EA043,Bilateral,EA043-6,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53807,Na13,EA043,Bilateral,EA043-6,,boas1888;boas190107,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53808,Na14,EA043,Bilateral,EA043-6,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53809,Na15,EA043,Bilateral,EA043-6,,helmandlurie1961,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53810,Na16,EA043,Bilateral,EA043-6,,osgood1931,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53811,Na17,EA043,Bilateral,EA043-6,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53812,Na19,EA043,Matrilineal,EA043-3,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53813,Na2,EA043,Bilateral,EA043-6,,chance1966;murdoch1892;spencer1959,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53814,Na20,EA043,Matrilineal,EA043-3,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53815,Na21,EA043,Bilateral,EA043-6,,birketsmith1929;rasmussen1930,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53816,Na22,EA043,Bilateral,EA043-6,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53817,Na23,EA043,Bilateral,EA043-6,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53818,Na24,EA043,Bilateral,EA043-6,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53819,Na25,EA043,Bilateral,EA043-6,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53820,Na26,EA043,Matrilineal,EA043-3,,osgood1933;osgood1937,with special reference to the Iliamna,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53821,Na27,EA043,Matrilineal,EA043-3,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53822,Na28,EA043,Bilateral,EA043-6,,jenness1937,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53823,Na29,EA043,Bilateral,EA043-6,,goddard1916,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53824,Na3,EA043,Bilateral,EA043-6,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53825,Na30,EA043,Bilateral,EA043-6,,birketsmith1930;macneish1960a;vanstone1965,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53826,Na31,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",skinner1912,with special reference to those of Albany and Moose Creek,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53827,Na32,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53828,Na33,EA043,Patrilineal,EA043-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53829,Na34,EA043,Mixed,EA043-7,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53830,Na35,EA043,Patrilineal,EA043-1,,cameron1890;grant1890,,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53831,Na36,EA043,Patrilineal,EA043-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53832,Na37,EA043,Patrilineal,EA043-1,,landes1937a;landes1937b;landes1938,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53833,Na38,EA043,Patrilineal,EA043-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53834,Na39,EA043,Patrilineal,EA043-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53835,Na4,EA043,Matrilineal,EA043-3,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53836,Na40,EA043,Patrilineal,EA043-1,,kinietz1940c;morgan1871,,1650,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53837,Na41,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA017: Follows Speck and Bock; Jenness postulates 'sibs' (code ""4"")",bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53838,Na42,EA043,Patrilineal,EA043-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53839,Na43,EA043,Bilateral,EA043-6,,balikei1963a;balikei1963b;rasmussen1931,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53840,Na44,EA043,Bilateral,EA043-6,,graburn1964,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53841,Na45,EA043,Bilateral,EA043-6,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53842,Na5,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53843,Na6,EA043,Quasi-lineages,EA043-4,,lantis1946,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53844,Na7,EA043,Quasi-lineages,EA043-4,See related comment(s) by Murdock: variable EA021: Patrilocal bands,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53845,Na8,EA043,Bilateral,EA043-6,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53846,Na9,EA043,Quasi-lineages,EA043-4,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53847,Nb1,EA043,Matrilineal,EA043-3,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53848,Nb10,EA043,Ambilineal,EA043-5,,goldman1940;goldman1941,,1865,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53849,Nb11,EA043,Bilateral,EA043-6,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53850,Nb12,EA043,Bilateral,EA043-6,,barnett1938;barnett1939;barnett1955,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53851,Nb13,EA043,Bilateral,EA043-6,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53852,Nb14,EA043,Ambilineal,EA043-5,,barnett1938;barnett1939;barnett1955,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53853,Nb15,EA043,Bilateral,EA043-6,,curtis1912;stern1934;suttles1954,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53854,Nb16,EA043,Bilateral,EA043-6,,eells1887b;gunthere1927,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53855,Nb17,EA043,Bilateral,EA043-6,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53856,Nb18,EA043,Bilateral,EA043-6,,pettitt1950,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53857,Nb19,EA043,Bilateral,EA043-6,,ray1938;ray1942,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53858,Nb2,EA043,Bilateral,EA043-6,,eells1877;elmendorf1960,Twana Tribe,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53859,Nb20,EA043,Bilateral,EA043-6,,barnett1937;boas1923,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53860,Nb21,EA043,Bilateral,EA043-6,,barnett1937;jacobs1940,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53861,Nb22,EA043,Matrilineal,EA043-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53862,Nb23,EA043,Ambilineal,EA043-5,,boas1938;drucker1950;olson1955,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53863,Nb24,EA043,Ambilineal,EA043-5,,colson1953;swan1868,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53864,Nb25,EA043,Bilateral,EA043-6,,olson1936a;willoughby1889,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53865,Nb26,EA043,Bilateral,EA043-6,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53866,Nb27,EA043,Bilateral,EA043-6,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53867,Nb28,EA043,Bilateral,EA043-6,,barnett1937;drucker1939,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53868,Nb29,EA043,Bilateral,EA043-6,,barnett1937;frachtenberg1914,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53869,Nb3,EA043,Ambilineal,EA043-5,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53870,Nb30,EA043,Bilateral,EA043-6,,sapir1907,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53871,Nb31,EA043,Patrilineal,EA043-1,,barnett1937;drucker1936a;dubois1936,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53872,Nb32,EA043,Bilateral,EA043-6,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53873,Nb33,EA043,Bilateral,EA043-6,,dixon1910;driver1939,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53874,Nb34,EA043,Bilateral,EA043-6,,driver1939;gifford1922[31-33];kroeber1925c,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53875,Nb35,EA043,Bilateral,EA043-6,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53876,Nb36,EA043,Bilateral,EA043-6,,driver1939;gifford1922[29-30];kroeber1925a,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53877,Nb37,EA043,Bilateral,EA043-6,,essene1940;gifford1922,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53878,Nb38,EA043,Bilateral,EA043-6,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53879,Nb39,EA043,Bilateral,EA043-6,,driver1939;nomland1935,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53880,Nb4,EA043,Bilateral,EA043-6,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53881,Nb5,EA043,Matrilineal,EA043-3,,birketsmithanddelaguna1938,Eyak Tribe,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53882,Nb6,EA043,Patrilineal,EA043-1,,driver1939;drucker1936a;dubois1932,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53883,Nb7,EA043,Matrilineal,EA043-3,,garfield1939;garfieldetal1951,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53884,Nb8,EA043,Matrilineal,EA043-3,,lopatin1945;olson1940,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53885,Nb9,EA043,Ambilineal,EA043-5,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53886,Nc1,EA043,Patrilineal,EA043-1,,goldschmidt1951,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53887,Nc10,EA043,Bilateral,EA043-6,,goldman1940;goldman1941,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53888,Nc11,EA043,Bilateral,EA043-6,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53889,Nc12,EA043,Bilateral,EA043-6,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53890,Nc13,EA043,Bilateral,EA043-6,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53891,Nc14,EA043,Bilateral,EA043-6,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53892,Nc15,EA043,Bilateral,EA043-6,,driver1939;gifford1939,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53893,Nc16,EA043,Bilateral,EA043-6,,foster1944;gifford1922[118-119],,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53894,Nc17,EA043,Bilateral,EA043-6,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53895,Nc18,EA043,Bilateral,EA043-6,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53896,Nc19,EA043,Bilateral,EA043-6,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53897,Nc2,EA043,Bilateral,EA043-6,,gifford1917;voegelin1938,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53898,Nc20,EA043,Bilateral,EA043-6,,driver1936;gifford1922[115-118];radin1924,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53899,Nc21,EA043,Bilateral,EA043-6,,gifford1922[91-93];giffordandkroeber1937a,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53900,Nc22,EA043,Patrilineal,EA043-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53901,Nc23,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017: Moieties (code ""6"") in some subgroups",aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53902,Nc24,EA043,Patrilineal,EA043-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53903,Nc25,EA043,Patrilineal,EA043-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53904,Nc26,EA043,Patrilineal,EA043-1,,harrington1942;mason1912,,1770,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53905,Nc27,EA043,Bilateral,EA043-6,,driver1937;gifford1917,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53906,Nc28,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017: Or possibly moieties (code ""6"")",harrington1942;kroeber1925f,,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53907,Nc29,EA043,Patrilineal,EA043-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53908,Nc3,EA043,Patrilineal,EA043-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53909,Nc30,EA043,Patrilineal,EA043-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53910,Nc31,EA043,Patrilineal,EA043-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53911,Nc32,EA043,Patrilineal,EA043-1,"See related comment(s) by Murdock: variable EA017: But Strong reports moieties (code ""6"")",drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53912,Nc33,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: But White suggests that the moieties were matrilineal,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53913,Nc34,EA043,Patrilineal,EA043-1,,meigs1939,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53914,Nc4,EA043,Bilateral,EA043-6,,garth1944;garth1953;voegelin1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53915,Nc5,EA043,Patrilineal,EA043-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53916,Nc6,EA043,Patrilineal,EA043-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53917,Nc7,EA043,Bilateral,EA043-6,,essene1942;foster1944;gifford1922[118-122],,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53918,Nc8,EA043,Bilateral,EA043-6,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53919,Nc9,EA043,Bilateral,EA043-6,,ray1963;voegelin1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53920,Nd1,EA043,Bilateral,EA043-6,,murdock1958;ray1942,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53921,Nd10,EA043,Bilateral,EA043-6,,ray1942;teit1900,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53922,Nd11,EA043,Bilateral,EA043-6,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53923,Nd12,EA043,Bilateral,EA043-6,,ray1942;teit1930;turneyhigh1937,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53924,Nd13,EA043,Bilateral,EA043-6,,ray1942;teit1930,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53925,Nd14,EA043,Bilateral,EA043-6,,ray1942;teit1930,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53926,Nd15,EA043,Bilateral,EA043-6,,clineetal1938,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53927,Nd16,EA043,Bilateral,EA043-6,,ray1942;teit1928,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53928,Nd17,EA043,Bilateral,EA043-6,,jacobs1932;ray1942,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53929,Nd18,EA043,Bilateral,EA043-6,,spierandsapir1930,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53930,Nd19,EA043,Bilateral,EA043-6,,ray1939;ray1942;rigsby1963,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53931,Nd2,EA043,Bilateral,EA043-6,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53932,Nd20,EA043,Bilateral,EA043-6,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53933,Nd21,EA043,Bilateral,EA043-6,,stewart1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53934,Nd22,EA043,Bilateral,EA043-6,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53935,Nd23,EA043,Bilateral,EA043-6,,stewart1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53936,Nd24,EA043,Bilateral,EA043-6,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53937,Nd25,EA043,Bilateral,EA043-6,,steward1941;stewart1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53938,Nd26,EA043,Bilateral,EA043-6,,riddell1960,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53939,Nd27,EA043,Bilateral,EA043-6,,park1934;park1937;park1938a;stewart1941,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53940,Nd28,EA043,Bilateral,EA043-6,,stewart1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53941,Nd29,EA043,Bilateral,EA043-6,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53942,Nd3,EA043,Quasi-lineages,EA043-4,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53943,Nd30,EA043,Bilateral,EA043-6,,driver1937;steward1933,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53944,Nd31,EA043,Bilateral,EA043-6,,driver1937;steward1938,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53945,Nd32,EA043,Bilateral,EA043-6,,driver1937;steward1938,with special reference to those of Saline Valley,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53946,Nd33,EA043,Bilateral,EA043-6,,steward1938;steward1941,including the Belted Range group,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53947,Nd34,EA043,Bilateral,EA043-6,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53948,Nd35,EA043,Bilateral,EA043-6,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53949,Nd36,EA043,Bilateral,EA043-6,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53950,Nd37,EA043,Bilateral,EA043-6,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53951,Nd38,EA043,Bilateral,EA043-6,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53952,Nd39,EA043,Bilateral,EA043-6,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53953,Nd4,EA043,Bilateral,EA043-6,,ray1932;ray1942,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53954,Nd40,EA043,Bilateral,EA043-6,,steward1938;steward1943,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53955,Nd41,EA043,Bilateral,EA043-6,,steward1938;steward1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53956,Nd42,EA043,Bilateral,EA043-6,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53957,Nd43,EA043,Bilateral,EA043-6,,harris1940;steward1941,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53958,Nd44,EA043,Bilateral,EA043-6,,steward1938;steward1941,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53959,Nd45,EA043,Bilateral,EA043-6,,murphyandmurphy1960;steward1938;steward1943,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53960,Nd46,EA043,Bilateral,EA043-6,,lowie1909;steward1938;steward1943,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53961,Nd47,EA043,Bilateral,EA043-6,,hultkrantz1957;lowie1909;steward1938,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53962,Nd48,EA043,Bilateral,EA043-6,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53963,Nd49,EA043,Bilateral,EA043-6,,kelly1964;stewart1942,including the Kaiparowits band,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53964,Nd5,EA043,Bilateral,EA043-6,,hoebel1939;steward1943,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53965,Nd50,EA043,Bilateral,EA043-6,,kelly1964,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53966,Nd51,EA043,Bilateral,EA043-6,,lowie1924;watkins1945,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53967,Nd52,EA043,Bilateral,EA043-6,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53968,Nd53,EA043,Bilateral,EA043-6,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53969,Nd54,EA043,Bilateral,EA043-6,,drucker1937;kroeber1925g,Colorado River Reservation,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +53970,Nd55,EA043,Bilateral,EA043-6,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53971,Nd56,EA043,Bilateral,EA043-6,,kelly1964;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53972,Nd57,EA043,Bilateral,EA043-6,,steward1938;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53973,Nd58,EA043,Bilateral,EA043-6,,gifford1917;lowie1924;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53974,Nd59,EA043,Bilateral,EA043-6,,stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53975,Nd6,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA017: There are weak agamous patrimoieties whose sole function is to oppose each other in games,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53976,Nd60,EA043,Bilateral,EA043-6,,stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53977,Nd61,EA043,Bilateral,EA043-6,,stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53978,Nd62,EA043,Bilateral,EA043-6,,lowie1924;stewart1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53979,Nd63,EA043,Bilateral,EA043-6,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53980,Nd64,EA043,Bilateral,EA043-6,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53981,Nd65,EA043,Bilateral,EA043-6,,drucker1941;kniffenetal1935,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53982,Nd66,EA043,Bilateral,EA043-6,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53983,Nd67,EA043,Bilateral,EA043-6,,gifford1936,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53984,Nd7,EA043,Bilateral,EA043-6,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53985,Nd8,EA043,Bilateral,EA043-6,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53986,Nd9,EA043,Bilateral,EA043-6,,hilltout1905;ray1942;teit1906b,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53987,Ne1,EA043,Bilateral,EA043-6,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53988,Ne10,EA043,Bilateral,EA043-6,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53989,Ne11,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Possibly quasi-lineages (code ""6""), if the band is regarded as a quasi-lineage",denig1930;lowie1910;rodnick1938,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53990,Ne12,EA043,Bilateral,EA043-6,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53991,Ne13,EA043,Bilateral,EA043-6,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53992,Ne14,EA043,Patrilineal,EA043-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53993,Ne15,EA043,Matrilineal,EA043-3,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53994,Ne16,EA043,Bilateral,EA043-6,,gatschet1891;schaedel1949,,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53995,Ne17,EA043,Bilateral,EA043-6,,lowie1923;mooney1898;richardson1940,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53996,Ne18,EA043,Bilateral,EA043-6,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53997,Ne19,EA043,Bilateral,EA043-6,,mandelbaum1940;skinner1914a,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53998,Ne2,EA043,Bilateral,EA043-6,,mcallister1937,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +53999,Ne20,EA043,Bilateral,EA043-6,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54000,Ne21,EA043,Bilateral,EA043-6,,driverandmassey1957;garcia1760;romneynd,,1760,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54001,Ne3,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or quite possibly bilateral (inferred) (code ""1"")",gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54002,Ne4,EA043,Matrilineal,EA043-3,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54003,Ne5,EA043,Bilateral,EA043-6,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54004,Ne6,EA043,Matrilineal,EA043-3,,bowers1950;lowie1917a;willandspinden1906,,1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54005,Ne7,EA043,Bilateral,EA043-6,,honigmann1956a;jenness1938,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54006,Ne8,EA043,Bilateral,EA043-6,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54007,Ne9,EA043,Bilateral,EA043-6,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54008,Nf10,EA043,Patrilineal,EA043-1,,morgan1871;skinner1926,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54009,Nf11,EA043,Patrilineal,EA043-1,,whitman1937,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54010,Nf12,EA043,Patrilineal,EA043-1,,dorsey1897;howard1965b,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54011,Nf13,EA043,Patrilineal,EA043-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54012,Nf14,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA019: But castes were matrilineal, much as among the Natchez",parsons1941;swanton1942b,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54013,Nf15,EA043,Patrilineal,EA043-1,,hockett1938;jones1913;morgan1871,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54014,Nf2,EA043,Patrilineal,EA043-1,,michelson1935;oestreich1948;radin1923,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54015,Nf3,EA043,Patrilineal,EA043-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54016,Nf4,EA043,Patrilineal,EA043-1,,kinietz1940b;morgan1871,,1720,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54017,Nf5,EA043,Bilateral,EA043-6,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54018,Nf6,EA043,Matrilineal,EA043-3,"See related comment(s) by Murdock: variable EA019: Though not specifically attested, matrilineages are suggested by analysis of the kinship terminology; variable EA021: Or perhaps 'bilateral' (inferred) (code ""1"")",dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54019,Nf7,EA043,Mixed,EA043-7,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54020,Nf8,EA043,Bilateral,EA043-6,,griffith1954;parson1941;spier1924;swanton1942b,,1770,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54021,Nf9,EA043,Patrilineal,EA043-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54022,Ng1,EA043,Matrilineal,EA043-3,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54023,Ng10,EA043,Mixed,EA043-7,See related comment(s) by Murdock: variable EA019: But the kindred Mohawk and Oneida tribes lacked moieties,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54024,Ng11,EA043,Matrilineal,EA043-3,,eggan1937a;speck1909;swanton1946,,1750,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54025,Ng12,EA043,Matrilineal,EA043-3,,eggan1937a;swanton1931;swanton1946,,1760,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54026,Ng13,EA043,Bilateral,EA043-6,,hallowell1926;speck1818;vetromile1866,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54027,Ng14,EA043,Matrilineal,EA043-3,,swanton1928b;swanton1946,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54028,Ng15,EA043,Bilateral,EA043-6,,haas1939;swanton1911,,1750,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54029,Ng2,EA043,Matrilineal,EA043-3,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54030,Ng3,EA043,Matrilineal,EA043-3,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54031,Ng4,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA017, EA021: Agamous patrilineages are possible",speck1918;speck1940,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54032,Ng5,EA043,Matrilineal,EA043-3,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54033,Ng6,EA043,Matrilineal,EA043-3,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54034,Ng7,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA019: Matrilineages were subsequently borrowed from the Creek, but descent was always matrilineal with respect to social classes",macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54035,Ng8,EA043,Matrilineal,EA043-3,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54036,Ng9,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA019: Sturtevant questions the note that the Catawba were ""probably matrilineal aborginally,"" doubting the reliability of Lederer on the basis of whom the statement was made",speckandschaeffer1942;sturtevant1965;swanton1946,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54037,Nh1,EA043,Bilateral,EA043-6,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54038,Nh10,EA043,Bilateral,EA043-6,,parsons1932a;trager1943,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54039,Nh11,EA043,Bilateral,EA043-6,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54040,Nh12,EA043,Matrilineal,EA043-3,,gifford1940;white1942,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54041,Nh13,EA043,Matrilineal,EA043-3,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54042,Nh14,EA043,Matrilineal,EA043-3,,eggan1950;parson1923,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54043,Nh15,EA043,Bilateral,EA043-6,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54044,Nh16,EA043,Bilateral,EA043-6,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54045,Nh17,EA043,Matrilineal,EA043-3,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54046,Nh18,EA043,Matrilineal,EA043-3,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54047,Nh19,EA043,Patrilineal,EA043-1,,drucker1941;gifford1933,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54048,Nh2,EA043,Matrilineal,EA043-3,,dozier1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54049,Nh20,EA043,Patrilineal,EA043-1,,gifford1931,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54050,Nh21,EA043,Patrilineal,EA043-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54051,Nh22,EA043,Patrilineal,EA043-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54052,Nh23,EA043,Matrilineal,EA043-3,,gifford1932a,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54053,Nh24,EA043,Bilateral,EA043-6,,gifford1940;opler1936a,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54054,Nh25,EA043,Matrilineal,EA043-3,,hawleyetal1943;stevenson1894;white1962,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54055,Nh26,EA043,Bilateral,EA043-6,,harrington1912;parsons1924;parsons1929,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54056,Nh27,EA043,Matrilineal,EA043-3,,white1935,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54057,Nh3,EA043,Matrilineal,EA043-3,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54058,Nh4,EA043,Matrilineal,EA043-3,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54059,Nh5,EA043,Patrilineal,EA043-1,,drucker1941;spier1933,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54060,Nh6,EA043,Bilateral,EA043-6,,parsons1936b;trager1943,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54061,Nh7,EA043,Matrilineal,EA043-3,,dumarest1919;goldfrank1927;parsons1932b,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54062,Nh8,EA043,Matrilineal,EA043-3,,hawley1964;parsons1925;parsons1932b,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54063,Nh9,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA017: But there were agamous ceremonial patrimoieties,parsons1939;trager1943,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54064,Ni1,EA043,Bilateral,EA043-6,,bennettandzingg1935;passin1943,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54065,Ni2,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA017: But there are five agamous and nearly functionless patronymic name groups,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54066,Ni3,EA043,Bilateral,EA043-6,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54067,Ni4,EA043,Bilateral,EA043-6,,ascher1962;kroeber1931;mcgee1898,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54068,Ni5,EA043,Bilateral,EA043-6,,driveranddriver1963,,1570,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54069,Ni6,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA017: But there were five agamous patronymic name groups and agamous patrimoieties,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54070,Ni7,EA043,Bilateral,EA043-6,,beals1943;drucker1941,,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54071,Ni8,EA043,Bilateral,EA043-6,,johnson1950,,1550,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54072,Ni9,EA043,Bilateral,EA043-6,,mason1948;radin1931,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54073,Nj1,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA017: In Ojitlan, persons bearing the same patronym and living in the same community may not marry",merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54074,Nj10,EA043,Bilateral,EA043-6,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54075,Nj11,EA043,Bilateral,EA043-6,,guiterasholmes1948;schuller1927;stresserpeau195253,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54076,Nj12,EA043,Bilateral,EA043-6,,romneyandromney1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54077,Nj13,EA043,Bilateral,EA043-6,,soustelle1937,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54078,Nj14,EA043,Patrilineal,EA043-1,,turnerandolmstead1966,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54079,Nj2,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA021: The ""calpulli"" since they were definitely agamous and nonunilineal, are classed as ramages",holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54080,Nj3,EA043,Bilateral,EA043-6,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54081,Nj4,EA043,Bilateral,EA043-6,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54082,Nj5,EA043,Bilateral,EA043-6,,cowan1946;cowan1947,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54083,Nj6,EA043,Bilateral,EA043-6,,diebold1966,with special reference to San Mateo,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54084,Nj7,EA043,Bilateral,EA043-6,,beals1945,with special reference to Ayutla,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54085,Nj8,EA043,Bilateral,EA043-6,,foster1948,,1500,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54086,Nj9,EA043,Patrilineal,EA043-1,,nutini1962;nutini1965,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54087,Sa1,EA043,Bilateral,EA043-6,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54088,Sa10,EA043,Patrilineal,EA043-1,,baerandbaer1949;tozzer1907,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54089,Sa11,EA043,Patrilineal,EA043-1,,stoll1889,,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54090,Sa12,EA043,Bilateral,EA043-6,,stone1948,,1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54091,Sa13,EA043,Patrilineal,EA043-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54092,Sa14,EA043,Matrilineal,EA043-3,,alphonse1956;johnson1938,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54093,Sa15,EA043,?,EA043-NA,,,,,, +54094,Sa16,EA043,Bilateral,EA043-6,,hagen1943;kirchhoff1948a,,,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54095,Sa17,EA043,Patrilineal,EA043-1,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54096,Sa2,EA043,Patrilineal,EA043-1,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54097,Sa3,EA043,Bilateral,EA043-6,,wisdom1940,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54098,Sa4,EA043,Bilateral,EA043-6,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54099,Sa5,EA043,Matrilineal,EA043-3,"See related comment(s) by Murdock: variable EA019: Formerly moieties (code ""6"")",gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54100,Sa6,EA043,Patrilineal,EA043-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54101,Sa7,EA043,Ambilineal,EA043-5,"See related comment(s) by Murdock: variable EA021: Solien reports ""nonunilineal descent groups""",solien1960a;solien1960b;taylor1951,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54102,Sa8,EA043,Patrilineal,EA043-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54103,Sa9,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54104,Sb1,EA043,Matrilineal,EA043-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54105,Sb2,EA043,Bilateral,EA043-6,,park1946;reicheldolmatoff194951,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54106,Sb3,EA043,Quasi-lineages,EA043-4,See related comment(s) by Murdock: variable EA021: Assuming the core of a matrilocal extended family to be quasi- patrilineage,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54107,Sb4,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA019: But Schwerin reports lineages (code ""3"")",schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54108,Sb5,EA043,Bilateral,EA043-6,,jahn1914;wilbert1959c,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54109,Sb6,EA043,Matrilineal,EA043-3,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54110,Sb7,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",wilbert1961b,with special reference to the Pariri,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54111,Sb8,EA043,?,EA043-NA,"See related comment(s) by Murdock: variable EA019: Descent may have been matrilineal, like inheritance",rouse1948a,,1520,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54112,Sb9,EA043,Bilateral,EA043-6,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54113,Sc1,EA043,Bilateral,EA043-6,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54114,Sc10,EA043,Matrilineal,EA043-3,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54115,Sc11,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",simpson1940b;wilbert1961a,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54116,Sc12,EA043,Bilateral,EA043-6,,farabee1924;kirchhoff1931,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54117,Sc13,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or quite possibly Q from Wilbert's ""familias extensivas matrilineales""",riley1954;wilbert1959a;wilbert1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54118,Sc14,EA043,Bilateral,EA043-6,,coudreau1893,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54119,Sc15,EA043,Bilateral,EA043-6,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54120,Sc16,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54121,Sc17,EA043,Bilateral,EA043-6,,wilbert1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54122,Sc18,EA043,Matrilineal,EA043-3,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54123,Sc2,EA043,Bilateral,EA043-6,,leedsnd,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54124,Sc3,EA043,Quasi-lineages,EA043-4,See related comment(s) by Murdock: variable EA021: From statement that brothers tend to live together in a settlement,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54125,Sc4,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA019, EA021: The ""extended families"" are conceivably localized matrilineages",wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54126,Sc5,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or quite possibly quasi-lineages (code ""6"")",farabee1918,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54127,Sc6,EA043,Matrilineal,EA043-3,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54128,Sc7,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",wilbert1959b,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54129,Sc8,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or perhaps quasi-lineages (code ""6"")",wilbert1958a;wilbert1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54130,Sc9,EA043,Bilateral,EA043-6,,wilbert1960a;wilbert1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54131,Sd1,EA043,Patrilineal,EA043-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54132,Sd2,EA043,Bilateral,EA043-6,,wagley1943;wagleyandgalvao1948a,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54133,Sd3,EA043,Patrilineal,EA043-1,,nimuendaju1926,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54134,Sd4,EA043,Bilateral,EA043-6,,barker1953;zerries1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54135,Sd5,EA043,Patrilineal,EA043-1,,lecock1964;nimuendaju1948,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54136,Sd6,EA043,Bilateral,EA043-6,,migliazza1964,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54137,Sd7,EA043,Bilateral,EA043-6,,fock1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54138,Sd8,EA043,Bilateral,EA043-6,,wilbert1963,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54139,Sd9,EA043,Bilateral,EA043-6,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54140,Se1,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA019: Possibly lineages (code ""3""), though descent is specifically reported to be bilateral; variable EA021: Possibly 'no cognatic kin' (code ""9""), though descent is specifically reported to be bilateral",holmberg1950,Vicinity of the Rio Blanco,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54141,Se10,EA043,Patrilineal,EA043-1,,espinosa1935;metraux1948b;tessmann1930,,1670,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54142,Se11,EA043,Bilateral,EA043-6,,prost1965,,1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54143,Se12,EA043,Patrilineal,EA043-1,,fulop1955,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54144,Se2,EA043,Patrilineal,EA043-1,,leeds1961;nimenuendaju1952,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54145,Se3,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA021: Description of patrifamilies suggests quasi-patrilineages,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54146,Se4,EA043,Patrilineal,EA043-1,,fejos1943,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54147,Se5,EA043,Patrilineal,EA043-1,,goldman1948;goldman1963,Village on Caduiari River,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54148,Se6,EA043,Patrilineal,EA043-1,,murdock1936b;tessmann1930;whitten1915,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54149,Se7,EA043,Bilateral,EA043-6,,heath1959,a mestizo group in lowland Bolivia,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54150,Se8,EA043,Bilateral,EA043-6,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54151,Se9,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA019: But some authors infer matrilineal descent,stcricq1853;stewardandmetraux1948a,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54152,Sf1,EA043,Bilateral,EA043-6,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54153,Sf2,EA043,Patrilineal,EA043-1,See related comment(s) by Murdock: variable EA017: Patrilineages are presumably a pot-contact development,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54154,Sf3,EA043,Bilateral,EA043-6,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54155,Sf4,EA043,Bilateral,EA043-6,,rochereau1919;rochereau1961;wilbert1960b,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54156,Sf5,EA043,Bilateral,EA043-6,,bernalvilla1954;pittierdefabrega1907,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54157,Sf6,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA019: Possibly lineages (code ""3"") in view of reported matrilineal succession; variable EA021: Possibly no cognatic kin groups (code ""9"") in view of reported matrilineal succession",ghisletti1954;kroeber1946;restrepo1895,,1540,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54158,Sf7,EA043,Bilateral,EA043-6,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54159,Sf8,EA043,Bilateral,EA043-6,,matteson1954,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54160,Sf9,EA043,Bilateral,EA043-6,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54161,Sg1,EA043,Bilateral,EA043-6,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54162,Sg2,EA043,Patrilineal,EA043-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54163,Sg3,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA017: But some scholars have inferred patrilineal descent. Entry would be 'lineages' (code ""3"") if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock (1965c));",baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54164,Sg4,EA043,Bilateral,EA043-6,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54165,Sg5,EA043,Bilateral,EA043-6,,bird1946;cooper1917,with special reference to the southern bands,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54166,Sh1,EA043,Bilateral,EA043-6,,karsten1932;pelleschi1896,,1860,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54167,Sh2,EA043,Ambilineal,EA043-5,,oberg1948a;oberg1949,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54168,Sh3,EA043,Bilateral,EA043-6,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54169,Sh4,EA043,Bilateral,EA043-6,,oberg1949,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54170,Sh5,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA019: But Karsten dubiously reports matrilineal descent,karsten1932;nordenskiold1919;rosen1924a,,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54171,Sh6,EA043,Bilateral,EA043-6,,baldus1931;boggiani1894,,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54172,Sh7,EA043,Bilateral,EA043-6,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54173,Sh8,EA043,Bilateral,EA043-6,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54174,Sh9,EA043,Bilateral,EA043-6,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54175,Si1,EA043,Matrilineal,EA043-3,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54176,Si10,EA043,Bilateral,EA043-6,,carneiro1958;carneiroanddole1957;dole1958,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54177,Si2,EA043,Quasi-lineages,EA043-4,"See related comment(s) by Murdock: variable EA021: An inference from the ""tendency for patrilineally related males to live together"" and from the statement that ""the establishment of a patrilineal lineage"" was prevented by the high death rate",levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54178,Si3,EA043,Quasi-lineages,EA043-4,See related comment(s) by Murdock: variable EA021: Patrifamilies strongly suggest quasi-lineages,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54179,Si4,EA043,Bilateral,EA043-6,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54180,Si5,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",oberg1953[1-144],,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54181,Si6,EA043,Bilateral,EA043-6,,schmidt1905;schmidt1942,,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54182,Si7,EA043,Bilateral,EA043-6,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54183,Si8,EA043,Bilateral,EA043-6,,oberg1953[1-144],,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54184,Si9,EA043,Bilateral,EA043-6,,levistrauss1948c;oberg1953[1-144],,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54185,Sj1,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA017: But there are three agamous patrilineal groups which function only in the ceremonial and political life of men,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54186,Sj10,EA043,Bilateral,EA043-6,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54187,Sj11,EA043,Patrilineal,EA043-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54188,Sj2,EA043,Patrilineal,EA043-1,,nimuendaju1942,,1850,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54189,Sj3,EA043,Bilateral,EA043-6,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54190,Sj4,EA043,Matrilineal,EA043-3,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54191,Sj5,EA043,Bilateral,EA043-6,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54192,Sj6,EA043,Bilateral,EA043-6,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54193,Sj7,EA043,?,EA043-NA,"See related comment(s) by Murdock: variable EA017, EA019: Parallel descent, i.e., patrilineal for males and matrilineal for females",mayburylewis1960;nimuendaju1939,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54194,Sj8,EA043,Bilateral,EA043-6,See related comment(s) by Murdock: variable EA021: Inference from extended families with communal dwellings,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54195,Sj9,EA043,Bilateral,EA043-6,"See related comment(s) by Murdock: variables EA017, EA019, EA021: Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963;krause1911;soatesdiniz1962,,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54196,ch12,EA043,Mixed,EA043-7,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54197,ch13,EA043,Mixed,EA043-7,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54198,ch14,EA043,Bilateral,EA043-6,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54199,ch15,EA043,Mixed,EA043-7,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54200,ch16,EA043,Bilateral,EA043-6,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54201,ch17,EA043,Bilateral,EA043-6,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54202,ch18,EA043,Bilateral,EA043-6,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54203,ch19,EA043,Mixed,EA043-7,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54204,ch20,EA043,Bilateral,EA043-6,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54205,ch21,EA043,Bilateral,EA043-6,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54206,ch22,EA043,Bilateral,EA043-6,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54207,ch23,EA043,Bilateral,EA043-6,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54208,ch24,EA043,Bilateral,EA043-6,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54209,ch25,EA043,Bilateral,EA043-6,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54210,ch26,EA043,Mixed,EA043-7,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54211,ch27,EA043,Bilateral,EA043-6,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54212,ch28,EA043,Bilateral,EA043-6,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54213,ec12,EA043,Quasi-lineages,EA043-4,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54214,ec13,EA043,Bilateral,EA043-6,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54215,ec14,EA043,Bilateral,EA043-6,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54216,ec15,EA043,Mixed,EA043-7,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54217,ec16,EA043,Patrilineal,EA043-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54218,ec17,EA043,Patrilineal,EA043-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54219,ec18,EA043,Patrilineal,EA043-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54220,ec19,EA043,Patrilineal,EA043-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54221,ec20,EA043,Patrilineal,EA043-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54222,ec21,EA043,Patrilineal,EA043-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54223,Aa1,EA044,Activity is absent,EA044-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +54224,Aa2,EA044,Activity is absent,EA044-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +54225,Aa3,EA044,Males alone,EA044-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +54226,Aa4,EA044,?,EA044-NA,,,,,, +54227,Aa5,EA044,Activity is absent,EA044-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +54228,Aa6,EA044,?,EA044-NA,,,,,, +54229,Aa7,EA044,Activity is absent,EA044-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +54230,Aa8,EA044,Activity is absent,EA044-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +54231,Aa9,EA044,Activity is absent,EA044-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +54232,Ab1,EA044,Males alone,EA044-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +54233,Ab10,EA044,Males alone,EA044-1,,hunter1936,,1936,EthnographicAtlas_1967_p64, +54234,Ab11,EA044,Males alone,EA044-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +54235,Ab12,EA044,Males alone,EA044-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +54236,Ab13,EA044,Males alone,EA044-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +54237,Ab14,EA044,Males alone,EA044-1,Formerly though not recently,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +54238,Ab15,EA044,Males alone,EA044-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +54239,Ab16,EA044,?,EA044-NA,,,,,, +54240,Ab17,EA044,?,EA044-NA,,,,,, +54241,Ab18,EA044,Males alone,EA044-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +54242,Ab19,EA044,Males alone,EA044-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +54243,Ab2,EA044,Males alone,EA044-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +54244,Ab20,EA044,?,EA044-NA,,,,,, +54245,Ab21a,EA044,?,EA044-NA,,,,,, +54246,Ab21b,EA044,?,EA044-NA,,,,,, +54247,Ab22,EA044,?,EA044-NA,,,,,, +54248,Ab3,EA044,Males alone,EA044-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +54249,Ab4,EA044,Males alone,EA044-1,,junod1927,,1920,EthnographicAtlas_1967_p64, +54250,Ab5,EA044,Males alone,EA044-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +54251,Ab6,EA044,Males alone,EA044-1,But no longer practiced,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +54252,Ab7,EA044,?,EA044-NA,,,,,, +54253,Ab8,EA044,Males alone,EA044-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +54254,Ab9,EA044,Males alone,EA044-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +54255,Ac1,EA044,Males alone,EA044-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +54256,Ac10,EA044,Males alone,EA044-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +54257,Ac11,EA044,Males alone,EA044-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +54258,Ac12,EA044,Males alone,EA044-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p64, +54259,Ac13,EA044,Males alone,EA044-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p64, +54260,Ac14,EA044,Males alone,EA044-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p64, +54261,Ac15,EA044,?,EA044-NA,,,,,, +54262,Ac16,EA044,?,EA044-NA,,,,,, +54263,Ac17,EA044,Males alone,EA044-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +54264,Ac18,EA044,Males alone,EA044-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +54265,Ac19,EA044,?,EA044-NA,,,,,, +54266,Ac2,EA044,?,EA044-NA,,,,,, +54267,Ac20,EA044,?,EA044-NA,,,,,, +54268,Ac21,EA044,?,EA044-NA,,,,,, +54269,Ac22,EA044,?,EA044-NA,,,,,, +54270,Ac23,EA044,Males alone,EA044-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +54271,Ac24,EA044,?,EA044-NA,,,,,, +54272,Ac25,EA044,?,EA044-NA,,,,,, +54273,Ac26,EA044,?,EA044-NA,,,,,, +54274,Ac27,EA044,?,EA044-NA,,,,,, +54275,Ac28,EA044,Males alone,EA044-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +54276,Ac29,EA044,?,EA044-NA,,,,,, +54277,Ac3,EA044,Males alone,EA044-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +54278,Ac30,EA044,Males alone,EA044-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +54279,Ac31,EA044,Males alone,EA044-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +54280,Ac32,EA044,?,EA044-NA,,,,,, +54281,Ac33,EA044,Activity is absent,EA044-9,"Formerly 'males alone' (EA044 code ""1"") with craft specialization (EA055 code ""3"")",lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +54282,Ac34,EA044,Males alone,EA044-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +54283,Ac35,EA044,?,EA044-NA,,,,,, +54284,Ac36,EA044,Males alone,EA044-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p64, +54285,Ac37,EA044,?,EA044-NA,,,,,, +54286,Ac38,EA044,Males alone,EA044-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +54287,Ac39,EA044,Males alone,EA044-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +54288,Ac4,EA044,Males alone,EA044-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +54289,Ac40,EA044,?,EA044-NA,,,,,, +54290,Ac41,EA044,?,EA044-NA,,,,,, +54291,Ac42,EA044,?,EA044-NA,,,,,, +54292,Ac43,EA044,?,EA044-NA,,,,,, +54293,Ac5,EA044,Males alone,EA044-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +54294,Ac6,EA044,Males alone,EA044-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +54295,Ac7,EA044,Males alone,EA044-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +54296,Ac8,EA044,Males alone,EA044-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +54297,Ac9,EA044,Males alone,EA044-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +54298,Ad1,EA044,Activity is absent,EA044-9,Despised as slave occupation,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +54299,Ad10,EA044,Males alone,EA044-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +54300,Ad11,EA044,Males alone,EA044-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +54301,Ad12,EA044,?,EA044-NA,,,,,, +54302,Ad13,EA044,Males alone,EA044-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +54303,Ad14,EA044,Males alone,EA044-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p68, +54304,Ad15,EA044,Males alone,EA044-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p68, +54305,Ad16,EA044,Males alone,EA044-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +54306,Ad17,EA044,Males alone,EA044-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +54307,Ad18,EA044,?,EA044-NA,,,,,, +54308,Ad19,EA044,Males alone,EA044-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +54309,Ad2,EA044,Males alone,EA044-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +54310,Ad20,EA044,Males alone,EA044-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +54311,Ad21,EA044,?,EA044-NA,,,,,, +54312,Ad22,EA044,Males alone,EA044-1,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +54313,Ad23,EA044,?,EA044-NA,,,,,, +54314,Ad24,EA044,Males alone,EA044-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +54315,Ad25,EA044,?,EA044-NA,,,,,, +54316,Ad26,EA044,Males alone,EA044-1,,sick1916,,1910,EthnographicAtlas_1967_p68, +54317,Ad27,EA044,Males alone,EA044-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +54318,Ad28,EA044,Males alone,EA044-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +54319,Ad29,EA044,Males alone,EA044-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +54320,Ad3,EA044,Males alone,EA044-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +54321,Ad30,EA044,Males alone,EA044-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +54322,Ad31,EA044,Males alone,EA044-1,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +54323,Ad32,EA044,Males alone,EA044-1,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p68, +54324,Ad33,EA044,Males alone,EA044-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +54325,Ad34,EA044,Males alone,EA044-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +54326,Ad35,EA044,Males alone,EA044-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +54327,Ad36,EA044,?,EA044-NA,,,,,, +54328,Ad37,EA044,?,EA044-NA,,,,,, +54329,Ad38,EA044,?,EA044-NA,,,,,, +54330,Ad39,EA044,Males alone,EA044-1,,gray1963,,1950,EthnographicAtlas_1967_p68, +54331,Ad4,EA044,Males alone,EA044-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +54332,Ad40,EA044,?,EA044-NA,,,,,, +54333,Ad41,EA044,Males alone,EA044-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +54334,Ad42,EA044,Males alone,EA044-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p68, +54335,Ad43,EA044,?,EA044-NA,,,,,, +54336,Ad44,EA044,Males alone,EA044-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +54337,Ad45,EA044,Males alone,EA044-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +54338,Ad46,EA044,Males alone,EA044-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +54339,Ad47,EA044,Males alone,EA044-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +54340,Ad48,EA044,Males alone,EA044-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +54341,Ad49,EA044,Males alone,EA044-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +54342,Ad5,EA044,?,EA044-NA,,,,,, +54343,Ad50,EA044,Males alone,EA044-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +54344,Ad51,EA044,Males alone,EA044-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +54345,Ad6,EA044,Males alone,EA044-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +54346,Ad7,EA044,Males alone,EA044-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +54347,Ad8,EA044,Males alone,EA044-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +54348,Ad9,EA044,Males alone,EA044-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +54349,Ae1,EA044,Males alone,EA044-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +54350,Ae10,EA044,Males alone,EA044-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +54351,Ae11,EA044,Males alone,EA044-1,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +54352,Ae12,EA044,Males alone,EA044-1,Formerly,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +54353,Ae13,EA044,?,EA044-NA,,,,,, +54354,Ae14,EA044,Males alone,EA044-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +54355,Ae15,EA044,Males alone,EA044-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p68, +54356,Ae16,EA044,?,EA044-NA,,,,,, +54357,Ae17,EA044,Males alone,EA044-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +54358,Ae18,EA044,Males alone,EA044-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +54359,Ae19,EA044,?,EA044-NA,,,,,, +54360,Ae2,EA044,Males alone,EA044-1,Formerly,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +54361,Ae20,EA044,?,EA044-NA,,,,,, +54362,Ae21,EA044,?,EA044-NA,,,,,, +54363,Ae22,EA044,?,EA044-NA,,,,,, +54364,Ae23,EA044,?,EA044-NA,,,,,, +54365,Ae24,EA044,?,EA044-NA,,,,,, +54366,Ae25,EA044,?,EA044-NA,,,,,, +54367,Ae26,EA044,?,EA044-NA,,,,,, +54368,Ae27,EA044,?,EA044-NA,,,,,, +54369,Ae28,EA044,?,EA044-NA,,,,,, +54370,Ae29,EA044,Males alone,EA044-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +54371,Ae3,EA044,Males alone,EA044-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +54372,Ae30,EA044,?,EA044-NA,,,,,, +54373,Ae31,EA044,Males alone,EA044-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +54374,Ae32,EA044,?,EA044-NA,,,,,, +54375,Ae33,EA044,Males alone,EA044-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +54376,Ae34,EA044,?,EA044-NA,,,,,, +54377,Ae35,EA044,?,EA044-NA,,,,,, +54378,Ae36,EA044,?,EA044-NA,,,,,, +54379,Ae37,EA044,?,EA044-NA,,,,,, +54380,Ae38,EA044,?,EA044-NA,,,,,, +54381,Ae39,EA044,Males alone,EA044-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +54382,Ae4,EA044,Males alone,EA044-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +54383,Ae40,EA044,?,EA044-NA,,,,,, +54384,Ae41,EA044,Males alone,EA044-1,,andersson1953,,1940,EthnographicAtlas_1967_p68, +54385,Ae42,EA044,?,EA044-NA,,,,,, +54386,Ae43,EA044,?,EA044-NA,,,,,, +54387,Ae44,EA044,?,EA044-NA,,,,,, +54388,Ae45,EA044,?,EA044-NA,,,,,, +54389,Ae46,EA044,?,EA044-NA,,,,,, +54390,Ae47,EA044,?,EA044-NA,,,,,, +54391,Ae48,EA044,Males alone,EA044-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p68, +54392,Ae49,EA044,?,EA044-NA,,,,,, +54393,Ae5,EA044,Males alone,EA044-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +54394,Ae50,EA044,Males alone,EA044-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +54395,Ae51,EA044,Males alone,EA044-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +54396,Ae52,EA044,Males alone,EA044-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +54397,Ae53,EA044,?,EA044-NA,,,,,, +54398,Ae54,EA044,?,EA044-NA,,,,,, +54399,Ae55,EA044,Males alone,EA044-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +54400,Ae56,EA044,?,EA044-NA,,,,,, +54401,Ae57,EA044,?,EA044-NA,,,,,, +54402,Ae58,EA044,?,EA044-NA,,,,,, +54403,Ae59,EA044,?,EA044-NA,,,,,, +54404,Ae6,EA044,Males alone,EA044-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +54405,Ae7,EA044,Males alone,EA044-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +54406,Ae8,EA044,Males alone,EA044-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +54407,Ae9,EA044,Males alone,EA044-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +54408,Af1,EA044,Males alone,EA044-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +54409,Af10,EA044,Males alone,EA044-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +54410,Af11,EA044,Males alone,EA044-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +54411,Af12,EA044,?,EA044-NA,,,,,, +54412,Af13,EA044,Males alone,EA044-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +54413,Af14,EA044,Males alone,EA044-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +54414,Af15,EA044,Males alone,EA044-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +54415,Af16,EA044,?,EA044-NA,,,,,, +54416,Af17,EA044,?,EA044-NA,,,,,, +54417,Af18,EA044,?,EA044-NA,,,,,, +54418,Af19,EA044,?,EA044-NA,,,,,, +54419,Af2,EA044,Males alone,EA044-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +54420,Af20,EA044,?,EA044-NA,,,,,, +54421,Af21,EA044,?,EA044-NA,,,,,, +54422,Af22,EA044,Males alone,EA044-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +54423,Af23,EA044,Males alone,EA044-1,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +54424,Af24,EA044,Males alone,EA044-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +54425,Af25,EA044,Males alone,EA044-1,But smiths are aliens of the Ibo tribes,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +54426,Af26,EA044,?,EA044-NA,,,,,, +54427,Af27,EA044,?,EA044-NA,,,,,, +54428,Af28,EA044,Males alone,EA044-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +54429,Af29,EA044,?,EA044-NA,,,,,, +54430,Af3,EA044,Males alone,EA044-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +54431,Af30,EA044,?,EA044-NA,,,,,, +54432,Af31,EA044,?,EA044-NA,,,,,, +54433,Af32,EA044,Males alone,EA044-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54434,Af33,EA044,Males alone,EA044-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54435,Af34,EA044,?,EA044-NA,,,,,, +54436,Af35,EA044,?,EA044-NA,,,,,, +54437,Af36,EA044,Males alone,EA044-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +54438,Af37,EA044,?,EA044-NA,,,,,, +54439,Af38,EA044,?,EA044-NA,,,,,, +54440,Af39,EA044,?,EA044-NA,,,,,, +54441,Af4,EA044,?,EA044-NA,,,,,, +54442,Af40,EA044,?,EA044-NA,,,,,, +54443,Af41,EA044,?,EA044-NA,,,,,, +54444,Af42,EA044,Males alone,EA044-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +54445,Af43,EA044,?,EA044-NA,,,,,, +54446,Af44,EA044,?,EA044-NA,,,,,, +54447,Af45,EA044,?,EA044-NA,,,,,, +54448,Af46,EA044,?,EA044-NA,,,,,, +54449,Af47,EA044,?,EA044-NA,,,,,, +54450,Af48,EA044,?,EA044-NA,,,,,, +54451,Af49,EA044,Males alone,EA044-1,,schwab1947,,1940,EthnographicAtlas_1967_p72, +54452,Af5,EA044,Males alone,EA044-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +54453,Af50,EA044,?,EA044-NA,,,,,, +54454,Af51,EA044,Males alone,EA044-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +54455,Af52,EA044,Males alone,EA044-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +54456,Af53,EA044,?,EA044-NA,,,,,, +54457,Af54,EA044,Males alone,EA044-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +54458,Af55,EA044,?,EA044-NA,,,,,, +54459,Af56,EA044,Males alone,EA044-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +54460,Af57,EA044,Males alone,EA044-1,But these specialists are aliens of the Yalunka tribe,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +54461,Af58,EA044,?,EA044-NA,,,,,, +54462,Af6,EA044,Males alone,EA044-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +54463,Af7,EA044,?,EA044-NA,,,,,, +54464,Af8,EA044,Males alone,EA044-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +54465,Af9,EA044,Males alone,EA044-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p72, +54466,Ag1,EA044,Males alone,EA044-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +54467,Ag10,EA044,Males alone,EA044-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +54468,Ag11,EA044,Males alone,EA044-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +54469,Ag12,EA044,Males alone,EA044-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +54470,Ag13,EA044,Males alone,EA044-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p72, +54471,Ag14,EA044,?,EA044-NA,,,,,, +54472,Ag15,EA044,?,EA044-NA,,,,,, +54473,Ag16,EA044,?,EA044-NA,,,,,, +54474,Ag17,EA044,?,EA044-NA,,,,,, +54475,Ag18,EA044,?,EA044-NA,,,,,, +54476,Ag19,EA044,?,EA044-NA,,,,,, +54477,Ag2,EA044,Males alone,EA044-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +54478,Ag20,EA044,?,EA044-NA,,,,,, +54479,Ag21,EA044,Males alone,EA044-1,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +54480,Ag22,EA044,Males alone,EA044-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +54481,Ag23,EA044,?,EA044-NA,,,,,, +54482,Ag24,EA044,?,EA044-NA,,,,,, +54483,Ag25,EA044,Males alone,EA044-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p72, +54484,Ag26,EA044,Males alone,EA044-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p72, +54485,Ag27,EA044,Males alone,EA044-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p72, +54486,Ag28,EA044,?,EA044-NA,,,,,, +54487,Ag29,EA044,?,EA044-NA,,,,,, +54488,Ag3,EA044,Males alone,EA044-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +54489,Ag30,EA044,Males alone,EA044-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +54490,Ag31,EA044,Males alone,EA044-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p72, +54491,Ag32,EA044,Males alone,EA044-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +54492,Ag33,EA044,?,EA044-NA,,,,,, +54493,Ag34,EA044,?,EA044-NA,,,,,, +54494,Ag35,EA044,?,EA044-NA,,,,,, +54495,Ag36,EA044,?,EA044-NA,,,,,, +54496,Ag37,EA044,?,EA044-NA,,,,,, +54497,Ag38,EA044,?,EA044-NA,,,,,, +54498,Ag39,EA044,Males alone,EA044-1,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +54499,Ag4,EA044,Males alone,EA044-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +54500,Ag40,EA044,?,EA044-NA,,,,,, +54501,Ag41,EA044,Males alone,EA044-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p72, +54502,Ag42,EA044,?,EA044-NA,,,,,, +54503,Ag43,EA044,?,EA044-NA,,,,,, +54504,Ag44,EA044,?,EA044-NA,,,,,, +54505,Ag45,EA044,Males alone,EA044-1,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +54506,Ag46,EA044,?,EA044-NA,,,,,, +54507,Ag47,EA044,Males alone,EA044-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +54508,Ag48,EA044,Males alone,EA044-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +54509,Ag49,EA044,Males alone,EA044-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +54510,Ag5,EA044,Males alone,EA044-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +54511,Ag50,EA044,Males alone,EA044-1,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +54512,Ag51,EA044,?,EA044-NA,,,,,, +54513,Ag52,EA044,?,EA044-NA,,,,,, +54514,Ag53,EA044,Males alone,EA044-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +54515,Ag54,EA044,Males alone,EA044-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +54516,Ag6,EA044,Males alone,EA044-1,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +54517,Ag7,EA044,?,EA044-NA,,,,,, +54518,Ag8,EA044,Males alone,EA044-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +54519,Ag9,EA044,Males alone,EA044-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +54520,Ah1,EA044,Activity is absent,EA044-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54521,Ah10,EA044,?,EA044-NA,,,,,, +54522,Ah11,EA044,Males alone,EA044-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +54523,Ah12,EA044,?,EA044-NA,,,,,, +54524,Ah13,EA044,Males alone,EA044-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +54525,Ah14,EA044,Males alone,EA044-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p76, +54526,Ah15,EA044,Males alone,EA044-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +54527,Ah16,EA044,?,EA044-NA,,,,,, +54528,Ah17,EA044,?,EA044-NA,,,,,, +54529,Ah18,EA044,?,EA044-NA,,,,,, +54530,Ah19,EA044,?,EA044-NA,,,,,, +54531,Ah2,EA044,Males alone,EA044-1,,meek1931a,,1920,EthnographicAtlas_1967_p76, +54532,Ah20,EA044,?,EA044-NA,,,,,, +54533,Ah21,EA044,?,EA044-NA,,,,,, +54534,Ah22,EA044,?,EA044-NA,,,,,, +54535,Ah23,EA044,?,EA044-NA,,,,,, +54536,Ah24,EA044,?,EA044-NA,,,,,, +54537,Ah25,EA044,?,EA044-NA,,,,,, +54538,Ah26,EA044,?,EA044-NA,,,,,, +54539,Ah27,EA044,?,EA044-NA,,,,,, +54540,Ah28,EA044,?,EA044-NA,,,,,, +54541,Ah29,EA044,?,EA044-NA,,,,,, +54542,Ah3,EA044,Males alone,EA044-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +54543,Ah30,EA044,Males alone,EA044-1,,meek1931b,,1920,EthnographicAtlas_1967_p76, +54544,Ah31,EA044,Males alone,EA044-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p76, +54545,Ah32,EA044,?,EA044-NA,,,,,, +54546,Ah33,EA044,Males alone,EA044-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p76, +54547,Ah34,EA044,?,EA044-NA,,,,,, +54548,Ah35,EA044,?,EA044-NA,,,,,, +54549,Ah36,EA044,?,EA044-NA,,,,,, +54550,Ah37,EA044,?,EA044-NA,,,,,, +54551,Ah38,EA044,Males alone,EA044-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +54552,Ah39,EA044,Males alone,EA044-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +54553,Ah4,EA044,Males alone,EA044-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p76, +54554,Ah5,EA044,?,EA044-NA,,,,,, +54555,Ah6,EA044,?,EA044-NA,,,,,, +54556,Ah7,EA044,Males alone,EA044-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +54557,Ah8,EA044,Males alone,EA044-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +54558,Ah9,EA044,Males alone,EA044-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +54559,Ai1,EA044,Males alone,EA044-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +54560,Ai10,EA044,Activity is absent,EA044-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +54561,Ai11,EA044,Males alone,EA044-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +54562,Ai12,EA044,?,EA044-NA,,,,,, +54563,Ai13,EA044,?,EA044-NA,,,,,, +54564,Ai14,EA044,Males alone,EA044-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +54565,Ai15,EA044,Males alone,EA044-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +54566,Ai16,EA044,?,EA044-NA,,,,,, +54567,Ai17,EA044,Males alone,EA044-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +54568,Ai18,EA044,Activity is absent,EA044-9,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +54569,Ai19,EA044,?,EA044-NA,,,,,, +54570,Ai2,EA044,?,EA044-NA,,,,,, +54571,Ai20,EA044,?,EA044-NA,,,,,, +54572,Ai21,EA044,Males alone,EA044-1,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p76, +54573,Ai22,EA044,?,EA044-NA,,,,,, +54574,Ai23,EA044,Males alone,EA044-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +54575,Ai24,EA044,?,EA044-NA,,,,,, +54576,Ai25,EA044,Males alone,EA044-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +54577,Ai26,EA044,Males alone,EA044-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +54578,Ai27,EA044,?,EA044-NA,,,,,, +54579,Ai28,EA044,Males alone,EA044-1,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +54580,Ai29,EA044,Males alone,EA044-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +54581,Ai3,EA044,Males alone,EA044-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +54582,Ai30,EA044,Males alone,EA044-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +54583,Ai31,EA044,Males alone,EA044-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +54584,Ai32,EA044,Males alone,EA044-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p76, +54585,Ai33,EA044,Males alone,EA044-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p76, +54586,Ai34,EA044,Males alone,EA044-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +54587,Ai35,EA044,Males alone,EA044-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +54588,Ai36,EA044,Males alone,EA044-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +54589,Ai37,EA044,?,EA044-NA,,,,,, +54590,Ai38,EA044,Activity is absent,EA044-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +54591,Ai39,EA044,Activity is absent,EA044-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +54592,Ai4,EA044,?,EA044-NA,,,,,, +54593,Ai40,EA044,Activity is absent,EA044-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +54594,Ai41,EA044,Activity is absent,EA044-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +54595,Ai42,EA044,Activity is absent,EA044-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +54596,Ai43,EA044,Activity is absent,EA044-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +54597,Ai44,EA044,?,EA044-NA,,,,,, +54598,Ai45,EA044,?,EA044-NA,,,,,, +54599,Ai46,EA044,?,EA044-NA,,,,,, +54600,Ai47,EA044,Activity is absent,EA044-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +54601,Ai5,EA044,Males alone,EA044-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +54602,Ai6,EA044,Males alone,EA044-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +54603,Ai7,EA044,Males alone,EA044-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +54604,Ai8,EA044,Activity is absent,EA044-9,Except for a few acculturated male craftsmen,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +54605,Ai9,EA044,Males alone,EA044-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +54606,Aj1,EA044,?,EA044-NA,,,,,, +54607,Aj10,EA044,?,EA044-NA,,,,,, +54608,Aj11,EA044,Males alone,EA044-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p80, +54609,Aj12,EA044,Males alone,EA044-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +54610,Aj13,EA044,Males alone,EA044-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +54611,Aj14,EA044,?,EA044-NA,,,,,, +54612,Aj15,EA044,Males alone,EA044-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +54613,Aj16,EA044,Males alone,EA044-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +54614,Aj17,EA044,Males alone,EA044-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +54615,Aj18,EA044,Activity is absent,EA044-9,Iron products obtained by trade from the Dime or Maji tribes,jensen1959,,1950,EthnographicAtlas_1967_p80, +54616,Aj19,EA044,Males alone,EA044-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p80, +54617,Aj2,EA044,Males alone,EA044-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +54618,Aj20,EA044,Males alone,EA044-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p80, +54619,Aj21,EA044,Activity is absent,EA044-9,Ironware is obtained by trade from the Labwor,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +54620,Aj22,EA044,Males alone,EA044-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +54621,Aj23,EA044,Activity is absent,EA044-9,The products are obtained by trade from the Hill Suk,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +54622,Aj24,EA044,Males alone,EA044-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +54623,Aj25,EA044,Males alone,EA044-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +54624,Aj26,EA044,Males alone,EA044-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +54625,Aj27,EA044,?,EA044-NA,,,,,, +54626,Aj28,EA044,Males alone,EA044-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +54627,Aj29,EA044,?,EA044-NA,,,,,, +54628,Aj3,EA044,Activity is absent,EA044-9,"There are a few smiths; iron working is ""a recent innovation""",evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +54629,Aj30,EA044,?,EA044-NA,,,,,, +54630,Aj31,EA044,?,EA044-NA,,,,,, +54631,Aj4,EA044,Males alone,EA044-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +54632,Aj5,EA044,?,EA044-NA,,,,,, +54633,Aj6,EA044,Males alone,EA044-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +54634,Aj7,EA044,Males alone,EA044-1,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +54635,Aj8,EA044,Males alone,EA044-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +54636,Aj9,EA044,Males alone,EA044-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +54637,Ca1,EA044,Males alone,EA044-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +54638,Ca10,EA044,Males alone,EA044-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +54639,Ca11,EA044,Males alone,EA044-1,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +54640,Ca12,EA044,Males alone,EA044-1,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +54641,Ca13,EA044,Males alone,EA044-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +54642,Ca14,EA044,Males alone,EA044-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +54643,Ca15,EA044,Males alone,EA044-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +54644,Ca16,EA044,Males alone,EA044-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +54645,Ca17,EA044,Activity is absent,EA044-9,Products obtained by trade with neighboring tribes,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +54646,Ca18,EA044,?,EA044-NA,Ironware obtained by trade with other tribes,cerulli1956;jensen1959;ricci1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +54647,Ca19,EA044,Males alone,EA044-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +54648,Ca2,EA044,Males alone,EA044-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +54649,Ca20,EA044,?,EA044-NA,,,,,, +54650,Ca21,EA044,Males alone,EA044-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +54651,Ca22,EA044,Males alone,EA044-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +54652,Ca23,EA044,Males alone,EA044-1,,jensen1959,,1950,EthnographicAtlas_1967_p80, +54653,Ca24,EA044,Males alone,EA044-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +54654,Ca25,EA044,Males alone,EA044-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +54655,Ca26,EA044,?,EA044-NA,,,,,, +54656,Ca27,EA044,?,EA044-NA,,,,,, +54657,Ca28,EA044,Activity is absent,EA044-9,Iron wares are obtained in trade from the Dime,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +54658,Ca29,EA044,Males alone,EA044-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +54659,Ca3,EA044,Males alone,EA044-1,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p80, +54660,Ca30,EA044,Males alone,EA044-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +54661,Ca31,EA044,Males alone,EA044-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +54662,Ca32,EA044,Activity is absent,EA044-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +54663,Ca33,EA044,Activity is absent,EA044-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +54664,Ca34,EA044,?,EA044-NA,,,,,, +54665,Ca35,EA044,?,EA044-NA,,,,,, +54666,Ca36,EA044,?,EA044-NA,,,,,, +54667,Ca37,EA044,?,EA044-NA,,,,,, +54668,Ca38,EA044,?,EA044-NA,,,,,, +54669,Ca39,EA044,Males alone,EA044-1,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +54670,Ca4,EA044,Males alone,EA044-1,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +54671,Ca40,EA044,Males alone,EA044-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +54672,Ca41,EA044,Males alone,EA044-1,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +54673,Ca42,EA044,Males alone,EA044-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +54674,Ca43,EA044,?,EA044-NA,,,,,, +54675,Ca5,EA044,?,EA044-NA,,,,,, +54676,Ca6,EA044,Males alone,EA044-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p80, +54677,Ca7,EA044,Males alone,EA044-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +54678,Ca8,EA044,Males alone,EA044-1,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p80, +54679,Ca9,EA044,?,EA044-NA,,,,,, +54680,Cb1,EA044,?,EA044-NA,,,,,, +54681,Cb10,EA044,?,EA044-NA,,,,,, +54682,Cb11,EA044,?,EA044-NA,,,,,, +54683,Cb12,EA044,?,EA044-NA,,,,,, +54684,Cb13,EA044,?,EA044-NA,,,,,, +54685,Cb14,EA044,?,EA044-NA,,,,,, +54686,Cb15,EA044,?,EA044-NA,,,,,, +54687,Cb16,EA044,?,EA044-NA,,,,,, +54688,Cb17,EA044,Males alone,EA044-1,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +54689,Cb18,EA044,Males alone,EA044-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p80, +54690,Cb19,EA044,Males alone,EA044-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p80, +54691,Cb2,EA044,Males alone,EA044-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +54692,Cb20,EA044,Males alone,EA044-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +54693,Cb21,EA044,?,EA044-NA,,,,,, +54694,Cb22,EA044,?,EA044-NA,,,,,, +54695,Cb23,EA044,Males alone,EA044-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +54696,Cb24,EA044,?,EA044-NA,,,,,, +54697,Cb25,EA044,?,EA044-NA,,,,,, +54698,Cb26,EA044,Males alone,EA044-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +54699,Cb27,EA044,?,EA044-NA,,,,,, +54700,Cb28,EA044,?,EA044-NA,,,,,, +54701,Cb29,EA044,?,EA044-NA,,,,,, +54702,Cb3,EA044,Males alone,EA044-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +54703,Cb4,EA044,?,EA044-NA,,,,,, +54704,Cb5,EA044,Males alone,EA044-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p80, +54705,Cb6,EA044,Males alone,EA044-1,,woodnd,,1920,EthnographicAtlas_1967_p80, +54706,Cb7,EA044,Males alone,EA044-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p80, +54707,Cb8,EA044,?,EA044-NA,,,,,, +54708,Cb9,EA044,Males alone,EA044-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +54709,Cc1,EA044,Males alone,EA044-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +54710,Cc10,EA044,Males alone,EA044-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +54711,Cc11,EA044,?,EA044-NA,,,,,, +54712,Cc12,EA044,Males alone,EA044-1,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +54713,Cc13,EA044,?,EA044-NA,,,,,, +54714,Cc14,EA044,Males alone,EA044-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +54715,Cc15,EA044,?,EA044-NA,,,,,, +54716,Cc16,EA044,?,EA044-NA,,,,,, +54717,Cc17,EA044,Males alone,EA044-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +54718,Cc18,EA044,?,EA044-NA,,,,,, +54719,Cc19,EA044,?,EA044-NA,,,,,, +54720,Cc2,EA044,Males alone,EA044-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +54721,Cc20,EA044,Males alone,EA044-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +54722,Cc3,EA044,Activity is absent,EA044-9,Alien itinerant smiths only,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +54723,Cc4,EA044,Males alone,EA044-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +54724,Cc5,EA044,Males alone,EA044-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +54725,Cc6,EA044,?,EA044-NA,,,,,, +54726,Cc7,EA044,?,EA044-NA,,,,,, +54727,Cc8,EA044,?,EA044-NA,,,,,, +54728,Cc9,EA044,Males alone,EA044-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +54729,Cd1,EA044,Males alone,EA044-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +54730,Cd10,EA044,?,EA044-NA,,,,,, +54731,Cd11,EA044,Activity is absent,EA044-9,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p84, +54732,Cd12,EA044,Males alone,EA044-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +54733,Cd13,EA044,?,EA044-NA,,,,,, +54734,Cd14,EA044,?,EA044-NA,,,,,, +54735,Cd15,EA044,?,EA044-NA,,,,,, +54736,Cd16,EA044,?,EA044-NA,,,,,, +54737,Cd17,EA044,?,EA044-NA,,,,,, +54738,Cd18,EA044,?,EA044-NA,,,,,, +54739,Cd19,EA044,?,EA044-NA,,,,,, +54740,Cd2,EA044,Males alone,EA044-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +54741,Cd20,EA044,?,EA044-NA,,,,,, +54742,Cd21,EA044,?,EA044-NA,,,,,, +54743,Cd3,EA044,Males alone,EA044-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +54744,Cd4,EA044,Males alone,EA044-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +54745,Cd5,EA044,Males alone,EA044-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +54746,Cd6,EA044,Males alone,EA044-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +54747,Cd7,EA044,?,EA044-NA,,,,,, +54748,Cd8,EA044,?,EA044-NA,,,,,, +54749,Cd9,EA044,?,EA044-NA,,,,,, +54750,Ce1,EA044,Males alone,EA044-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +54751,Ce2,EA044,?,EA044-NA,,,,,, +54752,Ce3,EA044,Males alone,EA044-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +54753,Ce4,EA044,Males alone,EA044-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54754,Ce5,EA044,Males alone,EA044-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +54755,Ce6,EA044,Males alone,EA044-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +54756,Ce7,EA044,Males alone,EA044-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +54757,Ce8,EA044,Males alone,EA044-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +54758,Cf1,EA044,Males alone,EA044-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +54759,Cf2,EA044,?,EA044-NA,,,,,, +54760,Cf3,EA044,Males alone,EA044-1,,munch1945,,1930,EthnographicAtlas_1967_p84, +54761,Cf4,EA044,Males alone,EA044-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +54762,Cf5,EA044,Males alone,EA044-1,,miner1939,,1930,EthnographicAtlas_1967_p84, +54763,Cg1,EA044,Males alone,EA044-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +54764,Cg2,EA044,Males alone,EA044-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +54765,Cg3,EA044,Males alone,EA044-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +54766,Cg4,EA044,Activity is absent,EA044-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +54767,Cg5,EA044,?,EA044-NA,,,,,, +54768,Ch1,EA044,Males alone,EA044-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +54769,Ch10,EA044,?,EA044-NA,,,,,, +54770,Ch11,EA044,"Activity present, sex diff. unspecified",EA044-8,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +54771,Ch2,EA044,Males alone,EA044-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +54772,Ch3,EA044,Males alone,EA044-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +54773,Ch4,EA044,Males alone,EA044-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p84, +54774,Ch5,EA044,Males alone,EA044-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +54775,Ch6,EA044,Males alone,EA044-1,,ember1954,,1910,EthnographicAtlas_1967_p84, +54776,Ch7,EA044,Males alone,EA044-1,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +54777,Ch8,EA044,Males alone,EA044-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p84, +54778,Ch9,EA044,Males alone,EA044-1,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +54779,Ci1,EA044,Males alone,EA044-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +54780,Ci10,EA044,Males alone,EA044-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +54781,Ci11,EA044,Males alone,EA044-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +54782,Ci12,EA044,Males alone,EA044-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +54783,Ci2,EA044,Males alone,EA044-1,,grigolia1939,,1930,EthnographicAtlas_1967_p84, +54784,Ci3,EA044,Males alone,EA044-1,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p84, +54785,Ci4,EA044,Males alone,EA044-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +54786,Ci5,EA044,Males alone,EA044-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +54787,Ci6,EA044,Males alone,EA044-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p84, +54788,Ci7,EA044,Males alone,EA044-1,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p84, +54789,Ci8,EA044,?,EA044-NA,,,,,, +54790,Ci9,EA044,?,EA044-NA,,,,,, +54791,Cj1,EA044,Males alone,EA044-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +54792,Cj10,EA044,Males alone,EA044-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +54793,Cj2,EA044,Males alone,EA044-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +54794,Cj3,EA044,Males alone,EA044-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +54795,Cj4,EA044,Males alone,EA044-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +54796,Cj5,EA044,Males alone,EA044-1,,dickson1949,,1930,EthnographicAtlas_1967_p88, +54797,Cj6,EA044,?,EA044-NA,,,,,, +54798,Cj7,EA044,Males alone,EA044-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +54799,Cj8,EA044,Males alone,EA044-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +54800,Cj9,EA044,Males alone,EA044-1,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +54801,Ea1,EA044,Males alone,EA044-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +54802,Ea10,EA044,Males alone,EA044-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +54803,Ea11,EA044,Males alone,EA044-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +54804,Ea12,EA044,Males alone,EA044-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +54805,Ea13,EA044,"Both, males more",EA044-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +54806,Ea2,EA044,Males alone,EA044-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +54807,Ea3,EA044,Males alone,EA044-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +54808,Ea4,EA044,Males alone,EA044-1,,barth1956b,,1950,EthnographicAtlas_1967_p88, +54809,Ea5,EA044,Males alone,EA044-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +54810,Ea6,EA044,Males alone,EA044-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +54811,Ea7,EA044,Males alone,EA044-1,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +54812,Ea8,EA044,Males alone,EA044-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +54813,Ea9,EA044,Males alone,EA044-1,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +54814,Eb1,EA044,Males alone,EA044-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +54815,Eb2,EA044,Males alone,EA044-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +54816,Eb3,EA044,Males alone,EA044-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +54817,Eb4,EA044,?,EA044-NA,,,,,, +54818,Eb5,EA044,?,EA044-NA,,,,,, +54819,Eb6,EA044,?,EA044-NA,,,,,, +54820,Eb7,EA044,Males alone,EA044-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +54821,Eb8,EA044,?,EA044-NA,,,,,, +54822,Ec1,EA044,Males alone,EA044-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +54823,Ec10,EA044,?,EA044-NA,,,,,, +54824,Ec11,EA044,Activity is absent,EA044-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +54825,Ec2,EA044,Males alone,EA044-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54826,Ec3,EA044,Males alone,EA044-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +54827,Ec4,EA044,Activity is absent,EA044-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +54828,Ec5,EA044,Males alone,EA044-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +54829,Ec6,EA044,Activity is absent,EA044-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p88, +54830,Ec7,EA044,Activity is absent,EA044-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +54831,Ec8,EA044,?,EA044-NA,,,,,, +54832,Ec9,EA044,?,EA044-NA,,,,,, +54833,Ed1,EA044,Males alone,EA044-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +54834,Ed10,EA044,Males alone,EA044-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +54835,Ed13,EA044,?,EA044-NA,,,,,, +54836,Ed14,EA044,?,EA044-NA,,,,,, +54837,Ed15a,EA044,?,EA044-NA,,,,,, +54838,Ed15b,EA044,Males alone,EA044-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +54839,Ed16,EA044,?,EA044-NA,,,,,, +54840,Ed2,EA044,Males alone,EA044-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +54841,Ed3,EA044,Males alone,EA044-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +54842,Ed4,EA044,Males alone,EA044-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +54843,Ed5,EA044,Sex irrelevant,EA044-7,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54844,Ed6,EA044,Males alone,EA044-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +54845,Ed7,EA044,Males alone,EA044-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +54846,Ed8,EA044,Males alone,EA044-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +54847,Ed9,EA044,Activity is absent,EA044-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +54848,Ee1,EA044,Males alone,EA044-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +54849,Ee2,EA044,Males alone,EA044-1,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +54850,Ee3,EA044,Activity is absent,EA044-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +54851,Ee4,EA044,Males alone,EA044-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +54852,Ee5,EA044,Males alone,EA044-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +54853,Ee6,EA044,Males alone,EA044-1,"But smiths are Nepali, not Sherpa",furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +54854,Ee7,EA044,?,EA044-NA,,,,,, +54855,Ee8,EA044,Males alone,EA044-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +54856,Ef1,EA044,Males alone,EA044-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +54857,Ef10,EA044,?,EA044-NA,,,,,, +54858,Ef11,EA044,Males alone,EA044-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +54859,Ef2,EA044,Males alone,EA044-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +54860,Ef3,EA044,?,EA044-NA,,,,,, +54861,Ef4,EA044,?,EA044-NA,,,,,, +54862,Ef5,EA044,Males alone,EA044-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +54863,Ef6,EA044,?,EA044-NA,,,,,, +54864,Ef7,EA044,Males alone,EA044-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +54865,Ef8,EA044,Males alone,EA044-1,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +54866,Ef9,EA044,Males alone,EA044-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54867,Eg1,EA044,Activity is absent,EA044-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54868,Eg10,EA044,Males alone,EA044-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +54869,Eg11,EA044,?,EA044-NA,,,,,, +54870,Eg12,EA044,?,EA044-NA,,,,,, +54871,Eg13,EA044,Activity is absent,EA044-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54872,Eg14,EA044,Activity is absent,EA044-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +54873,Eg2,EA044,Males alone,EA044-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +54874,Eg3,EA044,Activity is absent,EA044-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +54875,Eg4,EA044,Activity is absent,EA044-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +54876,Eg5,EA044,Males alone,EA044-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +54877,Eg6,EA044,Males alone,EA044-1,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +54878,Eg7,EA044,?,EA044-NA,,,,,, +54879,Eg8,EA044,Males alone,EA044-1,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +54880,Eg9,EA044,?,EA044-NA,,,,,, +54881,Eh1,EA044,Activity is absent,EA044-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +54882,Eh10,EA044,?,EA044-NA,,,,,, +54883,Eh2,EA044,Males alone,EA044-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +54884,Eh3,EA044,Males alone,EA044-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +54885,Eh4,EA044,Activity is absent,EA044-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54886,Eh5,EA044,Males alone,EA044-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +54887,Eh6,EA044,Males alone,EA044-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p92, +54888,Eh7,EA044,Males alone,EA044-1,"But McLeod reports 'activity is absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +54889,Eh8,EA044,Males alone,EA044-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +54890,Eh9,EA044,Males alone,EA044-1,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +54891,Ei1,EA044,Activity is absent,EA044-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54892,Ei10,EA044,Activity is absent,EA044-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +54893,Ei11,EA044,Males alone,EA044-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +54894,Ei12,EA044,?,EA044-NA,,,,,, +54895,Ei13,EA044,Males alone,EA044-1,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +54896,Ei14,EA044,Males alone,EA044-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +54897,Ei15,EA044,?,EA044-NA,,,,,, +54898,Ei16,EA044,Males alone,EA044-1,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +54899,Ei17,EA044,?,EA044-NA,,,,,, +54900,Ei18,EA044,Males alone,EA044-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +54901,Ei19,EA044,Males alone,EA044-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +54902,Ei2,EA044,Males alone,EA044-1,,mills1922,,1920,EthnographicAtlas_1967_p92, +54903,Ei20,EA044,?,EA044-NA,,,,,, +54904,Ei3,EA044,Males alone,EA044-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +54905,Ei4,EA044,Males alone,EA044-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +54906,Ei5,EA044,Males alone,EA044-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +54907,Ei6,EA044,Males alone,EA044-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +54908,Ei7,EA044,Activity is absent,EA044-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +54909,Ei8,EA044,Males alone,EA044-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +54910,Ei9,EA044,Activity is absent,EA044-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +54911,Ej1,EA044,Activity is absent,EA044-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +54912,Ej10,EA044,Males alone,EA044-1,Itinerant smiths,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +54913,Ej11,EA044,Males alone,EA044-1,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p92, +54914,Ej12,EA044,Males alone,EA044-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +54915,Ej13,EA044,Males alone,EA044-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +54916,Ej14,EA044,Activity is absent,EA044-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54917,Ej15,EA044,Males alone,EA044-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +54918,Ej16,EA044,Activity is absent,EA044-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +54919,Ej2,EA044,Males alone,EA044-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +54920,Ej3,EA044,Activity is absent,EA044-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +54921,Ej4,EA044,Males alone,EA044-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +54922,Ej5,EA044,Males alone,EA044-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +54923,Ej6,EA044,Activity is absent,EA044-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +54924,Ej7,EA044,Males alone,EA044-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +54925,Ej8,EA044,Males alone,EA044-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +54926,Ej9,EA044,Males alone,EA044-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +54927,Ia1,EA044,Males alone,EA044-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +54928,Ia10,EA044,Males alone,EA044-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +54929,Ia11,EA044,Males alone,EA044-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +54930,Ia12,EA044,Males alone,EA044-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +54931,Ia13,EA044,Activity is absent,EA044-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +54932,Ia14,EA044,Males alone,EA044-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +54933,Ia15,EA044,?,EA044-NA,,,,,, +54934,Ia16,EA044,Males alone,EA044-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +54935,Ia17,EA044,?,EA044-NA,,,,,, +54936,Ia18,EA044,?,EA044-NA,,,,,, +54937,Ia2,EA044,Males alone,EA044-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +54938,Ia3,EA044,Males alone,EA044-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +54939,Ia4,EA044,?,EA044-NA,,,,,, +54940,Ia5,EA044,Males alone,EA044-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +54941,Ia6,EA044,Males alone,EA044-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54942,Ia7,EA044,Males alone,EA044-1,,fox1954,,1950,EthnographicAtlas_1967_p92, +54943,Ia8,EA044,?,EA044-NA,,,,,, +54944,Ia9,EA044,Males alone,EA044-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +54945,Ib1,EA044,Males alone,EA044-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54946,Ib2,EA044,Males alone,EA044-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54947,Ib3,EA044,Males alone,EA044-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +54948,Ib4,EA044,Males alone,EA044-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +54949,Ib5,EA044,?,EA044-NA,,,,,, +54950,Ib6,EA044,Males alone,EA044-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +54951,Ib7,EA044,Activity is absent,EA044-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +54952,Ib8,EA044,Activity is absent,EA044-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +54953,Ib9,EA044,?,EA044-NA,,,,,, +54954,Ic1,EA044,Males alone,EA044-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54955,Ic10,EA044,Activity is absent,EA044-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +54956,Ic11,EA044,Males alone,EA044-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54957,Ic12,EA044,Males alone,EA044-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +54958,Ic13,EA044,?,EA044-NA,,,,,, +54959,Ic2,EA044,Males alone,EA044-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +54960,Ic3,EA044,Males alone,EA044-1,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +54961,Ic4,EA044,?,EA044-NA,,,,,, +54962,Ic5,EA044,Males alone,EA044-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +54963,Ic6,EA044,Males alone,EA044-1,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +54964,Ic7,EA044,Males alone,EA044-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +54965,Ic8,EA044,Activity is absent,EA044-9,,pleyte1893,,1890,EthnographicAtlas_1967_p96, +54966,Ic9,EA044,Males alone,EA044-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p96, +54967,Id1,EA044,Activity is absent,EA044-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +54968,Id10,EA044,Activity is absent,EA044-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +54969,Id11,EA044,Activity is absent,EA044-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +54970,Id12,EA044,Activity is absent,EA044-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +54971,Id13,EA044,Activity is absent,EA044-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +54972,Id2,EA044,Activity is absent,EA044-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +54973,Id3,EA044,Activity is absent,EA044-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +54974,Id4,EA044,Activity is absent,EA044-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +54975,Id5,EA044,Activity is absent,EA044-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +54976,Id6,EA044,Activity is absent,EA044-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +54977,Id7,EA044,Activity is absent,EA044-9,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +54978,Id8,EA044,Activity is absent,EA044-9,,roth1890,,1830,EthnographicAtlas_1967_p96, +54979,Id9,EA044,Activity is absent,EA044-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +54980,Ie1,EA044,Activity is absent,EA044-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54981,Ie10,EA044,Activity is absent,EA044-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +54982,Ie11,EA044,Activity is absent,EA044-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +54983,Ie12,EA044,Activity is absent,EA044-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54984,Ie13,EA044,Activity is absent,EA044-9,,landtman1927,,1920,EthnographicAtlas_1967_p96, +54985,Ie14,EA044,Activity is absent,EA044-9,,haddon1908,,1900,EthnographicAtlas_1967_p96, +54986,Ie15,EA044,Activity is absent,EA044-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +54987,Ie16,EA044,Activity is absent,EA044-9,,williams194041,,1940,EthnographicAtlas_1967_p96, +54988,Ie17,EA044,Activity is absent,EA044-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +54989,Ie18,EA044,Activity is absent,EA044-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +54990,Ie19,EA044,Activity is absent,EA044-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +54991,Ie2,EA044,Activity is absent,EA044-9,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +54992,Ie20,EA044,Activity is absent,EA044-9,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +54993,Ie21,EA044,Activity is absent,EA044-9,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +54994,Ie22,EA044,Activity is absent,EA044-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +54995,Ie23,EA044,Activity is absent,EA044-9,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +54996,Ie24,EA044,Activity is absent,EA044-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +54997,Ie25,EA044,Activity is absent,EA044-9,,williamson1912,,1920,EthnographicAtlas_1967_p96, +54998,Ie26,EA044,Activity is absent,EA044-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +54999,Ie27,EA044,Activity is absent,EA044-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +55000,Ie28,EA044,Activity is absent,EA044-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +55001,Ie29,EA044,Activity is absent,EA044-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55002,Ie3,EA044,Activity is absent,EA044-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55003,Ie30,EA044,Activity is absent,EA044-9,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +55004,Ie31,EA044,Activity is absent,EA044-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +55005,Ie32,EA044,Activity is absent,EA044-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +55006,Ie33,EA044,Activity is absent,EA044-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +55007,Ie34,EA044,?,EA044-NA,,,,,, +55008,Ie35,EA044,Activity is absent,EA044-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +55009,Ie36,EA044,?,EA044-NA,,,,,, +55010,Ie37,EA044,?,EA044-NA,,,,,, +55011,Ie38,EA044,Activity is absent,EA044-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +55012,Ie39,EA044,Activity is absent,EA044-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +55013,Ie4,EA044,Activity is absent,EA044-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55014,Ie5,EA044,Activity is absent,EA044-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +55015,Ie6,EA044,Activity is absent,EA044-9,,held1947,,1930,EthnographicAtlas_1967_p96, +55016,Ie7,EA044,Activity is absent,EA044-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +55017,Ie8,EA044,Activity is absent,EA044-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +55018,Ie9,EA044,Activity is absent,EA044-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +55019,If1,EA044,Activity is absent,EA044-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55020,If10,EA044,?,EA044-NA,,,,,, +55021,If11,EA044,Activity is absent,EA044-9,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +55022,If12,EA044,Activity is absent,EA044-9,,mason1954,,1940,EthnographicAtlas_1967_p100, +55023,If13,EA044,Activity is absent,EA044-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +55024,If14,EA044,Activity is absent,EA044-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +55025,If15,EA044,Activity is absent,EA044-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +55026,If16,EA044,Activity is absent,EA044-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +55027,If17,EA044,Activity is absent,EA044-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +55028,If2,EA044,Activity is absent,EA044-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +55029,If3,EA044,Activity is absent,EA044-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +55030,If4,EA044,Activity is absent,EA044-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +55031,If5,EA044,Activity is absent,EA044-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +55032,If6,EA044,Activity is absent,EA044-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +55033,If7,EA044,Activity is absent,EA044-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +55034,If8,EA044,Males alone,EA044-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +55035,If9,EA044,Activity is absent,EA044-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +55036,Ig1,EA044,Activity is absent,EA044-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +55037,Ig10,EA044,Activity is absent,EA044-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +55038,Ig11,EA044,Activity is absent,EA044-9,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +55039,Ig12,EA044,Activity is absent,EA044-9,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p100, +55040,Ig13,EA044,Activity is absent,EA044-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +55041,Ig14,EA044,Activity is absent,EA044-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +55042,Ig15,EA044,?,EA044-NA,,,,,, +55043,Ig16,EA044,?,EA044-NA,,,,,, +55044,Ig17,EA044,?,EA044-NA,,,,,, +55045,Ig18,EA044,?,EA044-NA,,,,,, +55046,Ig19,EA044,?,EA044-NA,,,,,, +55047,Ig2,EA044,Activity is absent,EA044-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +55048,Ig20,EA044,Activity is absent,EA044-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +55049,Ig21,EA044,Activity is absent,EA044-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +55050,Ig3,EA044,Activity is absent,EA044-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +55051,Ig4,EA044,Activity is absent,EA044-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +55052,Ig5,EA044,Activity is absent,EA044-9,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +55053,Ig6,EA044,Activity is absent,EA044-9,,ivens1927,,1900,EthnographicAtlas_1967_p100, +55054,Ig7,EA044,Activity is absent,EA044-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +55055,Ig8,EA044,?,EA044-NA,,,,,, +55056,Ig9,EA044,Activity is absent,EA044-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +55057,Ih1,EA044,Activity is absent,EA044-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +55058,Ih10,EA044,Activity is absent,EA044-9,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55059,Ih11,EA044,?,EA044-NA,,,,,, +55060,Ih12,EA044,?,EA044-NA,,,,,, +55061,Ih13,EA044,?,EA044-NA,,,,,, +55062,Ih14,EA044,Activity is absent,EA044-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +55063,Ih2,EA044,Activity is absent,EA044-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55064,Ih3,EA044,Activity is absent,EA044-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p100, +55065,Ih4,EA044,Activity is absent,EA044-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55066,Ih5,EA044,Activity is absent,EA044-9,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p100, +55067,Ih6,EA044,Activity is absent,EA044-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +55068,Ih7,EA044,Activity is absent,EA044-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +55069,Ih8,EA044,Activity is absent,EA044-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +55070,Ih9,EA044,Activity is absent,EA044-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55071,Ii1,EA044,Activity is absent,EA044-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +55072,Ii10,EA044,?,EA044-NA,,,,,, +55073,Ii12,EA044,Activity is absent,EA044-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55074,Ii13,EA044,Activity is absent,EA044-9,,burrows1937,,1830,EthnographicAtlas_1967_p100, +55075,Ii14,EA044,Activity is absent,EA044-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +55076,Ii2,EA044,Activity is absent,EA044-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +55077,Ii3,EA044,Activity is absent,EA044-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +55078,Ii4,EA044,Activity is absent,EA044-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +55079,Ii5,EA044,Activity is absent,EA044-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +55080,Ii6,EA044,Activity is absent,EA044-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +55081,Ii7,EA044,Activity is absent,EA044-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +55082,Ii8,EA044,Activity is absent,EA044-9,,burrows1936,,1840,EthnographicAtlas_1967_p100, +55083,Ii9,EA044,Activity is absent,EA044-9,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +55084,Ij1,EA044,Activity is absent,EA044-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +55085,Ij10,EA044,?,EA044-NA,,,,,, +55086,Ij2,EA044,Activity is absent,EA044-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +55087,Ij3,EA044,Activity is absent,EA044-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +55088,Ij4,EA044,Activity is absent,EA044-9,,buck1932a,,1850,EthnographicAtlas_1967_p104, +55089,Ij5,EA044,Activity is absent,EA044-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +55090,Ij6,EA044,Activity is absent,EA044-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +55091,Ij7,EA044,Activity is absent,EA044-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +55092,Ij8,EA044,Activity is absent,EA044-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +55093,Ij9,EA044,Activity is absent,EA044-9,,metraux1940,,1860,EthnographicAtlas_1967_p104, +55094,Na1,EA044,Activity is absent,EA044-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +55095,Na10,EA044,Activity is absent,EA044-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +55096,Na11,EA044,Activity is absent,EA044-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +55097,Na12,EA044,Activity is absent,EA044-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +55098,Na13,EA044,Activity is absent,EA044-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +55099,Na14,EA044,Activity is absent,EA044-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +55100,Na15,EA044,Activity is absent,EA044-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +55101,Na16,EA044,Activity is absent,EA044-9,,osgood1931,,1860,EthnographicAtlas_1967_p104, +55102,Na17,EA044,Activity is absent,EA044-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55103,Na19,EA044,Activity is absent,EA044-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +55104,Na2,EA044,Activity is absent,EA044-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +55105,Na20,EA044,Activity is absent,EA044-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +55106,Na21,EA044,Activity is absent,EA044-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +55107,Na22,EA044,Activity is absent,EA044-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +55108,Na23,EA044,Activity is absent,EA044-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +55109,Na24,EA044,Activity is absent,EA044-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +55110,Na25,EA044,Males alone,EA044-1,"Though ironworking is very old, it is confined to cold hammering and filing",birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +55111,Na26,EA044,Activity is absent,EA044-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +55112,Na27,EA044,Activity is absent,EA044-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +55113,Na28,EA044,Activity is absent,EA044-9,,jenness1937,,1880,EthnographicAtlas_1967_p104, +55114,Na29,EA044,Activity is absent,EA044-9,,goddard1916,,1850,EthnographicAtlas_1967_p104, +55115,Na3,EA044,Activity is absent,EA044-9,But some cold working of native copper,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +55116,Na30,EA044,Activity is absent,EA044-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +55117,Na31,EA044,Activity is absent,EA044-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +55118,Na32,EA044,Activity is absent,EA044-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +55119,Na33,EA044,Activity is absent,EA044-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +55120,Na34,EA044,Activity is absent,EA044-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +55121,Na35,EA044,Activity is absent,EA044-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +55122,Na36,EA044,Activity is absent,EA044-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +55123,Na37,EA044,Activity is absent,EA044-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +55124,Na38,EA044,Activity is absent,EA044-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +55125,Na39,EA044,Activity is absent,EA044-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +55126,Na4,EA044,Activity is absent,EA044-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +55127,Na40,EA044,Activity is absent,EA044-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +55128,Na41,EA044,Activity is absent,EA044-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +55129,Na42,EA044,Activity is absent,EA044-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +55130,Na43,EA044,Activity is absent,EA044-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +55131,Na44,EA044,?,EA044-NA,,,,,, +55132,Na45,EA044,Activity is absent,EA044-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +55133,Na5,EA044,Activity is absent,EA044-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +55134,Na6,EA044,Activity is absent,EA044-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +55135,Na7,EA044,Activity is absent,EA044-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +55136,Na8,EA044,Activity is absent,EA044-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +55137,Na9,EA044,Activity is absent,EA044-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55138,Nb1,EA044,Activity is absent,EA044-9,But men made artifacts of beaten copper,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +55139,Nb10,EA044,Activity is absent,EA044-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +55140,Nb11,EA044,Activity is absent,EA044-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +55141,Nb12,EA044,Activity is absent,EA044-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +55142,Nb13,EA044,Activity is absent,EA044-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +55143,Nb14,EA044,Activity is absent,EA044-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +55144,Nb15,EA044,Activity is absent,EA044-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +55145,Nb16,EA044,Activity is absent,EA044-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +55146,Nb17,EA044,Activity is absent,EA044-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +55147,Nb18,EA044,Activity is absent,EA044-9,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +55148,Nb19,EA044,Activity is absent,EA044-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +55149,Nb2,EA044,Activity is absent,EA044-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +55150,Nb20,EA044,Activity is absent,EA044-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +55151,Nb21,EA044,Activity is absent,EA044-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +55152,Nb22,EA044,Activity is absent,EA044-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +55153,Nb23,EA044,Activity is absent,EA044-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +55154,Nb24,EA044,Activity is absent,EA044-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +55155,Nb25,EA044,Activity is absent,EA044-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +55156,Nb26,EA044,Activity is absent,EA044-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +55157,Nb27,EA044,Activity is absent,EA044-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +55158,Nb28,EA044,Activity is absent,EA044-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +55159,Nb29,EA044,Activity is absent,EA044-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +55160,Nb3,EA044,Activity is absent,EA044-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +55161,Nb30,EA044,Activity is absent,EA044-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +55162,Nb31,EA044,Activity is absent,EA044-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +55163,Nb32,EA044,Activity is absent,EA044-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +55164,Nb33,EA044,Activity is absent,EA044-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +55165,Nb34,EA044,Activity is absent,EA044-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +55166,Nb35,EA044,Activity is absent,EA044-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +55167,Nb36,EA044,Activity is absent,EA044-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +55168,Nb37,EA044,Activity is absent,EA044-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +55169,Nb38,EA044,Activity is absent,EA044-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +55170,Nb39,EA044,Activity is absent,EA044-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +55171,Nb4,EA044,Activity is absent,EA044-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +55172,Nb5,EA044,Activity is absent,EA044-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +55173,Nb6,EA044,Activity is absent,EA044-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +55174,Nb7,EA044,Activity is absent,EA044-9,But artifacts were made of beaten copper,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +55175,Nb8,EA044,Activity is absent,EA044-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +55176,Nb9,EA044,Activity is absent,EA044-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +55177,Nc1,EA044,Activity is absent,EA044-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +55178,Nc10,EA044,Activity is absent,EA044-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +55179,Nc11,EA044,Activity is absent,EA044-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +55180,Nc12,EA044,Activity is absent,EA044-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +55181,Nc13,EA044,Activity is absent,EA044-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +55182,Nc14,EA044,Activity is absent,EA044-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +55183,Nc15,EA044,Activity is absent,EA044-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +55184,Nc16,EA044,Activity is absent,EA044-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +55185,Nc17,EA044,Activity is absent,EA044-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +55186,Nc18,EA044,Activity is absent,EA044-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +55187,Nc19,EA044,Activity is absent,EA044-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +55188,Nc2,EA044,Activity is absent,EA044-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +55189,Nc20,EA044,Activity is absent,EA044-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +55190,Nc21,EA044,Activity is absent,EA044-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +55191,Nc22,EA044,Activity is absent,EA044-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +55192,Nc23,EA044,Activity is absent,EA044-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +55193,Nc24,EA044,Activity is absent,EA044-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +55194,Nc25,EA044,Activity is absent,EA044-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +55195,Nc26,EA044,Activity is absent,EA044-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +55196,Nc27,EA044,Activity is absent,EA044-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +55197,Nc28,EA044,Activity is absent,EA044-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +55198,Nc29,EA044,Activity is absent,EA044-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +55199,Nc3,EA044,Activity is absent,EA044-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +55200,Nc30,EA044,Activity is absent,EA044-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +55201,Nc31,EA044,Activity is absent,EA044-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +55202,Nc32,EA044,Activity is absent,EA044-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +55203,Nc33,EA044,Activity is absent,EA044-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +55204,Nc34,EA044,Activity is absent,EA044-9,,meigs1939,,1880,EthnographicAtlas_1967_p108, +55205,Nc4,EA044,Activity is absent,EA044-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +55206,Nc5,EA044,Activity is absent,EA044-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +55207,Nc6,EA044,Activity is absent,EA044-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +55208,Nc7,EA044,Activity is absent,EA044-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +55209,Nc8,EA044,Activity is absent,EA044-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +55210,Nc9,EA044,Activity is absent,EA044-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +55211,Nd1,EA044,Activity is absent,EA044-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +55212,Nd10,EA044,Activity is absent,EA044-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +55213,Nd11,EA044,Activity is absent,EA044-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +55214,Nd12,EA044,Activity is absent,EA044-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +55215,Nd13,EA044,Activity is absent,EA044-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +55216,Nd14,EA044,Activity is absent,EA044-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +55217,Nd15,EA044,Activity is absent,EA044-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +55218,Nd16,EA044,Activity is absent,EA044-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +55219,Nd17,EA044,Activity is absent,EA044-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +55220,Nd18,EA044,Activity is absent,EA044-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +55221,Nd19,EA044,Activity is absent,EA044-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +55222,Nd2,EA044,Activity is absent,EA044-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +55223,Nd20,EA044,Activity is absent,EA044-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +55224,Nd21,EA044,Activity is absent,EA044-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +55225,Nd22,EA044,Activity is absent,EA044-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +55226,Nd23,EA044,Activity is absent,EA044-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +55227,Nd24,EA044,Activity is absent,EA044-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +55228,Nd25,EA044,Activity is absent,EA044-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +55229,Nd26,EA044,Activity is absent,EA044-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +55230,Nd27,EA044,Activity is absent,EA044-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +55231,Nd28,EA044,Activity is absent,EA044-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +55232,Nd29,EA044,Activity is absent,EA044-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +55233,Nd3,EA044,Activity is absent,EA044-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +55234,Nd30,EA044,Activity is absent,EA044-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +55235,Nd31,EA044,Activity is absent,EA044-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +55236,Nd32,EA044,Activity is absent,EA044-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +55237,Nd33,EA044,Activity is absent,EA044-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +55238,Nd34,EA044,Activity is absent,EA044-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +55239,Nd35,EA044,Activity is absent,EA044-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +55240,Nd36,EA044,Activity is absent,EA044-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +55241,Nd37,EA044,Activity is absent,EA044-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +55242,Nd38,EA044,Activity is absent,EA044-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +55243,Nd39,EA044,Activity is absent,EA044-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +55244,Nd4,EA044,Activity is absent,EA044-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +55245,Nd40,EA044,Activity is absent,EA044-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +55246,Nd41,EA044,Activity is absent,EA044-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +55247,Nd42,EA044,Activity is absent,EA044-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +55248,Nd43,EA044,Activity is absent,EA044-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +55249,Nd44,EA044,Activity is absent,EA044-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +55250,Nd45,EA044,Activity is absent,EA044-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +55251,Nd46,EA044,Activity is absent,EA044-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +55252,Nd47,EA044,Activity is absent,EA044-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +55253,Nd48,EA044,Activity is absent,EA044-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +55254,Nd49,EA044,Activity is absent,EA044-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +55255,Nd5,EA044,Activity is absent,EA044-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +55256,Nd50,EA044,Activity is absent,EA044-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +55257,Nd51,EA044,Activity is absent,EA044-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +55258,Nd52,EA044,Activity is absent,EA044-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +55259,Nd53,EA044,Activity is absent,EA044-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +55260,Nd54,EA044,Activity is absent,EA044-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55261,Nd55,EA044,Activity is absent,EA044-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +55262,Nd56,EA044,Activity is absent,EA044-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +55263,Nd57,EA044,Activity is absent,EA044-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +55264,Nd58,EA044,Activity is absent,EA044-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +55265,Nd59,EA044,Activity is absent,EA044-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +55266,Nd6,EA044,Activity is absent,EA044-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +55267,Nd60,EA044,Activity is absent,EA044-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +55268,Nd61,EA044,Activity is absent,EA044-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +55269,Nd62,EA044,Activity is absent,EA044-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +55270,Nd63,EA044,Activity is absent,EA044-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +55271,Nd64,EA044,Activity is absent,EA044-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +55272,Nd65,EA044,Activity is absent,EA044-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +55273,Nd66,EA044,Activity is absent,EA044-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +55274,Nd67,EA044,Activity is absent,EA044-9,,gifford1936,,1870,EthnographicAtlas_1967_p112, +55275,Nd7,EA044,Activity is absent,EA044-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +55276,Nd8,EA044,Activity is absent,EA044-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +55277,Nd9,EA044,Activity is absent,EA044-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +55278,Ne1,EA044,Activity is absent,EA044-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +55279,Ne10,EA044,Activity is absent,EA044-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +55280,Ne11,EA044,Activity is absent,EA044-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +55281,Ne12,EA044,Activity is absent,EA044-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +55282,Ne13,EA044,Activity is absent,EA044-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +55283,Ne14,EA044,Activity is absent,EA044-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +55284,Ne15,EA044,Activity is absent,EA044-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +55285,Ne16,EA044,Activity is absent,EA044-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +55286,Ne17,EA044,Activity is absent,EA044-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +55287,Ne18,EA044,Activity is absent,EA044-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +55288,Ne19,EA044,Activity is absent,EA044-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +55289,Ne2,EA044,Activity is absent,EA044-9,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +55290,Ne20,EA044,Activity is absent,EA044-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +55291,Ne21,EA044,?,EA044-NA,,,,,, +55292,Ne3,EA044,Activity is absent,EA044-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +55293,Ne4,EA044,Activity is absent,EA044-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +55294,Ne5,EA044,Activity is absent,EA044-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +55295,Ne6,EA044,Activity is absent,EA044-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +55296,Ne7,EA044,Activity is absent,EA044-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +55297,Ne8,EA044,Activity is absent,EA044-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +55298,Ne9,EA044,Activity is absent,EA044-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +55299,Nf10,EA044,Activity is absent,EA044-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +55300,Nf11,EA044,Activity is absent,EA044-9,,whitman1937,,1870,EthnographicAtlas_1967_p116, +55301,Nf12,EA044,Activity is absent,EA044-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +55302,Nf13,EA044,Activity is absent,EA044-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55303,Nf14,EA044,Activity is absent,EA044-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +55304,Nf15,EA044,?,EA044-NA,,,,,, +55305,Nf2,EA044,Activity is absent,EA044-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +55306,Nf3,EA044,Activity is absent,EA044-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +55307,Nf4,EA044,Activity is absent,EA044-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +55308,Nf5,EA044,Activity is absent,EA044-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +55309,Nf6,EA044,Activity is absent,EA044-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +55310,Nf7,EA044,Activity is absent,EA044-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55311,Nf8,EA044,Activity is absent,EA044-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +55312,Nf9,EA044,Activity is absent,EA044-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +55313,Ng1,EA044,Activity is absent,EA044-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +55314,Ng10,EA044,Activity is absent,EA044-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +55315,Ng11,EA044,Activity is absent,EA044-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +55316,Ng12,EA044,Activity is absent,EA044-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +55317,Ng13,EA044,?,EA044-NA,,,,,, +55318,Ng14,EA044,?,EA044-NA,,,,,, +55319,Ng15,EA044,?,EA044-NA,,,,,, +55320,Ng2,EA044,?,EA044-NA,,,,,, +55321,Ng3,EA044,Activity is absent,EA044-9,"But aboriginally men did some work in copper, and probably also in silver and gold, although without the use of fire",bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +55322,Ng4,EA044,?,EA044-NA,,,,,, +55323,Ng5,EA044,Activity is absent,EA044-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +55324,Ng6,EA044,Activity is absent,EA044-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +55325,Ng7,EA044,Activity is absent,EA044-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +55326,Ng8,EA044,Activity is absent,EA044-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +55327,Ng9,EA044,?,EA044-NA,,,,,, +55328,Nh1,EA044,Activity is absent,EA044-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +55329,Nh10,EA044,Activity is absent,EA044-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p116, +55330,Nh11,EA044,Activity is absent,EA044-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +55331,Nh12,EA044,Activity is absent,EA044-9,But a little silversmithing today,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +55332,Nh13,EA044,Activity is absent,EA044-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +55333,Nh14,EA044,?,EA044-NA,,,,,, +55334,Nh15,EA044,Activity is absent,EA044-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +55335,Nh16,EA044,Activity is absent,EA044-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55336,Nh17,EA044,Activity is absent,EA044-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +55337,Nh18,EA044,Activity is absent,EA044-9,"But aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55338,Nh19,EA044,Activity is absent,EA044-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +55339,Nh2,EA044,Activity is absent,EA044-9,,dozier1954,,1950,EthnographicAtlas_1967_p116, +55340,Nh20,EA044,Activity is absent,EA044-9,,gifford1931,,1860,EthnographicAtlas_1967_p116, +55341,Nh21,EA044,Activity is absent,EA044-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55342,Nh22,EA044,Activity is absent,EA044-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +55343,Nh23,EA044,Activity is absent,EA044-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +55344,Nh24,EA044,Activity is absent,EA044-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +55345,Nh25,EA044,Activity is absent,EA044-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +55346,Nh26,EA044,?,EA044-NA,,,,,, +55347,Nh27,EA044,?,EA044-NA,,,,,, +55348,Nh3,EA044,Males alone,EA044-1,"But aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +55349,Nh4,EA044,Activity is absent,EA044-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +55350,Nh5,EA044,Activity is absent,EA044-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +55351,Nh6,EA044,Activity is absent,EA044-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +55352,Nh7,EA044,Activity is absent,EA044-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +55353,Nh8,EA044,Activity is absent,EA044-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +55354,Nh9,EA044,Activity is absent,EA044-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p116, +55355,Ni1,EA044,Activity is absent,EA044-9,Iron working is done by itinerant Mexican smiths,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +55356,Ni2,EA044,Activity is absent,EA044-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +55357,Ni3,EA044,Activity is absent,EA044-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +55358,Ni4,EA044,Activity is absent,EA044-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +55359,Ni5,EA044,Activity is absent,EA044-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +55360,Ni6,EA044,Activity is absent,EA044-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +55361,Ni7,EA044,Activity is absent,EA044-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +55362,Ni8,EA044,?,EA044-NA,,,,,, +55363,Ni9,EA044,?,EA044-NA,,,,,, +55364,Nj1,EA044,Activity is absent,EA044-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55365,Nj10,EA044,?,EA044-NA,,,,,, +55366,Nj11,EA044,?,EA044-NA,,,,,, +55367,Nj12,EA044,?,EA044-NA,,,,,, +55368,Nj13,EA044,?,EA044-NA,,,,,, +55369,Nj14,EA044,?,EA044-NA,,,,,, +55370,Nj2,EA044,Males alone,EA044-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +55371,Nj3,EA044,Activity is absent,EA044-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +55372,Nj4,EA044,Activity is absent,EA044-9,But gold was worked aboriginally,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +55373,Nj5,EA044,?,EA044-NA,,,,,, +55374,Nj6,EA044,?,EA044-NA,,,,,, +55375,Nj7,EA044,Activity is absent,EA044-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55376,Nj8,EA044,"Activity present, sex diff. unspecified",EA044-8,"Work was done in gold, silver, and copper",foster1948,,1500,EthnographicAtlas_1967_p120, +55377,Nj9,EA044,Males alone,EA044-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +55378,Sa1,EA044,Activity is absent,EA044-9,But gold was worked aboriginally,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +55379,Sa10,EA044,Activity is absent,EA044-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +55380,Sa11,EA044,?,EA044-NA,,,,,, +55381,Sa12,EA044,Activity is absent,EA044-9,,stone1948,,1948,EthnographicAtlas_1967_p120, +55382,Sa13,EA044,Activity is absent,EA044-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +55383,Sa14,EA044,?,EA044-NA,,,,,, +55384,Sa15,EA044,?,EA044-NA,,,,,, +55385,Sa16,EA044,?,EA044-NA,,,,,, +55386,Sa17,EA044,?,EA044-NA,,,,,, +55387,Sa2,EA044,?,EA044-NA,,,,,, +55388,Sa3,EA044,Activity is absent,EA044-9,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +55389,Sa4,EA044,Activity is absent,EA044-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +55390,Sa5,EA044,Activity is absent,EA044-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +55391,Sa6,EA044,"Activity present, sex diff. unspecified",EA044-8,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +55392,Sa7,EA044,Activity is absent,EA044-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +55393,Sa8,EA044,?,EA044-NA,,,,,, +55394,Sa9,EA044,Activity is absent,EA044-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +55395,Sb1,EA044,Activity is absent,EA044-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +55396,Sb2,EA044,Activity is absent,EA044-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +55397,Sb3,EA044,?,EA044-NA,,,,,, +55398,Sb4,EA044,Activity is absent,EA044-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +55399,Sb5,EA044,Activity is absent,EA044-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p120, +55400,Sb6,EA044,Activity is absent,EA044-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +55401,Sb7,EA044,Activity is absent,EA044-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +55402,Sb8,EA044,Activity is absent,EA044-9,But gold was beaten into ornaments,rouse1948a,,1520,EthnographicAtlas_1967_p120, +55403,Sb9,EA044,?,EA044-NA,,,,,, +55404,Sc1,EA044,Activity is absent,EA044-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +55405,Sc10,EA044,Activity is absent,EA044-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +55406,Sc11,EA044,Activity is absent,EA044-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +55407,Sc12,EA044,Activity is absent,EA044-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +55408,Sc13,EA044,Activity is absent,EA044-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +55409,Sc14,EA044,Activity is absent,EA044-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +55410,Sc15,EA044,Activity is absent,EA044-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +55411,Sc16,EA044,Activity is absent,EA044-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +55412,Sc17,EA044,Activity is absent,EA044-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +55413,Sc18,EA044,Activity is absent,EA044-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +55414,Sc2,EA044,Activity is absent,EA044-9,,leedsnd,,1950,EthnographicAtlas_1967_p120, +55415,Sc3,EA044,Activity is absent,EA044-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +55416,Sc4,EA044,Activity is absent,EA044-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +55417,Sc5,EA044,Activity is absent,EA044-9,,farabee1918,,1900,EthnographicAtlas_1967_p120, +55418,Sc6,EA044,Activity is absent,EA044-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55419,Sc7,EA044,Activity is absent,EA044-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +55420,Sc8,EA044,Activity is absent,EA044-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +55421,Sc9,EA044,Activity is absent,EA044-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +55422,Sd1,EA044,Activity is absent,EA044-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55423,Sd2,EA044,Activity is absent,EA044-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +55424,Sd3,EA044,Activity is absent,EA044-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +55425,Sd4,EA044,Activity is absent,EA044-9,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +55426,Sd5,EA044,Activity is absent,EA044-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +55427,Sd6,EA044,Activity is absent,EA044-9,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +55428,Sd7,EA044,Activity is absent,EA044-9,,fock1963,,1950,EthnographicAtlas_1967_p120, +55429,Sd8,EA044,Activity is absent,EA044-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +55430,Sd9,EA044,Activity is absent,EA044-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55431,Se1,EA044,Activity is absent,EA044-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +55432,Se10,EA044,Activity is absent,EA044-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p120, +55433,Se11,EA044,Activity is absent,EA044-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +55434,Se12,EA044,?,EA044-NA,,,,,, +55435,Se2,EA044,Activity is absent,EA044-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +55436,Se3,EA044,Activity is absent,EA044-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +55437,Se4,EA044,Activity is absent,EA044-9,,fejos1943,,1940,EthnographicAtlas_1967_p120, +55438,Se5,EA044,Activity is absent,EA044-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +55439,Se6,EA044,Activity is absent,EA044-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +55440,Se7,EA044,?,EA044-NA,,,,,, +55441,Se8,EA044,Activity is absent,EA044-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +55442,Se9,EA044,Activity is absent,EA044-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +55443,Sf1,EA044,Males alone,EA044-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +55444,Sf2,EA044,Males alone,EA044-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +55445,Sf3,EA044,Activity is absent,EA044-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +55446,Sf4,EA044,Activity is absent,EA044-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +55447,Sf5,EA044,"Activity present, sex diff. unspecified",EA044-8,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +55448,Sf6,EA044,"Activity present, sex diff. unspecified",EA044-8,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +55449,Sf7,EA044,Activity is absent,EA044-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +55450,Sf8,EA044,?,EA044-NA,,,,,, +55451,Sf9,EA044,?,EA044-NA,,,,,, +55452,Sg1,EA044,Activity is absent,EA044-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +55453,Sg2,EA044,Males alone,EA044-1,"Aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55454,Sg3,EA044,Activity is absent,EA044-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +55455,Sg4,EA044,Males alone,EA044-1,But silversmithing and loom weaving are relatively recent introductions,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +55456,Sg5,EA044,Activity is absent,EA044-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55457,Sh1,EA044,Activity is absent,EA044-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +55458,Sh2,EA044,Activity is absent,EA044-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +55459,Sh3,EA044,Activity is absent,EA044-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +55460,Sh4,EA044,Activity is absent,EA044-9,,oberg1949,,1940,EthnographicAtlas_1967_p124, +55461,Sh5,EA044,Activity is absent,EA044-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +55462,Sh6,EA044,Activity is absent,EA044-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +55463,Sh7,EA044,Activity is absent,EA044-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +55464,Sh8,EA044,Activity is absent,EA044-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +55465,Sh9,EA044,Activity is absent,EA044-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +55466,Si1,EA044,Activity is absent,EA044-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55467,Si10,EA044,Activity is absent,EA044-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +55468,Si2,EA044,Activity is absent,EA044-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +55469,Si3,EA044,Activity is absent,EA044-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55470,Si4,EA044,Activity is absent,EA044-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +55471,Si5,EA044,Activity is absent,EA044-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +55472,Si6,EA044,Activity is absent,EA044-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +55473,Si7,EA044,Activity is absent,EA044-9,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +55474,Si8,EA044,Activity is absent,EA044-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +55475,Si9,EA044,?,EA044-NA,,,,,, +55476,Sj1,EA044,Activity is absent,EA044-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +55477,Sj10,EA044,Activity is absent,EA044-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55478,Sj11,EA044,Activity is absent,EA044-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +55479,Sj2,EA044,Activity is absent,EA044-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +55480,Sj3,EA044,Activity is absent,EA044-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +55481,Sj4,EA044,Activity is absent,EA044-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +55482,Sj5,EA044,Activity is absent,EA044-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +55483,Sj6,EA044,Activity is absent,EA044-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55484,Sj7,EA044,Activity is absent,EA044-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +55485,Sj8,EA044,Activity is absent,EA044-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +55486,Sj9,EA044,Activity is absent,EA044-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +55487,ch12,EA044,Activity is absent,EA044-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +55488,ch13,EA044,Activity is absent,EA044-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +55489,ch14,EA044,Activity is absent,EA044-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +55490,ch15,EA044,Activity is absent,EA044-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +55491,ch16,EA044,Males alone,EA044-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +55492,ch17,EA044,Males alone,EA044-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +55493,ch18,EA044,Males alone,EA044-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +55494,ch19,EA044,Males alone,EA044-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +55495,ch20,EA044,Activity is absent,EA044-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +55496,ch21,EA044,Males alone,EA044-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +55497,ch22,EA044,Males alone,EA044-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +55498,ch23,EA044,Males alone,EA044-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +55499,ch24,EA044,Males alone,EA044-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +55500,ch25,EA044,Males alone,EA044-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +55501,ch26,EA044,Activity is absent,EA044-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +55502,ch27,EA044,Males alone,EA044-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +55503,ch28,EA044,Males alone,EA044-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +55504,ec12,EA044,Males alone,EA044-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +55505,ec13,EA044,Activity is absent,EA044-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +55506,ec14,EA044,Activity is absent,EA044-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +55507,ec15,EA044,Males alone,EA044-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +55508,ec16,EA044,Males alone,EA044-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +55509,ec17,EA044,Males alone,EA044-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +55510,ec18,EA044,Males alone,EA044-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +55511,ec19,EA044,?,EA044-NA,,,,,, +55512,ec20,EA044,Males alone,EA044-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +55513,ec21,EA044,Males alone,EA044-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +55514,Aa1,EA045,Activity is absent,EA045-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +55515,Aa2,EA045,Activity is absent,EA045-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +55516,Aa3,EA045,Activity is absent,EA045-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +55517,Aa4,EA045,?,EA045-NA,,,,,, +55518,Aa5,EA045,Activity is absent,EA045-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +55519,Aa6,EA045,?,EA045-NA,,,,,, +55520,Aa7,EA045,Activity is absent,EA045-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +55521,Aa8,EA045,Activity is absent,EA045-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +55522,Aa9,EA045,Activity is absent,EA045-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +55523,Ab1,EA045,Activity is absent,EA045-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +55524,Ab10,EA045,Activity is absent,EA045-9,,hunter1936,,1936,EthnographicAtlas_1967_p64, +55525,Ab11,EA045,Activity is absent,EA045-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +55526,Ab12,EA045,Activity is absent,EA045-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +55527,Ab13,EA045,Activity is absent,EA045-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +55528,Ab14,EA045,Activity is absent,EA045-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +55529,Ab15,EA045,Activity is absent,EA045-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +55530,Ab16,EA045,?,EA045-NA,,,,,, +55531,Ab17,EA045,?,EA045-NA,,,,,, +55532,Ab18,EA045,?,EA045-NA,,,,,, +55533,Ab19,EA045,Activity is absent,EA045-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +55534,Ab2,EA045,Activity is absent,EA045-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +55535,Ab20,EA045,?,EA045-NA,,,,,, +55536,Ab21a,EA045,?,EA045-NA,,,,,, +55537,Ab21b,EA045,?,EA045-NA,,,,,, +55538,Ab22,EA045,?,EA045-NA,,,,,, +55539,Ab3,EA045,Activity is absent,EA045-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +55540,Ab4,EA045,Activity is absent,EA045-9,But cotton cloth was formerly woven,junod1927,,1920,EthnographicAtlas_1967_p64, +55541,Ab5,EA045,Activity is absent,EA045-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +55542,Ab6,EA045,"Activity present, sex diff. unspecified",EA045-8,But no longer practiced,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +55543,Ab7,EA045,?,EA045-NA,,,,,, +55544,Ab8,EA045,Activity is absent,EA045-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +55545,Ab9,EA045,Activity is absent,EA045-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +55546,Ac1,EA045,Activity is absent,EA045-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +55547,Ac10,EA045,Activity is absent,EA045-9,By men of a neighboring tribe,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +55548,Ac11,EA045,"Activity present, sex diff. unspecified",EA045-8,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +55549,Ac12,EA045,?,EA045-NA,,,,,, +55550,Ac13,EA045,?,EA045-NA,,,,,, +55551,Ac14,EA045,?,EA045-NA,,,,,, +55552,Ac15,EA045,?,EA045-NA,,,,,, +55553,Ac16,EA045,?,EA045-NA,,,,,, +55554,Ac17,EA045,?,EA045-NA,,,,,, +55555,Ac18,EA045,?,EA045-NA,,,,,, +55556,Ac19,EA045,?,EA045-NA,,,,,, +55557,Ac2,EA045,?,EA045-NA,,,,,, +55558,Ac20,EA045,?,EA045-NA,,,,,, +55559,Ac21,EA045,?,EA045-NA,,,,,, +55560,Ac22,EA045,?,EA045-NA,,,,,, +55561,Ac23,EA045,Males alone,EA045-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +55562,Ac24,EA045,?,EA045-NA,,,,,, +55563,Ac25,EA045,?,EA045-NA,,,,,, +55564,Ac26,EA045,?,EA045-NA,,,,,, +55565,Ac27,EA045,?,EA045-NA,,,,,, +55566,Ac28,EA045,"Activity present, sex diff. unspecified",EA045-8,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +55567,Ac29,EA045,?,EA045-NA,,,,,, +55568,Ac3,EA045,Activity is absent,EA045-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +55569,Ac30,EA045,?,EA045-NA,,,,,, +55570,Ac31,EA045,Activity is absent,EA045-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +55571,Ac32,EA045,?,EA045-NA,,,,,, +55572,Ac33,EA045,?,EA045-NA,,,,,, +55573,Ac34,EA045,Activity is absent,EA045-9,"Formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +55574,Ac35,EA045,?,EA045-NA,,,,,, +55575,Ac36,EA045,?,EA045-NA,,,,,, +55576,Ac37,EA045,?,EA045-NA,,,,,, +55577,Ac38,EA045,Males alone,EA045-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +55578,Ac39,EA045,?,EA045-NA,,,,,, +55579,Ac4,EA045,Males alone,EA045-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +55580,Ac40,EA045,?,EA045-NA,,,,,, +55581,Ac41,EA045,?,EA045-NA,,,,,, +55582,Ac42,EA045,?,EA045-NA,,,,,, +55583,Ac43,EA045,?,EA045-NA,,,,,, +55584,Ac5,EA045,?,EA045-NA,,,,,, +55585,Ac6,EA045,Activity is absent,EA045-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +55586,Ac7,EA045,Activity is absent,EA045-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +55587,Ac8,EA045,Females alone,EA045-6,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +55588,Ac9,EA045,?,EA045-NA,,,,,, +55589,Ad1,EA045,?,EA045-NA,,,,,, +55590,Ad10,EA045,?,EA045-NA,,,,,, +55591,Ad11,EA045,Activity is absent,EA045-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +55592,Ad12,EA045,?,EA045-NA,,,,,, +55593,Ad13,EA045,?,EA045-NA,,,,,, +55594,Ad14,EA045,Activity is absent,EA045-9,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p68, +55595,Ad15,EA045,"Activity present, sex diff. unspecified",EA045-8,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p68, +55596,Ad16,EA045,"Activity present, sex diff. unspecified",EA045-8,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +55597,Ad17,EA045,Males alone,EA045-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +55598,Ad18,EA045,?,EA045-NA,,,,,, +55599,Ad19,EA045,Males alone,EA045-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +55600,Ad2,EA045,Activity is absent,EA045-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +55601,Ad20,EA045,"Activity present, sex diff. unspecified",EA045-8,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +55602,Ad21,EA045,?,EA045-NA,,,,,, +55603,Ad22,EA045,"Activity present, sex diff. unspecified",EA045-8,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +55604,Ad23,EA045,?,EA045-NA,,,,,, +55605,Ad24,EA045,?,EA045-NA,,,,,, +55606,Ad25,EA045,?,EA045-NA,,,,,, +55607,Ad26,EA045,Activity is absent,EA045-9,,sick1916,,1910,EthnographicAtlas_1967_p68, +55608,Ad27,EA045,Activity is absent,EA045-9,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +55609,Ad28,EA045,?,EA045-NA,,,,,, +55610,Ad29,EA045,Activity is absent,EA045-9,"Formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +55611,Ad3,EA045,Activity is absent,EA045-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +55612,Ad30,EA045,?,EA045-NA,,,,,, +55613,Ad31,EA045,?,EA045-NA,,,,,, +55614,Ad32,EA045,?,EA045-NA,,,,,, +55615,Ad33,EA045,?,EA045-NA,,,,,, +55616,Ad34,EA045,?,EA045-NA,,,,,, +55617,Ad35,EA045,Activity is absent,EA045-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +55618,Ad36,EA045,?,EA045-NA,,,,,, +55619,Ad37,EA045,?,EA045-NA,,,,,, +55620,Ad38,EA045,?,EA045-NA,,,,,, +55621,Ad39,EA045,?,EA045-NA,,,,,, +55622,Ad4,EA045,Activity is absent,EA045-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +55623,Ad40,EA045,?,EA045-NA,,,,,, +55624,Ad41,EA045,?,EA045-NA,,,,,, +55625,Ad42,EA045,?,EA045-NA,,,,,, +55626,Ad43,EA045,?,EA045-NA,,,,,, +55627,Ad44,EA045,Activity is absent,EA045-9,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +55628,Ad45,EA045,?,EA045-NA,,,,,, +55629,Ad46,EA045,Differentiated but equal,EA045-3,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +55630,Ad47,EA045,"Activity present, sex diff. unspecified",EA045-8,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +55631,Ad48,EA045,Activity is absent,EA045-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +55632,Ad49,EA045,?,EA045-NA,,,,,, +55633,Ad5,EA045,?,EA045-NA,,,,,, +55634,Ad50,EA045,Activity is absent,EA045-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +55635,Ad51,EA045,Activity is absent,EA045-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +55636,Ad6,EA045,"Activity present, sex diff. unspecified",EA045-8,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +55637,Ad7,EA045,Activity is absent,EA045-9,But men made bark cloth,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +55638,Ad8,EA045,?,EA045-NA,,,,,, +55639,Ad9,EA045,Activity is absent,EA045-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +55640,Ae1,EA045,Activity is absent,EA045-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +55641,Ae10,EA045,Activity is absent,EA045-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +55642,Ae11,EA045,?,EA045-NA,,,,,, +55643,Ae12,EA045,?,EA045-NA,,,,,, +55644,Ae13,EA045,?,EA045-NA,,,,,, +55645,Ae14,EA045,?,EA045-NA,,,,,, +55646,Ae15,EA045,?,EA045-NA,,,,,, +55647,Ae16,EA045,?,EA045-NA,,,,,, +55648,Ae17,EA045,Activity is absent,EA045-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +55649,Ae18,EA045,Males alone,EA045-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +55650,Ae19,EA045,?,EA045-NA,,,,,, +55651,Ae2,EA045,?,EA045-NA,,,,,, +55652,Ae20,EA045,?,EA045-NA,,,,,, +55653,Ae21,EA045,?,EA045-NA,,,,,, +55654,Ae22,EA045,?,EA045-NA,,,,,, +55655,Ae23,EA045,?,EA045-NA,,,,,, +55656,Ae24,EA045,?,EA045-NA,,,,,, +55657,Ae25,EA045,?,EA045-NA,,,,,, +55658,Ae26,EA045,?,EA045-NA,,,,,, +55659,Ae27,EA045,?,EA045-NA,,,,,, +55660,Ae28,EA045,Activity is absent,EA045-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +55661,Ae29,EA045,?,EA045-NA,,,,,, +55662,Ae3,EA045,Activity is absent,EA045-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +55663,Ae30,EA045,?,EA045-NA,,,,,, +55664,Ae31,EA045,Activity is absent,EA045-9,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +55665,Ae32,EA045,?,EA045-NA,,,,,, +55666,Ae33,EA045,Activity is absent,EA045-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +55667,Ae34,EA045,?,EA045-NA,,,,,, +55668,Ae35,EA045,?,EA045-NA,,,,,, +55669,Ae36,EA045,?,EA045-NA,,,,,, +55670,Ae37,EA045,?,EA045-NA,,,,,, +55671,Ae38,EA045,?,EA045-NA,,,,,, +55672,Ae39,EA045,Activity is absent,EA045-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +55673,Ae4,EA045,Males alone,EA045-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +55674,Ae40,EA045,?,EA045-NA,,,,,, +55675,Ae41,EA045,"Activity present, sex diff. unspecified",EA045-8,,andersson1953,,1940,EthnographicAtlas_1967_p68, +55676,Ae42,EA045,?,EA045-NA,,,,,, +55677,Ae43,EA045,?,EA045-NA,,,,,, +55678,Ae44,EA045,?,EA045-NA,,,,,, +55679,Ae45,EA045,?,EA045-NA,,,,,, +55680,Ae46,EA045,?,EA045-NA,,,,,, +55681,Ae47,EA045,?,EA045-NA,,,,,, +55682,Ae48,EA045,Equal participation,EA045-4,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p68, +55683,Ae49,EA045,?,EA045-NA,,,,,, +55684,Ae5,EA045,Males alone,EA045-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +55685,Ae50,EA045,"Activity present, sex diff. unspecified",EA045-8,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +55686,Ae51,EA045,Activity is absent,EA045-9,Small carrying bags only,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +55687,Ae52,EA045,?,EA045-NA,,,,,, +55688,Ae53,EA045,?,EA045-NA,,,,,, +55689,Ae54,EA045,?,EA045-NA,,,,,, +55690,Ae55,EA045,?,EA045-NA,,,,,, +55691,Ae56,EA045,?,EA045-NA,,,,,, +55692,Ae57,EA045,?,EA045-NA,,,,,, +55693,Ae58,EA045,?,EA045-NA,,,,,, +55694,Ae59,EA045,?,EA045-NA,,,,,, +55695,Ae6,EA045,"Activity present, sex diff. unspecified",EA045-8,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +55696,Ae7,EA045,Males alone,EA045-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +55697,Ae8,EA045,Activity is absent,EA045-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +55698,Ae9,EA045,Activity is absent,EA045-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +55699,Af1,EA045,Males alone,EA045-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +55700,Af10,EA045,Activity is absent,EA045-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +55701,Af11,EA045,Males alone,EA045-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +55702,Af12,EA045,?,EA045-NA,,,,,, +55703,Af13,EA045,"Activity present, sex diff. unspecified",EA045-8,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +55704,Af14,EA045,Males alone,EA045-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +55705,Af15,EA045,Males alone,EA045-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +55706,Af16,EA045,?,EA045-NA,,,,,, +55707,Af17,EA045,?,EA045-NA,,,,,, +55708,Af18,EA045,?,EA045-NA,,,,,, +55709,Af19,EA045,?,EA045-NA,,,,,, +55710,Af2,EA045,Activity is absent,EA045-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +55711,Af20,EA045,Males alone,EA045-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +55712,Af21,EA045,?,EA045-NA,,,,,, +55713,Af22,EA045,Activity is absent,EA045-9,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +55714,Af23,EA045,Activity is absent,EA045-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +55715,Af24,EA045,Males alone,EA045-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +55716,Af25,EA045,Activity is absent,EA045-9,"But probably formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +55717,Af26,EA045,?,EA045-NA,,,,,, +55718,Af27,EA045,?,EA045-NA,,,,,, +55719,Af28,EA045,Males alone,EA045-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +55720,Af29,EA045,?,EA045-NA,,,,,, +55721,Af3,EA045,Males alone,EA045-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +55722,Af30,EA045,?,EA045-NA,,,,,, +55723,Af31,EA045,?,EA045-NA,,,,,, +55724,Af32,EA045,Differentiated but equal,EA045-3,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55725,Af33,EA045,Differentiated but equal,EA045-3,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55726,Af34,EA045,?,EA045-NA,,,,,, +55727,Af35,EA045,?,EA045-NA,,,,,, +55728,Af36,EA045,Males alone,EA045-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +55729,Af37,EA045,?,EA045-NA,,,,,, +55730,Af38,EA045,?,EA045-NA,,,,,, +55731,Af39,EA045,?,EA045-NA,,,,,, +55732,Af4,EA045,?,EA045-NA,,,,,, +55733,Af40,EA045,?,EA045-NA,,,,,, +55734,Af41,EA045,?,EA045-NA,,,,,, +55735,Af42,EA045,Males alone,EA045-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +55736,Af43,EA045,?,EA045-NA,,,,,, +55737,Af44,EA045,?,EA045-NA,,,,,, +55738,Af45,EA045,?,EA045-NA,,,,,, +55739,Af46,EA045,?,EA045-NA,,,,,, +55740,Af47,EA045,?,EA045-NA,,,,,, +55741,Af48,EA045,?,EA045-NA,,,,,, +55742,Af49,EA045,?,EA045-NA,,,,,, +55743,Af5,EA045,Males alone,EA045-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +55744,Af50,EA045,?,EA045-NA,,,,,, +55745,Af51,EA045,?,EA045-NA,,,,,, +55746,Af52,EA045,Males alone,EA045-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +55747,Af53,EA045,?,EA045-NA,,,,,, +55748,Af54,EA045,Males alone,EA045-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +55749,Af55,EA045,?,EA045-NA,,,,,, +55750,Af56,EA045,?,EA045-NA,,,,,, +55751,Af57,EA045,Males alone,EA045-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +55752,Af58,EA045,?,EA045-NA,,,,,, +55753,Af6,EA045,Differentiated but equal,EA045-3,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +55754,Af7,EA045,?,EA045-NA,,,,,, +55755,Af8,EA045,Differentiated but equal,EA045-3,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +55756,Af9,EA045,?,EA045-NA,,,,,, +55757,Ag1,EA045,Males alone,EA045-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +55758,Ag10,EA045,?,EA045-NA,,,,,, +55759,Ag11,EA045,?,EA045-NA,,,,,, +55760,Ag12,EA045,?,EA045-NA,,,,,, +55761,Ag13,EA045,"Activity present, sex diff. unspecified",EA045-8,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p72, +55762,Ag14,EA045,?,EA045-NA,,,,,, +55763,Ag15,EA045,?,EA045-NA,,,,,, +55764,Ag16,EA045,?,EA045-NA,,,,,, +55765,Ag17,EA045,?,EA045-NA,,,,,, +55766,Ag18,EA045,?,EA045-NA,,,,,, +55767,Ag19,EA045,?,EA045-NA,,,,,, +55768,Ag2,EA045,Males alone,EA045-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +55769,Ag20,EA045,?,EA045-NA,,,,,, +55770,Ag21,EA045,?,EA045-NA,,,,,, +55771,Ag22,EA045,Males alone,EA045-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +55772,Ag23,EA045,?,EA045-NA,,,,,, +55773,Ag24,EA045,?,EA045-NA,,,,,, +55774,Ag25,EA045,?,EA045-NA,,,,,, +55775,Ag26,EA045,?,EA045-NA,,,,,, +55776,Ag27,EA045,?,EA045-NA,,,,,, +55777,Ag28,EA045,?,EA045-NA,,,,,, +55778,Ag29,EA045,?,EA045-NA,,,,,, +55779,Ag3,EA045,?,EA045-NA,,,,,, +55780,Ag30,EA045,"Activity present, sex diff. unspecified",EA045-8,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +55781,Ag31,EA045,Males alone,EA045-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p72, +55782,Ag32,EA045,?,EA045-NA,,,,,, +55783,Ag33,EA045,?,EA045-NA,,,,,, +55784,Ag34,EA045,?,EA045-NA,,,,,, +55785,Ag35,EA045,?,EA045-NA,,,,,, +55786,Ag36,EA045,?,EA045-NA,,,,,, +55787,Ag37,EA045,?,EA045-NA,,,,,, +55788,Ag38,EA045,?,EA045-NA,,,,,, +55789,Ag39,EA045,?,EA045-NA,,,,,, +55790,Ag4,EA045,Activity is absent,EA045-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +55791,Ag40,EA045,?,EA045-NA,,,,,, +55792,Ag41,EA045,?,EA045-NA,,,,,, +55793,Ag42,EA045,?,EA045-NA,,,,,, +55794,Ag43,EA045,?,EA045-NA,,,,,, +55795,Ag44,EA045,?,EA045-NA,,,,,, +55796,Ag45,EA045,?,EA045-NA,,,,,, +55797,Ag46,EA045,?,EA045-NA,,,,,, +55798,Ag47,EA045,Males alone,EA045-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +55799,Ag48,EA045,Males alone,EA045-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +55800,Ag49,EA045,Females alone,EA045-6,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +55801,Ag5,EA045,Males alone,EA045-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +55802,Ag50,EA045,?,EA045-NA,,,,,, +55803,Ag51,EA045,?,EA045-NA,,,,,, +55804,Ag52,EA045,?,EA045-NA,,,,,, +55805,Ag53,EA045,"Activity present, sex diff. unspecified",EA045-8,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +55806,Ag54,EA045,Males alone,EA045-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +55807,Ag6,EA045,?,EA045-NA,,,,,, +55808,Ag7,EA045,?,EA045-NA,,,,,, +55809,Ag8,EA045,Differentiated but equal,EA045-3,But weaving is confined to a few special products,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +55810,Ag9,EA045,?,EA045-NA,,,,,, +55811,Ah1,EA045,Activity is absent,EA045-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +55812,Ah10,EA045,?,EA045-NA,,,,,, +55813,Ah11,EA045,"Activity present, sex diff. unspecified",EA045-8,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +55814,Ah12,EA045,?,EA045-NA,,,,,, +55815,Ah13,EA045,Males alone,EA045-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +55816,Ah14,EA045,"Activity present, sex diff. unspecified",EA045-8,,gunnandconant1960,,1920,EthnographicAtlas_1967_p76, +55817,Ah15,EA045,Activity is absent,EA045-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +55818,Ah16,EA045,?,EA045-NA,,,,,, +55819,Ah17,EA045,?,EA045-NA,,,,,, +55820,Ah18,EA045,?,EA045-NA,,,,,, +55821,Ah19,EA045,?,EA045-NA,,,,,, +55822,Ah2,EA045,Females alone,EA045-6,,meek1931a,,1920,EthnographicAtlas_1967_p76, +55823,Ah20,EA045,?,EA045-NA,,,,,, +55824,Ah21,EA045,?,EA045-NA,,,,,, +55825,Ah22,EA045,?,EA045-NA,,,,,, +55826,Ah23,EA045,?,EA045-NA,,,,,, +55827,Ah24,EA045,?,EA045-NA,,,,,, +55828,Ah25,EA045,?,EA045-NA,,,,,, +55829,Ah26,EA045,?,EA045-NA,,,,,, +55830,Ah27,EA045,?,EA045-NA,,,,,, +55831,Ah28,EA045,?,EA045-NA,,,,,, +55832,Ah29,EA045,?,EA045-NA,,,,,, +55833,Ah3,EA045,Males alone,EA045-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +55834,Ah30,EA045,?,EA045-NA,,,,,, +55835,Ah31,EA045,?,EA045-NA,,,,,, +55836,Ah32,EA045,?,EA045-NA,,,,,, +55837,Ah33,EA045,?,EA045-NA,,,,,, +55838,Ah34,EA045,?,EA045-NA,,,,,, +55839,Ah35,EA045,?,EA045-NA,,,,,, +55840,Ah36,EA045,Activity is absent,EA045-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +55841,Ah37,EA045,?,EA045-NA,,,,,, +55842,Ah38,EA045,Activity is absent,EA045-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +55843,Ah39,EA045,Activity is absent,EA045-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +55844,Ah4,EA045,?,EA045-NA,,,,,, +55845,Ah5,EA045,?,EA045-NA,,,,,, +55846,Ah6,EA045,?,EA045-NA,,,,,, +55847,Ah7,EA045,Activity is absent,EA045-9,But women weave small bags,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +55848,Ah8,EA045,?,EA045-NA,,,,,, +55849,Ah9,EA045,Females alone,EA045-6,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +55850,Ai1,EA045,Activity is absent,EA045-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +55851,Ai10,EA045,Activity is absent,EA045-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +55852,Ai11,EA045,Activity is absent,EA045-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +55853,Ai12,EA045,?,EA045-NA,,,,,, +55854,Ai13,EA045,?,EA045-NA,,,,,, +55855,Ai14,EA045,"Activity present, sex diff. unspecified",EA045-8,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +55856,Ai15,EA045,Males alone,EA045-1,But infrequent,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +55857,Ai16,EA045,?,EA045-NA,,,,,, +55858,Ai17,EA045,Activity is absent,EA045-9,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +55859,Ai18,EA045,Males alone,EA045-1,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +55860,Ai19,EA045,?,EA045-NA,,,,,, +55861,Ai2,EA045,?,EA045-NA,,,,,, +55862,Ai20,EA045,?,EA045-NA,,,,,, +55863,Ai21,EA045,Males alone,EA045-1,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p76, +55864,Ai22,EA045,?,EA045-NA,,,,,, +55865,Ai23,EA045,Activity is absent,EA045-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +55866,Ai24,EA045,?,EA045-NA,,,,,, +55867,Ai25,EA045,Activity is absent,EA045-9,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +55868,Ai26,EA045,Activity is absent,EA045-9,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +55869,Ai27,EA045,?,EA045-NA,,,,,, +55870,Ai28,EA045,Activity is absent,EA045-9,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +55871,Ai29,EA045,Activity is absent,EA045-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +55872,Ai3,EA045,Males alone,EA045-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +55873,Ai30,EA045,Activity is absent,EA045-9,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +55874,Ai31,EA045,?,EA045-NA,,,,,, +55875,Ai32,EA045,?,EA045-NA,,,,,, +55876,Ai33,EA045,?,EA045-NA,,,,,, +55877,Ai34,EA045,?,EA045-NA,,,,,, +55878,Ai35,EA045,?,EA045-NA,,,,,, +55879,Ai36,EA045,Males alone,EA045-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +55880,Ai37,EA045,?,EA045-NA,,,,,, +55881,Ai38,EA045,Activity is absent,EA045-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +55882,Ai39,EA045,Activity is absent,EA045-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +55883,Ai4,EA045,?,EA045-NA,,,,,, +55884,Ai40,EA045,Activity is absent,EA045-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +55885,Ai41,EA045,Activity is absent,EA045-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +55886,Ai42,EA045,Activity is absent,EA045-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +55887,Ai43,EA045,Activity is absent,EA045-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +55888,Ai44,EA045,?,EA045-NA,,,,,, +55889,Ai45,EA045,?,EA045-NA,,,,,, +55890,Ai46,EA045,?,EA045-NA,,,,,, +55891,Ai47,EA045,Activity is absent,EA045-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +55892,Ai5,EA045,Activity is absent,EA045-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +55893,Ai6,EA045,Activity is absent,EA045-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +55894,Ai7,EA045,Activity is absent,EA045-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +55895,Ai8,EA045,Activity is absent,EA045-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +55896,Ai9,EA045,?,EA045-NA,,,,,, +55897,Aj1,EA045,?,EA045-NA,,,,,, +55898,Aj10,EA045,?,EA045-NA,,,,,, +55899,Aj11,EA045,?,EA045-NA,,,,,, +55900,Aj12,EA045,?,EA045-NA,,,,,, +55901,Aj13,EA045,?,EA045-NA,,,,,, +55902,Aj14,EA045,?,EA045-NA,,,,,, +55903,Aj15,EA045,Males alone,EA045-1,Aprons only,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +55904,Aj16,EA045,?,EA045-NA,,,,,, +55905,Aj17,EA045,Activity is absent,EA045-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +55906,Aj18,EA045,?,EA045-NA,,,,,, +55907,Aj19,EA045,?,EA045-NA,,,,,, +55908,Aj2,EA045,Activity is absent,EA045-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +55909,Aj20,EA045,?,EA045-NA,,,,,, +55910,Aj21,EA045,?,EA045-NA,,,,,, +55911,Aj22,EA045,?,EA045-NA,,,,,, +55912,Aj23,EA045,?,EA045-NA,,,,,, +55913,Aj24,EA045,?,EA045-NA,,,,,, +55914,Aj25,EA045,?,EA045-NA,,,,,, +55915,Aj26,EA045,?,EA045-NA,,,,,, +55916,Aj27,EA045,?,EA045-NA,,,,,, +55917,Aj28,EA045,?,EA045-NA,,,,,, +55918,Aj29,EA045,?,EA045-NA,,,,,, +55919,Aj3,EA045,Activity is absent,EA045-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +55920,Aj30,EA045,?,EA045-NA,,,,,, +55921,Aj31,EA045,?,EA045-NA,,,,,, +55922,Aj4,EA045,Activity is absent,EA045-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +55923,Aj5,EA045,?,EA045-NA,,,,,, +55924,Aj6,EA045,Activity is absent,EA045-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +55925,Aj7,EA045,Activity is absent,EA045-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +55926,Aj8,EA045,Activity is absent,EA045-9,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +55927,Aj9,EA045,Activity is absent,EA045-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +55928,Ca1,EA045,"Both, males more",EA045-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +55929,Ca10,EA045,?,EA045-NA,,,,,, +55930,Ca11,EA045,?,EA045-NA,,,,,, +55931,Ca12,EA045,"Activity present, sex diff. unspecified",EA045-8,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +55932,Ca13,EA045,?,EA045-NA,,,,,, +55933,Ca14,EA045,Males alone,EA045-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +55934,Ca15,EA045,"Activity present, sex diff. unspecified",EA045-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +55935,Ca16,EA045,"Activity present, sex diff. unspecified",EA045-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +55936,Ca17,EA045,Activity is absent,EA045-9,Products obtained by trade with neighboring tribes,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +55937,Ca18,EA045,?,EA045-NA,,,,,, +55938,Ca19,EA045,Activity is absent,EA045-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +55939,Ca2,EA045,Males alone,EA045-1,But weaving is mainly done by sedentary rather than nomadic Somali,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +55940,Ca20,EA045,?,EA045-NA,,,,,, +55941,Ca21,EA045,Activity is absent,EA045-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +55942,Ca22,EA045,Males alone,EA045-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +55943,Ca23,EA045,Activity is absent,EA045-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +55944,Ca24,EA045,?,EA045-NA,,,,,, +55945,Ca25,EA045,?,EA045-NA,,,,,, +55946,Ca26,EA045,?,EA045-NA,,,,,, +55947,Ca27,EA045,?,EA045-NA,,,,,, +55948,Ca28,EA045,Activity is absent,EA045-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +55949,Ca29,EA045,Males alone,EA045-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +55950,Ca3,EA045,?,EA045-NA,,,,,, +55951,Ca30,EA045,Males alone,EA045-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +55952,Ca31,EA045,Males alone,EA045-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +55953,Ca32,EA045,Activity is absent,EA045-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +55954,Ca33,EA045,Activity is absent,EA045-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +55955,Ca34,EA045,?,EA045-NA,,,,,, +55956,Ca35,EA045,?,EA045-NA,,,,,, +55957,Ca36,EA045,?,EA045-NA,,,,,, +55958,Ca37,EA045,?,EA045-NA,,,,,, +55959,Ca38,EA045,?,EA045-NA,,,,,, +55960,Ca39,EA045,Males alone,EA045-1,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +55961,Ca4,EA045,?,EA045-NA,,,,,, +55962,Ca40,EA045,Males alone,EA045-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +55963,Ca41,EA045,Males alone,EA045-1,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +55964,Ca42,EA045,Activity is absent,EA045-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +55965,Ca43,EA045,?,EA045-NA,,,,,, +55966,Ca5,EA045,?,EA045-NA,,,,,, +55967,Ca6,EA045,?,EA045-NA,,,,,, +55968,Ca7,EA045,Males alone,EA045-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +55969,Ca8,EA045,?,EA045-NA,,,,,, +55970,Ca9,EA045,?,EA045-NA,,,,,, +55971,Cb1,EA045,?,EA045-NA,,,,,, +55972,Cb10,EA045,?,EA045-NA,,,,,, +55973,Cb11,EA045,?,EA045-NA,,,,,, +55974,Cb12,EA045,?,EA045-NA,,,,,, +55975,Cb13,EA045,?,EA045-NA,,,,,, +55976,Cb14,EA045,?,EA045-NA,,,,,, +55977,Cb15,EA045,?,EA045-NA,,,,,, +55978,Cb16,EA045,?,EA045-NA,,,,,, +55979,Cb17,EA045,?,EA045-NA,,,,,, +55980,Cb18,EA045,Males alone,EA045-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p80, +55981,Cb19,EA045,?,EA045-NA,,,,,, +55982,Cb2,EA045,Males alone,EA045-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +55983,Cb20,EA045,Males alone,EA045-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +55984,Cb21,EA045,?,EA045-NA,,,,,, +55985,Cb22,EA045,?,EA045-NA,,,,,, +55986,Cb23,EA045,Males alone,EA045-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +55987,Cb24,EA045,?,EA045-NA,,,,,, +55988,Cb25,EA045,?,EA045-NA,,,,,, +55989,Cb26,EA045,Differentiated but equal,EA045-3,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +55990,Cb27,EA045,?,EA045-NA,,,,,, +55991,Cb28,EA045,?,EA045-NA,,,,,, +55992,Cb29,EA045,?,EA045-NA,,,,,, +55993,Cb3,EA045,Males alone,EA045-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +55994,Cb4,EA045,?,EA045-NA,,,,,, +55995,Cb5,EA045,?,EA045-NA,,,,,, +55996,Cb6,EA045,?,EA045-NA,,,,,, +55997,Cb7,EA045,"Activity present, sex diff. unspecified",EA045-8,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p80, +55998,Cb8,EA045,?,EA045-NA,,,,,, +55999,Cb9,EA045,Males alone,EA045-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +56000,Cc1,EA045,Females alone,EA045-6,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +56001,Cc10,EA045,Activity is absent,EA045-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +56002,Cc11,EA045,?,EA045-NA,,,,,, +56003,Cc12,EA045,?,EA045-NA,,,,,, +56004,Cc13,EA045,?,EA045-NA,,,,,, +56005,Cc14,EA045,Activity is absent,EA045-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +56006,Cc15,EA045,?,EA045-NA,,,,,, +56007,Cc16,EA045,Females alone,EA045-6,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +56008,Cc17,EA045,Females alone,EA045-6,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +56009,Cc18,EA045,?,EA045-NA,,,,,, +56010,Cc19,EA045,?,EA045-NA,,,,,, +56011,Cc2,EA045,Activity is absent,EA045-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +56012,Cc20,EA045,?,EA045-NA,,,,,, +56013,Cc3,EA045,Females alone,EA045-6,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +56014,Cc4,EA045,"Activity present, sex diff. unspecified",EA045-8,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +56015,Cc5,EA045,?,EA045-NA,,,,,, +56016,Cc6,EA045,?,EA045-NA,,,,,, +56017,Cc7,EA045,?,EA045-NA,,,,,, +56018,Cc8,EA045,?,EA045-NA,,,,,, +56019,Cc9,EA045,Activity is absent,EA045-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +56020,Cd1,EA045,?,EA045-NA,,,,,, +56021,Cd10,EA045,?,EA045-NA,,,,,, +56022,Cd11,EA045,?,EA045-NA,,,,,, +56023,Cd12,EA045,"Activity present, sex diff. unspecified",EA045-8,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +56024,Cd13,EA045,?,EA045-NA,,,,,, +56025,Cd14,EA045,?,EA045-NA,,,,,, +56026,Cd15,EA045,?,EA045-NA,,,,,, +56027,Cd16,EA045,?,EA045-NA,,,,,, +56028,Cd17,EA045,?,EA045-NA,,,,,, +56029,Cd18,EA045,?,EA045-NA,,,,,, +56030,Cd19,EA045,?,EA045-NA,,,,,, +56031,Cd2,EA045,Males alone,EA045-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +56032,Cd20,EA045,?,EA045-NA,,,,,, +56033,Cd21,EA045,?,EA045-NA,,,,,, +56034,Cd3,EA045,Differentiated but equal,EA045-3,Also male specialists using a more advanced type of loom,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +56035,Cd4,EA045,Males alone,EA045-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +56036,Cd5,EA045,?,EA045-NA,,,,,, +56037,Cd6,EA045,Males alone,EA045-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +56038,Cd7,EA045,?,EA045-NA,,,,,, +56039,Cd8,EA045,?,EA045-NA,,,,,, +56040,Cd9,EA045,?,EA045-NA,,,,,, +56041,Ce1,EA045,Females alone,EA045-6,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +56042,Ce2,EA045,?,EA045-NA,,,,,, +56043,Ce3,EA045,?,EA045-NA,,,,,, +56044,Ce4,EA045,?,EA045-NA,,,,,, +56045,Ce5,EA045,Sex irrelevant,EA045-7,Presumably industrial specialization only,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +56046,Ce6,EA045,Sex irrelevant,EA045-7,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +56047,Ce7,EA045,Sex irrelevant,EA045-7,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +56048,Ce8,EA045,Females alone,EA045-6,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +56049,Cf1,EA045,Sex irrelevant,EA045-7,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +56050,Cf2,EA045,?,EA045-NA,,,,,, +56051,Cf3,EA045,Activity is absent,EA045-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +56052,Cf4,EA045,Sex irrelevant,EA045-7,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +56053,Cf5,EA045,Sex irrelevant,EA045-7,,miner1939,,1930,EthnographicAtlas_1967_p84, +56054,Cg1,EA045,Sex irrelevant,EA045-7,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +56055,Cg2,EA045,Females alone,EA045-6,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +56056,Cg3,EA045,?,EA045-NA,,,,,, +56057,Cg4,EA045,Females alone,EA045-6,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +56058,Cg5,EA045,?,EA045-NA,,,,,, +56059,Ch1,EA045,Females alone,EA045-6,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +56060,Ch10,EA045,?,EA045-NA,,,,,, +56061,Ch11,EA045,?,EA045-NA,,,,,, +56062,Ch2,EA045,Females alone,EA045-6,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +56063,Ch3,EA045,Sex irrelevant,EA045-7,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +56064,Ch4,EA045,?,EA045-NA,,,,,, +56065,Ch5,EA045,Females alone,EA045-6,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +56066,Ch6,EA045,Sex irrelevant,EA045-7,,ember1954,,1910,EthnographicAtlas_1967_p84, +56067,Ch7,EA045,Sex irrelevant,EA045-7,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +56068,Ch8,EA045,Females alone,EA045-6,,hanzeli1955,,1940,EthnographicAtlas_1967_p84, +56069,Ch9,EA045,Sex irrelevant,EA045-7,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +56070,Ci1,EA045,?,EA045-NA,,,,,, +56071,Ci10,EA045,"Activity present, sex diff. unspecified",EA045-8,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +56072,Ci11,EA045,"Both, males more",EA045-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +56073,Ci12,EA045,Females alone,EA045-6,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +56074,Ci2,EA045,?,EA045-NA,,,,,, +56075,Ci3,EA045,Females alone,EA045-6,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p84, +56076,Ci4,EA045,?,EA045-NA,,,,,, +56077,Ci5,EA045,Females alone,EA045-6,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +56078,Ci6,EA045,?,EA045-NA,,,,,, +56079,Ci7,EA045,Females alone,EA045-6,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p84, +56080,Ci8,EA045,?,EA045-NA,,,,,, +56081,Ci9,EA045,?,EA045-NA,,,,,, +56082,Cj1,EA045,Sex irrelevant,EA045-7,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +56083,Cj10,EA045,Males alone,EA045-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +56084,Cj2,EA045,Females alone,EA045-6,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +56085,Cj3,EA045,"Both, females more",EA045-5,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +56086,Cj4,EA045,"Activity present, sex diff. unspecified",EA045-8,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +56087,Cj5,EA045,Females alone,EA045-6,,dickson1949,,1930,EthnographicAtlas_1967_p88, +56088,Cj6,EA045,?,EA045-NA,,,,,, +56089,Cj7,EA045,Sex irrelevant,EA045-7,"Formerly females alone (EA045 code ""6""), with no specialization specified (EA056 code ""9"")",davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +56090,Cj8,EA045,Activity is absent,EA045-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +56091,Cj9,EA045,Males alone,EA045-1,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +56092,Ea1,EA045,"Activity present, sex diff. unspecified",EA045-8,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +56093,Ea10,EA045,?,EA045-NA,,,,,, +56094,Ea11,EA045,Females alone,EA045-6,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +56095,Ea12,EA045,Females alone,EA045-6,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +56096,Ea13,EA045,Differentiated but equal,EA045-3,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +56097,Ea2,EA045,Males alone,EA045-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +56098,Ea3,EA045,"Activity present, sex diff. unspecified",EA045-8,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +56099,Ea4,EA045,Males alone,EA045-1,,barth1956b,,1950,EthnographicAtlas_1967_p88, +56100,Ea5,EA045,Males alone,EA045-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +56101,Ea6,EA045,Females alone,EA045-6,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +56102,Ea7,EA045,Females alone,EA045-6,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +56103,Ea8,EA045,Differentiated but equal,EA045-3,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +56104,Ea9,EA045,Differentiated but equal,EA045-3,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +56105,Eb1,EA045,Females alone,EA045-6,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +56106,Eb2,EA045,Males alone,EA045-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +56107,Eb3,EA045,Activity is absent,EA045-9,But felt is manufactured by both sexes,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +56108,Eb4,EA045,?,EA045-NA,,,,,, +56109,Eb5,EA045,?,EA045-NA,,,,,, +56110,Eb6,EA045,?,EA045-NA,,,,,, +56111,Eb7,EA045,?,EA045-NA,,,,,, +56112,Eb8,EA045,?,EA045-NA,,,,,, +56113,Ec1,EA045,Activity is absent,EA045-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +56114,Ec10,EA045,Females alone,EA045-6,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +56115,Ec11,EA045,Activity is absent,EA045-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +56116,Ec2,EA045,Males alone,EA045-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56117,Ec3,EA045,Activity is absent,EA045-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +56118,Ec4,EA045,Activity is absent,EA045-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +56119,Ec5,EA045,Activity is absent,EA045-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +56120,Ec6,EA045,?,EA045-NA,,,,,, +56121,Ec7,EA045,Females alone,EA045-6,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +56122,Ec8,EA045,?,EA045-NA,,,,,, +56123,Ec9,EA045,?,EA045-NA,,,,,, +56124,Ed1,EA045,Females alone,EA045-6,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +56125,Ed10,EA045,"Activity present, sex diff. unspecified",EA045-8,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +56126,Ed13,EA045,?,EA045-NA,,,,,, +56127,Ed14,EA045,?,EA045-NA,,,,,, +56128,Ed15a,EA045,?,EA045-NA,,,,,, +56129,Ed15b,EA045,Females alone,EA045-6,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +56130,Ed16,EA045,?,EA045-NA,,,,,, +56131,Ed2,EA045,"Activity present, sex diff. unspecified",EA045-8,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +56132,Ed3,EA045,"Activity present, sex diff. unspecified",EA045-8,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +56133,Ed4,EA045,Females alone,EA045-6,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +56134,Ed5,EA045,Females alone,EA045-6,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56135,Ed6,EA045,"Activity present, sex diff. unspecified",EA045-8,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +56136,Ed7,EA045,"Both, females more",EA045-5,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +56137,Ed8,EA045,Females alone,EA045-6,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +56138,Ed9,EA045,Females alone,EA045-6,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +56139,Ee1,EA045,Females alone,EA045-6,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +56140,Ee2,EA045,Males alone,EA045-1,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +56141,Ee3,EA045,Females alone,EA045-6,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +56142,Ee4,EA045,Males alone,EA045-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +56143,Ee5,EA045,Males alone,EA045-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +56144,Ee6,EA045,Females alone,EA045-6,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +56145,Ee7,EA045,?,EA045-NA,,,,,, +56146,Ee8,EA045,Females alone,EA045-6,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +56147,Ef1,EA045,Males alone,EA045-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +56148,Ef10,EA045,?,EA045-NA,,,,,, +56149,Ef11,EA045,"Both, males more",EA045-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +56150,Ef2,EA045,Males alone,EA045-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +56151,Ef3,EA045,?,EA045-NA,,,,,, +56152,Ef4,EA045,?,EA045-NA,,,,,, +56153,Ef5,EA045,Activity is absent,EA045-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +56154,Ef6,EA045,?,EA045-NA,,,,,, +56155,Ef7,EA045,Males alone,EA045-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +56156,Ef8,EA045,Males alone,EA045-1,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +56157,Ef9,EA045,Equal participation,EA045-4,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56158,Eg1,EA045,Activity is absent,EA045-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56159,Eg10,EA045,"Activity present, sex diff. unspecified",EA045-8,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +56160,Eg11,EA045,?,EA045-NA,,,,,, +56161,Eg12,EA045,?,EA045-NA,,,,,, +56162,Eg13,EA045,Activity is absent,EA045-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56163,Eg14,EA045,Activity is absent,EA045-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +56164,Eg2,EA045,Males alone,EA045-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +56165,Eg3,EA045,Activity is absent,EA045-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +56166,Eg4,EA045,Activity is absent,EA045-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +56167,Eg5,EA045,?,EA045-NA,,,,,, +56168,Eg6,EA045,?,EA045-NA,,,,,, +56169,Eg7,EA045,Activity is absent,EA045-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +56170,Eg8,EA045,Activity is absent,EA045-9,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +56171,Eg9,EA045,?,EA045-NA,,,,,, +56172,Eh1,EA045,Activity is absent,EA045-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +56173,Eh10,EA045,?,EA045-NA,,,,,, +56174,Eh2,EA045,Females alone,EA045-6,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +56175,Eh3,EA045,Females alone,EA045-6,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +56176,Eh4,EA045,Activity is absent,EA045-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56177,Eh5,EA045,Activity is absent,EA045-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +56178,Eh6,EA045,?,EA045-NA,,,,,, +56179,Eh7,EA045,Females alone,EA045-6,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +56180,Eh8,EA045,Females alone,EA045-6,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +56181,Eh9,EA045,?,EA045-NA,,,,,, +56182,Ei1,EA045,Females alone,EA045-6,But rare today,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56183,Ei10,EA045,Females alone,EA045-6,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +56184,Ei11,EA045,Females alone,EA045-6,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +56185,Ei12,EA045,?,EA045-NA,,,,,, +56186,Ei13,EA045,Females alone,EA045-6,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +56187,Ei14,EA045,Females alone,EA045-6,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +56188,Ei15,EA045,?,EA045-NA,,,,,, +56189,Ei16,EA045,Females alone,EA045-6,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +56190,Ei17,EA045,?,EA045-NA,,,,,, +56191,Ei18,EA045,Females alone,EA045-6,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +56192,Ei19,EA045,Females alone,EA045-6,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +56193,Ei2,EA045,Females alone,EA045-6,,mills1922,,1920,EthnographicAtlas_1967_p92, +56194,Ei20,EA045,?,EA045-NA,,,,,, +56195,Ei3,EA045,Females alone,EA045-6,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +56196,Ei4,EA045,Females alone,EA045-6,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +56197,Ei5,EA045,?,EA045-NA,,,,,, +56198,Ei6,EA045,Females alone,EA045-6,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +56199,Ei7,EA045,Females alone,EA045-6,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +56200,Ei8,EA045,Females alone,EA045-6,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +56201,Ei9,EA045,Females alone,EA045-6,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +56202,Ej1,EA045,Activity is absent,EA045-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +56203,Ej10,EA045,Females alone,EA045-6,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +56204,Ej11,EA045,Females alone,EA045-6,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p92, +56205,Ej12,EA045,Females alone,EA045-6,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +56206,Ej13,EA045,Females alone,EA045-6,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +56207,Ej14,EA045,Activity is absent,EA045-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56208,Ej15,EA045,"Activity present, sex diff. unspecified",EA045-8,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +56209,Ej16,EA045,Activity is absent,EA045-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +56210,Ej2,EA045,Females alone,EA045-6,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +56211,Ej3,EA045,Activity is absent,EA045-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +56212,Ej4,EA045,"Activity present, sex diff. unspecified",EA045-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +56213,Ej5,EA045,Females alone,EA045-6,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +56214,Ej6,EA045,Activity is absent,EA045-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +56215,Ej7,EA045,Females alone,EA045-6,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +56216,Ej8,EA045,Females alone,EA045-6,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +56217,Ej9,EA045,?,EA045-NA,,,,,, +56218,Ia1,EA045,Females alone,EA045-6,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +56219,Ia10,EA045,Activity is absent,EA045-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +56220,Ia11,EA045,Females alone,EA045-6,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +56221,Ia12,EA045,Females alone,EA045-6,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +56222,Ia13,EA045,Activity is absent,EA045-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +56223,Ia14,EA045,Females alone,EA045-6,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +56224,Ia15,EA045,?,EA045-NA,,,,,, +56225,Ia16,EA045,Females alone,EA045-6,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +56226,Ia17,EA045,?,EA045-NA,,,,,, +56227,Ia18,EA045,?,EA045-NA,,,,,, +56228,Ia2,EA045,Females alone,EA045-6,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +56229,Ia3,EA045,Females alone,EA045-6,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +56230,Ia4,EA045,?,EA045-NA,,,,,, +56231,Ia5,EA045,Females alone,EA045-6,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +56232,Ia6,EA045,Females alone,EA045-6,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56233,Ia7,EA045,?,EA045-NA,,,,,, +56234,Ia8,EA045,?,EA045-NA,,,,,, +56235,Ia9,EA045,Females alone,EA045-6,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +56236,Ib1,EA045,Females alone,EA045-6,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56237,Ib2,EA045,Activity is absent,EA045-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56238,Ib3,EA045,Males alone,EA045-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +56239,Ib4,EA045,Females alone,EA045-6,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +56240,Ib5,EA045,"Activity present, sex diff. unspecified",EA045-8,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +56241,Ib6,EA045,Females alone,EA045-6,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +56242,Ib7,EA045,Activity is absent,EA045-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +56243,Ib8,EA045,Activity is absent,EA045-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +56244,Ib9,EA045,?,EA045-NA,,,,,, +56245,Ic1,EA045,Females alone,EA045-6,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56246,Ic10,EA045,Activity is absent,EA045-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +56247,Ic11,EA045,"Activity present, sex diff. unspecified",EA045-8,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56248,Ic12,EA045,?,EA045-NA,,,,,, +56249,Ic13,EA045,?,EA045-NA,,,,,, +56250,Ic2,EA045,Activity is absent,EA045-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +56251,Ic3,EA045,"Activity present, sex diff. unspecified",EA045-8,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +56252,Ic4,EA045,?,EA045-NA,,,,,, +56253,Ic5,EA045,Activity is absent,EA045-9,But weaving has been recently introduced,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +56254,Ic6,EA045,"Activity present, sex diff. unspecified",EA045-8,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +56255,Ic7,EA045,Females alone,EA045-6,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +56256,Ic8,EA045,Activity is absent,EA045-9,,pleyte1893,,1890,EthnographicAtlas_1967_p96, +56257,Ic9,EA045,?,EA045-NA,,,,,, +56258,Id1,EA045,Activity is absent,EA045-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +56259,Id10,EA045,Activity is absent,EA045-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +56260,Id11,EA045,Activity is absent,EA045-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +56261,Id12,EA045,Activity is absent,EA045-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +56262,Id13,EA045,Activity is absent,EA045-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +56263,Id2,EA045,Activity is absent,EA045-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +56264,Id3,EA045,Activity is absent,EA045-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +56265,Id4,EA045,Activity is absent,EA045-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +56266,Id5,EA045,Activity is absent,EA045-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +56267,Id6,EA045,Activity is absent,EA045-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +56268,Id7,EA045,Activity is absent,EA045-9,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +56269,Id8,EA045,Activity is absent,EA045-9,,roth1890,,1830,EthnographicAtlas_1967_p96, +56270,Id9,EA045,Activity is absent,EA045-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +56271,Ie1,EA045,Activity is absent,EA045-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56272,Ie10,EA045,Activity is absent,EA045-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +56273,Ie11,EA045,Activity is absent,EA045-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +56274,Ie12,EA045,Activity is absent,EA045-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56275,Ie13,EA045,Activity is absent,EA045-9,,landtman1927,,1920,EthnographicAtlas_1967_p96, +56276,Ie14,EA045,Activity is absent,EA045-9,,haddon1908,,1900,EthnographicAtlas_1967_p96, +56277,Ie15,EA045,Activity is absent,EA045-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56278,Ie16,EA045,Activity is absent,EA045-9,,williams194041,,1940,EthnographicAtlas_1967_p96, +56279,Ie17,EA045,Activity is absent,EA045-9,Armbands and belts only,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +56280,Ie18,EA045,Activity is absent,EA045-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +56281,Ie19,EA045,Activity is absent,EA045-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +56282,Ie2,EA045,Activity is absent,EA045-9,But women weave net bags,schmitz1960,,1920,EthnographicAtlas_1967_p96, +56283,Ie20,EA045,Activity is absent,EA045-9,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +56284,Ie21,EA045,Activity is absent,EA045-9,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +56285,Ie22,EA045,Activity is absent,EA045-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +56286,Ie23,EA045,Activity is absent,EA045-9,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +56287,Ie24,EA045,Activity is absent,EA045-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +56288,Ie25,EA045,Activity is absent,EA045-9,,williamson1912,,1920,EthnographicAtlas_1967_p96, +56289,Ie26,EA045,Activity is absent,EA045-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +56290,Ie27,EA045,Activity is absent,EA045-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +56291,Ie28,EA045,Activity is absent,EA045-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +56292,Ie29,EA045,Activity is absent,EA045-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56293,Ie3,EA045,Activity is absent,EA045-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56294,Ie30,EA045,Activity is absent,EA045-9,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +56295,Ie31,EA045,Activity is absent,EA045-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +56296,Ie32,EA045,Activity is absent,EA045-9,But women make net bags,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +56297,Ie33,EA045,Activity is absent,EA045-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +56298,Ie34,EA045,?,EA045-NA,,,,,, +56299,Ie35,EA045,Activity is absent,EA045-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +56300,Ie36,EA045,?,EA045-NA,,,,,, +56301,Ie37,EA045,?,EA045-NA,,,,,, +56302,Ie38,EA045,Activity is absent,EA045-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +56303,Ie39,EA045,Activity is absent,EA045-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +56304,Ie4,EA045,Activity is absent,EA045-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56305,Ie5,EA045,Activity is absent,EA045-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +56306,Ie6,EA045,?,EA045-NA,,,,,, +56307,Ie7,EA045,Activity is absent,EA045-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +56308,Ie8,EA045,Activity is absent,EA045-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +56309,Ie9,EA045,Activity is absent,EA045-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +56310,If1,EA045,Females alone,EA045-6,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56311,If10,EA045,?,EA045-NA,,,,,, +56312,If11,EA045,Females alone,EA045-6,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +56313,If12,EA045,Activity is absent,EA045-9,,mason1954,,1940,EthnographicAtlas_1967_p100, +56314,If13,EA045,Activity is absent,EA045-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +56315,If14,EA045,Activity is absent,EA045-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +56316,If15,EA045,Females alone,EA045-6,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +56317,If16,EA045,Males alone,EA045-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +56318,If17,EA045,Activity is absent,EA045-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +56319,If2,EA045,Females alone,EA045-6,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +56320,If3,EA045,Activity is absent,EA045-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +56321,If4,EA045,Females alone,EA045-6,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +56322,If5,EA045,Females alone,EA045-6,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +56323,If6,EA045,Females alone,EA045-6,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +56324,If7,EA045,Activity is absent,EA045-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +56325,If8,EA045,Activity is absent,EA045-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +56326,If9,EA045,?,EA045-NA,,,,,, +56327,Ig1,EA045,Activity is absent,EA045-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +56328,Ig10,EA045,Activity is absent,EA045-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +56329,Ig11,EA045,Activity is absent,EA045-9,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +56330,Ig12,EA045,Activity is absent,EA045-9,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p100, +56331,Ig13,EA045,?,EA045-NA,,,,,, +56332,Ig14,EA045,Activity is absent,EA045-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +56333,Ig15,EA045,?,EA045-NA,,,,,, +56334,Ig16,EA045,?,EA045-NA,,,,,, +56335,Ig17,EA045,?,EA045-NA,,,,,, +56336,Ig18,EA045,?,EA045-NA,,,,,, +56337,Ig19,EA045,?,EA045-NA,,,,,, +56338,Ig2,EA045,Activity is absent,EA045-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +56339,Ig20,EA045,Activity is absent,EA045-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +56340,Ig21,EA045,Activity is absent,EA045-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +56341,Ig3,EA045,Activity is absent,EA045-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +56342,Ig4,EA045,Activity is absent,EA045-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +56343,Ig5,EA045,Activity is absent,EA045-9,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +56344,Ig6,EA045,Activity is absent,EA045-9,,ivens1927,,1900,EthnographicAtlas_1967_p100, +56345,Ig7,EA045,Activity is absent,EA045-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +56346,Ig8,EA045,?,EA045-NA,,,,,, +56347,Ig9,EA045,Activity is absent,EA045-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +56348,Ih1,EA045,Activity is absent,EA045-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +56349,Ih10,EA045,Activity is absent,EA045-9,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56350,Ih11,EA045,?,EA045-NA,,,,,, +56351,Ih12,EA045,?,EA045-NA,,,,,, +56352,Ih13,EA045,?,EA045-NA,,,,,, +56353,Ih14,EA045,Activity is absent,EA045-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +56354,Ih2,EA045,Activity is absent,EA045-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56355,Ih3,EA045,Activity is absent,EA045-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p100, +56356,Ih4,EA045,Activity is absent,EA045-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56357,Ih5,EA045,Activity is absent,EA045-9,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p100, +56358,Ih6,EA045,Activity is absent,EA045-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +56359,Ih7,EA045,Activity is absent,EA045-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +56360,Ih8,EA045,Activity is absent,EA045-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +56361,Ih9,EA045,Males alone,EA045-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56362,Ii1,EA045,Activity is absent,EA045-9,"Women plait fine mats, but there is no true weaving",buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +56363,Ii10,EA045,?,EA045-NA,,,,,, +56364,Ii12,EA045,Activity is absent,EA045-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56365,Ii13,EA045,Activity is absent,EA045-9,,burrows1937,,1830,EthnographicAtlas_1967_p100, +56366,Ii14,EA045,Activity is absent,EA045-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +56367,Ii2,EA045,Activity is absent,EA045-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +56368,Ii3,EA045,Activity is absent,EA045-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +56369,Ii4,EA045,Activity is absent,EA045-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +56370,Ii5,EA045,Males alone,EA045-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +56371,Ii6,EA045,Activity is absent,EA045-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +56372,Ii7,EA045,Females alone,EA045-6,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +56373,Ii8,EA045,Activity is absent,EA045-9,,burrows1936,,1840,EthnographicAtlas_1967_p100, +56374,Ii9,EA045,Activity is absent,EA045-9,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +56375,Ij1,EA045,Activity is absent,EA045-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +56376,Ij10,EA045,?,EA045-NA,,,,,, +56377,Ij2,EA045,Females alone,EA045-6,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +56378,Ij3,EA045,Activity is absent,EA045-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +56379,Ij4,EA045,Activity is absent,EA045-9,,buck1932a,,1850,EthnographicAtlas_1967_p104, +56380,Ij5,EA045,Activity is absent,EA045-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +56381,Ij6,EA045,Activity is absent,EA045-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +56382,Ij7,EA045,Activity is absent,EA045-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +56383,Ij8,EA045,Activity is absent,EA045-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +56384,Ij9,EA045,Activity is absent,EA045-9,,metraux1940,,1860,EthnographicAtlas_1967_p104, +56385,Na1,EA045,Activity is absent,EA045-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +56386,Na10,EA045,Activity is absent,EA045-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +56387,Na11,EA045,Activity is absent,EA045-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +56388,Na12,EA045,Activity is absent,EA045-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +56389,Na13,EA045,Activity is absent,EA045-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +56390,Na14,EA045,Activity is absent,EA045-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +56391,Na15,EA045,Activity is absent,EA045-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +56392,Na16,EA045,Activity is absent,EA045-9,Woven rabbit skin blankets only,osgood1931,,1860,EthnographicAtlas_1967_p104, +56393,Na17,EA045,Activity is absent,EA045-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56394,Na19,EA045,Females alone,EA045-6,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +56395,Na2,EA045,Activity is absent,EA045-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +56396,Na20,EA045,Activity is absent,EA045-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +56397,Na21,EA045,Activity is absent,EA045-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +56398,Na22,EA045,Activity is absent,EA045-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +56399,Na23,EA045,Activity is absent,EA045-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +56400,Na24,EA045,Activity is absent,EA045-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +56401,Na25,EA045,Activity is absent,EA045-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +56402,Na26,EA045,Activity is absent,EA045-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +56403,Na27,EA045,Activity is absent,EA045-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +56404,Na28,EA045,Activity is absent,EA045-9,,jenness1937,,1880,EthnographicAtlas_1967_p104, +56405,Na29,EA045,Activity is absent,EA045-9,,goddard1916,,1850,EthnographicAtlas_1967_p104, +56406,Na3,EA045,Activity is absent,EA045-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +56407,Na30,EA045,Activity is absent,EA045-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +56408,Na31,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +56409,Na32,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +56410,Na33,EA045,Activity is absent,EA045-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +56411,Na34,EA045,Activity is absent,EA045-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +56412,Na35,EA045,Activity is absent,EA045-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +56413,Na36,EA045,Activity is absent,EA045-9,Woven rabbit skin blankets only,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +56414,Na37,EA045,Activity is absent,EA045-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +56415,Na38,EA045,Activity is absent,EA045-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +56416,Na39,EA045,Activity is absent,EA045-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +56417,Na4,EA045,Activity is absent,EA045-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +56418,Na40,EA045,Activity is absent,EA045-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +56419,Na41,EA045,Females alone,EA045-6,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +56420,Na42,EA045,Activity is absent,EA045-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +56421,Na43,EA045,Activity is absent,EA045-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +56422,Na44,EA045,?,EA045-NA,,,,,, +56423,Na45,EA045,Activity is absent,EA045-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +56424,Na5,EA045,Activity is absent,EA045-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +56425,Na6,EA045,Activity is absent,EA045-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +56426,Na7,EA045,Activity is absent,EA045-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +56427,Na8,EA045,Activity is absent,EA045-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +56428,Na9,EA045,Activity is absent,EA045-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56429,Nb1,EA045,Females alone,EA045-6,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +56430,Nb10,EA045,?,EA045-NA,,,,,, +56431,Nb11,EA045,"Both, females more",EA045-5,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +56432,Nb12,EA045,Females alone,EA045-6,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +56433,Nb13,EA045,Females alone,EA045-6,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +56434,Nb14,EA045,Females alone,EA045-6,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +56435,Nb15,EA045,Females alone,EA045-6,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +56436,Nb16,EA045,Females alone,EA045-6,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +56437,Nb17,EA045,Females alone,EA045-6,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +56438,Nb18,EA045,?,EA045-NA,,,,,, +56439,Nb19,EA045,Activity is absent,EA045-9,But blankets were woven of twisted rabbit skin strips,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +56440,Nb2,EA045,Females alone,EA045-6,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +56441,Nb20,EA045,Activity is absent,EA045-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +56442,Nb21,EA045,?,EA045-NA,,,,,, +56443,Nb22,EA045,Females alone,EA045-6,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +56444,Nb23,EA045,"Activity present, sex diff. unspecified",EA045-8,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +56445,Nb24,EA045,Females alone,EA045-6,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +56446,Nb25,EA045,"Activity present, sex diff. unspecified",EA045-8,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +56447,Nb26,EA045,Females alone,EA045-6,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +56448,Nb27,EA045,"Activity present, sex diff. unspecified",EA045-8,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +56449,Nb28,EA045,Activity is absent,EA045-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +56450,Nb29,EA045,Activity is absent,EA045-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +56451,Nb3,EA045,Females alone,EA045-6,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +56452,Nb30,EA045,?,EA045-NA,,,,,, +56453,Nb31,EA045,Activity is absent,EA045-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +56454,Nb32,EA045,Activity is absent,EA045-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +56455,Nb33,EA045,Activity is absent,EA045-9,Woven rabbit skin blankets only,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +56456,Nb34,EA045,Activity is absent,EA045-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +56457,Nb35,EA045,Activity is absent,EA045-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +56458,Nb36,EA045,Activity is absent,EA045-9,But both sexes wove blankets of rabbit skin strips,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +56459,Nb37,EA045,Activity is absent,EA045-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +56460,Nb38,EA045,Females alone,EA045-6,But only blankets woven of rabbit skin strips,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +56461,Nb39,EA045,Activity is absent,EA045-9,But only blankets woven of rabbit skin strips,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +56462,Nb4,EA045,Activity is absent,EA045-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +56463,Nb5,EA045,Activity is absent,EA045-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +56464,Nb6,EA045,Activity is absent,EA045-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +56465,Nb7,EA045,Females alone,EA045-6,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +56466,Nb8,EA045,Females alone,EA045-6,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +56467,Nb9,EA045,Activity is absent,EA045-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +56468,Nc1,EA045,Activity is absent,EA045-9,But strips of rabbit fur were woven on a frame into blankets,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +56469,Nc10,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +56470,Nc11,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +56471,Nc12,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +56472,Nc13,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +56473,Nc14,EA045,Activity is absent,EA045-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +56474,Nc15,EA045,Activity is absent,EA045-9,Woven rabbit skin blankets only,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +56475,Nc16,EA045,Activity is absent,EA045-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +56476,Nc17,EA045,Activity is absent,EA045-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +56477,Nc18,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +56478,Nc19,EA045,Activity is absent,EA045-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +56479,Nc2,EA045,Activity is absent,EA045-9,But men wove strips of rabbit fur into blankets on a frame,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +56480,Nc20,EA045,Activity is absent,EA045-9,Rabbit skin blankets and feather capes only,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +56481,Nc21,EA045,Males alone,EA045-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +56482,Nc22,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +56483,Nc23,EA045,Activity is absent,EA045-9,Entry follows Gayton and Driver; Aginsky reports F,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +56484,Nc24,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +56485,Nc25,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +56486,Nc26,EA045,"Activity present, sex diff. unspecified",EA045-8,Rabbit skin blankets only,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +56487,Nc27,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +56488,Nc28,EA045,Females alone,EA045-6,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +56489,Nc29,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +56490,Nc3,EA045,Activity is absent,EA045-9,Blankets were woven from strips of rabbit fur,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +56491,Nc30,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +56492,Nc31,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +56493,Nc32,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +56494,Nc33,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +56495,Nc34,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,meigs1939,,1880,EthnographicAtlas_1967_p108, +56496,Nc4,EA045,Activity is absent,EA045-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +56497,Nc5,EA045,Activity is absent,EA045-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +56498,Nc6,EA045,Activity is absent,EA045-9,Only blankets woven from strips of rabbit fur,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +56499,Nc7,EA045,Activity is absent,EA045-9,But a few rabbit-skin blankets are woven,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +56500,Nc8,EA045,Activity is absent,EA045-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +56501,Nc9,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +56502,Nd1,EA045,Activity is absent,EA045-9,But blankets were woven from strips of rabbit fur,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +56503,Nd10,EA045,"Activity present, sex diff. unspecified",EA045-8,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +56504,Nd11,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +56505,Nd12,EA045,Activity is absent,EA045-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +56506,Nd13,EA045,"Activity present, sex diff. unspecified",EA045-8,Rabbit skin blankets only,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +56507,Nd14,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +56508,Nd15,EA045,Activity is absent,EA045-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +56509,Nd16,EA045,"Activity present, sex diff. unspecified",EA045-8,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +56510,Nd17,EA045,Activity is absent,EA045-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +56511,Nd18,EA045,Activity is absent,EA045-9,Woven packstraps and rabbit skin blankets only,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +56512,Nd19,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +56513,Nd2,EA045,Activity is absent,EA045-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +56514,Nd20,EA045,Activity is absent,EA045-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +56515,Nd21,EA045,Equal participation,EA045-4,Fur-strip blankets only,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +56516,Nd22,EA045,Activity is absent,EA045-9,Fur-strip blankets only,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +56517,Nd23,EA045,Equal participation,EA045-4,Fur-strip blankets only,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +56518,Nd24,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +56519,Nd25,EA045,Equal participation,EA045-4,Fur-strip blankets only,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +56520,Nd26,EA045,Activity is absent,EA045-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +56521,Nd27,EA045,Activity is absent,EA045-9,Fur-strip blankets only,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +56522,Nd28,EA045,Equal participation,EA045-4,Fur-strip blankets only,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +56523,Nd29,EA045,Males alone,EA045-1,Fur-strip blankets only,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +56524,Nd3,EA045,Activity is absent,EA045-9,Blankets were woven from rabbit skin strips,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +56525,Nd30,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +56526,Nd31,EA045,"Activity present, sex diff. unspecified",EA045-8,Rabbit skin blankets only,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +56527,Nd32,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +56528,Nd33,EA045,Equal participation,EA045-4,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +56529,Nd34,EA045,"Activity present, sex diff. unspecified",EA045-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +56530,Nd35,EA045,Females alone,EA045-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +56531,Nd36,EA045,Females alone,EA045-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +56532,Nd37,EA045,Females alone,EA045-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +56533,Nd38,EA045,Females alone,EA045-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +56534,Nd39,EA045,Females alone,EA045-6,Fur-strip blankets only,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +56535,Nd4,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +56536,Nd40,EA045,Females alone,EA045-6,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +56537,Nd41,EA045,Females alone,EA045-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +56538,Nd42,EA045,Equal participation,EA045-4,Fur-strip blankets only,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +56539,Nd43,EA045,Females alone,EA045-6,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +56540,Nd44,EA045,"Activity present, sex diff. unspecified",EA045-8,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +56541,Nd45,EA045,Activity is absent,EA045-9,But rare,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +56542,Nd46,EA045,Males alone,EA045-1,But rare,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +56543,Nd47,EA045,Males alone,EA045-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +56544,Nd48,EA045,Females alone,EA045-6,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +56545,Nd49,EA045,"Both, females more",EA045-5,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +56546,Nd5,EA045,Activity is absent,EA045-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +56547,Nd50,EA045,Females alone,EA045-6,Rabbit skin blankets only,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +56548,Nd51,EA045,"Activity present, sex diff. unspecified",EA045-8,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +56549,Nd52,EA045,"Both, females more",EA045-5,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +56550,Nd53,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +56551,Nd54,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56552,Nd55,EA045,Equal participation,EA045-4,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +56553,Nd56,EA045,Females alone,EA045-6,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +56554,Nd57,EA045,"Both, males more",EA045-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +56555,Nd58,EA045,Females alone,EA045-6,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +56556,Nd59,EA045,Females alone,EA045-6,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +56557,Nd6,EA045,Activity is absent,EA045-9,"But blankets were woven from strips of rabbit fur, chiefly by women",barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +56558,Nd60,EA045,Females alone,EA045-6,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +56559,Nd61,EA045,Females alone,EA045-6,Rabbit skin blankets only,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +56560,Nd62,EA045,Activity is absent,EA045-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +56561,Nd63,EA045,Activity is absent,EA045-9,A few rabbit skin blankets only,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +56562,Nd64,EA045,Activity is absent,EA045-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +56563,Nd65,EA045,Equal participation,EA045-4,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +56564,Nd66,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +56565,Nd67,EA045,?,EA045-NA,,,,,, +56566,Nd7,EA045,Activity is absent,EA045-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +56567,Nd8,EA045,Activity is absent,EA045-9,But bands influenced by the Coast Salish did some weaving,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +56568,Nd9,EA045,Activity is absent,EA045-9,Rabbit skin blankets only,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +56569,Ne1,EA045,Activity is absent,EA045-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +56570,Ne10,EA045,Activity is absent,EA045-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +56571,Ne11,EA045,Activity is absent,EA045-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +56572,Ne12,EA045,Activity is absent,EA045-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +56573,Ne13,EA045,Activity is absent,EA045-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +56574,Ne14,EA045,Activity is absent,EA045-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +56575,Ne15,EA045,Activity is absent,EA045-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +56576,Ne16,EA045,Activity is absent,EA045-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +56577,Ne17,EA045,Activity is absent,EA045-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +56578,Ne18,EA045,Activity is absent,EA045-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +56579,Ne19,EA045,Activity is absent,EA045-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +56580,Ne2,EA045,Activity is absent,EA045-9,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +56581,Ne20,EA045,Activity is absent,EA045-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +56582,Ne21,EA045,?,EA045-NA,,,,,, +56583,Ne3,EA045,Activity is absent,EA045-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +56584,Ne4,EA045,Activity is absent,EA045-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +56585,Ne5,EA045,Activity is absent,EA045-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +56586,Ne6,EA045,Activity is absent,EA045-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +56587,Ne7,EA045,Activity is absent,EA045-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +56588,Ne8,EA045,Activity is absent,EA045-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +56589,Ne9,EA045,Activity is absent,EA045-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +56590,Nf10,EA045,Activity is absent,EA045-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +56591,Nf11,EA045,Activity is absent,EA045-9,,whitman1937,,1870,EthnographicAtlas_1967_p116, +56592,Nf12,EA045,Activity is absent,EA045-9,But finger-woven bands and sashes were made,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +56593,Nf13,EA045,Activity is absent,EA045-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56594,Nf14,EA045,Activity is absent,EA045-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +56595,Nf15,EA045,?,EA045-NA,,,,,, +56596,Nf2,EA045,?,EA045-NA,,,,,, +56597,Nf3,EA045,Activity is absent,EA045-9,Scarves only,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +56598,Nf4,EA045,Females alone,EA045-6,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +56599,Nf5,EA045,Activity is absent,EA045-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +56600,Nf6,EA045,Activity is absent,EA045-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +56601,Nf7,EA045,Activity is absent,EA045-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56602,Nf8,EA045,Activity is absent,EA045-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +56603,Nf9,EA045,?,EA045-NA,,,,,, +56604,Ng1,EA045,Activity is absent,EA045-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +56605,Ng10,EA045,Activity is absent,EA045-9,Burden straps only,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +56606,Ng11,EA045,?,EA045-NA,,,,,, +56607,Ng12,EA045,Activity is absent,EA045-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +56608,Ng13,EA045,?,EA045-NA,,,,,, +56609,Ng14,EA045,?,EA045-NA,,,,,, +56610,Ng15,EA045,?,EA045-NA,,,,,, +56611,Ng2,EA045,?,EA045-NA,,,,,, +56612,Ng3,EA045,Females alone,EA045-6,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +56613,Ng4,EA045,?,EA045-NA,,,,,, +56614,Ng5,EA045,?,EA045-NA,,,,,, +56615,Ng6,EA045,?,EA045-NA,,,,,, +56616,Ng7,EA045,Females alone,EA045-6,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +56617,Ng8,EA045,Activity is absent,EA045-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +56618,Ng9,EA045,?,EA045-NA,,,,,, +56619,Nh1,EA045,Activity is absent,EA045-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +56620,Nh10,EA045,Differentiated but equal,EA045-3,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p116, +56621,Nh11,EA045,Males alone,EA045-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +56622,Nh12,EA045,Activity is absent,EA045-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +56623,Nh13,EA045,?,EA045-NA,,,,,, +56624,Nh14,EA045,?,EA045-NA,,,,,, +56625,Nh15,EA045,Activity is absent,EA045-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +56626,Nh16,EA045,Activity is absent,EA045-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56627,Nh17,EA045,Activity is absent,EA045-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +56628,Nh18,EA045,Males alone,EA045-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56629,Nh19,EA045,"Both, males more",EA045-2,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +56630,Nh2,EA045,Males alone,EA045-1,,dozier1954,,1950,EthnographicAtlas_1967_p116, +56631,Nh20,EA045,"Both, females more",EA045-5,,gifford1931,,1860,EthnographicAtlas_1967_p116, +56632,Nh21,EA045,Males alone,EA045-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56633,Nh22,EA045,Males alone,EA045-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +56634,Nh23,EA045,Males alone,EA045-1,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +56635,Nh24,EA045,Activity is absent,EA045-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +56636,Nh25,EA045,Activity is absent,EA045-9,"But probably formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +56637,Nh26,EA045,?,EA045-NA,,,,,, +56638,Nh27,EA045,?,EA045-NA,,,,,, +56639,Nh3,EA045,Females alone,EA045-6,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +56640,Nh4,EA045,Males alone,EA045-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +56641,Nh5,EA045,Males alone,EA045-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +56642,Nh6,EA045,Activity is absent,EA045-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +56643,Nh7,EA045,?,EA045-NA,,,,,, +56644,Nh8,EA045,Males alone,EA045-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +56645,Nh9,EA045,?,EA045-NA,,,,,, +56646,Ni1,EA045,Females alone,EA045-6,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +56647,Ni2,EA045,Males alone,EA045-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +56648,Ni3,EA045,Females alone,EA045-6,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +56649,Ni4,EA045,Activity is absent,EA045-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +56650,Ni5,EA045,Activity is absent,EA045-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +56651,Ni6,EA045,Males alone,EA045-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +56652,Ni7,EA045,"Activity present, sex diff. unspecified",EA045-8,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +56653,Ni8,EA045,?,EA045-NA,,,,,, +56654,Ni9,EA045,?,EA045-NA,,,,,, +56655,Nj1,EA045,Females alone,EA045-6,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56656,Nj10,EA045,Females alone,EA045-6,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56657,Nj11,EA045,?,EA045-NA,,,,,, +56658,Nj12,EA045,?,EA045-NA,,,,,, +56659,Nj13,EA045,?,EA045-NA,,,,,, +56660,Nj14,EA045,?,EA045-NA,,,,,, +56661,Nj2,EA045,Females alone,EA045-6,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +56662,Nj3,EA045,Females alone,EA045-6,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +56663,Nj4,EA045,Females alone,EA045-6,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +56664,Nj5,EA045,?,EA045-NA,,,,,, +56665,Nj6,EA045,?,EA045-NA,,,,,, +56666,Nj7,EA045,Females alone,EA045-6,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56667,Nj8,EA045,Females alone,EA045-6,,foster1948,,1500,EthnographicAtlas_1967_p120, +56668,Nj9,EA045,Males alone,EA045-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +56669,Sa1,EA045,Females alone,EA045-6,But only hammocks today,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +56670,Sa10,EA045,Females alone,EA045-6,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +56671,Sa11,EA045,?,EA045-NA,,,,,, +56672,Sa12,EA045,Activity is absent,EA045-9,"Weaving was formerly done (formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",stone1948,,1948,EthnographicAtlas_1967_p120, +56673,Sa13,EA045,Differentiated but equal,EA045-3,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +56674,Sa14,EA045,?,EA045-NA,,,,,, +56675,Sa15,EA045,?,EA045-NA,,,,,, +56676,Sa16,EA045,?,EA045-NA,,,,,, +56677,Sa17,EA045,?,EA045-NA,,,,,, +56678,Sa2,EA045,?,EA045-NA,,,,,, +56679,Sa3,EA045,Activity is absent,EA045-9,Agave bags only,wisdom1940,,1930,EthnographicAtlas_1967_p120, +56680,Sa4,EA045,Activity is absent,EA045-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +56681,Sa5,EA045,Females alone,EA045-6,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +56682,Sa6,EA045,Females alone,EA045-6,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +56683,Sa7,EA045,Activity is absent,EA045-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +56684,Sa8,EA045,Females alone,EA045-6,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p120, +56685,Sa9,EA045,Females alone,EA045-6,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +56686,Sb1,EA045,Females alone,EA045-6,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +56687,Sb2,EA045,Males alone,EA045-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +56688,Sb3,EA045,?,EA045-NA,,,,,, +56689,Sb4,EA045,Activity is absent,EA045-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +56690,Sb5,EA045,?,EA045-NA,,,,,, +56691,Sb6,EA045,Females alone,EA045-6,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +56692,Sb7,EA045,Females alone,EA045-6,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +56693,Sb8,EA045,Activity is absent,EA045-9,But hammocks were woven,rouse1948a,,1520,EthnographicAtlas_1967_p120, +56694,Sb9,EA045,"Activity present, sex diff. unspecified",EA045-8,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +56695,Sc1,EA045,Males alone,EA045-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +56696,Sc10,EA045,"Activity present, sex diff. unspecified",EA045-8,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +56697,Sc11,EA045,?,EA045-NA,,,,,, +56698,Sc12,EA045,Females alone,EA045-6,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +56699,Sc13,EA045,?,EA045-NA,,,,,, +56700,Sc14,EA045,Females alone,EA045-6,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +56701,Sc15,EA045,Females alone,EA045-6,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +56702,Sc16,EA045,Males alone,EA045-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +56703,Sc17,EA045,Females alone,EA045-6,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +56704,Sc18,EA045,Activity is absent,EA045-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +56705,Sc2,EA045,Activity is absent,EA045-9,But hammocks are made,leedsnd,,1950,EthnographicAtlas_1967_p120, +56706,Sc3,EA045,Females alone,EA045-6,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +56707,Sc4,EA045,Activity is absent,EA045-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +56708,Sc5,EA045,Females alone,EA045-6,,farabee1918,,1900,EthnographicAtlas_1967_p120, +56709,Sc6,EA045,?,EA045-NA,,,,,, +56710,Sc7,EA045,Activity is absent,EA045-9,Chiefly hammocks,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +56711,Sc8,EA045,Females alone,EA045-6,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +56712,Sc9,EA045,"Activity present, sex diff. unspecified",EA045-8,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +56713,Sd1,EA045,Activity is absent,EA045-9,Hammocks only,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56714,Sd2,EA045,Activity is absent,EA045-9,Hammocks only,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +56715,Sd3,EA045,"Activity present, sex diff. unspecified",EA045-8,Hammocks only,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +56716,Sd4,EA045,Activity is absent,EA045-9,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +56717,Sd5,EA045,Activity is absent,EA045-9,Hammocks only,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +56718,Sd6,EA045,?,EA045-NA,,,,,, +56719,Sd7,EA045,Differentiated but equal,EA045-3,"Mean weave hammocks and loincloths, women aprons",fock1963,,1950,EthnographicAtlas_1967_p120, +56720,Sd8,EA045,Females alone,EA045-6,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +56721,Sd9,EA045,Activity is absent,EA045-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56722,Se1,EA045,Activity is absent,EA045-9,Hammocks only,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +56723,Se10,EA045,Females alone,EA045-6,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p120, +56724,Se11,EA045,Activity is absent,EA045-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +56725,Se12,EA045,?,EA045-NA,,,,,, +56726,Se2,EA045,Females alone,EA045-6,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +56727,Se3,EA045,Males alone,EA045-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +56728,Se4,EA045,Activity is absent,EA045-9,,fejos1943,,1940,EthnographicAtlas_1967_p120, +56729,Se5,EA045,Activity is absent,EA045-9,But men make hammocks,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +56730,Se6,EA045,Activity is absent,EA045-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +56731,Se7,EA045,?,EA045-NA,,,,,, +56732,Se8,EA045,Females alone,EA045-6,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +56733,Se9,EA045,Females alone,EA045-6,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +56734,Sf1,EA045,Females alone,EA045-6,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +56735,Sf2,EA045,Differentiated but equal,EA045-3,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +56736,Sf3,EA045,Females alone,EA045-6,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +56737,Sf4,EA045,Females alone,EA045-6,A few ornamented cloths only,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +56738,Sf5,EA045,Females alone,EA045-6,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +56739,Sf6,EA045,"Activity present, sex diff. unspecified",EA045-8,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +56740,Sf7,EA045,Females alone,EA045-6,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +56741,Sf8,EA045,?,EA045-NA,,,,,, +56742,Sf9,EA045,?,EA045-NA,,,,,, +56743,Sg1,EA045,Activity is absent,EA045-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +56744,Sg2,EA045,Females alone,EA045-6,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56745,Sg3,EA045,Activity is absent,EA045-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +56746,Sg4,EA045,Females alone,EA045-6,But silversmithing and loom weaving are relatively recent introductions,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +56747,Sg5,EA045,Activity is absent,EA045-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56748,Sh1,EA045,Females alone,EA045-6,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +56749,Sh2,EA045,Females alone,EA045-6,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +56750,Sh3,EA045,Females alone,EA045-6,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +56751,Sh4,EA045,Females alone,EA045-6,,oberg1949,,1940,EthnographicAtlas_1967_p124, +56752,Sh5,EA045,Females alone,EA045-6,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +56753,Sh6,EA045,"Activity present, sex diff. unspecified",EA045-8,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +56754,Sh7,EA045,Females alone,EA045-6,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +56755,Sh8,EA045,Females alone,EA045-6,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +56756,Sh9,EA045,Females alone,EA045-6,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +56757,Si1,EA045,Activity is absent,EA045-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56758,Si10,EA045,Activity is absent,EA045-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +56759,Si2,EA045,Activity is absent,EA045-9,Hammocks only,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +56760,Si3,EA045,Activity is absent,EA045-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56761,Si4,EA045,"Activity present, sex diff. unspecified",EA045-8,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +56762,Si5,EA045,Activity is absent,EA045-9,Hammocks only,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +56763,Si6,EA045,Females alone,EA045-6,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +56764,Si7,EA045,"Activity present, sex diff. unspecified",EA045-8,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +56765,Si8,EA045,Females alone,EA045-6,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +56766,Si9,EA045,?,EA045-NA,,,,,, +56767,Sj1,EA045,Females alone,EA045-6,But not aboriginal,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +56768,Sj10,EA045,Females alone,EA045-6,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56769,Sj11,EA045,Activity is absent,EA045-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +56770,Sj2,EA045,Activity is absent,EA045-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +56771,Sj3,EA045,Activity is absent,EA045-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +56772,Sj4,EA045,Activity is absent,EA045-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +56773,Sj5,EA045,Activity is absent,EA045-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +56774,Sj6,EA045,Activity is absent,EA045-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +56775,Sj7,EA045,Activity is absent,EA045-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +56776,Sj8,EA045,Activity is absent,EA045-9,Hammocks only,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +56777,Sj9,EA045,Activity is absent,EA045-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +56778,ch12,EA045,Females alone,EA045-6,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +56779,ch13,EA045,Females alone,EA045-6,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +56780,ch14,EA045,Females alone,EA045-6,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +56781,ch15,EA045,"Both, females more",EA045-5,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +56782,ch16,EA045,Differentiated but equal,EA045-3,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +56783,ch17,EA045,Females alone,EA045-6,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +56784,ch18,EA045,Females alone,EA045-6,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +56785,ch19,EA045,Females alone,EA045-6,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +56786,ch20,EA045,Females alone,EA045-6,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +56787,ch21,EA045,Differentiated but equal,EA045-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +56788,ch22,EA045,Females alone,EA045-6,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +56789,ch23,EA045,Activity is absent,EA045-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +56790,ch24,EA045,Females alone,EA045-6,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +56791,ch25,EA045,Females alone,EA045-6,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +56792,ch26,EA045,Females alone,EA045-6,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +56793,ch27,EA045,Females alone,EA045-6,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +56794,ch28,EA045,Females alone,EA045-6,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +56795,ec12,EA045,Activity is absent,EA045-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +56796,ec13,EA045,Activity is absent,EA045-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +56797,ec14,EA045,Activity is absent,EA045-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +56798,ec15,EA045,Activity is absent,EA045-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +56799,ec16,EA045,Activity is absent,EA045-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +56800,ec17,EA045,Activity is absent,EA045-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +56801,ec18,EA045,Activity is absent,EA045-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +56802,ec19,EA045,Activity is absent,EA045-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +56803,ec20,EA045,Activity is absent,EA045-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +56804,ec21,EA045,Activity is absent,EA045-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +56805,Aa1,EA046,Males alone,EA046-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +56806,Aa2,EA046,Females alone,EA046-6,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +56807,Aa3,EA046,"Both, females more",EA046-5,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +56808,Aa4,EA046,?,EA046-NA,,,,,, +56809,Aa5,EA046,Activity is absent,EA046-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +56810,Aa6,EA046,?,EA046-NA,,,,,, +56811,Aa7,EA046,Males alone,EA046-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +56812,Aa8,EA046,?,EA046-NA,,,,,, +56813,Aa9,EA046,Activity is absent,EA046-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +56814,Ab1,EA046,Males alone,EA046-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +56815,Ab10,EA046,Males alone,EA046-1,,hunter1936,,1936,EthnographicAtlas_1967_p64, +56816,Ab11,EA046,Males alone,EA046-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +56817,Ab12,EA046,Males alone,EA046-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +56818,Ab13,EA046,Males alone,EA046-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +56819,Ab14,EA046,Males alone,EA046-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +56820,Ab15,EA046,Males alone,EA046-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +56821,Ab16,EA046,?,EA046-NA,,,,,, +56822,Ab17,EA046,?,EA046-NA,,,,,, +56823,Ab18,EA046,?,EA046-NA,,,,,, +56824,Ab19,EA046,Males alone,EA046-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +56825,Ab2,EA046,Males alone,EA046-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +56826,Ab20,EA046,?,EA046-NA,,,,,, +56827,Ab21a,EA046,?,EA046-NA,,,,,, +56828,Ab21b,EA046,?,EA046-NA,,,,,, +56829,Ab22,EA046,?,EA046-NA,,,,,, +56830,Ab3,EA046,Males alone,EA046-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +56831,Ab4,EA046,Activity is absent,EA046-9,,junod1927,,1920,EthnographicAtlas_1967_p64, +56832,Ab5,EA046,"Activity present, sex diff. unspecified",EA046-8,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +56833,Ab6,EA046,"Activity present, sex diff. unspecified",EA046-8,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +56834,Ab7,EA046,?,EA046-NA,,,,,, +56835,Ab8,EA046,?,EA046-NA,,,,,, +56836,Ab9,EA046,Males alone,EA046-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +56837,Ac1,EA046,"Both, females more",EA046-5,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +56838,Ac10,EA046,"Activity present, sex diff. unspecified",EA046-8,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +56839,Ac11,EA046,?,EA046-NA,,,,,, +56840,Ac12,EA046,?,EA046-NA,,,,,, +56841,Ac13,EA046,?,EA046-NA,,,,,, +56842,Ac14,EA046,?,EA046-NA,,,,,, +56843,Ac15,EA046,?,EA046-NA,,,,,, +56844,Ac16,EA046,?,EA046-NA,,,,,, +56845,Ac17,EA046,?,EA046-NA,,,,,, +56846,Ac18,EA046,Males alone,EA046-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +56847,Ac19,EA046,?,EA046-NA,,,,,, +56848,Ac2,EA046,?,EA046-NA,,,,,, +56849,Ac20,EA046,?,EA046-NA,,,,,, +56850,Ac21,EA046,?,EA046-NA,,,,,, +56851,Ac22,EA046,?,EA046-NA,,,,,, +56852,Ac23,EA046,?,EA046-NA,,,,,, +56853,Ac24,EA046,?,EA046-NA,,,,,, +56854,Ac25,EA046,?,EA046-NA,,,,,, +56855,Ac26,EA046,?,EA046-NA,,,,,, +56856,Ac27,EA046,?,EA046-NA,,,,,, +56857,Ac28,EA046,?,EA046-NA,,,,,, +56858,Ac29,EA046,?,EA046-NA,,,,,, +56859,Ac3,EA046,"Activity present, sex diff. unspecified",EA046-8,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +56860,Ac30,EA046,?,EA046-NA,,,,,, +56861,Ac31,EA046,Activity is absent,EA046-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +56862,Ac32,EA046,?,EA046-NA,,,,,, +56863,Ac33,EA046,?,EA046-NA,,,,,, +56864,Ac34,EA046,Males alone,EA046-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +56865,Ac35,EA046,?,EA046-NA,,,,,, +56866,Ac36,EA046,?,EA046-NA,,,,,, +56867,Ac37,EA046,?,EA046-NA,,,,,, +56868,Ac38,EA046,?,EA046-NA,,,,,, +56869,Ac39,EA046,?,EA046-NA,,,,,, +56870,Ac4,EA046,"Activity present, sex diff. unspecified",EA046-8,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +56871,Ac40,EA046,?,EA046-NA,,,,,, +56872,Ac41,EA046,?,EA046-NA,,,,,, +56873,Ac42,EA046,?,EA046-NA,,,,,, +56874,Ac43,EA046,?,EA046-NA,,,,,, +56875,Ac5,EA046,?,EA046-NA,,,,,, +56876,Ac6,EA046,?,EA046-NA,,,,,, +56877,Ac7,EA046,Activity is absent,EA046-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +56878,Ac8,EA046,?,EA046-NA,,,,,, +56879,Ac9,EA046,?,EA046-NA,,,,,, +56880,Ad1,EA046,Activity is absent,EA046-9,Despised as slave occupation,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +56881,Ad10,EA046,?,EA046-NA,,,,,, +56882,Ad11,EA046,?,EA046-NA,,,,,, +56883,Ad12,EA046,?,EA046-NA,,,,,, +56884,Ad13,EA046,Males alone,EA046-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +56885,Ad14,EA046,?,EA046-NA,,,,,, +56886,Ad15,EA046,?,EA046-NA,,,,,, +56887,Ad16,EA046,?,EA046-NA,,,,,, +56888,Ad17,EA046,?,EA046-NA,,,,,, +56889,Ad18,EA046,?,EA046-NA,,,,,, +56890,Ad19,EA046,?,EA046-NA,,,,,, +56891,Ad2,EA046,Males alone,EA046-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +56892,Ad20,EA046,?,EA046-NA,,,,,, +56893,Ad21,EA046,?,EA046-NA,,,,,, +56894,Ad22,EA046,?,EA046-NA,,,,,, +56895,Ad23,EA046,?,EA046-NA,,,,,, +56896,Ad24,EA046,?,EA046-NA,,,,,, +56897,Ad25,EA046,?,EA046-NA,,,,,, +56898,Ad26,EA046,?,EA046-NA,,,,,, +56899,Ad27,EA046,?,EA046-NA,,,,,, +56900,Ad28,EA046,?,EA046-NA,,,,,, +56901,Ad29,EA046,Activity is absent,EA046-9,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +56902,Ad3,EA046,"Activity present, sex diff. unspecified",EA046-8,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +56903,Ad30,EA046,?,EA046-NA,,,,,, +56904,Ad31,EA046,?,EA046-NA,,,,,, +56905,Ad32,EA046,?,EA046-NA,,,,,, +56906,Ad33,EA046,?,EA046-NA,,,,,, +56907,Ad34,EA046,?,EA046-NA,,,,,, +56908,Ad35,EA046,Males alone,EA046-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +56909,Ad36,EA046,?,EA046-NA,,,,,, +56910,Ad37,EA046,?,EA046-NA,,,,,, +56911,Ad38,EA046,?,EA046-NA,,,,,, +56912,Ad39,EA046,?,EA046-NA,,,,,, +56913,Ad4,EA046,Males alone,EA046-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +56914,Ad40,EA046,?,EA046-NA,,,,,, +56915,Ad41,EA046,?,EA046-NA,,,,,, +56916,Ad42,EA046,?,EA046-NA,,,,,, +56917,Ad43,EA046,?,EA046-NA,,,,,, +56918,Ad44,EA046,?,EA046-NA,,,,,, +56919,Ad45,EA046,?,EA046-NA,,,,,, +56920,Ad46,EA046,Activity is absent,EA046-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +56921,Ad47,EA046,?,EA046-NA,,,,,, +56922,Ad48,EA046,Males alone,EA046-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +56923,Ad49,EA046,?,EA046-NA,,,,,, +56924,Ad5,EA046,?,EA046-NA,,,,,, +56925,Ad50,EA046,?,EA046-NA,,,,,, +56926,Ad51,EA046,?,EA046-NA,,,,,, +56927,Ad6,EA046,Activity is absent,EA046-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +56928,Ad7,EA046,Males alone,EA046-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +56929,Ad8,EA046,?,EA046-NA,,,,,, +56930,Ad9,EA046,"Activity present, sex diff. unspecified",EA046-8,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +56931,Ae1,EA046,?,EA046-NA,,,,,, +56932,Ae10,EA046,Males alone,EA046-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +56933,Ae11,EA046,Activity is absent,EA046-9,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +56934,Ae12,EA046,?,EA046-NA,,,,,, +56935,Ae13,EA046,?,EA046-NA,,,,,, +56936,Ae14,EA046,Females alone,EA046-6,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +56937,Ae15,EA046,?,EA046-NA,,,,,, +56938,Ae16,EA046,?,EA046-NA,,,,,, +56939,Ae17,EA046,?,EA046-NA,,,,,, +56940,Ae18,EA046,?,EA046-NA,,,,,, +56941,Ae19,EA046,?,EA046-NA,,,,,, +56942,Ae2,EA046,?,EA046-NA,,,,,, +56943,Ae20,EA046,?,EA046-NA,,,,,, +56944,Ae21,EA046,?,EA046-NA,,,,,, +56945,Ae22,EA046,?,EA046-NA,,,,,, +56946,Ae23,EA046,?,EA046-NA,,,,,, +56947,Ae24,EA046,?,EA046-NA,,,,,, +56948,Ae25,EA046,?,EA046-NA,,,,,, +56949,Ae26,EA046,?,EA046-NA,,,,,, +56950,Ae27,EA046,?,EA046-NA,,,,,, +56951,Ae28,EA046,"Activity present, sex diff. unspecified",EA046-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +56952,Ae29,EA046,?,EA046-NA,,,,,, +56953,Ae3,EA046,?,EA046-NA,,,,,, +56954,Ae30,EA046,?,EA046-NA,,,,,, +56955,Ae31,EA046,?,EA046-NA,,,,,, +56956,Ae32,EA046,?,EA046-NA,,,,,, +56957,Ae33,EA046,?,EA046-NA,,,,,, +56958,Ae34,EA046,?,EA046-NA,,,,,, +56959,Ae35,EA046,?,EA046-NA,,,,,, +56960,Ae36,EA046,?,EA046-NA,,,,,, +56961,Ae37,EA046,?,EA046-NA,,,,,, +56962,Ae38,EA046,?,EA046-NA,,,,,, +56963,Ae39,EA046,Activity is absent,EA046-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +56964,Ae4,EA046,Activity is absent,EA046-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +56965,Ae40,EA046,?,EA046-NA,,,,,, +56966,Ae41,EA046,?,EA046-NA,,,,,, +56967,Ae42,EA046,?,EA046-NA,,,,,, +56968,Ae43,EA046,?,EA046-NA,,,,,, +56969,Ae44,EA046,?,EA046-NA,,,,,, +56970,Ae45,EA046,?,EA046-NA,,,,,, +56971,Ae46,EA046,?,EA046-NA,,,,,, +56972,Ae47,EA046,?,EA046-NA,,,,,, +56973,Ae48,EA046,?,EA046-NA,,,,,, +56974,Ae49,EA046,?,EA046-NA,,,,,, +56975,Ae5,EA046,?,EA046-NA,,,,,, +56976,Ae50,EA046,"Activity present, sex diff. unspecified",EA046-8,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +56977,Ae51,EA046,?,EA046-NA,,,,,, +56978,Ae52,EA046,?,EA046-NA,,,,,, +56979,Ae53,EA046,?,EA046-NA,,,,,, +56980,Ae54,EA046,?,EA046-NA,,,,,, +56981,Ae55,EA046,?,EA046-NA,,,,,, +56982,Ae56,EA046,?,EA046-NA,,,,,, +56983,Ae57,EA046,?,EA046-NA,,,,,, +56984,Ae58,EA046,?,EA046-NA,,,,,, +56985,Ae59,EA046,?,EA046-NA,,,,,, +56986,Ae6,EA046,?,EA046-NA,,,,,, +56987,Ae7,EA046,Activity is absent,EA046-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +56988,Ae8,EA046,"Activity present, sex diff. unspecified",EA046-8,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +56989,Ae9,EA046,?,EA046-NA,,,,,, +56990,Af1,EA046,"Activity present, sex diff. unspecified",EA046-8,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +56991,Af10,EA046,Activity is absent,EA046-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +56992,Af11,EA046,Males alone,EA046-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +56993,Af12,EA046,?,EA046-NA,,,,,, +56994,Af13,EA046,?,EA046-NA,,,,,, +56995,Af14,EA046,?,EA046-NA,,,,,, +56996,Af15,EA046,?,EA046-NA,,,,,, +56997,Af16,EA046,?,EA046-NA,,,,,, +56998,Af17,EA046,?,EA046-NA,,,,,, +56999,Af18,EA046,?,EA046-NA,,,,,, +57000,Af19,EA046,?,EA046-NA,,,,,, +57001,Af2,EA046,?,EA046-NA,,,,,, +57002,Af20,EA046,?,EA046-NA,,,,,, +57003,Af21,EA046,?,EA046-NA,,,,,, +57004,Af22,EA046,?,EA046-NA,,,,,, +57005,Af23,EA046,Activity is absent,EA046-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +57006,Af24,EA046,Males alone,EA046-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +57007,Af25,EA046,?,EA046-NA,,,,,, +57008,Af26,EA046,?,EA046-NA,,,,,, +57009,Af27,EA046,?,EA046-NA,,,,,, +57010,Af28,EA046,Males alone,EA046-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +57011,Af29,EA046,?,EA046-NA,,,,,, +57012,Af3,EA046,?,EA046-NA,,,,,, +57013,Af30,EA046,?,EA046-NA,,,,,, +57014,Af31,EA046,?,EA046-NA,,,,,, +57015,Af32,EA046,?,EA046-NA,,,,,, +57016,Af33,EA046,?,EA046-NA,,,,,, +57017,Af34,EA046,?,EA046-NA,,,,,, +57018,Af35,EA046,?,EA046-NA,,,,,, +57019,Af36,EA046,?,EA046-NA,,,,,, +57020,Af37,EA046,?,EA046-NA,,,,,, +57021,Af38,EA046,?,EA046-NA,,,,,, +57022,Af39,EA046,?,EA046-NA,,,,,, +57023,Af4,EA046,?,EA046-NA,,,,,, +57024,Af40,EA046,?,EA046-NA,,,,,, +57025,Af41,EA046,?,EA046-NA,,,,,, +57026,Af42,EA046,?,EA046-NA,,,,,, +57027,Af43,EA046,?,EA046-NA,,,,,, +57028,Af44,EA046,?,EA046-NA,,,,,, +57029,Af45,EA046,?,EA046-NA,,,,,, +57030,Af46,EA046,?,EA046-NA,,,,,, +57031,Af47,EA046,?,EA046-NA,,,,,, +57032,Af48,EA046,?,EA046-NA,,,,,, +57033,Af49,EA046,?,EA046-NA,,,,,, +57034,Af5,EA046,"Activity present, sex diff. unspecified",EA046-8,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +57035,Af50,EA046,?,EA046-NA,,,,,, +57036,Af51,EA046,Activity is absent,EA046-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +57037,Af52,EA046,?,EA046-NA,,,,,, +57038,Af53,EA046,?,EA046-NA,,,,,, +57039,Af54,EA046,"Activity present, sex diff. unspecified",EA046-8,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +57040,Af55,EA046,?,EA046-NA,,,,,, +57041,Af56,EA046,Activity is absent,EA046-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +57042,Af57,EA046,Males alone,EA046-1,But these specialists are aliens of the Yalunka tribe,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +57043,Af58,EA046,?,EA046-NA,,,,,, +57044,Af6,EA046,"Activity present, sex diff. unspecified",EA046-8,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +57045,Af7,EA046,?,EA046-NA,,,,,, +57046,Af8,EA046,?,EA046-NA,,,,,, +57047,Af9,EA046,?,EA046-NA,,,,,, +57048,Ag1,EA046,Males alone,EA046-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +57049,Ag10,EA046,"Activity present, sex diff. unspecified",EA046-8,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +57050,Ag11,EA046,?,EA046-NA,,,,,, +57051,Ag12,EA046,Males alone,EA046-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +57052,Ag13,EA046,?,EA046-NA,,,,,, +57053,Ag14,EA046,?,EA046-NA,,,,,, +57054,Ag15,EA046,?,EA046-NA,,,,,, +57055,Ag16,EA046,?,EA046-NA,,,,,, +57056,Ag17,EA046,?,EA046-NA,,,,,, +57057,Ag18,EA046,?,EA046-NA,,,,,, +57058,Ag19,EA046,?,EA046-NA,,,,,, +57059,Ag2,EA046,Males alone,EA046-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +57060,Ag20,EA046,?,EA046-NA,,,,,, +57061,Ag21,EA046,?,EA046-NA,,,,,, +57062,Ag22,EA046,Males alone,EA046-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +57063,Ag23,EA046,?,EA046-NA,,,,,, +57064,Ag24,EA046,?,EA046-NA,,,,,, +57065,Ag25,EA046,Males alone,EA046-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p72, +57066,Ag26,EA046,Males alone,EA046-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p72, +57067,Ag27,EA046,?,EA046-NA,,,,,, +57068,Ag28,EA046,?,EA046-NA,,,,,, +57069,Ag29,EA046,?,EA046-NA,,,,,, +57070,Ag3,EA046,Males alone,EA046-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +57071,Ag30,EA046,Males alone,EA046-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +57072,Ag31,EA046,?,EA046-NA,,,,,, +57073,Ag32,EA046,Males alone,EA046-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +57074,Ag33,EA046,?,EA046-NA,,,,,, +57075,Ag34,EA046,?,EA046-NA,,,,,, +57076,Ag35,EA046,?,EA046-NA,,,,,, +57077,Ag36,EA046,?,EA046-NA,,,,,, +57078,Ag37,EA046,?,EA046-NA,,,,,, +57079,Ag38,EA046,?,EA046-NA,,,,,, +57080,Ag39,EA046,?,EA046-NA,,,,,, +57081,Ag4,EA046,Males alone,EA046-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +57082,Ag40,EA046,?,EA046-NA,,,,,, +57083,Ag41,EA046,Males alone,EA046-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p72, +57084,Ag42,EA046,?,EA046-NA,,,,,, +57085,Ag43,EA046,?,EA046-NA,,,,,, +57086,Ag44,EA046,?,EA046-NA,,,,,, +57087,Ag45,EA046,?,EA046-NA,,,,,, +57088,Ag46,EA046,?,EA046-NA,,,,,, +57089,Ag47,EA046,Males alone,EA046-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +57090,Ag48,EA046,?,EA046-NA,,,,,, +57091,Ag49,EA046,Males alone,EA046-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +57092,Ag5,EA046,"Activity present, sex diff. unspecified",EA046-8,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +57093,Ag50,EA046,?,EA046-NA,,,,,, +57094,Ag51,EA046,?,EA046-NA,,,,,, +57095,Ag52,EA046,?,EA046-NA,,,,,, +57096,Ag53,EA046,?,EA046-NA,,,,,, +57097,Ag54,EA046,Males alone,EA046-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +57098,Ag6,EA046,?,EA046-NA,,,,,, +57099,Ag7,EA046,?,EA046-NA,,,,,, +57100,Ag8,EA046,?,EA046-NA,,,,,, +57101,Ag9,EA046,Males alone,EA046-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +57102,Ah1,EA046,?,EA046-NA,,,,,, +57103,Ah10,EA046,?,EA046-NA,,,,,, +57104,Ah11,EA046,?,EA046-NA,,,,,, +57105,Ah12,EA046,?,EA046-NA,,,,,, +57106,Ah13,EA046,"Activity present, sex diff. unspecified",EA046-8,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +57107,Ah14,EA046,"Activity present, sex diff. unspecified",EA046-8,,gunnandconant1960,,1920,EthnographicAtlas_1967_p76, +57108,Ah15,EA046,?,EA046-NA,,,,,, +57109,Ah16,EA046,?,EA046-NA,,,,,, +57110,Ah17,EA046,?,EA046-NA,,,,,, +57111,Ah18,EA046,?,EA046-NA,,,,,, +57112,Ah19,EA046,?,EA046-NA,,,,,, +57113,Ah2,EA046,?,EA046-NA,,,,,, +57114,Ah20,EA046,?,EA046-NA,,,,,, +57115,Ah21,EA046,?,EA046-NA,,,,,, +57116,Ah22,EA046,?,EA046-NA,,,,,, +57117,Ah23,EA046,?,EA046-NA,,,,,, +57118,Ah24,EA046,?,EA046-NA,,,,,, +57119,Ah25,EA046,?,EA046-NA,,,,,, +57120,Ah26,EA046,?,EA046-NA,,,,,, +57121,Ah27,EA046,?,EA046-NA,,,,,, +57122,Ah28,EA046,?,EA046-NA,,,,,, +57123,Ah29,EA046,?,EA046-NA,,,,,, +57124,Ah3,EA046,"Activity present, sex diff. unspecified",EA046-8,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +57125,Ah30,EA046,?,EA046-NA,,,,,, +57126,Ah31,EA046,?,EA046-NA,,,,,, +57127,Ah32,EA046,?,EA046-NA,,,,,, +57128,Ah33,EA046,?,EA046-NA,,,,,, +57129,Ah34,EA046,?,EA046-NA,,,,,, +57130,Ah35,EA046,?,EA046-NA,,,,,, +57131,Ah36,EA046,"Activity present, sex diff. unspecified",EA046-8,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +57132,Ah37,EA046,?,EA046-NA,,,,,, +57133,Ah38,EA046,"Activity present, sex diff. unspecified",EA046-8,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +57134,Ah39,EA046,"Activity present, sex diff. unspecified",EA046-8,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +57135,Ah4,EA046,?,EA046-NA,,,,,, +57136,Ah5,EA046,?,EA046-NA,,,,,, +57137,Ah6,EA046,?,EA046-NA,,,,,, +57138,Ah7,EA046,"Activity present, sex diff. unspecified",EA046-8,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +57139,Ah8,EA046,?,EA046-NA,,,,,, +57140,Ah9,EA046,Differentiated but equal,EA046-3,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +57141,Ai1,EA046,?,EA046-NA,,,,,, +57142,Ai10,EA046,?,EA046-NA,,,,,, +57143,Ai11,EA046,?,EA046-NA,,,,,, +57144,Ai12,EA046,?,EA046-NA,,,,,, +57145,Ai13,EA046,?,EA046-NA,,,,,, +57146,Ai14,EA046,Activity is absent,EA046-9,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +57147,Ai15,EA046,?,EA046-NA,,,,,, +57148,Ai16,EA046,?,EA046-NA,,,,,, +57149,Ai17,EA046,?,EA046-NA,,,,,, +57150,Ai18,EA046,?,EA046-NA,,,,,, +57151,Ai19,EA046,?,EA046-NA,,,,,, +57152,Ai2,EA046,?,EA046-NA,,,,,, +57153,Ai20,EA046,?,EA046-NA,,,,,, +57154,Ai21,EA046,?,EA046-NA,,,,,, +57155,Ai22,EA046,?,EA046-NA,,,,,, +57156,Ai23,EA046,?,EA046-NA,,,,,, +57157,Ai24,EA046,?,EA046-NA,,,,,, +57158,Ai25,EA046,?,EA046-NA,,,,,, +57159,Ai26,EA046,?,EA046-NA,,,,,, +57160,Ai27,EA046,?,EA046-NA,,,,,, +57161,Ai28,EA046,Activity is absent,EA046-9,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +57162,Ai29,EA046,?,EA046-NA,,,,,, +57163,Ai3,EA046,Activity is absent,EA046-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +57164,Ai30,EA046,?,EA046-NA,,,,,, +57165,Ai31,EA046,"Activity present, sex diff. unspecified",EA046-8,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +57166,Ai32,EA046,?,EA046-NA,,,,,, +57167,Ai33,EA046,?,EA046-NA,,,,,, +57168,Ai34,EA046,?,EA046-NA,,,,,, +57169,Ai35,EA046,?,EA046-NA,,,,,, +57170,Ai36,EA046,?,EA046-NA,,,,,, +57171,Ai37,EA046,?,EA046-NA,,,,,, +57172,Ai38,EA046,?,EA046-NA,,,,,, +57173,Ai39,EA046,?,EA046-NA,,,,,, +57174,Ai4,EA046,?,EA046-NA,,,,,, +57175,Ai40,EA046,?,EA046-NA,,,,,, +57176,Ai41,EA046,?,EA046-NA,,,,,, +57177,Ai42,EA046,?,EA046-NA,,,,,, +57178,Ai43,EA046,?,EA046-NA,,,,,, +57179,Ai44,EA046,?,EA046-NA,,,,,, +57180,Ai45,EA046,?,EA046-NA,,,,,, +57181,Ai46,EA046,?,EA046-NA,,,,,, +57182,Ai47,EA046,"Activity present, sex diff. unspecified",EA046-8,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +57183,Ai5,EA046,"Activity present, sex diff. unspecified",EA046-8,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +57184,Ai6,EA046,"Activity present, sex diff. unspecified",EA046-8,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +57185,Ai7,EA046,?,EA046-NA,,,,,, +57186,Ai8,EA046,?,EA046-NA,,,,,, +57187,Ai9,EA046,?,EA046-NA,,,,,, +57188,Aj1,EA046,?,EA046-NA,,,,,, +57189,Aj10,EA046,?,EA046-NA,,,,,, +57190,Aj11,EA046,?,EA046-NA,,,,,, +57191,Aj12,EA046,?,EA046-NA,,,,,, +57192,Aj13,EA046,?,EA046-NA,,,,,, +57193,Aj14,EA046,?,EA046-NA,,,,,, +57194,Aj15,EA046,?,EA046-NA,,,,,, +57195,Aj16,EA046,"Activity present, sex diff. unspecified",EA046-8,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +57196,Aj17,EA046,?,EA046-NA,,,,,, +57197,Aj18,EA046,Males alone,EA046-1,,jensen1959,,1950,EthnographicAtlas_1967_p80, +57198,Aj19,EA046,?,EA046-NA,,,,,, +57199,Aj2,EA046,"Activity present, sex diff. unspecified",EA046-8,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +57200,Aj20,EA046,?,EA046-NA,,,,,, +57201,Aj21,EA046,Females alone,EA046-6,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +57202,Aj22,EA046,?,EA046-NA,,,,,, +57203,Aj23,EA046,?,EA046-NA,,,,,, +57204,Aj24,EA046,?,EA046-NA,,,,,, +57205,Aj25,EA046,?,EA046-NA,,,,,, +57206,Aj26,EA046,?,EA046-NA,,,,,, +57207,Aj27,EA046,?,EA046-NA,,,,,, +57208,Aj28,EA046,?,EA046-NA,,,,,, +57209,Aj29,EA046,?,EA046-NA,,,,,, +57210,Aj3,EA046,?,EA046-NA,,,,,, +57211,Aj30,EA046,?,EA046-NA,,,,,, +57212,Aj31,EA046,?,EA046-NA,,,,,, +57213,Aj4,EA046,?,EA046-NA,,,,,, +57214,Aj5,EA046,Females alone,EA046-6,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +57215,Aj6,EA046,"Activity present, sex diff. unspecified",EA046-8,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +57216,Aj7,EA046,Females alone,EA046-6,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +57217,Aj8,EA046,?,EA046-NA,,,,,, +57218,Aj9,EA046,"Activity present, sex diff. unspecified",EA046-8,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +57219,Ca1,EA046,Males alone,EA046-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +57220,Ca10,EA046,Males alone,EA046-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +57221,Ca11,EA046,"Activity present, sex diff. unspecified",EA046-8,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +57222,Ca12,EA046,Males alone,EA046-1,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +57223,Ca13,EA046,Males alone,EA046-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +57224,Ca14,EA046,Males alone,EA046-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +57225,Ca15,EA046,Males alone,EA046-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +57226,Ca16,EA046,Males alone,EA046-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +57227,Ca17,EA046,"Activity present, sex diff. unspecified",EA046-8,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +57228,Ca18,EA046,?,EA046-NA,,,,,, +57229,Ca19,EA046,?,EA046-NA,,,,,, +57230,Ca2,EA046,Males alone,EA046-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +57231,Ca20,EA046,?,EA046-NA,,,,,, +57232,Ca21,EA046,?,EA046-NA,,,,,, +57233,Ca22,EA046,?,EA046-NA,,,,,, +57234,Ca23,EA046,Males alone,EA046-1,,jensen1959,,1950,EthnographicAtlas_1967_p80, +57235,Ca24,EA046,Males alone,EA046-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +57236,Ca25,EA046,Males alone,EA046-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +57237,Ca26,EA046,?,EA046-NA,,,,,, +57238,Ca27,EA046,?,EA046-NA,,,,,, +57239,Ca28,EA046,Males alone,EA046-1,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +57240,Ca29,EA046,Males alone,EA046-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +57241,Ca3,EA046,?,EA046-NA,,,,,, +57242,Ca30,EA046,Males alone,EA046-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +57243,Ca31,EA046,Males alone,EA046-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +57244,Ca32,EA046,"Activity present, sex diff. unspecified",EA046-8,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +57245,Ca33,EA046,"Activity present, sex diff. unspecified",EA046-8,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +57246,Ca34,EA046,?,EA046-NA,,,,,, +57247,Ca35,EA046,?,EA046-NA,,,,,, +57248,Ca36,EA046,?,EA046-NA,,,,,, +57249,Ca37,EA046,?,EA046-NA,,,,,, +57250,Ca38,EA046,?,EA046-NA,,,,,, +57251,Ca39,EA046,Males alone,EA046-1,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +57252,Ca4,EA046,"Activity present, sex diff. unspecified",EA046-8,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +57253,Ca40,EA046,Males alone,EA046-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +57254,Ca41,EA046,Males alone,EA046-1,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +57255,Ca42,EA046,?,EA046-NA,,,,,, +57256,Ca43,EA046,?,EA046-NA,,,,,, +57257,Ca5,EA046,"Activity present, sex diff. unspecified",EA046-8,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p80, +57258,Ca6,EA046,?,EA046-NA,,,,,, +57259,Ca7,EA046,Males alone,EA046-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +57260,Ca8,EA046,?,EA046-NA,,,,,, +57261,Ca9,EA046,?,EA046-NA,,,,,, +57262,Cb1,EA046,?,EA046-NA,,,,,, +57263,Cb10,EA046,?,EA046-NA,,,,,, +57264,Cb11,EA046,?,EA046-NA,,,,,, +57265,Cb12,EA046,?,EA046-NA,,,,,, +57266,Cb13,EA046,?,EA046-NA,,,,,, +57267,Cb14,EA046,?,EA046-NA,,,,,, +57268,Cb15,EA046,?,EA046-NA,,,,,, +57269,Cb16,EA046,?,EA046-NA,,,,,, +57270,Cb17,EA046,?,EA046-NA,,,,,, +57271,Cb18,EA046,?,EA046-NA,,,,,, +57272,Cb19,EA046,Males alone,EA046-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p80, +57273,Cb2,EA046,Males alone,EA046-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +57274,Cb20,EA046,?,EA046-NA,,,,,, +57275,Cb21,EA046,?,EA046-NA,,,,,, +57276,Cb22,EA046,?,EA046-NA,,,,,, +57277,Cb23,EA046,Males alone,EA046-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +57278,Cb24,EA046,"Activity present, sex diff. unspecified",EA046-8,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p84, +57279,Cb25,EA046,?,EA046-NA,,,,,, +57280,Cb26,EA046,Males alone,EA046-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +57281,Cb27,EA046,?,EA046-NA,,,,,, +57282,Cb28,EA046,?,EA046-NA,,,,,, +57283,Cb29,EA046,?,EA046-NA,,,,,, +57284,Cb3,EA046,Females alone,EA046-6,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +57285,Cb4,EA046,?,EA046-NA,,,,,, +57286,Cb5,EA046,?,EA046-NA,,,,,, +57287,Cb6,EA046,?,EA046-NA,,,,,, +57288,Cb7,EA046,?,EA046-NA,,,,,, +57289,Cb8,EA046,?,EA046-NA,,,,,, +57290,Cb9,EA046,?,EA046-NA,,,,,, +57291,Cc1,EA046,"Activity present, sex diff. unspecified",EA046-8,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +57292,Cc10,EA046,Females alone,EA046-6,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +57293,Cc11,EA046,?,EA046-NA,,,,,, +57294,Cc12,EA046,?,EA046-NA,,,,,, +57295,Cc13,EA046,?,EA046-NA,,,,,, +57296,Cc14,EA046,Males alone,EA046-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +57297,Cc15,EA046,?,EA046-NA,,,,,, +57298,Cc16,EA046,Males alone,EA046-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +57299,Cc17,EA046,Males alone,EA046-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +57300,Cc18,EA046,?,EA046-NA,,,,,, +57301,Cc19,EA046,?,EA046-NA,,,,,, +57302,Cc2,EA046,Males alone,EA046-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +57303,Cc20,EA046,"Activity present, sex diff. unspecified",EA046-8,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +57304,Cc3,EA046,Males alone,EA046-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +57305,Cc4,EA046,"Activity present, sex diff. unspecified",EA046-8,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +57306,Cc5,EA046,Males alone,EA046-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +57307,Cc6,EA046,?,EA046-NA,,,,,, +57308,Cc7,EA046,?,EA046-NA,,,,,, +57309,Cc8,EA046,?,EA046-NA,,,,,, +57310,Cc9,EA046,Females alone,EA046-6,But rare,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +57311,Cd1,EA046,?,EA046-NA,,,,,, +57312,Cd10,EA046,?,EA046-NA,,,,,, +57313,Cd11,EA046,?,EA046-NA,,,,,, +57314,Cd12,EA046,"Activity present, sex diff. unspecified",EA046-8,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +57315,Cd13,EA046,?,EA046-NA,,,,,, +57316,Cd14,EA046,?,EA046-NA,,,,,, +57317,Cd15,EA046,?,EA046-NA,,,,,, +57318,Cd16,EA046,?,EA046-NA,,,,,, +57319,Cd17,EA046,?,EA046-NA,,,,,, +57320,Cd18,EA046,?,EA046-NA,,,,,, +57321,Cd19,EA046,?,EA046-NA,,,,,, +57322,Cd2,EA046,Males alone,EA046-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +57323,Cd20,EA046,?,EA046-NA,,,,,, +57324,Cd21,EA046,?,EA046-NA,,,,,, +57325,Cd3,EA046,Males alone,EA046-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +57326,Cd4,EA046,Males alone,EA046-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +57327,Cd5,EA046,Males alone,EA046-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +57328,Cd6,EA046,?,EA046-NA,,,,,, +57329,Cd7,EA046,?,EA046-NA,,,,,, +57330,Cd8,EA046,?,EA046-NA,,,,,, +57331,Cd9,EA046,?,EA046-NA,,,,,, +57332,Ce1,EA046,Males alone,EA046-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +57333,Ce2,EA046,?,EA046-NA,,,,,, +57334,Ce3,EA046,Males alone,EA046-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +57335,Ce4,EA046,?,EA046-NA,,,,,, +57336,Ce5,EA046,"Both, males more",EA046-2,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +57337,Ce6,EA046,Males alone,EA046-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +57338,Ce7,EA046,?,EA046-NA,,,,,, +57339,Ce8,EA046,?,EA046-NA,,,,,, +57340,Cf1,EA046,Sex irrelevant,EA046-7,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +57341,Cf2,EA046,?,EA046-NA,,,,,, +57342,Cf3,EA046,Males alone,EA046-1,,munch1945,,1930,EthnographicAtlas_1967_p84, +57343,Cf4,EA046,Males alone,EA046-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +57344,Cf5,EA046,Sex irrelevant,EA046-7,,miner1939,,1930,EthnographicAtlas_1967_p84, +57345,Cg1,EA046,Sex irrelevant,EA046-7,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +57346,Cg2,EA046,?,EA046-NA,,,,,, +57347,Cg3,EA046,?,EA046-NA,,,,,, +57348,Cg4,EA046,Females alone,EA046-6,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +57349,Cg5,EA046,?,EA046-NA,,,,,, +57350,Ch1,EA046,"Activity present, sex diff. unspecified",EA046-8,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +57351,Ch10,EA046,?,EA046-NA,,,,,, +57352,Ch11,EA046,?,EA046-NA,,,,,, +57353,Ch2,EA046,Males alone,EA046-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +57354,Ch3,EA046,Sex irrelevant,EA046-7,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +57355,Ch4,EA046,"Activity present, sex diff. unspecified",EA046-8,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p84, +57356,Ch5,EA046,"Activity present, sex diff. unspecified",EA046-8,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +57357,Ch6,EA046,?,EA046-NA,,,,,, +57358,Ch7,EA046,?,EA046-NA,,,,,, +57359,Ch8,EA046,?,EA046-NA,,,,,, +57360,Ch9,EA046,"Activity present, sex diff. unspecified",EA046-8,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +57361,Ci1,EA046,Females alone,EA046-6,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +57362,Ci10,EA046,Males alone,EA046-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +57363,Ci11,EA046,"Activity present, sex diff. unspecified",EA046-8,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +57364,Ci12,EA046,Females alone,EA046-6,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +57365,Ci2,EA046,?,EA046-NA,,,,,, +57366,Ci3,EA046,?,EA046-NA,,,,,, +57367,Ci4,EA046,?,EA046-NA,,,,,, +57368,Ci5,EA046,Activity is absent,EA046-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +57369,Ci6,EA046,"Activity present, sex diff. unspecified",EA046-8,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p84, +57370,Ci7,EA046,"Activity present, sex diff. unspecified",EA046-8,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p84, +57371,Ci8,EA046,?,EA046-NA,,,,,, +57372,Ci9,EA046,?,EA046-NA,,,,,, +57373,Cj1,EA046,"Activity present, sex diff. unspecified",EA046-8,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +57374,Cj10,EA046,?,EA046-NA,,,,,, +57375,Cj2,EA046,Females alone,EA046-6,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +57376,Cj3,EA046,Males alone,EA046-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +57377,Cj4,EA046,Males alone,EA046-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +57378,Cj5,EA046,?,EA046-NA,,,,,, +57379,Cj6,EA046,?,EA046-NA,,,,,, +57380,Cj7,EA046,?,EA046-NA,,,,,, +57381,Cj8,EA046,Males alone,EA046-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +57382,Cj9,EA046,Males alone,EA046-1,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +57383,Ea1,EA046,Males alone,EA046-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +57384,Ea10,EA046,"Activity present, sex diff. unspecified",EA046-8,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +57385,Ea11,EA046,?,EA046-NA,,,,,, +57386,Ea12,EA046,"Activity present, sex diff. unspecified",EA046-8,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +57387,Ea13,EA046,?,EA046-NA,,,,,, +57388,Ea2,EA046,?,EA046-NA,,,,,, +57389,Ea3,EA046,Females alone,EA046-6,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +57390,Ea4,EA046,"Activity present, sex diff. unspecified",EA046-8,,barth1956b,,1950,EthnographicAtlas_1967_p88, +57391,Ea5,EA046,Males alone,EA046-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +57392,Ea6,EA046,"Activity present, sex diff. unspecified",EA046-8,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +57393,Ea7,EA046,?,EA046-NA,,,,,, +57394,Ea8,EA046,?,EA046-NA,,,,,, +57395,Ea9,EA046,"Activity present, sex diff. unspecified",EA046-8,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +57396,Eb1,EA046,"Activity present, sex diff. unspecified",EA046-8,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +57397,Eb2,EA046,"Activity present, sex diff. unspecified",EA046-8,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +57398,Eb3,EA046,Males alone,EA046-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +57399,Eb4,EA046,?,EA046-NA,,,,,, +57400,Eb5,EA046,?,EA046-NA,,,,,, +57401,Eb6,EA046,?,EA046-NA,,,,,, +57402,Eb7,EA046,Males alone,EA046-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +57403,Eb8,EA046,?,EA046-NA,,,,,, +57404,Ec1,EA046,Females alone,EA046-6,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +57405,Ec10,EA046,"Activity present, sex diff. unspecified",EA046-8,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +57406,Ec11,EA046,?,EA046-NA,,,,,, +57407,Ec2,EA046,Females alone,EA046-6,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57408,Ec3,EA046,Females alone,EA046-6,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +57409,Ec4,EA046,Females alone,EA046-6,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +57410,Ec5,EA046,Females alone,EA046-6,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +57411,Ec6,EA046,?,EA046-NA,,,,,, +57412,Ec7,EA046,Equal participation,EA046-4,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +57413,Ec8,EA046,?,EA046-NA,,,,,, +57414,Ec9,EA046,?,EA046-NA,,,,,, +57415,Ed1,EA046,"Activity present, sex diff. unspecified",EA046-8,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +57416,Ed10,EA046,?,EA046-NA,,,,,, +57417,Ed13,EA046,?,EA046-NA,,,,,, +57418,Ed14,EA046,?,EA046-NA,,,,,, +57419,Ed15a,EA046,?,EA046-NA,,,,,, +57420,Ed15b,EA046,Activity is absent,EA046-9,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +57421,Ed16,EA046,?,EA046-NA,,,,,, +57422,Ed2,EA046,"Activity present, sex diff. unspecified",EA046-8,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +57423,Ed3,EA046,?,EA046-NA,,,,,, +57424,Ed4,EA046,?,EA046-NA,,,,,, +57425,Ed5,EA046,?,EA046-NA,,,,,, +57426,Ed6,EA046,?,EA046-NA,,,,,, +57427,Ed7,EA046,?,EA046-NA,,,,,, +57428,Ed8,EA046,"Activity present, sex diff. unspecified",EA046-8,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +57429,Ed9,EA046,Males alone,EA046-1,But very unimportant,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +57430,Ee1,EA046,Activity is absent,EA046-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +57431,Ee2,EA046,"Activity present, sex diff. unspecified",EA046-8,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +57432,Ee3,EA046,"Activity present, sex diff. unspecified",EA046-8,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +57433,Ee4,EA046,"Activity present, sex diff. unspecified",EA046-8,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +57434,Ee5,EA046,"Activity present, sex diff. unspecified",EA046-8,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +57435,Ee6,EA046,"Both, males more",EA046-2,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +57436,Ee7,EA046,?,EA046-NA,,,,,, +57437,Ee8,EA046,Males alone,EA046-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +57438,Ef1,EA046,?,EA046-NA,,,,,, +57439,Ef10,EA046,?,EA046-NA,,,,,, +57440,Ef11,EA046,Males alone,EA046-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +57441,Ef2,EA046,"Both, males more",EA046-2,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +57442,Ef3,EA046,?,EA046-NA,,,,,, +57443,Ef4,EA046,?,EA046-NA,,,,,, +57444,Ef5,EA046,"Activity present, sex diff. unspecified",EA046-8,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +57445,Ef6,EA046,?,EA046-NA,,,,,, +57446,Ef7,EA046,?,EA046-NA,,,,,, +57447,Ef8,EA046,Equal participation,EA046-4,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +57448,Ef9,EA046,Males alone,EA046-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57449,Eg1,EA046,Activity is absent,EA046-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57450,Eg10,EA046,Males alone,EA046-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +57451,Eg11,EA046,?,EA046-NA,,,,,, +57452,Eg12,EA046,?,EA046-NA,,,,,, +57453,Eg13,EA046,?,EA046-NA,,,,,, +57454,Eg14,EA046,?,EA046-NA,,,,,, +57455,Eg2,EA046,Males alone,EA046-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +57456,Eg3,EA046,?,EA046-NA,,,,,, +57457,Eg4,EA046,?,EA046-NA,,,,,, +57458,Eg5,EA046,?,EA046-NA,,,,,, +57459,Eg6,EA046,?,EA046-NA,,,,,, +57460,Eg7,EA046,?,EA046-NA,,,,,, +57461,Eg8,EA046,?,EA046-NA,,,,,, +57462,Eg9,EA046,?,EA046-NA,,,,,, +57463,Eh1,EA046,Activity is absent,EA046-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +57464,Eh10,EA046,?,EA046-NA,,,,,, +57465,Eh2,EA046,Activity is absent,EA046-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +57466,Eh3,EA046,Males alone,EA046-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +57467,Eh4,EA046,"Activity present, sex diff. unspecified",EA046-8,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57468,Eh5,EA046,?,EA046-NA,,,,,, +57469,Eh6,EA046,?,EA046-NA,,,,,, +57470,Eh7,EA046,?,EA046-NA,,,,,, +57471,Eh8,EA046,"Activity present, sex diff. unspecified",EA046-8,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +57472,Eh9,EA046,?,EA046-NA,,,,,, +57473,Ei1,EA046,Activity is absent,EA046-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57474,Ei10,EA046,?,EA046-NA,,,,,, +57475,Ei11,EA046,?,EA046-NA,,,,,, +57476,Ei12,EA046,?,EA046-NA,,,,,, +57477,Ei13,EA046,Activity is absent,EA046-9,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +57478,Ei14,EA046,Activity is absent,EA046-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +57479,Ei15,EA046,?,EA046-NA,,,,,, +57480,Ei16,EA046,?,EA046-NA,,,,,, +57481,Ei17,EA046,?,EA046-NA,,,,,, +57482,Ei18,EA046,?,EA046-NA,,,,,, +57483,Ei19,EA046,?,EA046-NA,,,,,, +57484,Ei2,EA046,Activity is absent,EA046-9,,mills1922,,1920,EthnographicAtlas_1967_p92, +57485,Ei20,EA046,?,EA046-NA,,,,,, +57486,Ei3,EA046,?,EA046-NA,,,,,, +57487,Ei4,EA046,Activity is absent,EA046-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +57488,Ei5,EA046,?,EA046-NA,,,,,, +57489,Ei6,EA046,Activity is absent,EA046-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +57490,Ei7,EA046,?,EA046-NA,,,,,, +57491,Ei8,EA046,"Activity present, sex diff. unspecified",EA046-8,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +57492,Ei9,EA046,?,EA046-NA,,,,,, +57493,Ej1,EA046,?,EA046-NA,,,,,, +57494,Ej10,EA046,Males alone,EA046-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +57495,Ej11,EA046,?,EA046-NA,,,,,, +57496,Ej12,EA046,?,EA046-NA,,,,,, +57497,Ej13,EA046,?,EA046-NA,,,,,, +57498,Ej14,EA046,Activity is absent,EA046-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57499,Ej15,EA046,?,EA046-NA,,,,,, +57500,Ej16,EA046,?,EA046-NA,,,,,, +57501,Ej2,EA046,?,EA046-NA,,,,,, +57502,Ej3,EA046,Activity is absent,EA046-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +57503,Ej4,EA046,?,EA046-NA,,,,,, +57504,Ej5,EA046,?,EA046-NA,,,,,, +57505,Ej6,EA046,?,EA046-NA,,,,,, +57506,Ej7,EA046,?,EA046-NA,,,,,, +57507,Ej8,EA046,?,EA046-NA,,,,,, +57508,Ej9,EA046,?,EA046-NA,,,,,, +57509,Ia1,EA046,"Activity present, sex diff. unspecified",EA046-8,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +57510,Ia10,EA046,?,EA046-NA,,,,,, +57511,Ia11,EA046,"Activity present, sex diff. unspecified",EA046-8,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +57512,Ia12,EA046,?,EA046-NA,,,,,, +57513,Ia13,EA046,?,EA046-NA,,,,,, +57514,Ia14,EA046,?,EA046-NA,,,,,, +57515,Ia15,EA046,?,EA046-NA,,,,,, +57516,Ia16,EA046,Activity is absent,EA046-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +57517,Ia17,EA046,?,EA046-NA,,,,,, +57518,Ia18,EA046,?,EA046-NA,,,,,, +57519,Ia2,EA046,Activity is absent,EA046-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +57520,Ia3,EA046,Activity is absent,EA046-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +57521,Ia4,EA046,?,EA046-NA,,,,,, +57522,Ia5,EA046,?,EA046-NA,,,,,, +57523,Ia6,EA046,"Activity present, sex diff. unspecified",EA046-8,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57524,Ia7,EA046,?,EA046-NA,,,,,, +57525,Ia8,EA046,?,EA046-NA,,,,,, +57526,Ia9,EA046,?,EA046-NA,,,,,, +57527,Ib1,EA046,Activity is absent,EA046-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57528,Ib2,EA046,Activity is absent,EA046-9,"For rural Java, but leather work is produced by urban craftsmen, mainly Chinese",dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57529,Ib3,EA046,Activity is absent,EA046-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +57530,Ib4,EA046,?,EA046-NA,,,,,, +57531,Ib5,EA046,?,EA046-NA,,,,,, +57532,Ib6,EA046,?,EA046-NA,,,,,, +57533,Ib7,EA046,Activity is absent,EA046-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +57534,Ib8,EA046,?,EA046-NA,,,,,, +57535,Ib9,EA046,?,EA046-NA,,,,,, +57536,Ic1,EA046,?,EA046-NA,,,,,, +57537,Ic10,EA046,?,EA046-NA,,,,,, +57538,Ic11,EA046,?,EA046-NA,,,,,, +57539,Ic12,EA046,?,EA046-NA,,,,,, +57540,Ic13,EA046,?,EA046-NA,,,,,, +57541,Ic2,EA046,?,EA046-NA,,,,,, +57542,Ic3,EA046,?,EA046-NA,,,,,, +57543,Ic4,EA046,?,EA046-NA,,,,,, +57544,Ic5,EA046,Activity is absent,EA046-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +57545,Ic6,EA046,?,EA046-NA,,,,,, +57546,Ic7,EA046,?,EA046-NA,,,,,, +57547,Ic8,EA046,?,EA046-NA,,,,,, +57548,Ic9,EA046,?,EA046-NA,,,,,, +57549,Id1,EA046,Activity is absent,EA046-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +57550,Id10,EA046,Activity is absent,EA046-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +57551,Id11,EA046,Activity is absent,EA046-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +57552,Id12,EA046,?,EA046-NA,,,,,, +57553,Id13,EA046,Activity is absent,EA046-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +57554,Id2,EA046,Activity is absent,EA046-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +57555,Id3,EA046,?,EA046-NA,,,,,, +57556,Id4,EA046,Activity is absent,EA046-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +57557,Id5,EA046,Activity is absent,EA046-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +57558,Id6,EA046,Activity is absent,EA046-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +57559,Id7,EA046,?,EA046-NA,,,,,, +57560,Id8,EA046,Activity is absent,EA046-9,,roth1890,,1830,EthnographicAtlas_1967_p96, +57561,Id9,EA046,Activity is absent,EA046-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +57562,Ie1,EA046,Activity is absent,EA046-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57563,Ie10,EA046,Activity is absent,EA046-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +57564,Ie11,EA046,Activity is absent,EA046-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +57565,Ie12,EA046,Activity is absent,EA046-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57566,Ie13,EA046,?,EA046-NA,,,,,, +57567,Ie14,EA046,?,EA046-NA,,,,,, +57568,Ie15,EA046,Activity is absent,EA046-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57569,Ie16,EA046,?,EA046-NA,,,,,, +57570,Ie17,EA046,?,EA046-NA,,,,,, +57571,Ie18,EA046,Activity is absent,EA046-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +57572,Ie19,EA046,Activity is absent,EA046-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +57573,Ie2,EA046,?,EA046-NA,,,,,, +57574,Ie20,EA046,Activity is absent,EA046-9,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +57575,Ie21,EA046,?,EA046-NA,,,,,, +57576,Ie22,EA046,Activity is absent,EA046-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +57577,Ie23,EA046,?,EA046-NA,,,,,, +57578,Ie24,EA046,Activity is absent,EA046-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +57579,Ie25,EA046,Activity is absent,EA046-9,,williamson1912,,1920,EthnographicAtlas_1967_p96, +57580,Ie26,EA046,Activity is absent,EA046-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +57581,Ie27,EA046,?,EA046-NA,,,,,, +57582,Ie28,EA046,?,EA046-NA,,,,,, +57583,Ie29,EA046,?,EA046-NA,,,,,, +57584,Ie3,EA046,Activity is absent,EA046-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57585,Ie30,EA046,?,EA046-NA,,,,,, +57586,Ie31,EA046,Activity is absent,EA046-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +57587,Ie32,EA046,Activity is absent,EA046-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +57588,Ie33,EA046,?,EA046-NA,,,,,, +57589,Ie34,EA046,?,EA046-NA,,,,,, +57590,Ie35,EA046,?,EA046-NA,,,,,, +57591,Ie36,EA046,?,EA046-NA,,,,,, +57592,Ie37,EA046,?,EA046-NA,,,,,, +57593,Ie38,EA046,Activity is absent,EA046-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +57594,Ie39,EA046,?,EA046-NA,,,,,, +57595,Ie4,EA046,Activity is absent,EA046-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57596,Ie5,EA046,Activity is absent,EA046-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +57597,Ie6,EA046,?,EA046-NA,,,,,, +57598,Ie7,EA046,Activity is absent,EA046-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +57599,Ie8,EA046,?,EA046-NA,,,,,, +57600,Ie9,EA046,Activity is absent,EA046-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +57601,If1,EA046,?,EA046-NA,,,,,, +57602,If10,EA046,?,EA046-NA,,,,,, +57603,If11,EA046,Activity is absent,EA046-9,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +57604,If12,EA046,Activity is absent,EA046-9,,mason1954,,1940,EthnographicAtlas_1967_p100, +57605,If13,EA046,Activity is absent,EA046-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +57606,If14,EA046,Activity is absent,EA046-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +57607,If15,EA046,Activity is absent,EA046-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +57608,If16,EA046,Activity is absent,EA046-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +57609,If17,EA046,Activity is absent,EA046-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +57610,If2,EA046,Activity is absent,EA046-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +57611,If3,EA046,Activity is absent,EA046-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +57612,If4,EA046,Activity is absent,EA046-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +57613,If5,EA046,Activity is absent,EA046-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +57614,If6,EA046,Activity is absent,EA046-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +57615,If7,EA046,Activity is absent,EA046-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +57616,If8,EA046,Activity is absent,EA046-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +57617,If9,EA046,Activity is absent,EA046-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +57618,Ig1,EA046,Activity is absent,EA046-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +57619,Ig10,EA046,Activity is absent,EA046-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +57620,Ig11,EA046,Activity is absent,EA046-9,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +57621,Ig12,EA046,?,EA046-NA,,,,,, +57622,Ig13,EA046,?,EA046-NA,,,,,, +57623,Ig14,EA046,Activity is absent,EA046-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +57624,Ig15,EA046,?,EA046-NA,,,,,, +57625,Ig16,EA046,?,EA046-NA,,,,,, +57626,Ig17,EA046,?,EA046-NA,,,,,, +57627,Ig18,EA046,?,EA046-NA,,,,,, +57628,Ig19,EA046,?,EA046-NA,,,,,, +57629,Ig2,EA046,Activity is absent,EA046-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +57630,Ig20,EA046,?,EA046-NA,,,,,, +57631,Ig21,EA046,?,EA046-NA,,,,,, +57632,Ig3,EA046,Activity is absent,EA046-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +57633,Ig4,EA046,Activity is absent,EA046-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +57634,Ig5,EA046,?,EA046-NA,,,,,, +57635,Ig6,EA046,Activity is absent,EA046-9,,ivens1927,,1900,EthnographicAtlas_1967_p100, +57636,Ig7,EA046,?,EA046-NA,,,,,, +57637,Ig8,EA046,?,EA046-NA,,,,,, +57638,Ig9,EA046,?,EA046-NA,,,,,, +57639,Ih1,EA046,?,EA046-NA,,,,,, +57640,Ih10,EA046,?,EA046-NA,,,,,, +57641,Ih11,EA046,?,EA046-NA,,,,,, +57642,Ih12,EA046,?,EA046-NA,,,,,, +57643,Ih13,EA046,?,EA046-NA,,,,,, +57644,Ih14,EA046,Activity is absent,EA046-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +57645,Ih2,EA046,Activity is absent,EA046-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57646,Ih3,EA046,?,EA046-NA,,,,,, +57647,Ih4,EA046,Activity is absent,EA046-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57648,Ih5,EA046,?,EA046-NA,,,,,, +57649,Ih6,EA046,?,EA046-NA,,,,,, +57650,Ih7,EA046,?,EA046-NA,,,,,, +57651,Ih8,EA046,Activity is absent,EA046-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +57652,Ih9,EA046,?,EA046-NA,,,,,, +57653,Ii1,EA046,Activity is absent,EA046-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +57654,Ii10,EA046,?,EA046-NA,,,,,, +57655,Ii12,EA046,Activity is absent,EA046-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57656,Ii13,EA046,Activity is absent,EA046-9,,burrows1937,,1830,EthnographicAtlas_1967_p100, +57657,Ii14,EA046,Activity is absent,EA046-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +57658,Ii2,EA046,Activity is absent,EA046-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +57659,Ii3,EA046,Activity is absent,EA046-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +57660,Ii4,EA046,Activity is absent,EA046-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +57661,Ii5,EA046,Activity is absent,EA046-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +57662,Ii6,EA046,Activity is absent,EA046-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +57663,Ii7,EA046,Activity is absent,EA046-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +57664,Ii8,EA046,Activity is absent,EA046-9,,burrows1936,,1840,EthnographicAtlas_1967_p100, +57665,Ii9,EA046,Activity is absent,EA046-9,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +57666,Ij1,EA046,Activity is absent,EA046-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +57667,Ij10,EA046,?,EA046-NA,,,,,, +57668,Ij2,EA046,Activity is absent,EA046-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +57669,Ij3,EA046,"Activity present, sex diff. unspecified",EA046-8,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +57670,Ij4,EA046,Activity is absent,EA046-9,,buck1932a,,1850,EthnographicAtlas_1967_p104, +57671,Ij5,EA046,Activity is absent,EA046-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +57672,Ij6,EA046,Activity is absent,EA046-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +57673,Ij7,EA046,Activity is absent,EA046-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +57674,Ij8,EA046,Activity is absent,EA046-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +57675,Ij9,EA046,Activity is absent,EA046-9,,metraux1940,,1860,EthnographicAtlas_1967_p104, +57676,Na1,EA046,Females alone,EA046-6,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +57677,Na10,EA046,Females alone,EA046-6,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +57678,Na11,EA046,Females alone,EA046-6,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +57679,Na12,EA046,Females alone,EA046-6,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +57680,Na13,EA046,Females alone,EA046-6,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +57681,Na14,EA046,Females alone,EA046-6,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +57682,Na15,EA046,Females alone,EA046-6,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +57683,Na16,EA046,Females alone,EA046-6,,osgood1931,,1860,EthnographicAtlas_1967_p104, +57684,Na17,EA046,Females alone,EA046-6,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57685,Na19,EA046,"Both, females more",EA046-5,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +57686,Na2,EA046,Females alone,EA046-6,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +57687,Na20,EA046,Females alone,EA046-6,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +57688,Na21,EA046,Activity is absent,EA046-9,"Men scrape and women chew skins, but the preparation is strictly mechanical",birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +57689,Na22,EA046,"Both, females more",EA046-5,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +57690,Na23,EA046,Females alone,EA046-6,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +57691,Na24,EA046,Females alone,EA046-6,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +57692,Na25,EA046,Females alone,EA046-6,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +57693,Na26,EA046,Females alone,EA046-6,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +57694,Na27,EA046,Females alone,EA046-6,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +57695,Na28,EA046,Females alone,EA046-6,,jenness1937,,1880,EthnographicAtlas_1967_p104, +57696,Na29,EA046,Females alone,EA046-6,,goddard1916,,1850,EthnographicAtlas_1967_p104, +57697,Na3,EA046,Females alone,EA046-6,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +57698,Na30,EA046,Females alone,EA046-6,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +57699,Na31,EA046,Females alone,EA046-6,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +57700,Na32,EA046,Females alone,EA046-6,"In Murdock (1964a) coded as 'equal participation' (EA046 code ""4"") with the comment ""Entry follows Lips; Burgesse reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9""). In EA the entry is 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +57701,Na33,EA046,Females alone,EA046-6,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +57702,Na34,EA046,Females alone,EA046-6,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +57703,Na35,EA046,Females alone,EA046-6,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +57704,Na36,EA046,Females alone,EA046-6,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +57705,Na37,EA046,Females alone,EA046-6,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +57706,Na38,EA046,"Activity present, sex diff. unspecified",EA046-8,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +57707,Na39,EA046,Females alone,EA046-6,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +57708,Na4,EA046,Females alone,EA046-6,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +57709,Na40,EA046,?,EA046-NA,,,,,, +57710,Na41,EA046,"Activity present, sex diff. unspecified",EA046-8,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +57711,Na42,EA046,"Activity present, sex diff. unspecified",EA046-8,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +57712,Na43,EA046,Females alone,EA046-6,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +57713,Na44,EA046,?,EA046-NA,,,,,, +57714,Na45,EA046,Females alone,EA046-6,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +57715,Na5,EA046,Females alone,EA046-6,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +57716,Na6,EA046,"Both, females more",EA046-5,,lantis1946,,1930,EthnographicAtlas_1967_p104, +57717,Na7,EA046,Females alone,EA046-6,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +57718,Na8,EA046,Females alone,EA046-6,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +57719,Na9,EA046,Females alone,EA046-6,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57720,Nb1,EA046,Females alone,EA046-6,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +57721,Nb10,EA046,?,EA046-NA,,,,,, +57722,Nb11,EA046,Males alone,EA046-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +57723,Nb12,EA046,Equal participation,EA046-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +57724,Nb13,EA046,Equal participation,EA046-4,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +57725,Nb14,EA046,Equal participation,EA046-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +57726,Nb15,EA046,Females alone,EA046-6,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +57727,Nb16,EA046,Females alone,EA046-6,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +57728,Nb17,EA046,Males alone,EA046-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +57729,Nb18,EA046,Females alone,EA046-6,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +57730,Nb19,EA046,Females alone,EA046-6,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +57731,Nb2,EA046,"Both, females more",EA046-5,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +57732,Nb20,EA046,?,EA046-NA,,,,,, +57733,Nb21,EA046,Females alone,EA046-6,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +57734,Nb22,EA046,Females alone,EA046-6,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +57735,Nb23,EA046,Equal participation,EA046-4,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +57736,Nb24,EA046,Females alone,EA046-6,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +57737,Nb25,EA046,"Activity present, sex diff. unspecified",EA046-8,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +57738,Nb26,EA046,Equal participation,EA046-4,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +57739,Nb27,EA046,"Activity present, sex diff. unspecified",EA046-8,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +57740,Nb28,EA046,?,EA046-NA,,,,,, +57741,Nb29,EA046,?,EA046-NA,,,,,, +57742,Nb3,EA046,?,EA046-NA,,,,,, +57743,Nb30,EA046,"Activity present, sex diff. unspecified",EA046-8,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +57744,Nb31,EA046,?,EA046-NA,,,,,, +57745,Nb32,EA046,"Both, males more",EA046-2,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +57746,Nb33,EA046,"Activity present, sex diff. unspecified",EA046-8,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +57747,Nb34,EA046,"Activity present, sex diff. unspecified",EA046-8,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +57748,Nb35,EA046,"Activity present, sex diff. unspecified",EA046-8,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +57749,Nb36,EA046,"Activity present, sex diff. unspecified",EA046-8,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +57750,Nb37,EA046,Males alone,EA046-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +57751,Nb38,EA046,Equal participation,EA046-4,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +57752,Nb39,EA046,Differentiated but equal,EA046-3,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +57753,Nb4,EA046,"Both, males more",EA046-2,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +57754,Nb5,EA046,Females alone,EA046-6,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +57755,Nb6,EA046,"Activity present, sex diff. unspecified",EA046-8,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +57756,Nb7,EA046,?,EA046-NA,,,,,, +57757,Nb8,EA046,"Activity present, sex diff. unspecified",EA046-8,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +57758,Nb9,EA046,?,EA046-NA,,,,,, +57759,Nc1,EA046,"Both, males more",EA046-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +57760,Nc10,EA046,Males alone,EA046-1,"Entry follows Voegelin; Stewart reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +57761,Nc11,EA046,Males alone,EA046-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +57762,Nc12,EA046,Males alone,EA046-1,"Entry follows Voegelin; Dixon reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +57763,Nc13,EA046,Males alone,EA046-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +57764,Nc14,EA046,Males alone,EA046-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +57765,Nc15,EA046,"Activity present, sex diff. unspecified",EA046-8,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +57766,Nc16,EA046,?,EA046-NA,,,,,, +57767,Nc17,EA046,Males alone,EA046-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +57768,Nc18,EA046,Males alone,EA046-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +57769,Nc19,EA046,Males alone,EA046-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +57770,Nc2,EA046,Males alone,EA046-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +57771,Nc20,EA046,Activity is absent,EA046-9,Skins were scraped but not actually tanned,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +57772,Nc21,EA046,?,EA046-NA,,,,,, +57773,Nc22,EA046,Females alone,EA046-6,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +57774,Nc23,EA046,Males alone,EA046-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +57775,Nc24,EA046,Males alone,EA046-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +57776,Nc25,EA046,Males alone,EA046-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +57777,Nc26,EA046,Males alone,EA046-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +57778,Nc27,EA046,Males alone,EA046-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +57779,Nc28,EA046,Males alone,EA046-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +57780,Nc29,EA046,Males alone,EA046-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +57781,Nc3,EA046,?,EA046-NA,,,,,, +57782,Nc30,EA046,Males alone,EA046-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +57783,Nc31,EA046,Males alone,EA046-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +57784,Nc32,EA046,Males alone,EA046-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +57785,Nc33,EA046,Males alone,EA046-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +57786,Nc34,EA046,?,EA046-NA,,,,,, +57787,Nc4,EA046,Males alone,EA046-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +57788,Nc5,EA046,?,EA046-NA,,,,,, +57789,Nc6,EA046,Males alone,EA046-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +57790,Nc7,EA046,Males alone,EA046-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +57791,Nc8,EA046,Females alone,EA046-6,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +57792,Nc9,EA046,Equal participation,EA046-4,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +57793,Nd1,EA046,"Activity present, sex diff. unspecified",EA046-8,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +57794,Nd10,EA046,"Both, females more",EA046-5,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +57795,Nd11,EA046,"Both, females more",EA046-5,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +57796,Nd12,EA046,Females alone,EA046-6,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +57797,Nd13,EA046,Females alone,EA046-6,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +57798,Nd14,EA046,Females alone,EA046-6,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +57799,Nd15,EA046,Females alone,EA046-6,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +57800,Nd16,EA046,Females alone,EA046-6,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +57801,Nd17,EA046,Females alone,EA046-6,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +57802,Nd18,EA046,"Activity present, sex diff. unspecified",EA046-8,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +57803,Nd19,EA046,Females alone,EA046-6,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +57804,Nd2,EA046,Females alone,EA046-6,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +57805,Nd20,EA046,Females alone,EA046-6,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +57806,Nd21,EA046,Equal participation,EA046-4,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +57807,Nd22,EA046,Females alone,EA046-6,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +57808,Nd23,EA046,"Both, females more",EA046-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +57809,Nd24,EA046,"Both, females more",EA046-5,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +57810,Nd25,EA046,Equal participation,EA046-4,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +57811,Nd26,EA046,Equal participation,EA046-4,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +57812,Nd27,EA046,"Both, males more",EA046-2,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +57813,Nd28,EA046,"Both, females more",EA046-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +57814,Nd29,EA046,Males alone,EA046-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +57815,Nd3,EA046,Males alone,EA046-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +57816,Nd30,EA046,?,EA046-NA,,,,,, +57817,Nd31,EA046,"Activity present, sex diff. unspecified",EA046-8,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +57818,Nd32,EA046,"Both, females more",EA046-5,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +57819,Nd33,EA046,Males alone,EA046-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +57820,Nd34,EA046,Males alone,EA046-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +57821,Nd35,EA046,Males alone,EA046-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +57822,Nd36,EA046,Males alone,EA046-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +57823,Nd37,EA046,Males alone,EA046-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +57824,Nd38,EA046,Equal participation,EA046-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +57825,Nd39,EA046,Males alone,EA046-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +57826,Nd4,EA046,Females alone,EA046-6,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +57827,Nd40,EA046,Females alone,EA046-6,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +57828,Nd41,EA046,Equal participation,EA046-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +57829,Nd42,EA046,Males alone,EA046-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +57830,Nd43,EA046,Equal participation,EA046-4,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +57831,Nd44,EA046,Equal participation,EA046-4,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +57832,Nd45,EA046,Females alone,EA046-6,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +57833,Nd46,EA046,Females alone,EA046-6,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +57834,Nd47,EA046,Females alone,EA046-6,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +57835,Nd48,EA046,Females alone,EA046-6,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +57836,Nd49,EA046,Females alone,EA046-6,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +57837,Nd5,EA046,"Activity present, sex diff. unspecified",EA046-8,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +57838,Nd50,EA046,Equal participation,EA046-4,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +57839,Nd51,EA046,"Activity present, sex diff. unspecified",EA046-8,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +57840,Nd52,EA046,Females alone,EA046-6,"Entry follows Stewart; Drucker reports 'males alone' (EA046 code ""1""), with no specialization specified (EA057 code ""9"")",drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +57841,Nd53,EA046,Females alone,EA046-6,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +57842,Nd54,EA046,Males alone,EA046-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57843,Nd55,EA046,Males alone,EA046-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +57844,Nd56,EA046,Males alone,EA046-1,"Entry follows Kelly; Stewart reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +57845,Nd57,EA046,"Both, females more",EA046-5,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +57846,Nd58,EA046,Females alone,EA046-6,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +57847,Nd59,EA046,"Both, females more",EA046-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +57848,Nd6,EA046,Males alone,EA046-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +57849,Nd60,EA046,Females alone,EA046-6,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +57850,Nd61,EA046,Females alone,EA046-6,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +57851,Nd62,EA046,Females alone,EA046-6,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +57852,Nd63,EA046,Females alone,EA046-6,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +57853,Nd64,EA046,Females alone,EA046-6,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +57854,Nd65,EA046,Males alone,EA046-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +57855,Nd66,EA046,Males alone,EA046-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +57856,Nd67,EA046,Males alone,EA046-1,,gifford1936,,1870,EthnographicAtlas_1967_p112, +57857,Nd7,EA046,Females alone,EA046-6,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +57858,Nd8,EA046,"Both, females more",EA046-5,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +57859,Nd9,EA046,Equal participation,EA046-4,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +57860,Ne1,EA046,Females alone,EA046-6,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +57861,Ne10,EA046,Females alone,EA046-6,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +57862,Ne11,EA046,Females alone,EA046-6,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +57863,Ne12,EA046,Females alone,EA046-6,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +57864,Ne13,EA046,Females alone,EA046-6,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +57865,Ne14,EA046,Females alone,EA046-6,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +57866,Ne15,EA046,Females alone,EA046-6,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +57867,Ne16,EA046,"Activity present, sex diff. unspecified",EA046-8,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +57868,Ne17,EA046,"Activity present, sex diff. unspecified",EA046-8,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +57869,Ne18,EA046,Females alone,EA046-6,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +57870,Ne19,EA046,Females alone,EA046-6,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +57871,Ne2,EA046,Females alone,EA046-6,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +57872,Ne20,EA046,"Activity present, sex diff. unspecified",EA046-8,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +57873,Ne21,EA046,?,EA046-NA,,,,,, +57874,Ne3,EA046,Females alone,EA046-6,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +57875,Ne4,EA046,Females alone,EA046-6,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +57876,Ne5,EA046,Females alone,EA046-6,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +57877,Ne6,EA046,?,EA046-NA,,,,,, +57878,Ne7,EA046,Females alone,EA046-6,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +57879,Ne8,EA046,Females alone,EA046-6,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +57880,Ne9,EA046,Females alone,EA046-6,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +57881,Nf10,EA046,Females alone,EA046-6,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +57882,Nf11,EA046,Females alone,EA046-6,,whitman1937,,1870,EthnographicAtlas_1967_p116, +57883,Nf12,EA046,Females alone,EA046-6,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +57884,Nf13,EA046,Females alone,EA046-6,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57885,Nf14,EA046,Females alone,EA046-6,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +57886,Nf15,EA046,?,EA046-NA,,,,,, +57887,Nf2,EA046,Females alone,EA046-6,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +57888,Nf3,EA046,Females alone,EA046-6,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +57889,Nf4,EA046,Females alone,EA046-6,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +57890,Nf5,EA046,?,EA046-NA,,,,,, +57891,Nf6,EA046,Females alone,EA046-6,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +57892,Nf7,EA046,Females alone,EA046-6,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57893,Nf8,EA046,"Both, females more",EA046-5,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +57894,Nf9,EA046,Females alone,EA046-6,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +57895,Ng1,EA046,Females alone,EA046-6,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +57896,Ng10,EA046,"Activity present, sex diff. unspecified",EA046-8,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +57897,Ng11,EA046,"Activity present, sex diff. unspecified",EA046-8,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +57898,Ng12,EA046,Females alone,EA046-6,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +57899,Ng13,EA046,?,EA046-NA,,,,,, +57900,Ng14,EA046,?,EA046-NA,,,,,, +57901,Ng15,EA046,?,EA046-NA,,,,,, +57902,Ng2,EA046,?,EA046-NA,,,,,, +57903,Ng3,EA046,Females alone,EA046-6,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +57904,Ng4,EA046,?,EA046-NA,,,,,, +57905,Ng5,EA046,?,EA046-NA,,,,,, +57906,Ng6,EA046,Females alone,EA046-6,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +57907,Ng7,EA046,Females alone,EA046-6,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +57908,Ng8,EA046,?,EA046-NA,,,,,, +57909,Ng9,EA046,?,EA046-NA,,,,,, +57910,Nh1,EA046,Females alone,EA046-6,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +57911,Nh10,EA046,?,EA046-NA,,,,,, +57912,Nh11,EA046,Males alone,EA046-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +57913,Nh12,EA046,"Activity present, sex diff. unspecified",EA046-8,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +57914,Nh13,EA046,?,EA046-NA,,,,,, +57915,Nh14,EA046,?,EA046-NA,,,,,, +57916,Nh15,EA046,Females alone,EA046-6,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +57917,Nh16,EA046,Females alone,EA046-6,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57918,Nh17,EA046,Females alone,EA046-6,"But in some bands: 'males alone' (EA046 code ""1""), with no specialization specified (EA057 code ""9"")",gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +57919,Nh18,EA046,Males alone,EA046-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57920,Nh19,EA046,Males alone,EA046-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +57921,Nh2,EA046,?,EA046-NA,,,,,, +57922,Nh20,EA046,?,EA046-NA,,,,,, +57923,Nh21,EA046,Equal participation,EA046-4,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57924,Nh22,EA046,Males alone,EA046-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +57925,Nh23,EA046,Activity is absent,EA046-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +57926,Nh24,EA046,Females alone,EA046-6,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +57927,Nh25,EA046,"Activity present, sex diff. unspecified",EA046-8,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +57928,Nh26,EA046,?,EA046-NA,,,,,, +57929,Nh27,EA046,?,EA046-NA,,,,,, +57930,Nh3,EA046,Males alone,EA046-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +57931,Nh4,EA046,?,EA046-NA,,,,,, +57932,Nh5,EA046,Males alone,EA046-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +57933,Nh6,EA046,?,EA046-NA,,,,,, +57934,Nh7,EA046,?,EA046-NA,,,,,, +57935,Nh8,EA046,?,EA046-NA,,,,,, +57936,Nh9,EA046,?,EA046-NA,,,,,, +57937,Ni1,EA046,Differentiated but equal,EA046-3,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +57938,Ni2,EA046,Males alone,EA046-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +57939,Ni3,EA046,"Activity present, sex diff. unspecified",EA046-8,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +57940,Ni4,EA046,?,EA046-NA,,,,,, +57941,Ni5,EA046,Males alone,EA046-1,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +57942,Ni6,EA046,Males alone,EA046-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +57943,Ni7,EA046,Males alone,EA046-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +57944,Ni8,EA046,?,EA046-NA,,,,,, +57945,Ni9,EA046,?,EA046-NA,,,,,, +57946,Nj1,EA046,?,EA046-NA,,,,,, +57947,Nj10,EA046,?,EA046-NA,,,,,, +57948,Nj11,EA046,?,EA046-NA,,,,,, +57949,Nj12,EA046,?,EA046-NA,,,,,, +57950,Nj13,EA046,?,EA046-NA,,,,,, +57951,Nj14,EA046,?,EA046-NA,,,,,, +57952,Nj2,EA046,Males alone,EA046-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +57953,Nj3,EA046,?,EA046-NA,,,,,, +57954,Nj4,EA046,?,EA046-NA,,,,,, +57955,Nj5,EA046,?,EA046-NA,,,,,, +57956,Nj6,EA046,?,EA046-NA,,,,,, +57957,Nj7,EA046,Females alone,EA046-6,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +57958,Nj8,EA046,?,EA046-NA,,,,,, +57959,Nj9,EA046,Activity is absent,EA046-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +57960,Sa1,EA046,?,EA046-NA,,,,,, +57961,Sa10,EA046,Activity is absent,EA046-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +57962,Sa11,EA046,?,EA046-NA,,,,,, +57963,Sa12,EA046,"Activity present, sex diff. unspecified",EA046-8,,stone1948,,1948,EthnographicAtlas_1967_p120, +57964,Sa13,EA046,?,EA046-NA,,,,,, +57965,Sa14,EA046,?,EA046-NA,,,,,, +57966,Sa15,EA046,?,EA046-NA,,,,,, +57967,Sa16,EA046,?,EA046-NA,,,,,, +57968,Sa17,EA046,?,EA046-NA,,,,,, +57969,Sa2,EA046,?,EA046-NA,,,,,, +57970,Sa3,EA046,Males alone,EA046-1,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +57971,Sa4,EA046,?,EA046-NA,,,,,, +57972,Sa5,EA046,Activity is absent,EA046-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +57973,Sa6,EA046,?,EA046-NA,,,,,, +57974,Sa7,EA046,Activity is absent,EA046-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +57975,Sa8,EA046,?,EA046-NA,,,,,, +57976,Sa9,EA046,"Activity present, sex diff. unspecified",EA046-8,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +57977,Sb1,EA046,?,EA046-NA,,,,,, +57978,Sb2,EA046,?,EA046-NA,,,,,, +57979,Sb3,EA046,?,EA046-NA,,,,,, +57980,Sb4,EA046,Activity is absent,EA046-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +57981,Sb5,EA046,?,EA046-NA,,,,,, +57982,Sb6,EA046,Males alone,EA046-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +57983,Sb7,EA046,Activity is absent,EA046-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +57984,Sb8,EA046,Activity is absent,EA046-9,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +57985,Sb9,EA046,Males alone,EA046-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +57986,Sc1,EA046,Activity is absent,EA046-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +57987,Sc10,EA046,Activity is absent,EA046-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +57988,Sc11,EA046,Activity is absent,EA046-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +57989,Sc12,EA046,Activity is absent,EA046-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +57990,Sc13,EA046,Activity is absent,EA046-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +57991,Sc14,EA046,Activity is absent,EA046-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +57992,Sc15,EA046,Activity is absent,EA046-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +57993,Sc16,EA046,Activity is absent,EA046-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +57994,Sc17,EA046,Activity is absent,EA046-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +57995,Sc18,EA046,Activity is absent,EA046-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +57996,Sc2,EA046,?,EA046-NA,,,,,, +57997,Sc3,EA046,Activity is absent,EA046-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +57998,Sc4,EA046,Activity is absent,EA046-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +57999,Sc5,EA046,?,EA046-NA,,,,,, +58000,Sc6,EA046,?,EA046-NA,,,,,, +58001,Sc7,EA046,Activity is absent,EA046-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +58002,Sc8,EA046,?,EA046-NA,,,,,, +58003,Sc9,EA046,Activity is absent,EA046-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +58004,Sd1,EA046,?,EA046-NA,,,,,, +58005,Sd2,EA046,Activity is absent,EA046-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +58006,Sd3,EA046,Activity is absent,EA046-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +58007,Sd4,EA046,?,EA046-NA,,,,,, +58008,Sd5,EA046,?,EA046-NA,,,,,, +58009,Sd6,EA046,Activity is absent,EA046-9,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +58010,Sd7,EA046,?,EA046-NA,,,,,, +58011,Sd8,EA046,Activity is absent,EA046-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +58012,Sd9,EA046,Activity is absent,EA046-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58013,Se1,EA046,Activity is absent,EA046-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +58014,Se10,EA046,?,EA046-NA,,,,,, +58015,Se11,EA046,Activity is absent,EA046-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +58016,Se12,EA046,?,EA046-NA,,,,,, +58017,Se2,EA046,?,EA046-NA,,,,,, +58018,Se3,EA046,Activity is absent,EA046-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +58019,Se4,EA046,"Activity present, sex diff. unspecified",EA046-8,,fejos1943,,1940,EthnographicAtlas_1967_p120, +58020,Se5,EA046,Activity is absent,EA046-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +58021,Se6,EA046,Activity is absent,EA046-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +58022,Se7,EA046,?,EA046-NA,,,,,, +58023,Se8,EA046,Activity is absent,EA046-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +58024,Se9,EA046,Activity is absent,EA046-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +58025,Sf1,EA046,Activity is absent,EA046-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +58026,Sf2,EA046,Males alone,EA046-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +58027,Sf3,EA046,?,EA046-NA,,,,,, +58028,Sf4,EA046,?,EA046-NA,,,,,, +58029,Sf5,EA046,?,EA046-NA,,,,,, +58030,Sf6,EA046,?,EA046-NA,,,,,, +58031,Sf7,EA046,?,EA046-NA,,,,,, +58032,Sf8,EA046,?,EA046-NA,,,,,, +58033,Sf9,EA046,?,EA046-NA,,,,,, +58034,Sg1,EA046,Females alone,EA046-6,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +58035,Sg2,EA046,"Both, females more",EA046-5,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58036,Sg3,EA046,Females alone,EA046-6,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +58037,Sg4,EA046,Females alone,EA046-6,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +58038,Sg5,EA046,Activity is absent,EA046-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58039,Sh1,EA046,Females alone,EA046-6,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +58040,Sh2,EA046,Males alone,EA046-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +58041,Sh3,EA046,Females alone,EA046-6,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +58042,Sh4,EA046,Males alone,EA046-1,,oberg1949,,1940,EthnographicAtlas_1967_p124, +58043,Sh5,EA046,Females alone,EA046-6,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +58044,Sh6,EA046,Activity is absent,EA046-9,But there was no actual tanning,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +58045,Sh7,EA046,Males alone,EA046-1,But tanning is not aboriginal,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124,"Assume Murdock comment meant for Col 46, not Col 47 as stated Gray (1999)" +58046,Sh8,EA046,Activity is absent,EA046-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +58047,Sh9,EA046,Activity is absent,EA046-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +58048,Si1,EA046,?,EA046-NA,,,,,, +58049,Si10,EA046,Activity is absent,EA046-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +58050,Si2,EA046,?,EA046-NA,,,,,, +58051,Si3,EA046,Activity is absent,EA046-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58052,Si4,EA046,Activity is absent,EA046-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +58053,Si5,EA046,?,EA046-NA,,,,,, +58054,Si6,EA046,?,EA046-NA,,,,,, +58055,Si7,EA046,?,EA046-NA,,,,,, +58056,Si8,EA046,?,EA046-NA,,,,,, +58057,Si9,EA046,?,EA046-NA,,,,,, +58058,Sj1,EA046,?,EA046-NA,,,,,, +58059,Sj10,EA046,Activity is absent,EA046-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58060,Sj11,EA046,?,EA046-NA,,,,,, +58061,Sj2,EA046,?,EA046-NA,,,,,, +58062,Sj3,EA046,?,EA046-NA,,,,,, +58063,Sj4,EA046,Activity is absent,EA046-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +58064,Sj5,EA046,?,EA046-NA,,,,,, +58065,Sj6,EA046,?,EA046-NA,,,,,, +58066,Sj7,EA046,?,EA046-NA,,,,,, +58067,Sj8,EA046,Activity is absent,EA046-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +58068,Sj9,EA046,?,EA046-NA,,,,,, +58069,ch12,EA046,Differentiated but equal,EA046-3,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +58070,ch13,EA046,Activity is absent,EA046-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +58071,ch14,EA046,"Activity present, sex diff. unspecified",EA046-8,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +58072,ch15,EA046,"Activity present, sex diff. unspecified",EA046-8,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +58073,ch16,EA046,Males alone,EA046-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +58074,ch17,EA046,"Activity present, sex diff. unspecified",EA046-8,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +58075,ch18,EA046,?,EA046-NA,,,,,, +58076,ch19,EA046,Males alone,EA046-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +58077,ch20,EA046,"Both, females more",EA046-5,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +58078,ch21,EA046,Males alone,EA046-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +58079,ch22,EA046,?,EA046-NA,,,,,, +58080,ch23,EA046,Males alone,EA046-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +58081,ch24,EA046,Males alone,EA046-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +58082,ch25,EA046,Males alone,EA046-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +58083,ch26,EA046,"Activity present, sex diff. unspecified",EA046-8,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +58084,ch27,EA046,Males alone,EA046-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +58085,ch28,EA046,Males alone,EA046-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +58086,ec12,EA046,Females alone,EA046-6,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +58087,ec13,EA046,Females alone,EA046-6,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +58088,ec14,EA046,Females alone,EA046-6,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +58089,ec15,EA046,Females alone,EA046-6,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +58090,ec16,EA046,Females alone,EA046-6,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +58091,ec17,EA046,Females alone,EA046-6,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +58092,ec18,EA046,Females alone,EA046-6,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +58093,ec19,EA046,Females alone,EA046-6,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +58094,ec20,EA046,Females alone,EA046-6,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +58095,ec21,EA046,Females alone,EA046-6,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +58096,Aa1,EA047,Activity is absent,EA047-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +58097,Aa2,EA047,Activity is absent,EA047-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +58098,Aa3,EA047,Females alone,EA047-6,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +58099,Aa4,EA047,?,EA047-NA,,,,,, +58100,Aa5,EA047,Activity is absent,EA047-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +58101,Aa6,EA047,?,EA047-NA,,,,,, +58102,Aa7,EA047,Activity is absent,EA047-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +58103,Aa8,EA047,Activity is absent,EA047-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +58104,Aa9,EA047,?,EA047-NA,,,,,, +58105,Ab1,EA047,?,EA047-NA,,,,,, +58106,Ab10,EA047,Females alone,EA047-6,,hunter1936,,1936,EthnographicAtlas_1967_p64, +58107,Ab11,EA047,Females alone,EA047-6,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +58108,Ab12,EA047,Females alone,EA047-6,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +58109,Ab13,EA047,Females alone,EA047-6,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +58110,Ab14,EA047,Females alone,EA047-6,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +58111,Ab15,EA047,Females alone,EA047-6,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +58112,Ab16,EA047,?,EA047-NA,,,,,, +58113,Ab17,EA047,?,EA047-NA,,,,,, +58114,Ab18,EA047,Females alone,EA047-6,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +58115,Ab19,EA047,Females alone,EA047-6,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +58116,Ab2,EA047,?,EA047-NA,,,,,, +58117,Ab20,EA047,?,EA047-NA,,,,,, +58118,Ab21a,EA047,?,EA047-NA,,,,,, +58119,Ab21b,EA047,?,EA047-NA,,,,,, +58120,Ab22,EA047,?,EA047-NA,,,,,, +58121,Ab3,EA047,Females alone,EA047-6,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +58122,Ab4,EA047,Females alone,EA047-6,,junod1927,,1920,EthnographicAtlas_1967_p64, +58123,Ab5,EA047,Females alone,EA047-6,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +58124,Ab6,EA047,Females alone,EA047-6,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +58125,Ab7,EA047,?,EA047-NA,,,,,, +58126,Ab8,EA047,Females alone,EA047-6,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +58127,Ab9,EA047,Females alone,EA047-6,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +58128,Ac1,EA047,Females alone,EA047-6,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +58129,Ac10,EA047,Females alone,EA047-6,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +58130,Ac11,EA047,"Activity present, sex diff. unspecified",EA047-8,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +58131,Ac12,EA047,"Activity present, sex diff. unspecified",EA047-8,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p64, +58132,Ac13,EA047,"Activity present, sex diff. unspecified",EA047-8,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p64, +58133,Ac14,EA047,?,EA047-NA,,,,,, +58134,Ac15,EA047,?,EA047-NA,,,,,, +58135,Ac16,EA047,?,EA047-NA,,,,,, +58136,Ac17,EA047,Females alone,EA047-6,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +58137,Ac18,EA047,"Both, females more",EA047-5,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +58138,Ac19,EA047,?,EA047-NA,,,,,, +58139,Ac2,EA047,?,EA047-NA,,,,,, +58140,Ac20,EA047,?,EA047-NA,,,,,, +58141,Ac21,EA047,?,EA047-NA,,,,,, +58142,Ac22,EA047,?,EA047-NA,,,,,, +58143,Ac23,EA047,Females alone,EA047-6,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +58144,Ac24,EA047,?,EA047-NA,,,,,, +58145,Ac25,EA047,?,EA047-NA,,,,,, +58146,Ac26,EA047,?,EA047-NA,,,,,, +58147,Ac27,EA047,?,EA047-NA,,,,,, +58148,Ac28,EA047,"Activity present, sex diff. unspecified",EA047-8,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +58149,Ac29,EA047,?,EA047-NA,,,,,, +58150,Ac3,EA047,Females alone,EA047-6,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +58151,Ac30,EA047,Females alone,EA047-6,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +58152,Ac31,EA047,"Activity present, sex diff. unspecified",EA047-8,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +58153,Ac32,EA047,?,EA047-NA,,,,,, +58154,Ac33,EA047,Females alone,EA047-6,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +58155,Ac34,EA047,Females alone,EA047-6,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +58156,Ac35,EA047,?,EA047-NA,,,,,, +58157,Ac36,EA047,?,EA047-NA,,,,,, +58158,Ac37,EA047,?,EA047-NA,,,,,, +58159,Ac38,EA047,Females alone,EA047-6,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +58160,Ac39,EA047,Females alone,EA047-6,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +58161,Ac4,EA047,Activity is absent,EA047-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +58162,Ac40,EA047,?,EA047-NA,,,,,, +58163,Ac41,EA047,?,EA047-NA,,,,,, +58164,Ac42,EA047,?,EA047-NA,,,,,, +58165,Ac43,EA047,?,EA047-NA,,,,,, +58166,Ac5,EA047,Females alone,EA047-6,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +58167,Ac6,EA047,?,EA047-NA,,,,,, +58168,Ac7,EA047,Females alone,EA047-6,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +58169,Ac8,EA047,Females alone,EA047-6,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +58170,Ac9,EA047,Females alone,EA047-6,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +58171,Ad1,EA047,Activity is absent,EA047-9,Despised as slave occupation,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +58172,Ad10,EA047,Females alone,EA047-6,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +58173,Ad11,EA047,Females alone,EA047-6,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +58174,Ad12,EA047,?,EA047-NA,,,,,, +58175,Ad13,EA047,Females alone,EA047-6,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +58176,Ad14,EA047,Females alone,EA047-6,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p68, +58177,Ad15,EA047,?,EA047-NA,,,,,, +58178,Ad16,EA047,"Activity present, sex diff. unspecified",EA047-8,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +58179,Ad17,EA047,Females alone,EA047-6,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +58180,Ad18,EA047,?,EA047-NA,,,,,, +58181,Ad19,EA047,Females alone,EA047-6,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +58182,Ad2,EA047,Males alone,EA047-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +58183,Ad20,EA047,Females alone,EA047-6,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +58184,Ad21,EA047,?,EA047-NA,,,,,, +58185,Ad22,EA047,Females alone,EA047-6,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +58186,Ad23,EA047,?,EA047-NA,,,,,, +58187,Ad24,EA047,Females alone,EA047-6,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +58188,Ad25,EA047,?,EA047-NA,,,,,, +58189,Ad26,EA047,Females alone,EA047-6,,sick1916,,1910,EthnographicAtlas_1967_p68, +58190,Ad27,EA047,"Activity present, sex diff. unspecified",EA047-8,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +58191,Ad28,EA047,"Activity present, sex diff. unspecified",EA047-8,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +58192,Ad29,EA047,Males alone,EA047-1,Formerly,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +58193,Ad3,EA047,Activity is absent,EA047-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +58194,Ad30,EA047,"Activity present, sex diff. unspecified",EA047-8,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +58195,Ad31,EA047,"Activity present, sex diff. unspecified",EA047-8,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +58196,Ad32,EA047,"Activity present, sex diff. unspecified",EA047-8,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p68, +58197,Ad33,EA047,?,EA047-NA,,,,,, +58198,Ad34,EA047,Females alone,EA047-6,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +58199,Ad35,EA047,Females alone,EA047-6,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +58200,Ad36,EA047,?,EA047-NA,,,,,, +58201,Ad37,EA047,?,EA047-NA,,,,,, +58202,Ad38,EA047,?,EA047-NA,,,,,, +58203,Ad39,EA047,Females alone,EA047-6,,gray1963,,1950,EthnographicAtlas_1967_p68, +58204,Ad4,EA047,Females alone,EA047-6,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +58205,Ad40,EA047,?,EA047-NA,,,,,, +58206,Ad41,EA047,?,EA047-NA,,,,,, +58207,Ad42,EA047,?,EA047-NA,,,,,, +58208,Ad43,EA047,?,EA047-NA,,,,,, +58209,Ad44,EA047,"Activity present, sex diff. unspecified",EA047-8,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +58210,Ad45,EA047,Males alone,EA047-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +58211,Ad46,EA047,Males alone,EA047-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +58212,Ad47,EA047,Females alone,EA047-6,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +58213,Ad48,EA047,Males alone,EA047-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +58214,Ad49,EA047,?,EA047-NA,,,,,, +58215,Ad5,EA047,?,EA047-NA,,,,,, +58216,Ad50,EA047,"Activity present, sex diff. unspecified",EA047-8,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +58217,Ad51,EA047,Females alone,EA047-6,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +58218,Ad6,EA047,"Activity present, sex diff. unspecified",EA047-8,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +58219,Ad7,EA047,Males alone,EA047-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +58220,Ad8,EA047,?,EA047-NA,,,,,, +58221,Ad9,EA047,"Both, females more",EA047-5,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +58222,Ae1,EA047,Females alone,EA047-6,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +58223,Ae10,EA047,Females alone,EA047-6,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +58224,Ae11,EA047,Females alone,EA047-6,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +58225,Ae12,EA047,"Activity present, sex diff. unspecified",EA047-8,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +58226,Ae13,EA047,?,EA047-NA,,,,,, +58227,Ae14,EA047,Males alone,EA047-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +58228,Ae15,EA047,?,EA047-NA,,,,,, +58229,Ae16,EA047,?,EA047-NA,,,,,, +58230,Ae17,EA047,Females alone,EA047-6,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +58231,Ae18,EA047,Males alone,EA047-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +58232,Ae19,EA047,?,EA047-NA,,,,,, +58233,Ae2,EA047,"Activity present, sex diff. unspecified",EA047-8,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +58234,Ae20,EA047,?,EA047-NA,,,,,, +58235,Ae21,EA047,?,EA047-NA,,,,,, +58236,Ae22,EA047,?,EA047-NA,,,,,, +58237,Ae23,EA047,?,EA047-NA,,,,,, +58238,Ae24,EA047,?,EA047-NA,,,,,, +58239,Ae25,EA047,?,EA047-NA,,,,,, +58240,Ae26,EA047,?,EA047-NA,,,,,, +58241,Ae27,EA047,?,EA047-NA,,,,,, +58242,Ae28,EA047,Females alone,EA047-6,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +58243,Ae29,EA047,Females alone,EA047-6,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +58244,Ae3,EA047,Females alone,EA047-6,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +58245,Ae30,EA047,?,EA047-NA,,,,,, +58246,Ae31,EA047,"Activity present, sex diff. unspecified",EA047-8,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +58247,Ae32,EA047,?,EA047-NA,,,,,, +58248,Ae33,EA047,"Activity present, sex diff. unspecified",EA047-8,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +58249,Ae34,EA047,?,EA047-NA,,,,,, +58250,Ae35,EA047,?,EA047-NA,,,,,, +58251,Ae36,EA047,?,EA047-NA,,,,,, +58252,Ae37,EA047,?,EA047-NA,,,,,, +58253,Ae38,EA047,?,EA047-NA,,,,,, +58254,Ae39,EA047,Activity is absent,EA047-9,"But in some villages probably present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +58255,Ae4,EA047,Females alone,EA047-6,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +58256,Ae40,EA047,?,EA047-NA,,,,,, +58257,Ae41,EA047,Females alone,EA047-6,,andersson1953,,1940,EthnographicAtlas_1967_p68, +58258,Ae42,EA047,?,EA047-NA,,,,,, +58259,Ae43,EA047,?,EA047-NA,,,,,, +58260,Ae44,EA047,?,EA047-NA,,,,,, +58261,Ae45,EA047,?,EA047-NA,,,,,, +58262,Ae46,EA047,?,EA047-NA,,,,,, +58263,Ae47,EA047,?,EA047-NA,,,,,, +58264,Ae48,EA047,"Both, females more",EA047-5,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p68, +58265,Ae49,EA047,?,EA047-NA,,,,,, +58266,Ae5,EA047,Females alone,EA047-6,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +58267,Ae50,EA047,Females alone,EA047-6,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +58268,Ae51,EA047,Females alone,EA047-6,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +58269,Ae52,EA047,"Both, females more",EA047-5,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +58270,Ae53,EA047,?,EA047-NA,,,,,, +58271,Ae54,EA047,?,EA047-NA,,,,,, +58272,Ae55,EA047,Females alone,EA047-6,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +58273,Ae56,EA047,Females alone,EA047-6,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +58274,Ae57,EA047,?,EA047-NA,,,,,, +58275,Ae58,EA047,?,EA047-NA,,,,,, +58276,Ae59,EA047,?,EA047-NA,,,,,, +58277,Ae6,EA047,?,EA047-NA,,,,,, +58278,Ae7,EA047,Females alone,EA047-6,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +58279,Ae8,EA047,Differentiated but equal,EA047-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +58280,Ae9,EA047,Females alone,EA047-6,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +58281,Af1,EA047,Females alone,EA047-6,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +58282,Af10,EA047,Females alone,EA047-6,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +58283,Af11,EA047,Females alone,EA047-6,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +58284,Af12,EA047,?,EA047-NA,,,,,, +58285,Af13,EA047,"Activity present, sex diff. unspecified",EA047-8,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +58286,Af14,EA047,?,EA047-NA,,,,,, +58287,Af15,EA047,Females alone,EA047-6,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +58288,Af16,EA047,?,EA047-NA,,,,,, +58289,Af17,EA047,?,EA047-NA,,,,,, +58290,Af18,EA047,?,EA047-NA,,,,,, +58291,Af19,EA047,?,EA047-NA,,,,,, +58292,Af2,EA047,Females alone,EA047-6,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +58293,Af20,EA047,"Activity present, sex diff. unspecified",EA047-8,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +58294,Af21,EA047,?,EA047-NA,,,,,, +58295,Af22,EA047,Females alone,EA047-6,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +58296,Af23,EA047,Females alone,EA047-6,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +58297,Af24,EA047,"Activity present, sex diff. unspecified",EA047-8,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +58298,Af25,EA047,"Activity present, sex diff. unspecified",EA047-8,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +58299,Af26,EA047,?,EA047-NA,,,,,, +58300,Af27,EA047,?,EA047-NA,,,,,, +58301,Af28,EA047,Females alone,EA047-6,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +58302,Af29,EA047,?,EA047-NA,,,,,, +58303,Af3,EA047,Females alone,EA047-6,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +58304,Af30,EA047,?,EA047-NA,,,,,, +58305,Af31,EA047,?,EA047-NA,,,,,, +58306,Af32,EA047,Females alone,EA047-6,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58307,Af33,EA047,Females alone,EA047-6,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58308,Af34,EA047,?,EA047-NA,,,,,, +58309,Af35,EA047,?,EA047-NA,,,,,, +58310,Af36,EA047,Females alone,EA047-6,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +58311,Af37,EA047,?,EA047-NA,,,,,, +58312,Af38,EA047,?,EA047-NA,,,,,, +58313,Af39,EA047,?,EA047-NA,,,,,, +58314,Af4,EA047,?,EA047-NA,,,,,, +58315,Af40,EA047,?,EA047-NA,,,,,, +58316,Af41,EA047,?,EA047-NA,,,,,, +58317,Af42,EA047,Females alone,EA047-6,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +58318,Af43,EA047,?,EA047-NA,,,,,, +58319,Af44,EA047,?,EA047-NA,,,,,, +58320,Af45,EA047,?,EA047-NA,,,,,, +58321,Af46,EA047,?,EA047-NA,,,,,, +58322,Af47,EA047,?,EA047-NA,,,,,, +58323,Af48,EA047,?,EA047-NA,,,,,, +58324,Af49,EA047,Females alone,EA047-6,,schwab1947,,1940,EthnographicAtlas_1967_p72, +58325,Af5,EA047,Females alone,EA047-6,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +58326,Af50,EA047,?,EA047-NA,,,,,, +58327,Af51,EA047,Males alone,EA047-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +58328,Af52,EA047,Females alone,EA047-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +58329,Af53,EA047,?,EA047-NA,,,,,, +58330,Af54,EA047,Females alone,EA047-6,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +58331,Af55,EA047,?,EA047-NA,,,,,, +58332,Af56,EA047,Females alone,EA047-6,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +58333,Af57,EA047,Females alone,EA047-6,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +58334,Af58,EA047,?,EA047-NA,,,,,, +58335,Af6,EA047,Females alone,EA047-6,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +58336,Af7,EA047,"Activity present, sex diff. unspecified",EA047-8,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +58337,Af8,EA047,Females alone,EA047-6,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +58338,Af9,EA047,?,EA047-NA,,,,,, +58339,Ag1,EA047,Females alone,EA047-6,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +58340,Ag10,EA047,Females alone,EA047-6,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +58341,Ag11,EA047,Females alone,EA047-6,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +58342,Ag12,EA047,Females alone,EA047-6,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +58343,Ag13,EA047,Females alone,EA047-6,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p72, +58344,Ag14,EA047,?,EA047-NA,,,,,, +58345,Ag15,EA047,?,EA047-NA,,,,,, +58346,Ag16,EA047,?,EA047-NA,,,,,, +58347,Ag17,EA047,?,EA047-NA,,,,,, +58348,Ag18,EA047,?,EA047-NA,,,,,, +58349,Ag19,EA047,?,EA047-NA,,,,,, +58350,Ag2,EA047,Females alone,EA047-6,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +58351,Ag20,EA047,?,EA047-NA,,,,,, +58352,Ag21,EA047,Females alone,EA047-6,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +58353,Ag22,EA047,?,EA047-NA,,,,,, +58354,Ag23,EA047,?,EA047-NA,,,,,, +58355,Ag24,EA047,?,EA047-NA,,,,,, +58356,Ag25,EA047,?,EA047-NA,,,,,, +58357,Ag26,EA047,"Activity present, sex diff. unspecified",EA047-8,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p72, +58358,Ag27,EA047,?,EA047-NA,,,,,, +58359,Ag28,EA047,?,EA047-NA,,,,,, +58360,Ag29,EA047,?,EA047-NA,,,,,, +58361,Ag3,EA047,?,EA047-NA,,,,,, +58362,Ag30,EA047,Females alone,EA047-6,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +58363,Ag31,EA047,Females alone,EA047-6,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p72, +58364,Ag32,EA047,Females alone,EA047-6,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +58365,Ag33,EA047,?,EA047-NA,,,,,, +58366,Ag34,EA047,?,EA047-NA,,,,,, +58367,Ag35,EA047,?,EA047-NA,,,,,, +58368,Ag36,EA047,?,EA047-NA,,,,,, +58369,Ag37,EA047,?,EA047-NA,,,,,, +58370,Ag38,EA047,?,EA047-NA,,,,,, +58371,Ag39,EA047,Females alone,EA047-6,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +58372,Ag4,EA047,Females alone,EA047-6,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +58373,Ag40,EA047,?,EA047-NA,,,,,, +58374,Ag41,EA047,Females alone,EA047-6,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p72, +58375,Ag42,EA047,?,EA047-NA,,,,,, +58376,Ag43,EA047,?,EA047-NA,,,,,, +58377,Ag44,EA047,?,EA047-NA,,,,,, +58378,Ag45,EA047,Females alone,EA047-6,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +58379,Ag46,EA047,?,EA047-NA,,,,,, +58380,Ag47,EA047,"Both, females more",EA047-5,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +58381,Ag48,EA047,Females alone,EA047-6,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +58382,Ag49,EA047,Females alone,EA047-6,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +58383,Ag5,EA047,Females alone,EA047-6,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +58384,Ag50,EA047,Females alone,EA047-6,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +58385,Ag51,EA047,?,EA047-NA,,,,,, +58386,Ag52,EA047,?,EA047-NA,,,,,, +58387,Ag53,EA047,"Both, females more",EA047-5,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +58388,Ag54,EA047,Females alone,EA047-6,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +58389,Ag6,EA047,?,EA047-NA,,,,,, +58390,Ag7,EA047,?,EA047-NA,,,,,, +58391,Ag8,EA047,Females alone,EA047-6,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +58392,Ag9,EA047,?,EA047-NA,,,,,, +58393,Ah1,EA047,Activity is absent,EA047-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58394,Ah10,EA047,?,EA047-NA,,,,,, +58395,Ah11,EA047,Females alone,EA047-6,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +58396,Ah12,EA047,?,EA047-NA,,,,,, +58397,Ah13,EA047,Females alone,EA047-6,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +58398,Ah14,EA047,"Activity present, sex diff. unspecified",EA047-8,,gunnandconant1960,,1920,EthnographicAtlas_1967_p76, +58399,Ah15,EA047,Activity is absent,EA047-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +58400,Ah16,EA047,?,EA047-NA,,,,,, +58401,Ah17,EA047,?,EA047-NA,,,,,, +58402,Ah18,EA047,?,EA047-NA,,,,,, +58403,Ah19,EA047,Males alone,EA047-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p76, +58404,Ah2,EA047,Females alone,EA047-6,,meek1931a,,1920,EthnographicAtlas_1967_p76, +58405,Ah20,EA047,Activity is absent,EA047-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +58406,Ah21,EA047,?,EA047-NA,,,,,, +58407,Ah22,EA047,?,EA047-NA,,,,,, +58408,Ah23,EA047,?,EA047-NA,,,,,, +58409,Ah24,EA047,?,EA047-NA,,,,,, +58410,Ah25,EA047,?,EA047-NA,,,,,, +58411,Ah26,EA047,?,EA047-NA,,,,,, +58412,Ah27,EA047,?,EA047-NA,,,,,, +58413,Ah28,EA047,?,EA047-NA,,,,,, +58414,Ah29,EA047,?,EA047-NA,,,,,, +58415,Ah3,EA047,Females alone,EA047-6,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +58416,Ah30,EA047,?,EA047-NA,,,,,, +58417,Ah31,EA047,?,EA047-NA,,,,,, +58418,Ah32,EA047,?,EA047-NA,,,,,, +58419,Ah33,EA047,?,EA047-NA,,,,,, +58420,Ah34,EA047,?,EA047-NA,,,,,, +58421,Ah35,EA047,?,EA047-NA,,,,,, +58422,Ah36,EA047,Females alone,EA047-6,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +58423,Ah37,EA047,?,EA047-NA,,,,,, +58424,Ah38,EA047,Females alone,EA047-6,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +58425,Ah39,EA047,Females alone,EA047-6,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +58426,Ah4,EA047,?,EA047-NA,,,,,, +58427,Ah5,EA047,?,EA047-NA,,,,,, +58428,Ah6,EA047,?,EA047-NA,,,,,, +58429,Ah7,EA047,Females alone,EA047-6,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +58430,Ah8,EA047,"Activity present, sex diff. unspecified",EA047-8,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +58431,Ah9,EA047,Females alone,EA047-6,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +58432,Ai1,EA047,Females alone,EA047-6,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +58433,Ai10,EA047,Females alone,EA047-6,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +58434,Ai11,EA047,Females alone,EA047-6,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +58435,Ai12,EA047,?,EA047-NA,,,,,, +58436,Ai13,EA047,?,EA047-NA,,,,,, +58437,Ai14,EA047,Females alone,EA047-6,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +58438,Ai15,EA047,"Activity present, sex diff. unspecified",EA047-8,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +58439,Ai16,EA047,?,EA047-NA,,,,,, +58440,Ai17,EA047,"Activity present, sex diff. unspecified",EA047-8,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +58441,Ai18,EA047,Females alone,EA047-6,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +58442,Ai19,EA047,?,EA047-NA,,,,,, +58443,Ai2,EA047,?,EA047-NA,,,,,, +58444,Ai20,EA047,?,EA047-NA,,,,,, +58445,Ai21,EA047,?,EA047-NA,,,,,, +58446,Ai22,EA047,?,EA047-NA,,,,,, +58447,Ai23,EA047,Females alone,EA047-6,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +58448,Ai24,EA047,?,EA047-NA,,,,,, +58449,Ai25,EA047,Females alone,EA047-6,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +58450,Ai26,EA047,Females alone,EA047-6,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +58451,Ai27,EA047,?,EA047-NA,,,,,, +58452,Ai28,EA047,Females alone,EA047-6,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +58453,Ai29,EA047,Females alone,EA047-6,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +58454,Ai3,EA047,Females alone,EA047-6,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +58455,Ai30,EA047,Females alone,EA047-6,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +58456,Ai31,EA047,Males alone,EA047-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +58457,Ai32,EA047,Females alone,EA047-6,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p76, +58458,Ai33,EA047,?,EA047-NA,,,,,, +58459,Ai34,EA047,?,EA047-NA,,,,,, +58460,Ai35,EA047,Females alone,EA047-6,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +58461,Ai36,EA047,Females alone,EA047-6,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +58462,Ai37,EA047,?,EA047-NA,,,,,, +58463,Ai38,EA047,Females alone,EA047-6,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +58464,Ai39,EA047,Females alone,EA047-6,,nadel1947,,1940,EthnographicAtlas_1967_p76, +58465,Ai4,EA047,?,EA047-NA,,,,,, +58466,Ai40,EA047,Females alone,EA047-6,,nadel1947,,1940,EthnographicAtlas_1967_p76, +58467,Ai41,EA047,Females alone,EA047-6,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +58468,Ai42,EA047,Females alone,EA047-6,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +58469,Ai43,EA047,Females alone,EA047-6,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +58470,Ai44,EA047,"Activity present, sex diff. unspecified",EA047-8,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p76, +58471,Ai45,EA047,?,EA047-NA,,,,,, +58472,Ai46,EA047,?,EA047-NA,,,,,, +58473,Ai47,EA047,Females alone,EA047-6,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +58474,Ai5,EA047,"Activity present, sex diff. unspecified",EA047-8,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +58475,Ai6,EA047,Females alone,EA047-6,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +58476,Ai7,EA047,Females alone,EA047-6,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +58477,Ai8,EA047,Females alone,EA047-6,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +58478,Ai9,EA047,Females alone,EA047-6,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +58479,Aj1,EA047,?,EA047-NA,,,,,, +58480,Aj10,EA047,?,EA047-NA,,,,,, +58481,Aj11,EA047,?,EA047-NA,,,,,, +58482,Aj12,EA047,?,EA047-NA,,,,,, +58483,Aj13,EA047,Females alone,EA047-6,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +58484,Aj14,EA047,?,EA047-NA,,,,,, +58485,Aj15,EA047,Females alone,EA047-6,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +58486,Aj16,EA047,"Activity present, sex diff. unspecified",EA047-8,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +58487,Aj17,EA047,Females alone,EA047-6,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +58488,Aj18,EA047,?,EA047-NA,,,,,, +58489,Aj19,EA047,?,EA047-NA,,,,,, +58490,Aj2,EA047,Females alone,EA047-6,A very few women made pottery,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +58491,Aj20,EA047,?,EA047-NA,,,,,, +58492,Aj21,EA047,Activity is absent,EA047-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +58493,Aj22,EA047,"Activity present, sex diff. unspecified",EA047-8,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +58494,Aj23,EA047,Activity is absent,EA047-9,The products are obtained by trade from the Hill Suk,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +58495,Aj24,EA047,Females alone,EA047-6,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +58496,Aj25,EA047,Females alone,EA047-6,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +58497,Aj26,EA047,Females alone,EA047-6,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +58498,Aj27,EA047,?,EA047-NA,,,,,, +58499,Aj28,EA047,?,EA047-NA,,,,,, +58500,Aj29,EA047,?,EA047-NA,,,,,, +58501,Aj3,EA047,Activity is absent,EA047-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +58502,Aj30,EA047,?,EA047-NA,,,,,, +58503,Aj31,EA047,?,EA047-NA,,,,,, +58504,Aj4,EA047,Males alone,EA047-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +58505,Aj5,EA047,Activity is absent,EA047-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +58506,Aj6,EA047,Females alone,EA047-6,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +58507,Aj7,EA047,Females alone,EA047-6,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +58508,Aj8,EA047,"Activity present, sex diff. unspecified",EA047-8,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +58509,Aj9,EA047,Females alone,EA047-6,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +58510,Ca1,EA047,"Both, males more",EA047-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +58511,Ca10,EA047,Activity is absent,EA047-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +58512,Ca11,EA047,"Activity present, sex diff. unspecified",EA047-8,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +58513,Ca12,EA047,"Activity present, sex diff. unspecified",EA047-8,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +58514,Ca13,EA047,"Activity present, sex diff. unspecified",EA047-8,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +58515,Ca14,EA047,Females alone,EA047-6,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +58516,Ca15,EA047,?,EA047-NA,,,,,, +58517,Ca16,EA047,Females alone,EA047-6,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +58518,Ca17,EA047,Activity is absent,EA047-9,Products obtained by trade with neighboring tribes,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +58519,Ca18,EA047,?,EA047-NA,,,,,, +58520,Ca19,EA047,Activity is absent,EA047-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +58521,Ca2,EA047,Activity is absent,EA047-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +58522,Ca20,EA047,?,EA047-NA,,,,,, +58523,Ca21,EA047,Activity is absent,EA047-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +58524,Ca22,EA047,Females alone,EA047-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +58525,Ca23,EA047,Females alone,EA047-6,,jensen1959,,1950,EthnographicAtlas_1967_p80, +58526,Ca24,EA047,Females alone,EA047-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +58527,Ca25,EA047,Females alone,EA047-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +58528,Ca26,EA047,?,EA047-NA,,,,,, +58529,Ca27,EA047,?,EA047-NA,,,,,, +58530,Ca28,EA047,"Both, females more",EA047-5,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +58531,Ca29,EA047,Females alone,EA047-6,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +58532,Ca3,EA047,?,EA047-NA,,,,,, +58533,Ca30,EA047,Females alone,EA047-6,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +58534,Ca31,EA047,Females alone,EA047-6,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +58535,Ca32,EA047,Females alone,EA047-6,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +58536,Ca33,EA047,Females alone,EA047-6,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +58537,Ca34,EA047,?,EA047-NA,,,,,, +58538,Ca35,EA047,?,EA047-NA,,,,,, +58539,Ca36,EA047,?,EA047-NA,,,,,, +58540,Ca37,EA047,?,EA047-NA,,,,,, +58541,Ca38,EA047,?,EA047-NA,,,,,, +58542,Ca39,EA047,Females alone,EA047-6,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +58543,Ca4,EA047,?,EA047-NA,,,,,, +58544,Ca40,EA047,Females alone,EA047-6,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +58545,Ca41,EA047,Females alone,EA047-6,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +58546,Ca42,EA047,Females alone,EA047-6,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +58547,Ca43,EA047,?,EA047-NA,,,,,, +58548,Ca5,EA047,?,EA047-NA,,,,,, +58549,Ca6,EA047,?,EA047-NA,,,,,, +58550,Ca7,EA047,Females alone,EA047-6,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +58551,Ca8,EA047,?,EA047-NA,,,,,, +58552,Ca9,EA047,?,EA047-NA,,,,,, +58553,Cb1,EA047,?,EA047-NA,,,,,, +58554,Cb10,EA047,?,EA047-NA,,,,,, +58555,Cb11,EA047,?,EA047-NA,,,,,, +58556,Cb12,EA047,?,EA047-NA,,,,,, +58557,Cb13,EA047,?,EA047-NA,,,,,, +58558,Cb14,EA047,?,EA047-NA,,,,,, +58559,Cb15,EA047,?,EA047-NA,"Made by the kindred Messiria, not by the Humr proper",cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +58560,Cb16,EA047,?,EA047-NA,,,,,, +58561,Cb17,EA047,Females alone,EA047-6,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +58562,Cb18,EA047,Females alone,EA047-6,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p80, +58563,Cb19,EA047,Females alone,EA047-6,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p80, +58564,Cb2,EA047,Females alone,EA047-6,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +58565,Cb20,EA047,Females alone,EA047-6,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +58566,Cb21,EA047,?,EA047-NA,,,,,, +58567,Cb22,EA047,?,EA047-NA,,,,,, +58568,Cb23,EA047,?,EA047-NA,,,,,, +58569,Cb24,EA047,?,EA047-NA,,,,,, +58570,Cb25,EA047,?,EA047-NA,,,,,, +58571,Cb26,EA047,Males alone,EA047-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +58572,Cb27,EA047,?,EA047-NA,,,,,, +58573,Cb28,EA047,?,EA047-NA,,,,,, +58574,Cb29,EA047,?,EA047-NA,,,,,, +58575,Cb3,EA047,Females alone,EA047-6,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +58576,Cb4,EA047,?,EA047-NA,,,,,, +58577,Cb5,EA047,?,EA047-NA,,,,,, +58578,Cb6,EA047,?,EA047-NA,,,,,, +58579,Cb7,EA047,?,EA047-NA,,,,,, +58580,Cb8,EA047,?,EA047-NA,,,,,, +58581,Cb9,EA047,"Activity present, sex diff. unspecified",EA047-8,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +58582,Cc1,EA047,?,EA047-NA,,,,,, +58583,Cc10,EA047,Females alone,EA047-6,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +58584,Cc11,EA047,?,EA047-NA,,,,,, +58585,Cc12,EA047,Activity is absent,EA047-9,Pottery is imported from Tuat,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +58586,Cc13,EA047,?,EA047-NA,,,,,, +58587,Cc14,EA047,Females alone,EA047-6,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +58588,Cc15,EA047,?,EA047-NA,,,,,, +58589,Cc16,EA047,"Activity present, sex diff. unspecified",EA047-8,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +58590,Cc17,EA047,?,EA047-NA,,,,,, +58591,Cc18,EA047,?,EA047-NA,,,,,, +58592,Cc19,EA047,?,EA047-NA,,,,,, +58593,Cc2,EA047,Females alone,EA047-6,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +58594,Cc20,EA047,?,EA047-NA,,,,,, +58595,Cc3,EA047,Females alone,EA047-6,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +58596,Cc4,EA047,?,EA047-NA,,,,,, +58597,Cc5,EA047,?,EA047-NA,,,,,, +58598,Cc6,EA047,?,EA047-NA,,,,,, +58599,Cc7,EA047,?,EA047-NA,,,,,, +58600,Cc8,EA047,?,EA047-NA,,,,,, +58601,Cc9,EA047,Females alone,EA047-6,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +58602,Cd1,EA047,?,EA047-NA,,,,,, +58603,Cd10,EA047,?,EA047-NA,,,,,, +58604,Cd11,EA047,?,EA047-NA,,,,,, +58605,Cd12,EA047,"Activity present, sex diff. unspecified",EA047-8,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +58606,Cd13,EA047,?,EA047-NA,,,,,, +58607,Cd14,EA047,?,EA047-NA,,,,,, +58608,Cd15,EA047,?,EA047-NA,,,,,, +58609,Cd16,EA047,?,EA047-NA,,,,,, +58610,Cd17,EA047,?,EA047-NA,,,,,, +58611,Cd18,EA047,?,EA047-NA,,,,,, +58612,Cd19,EA047,?,EA047-NA,,,,,, +58613,Cd2,EA047,Males alone,EA047-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +58614,Cd20,EA047,?,EA047-NA,,,,,, +58615,Cd21,EA047,?,EA047-NA,,,,,, +58616,Cd3,EA047,Differentiated but equal,EA047-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +58617,Cd4,EA047,Females alone,EA047-6,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +58618,Cd5,EA047,?,EA047-NA,,,,,, +58619,Cd6,EA047,Males alone,EA047-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +58620,Cd7,EA047,?,EA047-NA,,,,,, +58621,Cd8,EA047,?,EA047-NA,,,,,, +58622,Cd9,EA047,?,EA047-NA,,,,,, +58623,Ce1,EA047,Differentiated but equal,EA047-3,There are also professional male potters in the towns,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +58624,Ce2,EA047,?,EA047-NA,,,,,, +58625,Ce3,EA047,?,EA047-NA,,,,,, +58626,Ce4,EA047,?,EA047-NA,,,,,, +58627,Ce5,EA047,Sex irrelevant,EA047-7,Presumably industrial specialization only,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +58628,Ce6,EA047,Sex irrelevant,EA047-7,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +58629,Ce7,EA047,Sex irrelevant,EA047-7,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +58630,Ce8,EA047,?,EA047-NA,,,,,, +58631,Cf1,EA047,Sex irrelevant,EA047-7,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +58632,Cf2,EA047,?,EA047-NA,,,,,, +58633,Cf3,EA047,Activity is absent,EA047-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +58634,Cf4,EA047,Females alone,EA047-6,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +58635,Cf5,EA047,Sex irrelevant,EA047-7,,miner1939,,1930,EthnographicAtlas_1967_p84, +58636,Cg1,EA047,Sex irrelevant,EA047-7,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +58637,Cg2,EA047,?,EA047-NA,,,,,, +58638,Cg3,EA047,?,EA047-NA,,,,,, +58639,Cg4,EA047,Activity is absent,EA047-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +58640,Cg5,EA047,?,EA047-NA,,,,,, +58641,Ch1,EA047,Males alone,EA047-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +58642,Ch10,EA047,?,EA047-NA,,,,,, +58643,Ch11,EA047,?,EA047-NA,,,,,, +58644,Ch2,EA047,"Activity present, sex diff. unspecified",EA047-8,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +58645,Ch3,EA047,Sex irrelevant,EA047-7,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +58646,Ch4,EA047,?,EA047-NA,,,,,, +58647,Ch5,EA047,"Activity present, sex diff. unspecified",EA047-8,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +58648,Ch6,EA047,"Activity present, sex diff. unspecified",EA047-8,,ember1954,,1910,EthnographicAtlas_1967_p84, +58649,Ch7,EA047,"Activity present, sex diff. unspecified",EA047-8,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +58650,Ch8,EA047,"Activity present, sex diff. unspecified",EA047-8,,hanzeli1955,,1940,EthnographicAtlas_1967_p84, +58651,Ch9,EA047,"Activity present, sex diff. unspecified",EA047-8,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +58652,Ci1,EA047,?,EA047-NA,,,,,, +58653,Ci10,EA047,Females alone,EA047-6,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +58654,Ci11,EA047,Females alone,EA047-6,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +58655,Ci12,EA047,Activity is absent,EA047-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +58656,Ci2,EA047,?,EA047-NA,,,,,, +58657,Ci3,EA047,"Activity present, sex diff. unspecified",EA047-8,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p84, +58658,Ci4,EA047,?,EA047-NA,,,,,, +58659,Ci5,EA047,Activity is absent,EA047-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +58660,Ci6,EA047,?,EA047-NA,,,,,, +58661,Ci7,EA047,?,EA047-NA,,,,,, +58662,Ci8,EA047,?,EA047-NA,,,,,, +58663,Ci9,EA047,?,EA047-NA,,,,,, +58664,Cj1,EA047,Females alone,EA047-6,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +58665,Cj10,EA047,?,EA047-NA,,,,,, +58666,Cj2,EA047,?,EA047-NA,,,,,, +58667,Cj3,EA047,Males alone,EA047-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +58668,Cj4,EA047,"Activity present, sex diff. unspecified",EA047-8,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +58669,Cj5,EA047,?,EA047-NA,,,,,, +58670,Cj6,EA047,?,EA047-NA,,,,,, +58671,Cj7,EA047,"Activity present, sex diff. unspecified",EA047-8,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +58672,Cj8,EA047,Females alone,EA047-6,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +58673,Cj9,EA047,Males alone,EA047-1,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +58674,Ea1,EA047,"Activity present, sex diff. unspecified",EA047-8,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +58675,Ea10,EA047,?,EA047-NA,,,,,, +58676,Ea11,EA047,"Activity present, sex diff. unspecified",EA047-8,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +58677,Ea12,EA047,?,EA047-NA,,,,,, +58678,Ea13,EA047,Differentiated but equal,EA047-3,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +58679,Ea2,EA047,"Activity present, sex diff. unspecified",EA047-8,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +58680,Ea3,EA047,"Activity present, sex diff. unspecified",EA047-8,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +58681,Ea4,EA047,Males alone,EA047-1,,barth1956b,,1950,EthnographicAtlas_1967_p88, +58682,Ea5,EA047,?,EA047-NA,,,,,, +58683,Ea6,EA047,Activity is absent,EA047-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +58684,Ea7,EA047,?,EA047-NA,,,,,, +58685,Ea8,EA047,?,EA047-NA,,,,,, +58686,Ea9,EA047,"Activity present, sex diff. unspecified",EA047-8,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +58687,Eb1,EA047,Activity is absent,EA047-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +58688,Eb2,EA047,Activity is absent,EA047-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +58689,Eb3,EA047,Activity is absent,EA047-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +58690,Eb4,EA047,?,EA047-NA,,,,,, +58691,Eb5,EA047,?,EA047-NA,,,,,, +58692,Eb6,EA047,?,EA047-NA,,,,,, +58693,Eb7,EA047,?,EA047-NA,,,,,, +58694,Eb8,EA047,?,EA047-NA,,,,,, +58695,Ec1,EA047,Activity is absent,EA047-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +58696,Ec10,EA047,Females alone,EA047-6,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +58697,Ec11,EA047,Activity is absent,EA047-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +58698,Ec2,EA047,Females alone,EA047-6,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58699,Ec3,EA047,"Activity present, sex diff. unspecified",EA047-8,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +58700,Ec4,EA047,Activity is absent,EA047-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +58701,Ec5,EA047,"Activity present, sex diff. unspecified",EA047-8,But practiced in the recent past,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +58702,Ec6,EA047,?,EA047-NA,,,,,, +58703,Ec7,EA047,Activity is absent,EA047-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +58704,Ec8,EA047,?,EA047-NA,,,,,, +58705,Ec9,EA047,?,EA047-NA,,,,,, +58706,Ed1,EA047,Males alone,EA047-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +58707,Ed10,EA047,"Activity present, sex diff. unspecified",EA047-8,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +58708,Ed13,EA047,?,EA047-NA,,,,,, +58709,Ed14,EA047,?,EA047-NA,,,,,, +58710,Ed15a,EA047,?,EA047-NA,,,,,, +58711,Ed15b,EA047,"Activity present, sex diff. unspecified",EA047-8,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +58712,Ed16,EA047,?,EA047-NA,,,,,, +58713,Ed2,EA047,Activity is absent,EA047-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +58714,Ed3,EA047,"Activity present, sex diff. unspecified",EA047-8,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +58715,Ed4,EA047,"Activity present, sex diff. unspecified",EA047-8,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +58716,Ed5,EA047,Sex irrelevant,EA047-7,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58717,Ed6,EA047,"Activity present, sex diff. unspecified",EA047-8,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +58718,Ed7,EA047,"Both, males more",EA047-2,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +58719,Ed8,EA047,?,EA047-NA,,,,,, +58720,Ed9,EA047,Females alone,EA047-6,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +58721,Ee1,EA047,"Activity present, sex diff. unspecified",EA047-8,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +58722,Ee2,EA047,"Activity present, sex diff. unspecified",EA047-8,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +58723,Ee3,EA047,Activity is absent,EA047-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +58724,Ee4,EA047,?,EA047-NA,,,,,, +58725,Ee5,EA047,"Activity present, sex diff. unspecified",EA047-8,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +58726,Ee6,EA047,?,EA047-NA,,,,,, +58727,Ee7,EA047,?,EA047-NA,,,,,, +58728,Ee8,EA047,"Activity present, sex diff. unspecified",EA047-8,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +58729,Ef1,EA047,"Activity present, sex diff. unspecified",EA047-8,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +58730,Ef10,EA047,?,EA047-NA,,,,,, +58731,Ef11,EA047,Males alone,EA047-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +58732,Ef2,EA047,Differentiated but equal,EA047-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +58733,Ef3,EA047,?,EA047-NA,,,,,, +58734,Ef4,EA047,?,EA047-NA,,,,,, +58735,Ef5,EA047,"Activity present, sex diff. unspecified",EA047-8,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +58736,Ef6,EA047,?,EA047-NA,,,,,, +58737,Ef7,EA047,Activity is absent,EA047-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +58738,Ef8,EA047,Males alone,EA047-1,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +58739,Ef9,EA047,Males alone,EA047-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58740,Eg1,EA047,Activity is absent,EA047-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58741,Eg10,EA047,Males alone,EA047-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +58742,Eg11,EA047,?,EA047-NA,,,,,, +58743,Eg12,EA047,?,EA047-NA,,,,,, +58744,Eg13,EA047,Activity is absent,EA047-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58745,Eg14,EA047,Activity is absent,EA047-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +58746,Eg2,EA047,Males alone,EA047-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +58747,Eg3,EA047,Activity is absent,EA047-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +58748,Eg4,EA047,Activity is absent,EA047-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +58749,Eg5,EA047,?,EA047-NA,,,,,, +58750,Eg6,EA047,?,EA047-NA,,,,,, +58751,Eg7,EA047,"Activity present, sex diff. unspecified",EA047-8,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +58752,Eg8,EA047,?,EA047-NA,,,,,, +58753,Eg9,EA047,"Activity present, sex diff. unspecified",EA047-8,,elwin1939,,1930,EthnographicAtlas_1967_p92, +58754,Eh1,EA047,Females alone,EA047-6,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +58755,Eh10,EA047,?,EA047-NA,,,,,, +58756,Eh2,EA047,?,EA047-NA,,,,,, +58757,Eh3,EA047,Activity is absent,EA047-9,"But formerly present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +58758,Eh4,EA047,Equal participation,EA047-4,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58759,Eh5,EA047,Females alone,EA047-6,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +58760,Eh6,EA047,Differentiated but equal,EA047-3,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p92, +58761,Eh7,EA047,Activity is absent,EA047-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +58762,Eh8,EA047,Activity is absent,EA047-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +58763,Eh9,EA047,?,EA047-NA,,,,,, +58764,Ei1,EA047,Females alone,EA047-6,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58765,Ei10,EA047,Activity is absent,EA047-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +58766,Ei11,EA047,Females alone,EA047-6,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +58767,Ei12,EA047,?,EA047-NA,,,,,, +58768,Ei13,EA047,"Activity present, sex diff. unspecified",EA047-8,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +58769,Ei14,EA047,Females alone,EA047-6,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +58770,Ei15,EA047,?,EA047-NA,,,,,, +58771,Ei16,EA047,Females alone,EA047-6,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +58772,Ei17,EA047,?,EA047-NA,,,,,, +58773,Ei18,EA047,?,EA047-NA,,,,,, +58774,Ei19,EA047,Males alone,EA047-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +58775,Ei2,EA047,Females alone,EA047-6,,mills1922,,1920,EthnographicAtlas_1967_p92, +58776,Ei20,EA047,?,EA047-NA,,,,,, +58777,Ei3,EA047,Males alone,EA047-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +58778,Ei4,EA047,Females alone,EA047-6,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +58779,Ei5,EA047,"Activity present, sex diff. unspecified",EA047-8,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +58780,Ei6,EA047,Activity is absent,EA047-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +58781,Ei7,EA047,Activity is absent,EA047-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +58782,Ei8,EA047,Females alone,EA047-6,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +58783,Ei9,EA047,Activity is absent,EA047-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +58784,Ej1,EA047,Activity is absent,EA047-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +58785,Ej10,EA047,Activity is absent,EA047-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +58786,Ej11,EA047,?,EA047-NA,,,,,, +58787,Ej12,EA047,?,EA047-NA,,,,,, +58788,Ej13,EA047,"Activity present, sex diff. unspecified",EA047-8,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +58789,Ej14,EA047,Activity is absent,EA047-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58790,Ej15,EA047,"Activity present, sex diff. unspecified",EA047-8,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +58791,Ej16,EA047,?,EA047-NA,,,,,, +58792,Ej2,EA047,Females alone,EA047-6,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +58793,Ej3,EA047,Activity is absent,EA047-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +58794,Ej4,EA047,"Activity present, sex diff. unspecified",EA047-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +58795,Ej5,EA047,"Activity present, sex diff. unspecified",EA047-8,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +58796,Ej6,EA047,?,EA047-NA,,,,,, +58797,Ej7,EA047,?,EA047-NA,,,,,, +58798,Ej8,EA047,"Activity present, sex diff. unspecified",EA047-8,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +58799,Ej9,EA047,?,EA047-NA,,,,,, +58800,Ia1,EA047,"Activity present, sex diff. unspecified",EA047-8,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +58801,Ia10,EA047,"Activity present, sex diff. unspecified",EA047-8,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +58802,Ia11,EA047,"Activity present, sex diff. unspecified",EA047-8,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +58803,Ia12,EA047,Females alone,EA047-6,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +58804,Ia13,EA047,Activity is absent,EA047-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +58805,Ia14,EA047,"Activity present, sex diff. unspecified",EA047-8,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +58806,Ia15,EA047,?,EA047-NA,,,,,, +58807,Ia16,EA047,Females alone,EA047-6,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +58808,Ia17,EA047,?,EA047-NA,,,,,, +58809,Ia18,EA047,?,EA047-NA,,,,,, +58810,Ia2,EA047,Activity is absent,EA047-9,Obtained by trade from the neighboring Kankanay,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +58811,Ia3,EA047,Differentiated but equal,EA047-3,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +58812,Ia4,EA047,?,EA047-NA,,,,,, +58813,Ia5,EA047,?,EA047-NA,,,,,, +58814,Ia6,EA047,"Activity present, sex diff. unspecified",EA047-8,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58815,Ia7,EA047,?,EA047-NA,,,,,, +58816,Ia8,EA047,?,EA047-NA,,,,,, +58817,Ia9,EA047,"Activity present, sex diff. unspecified",EA047-8,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +58818,Ib1,EA047,Females alone,EA047-6,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58819,Ib2,EA047,Equal participation,EA047-4,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58820,Ib3,EA047,"Activity present, sex diff. unspecified",EA047-8,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +58821,Ib4,EA047,Females alone,EA047-6,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +58822,Ib5,EA047,"Activity present, sex diff. unspecified",EA047-8,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +58823,Ib6,EA047,"Activity present, sex diff. unspecified",EA047-8,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +58824,Ib7,EA047,Activity is absent,EA047-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +58825,Ib8,EA047,Activity is absent,EA047-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +58826,Ib9,EA047,?,EA047-NA,,,,,, +58827,Ic1,EA047,"Activity present, sex diff. unspecified",EA047-8,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58828,Ic10,EA047,Activity is absent,EA047-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +58829,Ic11,EA047,"Activity present, sex diff. unspecified",EA047-8,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58830,Ic12,EA047,"Activity present, sex diff. unspecified",EA047-8,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +58831,Ic13,EA047,?,EA047-NA,,,,,, +58832,Ic2,EA047,?,EA047-NA,,,,,, +58833,Ic3,EA047,"Activity present, sex diff. unspecified",EA047-8,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +58834,Ic4,EA047,?,EA047-NA,,,,,, +58835,Ic5,EA047,"Activity present, sex diff. unspecified",EA047-8,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +58836,Ic6,EA047,"Activity present, sex diff. unspecified",EA047-8,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +58837,Ic7,EA047,Activity is absent,EA047-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +58838,Ic8,EA047,Activity is absent,EA047-9,,pleyte1893,,1890,EthnographicAtlas_1967_p96, +58839,Ic9,EA047,"Activity present, sex diff. unspecified",EA047-8,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p96, +58840,Id1,EA047,Activity is absent,EA047-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +58841,Id10,EA047,Activity is absent,EA047-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +58842,Id11,EA047,Activity is absent,EA047-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +58843,Id12,EA047,Activity is absent,EA047-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +58844,Id13,EA047,Activity is absent,EA047-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +58845,Id2,EA047,Activity is absent,EA047-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +58846,Id3,EA047,Activity is absent,EA047-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +58847,Id4,EA047,Activity is absent,EA047-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +58848,Id5,EA047,Activity is absent,EA047-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +58849,Id6,EA047,Activity is absent,EA047-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +58850,Id7,EA047,Activity is absent,EA047-9,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +58851,Id8,EA047,Activity is absent,EA047-9,,roth1890,,1830,EthnographicAtlas_1967_p96, +58852,Id9,EA047,Activity is absent,EA047-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +58853,Ie1,EA047,Activity is absent,EA047-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58854,Ie10,EA047,"Both, females more",EA047-5,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +58855,Ie11,EA047,Activity is absent,EA047-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +58856,Ie12,EA047,"Activity present, sex diff. unspecified",EA047-8,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58857,Ie13,EA047,?,EA047-NA,,,,,, +58858,Ie14,EA047,?,EA047-NA,,,,,, +58859,Ie15,EA047,Females alone,EA047-6,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58860,Ie16,EA047,Activity is absent,EA047-9,,williams194041,,1940,EthnographicAtlas_1967_p96, +58861,Ie17,EA047,Activity is absent,EA047-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +58862,Ie18,EA047,Activity is absent,EA047-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +58863,Ie19,EA047,Activity is absent,EA047-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +58864,Ie2,EA047,Activity is absent,EA047-9,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +58865,Ie20,EA047,"Activity present, sex diff. unspecified",EA047-8,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +58866,Ie21,EA047,Females alone,EA047-6,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +58867,Ie22,EA047,Activity is absent,EA047-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +58868,Ie23,EA047,Activity is absent,EA047-9,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +58869,Ie24,EA047,Activity is absent,EA047-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +58870,Ie25,EA047,Activity is absent,EA047-9,,williamson1912,,1920,EthnographicAtlas_1967_p96, +58871,Ie26,EA047,Activity is absent,EA047-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +58872,Ie27,EA047,?,EA047-NA,,,,,, +58873,Ie28,EA047,Females alone,EA047-6,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +58874,Ie29,EA047,?,EA047-NA,,,,,, +58875,Ie3,EA047,?,EA047-NA,,,,,, +58876,Ie30,EA047,Activity is absent,EA047-9,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +58877,Ie31,EA047,Activity is absent,EA047-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +58878,Ie32,EA047,Females alone,EA047-6,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +58879,Ie33,EA047,?,EA047-NA,,,,,, +58880,Ie34,EA047,?,EA047-NA,,,,,, +58881,Ie35,EA047,?,EA047-NA,,,,,, +58882,Ie36,EA047,?,EA047-NA,,,,,, +58883,Ie37,EA047,?,EA047-NA,,,,,, +58884,Ie38,EA047,Activity is absent,EA047-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +58885,Ie39,EA047,Activity is absent,EA047-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +58886,Ie4,EA047,Activity is absent,EA047-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58887,Ie5,EA047,Activity is absent,EA047-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +58888,Ie6,EA047,?,EA047-NA,,,,,, +58889,Ie7,EA047,Activity is absent,EA047-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +58890,Ie8,EA047,Activity is absent,EA047-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +58891,Ie9,EA047,Females alone,EA047-6,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +58892,If1,EA047,Females alone,EA047-6,But extinct today,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58893,If10,EA047,?,EA047-NA,,,,,, +58894,If11,EA047,Activity is absent,EA047-9,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +58895,If12,EA047,Activity is absent,EA047-9,,mason1954,,1940,EthnographicAtlas_1967_p100, +58896,If13,EA047,Activity is absent,EA047-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +58897,If14,EA047,Activity is absent,EA047-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +58898,If15,EA047,?,EA047-NA,,,,,, +58899,If16,EA047,Activity is absent,EA047-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +58900,If17,EA047,Activity is absent,EA047-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +58901,If2,EA047,Activity is absent,EA047-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +58902,If3,EA047,Activity is absent,EA047-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +58903,If4,EA047,Activity is absent,EA047-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +58904,If5,EA047,Activity is absent,EA047-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +58905,If6,EA047,?,EA047-NA,,,,,, +58906,If7,EA047,Activity is absent,EA047-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +58907,If8,EA047,Activity is absent,EA047-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +58908,If9,EA047,Activity is absent,EA047-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +58909,Ig1,EA047,"Both, females more",EA047-5,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +58910,Ig10,EA047,Activity is absent,EA047-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +58911,Ig11,EA047,Activity is absent,EA047-9,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +58912,Ig12,EA047,"Activity present, sex diff. unspecified",EA047-8,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p100, +58913,Ig13,EA047,?,EA047-NA,,,,,, +58914,Ig14,EA047,Females alone,EA047-6,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +58915,Ig15,EA047,?,EA047-NA,,,,,, +58916,Ig16,EA047,?,EA047-NA,,,,,, +58917,Ig17,EA047,?,EA047-NA,,,,,, +58918,Ig18,EA047,?,EA047-NA,,,,,, +58919,Ig19,EA047,?,EA047-NA,,,,,, +58920,Ig2,EA047,"Activity present, sex diff. unspecified",EA047-8,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +58921,Ig20,EA047,?,EA047-NA,,,,,, +58922,Ig21,EA047,Activity is absent,EA047-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +58923,Ig3,EA047,Females alone,EA047-6,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +58924,Ig4,EA047,Activity is absent,EA047-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +58925,Ig5,EA047,?,EA047-NA,,,,,, +58926,Ig6,EA047,Activity is absent,EA047-9,,ivens1927,,1900,EthnographicAtlas_1967_p100, +58927,Ig7,EA047,?,EA047-NA,,,,,, +58928,Ig8,EA047,?,EA047-NA,,,,,, +58929,Ig9,EA047,"Activity present, sex diff. unspecified",EA047-8,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +58930,Ih1,EA047,Activity is absent,EA047-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +58931,Ih10,EA047,?,EA047-NA,,,,,, +58932,Ih11,EA047,?,EA047-NA,,,,,, +58933,Ih12,EA047,?,EA047-NA,,,,,, +58934,Ih13,EA047,?,EA047-NA,,,,,, +58935,Ih14,EA047,Females alone,EA047-6,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +58936,Ih2,EA047,Activity is absent,EA047-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58937,Ih3,EA047,Activity is absent,EA047-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p100, +58938,Ih4,EA047,Females alone,EA047-6,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58939,Ih5,EA047,?,EA047-NA,,,,,, +58940,Ih6,EA047,?,EA047-NA,,,,,, +58941,Ih7,EA047,?,EA047-NA,,,,,, +58942,Ih8,EA047,?,EA047-NA,,,,,, +58943,Ih9,EA047,Activity is absent,EA047-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58944,Ii1,EA047,Activity is absent,EA047-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +58945,Ii10,EA047,?,EA047-NA,,,,,, +58946,Ii12,EA047,Activity is absent,EA047-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58947,Ii13,EA047,Activity is absent,EA047-9,,burrows1937,,1830,EthnographicAtlas_1967_p100, +58948,Ii14,EA047,Activity is absent,EA047-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +58949,Ii2,EA047,Activity is absent,EA047-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +58950,Ii3,EA047,Activity is absent,EA047-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +58951,Ii4,EA047,Activity is absent,EA047-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +58952,Ii5,EA047,Activity is absent,EA047-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +58953,Ii6,EA047,Activity is absent,EA047-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +58954,Ii7,EA047,Activity is absent,EA047-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +58955,Ii8,EA047,Activity is absent,EA047-9,,burrows1936,,1840,EthnographicAtlas_1967_p100, +58956,Ii9,EA047,Activity is absent,EA047-9,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +58957,Ij1,EA047,Activity is absent,EA047-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +58958,Ij10,EA047,?,EA047-NA,,,,,, +58959,Ij2,EA047,Activity is absent,EA047-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +58960,Ij3,EA047,Activity is absent,EA047-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +58961,Ij4,EA047,Activity is absent,EA047-9,,buck1932a,,1850,EthnographicAtlas_1967_p104, +58962,Ij5,EA047,Activity is absent,EA047-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +58963,Ij6,EA047,Activity is absent,EA047-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +58964,Ij7,EA047,Activity is absent,EA047-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +58965,Ij8,EA047,Activity is absent,EA047-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +58966,Ij9,EA047,Activity is absent,EA047-9,,metraux1940,,1860,EthnographicAtlas_1967_p104, +58967,Na1,EA047,Activity is absent,EA047-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +58968,Na10,EA047,Activity is absent,EA047-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +58969,Na11,EA047,Females alone,EA047-6,But pottery was given up sometime after 1912,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +58970,Na12,EA047,Activity is absent,EA047-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +58971,Na13,EA047,"Both, males more",EA047-2,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +58972,Na14,EA047,Activity is absent,EA047-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +58973,Na15,EA047,Activity is absent,EA047-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +58974,Na16,EA047,Activity is absent,EA047-9,,osgood1931,,1860,EthnographicAtlas_1967_p104, +58975,Na17,EA047,Activity is absent,EA047-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +58976,Na19,EA047,Activity is absent,EA047-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +58977,Na2,EA047,Females alone,EA047-6,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +58978,Na20,EA047,Activity is absent,EA047-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +58979,Na21,EA047,Activity is absent,EA047-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +58980,Na22,EA047,Activity is absent,EA047-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +58981,Na23,EA047,Activity is absent,EA047-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +58982,Na24,EA047,Activity is absent,EA047-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +58983,Na25,EA047,?,EA047-NA,,,,,, +58984,Na26,EA047,Activity is absent,EA047-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +58985,Na27,EA047,Activity is absent,EA047-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +58986,Na28,EA047,Activity is absent,EA047-9,,jenness1937,,1880,EthnographicAtlas_1967_p104, +58987,Na29,EA047,Activity is absent,EA047-9,,goddard1916,,1850,EthnographicAtlas_1967_p104, +58988,Na3,EA047,Activity is absent,EA047-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +58989,Na30,EA047,Activity is absent,EA047-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +58990,Na31,EA047,Activity is absent,EA047-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +58991,Na32,EA047,Activity is absent,EA047-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +58992,Na33,EA047,Activity is absent,EA047-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +58993,Na34,EA047,Activity is absent,EA047-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +58994,Na35,EA047,Activity is absent,EA047-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +58995,Na36,EA047,Activity is absent,EA047-9,But pottery was made prior to the mid-nineteenth century,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +58996,Na37,EA047,Activity is absent,EA047-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +58997,Na38,EA047,Females alone,EA047-6,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +58998,Na39,EA047,Activity is absent,EA047-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +58999,Na4,EA047,Activity is absent,EA047-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +59000,Na40,EA047,"Activity present, sex diff. unspecified",EA047-8,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +59001,Na41,EA047,Activity is absent,EA047-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +59002,Na42,EA047,?,EA047-NA,,,,,, +59003,Na43,EA047,?,EA047-NA,,,,,, +59004,Na44,EA047,?,EA047-NA,,,,,, +59005,Na45,EA047,?,EA047-NA,,,,,, +59006,Na5,EA047,Activity is absent,EA047-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +59007,Na6,EA047,Females alone,EA047-6,,lantis1946,,1930,EthnographicAtlas_1967_p104, +59008,Na7,EA047,Activity is absent,EA047-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +59009,Na8,EA047,Females alone,EA047-6,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +59010,Na9,EA047,Activity is absent,EA047-9,But pottery is found in archaeological sites,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59011,Nb1,EA047,Activity is absent,EA047-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +59012,Nb10,EA047,Activity is absent,EA047-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +59013,Nb11,EA047,Activity is absent,EA047-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +59014,Nb12,EA047,Activity is absent,EA047-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +59015,Nb13,EA047,Activity is absent,EA047-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +59016,Nb14,EA047,Activity is absent,EA047-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +59017,Nb15,EA047,Activity is absent,EA047-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +59018,Nb16,EA047,Activity is absent,EA047-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +59019,Nb17,EA047,Activity is absent,EA047-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +59020,Nb18,EA047,Activity is absent,EA047-9,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +59021,Nb19,EA047,Activity is absent,EA047-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +59022,Nb2,EA047,Activity is absent,EA047-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +59023,Nb20,EA047,Activity is absent,EA047-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +59024,Nb21,EA047,Activity is absent,EA047-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +59025,Nb22,EA047,Activity is absent,EA047-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +59026,Nb23,EA047,Activity is absent,EA047-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +59027,Nb24,EA047,Activity is absent,EA047-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +59028,Nb25,EA047,Activity is absent,EA047-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +59029,Nb26,EA047,Activity is absent,EA047-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +59030,Nb27,EA047,Activity is absent,EA047-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +59031,Nb28,EA047,Activity is absent,EA047-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +59032,Nb29,EA047,Activity is absent,EA047-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +59033,Nb3,EA047,Activity is absent,EA047-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +59034,Nb30,EA047,Activity is absent,EA047-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +59035,Nb31,EA047,Activity is absent,EA047-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +59036,Nb32,EA047,Activity is absent,EA047-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +59037,Nb33,EA047,Activity is absent,EA047-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +59038,Nb34,EA047,Activity is absent,EA047-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +59039,Nb35,EA047,Activity is absent,EA047-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +59040,Nb36,EA047,Activity is absent,EA047-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +59041,Nb37,EA047,Activity is absent,EA047-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +59042,Nb38,EA047,Activity is absent,EA047-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +59043,Nb39,EA047,Activity is absent,EA047-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +59044,Nb4,EA047,Activity is absent,EA047-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +59045,Nb5,EA047,Activity is absent,EA047-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +59046,Nb6,EA047,Activity is absent,EA047-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +59047,Nb7,EA047,Activity is absent,EA047-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +59048,Nb8,EA047,Activity is absent,EA047-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +59049,Nb9,EA047,Activity is absent,EA047-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +59050,Nc1,EA047,Activity is absent,EA047-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +59051,Nc10,EA047,Activity is absent,EA047-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +59052,Nc11,EA047,Activity is absent,EA047-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +59053,Nc12,EA047,Activity is absent,EA047-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +59054,Nc13,EA047,Activity is absent,EA047-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +59055,Nc14,EA047,Activity is absent,EA047-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +59056,Nc15,EA047,Activity is absent,EA047-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +59057,Nc16,EA047,Activity is absent,EA047-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +59058,Nc17,EA047,Activity is absent,EA047-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +59059,Nc18,EA047,Activity is absent,EA047-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +59060,Nc19,EA047,Activity is absent,EA047-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +59061,Nc2,EA047,Females alone,EA047-6,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +59062,Nc20,EA047,Activity is absent,EA047-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +59063,Nc21,EA047,Activity is absent,EA047-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +59064,Nc22,EA047,Activity is absent,EA047-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +59065,Nc23,EA047,Females alone,EA047-6,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +59066,Nc24,EA047,Activity is absent,EA047-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +59067,Nc25,EA047,Females alone,EA047-6,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +59068,Nc26,EA047,Activity is absent,EA047-9,"Entry follows Mason; Harrington reports 'present, though sex participation unspecified' (EA047 code ""9"") and no specialization specified (EA058 code ""9""), perhaps for the post mission period",harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +59069,Nc27,EA047,?,EA047-NA,,,,,, +59070,Nc28,EA047,Activity is absent,EA047-9,"Entry follows Kroeber; Harrington reports 'present, though sex participation unspecified' (EA047 code ""9"") and no specialization specified (EA058 code ""9""), perhaps for the post mission period",harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +59071,Nc29,EA047,Activity is absent,EA047-9,But pottery was made in the post-mission period,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +59072,Nc3,EA047,Females alone,EA047-6,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +59073,Nc30,EA047,"Activity present, sex diff. unspecified",EA047-8,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +59074,Nc31,EA047,"Activity present, sex diff. unspecified",EA047-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +59075,Nc32,EA047,"Activity present, sex diff. unspecified",EA047-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +59076,Nc33,EA047,"Activity present, sex diff. unspecified",EA047-8,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +59077,Nc34,EA047,Females alone,EA047-6,,meigs1939,,1880,EthnographicAtlas_1967_p108, +59078,Nc4,EA047,Activity is absent,EA047-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +59079,Nc5,EA047,Activity is absent,EA047-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +59080,Nc6,EA047,"Activity present, sex diff. unspecified",EA047-8,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +59081,Nc7,EA047,Activity is absent,EA047-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +59082,Nc8,EA047,Activity is absent,EA047-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +59083,Nc9,EA047,Activity is absent,EA047-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +59084,Nd1,EA047,Activity is absent,EA047-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +59085,Nd10,EA047,Activity is absent,EA047-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +59086,Nd11,EA047,Activity is absent,EA047-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +59087,Nd12,EA047,Activity is absent,EA047-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +59088,Nd13,EA047,Activity is absent,EA047-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +59089,Nd14,EA047,Activity is absent,EA047-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +59090,Nd15,EA047,Activity is absent,EA047-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +59091,Nd16,EA047,Activity is absent,EA047-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +59092,Nd17,EA047,?,EA047-NA,,,,,, +59093,Nd18,EA047,Activity is absent,EA047-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +59094,Nd19,EA047,Activity is absent,EA047-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +59095,Nd2,EA047,Activity is absent,EA047-9,But women made clay pipes,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +59096,Nd20,EA047,Activity is absent,EA047-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +59097,Nd21,EA047,Activity is absent,EA047-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +59098,Nd22,EA047,Activity is absent,EA047-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +59099,Nd23,EA047,Activity is absent,EA047-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +59100,Nd24,EA047,Activity is absent,EA047-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +59101,Nd25,EA047,Activity is absent,EA047-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +59102,Nd26,EA047,Activity is absent,EA047-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +59103,Nd27,EA047,Activity is absent,EA047-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +59104,Nd28,EA047,Activity is absent,EA047-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +59105,Nd29,EA047,Females alone,EA047-6,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +59106,Nd3,EA047,Females alone,EA047-6,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +59107,Nd30,EA047,Females alone,EA047-6,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +59108,Nd31,EA047,"Activity present, sex diff. unspecified",EA047-8,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +59109,Nd32,EA047,Females alone,EA047-6,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +59110,Nd33,EA047,Females alone,EA047-6,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +59111,Nd34,EA047,Females alone,EA047-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +59112,Nd35,EA047,Males alone,EA047-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +59113,Nd36,EA047,Females alone,EA047-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +59114,Nd37,EA047,Females alone,EA047-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +59115,Nd38,EA047,Females alone,EA047-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +59116,Nd39,EA047,Equal participation,EA047-4,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +59117,Nd4,EA047,Females alone,EA047-6,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +59118,Nd40,EA047,"Activity present, sex diff. unspecified",EA047-8,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +59119,Nd41,EA047,Females alone,EA047-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +59120,Nd42,EA047,Equal participation,EA047-4,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +59121,Nd43,EA047,Females alone,EA047-6,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +59122,Nd44,EA047,Equal participation,EA047-4,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +59123,Nd45,EA047,"Activity present, sex diff. unspecified",EA047-8,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +59124,Nd46,EA047,"Activity present, sex diff. unspecified",EA047-8,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +59125,Nd47,EA047,?,EA047-NA,,,,,, +59126,Nd48,EA047,"Activity present, sex diff. unspecified",EA047-8,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +59127,Nd49,EA047,Activity is absent,EA047-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +59128,Nd5,EA047,Activity is absent,EA047-9,But pottery was made at an earlier period,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +59129,Nd50,EA047,Females alone,EA047-6,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +59130,Nd51,EA047,Males alone,EA047-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +59131,Nd52,EA047,Females alone,EA047-6,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +59132,Nd53,EA047,Males alone,EA047-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +59133,Nd54,EA047,Females alone,EA047-6,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59134,Nd55,EA047,"Activity present, sex diff. unspecified",EA047-8,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +59135,Nd56,EA047,Activity is absent,EA047-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +59136,Nd57,EA047,Females alone,EA047-6,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +59137,Nd58,EA047,Females alone,EA047-6,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +59138,Nd59,EA047,Females alone,EA047-6,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +59139,Nd6,EA047,Activity is absent,EA047-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +59140,Nd60,EA047,Activity is absent,EA047-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +59141,Nd61,EA047,Activity is absent,EA047-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +59142,Nd62,EA047,Activity is absent,EA047-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +59143,Nd63,EA047,Activity is absent,EA047-9,But pottery was made in the prehistoric period,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +59144,Nd64,EA047,Activity is absent,EA047-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +59145,Nd65,EA047,Females alone,EA047-6,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +59146,Nd66,EA047,Females alone,EA047-6,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +59147,Nd67,EA047,Females alone,EA047-6,,gifford1936,,1870,EthnographicAtlas_1967_p112, +59148,Nd7,EA047,"Activity present, sex diff. unspecified",EA047-8,"But the pots were sun-dried, not fired",boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +59149,Nd8,EA047,Activity is absent,EA047-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +59150,Nd9,EA047,Activity is absent,EA047-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +59151,Ne1,EA047,Females alone,EA047-6,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +59152,Ne10,EA047,Females alone,EA047-6,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +59153,Ne11,EA047,Activity is absent,EA047-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +59154,Ne12,EA047,Activity is absent,EA047-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +59155,Ne13,EA047,Activity is absent,EA047-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +59156,Ne14,EA047,Activity is absent,EA047-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +59157,Ne15,EA047,Females alone,EA047-6,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +59158,Ne16,EA047,"Activity present, sex diff. unspecified",EA047-8,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +59159,Ne17,EA047,?,EA047-NA,,,,,, +59160,Ne18,EA047,Activity is absent,EA047-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +59161,Ne19,EA047,Activity is absent,EA047-9,But a tradition that pottery was formerly made,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +59162,Ne2,EA047,Activity is absent,EA047-9,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +59163,Ne20,EA047,Activity is absent,EA047-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +59164,Ne21,EA047,?,EA047-NA,,,,,, +59165,Ne3,EA047,Activity is absent,EA047-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +59166,Ne4,EA047,Activity is absent,EA047-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +59167,Ne5,EA047,Females alone,EA047-6,But pottery disappeared after European contact,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +59168,Ne6,EA047,"Activity present, sex diff. unspecified",EA047-8,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +59169,Ne7,EA047,Activity is absent,EA047-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +59170,Ne8,EA047,Activity is absent,EA047-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +59171,Ne9,EA047,Activity is absent,EA047-9,But pottery was made at an earlier date,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +59172,Nf10,EA047,Females alone,EA047-6,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +59173,Nf11,EA047,Females alone,EA047-6,,whitman1937,,1870,EthnographicAtlas_1967_p116, +59174,Nf12,EA047,Females alone,EA047-6,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +59175,Nf13,EA047,Females alone,EA047-6,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59176,Nf14,EA047,Females alone,EA047-6,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +59177,Nf15,EA047,?,EA047-NA,,,,,, +59178,Nf2,EA047,Females alone,EA047-6,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +59179,Nf3,EA047,Females alone,EA047-6,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +59180,Nf4,EA047,Females alone,EA047-6,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +59181,Nf5,EA047,?,EA047-NA,,,,,, +59182,Nf6,EA047,Females alone,EA047-6,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +59183,Nf7,EA047,Females alone,EA047-6,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59184,Nf8,EA047,Females alone,EA047-6,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +59185,Nf9,EA047,Females alone,EA047-6,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +59186,Ng1,EA047,Females alone,EA047-6,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +59187,Ng10,EA047,Females alone,EA047-6,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +59188,Ng11,EA047,Females alone,EA047-6,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +59189,Ng12,EA047,Females alone,EA047-6,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +59190,Ng13,EA047,?,EA047-NA,,,,,, +59191,Ng14,EA047,?,EA047-NA,,,,,, +59192,Ng15,EA047,?,EA047-NA,,,,,, +59193,Ng2,EA047,?,EA047-NA,,,,,, +59194,Ng3,EA047,Females alone,EA047-6,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +59195,Ng4,EA047,?,EA047-NA,,,,,, +59196,Ng5,EA047,Females alone,EA047-6,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +59197,Ng6,EA047,Females alone,EA047-6,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +59198,Ng7,EA047,Females alone,EA047-6,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +59199,Ng8,EA047,Females alone,EA047-6,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +59200,Ng9,EA047,?,EA047-NA,,,,,, +59201,Nh1,EA047,Females alone,EA047-6,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +59202,Nh10,EA047,Females alone,EA047-6,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p116, +59203,Nh11,EA047,Females alone,EA047-6,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +59204,Nh12,EA047,Females alone,EA047-6,But pottery is no longer made today,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +59205,Nh13,EA047,Females alone,EA047-6,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +59206,Nh14,EA047,?,EA047-NA,,,,,, +59207,Nh15,EA047,Females alone,EA047-6,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +59208,Nh16,EA047,Females alone,EA047-6,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59209,Nh17,EA047,Females alone,EA047-6,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +59210,Nh18,EA047,Females alone,EA047-6,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59211,Nh19,EA047,Females alone,EA047-6,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +59212,Nh2,EA047,Females alone,EA047-6,,dozier1954,,1950,EthnographicAtlas_1967_p116, +59213,Nh20,EA047,Females alone,EA047-6,,gifford1931,,1860,EthnographicAtlas_1967_p116, +59214,Nh21,EA047,Females alone,EA047-6,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59215,Nh22,EA047,Females alone,EA047-6,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +59216,Nh23,EA047,Females alone,EA047-6,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +59217,Nh24,EA047,?,EA047-NA,,,,,, +59218,Nh25,EA047,Females alone,EA047-6,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +59219,Nh26,EA047,?,EA047-NA,,,,,, +59220,Nh27,EA047,?,EA047-NA,,,,,, +59221,Nh3,EA047,Females alone,EA047-6,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +59222,Nh4,EA047,Females alone,EA047-6,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +59223,Nh5,EA047,Females alone,EA047-6,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +59224,Nh6,EA047,Females alone,EA047-6,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +59225,Nh7,EA047,Females alone,EA047-6,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +59226,Nh8,EA047,Females alone,EA047-6,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +59227,Nh9,EA047,Females alone,EA047-6,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p116, +59228,Ni1,EA047,Females alone,EA047-6,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +59229,Ni2,EA047,Females alone,EA047-6,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +59230,Ni3,EA047,Females alone,EA047-6,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +59231,Ni4,EA047,Females alone,EA047-6,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +59232,Ni5,EA047,Activity is absent,EA047-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +59233,Ni6,EA047,Females alone,EA047-6,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +59234,Ni7,EA047,Females alone,EA047-6,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +59235,Ni8,EA047,?,EA047-NA,,,,,, +59236,Ni9,EA047,?,EA047-NA,,,,,, +59237,Nj1,EA047,Females alone,EA047-6,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59238,Nj10,EA047,Males alone,EA047-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59239,Nj11,EA047,?,EA047-NA,,,,,, +59240,Nj12,EA047,?,EA047-NA,,,,,, +59241,Nj13,EA047,?,EA047-NA,,,,,, +59242,Nj14,EA047,?,EA047-NA,,,,,, +59243,Nj2,EA047,Males alone,EA047-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +59244,Nj3,EA047,"Activity present, sex diff. unspecified",EA047-8,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +59245,Nj4,EA047,Females alone,EA047-6,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +59246,Nj5,EA047,?,EA047-NA,,,,,, +59247,Nj6,EA047,?,EA047-NA,,,,,, +59248,Nj7,EA047,Females alone,EA047-6,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59249,Nj8,EA047,"Activity present, sex diff. unspecified",EA047-8,,foster1948,,1500,EthnographicAtlas_1967_p120, +59250,Nj9,EA047,Females alone,EA047-6,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +59251,Sa1,EA047,"Both, females more",EA047-5,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +59252,Sa10,EA047,"Activity present, sex diff. unspecified",EA047-8,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +59253,Sa11,EA047,?,EA047-NA,,,,,, +59254,Sa12,EA047,Females alone,EA047-6,,stone1948,,1948,EthnographicAtlas_1967_p120, +59255,Sa13,EA047,Females alone,EA047-6,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +59256,Sa14,EA047,?,EA047-NA,,,,,, +59257,Sa15,EA047,?,EA047-NA,,,,,, +59258,Sa16,EA047,?,EA047-NA,,,,,, +59259,Sa17,EA047,?,EA047-NA,,,,,, +59260,Sa2,EA047,?,EA047-NA,,,,,, +59261,Sa3,EA047,"Both, females more",EA047-5,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +59262,Sa4,EA047,Females alone,EA047-6,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +59263,Sa5,EA047,Females alone,EA047-6,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +59264,Sa6,EA047,"Activity present, sex diff. unspecified",EA047-8,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +59265,Sa7,EA047,Activity is absent,EA047-9,"There is incidental mention of pots, but they are presumably obtained through trade",solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +59266,Sa8,EA047,"Activity present, sex diff. unspecified",EA047-8,Traded from a neighboring village,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p120, +59267,Sa9,EA047,Females alone,EA047-6,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +59268,Sb1,EA047,Females alone,EA047-6,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +59269,Sb2,EA047,Males alone,EA047-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +59270,Sb3,EA047,?,EA047-NA,,,,,, +59271,Sb4,EA047,Females alone,EA047-6,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +59272,Sb5,EA047,"Activity present, sex diff. unspecified",EA047-8,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p120, +59273,Sb6,EA047,Females alone,EA047-6,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +59274,Sb7,EA047,Males alone,EA047-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +59275,Sb8,EA047,"Activity present, sex diff. unspecified",EA047-8,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +59276,Sb9,EA047,Males alone,EA047-1,But only outside of the valley,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +59277,Sc1,EA047,Females alone,EA047-6,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +59278,Sc10,EA047,"Activity present, sex diff. unspecified",EA047-8,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +59279,Sc11,EA047,?,EA047-NA,,,,,, +59280,Sc12,EA047,"Activity present, sex diff. unspecified",EA047-8,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +59281,Sc13,EA047,?,EA047-NA,,,,,, +59282,Sc14,EA047,Females alone,EA047-6,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +59283,Sc15,EA047,Females alone,EA047-6,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +59284,Sc16,EA047,Males alone,EA047-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +59285,Sc17,EA047,?,EA047-NA,,,,,, +59286,Sc18,EA047,Activity is absent,EA047-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +59287,Sc2,EA047,Females alone,EA047-6,,leedsnd,,1950,EthnographicAtlas_1967_p120, +59288,Sc3,EA047,Females alone,EA047-6,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +59289,Sc4,EA047,Females alone,EA047-6,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +59290,Sc5,EA047,Females alone,EA047-6,,farabee1918,,1900,EthnographicAtlas_1967_p120, +59291,Sc6,EA047,?,EA047-NA,,,,,, +59292,Sc7,EA047,Females alone,EA047-6,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +59293,Sc8,EA047,"Activity present, sex diff. unspecified",EA047-8,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +59294,Sc9,EA047,"Activity present, sex diff. unspecified",EA047-8,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +59295,Sd1,EA047,Females alone,EA047-6,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59296,Sd2,EA047,Females alone,EA047-6,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +59297,Sd3,EA047,"Activity present, sex diff. unspecified",EA047-8,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +59298,Sd4,EA047,?,EA047-NA,,,,,, +59299,Sd5,EA047,Activity is absent,EA047-9,"But formerly present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +59300,Sd6,EA047,Females alone,EA047-6,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +59301,Sd7,EA047,Females alone,EA047-6,,fock1963,,1950,EthnographicAtlas_1967_p120, +59302,Sd8,EA047,"Activity present, sex diff. unspecified",EA047-8,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +59303,Sd9,EA047,"Activity present, sex diff. unspecified",EA047-8,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59304,Se1,EA047,Females alone,EA047-6,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +59305,Se10,EA047,Females alone,EA047-6,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p120, +59306,Se11,EA047,Females alone,EA047-6,,prost1965,,1960,EthnographicAtlas_1967_p124, +59307,Se12,EA047,?,EA047-NA,,,,,, +59308,Se2,EA047,"Both, females more",EA047-5,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +59309,Se3,EA047,Females alone,EA047-6,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +59310,Se4,EA047,Females alone,EA047-6,,fejos1943,,1940,EthnographicAtlas_1967_p120, +59311,Se5,EA047,Females alone,EA047-6,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +59312,Se6,EA047,Females alone,EA047-6,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +59313,Se7,EA047,?,EA047-NA,,,,,, +59314,Se8,EA047,Females alone,EA047-6,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +59315,Se9,EA047,Females alone,EA047-6,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +59316,Sf1,EA047,Females alone,EA047-6,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +59317,Sf2,EA047,"Both, males more",EA047-2,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +59318,Sf3,EA047,Females alone,EA047-6,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +59319,Sf4,EA047,Females alone,EA047-6,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +59320,Sf5,EA047,Females alone,EA047-6,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +59321,Sf6,EA047,"Activity present, sex diff. unspecified",EA047-8,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +59322,Sf7,EA047,Activity is absent,EA047-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +59323,Sf8,EA047,?,EA047-NA,,,,,, +59324,Sf9,EA047,?,EA047-NA,,,,,, +59325,Sg1,EA047,Activity is absent,EA047-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +59326,Sg2,EA047,Females alone,EA047-6,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59327,Sg3,EA047,Activity is absent,EA047-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +59328,Sg4,EA047,"Activity present, sex diff. unspecified",EA047-8,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +59329,Sg5,EA047,Activity is absent,EA047-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59330,Sh1,EA047,Females alone,EA047-6,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +59331,Sh2,EA047,Females alone,EA047-6,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +59332,Sh3,EA047,Females alone,EA047-6,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +59333,Sh4,EA047,Females alone,EA047-6,,oberg1949,,1940,EthnographicAtlas_1967_p124, +59334,Sh5,EA047,Females alone,EA047-6,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +59335,Sh6,EA047,"Activity present, sex diff. unspecified",EA047-8,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +59336,Sh7,EA047,Females alone,EA047-6,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124,"Assume Murdock comment meant for Col 46, not Col 47 as stated Gray (1999)" +59337,Sh8,EA047,Females alone,EA047-6,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +59338,Sh9,EA047,Females alone,EA047-6,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +59339,Si1,EA047,Females alone,EA047-6,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59340,Si10,EA047,Activity is absent,EA047-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +59341,Si2,EA047,Activity is absent,EA047-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +59342,Si3,EA047,Equal participation,EA047-4,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59343,Si4,EA047,Activity is absent,EA047-9,But some groups make crude pottery,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +59344,Si5,EA047,Females alone,EA047-6,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +59345,Si6,EA047,Females alone,EA047-6,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +59346,Si7,EA047,"Activity present, sex diff. unspecified",EA047-8,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +59347,Si8,EA047,Females alone,EA047-6,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +59348,Si9,EA047,?,EA047-NA,,,,,, +59349,Sj1,EA047,"Activity present, sex diff. unspecified",EA047-8,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +59350,Sj10,EA047,Females alone,EA047-6,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59351,Sj11,EA047,Activity is absent,EA047-9,But pottery was formerly made,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +59352,Sj2,EA047,Activity is absent,EA047-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +59353,Sj3,EA047,Females alone,EA047-6,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +59354,Sj4,EA047,Activity is absent,EA047-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +59355,Sj5,EA047,Activity is absent,EA047-9,But pottery has been made in recent times,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +59356,Sj6,EA047,Activity is absent,EA047-9,But pottery was formerly made,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59357,Sj7,EA047,Activity is absent,EA047-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +59358,Sj8,EA047,Females alone,EA047-6,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +59359,Sj9,EA047,Activity is absent,EA047-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +59360,ch12,EA047,Activity is absent,EA047-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +59361,ch13,EA047,Activity is absent,EA047-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +59362,ch14,EA047,Activity is absent,EA047-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +59363,ch15,EA047,Males alone,EA047-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +59364,ch16,EA047,Activity is absent,EA047-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +59365,ch17,EA047,Activity is absent,EA047-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +59366,ch18,EA047,"Activity present, sex diff. unspecified",EA047-8,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +59367,ch19,EA047,Males alone,EA047-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +59368,ch20,EA047,Activity is absent,EA047-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +59369,ch21,EA047,Males alone,EA047-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +59370,ch22,EA047,Activity is absent,EA047-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +59371,ch23,EA047,Activity is absent,EA047-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +59372,ch24,EA047,Males alone,EA047-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +59373,ch25,EA047,Males alone,EA047-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +59374,ch26,EA047,?,EA047-NA,,,,,, +59375,ch27,EA047,Males alone,EA047-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +59376,ch28,EA047,?,EA047-NA,,,,,, +59377,ec12,EA047,Activity is absent,EA047-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +59378,ec13,EA047,Activity is absent,EA047-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +59379,ec14,EA047,Activity is absent,EA047-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +59380,ec15,EA047,Activity is absent,EA047-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +59381,ec16,EA047,Activity is absent,EA047-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +59382,ec17,EA047,Activity is absent,EA047-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +59383,ec18,EA047,Activity is absent,EA047-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +59384,ec19,EA047,Activity is absent,EA047-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +59385,ec20,EA047,Activity is absent,EA047-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +59386,ec21,EA047,Activity is absent,EA047-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +59387,Aa1,EA048,Activity is absent,EA048-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +59388,Aa2,EA048,Activity is absent,EA048-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +59389,Aa3,EA048,Activity is absent,EA048-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +59390,Aa4,EA048,?,EA048-NA,,,,,, +59391,Aa5,EA048,Activity is absent,EA048-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +59392,Aa6,EA048,?,EA048-NA,,,,,, +59393,Aa7,EA048,Activity is absent,EA048-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +59394,Aa8,EA048,Activity is absent,EA048-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +59395,Aa9,EA048,Activity is absent,EA048-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +59396,Ab1,EA048,Activity is absent,EA048-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +59397,Ab10,EA048,?,EA048-NA,,,,,, +59398,Ab11,EA048,?,EA048-NA,,,,,, +59399,Ab12,EA048,Males alone,EA048-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +59400,Ab13,EA048,Activity is absent,EA048-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +59401,Ab14,EA048,Activity is absent,EA048-9,But bark canoes are mentioned in traditions,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +59402,Ab15,EA048,?,EA048-NA,,,,,, +59403,Ab16,EA048,?,EA048-NA,,,,,, +59404,Ab17,EA048,?,EA048-NA,,,,,, +59405,Ab18,EA048,?,EA048-NA,,,,,, +59406,Ab19,EA048,Activity is absent,EA048-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +59407,Ab2,EA048,?,EA048-NA,,,,,, +59408,Ab20,EA048,?,EA048-NA,,,,,, +59409,Ab21a,EA048,?,EA048-NA,,,,,, +59410,Ab21b,EA048,?,EA048-NA,,,,,, +59411,Ab22,EA048,?,EA048-NA,,,,,, +59412,Ab3,EA048,Males alone,EA048-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +59413,Ab4,EA048,Males alone,EA048-1,,junod1927,,1920,EthnographicAtlas_1967_p64, +59414,Ab5,EA048,Males alone,EA048-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +59415,Ab6,EA048,Activity is absent,EA048-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +59416,Ab7,EA048,?,EA048-NA,,,,,, +59417,Ab8,EA048,?,EA048-NA,,,,,, +59418,Ab9,EA048,?,EA048-NA,,,,,, +59419,Ac1,EA048,Males alone,EA048-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +59420,Ac10,EA048,"Activity present, sex diff. unspecified",EA048-8,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +59421,Ac11,EA048,?,EA048-NA,,,,,, +59422,Ac12,EA048,?,EA048-NA,,,,,, +59423,Ac13,EA048,"Activity present, sex diff. unspecified",EA048-8,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p64, +59424,Ac14,EA048,?,EA048-NA,,,,,, +59425,Ac15,EA048,?,EA048-NA,,,,,, +59426,Ac16,EA048,?,EA048-NA,,,,,, +59427,Ac17,EA048,?,EA048-NA,,,,,, +59428,Ac18,EA048,"Activity present, sex diff. unspecified",EA048-8,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +59429,Ac19,EA048,?,EA048-NA,,,,,, +59430,Ac2,EA048,?,EA048-NA,,,,,, +59431,Ac20,EA048,?,EA048-NA,,,,,, +59432,Ac21,EA048,?,EA048-NA,,,,,, +59433,Ac22,EA048,?,EA048-NA,,,,,, +59434,Ac23,EA048,?,EA048-NA,,,,,, +59435,Ac24,EA048,?,EA048-NA,,,,,, +59436,Ac25,EA048,?,EA048-NA,,,,,, +59437,Ac26,EA048,?,EA048-NA,,,,,, +59438,Ac27,EA048,?,EA048-NA,,,,,, +59439,Ac28,EA048,?,EA048-NA,,,,,, +59440,Ac29,EA048,?,EA048-NA,,,,,, +59441,Ac3,EA048,"Activity present, sex diff. unspecified",EA048-8,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +59442,Ac30,EA048,?,EA048-NA,,,,,, +59443,Ac31,EA048,"Activity present, sex diff. unspecified",EA048-8,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +59444,Ac32,EA048,?,EA048-NA,,,,,, +59445,Ac33,EA048,?,EA048-NA,,,,,, +59446,Ac34,EA048,Males alone,EA048-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +59447,Ac35,EA048,?,EA048-NA,,,,,, +59448,Ac36,EA048,?,EA048-NA,,,,,, +59449,Ac37,EA048,?,EA048-NA,,,,,, +59450,Ac38,EA048,"Activity present, sex diff. unspecified",EA048-8,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +59451,Ac39,EA048,"Activity present, sex diff. unspecified",EA048-8,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +59452,Ac4,EA048,?,EA048-NA,,,,,, +59453,Ac40,EA048,?,EA048-NA,,,,,, +59454,Ac41,EA048,?,EA048-NA,,,,,, +59455,Ac42,EA048,?,EA048-NA,,,,,, +59456,Ac43,EA048,?,EA048-NA,,,,,, +59457,Ac5,EA048,Males alone,EA048-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +59458,Ac6,EA048,"Activity present, sex diff. unspecified",EA048-8,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +59459,Ac7,EA048,"Activity present, sex diff. unspecified",EA048-8,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +59460,Ac8,EA048,"Activity present, sex diff. unspecified",EA048-8,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +59461,Ac9,EA048,?,EA048-NA,,,,,, +59462,Ad1,EA048,?,EA048-NA,,,,,, +59463,Ad10,EA048,?,EA048-NA,,,,,, +59464,Ad11,EA048,Males alone,EA048-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +59465,Ad12,EA048,?,EA048-NA,,,,,, +59466,Ad13,EA048,Males alone,EA048-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +59467,Ad14,EA048,?,EA048-NA,,,,,, +59468,Ad15,EA048,?,EA048-NA,,,,,, +59469,Ad16,EA048,"Activity present, sex diff. unspecified",EA048-8,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +59470,Ad17,EA048,?,EA048-NA,,,,,, +59471,Ad18,EA048,?,EA048-NA,,,,,, +59472,Ad19,EA048,?,EA048-NA,,,,,, +59473,Ad2,EA048,Males alone,EA048-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +59474,Ad20,EA048,?,EA048-NA,,,,,, +59475,Ad21,EA048,?,EA048-NA,,,,,, +59476,Ad22,EA048,?,EA048-NA,,,,,, +59477,Ad23,EA048,?,EA048-NA,,,,,, +59478,Ad24,EA048,Activity is absent,EA048-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +59479,Ad25,EA048,?,EA048-NA,,,,,, +59480,Ad26,EA048,?,EA048-NA,,,,,, +59481,Ad27,EA048,"Activity present, sex diff. unspecified",EA048-8,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +59482,Ad28,EA048,?,EA048-NA,,,,,, +59483,Ad29,EA048,Males alone,EA048-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +59484,Ad3,EA048,Activity is absent,EA048-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +59485,Ad30,EA048,Males alone,EA048-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +59486,Ad31,EA048,?,EA048-NA,,,,,, +59487,Ad32,EA048,?,EA048-NA,,,,,, +59488,Ad33,EA048,"Activity present, sex diff. unspecified",EA048-8,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +59489,Ad34,EA048,?,EA048-NA,,,,,, +59490,Ad35,EA048,?,EA048-NA,,,,,, +59491,Ad36,EA048,?,EA048-NA,,,,,, +59492,Ad37,EA048,?,EA048-NA,,,,,, +59493,Ad38,EA048,?,EA048-NA,,,,,, +59494,Ad39,EA048,Activity is absent,EA048-9,,gray1963,,1950,EthnographicAtlas_1967_p68, +59495,Ad4,EA048,Activity is absent,EA048-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +59496,Ad40,EA048,?,EA048-NA,,,,,, +59497,Ad41,EA048,?,EA048-NA,,,,,, +59498,Ad42,EA048,?,EA048-NA,,,,,, +59499,Ad43,EA048,?,EA048-NA,,,,,, +59500,Ad44,EA048,?,EA048-NA,,,,,, +59501,Ad45,EA048,?,EA048-NA,,,,,, +59502,Ad46,EA048,Males alone,EA048-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +59503,Ad47,EA048,?,EA048-NA,,,,,, +59504,Ad48,EA048,Males alone,EA048-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +59505,Ad49,EA048,?,EA048-NA,,,,,, +59506,Ad5,EA048,?,EA048-NA,,,,,, +59507,Ad50,EA048,?,EA048-NA,,,,,, +59508,Ad51,EA048,?,EA048-NA,,,,,, +59509,Ad6,EA048,Males alone,EA048-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +59510,Ad7,EA048,Males alone,EA048-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +59511,Ad8,EA048,?,EA048-NA,,,,,, +59512,Ad9,EA048,Activity is absent,EA048-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +59513,Ae1,EA048,Activity is absent,EA048-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +59514,Ae10,EA048,Males alone,EA048-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +59515,Ae11,EA048,Males alone,EA048-1,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +59516,Ae12,EA048,"Activity present, sex diff. unspecified",EA048-8,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +59517,Ae13,EA048,?,EA048-NA,,,,,, +59518,Ae14,EA048,"Activity present, sex diff. unspecified",EA048-8,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +59519,Ae15,EA048,?,EA048-NA,,,,,, +59520,Ae16,EA048,?,EA048-NA,,,,,, +59521,Ae17,EA048,?,EA048-NA,,,,,, +59522,Ae18,EA048,"Activity present, sex diff. unspecified",EA048-8,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +59523,Ae19,EA048,?,EA048-NA,,,,,, +59524,Ae2,EA048,Males alone,EA048-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +59525,Ae20,EA048,?,EA048-NA,,,,,, +59526,Ae21,EA048,?,EA048-NA,,,,,, +59527,Ae22,EA048,?,EA048-NA,,,,,, +59528,Ae23,EA048,?,EA048-NA,,,,,, +59529,Ae24,EA048,?,EA048-NA,,,,,, +59530,Ae25,EA048,?,EA048-NA,,,,,, +59531,Ae26,EA048,?,EA048-NA,,,,,, +59532,Ae27,EA048,?,EA048-NA,,,,,, +59533,Ae28,EA048,"Activity present, sex diff. unspecified",EA048-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +59534,Ae29,EA048,"Activity present, sex diff. unspecified",EA048-8,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +59535,Ae3,EA048,"Activity present, sex diff. unspecified",EA048-8,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +59536,Ae30,EA048,?,EA048-NA,,,,,, +59537,Ae31,EA048,?,EA048-NA,,,,,, +59538,Ae32,EA048,?,EA048-NA,,,,,, +59539,Ae33,EA048,?,EA048-NA,,,,,, +59540,Ae34,EA048,?,EA048-NA,,,,,, +59541,Ae35,EA048,?,EA048-NA,,,,,, +59542,Ae36,EA048,?,EA048-NA,,,,,, +59543,Ae37,EA048,?,EA048-NA,,,,,, +59544,Ae38,EA048,?,EA048-NA,,,,,, +59545,Ae39,EA048,Activity is absent,EA048-9,"But in some villages probably 'present, though sex participation unspecified' (EA048 code ""9"") and no specialization specified (EA059 code ""9"")",burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +59546,Ae4,EA048,Males alone,EA048-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +59547,Ae40,EA048,?,EA048-NA,,,,,, +59548,Ae41,EA048,?,EA048-NA,,,,,, +59549,Ae42,EA048,?,EA048-NA,,,,,, +59550,Ae43,EA048,?,EA048-NA,,,,,, +59551,Ae44,EA048,?,EA048-NA,,,,,, +59552,Ae45,EA048,?,EA048-NA,,,,,, +59553,Ae46,EA048,?,EA048-NA,,,,,, +59554,Ae47,EA048,?,EA048-NA,,,,,, +59555,Ae48,EA048,?,EA048-NA,,,,,, +59556,Ae49,EA048,?,EA048-NA,,,,,, +59557,Ae5,EA048,?,EA048-NA,,,,,, +59558,Ae50,EA048,"Activity present, sex diff. unspecified",EA048-8,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +59559,Ae51,EA048,?,EA048-NA,,,,,, +59560,Ae52,EA048,?,EA048-NA,,,,,, +59561,Ae53,EA048,?,EA048-NA,,,,,, +59562,Ae54,EA048,?,EA048-NA,,,,,, +59563,Ae55,EA048,?,EA048-NA,,,,,, +59564,Ae56,EA048,?,EA048-NA,,,,,, +59565,Ae57,EA048,?,EA048-NA,,,,,, +59566,Ae58,EA048,?,EA048-NA,,,,,, +59567,Ae59,EA048,?,EA048-NA,,,,,, +59568,Ae6,EA048,"Activity present, sex diff. unspecified",EA048-8,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +59569,Ae7,EA048,?,EA048-NA,,,,,, +59570,Ae8,EA048,Males alone,EA048-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +59571,Ae9,EA048,Activity is absent,EA048-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +59572,Af1,EA048,"Activity present, sex diff. unspecified",EA048-8,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +59573,Af10,EA048,Activity is absent,EA048-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +59574,Af11,EA048,?,EA048-NA,,,,,, +59575,Af12,EA048,?,EA048-NA,,,,,, +59576,Af13,EA048,?,EA048-NA,,,,,, +59577,Af14,EA048,Males alone,EA048-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +59578,Af15,EA048,Activity is absent,EA048-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +59579,Af16,EA048,?,EA048-NA,,,,,, +59580,Af17,EA048,?,EA048-NA,,,,,, +59581,Af18,EA048,?,EA048-NA,,,,,, +59582,Af19,EA048,"Activity present, sex diff. unspecified",EA048-8,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p72, +59583,Af2,EA048,?,EA048-NA,,,,,, +59584,Af20,EA048,?,EA048-NA,,,,,, +59585,Af21,EA048,?,EA048-NA,,,,,, +59586,Af22,EA048,Males alone,EA048-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +59587,Af23,EA048,?,EA048-NA,,,,,, +59588,Af24,EA048,?,EA048-NA,,,,,, +59589,Af25,EA048,Males alone,EA048-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +59590,Af26,EA048,?,EA048-NA,,,,,, +59591,Af27,EA048,?,EA048-NA,,,,,, +59592,Af28,EA048,"Activity present, sex diff. unspecified",EA048-8,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +59593,Af29,EA048,?,EA048-NA,,,,,, +59594,Af3,EA048,?,EA048-NA,,,,,, +59595,Af30,EA048,?,EA048-NA,,,,,, +59596,Af31,EA048,?,EA048-NA,,,,,, +59597,Af32,EA048,?,EA048-NA,,,,,, +59598,Af33,EA048,?,EA048-NA,,,,,, +59599,Af34,EA048,?,EA048-NA,,,,,, +59600,Af35,EA048,?,EA048-NA,,,,,, +59601,Af36,EA048,"Activity present, sex diff. unspecified",EA048-8,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +59602,Af37,EA048,?,EA048-NA,,,,,, +59603,Af38,EA048,?,EA048-NA,,,,,, +59604,Af39,EA048,?,EA048-NA,,,,,, +59605,Af4,EA048,Activity is absent,EA048-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +59606,Af40,EA048,?,EA048-NA,,,,,, +59607,Af41,EA048,?,EA048-NA,,,,,, +59608,Af42,EA048,?,EA048-NA,,,,,, +59609,Af43,EA048,?,EA048-NA,,,,,, +59610,Af44,EA048,?,EA048-NA,,,,,, +59611,Af45,EA048,?,EA048-NA,,,,,, +59612,Af46,EA048,?,EA048-NA,,,,,, +59613,Af47,EA048,?,EA048-NA,,,,,, +59614,Af48,EA048,?,EA048-NA,,,,,, +59615,Af49,EA048,?,EA048-NA,,,,,, +59616,Af5,EA048,"Activity present, sex diff. unspecified",EA048-8,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +59617,Af50,EA048,?,EA048-NA,,,,,, +59618,Af51,EA048,?,EA048-NA,,,,,, +59619,Af52,EA048,Males alone,EA048-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +59620,Af53,EA048,?,EA048-NA,,,,,, +59621,Af54,EA048,Activity is absent,EA048-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +59622,Af55,EA048,?,EA048-NA,,,,,, +59623,Af56,EA048,?,EA048-NA,Rude rafts only,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72,"Assume Murdock comment refers to Col 48, not Col 49 as stated in Gray (1999)" +59624,Af57,EA048,?,EA048-NA,,,,,, +59625,Af58,EA048,?,EA048-NA,,,,,, +59626,Af6,EA048,?,EA048-NA,,,,,, +59627,Af7,EA048,"Activity present, sex diff. unspecified",EA048-8,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +59628,Af8,EA048,"Activity present, sex diff. unspecified",EA048-8,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +59629,Af9,EA048,?,EA048-NA,,,,,, +59630,Ag1,EA048,Males alone,EA048-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +59631,Ag10,EA048,?,EA048-NA,,,,,, +59632,Ag11,EA048,?,EA048-NA,,,,,, +59633,Ag12,EA048,?,EA048-NA,,,,,, +59634,Ag13,EA048,?,EA048-NA,,,,,, +59635,Ag14,EA048,?,EA048-NA,,,,,, +59636,Ag15,EA048,?,EA048-NA,,,,,, +59637,Ag16,EA048,?,EA048-NA,,,,,, +59638,Ag17,EA048,?,EA048-NA,,,,,, +59639,Ag18,EA048,?,EA048-NA,,,,,, +59640,Ag19,EA048,?,EA048-NA,,,,,, +59641,Ag2,EA048,Activity is absent,EA048-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +59642,Ag20,EA048,?,EA048-NA,,,,,, +59643,Ag21,EA048,?,EA048-NA,,,,,, +59644,Ag22,EA048,"Activity present, sex diff. unspecified",EA048-8,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +59645,Ag23,EA048,?,EA048-NA,,,,,, +59646,Ag24,EA048,?,EA048-NA,,,,,, +59647,Ag25,EA048,?,EA048-NA,,,,,, +59648,Ag26,EA048,?,EA048-NA,,,,,, +59649,Ag27,EA048,?,EA048-NA,,,,,, +59650,Ag28,EA048,?,EA048-NA,,,,,, +59651,Ag29,EA048,?,EA048-NA,,,,,, +59652,Ag3,EA048,?,EA048-NA,,,,,, +59653,Ag30,EA048,?,EA048-NA,,,,,, +59654,Ag31,EA048,?,EA048-NA,,,,,, +59655,Ag32,EA048,?,EA048-NA,,,,,, +59656,Ag33,EA048,?,EA048-NA,,,,,, +59657,Ag34,EA048,?,EA048-NA,,,,,, +59658,Ag35,EA048,?,EA048-NA,,,,,, +59659,Ag36,EA048,?,EA048-NA,,,,,, +59660,Ag37,EA048,?,EA048-NA,,,,,, +59661,Ag38,EA048,?,EA048-NA,,,,,, +59662,Ag39,EA048,?,EA048-NA,,,,,, +59663,Ag4,EA048,Activity is absent,EA048-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +59664,Ag40,EA048,?,EA048-NA,,,,,, +59665,Ag41,EA048,?,EA048-NA,,,,,, +59666,Ag42,EA048,?,EA048-NA,,,,,, +59667,Ag43,EA048,?,EA048-NA,,,,,, +59668,Ag44,EA048,?,EA048-NA,,,,,, +59669,Ag45,EA048,?,EA048-NA,,,,,, +59670,Ag46,EA048,?,EA048-NA,,,,,, +59671,Ag47,EA048,"Activity present, sex diff. unspecified",EA048-8,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +59672,Ag48,EA048,?,EA048-NA,,,,,, +59673,Ag49,EA048,?,EA048-NA,,,,,, +59674,Ag5,EA048,?,EA048-NA,,,,,, +59675,Ag50,EA048,?,EA048-NA,,,,,, +59676,Ag51,EA048,?,EA048-NA,,,,,, +59677,Ag52,EA048,?,EA048-NA,,,,,, +59678,Ag53,EA048,?,EA048-NA,,,,,, +59679,Ag54,EA048,Activity is absent,EA048-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +59680,Ag6,EA048,?,EA048-NA,,,,,, +59681,Ag7,EA048,?,EA048-NA,,,,,, +59682,Ag8,EA048,Activity is absent,EA048-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +59683,Ag9,EA048,Males alone,EA048-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +59684,Ah1,EA048,Activity is absent,EA048-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59685,Ah10,EA048,?,EA048-NA,,,,,, +59686,Ah11,EA048,?,EA048-NA,,,,,, +59687,Ah12,EA048,?,EA048-NA,,,,,, +59688,Ah13,EA048,?,EA048-NA,,,,,, +59689,Ah14,EA048,?,EA048-NA,,,,,, +59690,Ah15,EA048,Males alone,EA048-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +59691,Ah16,EA048,?,EA048-NA,,,,,, +59692,Ah17,EA048,?,EA048-NA,,,,,, +59693,Ah18,EA048,?,EA048-NA,,,,,, +59694,Ah19,EA048,?,EA048-NA,,,,,, +59695,Ah2,EA048,?,EA048-NA,,,,,, +59696,Ah20,EA048,?,EA048-NA,,,,,, +59697,Ah21,EA048,?,EA048-NA,,,,,, +59698,Ah22,EA048,?,EA048-NA,,,,,, +59699,Ah23,EA048,?,EA048-NA,,,,,, +59700,Ah24,EA048,?,EA048-NA,,,,,, +59701,Ah25,EA048,?,EA048-NA,,,,,, +59702,Ah26,EA048,?,EA048-NA,,,,,, +59703,Ah27,EA048,?,EA048-NA,,,,,, +59704,Ah28,EA048,?,EA048-NA,,,,,, +59705,Ah29,EA048,?,EA048-NA,,,,,, +59706,Ah3,EA048,Activity is absent,EA048-9,Crude rafts only,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +59707,Ah30,EA048,?,EA048-NA,,,,,, +59708,Ah31,EA048,?,EA048-NA,,,,,, +59709,Ah32,EA048,?,EA048-NA,,,,,, +59710,Ah33,EA048,?,EA048-NA,,,,,, +59711,Ah34,EA048,?,EA048-NA,,,,,, +59712,Ah35,EA048,?,EA048-NA,,,,,, +59713,Ah36,EA048,?,EA048-NA,,,,,, +59714,Ah37,EA048,?,EA048-NA,,,,,, +59715,Ah38,EA048,?,EA048-NA,,,,,, +59716,Ah39,EA048,Activity is absent,EA048-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +59717,Ah4,EA048,?,EA048-NA,,,,,, +59718,Ah5,EA048,?,EA048-NA,,,,,, +59719,Ah6,EA048,?,EA048-NA,,,,,, +59720,Ah7,EA048,Activity is absent,EA048-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +59721,Ah8,EA048,?,EA048-NA,,,,,, +59722,Ah9,EA048,Activity is absent,EA048-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +59723,Ai1,EA048,?,EA048-NA,,,,,, +59724,Ai10,EA048,Activity is absent,EA048-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +59725,Ai11,EA048,"Activity present, sex diff. unspecified",EA048-8,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +59726,Ai12,EA048,?,EA048-NA,,,,,, +59727,Ai13,EA048,?,EA048-NA,,,,,, +59728,Ai14,EA048,"Activity present, sex diff. unspecified",EA048-8,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +59729,Ai15,EA048,"Activity present, sex diff. unspecified",EA048-8,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +59730,Ai16,EA048,?,EA048-NA,,,,,, +59731,Ai17,EA048,?,EA048-NA,,,,,, +59732,Ai18,EA048,"Activity present, sex diff. unspecified",EA048-8,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +59733,Ai19,EA048,?,EA048-NA,,,,,, +59734,Ai2,EA048,?,EA048-NA,,,,,, +59735,Ai20,EA048,?,EA048-NA,,,,,, +59736,Ai21,EA048,?,EA048-NA,,,,,, +59737,Ai22,EA048,?,EA048-NA,,,,,, +59738,Ai23,EA048,?,EA048-NA,,,,,, +59739,Ai24,EA048,?,EA048-NA,,,,,, +59740,Ai25,EA048,?,EA048-NA,,,,,, +59741,Ai26,EA048,"Activity present, sex diff. unspecified",EA048-8,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +59742,Ai27,EA048,?,EA048-NA,,,,,, +59743,Ai28,EA048,?,EA048-NA,,,,,, +59744,Ai29,EA048,?,EA048-NA,,,,,, +59745,Ai3,EA048,Males alone,EA048-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +59746,Ai30,EA048,"Activity present, sex diff. unspecified",EA048-8,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +59747,Ai31,EA048,?,EA048-NA,,,,,, +59748,Ai32,EA048,?,EA048-NA,,,,,, +59749,Ai33,EA048,Males alone,EA048-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p76, +59750,Ai34,EA048,?,EA048-NA,,,,,, +59751,Ai35,EA048,?,EA048-NA,,,,,, +59752,Ai36,EA048,?,EA048-NA,,,,,, +59753,Ai37,EA048,?,EA048-NA,,,,,, +59754,Ai38,EA048,Activity is absent,EA048-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +59755,Ai39,EA048,Activity is absent,EA048-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +59756,Ai4,EA048,?,EA048-NA,,,,,, +59757,Ai40,EA048,Activity is absent,EA048-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +59758,Ai41,EA048,Activity is absent,EA048-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +59759,Ai42,EA048,Activity is absent,EA048-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +59760,Ai43,EA048,Activity is absent,EA048-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +59761,Ai44,EA048,"Activity present, sex diff. unspecified",EA048-8,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p76, +59762,Ai45,EA048,?,EA048-NA,,,,,, +59763,Ai46,EA048,?,EA048-NA,,,,,, +59764,Ai47,EA048,?,EA048-NA,,,,,, +59765,Ai5,EA048,Activity is absent,EA048-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +59766,Ai6,EA048,Males alone,EA048-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +59767,Ai7,EA048,?,EA048-NA,,,,,, +59768,Ai8,EA048,Activity is absent,EA048-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +59769,Ai9,EA048,Males alone,EA048-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +59770,Aj1,EA048,?,EA048-NA,,,,,, +59771,Aj10,EA048,?,EA048-NA,,,,,, +59772,Aj11,EA048,?,EA048-NA,,,,,, +59773,Aj12,EA048,?,EA048-NA,,,,,, +59774,Aj13,EA048,?,EA048-NA,,,,,, +59775,Aj14,EA048,?,EA048-NA,,,,,, +59776,Aj15,EA048,?,EA048-NA,,,,,, +59777,Aj16,EA048,"Activity present, sex diff. unspecified",EA048-8,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +59778,Aj17,EA048,"Activity present, sex diff. unspecified",EA048-8,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +59779,Aj18,EA048,?,EA048-NA,,,,,, +59780,Aj19,EA048,?,EA048-NA,,,,,, +59781,Aj2,EA048,Activity is absent,EA048-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +59782,Aj20,EA048,?,EA048-NA,,,,,, +59783,Aj21,EA048,?,EA048-NA,,,,,, +59784,Aj22,EA048,?,EA048-NA,,,,,, +59785,Aj23,EA048,?,EA048-NA,,,,,, +59786,Aj24,EA048,?,EA048-NA,,,,,, +59787,Aj25,EA048,?,EA048-NA,,,,,, +59788,Aj26,EA048,?,EA048-NA,,,,,, +59789,Aj27,EA048,?,EA048-NA,,,,,, +59790,Aj28,EA048,?,EA048-NA,,,,,, +59791,Aj29,EA048,?,EA048-NA,,,,,, +59792,Aj3,EA048,Activity is absent,EA048-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +59793,Aj30,EA048,?,EA048-NA,,,,,, +59794,Aj31,EA048,?,EA048-NA,,,,,, +59795,Aj4,EA048,?,EA048-NA,,,,,, +59796,Aj5,EA048,Activity is absent,EA048-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +59797,Aj6,EA048,Activity is absent,EA048-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +59798,Aj7,EA048,Activity is absent,EA048-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +59799,Aj8,EA048,?,EA048-NA,,,,,, +59800,Aj9,EA048,Activity is absent,EA048-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +59801,Ca1,EA048,Activity is absent,EA048-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +59802,Ca10,EA048,Activity is absent,EA048-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +59803,Ca11,EA048,?,EA048-NA,,,,,, +59804,Ca12,EA048,?,EA048-NA,,,,,, +59805,Ca13,EA048,?,EA048-NA,,,,,, +59806,Ca14,EA048,Activity is absent,EA048-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +59807,Ca15,EA048,?,EA048-NA,,,,,, +59808,Ca16,EA048,?,EA048-NA,,,,,, +59809,Ca17,EA048,?,EA048-NA,,,,,, +59810,Ca18,EA048,?,EA048-NA,,,,,, +59811,Ca19,EA048,Activity is absent,EA048-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +59812,Ca2,EA048,Activity is absent,EA048-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +59813,Ca20,EA048,?,EA048-NA,,,,,, +59814,Ca21,EA048,Activity is absent,EA048-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +59815,Ca22,EA048,?,EA048-NA,,,,,, +59816,Ca23,EA048,Activity is absent,EA048-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +59817,Ca24,EA048,Activity is absent,EA048-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +59818,Ca25,EA048,?,EA048-NA,,,,,, +59819,Ca26,EA048,?,EA048-NA,,,,,, +59820,Ca27,EA048,?,EA048-NA,,,,,, +59821,Ca28,EA048,?,EA048-NA,,,,,, +59822,Ca29,EA048,?,EA048-NA,,,,,, +59823,Ca3,EA048,?,EA048-NA,,,,,, +59824,Ca30,EA048,?,EA048-NA,,,,,, +59825,Ca31,EA048,?,EA048-NA,,,,,, +59826,Ca32,EA048,?,EA048-NA,,,,,, +59827,Ca33,EA048,?,EA048-NA,,,,,, +59828,Ca34,EA048,?,EA048-NA,,,,,, +59829,Ca35,EA048,?,EA048-NA,,,,,, +59830,Ca36,EA048,?,EA048-NA,,,,,, +59831,Ca37,EA048,?,EA048-NA,,,,,, +59832,Ca38,EA048,?,EA048-NA,,,,,, +59833,Ca39,EA048,?,EA048-NA,,,,,, +59834,Ca4,EA048,?,EA048-NA,,,,,, +59835,Ca40,EA048,?,EA048-NA,,,,,, +59836,Ca41,EA048,?,EA048-NA,,,,,, +59837,Ca42,EA048,?,EA048-NA,,,,,, +59838,Ca43,EA048,?,EA048-NA,,,,,, +59839,Ca5,EA048,?,EA048-NA,,,,,, +59840,Ca6,EA048,?,EA048-NA,,,,,, +59841,Ca7,EA048,?,EA048-NA,,,,,, +59842,Ca8,EA048,?,EA048-NA,,,,,, +59843,Ca9,EA048,?,EA048-NA,,,,,, +59844,Cb1,EA048,?,EA048-NA,,,,,, +59845,Cb10,EA048,?,EA048-NA,,,,,, +59846,Cb11,EA048,?,EA048-NA,,,,,, +59847,Cb12,EA048,?,EA048-NA,,,,,, +59848,Cb13,EA048,?,EA048-NA,,,,,, +59849,Cb14,EA048,?,EA048-NA,,,,,, +59850,Cb15,EA048,?,EA048-NA,,,,,, +59851,Cb16,EA048,?,EA048-NA,,,,,, +59852,Cb17,EA048,?,EA048-NA,,,,,, +59853,Cb18,EA048,?,EA048-NA,,,,,, +59854,Cb19,EA048,?,EA048-NA,,,,,, +59855,Cb2,EA048,Activity is absent,EA048-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +59856,Cb20,EA048,?,EA048-NA,,,,,, +59857,Cb21,EA048,?,EA048-NA,,,,,, +59858,Cb22,EA048,?,EA048-NA,,,,,, +59859,Cb23,EA048,?,EA048-NA,,,,,, +59860,Cb24,EA048,?,EA048-NA,,,,,, +59861,Cb25,EA048,?,EA048-NA,,,,,, +59862,Cb26,EA048,?,EA048-NA,,,,,, +59863,Cb27,EA048,?,EA048-NA,,,,,, +59864,Cb28,EA048,?,EA048-NA,,,,,, +59865,Cb29,EA048,?,EA048-NA,,,,,, +59866,Cb3,EA048,Males alone,EA048-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +59867,Cb4,EA048,?,EA048-NA,,,,,, +59868,Cb5,EA048,Males alone,EA048-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p80, +59869,Cb6,EA048,?,EA048-NA,,,,,, +59870,Cb7,EA048,?,EA048-NA,,,,,, +59871,Cb8,EA048,?,EA048-NA,,,,,, +59872,Cb9,EA048,?,EA048-NA,,,,,, +59873,Cc1,EA048,Activity is absent,EA048-9,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +59874,Cc10,EA048,Activity is absent,EA048-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +59875,Cc11,EA048,?,EA048-NA,,,,,, +59876,Cc12,EA048,?,EA048-NA,,,,,, +59877,Cc13,EA048,?,EA048-NA,,,,,, +59878,Cc14,EA048,Activity is absent,EA048-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +59879,Cc15,EA048,?,EA048-NA,,,,,, +59880,Cc16,EA048,Activity is absent,EA048-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +59881,Cc17,EA048,Activity is absent,EA048-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +59882,Cc18,EA048,?,EA048-NA,,,,,, +59883,Cc19,EA048,?,EA048-NA,,,,,, +59884,Cc2,EA048,Activity is absent,EA048-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +59885,Cc20,EA048,Activity is absent,EA048-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +59886,Cc3,EA048,Activity is absent,EA048-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +59887,Cc4,EA048,?,EA048-NA,,,,,, +59888,Cc5,EA048,Activity is absent,EA048-9,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +59889,Cc6,EA048,?,EA048-NA,,,,,, +59890,Cc7,EA048,?,EA048-NA,,,,,, +59891,Cc8,EA048,?,EA048-NA,,,,,, +59892,Cc9,EA048,Activity is absent,EA048-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +59893,Cd1,EA048,"Activity present, sex diff. unspecified",EA048-8,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +59894,Cd10,EA048,?,EA048-NA,,,,,, +59895,Cd11,EA048,Activity is absent,EA048-9,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p84, +59896,Cd12,EA048,?,EA048-NA,,,,,, +59897,Cd13,EA048,?,EA048-NA,,,,,, +59898,Cd14,EA048,?,EA048-NA,,,,,, +59899,Cd15,EA048,?,EA048-NA,,,,,, +59900,Cd16,EA048,?,EA048-NA,,,,,, +59901,Cd17,EA048,?,EA048-NA,,,,,, +59902,Cd18,EA048,?,EA048-NA,,,,,, +59903,Cd19,EA048,?,EA048-NA,,,,,, +59904,Cd2,EA048,"Activity present, sex diff. unspecified",EA048-8,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +59905,Cd20,EA048,?,EA048-NA,,,,,, +59906,Cd21,EA048,?,EA048-NA,,,,,, +59907,Cd3,EA048,Males alone,EA048-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +59908,Cd4,EA048,"Activity present, sex diff. unspecified",EA048-8,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +59909,Cd5,EA048,Activity is absent,EA048-9,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +59910,Cd6,EA048,"Activity present, sex diff. unspecified",EA048-8,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +59911,Cd7,EA048,?,EA048-NA,,,,,, +59912,Cd8,EA048,?,EA048-NA,,,,,, +59913,Cd9,EA048,?,EA048-NA,,,,,, +59914,Ce1,EA048,"Activity present, sex diff. unspecified",EA048-8,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +59915,Ce2,EA048,?,EA048-NA,,,,,, +59916,Ce3,EA048,Males alone,EA048-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +59917,Ce4,EA048,?,EA048-NA,,,,,, +59918,Ce5,EA048,Males alone,EA048-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +59919,Ce6,EA048,"Activity present, sex diff. unspecified",EA048-8,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +59920,Ce7,EA048,"Activity present, sex diff. unspecified",EA048-8,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +59921,Ce8,EA048,Activity is absent,EA048-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +59922,Cf1,EA048,Males alone,EA048-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +59923,Cf2,EA048,?,EA048-NA,,,,,, +59924,Cf3,EA048,Males alone,EA048-1,,munch1945,,1930,EthnographicAtlas_1967_p84, +59925,Cf4,EA048,?,EA048-NA,,,,,, +59926,Cf5,EA048,"Activity present, sex diff. unspecified",EA048-8,,miner1939,,1930,EthnographicAtlas_1967_p84, +59927,Cg1,EA048,Sex irrelevant,EA048-7,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +59928,Cg2,EA048,Males alone,EA048-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +59929,Cg3,EA048,?,EA048-NA,,,,,, +59930,Cg4,EA048,Activity is absent,EA048-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +59931,Cg5,EA048,?,EA048-NA,,,,,, +59932,Ch1,EA048,"Activity present, sex diff. unspecified",EA048-8,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +59933,Ch10,EA048,?,EA048-NA,,,,,, +59934,Ch11,EA048,Activity is absent,EA048-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +59935,Ch2,EA048,?,EA048-NA,,,,,, +59936,Ch3,EA048,"Activity present, sex diff. unspecified",EA048-8,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +59937,Ch4,EA048,?,EA048-NA,,,,,, +59938,Ch5,EA048,"Activity present, sex diff. unspecified",EA048-8,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +59939,Ch6,EA048,"Activity present, sex diff. unspecified",EA048-8,,ember1954,,1910,EthnographicAtlas_1967_p84, +59940,Ch7,EA048,"Activity present, sex diff. unspecified",EA048-8,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +59941,Ch8,EA048,?,EA048-NA,,,,,, +59942,Ch9,EA048,"Activity present, sex diff. unspecified",EA048-8,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +59943,Ci1,EA048,Activity is absent,EA048-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +59944,Ci10,EA048,?,EA048-NA,,,,,, +59945,Ci11,EA048,Activity is absent,EA048-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +59946,Ci12,EA048,Activity is absent,EA048-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +59947,Ci2,EA048,?,EA048-NA,,,,,, +59948,Ci3,EA048,?,EA048-NA,,,,,, +59949,Ci4,EA048,?,EA048-NA,,,,,, +59950,Ci5,EA048,Activity is absent,EA048-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +59951,Ci6,EA048,?,EA048-NA,,,,,, +59952,Ci7,EA048,?,EA048-NA,,,,,, +59953,Ci8,EA048,?,EA048-NA,,,,,, +59954,Ci9,EA048,?,EA048-NA,,,,,, +59955,Cj1,EA048,?,EA048-NA,,,,,, +59956,Cj10,EA048,Males alone,EA048-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +59957,Cj2,EA048,Activity is absent,EA048-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +59958,Cj3,EA048,Males alone,EA048-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +59959,Cj4,EA048,"Activity present, sex diff. unspecified",EA048-8,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +59960,Cj5,EA048,Activity is absent,EA048-9,But boats are made on the coast,dickson1949,,1930,EthnographicAtlas_1967_p88, +59961,Cj6,EA048,?,EA048-NA,,,,,, +59962,Cj7,EA048,"Activity present, sex diff. unspecified",EA048-8,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +59963,Cj8,EA048,Activity is absent,EA048-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +59964,Cj9,EA048,?,EA048-NA,,,,,, +59965,Ea1,EA048,?,EA048-NA,,,,,, +59966,Ea10,EA048,Activity is absent,EA048-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +59967,Ea11,EA048,?,EA048-NA,,,,,, +59968,Ea12,EA048,?,EA048-NA,,,,,, +59969,Ea13,EA048,Activity is absent,EA048-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +59970,Ea2,EA048,?,EA048-NA,,,,,, +59971,Ea3,EA048,?,EA048-NA,,,,,, +59972,Ea4,EA048,?,EA048-NA,,,,,, +59973,Ea5,EA048,Activity is absent,EA048-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +59974,Ea6,EA048,Activity is absent,EA048-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +59975,Ea7,EA048,Activity is absent,EA048-9,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +59976,Ea8,EA048,Activity is absent,EA048-9,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +59977,Ea9,EA048,?,EA048-NA,,,,,, +59978,Eb1,EA048,Activity is absent,EA048-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +59979,Eb2,EA048,Activity is absent,EA048-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +59980,Eb3,EA048,Activity is absent,EA048-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +59981,Eb4,EA048,?,EA048-NA,,,,,, +59982,Eb5,EA048,?,EA048-NA,,,,,, +59983,Eb6,EA048,?,EA048-NA,,,,,, +59984,Eb7,EA048,Activity is absent,EA048-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +59985,Eb8,EA048,?,EA048-NA,,,,,, +59986,Ec1,EA048,"Activity present, sex diff. unspecified",EA048-8,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +59987,Ec10,EA048,"Activity present, sex diff. unspecified",EA048-8,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +59988,Ec11,EA048,"Activity present, sex diff. unspecified",EA048-8,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +59989,Ec2,EA048,Males alone,EA048-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +59990,Ec3,EA048,"Activity present, sex diff. unspecified",EA048-8,Boats are largely confined to the Maritime Chukchee,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +59991,Ec4,EA048,"Activity present, sex diff. unspecified",EA048-8,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +59992,Ec5,EA048,Males alone,EA048-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +59993,Ec6,EA048,?,EA048-NA,,,,,, +59994,Ec7,EA048,Males alone,EA048-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +59995,Ec8,EA048,?,EA048-NA,,,,,, +59996,Ec9,EA048,?,EA048-NA,,,,,, +59997,Ed1,EA048,"Activity present, sex diff. unspecified",EA048-8,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +59998,Ed10,EA048,?,EA048-NA,,,,,, +59999,Ed13,EA048,?,EA048-NA,,,,,, +60000,Ed14,EA048,?,EA048-NA,,,,,, +60001,Ed15a,EA048,?,EA048-NA,,,,,, +60002,Ed15b,EA048,"Activity present, sex diff. unspecified",EA048-8,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +60003,Ed16,EA048,?,EA048-NA,,,,,, +60004,Ed2,EA048,?,EA048-NA,,,,,, +60005,Ed3,EA048,?,EA048-NA,,,,,, +60006,Ed4,EA048,?,EA048-NA,,,,,, +60007,Ed5,EA048,Activity is absent,EA048-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60008,Ed6,EA048,?,EA048-NA,,,,,, +60009,Ed7,EA048,Males alone,EA048-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +60010,Ed8,EA048,Males alone,EA048-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +60011,Ed9,EA048,Activity is absent,EA048-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +60012,Ee1,EA048,Activity is absent,EA048-9,Rafts only,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +60013,Ee2,EA048,Activity is absent,EA048-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +60014,Ee3,EA048,Activity is absent,EA048-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +60015,Ee4,EA048,"Activity present, sex diff. unspecified",EA048-8,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +60016,Ee5,EA048,Activity is absent,EA048-9,Rafts only,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +60017,Ee6,EA048,Activity is absent,EA048-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +60018,Ee7,EA048,?,EA048-NA,,,,,, +60019,Ee8,EA048,"Activity present, sex diff. unspecified",EA048-8,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +60020,Ef1,EA048,?,EA048-NA,,,,,, +60021,Ef10,EA048,?,EA048-NA,,,,,, +60022,Ef11,EA048,Activity is absent,EA048-9,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +60023,Ef2,EA048,Males alone,EA048-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +60024,Ef3,EA048,?,EA048-NA,,,,,, +60025,Ef4,EA048,?,EA048-NA,,,,,, +60026,Ef5,EA048,"Activity present, sex diff. unspecified",EA048-8,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +60027,Ef6,EA048,?,EA048-NA,,,,,, +60028,Ef7,EA048,?,EA048-NA,,,,,, +60029,Ef8,EA048,Males alone,EA048-1,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +60030,Ef9,EA048,?,EA048-NA,,,,,, +60031,Eg1,EA048,Activity is absent,EA048-9,Rafts only,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60032,Eg10,EA048,?,EA048-NA,,,,,, +60033,Eg11,EA048,?,EA048-NA,,,,,, +60034,Eg12,EA048,?,EA048-NA,,,,,, +60035,Eg13,EA048,Activity is absent,EA048-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60036,Eg14,EA048,Males alone,EA048-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +60037,Eg2,EA048,?,EA048-NA,,,,,, +60038,Eg3,EA048,Males alone,EA048-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +60039,Eg4,EA048,Activity is absent,EA048-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +60040,Eg5,EA048,Activity is absent,EA048-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +60041,Eg6,EA048,?,EA048-NA,,,,,, +60042,Eg7,EA048,?,EA048-NA,,,,,, +60043,Eg8,EA048,Activity is absent,EA048-9,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +60044,Eg9,EA048,?,EA048-NA,,,,,, +60045,Eh1,EA048,Males alone,EA048-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +60046,Eh10,EA048,?,EA048-NA,,,,,, +60047,Eh2,EA048,?,EA048-NA,,,,,, +60048,Eh3,EA048,Males alone,EA048-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +60049,Eh4,EA048,Activity is absent,EA048-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60050,Eh5,EA048,Males alone,EA048-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +60051,Eh6,EA048,"Activity present, sex diff. unspecified",EA048-8,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p92, +60052,Eh7,EA048,Activity is absent,EA048-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +60053,Eh8,EA048,"Activity present, sex diff. unspecified",EA048-8,"But McLeod reports activity is absent or unimportant (EA048 code ""9"", EA059 code ""10"")",faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +60054,Eh9,EA048,?,EA048-NA,,,,,, +60055,Ei1,EA048,Activity is absent,EA048-9,"But in one limited region 'males alone' (EA048 code ""1""), with no specialization specified (EA059 code ""9"")",burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60056,Ei10,EA048,?,EA048-NA,,,,,, +60057,Ei11,EA048,Activity is absent,EA048-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +60058,Ei12,EA048,?,EA048-NA,,,,,, +60059,Ei13,EA048,Activity is absent,EA048-9,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +60060,Ei14,EA048,Activity is absent,EA048-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +60061,Ei15,EA048,?,EA048-NA,,,,,, +60062,Ei16,EA048,Activity is absent,EA048-9,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +60063,Ei17,EA048,?,EA048-NA,,,,,, +60064,Ei18,EA048,?,EA048-NA,,,,,, +60065,Ei19,EA048,?,EA048-NA,,,,,, +60066,Ei2,EA048,?,EA048-NA,,,,,, +60067,Ei20,EA048,?,EA048-NA,,,,,, +60068,Ei3,EA048,Males alone,EA048-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +60069,Ei4,EA048,?,EA048-NA,,,,,, +60070,Ei5,EA048,?,EA048-NA,,,,,, +60071,Ei6,EA048,?,EA048-NA,,,,,, +60072,Ei7,EA048,?,EA048-NA,,,,,, +60073,Ei8,EA048,"Activity present, sex diff. unspecified",EA048-8,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +60074,Ei9,EA048,?,EA048-NA,,,,,, +60075,Ej1,EA048,?,EA048-NA,,,,,, +60076,Ej10,EA048,Activity is absent,EA048-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +60077,Ej11,EA048,?,EA048-NA,,,,,, +60078,Ej12,EA048,?,EA048-NA,,,,,, +60079,Ej13,EA048,?,EA048-NA,,,,,, +60080,Ej14,EA048,Activity is absent,EA048-9,Bamboo rafts only,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60081,Ej15,EA048,Males alone,EA048-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +60082,Ej16,EA048,Activity is absent,EA048-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +60083,Ej2,EA048,?,EA048-NA,,,,,, +60084,Ej3,EA048,Activity is absent,EA048-9,Bamboo rafts only,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +60085,Ej4,EA048,Males alone,EA048-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +60086,Ej5,EA048,?,EA048-NA,,,,,, +60087,Ej6,EA048,Males alone,EA048-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +60088,Ej7,EA048,?,EA048-NA,,,,,, +60089,Ej8,EA048,Males alone,EA048-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +60090,Ej9,EA048,Males alone,EA048-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +60091,Ia1,EA048,?,EA048-NA,,,,,, +60092,Ia10,EA048,?,EA048-NA,,,,,, +60093,Ia11,EA048,?,EA048-NA,,,,,, +60094,Ia12,EA048,Males alone,EA048-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +60095,Ia13,EA048,Males alone,EA048-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +60096,Ia14,EA048,"Activity present, sex diff. unspecified",EA048-8,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +60097,Ia15,EA048,?,EA048-NA,,,,,, +60098,Ia16,EA048,Activity is absent,EA048-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +60099,Ia17,EA048,?,EA048-NA,,,,,, +60100,Ia18,EA048,?,EA048-NA,,,,,, +60101,Ia2,EA048,Activity is absent,EA048-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +60102,Ia3,EA048,?,EA048-NA,,,,,, +60103,Ia4,EA048,?,EA048-NA,,,,,, +60104,Ia5,EA048,Activity is absent,EA048-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +60105,Ia6,EA048,?,EA048-NA,,,,,, +60106,Ia7,EA048,?,EA048-NA,,,,,, +60107,Ia8,EA048,?,EA048-NA,,,,,, +60108,Ia9,EA048,?,EA048-NA,,,,,, +60109,Ib1,EA048,Males alone,EA048-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60110,Ib2,EA048,Activity is absent,EA048-9,"But in coastal towns 'males alone' (EA048 code ""1""), with craft specialization (EA059 code ""3"")",dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60111,Ib3,EA048,Activity is absent,EA048-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +60112,Ib4,EA048,"Activity present, sex diff. unspecified",EA048-8,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +60113,Ib5,EA048,"Activity present, sex diff. unspecified",EA048-8,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +60114,Ib6,EA048,"Activity present, sex diff. unspecified",EA048-8,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +60115,Ib7,EA048,"Activity present, sex diff. unspecified",EA048-8,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +60116,Ib8,EA048,Activity is absent,EA048-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +60117,Ib9,EA048,?,EA048-NA,,,,,, +60118,Ic1,EA048,"Activity present, sex diff. unspecified",EA048-8,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60119,Ic10,EA048,"Activity present, sex diff. unspecified",EA048-8,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +60120,Ic11,EA048,"Activity present, sex diff. unspecified",EA048-8,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60121,Ic12,EA048,?,EA048-NA,,,,,, +60122,Ic13,EA048,?,EA048-NA,,,,,, +60123,Ic2,EA048,?,EA048-NA,,,,,, +60124,Ic3,EA048,"Activity present, sex diff. unspecified",EA048-8,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +60125,Ic4,EA048,?,EA048-NA,,,,,, +60126,Ic5,EA048,"Activity present, sex diff. unspecified",EA048-8,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +60127,Ic6,EA048,"Activity present, sex diff. unspecified",EA048-8,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +60128,Ic7,EA048,"Activity present, sex diff. unspecified",EA048-8,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +60129,Ic8,EA048,"Activity present, sex diff. unspecified",EA048-8,,pleyte1893,,1890,EthnographicAtlas_1967_p96, +60130,Ic9,EA048,"Activity present, sex diff. unspecified",EA048-8,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p96, +60131,Id1,EA048,Activity is absent,EA048-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +60132,Id10,EA048,Activity is absent,EA048-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +60133,Id11,EA048,Males alone,EA048-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +60134,Id12,EA048,?,EA048-NA,,,,,, +60135,Id13,EA048,Males alone,EA048-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +60136,Id2,EA048,Males alone,EA048-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +60137,Id3,EA048,Males alone,EA048-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +60138,Id4,EA048,?,EA048-NA,,,,,, +60139,Id5,EA048,?,EA048-NA,,,,,, +60140,Id6,EA048,?,EA048-NA,,,,,, +60141,Id7,EA048,?,EA048-NA,,,,,, +60142,Id8,EA048,Activity is absent,EA048-9,Rafts only,roth1890,,1830,EthnographicAtlas_1967_p96, +60143,Id9,EA048,?,EA048-NA,,,,,, +60144,Ie1,EA048,Males alone,EA048-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60145,Ie10,EA048,Males alone,EA048-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +60146,Ie11,EA048,Activity is absent,EA048-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +60147,Ie12,EA048,Males alone,EA048-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60148,Ie13,EA048,"Activity present, sex diff. unspecified",EA048-8,,landtman1927,,1920,EthnographicAtlas_1967_p96, +60149,Ie14,EA048,"Activity present, sex diff. unspecified",EA048-8,,haddon1908,,1900,EthnographicAtlas_1967_p96, +60150,Ie15,EA048,?,EA048-NA,,,,,, +60151,Ie16,EA048,?,EA048-NA,,,,,, +60152,Ie17,EA048,Activity is absent,EA048-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +60153,Ie18,EA048,Males alone,EA048-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +60154,Ie19,EA048,Males alone,EA048-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +60155,Ie2,EA048,Activity is absent,EA048-9,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +60156,Ie20,EA048,"Activity present, sex diff. unspecified",EA048-8,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +60157,Ie21,EA048,Males alone,EA048-1,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +60158,Ie22,EA048,Activity is absent,EA048-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +60159,Ie23,EA048,"Activity present, sex diff. unspecified",EA048-8,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +60160,Ie24,EA048,?,EA048-NA,,,,,, +60161,Ie25,EA048,Activity is absent,EA048-9,,williamson1912,,1920,EthnographicAtlas_1967_p96, +60162,Ie26,EA048,Activity is absent,EA048-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +60163,Ie27,EA048,?,EA048-NA,,,,,, +60164,Ie28,EA048,Males alone,EA048-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +60165,Ie29,EA048,Males alone,EA048-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60166,Ie3,EA048,?,EA048-NA,,,,,, +60167,Ie30,EA048,"Activity present, sex diff. unspecified",EA048-8,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +60168,Ie31,EA048,Activity is absent,EA048-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +60169,Ie32,EA048,Males alone,EA048-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +60170,Ie33,EA048,?,EA048-NA,,,,,, +60171,Ie34,EA048,?,EA048-NA,,,,,, +60172,Ie35,EA048,Males alone,EA048-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +60173,Ie36,EA048,?,EA048-NA,,,,,, +60174,Ie37,EA048,?,EA048-NA,,,,,, +60175,Ie38,EA048,Activity is absent,EA048-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +60176,Ie39,EA048,Males alone,EA048-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +60177,Ie4,EA048,Males alone,EA048-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60178,Ie5,EA048,Males alone,EA048-1,,williams1936,,1930,EthnographicAtlas_1967_p96, +60179,Ie6,EA048,?,EA048-NA,,,,,, +60180,Ie7,EA048,Activity is absent,EA048-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +60181,Ie8,EA048,Males alone,EA048-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +60182,Ie9,EA048,Males alone,EA048-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +60183,If1,EA048,Males alone,EA048-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60184,If10,EA048,?,EA048-NA,,,,,, +60185,If11,EA048,Males alone,EA048-1,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +60186,If12,EA048,"Activity present, sex diff. unspecified",EA048-8,,mason1954,,1940,EthnographicAtlas_1967_p100, +60187,If13,EA048,"Activity present, sex diff. unspecified",EA048-8,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +60188,If14,EA048,Males alone,EA048-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +60189,If15,EA048,Males alone,EA048-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +60190,If16,EA048,Males alone,EA048-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +60191,If17,EA048,Males alone,EA048-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +60192,If2,EA048,Males alone,EA048-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +60193,If3,EA048,Males alone,EA048-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +60194,If4,EA048,Males alone,EA048-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +60195,If5,EA048,Males alone,EA048-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +60196,If6,EA048,Males alone,EA048-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +60197,If7,EA048,Males alone,EA048-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +60198,If8,EA048,Males alone,EA048-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +60199,If9,EA048,Males alone,EA048-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +60200,Ig1,EA048,Activity is absent,EA048-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +60201,Ig10,EA048,Activity is absent,EA048-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +60202,Ig11,EA048,Males alone,EA048-1,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +60203,Ig12,EA048,?,EA048-NA,,,,,, +60204,Ig13,EA048,Males alone,EA048-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +60205,Ig14,EA048,Males alone,EA048-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +60206,Ig15,EA048,?,EA048-NA,,,,,, +60207,Ig16,EA048,?,EA048-NA,,,,,, +60208,Ig17,EA048,?,EA048-NA,,,,,, +60209,Ig18,EA048,?,EA048-NA,,,,,, +60210,Ig19,EA048,?,EA048-NA,,,,,, +60211,Ig2,EA048,Males alone,EA048-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +60212,Ig20,EA048,Males alone,EA048-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +60213,Ig21,EA048,Males alone,EA048-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +60214,Ig3,EA048,Males alone,EA048-1,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +60215,Ig4,EA048,Males alone,EA048-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +60216,Ig5,EA048,"Activity present, sex diff. unspecified",EA048-8,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +60217,Ig6,EA048,Males alone,EA048-1,,ivens1927,,1900,EthnographicAtlas_1967_p100, +60218,Ig7,EA048,Males alone,EA048-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +60219,Ig8,EA048,?,EA048-NA,,,,,, +60220,Ig9,EA048,Males alone,EA048-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +60221,Ih1,EA048,Males alone,EA048-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +60222,Ih10,EA048,"Activity present, sex diff. unspecified",EA048-8,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60223,Ih11,EA048,?,EA048-NA,,,,,, +60224,Ih12,EA048,?,EA048-NA,,,,,, +60225,Ih13,EA048,?,EA048-NA,,,,,, +60226,Ih14,EA048,Males alone,EA048-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +60227,Ih2,EA048,Males alone,EA048-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60228,Ih3,EA048,"Activity present, sex diff. unspecified",EA048-8,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p100, +60229,Ih4,EA048,Males alone,EA048-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60230,Ih5,EA048,?,EA048-NA,,,,,, +60231,Ih6,EA048,"Activity present, sex diff. unspecified",EA048-8,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +60232,Ih7,EA048,"Activity present, sex diff. unspecified",EA048-8,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +60233,Ih8,EA048,?,EA048-NA,,,,,, +60234,Ih9,EA048,Males alone,EA048-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60235,Ii1,EA048,Males alone,EA048-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +60236,Ii10,EA048,?,EA048-NA,,,,,, +60237,Ii12,EA048,Males alone,EA048-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60238,Ii13,EA048,Males alone,EA048-1,,burrows1937,,1830,EthnographicAtlas_1967_p100, +60239,Ii14,EA048,Males alone,EA048-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +60240,Ii2,EA048,Males alone,EA048-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +60241,Ii3,EA048,Males alone,EA048-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +60242,Ii4,EA048,Males alone,EA048-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +60243,Ii5,EA048,Males alone,EA048-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +60244,Ii6,EA048,"Activity present, sex diff. unspecified",EA048-8,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +60245,Ii7,EA048,Males alone,EA048-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +60246,Ii8,EA048,Males alone,EA048-1,,burrows1936,,1840,EthnographicAtlas_1967_p100, +60247,Ii9,EA048,Males alone,EA048-1,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +60248,Ij1,EA048,Males alone,EA048-1,,buck1934,,1820,EthnographicAtlas_1967_p100, +60249,Ij10,EA048,?,EA048-NA,,,,,, +60250,Ij2,EA048,Males alone,EA048-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +60251,Ij3,EA048,Males alone,EA048-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +60252,Ij4,EA048,Males alone,EA048-1,,buck1932a,,1850,EthnographicAtlas_1967_p104, +60253,Ij5,EA048,Males alone,EA048-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +60254,Ij6,EA048,Males alone,EA048-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +60255,Ij7,EA048,Males alone,EA048-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +60256,Ij8,EA048,Males alone,EA048-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +60257,Ij9,EA048,Males alone,EA048-1,,metraux1940,,1860,EthnographicAtlas_1967_p104, +60258,Na1,EA048,Males alone,EA048-1,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +60259,Na10,EA048,"Both, males more",EA048-2,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +60260,Na11,EA048,Males alone,EA048-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +60261,Na12,EA048,Males alone,EA048-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +60262,Na13,EA048,Males alone,EA048-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +60263,Na14,EA048,Males alone,EA048-1,But boats were lacking until the kayak was introduced in 1862,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +60264,Na15,EA048,Females alone,EA048-6,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +60265,Na16,EA048,Differentiated but equal,EA048-3,,osgood1931,,1860,EthnographicAtlas_1967_p104, +60266,Na17,EA048,Males alone,EA048-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60267,Na19,EA048,"Activity present, sex diff. unspecified",EA048-8,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +60268,Na2,EA048,Males alone,EA048-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +60269,Na20,EA048,"Both, males more",EA048-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +60270,Na21,EA048,Differentiated but equal,EA048-3,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +60271,Na22,EA048,Males alone,EA048-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +60272,Na23,EA048,Males alone,EA048-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +60273,Na24,EA048,Differentiated but equal,EA048-3,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +60274,Na25,EA048,"Activity present, sex diff. unspecified",EA048-8,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +60275,Na26,EA048,Differentiated but equal,EA048-3,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +60276,Na27,EA048,"Activity present, sex diff. unspecified",EA048-8,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +60277,Na28,EA048,"Activity present, sex diff. unspecified",EA048-8,,jenness1937,,1880,EthnographicAtlas_1967_p104, +60278,Na29,EA048,"Activity present, sex diff. unspecified",EA048-8,,goddard1916,,1850,EthnographicAtlas_1967_p104, +60279,Na3,EA048,Males alone,EA048-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +60280,Na30,EA048,Males alone,EA048-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +60281,Na31,EA048,Males alone,EA048-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +60282,Na32,EA048,"Both, males more",EA048-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +60283,Na33,EA048,"Both, males more",EA048-2,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +60284,Na34,EA048,Males alone,EA048-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +60285,Na35,EA048,Activity is absent,EA048-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +60286,Na36,EA048,"Both, males more",EA048-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +60287,Na37,EA048,Males alone,EA048-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +60288,Na38,EA048,"Activity present, sex diff. unspecified",EA048-8,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +60289,Na39,EA048,Equal participation,EA048-4,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +60290,Na4,EA048,Males alone,EA048-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +60291,Na40,EA048,"Activity present, sex diff. unspecified",EA048-8,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +60292,Na41,EA048,"Both, males more",EA048-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +60293,Na42,EA048,"Activity present, sex diff. unspecified",EA048-8,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +60294,Na43,EA048,"Activity present, sex diff. unspecified",EA048-8,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +60295,Na44,EA048,?,EA048-NA,,,,,, +60296,Na45,EA048,Males alone,EA048-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +60297,Na5,EA048,Males alone,EA048-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +60298,Na6,EA048,Males alone,EA048-1,,lantis1946,,1930,EthnographicAtlas_1967_p104, +60299,Na7,EA048,Males alone,EA048-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +60300,Na8,EA048,"Both, males more",EA048-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +60301,Na9,EA048,"Activity present, sex diff. unspecified",EA048-8,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60302,Nb1,EA048,Males alone,EA048-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +60303,Nb10,EA048,?,EA048-NA,,,,,, +60304,Nb11,EA048,Males alone,EA048-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +60305,Nb12,EA048,Males alone,EA048-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +60306,Nb13,EA048,Males alone,EA048-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +60307,Nb14,EA048,Males alone,EA048-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +60308,Nb15,EA048,Males alone,EA048-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +60309,Nb16,EA048,"Activity present, sex diff. unspecified",EA048-8,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +60310,Nb17,EA048,Males alone,EA048-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +60311,Nb18,EA048,Males alone,EA048-1,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +60312,Nb19,EA048,"Activity present, sex diff. unspecified",EA048-8,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +60313,Nb2,EA048,Males alone,EA048-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +60314,Nb20,EA048,Males alone,EA048-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +60315,Nb21,EA048,"Activity present, sex diff. unspecified",EA048-8,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +60316,Nb22,EA048,Males alone,EA048-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +60317,Nb23,EA048,"Activity present, sex diff. unspecified",EA048-8,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +60318,Nb24,EA048,Males alone,EA048-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +60319,Nb25,EA048,Males alone,EA048-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +60320,Nb26,EA048,Males alone,EA048-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +60321,Nb27,EA048,Males alone,EA048-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +60322,Nb28,EA048,"Activity present, sex diff. unspecified",EA048-8,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +60323,Nb29,EA048,"Activity present, sex diff. unspecified",EA048-8,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +60324,Nb3,EA048,Males alone,EA048-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +60325,Nb30,EA048,"Activity present, sex diff. unspecified",EA048-8,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +60326,Nb31,EA048,Males alone,EA048-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +60327,Nb32,EA048,?,EA048-NA,,,,,, +60328,Nb33,EA048,Activity is absent,EA048-9,Log rafts only,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +60329,Nb34,EA048,"Activity present, sex diff. unspecified",EA048-8,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +60330,Nb35,EA048,"Activity present, sex diff. unspecified",EA048-8,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +60331,Nb36,EA048,"Activity present, sex diff. unspecified",EA048-8,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +60332,Nb37,EA048,"Activity present, sex diff. unspecified",EA048-8,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +60333,Nb38,EA048,"Activity present, sex diff. unspecified",EA048-8,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +60334,Nb39,EA048,"Activity present, sex diff. unspecified",EA048-8,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +60335,Nb4,EA048,Males alone,EA048-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +60336,Nb5,EA048,Males alone,EA048-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +60337,Nb6,EA048,Males alone,EA048-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +60338,Nb7,EA048,Males alone,EA048-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +60339,Nb8,EA048,Males alone,EA048-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +60340,Nb9,EA048,Males alone,EA048-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +60341,Nc1,EA048,Activity is absent,EA048-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +60342,Nc10,EA048,"Activity present, sex diff. unspecified",EA048-8,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +60343,Nc11,EA048,"Activity present, sex diff. unspecified",EA048-8,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +60344,Nc12,EA048,"Activity present, sex diff. unspecified",EA048-8,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +60345,Nc13,EA048,Activity is absent,EA048-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +60346,Nc14,EA048,Activity is absent,EA048-9,Rafts only,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +60347,Nc15,EA048,Activity is absent,EA048-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +60348,Nc16,EA048,?,EA048-NA,,,,,, +60349,Nc17,EA048,Activity is absent,EA048-9,Log rafts only,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +60350,Nc18,EA048,Activity is absent,EA048-9,But men make balsa rafts,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +60351,Nc19,EA048,Activity is absent,EA048-9,Rafts only,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +60352,Nc2,EA048,Activity is absent,EA048-9,Rafts of tule reeds only,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +60353,Nc20,EA048,Activity is absent,EA048-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +60354,Nc21,EA048,?,EA048-NA,,,,,, +60355,Nc22,EA048,Activity is absent,EA048-9,Balsa rafts only,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +60356,Nc23,EA048,Activity is absent,EA048-9,Log rafts only,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +60357,Nc24,EA048,Activity is absent,EA048-9,But men make balsa rafts,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +60358,Nc25,EA048,?,EA048-NA,,,,,, +60359,Nc26,EA048,Activity is absent,EA048-9,Balsa canoes only,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +60360,Nc27,EA048,?,EA048-NA,,,,,, +60361,Nc28,EA048,"Activity present, sex diff. unspecified",EA048-8,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +60362,Nc29,EA048,"Activity present, sex diff. unspecified",EA048-8,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +60363,Nc3,EA048,Activity is absent,EA048-9,Rafts of tule reeds only,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +60364,Nc30,EA048,Activity is absent,EA048-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +60365,Nc31,EA048,Activity is absent,EA048-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +60366,Nc32,EA048,Activity is absent,EA048-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +60367,Nc33,EA048,Activity is absent,EA048-9,Balsa rafts only,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +60368,Nc34,EA048,Activity is absent,EA048-9,,meigs1939,,1880,EthnographicAtlas_1967_p108, +60369,Nc4,EA048,Males alone,EA048-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +60370,Nc5,EA048,Activity is absent,EA048-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +60371,Nc6,EA048,Activity is absent,EA048-9,Balsa rafts only,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +60372,Nc7,EA048,Activity is absent,EA048-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +60373,Nc8,EA048,"Both, males more",EA048-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +60374,Nc9,EA048,"Activity present, sex diff. unspecified",EA048-8,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +60375,Nd1,EA048,Males alone,EA048-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +60376,Nd10,EA048,"Activity present, sex diff. unspecified",EA048-8,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +60377,Nd11,EA048,"Activity present, sex diff. unspecified",EA048-8,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +60378,Nd12,EA048,"Activity present, sex diff. unspecified",EA048-8,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +60379,Nd13,EA048,"Activity present, sex diff. unspecified",EA048-8,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +60380,Nd14,EA048,"Activity present, sex diff. unspecified",EA048-8,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +60381,Nd15,EA048,Males alone,EA048-1,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +60382,Nd16,EA048,"Activity present, sex diff. unspecified",EA048-8,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +60383,Nd17,EA048,"Activity present, sex diff. unspecified",EA048-8,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +60384,Nd18,EA048,Males alone,EA048-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +60385,Nd19,EA048,"Activity present, sex diff. unspecified",EA048-8,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +60386,Nd2,EA048,Activity is absent,EA048-9,Rafts only,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +60387,Nd20,EA048,"Activity present, sex diff. unspecified",EA048-8,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +60388,Nd21,EA048,Activity is absent,EA048-9,Balsa rafts only,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +60389,Nd22,EA048,Activity is absent,EA048-9,Balsa rafts only,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +60390,Nd23,EA048,Activity is absent,EA048-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +60391,Nd24,EA048,Activity is absent,EA048-9,Rafts only,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +60392,Nd25,EA048,Activity is absent,EA048-9,Balsa rafts only,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +60393,Nd26,EA048,Males alone,EA048-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +60394,Nd27,EA048,Activity is absent,EA048-9,Balsa rafts only,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +60395,Nd28,EA048,Activity is absent,EA048-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +60396,Nd29,EA048,Activity is absent,EA048-9,Balsa rafts only,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +60397,Nd3,EA048,Activity is absent,EA048-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +60398,Nd30,EA048,?,EA048-NA,,,,,, +60399,Nd31,EA048,Activity is absent,EA048-9,Log rafts only,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +60400,Nd32,EA048,Activity is absent,EA048-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +60401,Nd33,EA048,Activity is absent,EA048-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +60402,Nd34,EA048,Activity is absent,EA048-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +60403,Nd35,EA048,Activity is absent,EA048-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +60404,Nd36,EA048,Activity is absent,EA048-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +60405,Nd37,EA048,Activity is absent,EA048-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +60406,Nd38,EA048,Activity is absent,EA048-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +60407,Nd39,EA048,Activity is absent,EA048-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +60408,Nd4,EA048,Males alone,EA048-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +60409,Nd40,EA048,Activity is absent,EA048-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +60410,Nd41,EA048,Activity is absent,EA048-9,Balsa rafts only,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +60411,Nd42,EA048,Activity is absent,EA048-9,Balsa rafts only,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +60412,Nd43,EA048,Activity is absent,EA048-9,Balsa rafts only,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +60413,Nd44,EA048,Activity is absent,EA048-9,Balsa rafts only,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +60414,Nd45,EA048,Activity is absent,EA048-9,Balsa rafts only,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +60415,Nd46,EA048,Activity is absent,EA048-9,Balsa rafts only,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +60416,Nd47,EA048,Activity is absent,EA048-9,Balsa rafts only,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +60417,Nd48,EA048,Activity is absent,EA048-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +60418,Nd49,EA048,Activity is absent,EA048-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +60419,Nd5,EA048,Activity is absent,EA048-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +60420,Nd50,EA048,Activity is absent,EA048-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +60421,Nd51,EA048,?,EA048-NA,,,,,, +60422,Nd52,EA048,Activity is absent,EA048-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +60423,Nd53,EA048,Activity is absent,EA048-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +60424,Nd54,EA048,Activity is absent,EA048-9,Rafts only,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60425,Nd55,EA048,Activity is absent,EA048-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +60426,Nd56,EA048,Activity is absent,EA048-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +60427,Nd57,EA048,Activity is absent,EA048-9,But balsa rafts were made,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +60428,Nd58,EA048,Activity is absent,EA048-9,Rafts only,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +60429,Nd59,EA048,Activity is absent,EA048-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +60430,Nd6,EA048,Activity is absent,EA048-9,Rafts only,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +60431,Nd60,EA048,Activity is absent,EA048-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +60432,Nd61,EA048,Activity is absent,EA048-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +60433,Nd62,EA048,Activity is absent,EA048-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +60434,Nd63,EA048,Activity is absent,EA048-9,Balsa rafts only,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +60435,Nd64,EA048,"Activity present, sex diff. unspecified",EA048-8,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +60436,Nd65,EA048,Activity is absent,EA048-9,Rafts only,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +60437,Nd66,EA048,Activity is absent,EA048-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +60438,Nd67,EA048,Activity is absent,EA048-9,,gifford1936,,1870,EthnographicAtlas_1967_p112, +60439,Nd7,EA048,Males alone,EA048-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +60440,Nd8,EA048,"Both, males more",EA048-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +60441,Nd9,EA048,"Activity present, sex diff. unspecified",EA048-8,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +60442,Ne1,EA048,Activity is absent,EA048-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +60443,Ne10,EA048,Females alone,EA048-6,Skin bullboats,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +60444,Ne11,EA048,"Activity present, sex diff. unspecified",EA048-8,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +60445,Ne12,EA048,Activity is absent,EA048-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +60446,Ne13,EA048,Activity is absent,EA048-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +60447,Ne14,EA048,"Activity present, sex diff. unspecified",EA048-8,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +60448,Ne15,EA048,Females alone,EA048-6,Skin bullboats,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +60449,Ne16,EA048,"Activity present, sex diff. unspecified",EA048-8,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +60450,Ne17,EA048,?,EA048-NA,,,,,, +60451,Ne18,EA048,Activity is absent,EA048-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +60452,Ne19,EA048,"Activity present, sex diff. unspecified",EA048-8,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +60453,Ne2,EA048,?,EA048-NA,,,,,, +60454,Ne20,EA048,?,EA048-NA,,,,,, +60455,Ne21,EA048,?,EA048-NA,,,,,, +60456,Ne3,EA048,Activity is absent,EA048-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +60457,Ne4,EA048,Activity is absent,EA048-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +60458,Ne5,EA048,?,EA048-NA,,,,,, +60459,Ne6,EA048,?,EA048-NA,,,,,, +60460,Ne7,EA048,Activity is absent,EA048-9,Rafts only,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +60461,Ne8,EA048,?,EA048-NA,,,,,, +60462,Ne9,EA048,?,EA048-NA,,,,,, +60463,Nf10,EA048,?,EA048-NA,,,,,, +60464,Nf11,EA048,?,EA048-NA,,,,,, +60465,Nf12,EA048,?,EA048-NA,,,,,, +60466,Nf13,EA048,"Activity present, sex diff. unspecified",EA048-8,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60467,Nf14,EA048,"Activity present, sex diff. unspecified",EA048-8,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +60468,Nf15,EA048,?,EA048-NA,,,,,, +60469,Nf2,EA048,"Activity present, sex diff. unspecified",EA048-8,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +60470,Nf3,EA048,Males alone,EA048-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +60471,Nf4,EA048,"Activity present, sex diff. unspecified",EA048-8,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +60472,Nf5,EA048,?,EA048-NA,,,,,, +60473,Nf6,EA048,?,EA048-NA,,,,,, +60474,Nf7,EA048,Males alone,EA048-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60475,Nf8,EA048,?,EA048-NA,,,,,, +60476,Nf9,EA048,"Activity present, sex diff. unspecified",EA048-8,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +60477,Ng1,EA048,Males alone,EA048-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +60478,Ng10,EA048,Males alone,EA048-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +60479,Ng11,EA048,"Activity present, sex diff. unspecified",EA048-8,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +60480,Ng12,EA048,"Activity present, sex diff. unspecified",EA048-8,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +60481,Ng13,EA048,?,EA048-NA,,,,,, +60482,Ng14,EA048,?,EA048-NA,,,,,, +60483,Ng15,EA048,?,EA048-NA,,,,,, +60484,Ng2,EA048,?,EA048-NA,,,,,, +60485,Ng3,EA048,Males alone,EA048-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +60486,Ng4,EA048,?,EA048-NA,,,,,, +60487,Ng5,EA048,Males alone,EA048-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +60488,Ng6,EA048,Males alone,EA048-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +60489,Ng7,EA048,Males alone,EA048-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +60490,Ng8,EA048,"Activity present, sex diff. unspecified",EA048-8,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +60491,Ng9,EA048,?,EA048-NA,,,,,, +60492,Nh1,EA048,Activity is absent,EA048-9,Rafts only,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +60493,Nh10,EA048,?,EA048-NA,,,,,, +60494,Nh11,EA048,?,EA048-NA,,,,,, +60495,Nh12,EA048,Activity is absent,EA048-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +60496,Nh13,EA048,Activity is absent,EA048-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +60497,Nh14,EA048,?,EA048-NA,,,,,, +60498,Nh15,EA048,Activity is absent,EA048-9,Rafts only,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +60499,Nh16,EA048,Activity is absent,EA048-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60500,Nh17,EA048,Activity is absent,EA048-9,Rafts only,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +60501,Nh18,EA048,Activity is absent,EA048-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60502,Nh19,EA048,Activity is absent,EA048-9,Rafts only,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +60503,Nh2,EA048,Activity is absent,EA048-9,,dozier1954,,1950,EthnographicAtlas_1967_p116, +60504,Nh20,EA048,Activity is absent,EA048-9,Balsa rafts only,gifford1931,,1860,EthnographicAtlas_1967_p116, +60505,Nh21,EA048,Activity is absent,EA048-9,Balsa rafts only,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60506,Nh22,EA048,Activity is absent,EA048-9,Balsa rafts only,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +60507,Nh23,EA048,Males alone,EA048-1,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +60508,Nh24,EA048,Activity is absent,EA048-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +60509,Nh25,EA048,Activity is absent,EA048-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +60510,Nh26,EA048,?,EA048-NA,,,,,, +60511,Nh27,EA048,?,EA048-NA,,,,,, +60512,Nh3,EA048,Activity is absent,EA048-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +60513,Nh4,EA048,Activity is absent,EA048-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +60514,Nh5,EA048,Activity is absent,EA048-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +60515,Nh6,EA048,Activity is absent,EA048-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +60516,Nh7,EA048,Activity is absent,EA048-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +60517,Nh8,EA048,Activity is absent,EA048-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +60518,Nh9,EA048,?,EA048-NA,,,,,, +60519,Ni1,EA048,?,EA048-NA,,,,,, +60520,Ni2,EA048,Activity is absent,EA048-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +60521,Ni3,EA048,?,EA048-NA,,,,,, +60522,Ni4,EA048,Activity is absent,EA048-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +60523,Ni5,EA048,Activity is absent,EA048-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +60524,Ni6,EA048,Activity is absent,EA048-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +60525,Ni7,EA048,"Activity present, sex diff. unspecified",EA048-8,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +60526,Ni8,EA048,?,EA048-NA,,,,,, +60527,Ni9,EA048,?,EA048-NA,,,,,, +60528,Nj1,EA048,?,EA048-NA,,,,,, +60529,Nj10,EA048,Activity is absent,EA048-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60530,Nj11,EA048,?,EA048-NA,,,,,, +60531,Nj12,EA048,?,EA048-NA,,,,,, +60532,Nj13,EA048,?,EA048-NA,,,,,, +60533,Nj14,EA048,?,EA048-NA,,,,,, +60534,Nj2,EA048,"Activity present, sex diff. unspecified",EA048-8,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +60535,Nj3,EA048,?,EA048-NA,,,,,, +60536,Nj4,EA048,?,EA048-NA,,,,,, +60537,Nj5,EA048,?,EA048-NA,,,,,, +60538,Nj6,EA048,?,EA048-NA,,,,,, +60539,Nj7,EA048,Activity is absent,EA048-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60540,Nj8,EA048,"Activity present, sex diff. unspecified",EA048-8,,foster1948,,1500,EthnographicAtlas_1967_p120, +60541,Nj9,EA048,Activity is absent,EA048-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +60542,Sa1,EA048,Males alone,EA048-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +60543,Sa10,EA048,?,EA048-NA,,,,,, +60544,Sa11,EA048,?,EA048-NA,,,,,, +60545,Sa12,EA048,?,EA048-NA,,,,,, +60546,Sa13,EA048,Activity is absent,EA048-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +60547,Sa14,EA048,?,EA048-NA,,,,,, +60548,Sa15,EA048,?,EA048-NA,,,,,, +60549,Sa16,EA048,?,EA048-NA,,,,,, +60550,Sa17,EA048,?,EA048-NA,,,,,, +60551,Sa2,EA048,?,EA048-NA,,,,,, +60552,Sa3,EA048,?,EA048-NA,,,,,, +60553,Sa4,EA048,Males alone,EA048-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +60554,Sa5,EA048,Activity is absent,EA048-9,"Entry follows Stone and Pittier, who report dugout canoes in some regions; Gann and Skinner deny the presence of water craft",gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +60555,Sa6,EA048,"Activity present, sex diff. unspecified",EA048-8,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +60556,Sa7,EA048,Males alone,EA048-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +60557,Sa8,EA048,?,EA048-NA,,,,,, +60558,Sa9,EA048,Males alone,EA048-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +60559,Sb1,EA048,Males alone,EA048-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +60560,Sb2,EA048,Males alone,EA048-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +60561,Sb3,EA048,?,EA048-NA,,,,,, +60562,Sb4,EA048,Activity is absent,EA048-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +60563,Sb5,EA048,"Activity present, sex diff. unspecified",EA048-8,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p120, +60564,Sb6,EA048,Activity is absent,EA048-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +60565,Sb7,EA048,?,EA048-NA,,,,,, +60566,Sb8,EA048,Males alone,EA048-1,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +60567,Sb9,EA048,Males alone,EA048-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +60568,Sc1,EA048,Males alone,EA048-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +60569,Sc10,EA048,"Activity present, sex diff. unspecified",EA048-8,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +60570,Sc11,EA048,?,EA048-NA,,,,,, +60571,Sc12,EA048,?,EA048-NA,,,,,, +60572,Sc13,EA048,Activity is absent,EA048-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +60573,Sc14,EA048,"Activity present, sex diff. unspecified",EA048-8,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +60574,Sc15,EA048,Males alone,EA048-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +60575,Sc16,EA048,Males alone,EA048-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +60576,Sc17,EA048,?,EA048-NA,,,,,, +60577,Sc18,EA048,Males alone,EA048-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +60578,Sc2,EA048,Males alone,EA048-1,,leedsnd,,1950,EthnographicAtlas_1967_p120, +60579,Sc3,EA048,Males alone,EA048-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +60580,Sc4,EA048,Males alone,EA048-1,But the agricultural Guahibo make dugout canoes,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +60581,Sc5,EA048,Males alone,EA048-1,,farabee1918,,1900,EthnographicAtlas_1967_p120, +60582,Sc6,EA048,"Activity present, sex diff. unspecified",EA048-8,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60583,Sc7,EA048,Males alone,EA048-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +60584,Sc8,EA048,"Activity present, sex diff. unspecified",EA048-8,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +60585,Sc9,EA048,?,EA048-NA,,,,,, +60586,Sd1,EA048,Activity is absent,EA048-9,But barks canoes were formerly used,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60587,Sd2,EA048,Activity is absent,EA048-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +60588,Sd3,EA048,Males alone,EA048-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +60589,Sd4,EA048,Activity is absent,EA048-9,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +60590,Sd5,EA048,"Activity present, sex diff. unspecified",EA048-8,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +60591,Sd6,EA048,Males alone,EA048-1,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +60592,Sd7,EA048,Males alone,EA048-1,,fock1963,,1950,EthnographicAtlas_1967_p120, +60593,Sd8,EA048,Activity is absent,EA048-9,Balsa rafts only,wilbert1963,,1950,EthnographicAtlas_1967_p120, +60594,Sd9,EA048,Males alone,EA048-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60595,Se1,EA048,Activity is absent,EA048-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +60596,Se10,EA048,Males alone,EA048-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p120, +60597,Se11,EA048,Males alone,EA048-1,,prost1965,,1960,EthnographicAtlas_1967_p124, +60598,Se12,EA048,?,EA048-NA,,,,,, +60599,Se2,EA048,Males alone,EA048-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +60600,Se3,EA048,Males alone,EA048-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +60601,Se4,EA048,Males alone,EA048-1,,fejos1943,,1940,EthnographicAtlas_1967_p120, +60602,Se5,EA048,Males alone,EA048-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +60603,Se6,EA048,Males alone,EA048-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +60604,Se7,EA048,?,EA048-NA,,,,,, +60605,Se8,EA048,Activity is absent,EA048-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +60606,Se9,EA048,"Activity present, sex diff. unspecified",EA048-8,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +60607,Sf1,EA048,"Activity present, sex diff. unspecified",EA048-8,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +60608,Sf2,EA048,Males alone,EA048-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +60609,Sf3,EA048,Males alone,EA048-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +60610,Sf4,EA048,?,EA048-NA,,,,,, +60611,Sf5,EA048,Activity is absent,EA048-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +60612,Sf6,EA048,?,EA048-NA,,,,,, +60613,Sf7,EA048,"Activity present, sex diff. unspecified",EA048-8,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +60614,Sf8,EA048,?,EA048-NA,,,,,, +60615,Sf9,EA048,?,EA048-NA,,,,,, +60616,Sg1,EA048,Males alone,EA048-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +60617,Sg2,EA048,Males alone,EA048-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60618,Sg3,EA048,?,EA048-NA,,,,,, +60619,Sg4,EA048,Activity is absent,EA048-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +60620,Sg5,EA048,Males alone,EA048-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60621,Sh1,EA048,Activity is absent,EA048-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +60622,Sh2,EA048,?,EA048-NA,,,,,, +60623,Sh3,EA048,Males alone,EA048-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +60624,Sh4,EA048,?,EA048-NA,,,,,, +60625,Sh5,EA048,Activity is absent,EA048-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +60626,Sh6,EA048,Activity is absent,EA048-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +60627,Sh7,EA048,Activity is absent,EA048-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +60628,Sh8,EA048,Activity is absent,EA048-9,"Formerly 'males alone' (EA048 code ""1""), with no specialization specified (EA059 code ""9"")",karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +60629,Sh9,EA048,Males alone,EA048-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +60630,Si1,EA048,Activity is absent,EA048-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60631,Si10,EA048,Males alone,EA048-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +60632,Si2,EA048,Males alone,EA048-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +60633,Si3,EA048,Males alone,EA048-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60634,Si4,EA048,Activity is absent,EA048-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +60635,Si5,EA048,Males alone,EA048-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +60636,Si6,EA048,Males alone,EA048-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +60637,Si7,EA048,Activity is absent,EA048-9,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +60638,Si8,EA048,?,EA048-NA,,,,,, +60639,Si9,EA048,?,EA048-NA,,,,,, +60640,Sj1,EA048,?,EA048-NA,,,,,, +60641,Sj10,EA048,Activity is absent,EA048-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60642,Sj11,EA048,Activity is absent,EA048-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +60643,Sj2,EA048,?,EA048-NA,,,,,, +60644,Sj3,EA048,Activity is absent,EA048-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +60645,Sj4,EA048,Activity is absent,EA048-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +60646,Sj5,EA048,Activity is absent,EA048-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +60647,Sj6,EA048,?,EA048-NA,,,,,, +60648,Sj7,EA048,Males alone,EA048-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +60649,Sj8,EA048,Males alone,EA048-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +60650,Sj9,EA048,Activity is absent,EA048-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +60651,ch12,EA048,Males alone,EA048-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +60652,ch13,EA048,Activity is absent,EA048-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +60653,ch14,EA048,Males alone,EA048-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +60654,ch15,EA048,Males alone,EA048-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +60655,ch16,EA048,Males alone,EA048-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +60656,ch17,EA048,Activity is absent,EA048-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +60657,ch18,EA048,Males alone,EA048-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +60658,ch19,EA048,Males alone,EA048-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +60659,ch20,EA048,Activity is absent,EA048-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +60660,ch21,EA048,Males alone,EA048-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +60661,ch22,EA048,Activity is absent,EA048-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +60662,ch23,EA048,Activity is absent,EA048-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +60663,ch24,EA048,Males alone,EA048-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +60664,ch25,EA048,Males alone,EA048-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +60665,ch26,EA048,Males alone,EA048-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +60666,ch27,EA048,Males alone,EA048-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +60667,ch28,EA048,Males alone,EA048-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +60668,ec12,EA048,Activity is absent,EA048-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +60669,ec13,EA048,Males alone,EA048-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +60670,ec14,EA048,Males alone,EA048-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +60671,ec15,EA048,Males alone,EA048-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +60672,ec16,EA048,Males alone,EA048-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +60673,ec17,EA048,Males alone,EA048-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +60674,ec18,EA048,Males alone,EA048-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +60675,ec19,EA048,Males alone,EA048-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +60676,ec20,EA048,Males alone,EA048-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +60677,ec21,EA048,Males alone,EA048-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +60678,Aa1,EA049,Females alone,EA049-6,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +60679,Aa2,EA049,Females alone,EA049-6,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +60680,Aa3,EA049,Differentiated but equal,EA049-3,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +60681,Aa4,EA049,?,EA049-NA,,,,,, +60682,Aa5,EA049,Females alone,EA049-6,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +60683,Aa6,EA049,?,EA049-NA,,,,,, +60684,Aa7,EA049,Females alone,EA049-6,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +60685,Aa8,EA049,?,EA049-NA,,,,,, +60686,Aa9,EA049,Females alone,EA049-6,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +60687,Ab1,EA049,?,EA049-NA,,,,,, +60688,Ab10,EA049,"Both, males more",EA049-2,,hunter1936,,1936,EthnographicAtlas_1967_p64, +60689,Ab11,EA049,?,EA049-NA,,,,,, +60690,Ab12,EA049,Males alone,EA049-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +60691,Ab13,EA049,?,EA049-NA,,,,,, +60692,Ab14,EA049,"Both, males more",EA049-2,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +60693,Ab15,EA049,?,EA049-NA,,,,,, +60694,Ab16,EA049,?,EA049-NA,,,,,, +60695,Ab17,EA049,?,EA049-NA,,,,,, +60696,Ab18,EA049,Males alone,EA049-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +60697,Ab19,EA049,Males alone,EA049-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +60698,Ab2,EA049,Equal participation,EA049-4,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +60699,Ab20,EA049,?,EA049-NA,,,,,, +60700,Ab21a,EA049,?,EA049-NA,,,,,, +60701,Ab21b,EA049,?,EA049-NA,,,,,, +60702,Ab22,EA049,?,EA049-NA,,,,,, +60703,Ab3,EA049,Differentiated but equal,EA049-3,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +60704,Ab4,EA049,Males alone,EA049-1,,junod1927,,1920,EthnographicAtlas_1967_p64, +60705,Ab5,EA049,Males alone,EA049-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +60706,Ab6,EA049,Differentiated but equal,EA049-3,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +60707,Ab7,EA049,?,EA049-NA,,,,,, +60708,Ab8,EA049,Males alone,EA049-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +60709,Ab9,EA049,"Both, males more",EA049-2,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +60710,Ac1,EA049,Differentiated but equal,EA049-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +60711,Ac10,EA049,?,EA049-NA,,,,,, +60712,Ac11,EA049,?,EA049-NA,,,,,, +60713,Ac12,EA049,?,EA049-NA,,,,,, +60714,Ac13,EA049,?,EA049-NA,,,,,, +60715,Ac14,EA049,?,EA049-NA,,,,,, +60716,Ac15,EA049,?,EA049-NA,,,,,, +60717,Ac16,EA049,?,EA049-NA,,,,,, +60718,Ac17,EA049,Males alone,EA049-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +60719,Ac18,EA049,Males alone,EA049-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +60720,Ac19,EA049,?,EA049-NA,,,,,, +60721,Ac2,EA049,?,EA049-NA,,,,,, +60722,Ac20,EA049,?,EA049-NA,,,,,, +60723,Ac21,EA049,?,EA049-NA,,,,,, +60724,Ac22,EA049,?,EA049-NA,,,,,, +60725,Ac23,EA049,Males alone,EA049-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +60726,Ac24,EA049,?,EA049-NA,,,,,, +60727,Ac25,EA049,?,EA049-NA,,,,,, +60728,Ac26,EA049,?,EA049-NA,,,,,, +60729,Ac27,EA049,?,EA049-NA,,,,,, +60730,Ac28,EA049,?,EA049-NA,,,,,, +60731,Ac29,EA049,?,EA049-NA,,,,,, +60732,Ac3,EA049,Differentiated but equal,EA049-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +60733,Ac30,EA049,Males alone,EA049-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +60734,Ac31,EA049,?,EA049-NA,,,,,, +60735,Ac32,EA049,?,EA049-NA,,,,,, +60736,Ac33,EA049,?,EA049-NA,,,,,, +60737,Ac34,EA049,?,EA049-NA,,,,,, +60738,Ac35,EA049,?,EA049-NA,,,,,, +60739,Ac36,EA049,?,EA049-NA,,,,,, +60740,Ac37,EA049,?,EA049-NA,,,,,, +60741,Ac38,EA049,?,EA049-NA,,,,,, +60742,Ac39,EA049,?,EA049-NA,,,,,, +60743,Ac4,EA049,?,EA049-NA,,,,,, +60744,Ac40,EA049,?,EA049-NA,,,,,, +60745,Ac41,EA049,?,EA049-NA,,,,,, +60746,Ac42,EA049,?,EA049-NA,,,,,, +60747,Ac43,EA049,?,EA049-NA,,,,,, +60748,Ac5,EA049,?,EA049-NA,,,,,, +60749,Ac6,EA049,?,EA049-NA,,,,,, +60750,Ac7,EA049,Males alone,EA049-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +60751,Ac8,EA049,?,EA049-NA,,,,,, +60752,Ac9,EA049,?,EA049-NA,,,,,, +60753,Ad1,EA049,?,EA049-NA,,,,,, +60754,Ad10,EA049,?,EA049-NA,,,,,, +60755,Ad11,EA049,Males alone,EA049-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +60756,Ad12,EA049,?,EA049-NA,,,,,, +60757,Ad13,EA049,Males alone,EA049-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +60758,Ad14,EA049,Differentiated but equal,EA049-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p68, +60759,Ad15,EA049,?,EA049-NA,,,,,, +60760,Ad16,EA049,?,EA049-NA,,,,,, +60761,Ad17,EA049,"Both, males more",EA049-2,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +60762,Ad18,EA049,?,EA049-NA,,,,,, +60763,Ad19,EA049,Males alone,EA049-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +60764,Ad2,EA049,Differentiated but equal,EA049-3,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +60765,Ad20,EA049,Males alone,EA049-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +60766,Ad21,EA049,?,EA049-NA,,,,,, +60767,Ad22,EA049,?,EA049-NA,,,,,, +60768,Ad23,EA049,?,EA049-NA,,,,,, +60769,Ad24,EA049,?,EA049-NA,,,,,, +60770,Ad25,EA049,?,EA049-NA,,,,,, +60771,Ad26,EA049,?,EA049-NA,,,,,, +60772,Ad27,EA049,?,EA049-NA,,,,,, +60773,Ad28,EA049,?,EA049-NA,,,,,, +60774,Ad29,EA049,Males alone,EA049-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +60775,Ad3,EA049,"Both, males more",EA049-2,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +60776,Ad30,EA049,?,EA049-NA,,,,,, +60777,Ad31,EA049,"Both, males more",EA049-2,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +60778,Ad32,EA049,?,EA049-NA,,,,,, +60779,Ad33,EA049,?,EA049-NA,,,,,, +60780,Ad34,EA049,?,EA049-NA,,,,,, +60781,Ad35,EA049,Differentiated but equal,EA049-3,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +60782,Ad36,EA049,?,EA049-NA,,,,,, +60783,Ad37,EA049,?,EA049-NA,,,,,, +60784,Ad38,EA049,?,EA049-NA,,,,,, +60785,Ad39,EA049,?,EA049-NA,,,,,, +60786,Ad4,EA049,Differentiated but equal,EA049-3,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +60787,Ad40,EA049,?,EA049-NA,,,,,, +60788,Ad41,EA049,Activity is absent,EA049-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +60789,Ad42,EA049,?,EA049-NA,,,,,, +60790,Ad43,EA049,?,EA049-NA,,,,,, +60791,Ad44,EA049,?,EA049-NA,,,,,, +60792,Ad45,EA049,Males alone,EA049-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +60793,Ad46,EA049,?,EA049-NA,,,,,, +60794,Ad47,EA049,?,EA049-NA,,,,,, +60795,Ad48,EA049,Males alone,EA049-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +60796,Ad49,EA049,?,EA049-NA,,,,,, +60797,Ad5,EA049,?,EA049-NA,,,,,, +60798,Ad50,EA049,?,EA049-NA,,,,,, +60799,Ad51,EA049,?,EA049-NA,,,,,, +60800,Ad6,EA049,Males alone,EA049-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +60801,Ad7,EA049,Males alone,EA049-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +60802,Ad8,EA049,Males alone,EA049-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +60803,Ad9,EA049,?,EA049-NA,,,,,, +60804,Ae1,EA049,Males alone,EA049-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +60805,Ae10,EA049,Males alone,EA049-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +60806,Ae11,EA049,Males alone,EA049-1,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +60807,Ae12,EA049,?,EA049-NA,,,,,, +60808,Ae13,EA049,?,EA049-NA,,,,,, +60809,Ae14,EA049,Males alone,EA049-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +60810,Ae15,EA049,?,EA049-NA,,,,,, +60811,Ae16,EA049,?,EA049-NA,,,,,, +60812,Ae17,EA049,?,EA049-NA,,,,,, +60813,Ae18,EA049,?,EA049-NA,,,,,, +60814,Ae19,EA049,?,EA049-NA,,,,,, +60815,Ae2,EA049,?,EA049-NA,,,,,, +60816,Ae20,EA049,?,EA049-NA,,,,,, +60817,Ae21,EA049,?,EA049-NA,,,,,, +60818,Ae22,EA049,?,EA049-NA,,,,,, +60819,Ae23,EA049,?,EA049-NA,,,,,, +60820,Ae24,EA049,?,EA049-NA,,,,,, +60821,Ae25,EA049,?,EA049-NA,,,,,, +60822,Ae26,EA049,?,EA049-NA,,,,,, +60823,Ae27,EA049,?,EA049-NA,,,,,, +60824,Ae28,EA049,?,EA049-NA,,,,,, +60825,Ae29,EA049,?,EA049-NA,,,,,, +60826,Ae3,EA049,?,EA049-NA,,,,,, +60827,Ae30,EA049,?,EA049-NA,,,,,, +60828,Ae31,EA049,?,EA049-NA,,,,,, +60829,Ae32,EA049,?,EA049-NA,,,,,, +60830,Ae33,EA049,"Both, males more",EA049-2,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +60831,Ae34,EA049,?,EA049-NA,,,,,, +60832,Ae35,EA049,?,EA049-NA,,,,,, +60833,Ae36,EA049,?,EA049-NA,,,,,, +60834,Ae37,EA049,?,EA049-NA,,,,,, +60835,Ae38,EA049,?,EA049-NA,,,,,, +60836,Ae39,EA049,"Both, males more",EA049-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +60837,Ae4,EA049,Males alone,EA049-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +60838,Ae40,EA049,?,EA049-NA,,,,,, +60839,Ae41,EA049,?,EA049-NA,,,,,, +60840,Ae42,EA049,?,EA049-NA,,,,,, +60841,Ae43,EA049,?,EA049-NA,,,,,, +60842,Ae44,EA049,?,EA049-NA,,,,,, +60843,Ae45,EA049,?,EA049-NA,,,,,, +60844,Ae46,EA049,?,EA049-NA,,,,,, +60845,Ae47,EA049,?,EA049-NA,,,,,, +60846,Ae48,EA049,?,EA049-NA,,,,,, +60847,Ae49,EA049,?,EA049-NA,,,,,, +60848,Ae5,EA049,Males alone,EA049-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +60849,Ae50,EA049,Differentiated but equal,EA049-3,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +60850,Ae51,EA049,Differentiated but equal,EA049-3,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +60851,Ae52,EA049,Males alone,EA049-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +60852,Ae53,EA049,?,EA049-NA,,,,,, +60853,Ae54,EA049,?,EA049-NA,,,,,, +60854,Ae55,EA049,Males alone,EA049-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +60855,Ae56,EA049,Males alone,EA049-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +60856,Ae57,EA049,?,EA049-NA,,,,,, +60857,Ae58,EA049,?,EA049-NA,,,,,, +60858,Ae59,EA049,?,EA049-NA,,,,,, +60859,Ae6,EA049,?,EA049-NA,,,,,, +60860,Ae7,EA049,?,EA049-NA,,,,,, +60861,Ae8,EA049,"Both, males more",EA049-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +60862,Ae9,EA049,Males alone,EA049-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +60863,Af1,EA049,?,EA049-NA,,,,,, +60864,Af10,EA049,Males alone,EA049-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +60865,Af11,EA049,?,EA049-NA,,,,,, +60866,Af12,EA049,?,EA049-NA,,,,,, +60867,Af13,EA049,?,EA049-NA,,,,,, +60868,Af14,EA049,Males alone,EA049-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +60869,Af15,EA049,"Both, males more",EA049-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +60870,Af16,EA049,?,EA049-NA,,,,,, +60871,Af17,EA049,?,EA049-NA,,,,,, +60872,Af18,EA049,?,EA049-NA,,,,,, +60873,Af19,EA049,?,EA049-NA,,,,,, +60874,Af2,EA049,?,EA049-NA,,,,,, +60875,Af20,EA049,?,EA049-NA,,,,,, +60876,Af21,EA049,?,EA049-NA,,,,,, +60877,Af22,EA049,?,EA049-NA,,,,,, +60878,Af23,EA049,"Both, males more",EA049-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +60879,Af24,EA049,Males alone,EA049-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +60880,Af25,EA049,?,EA049-NA,,,,,, +60881,Af26,EA049,?,EA049-NA,,,,,, +60882,Af27,EA049,?,EA049-NA,,,,,, +60883,Af28,EA049,?,EA049-NA,,,,,, +60884,Af29,EA049,?,EA049-NA,,,,,, +60885,Af3,EA049,?,EA049-NA,,,,,, +60886,Af30,EA049,?,EA049-NA,,,,,, +60887,Af31,EA049,?,EA049-NA,,,,,, +60888,Af32,EA049,?,EA049-NA,,,,,, +60889,Af33,EA049,?,EA049-NA,,,,,, +60890,Af34,EA049,?,EA049-NA,,,,,, +60891,Af35,EA049,?,EA049-NA,,,,,, +60892,Af36,EA049,?,EA049-NA,,,,,, +60893,Af37,EA049,?,EA049-NA,,,,,, +60894,Af38,EA049,?,EA049-NA,,,,,, +60895,Af39,EA049,?,EA049-NA,,,,,, +60896,Af4,EA049,Males alone,EA049-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +60897,Af40,EA049,?,EA049-NA,,,,,, +60898,Af41,EA049,?,EA049-NA,,,,,, +60899,Af42,EA049,?,EA049-NA,,,,,, +60900,Af43,EA049,?,EA049-NA,,,,,, +60901,Af44,EA049,?,EA049-NA,,,,,, +60902,Af45,EA049,?,EA049-NA,,,,,, +60903,Af46,EA049,?,EA049-NA,,,,,, +60904,Af47,EA049,?,EA049-NA,,,,,, +60905,Af48,EA049,?,EA049-NA,,,,,, +60906,Af49,EA049,?,EA049-NA,,,,,, +60907,Af5,EA049,Males alone,EA049-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +60908,Af50,EA049,?,EA049-NA,,,,,, +60909,Af51,EA049,?,EA049-NA,,,,,, +60910,Af52,EA049,Males alone,EA049-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +60911,Af53,EA049,?,EA049-NA,,,,,, +60912,Af54,EA049,?,EA049-NA,,,,,, +60913,Af55,EA049,?,EA049-NA,,,,,, +60914,Af56,EA049,Activity is absent,EA049-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72,"Assume Murdock comment refers to Col 48, not Col 49 as stated in Gray (1999)" +60915,Af57,EA049,?,EA049-NA,,,,,, +60916,Af58,EA049,?,EA049-NA,,,,,, +60917,Af6,EA049,Males alone,EA049-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +60918,Af7,EA049,?,EA049-NA,,,,,, +60919,Af8,EA049,?,EA049-NA,,,,,, +60920,Af9,EA049,?,EA049-NA,,,,,, +60921,Ag1,EA049,"Both, males more",EA049-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +60922,Ag10,EA049,"Both, males more",EA049-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +60923,Ag11,EA049,"Both, males more",EA049-2,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +60924,Ag12,EA049,"Both, males more",EA049-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +60925,Ag13,EA049,?,EA049-NA,,,,,, +60926,Ag14,EA049,?,EA049-NA,,,,,, +60927,Ag15,EA049,?,EA049-NA,,,,,, +60928,Ag16,EA049,?,EA049-NA,,,,,, +60929,Ag17,EA049,?,EA049-NA,,,,,, +60930,Ag18,EA049,?,EA049-NA,,,,,, +60931,Ag19,EA049,?,EA049-NA,,,,,, +60932,Ag2,EA049,"Both, males more",EA049-2,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +60933,Ag20,EA049,?,EA049-NA,,,,,, +60934,Ag21,EA049,Males alone,EA049-1,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +60935,Ag22,EA049,?,EA049-NA,,,,,, +60936,Ag23,EA049,?,EA049-NA,,,,,, +60937,Ag24,EA049,?,EA049-NA,,,,,, +60938,Ag25,EA049,?,EA049-NA,,,,,, +60939,Ag26,EA049,?,EA049-NA,,,,,, +60940,Ag27,EA049,?,EA049-NA,,,,,, +60941,Ag28,EA049,?,EA049-NA,,,,,, +60942,Ag29,EA049,?,EA049-NA,,,,,, +60943,Ag3,EA049,?,EA049-NA,,,,,, +60944,Ag30,EA049,?,EA049-NA,,,,,, +60945,Ag31,EA049,?,EA049-NA,,,,,, +60946,Ag32,EA049,?,EA049-NA,,,,,, +60947,Ag33,EA049,?,EA049-NA,,,,,, +60948,Ag34,EA049,?,EA049-NA,,,,,, +60949,Ag35,EA049,?,EA049-NA,,,,,, +60950,Ag36,EA049,?,EA049-NA,,,,,, +60951,Ag37,EA049,?,EA049-NA,,,,,, +60952,Ag38,EA049,?,EA049-NA,,,,,, +60953,Ag39,EA049,"Both, males more",EA049-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +60954,Ag4,EA049,"Both, males more",EA049-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +60955,Ag40,EA049,?,EA049-NA,,,,,, +60956,Ag41,EA049,"Both, males more",EA049-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p72, +60957,Ag42,EA049,?,EA049-NA,,,,,, +60958,Ag43,EA049,?,EA049-NA,,,,,, +60959,Ag44,EA049,?,EA049-NA,,,,,, +60960,Ag45,EA049,?,EA049-NA,,,,,, +60961,Ag46,EA049,?,EA049-NA,,,,,, +60962,Ag47,EA049,Males alone,EA049-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +60963,Ag48,EA049,Males alone,EA049-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +60964,Ag49,EA049,?,EA049-NA,,,,,, +60965,Ag5,EA049,Differentiated but equal,EA049-3,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +60966,Ag50,EA049,?,EA049-NA,,,,,, +60967,Ag51,EA049,?,EA049-NA,,,,,, +60968,Ag52,EA049,?,EA049-NA,,,,,, +60969,Ag53,EA049,Males alone,EA049-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +60970,Ag54,EA049,"Both, males more",EA049-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +60971,Ag6,EA049,?,EA049-NA,,,,,, +60972,Ag7,EA049,?,EA049-NA,,,,,, +60973,Ag8,EA049,?,EA049-NA,,,,,, +60974,Ag9,EA049,?,EA049-NA,,,,,, +60975,Ah1,EA049,Males alone,EA049-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +60976,Ah10,EA049,?,EA049-NA,,,,,, +60977,Ah11,EA049,?,EA049-NA,,,,,, +60978,Ah12,EA049,?,EA049-NA,,,,,, +60979,Ah13,EA049,?,EA049-NA,,,,,, +60980,Ah14,EA049,?,EA049-NA,,,,,, +60981,Ah15,EA049,?,EA049-NA,,,,,, +60982,Ah16,EA049,?,EA049-NA,,,,,, +60983,Ah17,EA049,?,EA049-NA,,,,,, +60984,Ah18,EA049,?,EA049-NA,,,,,, +60985,Ah19,EA049,?,EA049-NA,,,,,, +60986,Ah2,EA049,?,EA049-NA,,,,,, +60987,Ah20,EA049,Males alone,EA049-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +60988,Ah21,EA049,?,EA049-NA,,,,,, +60989,Ah22,EA049,?,EA049-NA,,,,,, +60990,Ah23,EA049,?,EA049-NA,,,,,, +60991,Ah24,EA049,?,EA049-NA,,,,,, +60992,Ah25,EA049,?,EA049-NA,,,,,, +60993,Ah26,EA049,?,EA049-NA,,,,,, +60994,Ah27,EA049,?,EA049-NA,,,,,, +60995,Ah28,EA049,?,EA049-NA,,,,,, +60996,Ah29,EA049,?,EA049-NA,,,,,, +60997,Ah3,EA049,"Both, males more",EA049-2,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +60998,Ah30,EA049,?,EA049-NA,,,,,, +60999,Ah31,EA049,?,EA049-NA,,,,,, +61000,Ah32,EA049,?,EA049-NA,,,,,, +61001,Ah33,EA049,?,EA049-NA,,,,,, +61002,Ah34,EA049,?,EA049-NA,,,,,, +61003,Ah35,EA049,?,EA049-NA,,,,,, +61004,Ah36,EA049,Males alone,EA049-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +61005,Ah37,EA049,?,EA049-NA,,,,,, +61006,Ah38,EA049,?,EA049-NA,,,,,, +61007,Ah39,EA049,Males alone,EA049-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +61008,Ah4,EA049,?,EA049-NA,,,,,, +61009,Ah5,EA049,?,EA049-NA,,,,,, +61010,Ah6,EA049,?,EA049-NA,,,,,, +61011,Ah7,EA049,Males alone,EA049-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +61012,Ah8,EA049,?,EA049-NA,,,,,, +61013,Ah9,EA049,Males alone,EA049-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +61014,Ai1,EA049,?,EA049-NA,,,,,, +61015,Ai10,EA049,?,EA049-NA,,,,,, +61016,Ai11,EA049,?,EA049-NA,,,,,, +61017,Ai12,EA049,?,EA049-NA,,,,,, +61018,Ai13,EA049,?,EA049-NA,,,,,, +61019,Ai14,EA049,?,EA049-NA,,,,,, +61020,Ai15,EA049,?,EA049-NA,,,,,, +61021,Ai16,EA049,?,EA049-NA,,,,,, +61022,Ai17,EA049,?,EA049-NA,,,,,, +61023,Ai18,EA049,?,EA049-NA,,,,,, +61024,Ai19,EA049,?,EA049-NA,,,,,, +61025,Ai2,EA049,?,EA049-NA,,,,,, +61026,Ai20,EA049,?,EA049-NA,,,,,, +61027,Ai21,EA049,?,EA049-NA,,,,,, +61028,Ai22,EA049,?,EA049-NA,,,,,, +61029,Ai23,EA049,?,EA049-NA,,,,,, +61030,Ai24,EA049,?,EA049-NA,,,,,, +61031,Ai25,EA049,?,EA049-NA,,,,,, +61032,Ai26,EA049,?,EA049-NA,,,,,, +61033,Ai27,EA049,?,EA049-NA,,,,,, +61034,Ai28,EA049,?,EA049-NA,,,,,, +61035,Ai29,EA049,?,EA049-NA,,,,,, +61036,Ai3,EA049,Males alone,EA049-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +61037,Ai30,EA049,?,EA049-NA,,,,,, +61038,Ai31,EA049,?,EA049-NA,,,,,, +61039,Ai32,EA049,Males alone,EA049-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p76, +61040,Ai33,EA049,Males alone,EA049-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p76, +61041,Ai34,EA049,?,EA049-NA,,,,,, +61042,Ai35,EA049,Males alone,EA049-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +61043,Ai36,EA049,"Both, males more",EA049-2,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +61044,Ai37,EA049,?,EA049-NA,,,,,, +61045,Ai38,EA049,?,EA049-NA,,,,,, +61046,Ai39,EA049,?,EA049-NA,,,,,, +61047,Ai4,EA049,?,EA049-NA,,,,,, +61048,Ai40,EA049,?,EA049-NA,,,,,, +61049,Ai41,EA049,?,EA049-NA,,,,,, +61050,Ai42,EA049,?,EA049-NA,,,,,, +61051,Ai43,EA049,?,EA049-NA,,,,,, +61052,Ai44,EA049,?,EA049-NA,,,,,, +61053,Ai45,EA049,?,EA049-NA,,,,,, +61054,Ai46,EA049,?,EA049-NA,,,,,, +61055,Ai47,EA049,Males alone,EA049-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +61056,Ai5,EA049,?,EA049-NA,,,,,, +61057,Ai6,EA049,Differentiated but equal,EA049-3,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +61058,Ai7,EA049,?,EA049-NA,,,,,, +61059,Ai8,EA049,?,EA049-NA,,,,,, +61060,Ai9,EA049,?,EA049-NA,,,,,, +61061,Aj1,EA049,?,EA049-NA,,,,,, +61062,Aj10,EA049,?,EA049-NA,,,,,, +61063,Aj11,EA049,?,EA049-NA,,,,,, +61064,Aj12,EA049,?,EA049-NA,,,,,, +61065,Aj13,EA049,?,EA049-NA,,,,,, +61066,Aj14,EA049,?,EA049-NA,,,,,, +61067,Aj15,EA049,Males alone,EA049-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +61068,Aj16,EA049,?,EA049-NA,,,,,, +61069,Aj17,EA049,Males alone,EA049-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +61070,Aj18,EA049,?,EA049-NA,,,,,, +61071,Aj19,EA049,?,EA049-NA,,,,,, +61072,Aj2,EA049,?,EA049-NA,,,,,, +61073,Aj20,EA049,?,EA049-NA,,,,,, +61074,Aj21,EA049,?,EA049-NA,,,,,, +61075,Aj22,EA049,Males alone,EA049-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +61076,Aj23,EA049,Females alone,EA049-6,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +61077,Aj24,EA049,?,EA049-NA,,,,,, +61078,Aj25,EA049,?,EA049-NA,,,,,, +61079,Aj26,EA049,?,EA049-NA,,,,,, +61080,Aj27,EA049,?,EA049-NA,,,,,, +61081,Aj28,EA049,?,EA049-NA,,,,,, +61082,Aj29,EA049,?,EA049-NA,,,,,, +61083,Aj3,EA049,?,EA049-NA,,,,,, +61084,Aj30,EA049,?,EA049-NA,,,,,, +61085,Aj31,EA049,?,EA049-NA,,,,,, +61086,Aj4,EA049,?,EA049-NA,,,,,, +61087,Aj5,EA049,Equal participation,EA049-4,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +61088,Aj6,EA049,?,EA049-NA,,,,,, +61089,Aj7,EA049,Differentiated but equal,EA049-3,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +61090,Aj8,EA049,?,EA049-NA,,,,,, +61091,Aj9,EA049,Males alone,EA049-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +61092,Ca1,EA049,Males alone,EA049-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +61093,Ca10,EA049,?,EA049-NA,,,,,, +61094,Ca11,EA049,Males alone,EA049-1,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +61095,Ca12,EA049,"Both, males more",EA049-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +61096,Ca13,EA049,"Both, males more",EA049-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +61097,Ca14,EA049,?,EA049-NA,,,,,, +61098,Ca15,EA049,?,EA049-NA,,,,,, +61099,Ca16,EA049,?,EA049-NA,,,,,, +61100,Ca17,EA049,Males alone,EA049-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +61101,Ca18,EA049,?,EA049-NA,,,,,, +61102,Ca19,EA049,Males alone,EA049-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +61103,Ca2,EA049,"Both, females more",EA049-5,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +61104,Ca20,EA049,?,EA049-NA,,,,,, +61105,Ca21,EA049,Males alone,EA049-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +61106,Ca22,EA049,?,EA049-NA,,,,,, +61107,Ca23,EA049,?,EA049-NA,,,,,, +61108,Ca24,EA049,?,EA049-NA,,,,,, +61109,Ca25,EA049,?,EA049-NA,,,,,, +61110,Ca26,EA049,?,EA049-NA,,,,,, +61111,Ca27,EA049,?,EA049-NA,,,,,, +61112,Ca28,EA049,?,EA049-NA,,,,,, +61113,Ca29,EA049,?,EA049-NA,,,,,, +61114,Ca3,EA049,?,EA049-NA,,,,,, +61115,Ca30,EA049,?,EA049-NA,,,,,, +61116,Ca31,EA049,?,EA049-NA,,,,,, +61117,Ca32,EA049,?,EA049-NA,,,,,, +61118,Ca33,EA049,?,EA049-NA,,,,,, +61119,Ca34,EA049,?,EA049-NA,,,,,, +61120,Ca35,EA049,?,EA049-NA,,,,,, +61121,Ca36,EA049,?,EA049-NA,,,,,, +61122,Ca37,EA049,?,EA049-NA,,,,,, +61123,Ca38,EA049,?,EA049-NA,,,,,, +61124,Ca39,EA049,?,EA049-NA,,,,,, +61125,Ca4,EA049,?,EA049-NA,,,,,, +61126,Ca40,EA049,?,EA049-NA,,,,,, +61127,Ca41,EA049,Males alone,EA049-1,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +61128,Ca42,EA049,Males alone,EA049-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +61129,Ca43,EA049,?,EA049-NA,,,,,, +61130,Ca5,EA049,?,EA049-NA,,,,,, +61131,Ca6,EA049,Females alone,EA049-6,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p80, +61132,Ca7,EA049,Males alone,EA049-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +61133,Ca8,EA049,?,EA049-NA,,,,,, +61134,Ca9,EA049,?,EA049-NA,,,,,, +61135,Cb1,EA049,?,EA049-NA,,,,,, +61136,Cb10,EA049,?,EA049-NA,,,,,, +61137,Cb11,EA049,?,EA049-NA,,,,,, +61138,Cb12,EA049,?,EA049-NA,,,,,, +61139,Cb13,EA049,?,EA049-NA,,,,,, +61140,Cb14,EA049,?,EA049-NA,,,,,, +61141,Cb15,EA049,?,EA049-NA,,,,,, +61142,Cb16,EA049,?,EA049-NA,,,,,, +61143,Cb17,EA049,?,EA049-NA,,,,,, +61144,Cb18,EA049,?,EA049-NA,,,,,, +61145,Cb19,EA049,?,EA049-NA,,,,,, +61146,Cb2,EA049,Males alone,EA049-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +61147,Cb20,EA049,?,EA049-NA,,,,,, +61148,Cb21,EA049,?,EA049-NA,,,,,, +61149,Cb22,EA049,?,EA049-NA,,,,,, +61150,Cb23,EA049,?,EA049-NA,,,,,, +61151,Cb24,EA049,?,EA049-NA,,,,,, +61152,Cb25,EA049,?,EA049-NA,,,,,, +61153,Cb26,EA049,Males alone,EA049-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +61154,Cb27,EA049,?,EA049-NA,,,,,, +61155,Cb28,EA049,?,EA049-NA,,,,,, +61156,Cb29,EA049,?,EA049-NA,,,,,, +61157,Cb3,EA049,Differentiated but equal,EA049-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +61158,Cb4,EA049,?,EA049-NA,,,,,, +61159,Cb5,EA049,?,EA049-NA,,,,,, +61160,Cb6,EA049,?,EA049-NA,,,,,, +61161,Cb7,EA049,?,EA049-NA,,,,,, +61162,Cb8,EA049,?,EA049-NA,,,,,, +61163,Cb9,EA049,?,EA049-NA,,,,,, +61164,Cc1,EA049,Females alone,EA049-6,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +61165,Cc10,EA049,Females alone,EA049-6,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +61166,Cc11,EA049,?,EA049-NA,,,,,, +61167,Cc12,EA049,?,EA049-NA,,,,,, +61168,Cc13,EA049,?,EA049-NA,,,,,, +61169,Cc14,EA049,Females alone,EA049-6,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +61170,Cc15,EA049,?,EA049-NA,,,,,, +61171,Cc16,EA049,?,EA049-NA,,,,,, +61172,Cc17,EA049,Females alone,EA049-6,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +61173,Cc18,EA049,?,EA049-NA,,,,,, +61174,Cc19,EA049,?,EA049-NA,,,,,, +61175,Cc2,EA049,Females alone,EA049-6,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +61176,Cc20,EA049,?,EA049-NA,,,,,, +61177,Cc3,EA049,?,EA049-NA,,,,,, +61178,Cc4,EA049,?,EA049-NA,,,,,, +61179,Cc5,EA049,?,EA049-NA,,,,,, +61180,Cc6,EA049,?,EA049-NA,,,,,, +61181,Cc7,EA049,?,EA049-NA,,,,,, +61182,Cc8,EA049,?,EA049-NA,,,,,, +61183,Cc9,EA049,Females alone,EA049-6,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +61184,Cd1,EA049,?,EA049-NA,,,,,, +61185,Cd10,EA049,?,EA049-NA,,,,,, +61186,Cd11,EA049,?,EA049-NA,,,,,, +61187,Cd12,EA049,?,EA049-NA,,,,,, +61188,Cd13,EA049,?,EA049-NA,,,,,, +61189,Cd14,EA049,?,EA049-NA,,,,,, +61190,Cd15,EA049,?,EA049-NA,,,,,, +61191,Cd16,EA049,?,EA049-NA,,,,,, +61192,Cd17,EA049,?,EA049-NA,,,,,, +61193,Cd18,EA049,?,EA049-NA,,,,,, +61194,Cd19,EA049,?,EA049-NA,,,,,, +61195,Cd2,EA049,?,EA049-NA,,,,,, +61196,Cd20,EA049,?,EA049-NA,,,,,, +61197,Cd21,EA049,?,EA049-NA,,,,,, +61198,Cd3,EA049,Males alone,EA049-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +61199,Cd4,EA049,?,EA049-NA,,,,,, +61200,Cd5,EA049,?,EA049-NA,,,,,, +61201,Cd6,EA049,?,EA049-NA,,,,,, +61202,Cd7,EA049,?,EA049-NA,,,,,, +61203,Cd8,EA049,?,EA049-NA,,,,,, +61204,Cd9,EA049,?,EA049-NA,,,,,, +61205,Ce1,EA049,Males alone,EA049-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +61206,Ce2,EA049,?,EA049-NA,,,,,, +61207,Ce3,EA049,Males alone,EA049-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +61208,Ce4,EA049,?,EA049-NA,,,,,, +61209,Ce5,EA049,Males alone,EA049-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +61210,Ce6,EA049,Males alone,EA049-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +61211,Ce7,EA049,Males alone,EA049-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +61212,Ce8,EA049,Males alone,EA049-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +61213,Cf1,EA049,Males alone,EA049-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +61214,Cf2,EA049,?,EA049-NA,,,,,, +61215,Cf3,EA049,Males alone,EA049-1,,munch1945,,1930,EthnographicAtlas_1967_p84, +61216,Cf4,EA049,Males alone,EA049-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +61217,Cf5,EA049,?,EA049-NA,,,,,, +61218,Cg1,EA049,Males alone,EA049-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +61219,Cg2,EA049,Males alone,EA049-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +61220,Cg3,EA049,Males alone,EA049-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +61221,Cg4,EA049,Males alone,EA049-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +61222,Cg5,EA049,?,EA049-NA,,,,,, +61223,Ch1,EA049,Males alone,EA049-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +61224,Ch10,EA049,?,EA049-NA,,,,,, +61225,Ch11,EA049,"Activity present, sex diff. unspecified",EA049-8,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +61226,Ch2,EA049,Males alone,EA049-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +61227,Ch3,EA049,Males alone,EA049-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +61228,Ch4,EA049,Males alone,EA049-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p84, +61229,Ch5,EA049,Males alone,EA049-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +61230,Ch6,EA049,?,EA049-NA,,,,,, +61231,Ch7,EA049,?,EA049-NA,,,,,, +61232,Ch8,EA049,?,EA049-NA,,,,,, +61233,Ch9,EA049,?,EA049-NA,,,,,, +61234,Ci1,EA049,Equal participation,EA049-4,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +61235,Ci10,EA049,Males alone,EA049-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +61236,Ci11,EA049,Males alone,EA049-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +61237,Ci12,EA049,Equal participation,EA049-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +61238,Ci2,EA049,?,EA049-NA,,,,,, +61239,Ci3,EA049,Activity is absent,EA049-9,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p84, +61240,Ci4,EA049,?,EA049-NA,,,,,, +61241,Ci5,EA049,Males alone,EA049-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +61242,Ci6,EA049,?,EA049-NA,,,,,, +61243,Ci7,EA049,?,EA049-NA,,,,,, +61244,Ci8,EA049,?,EA049-NA,,,,,, +61245,Ci9,EA049,?,EA049-NA,,,,,, +61246,Cj1,EA049,"Both, males more",EA049-2,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +61247,Cj10,EA049,Males alone,EA049-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +61248,Cj2,EA049,Females alone,EA049-6,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +61249,Cj3,EA049,Males alone,EA049-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +61250,Cj4,EA049,Males alone,EA049-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +61251,Cj5,EA049,Females alone,EA049-6,,dickson1949,,1930,EthnographicAtlas_1967_p88, +61252,Cj6,EA049,?,EA049-NA,,,,,, +61253,Cj7,EA049,Males alone,EA049-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +61254,Cj8,EA049,Males alone,EA049-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +61255,Cj9,EA049,?,EA049-NA,,,,,, +61256,Ea1,EA049,?,EA049-NA,,,,,, +61257,Ea10,EA049,Females alone,EA049-6,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +61258,Ea11,EA049,?,EA049-NA,,,,,, +61259,Ea12,EA049,?,EA049-NA,,,,,, +61260,Ea13,EA049,Males alone,EA049-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +61261,Ea2,EA049,?,EA049-NA,,,,,, +61262,Ea3,EA049,"Both, males more",EA049-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +61263,Ea4,EA049,Males alone,EA049-1,,barth1956b,,1950,EthnographicAtlas_1967_p88, +61264,Ea5,EA049,Males alone,EA049-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +61265,Ea6,EA049,Equal participation,EA049-4,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +61266,Ea7,EA049,Males alone,EA049-1,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +61267,Ea8,EA049,Males alone,EA049-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +61268,Ea9,EA049,Males alone,EA049-1,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +61269,Eb1,EA049,Females alone,EA049-6,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +61270,Eb2,EA049,?,EA049-NA,,,,,, +61271,Eb3,EA049,"Both, males more",EA049-2,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +61272,Eb4,EA049,?,EA049-NA,,,,,, +61273,Eb5,EA049,?,EA049-NA,,,,,, +61274,Eb6,EA049,?,EA049-NA,,,,,, +61275,Eb7,EA049,Males alone,EA049-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +61276,Eb8,EA049,?,EA049-NA,,,,,, +61277,Ec1,EA049,Males alone,EA049-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +61278,Ec10,EA049,?,EA049-NA,,,,,, +61279,Ec11,EA049,?,EA049-NA,,,,,, +61280,Ec2,EA049,Males alone,EA049-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61281,Ec3,EA049,Differentiated but equal,EA049-3,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +61282,Ec4,EA049,Females alone,EA049-6,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +61283,Ec5,EA049,?,EA049-NA,,,,,, +61284,Ec6,EA049,?,EA049-NA,,,,,, +61285,Ec7,EA049,Differentiated but equal,EA049-3,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +61286,Ec8,EA049,?,EA049-NA,,,,,, +61287,Ec9,EA049,?,EA049-NA,,,,,, +61288,Ed1,EA049,Males alone,EA049-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +61289,Ed10,EA049,?,EA049-NA,,,,,, +61290,Ed13,EA049,?,EA049-NA,,,,,, +61291,Ed14,EA049,?,EA049-NA,,,,,, +61292,Ed15a,EA049,?,EA049-NA,,,,,, +61293,Ed15b,EA049,Males alone,EA049-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +61294,Ed16,EA049,?,EA049-NA,,,,,, +61295,Ed2,EA049,Males alone,EA049-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +61296,Ed3,EA049,?,EA049-NA,,,,,, +61297,Ed4,EA049,Males alone,EA049-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +61298,Ed5,EA049,Males alone,EA049-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61299,Ed6,EA049,?,EA049-NA,,,,,, +61300,Ed7,EA049,"Both, males more",EA049-2,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +61301,Ed8,EA049,Males alone,EA049-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +61302,Ed9,EA049,?,EA049-NA,,,,,, +61303,Ee1,EA049,Males alone,EA049-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +61304,Ee2,EA049,"Both, males more",EA049-2,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +61305,Ee3,EA049,Males alone,EA049-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +61306,Ee4,EA049,?,EA049-NA,,,,,, +61307,Ee5,EA049,Males alone,EA049-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +61308,Ee6,EA049,Males alone,EA049-1,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +61309,Ee7,EA049,?,EA049-NA,,,,,, +61310,Ee8,EA049,?,EA049-NA,,,,,, +61311,Ef1,EA049,Differentiated but equal,EA049-3,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +61312,Ef10,EA049,?,EA049-NA,,,,,, +61313,Ef11,EA049,Males alone,EA049-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +61314,Ef2,EA049,Males alone,EA049-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +61315,Ef3,EA049,?,EA049-NA,,,,,, +61316,Ef4,EA049,?,EA049-NA,,,,,, +61317,Ef5,EA049,Males alone,EA049-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +61318,Ef6,EA049,Males alone,EA049-1,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +61319,Ef7,EA049,Males alone,EA049-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +61320,Ef8,EA049,Males alone,EA049-1,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +61321,Ef9,EA049,?,EA049-NA,,,,,, +61322,Eg1,EA049,"Both, males more",EA049-2,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61323,Eg10,EA049,Males alone,EA049-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +61324,Eg11,EA049,?,EA049-NA,,,,,, +61325,Eg12,EA049,?,EA049-NA,,,,,, +61326,Eg13,EA049,"Both, males more",EA049-2,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61327,Eg14,EA049,?,EA049-NA,,,,,, +61328,Eg2,EA049,Males alone,EA049-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +61329,Eg3,EA049,Differentiated but equal,EA049-3,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +61330,Eg4,EA049,Males alone,EA049-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +61331,Eg5,EA049,Males alone,EA049-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +61332,Eg6,EA049,?,EA049-NA,,,,,, +61333,Eg7,EA049,Males alone,EA049-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +61334,Eg8,EA049,"Both, males more",EA049-2,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +61335,Eg9,EA049,?,EA049-NA,,,,,, +61336,Eh1,EA049,"Both, females more",EA049-5,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +61337,Eh10,EA049,?,EA049-NA,,,,,, +61338,Eh2,EA049,Males alone,EA049-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +61339,Eh3,EA049,Males alone,EA049-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +61340,Eh4,EA049,?,EA049-NA,,,,,, +61341,Eh5,EA049,Males alone,EA049-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +61342,Eh6,EA049,?,EA049-NA,,,,,, +61343,Eh7,EA049,Males alone,EA049-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +61344,Eh8,EA049,Males alone,EA049-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +61345,Eh9,EA049,?,EA049-NA,,,,,, +61346,Ei1,EA049,Males alone,EA049-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61347,Ei10,EA049,Males alone,EA049-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +61348,Ei11,EA049,Males alone,EA049-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +61349,Ei12,EA049,?,EA049-NA,,,,,, +61350,Ei13,EA049,?,EA049-NA,,,,,, +61351,Ei14,EA049,Males alone,EA049-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +61352,Ei15,EA049,?,EA049-NA,,,,,, +61353,Ei16,EA049,?,EA049-NA,,,,,, +61354,Ei17,EA049,?,EA049-NA,,,,,, +61355,Ei18,EA049,Males alone,EA049-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +61356,Ei19,EA049,?,EA049-NA,,,,,, +61357,Ei2,EA049,Males alone,EA049-1,,mills1922,,1920,EthnographicAtlas_1967_p92, +61358,Ei20,EA049,?,EA049-NA,,,,,, +61359,Ei3,EA049,Males alone,EA049-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +61360,Ei4,EA049,Males alone,EA049-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +61361,Ei5,EA049,Males alone,EA049-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +61362,Ei6,EA049,?,EA049-NA,,,,,, +61363,Ei7,EA049,Males alone,EA049-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +61364,Ei8,EA049,Males alone,EA049-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +61365,Ei9,EA049,Males alone,EA049-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +61366,Ej1,EA049,"Both, males more",EA049-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +61367,Ej10,EA049,Equal participation,EA049-4,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +61368,Ej11,EA049,?,EA049-NA,,,,,, +61369,Ej12,EA049,Males alone,EA049-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +61370,Ej13,EA049,Males alone,EA049-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +61371,Ej14,EA049,?,EA049-NA,,,,,, +61372,Ej15,EA049,Males alone,EA049-1,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +61373,Ej16,EA049,Males alone,EA049-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +61374,Ej2,EA049,"Both, males more",EA049-2,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +61375,Ej3,EA049,Females alone,EA049-6,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +61376,Ej4,EA049,Males alone,EA049-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +61377,Ej5,EA049,Males alone,EA049-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +61378,Ej6,EA049,?,EA049-NA,,,,,, +61379,Ej7,EA049,?,EA049-NA,,,,,, +61380,Ej8,EA049,Males alone,EA049-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +61381,Ej9,EA049,Males alone,EA049-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +61382,Ia1,EA049,Males alone,EA049-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +61383,Ia10,EA049,?,EA049-NA,,,,,, +61384,Ia11,EA049,?,EA049-NA,,,,,, +61385,Ia12,EA049,?,EA049-NA,,,,,, +61386,Ia13,EA049,Males alone,EA049-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +61387,Ia14,EA049,?,EA049-NA,,,,,, +61388,Ia15,EA049,?,EA049-NA,,,,,, +61389,Ia16,EA049,Males alone,EA049-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +61390,Ia17,EA049,?,EA049-NA,,,,,, +61391,Ia18,EA049,?,EA049-NA,,,,,, +61392,Ia2,EA049,Males alone,EA049-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +61393,Ia3,EA049,?,EA049-NA,,,,,, +61394,Ia4,EA049,?,EA049-NA,,,,,, +61395,Ia5,EA049,?,EA049-NA,,,,,, +61396,Ia6,EA049,?,EA049-NA,,,,,, +61397,Ia7,EA049,?,EA049-NA,,,,,, +61398,Ia8,EA049,?,EA049-NA,,,,,, +61399,Ia9,EA049,?,EA049-NA,,,,,, +61400,Ib1,EA049,Males alone,EA049-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61401,Ib2,EA049,"Both, males more",EA049-2,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61402,Ib3,EA049,Males alone,EA049-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +61403,Ib4,EA049,?,EA049-NA,,,,,, +61404,Ib5,EA049,?,EA049-NA,,,,,, +61405,Ib6,EA049,?,EA049-NA,,,,,, +61406,Ib7,EA049,?,EA049-NA,,,,,, +61407,Ib8,EA049,?,EA049-NA,,,,,, +61408,Ib9,EA049,?,EA049-NA,,,,,, +61409,Ic1,EA049,Males alone,EA049-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61410,Ic10,EA049,?,EA049-NA,,,,,, +61411,Ic11,EA049,Males alone,EA049-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61412,Ic12,EA049,Males alone,EA049-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +61413,Ic13,EA049,?,EA049-NA,,,,,, +61414,Ic2,EA049,Males alone,EA049-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +61415,Ic3,EA049,?,EA049-NA,,,,,, +61416,Ic4,EA049,?,EA049-NA,,,,,, +61417,Ic5,EA049,?,EA049-NA,,,,,, +61418,Ic6,EA049,?,EA049-NA,,,,,, +61419,Ic7,EA049,?,EA049-NA,,,,,, +61420,Ic8,EA049,?,EA049-NA,,,,,, +61421,Ic9,EA049,?,EA049-NA,,,,,, +61422,Id1,EA049,Females alone,EA049-6,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +61423,Id10,EA049,Equal participation,EA049-4,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +61424,Id11,EA049,?,EA049-NA,,,,,, +61425,Id12,EA049,?,EA049-NA,,,,,, +61426,Id13,EA049,?,EA049-NA,,,,,, +61427,Id2,EA049,"Both, females more",EA049-5,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +61428,Id3,EA049,?,EA049-NA,,,,,, +61429,Id4,EA049,?,EA049-NA,,,,,, +61430,Id5,EA049,?,EA049-NA,,,,,, +61431,Id6,EA049,?,EA049-NA,,,,,, +61432,Id7,EA049,?,EA049-NA,,,,,, +61433,Id8,EA049,Females alone,EA049-6,,roth1890,,1830,EthnographicAtlas_1967_p96, +61434,Id9,EA049,?,EA049-NA,,,,,, +61435,Ie1,EA049,Males alone,EA049-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61436,Ie10,EA049,Males alone,EA049-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +61437,Ie11,EA049,Males alone,EA049-1,,bowers1964,,1950,EthnographicAtlas_1967_p96, +61438,Ie12,EA049,Males alone,EA049-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61439,Ie13,EA049,?,EA049-NA,,,,,, +61440,Ie14,EA049,?,EA049-NA,,,,,, +61441,Ie15,EA049,Males alone,EA049-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61442,Ie16,EA049,?,EA049-NA,,,,,, +61443,Ie17,EA049,Males alone,EA049-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +61444,Ie18,EA049,?,EA049-NA,,,,,, +61445,Ie19,EA049,Males alone,EA049-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +61446,Ie2,EA049,?,EA049-NA,,,,,, +61447,Ie20,EA049,?,EA049-NA,,,,,, +61448,Ie21,EA049,?,EA049-NA,,,,,, +61449,Ie22,EA049,?,EA049-NA,,,,,, +61450,Ie23,EA049,?,EA049-NA,,,,,, +61451,Ie24,EA049,?,EA049-NA,,,,,, +61452,Ie25,EA049,?,EA049-NA,,,,,, +61453,Ie26,EA049,?,EA049-NA,,,,,, +61454,Ie27,EA049,?,EA049-NA,,,,,, +61455,Ie28,EA049,Males alone,EA049-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +61456,Ie29,EA049,Males alone,EA049-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61457,Ie3,EA049,?,EA049-NA,,,,,, +61458,Ie30,EA049,?,EA049-NA,,,,,, +61459,Ie31,EA049,Males alone,EA049-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +61460,Ie32,EA049,Males alone,EA049-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +61461,Ie33,EA049,?,EA049-NA,,,,,, +61462,Ie34,EA049,?,EA049-NA,,,,,, +61463,Ie35,EA049,Males alone,EA049-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +61464,Ie36,EA049,?,EA049-NA,,,,,, +61465,Ie37,EA049,?,EA049-NA,,,,,, +61466,Ie38,EA049,Males alone,EA049-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +61467,Ie39,EA049,?,EA049-NA,,,,,, +61468,Ie4,EA049,Males alone,EA049-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61469,Ie5,EA049,Males alone,EA049-1,,williams1936,,1930,EthnographicAtlas_1967_p96, +61470,Ie6,EA049,?,EA049-NA,,,,,, +61471,Ie7,EA049,"Both, males more",EA049-2,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +61472,Ie8,EA049,Males alone,EA049-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +61473,Ie9,EA049,?,EA049-NA,,,,,, +61474,If1,EA049,Males alone,EA049-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61475,If10,EA049,?,EA049-NA,,,,,, +61476,If11,EA049,Males alone,EA049-1,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +61477,If12,EA049,?,EA049-NA,,,,,, +61478,If13,EA049,?,EA049-NA,,,,,, +61479,If14,EA049,Males alone,EA049-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +61480,If15,EA049,Males alone,EA049-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +61481,If16,EA049,Males alone,EA049-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +61482,If17,EA049,"Both, males more",EA049-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +61483,If2,EA049,Males alone,EA049-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +61484,If3,EA049,Males alone,EA049-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +61485,If4,EA049,Males alone,EA049-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +61486,If5,EA049,"Both, males more",EA049-2,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +61487,If6,EA049,Males alone,EA049-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +61488,If7,EA049,Males alone,EA049-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +61489,If8,EA049,Males alone,EA049-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +61490,If9,EA049,Males alone,EA049-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +61491,Ig1,EA049,"Both, males more",EA049-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +61492,Ig10,EA049,Males alone,EA049-1,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +61493,Ig11,EA049,Males alone,EA049-1,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +61494,Ig12,EA049,?,EA049-NA,,,,,, +61495,Ig13,EA049,?,EA049-NA,,,,,, +61496,Ig14,EA049,Males alone,EA049-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +61497,Ig15,EA049,?,EA049-NA,,,,,, +61498,Ig16,EA049,?,EA049-NA,,,,,, +61499,Ig17,EA049,?,EA049-NA,,,,,, +61500,Ig18,EA049,?,EA049-NA,,,,,, +61501,Ig19,EA049,?,EA049-NA,,,,,, +61502,Ig2,EA049,"Both, males more",EA049-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +61503,Ig20,EA049,Males alone,EA049-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +61504,Ig21,EA049,Males alone,EA049-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +61505,Ig3,EA049,Males alone,EA049-1,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +61506,Ig4,EA049,Males alone,EA049-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +61507,Ig5,EA049,?,EA049-NA,,,,,, +61508,Ig6,EA049,Males alone,EA049-1,,ivens1927,,1900,EthnographicAtlas_1967_p100, +61509,Ig7,EA049,Males alone,EA049-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +61510,Ig8,EA049,?,EA049-NA,,,,,, +61511,Ig9,EA049,Males alone,EA049-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +61512,Ih1,EA049,?,EA049-NA,,,,,, +61513,Ih10,EA049,?,EA049-NA,,,,,, +61514,Ih11,EA049,?,EA049-NA,,,,,, +61515,Ih12,EA049,?,EA049-NA,,,,,, +61516,Ih13,EA049,?,EA049-NA,,,,,, +61517,Ih14,EA049,Males alone,EA049-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +61518,Ih2,EA049,?,EA049-NA,,,,,, +61519,Ih3,EA049,?,EA049-NA,,,,,, +61520,Ih4,EA049,Males alone,EA049-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61521,Ih5,EA049,?,EA049-NA,,,,,, +61522,Ih6,EA049,?,EA049-NA,,,,,, +61523,Ih7,EA049,Males alone,EA049-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +61524,Ih8,EA049,Males alone,EA049-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +61525,Ih9,EA049,Males alone,EA049-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61526,Ii1,EA049,Males alone,EA049-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +61527,Ii10,EA049,?,EA049-NA,,,,,, +61528,Ii12,EA049,Males alone,EA049-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61529,Ii13,EA049,Males alone,EA049-1,,burrows1937,,1830,EthnographicAtlas_1967_p100, +61530,Ii14,EA049,Males alone,EA049-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +61531,Ii2,EA049,Males alone,EA049-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +61532,Ii3,EA049,Males alone,EA049-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +61533,Ii4,EA049,"Both, males more",EA049-2,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +61534,Ii5,EA049,Differentiated but equal,EA049-3,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +61535,Ii6,EA049,?,EA049-NA,,,,,, +61536,Ii7,EA049,Males alone,EA049-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +61537,Ii8,EA049,Males alone,EA049-1,,burrows1936,,1840,EthnographicAtlas_1967_p100, +61538,Ii9,EA049,Males alone,EA049-1,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +61539,Ij1,EA049,Males alone,EA049-1,,buck1934,,1820,EthnographicAtlas_1967_p100, +61540,Ij10,EA049,?,EA049-NA,,,,,, +61541,Ij2,EA049,Males alone,EA049-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +61542,Ij3,EA049,"Both, males more",EA049-2,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +61543,Ij4,EA049,?,EA049-NA,,,,,, +61544,Ij5,EA049,Males alone,EA049-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +61545,Ij6,EA049,Males alone,EA049-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +61546,Ij7,EA049,Males alone,EA049-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +61547,Ij8,EA049,?,EA049-NA,,,,,, +61548,Ij9,EA049,?,EA049-NA,,,,,, +61549,Na1,EA049,Differentiated but equal,EA049-3,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +61550,Na10,EA049,Males alone,EA049-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +61551,Na11,EA049,Males alone,EA049-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +61552,Na12,EA049,"Both, males more",EA049-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +61553,Na13,EA049,Males alone,EA049-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +61554,Na14,EA049,Males alone,EA049-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +61555,Na15,EA049,Males alone,EA049-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +61556,Na16,EA049,"Both, females more",EA049-5,,osgood1931,,1860,EthnographicAtlas_1967_p104, +61557,Na17,EA049,?,EA049-NA,,,,,, +61558,Na19,EA049,?,EA049-NA,,,,,, +61559,Na2,EA049,Equal participation,EA049-4,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +61560,Na20,EA049,?,EA049-NA,,,,,, +61561,Na21,EA049,Differentiated but equal,EA049-3,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +61562,Na22,EA049,"Both, males more",EA049-2,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +61563,Na23,EA049,Males alone,EA049-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +61564,Na24,EA049,Equal participation,EA049-4,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +61565,Na25,EA049,Differentiated but equal,EA049-3,"Formerly males alone (EA049 code ""1""), with no specialization specified (EA060 code ""9"")",birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +61566,Na26,EA049,Males alone,EA049-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +61567,Na27,EA049,Males alone,EA049-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +61568,Na28,EA049,?,EA049-NA,,,,,, +61569,Na29,EA049,Females alone,EA049-6,,goddard1916,,1850,EthnographicAtlas_1967_p104, +61570,Na3,EA049,Males alone,EA049-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +61571,Na30,EA049,Females alone,EA049-6,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +61572,Na31,EA049,Females alone,EA049-6,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +61573,Na32,EA049,Equal participation,EA049-4,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +61574,Na33,EA049,Females alone,EA049-6,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +61575,Na34,EA049,Males alone,EA049-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +61576,Na35,EA049,Females alone,EA049-6,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +61577,Na36,EA049,"Both, females more",EA049-5,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +61578,Na37,EA049,Females alone,EA049-6,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +61579,Na38,EA049,Females alone,EA049-6,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +61580,Na39,EA049,?,EA049-NA,,,,,, +61581,Na4,EA049,Males alone,EA049-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +61582,Na40,EA049,?,EA049-NA,,,,,, +61583,Na41,EA049,Males alone,EA049-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +61584,Na42,EA049,?,EA049-NA,,,,,, +61585,Na43,EA049,?,EA049-NA,,,,,, +61586,Na44,EA049,?,EA049-NA,,,,,, +61587,Na45,EA049,Males alone,EA049-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +61588,Na5,EA049,Females alone,EA049-6,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +61589,Na6,EA049,"Both, males more",EA049-2,,lantis1946,,1930,EthnographicAtlas_1967_p104, +61590,Na7,EA049,Differentiated but equal,EA049-3,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +61591,Na8,EA049,"Both, males more",EA049-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +61592,Na9,EA049,?,EA049-NA,,,,,, +61593,Nb1,EA049,Males alone,EA049-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +61594,Nb10,EA049,?,EA049-NA,,,,,, +61595,Nb11,EA049,Males alone,EA049-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +61596,Nb12,EA049,Males alone,EA049-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +61597,Nb13,EA049,Males alone,EA049-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +61598,Nb14,EA049,Males alone,EA049-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +61599,Nb15,EA049,Males alone,EA049-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +61600,Nb16,EA049,?,EA049-NA,,,,,, +61601,Nb17,EA049,Males alone,EA049-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +61602,Nb18,EA049,?,EA049-NA,,,,,, +61603,Nb19,EA049,?,EA049-NA,,,,,, +61604,Nb2,EA049,Males alone,EA049-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +61605,Nb20,EA049,?,EA049-NA,,,,,, +61606,Nb21,EA049,?,EA049-NA,,,,,, +61607,Nb22,EA049,Males alone,EA049-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +61608,Nb23,EA049,?,EA049-NA,,,,,, +61609,Nb24,EA049,Males alone,EA049-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +61610,Nb25,EA049,Males alone,EA049-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +61611,Nb26,EA049,Males alone,EA049-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +61612,Nb27,EA049,Males alone,EA049-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +61613,Nb28,EA049,"Both, males more",EA049-2,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +61614,Nb29,EA049,?,EA049-NA,,,,,, +61615,Nb3,EA049,Males alone,EA049-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +61616,Nb30,EA049,?,EA049-NA,,,,,, +61617,Nb31,EA049,?,EA049-NA,,,,,, +61618,Nb32,EA049,Males alone,EA049-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +61619,Nb33,EA049,?,EA049-NA,,,,,, +61620,Nb34,EA049,?,EA049-NA,,,,,, +61621,Nb35,EA049,?,EA049-NA,,,,,, +61622,Nb36,EA049,?,EA049-NA,,,,,, +61623,Nb37,EA049,?,EA049-NA,,,,,, +61624,Nb38,EA049,?,EA049-NA,,,,,, +61625,Nb39,EA049,?,EA049-NA,,,,,, +61626,Nb4,EA049,Males alone,EA049-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +61627,Nb5,EA049,Males alone,EA049-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +61628,Nb6,EA049,?,EA049-NA,,,,,, +61629,Nb7,EA049,Males alone,EA049-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +61630,Nb8,EA049,?,EA049-NA,,,,,, +61631,Nb9,EA049,Males alone,EA049-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +61632,Nc1,EA049,"Both, males more",EA049-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +61633,Nc10,EA049,"Both, males more",EA049-2,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +61634,Nc11,EA049,?,EA049-NA,,,,,, +61635,Nc12,EA049,"Both, males more",EA049-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +61636,Nc13,EA049,Males alone,EA049-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +61637,Nc14,EA049,"Both, males more",EA049-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +61638,Nc15,EA049,?,EA049-NA,,,,,, +61639,Nc16,EA049,?,EA049-NA,,,,,, +61640,Nc17,EA049,?,EA049-NA,,,,,, +61641,Nc18,EA049,Males alone,EA049-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +61642,Nc19,EA049,?,EA049-NA,,,,,, +61643,Nc2,EA049,"Both, males more",EA049-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +61644,Nc20,EA049,Males alone,EA049-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +61645,Nc21,EA049,?,EA049-NA,,,,,, +61646,Nc22,EA049,Equal participation,EA049-4,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +61647,Nc23,EA049,"Both, males more",EA049-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +61648,Nc24,EA049,?,EA049-NA,,,,,, +61649,Nc25,EA049,"Both, males more",EA049-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +61650,Nc26,EA049,?,EA049-NA,,,,,, +61651,Nc27,EA049,?,EA049-NA,,,,,, +61652,Nc28,EA049,?,EA049-NA,,,,,, +61653,Nc29,EA049,?,EA049-NA,,,,,, +61654,Nc3,EA049,?,EA049-NA,,,,,, +61655,Nc30,EA049,?,EA049-NA,,,,,, +61656,Nc31,EA049,?,EA049-NA,,,,,, +61657,Nc32,EA049,?,EA049-NA,,,,,, +61658,Nc33,EA049,?,EA049-NA,,,,,, +61659,Nc34,EA049,?,EA049-NA,,,,,, +61660,Nc4,EA049,Males alone,EA049-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +61661,Nc5,EA049,?,EA049-NA,,,,,, +61662,Nc6,EA049,?,EA049-NA,,,,,, +61663,Nc7,EA049,Males alone,EA049-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +61664,Nc8,EA049,"Both, males more",EA049-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +61665,Nc9,EA049,Differentiated but equal,EA049-3,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +61666,Nd1,EA049,Males alone,EA049-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +61667,Nd10,EA049,?,EA049-NA,,,,,, +61668,Nd11,EA049,?,EA049-NA,,,,,, +61669,Nd12,EA049,Females alone,EA049-6,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +61670,Nd13,EA049,Females alone,EA049-6,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +61671,Nd14,EA049,Females alone,EA049-6,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +61672,Nd15,EA049,Females alone,EA049-6,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +61673,Nd16,EA049,?,EA049-NA,,,,,, +61674,Nd17,EA049,?,EA049-NA,,,,,, +61675,Nd18,EA049,?,EA049-NA,,,,,, +61676,Nd19,EA049,?,EA049-NA,,,,,, +61677,Nd2,EA049,Females alone,EA049-6,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +61678,Nd20,EA049,?,EA049-NA,,,,,, +61679,Nd21,EA049,Females alone,EA049-6,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +61680,Nd22,EA049,Males alone,EA049-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +61681,Nd23,EA049,Males alone,EA049-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +61682,Nd24,EA049,Equal participation,EA049-4,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +61683,Nd25,EA049,Males alone,EA049-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +61684,Nd26,EA049,Differentiated but equal,EA049-3,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +61685,Nd27,EA049,Differentiated but equal,EA049-3,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +61686,Nd28,EA049,Equal participation,EA049-4,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +61687,Nd29,EA049,Males alone,EA049-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +61688,Nd3,EA049,"Both, males more",EA049-2,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +61689,Nd30,EA049,Males alone,EA049-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +61690,Nd31,EA049,?,EA049-NA,,,,,, +61691,Nd32,EA049,Males alone,EA049-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +61692,Nd33,EA049,?,EA049-NA,,,,,, +61693,Nd34,EA049,Males alone,EA049-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +61694,Nd35,EA049,Males alone,EA049-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +61695,Nd36,EA049,Males alone,EA049-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +61696,Nd37,EA049,Equal participation,EA049-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +61697,Nd38,EA049,Males alone,EA049-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +61698,Nd39,EA049,Males alone,EA049-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +61699,Nd4,EA049,?,EA049-NA,,,,,, +61700,Nd40,EA049,?,EA049-NA,,,,,, +61701,Nd41,EA049,Equal participation,EA049-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +61702,Nd42,EA049,Equal participation,EA049-4,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +61703,Nd43,EA049,Equal participation,EA049-4,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +61704,Nd44,EA049,Equal participation,EA049-4,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +61705,Nd45,EA049,Females alone,EA049-6,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +61706,Nd46,EA049,?,EA049-NA,,,,,, +61707,Nd47,EA049,?,EA049-NA,,,,,, +61708,Nd48,EA049,Males alone,EA049-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +61709,Nd49,EA049,Males alone,EA049-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +61710,Nd5,EA049,?,EA049-NA,,,,,, +61711,Nd50,EA049,?,EA049-NA,,,,,, +61712,Nd51,EA049,?,EA049-NA,,,,,, +61713,Nd52,EA049,Males alone,EA049-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +61714,Nd53,EA049,Differentiated but equal,EA049-3,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +61715,Nd54,EA049,?,EA049-NA,,,,,, +61716,Nd55,EA049,?,EA049-NA,,,,,, +61717,Nd56,EA049,Equal participation,EA049-4,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +61718,Nd57,EA049,?,EA049-NA,,,,,, +61719,Nd58,EA049,Females alone,EA049-6,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +61720,Nd59,EA049,?,EA049-NA,,,,,, +61721,Nd6,EA049,Equal participation,EA049-4,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +61722,Nd60,EA049,Females alone,EA049-6,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +61723,Nd61,EA049,Females alone,EA049-6,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +61724,Nd62,EA049,Females alone,EA049-6,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +61725,Nd63,EA049,?,EA049-NA,,,,,, +61726,Nd64,EA049,Females alone,EA049-6,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +61727,Nd65,EA049,Males alone,EA049-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +61728,Nd66,EA049,Females alone,EA049-6,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +61729,Nd67,EA049,Females alone,EA049-6,,gifford1936,,1870,EthnographicAtlas_1967_p112, +61730,Nd7,EA049,Differentiated but equal,EA049-3,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +61731,Nd8,EA049,"Both, males more",EA049-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +61732,Nd9,EA049,?,EA049-NA,,,,,, +61733,Ne1,EA049,Females alone,EA049-6,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +61734,Ne10,EA049,?,EA049-NA,,,,,, +61735,Ne11,EA049,Females alone,EA049-6,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +61736,Ne12,EA049,Females alone,EA049-6,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +61737,Ne13,EA049,Females alone,EA049-6,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +61738,Ne14,EA049,Females alone,EA049-6,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +61739,Ne15,EA049,"Both, females more",EA049-5,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +61740,Ne16,EA049,Females alone,EA049-6,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +61741,Ne17,EA049,Females alone,EA049-6,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +61742,Ne18,EA049,Females alone,EA049-6,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +61743,Ne19,EA049,Females alone,EA049-6,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +61744,Ne2,EA049,Females alone,EA049-6,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +61745,Ne20,EA049,?,EA049-NA,,,,,, +61746,Ne21,EA049,?,EA049-NA,,,,,, +61747,Ne3,EA049,?,EA049-NA,,,,,, +61748,Ne4,EA049,Females alone,EA049-6,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +61749,Ne5,EA049,Females alone,EA049-6,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +61750,Ne6,EA049,?,EA049-NA,,,,,, +61751,Ne7,EA049,Females alone,EA049-6,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +61752,Ne8,EA049,Females alone,EA049-6,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +61753,Ne9,EA049,Females alone,EA049-6,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +61754,Nf10,EA049,Males alone,EA049-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +61755,Nf11,EA049,Males alone,EA049-1,,whitman1937,,1870,EthnographicAtlas_1967_p116, +61756,Nf12,EA049,Males alone,EA049-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +61757,Nf13,EA049,Females alone,EA049-6,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61758,Nf14,EA049,Males alone,EA049-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +61759,Nf15,EA049,?,EA049-NA,,,,,, +61760,Nf2,EA049,Females alone,EA049-6,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +61761,Nf3,EA049,Differentiated but equal,EA049-3,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +61762,Nf4,EA049,Females alone,EA049-6,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +61763,Nf5,EA049,"Both, males more",EA049-2,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +61764,Nf6,EA049,Differentiated but equal,EA049-3,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +61765,Nf7,EA049,Females alone,EA049-6,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61766,Nf8,EA049,Males alone,EA049-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +61767,Nf9,EA049,Females alone,EA049-6,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +61768,Ng1,EA049,Males alone,EA049-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +61769,Ng10,EA049,Males alone,EA049-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +61770,Ng11,EA049,?,EA049-NA,,,,,, +61771,Ng12,EA049,Males alone,EA049-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +61772,Ng13,EA049,?,EA049-NA,,,,,, +61773,Ng14,EA049,?,EA049-NA,,,,,, +61774,Ng15,EA049,?,EA049-NA,,,,,, +61775,Ng2,EA049,?,EA049-NA,,,,,, +61776,Ng3,EA049,Males alone,EA049-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +61777,Ng4,EA049,?,EA049-NA,,,,,, +61778,Ng5,EA049,?,EA049-NA,,,,,, +61779,Ng6,EA049,Males alone,EA049-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +61780,Ng7,EA049,Males alone,EA049-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +61781,Ng8,EA049,Males alone,EA049-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +61782,Ng9,EA049,?,EA049-NA,,,,,, +61783,Nh1,EA049,Females alone,EA049-6,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +61784,Nh10,EA049,?,EA049-NA,,,,,, +61785,Nh11,EA049,"Both, males more",EA049-2,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +61786,Nh12,EA049,?,EA049-NA,,,,,, +61787,Nh13,EA049,?,EA049-NA,,,,,, +61788,Nh14,EA049,?,EA049-NA,,,,,, +61789,Nh15,EA049,Equal participation,EA049-4,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +61790,Nh16,EA049,Females alone,EA049-6,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61791,Nh17,EA049,"Both, females more",EA049-5,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +61792,Nh18,EA049,"Both, males more",EA049-2,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61793,Nh19,EA049,?,EA049-NA,,,,,, +61794,Nh2,EA049,?,EA049-NA,,,,,, +61795,Nh20,EA049,Males alone,EA049-1,,gifford1931,,1860,EthnographicAtlas_1967_p116, +61796,Nh21,EA049,Males alone,EA049-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61797,Nh22,EA049,?,EA049-NA,,,,,, +61798,Nh23,EA049,Males alone,EA049-1,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +61799,Nh24,EA049,?,EA049-NA,,,,,, +61800,Nh25,EA049,?,EA049-NA,,,,,, +61801,Nh26,EA049,?,EA049-NA,,,,,, +61802,Nh27,EA049,?,EA049-NA,,,,,, +61803,Nh3,EA049,Males alone,EA049-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +61804,Nh4,EA049,?,EA049-NA,,,,,, +61805,Nh5,EA049,Males alone,EA049-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +61806,Nh6,EA049,?,EA049-NA,,,,,, +61807,Nh7,EA049,?,EA049-NA,,,,,, +61808,Nh8,EA049,?,EA049-NA,,,,,, +61809,Nh9,EA049,?,EA049-NA,,,,,, +61810,Ni1,EA049,Males alone,EA049-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +61811,Ni2,EA049,?,EA049-NA,,,,,, +61812,Ni3,EA049,Males alone,EA049-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +61813,Ni4,EA049,Males alone,EA049-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +61814,Ni5,EA049,Males alone,EA049-1,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +61815,Ni6,EA049,Males alone,EA049-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +61816,Ni7,EA049,?,EA049-NA,,,,,, +61817,Ni8,EA049,?,EA049-NA,,,,,, +61818,Ni9,EA049,?,EA049-NA,,,,,, +61819,Nj1,EA049,?,EA049-NA,,,,,, +61820,Nj10,EA049,Males alone,EA049-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61821,Nj11,EA049,?,EA049-NA,,,,,, +61822,Nj12,EA049,?,EA049-NA,,,,,, +61823,Nj13,EA049,?,EA049-NA,,,,,, +61824,Nj14,EA049,?,EA049-NA,,,,,, +61825,Nj2,EA049,Males alone,EA049-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +61826,Nj3,EA049,?,EA049-NA,,,,,, +61827,Nj4,EA049,Males alone,EA049-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +61828,Nj5,EA049,?,EA049-NA,,,,,, +61829,Nj6,EA049,?,EA049-NA,,,,,, +61830,Nj7,EA049,Males alone,EA049-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61831,Nj8,EA049,Males alone,EA049-1,,foster1948,,1500,EthnographicAtlas_1967_p120, +61832,Nj9,EA049,Males alone,EA049-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +61833,Sa1,EA049,Males alone,EA049-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +61834,Sa10,EA049,Males alone,EA049-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +61835,Sa11,EA049,?,EA049-NA,,,,,, +61836,Sa12,EA049,?,EA049-NA,,,,,, +61837,Sa13,EA049,Males alone,EA049-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +61838,Sa14,EA049,?,EA049-NA,,,,,, +61839,Sa15,EA049,?,EA049-NA,,,,,, +61840,Sa16,EA049,?,EA049-NA,,,,,, +61841,Sa17,EA049,?,EA049-NA,,,,,, +61842,Sa2,EA049,?,EA049-NA,,,,,, +61843,Sa3,EA049,Males alone,EA049-1,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +61844,Sa4,EA049,?,EA049-NA,,,,,, +61845,Sa5,EA049,?,EA049-NA,,,,,, +61846,Sa6,EA049,?,EA049-NA,,,,,, +61847,Sa7,EA049,Males alone,EA049-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +61848,Sa8,EA049,?,EA049-NA,,,,,, +61849,Sa9,EA049,Equal participation,EA049-4,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +61850,Sb1,EA049,Males alone,EA049-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +61851,Sb2,EA049,"Both, males more",EA049-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +61852,Sb3,EA049,?,EA049-NA,,,,,, +61853,Sb4,EA049,"Both, males more",EA049-2,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +61854,Sb5,EA049,?,EA049-NA,,,,,, +61855,Sb6,EA049,Males alone,EA049-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +61856,Sb7,EA049,?,EA049-NA,,,,,, +61857,Sb8,EA049,?,EA049-NA,,,,,, +61858,Sb9,EA049,?,EA049-NA,,,,,, +61859,Sc1,EA049,Males alone,EA049-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +61860,Sc10,EA049,Males alone,EA049-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +61861,Sc11,EA049,Males alone,EA049-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +61862,Sc12,EA049,Males alone,EA049-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +61863,Sc13,EA049,Equal participation,EA049-4,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +61864,Sc14,EA049,Males alone,EA049-1,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +61865,Sc15,EA049,Males alone,EA049-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +61866,Sc16,EA049,Males alone,EA049-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +61867,Sc17,EA049,?,EA049-NA,,,,,, +61868,Sc18,EA049,Males alone,EA049-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +61869,Sc2,EA049,Males alone,EA049-1,,leedsnd,,1950,EthnographicAtlas_1967_p120, +61870,Sc3,EA049,Males alone,EA049-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +61871,Sc4,EA049,Males alone,EA049-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +61872,Sc5,EA049,?,EA049-NA,,,,,, +61873,Sc6,EA049,?,EA049-NA,,,,,, +61874,Sc7,EA049,Males alone,EA049-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +61875,Sc8,EA049,?,EA049-NA,,,,,, +61876,Sc9,EA049,Males alone,EA049-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +61877,Sd1,EA049,"Both, males more",EA049-2,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61878,Sd2,EA049,Males alone,EA049-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +61879,Sd3,EA049,Males alone,EA049-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +61880,Sd4,EA049,?,EA049-NA,,,,,, +61881,Sd5,EA049,?,EA049-NA,,,,,, +61882,Sd6,EA049,Males alone,EA049-1,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +61883,Sd7,EA049,Males alone,EA049-1,,fock1963,,1950,EthnographicAtlas_1967_p120, +61884,Sd8,EA049,?,EA049-NA,,,,,, +61885,Sd9,EA049,"Both, males more",EA049-2,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61886,Se1,EA049,Males alone,EA049-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +61887,Se10,EA049,?,EA049-NA,,,,,, +61888,Se11,EA049,Males alone,EA049-1,,prost1965,,1960,EthnographicAtlas_1967_p124, +61889,Se12,EA049,?,EA049-NA,,,,,, +61890,Se2,EA049,Males alone,EA049-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +61891,Se3,EA049,Males alone,EA049-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +61892,Se4,EA049,"Both, males more",EA049-2,,fejos1943,,1940,EthnographicAtlas_1967_p120, +61893,Se5,EA049,Males alone,EA049-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +61894,Se6,EA049,Males alone,EA049-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +61895,Se7,EA049,?,EA049-NA,,,,,, +61896,Se8,EA049,Males alone,EA049-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +61897,Se9,EA049,?,EA049-NA,,,,,, +61898,Sf1,EA049,Males alone,EA049-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +61899,Sf2,EA049,Males alone,EA049-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +61900,Sf3,EA049,?,EA049-NA,,,,,, +61901,Sf4,EA049,?,EA049-NA,,,,,, +61902,Sf5,EA049,Males alone,EA049-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +61903,Sf6,EA049,?,EA049-NA,,,,,, +61904,Sf7,EA049,?,EA049-NA,,,,,, +61905,Sf8,EA049,?,EA049-NA,,,,,, +61906,Sf9,EA049,?,EA049-NA,,,,,, +61907,Sg1,EA049,Differentiated but equal,EA049-3,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +61908,Sg2,EA049,"Both, males more",EA049-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61909,Sg3,EA049,?,EA049-NA,,,,,, +61910,Sg4,EA049,Females alone,EA049-6,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +61911,Sg5,EA049,Males alone,EA049-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61912,Sh1,EA049,Females alone,EA049-6,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +61913,Sh2,EA049,Males alone,EA049-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +61914,Sh3,EA049,?,EA049-NA,,,,,, +61915,Sh4,EA049,?,EA049-NA,,,,,, +61916,Sh5,EA049,Equal participation,EA049-4,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +61917,Sh6,EA049,?,EA049-NA,,,,,, +61918,Sh7,EA049,Males alone,EA049-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +61919,Sh8,EA049,Males alone,EA049-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +61920,Sh9,EA049,Differentiated but equal,EA049-3,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +61921,Si1,EA049,Males alone,EA049-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61922,Si10,EA049,Males alone,EA049-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +61923,Si2,EA049,Males alone,EA049-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +61924,Si3,EA049,Males alone,EA049-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +61925,Si4,EA049,Males alone,EA049-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +61926,Si5,EA049,Males alone,EA049-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +61927,Si6,EA049,?,EA049-NA,,,,,, +61928,Si7,EA049,Males alone,EA049-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +61929,Si8,EA049,?,EA049-NA,,,,,, +61930,Si9,EA049,?,EA049-NA,,,,,, +61931,Sj1,EA049,?,EA049-NA,,,,,, +61932,Sj10,EA049,?,EA049-NA,,,,,, +61933,Sj11,EA049,"Both, females more",EA049-5,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +61934,Sj2,EA049,"Both, males more",EA049-2,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +61935,Sj3,EA049,"Both, females more",EA049-5,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +61936,Sj4,EA049,"Both, males more",EA049-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +61937,Sj5,EA049,?,EA049-NA,,,,,, +61938,Sj6,EA049,?,EA049-NA,,,,,, +61939,Sj7,EA049,?,EA049-NA,,,,,, +61940,Sj8,EA049,Males alone,EA049-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +61941,Sj9,EA049,"Both, males more",EA049-2,"Formerly males alone (EA049 code ""6""), with no specialization specified (EA060 code ""9"")",dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +61942,ch12,EA049,Males alone,EA049-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +61943,ch13,EA049,Males alone,EA049-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +61944,ch14,EA049,Males alone,EA049-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +61945,ch15,EA049,Males alone,EA049-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +61946,ch16,EA049,Males alone,EA049-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +61947,ch17,EA049,"Both, males more",EA049-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +61948,ch18,EA049,Males alone,EA049-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +61949,ch19,EA049,Males alone,EA049-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +61950,ch20,EA049,Males alone,EA049-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +61951,ch21,EA049,Males alone,EA049-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +61952,ch22,EA049,Males alone,EA049-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +61953,ch23,EA049,Males alone,EA049-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +61954,ch24,EA049,Males alone,EA049-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +61955,ch25,EA049,Differentiated but equal,EA049-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +61956,ch26,EA049,Males alone,EA049-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +61957,ch27,EA049,Males alone,EA049-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +61958,ch28,EA049,Males alone,EA049-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +61959,ec12,EA049,Females alone,EA049-6,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +61960,ec13,EA049,"Both, males more",EA049-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +61961,ec14,EA049,"Both, males more",EA049-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +61962,ec15,EA049,Males alone,EA049-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +61963,ec16,EA049,Females alone,EA049-6,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +61964,ec17,EA049,"Both, males more",EA049-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +61965,ec18,EA049,Males alone,EA049-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +61966,ec19,EA049,"Both, males more",EA049-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +61967,ec20,EA049,Males alone,EA049-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +61968,ec21,EA049,Males alone,EA049-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +61969,Aa1,EA005,0-5%,EA005-0,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +61970,Aa2,EA005,0-5%,EA005-0,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +61971,Aa3,EA005,0-5%,EA005-0,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +61972,Aa4,EA005,0-5%,EA005-0,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +61973,Aa5,EA005,0-5%,EA005-0,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +61974,Aa6,EA005,46-55%,EA005-5,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +61975,Aa7,EA005,0-5%,EA005-0,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +61976,Aa8,EA005,0-5%,EA005-0,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +61977,Aa9,EA005,0-5%,EA005-0,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +61978,Ab1,EA005,0-5%,EA005-0,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +61979,Ab10,EA005,46-55%,EA005-5,,hunter1936,,1936,EthnographicAtlas_1967_p62, +61980,Ab11,EA005,46-55%,EA005-5,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +61981,Ab12,EA005,46-55%,EA005-5,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +61982,Ab13,EA005,46-55%,EA005-5,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +61983,Ab14,EA005,56-65%,EA005-6,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +61984,Ab15,EA005,56-65%,EA005-6,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +61985,Ab16,EA005,46-55%,EA005-5,,earthy1933,,1930,EthnographicAtlas_1967_p62, +61986,Ab17,EA005,46-55%,EA005-5,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +61987,Ab18,EA005,46-55%,EA005-5,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +61988,Ab19,EA005,46-55%,EA005-5,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +61989,Ab2,EA005,56-65%,EA005-6,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +61990,Ab20,EA005,46-55%,EA005-5,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +61991,Ab21a,EA005,56-65%,EA005-6,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +61992,Ab21b,EA005,56-65%,EA005-6,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +61993,Ab22,EA005,56-65%,EA005-6,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +61994,Ab3,EA005,36-45%,EA005-4,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +61995,Ab4,EA005,46-55%,EA005-5,,junod1927,,1920,EthnographicAtlas_1967_p62, +61996,Ab5,EA005,46-55%,EA005-5,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +61997,Ab6,EA005,56-65%,EA005-6,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +61998,Ab7,EA005,36-45%,EA005-4,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +61999,Ab8,EA005,46-55%,EA005-5,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +62000,Ab9,EA005,46-55%,EA005-5,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +62001,Ac1,EA005,56-65%,EA005-6,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +62002,Ac10,EA005,46-55%,EA005-5,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +62003,Ac11,EA005,56-65%,EA005-6,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +62004,Ac12,EA005,46-55%,EA005-5,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +62005,Ac13,EA005,36-45%,EA005-4,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +62006,Ac14,EA005,56-65%,EA005-6,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +62007,Ac15,EA005,56-65%,EA005-6,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +62008,Ac16,EA005,56-65%,EA005-6,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +62009,Ac17,EA005,56-65%,EA005-6,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +62010,Ac18,EA005,56-65%,EA005-6,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +62011,Ac19,EA005,66-75%,EA005-7,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +62012,Ac2,EA005,56-65%,EA005-6,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +62013,Ac20,EA005,66-75%,EA005-7,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +62014,Ac21,EA005,66-75%,EA005-7,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +62015,Ac22,EA005,46-55%,EA005-5,,mertens1935,,1930,EthnographicAtlas_1967_p62, +62016,Ac23,EA005,66-75%,EA005-7,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +62017,Ac24,EA005,66-75%,EA005-7,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +62018,Ac25,EA005,46-55%,EA005-5,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +62019,Ac26,EA005,46-55%,EA005-5,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +62020,Ac27,EA005,66-75%,EA005-7,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +62021,Ac28,EA005,26-35%,EA005-3,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +62022,Ac29,EA005,76-85%,EA005-8,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +62023,Ac3,EA005,66-75%,EA005-7,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +62024,Ac30,EA005,56-65%,EA005-6,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +62025,Ac31,EA005,56-65%,EA005-6,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +62026,Ac32,EA005,46-55%,EA005-5,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +62027,Ac33,EA005,56-65%,EA005-6,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +62028,Ac34,EA005,46-55%,EA005-5,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +62029,Ac35,EA005,46-55%,EA005-5,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +62030,Ac36,EA005,66-75%,EA005-7,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +62031,Ac37,EA005,56-65%,EA005-6,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +62032,Ac38,EA005,56-65%,EA005-6,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +62033,Ac39,EA005,46-55%,EA005-5,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +62034,Ac4,EA005,56-65%,EA005-6,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +62035,Ac40,EA005,56-65%,EA005-6,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +62036,Ac41,EA005,76-85%,EA005-8,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +62037,Ac42,EA005,66-75%,EA005-7,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +62038,Ac43,EA005,66-75%,EA005-7,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +62039,Ac5,EA005,56-65%,EA005-6,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +62040,Ac6,EA005,56-65%,EA005-6,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +62041,Ac7,EA005,56-65%,EA005-6,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +62042,Ac8,EA005,46-55%,EA005-5,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +62043,Ac9,EA005,56-65%,EA005-6,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +62044,Ad1,EA005,36-45%,EA005-4,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +62045,Ad10,EA005,56-65%,EA005-6,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +62046,Ad11,EA005,56-65%,EA005-6,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +62047,Ad12,EA005,66-75%,EA005-7,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +62048,Ad13,EA005,56-65%,EA005-6,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +62049,Ad14,EA005,66-75%,EA005-7,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +62050,Ad15,EA005,76-85%,EA005-8,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +62051,Ad16,EA005,56-65%,EA005-6,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +62052,Ad17,EA005,56-65%,EA005-6,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +62053,Ad18,EA005,56-65%,EA005-6,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +62054,Ad19,EA005,56-65%,EA005-6,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +62055,Ad2,EA005,56-65%,EA005-6,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +62056,Ad20,EA005,66-75%,EA005-7,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +62057,Ad21,EA005,56-65%,EA005-6,,maurice193538,,1930,EthnographicAtlas_1967_p66, +62058,Ad22,EA005,66-75%,EA005-7,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +62059,Ad23,EA005,36-45%,EA005-4,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +62060,Ad24,EA005,46-55%,EA005-5,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +62061,Ad25,EA005,46-55%,EA005-5,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +62062,Ad26,EA005,46-55%,EA005-5,,sick1916,,1910,EthnographicAtlas_1967_p66, +62063,Ad27,EA005,66-75%,EA005-7,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +62064,Ad28,EA005,56-65%,EA005-6,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +62065,Ad29,EA005,56-65%,EA005-6,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +62066,Ad3,EA005,56-65%,EA005-6,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +62067,Ad30,EA005,56-65%,EA005-6,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +62068,Ad31,EA005,56-65%,EA005-6,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +62069,Ad32,EA005,66-75%,EA005-7,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +62070,Ad33,EA005,56-65%,EA005-6,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +62071,Ad34,EA005,56-65%,EA005-6,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +62072,Ad35,EA005,56-65%,EA005-6,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +62073,Ad36,EA005,56-65%,EA005-6,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +62074,Ad37,EA005,56-65%,EA005-6,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +62075,Ad38,EA005,46-55%,EA005-5,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +62076,Ad39,EA005,76-85%,EA005-8,,gray1963,,1950,EthnographicAtlas_1967_p66, +62077,Ad4,EA005,66-75%,EA005-7,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +62078,Ad40,EA005,66-75%,EA005-7,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +62079,Ad41,EA005,56-65%,EA005-6,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +62080,Ad42,EA005,46-55%,EA005-5,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +62081,Ad43,EA005,36-45%,EA005-4,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +62082,Ad44,EA005,46-55%,EA005-5,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +62083,Ad45,EA005,46-55%,EA005-5,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +62084,Ad46,EA005,56-65%,EA005-6,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +62085,Ad47,EA005,76-85%,EA005-8,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +62086,Ad48,EA005,56-65%,EA005-6,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +62087,Ad49,EA005,56-65%,EA005-6,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +62088,Ad5,EA005,36-45%,EA005-4,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +62089,Ad50,EA005,56-65%,EA005-6,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +62090,Ad51,EA005,66-75%,EA005-7,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +62091,Ad6,EA005,56-65%,EA005-6,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +62092,Ad7,EA005,66-75%,EA005-7,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +62093,Ad8,EA005,56-65%,EA005-6,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +62094,Ad9,EA005,56-65%,EA005-6,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +62095,Ae1,EA005,56-65%,EA005-6,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +62096,Ae10,EA005,56-65%,EA005-6,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +62097,Ae11,EA005,16-25%,EA005-2,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +62098,Ae12,EA005,56-65%,EA005-6,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +62099,Ae13,EA005,46-55%,EA005-5,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +62100,Ae14,EA005,46-55%,EA005-5,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +62101,Ae15,EA005,46-55%,EA005-5,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +62102,Ae16,EA005,76-85%,EA005-8,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +62103,Ae17,EA005,46-55%,EA005-5,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +62104,Ae18,EA005,66-75%,EA005-7,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +62105,Ae19,EA005,46-55%,EA005-5,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +62106,Ae2,EA005,46-55%,EA005-5,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +62107,Ae20,EA005,46-55%,EA005-5,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +62108,Ae21,EA005,46-55%,EA005-5,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +62109,Ae22,EA005,46-55%,EA005-5,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +62110,Ae23,EA005,56-65%,EA005-6,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +62111,Ae24,EA005,56-65%,EA005-6,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +62112,Ae25,EA005,66-75%,EA005-7,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +62113,Ae26,EA005,56-65%,EA005-6,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +62114,Ae27,EA005,36-45%,EA005-4,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +62115,Ae28,EA005,36-45%,EA005-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +62116,Ae29,EA005,16-25%,EA005-2,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +62117,Ae3,EA005,46-55%,EA005-5,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +62118,Ae30,EA005,86-100%,EA005-9,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +62119,Ae31,EA005,66-75%,EA005-7,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +62120,Ae32,EA005,46-55%,EA005-5,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +62121,Ae33,EA005,66-75%,EA005-7,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +62122,Ae34,EA005,56-65%,EA005-6,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +62123,Ae35,EA005,66-75%,EA005-7,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +62124,Ae36,EA005,76-85%,EA005-8,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +62125,Ae37,EA005,66-75%,EA005-7,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +62126,Ae38,EA005,76-85%,EA005-8,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +62127,Ae39,EA005,56-65%,EA005-6,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +62128,Ae4,EA005,56-65%,EA005-6,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +62129,Ae40,EA005,66-75%,EA005-7,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +62130,Ae41,EA005,56-65%,EA005-6,,andersson1953,,1940,EthnographicAtlas_1967_p66, +62131,Ae42,EA005,46-55%,EA005-5,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +62132,Ae43,EA005,66-75%,EA005-7,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +62133,Ae44,EA005,66-75%,EA005-7,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +62134,Ae45,EA005,56-65%,EA005-6,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +62135,Ae46,EA005,76-85%,EA005-8,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +62136,Ae47,EA005,46-55%,EA005-5,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +62137,Ae48,EA005,56-65%,EA005-6,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +62138,Ae49,EA005,56-65%,EA005-6,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +62139,Ae5,EA005,76-85%,EA005-8,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +62140,Ae50,EA005,66-75%,EA005-7,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +62141,Ae51,EA005,66-75%,EA005-7,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +62142,Ae52,EA005,76-85%,EA005-8,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +62143,Ae53,EA005,56-65%,EA005-6,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +62144,Ae54,EA005,76-85%,EA005-8,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +62145,Ae55,EA005,66-75%,EA005-7,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +62146,Ae56,EA005,76-85%,EA005-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +62147,Ae57,EA005,76-85%,EA005-8,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +62148,Ae58,EA005,76-85%,EA005-8,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +62149,Ae59,EA005,66-75%,EA005-7,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +62150,Ae6,EA005,36-45%,EA005-4,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +62151,Ae7,EA005,66-75%,EA005-7,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +62152,Ae8,EA005,56-65%,EA005-6,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +62153,Ae9,EA005,76-85%,EA005-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +62154,Af1,EA005,46-55%,EA005-5,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +62155,Af10,EA005,86-100%,EA005-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +62156,Af11,EA005,56-65%,EA005-6,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +62157,Af12,EA005,76-85%,EA005-8,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +62158,Af13,EA005,46-55%,EA005-5,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +62159,Af14,EA005,56-65%,EA005-6,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +62160,Af15,EA005,56-65%,EA005-6,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +62161,Af16,EA005,66-75%,EA005-7,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +62162,Af17,EA005,66-75%,EA005-7,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +62163,Af18,EA005,66-75%,EA005-7,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +62164,Af19,EA005,46-55%,EA005-5,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +62165,Af2,EA005,86-100%,EA005-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66,"Corrected Gray 1999, v5 was coded as ""8""" +62166,Af20,EA005,56-65%,EA005-6,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +62167,Af21,EA005,46-55%,EA005-5,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +62168,Af22,EA005,16-25%,EA005-2,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +62169,Af23,EA005,56-65%,EA005-6,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +62170,Af24,EA005,66-75%,EA005-7,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +62171,Af25,EA005,46-55%,EA005-5,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +62172,Af26,EA005,66-75%,EA005-7,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +62173,Af27,EA005,66-75%,EA005-7,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +62174,Af28,EA005,56-65%,EA005-6,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +62175,Af29,EA005,66-75%,EA005-7,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +62176,Af3,EA005,66-75%,EA005-7,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +62177,Af30,EA005,66-75%,EA005-7,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +62178,Af31,EA005,66-75%,EA005-7,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +62179,Af32,EA005,76-85%,EA005-8,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62180,Af33,EA005,66-75%,EA005-7,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62181,Af34,EA005,86-100%,EA005-9,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62182,Af35,EA005,76-85%,EA005-8,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +62183,Af36,EA005,56-65%,EA005-6,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +62184,Af37,EA005,56-65%,EA005-6,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +62185,Af38,EA005,76-85%,EA005-8,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +62186,Af39,EA005,76-85%,EA005-8,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +62187,Af4,EA005,66-75%,EA005-7,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +62188,Af40,EA005,56-65%,EA005-6,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +62189,Af41,EA005,76-85%,EA005-8,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +62190,Af42,EA005,66-75%,EA005-7,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +62191,Af43,EA005,36-45%,EA005-4,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +62192,Af44,EA005,6-15%,EA005-1,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +62193,Af45,EA005,36-45%,EA005-4,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +62194,Af46,EA005,66-75%,EA005-7,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +62195,Af47,EA005,66-75%,EA005-7,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +62196,Af48,EA005,56-65%,EA005-6,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +62197,Af49,EA005,56-65%,EA005-6,,schwab1947,,1940,EthnographicAtlas_1967_p70, +62198,Af5,EA005,66-75%,EA005-7,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +62199,Af50,EA005,66-75%,EA005-7,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +62200,Af51,EA005,46-55%,EA005-5,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +62201,Af52,EA005,46-55%,EA005-5,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +62202,Af53,EA005,76-85%,EA005-8,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +62203,Af54,EA005,66-75%,EA005-7,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +62204,Af55,EA005,66-75%,EA005-7,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +62205,Af56,EA005,56-65%,EA005-6,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +62206,Af57,EA005,56-65%,EA005-6,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +62207,Af58,EA005,56-65%,EA005-6,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +62208,Af6,EA005,76-85%,EA005-8,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +62209,Af7,EA005,66-75%,EA005-7,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +62210,Af8,EA005,66-75%,EA005-7,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +62211,Af9,EA005,56-65%,EA005-6,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +62212,Ag1,EA005,46-55%,EA005-5,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +62213,Ag10,EA005,56-65%,EA005-6,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +62214,Ag11,EA005,56-65%,EA005-6,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +62215,Ag12,EA005,56-65%,EA005-6,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +62216,Ag13,EA005,56-65%,EA005-6,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +62217,Ag14,EA005,46-55%,EA005-5,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +62218,Ag15,EA005,56-65%,EA005-6,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +62219,Ag16,EA005,66-75%,EA005-7,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +62220,Ag17,EA005,56-65%,EA005-6,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +62221,Ag18,EA005,46-55%,EA005-5,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +62222,Ag19,EA005,36-45%,EA005-4,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +62223,Ag2,EA005,66-75%,EA005-7,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +62224,Ag20,EA005,56-65%,EA005-6,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +62225,Ag21,EA005,56-65%,EA005-6,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +62226,Ag22,EA005,46-55%,EA005-5,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +62227,Ag23,EA005,46-55%,EA005-5,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +62228,Ag24,EA005,56-65%,EA005-6,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +62229,Ag25,EA005,66-75%,EA005-7,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +62230,Ag26,EA005,56-65%,EA005-6,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +62231,Ag27,EA005,66-75%,EA005-7,But the economy is primarily mercantile,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +62232,Ag28,EA005,46-55%,EA005-5,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +62233,Ag29,EA005,66-75%,EA005-7,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +62234,Ag3,EA005,56-65%,EA005-6,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +62235,Ag30,EA005,66-75%,EA005-7,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +62236,Ag31,EA005,56-65%,EA005-6,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +62237,Ag32,EA005,66-75%,EA005-7,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +62238,Ag33,EA005,56-65%,EA005-6,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +62239,Ag34,EA005,56-65%,EA005-6,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +62240,Ag35,EA005,56-65%,EA005-6,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +62241,Ag36,EA005,66-75%,EA005-7,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +62242,Ag37,EA005,56-65%,EA005-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +62243,Ag38,EA005,66-75%,EA005-7,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +62244,Ag39,EA005,66-75%,EA005-7,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +62245,Ag4,EA005,66-75%,EA005-7,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +62246,Ag40,EA005,46-55%,EA005-5,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +62247,Ag41,EA005,66-75%,EA005-7,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +62248,Ag42,EA005,56-65%,EA005-6,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +62249,Ag43,EA005,76-85%,EA005-8,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +62250,Ag44,EA005,76-85%,EA005-8,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +62251,Ag45,EA005,56-65%,EA005-6,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +62252,Ag46,EA005,66-75%,EA005-7,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +62253,Ag47,EA005,56-65%,EA005-6,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +62254,Ag48,EA005,66-75%,EA005-7,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +62255,Ag49,EA005,56-65%,EA005-6,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +62256,Ag5,EA005,56-65%,EA005-6,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +62257,Ag50,EA005,66-75%,EA005-7,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +62258,Ag51,EA005,66-75%,EA005-7,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +62259,Ag52,EA005,66-75%,EA005-7,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +62260,Ag53,EA005,66-75%,EA005-7,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +62261,Ag54,EA005,76-85%,EA005-8,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +62262,Ag6,EA005,46-55%,EA005-5,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +62263,Ag7,EA005,26-35%,EA005-3,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +62264,Ag8,EA005,56-65%,EA005-6,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +62265,Ag9,EA005,56-65%,EA005-6,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +62266,Ah1,EA005,46-55%,EA005-5,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62267,Ah10,EA005,66-75%,EA005-7,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +62268,Ah11,EA005,56-65%,EA005-6,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +62269,Ah12,EA005,56-65%,EA005-6,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +62270,Ah13,EA005,56-65%,EA005-6,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +62271,Ah14,EA005,66-75%,EA005-7,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +62272,Ah15,EA005,46-55%,EA005-5,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +62273,Ah16,EA005,66-75%,EA005-7,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +62274,Ah17,EA005,66-75%,EA005-7,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +62275,Ah18,EA005,66-75%,EA005-7,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +62276,Ah19,EA005,66-75%,EA005-7,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +62277,Ah2,EA005,56-65%,EA005-6,,meek1931a,,1920,EthnographicAtlas_1967_p74, +62278,Ah20,EA005,66-75%,EA005-7,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +62279,Ah21,EA005,56-65%,EA005-6,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62280,Ah22,EA005,76-85%,EA005-8,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +62281,Ah23,EA005,66-75%,EA005-7,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62282,Ah24,EA005,66-75%,EA005-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62283,Ah25,EA005,66-75%,EA005-7,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62284,Ah26,EA005,66-75%,EA005-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62285,Ah27,EA005,76-85%,EA005-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62286,Ah28,EA005,56-65%,EA005-6,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +62287,Ah29,EA005,76-85%,EA005-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62288,Ah3,EA005,46-55%,EA005-5,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +62289,Ah30,EA005,66-75%,EA005-7,,meek1931b,,1920,EthnographicAtlas_1967_p74, +62290,Ah31,EA005,66-75%,EA005-7,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +62291,Ah32,EA005,66-75%,EA005-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62292,Ah33,EA005,56-65%,EA005-6,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +62293,Ah34,EA005,76-85%,EA005-8,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +62294,Ah35,EA005,56-65%,EA005-6,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62295,Ah36,EA005,76-85%,EA005-8,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +62296,Ah37,EA005,66-75%,EA005-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62297,Ah38,EA005,76-85%,EA005-8,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +62298,Ah39,EA005,76-85%,EA005-8,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +62299,Ah4,EA005,76-85%,EA005-8,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74, +62300,Ah5,EA005,56-65%,EA005-6,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +62301,Ah6,EA005,56-65%,EA005-6,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +62302,Ah7,EA005,86-100%,EA005-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +62303,Ah8,EA005,56-65%,EA005-6,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +62304,Ah9,EA005,66-75%,EA005-7,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +62305,Ai1,EA005,66-75%,EA005-7,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +62306,Ai10,EA005,56-65%,EA005-6,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +62307,Ai11,EA005,56-65%,EA005-6,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +62308,Ai12,EA005,56-65%,EA005-6,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +62309,Ai13,EA005,46-55%,EA005-5,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +62310,Ai14,EA005,36-45%,EA005-4,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +62311,Ai15,EA005,46-55%,EA005-5,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +62312,Ai16,EA005,46-55%,EA005-5,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +62313,Ai17,EA005,66-75%,EA005-7,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +62314,Ai18,EA005,36-45%,EA005-4,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +62315,Ai19,EA005,56-65%,EA005-6,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +62316,Ai2,EA005,66-75%,EA005-7,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +62317,Ai20,EA005,46-55%,EA005-5,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +62318,Ai21,EA005,46-55%,EA005-5,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +62319,Ai22,EA005,56-65%,EA005-6,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +62320,Ai23,EA005,86-100%,EA005-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +62321,Ai24,EA005,86-100%,EA005-9,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +62322,Ai25,EA005,56-65%,EA005-6,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +62323,Ai26,EA005,56-65%,EA005-6,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +62324,Ai27,EA005,56-65%,EA005-6,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +62325,Ai28,EA005,66-75%,EA005-7,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +62326,Ai29,EA005,56-65%,EA005-6,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +62327,Ai3,EA005,56-65%,EA005-6,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +62328,Ai30,EA005,56-65%,EA005-6,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +62329,Ai31,EA005,56-65%,EA005-6,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +62330,Ai32,EA005,46-55%,EA005-5,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +62331,Ai33,EA005,36-45%,EA005-4,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +62332,Ai34,EA005,46-55%,EA005-5,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +62333,Ai35,EA005,46-55%,EA005-5,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +62334,Ai36,EA005,56-65%,EA005-6,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +62335,Ai37,EA005,76-85%,EA005-8,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +62336,Ai38,EA005,56-65%,EA005-6,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +62337,Ai39,EA005,56-65%,EA005-6,,nadel1947,,1940,EthnographicAtlas_1967_p74, +62338,Ai4,EA005,56-65%,EA005-6,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +62339,Ai40,EA005,56-65%,EA005-6,,nadel1947,,1940,EthnographicAtlas_1967_p74, +62340,Ai41,EA005,56-65%,EA005-6,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +62341,Ai42,EA005,56-65%,EA005-6,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +62342,Ai43,EA005,56-65%,EA005-6,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +62343,Ai44,EA005,56-65%,EA005-6,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +62344,Ai45,EA005,56-65%,EA005-6,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +62345,Ai46,EA005,56-65%,EA005-6,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +62346,Ai47,EA005,56-65%,EA005-6,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +62347,Ai5,EA005,66-75%,EA005-7,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +62348,Ai6,EA005,46-55%,EA005-5,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +62349,Ai7,EA005,56-65%,EA005-6,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +62350,Ai8,EA005,46-55%,EA005-5,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +62351,Ai9,EA005,46-55%,EA005-5,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +62352,Aj1,EA005,56-65%,EA005-6,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +62353,Aj10,EA005,46-55%,EA005-5,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +62354,Aj11,EA005,26-35%,EA005-3,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +62355,Aj12,EA005,36-45%,EA005-4,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +62356,Aj13,EA005,56-65%,EA005-6,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +62357,Aj14,EA005,76-85%,EA005-8,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +62358,Aj15,EA005,56-65%,EA005-6,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +62359,Aj16,EA005,46-55%,EA005-5,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +62360,Aj17,EA005,46-55%,EA005-5,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +62361,Aj18,EA005,26-35%,EA005-3,,jensen1959,,1950,EthnographicAtlas_1967_p78, +62362,Aj19,EA005,36-45%,EA005-4,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +62363,Aj2,EA005,0-5%,EA005-0,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +62364,Aj20,EA005,46-55%,EA005-5,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +62365,Aj21,EA005,56-65%,EA005-6,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +62366,Aj22,EA005,66-75%,EA005-7,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +62367,Aj23,EA005,26-35%,EA005-3,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +62368,Aj24,EA005,26-35%,EA005-3,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +62369,Aj25,EA005,36-45%,EA005-4,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +62370,Aj26,EA005,56-65%,EA005-6,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +62371,Aj27,EA005,36-45%,EA005-4,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +62372,Aj28,EA005,16-25%,EA005-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +62373,Aj29,EA005,0-5%,EA005-0,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +62374,Aj3,EA005,36-45%,EA005-4,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +62375,Aj30,EA005,36-45%,EA005-4,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +62376,Aj31,EA005,46-55%,EA005-5,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +62377,Aj4,EA005,46-55%,EA005-5,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +62378,Aj5,EA005,36-45%,EA005-4,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +62379,Aj6,EA005,56-65%,EA005-6,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +62380,Aj7,EA005,46-55%,EA005-5,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +62381,Aj8,EA005,46-55%,EA005-5,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +62382,Aj9,EA005,46-55%,EA005-5,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +62383,Ca1,EA005,76-85%,EA005-8,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +62384,Ca10,EA005,6-15%,EA005-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +62385,Ca11,EA005,36-45%,EA005-4,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +62386,Ca12,EA005,56-65%,EA005-6,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +62387,Ca13,EA005,56-65%,EA005-6,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +62388,Ca14,EA005,66-75%,EA005-7,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +62389,Ca15,EA005,66-75%,EA005-7,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +62390,Ca16,EA005,56-65%,EA005-6,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +62391,Ca17,EA005,56-65%,EA005-6,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +62392,Ca18,EA005,56-65%,EA005-6,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +62393,Ca19,EA005,36-45%,EA005-4,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +62394,Ca2,EA005,6-15%,EA005-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +62395,Ca20,EA005,26-35%,EA005-3,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +62396,Ca21,EA005,36-45%,EA005-4,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +62397,Ca22,EA005,46-55%,EA005-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +62398,Ca23,EA005,66-75%,EA005-7,,jensen1959,,1950,EthnographicAtlas_1967_p78, +62399,Ca24,EA005,56-65%,EA005-6,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +62400,Ca25,EA005,66-75%,EA005-7,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +62401,Ca26,EA005,76-85%,EA005-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +62402,Ca27,EA005,56-65%,EA005-6,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +62403,Ca28,EA005,66-75%,EA005-7,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +62404,Ca29,EA005,76-85%,EA005-8,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +62405,Ca3,EA005,66-75%,EA005-7,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +62406,Ca30,EA005,56-65%,EA005-6,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +62407,Ca31,EA005,66-75%,EA005-7,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +62408,Ca32,EA005,66-75%,EA005-7,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +62409,Ca33,EA005,56-65%,EA005-6,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +62410,Ca34,EA005,6-15%,EA005-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +62411,Ca35,EA005,6-15%,EA005-1,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +62412,Ca36,EA005,6-15%,EA005-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +62413,Ca37,EA005,6-15%,EA005-1,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +62414,Ca38,EA005,16-25%,EA005-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +62415,Ca39,EA005,66-75%,EA005-7,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +62416,Ca4,EA005,46-55%,EA005-5,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +62417,Ca40,EA005,76-85%,EA005-8,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +62418,Ca41,EA005,76-85%,EA005-8,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +62419,Ca42,EA005,66-75%,EA005-7,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +62420,Ca43,EA005,16-25%,EA005-2,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +62421,Ca5,EA005,16-25%,EA005-2,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +62422,Ca6,EA005,0-5%,EA005-0,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +62423,Ca7,EA005,56-65%,EA005-6,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +62424,Ca8,EA005,56-65%,EA005-6,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +62425,Ca9,EA005,46-55%,EA005-5,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +62426,Cb1,EA005,66-75%,EA005-7,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +62427,Cb10,EA005,66-75%,EA005-7,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +62428,Cb11,EA005,6-15%,EA005-1,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +62429,Cb12,EA005,26-35%,EA005-3,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +62430,Cb13,EA005,16-25%,EA005-2,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +62431,Cb14,EA005,46-55%,EA005-5,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +62432,Cb15,EA005,26-35%,EA005-3,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +62433,Cb16,EA005,16-25%,EA005-2,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +62434,Cb17,EA005,56-65%,EA005-6,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +62435,Cb18,EA005,56-65%,EA005-6,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +62436,Cb19,EA005,56-65%,EA005-6,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +62437,Cb2,EA005,56-65%,EA005-6,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +62438,Cb20,EA005,46-55%,EA005-5,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +62439,Cb21,EA005,6-15%,EA005-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +62440,Cb22,EA005,56-65%,EA005-6,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +62441,Cb23,EA005,46-55%,EA005-5,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +62442,Cb24,EA005,6-15%,EA005-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +62443,Cb25,EA005,66-75%,EA005-7,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +62444,Cb26,EA005,56-65%,EA005-6,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +62445,Cb27,EA005,56-65%,EA005-6,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62446,Cb28,EA005,76-85%,EA005-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62447,Cb29,EA005,56-65%,EA005-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +62448,Cb3,EA005,46-55%,EA005-5,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +62449,Cb4,EA005,46-55%,EA005-5,,reid1930,,1920,EthnographicAtlas_1967_p78, +62450,Cb5,EA005,6-15%,EA005-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +62451,Cb6,EA005,66-75%,EA005-7,,woodnd,,1920,EthnographicAtlas_1967_p78, +62452,Cb7,EA005,56-65%,EA005-6,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +62453,Cb8,EA005,16-25%,EA005-2,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +62454,Cb9,EA005,66-75%,EA005-7,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +62455,Cc1,EA005,16-25%,EA005-2,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +62456,Cc10,EA005,26-35%,EA005-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +62457,Cc11,EA005,26-35%,EA005-3,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +62458,Cc12,EA005,16-25%,EA005-2,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +62459,Cc13,EA005,56-65%,EA005-6,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +62460,Cc14,EA005,36-45%,EA005-4,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +62461,Cc15,EA005,56-65%,EA005-6,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +62462,Cc16,EA005,16-25%,EA005-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +62463,Cc17,EA005,16-25%,EA005-2,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +62464,Cc18,EA005,16-25%,EA005-2,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +62465,Cc19,EA005,26-35%,EA005-3,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +62466,Cc2,EA005,46-55%,EA005-5,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +62467,Cc20,EA005,26-35%,EA005-3,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +62468,Cc3,EA005,66-75%,EA005-7,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +62469,Cc4,EA005,86-100%,EA005-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +62470,Cc5,EA005,26-35%,EA005-3,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +62471,Cc6,EA005,6-15%,EA005-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +62472,Cc7,EA005,6-15%,EA005-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62473,Cc8,EA005,26-35%,EA005-3,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +62474,Cc9,EA005,26-35%,EA005-3,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +62475,Cd1,EA005,56-65%,EA005-6,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +62476,Cd10,EA005,36-45%,EA005-4,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +62477,Cd11,EA005,56-65%,EA005-6,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +62478,Cd12,EA005,66-75%,EA005-7,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +62479,Cd13,EA005,26-35%,EA005-3,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +62480,Cd14,EA005,26-35%,EA005-3,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +62481,Cd15,EA005,66-75%,EA005-7,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +62482,Cd16,EA005,56-65%,EA005-6,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +62483,Cd17,EA005,16-25%,EA005-2,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +62484,Cd18,EA005,26-35%,EA005-3,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +62485,Cd19,EA005,66-75%,EA005-7,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +62486,Cd2,EA005,56-65%,EA005-6,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +62487,Cd20,EA005,36-45%,EA005-4,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +62488,Cd21,EA005,66-75%,EA005-7,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +62489,Cd3,EA005,46-55%,EA005-5,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +62490,Cd4,EA005,66-75%,EA005-7,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +62491,Cd5,EA005,56-65%,EA005-6,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +62492,Cd6,EA005,66-75%,EA005-7,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +62493,Cd7,EA005,46-55%,EA005-5,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +62494,Cd8,EA005,56-65%,EA005-6,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +62495,Cd9,EA005,56-65%,EA005-6,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +62496,Ce1,EA005,56-65%,EA005-6,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +62497,Ce2,EA005,46-55%,EA005-5,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +62498,Ce3,EA005,56-65%,EA005-6,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +62499,Ce4,EA005,46-55%,EA005-5,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62500,Ce5,EA005,76-85%,EA005-8,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +62501,Ce6,EA005,66-75%,EA005-7,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +62502,Ce7,EA005,56-65%,EA005-6,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +62503,Ce8,EA005,46-55%,EA005-5,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +62504,Cf1,EA005,56-65%,EA005-6,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +62505,Cf2,EA005,6-15%,EA005-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +62506,Cf3,EA005,36-45%,EA005-4,,munch1945,,1930,EthnographicAtlas_1967_p82, +62507,Cf4,EA005,56-65%,EA005-6,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +62508,Cf5,EA005,66-75%,EA005-7,,miner1939,,1930,EthnographicAtlas_1967_p82, +62509,Cg1,EA005,56-65%,EA005-6,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +62510,Cg2,EA005,6-15%,EA005-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +62511,Cg3,EA005,46-55%,EA005-5,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +62512,Cg4,EA005,0-5%,EA005-0,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +62513,Cg5,EA005,56-65%,EA005-6,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +62514,Ch1,EA005,56-65%,EA005-6,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +62515,Ch10,EA005,66-75%,EA005-7,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +62516,Ch11,EA005,66-75%,EA005-7,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +62517,Ch2,EA005,36-45%,EA005-4,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +62518,Ch3,EA005,66-75%,EA005-7,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +62519,Ch4,EA005,46-55%,EA005-5,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +62520,Ch5,EA005,76-85%,EA005-8,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +62521,Ch6,EA005,56-65%,EA005-6,,ember1954,,1910,EthnographicAtlas_1967_p82, +62522,Ch7,EA005,56-65%,EA005-6,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +62523,Ch8,EA005,66-75%,EA005-7,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +62524,Ch9,EA005,46-55%,EA005-5,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +62525,Ci1,EA005,6-15%,EA005-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +62526,Ci10,EA005,66-75%,EA005-7,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +62527,Ci11,EA005,46-55%,EA005-5,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +62528,Ci12,EA005,26-35%,EA005-3,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +62529,Ci2,EA005,46-55%,EA005-5,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +62530,Ci3,EA005,66-75%,EA005-7,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +62531,Ci4,EA005,46-55%,EA005-5,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +62532,Ci5,EA005,56-65%,EA005-6,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +62533,Ci6,EA005,36-45%,EA005-4,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +62534,Ci7,EA005,46-55%,EA005-5,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +62535,Ci8,EA005,66-75%,EA005-7,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +62536,Ci9,EA005,36-45%,EA005-4,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +62537,Cj1,EA005,56-65%,EA005-6,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +62538,Cj10,EA005,26-35%,EA005-3,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +62539,Cj2,EA005,0-5%,EA005-0,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +62540,Cj3,EA005,36-45%,EA005-4,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +62541,Cj4,EA005,56-65%,EA005-6,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +62542,Cj5,EA005,0-5%,EA005-0,,dickson1949,,1930,EthnographicAtlas_1967_p86, +62543,Cj6,EA005,66-75%,EA005-7,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +62544,Cj7,EA005,66-75%,EA005-7,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +62545,Cj8,EA005,86-100%,EA005-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +62546,Cj9,EA005,66-75%,EA005-7,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +62547,Ea1,EA005,46-55%,EA005-5,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +62548,Ea10,EA005,36-45%,EA005-4,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +62549,Ea11,EA005,66-75%,EA005-7,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +62550,Ea12,EA005,6-15%,EA005-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +62551,Ea13,EA005,76-85%,EA005-8,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +62552,Ea2,EA005,66-75%,EA005-7,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +62553,Ea3,EA005,46-55%,EA005-5,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +62554,Ea4,EA005,36-45%,EA005-4,,barth1956b,,1950,EthnographicAtlas_1967_p86, +62555,Ea5,EA005,56-65%,EA005-6,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +62556,Ea6,EA005,6-15%,EA005-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +62557,Ea7,EA005,56-65%,EA005-6,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +62558,Ea8,EA005,6-15%,EA005-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +62559,Ea9,EA005,66-75%,EA005-7,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +62560,Eb1,EA005,6-15%,EA005-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +62561,Eb2,EA005,56-65%,EA005-6,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +62562,Eb3,EA005,6-15%,EA005-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +62563,Eb4,EA005,56-65%,EA005-6,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +62564,Eb5,EA005,56-65%,EA005-6,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +62565,Eb6,EA005,6-15%,EA005-1,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +62566,Eb7,EA005,6-15%,EA005-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +62567,Eb8,EA005,16-25%,EA005-2,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +62568,Ec1,EA005,0-5%,EA005-0,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +62569,Ec10,EA005,0-5%,EA005-0,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +62570,Ec11,EA005,0-5%,EA005-0,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +62571,Ec2,EA005,6-15%,EA005-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62572,Ec3,EA005,0-5%,EA005-0,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +62573,Ec4,EA005,0-5%,EA005-0,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +62574,Ec5,EA005,0-5%,EA005-0,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +62575,Ec6,EA005,0-5%,EA005-0,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +62576,Ec7,EA005,6-15%,EA005-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +62577,Ec8,EA005,0-5%,EA005-0,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +62578,Ec9,EA005,16-25%,EA005-2,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +62579,Ed1,EA005,56-65%,EA005-6,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +62580,Ed10,EA005,66-75%,EA005-7,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +62581,Ed13,EA005,66-75%,EA005-7,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +62582,Ed14,EA005,66-75%,EA005-7,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +62583,Ed15a,EA005,76-85%,EA005-8,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +62584,Ed15b,EA005,76-85%,EA005-8,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +62585,Ed16,EA005,76-85%,EA005-8,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +62586,Ed2,EA005,56-65%,EA005-6,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +62587,Ed3,EA005,66-75%,EA005-7,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +62588,Ed4,EA005,56-65%,EA005-6,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +62589,Ed5,EA005,86-100%,EA005-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62590,Ed6,EA005,66-75%,EA005-7,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +62591,Ed7,EA005,56-65%,EA005-6,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +62592,Ed8,EA005,66-75%,EA005-7,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +62593,Ed9,EA005,66-75%,EA005-7,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +62594,Ee1,EA005,36-45%,EA005-4,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +62595,Ee2,EA005,56-65%,EA005-6,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +62596,Ee3,EA005,56-65%,EA005-6,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +62597,Ee4,EA005,56-65%,EA005-6,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +62598,Ee5,EA005,56-65%,EA005-6,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +62599,Ee6,EA005,46-55%,EA005-5,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +62600,Ee7,EA005,66-75%,EA005-7,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +62601,Ee8,EA005,66-75%,EA005-7,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +62602,Ef1,EA005,66-75%,EA005-7,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +62603,Ef10,EA005,76-85%,EA005-8,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62604,Ef11,EA005,76-85%,EA005-8,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +62605,Ef2,EA005,56-65%,EA005-6,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +62606,Ef3,EA005,56-65%,EA005-6,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +62607,Ef4,EA005,56-65%,EA005-6,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +62608,Ef5,EA005,46-55%,EA005-5,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +62609,Ef6,EA005,66-75%,EA005-7,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +62610,Ef7,EA005,56-65%,EA005-6,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +62611,Ef8,EA005,56-65%,EA005-6,But the Pandit themselves do not engage in food production,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +62612,Ef9,EA005,66-75%,EA005-7,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62613,Eg1,EA005,0-5%,EA005-0,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62614,Eg10,EA005,66-75%,EA005-7,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +62615,Eg11,EA005,66-75%,EA005-7,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +62616,Eg12,EA005,76-85%,EA005-8,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +62617,Eg13,EA005,46-55%,EA005-5,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62618,Eg14,EA005,56-65%,EA005-6,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +62619,Eg2,EA005,56-65%,EA005-6,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +62620,Eg3,EA005,46-55%,EA005-5,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +62621,Eg4,EA005,0-5%,EA005-0,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +62622,Eg5,EA005,56-65%,EA005-6,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +62623,Eg6,EA005,56-65%,EA005-6,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +62624,Eg7,EA005,46-55%,EA005-5,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +62625,Eg8,EA005,66-75%,EA005-7,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +62626,Eg9,EA005,56-65%,EA005-6,,elwin1939,,1930,EthnographicAtlas_1967_p90, +62627,Eh1,EA005,0-5%,EA005-0,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +62628,Eh10,EA005,76-85%,EA005-8,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +62629,Eh2,EA005,66-75%,EA005-7,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +62630,Eh3,EA005,56-65%,EA005-6,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +62631,Eh4,EA005,0-5%,EA005-0,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62632,Eh5,EA005,46-55%,EA005-5,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +62633,Eh6,EA005,56-65%,EA005-6,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +62634,Eh7,EA005,26-35%,EA005-3,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +62635,Eh8,EA005,36-45%,EA005-4,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +62636,Eh9,EA005,46-55%,EA005-5,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +62637,Ei1,EA005,76-85%,EA005-8,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62638,Ei10,EA005,56-65%,EA005-6,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +62639,Ei11,EA005,46-55%,EA005-5,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +62640,Ei12,EA005,46-55%,EA005-5,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +62641,Ei13,EA005,56-65%,EA005-6,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +62642,Ei14,EA005,56-65%,EA005-6,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +62643,Ei15,EA005,46-55%,EA005-5,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +62644,Ei16,EA005,46-55%,EA005-5,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +62645,Ei17,EA005,46-55%,EA005-5,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +62646,Ei18,EA005,76-85%,EA005-8,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +62647,Ei19,EA005,56-65%,EA005-6,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +62648,Ei2,EA005,46-55%,EA005-5,,mills1922,,1920,EthnographicAtlas_1967_p90, +62649,Ei20,EA005,66-75%,EA005-7,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +62650,Ei3,EA005,76-85%,EA005-8,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +62651,Ei4,EA005,56-65%,EA005-6,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +62652,Ei5,EA005,56-65%,EA005-6,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +62653,Ei6,EA005,66-75%,EA005-7,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +62654,Ei7,EA005,56-65%,EA005-6,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +62655,Ei8,EA005,46-55%,EA005-5,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +62656,Ei9,EA005,56-65%,EA005-6,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +62657,Ej1,EA005,46-55%,EA005-5,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +62658,Ej10,EA005,76-85%,EA005-8,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +62659,Ej11,EA005,76-85%,EA005-8,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +62660,Ej12,EA005,76-85%,EA005-8,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +62661,Ej13,EA005,46-55%,EA005-5,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +62662,Ej14,EA005,56-65%,EA005-6,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62663,Ej15,EA005,46-55%,EA005-5,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +62664,Ej16,EA005,76-85%,EA005-8,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +62665,Ej2,EA005,46-55%,EA005-5,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +62666,Ej3,EA005,0-5%,EA005-0,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +62667,Ej4,EA005,56-65%,EA005-6,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +62668,Ej5,EA005,56-65%,EA005-6,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +62669,Ej6,EA005,0-5%,EA005-0,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +62670,Ej7,EA005,46-55%,EA005-5,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +62671,Ej8,EA005,56-65%,EA005-6,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +62672,Ej9,EA005,76-85%,EA005-8,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +62673,Ia1,EA005,56-65%,EA005-6,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +62674,Ia10,EA005,56-65%,EA005-6,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +62675,Ia11,EA005,66-75%,EA005-7,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +62676,Ia12,EA005,66-75%,EA005-7,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +62677,Ia13,EA005,16-25%,EA005-2,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +62678,Ia14,EA005,46-55%,EA005-5,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +62679,Ia15,EA005,56-65%,EA005-6,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +62680,Ia16,EA005,56-65%,EA005-6,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +62681,Ia17,EA005,66-75%,EA005-7,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +62682,Ia18,EA005,76-85%,EA005-8,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +62683,Ia2,EA005,66-75%,EA005-7,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +62684,Ia3,EA005,56-65%,EA005-6,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +62685,Ia4,EA005,86-100%,EA005-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +62686,Ia5,EA005,66-75%,EA005-7,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +62687,Ia6,EA005,56-65%,EA005-6,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62688,Ia7,EA005,66-75%,EA005-7,,fox1954,,1950,EthnographicAtlas_1967_p90, +62689,Ia8,EA005,66-75%,EA005-7,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +62690,Ia9,EA005,66-75%,EA005-7,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +62691,Ib1,EA005,56-65%,EA005-6,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62692,Ib2,EA005,76-85%,EA005-8,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62693,Ib3,EA005,66-75%,EA005-7,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +62694,Ib4,EA005,66-75%,EA005-7,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +62695,Ib5,EA005,46-55%,EA005-5,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +62696,Ib6,EA005,66-75%,EA005-7,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +62697,Ib7,EA005,56-65%,EA005-6,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +62698,Ib8,EA005,16-25%,EA005-2,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +62699,Ib9,EA005,66-75%,EA005-7,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +62700,Ic1,EA005,56-65%,EA005-6,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62701,Ic10,EA005,56-65%,EA005-6,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +62702,Ic11,EA005,56-65%,EA005-6,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62703,Ic12,EA005,66-75%,EA005-7,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +62704,Ic13,EA005,76-85%,EA005-8,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +62705,Ic2,EA005,66-75%,EA005-7,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +62706,Ic3,EA005,66-75%,EA005-7,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +62707,Ic4,EA005,66-75%,EA005-7,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +62708,Ic5,EA005,56-65%,EA005-6,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +62709,Ic6,EA005,46-55%,EA005-5,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +62710,Ic7,EA005,46-55%,EA005-5,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +62711,Ic8,EA005,46-55%,EA005-5,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +62712,Ic9,EA005,66-75%,EA005-7,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +62713,Id1,EA005,0-5%,EA005-0,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +62714,Id10,EA005,0-5%,EA005-0,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +62715,Id11,EA005,0-5%,EA005-0,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +62716,Id12,EA005,0-5%,EA005-0,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +62717,Id13,EA005,0-5%,EA005-0,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +62718,Id2,EA005,0-5%,EA005-0,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +62719,Id3,EA005,0-5%,EA005-0,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +62720,Id4,EA005,0-5%,EA005-0,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +62721,Id5,EA005,0-5%,EA005-0,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +62722,Id6,EA005,0-5%,EA005-0,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +62723,Id7,EA005,0-5%,EA005-0,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +62724,Id8,EA005,0-5%,EA005-0,,roth1890,,1830,EthnographicAtlas_1967_p94, +62725,Id9,EA005,0-5%,EA005-0,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +62726,Ie1,EA005,56-65%,EA005-6,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62727,Ie10,EA005,46-55%,EA005-5,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +62728,Ie11,EA005,66-75%,EA005-7,,bowers1964,,1950,EthnographicAtlas_1967_p94, +62729,Ie12,EA005,36-45%,EA005-4,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62730,Ie13,EA005,46-55%,EA005-5,,landtman1927,,1920,EthnographicAtlas_1967_p94, +62731,Ie14,EA005,56-65%,EA005-6,,haddon1908,,1900,EthnographicAtlas_1967_p94, +62732,Ie15,EA005,56-65%,EA005-6,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62733,Ie16,EA005,36-45%,EA005-4,,williams194041,,1940,EthnographicAtlas_1967_p94, +62734,Ie17,EA005,66-75%,EA005-7,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +62735,Ie18,EA005,56-65%,EA005-6,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +62736,Ie19,EA005,36-45%,EA005-4,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +62737,Ie2,EA005,66-75%,EA005-7,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +62738,Ie20,EA005,46-55%,EA005-5,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +62739,Ie21,EA005,46-55%,EA005-5,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +62740,Ie22,EA005,56-65%,EA005-6,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +62741,Ie23,EA005,46-55%,EA005-5,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +62742,Ie24,EA005,56-65%,EA005-6,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +62743,Ie25,EA005,66-75%,EA005-7,,williamson1912,,1920,EthnographicAtlas_1967_p94, +62744,Ie26,EA005,56-65%,EA005-6,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +62745,Ie27,EA005,46-55%,EA005-5,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +62746,Ie28,EA005,56-65%,EA005-6,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +62747,Ie29,EA005,56-65%,EA005-6,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62748,Ie3,EA005,56-65%,EA005-6,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62749,Ie30,EA005,6-15%,EA005-1,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +62750,Ie31,EA005,66-75%,EA005-7,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +62751,Ie32,EA005,46-55%,EA005-5,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +62752,Ie33,EA005,6-15%,EA005-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +62753,Ie34,EA005,6-15%,EA005-1,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +62754,Ie35,EA005,56-65%,EA005-6,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +62755,Ie36,EA005,0-5%,EA005-0,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +62756,Ie37,EA005,46-55%,EA005-5,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +62757,Ie38,EA005,86-100%,EA005-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +62758,Ie39,EA005,26-35%,EA005-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +62759,Ie4,EA005,46-55%,EA005-5,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62760,Ie5,EA005,66-75%,EA005-7,,williams1936,,1930,EthnographicAtlas_1967_p94, +62761,Ie6,EA005,16-25%,EA005-2,,held1947,,1930,EthnographicAtlas_1967_p94, +62762,Ie7,EA005,66-75%,EA005-7,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +62763,Ie8,EA005,16-25%,EA005-2,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +62764,Ie9,EA005,46-55%,EA005-5,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +62765,If1,EA005,46-55%,EA005-5,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62766,If10,EA005,46-55%,EA005-5,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +62767,If11,EA005,46-55%,EA005-5,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +62768,If12,EA005,46-55%,EA005-5,,mason1954,,1940,EthnographicAtlas_1967_p98, +62769,If13,EA005,56-65%,EA005-6,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +62770,If14,EA005,36-45%,EA005-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +62771,If15,EA005,46-55%,EA005-5,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +62772,If16,EA005,46-55%,EA005-5,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +62773,If17,EA005,36-45%,EA005-4,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +62774,If2,EA005,46-55%,EA005-5,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +62775,If3,EA005,46-55%,EA005-5,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +62776,If4,EA005,46-55%,EA005-5,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +62777,If5,EA005,56-65%,EA005-6,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +62778,If6,EA005,46-55%,EA005-5,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +62779,If7,EA005,36-45%,EA005-4,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +62780,If8,EA005,66-75%,EA005-7,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +62781,If9,EA005,46-55%,EA005-5,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +62782,Ig1,EA005,46-55%,EA005-5,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +62783,Ig10,EA005,56-65%,EA005-6,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +62784,Ig11,EA005,26-35%,EA005-3,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +62785,Ig12,EA005,56-65%,EA005-6,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +62786,Ig13,EA005,36-45%,EA005-4,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +62787,Ig14,EA005,46-55%,EA005-5,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +62788,Ig15,EA005,36-45%,EA005-4,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +62789,Ig16,EA005,56-65%,EA005-6,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +62790,Ig17,EA005,26-35%,EA005-3,Primarily traders,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +62791,Ig18,EA005,46-55%,EA005-5,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +62792,Ig19,EA005,56-65%,EA005-6,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +62793,Ig2,EA005,46-55%,EA005-5,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +62794,Ig20,EA005,56-65%,EA005-6,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +62795,Ig21,EA005,56-65%,EA005-6,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +62796,Ig3,EA005,46-55%,EA005-5,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +62797,Ig4,EA005,36-45%,EA005-4,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +62798,Ig5,EA005,56-65%,EA005-6,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +62799,Ig6,EA005,56-65%,EA005-6,,ivens1927,,1900,EthnographicAtlas_1967_p98, +62800,Ig7,EA005,36-45%,EA005-4,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +62801,Ig8,EA005,66-75%,EA005-7,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +62802,Ig9,EA005,0-5%,EA005-0,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +62803,Ih1,EA005,56-65%,EA005-6,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +62804,Ih10,EA005,66-75%,EA005-7,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62805,Ih11,EA005,56-65%,EA005-6,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +62806,Ih12,EA005,46-55%,EA005-5,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +62807,Ih13,EA005,76-85%,EA005-8,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +62808,Ih14,EA005,36-45%,EA005-4,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +62809,Ih2,EA005,46-55%,EA005-5,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62810,Ih3,EA005,66-75%,EA005-7,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +62811,Ih4,EA005,46-55%,EA005-5,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62812,Ih5,EA005,56-65%,EA005-6,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +62813,Ih6,EA005,66-75%,EA005-7,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +62814,Ih7,EA005,46-55%,EA005-5,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +62815,Ih8,EA005,56-65%,EA005-6,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +62816,Ih9,EA005,46-55%,EA005-5,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62817,Ii1,EA005,56-65%,EA005-6,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +62818,Ii10,EA005,56-65%,EA005-6,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +62819,Ii12,EA005,56-65%,EA005-6,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62820,Ii13,EA005,56-65%,EA005-6,,burrows1937,,1830,EthnographicAtlas_1967_p98, +62821,Ii14,EA005,56-65%,EA005-6,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +62822,Ii2,EA005,46-55%,EA005-5,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +62823,Ii3,EA005,46-55%,EA005-5,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +62824,Ii4,EA005,36-45%,EA005-4,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +62825,Ii5,EA005,46-55%,EA005-5,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +62826,Ii6,EA005,36-45%,EA005-4,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +62827,Ii7,EA005,46-55%,EA005-5,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +62828,Ii8,EA005,56-65%,EA005-6,,burrows1936,,1840,EthnographicAtlas_1967_p98, +62829,Ii9,EA005,46-55%,EA005-5,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +62830,Ij1,EA005,56-65%,EA005-6,,buck1934,,1820,EthnographicAtlas_1967_p98, +62831,Ij10,EA005,36-45%,EA005-4,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +62832,Ij2,EA005,36-45%,EA005-4,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +62833,Ij3,EA005,46-55%,EA005-5,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +62834,Ij4,EA005,46-55%,EA005-5,,buck1932a,,1850,EthnographicAtlas_1967_p102, +62835,Ij5,EA005,36-45%,EA005-4,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +62836,Ij6,EA005,46-55%,EA005-5,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +62837,Ij7,EA005,36-45%,EA005-4,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +62838,Ij8,EA005,46-55%,EA005-5,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +62839,Ij9,EA005,66-75%,EA005-7,,metraux1940,,1860,EthnographicAtlas_1967_p102, +62840,Na1,EA005,0-5%,EA005-0,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +62841,Na10,EA005,0-5%,EA005-0,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +62842,Na11,EA005,0-5%,EA005-0,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +62843,Na12,EA005,0-5%,EA005-0,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +62844,Na13,EA005,0-5%,EA005-0,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +62845,Na14,EA005,0-5%,EA005-0,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +62846,Na15,EA005,0-5%,EA005-0,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +62847,Na16,EA005,0-5%,EA005-0,,osgood1931,,1860,EthnographicAtlas_1967_p102, +62848,Na17,EA005,0-5%,EA005-0,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62849,Na19,EA005,0-5%,EA005-0,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +62850,Na2,EA005,0-5%,EA005-0,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +62851,Na20,EA005,0-5%,EA005-0,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +62852,Na21,EA005,0-5%,EA005-0,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +62853,Na22,EA005,0-5%,EA005-0,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +62854,Na23,EA005,0-5%,EA005-0,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +62855,Na24,EA005,0-5%,EA005-0,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +62856,Na25,EA005,0-5%,EA005-0,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +62857,Na26,EA005,0-5%,EA005-0,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +62858,Na27,EA005,0-5%,EA005-0,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +62859,Na28,EA005,0-5%,EA005-0,,jenness1937,,1880,EthnographicAtlas_1967_p102, +62860,Na29,EA005,0-5%,EA005-0,,goddard1916,,1850,EthnographicAtlas_1967_p102, +62861,Na3,EA005,0-5%,EA005-0,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +62862,Na30,EA005,0-5%,EA005-0,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +62863,Na31,EA005,0-5%,EA005-0,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +62864,Na32,EA005,0-5%,EA005-0,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +62865,Na33,EA005,0-5%,EA005-0,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +62866,Na34,EA005,0-5%,EA005-0,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +62867,Na35,EA005,0-5%,EA005-0,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +62868,Na36,EA005,16-25%,EA005-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +62869,Na37,EA005,0-5%,EA005-0,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +62870,Na38,EA005,0-5%,EA005-0,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +62871,Na39,EA005,0-5%,EA005-0,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +62872,Na4,EA005,0-5%,EA005-0,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +62873,Na40,EA005,26-35%,EA005-3,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +62874,Na41,EA005,0-5%,EA005-0,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +62875,Na42,EA005,26-35%,EA005-3,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +62876,Na43,EA005,0-5%,EA005-0,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +62877,Na44,EA005,0-5%,EA005-0,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +62878,Na45,EA005,0-5%,EA005-0,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +62879,Na5,EA005,0-5%,EA005-0,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +62880,Na6,EA005,0-5%,EA005-0,,lantis1946,,1930,EthnographicAtlas_1967_p102, +62881,Na7,EA005,0-5%,EA005-0,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +62882,Na8,EA005,0-5%,EA005-0,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +62883,Na9,EA005,0-5%,EA005-0,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +62884,Nb1,EA005,0-5%,EA005-0,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +62885,Nb10,EA005,0-5%,EA005-0,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +62886,Nb11,EA005,0-5%,EA005-0,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +62887,Nb12,EA005,0-5%,EA005-0,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +62888,Nb13,EA005,0-5%,EA005-0,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +62889,Nb14,EA005,0-5%,EA005-0,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +62890,Nb15,EA005,0-5%,EA005-0,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +62891,Nb16,EA005,0-5%,EA005-0,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +62892,Nb17,EA005,0-5%,EA005-0,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +62893,Nb18,EA005,0-5%,EA005-0,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +62894,Nb19,EA005,0-5%,EA005-0,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +62895,Nb2,EA005,0-5%,EA005-0,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +62896,Nb20,EA005,0-5%,EA005-0,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +62897,Nb21,EA005,0-5%,EA005-0,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +62898,Nb22,EA005,0-5%,EA005-0,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +62899,Nb23,EA005,0-5%,EA005-0,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +62900,Nb24,EA005,0-5%,EA005-0,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +62901,Nb25,EA005,0-5%,EA005-0,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +62902,Nb26,EA005,0-5%,EA005-0,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +62903,Nb27,EA005,0-5%,EA005-0,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +62904,Nb28,EA005,0-5%,EA005-0,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +62905,Nb29,EA005,0-5%,EA005-0,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +62906,Nb3,EA005,0-5%,EA005-0,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +62907,Nb30,EA005,0-5%,EA005-0,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +62908,Nb31,EA005,0-5%,EA005-0,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +62909,Nb32,EA005,0-5%,EA005-0,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +62910,Nb33,EA005,0-5%,EA005-0,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +62911,Nb34,EA005,0-5%,EA005-0,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +62912,Nb35,EA005,0-5%,EA005-0,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +62913,Nb36,EA005,0-5%,EA005-0,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +62914,Nb37,EA005,0-5%,EA005-0,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +62915,Nb38,EA005,0-5%,EA005-0,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +62916,Nb39,EA005,0-5%,EA005-0,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +62917,Nb4,EA005,0-5%,EA005-0,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +62918,Nb5,EA005,0-5%,EA005-0,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +62919,Nb6,EA005,0-5%,EA005-0,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +62920,Nb7,EA005,0-5%,EA005-0,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +62921,Nb8,EA005,0-5%,EA005-0,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +62922,Nb9,EA005,0-5%,EA005-0,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +62923,Nc1,EA005,0-5%,EA005-0,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +62924,Nc10,EA005,0-5%,EA005-0,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +62925,Nc11,EA005,0-5%,EA005-0,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +62926,Nc12,EA005,0-5%,EA005-0,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +62927,Nc13,EA005,0-5%,EA005-0,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +62928,Nc14,EA005,0-5%,EA005-0,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +62929,Nc15,EA005,0-5%,EA005-0,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +62930,Nc16,EA005,0-5%,EA005-0,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +62931,Nc17,EA005,0-5%,EA005-0,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +62932,Nc18,EA005,0-5%,EA005-0,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +62933,Nc19,EA005,0-5%,EA005-0,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +62934,Nc2,EA005,0-5%,EA005-0,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +62935,Nc20,EA005,0-5%,EA005-0,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +62936,Nc21,EA005,0-5%,EA005-0,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +62937,Nc22,EA005,0-5%,EA005-0,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +62938,Nc23,EA005,0-5%,EA005-0,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +62939,Nc24,EA005,0-5%,EA005-0,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +62940,Nc25,EA005,0-5%,EA005-0,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +62941,Nc26,EA005,0-5%,EA005-0,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +62942,Nc27,EA005,0-5%,EA005-0,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +62943,Nc28,EA005,0-5%,EA005-0,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +62944,Nc29,EA005,0-5%,EA005-0,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +62945,Nc3,EA005,0-5%,EA005-0,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +62946,Nc30,EA005,0-5%,EA005-0,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +62947,Nc31,EA005,0-5%,EA005-0,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +62948,Nc32,EA005,0-5%,EA005-0,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +62949,Nc33,EA005,0-5%,EA005-0,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +62950,Nc34,EA005,0-5%,EA005-0,,meigs1939,,1880,EthnographicAtlas_1967_p106, +62951,Nc4,EA005,0-5%,EA005-0,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +62952,Nc5,EA005,0-5%,EA005-0,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +62953,Nc6,EA005,0-5%,EA005-0,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +62954,Nc7,EA005,0-5%,EA005-0,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +62955,Nc8,EA005,0-5%,EA005-0,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +62956,Nc9,EA005,0-5%,EA005-0,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +62957,Nd1,EA005,0-5%,EA005-0,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +62958,Nd10,EA005,0-5%,EA005-0,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +62959,Nd11,EA005,0-5%,EA005-0,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +62960,Nd12,EA005,0-5%,EA005-0,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +62961,Nd13,EA005,0-5%,EA005-0,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +62962,Nd14,EA005,0-5%,EA005-0,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +62963,Nd15,EA005,0-5%,EA005-0,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +62964,Nd16,EA005,0-5%,EA005-0,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +62965,Nd17,EA005,0-5%,EA005-0,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +62966,Nd18,EA005,0-5%,EA005-0,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +62967,Nd19,EA005,0-5%,EA005-0,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +62968,Nd2,EA005,0-5%,EA005-0,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +62969,Nd20,EA005,0-5%,EA005-0,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +62970,Nd21,EA005,0-5%,EA005-0,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +62971,Nd22,EA005,0-5%,EA005-0,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +62972,Nd23,EA005,0-5%,EA005-0,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +62973,Nd24,EA005,0-5%,EA005-0,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +62974,Nd25,EA005,0-5%,EA005-0,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +62975,Nd26,EA005,0-5%,EA005-0,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +62976,Nd27,EA005,0-5%,EA005-0,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +62977,Nd28,EA005,0-5%,EA005-0,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +62978,Nd29,EA005,0-5%,EA005-0,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +62979,Nd3,EA005,46-55%,EA005-5,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +62980,Nd30,EA005,0-5%,EA005-0,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +62981,Nd31,EA005,6-15%,EA005-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +62982,Nd32,EA005,0-5%,EA005-0,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +62983,Nd33,EA005,0-5%,EA005-0,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +62984,Nd34,EA005,0-5%,EA005-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +62985,Nd35,EA005,6-15%,EA005-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +62986,Nd36,EA005,0-5%,EA005-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +62987,Nd37,EA005,0-5%,EA005-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +62988,Nd38,EA005,6-15%,EA005-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +62989,Nd39,EA005,6-15%,EA005-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +62990,Nd4,EA005,0-5%,EA005-0,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +62991,Nd40,EA005,0-5%,EA005-0,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +62992,Nd41,EA005,0-5%,EA005-0,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +62993,Nd42,EA005,0-5%,EA005-0,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +62994,Nd43,EA005,0-5%,EA005-0,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +62995,Nd44,EA005,0-5%,EA005-0,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +62996,Nd45,EA005,0-5%,EA005-0,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +62997,Nd46,EA005,0-5%,EA005-0,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +62998,Nd47,EA005,0-5%,EA005-0,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +62999,Nd48,EA005,0-5%,EA005-0,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +63000,Nd49,EA005,0-5%,EA005-0,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +63001,Nd5,EA005,0-5%,EA005-0,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +63002,Nd50,EA005,0-5%,EA005-0,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +63003,Nd51,EA005,0-5%,EA005-0,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +63004,Nd52,EA005,6-15%,EA005-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +63005,Nd53,EA005,0-5%,EA005-0,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +63006,Nd54,EA005,6-15%,EA005-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63007,Nd55,EA005,6-15%,EA005-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +63008,Nd56,EA005,6-15%,EA005-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +63009,Nd57,EA005,0-5%,EA005-0,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +63010,Nd58,EA005,0-5%,EA005-0,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +63011,Nd59,EA005,0-5%,EA005-0,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +63012,Nd6,EA005,0-5%,EA005-0,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +63013,Nd60,EA005,0-5%,EA005-0,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +63014,Nd61,EA005,0-5%,EA005-0,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +63015,Nd62,EA005,0-5%,EA005-0,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +63016,Nd63,EA005,0-5%,EA005-0,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +63017,Nd64,EA005,0-5%,EA005-0,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +63018,Nd65,EA005,0-5%,EA005-0,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +63019,Nd66,EA005,0-5%,EA005-0,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +63020,Nd67,EA005,6-15%,EA005-1,,gifford1936,,1870,EthnographicAtlas_1967_p110, +63021,Nd7,EA005,0-5%,EA005-0,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +63022,Nd8,EA005,0-5%,EA005-0,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +63023,Nd9,EA005,0-5%,EA005-0,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +63024,Ne1,EA005,0-5%,EA005-0,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +63025,Ne10,EA005,46-55%,EA005-5,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +63026,Ne11,EA005,0-5%,EA005-0,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +63027,Ne12,EA005,0-5%,EA005-0,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +63028,Ne13,EA005,0-5%,EA005-0,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +63029,Ne14,EA005,0-5%,EA005-0,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +63030,Ne15,EA005,56-65%,EA005-6,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +63031,Ne16,EA005,0-5%,EA005-0,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +63032,Ne17,EA005,0-5%,EA005-0,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +63033,Ne18,EA005,0-5%,EA005-0,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +63034,Ne19,EA005,0-5%,EA005-0,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +63035,Ne2,EA005,0-5%,EA005-0,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +63036,Ne20,EA005,6-15%,EA005-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +63037,Ne21,EA005,0-5%,EA005-0,,driverandmassey1957;garcia1760;romneynd,,1760,Ethnology_Vol7_No1_Jan_1968, +63038,Ne3,EA005,0-5%,EA005-0,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +63039,Ne4,EA005,0-5%,EA005-0,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +63040,Ne5,EA005,0-5%,EA005-0,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +63041,Ne6,EA005,46-55%,EA005-5,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +63042,Ne7,EA005,0-5%,EA005-0,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +63043,Ne8,EA005,0-5%,EA005-0,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +63044,Ne9,EA005,0-5%,EA005-0,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +63045,Nf10,EA005,46-55%,EA005-5,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +63046,Nf11,EA005,36-45%,EA005-4,,whitman1937,,1870,EthnographicAtlas_1967_p114, +63047,Nf12,EA005,26-35%,EA005-3,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +63048,Nf13,EA005,26-35%,EA005-3,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63049,Nf14,EA005,36-45%,EA005-4,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +63050,Nf15,EA005,36-45%,EA005-4,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +63051,Nf2,EA005,26-35%,EA005-3,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +63052,Nf3,EA005,36-45%,EA005-4,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +63053,Nf4,EA005,36-45%,EA005-4,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +63054,Nf5,EA005,46-55%,EA005-5,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +63055,Nf6,EA005,46-55%,EA005-5,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +63056,Nf7,EA005,36-45%,EA005-4,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63057,Nf8,EA005,46-55%,EA005-5,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +63058,Nf9,EA005,16-25%,EA005-2,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +63059,Ng1,EA005,46-55%,EA005-5,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +63060,Ng10,EA005,36-45%,EA005-4,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +63061,Ng11,EA005,56-65%,EA005-6,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +63062,Ng12,EA005,36-45%,EA005-4,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +63063,Ng13,EA005,16-25%,EA005-2,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +63064,Ng14,EA005,56-65%,EA005-6,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +63065,Ng15,EA005,36-45%,EA005-4,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +63066,Ng2,EA005,?,EA005-NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +63067,Ng3,EA005,36-45%,EA005-4,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +63068,Ng4,EA005,16-25%,EA005-2,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +63069,Ng5,EA005,46-55%,EA005-5,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +63070,Ng6,EA005,36-45%,EA005-4,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +63071,Ng7,EA005,46-55%,EA005-5,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +63072,Ng8,EA005,36-45%,EA005-4,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +63073,Ng9,EA005,66-75%,EA005-7,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +63074,Nh1,EA005,0-5%,EA005-0,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +63075,Nh10,EA005,66-75%,EA005-7,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +63076,Nh11,EA005,76-85%,EA005-8,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +63077,Nh12,EA005,56-65%,EA005-6,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +63078,Nh13,EA005,66-75%,EA005-7,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +63079,Nh14,EA005,66-75%,EA005-7,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +63080,Nh15,EA005,6-15%,EA005-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +63081,Nh16,EA005,16-25%,EA005-2,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63082,Nh17,EA005,26-35%,EA005-3,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +63083,Nh18,EA005,66-75%,EA005-7,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63084,Nh19,EA005,36-45%,EA005-4,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +63085,Nh2,EA005,66-75%,EA005-7,,dozier1954,,1950,EthnographicAtlas_1967_p114, +63086,Nh20,EA005,36-45%,EA005-4,,gifford1931,,1860,EthnographicAtlas_1967_p114, +63087,Nh21,EA005,36-45%,EA005-4,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63088,Nh22,EA005,46-55%,EA005-5,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +63089,Nh23,EA005,6-15%,EA005-1,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +63090,Nh24,EA005,0-5%,EA005-0,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +63091,Nh25,EA005,66-75%,EA005-7,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +63092,Nh26,EA005,76-85%,EA005-8,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +63093,Nh27,EA005,86-100%,EA005-9,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +63094,Nh3,EA005,36-45%,EA005-4,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +63095,Nh4,EA005,76-85%,EA005-8,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +63096,Nh5,EA005,26-35%,EA005-3,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +63097,Nh6,EA005,66-75%,EA005-7,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +63098,Nh7,EA005,66-75%,EA005-7,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +63099,Nh8,EA005,66-75%,EA005-7,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +63100,Nh9,EA005,66-75%,EA005-7,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +63101,Ni1,EA005,46-55%,EA005-5,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +63102,Ni2,EA005,46-55%,EA005-5,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +63103,Ni3,EA005,46-55%,EA005-5,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +63104,Ni4,EA005,0-5%,EA005-0,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +63105,Ni5,EA005,0-5%,EA005-0,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +63106,Ni6,EA005,46-55%,EA005-5,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +63107,Ni7,EA005,56-65%,EA005-6,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +63108,Ni8,EA005,46-55%,EA005-5,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +63109,Ni9,EA005,76-85%,EA005-8,,mason1948;radin1931,,1920,Ethnology_Vol7_No1_Jan_1968, +63110,Nj1,EA005,76-85%,EA005-8,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63111,Nj10,EA005,76-85%,EA005-8,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63112,Nj11,EA005,66-75%,EA005-7,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +63113,Nj12,EA005,76-85%,EA005-8,,romneyandromney1963,,1950,Ethnology_Vol7_No1_Jan_1968, +63114,Nj13,EA005,76-85%,EA005-8,,soustelle1937,,1900,Ethnology_Vol7_No1_Jan_1968, +63115,Nj14,EA005,76-85%,EA005-8,,turnerandolmstead1966,,1960,Ethnology_Vol7_No1_Jan_1968, +63116,Nj2,EA005,66-75%,EA005-7,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +63117,Nj3,EA005,76-85%,EA005-8,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +63118,Nj4,EA005,56-65%,EA005-6,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +63119,Nj5,EA005,76-85%,EA005-8,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +63120,Nj6,EA005,36-45%,EA005-4,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +63121,Nj7,EA005,76-85%,EA005-8,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63122,Nj8,EA005,66-75%,EA005-7,,foster1948,,1500,EthnographicAtlas_1967_p118, +63123,Nj9,EA005,76-85%,EA005-8,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +63124,Sa1,EA005,56-65%,EA005-6,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +63125,Sa10,EA005,56-65%,EA005-6,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +63126,Sa11,EA005,76-85%,EA005-8,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +63127,Sa12,EA005,66-75%,EA005-7,,stone1948,,1948,EthnographicAtlas_1967_p118, +63128,Sa13,EA005,86-100%,EA005-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +63129,Sa14,EA005,36-45%,EA005-4,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +63130,Sa15,EA005,76-85%,EA005-8,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +63131,Sa16,EA005,66-75%,EA005-7,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +63132,Sa17,EA005,86-100%,EA005-9,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +63133,Sa2,EA005,66-75%,EA005-7,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63134,Sa3,EA005,56-65%,EA005-6,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +63135,Sa4,EA005,56-65%,EA005-6,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +63136,Sa5,EA005,46-55%,EA005-5,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +63137,Sa6,EA005,66-75%,EA005-7,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +63138,Sa7,EA005,56-65%,EA005-6,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +63139,Sa8,EA005,86-100%,EA005-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +63140,Sa9,EA005,16-25%,EA005-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +63141,Sb1,EA005,36-45%,EA005-4,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +63142,Sb2,EA005,76-85%,EA005-8,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +63143,Sb3,EA005,26-35%,EA005-3,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +63144,Sb4,EA005,76-85%,EA005-8,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +63145,Sb5,EA005,0-5%,EA005-0,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +63146,Sb6,EA005,6-15%,EA005-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +63147,Sb7,EA005,46-55%,EA005-5,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +63148,Sb8,EA005,56-65%,EA005-6,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +63149,Sb9,EA005,76-85%,EA005-8,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +63150,Sc1,EA005,6-15%,EA005-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +63151,Sc10,EA005,46-55%,EA005-5,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +63152,Sc11,EA005,56-65%,EA005-6,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +63153,Sc12,EA005,46-55%,EA005-5,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +63154,Sc13,EA005,46-55%,EA005-5,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +63155,Sc14,EA005,46-55%,EA005-5,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +63156,Sc15,EA005,36-45%,EA005-4,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +63157,Sc16,EA005,26-35%,EA005-3,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +63158,Sc17,EA005,56-65%,EA005-6,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +63159,Sc18,EA005,76-85%,EA005-8,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +63160,Sc2,EA005,36-45%,EA005-4,,leedsnd,,1950,EthnographicAtlas_1967_p118, +63161,Sc3,EA005,36-45%,EA005-4,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +63162,Sc4,EA005,36-45%,EA005-4,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +63163,Sc5,EA005,36-45%,EA005-4,,farabee1918,,1900,EthnographicAtlas_1967_p118, +63164,Sc6,EA005,46-55%,EA005-5,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63165,Sc7,EA005,36-45%,EA005-4,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +63166,Sc8,EA005,6-15%,EA005-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +63167,Sc9,EA005,46-55%,EA005-5,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +63168,Sd1,EA005,36-45%,EA005-4,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63169,Sd2,EA005,46-55%,EA005-5,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +63170,Sd3,EA005,46-55%,EA005-5,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +63171,Sd4,EA005,16-25%,EA005-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +63172,Sd5,EA005,56-65%,EA005-6,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +63173,Sd6,EA005,0-5%,EA005-0,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +63174,Sd7,EA005,46-55%,EA005-5,,fock1963,,1950,EthnographicAtlas_1967_p118, +63175,Sd8,EA005,16-25%,EA005-2,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +63176,Sd9,EA005,86-100%,EA005-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63177,Se1,EA005,6-15%,EA005-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +63178,Se10,EA005,36-45%,EA005-4,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +63179,Se11,EA005,36-45%,EA005-4,,prost1965,,1960,EthnographicAtlas_1967_p122, +63180,Se12,EA005,46-55%,EA005-5,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +63181,Se2,EA005,36-45%,EA005-4,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +63182,Se3,EA005,56-65%,EA005-6,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +63183,Se4,EA005,36-45%,EA005-4,,fejos1943,,1940,EthnographicAtlas_1967_p118, +63184,Se5,EA005,46-55%,EA005-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +63185,Se6,EA005,36-45%,EA005-4,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +63186,Se7,EA005,66-75%,EA005-7,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63187,Se8,EA005,46-55%,EA005-5,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +63188,Se9,EA005,26-35%,EA005-3,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +63189,Sf1,EA005,66-75%,EA005-7,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +63190,Sf2,EA005,56-65%,EA005-6,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +63191,Sf3,EA005,46-55%,EA005-5,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +63192,Sf4,EA005,56-65%,EA005-6,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +63193,Sf5,EA005,56-65%,EA005-6,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +63194,Sf6,EA005,76-85%,EA005-8,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +63195,Sf7,EA005,46-55%,EA005-5,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +63196,Sf8,EA005,36-45%,EA005-4,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +63197,Sf9,EA005,6-15%,EA005-1,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +63198,Sg1,EA005,0-5%,EA005-0,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +63199,Sg2,EA005,56-65%,EA005-6,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63200,Sg3,EA005,0-5%,EA005-0,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +63201,Sg4,EA005,0-5%,EA005-0,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +63202,Sg5,EA005,0-5%,EA005-0,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63203,Sh1,EA005,6-15%,EA005-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +63204,Sh2,EA005,26-35%,EA005-3,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +63205,Sh3,EA005,0-5%,EA005-0,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +63206,Sh4,EA005,16-25%,EA005-2,,oberg1949,,1940,EthnographicAtlas_1967_p122, +63207,Sh5,EA005,6-15%,EA005-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +63208,Sh6,EA005,0-5%,EA005-0,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +63209,Sh7,EA005,46-55%,EA005-5,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +63210,Sh8,EA005,26-35%,EA005-3,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +63211,Sh9,EA005,6-15%,EA005-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +63212,Si1,EA005,0-5%,EA005-0,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63213,Si10,EA005,66-75%,EA005-7,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +63214,Si2,EA005,36-45%,EA005-4,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +63215,Si3,EA005,46-55%,EA005-5,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63216,Si4,EA005,16-25%,EA005-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +63217,Si5,EA005,36-45%,EA005-4,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +63218,Si6,EA005,6-15%,EA005-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +63219,Si7,EA005,46-55%,EA005-5,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +63220,Si8,EA005,46-55%,EA005-5,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +63221,Si9,EA005,36-45%,EA005-4,,levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +63222,Sj1,EA005,16-25%,EA005-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +63223,Sj10,EA005,46-55%,EA005-5,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63224,Sj11,EA005,16-25%,EA005-2,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +63225,Sj2,EA005,36-45%,EA005-4,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +63226,Sj3,EA005,0-5%,EA005-0,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +63227,Sj4,EA005,36-45%,EA005-4,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +63228,Sj5,EA005,0-5%,EA005-0,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +63229,Sj6,EA005,46-55%,EA005-5,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63230,Sj7,EA005,46-55%,EA005-5,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +63231,Sj8,EA005,36-45%,EA005-4,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +63232,Sj9,EA005,56-65%,EA005-6,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +63233,ch12,EA005,46-55%,EA005-5,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +63234,ch13,EA005,86-100%,EA005-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +63235,ch14,EA005,86-100%,EA005-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +63236,ch15,EA005,76-85%,EA005-8,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +63237,ch16,EA005,56-65%,EA005-6,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +63238,ch17,EA005,66-75%,EA005-7,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +63239,ch18,EA005,66-75%,EA005-7,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +63240,ch19,EA005,26-35%,EA005-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +63241,ch20,EA005,56-65%,EA005-6,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +63242,ch21,EA005,66-75%,EA005-7,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +63243,ch22,EA005,76-85%,EA005-8,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +63244,ch23,EA005,86-100%,EA005-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +63245,ch24,EA005,6-15%,EA005-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +63246,ch25,EA005,56-65%,EA005-6,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +63247,ch26,EA005,86-100%,EA005-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +63248,ch27,EA005,66-75%,EA005-7,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +63249,ch28,EA005,66-75%,EA005-7,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +63250,ec12,EA005,0-5%,EA005-0,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +63251,ec13,EA005,0-5%,EA005-0,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +63252,ec14,EA005,0-5%,EA005-0,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +63253,ec15,EA005,0-5%,EA005-0,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +63254,ec16,EA005,0-5%,EA005-0,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +63255,ec17,EA005,0-5%,EA005-0,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +63256,ec18,EA005,0-5%,EA005-0,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +63257,ec19,EA005,0-5%,EA005-0,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +63258,ec20,EA005,0-5%,EA005-0,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +63259,ec21,EA005,0-5%,EA005-0,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +63260,Aa1,EA050,"Both, females more",EA050-5,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +63261,Aa2,EA050,"Both, females more",EA050-5,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +63262,Aa3,EA050,Females alone,EA050-6,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +63263,Aa4,EA050,?,EA050-NA,,,,,, +63264,Aa5,EA050,Females alone,EA050-6,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +63265,Aa6,EA050,Females alone,EA050-6,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p64, +63266,Aa7,EA050,Females alone,EA050-6,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +63267,Aa8,EA050,Females alone,EA050-6,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +63268,Aa9,EA050,Females alone,EA050-6,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +63269,Ab1,EA050,Females alone,EA050-6,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +63270,Ab10,EA050,Females alone,EA050-6,,hunter1936,,1936,EthnographicAtlas_1967_p64, +63271,Ab11,EA050,Females alone,EA050-6,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +63272,Ab12,EA050,Activity is absent,EA050-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +63273,Ab13,EA050,Activity is absent,EA050-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +63274,Ab14,EA050,Females alone,EA050-6,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +63275,Ab15,EA050,Activity is absent,EA050-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +63276,Ab16,EA050,Females alone,EA050-6,,earthy1933,,1930,EthnographicAtlas_1967_p64, +63277,Ab17,EA050,?,EA050-NA,,,,,, +63278,Ab18,EA050,Females alone,EA050-6,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +63279,Ab19,EA050,"Both, females more",EA050-5,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +63280,Ab2,EA050,Females alone,EA050-6,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +63281,Ab20,EA050,?,EA050-NA,,,,,, +63282,Ab21a,EA050,?,EA050-NA,,,,,, +63283,Ab21b,EA050,?,EA050-NA,,,,,, +63284,Ab22,EA050,?,EA050-NA,,,,,, +63285,Ab3,EA050,"Both, females more",EA050-5,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +63286,Ab4,EA050,Females alone,EA050-6,,junod1927,,1920,EthnographicAtlas_1967_p64, +63287,Ab5,EA050,Females alone,EA050-6,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +63288,Ab6,EA050,"Both, females more",EA050-5,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +63289,Ab7,EA050,Activity is absent,EA050-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p64, +63290,Ab8,EA050,Females alone,EA050-6,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +63291,Ab9,EA050,Females alone,EA050-6,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +63292,Ac1,EA050,Females alone,EA050-6,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +63293,Ac10,EA050,Females alone,EA050-6,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +63294,Ac11,EA050,?,EA050-NA,,,,,, +63295,Ac12,EA050,?,EA050-NA,,,,,, +63296,Ac13,EA050,?,EA050-NA,,,,,, +63297,Ac14,EA050,Differentiated but equal,EA050-3,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p64, +63298,Ac15,EA050,?,EA050-NA,,,,,, +63299,Ac16,EA050,?,EA050-NA,,,,,, +63300,Ac17,EA050,?,EA050-NA,,,,,, +63301,Ac18,EA050,Equal participation,EA050-4,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +63302,Ac19,EA050,?,EA050-NA,,,,,, +63303,Ac2,EA050,?,EA050-NA,,,,,, +63304,Ac20,EA050,?,EA050-NA,,,,,, +63305,Ac21,EA050,?,EA050-NA,,,,,, +63306,Ac22,EA050,?,EA050-NA,,,,,, +63307,Ac23,EA050,Females alone,EA050-6,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +63308,Ac24,EA050,?,EA050-NA,,,,,, +63309,Ac25,EA050,Differentiated but equal,EA050-3,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p64, +63310,Ac26,EA050,?,EA050-NA,,,,,, +63311,Ac27,EA050,?,EA050-NA,,,,,, +63312,Ac28,EA050,?,EA050-NA,,,,,, +63313,Ac29,EA050,?,EA050-NA,,,,,, +63314,Ac3,EA050,"Both, females more",EA050-5,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +63315,Ac30,EA050,Females alone,EA050-6,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +63316,Ac31,EA050,Females alone,EA050-6,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +63317,Ac32,EA050,?,EA050-NA,,,,,, +63318,Ac33,EA050,?,EA050-NA,,,,,, +63319,Ac34,EA050,?,EA050-NA,,,,,, +63320,Ac35,EA050,?,EA050-NA,,,,,, +63321,Ac36,EA050,?,EA050-NA,,,,,, +63322,Ac37,EA050,?,EA050-NA,,,,,, +63323,Ac38,EA050,?,EA050-NA,,,,,, +63324,Ac39,EA050,?,EA050-NA,,,,,, +63325,Ac4,EA050,Activity is absent,EA050-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +63326,Ac40,EA050,?,EA050-NA,,,,,, +63327,Ac41,EA050,?,EA050-NA,,,,,, +63328,Ac42,EA050,?,EA050-NA,,,,,, +63329,Ac43,EA050,?,EA050-NA,,,,,, +63330,Ac5,EA050,Activity is absent,EA050-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +63331,Ac6,EA050,Activity is absent,EA050-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +63332,Ac7,EA050,Activity is absent,EA050-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +63333,Ac8,EA050,?,EA050-NA,,,,,, +63334,Ac9,EA050,Activity is absent,EA050-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +63335,Ad1,EA050,Activity is absent,EA050-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +63336,Ad10,EA050,?,EA050-NA,,,,,, +63337,Ad11,EA050,"Both, females more",EA050-5,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +63338,Ad12,EA050,?,EA050-NA,,,,,, +63339,Ad13,EA050,Activity is absent,EA050-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +63340,Ad14,EA050,?,EA050-NA,,,,,, +63341,Ad15,EA050,?,EA050-NA,,,,,, +63342,Ad16,EA050,?,EA050-NA,,,,,, +63343,Ad17,EA050,Females alone,EA050-6,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +63344,Ad18,EA050,?,EA050-NA,,,,,, +63345,Ad19,EA050,?,EA050-NA,,,,,, +63346,Ad2,EA050,Activity is absent,EA050-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +63347,Ad20,EA050,"Both, females more",EA050-5,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +63348,Ad21,EA050,?,EA050-NA,,,,,, +63349,Ad22,EA050,"Both, females more",EA050-5,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +63350,Ad23,EA050,?,EA050-NA,,,,,, +63351,Ad24,EA050,?,EA050-NA,,,,,, +63352,Ad25,EA050,?,EA050-NA,,,,,, +63353,Ad26,EA050,?,EA050-NA,,,,,, +63354,Ad27,EA050,?,EA050-NA,,,,,, +63355,Ad28,EA050,?,EA050-NA,,,,,, +63356,Ad29,EA050,?,EA050-NA,,,,,, +63357,Ad3,EA050,Activity is absent,EA050-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +63358,Ad30,EA050,Females alone,EA050-6,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +63359,Ad31,EA050,?,EA050-NA,,,,,, +63360,Ad32,EA050,?,EA050-NA,,,,,, +63361,Ad33,EA050,?,EA050-NA,,,,,, +63362,Ad34,EA050,?,EA050-NA,,,,,, +63363,Ad35,EA050,?,EA050-NA,,,,,, +63364,Ad36,EA050,?,EA050-NA,,,,,, +63365,Ad37,EA050,?,EA050-NA,,,,,, +63366,Ad38,EA050,?,EA050-NA,,,,,, +63367,Ad39,EA050,Activity is absent,EA050-9,,gray1963,,1950,EthnographicAtlas_1967_p68, +63368,Ad4,EA050,Activity is absent,EA050-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +63369,Ad40,EA050,?,EA050-NA,,,,,, +63370,Ad41,EA050,?,EA050-NA,,,,,, +63371,Ad42,EA050,?,EA050-NA,,,,,, +63372,Ad43,EA050,?,EA050-NA,,,,,, +63373,Ad44,EA050,?,EA050-NA,,,,,, +63374,Ad45,EA050,?,EA050-NA,,,,,, +63375,Ad46,EA050,?,EA050-NA,,,,,, +63376,Ad47,EA050,"Both, females more",EA050-5,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +63377,Ad48,EA050,?,EA050-NA,,,,,, +63378,Ad49,EA050,?,EA050-NA,,,,,, +63379,Ad5,EA050,?,EA050-NA,,,,,, +63380,Ad50,EA050,?,EA050-NA,,,,,, +63381,Ad51,EA050,?,EA050-NA,,,,,, +63382,Ad6,EA050,Activity is absent,EA050-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +63383,Ad7,EA050,Activity is absent,EA050-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +63384,Ad8,EA050,Activity is absent,EA050-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +63385,Ad9,EA050,Activity is absent,EA050-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +63386,Ae1,EA050,?,EA050-NA,,,,,, +63387,Ae10,EA050,Differentiated but equal,EA050-3,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +63388,Ae11,EA050,?,EA050-NA,,,,,, +63389,Ae12,EA050,?,EA050-NA,,,,,, +63390,Ae13,EA050,?,EA050-NA,,,,,, +63391,Ae14,EA050,?,EA050-NA,,,,,, +63392,Ae15,EA050,?,EA050-NA,,,,,, +63393,Ae16,EA050,?,EA050-NA,,,,,, +63394,Ae17,EA050,"Both, females more",EA050-5,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +63395,Ae18,EA050,Females alone,EA050-6,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +63396,Ae19,EA050,?,EA050-NA,,,,,, +63397,Ae2,EA050,"Both, males more",EA050-2,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +63398,Ae20,EA050,?,EA050-NA,,,,,, +63399,Ae21,EA050,?,EA050-NA,,,,,, +63400,Ae22,EA050,?,EA050-NA,,,,,, +63401,Ae23,EA050,?,EA050-NA,,,,,, +63402,Ae24,EA050,?,EA050-NA,,,,,, +63403,Ae25,EA050,?,EA050-NA,,,,,, +63404,Ae26,EA050,?,EA050-NA,,,,,, +63405,Ae27,EA050,?,EA050-NA,,,,,, +63406,Ae28,EA050,?,EA050-NA,,,,,, +63407,Ae29,EA050,Males alone,EA050-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +63408,Ae3,EA050,"Both, females more",EA050-5,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +63409,Ae30,EA050,?,EA050-NA,,,,,, +63410,Ae31,EA050,?,EA050-NA,,,,,, +63411,Ae32,EA050,?,EA050-NA,,,,,, +63412,Ae33,EA050,?,EA050-NA,,,,,, +63413,Ae34,EA050,?,EA050-NA,,,,,, +63414,Ae35,EA050,?,EA050-NA,,,,,, +63415,Ae36,EA050,?,EA050-NA,,,,,, +63416,Ae37,EA050,?,EA050-NA,,,,,, +63417,Ae38,EA050,?,EA050-NA,,,,,, +63418,Ae39,EA050,Females alone,EA050-6,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +63419,Ae4,EA050,Females alone,EA050-6,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +63420,Ae40,EA050,?,EA050-NA,,,,,, +63421,Ae41,EA050,?,EA050-NA,,,,,, +63422,Ae42,EA050,?,EA050-NA,,,,,, +63423,Ae43,EA050,?,EA050-NA,,,,,, +63424,Ae44,EA050,?,EA050-NA,,,,,, +63425,Ae45,EA050,?,EA050-NA,,,,,, +63426,Ae46,EA050,?,EA050-NA,,,,,, +63427,Ae47,EA050,?,EA050-NA,,,,,, +63428,Ae48,EA050,?,EA050-NA,,,,,, +63429,Ae49,EA050,?,EA050-NA,,,,,, +63430,Ae5,EA050,Activity is absent,EA050-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +63431,Ae50,EA050,?,EA050-NA,,,,,, +63432,Ae51,EA050,?,EA050-NA,,,,,, +63433,Ae52,EA050,?,EA050-NA,,,,,, +63434,Ae53,EA050,?,EA050-NA,,,,,, +63435,Ae54,EA050,?,EA050-NA,,,,,, +63436,Ae55,EA050,?,EA050-NA,,,,,, +63437,Ae56,EA050,?,EA050-NA,,,,,, +63438,Ae57,EA050,?,EA050-NA,,,,,, +63439,Ae58,EA050,?,EA050-NA,,,,,, +63440,Ae59,EA050,?,EA050-NA,,,,,, +63441,Ae6,EA050,Females alone,EA050-6,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +63442,Ae7,EA050,?,EA050-NA,,,,,, +63443,Ae8,EA050,Activity is absent,EA050-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +63444,Ae9,EA050,?,EA050-NA,,,,,, +63445,Af1,EA050,Activity is absent,EA050-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +63446,Af10,EA050,Activity is absent,EA050-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +63447,Af11,EA050,?,EA050-NA,,,,,, +63448,Af12,EA050,?,EA050-NA,,,,,, +63449,Af13,EA050,?,EA050-NA,,,,,, +63450,Af14,EA050,?,EA050-NA,,,,,, +63451,Af15,EA050,Males alone,EA050-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +63452,Af16,EA050,?,EA050-NA,,,,,, +63453,Af17,EA050,?,EA050-NA,,,,,, +63454,Af18,EA050,?,EA050-NA,,,,,, +63455,Af19,EA050,?,EA050-NA,,,,,, +63456,Af2,EA050,Activity is absent,EA050-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +63457,Af20,EA050,?,EA050-NA,,,,,, +63458,Af21,EA050,?,EA050-NA,,,,,, +63459,Af22,EA050,?,EA050-NA,,,,,, +63460,Af23,EA050,?,EA050-NA,,,,,, +63461,Af24,EA050,Females alone,EA050-6,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +63462,Af25,EA050,Males alone,EA050-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +63463,Af26,EA050,?,EA050-NA,,,,,, +63464,Af27,EA050,?,EA050-NA,,,,,, +63465,Af28,EA050,?,EA050-NA,,,,,, +63466,Af29,EA050,?,EA050-NA,,,,,, +63467,Af3,EA050,Activity is absent,EA050-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +63468,Af30,EA050,?,EA050-NA,,,,,, +63469,Af31,EA050,?,EA050-NA,,,,,, +63470,Af32,EA050,?,EA050-NA,,,,,, +63471,Af33,EA050,?,EA050-NA,,,,,, +63472,Af34,EA050,?,EA050-NA,,,,,, +63473,Af35,EA050,?,EA050-NA,,,,,, +63474,Af36,EA050,?,EA050-NA,,,,,, +63475,Af37,EA050,?,EA050-NA,,,,,, +63476,Af38,EA050,?,EA050-NA,,,,,, +63477,Af39,EA050,?,EA050-NA,,,,,, +63478,Af4,EA050,Equal participation,EA050-4,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +63479,Af40,EA050,?,EA050-NA,,,,,, +63480,Af41,EA050,?,EA050-NA,,,,,, +63481,Af42,EA050,?,EA050-NA,,,,,, +63482,Af43,EA050,?,EA050-NA,,,,,, +63483,Af44,EA050,?,EA050-NA,,,,,, +63484,Af45,EA050,?,EA050-NA,,,,,, +63485,Af46,EA050,?,EA050-NA,,,,,, +63486,Af47,EA050,?,EA050-NA,,,,,, +63487,Af48,EA050,?,EA050-NA,,,,,, +63488,Af49,EA050,?,EA050-NA,,,,,, +63489,Af5,EA050,"Both, males more",EA050-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +63490,Af50,EA050,?,EA050-NA,,,,,, +63491,Af51,EA050,Males alone,EA050-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +63492,Af52,EA050,Females alone,EA050-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +63493,Af53,EA050,?,EA050-NA,,,,,, +63494,Af54,EA050,?,EA050-NA,,,,,, +63495,Af55,EA050,?,EA050-NA,,,,,, +63496,Af56,EA050,?,EA050-NA,,,,,, +63497,Af57,EA050,?,EA050-NA,,,,,, +63498,Af58,EA050,?,EA050-NA,,,,,, +63499,Af6,EA050,Females alone,EA050-6,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +63500,Af7,EA050,Females alone,EA050-6,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +63501,Af8,EA050,"Both, females more",EA050-5,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +63502,Af9,EA050,?,EA050-NA,,,,,, +63503,Ag1,EA050,"Both, females more",EA050-5,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +63504,Ag10,EA050,Females alone,EA050-6,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +63505,Ag11,EA050,Females alone,EA050-6,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +63506,Ag12,EA050,?,EA050-NA,,,,,, +63507,Ag13,EA050,?,EA050-NA,,,,,, +63508,Ag14,EA050,?,EA050-NA,,,,,, +63509,Ag15,EA050,?,EA050-NA,,,,,, +63510,Ag16,EA050,Males alone,EA050-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p72, +63511,Ag17,EA050,?,EA050-NA,,,,,, +63512,Ag18,EA050,Males alone,EA050-1,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p72, +63513,Ag19,EA050,?,EA050-NA,,,,,, +63514,Ag2,EA050,Females alone,EA050-6,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +63515,Ag20,EA050,?,EA050-NA,,,,,, +63516,Ag21,EA050,Females alone,EA050-6,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +63517,Ag22,EA050,?,EA050-NA,,,,,, +63518,Ag23,EA050,?,EA050-NA,,,,,, +63519,Ag24,EA050,?,EA050-NA,,,,,, +63520,Ag25,EA050,?,EA050-NA,,,,,, +63521,Ag26,EA050,?,EA050-NA,,,,,, +63522,Ag27,EA050,?,EA050-NA,,,,,, +63523,Ag28,EA050,?,EA050-NA,,,,,, +63524,Ag29,EA050,?,EA050-NA,,,,,, +63525,Ag3,EA050,Equal participation,EA050-4,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +63526,Ag30,EA050,Females alone,EA050-6,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +63527,Ag31,EA050,?,EA050-NA,,,,,, +63528,Ag32,EA050,Females alone,EA050-6,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +63529,Ag33,EA050,?,EA050-NA,,,,,, +63530,Ag34,EA050,?,EA050-NA,,,,,, +63531,Ag35,EA050,?,EA050-NA,,,,,, +63532,Ag36,EA050,?,EA050-NA,,,,,, +63533,Ag37,EA050,?,EA050-NA,,,,,, +63534,Ag38,EA050,?,EA050-NA,,,,,, +63535,Ag39,EA050,Females alone,EA050-6,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +63536,Ag4,EA050,Females alone,EA050-6,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +63537,Ag40,EA050,?,EA050-NA,,,,,, +63538,Ag41,EA050,?,EA050-NA,,,,,, +63539,Ag42,EA050,?,EA050-NA,,,,,, +63540,Ag43,EA050,?,EA050-NA,,,,,, +63541,Ag44,EA050,?,EA050-NA,,,,,, +63542,Ag45,EA050,?,EA050-NA,,,,,, +63543,Ag46,EA050,?,EA050-NA,,,,,, +63544,Ag47,EA050,Females alone,EA050-6,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +63545,Ag48,EA050,?,EA050-NA,,,,,, +63546,Ag49,EA050,?,EA050-NA,,,,,, +63547,Ag5,EA050,Females alone,EA050-6,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +63548,Ag50,EA050,?,EA050-NA,,,,,, +63549,Ag51,EA050,?,EA050-NA,,,,,, +63550,Ag52,EA050,?,EA050-NA,,,,,, +63551,Ag53,EA050,Females alone,EA050-6,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +63552,Ag54,EA050,Females alone,EA050-6,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +63553,Ag6,EA050,Activity is absent,EA050-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +63554,Ag7,EA050,Activity is absent,EA050-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p72, +63555,Ag8,EA050,Females alone,EA050-6,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +63556,Ag9,EA050,Females alone,EA050-6,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +63557,Ah1,EA050,?,EA050-NA,,,,,, +63558,Ah10,EA050,?,EA050-NA,,,,,, +63559,Ah11,EA050,Males alone,EA050-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +63560,Ah12,EA050,?,EA050-NA,,,,,, +63561,Ah13,EA050,Females alone,EA050-6,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +63562,Ah14,EA050,?,EA050-NA,,,,,, +63563,Ah15,EA050,?,EA050-NA,,,,,, +63564,Ah16,EA050,?,EA050-NA,,,,,, +63565,Ah17,EA050,?,EA050-NA,,,,,, +63566,Ah18,EA050,?,EA050-NA,,,,,, +63567,Ah19,EA050,?,EA050-NA,,,,,, +63568,Ah2,EA050,?,EA050-NA,,,,,, +63569,Ah20,EA050,?,EA050-NA,,,,,, +63570,Ah21,EA050,?,EA050-NA,,,,,, +63571,Ah22,EA050,?,EA050-NA,,,,,, +63572,Ah23,EA050,?,EA050-NA,,,,,, +63573,Ah24,EA050,?,EA050-NA,,,,,, +63574,Ah25,EA050,?,EA050-NA,,,,,, +63575,Ah26,EA050,?,EA050-NA,,,,,, +63576,Ah27,EA050,?,EA050-NA,,,,,, +63577,Ah28,EA050,?,EA050-NA,,,,,, +63578,Ah29,EA050,?,EA050-NA,,,,,, +63579,Ah3,EA050,Females alone,EA050-6,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +63580,Ah30,EA050,?,EA050-NA,,,,,, +63581,Ah31,EA050,?,EA050-NA,,,,,, +63582,Ah32,EA050,?,EA050-NA,,,,,, +63583,Ah33,EA050,?,EA050-NA,,,,,, +63584,Ah34,EA050,?,EA050-NA,,,,,, +63585,Ah35,EA050,?,EA050-NA,,,,,, +63586,Ah36,EA050,?,EA050-NA,,,,,, +63587,Ah37,EA050,?,EA050-NA,,,,,, +63588,Ah38,EA050,?,EA050-NA,,,,,, +63589,Ah39,EA050,Females alone,EA050-6,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +63590,Ah4,EA050,Activity is absent,EA050-9,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p76, +63591,Ah5,EA050,?,EA050-NA,,,,,, +63592,Ah6,EA050,?,EA050-NA,,,,,, +63593,Ah7,EA050,Activity is absent,EA050-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +63594,Ah8,EA050,"Both, females more",EA050-5,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +63595,Ah9,EA050,Differentiated but equal,EA050-3,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +63596,Ai1,EA050,?,EA050-NA,,,,,, +63597,Ai10,EA050,"Both, females more",EA050-5,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +63598,Ai11,EA050,Females alone,EA050-6,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +63599,Ai12,EA050,?,EA050-NA,,,,,, +63600,Ai13,EA050,?,EA050-NA,,,,,, +63601,Ai14,EA050,?,EA050-NA,,,,,, +63602,Ai15,EA050,?,EA050-NA,,,,,, +63603,Ai16,EA050,?,EA050-NA,,,,,, +63604,Ai17,EA050,?,EA050-NA,,,,,, +63605,Ai18,EA050,?,EA050-NA,,,,,, +63606,Ai19,EA050,?,EA050-NA,,,,,, +63607,Ai2,EA050,?,EA050-NA,,,,,, +63608,Ai20,EA050,?,EA050-NA,,,,,, +63609,Ai21,EA050,Females alone,EA050-6,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p76, +63610,Ai22,EA050,?,EA050-NA,,,,,, +63611,Ai23,EA050,?,EA050-NA,,,,,, +63612,Ai24,EA050,?,EA050-NA,,,,,, +63613,Ai25,EA050,?,EA050-NA,,,,,, +63614,Ai26,EA050,?,EA050-NA,,,,,, +63615,Ai27,EA050,?,EA050-NA,,,,,, +63616,Ai28,EA050,Males alone,EA050-1,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +63617,Ai29,EA050,Females alone,EA050-6,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +63618,Ai3,EA050,"Both, females more",EA050-5,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +63619,Ai30,EA050,?,EA050-NA,,,,,, +63620,Ai31,EA050,?,EA050-NA,,,,,, +63621,Ai32,EA050,?,EA050-NA,,,,,, +63622,Ai33,EA050,?,EA050-NA,,,,,, +63623,Ai34,EA050,?,EA050-NA,,,,,, +63624,Ai35,EA050,Equal participation,EA050-4,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +63625,Ai36,EA050,?,EA050-NA,,,,,, +63626,Ai37,EA050,?,EA050-NA,,,,,, +63627,Ai38,EA050,?,EA050-NA,,,,,, +63628,Ai39,EA050,?,EA050-NA,,,,,, +63629,Ai4,EA050,?,EA050-NA,,,,,, +63630,Ai40,EA050,?,EA050-NA,,,,,, +63631,Ai41,EA050,?,EA050-NA,,,,,, +63632,Ai42,EA050,?,EA050-NA,,,,,, +63633,Ai43,EA050,Females alone,EA050-6,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +63634,Ai44,EA050,?,EA050-NA,,,,,, +63635,Ai45,EA050,?,EA050-NA,,,,,, +63636,Ai46,EA050,?,EA050-NA,,,,,, +63637,Ai47,EA050,?,EA050-NA,,,,,, +63638,Ai5,EA050,?,EA050-NA,,,,,, +63639,Ai6,EA050,Females alone,EA050-6,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +63640,Ai7,EA050,Equal participation,EA050-4,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +63641,Ai8,EA050,"Both, females more",EA050-5,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +63642,Ai9,EA050,?,EA050-NA,,,,,, +63643,Aj1,EA050,?,EA050-NA,,,,,, +63644,Aj10,EA050,?,EA050-NA,,,,,, +63645,Aj11,EA050,?,EA050-NA,,,,,, +63646,Aj12,EA050,?,EA050-NA,,,,,, +63647,Aj13,EA050,?,EA050-NA,,,,,, +63648,Aj14,EA050,?,EA050-NA,,,,,, +63649,Aj15,EA050,?,EA050-NA,,,,,, +63650,Aj16,EA050,?,EA050-NA,,,,,, +63651,Aj17,EA050,?,EA050-NA,,,,,, +63652,Aj18,EA050,?,EA050-NA,,,,,, +63653,Aj19,EA050,?,EA050-NA,,,,,, +63654,Aj2,EA050,Activity is absent,EA050-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +63655,Aj20,EA050,?,EA050-NA,,,,,, +63656,Aj21,EA050,?,EA050-NA,,,,,, +63657,Aj22,EA050,?,EA050-NA,,,,,, +63658,Aj23,EA050,Equal participation,EA050-4,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +63659,Aj24,EA050,?,EA050-NA,,,,,, +63660,Aj25,EA050,?,EA050-NA,,,,,, +63661,Aj26,EA050,Equal participation,EA050-4,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +63662,Aj27,EA050,?,EA050-NA,,,,,, +63663,Aj28,EA050,?,EA050-NA,,,,,, +63664,Aj29,EA050,?,EA050-NA,,,,,, +63665,Aj3,EA050,Females alone,EA050-6,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +63666,Aj30,EA050,?,EA050-NA,,,,,, +63667,Aj31,EA050,?,EA050-NA,,,,,, +63668,Aj4,EA050,Activity is absent,EA050-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +63669,Aj5,EA050,Females alone,EA050-6,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +63670,Aj6,EA050,Activity is absent,EA050-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +63671,Aj7,EA050,?,EA050-NA,,,,,, +63672,Aj8,EA050,Activity is absent,EA050-9,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +63673,Aj9,EA050,?,EA050-NA,,,,,, +63674,Ca1,EA050,Activity is absent,EA050-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +63675,Ca10,EA050,?,EA050-NA,,,,,, +63676,Ca11,EA050,?,EA050-NA,,,,,, +63677,Ca12,EA050,?,EA050-NA,,,,,, +63678,Ca13,EA050,?,EA050-NA,,,,,, +63679,Ca14,EA050,?,EA050-NA,,,,,, +63680,Ca15,EA050,?,EA050-NA,,,,,, +63681,Ca16,EA050,?,EA050-NA,,,,,, +63682,Ca17,EA050,?,EA050-NA,,,,,, +63683,Ca18,EA050,?,EA050-NA,,,,,, +63684,Ca19,EA050,?,EA050-NA,,,,,, +63685,Ca2,EA050,Activity is absent,EA050-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +63686,Ca20,EA050,?,EA050-NA,,,,,, +63687,Ca21,EA050,?,EA050-NA,,,,,, +63688,Ca22,EA050,?,EA050-NA,,,,,, +63689,Ca23,EA050,?,EA050-NA,,,,,, +63690,Ca24,EA050,?,EA050-NA,,,,,, +63691,Ca25,EA050,?,EA050-NA,,,,,, +63692,Ca26,EA050,?,EA050-NA,,,,,, +63693,Ca27,EA050,?,EA050-NA,,,,,, +63694,Ca28,EA050,?,EA050-NA,,,,,, +63695,Ca29,EA050,?,EA050-NA,,,,,, +63696,Ca3,EA050,?,EA050-NA,,,,,, +63697,Ca30,EA050,?,EA050-NA,,,,,, +63698,Ca31,EA050,?,EA050-NA,,,,,, +63699,Ca32,EA050,?,EA050-NA,,,,,, +63700,Ca33,EA050,?,EA050-NA,,,,,, +63701,Ca34,EA050,?,EA050-NA,,,,,, +63702,Ca35,EA050,?,EA050-NA,,,,,, +63703,Ca36,EA050,?,EA050-NA,,,,,, +63704,Ca37,EA050,?,EA050-NA,,,,,, +63705,Ca38,EA050,?,EA050-NA,,,,,, +63706,Ca39,EA050,?,EA050-NA,,,,,, +63707,Ca4,EA050,Activity is absent,EA050-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +63708,Ca40,EA050,?,EA050-NA,,,,,, +63709,Ca41,EA050,?,EA050-NA,,,,,, +63710,Ca42,EA050,?,EA050-NA,,,,,, +63711,Ca43,EA050,?,EA050-NA,,,,,, +63712,Ca5,EA050,?,EA050-NA,,,,,, +63713,Ca6,EA050,?,EA050-NA,,,,,, +63714,Ca7,EA050,?,EA050-NA,,,,,, +63715,Ca8,EA050,?,EA050-NA,,,,,, +63716,Ca9,EA050,?,EA050-NA,,,,,, +63717,Cb1,EA050,?,EA050-NA,,,,,, +63718,Cb10,EA050,?,EA050-NA,,,,,, +63719,Cb11,EA050,?,EA050-NA,,,,,, +63720,Cb12,EA050,?,EA050-NA,,,,,, +63721,Cb13,EA050,?,EA050-NA,,,,,, +63722,Cb14,EA050,?,EA050-NA,,,,,, +63723,Cb15,EA050,?,EA050-NA,,,,,, +63724,Cb16,EA050,?,EA050-NA,,,,,, +63725,Cb17,EA050,?,EA050-NA,,,,,, +63726,Cb18,EA050,?,EA050-NA,,,,,, +63727,Cb19,EA050,?,EA050-NA,,,,,, +63728,Cb2,EA050,"Both, females more",EA050-5,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +63729,Cb20,EA050,Females alone,EA050-6,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +63730,Cb21,EA050,Females alone,EA050-6,,pfeffer1936,,1930,EthnographicAtlas_1967_p84, +63731,Cb22,EA050,?,EA050-NA,,,,,, +63732,Cb23,EA050,?,EA050-NA,,,,,, +63733,Cb24,EA050,Activity is absent,EA050-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p84, +63734,Cb25,EA050,?,EA050-NA,,,,,, +63735,Cb26,EA050,?,EA050-NA,,,,,, +63736,Cb27,EA050,?,EA050-NA,,,,,, +63737,Cb28,EA050,?,EA050-NA,,,,,, +63738,Cb29,EA050,?,EA050-NA,,,,,, +63739,Cb3,EA050,Activity is absent,EA050-9,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +63740,Cb4,EA050,Activity is absent,EA050-9,,reid1930,,1920,EthnographicAtlas_1967_p80, +63741,Cb5,EA050,?,EA050-NA,,,,,, +63742,Cb6,EA050,Activity is absent,EA050-9,,woodnd,,1920,EthnographicAtlas_1967_p80, +63743,Cb7,EA050,?,EA050-NA,,,,,, +63744,Cb8,EA050,Activity is absent,EA050-9,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p80, +63745,Cb9,EA050,Activity is absent,EA050-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +63746,Cc1,EA050,?,EA050-NA,,,,,, +63747,Cc10,EA050,"Both, females more",EA050-5,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +63748,Cc11,EA050,?,EA050-NA,,,,,, +63749,Cc12,EA050,?,EA050-NA,,,,,, +63750,Cc13,EA050,?,EA050-NA,,,,,, +63751,Cc14,EA050,Females alone,EA050-6,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +63752,Cc15,EA050,?,EA050-NA,,,,,, +63753,Cc16,EA050,Females alone,EA050-6,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +63754,Cc17,EA050,?,EA050-NA,,,,,, +63755,Cc18,EA050,?,EA050-NA,,,,,, +63756,Cc19,EA050,?,EA050-NA,,,,,, +63757,Cc2,EA050,Females alone,EA050-6,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +63758,Cc20,EA050,?,EA050-NA,,,,,, +63759,Cc3,EA050,Activity is absent,EA050-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +63760,Cc4,EA050,Activity is absent,EA050-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +63761,Cc5,EA050,?,EA050-NA,,,,,, +63762,Cc6,EA050,?,EA050-NA,,,,,, +63763,Cc7,EA050,?,EA050-NA,,,,,, +63764,Cc8,EA050,?,EA050-NA,,,,,, +63765,Cc9,EA050,Females alone,EA050-6,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +63766,Cd1,EA050,?,EA050-NA,,,,,, +63767,Cd10,EA050,?,EA050-NA,,,,,, +63768,Cd11,EA050,?,EA050-NA,,,,,, +63769,Cd12,EA050,?,EA050-NA,,,,,, +63770,Cd13,EA050,?,EA050-NA,,,,,, +63771,Cd14,EA050,?,EA050-NA,,,,,, +63772,Cd15,EA050,?,EA050-NA,,,,,, +63773,Cd16,EA050,?,EA050-NA,,,,,, +63774,Cd17,EA050,?,EA050-NA,,,,,, +63775,Cd18,EA050,?,EA050-NA,,,,,, +63776,Cd19,EA050,?,EA050-NA,,,,,, +63777,Cd2,EA050,Activity is absent,EA050-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +63778,Cd20,EA050,?,EA050-NA,,,,,, +63779,Cd21,EA050,?,EA050-NA,,,,,, +63780,Cd3,EA050,Activity is absent,EA050-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +63781,Cd4,EA050,Females alone,EA050-6,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +63782,Cd5,EA050,Females alone,EA050-6,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +63783,Cd6,EA050,?,EA050-NA,,,,,, +63784,Cd7,EA050,?,EA050-NA,,,,,, +63785,Cd8,EA050,?,EA050-NA,,,,,, +63786,Cd9,EA050,?,EA050-NA,,,,,, +63787,Ce1,EA050,Females alone,EA050-6,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +63788,Ce2,EA050,?,EA050-NA,,,,,, +63789,Ce3,EA050,?,EA050-NA,,,,,, +63790,Ce4,EA050,Activity is absent,EA050-9,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63791,Ce5,EA050,Activity is absent,EA050-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +63792,Ce6,EA050,Activity is absent,EA050-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +63793,Ce7,EA050,Activity is absent,EA050-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +63794,Ce8,EA050,Activity is absent,EA050-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +63795,Cf1,EA050,Activity is absent,EA050-9,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +63796,Cf2,EA050,?,EA050-NA,,,,,, +63797,Cf3,EA050,Males alone,EA050-1,,munch1945,,1930,EthnographicAtlas_1967_p84, +63798,Cf4,EA050,?,EA050-NA,,,,,, +63799,Cf5,EA050,?,EA050-NA,,,,,, +63800,Cg1,EA050,Activity is absent,EA050-9,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +63801,Cg2,EA050,Activity is absent,EA050-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +63802,Cg3,EA050,Activity is absent,EA050-9,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +63803,Cg4,EA050,Females alone,EA050-6,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +63804,Cg5,EA050,?,EA050-NA,,,,,, +63805,Ch1,EA050,Activity is absent,EA050-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +63806,Ch10,EA050,?,EA050-NA,,,,,, +63807,Ch11,EA050,Activity is absent,EA050-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +63808,Ch2,EA050,Activity is absent,EA050-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +63809,Ch3,EA050,Activity is absent,EA050-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +63810,Ch4,EA050,?,EA050-NA,,,,,, +63811,Ch5,EA050,Activity is absent,EA050-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +63812,Ch6,EA050,?,EA050-NA,,,,,, +63813,Ch7,EA050,Females alone,EA050-6,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +63814,Ch8,EA050,Activity is absent,EA050-9,,hanzeli1955,,1940,EthnographicAtlas_1967_p84, +63815,Ch9,EA050,?,EA050-NA,,,,,, +63816,Ci1,EA050,Females alone,EA050-6,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +63817,Ci10,EA050,?,EA050-NA,,,,,, +63818,Ci11,EA050,Activity is absent,EA050-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +63819,Ci12,EA050,"Activity present, sex diff. unspecified",EA050-8,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +63820,Ci2,EA050,?,EA050-NA,,,,,, +63821,Ci3,EA050,?,EA050-NA,,,,,, +63822,Ci4,EA050,Activity is absent,EA050-9,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +63823,Ci5,EA050,Activity is absent,EA050-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +63824,Ci6,EA050,?,EA050-NA,,,,,, +63825,Ci7,EA050,?,EA050-NA,,,,,, +63826,Ci8,EA050,?,EA050-NA,,,,,, +63827,Ci9,EA050,?,EA050-NA,,,,,, +63828,Cj1,EA050,Activity is absent,EA050-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +63829,Cj10,EA050,"Both, males more",EA050-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +63830,Cj2,EA050,Females alone,EA050-6,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +63831,Cj3,EA050,Activity is absent,EA050-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +63832,Cj4,EA050,Activity is absent,EA050-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +63833,Cj5,EA050,Activity is absent,EA050-9,,dickson1949,,1930,EthnographicAtlas_1967_p88, +63834,Cj6,EA050,?,EA050-NA,,,,,, +63835,Cj7,EA050,?,EA050-NA,,,,,, +63836,Cj8,EA050,Equal participation,EA050-4,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +63837,Cj9,EA050,?,EA050-NA,,,,,, +63838,Ea1,EA050,?,EA050-NA,,,,,, +63839,Ea10,EA050,Females alone,EA050-6,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +63840,Ea11,EA050,?,EA050-NA,,,,,, +63841,Ea12,EA050,?,EA050-NA,,,,,, +63842,Ea13,EA050,Activity is absent,EA050-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +63843,Ea2,EA050,Activity is absent,EA050-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +63844,Ea3,EA050,Activity is absent,EA050-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +63845,Ea4,EA050,Equal participation,EA050-4,,barth1956b,,1950,EthnographicAtlas_1967_p88, +63846,Ea5,EA050,?,EA050-NA,,,,,, +63847,Ea6,EA050,Females alone,EA050-6,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +63848,Ea7,EA050,?,EA050-NA,,,,,, +63849,Ea8,EA050,?,EA050-NA,,,,,, +63850,Ea9,EA050,Activity is absent,EA050-9,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +63851,Eb1,EA050,Activity is absent,EA050-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +63852,Eb2,EA050,Activity is absent,EA050-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +63853,Eb3,EA050,Activity is absent,EA050-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +63854,Eb4,EA050,?,EA050-NA,,,,,, +63855,Eb5,EA050,?,EA050-NA,,,,,, +63856,Eb6,EA050,?,EA050-NA,,,,,, +63857,Eb7,EA050,?,EA050-NA,,,,,, +63858,Eb8,EA050,?,EA050-NA,,,,,, +63859,Ec1,EA050,Females alone,EA050-6,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +63860,Ec10,EA050,?,EA050-NA,,,,,, +63861,Ec11,EA050,?,EA050-NA,,,,,, +63862,Ec2,EA050,Females alone,EA050-6,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63863,Ec3,EA050,Females alone,EA050-6,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +63864,Ec4,EA050,Females alone,EA050-6,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +63865,Ec5,EA050,Females alone,EA050-6,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +63866,Ec6,EA050,?,EA050-NA,,,,,, +63867,Ec7,EA050,Females alone,EA050-6,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +63868,Ec8,EA050,?,EA050-NA,,,,,, +63869,Ec9,EA050,Activity is absent,EA050-9,,lattimore1933,,1920,EthnographicAtlas_1967_p88, +63870,Ed1,EA050,Activity is absent,EA050-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +63871,Ed10,EA050,Activity is absent,EA050-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +63872,Ed13,EA050,?,EA050-NA,,,,,, +63873,Ed14,EA050,?,EA050-NA,,,,,, +63874,Ed15a,EA050,?,EA050-NA,,,,,, +63875,Ed15b,EA050,Activity is absent,EA050-9,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +63876,Ed16,EA050,?,EA050-NA,,,,,, +63877,Ed2,EA050,Activity is absent,EA050-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +63878,Ed3,EA050,Females alone,EA050-6,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +63879,Ed4,EA050,Activity is absent,EA050-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +63880,Ed5,EA050,Activity is absent,EA050-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63881,Ed6,EA050,Activity is absent,EA050-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +63882,Ed7,EA050,Activity is absent,EA050-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +63883,Ed8,EA050,Activity is absent,EA050-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +63884,Ed9,EA050,?,EA050-NA,,,,,, +63885,Ee1,EA050,"Both, females more",EA050-5,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +63886,Ee2,EA050,Activity is absent,EA050-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +63887,Ee3,EA050,Females alone,EA050-6,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +63888,Ee4,EA050,Activity is absent,EA050-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +63889,Ee5,EA050,Activity is absent,EA050-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +63890,Ee6,EA050,Activity is absent,EA050-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +63891,Ee7,EA050,?,EA050-NA,,,,,, +63892,Ee8,EA050,?,EA050-NA,,,,,, +63893,Ef1,EA050,Females alone,EA050-6,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +63894,Ef10,EA050,?,EA050-NA,,,,,, +63895,Ef11,EA050,Activity is absent,EA050-9,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +63896,Ef2,EA050,Activity is absent,EA050-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +63897,Ef3,EA050,?,EA050-NA,,,,,, +63898,Ef4,EA050,?,EA050-NA,,,,,, +63899,Ef5,EA050,"Both, females more",EA050-5,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +63900,Ef6,EA050,Females alone,EA050-6,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +63901,Ef7,EA050,?,EA050-NA,,,,,, +63902,Ef8,EA050,"Both, females more",EA050-5,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +63903,Ef9,EA050,Activity is absent,EA050-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63904,Eg1,EA050,Equal participation,EA050-4,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63905,Eg10,EA050,Activity is absent,EA050-9,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +63906,Eg11,EA050,?,EA050-NA,,,,,, +63907,Eg12,EA050,?,EA050-NA,,,,,, +63908,Eg13,EA050,"Both, females more",EA050-5,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63909,Eg14,EA050,Differentiated but equal,EA050-3,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +63910,Eg2,EA050,Activity is absent,EA050-9,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +63911,Eg3,EA050,"Both, females more",EA050-5,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +63912,Eg4,EA050,Females alone,EA050-6,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +63913,Eg5,EA050,Activity is absent,EA050-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +63914,Eg6,EA050,Activity is absent,EA050-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +63915,Eg7,EA050,Females alone,EA050-6,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +63916,Eg8,EA050,"Both, females more",EA050-5,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +63917,Eg9,EA050,Females alone,EA050-6,,elwin1939,,1930,EthnographicAtlas_1967_p92, +63918,Eh1,EA050,"Both, females more",EA050-5,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +63919,Eh10,EA050,?,EA050-NA,,,,,, +63920,Eh2,EA050,Equal participation,EA050-4,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +63921,Eh3,EA050,Activity is absent,EA050-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +63922,Eh4,EA050,Differentiated but equal,EA050-3,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63923,Eh5,EA050,Females alone,EA050-6,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +63924,Eh6,EA050,?,EA050-NA,,,,,, +63925,Eh7,EA050,?,EA050-NA,,,,,, +63926,Eh8,EA050,Activity is absent,EA050-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +63927,Eh9,EA050,?,EA050-NA,,,,,, +63928,Ei1,EA050,Equal participation,EA050-4,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63929,Ei10,EA050,?,EA050-NA,,,,,, +63930,Ei11,EA050,?,EA050-NA,,,,,, +63931,Ei12,EA050,?,EA050-NA,,,,,, +63932,Ei13,EA050,Activity is absent,EA050-9,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +63933,Ei14,EA050,Activity is absent,EA050-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +63934,Ei15,EA050,?,EA050-NA,,,,,, +63935,Ei16,EA050,Activity is absent,EA050-9,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +63936,Ei17,EA050,?,EA050-NA,,,,,, +63937,Ei18,EA050,Activity is absent,EA050-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +63938,Ei19,EA050,?,EA050-NA,,,,,, +63939,Ei2,EA050,Activity is absent,EA050-9,,mills1922,,1920,EthnographicAtlas_1967_p92, +63940,Ei20,EA050,?,EA050-NA,,,,,, +63941,Ei3,EA050,Activity is absent,EA050-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +63942,Ei4,EA050,Activity is absent,EA050-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +63943,Ei5,EA050,Females alone,EA050-6,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +63944,Ei6,EA050,Activity is absent,EA050-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +63945,Ei7,EA050,"Both, males more",EA050-2,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +63946,Ei8,EA050,Females alone,EA050-6,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +63947,Ei9,EA050,Activity is absent,EA050-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +63948,Ej1,EA050,Females alone,EA050-6,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +63949,Ej10,EA050,Females alone,EA050-6,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +63950,Ej11,EA050,Activity is absent,EA050-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p92, +63951,Ej12,EA050,Activity is absent,EA050-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +63952,Ej13,EA050,Females alone,EA050-6,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +63953,Ej14,EA050,Differentiated but equal,EA050-3,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63954,Ej15,EA050,"Activity present, sex diff. unspecified",EA050-8,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +63955,Ej16,EA050,Activity is absent,EA050-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +63956,Ej2,EA050,Females alone,EA050-6,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +63957,Ej3,EA050,Differentiated but equal,EA050-3,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +63958,Ej4,EA050,?,EA050-NA,,,,,, +63959,Ej5,EA050,?,EA050-NA,,,,,, +63960,Ej6,EA050,Activity is absent,EA050-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +63961,Ej7,EA050,Equal participation,EA050-4,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +63962,Ej8,EA050,?,EA050-NA,,,,,, +63963,Ej9,EA050,Activity is absent,EA050-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +63964,Ia1,EA050,Males alone,EA050-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +63965,Ia10,EA050,?,EA050-NA,,,,,, +63966,Ia11,EA050,?,EA050-NA,,,,,, +63967,Ia12,EA050,?,EA050-NA,,,,,, +63968,Ia13,EA050,Activity is absent,EA050-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +63969,Ia14,EA050,Females alone,EA050-6,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +63970,Ia15,EA050,?,EA050-NA,,,,,, +63971,Ia16,EA050,Equal participation,EA050-4,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +63972,Ia17,EA050,?,EA050-NA,,,,,, +63973,Ia18,EA050,?,EA050-NA,,,,,, +63974,Ia2,EA050,Activity is absent,EA050-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +63975,Ia3,EA050,?,EA050-NA,,,,,, +63976,Ia4,EA050,Males alone,EA050-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p92, +63977,Ia5,EA050,"Both, females more",EA050-5,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +63978,Ia6,EA050,?,EA050-NA,,,,,, +63979,Ia7,EA050,?,EA050-NA,,,,,, +63980,Ia8,EA050,?,EA050-NA,,,,,, +63981,Ia9,EA050,?,EA050-NA,,,,,, +63982,Ib1,EA050,Equal participation,EA050-4,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63983,Ib2,EA050,Activity is absent,EA050-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63984,Ib3,EA050,Males alone,EA050-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +63985,Ib4,EA050,Activity is absent,EA050-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +63986,Ib5,EA050,Males alone,EA050-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +63987,Ib6,EA050,?,EA050-NA,,,,,, +63988,Ib7,EA050,Activity is absent,EA050-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +63989,Ib8,EA050,?,EA050-NA,,,,,, +63990,Ib9,EA050,?,EA050-NA,,,,,, +63991,Ic1,EA050,Activity is absent,EA050-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +63992,Ic10,EA050,?,EA050-NA,,,,,, +63993,Ic11,EA050,?,EA050-NA,,,,,, +63994,Ic12,EA050,?,EA050-NA,,,,,, +63995,Ic13,EA050,?,EA050-NA,,,,,, +63996,Ic2,EA050,"Both, females more",EA050-5,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +63997,Ic3,EA050,?,EA050-NA,,,,,, +63998,Ic4,EA050,?,EA050-NA,,,,,, +63999,Ic5,EA050,?,EA050-NA,,,,,, +64000,Ic6,EA050,Males alone,EA050-1,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +64001,Ic7,EA050,?,EA050-NA,,,,,, +64002,Ic8,EA050,?,EA050-NA,,,,,, +64003,Ic9,EA050,?,EA050-NA,,,,,, +64004,Id1,EA050,Females alone,EA050-6,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +64005,Id10,EA050,Females alone,EA050-6,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +64006,Id11,EA050,Females alone,EA050-6,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +64007,Id12,EA050,Females alone,EA050-6,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +64008,Id13,EA050,"Both, females more",EA050-5,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +64009,Id2,EA050,"Both, females more",EA050-5,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +64010,Id3,EA050,Females alone,EA050-6,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +64011,Id4,EA050,Females alone,EA050-6,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +64012,Id5,EA050,Females alone,EA050-6,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +64013,Id6,EA050,Females alone,EA050-6,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +64014,Id7,EA050,Females alone,EA050-6,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +64015,Id8,EA050,Females alone,EA050-6,,roth1890,,1830,EthnographicAtlas_1967_p96, +64016,Id9,EA050,Females alone,EA050-6,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +64017,Ie1,EA050,Activity is absent,EA050-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64018,Ie10,EA050,?,EA050-NA,,,,,, +64019,Ie11,EA050,Differentiated but equal,EA050-3,,bowers1964,,1950,EthnographicAtlas_1967_p96, +64020,Ie12,EA050,Equal participation,EA050-4,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64021,Ie13,EA050,Differentiated but equal,EA050-3,,landtman1927,,1920,EthnographicAtlas_1967_p96, +64022,Ie14,EA050,?,EA050-NA,,,,,, +64023,Ie15,EA050,?,EA050-NA,,,,,, +64024,Ie16,EA050,"Both, males more",EA050-2,,williams194041,,1940,EthnographicAtlas_1967_p96, +64025,Ie17,EA050,?,EA050-NA,,,,,, +64026,Ie18,EA050,Differentiated but equal,EA050-3,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +64027,Ie19,EA050,Differentiated but equal,EA050-3,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +64028,Ie2,EA050,Activity is absent,EA050-9,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +64029,Ie20,EA050,?,EA050-NA,,,,,, +64030,Ie21,EA050,?,EA050-NA,,,,,, +64031,Ie22,EA050,?,EA050-NA,,,,,, +64032,Ie23,EA050,?,EA050-NA,,,,,, +64033,Ie24,EA050,?,EA050-NA,,,,,, +64034,Ie25,EA050,?,EA050-NA,,,,,, +64035,Ie26,EA050,?,EA050-NA,,,,,, +64036,Ie27,EA050,Males alone,EA050-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +64037,Ie28,EA050,?,EA050-NA,,,,,, +64038,Ie29,EA050,?,EA050-NA,,,,,, +64039,Ie3,EA050,Males alone,EA050-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64040,Ie30,EA050,Differentiated but equal,EA050-3,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +64041,Ie31,EA050,?,EA050-NA,,,,,, +64042,Ie32,EA050,?,EA050-NA,,,,,, +64043,Ie33,EA050,Females alone,EA050-6,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +64044,Ie34,EA050,?,EA050-NA,,,,,, +64045,Ie35,EA050,"Both, males more",EA050-2,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +64046,Ie36,EA050,?,EA050-NA,,,,,, +64047,Ie37,EA050,?,EA050-NA,,,,,, +64048,Ie38,EA050,Equal participation,EA050-4,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +64049,Ie39,EA050,Differentiated but equal,EA050-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +64050,Ie4,EA050,"Both, females more",EA050-5,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64051,Ie5,EA050,Activity is absent,EA050-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +64052,Ie6,EA050,"Both, males more",EA050-2,,held1947,,1930,EthnographicAtlas_1967_p96, +64053,Ie7,EA050,Activity is absent,EA050-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +64054,Ie8,EA050,Differentiated but equal,EA050-3,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +64055,Ie9,EA050,Equal participation,EA050-4,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +64056,If1,EA050,Activity is absent,EA050-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64057,If10,EA050,?,EA050-NA,,,,,, +64058,If11,EA050,Activity is absent,EA050-9,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +64059,If12,EA050,Activity is absent,EA050-9,,mason1954,,1940,EthnographicAtlas_1967_p100, +64060,If13,EA050,Activity is absent,EA050-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +64061,If14,EA050,Activity is absent,EA050-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +64062,If15,EA050,Activity is absent,EA050-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +64063,If16,EA050,Activity is absent,EA050-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +64064,If17,EA050,Males alone,EA050-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +64065,If2,EA050,Activity is absent,EA050-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +64066,If3,EA050,Activity is absent,EA050-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +64067,If4,EA050,Females alone,EA050-6,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +64068,If5,EA050,Activity is absent,EA050-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +64069,If6,EA050,Activity is absent,EA050-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +64070,If7,EA050,Equal participation,EA050-4,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +64071,If8,EA050,Activity is absent,EA050-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +64072,If9,EA050,?,EA050-NA,,,,,, +64073,Ig1,EA050,"Both, females more",EA050-5,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +64074,Ig10,EA050,"Both, males more",EA050-2,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +64075,Ig11,EA050,"Both, males more",EA050-2,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +64076,Ig12,EA050,?,EA050-NA,,,,,, +64077,Ig13,EA050,?,EA050-NA,,,,,, +64078,Ig14,EA050,?,EA050-NA,,,,,, +64079,Ig15,EA050,?,EA050-NA,,,,,, +64080,Ig16,EA050,?,EA050-NA,,,,,, +64081,Ig17,EA050,?,EA050-NA,,,,,, +64082,Ig18,EA050,?,EA050-NA,,,,,, +64083,Ig19,EA050,?,EA050-NA,,,,,, +64084,Ig2,EA050,Females alone,EA050-6,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +64085,Ig20,EA050,?,EA050-NA,,,,,, +64086,Ig21,EA050,Females alone,EA050-6,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +64087,Ig3,EA050,"Both, females more",EA050-5,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +64088,Ig4,EA050,Activity is absent,EA050-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +64089,Ig5,EA050,Activity is absent,EA050-9,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +64090,Ig6,EA050,Activity is absent,EA050-9,,ivens1927,,1900,EthnographicAtlas_1967_p100, +64091,Ig7,EA050,"Both, males more",EA050-2,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +64092,Ig8,EA050,?,EA050-NA,,,,,, +64093,Ig9,EA050,Females alone,EA050-6,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +64094,Ih1,EA050,Activity is absent,EA050-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +64095,Ih10,EA050,?,EA050-NA,,,,,, +64096,Ih11,EA050,?,EA050-NA,,,,,, +64097,Ih12,EA050,?,EA050-NA,,,,,, +64098,Ih13,EA050,?,EA050-NA,,,,,, +64099,Ih14,EA050,"Activity present, sex diff. unspecified",EA050-8,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +64100,Ih2,EA050,Activity is absent,EA050-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64101,Ih3,EA050,?,EA050-NA,,,,,, +64102,Ih4,EA050,"Both, females more",EA050-5,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64103,Ih5,EA050,?,EA050-NA,,,,,, +64104,Ih6,EA050,Activity is absent,EA050-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +64105,Ih7,EA050,"Both, males more",EA050-2,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +64106,Ih8,EA050,Females alone,EA050-6,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +64107,Ih9,EA050,?,EA050-NA,,,,,, +64108,Ii1,EA050,Activity is absent,EA050-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +64109,Ii10,EA050,?,EA050-NA,,,,,, +64110,Ii12,EA050,?,EA050-NA,,,,,, +64111,Ii13,EA050,?,EA050-NA,,,,,, +64112,Ii14,EA050,Activity is absent,EA050-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +64113,Ii2,EA050,Activity is absent,EA050-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +64114,Ii3,EA050,"Both, males more",EA050-2,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +64115,Ii4,EA050,Activity is absent,EA050-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +64116,Ii5,EA050,Activity is absent,EA050-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +64117,Ii6,EA050,Activity is absent,EA050-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +64118,Ii7,EA050,Activity is absent,EA050-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +64119,Ii8,EA050,?,EA050-NA,,,,,, +64120,Ii9,EA050,?,EA050-NA,,,,,, +64121,Ij1,EA050,Activity is absent,EA050-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +64122,Ij10,EA050,?,EA050-NA,,,,,, +64123,Ij2,EA050,"Both, males more",EA050-2,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +64124,Ij3,EA050,Females alone,EA050-6,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +64125,Ij4,EA050,Activity is absent,EA050-9,,buck1932a,,1850,EthnographicAtlas_1967_p104, +64126,Ij5,EA050,Equal participation,EA050-4,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +64127,Ij6,EA050,?,EA050-NA,,,,,, +64128,Ij7,EA050,?,EA050-NA,,,,,, +64129,Ij8,EA050,?,EA050-NA,,,,,, +64130,Ij9,EA050,?,EA050-NA,,,,,, +64131,Na1,EA050,"Both, males more",EA050-2,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +64132,Na10,EA050,"Both, females more",EA050-5,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +64133,Na11,EA050,"Both, females more",EA050-5,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +64134,Na12,EA050,Females alone,EA050-6,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +64135,Na13,EA050,?,EA050-NA,,,,,, +64136,Na14,EA050,Differentiated but equal,EA050-3,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +64137,Na15,EA050,Females alone,EA050-6,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +64138,Na16,EA050,?,EA050-NA,,,,,, +64139,Na17,EA050,Females alone,EA050-6,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64140,Na19,EA050,Females alone,EA050-6,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +64141,Na2,EA050,Activity is absent,EA050-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +64142,Na20,EA050,?,EA050-NA,,,,,, +64143,Na21,EA050,"Both, females more",EA050-5,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +64144,Na22,EA050,Activity is absent,EA050-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +64145,Na23,EA050,Females alone,EA050-6,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +64146,Na24,EA050,Females alone,EA050-6,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +64147,Na25,EA050,"Both, females more",EA050-5,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +64148,Na26,EA050,Females alone,EA050-6,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +64149,Na27,EA050,?,EA050-NA,,,,,, +64150,Na28,EA050,?,EA050-NA,,,,,, +64151,Na29,EA050,"Both, females more",EA050-5,,goddard1916,,1850,EthnographicAtlas_1967_p104, +64152,Na3,EA050,Females alone,EA050-6,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +64153,Na30,EA050,?,EA050-NA,,,,,, +64154,Na31,EA050,Females alone,EA050-6,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +64155,Na32,EA050,Females alone,EA050-6,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +64156,Na33,EA050,Females alone,EA050-6,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +64157,Na34,EA050,?,EA050-NA,,,,,, +64158,Na35,EA050,Females alone,EA050-6,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +64159,Na36,EA050,Females alone,EA050-6,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +64160,Na37,EA050,"Both, females more",EA050-5,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +64161,Na38,EA050,"Both, females more",EA050-5,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +64162,Na39,EA050,"Both, females more",EA050-5,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +64163,Na4,EA050,Females alone,EA050-6,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +64164,Na40,EA050,?,EA050-NA,,,,,, +64165,Na41,EA050,?,EA050-NA,,,,,, +64166,Na42,EA050,?,EA050-NA,,,,,, +64167,Na43,EA050,Activity is absent,EA050-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +64168,Na44,EA050,?,EA050-NA,,,,,, +64169,Na45,EA050,Females alone,EA050-6,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +64170,Na5,EA050,Females alone,EA050-6,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +64171,Na6,EA050,Females alone,EA050-6,,lantis1946,,1930,EthnographicAtlas_1967_p104, +64172,Na7,EA050,Females alone,EA050-6,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +64173,Na8,EA050,Females alone,EA050-6,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +64174,Na9,EA050,Females alone,EA050-6,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64175,Nb1,EA050,Females alone,EA050-6,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +64176,Nb10,EA050,Females alone,EA050-6,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +64177,Nb11,EA050,Females alone,EA050-6,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +64178,Nb12,EA050,?,EA050-NA,,,,,, +64179,Nb13,EA050,?,EA050-NA,,,,,, +64180,Nb14,EA050,?,EA050-NA,,,,,, +64181,Nb15,EA050,Females alone,EA050-6,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +64182,Nb16,EA050,Females alone,EA050-6,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +64183,Nb17,EA050,"Both, females more",EA050-5,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +64184,Nb18,EA050,Females alone,EA050-6,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +64185,Nb19,EA050,Females alone,EA050-6,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +64186,Nb2,EA050,Females alone,EA050-6,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +64187,Nb20,EA050,?,EA050-NA,,,,,, +64188,Nb21,EA050,?,EA050-NA,,,,,, +64189,Nb22,EA050,Females alone,EA050-6,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +64190,Nb23,EA050,?,EA050-NA,,,,,, +64191,Nb24,EA050,Females alone,EA050-6,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +64192,Nb25,EA050,Females alone,EA050-6,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +64193,Nb26,EA050,Females alone,EA050-6,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +64194,Nb27,EA050,"Both, females more",EA050-5,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +64195,Nb28,EA050,Females alone,EA050-6,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +64196,Nb29,EA050,?,EA050-NA,,,,,, +64197,Nb3,EA050,Females alone,EA050-6,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +64198,Nb30,EA050,Females alone,EA050-6,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +64199,Nb31,EA050,?,EA050-NA,,,,,, +64200,Nb32,EA050,"Both, females more",EA050-5,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +64201,Nb33,EA050,Equal participation,EA050-4,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +64202,Nb34,EA050,"Both, females more",EA050-5,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +64203,Nb35,EA050,Equal participation,EA050-4,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +64204,Nb36,EA050,"Both, females more",EA050-5,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +64205,Nb37,EA050,"Both, females more",EA050-5,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +64206,Nb38,EA050,Females alone,EA050-6,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +64207,Nb39,EA050,Females alone,EA050-6,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +64208,Nb4,EA050,"Both, females more",EA050-5,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +64209,Nb5,EA050,Females alone,EA050-6,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +64210,Nb6,EA050,"Both, females more",EA050-5,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +64211,Nb7,EA050,Females alone,EA050-6,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +64212,Nb8,EA050,?,EA050-NA,,,,,, +64213,Nb9,EA050,Females alone,EA050-6,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +64214,Nc1,EA050,Females alone,EA050-6,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +64215,Nc10,EA050,Females alone,EA050-6,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +64216,Nc11,EA050,"Both, females more",EA050-5,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +64217,Nc12,EA050,"Both, females more",EA050-5,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +64218,Nc13,EA050,"Both, females more",EA050-5,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +64219,Nc14,EA050,"Both, females more",EA050-5,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +64220,Nc15,EA050,"Both, females more",EA050-5,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +64221,Nc16,EA050,"Both, females more",EA050-5,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +64222,Nc17,EA050,Equal participation,EA050-4,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +64223,Nc18,EA050,"Both, females more",EA050-5,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +64224,Nc19,EA050,?,EA050-NA,,,,,, +64225,Nc2,EA050,"Both, females more",EA050-5,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +64226,Nc20,EA050,"Both, females more",EA050-5,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +64227,Nc21,EA050,?,EA050-NA,,,,,, +64228,Nc22,EA050,?,EA050-NA,,,,,, +64229,Nc23,EA050,"Both, females more",EA050-5,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +64230,Nc24,EA050,Females alone,EA050-6,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +64231,Nc25,EA050,"Both, females more",EA050-5,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +64232,Nc26,EA050,Females alone,EA050-6,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +64233,Nc27,EA050,?,EA050-NA,,,,,, +64234,Nc28,EA050,?,EA050-NA,,,,,, +64235,Nc29,EA050,Females alone,EA050-6,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +64236,Nc3,EA050,Equal participation,EA050-4,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +64237,Nc30,EA050,?,EA050-NA,,,,,, +64238,Nc31,EA050,?,EA050-NA,,,,,, +64239,Nc32,EA050,Females alone,EA050-6,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +64240,Nc33,EA050,"Both, females more",EA050-5,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +64241,Nc34,EA050,"Both, females more",EA050-5,,meigs1939,,1880,EthnographicAtlas_1967_p108, +64242,Nc4,EA050,Females alone,EA050-6,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +64243,Nc5,EA050,?,EA050-NA,,,,,, +64244,Nc6,EA050,Females alone,EA050-6,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +64245,Nc7,EA050,"Both, females more",EA050-5,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +64246,Nc8,EA050,Females alone,EA050-6,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +64247,Nc9,EA050,Females alone,EA050-6,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +64248,Nd1,EA050,"Both, females more",EA050-5,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +64249,Nd10,EA050,?,EA050-NA,,,,,, +64250,Nd11,EA050,Females alone,EA050-6,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +64251,Nd12,EA050,Females alone,EA050-6,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +64252,Nd13,EA050,Females alone,EA050-6,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +64253,Nd14,EA050,"Both, females more",EA050-5,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +64254,Nd15,EA050,Females alone,EA050-6,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +64255,Nd16,EA050,Females alone,EA050-6,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +64256,Nd17,EA050,Females alone,EA050-6,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +64257,Nd18,EA050,Females alone,EA050-6,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +64258,Nd19,EA050,Females alone,EA050-6,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +64259,Nd2,EA050,"Both, females more",EA050-5,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +64260,Nd20,EA050,Females alone,EA050-6,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +64261,Nd21,EA050,"Both, females more",EA050-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +64262,Nd22,EA050,Females alone,EA050-6,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +64263,Nd23,EA050,"Both, females more",EA050-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +64264,Nd24,EA050,"Both, females more",EA050-5,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +64265,Nd25,EA050,"Both, females more",EA050-5,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +64266,Nd26,EA050,Females alone,EA050-6,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +64267,Nd27,EA050,"Both, females more",EA050-5,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +64268,Nd28,EA050,"Both, females more",EA050-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +64269,Nd29,EA050,"Both, females more",EA050-5,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +64270,Nd3,EA050,Females alone,EA050-6,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +64271,Nd30,EA050,Females alone,EA050-6,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +64272,Nd31,EA050,"Both, females more",EA050-5,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +64273,Nd32,EA050,Females alone,EA050-6,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +64274,Nd33,EA050,"Both, females more",EA050-5,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +64275,Nd34,EA050,"Both, females more",EA050-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +64276,Nd35,EA050,"Both, females more",EA050-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +64277,Nd36,EA050,"Both, females more",EA050-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +64278,Nd37,EA050,"Both, females more",EA050-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +64279,Nd38,EA050,"Both, females more",EA050-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +64280,Nd39,EA050,"Both, females more",EA050-5,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +64281,Nd4,EA050,Females alone,EA050-6,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +64282,Nd40,EA050,"Both, females more",EA050-5,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +64283,Nd41,EA050,"Both, females more",EA050-5,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +64284,Nd42,EA050,"Both, females more",EA050-5,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +64285,Nd43,EA050,Females alone,EA050-6,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +64286,Nd44,EA050,"Both, females more",EA050-5,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +64287,Nd45,EA050,Females alone,EA050-6,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +64288,Nd46,EA050,Females alone,EA050-6,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +64289,Nd47,EA050,Females alone,EA050-6,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +64290,Nd48,EA050,"Both, females more",EA050-5,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +64291,Nd49,EA050,"Both, females more",EA050-5,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +64292,Nd5,EA050,Equal participation,EA050-4,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +64293,Nd50,EA050,"Both, females more",EA050-5,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +64294,Nd51,EA050,Females alone,EA050-6,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +64295,Nd52,EA050,Females alone,EA050-6,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +64296,Nd53,EA050,"Both, females more",EA050-5,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +64297,Nd54,EA050,"Both, females more",EA050-5,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64298,Nd55,EA050,"Both, females more",EA050-5,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +64299,Nd56,EA050,Equal participation,EA050-4,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +64300,Nd57,EA050,"Both, females more",EA050-5,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +64301,Nd58,EA050,"Both, females more",EA050-5,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +64302,Nd59,EA050,"Both, females more",EA050-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +64303,Nd6,EA050,"Both, females more",EA050-5,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +64304,Nd60,EA050,Females alone,EA050-6,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +64305,Nd61,EA050,"Both, females more",EA050-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +64306,Nd62,EA050,Females alone,EA050-6,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +64307,Nd63,EA050,Females alone,EA050-6,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +64308,Nd64,EA050,"Both, females more",EA050-5,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +64309,Nd65,EA050,Females alone,EA050-6,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +64310,Nd66,EA050,"Both, females more",EA050-5,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +64311,Nd67,EA050,?,EA050-NA,,,,,, +64312,Nd7,EA050,Females alone,EA050-6,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +64313,Nd8,EA050,"Both, females more",EA050-5,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +64314,Nd9,EA050,?,EA050-NA,,,,,, +64315,Ne1,EA050,Females alone,EA050-6,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +64316,Ne10,EA050,?,EA050-NA,,,,,, +64317,Ne11,EA050,Females alone,EA050-6,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +64318,Ne12,EA050,Females alone,EA050-6,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +64319,Ne13,EA050,Females alone,EA050-6,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +64320,Ne14,EA050,"Both, females more",EA050-5,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +64321,Ne15,EA050,Females alone,EA050-6,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +64322,Ne16,EA050,"Both, females more",EA050-5,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +64323,Ne17,EA050,?,EA050-NA,,,,,, +64324,Ne18,EA050,Females alone,EA050-6,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +64325,Ne19,EA050,Females alone,EA050-6,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +64326,Ne2,EA050,Females alone,EA050-6,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +64327,Ne20,EA050,?,EA050-NA,,,,,, +64328,Ne21,EA050,?,EA050-NA,,,,,, +64329,Ne3,EA050,Females alone,EA050-6,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +64330,Ne4,EA050,Females alone,EA050-6,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +64331,Ne5,EA050,Females alone,EA050-6,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +64332,Ne6,EA050,Activity is absent,EA050-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +64333,Ne7,EA050,Females alone,EA050-6,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +64334,Ne8,EA050,"Both, females more",EA050-5,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +64335,Ne9,EA050,Females alone,EA050-6,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +64336,Nf10,EA050,?,EA050-NA,,,,,, +64337,Nf11,EA050,?,EA050-NA,,,,,, +64338,Nf12,EA050,Females alone,EA050-6,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +64339,Nf13,EA050,?,EA050-NA,,,,,, +64340,Nf14,EA050,?,EA050-NA,,,,,, +64341,Nf15,EA050,?,EA050-NA,,,,,, +64342,Nf2,EA050,"Both, females more",EA050-5,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +64343,Nf3,EA050,Females alone,EA050-6,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +64344,Nf4,EA050,Females alone,EA050-6,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +64345,Nf5,EA050,Females alone,EA050-6,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +64346,Nf6,EA050,?,EA050-NA,,,,,, +64347,Nf7,EA050,?,EA050-NA,,,,,, +64348,Nf8,EA050,Females alone,EA050-6,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +64349,Nf9,EA050,"Both, females more",EA050-5,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +64350,Ng1,EA050,Females alone,EA050-6,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +64351,Ng10,EA050,Females alone,EA050-6,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +64352,Ng11,EA050,?,EA050-NA,,,,,, +64353,Ng12,EA050,?,EA050-NA,,,,,, +64354,Ng13,EA050,?,EA050-NA,,,,,, +64355,Ng14,EA050,?,EA050-NA,,,,,, +64356,Ng15,EA050,?,EA050-NA,,,,,, +64357,Ng2,EA050,?,EA050-NA,,,,,, +64358,Ng3,EA050,Females alone,EA050-6,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +64359,Ng4,EA050,?,EA050-NA,,,,,, +64360,Ng5,EA050,Females alone,EA050-6,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +64361,Ng6,EA050,"Both, females more",EA050-5,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +64362,Ng7,EA050,?,EA050-NA,,,,,, +64363,Ng8,EA050,?,EA050-NA,,,,,, +64364,Ng9,EA050,?,EA050-NA,,,,,, +64365,Nh1,EA050,Females alone,EA050-6,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +64366,Nh10,EA050,?,EA050-NA,,,,,, +64367,Nh11,EA050,?,EA050-NA,,,,,, +64368,Nh12,EA050,?,EA050-NA,,,,,, +64369,Nh13,EA050,?,EA050-NA,,,,,, +64370,Nh14,EA050,?,EA050-NA,,,,,, +64371,Nh15,EA050,Females alone,EA050-6,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +64372,Nh16,EA050,Females alone,EA050-6,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64373,Nh17,EA050,Females alone,EA050-6,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +64374,Nh18,EA050,Females alone,EA050-6,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64375,Nh19,EA050,"Both, females more",EA050-5,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +64376,Nh2,EA050,?,EA050-NA,,,,,, +64377,Nh20,EA050,?,EA050-NA,,,,,, +64378,Nh21,EA050,?,EA050-NA,,,,,, +64379,Nh22,EA050,?,EA050-NA,,,,,, +64380,Nh23,EA050,"Both, females more",EA050-5,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +64381,Nh24,EA050,Females alone,EA050-6,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +64382,Nh25,EA050,?,EA050-NA,,,,,, +64383,Nh26,EA050,?,EA050-NA,,,,,, +64384,Nh27,EA050,?,EA050-NA,,,,,, +64385,Nh3,EA050,Females alone,EA050-6,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +64386,Nh4,EA050,Activity is absent,EA050-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +64387,Nh5,EA050,Females alone,EA050-6,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +64388,Nh6,EA050,?,EA050-NA,,,,,, +64389,Nh7,EA050,?,EA050-NA,,,,,, +64390,Nh8,EA050,Equal participation,EA050-4,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +64391,Nh9,EA050,?,EA050-NA,,,,,, +64392,Ni1,EA050,Females alone,EA050-6,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +64393,Ni2,EA050,Females alone,EA050-6,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +64394,Ni3,EA050,"Both, males more",EA050-2,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +64395,Ni4,EA050,?,EA050-NA,,,,,, +64396,Ni5,EA050,Females alone,EA050-6,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +64397,Ni6,EA050,Differentiated but equal,EA050-3,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +64398,Ni7,EA050,?,EA050-NA,,,,,, +64399,Ni8,EA050,?,EA050-NA,,,,,, +64400,Ni9,EA050,?,EA050-NA,,,,,, +64401,Nj1,EA050,Females alone,EA050-6,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64402,Nj10,EA050,?,EA050-NA,,,,,, +64403,Nj11,EA050,?,EA050-NA,,,,,, +64404,Nj12,EA050,?,EA050-NA,,,,,, +64405,Nj13,EA050,?,EA050-NA,,,,,, +64406,Nj14,EA050,?,EA050-NA,,,,,, +64407,Nj2,EA050,"Activity present, sex diff. unspecified",EA050-8,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +64408,Nj3,EA050,Activity is absent,EA050-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +64409,Nj4,EA050,Females alone,EA050-6,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +64410,Nj5,EA050,?,EA050-NA,,,,,, +64411,Nj6,EA050,?,EA050-NA,,,,,, +64412,Nj7,EA050,Activity is absent,EA050-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64413,Nj8,EA050,?,EA050-NA,,,,,, +64414,Nj9,EA050,Activity is absent,EA050-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +64415,Sa1,EA050,"Both, males more",EA050-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +64416,Sa10,EA050,?,EA050-NA,,,,,, +64417,Sa11,EA050,?,EA050-NA,,,,,, +64418,Sa12,EA050,?,EA050-NA,,,,,, +64419,Sa13,EA050,?,EA050-NA,,,,,, +64420,Sa14,EA050,?,EA050-NA,,,,,, +64421,Sa15,EA050,?,EA050-NA,,,,,, +64422,Sa16,EA050,?,EA050-NA,,,,,, +64423,Sa17,EA050,?,EA050-NA,,,,,, +64424,Sa2,EA050,?,EA050-NA,,,,,, +64425,Sa3,EA050,"Both, females more",EA050-5,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +64426,Sa4,EA050,?,EA050-NA,,,,,, +64427,Sa5,EA050,"Both, females more",EA050-5,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +64428,Sa6,EA050,Activity is absent,EA050-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +64429,Sa7,EA050,?,EA050-NA,,,,,, +64430,Sa8,EA050,?,EA050-NA,,,,,, +64431,Sa9,EA050,Equal participation,EA050-4,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +64432,Sb1,EA050,Females alone,EA050-6,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +64433,Sb2,EA050,Females alone,EA050-6,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +64434,Sb3,EA050,?,EA050-NA,,,,,, +64435,Sb4,EA050,"Both, females more",EA050-5,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +64436,Sb5,EA050,?,EA050-NA,,,,,, +64437,Sb6,EA050,Females alone,EA050-6,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +64438,Sb7,EA050,?,EA050-NA,,,,,, +64439,Sb8,EA050,?,EA050-NA,,,,,, +64440,Sb9,EA050,Activity is absent,EA050-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +64441,Sc1,EA050,Equal participation,EA050-4,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +64442,Sc10,EA050,?,EA050-NA,,,,,, +64443,Sc11,EA050,Females alone,EA050-6,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +64444,Sc12,EA050,?,EA050-NA,,,,,, +64445,Sc13,EA050,?,EA050-NA,,,,,, +64446,Sc14,EA050,?,EA050-NA,,,,,, +64447,Sc15,EA050,?,EA050-NA,,,,,, +64448,Sc16,EA050,?,EA050-NA,,,,,, +64449,Sc17,EA050,?,EA050-NA,,,,,, +64450,Sc18,EA050,Equal participation,EA050-4,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +64451,Sc2,EA050,Females alone,EA050-6,,leedsnd,,1950,EthnographicAtlas_1967_p120, +64452,Sc3,EA050,"Both, females more",EA050-5,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +64453,Sc4,EA050,"Both, females more",EA050-5,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +64454,Sc5,EA050,Females alone,EA050-6,,farabee1918,,1900,EthnographicAtlas_1967_p120, +64455,Sc6,EA050,Equal participation,EA050-4,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64456,Sc7,EA050,Females alone,EA050-6,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +64457,Sc8,EA050,Females alone,EA050-6,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +64458,Sc9,EA050,Females alone,EA050-6,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +64459,Sd1,EA050,Equal participation,EA050-4,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64460,Sd2,EA050,Equal participation,EA050-4,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +64461,Sd3,EA050,?,EA050-NA,,,,,, +64462,Sd4,EA050,?,EA050-NA,,,,,, +64463,Sd5,EA050,Males alone,EA050-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +64464,Sd6,EA050,Females alone,EA050-6,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +64465,Sd7,EA050,"Both, females more",EA050-5,,fock1963,,1950,EthnographicAtlas_1967_p120, +64466,Sd8,EA050,?,EA050-NA,,,,,, +64467,Sd9,EA050,Females alone,EA050-6,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64468,Se1,EA050,Equal participation,EA050-4,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +64469,Se10,EA050,?,EA050-NA,,,,,, +64470,Se11,EA050,"Both, females more",EA050-5,,prost1965,,1960,EthnographicAtlas_1967_p124, +64471,Se12,EA050,?,EA050-NA,,,,,, +64472,Se2,EA050,Equal participation,EA050-4,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +64473,Se3,EA050,"Both, females more",EA050-5,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +64474,Se4,EA050,?,EA050-NA,,,,,, +64475,Se5,EA050,"Both, females more",EA050-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +64476,Se6,EA050,Males alone,EA050-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +64477,Se7,EA050,?,EA050-NA,,,,,, +64478,Se8,EA050,Equal participation,EA050-4,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +64479,Se9,EA050,?,EA050-NA,,,,,, +64480,Sf1,EA050,Activity is absent,EA050-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +64481,Sf2,EA050,Activity is absent,EA050-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +64482,Sf3,EA050,Females alone,EA050-6,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +64483,Sf4,EA050,"Both, females more",EA050-5,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +64484,Sf5,EA050,?,EA050-NA,,,,,, +64485,Sf6,EA050,?,EA050-NA,,,,,, +64486,Sf7,EA050,?,EA050-NA,,,,,, +64487,Sf8,EA050,?,EA050-NA,,,,,, +64488,Sf9,EA050,?,EA050-NA,,,,,, +64489,Sg1,EA050,Females alone,EA050-6,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +64490,Sg2,EA050,Females alone,EA050-6,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64491,Sg3,EA050,Females alone,EA050-6,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +64492,Sg4,EA050,Equal participation,EA050-4,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +64493,Sg5,EA050,?,EA050-NA,,,,,, +64494,Sh1,EA050,"Both, females more",EA050-5,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +64495,Sh2,EA050,Equal participation,EA050-4,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +64496,Sh3,EA050,"Both, females more",EA050-5,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +64497,Sh4,EA050,Equal participation,EA050-4,,oberg1949,,1940,EthnographicAtlas_1967_p124, +64498,Sh5,EA050,"Both, females more",EA050-5,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +64499,Sh6,EA050,Equal participation,EA050-4,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +64500,Sh7,EA050,?,EA050-NA,,,,,, +64501,Sh8,EA050,Females alone,EA050-6,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +64502,Sh9,EA050,Females alone,EA050-6,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +64503,Si1,EA050,Females alone,EA050-6,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64504,Si10,EA050,Differentiated but equal,EA050-3,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +64505,Si2,EA050,"Both, females more",EA050-5,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +64506,Si3,EA050,?,EA050-NA,,,,,, +64507,Si4,EA050,"Both, females more",EA050-5,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +64508,Si5,EA050,Females alone,EA050-6,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +64509,Si6,EA050,"Both, males more",EA050-2,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +64510,Si7,EA050,?,EA050-NA,,,,,, +64511,Si8,EA050,Females alone,EA050-6,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +64512,Si9,EA050,?,EA050-NA,,,,,, +64513,Sj1,EA050,Differentiated but equal,EA050-3,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +64514,Sj10,EA050,"Both, females more",EA050-5,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64515,Sj11,EA050,"Both, females more",EA050-5,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +64516,Sj2,EA050,Females alone,EA050-6,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +64517,Sj3,EA050,"Both, females more",EA050-5,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +64518,Sj4,EA050,"Both, females more",EA050-5,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +64519,Sj5,EA050,Females alone,EA050-6,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +64520,Sj6,EA050,?,EA050-NA,,,,,, +64521,Sj7,EA050,Females alone,EA050-6,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +64522,Sj8,EA050,Females alone,EA050-6,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +64523,Sj9,EA050,Females alone,EA050-6,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +64524,ch12,EA050,Females alone,EA050-6,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +64525,ch13,EA050,Activity is absent,EA050-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +64526,ch14,EA050,Females alone,EA050-6,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +64527,ch15,EA050,Females alone,EA050-6,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +64528,ch16,EA050,Females alone,EA050-6,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +64529,ch17,EA050,Activity is absent,EA050-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +64530,ch18,EA050,"Both, females more",EA050-5,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +64531,ch19,EA050,"Both, females more",EA050-5,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +64532,ch20,EA050,Activity is absent,EA050-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +64533,ch21,EA050,Females alone,EA050-6,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +64534,ch22,EA050,Activity is absent,EA050-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +64535,ch23,EA050,Activity is absent,EA050-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +64536,ch24,EA050,Females alone,EA050-6,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +64537,ch25,EA050,Activity is absent,EA050-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +64538,ch26,EA050,Females alone,EA050-6,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +64539,ch27,EA050,"Both, females more",EA050-5,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +64540,ch28,EA050,"Both, females more",EA050-5,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +64541,ec12,EA050,Activity is absent,EA050-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +64542,ec13,EA050,Females alone,EA050-6,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +64543,ec14,EA050,Females alone,EA050-6,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +64544,ec15,EA050,Females alone,EA050-6,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +64545,ec16,EA050,Females alone,EA050-6,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +64546,ec17,EA050,Females alone,EA050-6,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +64547,ec18,EA050,Females alone,EA050-6,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +64548,ec19,EA050,Females alone,EA050-6,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +64549,ec20,EA050,Females alone,EA050-6,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +64550,ec21,EA050,Females alone,EA050-6,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +64551,Aa1,EA051,Males alone,EA051-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +64552,Aa2,EA051,Males alone,EA051-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +64553,Aa3,EA051,Males alone,EA051-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +64554,Aa4,EA051,?,EA051-NA,,,,,, +64555,Aa5,EA051,"Both, males more",EA051-2,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +64556,Aa6,EA051,Males alone,EA051-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p64, +64557,Aa7,EA051,Males alone,EA051-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +64558,Aa8,EA051,Males alone,EA051-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +64559,Aa9,EA051,Males alone,EA051-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +64560,Ab1,EA051,Males alone,EA051-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +64561,Ab10,EA051,Males alone,EA051-1,,hunter1936,,1936,EthnographicAtlas_1967_p64, +64562,Ab11,EA051,Males alone,EA051-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +64563,Ab12,EA051,Males alone,EA051-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +64564,Ab13,EA051,Males alone,EA051-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +64565,Ab14,EA051,Males alone,EA051-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +64566,Ab15,EA051,Males alone,EA051-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +64567,Ab16,EA051,Males alone,EA051-1,,earthy1933,,1930,EthnographicAtlas_1967_p64, +64568,Ab17,EA051,?,EA051-NA,,,,,, +64569,Ab18,EA051,Males alone,EA051-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +64570,Ab19,EA051,Males alone,EA051-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +64571,Ab2,EA051,Males alone,EA051-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +64572,Ab20,EA051,?,EA051-NA,,,,,, +64573,Ab21a,EA051,?,EA051-NA,,,,,, +64574,Ab21b,EA051,?,EA051-NA,,,,,, +64575,Ab22,EA051,?,EA051-NA,,,,,, +64576,Ab3,EA051,Males alone,EA051-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +64577,Ab4,EA051,Males alone,EA051-1,,junod1927,,1920,EthnographicAtlas_1967_p64, +64578,Ab5,EA051,Males alone,EA051-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +64579,Ab6,EA051,Males alone,EA051-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +64580,Ab7,EA051,Males alone,EA051-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p64, +64581,Ab8,EA051,Males alone,EA051-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +64582,Ab9,EA051,Males alone,EA051-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +64583,Ac1,EA051,Males alone,EA051-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +64584,Ac10,EA051,Males alone,EA051-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +64585,Ac11,EA051,Males alone,EA051-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +64586,Ac12,EA051,Males alone,EA051-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p64, +64587,Ac13,EA051,?,EA051-NA,,,,,, +64588,Ac14,EA051,Males alone,EA051-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p64, +64589,Ac15,EA051,?,EA051-NA,,,,,, +64590,Ac16,EA051,?,EA051-NA,,,,,, +64591,Ac17,EA051,Males alone,EA051-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +64592,Ac18,EA051,Males alone,EA051-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +64593,Ac19,EA051,?,EA051-NA,,,,,, +64594,Ac2,EA051,Activity is absent,EA051-9,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p64, +64595,Ac20,EA051,?,EA051-NA,,,,,, +64596,Ac21,EA051,Males alone,EA051-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p64, +64597,Ac22,EA051,Males alone,EA051-1,,mertens1935,,1930,EthnographicAtlas_1967_p64, +64598,Ac23,EA051,Males alone,EA051-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +64599,Ac24,EA051,?,EA051-NA,,,,,, +64600,Ac25,EA051,Males alone,EA051-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p64, +64601,Ac26,EA051,?,EA051-NA,,,,,, +64602,Ac27,EA051,?,EA051-NA,,,,,, +64603,Ac28,EA051,Males alone,EA051-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +64604,Ac29,EA051,?,EA051-NA,,,,,, +64605,Ac3,EA051,Males alone,EA051-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +64606,Ac30,EA051,Males alone,EA051-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +64607,Ac31,EA051,"Both, males more",EA051-2,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +64608,Ac32,EA051,?,EA051-NA,,,,,, +64609,Ac33,EA051,Males alone,EA051-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +64610,Ac34,EA051,Males alone,EA051-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +64611,Ac35,EA051,?,EA051-NA,,,,,, +64612,Ac36,EA051,Males alone,EA051-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p64, +64613,Ac37,EA051,?,EA051-NA,,,,,, +64614,Ac38,EA051,Males alone,EA051-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +64615,Ac39,EA051,Males alone,EA051-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +64616,Ac4,EA051,Males alone,EA051-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +64617,Ac40,EA051,?,EA051-NA,,,,,, +64618,Ac41,EA051,?,EA051-NA,,,,,, +64619,Ac42,EA051,?,EA051-NA,,,,,, +64620,Ac43,EA051,?,EA051-NA,,,,,, +64621,Ac5,EA051,Males alone,EA051-1,There are also professional hippopotamus hunters,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +64622,Ac6,EA051,Males alone,EA051-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +64623,Ac7,EA051,Males alone,EA051-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +64624,Ac8,EA051,Males alone,EA051-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +64625,Ac9,EA051,Males alone,EA051-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +64626,Ad1,EA051,Males alone,EA051-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +64627,Ad10,EA051,Males alone,EA051-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +64628,Ad11,EA051,Males alone,EA051-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +64629,Ad12,EA051,?,EA051-NA,,,,,, +64630,Ad13,EA051,Males alone,EA051-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +64631,Ad14,EA051,?,EA051-NA,,,,,, +64632,Ad15,EA051,Males alone,EA051-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p68, +64633,Ad16,EA051,Males alone,EA051-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +64634,Ad17,EA051,Males alone,EA051-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +64635,Ad18,EA051,?,EA051-NA,,,,,, +64636,Ad19,EA051,Males alone,EA051-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +64637,Ad2,EA051,Males alone,EA051-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +64638,Ad20,EA051,Males alone,EA051-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +64639,Ad21,EA051,Males alone,EA051-1,,maurice193538,,1930,EthnographicAtlas_1967_p68, +64640,Ad22,EA051,Males alone,EA051-1,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +64641,Ad23,EA051,?,EA051-NA,,,,,, +64642,Ad24,EA051,Males alone,EA051-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +64643,Ad25,EA051,?,EA051-NA,,,,,, +64644,Ad26,EA051,?,EA051-NA,,,,,, +64645,Ad27,EA051,?,EA051-NA,,,,,, +64646,Ad28,EA051,Males alone,EA051-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +64647,Ad29,EA051,Males alone,EA051-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +64648,Ad3,EA051,Males alone,EA051-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +64649,Ad30,EA051,Males alone,EA051-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +64650,Ad31,EA051,Males alone,EA051-1,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +64651,Ad32,EA051,Males alone,EA051-1,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p68, +64652,Ad33,EA051,Males alone,EA051-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +64653,Ad34,EA051,Males alone,EA051-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +64654,Ad35,EA051,Males alone,EA051-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +64655,Ad36,EA051,?,EA051-NA,,,,,, +64656,Ad37,EA051,?,EA051-NA,,,,,, +64657,Ad38,EA051,?,EA051-NA,,,,,, +64658,Ad39,EA051,Males alone,EA051-1,,gray1963,,1950,EthnographicAtlas_1967_p68, +64659,Ad4,EA051,Males alone,EA051-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +64660,Ad40,EA051,?,EA051-NA,,,,,, +64661,Ad41,EA051,Males alone,EA051-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +64662,Ad42,EA051,Males alone,EA051-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p68, +64663,Ad43,EA051,?,EA051-NA,,,,,, +64664,Ad44,EA051,?,EA051-NA,,,,,, +64665,Ad45,EA051,Males alone,EA051-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +64666,Ad46,EA051,Males alone,EA051-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +64667,Ad47,EA051,Males alone,EA051-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +64668,Ad48,EA051,Males alone,EA051-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +64669,Ad49,EA051,Males alone,EA051-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +64670,Ad5,EA051,?,EA051-NA,,,,,, +64671,Ad50,EA051,Males alone,EA051-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +64672,Ad51,EA051,Males alone,EA051-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +64673,Ad6,EA051,Males alone,EA051-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +64674,Ad7,EA051,Males alone,EA051-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +64675,Ad8,EA051,Males alone,EA051-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +64676,Ad9,EA051,Males alone,EA051-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +64677,Ae1,EA051,Males alone,EA051-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +64678,Ae10,EA051,Males alone,EA051-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +64679,Ae11,EA051,Males alone,EA051-1,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +64680,Ae12,EA051,Males alone,EA051-1,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +64681,Ae13,EA051,?,EA051-NA,,,,,, +64682,Ae14,EA051,Males alone,EA051-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +64683,Ae15,EA051,Males alone,EA051-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p68, +64684,Ae16,EA051,?,EA051-NA,,,,,, +64685,Ae17,EA051,Males alone,EA051-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +64686,Ae18,EA051,Males alone,EA051-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +64687,Ae19,EA051,?,EA051-NA,,,,,, +64688,Ae2,EA051,Males alone,EA051-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +64689,Ae20,EA051,?,EA051-NA,,,,,, +64690,Ae21,EA051,?,EA051-NA,,,,,, +64691,Ae22,EA051,Males alone,EA051-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p68, +64692,Ae23,EA051,?,EA051-NA,,,,,, +64693,Ae24,EA051,?,EA051-NA,,,,,, +64694,Ae25,EA051,?,EA051-NA,,,,,, +64695,Ae26,EA051,?,EA051-NA,,,,,, +64696,Ae27,EA051,?,EA051-NA,,,,,, +64697,Ae28,EA051,Males alone,EA051-1,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +64698,Ae29,EA051,Males alone,EA051-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +64699,Ae3,EA051,Males alone,EA051-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +64700,Ae30,EA051,?,EA051-NA,,,,,, +64701,Ae31,EA051,Males alone,EA051-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +64702,Ae32,EA051,?,EA051-NA,,,,,, +64703,Ae33,EA051,Males alone,EA051-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +64704,Ae34,EA051,?,EA051-NA,,,,,, +64705,Ae35,EA051,?,EA051-NA,,,,,, +64706,Ae36,EA051,?,EA051-NA,,,,,, +64707,Ae37,EA051,?,EA051-NA,,,,,, +64708,Ae38,EA051,Males alone,EA051-1,,wijnant192526,,1920,EthnographicAtlas_1967_p68, +64709,Ae39,EA051,Males alone,EA051-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +64710,Ae4,EA051,Males alone,EA051-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +64711,Ae40,EA051,?,EA051-NA,,,,,, +64712,Ae41,EA051,Males alone,EA051-1,,andersson1953,,1940,EthnographicAtlas_1967_p68, +64713,Ae42,EA051,?,EA051-NA,,,,,, +64714,Ae43,EA051,?,EA051-NA,,,,,, +64715,Ae44,EA051,?,EA051-NA,,,,,, +64716,Ae45,EA051,?,EA051-NA,,,,,, +64717,Ae46,EA051,?,EA051-NA,,,,,, +64718,Ae47,EA051,?,EA051-NA,,,,,, +64719,Ae48,EA051,?,EA051-NA,,,,,, +64720,Ae49,EA051,?,EA051-NA,,,,,, +64721,Ae5,EA051,Males alone,EA051-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +64722,Ae50,EA051,Males alone,EA051-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +64723,Ae51,EA051,Males alone,EA051-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +64724,Ae52,EA051,Males alone,EA051-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +64725,Ae53,EA051,?,EA051-NA,,,,,, +64726,Ae54,EA051,?,EA051-NA,,,,,, +64727,Ae55,EA051,Males alone,EA051-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +64728,Ae56,EA051,Males alone,EA051-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +64729,Ae57,EA051,?,EA051-NA,,,,,, +64730,Ae58,EA051,?,EA051-NA,,,,,, +64731,Ae59,EA051,?,EA051-NA,,,,,, +64732,Ae6,EA051,Males alone,EA051-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +64733,Ae7,EA051,Males alone,EA051-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +64734,Ae8,EA051,Males alone,EA051-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +64735,Ae9,EA051,Males alone,EA051-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +64736,Af1,EA051,Males alone,EA051-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +64737,Af10,EA051,Activity is absent,EA051-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +64738,Af11,EA051,Males alone,EA051-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +64739,Af12,EA051,?,EA051-NA,,,,,, +64740,Af13,EA051,Males alone,EA051-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +64741,Af14,EA051,Males alone,EA051-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +64742,Af15,EA051,Males alone,EA051-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +64743,Af16,EA051,?,EA051-NA,,,,,, +64744,Af17,EA051,?,EA051-NA,,,,,, +64745,Af18,EA051,?,EA051-NA,,,,,, +64746,Af19,EA051,Males alone,EA051-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p72, +64747,Af2,EA051,Males alone,EA051-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +64748,Af20,EA051,Males alone,EA051-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +64749,Af21,EA051,?,EA051-NA,,,,,, +64750,Af22,EA051,Males alone,EA051-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +64751,Af23,EA051,?,EA051-NA,,,,,, +64752,Af24,EA051,Males alone,EA051-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +64753,Af25,EA051,Males alone,EA051-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +64754,Af26,EA051,?,EA051-NA,,,,,, +64755,Af27,EA051,?,EA051-NA,,,,,, +64756,Af28,EA051,Males alone,EA051-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +64757,Af29,EA051,?,EA051-NA,,,,,, +64758,Af3,EA051,Males alone,EA051-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +64759,Af30,EA051,?,EA051-NA,,,,,, +64760,Af31,EA051,?,EA051-NA,,,,,, +64761,Af32,EA051,Males alone,EA051-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64762,Af33,EA051,?,EA051-NA,,,,,, +64763,Af34,EA051,?,EA051-NA,,,,,, +64764,Af35,EA051,?,EA051-NA,,,,,, +64765,Af36,EA051,Males alone,EA051-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +64766,Af37,EA051,?,EA051-NA,,,,,, +64767,Af38,EA051,?,EA051-NA,,,,,, +64768,Af39,EA051,?,EA051-NA,,,,,, +64769,Af4,EA051,Males alone,EA051-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +64770,Af40,EA051,?,EA051-NA,,,,,, +64771,Af41,EA051,?,EA051-NA,,,,,, +64772,Af42,EA051,Males alone,EA051-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +64773,Af43,EA051,Males alone,EA051-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p72, +64774,Af44,EA051,?,EA051-NA,,,,,, +64775,Af45,EA051,?,EA051-NA,,,,,, +64776,Af46,EA051,?,EA051-NA,,,,,, +64777,Af47,EA051,?,EA051-NA,,,,,, +64778,Af48,EA051,?,EA051-NA,,,,,, +64779,Af49,EA051,Males alone,EA051-1,,schwab1947,,1940,EthnographicAtlas_1967_p72, +64780,Af5,EA051,Males alone,EA051-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +64781,Af50,EA051,?,EA051-NA,,,,,, +64782,Af51,EA051,Males alone,EA051-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +64783,Af52,EA051,Males alone,EA051-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +64784,Af53,EA051,?,EA051-NA,,,,,, +64785,Af54,EA051,Males alone,EA051-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +64786,Af55,EA051,?,EA051-NA,,,,,, +64787,Af56,EA051,Males alone,EA051-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +64788,Af57,EA051,Males alone,EA051-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +64789,Af58,EA051,?,EA051-NA,,,,,, +64790,Af6,EA051,Activity is absent,EA051-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +64791,Af7,EA051,Males alone,EA051-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +64792,Af8,EA051,Males alone,EA051-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +64793,Af9,EA051,Males alone,EA051-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p72, +64794,Ag1,EA051,Males alone,EA051-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +64795,Ag10,EA051,Males alone,EA051-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +64796,Ag11,EA051,Males alone,EA051-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +64797,Ag12,EA051,Males alone,EA051-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +64798,Ag13,EA051,?,EA051-NA,,,,,, +64799,Ag14,EA051,?,EA051-NA,,,,,, +64800,Ag15,EA051,?,EA051-NA,,,,,, +64801,Ag16,EA051,Males alone,EA051-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p72, +64802,Ag17,EA051,?,EA051-NA,,,,,, +64803,Ag18,EA051,Males alone,EA051-1,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p72, +64804,Ag19,EA051,Males alone,EA051-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p72, +64805,Ag2,EA051,Males alone,EA051-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +64806,Ag20,EA051,?,EA051-NA,,,,,, +64807,Ag21,EA051,Males alone,EA051-1,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +64808,Ag22,EA051,Males alone,EA051-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +64809,Ag23,EA051,?,EA051-NA,,,,,, +64810,Ag24,EA051,?,EA051-NA,,,,,, +64811,Ag25,EA051,?,EA051-NA,,,,,, +64812,Ag26,EA051,?,EA051-NA,,,,,, +64813,Ag27,EA051,Males alone,EA051-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p72, +64814,Ag28,EA051,?,EA051-NA,,,,,, +64815,Ag29,EA051,?,EA051-NA,,,,,, +64816,Ag3,EA051,Males alone,EA051-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +64817,Ag30,EA051,Males alone,EA051-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +64818,Ag31,EA051,Males alone,EA051-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p72, +64819,Ag32,EA051,Males alone,EA051-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +64820,Ag33,EA051,?,EA051-NA,,,,,, +64821,Ag34,EA051,?,EA051-NA,,,,,, +64822,Ag35,EA051,?,EA051-NA,,,,,, +64823,Ag36,EA051,?,EA051-NA,,,,,, +64824,Ag37,EA051,?,EA051-NA,,,,,, +64825,Ag38,EA051,?,EA051-NA,,,,,, +64826,Ag39,EA051,?,EA051-NA,,,,,, +64827,Ag4,EA051,Males alone,EA051-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +64828,Ag40,EA051,?,EA051-NA,,,,,, +64829,Ag41,EA051,?,EA051-NA,,,,,, +64830,Ag42,EA051,?,EA051-NA,,,,,, +64831,Ag43,EA051,?,EA051-NA,,,,,, +64832,Ag44,EA051,?,EA051-NA,,,,,, +64833,Ag45,EA051,Males alone,EA051-1,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +64834,Ag46,EA051,?,EA051-NA,,,,,, +64835,Ag47,EA051,Males alone,EA051-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +64836,Ag48,EA051,Males alone,EA051-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +64837,Ag49,EA051,Males alone,EA051-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +64838,Ag5,EA051,Males alone,EA051-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +64839,Ag50,EA051,Males alone,EA051-1,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +64840,Ag51,EA051,?,EA051-NA,,,,,, +64841,Ag52,EA051,?,EA051-NA,,,,,, +64842,Ag53,EA051,Males alone,EA051-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +64843,Ag54,EA051,Males alone,EA051-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +64844,Ag6,EA051,Activity is absent,EA051-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +64845,Ag7,EA051,Activity is absent,EA051-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p72, +64846,Ag8,EA051,Males alone,EA051-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +64847,Ag9,EA051,Males alone,EA051-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +64848,Ah1,EA051,Males alone,EA051-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +64849,Ah10,EA051,?,EA051-NA,,,,,, +64850,Ah11,EA051,?,EA051-NA,,,,,, +64851,Ah12,EA051,?,EA051-NA,,,,,, +64852,Ah13,EA051,Males alone,EA051-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +64853,Ah14,EA051,Males alone,EA051-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p76, +64854,Ah15,EA051,Males alone,EA051-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +64855,Ah16,EA051,?,EA051-NA,,,,,, +64856,Ah17,EA051,?,EA051-NA,,,,,, +64857,Ah18,EA051,?,EA051-NA,,,,,, +64858,Ah19,EA051,Males alone,EA051-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p76, +64859,Ah2,EA051,Males alone,EA051-1,,meek1931a,,1920,EthnographicAtlas_1967_p76, +64860,Ah20,EA051,Males alone,EA051-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +64861,Ah21,EA051,?,EA051-NA,,,,,, +64862,Ah22,EA051,?,EA051-NA,,,,,, +64863,Ah23,EA051,?,EA051-NA,,,,,, +64864,Ah24,EA051,?,EA051-NA,,,,,, +64865,Ah25,EA051,?,EA051-NA,,,,,, +64866,Ah26,EA051,?,EA051-NA,,,,,, +64867,Ah27,EA051,?,EA051-NA,,,,,, +64868,Ah28,EA051,?,EA051-NA,,,,,, +64869,Ah29,EA051,?,EA051-NA,,,,,, +64870,Ah3,EA051,Males alone,EA051-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +64871,Ah30,EA051,Males alone,EA051-1,,meek1931b,,1920,EthnographicAtlas_1967_p76, +64872,Ah31,EA051,Males alone,EA051-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p76, +64873,Ah32,EA051,?,EA051-NA,,,,,, +64874,Ah33,EA051,Males alone,EA051-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p76, +64875,Ah34,EA051,?,EA051-NA,,,,,, +64876,Ah35,EA051,?,EA051-NA,,,,,, +64877,Ah36,EA051,Males alone,EA051-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +64878,Ah37,EA051,?,EA051-NA,,,,,, +64879,Ah38,EA051,Males alone,EA051-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +64880,Ah39,EA051,Males alone,EA051-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +64881,Ah4,EA051,Activity is absent,EA051-9,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p76, +64882,Ah5,EA051,?,EA051-NA,,,,,, +64883,Ah6,EA051,?,EA051-NA,,,,,, +64884,Ah7,EA051,Males alone,EA051-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +64885,Ah8,EA051,Males alone,EA051-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +64886,Ah9,EA051,Males alone,EA051-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +64887,Ai1,EA051,Males alone,EA051-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +64888,Ai10,EA051,Males alone,EA051-1,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +64889,Ai11,EA051,Males alone,EA051-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +64890,Ai12,EA051,Males alone,EA051-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p76, +64891,Ai13,EA051,?,EA051-NA,,,,,, +64892,Ai14,EA051,Males alone,EA051-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +64893,Ai15,EA051,?,EA051-NA,,,,,, +64894,Ai16,EA051,?,EA051-NA,,,,,, +64895,Ai17,EA051,?,EA051-NA,,,,,, +64896,Ai18,EA051,?,EA051-NA,,,,,, +64897,Ai19,EA051,?,EA051-NA,,,,,, +64898,Ai2,EA051,?,EA051-NA,,,,,, +64899,Ai20,EA051,?,EA051-NA,,,,,, +64900,Ai21,EA051,?,EA051-NA,,,,,, +64901,Ai22,EA051,Males alone,EA051-1,,delafosse1897,,1890,EthnographicAtlas_1967_p76, +64902,Ai23,EA051,Males alone,EA051-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +64903,Ai24,EA051,?,EA051-NA,,,,,, +64904,Ai25,EA051,?,EA051-NA,,,,,, +64905,Ai26,EA051,Males alone,EA051-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +64906,Ai27,EA051,?,EA051-NA,,,,,, +64907,Ai28,EA051,Males alone,EA051-1,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +64908,Ai29,EA051,Males alone,EA051-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +64909,Ai3,EA051,Males alone,EA051-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +64910,Ai30,EA051,Males alone,EA051-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +64911,Ai31,EA051,Males alone,EA051-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +64912,Ai32,EA051,?,EA051-NA,,,,,, +64913,Ai33,EA051,?,EA051-NA,,,,,, +64914,Ai34,EA051,Males alone,EA051-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +64915,Ai35,EA051,Males alone,EA051-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +64916,Ai36,EA051,Males alone,EA051-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +64917,Ai37,EA051,?,EA051-NA,,,,,, +64918,Ai38,EA051,Males alone,EA051-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +64919,Ai39,EA051,Males alone,EA051-1,,nadel1947,,1940,EthnographicAtlas_1967_p76, +64920,Ai4,EA051,?,EA051-NA,,,,,, +64921,Ai40,EA051,Males alone,EA051-1,,nadel1947,,1940,EthnographicAtlas_1967_p76, +64922,Ai41,EA051,Males alone,EA051-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +64923,Ai42,EA051,Males alone,EA051-1,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +64924,Ai43,EA051,Males alone,EA051-1,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +64925,Ai44,EA051,Males alone,EA051-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p76, +64926,Ai45,EA051,?,EA051-NA,,,,,, +64927,Ai46,EA051,Males alone,EA051-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p76, +64928,Ai47,EA051,Males alone,EA051-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +64929,Ai5,EA051,Males alone,EA051-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +64930,Ai6,EA051,Males alone,EA051-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +64931,Ai7,EA051,Males alone,EA051-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +64932,Ai8,EA051,Males alone,EA051-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +64933,Ai9,EA051,Males alone,EA051-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +64934,Aj1,EA051,Males alone,EA051-1,,lawrance1957,,1950,EthnographicAtlas_1967_p76, +64935,Aj10,EA051,?,EA051-NA,,,,,, +64936,Aj11,EA051,Males alone,EA051-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p80, +64937,Aj12,EA051,Males alone,EA051-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +64938,Aj13,EA051,Males alone,EA051-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +64939,Aj14,EA051,?,EA051-NA,,,,,, +64940,Aj15,EA051,Males alone,EA051-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +64941,Aj16,EA051,Males alone,EA051-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +64942,Aj17,EA051,Males alone,EA051-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +64943,Aj18,EA051,Males alone,EA051-1,,jensen1959,,1950,EthnographicAtlas_1967_p80, +64944,Aj19,EA051,Males alone,EA051-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p80, +64945,Aj2,EA051,Males alone,EA051-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +64946,Aj20,EA051,Males alone,EA051-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p80, +64947,Aj21,EA051,Males alone,EA051-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +64948,Aj22,EA051,Males alone,EA051-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +64949,Aj23,EA051,Males alone,EA051-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +64950,Aj24,EA051,Males alone,EA051-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +64951,Aj25,EA051,Males alone,EA051-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +64952,Aj26,EA051,Males alone,EA051-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +64953,Aj27,EA051,?,EA051-NA,,,,,, +64954,Aj28,EA051,Males alone,EA051-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +64955,Aj29,EA051,?,EA051-NA,,,,,, +64956,Aj3,EA051,Males alone,EA051-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +64957,Aj30,EA051,?,EA051-NA,,,,,, +64958,Aj31,EA051,?,EA051-NA,,,,,, +64959,Aj4,EA051,Males alone,EA051-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +64960,Aj5,EA051,Males alone,EA051-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +64961,Aj6,EA051,Males alone,EA051-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +64962,Aj7,EA051,Males alone,EA051-1,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +64963,Aj8,EA051,Males alone,EA051-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +64964,Aj9,EA051,Males alone,EA051-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +64965,Ca1,EA051,Males alone,EA051-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +64966,Ca10,EA051,Males alone,EA051-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +64967,Ca11,EA051,Males alone,EA051-1,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +64968,Ca12,EA051,Males alone,EA051-1,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +64969,Ca13,EA051,Males alone,EA051-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +64970,Ca14,EA051,Males alone,EA051-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +64971,Ca15,EA051,Males alone,EA051-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +64972,Ca16,EA051,Males alone,EA051-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +64973,Ca17,EA051,Males alone,EA051-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +64974,Ca18,EA051,?,EA051-NA,,,,,, +64975,Ca19,EA051,Males alone,EA051-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +64976,Ca2,EA051,Males alone,EA051-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +64977,Ca20,EA051,?,EA051-NA,,,,,, +64978,Ca21,EA051,?,EA051-NA,,,,,, +64979,Ca22,EA051,?,EA051-NA,,,,,, +64980,Ca23,EA051,Males alone,EA051-1,,jensen1959,,1950,EthnographicAtlas_1967_p80, +64981,Ca24,EA051,Males alone,EA051-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +64982,Ca25,EA051,?,EA051-NA,,,,,, +64983,Ca26,EA051,?,EA051-NA,,,,,, +64984,Ca27,EA051,?,EA051-NA,,,,,, +64985,Ca28,EA051,Activity is absent,EA051-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +64986,Ca29,EA051,Males alone,EA051-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +64987,Ca3,EA051,Males alone,EA051-1,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p80, +64988,Ca30,EA051,Males alone,EA051-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +64989,Ca31,EA051,?,EA051-NA,,,,,, +64990,Ca32,EA051,?,EA051-NA,,,,,, +64991,Ca33,EA051,?,EA051-NA,,,,,, +64992,Ca34,EA051,?,EA051-NA,,,,,, +64993,Ca35,EA051,?,EA051-NA,,,,,, +64994,Ca36,EA051,?,EA051-NA,,,,,, +64995,Ca37,EA051,?,EA051-NA,,,,,, +64996,Ca38,EA051,?,EA051-NA,,,,,, +64997,Ca39,EA051,Males alone,EA051-1,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +64998,Ca4,EA051,Activity is absent,EA051-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +64999,Ca40,EA051,Males alone,EA051-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +65000,Ca41,EA051,?,EA051-NA,,,,,, +65001,Ca42,EA051,Males alone,EA051-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +65002,Ca43,EA051,?,EA051-NA,,,,,, +65003,Ca5,EA051,Males alone,EA051-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p80, +65004,Ca6,EA051,?,EA051-NA,,,,,, +65005,Ca7,EA051,Males alone,EA051-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +65006,Ca8,EA051,Males alone,EA051-1,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p80, +65007,Ca9,EA051,?,EA051-NA,,,,,, +65008,Cb1,EA051,?,EA051-NA,,,,,, +65009,Cb10,EA051,?,EA051-NA,,,,,, +65010,Cb11,EA051,?,EA051-NA,,,,,, +65011,Cb12,EA051,?,EA051-NA,,,,,, +65012,Cb13,EA051,?,EA051-NA,,,,,, +65013,Cb14,EA051,?,EA051-NA,,,,,, +65014,Cb15,EA051,?,EA051-NA,,,,,, +65015,Cb16,EA051,?,EA051-NA,,,,,, +65016,Cb17,EA051,Males alone,EA051-1,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +65017,Cb18,EA051,Males alone,EA051-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p80, +65018,Cb19,EA051,?,EA051-NA,,,,,, +65019,Cb2,EA051,Males alone,EA051-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +65020,Cb20,EA051,Males alone,EA051-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +65021,Cb21,EA051,Males alone,EA051-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p84, +65022,Cb22,EA051,?,EA051-NA,,,,,, +65023,Cb23,EA051,Males alone,EA051-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +65024,Cb24,EA051,Activity is absent,EA051-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p84, +65025,Cb25,EA051,?,EA051-NA,,,,,, +65026,Cb26,EA051,Males alone,EA051-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +65027,Cb27,EA051,?,EA051-NA,,,,,, +65028,Cb28,EA051,?,EA051-NA,,,,,, +65029,Cb29,EA051,?,EA051-NA,,,,,, +65030,Cb3,EA051,Males alone,EA051-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +65031,Cb4,EA051,Males alone,EA051-1,,reid1930,,1920,EthnographicAtlas_1967_p80, +65032,Cb5,EA051,Activity is absent,EA051-9,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p80, +65033,Cb6,EA051,Males alone,EA051-1,,woodnd,,1920,EthnographicAtlas_1967_p80, +65034,Cb7,EA051,Males alone,EA051-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p80, +65035,Cb8,EA051,Activity is absent,EA051-9,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p80, +65036,Cb9,EA051,?,EA051-NA,,,,,, +65037,Cc1,EA051,Males alone,EA051-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +65038,Cc10,EA051,Males alone,EA051-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +65039,Cc11,EA051,?,EA051-NA,,,,,, +65040,Cc12,EA051,Males alone,EA051-1,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +65041,Cc13,EA051,?,EA051-NA,,,,,, +65042,Cc14,EA051,Males alone,EA051-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +65043,Cc15,EA051,?,EA051-NA,,,,,, +65044,Cc16,EA051,Males alone,EA051-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +65045,Cc17,EA051,Males alone,EA051-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +65046,Cc18,EA051,?,EA051-NA,,,,,, +65047,Cc19,EA051,?,EA051-NA,,,,,, +65048,Cc2,EA051,Males alone,EA051-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +65049,Cc20,EA051,Activity is absent,EA051-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +65050,Cc3,EA051,Activity is absent,EA051-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +65051,Cc4,EA051,Activity is absent,EA051-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +65052,Cc5,EA051,Males alone,EA051-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +65053,Cc6,EA051,?,EA051-NA,,,,,, +65054,Cc7,EA051,?,EA051-NA,,,,,, +65055,Cc8,EA051,?,EA051-NA,,,,,, +65056,Cc9,EA051,Males alone,EA051-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +65057,Cd1,EA051,Activity is absent,EA051-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +65058,Cd10,EA051,?,EA051-NA,,,,,, +65059,Cd11,EA051,Males alone,EA051-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p84, +65060,Cd12,EA051,?,EA051-NA,,,,,, +65061,Cd13,EA051,?,EA051-NA,,,,,, +65062,Cd14,EA051,?,EA051-NA,,,,,, +65063,Cd15,EA051,?,EA051-NA,,,,,, +65064,Cd16,EA051,?,EA051-NA,,,,,, +65065,Cd17,EA051,?,EA051-NA,,,,,, +65066,Cd18,EA051,?,EA051-NA,,,,,, +65067,Cd19,EA051,?,EA051-NA,,,,,, +65068,Cd2,EA051,Activity is absent,EA051-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +65069,Cd20,EA051,?,EA051-NA,,,,,, +65070,Cd21,EA051,?,EA051-NA,,,,,, +65071,Cd3,EA051,Males alone,EA051-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +65072,Cd4,EA051,Activity is absent,EA051-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +65073,Cd5,EA051,Males alone,EA051-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +65074,Cd6,EA051,Males alone,EA051-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +65075,Cd7,EA051,?,EA051-NA,,,,,, +65076,Cd8,EA051,?,EA051-NA,,,,,, +65077,Cd9,EA051,?,EA051-NA,,,,,, +65078,Ce1,EA051,Activity is absent,EA051-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +65079,Ce2,EA051,?,EA051-NA,,,,,, +65080,Ce3,EA051,?,EA051-NA,,,,,, +65081,Ce4,EA051,Activity is absent,EA051-9,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65082,Ce5,EA051,Males alone,EA051-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +65083,Ce6,EA051,Males alone,EA051-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +65084,Ce7,EA051,Activity is absent,EA051-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +65085,Ce8,EA051,Males alone,EA051-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +65086,Cf1,EA051,Males alone,EA051-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +65087,Cf2,EA051,?,EA051-NA,,,,,, +65088,Cf3,EA051,Males alone,EA051-1,,munch1945,,1930,EthnographicAtlas_1967_p84, +65089,Cf4,EA051,Males alone,EA051-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +65090,Cf5,EA051,Males alone,EA051-1,,miner1939,,1930,EthnographicAtlas_1967_p84, +65091,Cg1,EA051,Activity is absent,EA051-9,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +65092,Cg2,EA051,Males alone,EA051-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +65093,Cg3,EA051,Males alone,EA051-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +65094,Cg4,EA051,Males alone,EA051-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +65095,Cg5,EA051,?,EA051-NA,,,,,, +65096,Ch1,EA051,Males alone,EA051-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +65097,Ch10,EA051,?,EA051-NA,,,,,, +65098,Ch11,EA051,Activity is absent,EA051-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +65099,Ch2,EA051,Males alone,EA051-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +65100,Ch3,EA051,Males alone,EA051-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +65101,Ch4,EA051,Males alone,EA051-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p84, +65102,Ch5,EA051,Males alone,EA051-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +65103,Ch6,EA051,Males alone,EA051-1,,ember1954,,1910,EthnographicAtlas_1967_p84, +65104,Ch7,EA051,Males alone,EA051-1,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +65105,Ch8,EA051,?,EA051-NA,,,,,, +65106,Ch9,EA051,Males alone,EA051-1,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +65107,Ci1,EA051,Males alone,EA051-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +65108,Ci10,EA051,Males alone,EA051-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +65109,Ci11,EA051,Males alone,EA051-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +65110,Ci12,EA051,Males alone,EA051-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +65111,Ci2,EA051,Males alone,EA051-1,,grigolia1939,,1930,EthnographicAtlas_1967_p84, +65112,Ci3,EA051,Activity is absent,EA051-9,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p84, +65113,Ci4,EA051,Males alone,EA051-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +65114,Ci5,EA051,Activity is absent,EA051-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +65115,Ci6,EA051,Males alone,EA051-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p84, +65116,Ci7,EA051,Males alone,EA051-1,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p84, +65117,Ci8,EA051,?,EA051-NA,,,,,, +65118,Ci9,EA051,?,EA051-NA,,,,,, +65119,Cj1,EA051,Males alone,EA051-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +65120,Cj10,EA051,?,EA051-NA,,,,,, +65121,Cj2,EA051,Males alone,EA051-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +65122,Cj3,EA051,Males alone,EA051-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +65123,Cj4,EA051,Males alone,EA051-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +65124,Cj5,EA051,Males alone,EA051-1,,dickson1949,,1930,EthnographicAtlas_1967_p88, +65125,Cj6,EA051,?,EA051-NA,,,,,, +65126,Cj7,EA051,?,EA051-NA,,,,,, +65127,Cj8,EA051,Males alone,EA051-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +65128,Cj9,EA051,?,EA051-NA,,,,,, +65129,Ea1,EA051,Males alone,EA051-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +65130,Ea10,EA051,?,EA051-NA,,,,,, +65131,Ea11,EA051,Males alone,EA051-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +65132,Ea12,EA051,Males alone,EA051-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +65133,Ea13,EA051,Males alone,EA051-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +65134,Ea2,EA051,Activity is absent,EA051-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +65135,Ea3,EA051,Activity is absent,EA051-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +65136,Ea4,EA051,Males alone,EA051-1,,barth1956b,,1950,EthnographicAtlas_1967_p88, +65137,Ea5,EA051,Males alone,EA051-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +65138,Ea6,EA051,Males alone,EA051-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +65139,Ea7,EA051,Activity is absent,EA051-9,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +65140,Ea8,EA051,Males alone,EA051-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +65141,Ea9,EA051,Activity is absent,EA051-9,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +65142,Eb1,EA051,Males alone,EA051-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +65143,Eb2,EA051,Males alone,EA051-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +65144,Eb3,EA051,Males alone,EA051-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +65145,Eb4,EA051,?,EA051-NA,,,,,, +65146,Eb5,EA051,?,EA051-NA,,,,,, +65147,Eb6,EA051,?,EA051-NA,,,,,, +65148,Eb7,EA051,Males alone,EA051-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +65149,Eb8,EA051,?,EA051-NA,,,,,, +65150,Ec1,EA051,Males alone,EA051-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +65151,Ec10,EA051,Males alone,EA051-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +65152,Ec11,EA051,Males alone,EA051-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +65153,Ec2,EA051,Males alone,EA051-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65154,Ec3,EA051,Males alone,EA051-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +65155,Ec4,EA051,Males alone,EA051-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +65156,Ec5,EA051,Males alone,EA051-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +65157,Ec6,EA051,Males alone,EA051-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p88, +65158,Ec7,EA051,Males alone,EA051-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +65159,Ec8,EA051,Males alone,EA051-1,,shimkin1939,,1900,EthnographicAtlas_1967_p88, +65160,Ec9,EA051,Males alone,EA051-1,,lattimore1933,,1920,EthnographicAtlas_1967_p88, +65161,Ed1,EA051,Males alone,EA051-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +65162,Ed10,EA051,Activity is absent,EA051-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +65163,Ed13,EA051,?,EA051-NA,,,,,, +65164,Ed14,EA051,?,EA051-NA,,,,,, +65165,Ed15a,EA051,?,EA051-NA,,,,,, +65166,Ed15b,EA051,Activity is absent,EA051-9,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +65167,Ed16,EA051,?,EA051-NA,,,,,, +65168,Ed2,EA051,Males alone,EA051-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +65169,Ed3,EA051,Activity is absent,EA051-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +65170,Ed4,EA051,Males alone,EA051-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +65171,Ed5,EA051,Activity is absent,EA051-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65172,Ed6,EA051,Activity is absent,EA051-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +65173,Ed7,EA051,Activity is absent,EA051-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +65174,Ed8,EA051,Activity is absent,EA051-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +65175,Ed9,EA051,Males alone,EA051-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +65176,Ee1,EA051,Males alone,EA051-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +65177,Ee2,EA051,Activity is absent,EA051-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +65178,Ee3,EA051,Males alone,EA051-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +65179,Ee4,EA051,Males alone,EA051-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +65180,Ee5,EA051,Males alone,EA051-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +65181,Ee6,EA051,?,EA051-NA,,,,,, +65182,Ee7,EA051,?,EA051-NA,,,,,, +65183,Ee8,EA051,?,EA051-NA,,,,,, +65184,Ef1,EA051,Males alone,EA051-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +65185,Ef10,EA051,?,EA051-NA,,,,,, +65186,Ef11,EA051,Activity is absent,EA051-9,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +65187,Ef2,EA051,Activity is absent,EA051-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +65188,Ef3,EA051,?,EA051-NA,,,,,, +65189,Ef4,EA051,?,EA051-NA,,,,,, +65190,Ef5,EA051,Males alone,EA051-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +65191,Ef6,EA051,Males alone,EA051-1,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +65192,Ef7,EA051,Activity is absent,EA051-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +65193,Ef8,EA051,Males alone,EA051-1,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +65194,Ef9,EA051,Activity is absent,EA051-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65195,Eg1,EA051,Males alone,EA051-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65196,Eg10,EA051,Males alone,EA051-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +65197,Eg11,EA051,?,EA051-NA,,,,,, +65198,Eg12,EA051,?,EA051-NA,,,,,, +65199,Eg13,EA051,Males alone,EA051-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65200,Eg14,EA051,Males alone,EA051-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +65201,Eg2,EA051,Activity is absent,EA051-9,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +65202,Eg3,EA051,Males alone,EA051-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +65203,Eg4,EA051,Activity is absent,EA051-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +65204,Eg5,EA051,Males alone,EA051-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +65205,Eg6,EA051,Males alone,EA051-1,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +65206,Eg7,EA051,Males alone,EA051-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +65207,Eg8,EA051,Activity is absent,EA051-9,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +65208,Eg9,EA051,Males alone,EA051-1,,elwin1939,,1930,EthnographicAtlas_1967_p92, +65209,Eh1,EA051,Males alone,EA051-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +65210,Eh10,EA051,?,EA051-NA,,,,,, +65211,Eh2,EA051,Males alone,EA051-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +65212,Eh3,EA051,Males alone,EA051-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +65213,Eh4,EA051,Males alone,EA051-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65214,Eh5,EA051,Males alone,EA051-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +65215,Eh6,EA051,?,EA051-NA,,,,,, +65216,Eh7,EA051,Males alone,EA051-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +65217,Eh8,EA051,Males alone,EA051-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +65218,Eh9,EA051,Males alone,EA051-1,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +65219,Ei1,EA051,Males alone,EA051-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65220,Ei10,EA051,Males alone,EA051-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +65221,Ei11,EA051,Males alone,EA051-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +65222,Ei12,EA051,?,EA051-NA,,,,,, +65223,Ei13,EA051,Males alone,EA051-1,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +65224,Ei14,EA051,Males alone,EA051-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +65225,Ei15,EA051,?,EA051-NA,,,,,, +65226,Ei16,EA051,Males alone,EA051-1,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +65227,Ei17,EA051,?,EA051-NA,,,,,, +65228,Ei18,EA051,Activity is absent,EA051-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +65229,Ei19,EA051,Males alone,EA051-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +65230,Ei2,EA051,Males alone,EA051-1,,mills1922,,1920,EthnographicAtlas_1967_p92, +65231,Ei20,EA051,?,EA051-NA,,,,,, +65232,Ei3,EA051,Males alone,EA051-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +65233,Ei4,EA051,Males alone,EA051-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +65234,Ei5,EA051,Males alone,EA051-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +65235,Ei6,EA051,Males alone,EA051-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +65236,Ei7,EA051,Males alone,EA051-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +65237,Ei8,EA051,Males alone,EA051-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +65238,Ei9,EA051,Males alone,EA051-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +65239,Ej1,EA051,Males alone,EA051-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +65240,Ej10,EA051,Males alone,EA051-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +65241,Ej11,EA051,Activity is absent,EA051-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p92, +65242,Ej12,EA051,Males alone,EA051-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +65243,Ej13,EA051,Males alone,EA051-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +65244,Ej14,EA051,Males alone,EA051-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65245,Ej15,EA051,"Both, males more",EA051-2,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +65246,Ej16,EA051,Activity is absent,EA051-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +65247,Ej2,EA051,Males alone,EA051-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +65248,Ej3,EA051,Males alone,EA051-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +65249,Ej4,EA051,?,EA051-NA,,,,,, +65250,Ej5,EA051,?,EA051-NA,,,,,, +65251,Ej6,EA051,Males alone,EA051-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +65252,Ej7,EA051,Males alone,EA051-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +65253,Ej8,EA051,Males alone,EA051-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +65254,Ej9,EA051,Males alone,EA051-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +65255,Ia1,EA051,Males alone,EA051-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +65256,Ia10,EA051,Males alone,EA051-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +65257,Ia11,EA051,Males alone,EA051-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +65258,Ia12,EA051,Males alone,EA051-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +65259,Ia13,EA051,Activity is absent,EA051-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +65260,Ia14,EA051,Males alone,EA051-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +65261,Ia15,EA051,?,EA051-NA,,,,,, +65262,Ia16,EA051,Males alone,EA051-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +65263,Ia17,EA051,?,EA051-NA,,,,,, +65264,Ia18,EA051,?,EA051-NA,,,,,, +65265,Ia2,EA051,Males alone,EA051-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +65266,Ia3,EA051,?,EA051-NA,,,,,, +65267,Ia4,EA051,Males alone,EA051-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p92, +65268,Ia5,EA051,Males alone,EA051-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +65269,Ia6,EA051,Males alone,EA051-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65270,Ia7,EA051,Males alone,EA051-1,,fox1954,,1950,EthnographicAtlas_1967_p92, +65271,Ia8,EA051,?,EA051-NA,,,,,, +65272,Ia9,EA051,Males alone,EA051-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +65273,Ib1,EA051,Males alone,EA051-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65274,Ib2,EA051,Activity is absent,EA051-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65275,Ib3,EA051,Activity is absent,EA051-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +65276,Ib4,EA051,Males alone,EA051-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +65277,Ib5,EA051,Males alone,EA051-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +65278,Ib6,EA051,?,EA051-NA,,,,,, +65279,Ib7,EA051,Males alone,EA051-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +65280,Ib8,EA051,Males alone,EA051-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +65281,Ib9,EA051,?,EA051-NA,,,,,, +65282,Ic1,EA051,Activity is absent,EA051-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65283,Ic10,EA051,Males alone,EA051-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +65284,Ic11,EA051,?,EA051-NA,,,,,, +65285,Ic12,EA051,Males alone,EA051-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +65286,Ic13,EA051,?,EA051-NA,,,,,, +65287,Ic2,EA051,Males alone,EA051-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +65288,Ic3,EA051,Males alone,EA051-1,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +65289,Ic4,EA051,?,EA051-NA,,,,,, +65290,Ic5,EA051,Males alone,EA051-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +65291,Ic6,EA051,Males alone,EA051-1,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +65292,Ic7,EA051,?,EA051-NA,,,,,, +65293,Ic8,EA051,Males alone,EA051-1,,pleyte1893,,1890,EthnographicAtlas_1967_p96, +65294,Ic9,EA051,Males alone,EA051-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p96, +65295,Id1,EA051,Males alone,EA051-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +65296,Id10,EA051,Males alone,EA051-1,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +65297,Id11,EA051,"Both, males more",EA051-2,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +65298,Id12,EA051,Males alone,EA051-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +65299,Id13,EA051,Males alone,EA051-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +65300,Id2,EA051,Males alone,EA051-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +65301,Id3,EA051,Males alone,EA051-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +65302,Id4,EA051,Males alone,EA051-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +65303,Id5,EA051,Males alone,EA051-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +65304,Id6,EA051,Males alone,EA051-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +65305,Id7,EA051,Males alone,EA051-1,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +65306,Id8,EA051,Males alone,EA051-1,,roth1890,,1830,EthnographicAtlas_1967_p96, +65307,Id9,EA051,Males alone,EA051-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +65308,Ie1,EA051,Males alone,EA051-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65309,Ie10,EA051,Males alone,EA051-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +65310,Ie11,EA051,Males alone,EA051-1,,bowers1964,,1950,EthnographicAtlas_1967_p96, +65311,Ie12,EA051,Males alone,EA051-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65312,Ie13,EA051,Males alone,EA051-1,,landtman1927,,1920,EthnographicAtlas_1967_p96, +65313,Ie14,EA051,Males alone,EA051-1,,haddon1908,,1900,EthnographicAtlas_1967_p96, +65314,Ie15,EA051,Males alone,EA051-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65315,Ie16,EA051,Males alone,EA051-1,,williams194041,,1940,EthnographicAtlas_1967_p96, +65316,Ie17,EA051,Males alone,EA051-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +65317,Ie18,EA051,Males alone,EA051-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +65318,Ie19,EA051,Males alone,EA051-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +65319,Ie2,EA051,Males alone,EA051-1,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +65320,Ie20,EA051,Males alone,EA051-1,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +65321,Ie21,EA051,Males alone,EA051-1,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +65322,Ie22,EA051,?,EA051-NA,,,,,, +65323,Ie23,EA051,Males alone,EA051-1,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +65324,Ie24,EA051,Males alone,EA051-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +65325,Ie25,EA051,Males alone,EA051-1,,williamson1912,,1920,EthnographicAtlas_1967_p96, +65326,Ie26,EA051,Males alone,EA051-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +65327,Ie27,EA051,Males alone,EA051-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +65328,Ie28,EA051,Males alone,EA051-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +65329,Ie29,EA051,Males alone,EA051-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65330,Ie3,EA051,Males alone,EA051-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65331,Ie30,EA051,Males alone,EA051-1,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +65332,Ie31,EA051,Males alone,EA051-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +65333,Ie32,EA051,Males alone,EA051-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +65334,Ie33,EA051,Males alone,EA051-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +65335,Ie34,EA051,?,EA051-NA,,,,,, +65336,Ie35,EA051,Males alone,EA051-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +65337,Ie36,EA051,?,EA051-NA,,,,,, +65338,Ie37,EA051,?,EA051-NA,,,,,, +65339,Ie38,EA051,Males alone,EA051-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +65340,Ie39,EA051,Males alone,EA051-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +65341,Ie4,EA051,Activity is absent,EA051-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65342,Ie5,EA051,Males alone,EA051-1,,williams1936,,1930,EthnographicAtlas_1967_p96, +65343,Ie6,EA051,Males alone,EA051-1,,held1947,,1930,EthnographicAtlas_1967_p96, +65344,Ie7,EA051,Males alone,EA051-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +65345,Ie8,EA051,Males alone,EA051-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +65346,Ie9,EA051,Males alone,EA051-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +65347,If1,EA051,Activity is absent,EA051-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65348,If10,EA051,?,EA051-NA,,,,,, +65349,If11,EA051,Activity is absent,EA051-9,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +65350,If12,EA051,Activity is absent,EA051-9,,mason1954,,1940,EthnographicAtlas_1967_p100, +65351,If13,EA051,Males alone,EA051-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +65352,If14,EA051,Males alone,EA051-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +65353,If15,EA051,Activity is absent,EA051-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +65354,If16,EA051,Activity is absent,EA051-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +65355,If17,EA051,Males alone,EA051-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +65356,If2,EA051,Activity is absent,EA051-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +65357,If3,EA051,Activity is absent,EA051-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +65358,If4,EA051,Activity is absent,EA051-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +65359,If5,EA051,Activity is absent,EA051-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +65360,If6,EA051,Activity is absent,EA051-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +65361,If7,EA051,Activity is absent,EA051-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +65362,If8,EA051,Activity is absent,EA051-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +65363,If9,EA051,?,EA051-NA,,,,,, +65364,Ig1,EA051,Males alone,EA051-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +65365,Ig10,EA051,Males alone,EA051-1,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +65366,Ig11,EA051,Males alone,EA051-1,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +65367,Ig12,EA051,Males alone,EA051-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p100, +65368,Ig13,EA051,Males alone,EA051-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +65369,Ig14,EA051,Males alone,EA051-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +65370,Ig15,EA051,?,EA051-NA,,,,,, +65371,Ig16,EA051,?,EA051-NA,,,,,, +65372,Ig17,EA051,?,EA051-NA,,,,,, +65373,Ig18,EA051,?,EA051-NA,,,,,, +65374,Ig19,EA051,?,EA051-NA,,,,,, +65375,Ig2,EA051,Males alone,EA051-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +65376,Ig20,EA051,Males alone,EA051-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +65377,Ig21,EA051,Males alone,EA051-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +65378,Ig3,EA051,Males alone,EA051-1,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +65379,Ig4,EA051,Males alone,EA051-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +65380,Ig5,EA051,Males alone,EA051-1,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +65381,Ig6,EA051,Males alone,EA051-1,,ivens1927,,1900,EthnographicAtlas_1967_p100, +65382,Ig7,EA051,Males alone,EA051-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +65383,Ig8,EA051,?,EA051-NA,,,,,, +65384,Ig9,EA051,Activity is absent,EA051-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +65385,Ih1,EA051,Activity is absent,EA051-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +65386,Ih10,EA051,Males alone,EA051-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65387,Ih11,EA051,?,EA051-NA,,,,,, +65388,Ih12,EA051,?,EA051-NA,,,,,, +65389,Ih13,EA051,?,EA051-NA,,,,,, +65390,Ih14,EA051,Activity is absent,EA051-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +65391,Ih2,EA051,Males alone,EA051-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65392,Ih3,EA051,?,EA051-NA,,,,,, +65393,Ih4,EA051,Males alone,EA051-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65394,Ih5,EA051,?,EA051-NA,,,,,, +65395,Ih6,EA051,Activity is absent,EA051-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +65396,Ih7,EA051,Activity is absent,EA051-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +65397,Ih8,EA051,Males alone,EA051-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +65398,Ih9,EA051,Males alone,EA051-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65399,Ii1,EA051,Activity is absent,EA051-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +65400,Ii10,EA051,?,EA051-NA,,,,,, +65401,Ii12,EA051,?,EA051-NA,,,,,, +65402,Ii13,EA051,Activity is absent,EA051-9,,burrows1937,,1830,EthnographicAtlas_1967_p100, +65403,Ii14,EA051,Activity is absent,EA051-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +65404,Ii2,EA051,Activity is absent,EA051-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +65405,Ii3,EA051,Activity is absent,EA051-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +65406,Ii4,EA051,Activity is absent,EA051-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +65407,Ii5,EA051,Activity is absent,EA051-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +65408,Ii6,EA051,Activity is absent,EA051-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +65409,Ii7,EA051,Males alone,EA051-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +65410,Ii8,EA051,?,EA051-NA,,,,,, +65411,Ii9,EA051,Activity is absent,EA051-9,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +65412,Ij1,EA051,Activity is absent,EA051-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +65413,Ij10,EA051,?,EA051-NA,,,,,, +65414,Ij2,EA051,Males alone,EA051-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +65415,Ij3,EA051,Males alone,EA051-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +65416,Ij4,EA051,Activity is absent,EA051-9,,buck1932a,,1850,EthnographicAtlas_1967_p104, +65417,Ij5,EA051,Activity is absent,EA051-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +65418,Ij6,EA051,Activity is absent,EA051-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +65419,Ij7,EA051,Activity is absent,EA051-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +65420,Ij8,EA051,Activity is absent,EA051-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +65421,Ij9,EA051,?,EA051-NA,,,,,, +65422,Na1,EA051,Males alone,EA051-1,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +65423,Na10,EA051,Males alone,EA051-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +65424,Na11,EA051,Males alone,EA051-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +65425,Na12,EA051,Males alone,EA051-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +65426,Na13,EA051,Males alone,EA051-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +65427,Na14,EA051,"Both, males more",EA051-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +65428,Na15,EA051,"Both, males more",EA051-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +65429,Na16,EA051,Males alone,EA051-1,,osgood1931,,1860,EthnographicAtlas_1967_p104, +65430,Na17,EA051,Males alone,EA051-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65431,Na19,EA051,"Both, males more",EA051-2,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +65432,Na2,EA051,Males alone,EA051-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +65433,Na20,EA051,Males alone,EA051-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +65434,Na21,EA051,Males alone,EA051-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +65435,Na22,EA051,Males alone,EA051-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +65436,Na23,EA051,Males alone,EA051-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +65437,Na24,EA051,Males alone,EA051-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +65438,Na25,EA051,Males alone,EA051-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +65439,Na26,EA051,Males alone,EA051-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +65440,Na27,EA051,Males alone,EA051-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +65441,Na28,EA051,Males alone,EA051-1,,jenness1937,,1880,EthnographicAtlas_1967_p104, +65442,Na29,EA051,Males alone,EA051-1,,goddard1916,,1850,EthnographicAtlas_1967_p104, +65443,Na3,EA051,Males alone,EA051-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +65444,Na30,EA051,Males alone,EA051-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +65445,Na31,EA051,Males alone,EA051-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +65446,Na32,EA051,Males alone,EA051-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +65447,Na33,EA051,Males alone,EA051-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +65448,Na34,EA051,Males alone,EA051-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +65449,Na35,EA051,Males alone,EA051-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +65450,Na36,EA051,Males alone,EA051-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +65451,Na37,EA051,Males alone,EA051-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +65452,Na38,EA051,Males alone,EA051-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +65453,Na39,EA051,Males alone,EA051-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +65454,Na4,EA051,Males alone,EA051-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +65455,Na40,EA051,Males alone,EA051-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +65456,Na41,EA051,Males alone,EA051-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +65457,Na42,EA051,Males alone,EA051-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +65458,Na43,EA051,Males alone,EA051-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +65459,Na44,EA051,?,EA051-NA,,,,,, +65460,Na45,EA051,"Both, males more",EA051-2,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +65461,Na5,EA051,Males alone,EA051-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +65462,Na6,EA051,Males alone,EA051-1,,lantis1946,,1930,EthnographicAtlas_1967_p104, +65463,Na7,EA051,Males alone,EA051-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +65464,Na8,EA051,Males alone,EA051-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +65465,Na9,EA051,Males alone,EA051-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65466,Nb1,EA051,Males alone,EA051-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +65467,Nb10,EA051,Males alone,EA051-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +65468,Nb11,EA051,Males alone,EA051-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +65469,Nb12,EA051,Males alone,EA051-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +65470,Nb13,EA051,Males alone,EA051-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +65471,Nb14,EA051,Males alone,EA051-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +65472,Nb15,EA051,Males alone,EA051-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +65473,Nb16,EA051,Males alone,EA051-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +65474,Nb17,EA051,Males alone,EA051-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +65475,Nb18,EA051,Males alone,EA051-1,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +65476,Nb19,EA051,Males alone,EA051-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +65477,Nb2,EA051,Males alone,EA051-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +65478,Nb20,EA051,Males alone,EA051-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +65479,Nb21,EA051,Males alone,EA051-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +65480,Nb22,EA051,Males alone,EA051-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +65481,Nb23,EA051,Males alone,EA051-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +65482,Nb24,EA051,Males alone,EA051-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +65483,Nb25,EA051,Males alone,EA051-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +65484,Nb26,EA051,Males alone,EA051-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +65485,Nb27,EA051,Males alone,EA051-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +65486,Nb28,EA051,Males alone,EA051-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +65487,Nb29,EA051,?,EA051-NA,,,,,, +65488,Nb3,EA051,Males alone,EA051-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +65489,Nb30,EA051,Males alone,EA051-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +65490,Nb31,EA051,Males alone,EA051-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +65491,Nb32,EA051,Males alone,EA051-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +65492,Nb33,EA051,Males alone,EA051-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +65493,Nb34,EA051,Males alone,EA051-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +65494,Nb35,EA051,Males alone,EA051-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +65495,Nb36,EA051,Males alone,EA051-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +65496,Nb37,EA051,Males alone,EA051-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +65497,Nb38,EA051,Males alone,EA051-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +65498,Nb39,EA051,Males alone,EA051-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +65499,Nb4,EA051,Males alone,EA051-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +65500,Nb5,EA051,Males alone,EA051-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +65501,Nb6,EA051,Males alone,EA051-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +65502,Nb7,EA051,Males alone,EA051-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +65503,Nb8,EA051,Males alone,EA051-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +65504,Nb9,EA051,Males alone,EA051-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +65505,Nc1,EA051,Males alone,EA051-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +65506,Nc10,EA051,Males alone,EA051-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +65507,Nc11,EA051,Males alone,EA051-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +65508,Nc12,EA051,Males alone,EA051-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +65509,Nc13,EA051,Males alone,EA051-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +65510,Nc14,EA051,Males alone,EA051-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +65511,Nc15,EA051,Males alone,EA051-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +65512,Nc16,EA051,Males alone,EA051-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +65513,Nc17,EA051,Males alone,EA051-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +65514,Nc18,EA051,Males alone,EA051-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +65515,Nc19,EA051,Males alone,EA051-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +65516,Nc2,EA051,Males alone,EA051-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +65517,Nc20,EA051,Males alone,EA051-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +65518,Nc21,EA051,Males alone,EA051-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +65519,Nc22,EA051,Males alone,EA051-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +65520,Nc23,EA051,Males alone,EA051-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +65521,Nc24,EA051,Males alone,EA051-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +65522,Nc25,EA051,Males alone,EA051-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +65523,Nc26,EA051,Males alone,EA051-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +65524,Nc27,EA051,Males alone,EA051-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +65525,Nc28,EA051,Males alone,EA051-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +65526,Nc29,EA051,Males alone,EA051-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +65527,Nc3,EA051,Males alone,EA051-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +65528,Nc30,EA051,Males alone,EA051-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +65529,Nc31,EA051,Males alone,EA051-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +65530,Nc32,EA051,Males alone,EA051-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +65531,Nc33,EA051,Males alone,EA051-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +65532,Nc34,EA051,Males alone,EA051-1,,meigs1939,,1880,EthnographicAtlas_1967_p108, +65533,Nc4,EA051,Males alone,EA051-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +65534,Nc5,EA051,Males alone,EA051-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +65535,Nc6,EA051,Males alone,EA051-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +65536,Nc7,EA051,Males alone,EA051-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +65537,Nc8,EA051,Males alone,EA051-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +65538,Nc9,EA051,Males alone,EA051-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +65539,Nd1,EA051,Males alone,EA051-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +65540,Nd10,EA051,"Both, males more",EA051-2,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +65541,Nd11,EA051,Males alone,EA051-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +65542,Nd12,EA051,Males alone,EA051-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +65543,Nd13,EA051,Males alone,EA051-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +65544,Nd14,EA051,Males alone,EA051-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +65545,Nd15,EA051,"Both, males more",EA051-2,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +65546,Nd16,EA051,Males alone,EA051-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +65547,Nd17,EA051,Males alone,EA051-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +65548,Nd18,EA051,Males alone,EA051-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +65549,Nd19,EA051,Males alone,EA051-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +65550,Nd2,EA051,Males alone,EA051-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +65551,Nd20,EA051,Males alone,EA051-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +65552,Nd21,EA051,Males alone,EA051-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +65553,Nd22,EA051,Males alone,EA051-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +65554,Nd23,EA051,Males alone,EA051-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +65555,Nd24,EA051,Males alone,EA051-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +65556,Nd25,EA051,Males alone,EA051-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +65557,Nd26,EA051,Males alone,EA051-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +65558,Nd27,EA051,Males alone,EA051-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +65559,Nd28,EA051,Males alone,EA051-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +65560,Nd29,EA051,Males alone,EA051-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +65561,Nd3,EA051,Males alone,EA051-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +65562,Nd30,EA051,Males alone,EA051-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +65563,Nd31,EA051,Males alone,EA051-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +65564,Nd32,EA051,Males alone,EA051-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +65565,Nd33,EA051,Males alone,EA051-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +65566,Nd34,EA051,Males alone,EA051-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +65567,Nd35,EA051,Males alone,EA051-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +65568,Nd36,EA051,"Both, males more",EA051-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +65569,Nd37,EA051,Males alone,EA051-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +65570,Nd38,EA051,Males alone,EA051-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +65571,Nd39,EA051,Males alone,EA051-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +65572,Nd4,EA051,Males alone,EA051-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +65573,Nd40,EA051,Males alone,EA051-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +65574,Nd41,EA051,"Both, males more",EA051-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +65575,Nd42,EA051,Males alone,EA051-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +65576,Nd43,EA051,Males alone,EA051-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +65577,Nd44,EA051,Males alone,EA051-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +65578,Nd45,EA051,Males alone,EA051-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +65579,Nd46,EA051,Males alone,EA051-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +65580,Nd47,EA051,Males alone,EA051-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +65581,Nd48,EA051,Males alone,EA051-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +65582,Nd49,EA051,Males alone,EA051-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +65583,Nd5,EA051,Males alone,EA051-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +65584,Nd50,EA051,Males alone,EA051-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +65585,Nd51,EA051,Males alone,EA051-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +65586,Nd52,EA051,Males alone,EA051-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +65587,Nd53,EA051,Males alone,EA051-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +65588,Nd54,EA051,Males alone,EA051-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65589,Nd55,EA051,Males alone,EA051-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +65590,Nd56,EA051,Males alone,EA051-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +65591,Nd57,EA051,Males alone,EA051-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +65592,Nd58,EA051,Males alone,EA051-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +65593,Nd59,EA051,Males alone,EA051-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +65594,Nd6,EA051,Males alone,EA051-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +65595,Nd60,EA051,Males alone,EA051-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +65596,Nd61,EA051,Males alone,EA051-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +65597,Nd62,EA051,Males alone,EA051-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +65598,Nd63,EA051,Males alone,EA051-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +65599,Nd64,EA051,Males alone,EA051-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +65600,Nd65,EA051,Males alone,EA051-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +65601,Nd66,EA051,Males alone,EA051-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +65602,Nd67,EA051,Males alone,EA051-1,,gifford1936,,1870,EthnographicAtlas_1967_p112, +65603,Nd7,EA051,Males alone,EA051-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +65604,Nd8,EA051,"Both, males more",EA051-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +65605,Nd9,EA051,Males alone,EA051-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +65606,Ne1,EA051,Males alone,EA051-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +65607,Ne10,EA051,Males alone,EA051-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +65608,Ne11,EA051,Males alone,EA051-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +65609,Ne12,EA051,Males alone,EA051-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +65610,Ne13,EA051,Males alone,EA051-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +65611,Ne14,EA051,Males alone,EA051-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +65612,Ne15,EA051,Males alone,EA051-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +65613,Ne16,EA051,Males alone,EA051-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +65614,Ne17,EA051,Males alone,EA051-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +65615,Ne18,EA051,Males alone,EA051-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +65616,Ne19,EA051,Males alone,EA051-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +65617,Ne2,EA051,Males alone,EA051-1,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +65618,Ne20,EA051,Males alone,EA051-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +65619,Ne21,EA051,?,EA051-NA,,,,,, +65620,Ne3,EA051,Males alone,EA051-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +65621,Ne4,EA051,Males alone,EA051-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +65622,Ne5,EA051,Males alone,EA051-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +65623,Ne6,EA051,Males alone,EA051-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +65624,Ne7,EA051,Males alone,EA051-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +65625,Ne8,EA051,Males alone,EA051-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +65626,Ne9,EA051,Males alone,EA051-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +65627,Nf10,EA051,Males alone,EA051-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +65628,Nf11,EA051,Males alone,EA051-1,,whitman1937,,1870,EthnographicAtlas_1967_p116, +65629,Nf12,EA051,Males alone,EA051-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +65630,Nf13,EA051,Males alone,EA051-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65631,Nf14,EA051,Males alone,EA051-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +65632,Nf15,EA051,?,EA051-NA,,,,,, +65633,Nf2,EA051,Males alone,EA051-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +65634,Nf3,EA051,Males alone,EA051-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +65635,Nf4,EA051,Males alone,EA051-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +65636,Nf5,EA051,Males alone,EA051-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +65637,Nf6,EA051,Males alone,EA051-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +65638,Nf7,EA051,Males alone,EA051-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65639,Nf8,EA051,Males alone,EA051-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +65640,Nf9,EA051,Males alone,EA051-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +65641,Ng1,EA051,Males alone,EA051-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +65642,Ng10,EA051,Males alone,EA051-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +65643,Ng11,EA051,Males alone,EA051-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +65644,Ng12,EA051,Males alone,EA051-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +65645,Ng13,EA051,?,EA051-NA,,,,,, +65646,Ng14,EA051,?,EA051-NA,,,,,, +65647,Ng15,EA051,?,EA051-NA,,,,,, +65648,Ng2,EA051,?,EA051-NA,,,,,, +65649,Ng3,EA051,Males alone,EA051-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +65650,Ng4,EA051,?,EA051-NA,,,,,, +65651,Ng5,EA051,Males alone,EA051-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +65652,Ng6,EA051,Males alone,EA051-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +65653,Ng7,EA051,Males alone,EA051-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +65654,Ng8,EA051,Males alone,EA051-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +65655,Ng9,EA051,?,EA051-NA,,,,,, +65656,Nh1,EA051,Males alone,EA051-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +65657,Nh10,EA051,Males alone,EA051-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p116, +65658,Nh11,EA051,Males alone,EA051-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +65659,Nh12,EA051,Males alone,EA051-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +65660,Nh13,EA051,Males alone,EA051-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +65661,Nh14,EA051,?,EA051-NA,,,,,, +65662,Nh15,EA051,Males alone,EA051-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +65663,Nh16,EA051,Males alone,EA051-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65664,Nh17,EA051,Males alone,EA051-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +65665,Nh18,EA051,Males alone,EA051-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65666,Nh19,EA051,Males alone,EA051-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +65667,Nh2,EA051,Males alone,EA051-1,,dozier1954,,1950,EthnographicAtlas_1967_p116, +65668,Nh20,EA051,Males alone,EA051-1,,gifford1931,,1860,EthnographicAtlas_1967_p116, +65669,Nh21,EA051,Males alone,EA051-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65670,Nh22,EA051,Males alone,EA051-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +65671,Nh23,EA051,Males alone,EA051-1,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +65672,Nh24,EA051,Males alone,EA051-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +65673,Nh25,EA051,Males alone,EA051-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +65674,Nh26,EA051,?,EA051-NA,,,,,, +65675,Nh27,EA051,?,EA051-NA,,,,,, +65676,Nh3,EA051,Males alone,EA051-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +65677,Nh4,EA051,Males alone,EA051-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +65678,Nh5,EA051,Males alone,EA051-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +65679,Nh6,EA051,Males alone,EA051-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +65680,Nh7,EA051,Males alone,EA051-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +65681,Nh8,EA051,Males alone,EA051-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +65682,Nh9,EA051,Males alone,EA051-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p116, +65683,Ni1,EA051,Males alone,EA051-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +65684,Ni2,EA051,Males alone,EA051-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +65685,Ni3,EA051,Males alone,EA051-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +65686,Ni4,EA051,Males alone,EA051-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +65687,Ni5,EA051,Males alone,EA051-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +65688,Ni6,EA051,Males alone,EA051-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +65689,Ni7,EA051,Males alone,EA051-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +65690,Ni8,EA051,?,EA051-NA,,,,,, +65691,Ni9,EA051,?,EA051-NA,,,,,, +65692,Nj1,EA051,Males alone,EA051-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65693,Nj10,EA051,Males alone,EA051-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65694,Nj11,EA051,?,EA051-NA,,,,,, +65695,Nj12,EA051,?,EA051-NA,,,,,, +65696,Nj13,EA051,?,EA051-NA,,,,,, +65697,Nj14,EA051,?,EA051-NA,,,,,, +65698,Nj2,EA051,Males alone,EA051-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +65699,Nj3,EA051,Males alone,EA051-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +65700,Nj4,EA051,Males alone,EA051-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +65701,Nj5,EA051,?,EA051-NA,,,,,, +65702,Nj6,EA051,?,EA051-NA,,,,,, +65703,Nj7,EA051,Males alone,EA051-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65704,Nj8,EA051,Males alone,EA051-1,,foster1948,,1500,EthnographicAtlas_1967_p120, +65705,Nj9,EA051,Activity is absent,EA051-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +65706,Sa1,EA051,Males alone,EA051-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +65707,Sa10,EA051,Males alone,EA051-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +65708,Sa11,EA051,?,EA051-NA,,,,,, +65709,Sa12,EA051,Males alone,EA051-1,,stone1948,,1948,EthnographicAtlas_1967_p120, +65710,Sa13,EA051,Males alone,EA051-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +65711,Sa14,EA051,?,EA051-NA,,,,,, +65712,Sa15,EA051,?,EA051-NA,,,,,, +65713,Sa16,EA051,?,EA051-NA,,,,,, +65714,Sa17,EA051,?,EA051-NA,,,,,, +65715,Sa2,EA051,?,EA051-NA,,,,,, +65716,Sa3,EA051,Males alone,EA051-1,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +65717,Sa4,EA051,Males alone,EA051-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +65718,Sa5,EA051,Males alone,EA051-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +65719,Sa6,EA051,Males alone,EA051-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +65720,Sa7,EA051,Males alone,EA051-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +65721,Sa8,EA051,?,EA051-NA,,,,,, +65722,Sa9,EA051,Males alone,EA051-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +65723,Sb1,EA051,Males alone,EA051-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +65724,Sb2,EA051,Males alone,EA051-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +65725,Sb3,EA051,?,EA051-NA,,,,,, +65726,Sb4,EA051,Males alone,EA051-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +65727,Sb5,EA051,?,EA051-NA,,,,,, +65728,Sb6,EA051,Males alone,EA051-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +65729,Sb7,EA051,Males alone,EA051-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +65730,Sb8,EA051,Males alone,EA051-1,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +65731,Sb9,EA051,Activity is absent,EA051-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +65732,Sc1,EA051,Males alone,EA051-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +65733,Sc10,EA051,Males alone,EA051-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +65734,Sc11,EA051,Males alone,EA051-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +65735,Sc12,EA051,Males alone,EA051-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +65736,Sc13,EA051,Males alone,EA051-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +65737,Sc14,EA051,Males alone,EA051-1,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +65738,Sc15,EA051,Males alone,EA051-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +65739,Sc16,EA051,Males alone,EA051-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +65740,Sc17,EA051,Males alone,EA051-1,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +65741,Sc18,EA051,Males alone,EA051-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +65742,Sc2,EA051,Males alone,EA051-1,,leedsnd,,1950,EthnographicAtlas_1967_p120, +65743,Sc3,EA051,Males alone,EA051-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +65744,Sc4,EA051,Males alone,EA051-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +65745,Sc5,EA051,Males alone,EA051-1,,farabee1918,,1900,EthnographicAtlas_1967_p120, +65746,Sc6,EA051,Males alone,EA051-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65747,Sc7,EA051,Males alone,EA051-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +65748,Sc8,EA051,Males alone,EA051-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +65749,Sc9,EA051,Males alone,EA051-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +65750,Sd1,EA051,Males alone,EA051-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65751,Sd2,EA051,Males alone,EA051-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +65752,Sd3,EA051,Males alone,EA051-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +65753,Sd4,EA051,Males alone,EA051-1,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +65754,Sd5,EA051,Males alone,EA051-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +65755,Sd6,EA051,Males alone,EA051-1,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +65756,Sd7,EA051,Males alone,EA051-1,,fock1963,,1950,EthnographicAtlas_1967_p120, +65757,Sd8,EA051,Males alone,EA051-1,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +65758,Sd9,EA051,Males alone,EA051-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65759,Se1,EA051,Males alone,EA051-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +65760,Se10,EA051,?,EA051-NA,,,,,, +65761,Se11,EA051,Males alone,EA051-1,,prost1965,,1960,EthnographicAtlas_1967_p124, +65762,Se12,EA051,?,EA051-NA,,,,,, +65763,Se2,EA051,Males alone,EA051-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +65764,Se3,EA051,Males alone,EA051-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +65765,Se4,EA051,Males alone,EA051-1,,fejos1943,,1940,EthnographicAtlas_1967_p120, +65766,Se5,EA051,Males alone,EA051-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +65767,Se6,EA051,Males alone,EA051-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +65768,Se7,EA051,?,EA051-NA,,,,,, +65769,Se8,EA051,Males alone,EA051-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +65770,Se9,EA051,Males alone,EA051-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +65771,Sf1,EA051,Males alone,EA051-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +65772,Sf2,EA051,Males alone,EA051-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +65773,Sf3,EA051,Males alone,EA051-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +65774,Sf4,EA051,Males alone,EA051-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +65775,Sf5,EA051,Males alone,EA051-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +65776,Sf6,EA051,Males alone,EA051-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +65777,Sf7,EA051,Males alone,EA051-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +65778,Sf8,EA051,?,EA051-NA,,,,,, +65779,Sf9,EA051,?,EA051-NA,,,,,, +65780,Sg1,EA051,Males alone,EA051-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +65781,Sg2,EA051,Males alone,EA051-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65782,Sg3,EA051,Males alone,EA051-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +65783,Sg4,EA051,Males alone,EA051-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +65784,Sg5,EA051,Males alone,EA051-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65785,Sh1,EA051,Males alone,EA051-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +65786,Sh2,EA051,Males alone,EA051-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +65787,Sh3,EA051,Males alone,EA051-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +65788,Sh4,EA051,Males alone,EA051-1,,oberg1949,,1940,EthnographicAtlas_1967_p124, +65789,Sh5,EA051,Males alone,EA051-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +65790,Sh6,EA051,Males alone,EA051-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +65791,Sh7,EA051,Males alone,EA051-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +65792,Sh8,EA051,Males alone,EA051-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +65793,Sh9,EA051,Males alone,EA051-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +65794,Si1,EA051,Males alone,EA051-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65795,Si10,EA051,Males alone,EA051-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +65796,Si2,EA051,Males alone,EA051-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +65797,Si3,EA051,Males alone,EA051-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65798,Si4,EA051,Males alone,EA051-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +65799,Si5,EA051,Males alone,EA051-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +65800,Si6,EA051,Males alone,EA051-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +65801,Si7,EA051,Males alone,EA051-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +65802,Si8,EA051,Males alone,EA051-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +65803,Si9,EA051,?,EA051-NA,,,,,, +65804,Sj1,EA051,Males alone,EA051-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +65805,Sj10,EA051,Males alone,EA051-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65806,Sj11,EA051,Males alone,EA051-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +65807,Sj2,EA051,Males alone,EA051-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +65808,Sj3,EA051,Males alone,EA051-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +65809,Sj4,EA051,Males alone,EA051-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +65810,Sj5,EA051,Males alone,EA051-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +65811,Sj6,EA051,Males alone,EA051-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +65812,Sj7,EA051,Males alone,EA051-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +65813,Sj8,EA051,Males alone,EA051-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +65814,Sj9,EA051,Males alone,EA051-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +65815,ch12,EA051,Males alone,EA051-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +65816,ch13,EA051,Activity is absent,EA051-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +65817,ch14,EA051,Males alone,EA051-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +65818,ch15,EA051,Males alone,EA051-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +65819,ch16,EA051,Males alone,EA051-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +65820,ch17,EA051,Activity is absent,EA051-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +65821,ch18,EA051,Males alone,EA051-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +65822,ch19,EA051,Males alone,EA051-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +65823,ch20,EA051,Males alone,EA051-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +65824,ch21,EA051,Activity is absent,EA051-9,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +65825,ch22,EA051,Activity is absent,EA051-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +65826,ch23,EA051,Activity is absent,EA051-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +65827,ch24,EA051,Males alone,EA051-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +65828,ch25,EA051,Males alone,EA051-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +65829,ch26,EA051,Males alone,EA051-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +65830,ch27,EA051,Males alone,EA051-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +65831,ch28,EA051,Males alone,EA051-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +65832,ec12,EA051,"Both, males more",EA051-2,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +65833,ec13,EA051,Males alone,EA051-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +65834,ec14,EA051,Males alone,EA051-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +65835,ec15,EA051,Males alone,EA051-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +65836,ec16,EA051,Males alone,EA051-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +65837,ec17,EA051,Males alone,EA051-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +65838,ec18,EA051,Males alone,EA051-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +65839,ec19,EA051,Males alone,EA051-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +65840,ec20,EA051,Males alone,EA051-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +65841,ec21,EA051,Males alone,EA051-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +65842,Aa1,EA052,Activity is absent,EA052-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +65843,Aa2,EA052,Activity is absent,EA052-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +65844,Aa3,EA052,Males alone,EA052-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +65845,Aa4,EA052,?,EA052-NA,,,,,, +65846,Aa5,EA052,Activity is absent,EA052-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +65847,Aa6,EA052,Females alone,EA052-6,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p64, +65848,Aa7,EA052,Activity is absent,EA052-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +65849,Aa8,EA052,?,EA052-NA,,,,,, +65850,Aa9,EA052,Activity is absent,EA052-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +65851,Ab1,EA052,Activity is absent,EA052-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +65852,Ab10,EA052,"Both, males more",EA052-2,,hunter1936,,1936,EthnographicAtlas_1967_p64, +65853,Ab11,EA052,?,EA052-NA,,,,,, +65854,Ab12,EA052,Activity is absent,EA052-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +65855,Ab13,EA052,Activity is absent,EA052-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +65856,Ab14,EA052,Activity is absent,EA052-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +65857,Ab15,EA052,Activity is absent,EA052-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +65858,Ab16,EA052,?,EA052-NA,,,,,, +65859,Ab17,EA052,?,EA052-NA,,,,,, +65860,Ab18,EA052,"Both, males more",EA052-2,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +65861,Ab19,EA052,"Both, males more",EA052-2,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +65862,Ab2,EA052,Activity is absent,EA052-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +65863,Ab20,EA052,?,EA052-NA,,,,,, +65864,Ab21a,EA052,?,EA052-NA,,,,,, +65865,Ab21b,EA052,?,EA052-NA,,,,,, +65866,Ab22,EA052,?,EA052-NA,,,,,, +65867,Ab3,EA052,"Both, males more",EA052-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +65868,Ab4,EA052,Males alone,EA052-1,,junod1927,,1920,EthnographicAtlas_1967_p64, +65869,Ab5,EA052,"Both, males more",EA052-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +65870,Ab6,EA052,Activity is absent,EA052-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +65871,Ab7,EA052,Equal participation,EA052-4,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p64, +65872,Ab8,EA052,Activity is absent,EA052-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +65873,Ab9,EA052,Activity is absent,EA052-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +65874,Ac1,EA052,Males alone,EA052-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +65875,Ac10,EA052,Males alone,EA052-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +65876,Ac11,EA052,Differentiated but equal,EA052-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +65877,Ac12,EA052,"Both, males more",EA052-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p64, +65878,Ac13,EA052,Males alone,EA052-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p64, +65879,Ac14,EA052,"Both, males more",EA052-2,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p64, +65880,Ac15,EA052,?,EA052-NA,,,,,, +65881,Ac16,EA052,?,EA052-NA,,,,,, +65882,Ac17,EA052,Equal participation,EA052-4,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +65883,Ac18,EA052,Males alone,EA052-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +65884,Ac19,EA052,?,EA052-NA,,,,,, +65885,Ac2,EA052,Females alone,EA052-6,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p64, +65886,Ac20,EA052,?,EA052-NA,,,,,, +65887,Ac21,EA052,Differentiated but equal,EA052-3,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p64, +65888,Ac22,EA052,"Both, females more",EA052-5,,mertens1935,,1930,EthnographicAtlas_1967_p64, +65889,Ac23,EA052,Females alone,EA052-6,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +65890,Ac24,EA052,?,EA052-NA,,,,,, +65891,Ac25,EA052,?,EA052-NA,,,,,, +65892,Ac26,EA052,?,EA052-NA,,,,,, +65893,Ac27,EA052,?,EA052-NA,,,,,, +65894,Ac28,EA052,Males alone,EA052-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +65895,Ac29,EA052,?,EA052-NA,,,,,, +65896,Ac3,EA052,"Both, males more",EA052-2,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +65897,Ac30,EA052,"Both, males more",EA052-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +65898,Ac31,EA052,"Both, males more",EA052-2,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +65899,Ac32,EA052,?,EA052-NA,,,,,, +65900,Ac33,EA052,"Both, males more",EA052-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +65901,Ac34,EA052,Males alone,EA052-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +65902,Ac35,EA052,?,EA052-NA,,,,,, +65903,Ac36,EA052,?,EA052-NA,,,,,, +65904,Ac37,EA052,?,EA052-NA,,,,,, +65905,Ac38,EA052,Males alone,EA052-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +65906,Ac39,EA052,Males alone,EA052-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +65907,Ac4,EA052,"Both, males more",EA052-2,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +65908,Ac40,EA052,?,EA052-NA,,,,,, +65909,Ac41,EA052,?,EA052-NA,,,,,, +65910,Ac42,EA052,?,EA052-NA,,,,,, +65911,Ac43,EA052,?,EA052-NA,,,,,, +65912,Ac5,EA052,"Both, males more",EA052-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +65913,Ac6,EA052,"Both, males more",EA052-2,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +65914,Ac7,EA052,Males alone,EA052-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +65915,Ac8,EA052,"Both, males more",EA052-2,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +65916,Ac9,EA052,Activity is absent,EA052-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +65917,Ad1,EA052,Males alone,EA052-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +65918,Ad10,EA052,Females alone,EA052-6,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +65919,Ad11,EA052,Males alone,EA052-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +65920,Ad12,EA052,?,EA052-NA,,,,,, +65921,Ad13,EA052,Males alone,EA052-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +65922,Ad14,EA052,?,EA052-NA,,,,,, +65923,Ad15,EA052,?,EA052-NA,,,,,, +65924,Ad16,EA052,"Both, males more",EA052-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +65925,Ad17,EA052,?,EA052-NA,,,,,, +65926,Ad18,EA052,?,EA052-NA,,,,,, +65927,Ad19,EA052,"Both, males more",EA052-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +65928,Ad2,EA052,Males alone,EA052-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +65929,Ad20,EA052,?,EA052-NA,,,,,, +65930,Ad21,EA052,Males alone,EA052-1,,maurice193538,,1930,EthnographicAtlas_1967_p68, +65931,Ad22,EA052,?,EA052-NA,,,,,, +65932,Ad23,EA052,?,EA052-NA,,,,,, +65933,Ad24,EA052,Activity is absent,EA052-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +65934,Ad25,EA052,?,EA052-NA,,,,,, +65935,Ad26,EA052,Activity is absent,EA052-9,,sick1916,,1910,EthnographicAtlas_1967_p68, +65936,Ad27,EA052,?,EA052-NA,,,,,, +65937,Ad28,EA052,Males alone,EA052-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +65938,Ad29,EA052,Differentiated but equal,EA052-3,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +65939,Ad3,EA052,Activity is absent,EA052-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +65940,Ad30,EA052,?,EA052-NA,,,,,, +65941,Ad31,EA052,?,EA052-NA,,,,,, +65942,Ad32,EA052,?,EA052-NA,,,,,, +65943,Ad33,EA052,Males alone,EA052-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +65944,Ad34,EA052,Activity is absent,EA052-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +65945,Ad35,EA052,Activity is absent,EA052-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +65946,Ad36,EA052,?,EA052-NA,,,,,, +65947,Ad37,EA052,?,EA052-NA,,,,,, +65948,Ad38,EA052,?,EA052-NA,,,,,, +65949,Ad39,EA052,Activity is absent,EA052-9,,gray1963,,1950,EthnographicAtlas_1967_p68, +65950,Ad4,EA052,Activity is absent,EA052-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +65951,Ad40,EA052,?,EA052-NA,,,,,, +65952,Ad41,EA052,Males alone,EA052-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +65953,Ad42,EA052,Males alone,EA052-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p68, +65954,Ad43,EA052,?,EA052-NA,,,,,, +65955,Ad44,EA052,Males alone,EA052-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +65956,Ad45,EA052,?,EA052-NA,,,,,, +65957,Ad46,EA052,Males alone,EA052-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +65958,Ad47,EA052,?,EA052-NA,,,,,, +65959,Ad48,EA052,Males alone,EA052-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +65960,Ad49,EA052,Males alone,EA052-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +65961,Ad5,EA052,?,EA052-NA,,,,,, +65962,Ad50,EA052,?,EA052-NA,,,,,, +65963,Ad51,EA052,Males alone,EA052-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +65964,Ad6,EA052,"Both, males more",EA052-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +65965,Ad7,EA052,Males alone,EA052-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +65966,Ad8,EA052,Activity is absent,EA052-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +65967,Ad9,EA052,?,EA052-NA,,,,,, +65968,Ae1,EA052,Males alone,EA052-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +65969,Ae10,EA052,Males alone,EA052-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +65970,Ae11,EA052,"Both, males more",EA052-2,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +65971,Ae12,EA052,"Both, males more",EA052-2,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +65972,Ae13,EA052,?,EA052-NA,,,,,, +65973,Ae14,EA052,?,EA052-NA,,,,,, +65974,Ae15,EA052,Males alone,EA052-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p68, +65975,Ae16,EA052,?,EA052-NA,,,,,, +65976,Ae17,EA052,"Both, males more",EA052-2,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +65977,Ae18,EA052,"Both, males more",EA052-2,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +65978,Ae19,EA052,?,EA052-NA,,,,,, +65979,Ae2,EA052,Females alone,EA052-6,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +65980,Ae20,EA052,?,EA052-NA,,,,,, +65981,Ae21,EA052,?,EA052-NA,,,,,, +65982,Ae22,EA052,?,EA052-NA,,,,,, +65983,Ae23,EA052,?,EA052-NA,,,,,, +65984,Ae24,EA052,?,EA052-NA,,,,,, +65985,Ae25,EA052,?,EA052-NA,,,,,, +65986,Ae26,EA052,?,EA052-NA,,,,,, +65987,Ae27,EA052,?,EA052-NA,,,,,, +65988,Ae28,EA052,Equal participation,EA052-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +65989,Ae29,EA052,"Both, males more",EA052-2,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +65990,Ae3,EA052,"Both, males more",EA052-2,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +65991,Ae30,EA052,?,EA052-NA,,,,,, +65992,Ae31,EA052,?,EA052-NA,,,,,, +65993,Ae32,EA052,?,EA052-NA,,,,,, +65994,Ae33,EA052,Differentiated but equal,EA052-3,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +65995,Ae34,EA052,?,EA052-NA,,,,,, +65996,Ae35,EA052,?,EA052-NA,,,,,, +65997,Ae36,EA052,?,EA052-NA,,,,,, +65998,Ae37,EA052,?,EA052-NA,,,,,, +65999,Ae38,EA052,Females alone,EA052-6,,wijnant192526,,1920,EthnographicAtlas_1967_p68, +66000,Ae39,EA052,Equal participation,EA052-4,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +66001,Ae4,EA052,"Both, males more",EA052-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +66002,Ae40,EA052,?,EA052-NA,,,,,, +66003,Ae41,EA052,Females alone,EA052-6,,andersson1953,,1940,EthnographicAtlas_1967_p68, +66004,Ae42,EA052,?,EA052-NA,,,,,, +66005,Ae43,EA052,?,EA052-NA,,,,,, +66006,Ae44,EA052,?,EA052-NA,,,,,, +66007,Ae45,EA052,?,EA052-NA,,,,,, +66008,Ae46,EA052,?,EA052-NA,,,,,, +66009,Ae47,EA052,?,EA052-NA,,,,,, +66010,Ae48,EA052,"Both, males more",EA052-2,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p68, +66011,Ae49,EA052,?,EA052-NA,,,,,, +66012,Ae5,EA052,Activity is absent,EA052-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +66013,Ae50,EA052,?,EA052-NA,,,,,, +66014,Ae51,EA052,Equal participation,EA052-4,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +66015,Ae52,EA052,?,EA052-NA,,,,,, +66016,Ae53,EA052,?,EA052-NA,,,,,, +66017,Ae54,EA052,?,EA052-NA,,,,,, +66018,Ae55,EA052,Females alone,EA052-6,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +66019,Ae56,EA052,?,EA052-NA,,,,,, +66020,Ae57,EA052,?,EA052-NA,,,,,, +66021,Ae58,EA052,?,EA052-NA,,,,,, +66022,Ae59,EA052,?,EA052-NA,,,,,, +66023,Ae6,EA052,"Both, males more",EA052-2,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +66024,Ae7,EA052,"Both, females more",EA052-5,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +66025,Ae8,EA052,Males alone,EA052-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +66026,Ae9,EA052,Activity is absent,EA052-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +66027,Af1,EA052,Males alone,EA052-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +66028,Af10,EA052,Activity is absent,EA052-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +66029,Af11,EA052,"Both, males more",EA052-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +66030,Af12,EA052,?,EA052-NA,,,,,, +66031,Af13,EA052,"Both, males more",EA052-2,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +66032,Af14,EA052,"Both, males more",EA052-2,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +66033,Af15,EA052,"Both, females more",EA052-5,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +66034,Af16,EA052,?,EA052-NA,,,,,, +66035,Af17,EA052,?,EA052-NA,,,,,, +66036,Af18,EA052,?,EA052-NA,,,,,, +66037,Af19,EA052,Males alone,EA052-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p72, +66038,Af2,EA052,"Both, males more",EA052-2,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +66039,Af20,EA052,"Both, males more",EA052-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +66040,Af21,EA052,?,EA052-NA,,,,,, +66041,Af22,EA052,"Both, males more",EA052-2,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +66042,Af23,EA052,"Both, males more",EA052-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +66043,Af24,EA052,?,EA052-NA,,,,,, +66044,Af25,EA052,Males alone,EA052-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +66045,Af26,EA052,?,EA052-NA,,,,,, +66046,Af27,EA052,?,EA052-NA,,,,,, +66047,Af28,EA052,?,EA052-NA,,,,,, +66048,Af29,EA052,?,EA052-NA,,,,,, +66049,Af3,EA052,Males alone,EA052-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +66050,Af30,EA052,?,EA052-NA,,,,,, +66051,Af31,EA052,?,EA052-NA,,,,,, +66052,Af32,EA052,?,EA052-NA,,,,,, +66053,Af33,EA052,?,EA052-NA,,,,,, +66054,Af34,EA052,?,EA052-NA,,,,,, +66055,Af35,EA052,?,EA052-NA,,,,,, +66056,Af36,EA052,Males alone,EA052-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +66057,Af37,EA052,?,EA052-NA,,,,,, +66058,Af38,EA052,?,EA052-NA,,,,,, +66059,Af39,EA052,?,EA052-NA,,,,,, +66060,Af4,EA052,Activity is absent,EA052-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +66061,Af40,EA052,?,EA052-NA,,,,,, +66062,Af41,EA052,?,EA052-NA,,,,,, +66063,Af42,EA052,Males alone,EA052-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +66064,Af43,EA052,Males alone,EA052-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p72, +66065,Af44,EA052,?,EA052-NA,,,,,, +66066,Af45,EA052,?,EA052-NA,,,,,, +66067,Af46,EA052,?,EA052-NA,,,,,, +66068,Af47,EA052,?,EA052-NA,,,,,, +66069,Af48,EA052,?,EA052-NA,,,,,, +66070,Af49,EA052,"Both, males more",EA052-2,,schwab1947,,1940,EthnographicAtlas_1967_p72, +66071,Af5,EA052,"Both, females more",EA052-5,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +66072,Af50,EA052,?,EA052-NA,,,,,, +66073,Af51,EA052,Females alone,EA052-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +66074,Af52,EA052,Females alone,EA052-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +66075,Af53,EA052,?,EA052-NA,,,,,, +66076,Af54,EA052,Differentiated but equal,EA052-3,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +66077,Af55,EA052,?,EA052-NA,,,,,, +66078,Af56,EA052,Equal participation,EA052-4,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +66079,Af57,EA052,"Both, females more",EA052-5,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +66080,Af58,EA052,?,EA052-NA,,,,,, +66081,Af6,EA052,?,EA052-NA,,,,,, +66082,Af7,EA052,"Both, males more",EA052-2,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +66083,Af8,EA052,?,EA052-NA,,,,,, +66084,Af9,EA052,Equal participation,EA052-4,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p72, +66085,Ag1,EA052,"Both, males more",EA052-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +66086,Ag10,EA052,"Both, males more",EA052-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +66087,Ag11,EA052,Equal participation,EA052-4,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +66088,Ag12,EA052,"Both, males more",EA052-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +66089,Ag13,EA052,?,EA052-NA,,,,,, +66090,Ag14,EA052,?,EA052-NA,,,,,, +66091,Ag15,EA052,?,EA052-NA,,,,,, +66092,Ag16,EA052,Females alone,EA052-6,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p72, +66093,Ag17,EA052,?,EA052-NA,,,,,, +66094,Ag18,EA052,Differentiated but equal,EA052-3,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p72, +66095,Ag19,EA052,Differentiated but equal,EA052-3,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p72, +66096,Ag2,EA052,Activity is absent,EA052-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +66097,Ag20,EA052,?,EA052-NA,,,,,, +66098,Ag21,EA052,Males alone,EA052-1,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +66099,Ag22,EA052,Differentiated but equal,EA052-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +66100,Ag23,EA052,?,EA052-NA,,,,,, +66101,Ag24,EA052,?,EA052-NA,,,,,, +66102,Ag25,EA052,?,EA052-NA,,,,,, +66103,Ag26,EA052,?,EA052-NA,,,,,, +66104,Ag27,EA052,Activity is absent,EA052-9,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p72, +66105,Ag28,EA052,?,EA052-NA,,,,,, +66106,Ag29,EA052,?,EA052-NA,,,,,, +66107,Ag3,EA052,Activity is absent,EA052-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +66108,Ag30,EA052,"Both, females more",EA052-5,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +66109,Ag31,EA052,?,EA052-NA,,,,,, +66110,Ag32,EA052,Males alone,EA052-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +66111,Ag33,EA052,?,EA052-NA,,,,,, +66112,Ag34,EA052,?,EA052-NA,,,,,, +66113,Ag35,EA052,?,EA052-NA,,,,,, +66114,Ag36,EA052,?,EA052-NA,,,,,, +66115,Ag37,EA052,?,EA052-NA,,,,,, +66116,Ag38,EA052,?,EA052-NA,,,,,, +66117,Ag39,EA052,?,EA052-NA,,,,,, +66118,Ag4,EA052,"Both, males more",EA052-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +66119,Ag40,EA052,?,EA052-NA,,,,,, +66120,Ag41,EA052,?,EA052-NA,,,,,, +66121,Ag42,EA052,?,EA052-NA,,,,,, +66122,Ag43,EA052,?,EA052-NA,,,,,, +66123,Ag44,EA052,?,EA052-NA,,,,,, +66124,Ag45,EA052,?,EA052-NA,,,,,, +66125,Ag46,EA052,?,EA052-NA,,,,,, +66126,Ag47,EA052,Males alone,EA052-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +66127,Ag48,EA052,Males alone,EA052-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +66128,Ag49,EA052,?,EA052-NA,,,,,, +66129,Ag5,EA052,Equal participation,EA052-4,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +66130,Ag50,EA052,"Both, males more",EA052-2,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +66131,Ag51,EA052,?,EA052-NA,,,,,, +66132,Ag52,EA052,?,EA052-NA,,,,,, +66133,Ag53,EA052,?,EA052-NA,,,,,, +66134,Ag54,EA052,Females alone,EA052-6,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +66135,Ag6,EA052,Activity is absent,EA052-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +66136,Ag7,EA052,Males alone,EA052-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p72, +66137,Ag8,EA052,Activity is absent,EA052-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +66138,Ag9,EA052,Males alone,EA052-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +66139,Ah1,EA052,?,EA052-NA,,,,,, +66140,Ah10,EA052,?,EA052-NA,,,,,, +66141,Ah11,EA052,Males alone,EA052-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +66142,Ah12,EA052,?,EA052-NA,,,,,, +66143,Ah13,EA052,?,EA052-NA,,,,,, +66144,Ah14,EA052,?,EA052-NA,,,,,, +66145,Ah15,EA052,Males alone,EA052-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +66146,Ah16,EA052,?,EA052-NA,,,,,, +66147,Ah17,EA052,?,EA052-NA,,,,,, +66148,Ah18,EA052,?,EA052-NA,,,,,, +66149,Ah19,EA052,"Both, females more",EA052-5,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p76, +66150,Ah2,EA052,Males alone,EA052-1,,meek1931a,,1920,EthnographicAtlas_1967_p76, +66151,Ah20,EA052,Males alone,EA052-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +66152,Ah21,EA052,?,EA052-NA,,,,,, +66153,Ah22,EA052,?,EA052-NA,,,,,, +66154,Ah23,EA052,?,EA052-NA,,,,,, +66155,Ah24,EA052,?,EA052-NA,,,,,, +66156,Ah25,EA052,?,EA052-NA,,,,,, +66157,Ah26,EA052,?,EA052-NA,,,,,, +66158,Ah27,EA052,?,EA052-NA,,,,,, +66159,Ah28,EA052,?,EA052-NA,,,,,, +66160,Ah29,EA052,?,EA052-NA,,,,,, +66161,Ah3,EA052,"Both, males more",EA052-2,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +66162,Ah30,EA052,?,EA052-NA,,,,,, +66163,Ah31,EA052,?,EA052-NA,,,,,, +66164,Ah32,EA052,?,EA052-NA,,,,,, +66165,Ah33,EA052,?,EA052-NA,,,,,, +66166,Ah34,EA052,?,EA052-NA,,,,,, +66167,Ah35,EA052,?,EA052-NA,,,,,, +66168,Ah36,EA052,?,EA052-NA,,,,,, +66169,Ah37,EA052,?,EA052-NA,,,,,, +66170,Ah38,EA052,?,EA052-NA,,,,,, +66171,Ah39,EA052,?,EA052-NA,,,,,, +66172,Ah4,EA052,Activity is absent,EA052-9,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p76, +66173,Ah5,EA052,?,EA052-NA,,,,,, +66174,Ah6,EA052,?,EA052-NA,,,,,, +66175,Ah7,EA052,Activity is absent,EA052-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +66176,Ah8,EA052,Equal participation,EA052-4,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +66177,Ah9,EA052,Males alone,EA052-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +66178,Ai1,EA052,"Both, females more",EA052-5,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +66179,Ai10,EA052,Activity is absent,EA052-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +66180,Ai11,EA052,"Both, males more",EA052-2,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +66181,Ai12,EA052,?,EA052-NA,,,,,, +66182,Ai13,EA052,?,EA052-NA,,,,,, +66183,Ai14,EA052,Differentiated but equal,EA052-3,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +66184,Ai15,EA052,Males alone,EA052-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +66185,Ai16,EA052,?,EA052-NA,,,,,, +66186,Ai17,EA052,?,EA052-NA,,,,,, +66187,Ai18,EA052,Males alone,EA052-1,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +66188,Ai19,EA052,?,EA052-NA,,,,,, +66189,Ai2,EA052,?,EA052-NA,,,,,, +66190,Ai20,EA052,?,EA052-NA,,,,,, +66191,Ai21,EA052,Males alone,EA052-1,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p76, +66192,Ai22,EA052,?,EA052-NA,,,,,, +66193,Ai23,EA052,Differentiated but equal,EA052-3,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +66194,Ai24,EA052,?,EA052-NA,,,,,, +66195,Ai25,EA052,Equal participation,EA052-4,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +66196,Ai26,EA052,?,EA052-NA,,,,,, +66197,Ai27,EA052,?,EA052-NA,,,,,, +66198,Ai28,EA052,"Both, males more",EA052-2,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +66199,Ai29,EA052,Males alone,EA052-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +66200,Ai3,EA052,"Both, females more",EA052-5,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +66201,Ai30,EA052,Males alone,EA052-1,Mainly by Pygmies,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +66202,Ai31,EA052,?,EA052-NA,,,,,, +66203,Ai32,EA052,?,EA052-NA,,,,,, +66204,Ai33,EA052,?,EA052-NA,,,,,, +66205,Ai34,EA052,Males alone,EA052-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +66206,Ai35,EA052,Males alone,EA052-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +66207,Ai36,EA052,Equal participation,EA052-4,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +66208,Ai37,EA052,?,EA052-NA,,,,,, +66209,Ai38,EA052,?,EA052-NA,,,,,, +66210,Ai39,EA052,?,EA052-NA,,,,,, +66211,Ai4,EA052,?,EA052-NA,,,,,, +66212,Ai40,EA052,?,EA052-NA,,,,,, +66213,Ai41,EA052,?,EA052-NA,,,,,, +66214,Ai42,EA052,?,EA052-NA,,,,,, +66215,Ai43,EA052,Activity is absent,EA052-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +66216,Ai44,EA052,?,EA052-NA,,,,,, +66217,Ai45,EA052,?,EA052-NA,,,,,, +66218,Ai46,EA052,Males alone,EA052-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p76, +66219,Ai47,EA052,?,EA052-NA,,,,,, +66220,Ai5,EA052,Activity is absent,EA052-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +66221,Ai6,EA052,?,EA052-NA,,,,,, +66222,Ai7,EA052,Equal participation,EA052-4,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +66223,Ai8,EA052,Activity is absent,EA052-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +66224,Ai9,EA052,Equal participation,EA052-4,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +66225,Aj1,EA052,"Both, males more",EA052-2,,lawrance1957,,1950,EthnographicAtlas_1967_p76, +66226,Aj10,EA052,?,EA052-NA,,,,,, +66227,Aj11,EA052,Males alone,EA052-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p80, +66228,Aj12,EA052,Females alone,EA052-6,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +66229,Aj13,EA052,"Both, males more",EA052-2,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +66230,Aj14,EA052,?,EA052-NA,,,,,, +66231,Aj15,EA052,Males alone,EA052-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +66232,Aj16,EA052,Males alone,EA052-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +66233,Aj17,EA052,?,EA052-NA,,,,,, +66234,Aj18,EA052,Activity is absent,EA052-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +66235,Aj19,EA052,Activity is absent,EA052-9,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p80, +66236,Aj2,EA052,Activity is absent,EA052-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +66237,Aj20,EA052,Activity is absent,EA052-9,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p80, +66238,Aj21,EA052,Activity is absent,EA052-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +66239,Aj22,EA052,?,EA052-NA,,,,,, +66240,Aj23,EA052,Activity is absent,EA052-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +66241,Aj24,EA052,Activity is absent,EA052-9,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +66242,Aj25,EA052,Activity is absent,EA052-9,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +66243,Aj26,EA052,Activity is absent,EA052-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +66244,Aj27,EA052,?,EA052-NA,,,,,, +66245,Aj28,EA052,Activity is absent,EA052-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +66246,Aj29,EA052,?,EA052-NA,,,,,, +66247,Aj3,EA052,"Both, males more",EA052-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +66248,Aj30,EA052,?,EA052-NA,,,,,, +66249,Aj31,EA052,?,EA052-NA,,,,,, +66250,Aj4,EA052,Activity is absent,EA052-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +66251,Aj5,EA052,Males alone,EA052-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +66252,Aj6,EA052,Differentiated but equal,EA052-3,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +66253,Aj7,EA052,Activity is absent,EA052-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +66254,Aj8,EA052,Males alone,EA052-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +66255,Aj9,EA052,?,EA052-NA,,,,,, +66256,Ca1,EA052,Activity is absent,EA052-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +66257,Ca10,EA052,Activity is absent,EA052-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +66258,Ca11,EA052,Activity is absent,EA052-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +66259,Ca12,EA052,Activity is absent,EA052-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +66260,Ca13,EA052,Activity is absent,EA052-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +66261,Ca14,EA052,Activity is absent,EA052-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +66262,Ca15,EA052,Activity is absent,EA052-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +66263,Ca16,EA052,Activity is absent,EA052-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +66264,Ca17,EA052,Activity is absent,EA052-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +66265,Ca18,EA052,?,EA052-NA,,,,,, +66266,Ca19,EA052,Activity is absent,EA052-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +66267,Ca2,EA052,Activity is absent,EA052-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +66268,Ca20,EA052,?,EA052-NA,,,,,, +66269,Ca21,EA052,Activity is absent,EA052-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +66270,Ca22,EA052,Males alone,EA052-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +66271,Ca23,EA052,Activity is absent,EA052-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +66272,Ca24,EA052,Activity is absent,EA052-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +66273,Ca25,EA052,Activity is absent,EA052-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +66274,Ca26,EA052,?,EA052-NA,,,,,, +66275,Ca27,EA052,?,EA052-NA,,,,,, +66276,Ca28,EA052,Activity is absent,EA052-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +66277,Ca29,EA052,?,EA052-NA,,,,,, +66278,Ca3,EA052,Activity is absent,EA052-9,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p80, +66279,Ca30,EA052,Males alone,EA052-1,By an outcaste group (Manjo hunters),bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +66280,Ca31,EA052,?,EA052-NA,,,,,, +66281,Ca32,EA052,?,EA052-NA,,,,,, +66282,Ca33,EA052,?,EA052-NA,,,,,, +66283,Ca34,EA052,?,EA052-NA,,,,,, +66284,Ca35,EA052,?,EA052-NA,,,,,, +66285,Ca36,EA052,?,EA052-NA,,,,,, +66286,Ca37,EA052,?,EA052-NA,,,,,, +66287,Ca38,EA052,?,EA052-NA,,,,,, +66288,Ca39,EA052,?,EA052-NA,,,,,, +66289,Ca4,EA052,Activity is absent,EA052-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +66290,Ca40,EA052,Activity is absent,EA052-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +66291,Ca41,EA052,Activity is absent,EA052-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +66292,Ca42,EA052,Activity is absent,EA052-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +66293,Ca43,EA052,?,EA052-NA,,,,,, +66294,Ca5,EA052,Activity is absent,EA052-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p80, +66295,Ca6,EA052,?,EA052-NA,,,,,, +66296,Ca7,EA052,Males alone,EA052-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +66297,Ca8,EA052,?,EA052-NA,,,,,, +66298,Ca9,EA052,?,EA052-NA,,,,,, +66299,Cb1,EA052,?,EA052-NA,,,,,, +66300,Cb10,EA052,?,EA052-NA,,,,,, +66301,Cb11,EA052,?,EA052-NA,,,,,, +66302,Cb12,EA052,?,EA052-NA,,,,,, +66303,Cb13,EA052,?,EA052-NA,,,,,, +66304,Cb14,EA052,?,EA052-NA,,,,,, +66305,Cb15,EA052,?,EA052-NA,,,,,, +66306,Cb16,EA052,?,EA052-NA,,,,,, +66307,Cb17,EA052,"Both, females more",EA052-5,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +66308,Cb18,EA052,?,EA052-NA,,,,,, +66309,Cb19,EA052,?,EA052-NA,,,,,, +66310,Cb2,EA052,Males alone,EA052-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +66311,Cb20,EA052,Males alone,EA052-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +66312,Cb21,EA052,Activity is absent,EA052-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p84, +66313,Cb22,EA052,?,EA052-NA,,,,,, +66314,Cb23,EA052,Males alone,EA052-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +66315,Cb24,EA052,Activity is absent,EA052-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p84, +66316,Cb25,EA052,?,EA052-NA,,,,,, +66317,Cb26,EA052,Males alone,EA052-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +66318,Cb27,EA052,?,EA052-NA,,,,,, +66319,Cb28,EA052,?,EA052-NA,,,,,, +66320,Cb29,EA052,?,EA052-NA,,,,,, +66321,Cb3,EA052,Males alone,EA052-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +66322,Cb4,EA052,Activity is absent,EA052-9,,reid1930,,1920,EthnographicAtlas_1967_p80, +66323,Cb5,EA052,Males alone,EA052-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p80, +66324,Cb6,EA052,Differentiated but equal,EA052-3,,woodnd,,1920,EthnographicAtlas_1967_p80, +66325,Cb7,EA052,?,EA052-NA,,,,,, +66326,Cb8,EA052,Activity is absent,EA052-9,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p80, +66327,Cb9,EA052,Activity is absent,EA052-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +66328,Cc1,EA052,Males alone,EA052-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +66329,Cc10,EA052,Activity is absent,EA052-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +66330,Cc11,EA052,?,EA052-NA,,,,,, +66331,Cc12,EA052,Activity is absent,EA052-9,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +66332,Cc13,EA052,?,EA052-NA,,,,,, +66333,Cc14,EA052,Females alone,EA052-6,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +66334,Cc15,EA052,?,EA052-NA,,,,,, +66335,Cc16,EA052,Activity is absent,EA052-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +66336,Cc17,EA052,Males alone,EA052-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +66337,Cc18,EA052,?,EA052-NA,,,,,, +66338,Cc19,EA052,?,EA052-NA,,,,,, +66339,Cc2,EA052,Activity is absent,EA052-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +66340,Cc20,EA052,Males alone,EA052-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +66341,Cc3,EA052,Activity is absent,EA052-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +66342,Cc4,EA052,Activity is absent,EA052-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +66343,Cc5,EA052,Activity is absent,EA052-9,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +66344,Cc6,EA052,?,EA052-NA,,,,,, +66345,Cc7,EA052,?,EA052-NA,,,,,, +66346,Cc8,EA052,?,EA052-NA,,,,,, +66347,Cc9,EA052,Activity is absent,EA052-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +66348,Cd1,EA052,Males alone,EA052-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +66349,Cd10,EA052,?,EA052-NA,,,,,, +66350,Cd11,EA052,Males alone,EA052-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p84, +66351,Cd12,EA052,?,EA052-NA,,,,,, +66352,Cd13,EA052,?,EA052-NA,,,,,, +66353,Cd14,EA052,?,EA052-NA,,,,,, +66354,Cd15,EA052,?,EA052-NA,,,,,, +66355,Cd16,EA052,?,EA052-NA,,,,,, +66356,Cd17,EA052,?,EA052-NA,,,,,, +66357,Cd18,EA052,?,EA052-NA,,,,,, +66358,Cd19,EA052,?,EA052-NA,,,,,, +66359,Cd2,EA052,Males alone,EA052-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +66360,Cd20,EA052,?,EA052-NA,,,,,, +66361,Cd21,EA052,?,EA052-NA,,,,,, +66362,Cd3,EA052,Males alone,EA052-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +66363,Cd4,EA052,Activity is absent,EA052-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +66364,Cd5,EA052,?,EA052-NA,,,,,, +66365,Cd6,EA052,?,EA052-NA,,,,,, +66366,Cd7,EA052,?,EA052-NA,,,,,, +66367,Cd8,EA052,?,EA052-NA,,,,,, +66368,Cd9,EA052,?,EA052-NA,,,,,, +66369,Ce1,EA052,Activity is absent,EA052-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +66370,Ce2,EA052,?,EA052-NA,,,,,, +66371,Ce3,EA052,?,EA052-NA,,,,,, +66372,Ce4,EA052,Males alone,EA052-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66373,Ce5,EA052,Differentiated but equal,EA052-3,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +66374,Ce6,EA052,Males alone,EA052-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +66375,Ce7,EA052,Males alone,EA052-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +66376,Ce8,EA052,Males alone,EA052-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +66377,Cf1,EA052,Males alone,EA052-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +66378,Cf2,EA052,?,EA052-NA,,,,,, +66379,Cf3,EA052,Males alone,EA052-1,,munch1945,,1930,EthnographicAtlas_1967_p84, +66380,Cf4,EA052,Males alone,EA052-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +66381,Cf5,EA052,Males alone,EA052-1,,miner1939,,1930,EthnographicAtlas_1967_p84, +66382,Cg1,EA052,Males alone,EA052-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +66383,Cg2,EA052,Males alone,EA052-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +66384,Cg3,EA052,?,EA052-NA,,,,,, +66385,Cg4,EA052,Equal participation,EA052-4,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +66386,Cg5,EA052,?,EA052-NA,,,,,, +66387,Ch1,EA052,Activity is absent,EA052-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +66388,Ch10,EA052,?,EA052-NA,,,,,, +66389,Ch11,EA052,Activity is absent,EA052-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +66390,Ch2,EA052,?,EA052-NA,,,,,, +66391,Ch3,EA052,Activity is absent,EA052-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +66392,Ch4,EA052,?,EA052-NA,,,,,, +66393,Ch5,EA052,Males alone,EA052-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +66394,Ch6,EA052,Males alone,EA052-1,,ember1954,,1910,EthnographicAtlas_1967_p84, +66395,Ch7,EA052,Males alone,EA052-1,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +66396,Ch8,EA052,?,EA052-NA,,,,,, +66397,Ch9,EA052,Males alone,EA052-1,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +66398,Ci1,EA052,Activity is absent,EA052-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +66399,Ci10,EA052,Activity is absent,EA052-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +66400,Ci11,EA052,Males alone,EA052-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +66401,Ci12,EA052,"Activity present, sex diff. unspecified",EA052-8,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +66402,Ci2,EA052,Males alone,EA052-1,,grigolia1939,,1930,EthnographicAtlas_1967_p84, +66403,Ci3,EA052,?,EA052-NA,,,,,, +66404,Ci4,EA052,Activity is absent,EA052-9,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +66405,Ci5,EA052,Activity is absent,EA052-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +66406,Ci6,EA052,?,EA052-NA,,,,,, +66407,Ci7,EA052,?,EA052-NA,,,,,, +66408,Ci8,EA052,?,EA052-NA,,,,,, +66409,Ci9,EA052,?,EA052-NA,,,,,, +66410,Cj1,EA052,Activity is absent,EA052-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +66411,Cj10,EA052,Males alone,EA052-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +66412,Cj2,EA052,Activity is absent,EA052-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +66413,Cj3,EA052,Males alone,EA052-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +66414,Cj4,EA052,Males alone,EA052-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +66415,Cj5,EA052,Activity is absent,EA052-9,,dickson1949,,1930,EthnographicAtlas_1967_p88, +66416,Cj6,EA052,?,EA052-NA,,,,,, +66417,Cj7,EA052,Males alone,EA052-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +66418,Cj8,EA052,Activity is absent,EA052-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +66419,Cj9,EA052,?,EA052-NA,,,,,, +66420,Ea1,EA052,?,EA052-NA,,,,,, +66421,Ea10,EA052,Activity is absent,EA052-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +66422,Ea11,EA052,Activity is absent,EA052-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +66423,Ea12,EA052,?,EA052-NA,,,,,, +66424,Ea13,EA052,Males alone,EA052-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +66425,Ea2,EA052,Activity is absent,EA052-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +66426,Ea3,EA052,Activity is absent,EA052-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +66427,Ea4,EA052,Activity is absent,EA052-9,,barth1956b,,1950,EthnographicAtlas_1967_p88, +66428,Ea5,EA052,Activity is absent,EA052-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +66429,Ea6,EA052,Activity is absent,EA052-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +66430,Ea7,EA052,Activity is absent,EA052-9,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +66431,Ea8,EA052,Activity is absent,EA052-9,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +66432,Ea9,EA052,?,EA052-NA,,,,,, +66433,Eb1,EA052,Activity is absent,EA052-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +66434,Eb2,EA052,Males alone,EA052-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +66435,Eb3,EA052,Activity is absent,EA052-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +66436,Eb4,EA052,?,EA052-NA,,,,,, +66437,Eb5,EA052,?,EA052-NA,,,,,, +66438,Eb6,EA052,?,EA052-NA,,,,,, +66439,Eb7,EA052,Activity is absent,EA052-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +66440,Eb8,EA052,?,EA052-NA,,,,,, +66441,Ec1,EA052,Males alone,EA052-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +66442,Ec10,EA052,Males alone,EA052-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +66443,Ec11,EA052,Males alone,EA052-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +66444,Ec2,EA052,Males alone,EA052-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66445,Ec3,EA052,Males alone,EA052-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +66446,Ec4,EA052,Males alone,EA052-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +66447,Ec5,EA052,"Both, males more",EA052-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +66448,Ec6,EA052,Males alone,EA052-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p88, +66449,Ec7,EA052,Differentiated but equal,EA052-3,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +66450,Ec8,EA052,Males alone,EA052-1,,shimkin1939,,1900,EthnographicAtlas_1967_p88, +66451,Ec9,EA052,Differentiated but equal,EA052-3,,lattimore1933,,1920,EthnographicAtlas_1967_p88, +66452,Ed1,EA052,"Both, males more",EA052-2,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +66453,Ed10,EA052,?,EA052-NA,,,,,, +66454,Ed13,EA052,?,EA052-NA,,,,,, +66455,Ed14,EA052,?,EA052-NA,,,,,, +66456,Ed15a,EA052,?,EA052-NA,,,,,, +66457,Ed15b,EA052,Males alone,EA052-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +66458,Ed16,EA052,?,EA052-NA,,,,,, +66459,Ed2,EA052,Activity is absent,EA052-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +66460,Ed3,EA052,Females alone,EA052-6,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +66461,Ed4,EA052,Males alone,EA052-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +66462,Ed5,EA052,Males alone,EA052-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66463,Ed6,EA052,Males alone,EA052-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +66464,Ed7,EA052,Males alone,EA052-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +66465,Ed8,EA052,Males alone,EA052-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +66466,Ed9,EA052,Males alone,EA052-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +66467,Ee1,EA052,Equal participation,EA052-4,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +66468,Ee2,EA052,Activity is absent,EA052-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +66469,Ee3,EA052,Activity is absent,EA052-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +66470,Ee4,EA052,Males alone,EA052-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +66471,Ee5,EA052,Activity is absent,EA052-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +66472,Ee6,EA052,Activity is absent,EA052-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +66473,Ee7,EA052,?,EA052-NA,,,,,, +66474,Ee8,EA052,Equal participation,EA052-4,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +66475,Ef1,EA052,Males alone,EA052-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +66476,Ef10,EA052,?,EA052-NA,,,,,, +66477,Ef11,EA052,Activity is absent,EA052-9,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +66478,Ef2,EA052,Males alone,EA052-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +66479,Ef3,EA052,?,EA052-NA,,,,,, +66480,Ef4,EA052,?,EA052-NA,,,,,, +66481,Ef5,EA052,Equal participation,EA052-4,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +66482,Ef6,EA052,"Both, males more",EA052-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +66483,Ef7,EA052,Males alone,EA052-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +66484,Ef8,EA052,Males alone,EA052-1,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +66485,Ef9,EA052,Females alone,EA052-6,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66486,Eg1,EA052,Males alone,EA052-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66487,Eg10,EA052,Males alone,EA052-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +66488,Eg11,EA052,?,EA052-NA,,,,,, +66489,Eg12,EA052,?,EA052-NA,,,,,, +66490,Eg13,EA052,Males alone,EA052-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66491,Eg14,EA052,"Both, males more",EA052-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +66492,Eg2,EA052,?,EA052-NA,,,,,, +66493,Eg3,EA052,Males alone,EA052-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +66494,Eg4,EA052,Activity is absent,EA052-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +66495,Eg5,EA052,Males alone,EA052-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +66496,Eg6,EA052,Males alone,EA052-1,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +66497,Eg7,EA052,"Both, males more",EA052-2,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +66498,Eg8,EA052,Activity is absent,EA052-9,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +66499,Eg9,EA052,Equal participation,EA052-4,,elwin1939,,1930,EthnographicAtlas_1967_p92, +66500,Eh1,EA052,Differentiated but equal,EA052-3,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +66501,Eh10,EA052,?,EA052-NA,,,,,, +66502,Eh2,EA052,"Both, females more",EA052-5,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +66503,Eh3,EA052,"Both, males more",EA052-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +66504,Eh4,EA052,Males alone,EA052-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66505,Eh5,EA052,Males alone,EA052-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +66506,Eh6,EA052,?,EA052-NA,,,,,, +66507,Eh7,EA052,"Both, females more",EA052-5,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +66508,Eh8,EA052,"Both, males more",EA052-2,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +66509,Eh9,EA052,"Both, males more",EA052-2,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +66510,Ei1,EA052,Differentiated but equal,EA052-3,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66511,Ei10,EA052,"Both, males more",EA052-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +66512,Ei11,EA052,Males alone,EA052-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +66513,Ei12,EA052,?,EA052-NA,,,,,, +66514,Ei13,EA052,"Both, males more",EA052-2,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +66515,Ei14,EA052,Males alone,EA052-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +66516,Ei15,EA052,?,EA052-NA,,,,,, +66517,Ei16,EA052,Males alone,EA052-1,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +66518,Ei17,EA052,?,EA052-NA,,,,,, +66519,Ei18,EA052,Activity is absent,EA052-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +66520,Ei19,EA052,"Both, males more",EA052-2,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +66521,Ei2,EA052,Males alone,EA052-1,,mills1922,,1920,EthnographicAtlas_1967_p92, +66522,Ei20,EA052,?,EA052-NA,,,,,, +66523,Ei3,EA052,Males alone,EA052-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +66524,Ei4,EA052,Males alone,EA052-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +66525,Ei5,EA052,Activity is absent,EA052-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +66526,Ei6,EA052,Activity is absent,EA052-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +66527,Ei7,EA052,Equal participation,EA052-4,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +66528,Ei8,EA052,Equal participation,EA052-4,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +66529,Ei9,EA052,"Both, males more",EA052-2,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +66530,Ej1,EA052,Males alone,EA052-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +66531,Ej10,EA052,Males alone,EA052-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +66532,Ej11,EA052,?,EA052-NA,,,,,, +66533,Ej12,EA052,Equal participation,EA052-4,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +66534,Ej13,EA052,"Both, males more",EA052-2,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +66535,Ej14,EA052,Differentiated but equal,EA052-3,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66536,Ej15,EA052,"Both, males more",EA052-2,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +66537,Ej16,EA052,Equal participation,EA052-4,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +66538,Ej2,EA052,Equal participation,EA052-4,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +66539,Ej3,EA052,Males alone,EA052-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +66540,Ej4,EA052,"Both, males more",EA052-2,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +66541,Ej5,EA052,"Both, males more",EA052-2,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +66542,Ej6,EA052,"Both, males more",EA052-2,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +66543,Ej7,EA052,Equal participation,EA052-4,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +66544,Ej8,EA052,Males alone,EA052-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +66545,Ej9,EA052,Males alone,EA052-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +66546,Ia1,EA052,Males alone,EA052-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +66547,Ia10,EA052,Activity is absent,EA052-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +66548,Ia11,EA052,Males alone,EA052-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +66549,Ia12,EA052,"Both, males more",EA052-2,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +66550,Ia13,EA052,"Both, males more",EA052-2,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +66551,Ia14,EA052,"Both, males more",EA052-2,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +66552,Ia15,EA052,?,EA052-NA,,,,,, +66553,Ia16,EA052,"Both, males more",EA052-2,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +66554,Ia17,EA052,?,EA052-NA,,,,,, +66555,Ia18,EA052,?,EA052-NA,,,,,, +66556,Ia2,EA052,Equal participation,EA052-4,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +66557,Ia3,EA052,"Both, females more",EA052-5,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +66558,Ia4,EA052,Males alone,EA052-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p92, +66559,Ia5,EA052,"Both, males more",EA052-2,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +66560,Ia6,EA052,Males alone,EA052-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66561,Ia7,EA052,"Both, males more",EA052-2,,fox1954,,1950,EthnographicAtlas_1967_p92, +66562,Ia8,EA052,?,EA052-NA,,,,,, +66563,Ia9,EA052,Males alone,EA052-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +66564,Ib1,EA052,"Both, males more",EA052-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66565,Ib2,EA052,Activity is absent,EA052-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66566,Ib3,EA052,Activity is absent,EA052-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +66567,Ib4,EA052,?,EA052-NA,,,,,, +66568,Ib5,EA052,Differentiated but equal,EA052-3,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +66569,Ib6,EA052,Males alone,EA052-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +66570,Ib7,EA052,"Both, males more",EA052-2,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +66571,Ib8,EA052,?,EA052-NA,,,,,, +66572,Ib9,EA052,?,EA052-NA,,,,,, +66573,Ic1,EA052,Males alone,EA052-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66574,Ic10,EA052,Differentiated but equal,EA052-3,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +66575,Ic11,EA052,?,EA052-NA,,,,,, +66576,Ic12,EA052,Equal participation,EA052-4,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +66577,Ic13,EA052,?,EA052-NA,,,,,, +66578,Ic2,EA052,Activity is absent,EA052-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +66579,Ic3,EA052,?,EA052-NA,,,,,, +66580,Ic4,EA052,?,EA052-NA,,,,,, +66581,Ic5,EA052,?,EA052-NA,,,,,, +66582,Ic6,EA052,Males alone,EA052-1,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +66583,Ic7,EA052,?,EA052-NA,,,,,, +66584,Ic8,EA052,?,EA052-NA,,,,,, +66585,Ic9,EA052,?,EA052-NA,,,,,, +66586,Id1,EA052,Activity is absent,EA052-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +66587,Id10,EA052,Activity is absent,EA052-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +66588,Id11,EA052,Differentiated but equal,EA052-3,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +66589,Id12,EA052,Males alone,EA052-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +66590,Id13,EA052,Differentiated but equal,EA052-3,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +66591,Id2,EA052,"Both, males more",EA052-2,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +66592,Id3,EA052,Differentiated but equal,EA052-3,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +66593,Id4,EA052,Males alone,EA052-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +66594,Id5,EA052,Males alone,EA052-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +66595,Id6,EA052,Differentiated but equal,EA052-3,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +66596,Id7,EA052,"Both, males more",EA052-2,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +66597,Id8,EA052,Females alone,EA052-6,,roth1890,,1830,EthnographicAtlas_1967_p96, +66598,Id9,EA052,?,EA052-NA,,,,,, +66599,Ie1,EA052,Females alone,EA052-6,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66600,Ie10,EA052,"Both, males more",EA052-2,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +66601,Ie11,EA052,Activity is absent,EA052-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +66602,Ie12,EA052,Females alone,EA052-6,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66603,Ie13,EA052,"Both, males more",EA052-2,,landtman1927,,1920,EthnographicAtlas_1967_p96, +66604,Ie14,EA052,"Both, males more",EA052-2,,haddon1908,,1900,EthnographicAtlas_1967_p96, +66605,Ie15,EA052,?,EA052-NA,,,,,, +66606,Ie16,EA052,Differentiated but equal,EA052-3,,williams194041,,1940,EthnographicAtlas_1967_p96, +66607,Ie17,EA052,Activity is absent,EA052-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +66608,Ie18,EA052,"Both, females more",EA052-5,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +66609,Ie19,EA052,Females alone,EA052-6,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +66610,Ie2,EA052,Activity is absent,EA052-9,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +66611,Ie20,EA052,"Both, males more",EA052-2,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +66612,Ie21,EA052,Differentiated but equal,EA052-3,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +66613,Ie22,EA052,Equal participation,EA052-4,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +66614,Ie23,EA052,"Both, males more",EA052-2,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +66615,Ie24,EA052,?,EA052-NA,,,,,, +66616,Ie25,EA052,Males alone,EA052-1,,williamson1912,,1920,EthnographicAtlas_1967_p96, +66617,Ie26,EA052,?,EA052-NA,,,,,, +66618,Ie27,EA052,Males alone,EA052-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +66619,Ie28,EA052,Males alone,EA052-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +66620,Ie29,EA052,"Both, males more",EA052-2,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66621,Ie3,EA052,Activity is absent,EA052-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66622,Ie30,EA052,Differentiated but equal,EA052-3,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +66623,Ie31,EA052,?,EA052-NA,,,,,, +66624,Ie32,EA052,Differentiated but equal,EA052-3,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +66625,Ie33,EA052,?,EA052-NA,,,,,, +66626,Ie34,EA052,?,EA052-NA,,,,,, +66627,Ie35,EA052,"Both, males more",EA052-2,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +66628,Ie36,EA052,?,EA052-NA,,,,,, +66629,Ie37,EA052,?,EA052-NA,,,,,, +66630,Ie38,EA052,Activity is absent,EA052-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +66631,Ie39,EA052,Differentiated but equal,EA052-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +66632,Ie4,EA052,"Both, males more",EA052-2,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66633,Ie5,EA052,Differentiated but equal,EA052-3,,williams1936,,1930,EthnographicAtlas_1967_p96, +66634,Ie6,EA052,Males alone,EA052-1,,held1947,,1930,EthnographicAtlas_1967_p96, +66635,Ie7,EA052,Activity is absent,EA052-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +66636,Ie8,EA052,"Both, females more",EA052-5,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +66637,Ie9,EA052,"Both, males more",EA052-2,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +66638,If1,EA052,"Both, males more",EA052-2,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66639,If10,EA052,?,EA052-NA,,,,,, +66640,If11,EA052,Differentiated but equal,EA052-3,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +66641,If12,EA052,Differentiated but equal,EA052-3,,mason1954,,1940,EthnographicAtlas_1967_p100, +66642,If13,EA052,Differentiated but equal,EA052-3,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +66643,If14,EA052,"Both, males more",EA052-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +66644,If15,EA052,Males alone,EA052-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +66645,If16,EA052,Males alone,EA052-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +66646,If17,EA052,"Both, males more",EA052-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +66647,If2,EA052,Differentiated but equal,EA052-3,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +66648,If3,EA052,"Both, males more",EA052-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +66649,If4,EA052,"Both, males more",EA052-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +66650,If5,EA052,"Both, males more",EA052-2,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +66651,If6,EA052,"Both, males more",EA052-2,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +66652,If7,EA052,"Both, males more",EA052-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +66653,If8,EA052,Males alone,EA052-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +66654,If9,EA052,Males alone,EA052-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +66655,Ig1,EA052,Differentiated but equal,EA052-3,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +66656,Ig10,EA052,Activity is absent,EA052-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +66657,Ig11,EA052,Males alone,EA052-1,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +66658,Ig12,EA052,?,EA052-NA,,,,,, +66659,Ig13,EA052,"Both, males more",EA052-2,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +66660,Ig14,EA052,Differentiated but equal,EA052-3,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +66661,Ig15,EA052,?,EA052-NA,,,,,, +66662,Ig16,EA052,?,EA052-NA,,,,,, +66663,Ig17,EA052,?,EA052-NA,,,,,, +66664,Ig18,EA052,?,EA052-NA,,,,,, +66665,Ig19,EA052,?,EA052-NA,,,,,, +66666,Ig2,EA052,"Both, males more",EA052-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +66667,Ig20,EA052,Differentiated but equal,EA052-3,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +66668,Ig21,EA052,"Both, males more",EA052-2,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +66669,Ig3,EA052,"Both, males more",EA052-2,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +66670,Ig4,EA052,"Both, males more",EA052-2,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +66671,Ig5,EA052,"Both, males more",EA052-2,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +66672,Ig6,EA052,"Both, males more",EA052-2,,ivens1927,,1900,EthnographicAtlas_1967_p100, +66673,Ig7,EA052,Differentiated but equal,EA052-3,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +66674,Ig8,EA052,?,EA052-NA,,,,,, +66675,Ig9,EA052,"Both, males more",EA052-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +66676,Ih1,EA052,"Both, males more",EA052-2,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +66677,Ih10,EA052,?,EA052-NA,,,,,, +66678,Ih11,EA052,?,EA052-NA,,,,,, +66679,Ih12,EA052,?,EA052-NA,,,,,, +66680,Ih13,EA052,?,EA052-NA,,,,,, +66681,Ih14,EA052,"Both, males more",EA052-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +66682,Ih2,EA052,"Both, males more",EA052-2,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66683,Ih3,EA052,?,EA052-NA,,,,,, +66684,Ih4,EA052,Differentiated but equal,EA052-3,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66685,Ih5,EA052,?,EA052-NA,,,,,, +66686,Ih6,EA052,Differentiated but equal,EA052-3,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +66687,Ih7,EA052,"Both, males more",EA052-2,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +66688,Ih8,EA052,"Both, females more",EA052-5,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +66689,Ih9,EA052,"Both, males more",EA052-2,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66690,Ii1,EA052,Differentiated but equal,EA052-3,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +66691,Ii10,EA052,?,EA052-NA,,,,,, +66692,Ii12,EA052,"Both, males more",EA052-2,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66693,Ii13,EA052,Differentiated but equal,EA052-3,,burrows1937,,1830,EthnographicAtlas_1967_p100, +66694,Ii14,EA052,"Both, males more",EA052-2,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +66695,Ii2,EA052,Differentiated but equal,EA052-3,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +66696,Ii3,EA052,Differentiated but equal,EA052-3,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +66697,Ii4,EA052,Differentiated but equal,EA052-3,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +66698,Ii5,EA052,Males alone,EA052-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +66699,Ii6,EA052,Differentiated but equal,EA052-3,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +66700,Ii7,EA052,"Both, males more",EA052-2,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +66701,Ii8,EA052,"Both, females more",EA052-5,,burrows1936,,1840,EthnographicAtlas_1967_p100, +66702,Ii9,EA052,Differentiated but equal,EA052-3,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +66703,Ij1,EA052,"Both, males more",EA052-2,,buck1934,,1820,EthnographicAtlas_1967_p100, +66704,Ij10,EA052,?,EA052-NA,,,,,, +66705,Ij2,EA052,"Both, males more",EA052-2,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +66706,Ij3,EA052,"Both, males more",EA052-2,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +66707,Ij4,EA052,Differentiated but equal,EA052-3,,buck1932a,,1850,EthnographicAtlas_1967_p104, +66708,Ij5,EA052,"Both, males more",EA052-2,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +66709,Ij6,EA052,"Both, males more",EA052-2,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +66710,Ij7,EA052,"Both, males more",EA052-2,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +66711,Ij8,EA052,"Both, males more",EA052-2,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +66712,Ij9,EA052,"Both, males more",EA052-2,,metraux1940,,1860,EthnographicAtlas_1967_p104, +66713,Na1,EA052,Males alone,EA052-1,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +66714,Na10,EA052,"Both, males more",EA052-2,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +66715,Na11,EA052,"Both, males more",EA052-2,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +66716,Na12,EA052,"Both, males more",EA052-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +66717,Na13,EA052,Males alone,EA052-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +66718,Na14,EA052,"Both, males more",EA052-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +66719,Na15,EA052,"Both, males more",EA052-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +66720,Na16,EA052,Males alone,EA052-1,,osgood1931,,1860,EthnographicAtlas_1967_p104, +66721,Na17,EA052,"Both, males more",EA052-2,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66722,Na19,EA052,"Both, males more",EA052-2,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +66723,Na2,EA052,Differentiated but equal,EA052-3,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +66724,Na20,EA052,"Both, males more",EA052-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +66725,Na21,EA052,"Both, males more",EA052-2,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +66726,Na22,EA052,"Both, males more",EA052-2,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +66727,Na23,EA052,Males alone,EA052-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +66728,Na24,EA052,Males alone,EA052-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +66729,Na25,EA052,Males alone,EA052-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +66730,Na26,EA052,Males alone,EA052-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +66731,Na27,EA052,Males alone,EA052-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +66732,Na28,EA052,Males alone,EA052-1,,jenness1937,,1880,EthnographicAtlas_1967_p104, +66733,Na29,EA052,?,EA052-NA,,,,,, +66734,Na3,EA052,"Both, males more",EA052-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +66735,Na30,EA052,Males alone,EA052-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +66736,Na31,EA052,Equal participation,EA052-4,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +66737,Na32,EA052,Equal participation,EA052-4,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +66738,Na33,EA052,"Both, males more",EA052-2,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +66739,Na34,EA052,Males alone,EA052-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +66740,Na35,EA052,"Both, males more",EA052-2,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +66741,Na36,EA052,"Both, females more",EA052-5,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +66742,Na37,EA052,Equal participation,EA052-4,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +66743,Na38,EA052,"Both, males more",EA052-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +66744,Na39,EA052,"Both, males more",EA052-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +66745,Na4,EA052,Equal participation,EA052-4,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +66746,Na40,EA052,"Both, males more",EA052-2,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +66747,Na41,EA052,"Both, males more",EA052-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +66748,Na42,EA052,?,EA052-NA,,,,,, +66749,Na43,EA052,"Both, males more",EA052-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +66750,Na44,EA052,?,EA052-NA,,,,,, +66751,Na45,EA052,Equal participation,EA052-4,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +66752,Na5,EA052,?,EA052-NA,,,,,, +66753,Na6,EA052,"Both, males more",EA052-2,,lantis1946,,1930,EthnographicAtlas_1967_p104, +66754,Na7,EA052,"Both, males more",EA052-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +66755,Na8,EA052,"Both, males more",EA052-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +66756,Na9,EA052,Males alone,EA052-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66757,Nb1,EA052,Males alone,EA052-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +66758,Nb10,EA052,"Both, males more",EA052-2,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +66759,Nb11,EA052,"Both, males more",EA052-2,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +66760,Nb12,EA052,Males alone,EA052-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +66761,Nb13,EA052,Males alone,EA052-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +66762,Nb14,EA052,Males alone,EA052-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +66763,Nb15,EA052,Males alone,EA052-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +66764,Nb16,EA052,"Both, males more",EA052-2,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +66765,Nb17,EA052,"Both, males more",EA052-2,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +66766,Nb18,EA052,Males alone,EA052-1,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +66767,Nb19,EA052,Males alone,EA052-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +66768,Nb2,EA052,"Both, males more",EA052-2,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +66769,Nb20,EA052,Males alone,EA052-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +66770,Nb21,EA052,?,EA052-NA,,,,,, +66771,Nb22,EA052,Males alone,EA052-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +66772,Nb23,EA052,Males alone,EA052-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +66773,Nb24,EA052,Males alone,EA052-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +66774,Nb25,EA052,Males alone,EA052-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +66775,Nb26,EA052,Males alone,EA052-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +66776,Nb27,EA052,Males alone,EA052-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +66777,Nb28,EA052,"Both, males more",EA052-2,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +66778,Nb29,EA052,?,EA052-NA,,,,,, +66779,Nb3,EA052,"Both, males more",EA052-2,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +66780,Nb30,EA052,?,EA052-NA,,,,,, +66781,Nb31,EA052,Males alone,EA052-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +66782,Nb32,EA052,"Both, males more",EA052-2,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +66783,Nb33,EA052,Males alone,EA052-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +66784,Nb34,EA052,Males alone,EA052-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +66785,Nb35,EA052,"Both, males more",EA052-2,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +66786,Nb36,EA052,"Both, males more",EA052-2,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +66787,Nb37,EA052,"Both, males more",EA052-2,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +66788,Nb38,EA052,Males alone,EA052-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +66789,Nb39,EA052,"Both, males more",EA052-2,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +66790,Nb4,EA052,"Both, males more",EA052-2,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +66791,Nb5,EA052,Males alone,EA052-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +66792,Nb6,EA052,Males alone,EA052-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +66793,Nb7,EA052,"Both, males more",EA052-2,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +66794,Nb8,EA052,Males alone,EA052-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +66795,Nb9,EA052,Males alone,EA052-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +66796,Nc1,EA052,"Both, males more",EA052-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +66797,Nc10,EA052,"Both, males more",EA052-2,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +66798,Nc11,EA052,Males alone,EA052-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +66799,Nc12,EA052,"Both, males more",EA052-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +66800,Nc13,EA052,"Both, males more",EA052-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +66801,Nc14,EA052,Males alone,EA052-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +66802,Nc15,EA052,"Both, males more",EA052-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +66803,Nc16,EA052,"Both, males more",EA052-2,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +66804,Nc17,EA052,"Both, males more",EA052-2,Essene reports that women engage in fishing,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +66805,Nc18,EA052,"Both, males more",EA052-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +66806,Nc19,EA052,?,EA052-NA,,,,,, +66807,Nc2,EA052,"Both, males more",EA052-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +66808,Nc20,EA052,Males alone,EA052-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +66809,Nc21,EA052,?,EA052-NA,,,,,, +66810,Nc22,EA052,?,EA052-NA,,,,,, +66811,Nc23,EA052,?,EA052-NA,,,,,, +66812,Nc24,EA052,?,EA052-NA,,,,,, +66813,Nc25,EA052,"Both, males more",EA052-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +66814,Nc26,EA052,?,EA052-NA,,,,,, +66815,Nc27,EA052,?,EA052-NA,,,,,, +66816,Nc28,EA052,?,EA052-NA,,,,,, +66817,Nc29,EA052,?,EA052-NA,,,,,, +66818,Nc3,EA052,"Both, males more",EA052-2,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +66819,Nc30,EA052,?,EA052-NA,,,,,, +66820,Nc31,EA052,Males alone,EA052-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +66821,Nc32,EA052,?,EA052-NA,,,,,, +66822,Nc33,EA052,?,EA052-NA,,,,,, +66823,Nc34,EA052,?,EA052-NA,,,,,, +66824,Nc4,EA052,Males alone,EA052-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +66825,Nc5,EA052,?,EA052-NA,,,,,, +66826,Nc6,EA052,Activity is absent,EA052-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +66827,Nc7,EA052,"Both, males more",EA052-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +66828,Nc8,EA052,"Both, males more",EA052-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +66829,Nc9,EA052,Males alone,EA052-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +66830,Nd1,EA052,"Both, males more",EA052-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +66831,Nd10,EA052,"Both, males more",EA052-2,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +66832,Nd11,EA052,"Both, males more",EA052-2,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +66833,Nd12,EA052,"Both, males more",EA052-2,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +66834,Nd13,EA052,"Both, males more",EA052-2,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +66835,Nd14,EA052,"Both, males more",EA052-2,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +66836,Nd15,EA052,Males alone,EA052-1,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +66837,Nd16,EA052,Males alone,EA052-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +66838,Nd17,EA052,Males alone,EA052-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +66839,Nd18,EA052,Males alone,EA052-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +66840,Nd19,EA052,Males alone,EA052-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +66841,Nd2,EA052,Males alone,EA052-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +66842,Nd20,EA052,Males alone,EA052-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +66843,Nd21,EA052,Males alone,EA052-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +66844,Nd22,EA052,Males alone,EA052-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +66845,Nd23,EA052,Males alone,EA052-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +66846,Nd24,EA052,Males alone,EA052-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +66847,Nd25,EA052,"Both, males more",EA052-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +66848,Nd26,EA052,Males alone,EA052-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +66849,Nd27,EA052,Males alone,EA052-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +66850,Nd28,EA052,Males alone,EA052-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +66851,Nd29,EA052,"Activity present, sex diff. unspecified",EA052-8,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +66852,Nd3,EA052,Activity is absent,EA052-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +66853,Nd30,EA052,Males alone,EA052-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +66854,Nd31,EA052,Activity is absent,EA052-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +66855,Nd32,EA052,Activity is absent,EA052-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +66856,Nd33,EA052,Activity is absent,EA052-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +66857,Nd34,EA052,Activity is absent,EA052-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +66858,Nd35,EA052,Males alone,EA052-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +66859,Nd36,EA052,Activity is absent,EA052-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +66860,Nd37,EA052,"Activity present, sex diff. unspecified",EA052-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +66861,Nd38,EA052,Males alone,EA052-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +66862,Nd39,EA052,Activity is absent,EA052-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +66863,Nd4,EA052,"Both, males more",EA052-2,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +66864,Nd40,EA052,?,EA052-NA,,,,,, +66865,Nd41,EA052,?,EA052-NA,,,,,, +66866,Nd42,EA052,Males alone,EA052-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +66867,Nd43,EA052,Males alone,EA052-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +66868,Nd44,EA052,Males alone,EA052-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +66869,Nd45,EA052,Males alone,EA052-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +66870,Nd46,EA052,Males alone,EA052-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +66871,Nd47,EA052,Males alone,EA052-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +66872,Nd48,EA052,?,EA052-NA,,,,,, +66873,Nd49,EA052,?,EA052-NA,,,,,, +66874,Nd5,EA052,?,EA052-NA,,,,,, +66875,Nd50,EA052,?,EA052-NA,,,,,, +66876,Nd51,EA052,?,EA052-NA,,,,,, +66877,Nd52,EA052,Activity is absent,EA052-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +66878,Nd53,EA052,Activity is absent,EA052-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +66879,Nd54,EA052,Activity is absent,EA052-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66880,Nd55,EA052,Activity is absent,EA052-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +66881,Nd56,EA052,"Activity present, sex diff. unspecified",EA052-8,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +66882,Nd57,EA052,?,EA052-NA,,,,,, +66883,Nd58,EA052,Males alone,EA052-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +66884,Nd59,EA052,?,EA052-NA,,,,,, +66885,Nd6,EA052,Equal participation,EA052-4,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +66886,Nd60,EA052,?,EA052-NA,,,,,, +66887,Nd61,EA052,?,EA052-NA,,,,,, +66888,Nd62,EA052,"Both, males more",EA052-2,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +66889,Nd63,EA052,Males alone,EA052-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +66890,Nd64,EA052,Males alone,EA052-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +66891,Nd65,EA052,Activity is absent,EA052-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +66892,Nd66,EA052,Activity is absent,EA052-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +66893,Nd67,EA052,Activity is absent,EA052-9,,gifford1936,,1870,EthnographicAtlas_1967_p112, +66894,Nd7,EA052,Males alone,EA052-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +66895,Nd8,EA052,"Both, males more",EA052-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +66896,Nd9,EA052,"Both, males more",EA052-2,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +66897,Ne1,EA052,Activity is absent,EA052-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +66898,Ne10,EA052,Males alone,EA052-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +66899,Ne11,EA052,Males alone,EA052-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +66900,Ne12,EA052,Activity is absent,EA052-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +66901,Ne13,EA052,Activity is absent,EA052-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +66902,Ne14,EA052,Males alone,EA052-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +66903,Ne15,EA052,?,EA052-NA,,,,,, +66904,Ne16,EA052,Males alone,EA052-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +66905,Ne17,EA052,Activity is absent,EA052-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +66906,Ne18,EA052,Activity is absent,EA052-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +66907,Ne19,EA052,Males alone,EA052-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +66908,Ne2,EA052,Activity is absent,EA052-9,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +66909,Ne20,EA052,Males alone,EA052-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +66910,Ne21,EA052,?,EA052-NA,,,,,, +66911,Ne3,EA052,Activity is absent,EA052-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +66912,Ne4,EA052,Activity is absent,EA052-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +66913,Ne5,EA052,Activity is absent,EA052-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +66914,Ne6,EA052,Males alone,EA052-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +66915,Ne7,EA052,Males alone,EA052-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +66916,Ne8,EA052,Males alone,EA052-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +66917,Ne9,EA052,Activity is absent,EA052-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +66918,Nf10,EA052,?,EA052-NA,,,,,, +66919,Nf11,EA052,Males alone,EA052-1,,whitman1937,,1870,EthnographicAtlas_1967_p116, +66920,Nf12,EA052,Males alone,EA052-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +66921,Nf13,EA052,?,EA052-NA,,,,,, +66922,Nf14,EA052,?,EA052-NA,,,,,, +66923,Nf15,EA052,?,EA052-NA,,,,,, +66924,Nf2,EA052,"Both, males more",EA052-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +66925,Nf3,EA052,Equal participation,EA052-4,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +66926,Nf4,EA052,?,EA052-NA,,,,,, +66927,Nf5,EA052,Activity is absent,EA052-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +66928,Nf6,EA052,?,EA052-NA,,,,,, +66929,Nf7,EA052,?,EA052-NA,,,,,, +66930,Nf8,EA052,?,EA052-NA,,,,,, +66931,Nf9,EA052,Males alone,EA052-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +66932,Ng1,EA052,Males alone,EA052-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +66933,Ng10,EA052,Males alone,EA052-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +66934,Ng11,EA052,Equal participation,EA052-4,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +66935,Ng12,EA052,?,EA052-NA,,,,,, +66936,Ng13,EA052,?,EA052-NA,,,,,, +66937,Ng14,EA052,?,EA052-NA,,,,,, +66938,Ng15,EA052,?,EA052-NA,,,,,, +66939,Ng2,EA052,?,EA052-NA,,,,,, +66940,Ng3,EA052,"Both, males more",EA052-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +66941,Ng4,EA052,?,EA052-NA,,,,,, +66942,Ng5,EA052,Males alone,EA052-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +66943,Ng6,EA052,Males alone,EA052-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +66944,Ng7,EA052,Males alone,EA052-1,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +66945,Ng8,EA052,?,EA052-NA,,,,,, +66946,Ng9,EA052,?,EA052-NA,,,,,, +66947,Nh1,EA052,Activity is absent,EA052-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +66948,Nh10,EA052,Activity is absent,EA052-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p116, +66949,Nh11,EA052,?,EA052-NA,,,,,, +66950,Nh12,EA052,Activity is absent,EA052-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +66951,Nh13,EA052,Activity is absent,EA052-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +66952,Nh14,EA052,?,EA052-NA,,,,,, +66953,Nh15,EA052,?,EA052-NA,,,,,, +66954,Nh16,EA052,?,EA052-NA,,,,,, +66955,Nh17,EA052,Activity is absent,EA052-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +66956,Nh18,EA052,Activity is absent,EA052-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66957,Nh19,EA052,?,EA052-NA,,,,,, +66958,Nh2,EA052,Activity is absent,EA052-9,,dozier1954,,1950,EthnographicAtlas_1967_p116, +66959,Nh20,EA052,?,EA052-NA,,,,,, +66960,Nh21,EA052,?,EA052-NA,,,,,, +66961,Nh22,EA052,?,EA052-NA,,,,,, +66962,Nh23,EA052,Males alone,EA052-1,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +66963,Nh24,EA052,Activity is absent,EA052-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +66964,Nh25,EA052,Activity is absent,EA052-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +66965,Nh26,EA052,?,EA052-NA,,,,,, +66966,Nh27,EA052,?,EA052-NA,,,,,, +66967,Nh3,EA052,Activity is absent,EA052-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +66968,Nh4,EA052,Activity is absent,EA052-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +66969,Nh5,EA052,Males alone,EA052-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +66970,Nh6,EA052,Activity is absent,EA052-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +66971,Nh7,EA052,Males alone,EA052-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +66972,Nh8,EA052,Activity is absent,EA052-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +66973,Nh9,EA052,Activity is absent,EA052-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p116, +66974,Ni1,EA052,Activity is absent,EA052-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +66975,Ni2,EA052,Activity is absent,EA052-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +66976,Ni3,EA052,Males alone,EA052-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +66977,Ni4,EA052,?,EA052-NA,,,,,, +66978,Ni5,EA052,?,EA052-NA,,,,,, +66979,Ni6,EA052,?,EA052-NA,,,,,, +66980,Ni7,EA052,"Both, males more",EA052-2,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +66981,Ni8,EA052,?,EA052-NA,,,,,, +66982,Ni9,EA052,?,EA052-NA,,,,,, +66983,Nj1,EA052,Activity is absent,EA052-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66984,Nj10,EA052,Males alone,EA052-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66985,Nj11,EA052,?,EA052-NA,,,,,, +66986,Nj12,EA052,?,EA052-NA,,,,,, +66987,Nj13,EA052,?,EA052-NA,,,,,, +66988,Nj14,EA052,?,EA052-NA,,,,,, +66989,Nj2,EA052,Males alone,EA052-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +66990,Nj3,EA052,Males alone,EA052-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +66991,Nj4,EA052,Males alone,EA052-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +66992,Nj5,EA052,?,EA052-NA,,,,,, +66993,Nj6,EA052,?,EA052-NA,,,,,, +66994,Nj7,EA052,Males alone,EA052-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +66995,Nj8,EA052,?,EA052-NA,,,,,, +66996,Nj9,EA052,Activity is absent,EA052-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +66997,Sa1,EA052,Males alone,EA052-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +66998,Sa10,EA052,Males alone,EA052-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +66999,Sa11,EA052,?,EA052-NA,,,,,, +67000,Sa12,EA052,Males alone,EA052-1,,stone1948,,1948,EthnographicAtlas_1967_p120, +67001,Sa13,EA052,Males alone,EA052-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +67002,Sa14,EA052,?,EA052-NA,,,,,, +67003,Sa15,EA052,?,EA052-NA,,,,,, +67004,Sa16,EA052,?,EA052-NA,,,,,, +67005,Sa17,EA052,?,EA052-NA,,,,,, +67006,Sa2,EA052,?,EA052-NA,,,,,, +67007,Sa3,EA052,"Both, males more",EA052-2,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +67008,Sa4,EA052,Males alone,EA052-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +67009,Sa5,EA052,Males alone,EA052-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +67010,Sa6,EA052,Males alone,EA052-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +67011,Sa7,EA052,Differentiated but equal,EA052-3,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +67012,Sa8,EA052,?,EA052-NA,,,,,, +67013,Sa9,EA052,"Both, males more",EA052-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +67014,Sb1,EA052,"Both, males more",EA052-2,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +67015,Sb2,EA052,Equal participation,EA052-4,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +67016,Sb3,EA052,?,EA052-NA,,,,,, +67017,Sb4,EA052,"Both, males more",EA052-2,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +67018,Sb5,EA052,?,EA052-NA,,,,,, +67019,Sb6,EA052,Males alone,EA052-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +67020,Sb7,EA052,"Both, males more",EA052-2,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +67021,Sb8,EA052,Males alone,EA052-1,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +67022,Sb9,EA052,Activity is absent,EA052-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +67023,Sc1,EA052,Males alone,EA052-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +67024,Sc10,EA052,?,EA052-NA,,,,,, +67025,Sc11,EA052,Males alone,EA052-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +67026,Sc12,EA052,Males alone,EA052-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +67027,Sc13,EA052,"Both, males more",EA052-2,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +67028,Sc14,EA052,Males alone,EA052-1,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +67029,Sc15,EA052,?,EA052-NA,,,,,, +67030,Sc16,EA052,"Both, males more",EA052-2,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +67031,Sc17,EA052,Males alone,EA052-1,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +67032,Sc18,EA052,"Both, males more",EA052-2,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +67033,Sc2,EA052,Males alone,EA052-1,,leedsnd,,1950,EthnographicAtlas_1967_p120, +67034,Sc3,EA052,"Both, males more",EA052-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +67035,Sc4,EA052,Males alone,EA052-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +67036,Sc5,EA052,"Both, males more",EA052-2,,farabee1918,,1900,EthnographicAtlas_1967_p120, +67037,Sc6,EA052,Males alone,EA052-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67038,Sc7,EA052,"Both, males more",EA052-2,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +67039,Sc8,EA052,Males alone,EA052-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +67040,Sc9,EA052,Males alone,EA052-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +67041,Sd1,EA052,"Both, males more",EA052-2,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67042,Sd2,EA052,"Both, males more",EA052-2,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +67043,Sd3,EA052,"Both, males more",EA052-2,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +67044,Sd4,EA052,Differentiated but equal,EA052-3,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +67045,Sd5,EA052,Males alone,EA052-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +67046,Sd6,EA052,Males alone,EA052-1,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +67047,Sd7,EA052,"Both, males more",EA052-2,,fock1963,,1950,EthnographicAtlas_1967_p120, +67048,Sd8,EA052,?,EA052-NA,,,,,, +67049,Sd9,EA052,Differentiated but equal,EA052-3,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67050,Se1,EA052,Males alone,EA052-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +67051,Se10,EA052,?,EA052-NA,,,,,, +67052,Se11,EA052,Males alone,EA052-1,,prost1965,,1960,EthnographicAtlas_1967_p124, +67053,Se12,EA052,?,EA052-NA,,,,,, +67054,Se2,EA052,Males alone,EA052-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +67055,Se3,EA052,Males alone,EA052-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +67056,Se4,EA052,"Both, males more",EA052-2,,fejos1943,,1940,EthnographicAtlas_1967_p120, +67057,Se5,EA052,Males alone,EA052-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +67058,Se6,EA052,Males alone,EA052-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +67059,Se7,EA052,?,EA052-NA,,,,,, +67060,Se8,EA052,Males alone,EA052-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +67061,Se9,EA052,Males alone,EA052-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +67062,Sf1,EA052,Activity is absent,EA052-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +67063,Sf2,EA052,Males alone,EA052-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +67064,Sf3,EA052,Males alone,EA052-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +67065,Sf4,EA052,Males alone,EA052-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +67066,Sf5,EA052,Activity is absent,EA052-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +67067,Sf6,EA052,?,EA052-NA,,,,,, +67068,Sf7,EA052,Males alone,EA052-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +67069,Sf8,EA052,?,EA052-NA,,,,,, +67070,Sf9,EA052,?,EA052-NA,,,,,, +67071,Sg1,EA052,Differentiated but equal,EA052-3,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +67072,Sg2,EA052,Males alone,EA052-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67073,Sg3,EA052,"Both, males more",EA052-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +67074,Sg4,EA052,?,EA052-NA,,,,,, +67075,Sg5,EA052,Differentiated but equal,EA052-3,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67076,Sh1,EA052,Males alone,EA052-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +67077,Sh2,EA052,Males alone,EA052-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +67078,Sh3,EA052,Males alone,EA052-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +67079,Sh4,EA052,"Both, males more",EA052-2,,oberg1949,,1940,EthnographicAtlas_1967_p124, +67080,Sh5,EA052,Males alone,EA052-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +67081,Sh6,EA052,?,EA052-NA,,,,,, +67082,Sh7,EA052,Differentiated but equal,EA052-3,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +67083,Sh8,EA052,Males alone,EA052-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +67084,Sh9,EA052,Males alone,EA052-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +67085,Si1,EA052,Males alone,EA052-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67086,Si10,EA052,Males alone,EA052-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +67087,Si2,EA052,Males alone,EA052-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +67088,Si3,EA052,Males alone,EA052-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67089,Si4,EA052,"Both, males more",EA052-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +67090,Si5,EA052,Males alone,EA052-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +67091,Si6,EA052,Males alone,EA052-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +67092,Si7,EA052,?,EA052-NA,,,,,, +67093,Si8,EA052,Equal participation,EA052-4,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +67094,Si9,EA052,?,EA052-NA,,,,,, +67095,Sj1,EA052,?,EA052-NA,,,,,, +67096,Sj10,EA052,Males alone,EA052-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67097,Sj11,EA052,"Both, males more",EA052-2,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +67098,Sj2,EA052,"Both, males more",EA052-2,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +67099,Sj3,EA052,Activity is absent,EA052-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +67100,Sj4,EA052,"Both, males more",EA052-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +67101,Sj5,EA052,Males alone,EA052-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +67102,Sj6,EA052,?,EA052-NA,,,,,, +67103,Sj7,EA052,"Both, males more",EA052-2,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +67104,Sj8,EA052,Males alone,EA052-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +67105,Sj9,EA052,Males alone,EA052-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +67106,ch12,EA052,Males alone,EA052-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +67107,ch13,EA052,Activity is absent,EA052-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +67108,ch14,EA052,"Activity present, sex diff. unspecified",EA052-8,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +67109,ch15,EA052,Males alone,EA052-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +67110,ch16,EA052,Males alone,EA052-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +67111,ch17,EA052,Males alone,EA052-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +67112,ch18,EA052,Equal participation,EA052-4,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +67113,ch19,EA052,Males alone,EA052-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +67114,ch20,EA052,Males alone,EA052-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +67115,ch21,EA052,Males alone,EA052-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +67116,ch22,EA052,Activity is absent,EA052-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +67117,ch23,EA052,Activity is absent,EA052-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +67118,ch24,EA052,Equal participation,EA052-4,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +67119,ch25,EA052,Males alone,EA052-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +67120,ch26,EA052,Males alone,EA052-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +67121,ch27,EA052,Males alone,EA052-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +67122,ch28,EA052,Equal participation,EA052-4,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +67123,ec12,EA052,Males alone,EA052-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +67124,ec13,EA052,"Both, males more",EA052-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +67125,ec14,EA052,Males alone,EA052-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +67126,ec15,EA052,Males alone,EA052-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +67127,ec16,EA052,"Both, males more",EA052-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +67128,ec17,EA052,"Both, males more",EA052-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +67129,ec18,EA052,"Both, males more",EA052-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +67130,ec19,EA052,"Both, males more",EA052-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +67131,ec20,EA052,"Both, males more",EA052-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +67132,ec21,EA052,"Both, males more",EA052-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +67133,Aa1,EA053,Activity is absent,EA053-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +67134,Aa2,EA053,Activity is absent,EA053-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +67135,Aa3,EA053,Differentiated but equal,EA053-3,Women milk and children do most of the herding,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +67136,Aa4,EA053,?,EA053-NA,,,,,, +67137,Aa5,EA053,Activity is absent,EA053-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +67138,Aa6,EA053,Males alone,EA053-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p64, +67139,Aa7,EA053,Activity is absent,EA053-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +67140,Aa8,EA053,Activity is absent,EA053-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +67141,Aa9,EA053,Activity is absent,EA053-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +67142,Ab1,EA053,Equal participation,EA053-4,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +67143,Ab10,EA053,"Both, males more",EA053-2,,hunter1936,,1936,EthnographicAtlas_1967_p64, +67144,Ab11,EA053,Males alone,EA053-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +67145,Ab12,EA053,Males alone,EA053-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +67146,Ab13,EA053,Males alone,EA053-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +67147,Ab14,EA053,"Both, males more",EA053-2,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +67148,Ab15,EA053,Males alone,EA053-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +67149,Ab16,EA053,Males alone,EA053-1,,earthy1933,,1930,EthnographicAtlas_1967_p64, +67150,Ab17,EA053,?,EA053-NA,,,,,, +67151,Ab18,EA053,Males alone,EA053-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +67152,Ab19,EA053,"Both, males more",EA053-2,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +67153,Ab2,EA053,Males alone,EA053-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +67154,Ab20,EA053,?,EA053-NA,,,,,, +67155,Ab21a,EA053,?,EA053-NA,,,,,, +67156,Ab21b,EA053,?,EA053-NA,,,,,, +67157,Ab22,EA053,?,EA053-NA,,,,,, +67158,Ab3,EA053,Males alone,EA053-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +67159,Ab4,EA053,Males alone,EA053-1,,junod1927,,1920,EthnographicAtlas_1967_p64, +67160,Ab5,EA053,Males alone,EA053-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +67161,Ab6,EA053,Males alone,EA053-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +67162,Ab7,EA053,Males alone,EA053-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p64, +67163,Ab8,EA053,Males alone,EA053-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +67164,Ab9,EA053,Males alone,EA053-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +67165,Ac1,EA053,Males alone,EA053-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +67166,Ac10,EA053,"Both, males more",EA053-2,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +67167,Ac11,EA053,?,EA053-NA,,,,,, +67168,Ac12,EA053,?,EA053-NA,,,,,, +67169,Ac13,EA053,?,EA053-NA,,,,,, +67170,Ac14,EA053,?,EA053-NA,,,,,, +67171,Ac15,EA053,?,EA053-NA,,,,,, +67172,Ac16,EA053,?,EA053-NA,,,,,, +67173,Ac17,EA053,?,EA053-NA,,,,,, +67174,Ac18,EA053,"Both, males more",EA053-2,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +67175,Ac19,EA053,?,EA053-NA,,,,,, +67176,Ac2,EA053,?,EA053-NA,,,,,, +67177,Ac20,EA053,?,EA053-NA,,,,,, +67178,Ac21,EA053,?,EA053-NA,,,,,, +67179,Ac22,EA053,Males alone,EA053-1,,mertens1935,,1930,EthnographicAtlas_1967_p64, +67180,Ac23,EA053,?,EA053-NA,,,,,, +67181,Ac24,EA053,?,EA053-NA,,,,,, +67182,Ac25,EA053,?,EA053-NA,,,,,, +67183,Ac26,EA053,?,EA053-NA,,,,,, +67184,Ac27,EA053,?,EA053-NA,,,,,, +67185,Ac28,EA053,?,EA053-NA,,,,,, +67186,Ac29,EA053,?,EA053-NA,,,,,, +67187,Ac3,EA053,?,EA053-NA,,,,,, +67188,Ac30,EA053,Males alone,EA053-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +67189,Ac31,EA053,?,EA053-NA,,,,,, +67190,Ac32,EA053,?,EA053-NA,,,,,, +67191,Ac33,EA053,"Both, males more",EA053-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +67192,Ac34,EA053,?,EA053-NA,,,,,, +67193,Ac35,EA053,?,EA053-NA,,,,,, +67194,Ac36,EA053,?,EA053-NA,,,,,, +67195,Ac37,EA053,?,EA053-NA,,,,,, +67196,Ac38,EA053,?,EA053-NA,,,,,, +67197,Ac39,EA053,?,EA053-NA,,,,,, +67198,Ac4,EA053,Activity is absent,EA053-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +67199,Ac40,EA053,?,EA053-NA,,,,,, +67200,Ac41,EA053,?,EA053-NA,,,,,, +67201,Ac42,EA053,?,EA053-NA,,,,,, +67202,Ac43,EA053,?,EA053-NA,,,,,, +67203,Ac5,EA053,Activity is absent,EA053-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +67204,Ac6,EA053,?,EA053-NA,,,,,, +67205,Ac7,EA053,?,EA053-NA,,,,,, +67206,Ac8,EA053,?,EA053-NA,,,,,, +67207,Ac9,EA053,Males alone,EA053-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +67208,Ad1,EA053,"Both, males more",EA053-2,,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +67209,Ad10,EA053,Males alone,EA053-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +67210,Ad11,EA053,Males alone,EA053-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +67211,Ad12,EA053,?,EA053-NA,,,,,, +67212,Ad13,EA053,Males alone,EA053-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +67213,Ad14,EA053,?,EA053-NA,,,,,, +67214,Ad15,EA053,Males alone,EA053-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p68, +67215,Ad16,EA053,Males alone,EA053-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +67216,Ad17,EA053,Males alone,EA053-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +67217,Ad18,EA053,?,EA053-NA,,,,,, +67218,Ad19,EA053,"Both, males more",EA053-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +67219,Ad2,EA053,"Both, males more",EA053-2,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +67220,Ad20,EA053,"Both, males more",EA053-2,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +67221,Ad21,EA053,Males alone,EA053-1,,maurice193538,,1930,EthnographicAtlas_1967_p68, +67222,Ad22,EA053,"Both, males more",EA053-2,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +67223,Ad23,EA053,?,EA053-NA,,,,,, +67224,Ad24,EA053,Males alone,EA053-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +67225,Ad25,EA053,?,EA053-NA,,,,,, +67226,Ad26,EA053,"Both, males more",EA053-2,,sick1916,,1910,EthnographicAtlas_1967_p68, +67227,Ad27,EA053,?,EA053-NA,,,,,, +67228,Ad28,EA053,?,EA053-NA,,,,,, +67229,Ad29,EA053,"Both, males more",EA053-2,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +67230,Ad3,EA053,Differentiated but equal,EA053-3,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +67231,Ad30,EA053,"Both, males more",EA053-2,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +67232,Ad31,EA053,Males alone,EA053-1,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +67233,Ad32,EA053,"Both, males more",EA053-2,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p68, +67234,Ad33,EA053,Activity is absent,EA053-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +67235,Ad34,EA053,Males alone,EA053-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +67236,Ad35,EA053,Males alone,EA053-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +67237,Ad36,EA053,?,EA053-NA,,,,,, +67238,Ad37,EA053,?,EA053-NA,,,,,, +67239,Ad38,EA053,?,EA053-NA,,,,,, +67240,Ad39,EA053,Differentiated but equal,EA053-3,,gray1963,,1950,EthnographicAtlas_1967_p68, +67241,Ad4,EA053,Males alone,EA053-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +67242,Ad40,EA053,?,EA053-NA,,,,,, +67243,Ad41,EA053,"Both, males more",EA053-2,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +67244,Ad42,EA053,Males alone,EA053-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p68, +67245,Ad43,EA053,?,EA053-NA,,,,,, +67246,Ad44,EA053,Males alone,EA053-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +67247,Ad45,EA053,Males alone,EA053-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +67248,Ad46,EA053,Males alone,EA053-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +67249,Ad47,EA053,Males alone,EA053-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +67250,Ad48,EA053,Males alone,EA053-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +67251,Ad49,EA053,Males alone,EA053-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +67252,Ad5,EA053,?,EA053-NA,,,,,, +67253,Ad50,EA053,Males alone,EA053-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +67254,Ad51,EA053,?,EA053-NA,,,,,, +67255,Ad6,EA053,Males alone,EA053-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +67256,Ad7,EA053,Males alone,EA053-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +67257,Ad8,EA053,Males alone,EA053-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +67258,Ad9,EA053,"Both, males more",EA053-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +67259,Ae1,EA053,Males alone,EA053-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +67260,Ae10,EA053,Males alone,EA053-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +67261,Ae11,EA053,?,EA053-NA,,,,,, +67262,Ae12,EA053,?,EA053-NA,,,,,, +67263,Ae13,EA053,?,EA053-NA,,,,,, +67264,Ae14,EA053,Males alone,EA053-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +67265,Ae15,EA053,Males alone,EA053-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p68, +67266,Ae16,EA053,?,EA053-NA,,,,,, +67267,Ae17,EA053,?,EA053-NA,,,,,, +67268,Ae18,EA053,Males alone,EA053-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +67269,Ae19,EA053,?,EA053-NA,,,,,, +67270,Ae2,EA053,Males alone,EA053-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +67271,Ae20,EA053,?,EA053-NA,,,,,, +67272,Ae21,EA053,?,EA053-NA,,,,,, +67273,Ae22,EA053,?,EA053-NA,,,,,, +67274,Ae23,EA053,?,EA053-NA,,,,,, +67275,Ae24,EA053,?,EA053-NA,,,,,, +67276,Ae25,EA053,?,EA053-NA,,,,,, +67277,Ae26,EA053,?,EA053-NA,,,,,, +67278,Ae27,EA053,?,EA053-NA,,,,,, +67279,Ae28,EA053,?,EA053-NA,,,,,, +67280,Ae29,EA053,?,EA053-NA,,,,,, +67281,Ae3,EA053,Males alone,EA053-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +67282,Ae30,EA053,?,EA053-NA,,,,,, +67283,Ae31,EA053,?,EA053-NA,,,,,, +67284,Ae32,EA053,?,EA053-NA,,,,,, +67285,Ae33,EA053,?,EA053-NA,,,,,, +67286,Ae34,EA053,?,EA053-NA,,,,,, +67287,Ae35,EA053,?,EA053-NA,,,,,, +67288,Ae36,EA053,?,EA053-NA,,,,,, +67289,Ae37,EA053,?,EA053-NA,,,,,, +67290,Ae38,EA053,?,EA053-NA,,,,,, +67291,Ae39,EA053,"Both, females more",EA053-5,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +67292,Ae4,EA053,Activity is absent,EA053-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +67293,Ae40,EA053,?,EA053-NA,,,,,, +67294,Ae41,EA053,?,EA053-NA,,,,,, +67295,Ae42,EA053,?,EA053-NA,,,,,, +67296,Ae43,EA053,?,EA053-NA,,,,,, +67297,Ae44,EA053,?,EA053-NA,,,,,, +67298,Ae45,EA053,?,EA053-NA,,,,,, +67299,Ae46,EA053,?,EA053-NA,,,,,, +67300,Ae47,EA053,?,EA053-NA,,,,,, +67301,Ae48,EA053,?,EA053-NA,,,,,, +67302,Ae49,EA053,?,EA053-NA,,,,,, +67303,Ae5,EA053,?,EA053-NA,,,,,, +67304,Ae50,EA053,Differentiated but equal,EA053-3,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +67305,Ae51,EA053,Differentiated but equal,EA053-3,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +67306,Ae52,EA053,?,EA053-NA,,,,,, +67307,Ae53,EA053,?,EA053-NA,,,,,, +67308,Ae54,EA053,?,EA053-NA,,,,,, +67309,Ae55,EA053,?,EA053-NA,,,,,, +67310,Ae56,EA053,?,EA053-NA,,,,,, +67311,Ae57,EA053,?,EA053-NA,,,,,, +67312,Ae58,EA053,?,EA053-NA,,,,,, +67313,Ae59,EA053,?,EA053-NA,,,,,, +67314,Ae6,EA053,?,EA053-NA,,,,,, +67315,Ae7,EA053,?,EA053-NA,,,,,, +67316,Ae8,EA053,Males alone,EA053-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +67317,Ae9,EA053,?,EA053-NA,,,,,, +67318,Af1,EA053,Equal participation,EA053-4,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +67319,Af10,EA053,Males alone,EA053-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +67320,Af11,EA053,?,EA053-NA,,,,,, +67321,Af12,EA053,?,EA053-NA,,,,,, +67322,Af13,EA053,?,EA053-NA,,,,,, +67323,Af14,EA053,?,EA053-NA,,,,,, +67324,Af15,EA053,?,EA053-NA,,,,,, +67325,Af16,EA053,?,EA053-NA,,,,,, +67326,Af17,EA053,?,EA053-NA,,,,,, +67327,Af18,EA053,?,EA053-NA,,,,,, +67328,Af19,EA053,Males alone,EA053-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p72, +67329,Af2,EA053,"Both, males more",EA053-2,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +67330,Af20,EA053,Males alone,EA053-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +67331,Af21,EA053,?,EA053-NA,,,,,, +67332,Af22,EA053,?,EA053-NA,,,,,, +67333,Af23,EA053,?,EA053-NA,,,,,, +67334,Af24,EA053,?,EA053-NA,,,,,, +67335,Af25,EA053,?,EA053-NA,,,,,, +67336,Af26,EA053,?,EA053-NA,,,,,, +67337,Af27,EA053,?,EA053-NA,,,,,, +67338,Af28,EA053,?,EA053-NA,,,,,, +67339,Af29,EA053,?,EA053-NA,,,,,, +67340,Af3,EA053,?,EA053-NA,,,,,, +67341,Af30,EA053,?,EA053-NA,,,,,, +67342,Af31,EA053,?,EA053-NA,,,,,, +67343,Af32,EA053,Females alone,EA053-6,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67344,Af33,EA053,?,EA053-NA,,,,,, +67345,Af34,EA053,?,EA053-NA,,,,,, +67346,Af35,EA053,?,EA053-NA,,,,,, +67347,Af36,EA053,?,EA053-NA,,,,,, +67348,Af37,EA053,?,EA053-NA,,,,,, +67349,Af38,EA053,?,EA053-NA,,,,,, +67350,Af39,EA053,?,EA053-NA,,,,,, +67351,Af4,EA053,Males alone,EA053-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +67352,Af40,EA053,?,EA053-NA,,,,,, +67353,Af41,EA053,?,EA053-NA,,,,,, +67354,Af42,EA053,?,EA053-NA,,,,,, +67355,Af43,EA053,?,EA053-NA,,,,,, +67356,Af44,EA053,?,EA053-NA,,,,,, +67357,Af45,EA053,?,EA053-NA,,,,,, +67358,Af46,EA053,?,EA053-NA,,,,,, +67359,Af47,EA053,?,EA053-NA,,,,,, +67360,Af48,EA053,?,EA053-NA,,,,,, +67361,Af49,EA053,?,EA053-NA,,,,,, +67362,Af5,EA053,?,EA053-NA,,,,,, +67363,Af50,EA053,?,EA053-NA,,,,,, +67364,Af51,EA053,?,EA053-NA,,,,,, +67365,Af52,EA053,Males alone,EA053-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +67366,Af53,EA053,?,EA053-NA,,,,,, +67367,Af54,EA053,?,EA053-NA,,,,,, +67368,Af55,EA053,?,EA053-NA,,,,,, +67369,Af56,EA053,?,EA053-NA,,,,,, +67370,Af57,EA053,?,EA053-NA,,,,,, +67371,Af58,EA053,?,EA053-NA,,,,,, +67372,Af6,EA053,Females alone,EA053-6,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +67373,Af7,EA053,?,EA053-NA,,,,,, +67374,Af8,EA053,Males alone,EA053-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +67375,Af9,EA053,?,EA053-NA,,,,,, +67376,Ag1,EA053,Differentiated but equal,EA053-3,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +67377,Ag10,EA053,Males alone,EA053-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +67378,Ag11,EA053,Males alone,EA053-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +67379,Ag12,EA053,Males alone,EA053-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +67380,Ag13,EA053,?,EA053-NA,,,,,, +67381,Ag14,EA053,?,EA053-NA,,,,,, +67382,Ag15,EA053,?,EA053-NA,,,,,, +67383,Ag16,EA053,Females alone,EA053-6,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p72, +67384,Ag17,EA053,?,EA053-NA,,,,,, +67385,Ag18,EA053,?,EA053-NA,,,,,, +67386,Ag19,EA053,"Both, males more",EA053-2,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p72, +67387,Ag2,EA053,Males alone,EA053-1,"Boys herd all animals except cattle, which are herded and milked exclusively by Fulani",hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +67388,Ag20,EA053,?,EA053-NA,,,,,, +67389,Ag21,EA053,Males alone,EA053-1,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +67390,Ag22,EA053,Differentiated but equal,EA053-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +67391,Ag23,EA053,?,EA053-NA,,,,,, +67392,Ag24,EA053,?,EA053-NA,,,,,, +67393,Ag25,EA053,?,EA053-NA,Cattle are herded and milked exclusively by Fulani,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p72, +67394,Ag26,EA053,Males alone,EA053-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p72, +67395,Ag27,EA053,?,EA053-NA,,,,,, +67396,Ag28,EA053,?,EA053-NA,,,,,, +67397,Ag29,EA053,?,EA053-NA,,,,,, +67398,Ag3,EA053,Males alone,EA053-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +67399,Ag30,EA053,?,EA053-NA,,,,,, +67400,Ag31,EA053,?,EA053-NA,,,,,, +67401,Ag32,EA053,?,EA053-NA,,,,,, +67402,Ag33,EA053,?,EA053-NA,,,,,, +67403,Ag34,EA053,?,EA053-NA,,,,,, +67404,Ag35,EA053,?,EA053-NA,,,,,, +67405,Ag36,EA053,?,EA053-NA,,,,,, +67406,Ag37,EA053,?,EA053-NA,,,,,, +67407,Ag38,EA053,?,EA053-NA,,,,,, +67408,Ag39,EA053,?,EA053-NA,,,,,, +67409,Ag4,EA053,"Both, males more",EA053-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +67410,Ag40,EA053,?,EA053-NA,,,,,, +67411,Ag41,EA053,?,EA053-NA,,,,,, +67412,Ag42,EA053,?,EA053-NA,,,,,, +67413,Ag43,EA053,?,EA053-NA,,,,,, +67414,Ag44,EA053,?,EA053-NA,,,,,, +67415,Ag45,EA053,Males alone,EA053-1,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +67416,Ag46,EA053,?,EA053-NA,,,,,, +67417,Ag47,EA053,Males alone,EA053-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +67418,Ag48,EA053,?,EA053-NA,,,,,, +67419,Ag49,EA053,?,EA053-NA,,,,,, +67420,Ag5,EA053,Males alone,EA053-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +67421,Ag50,EA053,?,EA053-NA,,,,,, +67422,Ag51,EA053,?,EA053-NA,,,,,, +67423,Ag52,EA053,?,EA053-NA,,,,,, +67424,Ag53,EA053,?,EA053-NA,,,,,, +67425,Ag54,EA053,Males alone,EA053-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +67426,Ag6,EA053,Differentiated but equal,EA053-3,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +67427,Ag7,EA053,Activity is absent,EA053-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p72, +67428,Ag8,EA053,Equal participation,EA053-4,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +67429,Ag9,EA053,Males alone,EA053-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +67430,Ah1,EA053,Equal participation,EA053-4,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67431,Ah10,EA053,?,EA053-NA,,,,,, +67432,Ah11,EA053,Equal participation,EA053-4,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +67433,Ah12,EA053,?,EA053-NA,,,,,, +67434,Ah13,EA053,?,EA053-NA,,,,,, +67435,Ah14,EA053,?,EA053-NA,,,,,, +67436,Ah15,EA053,?,EA053-NA,,,,,, +67437,Ah16,EA053,?,EA053-NA,,,,,, +67438,Ah17,EA053,?,EA053-NA,,,,,, +67439,Ah18,EA053,?,EA053-NA,,,,,, +67440,Ah19,EA053,Males alone,EA053-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p76, +67441,Ah2,EA053,Equal participation,EA053-4,,meek1931a,,1920,EthnographicAtlas_1967_p76, +67442,Ah20,EA053,Equal participation,EA053-4,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +67443,Ah21,EA053,?,EA053-NA,,,,,, +67444,Ah22,EA053,?,EA053-NA,,,,,, +67445,Ah23,EA053,?,EA053-NA,,,,,, +67446,Ah24,EA053,?,EA053-NA,,,,,, +67447,Ah25,EA053,?,EA053-NA,,,,,, +67448,Ah26,EA053,?,EA053-NA,,,,,, +67449,Ah27,EA053,?,EA053-NA,,,,,, +67450,Ah28,EA053,?,EA053-NA,,,,,, +67451,Ah29,EA053,?,EA053-NA,,,,,, +67452,Ah3,EA053,?,EA053-NA,,,,,, +67453,Ah30,EA053,Males alone,EA053-1,,meek1931b,,1920,EthnographicAtlas_1967_p76, +67454,Ah31,EA053,?,EA053-NA,,,,,, +67455,Ah32,EA053,?,EA053-NA,,,,,, +67456,Ah33,EA053,?,EA053-NA,,,,,, +67457,Ah34,EA053,?,EA053-NA,,,,,, +67458,Ah35,EA053,?,EA053-NA,,,,,, +67459,Ah36,EA053,?,EA053-NA,,,,,, +67460,Ah37,EA053,?,EA053-NA,,,,,, +67461,Ah38,EA053,?,EA053-NA,,,,,, +67462,Ah39,EA053,Males alone,EA053-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +67463,Ah4,EA053,?,EA053-NA,,,,,, +67464,Ah5,EA053,?,EA053-NA,,,,,, +67465,Ah6,EA053,?,EA053-NA,,,,,, +67466,Ah7,EA053,?,EA053-NA,,,,,, +67467,Ah8,EA053,Equal participation,EA053-4,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +67468,Ah9,EA053,Males alone,EA053-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +67469,Ai1,EA053,?,EA053-NA,,,,,, +67470,Ai10,EA053,"Both, males more",EA053-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +67471,Ai11,EA053,?,EA053-NA,,,,,, +67472,Ai12,EA053,Equal participation,EA053-4,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p76, +67473,Ai13,EA053,?,EA053-NA,,,,,, +67474,Ai14,EA053,?,EA053-NA,,,,,, +67475,Ai15,EA053,?,EA053-NA,,,,,, +67476,Ai16,EA053,?,EA053-NA,,,,,, +67477,Ai17,EA053,Equal participation,EA053-4,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +67478,Ai18,EA053,?,EA053-NA,,,,,, +67479,Ai19,EA053,?,EA053-NA,,,,,, +67480,Ai2,EA053,?,EA053-NA,,,,,, +67481,Ai20,EA053,?,EA053-NA,,,,,, +67482,Ai21,EA053,?,EA053-NA,,,,,, +67483,Ai22,EA053,?,EA053-NA,,,,,, +67484,Ai23,EA053,?,EA053-NA,,,,,, +67485,Ai24,EA053,?,EA053-NA,,,,,, +67486,Ai25,EA053,?,EA053-NA,,,,,, +67487,Ai26,EA053,?,EA053-NA,,,,,, +67488,Ai27,EA053,?,EA053-NA,,,,,, +67489,Ai28,EA053,?,EA053-NA,,,,,, +67490,Ai29,EA053,Males alone,EA053-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +67491,Ai3,EA053,Activity is absent,EA053-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +67492,Ai30,EA053,?,EA053-NA,,,,,, +67493,Ai31,EA053,Males alone,EA053-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +67494,Ai32,EA053,Males alone,EA053-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p76, +67495,Ai33,EA053,Males alone,EA053-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p76, +67496,Ai34,EA053,Males alone,EA053-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +67497,Ai35,EA053,?,EA053-NA,,,,,, +67498,Ai36,EA053,Males alone,EA053-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +67499,Ai37,EA053,?,EA053-NA,,,,,, +67500,Ai38,EA053,"Both, males more",EA053-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +67501,Ai39,EA053,"Both, males more",EA053-2,,nadel1947,,1940,EthnographicAtlas_1967_p76, +67502,Ai4,EA053,?,EA053-NA,,,,,, +67503,Ai40,EA053,"Both, males more",EA053-2,,nadel1947,,1940,EthnographicAtlas_1967_p76, +67504,Ai41,EA053,"Both, males more",EA053-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +67505,Ai42,EA053,"Both, males more",EA053-2,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +67506,Ai43,EA053,"Both, males more",EA053-2,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +67507,Ai44,EA053,?,EA053-NA,,,,,, +67508,Ai45,EA053,?,EA053-NA,,,,,, +67509,Ai46,EA053,?,EA053-NA,,,,,, +67510,Ai47,EA053,?,EA053-NA,,,,,, +67511,Ai5,EA053,?,EA053-NA,,,,,, +67512,Ai6,EA053,Males alone,EA053-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +67513,Ai7,EA053,Females alone,EA053-6,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +67514,Ai8,EA053,"Both, males more",EA053-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +67515,Ai9,EA053,Males alone,EA053-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +67516,Aj1,EA053,Males alone,EA053-1,,lawrance1957,,1950,EthnographicAtlas_1967_p76, +67517,Aj10,EA053,?,EA053-NA,,,,,, +67518,Aj11,EA053,"Both, males more",EA053-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p80, +67519,Aj12,EA053,"Both, males more",EA053-2,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +67520,Aj13,EA053,Males alone,EA053-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +67521,Aj14,EA053,?,EA053-NA,,,,,, +67522,Aj15,EA053,Males alone,EA053-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +67523,Aj16,EA053,"Both, males more",EA053-2,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +67524,Aj17,EA053,Males alone,EA053-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +67525,Aj18,EA053,Differentiated but equal,EA053-3,,jensen1959,,1950,EthnographicAtlas_1967_p80, +67526,Aj19,EA053,Males alone,EA053-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p80, +67527,Aj2,EA053,Differentiated but equal,EA053-3,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +67528,Aj20,EA053,Males alone,EA053-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p80, +67529,Aj21,EA053,"Both, males more",EA053-2,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +67530,Aj22,EA053,Males alone,EA053-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +67531,Aj23,EA053,Differentiated but equal,EA053-3,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +67532,Aj24,EA053,"Both, males more",EA053-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +67533,Aj25,EA053,"Both, males more",EA053-2,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +67534,Aj26,EA053,Differentiated but equal,EA053-3,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +67535,Aj27,EA053,?,EA053-NA,,,,,, +67536,Aj28,EA053,"Both, males more",EA053-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +67537,Aj29,EA053,?,EA053-NA,,,,,, +67538,Aj3,EA053,"Both, males more",EA053-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +67539,Aj30,EA053,?,EA053-NA,,,,,, +67540,Aj31,EA053,?,EA053-NA,,,,,, +67541,Aj4,EA053,Males alone,EA053-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +67542,Aj5,EA053,Differentiated but equal,EA053-3,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +67543,Aj6,EA053,Males alone,EA053-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +67544,Aj7,EA053,Differentiated but equal,EA053-3,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +67545,Aj8,EA053,"Both, males more",EA053-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +67546,Aj9,EA053,Differentiated but equal,EA053-3,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +67547,Ca1,EA053,Males alone,EA053-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +67548,Ca10,EA053,"Both, males more",EA053-2,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +67549,Ca11,EA053,Differentiated but equal,EA053-3,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +67550,Ca12,EA053,"Both, males more",EA053-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +67551,Ca13,EA053,"Both, males more",EA053-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +67552,Ca14,EA053,Differentiated but equal,EA053-3,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +67553,Ca15,EA053,Differentiated but equal,EA053-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +67554,Ca16,EA053,Differentiated but equal,EA053-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +67555,Ca17,EA053,"Both, males more",EA053-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +67556,Ca18,EA053,?,EA053-NA,,,,,, +67557,Ca19,EA053,Males alone,EA053-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +67558,Ca2,EA053,Differentiated but equal,EA053-3,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +67559,Ca20,EA053,?,EA053-NA,,,,,, +67560,Ca21,EA053,Males alone,EA053-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +67561,Ca22,EA053,Males alone,EA053-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +67562,Ca23,EA053,Males alone,EA053-1,,jensen1959,,1950,EthnographicAtlas_1967_p80, +67563,Ca24,EA053,?,EA053-NA,,,,,, +67564,Ca25,EA053,Equal participation,EA053-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +67565,Ca26,EA053,?,EA053-NA,,,,,, +67566,Ca27,EA053,?,EA053-NA,,,,,, +67567,Ca28,EA053,Males alone,EA053-1,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +67568,Ca29,EA053,?,EA053-NA,,,,,, +67569,Ca3,EA053,"Both, males more",EA053-2,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p80, +67570,Ca30,EA053,"Both, males more",EA053-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +67571,Ca31,EA053,Males alone,EA053-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +67572,Ca32,EA053,Males alone,EA053-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +67573,Ca33,EA053,"Both, males more",EA053-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +67574,Ca34,EA053,?,EA053-NA,,,,,, +67575,Ca35,EA053,?,EA053-NA,,,,,, +67576,Ca36,EA053,?,EA053-NA,,,,,, +67577,Ca37,EA053,?,EA053-NA,,,,,, +67578,Ca38,EA053,?,EA053-NA,,,,,, +67579,Ca39,EA053,Differentiated but equal,EA053-3,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +67580,Ca4,EA053,Males alone,EA053-1,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +67581,Ca40,EA053,Differentiated but equal,EA053-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +67582,Ca41,EA053,?,EA053-NA,,,,,, +67583,Ca42,EA053,Males alone,EA053-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +67584,Ca43,EA053,?,EA053-NA,,,,,, +67585,Ca5,EA053,Males alone,EA053-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p80, +67586,Ca6,EA053,Differentiated but equal,EA053-3,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p80, +67587,Ca7,EA053,Differentiated but equal,EA053-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +67588,Ca8,EA053,?,EA053-NA,,,,,, +67589,Ca9,EA053,?,EA053-NA,,,,,, +67590,Cb1,EA053,?,EA053-NA,,,,,, +67591,Cb10,EA053,?,EA053-NA,,,,,, +67592,Cb11,EA053,?,EA053-NA,,,,,, +67593,Cb12,EA053,?,EA053-NA,,,,,, +67594,Cb13,EA053,?,EA053-NA,,,,,, +67595,Cb14,EA053,?,EA053-NA,,,,,, +67596,Cb15,EA053,?,EA053-NA,,,,,, +67597,Cb16,EA053,?,EA053-NA,,,,,, +67598,Cb17,EA053,Differentiated but equal,EA053-3,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +67599,Cb18,EA053,?,EA053-NA,,,,,, +67600,Cb19,EA053,Differentiated but equal,EA053-3,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p80, +67601,Cb2,EA053,Males alone,EA053-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +67602,Cb20,EA053,Males alone,EA053-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +67603,Cb21,EA053,Differentiated but equal,EA053-3,,pfeffer1936,,1930,EthnographicAtlas_1967_p84, +67604,Cb22,EA053,?,EA053-NA,,,,,, +67605,Cb23,EA053,Males alone,EA053-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +67606,Cb24,EA053,"Both, males more",EA053-2,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p84, +67607,Cb25,EA053,?,EA053-NA,,,,,, +67608,Cb26,EA053,"Both, males more",EA053-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +67609,Cb27,EA053,?,EA053-NA,,,,,, +67610,Cb28,EA053,?,EA053-NA,,,,,, +67611,Cb29,EA053,?,EA053-NA,,,,,, +67612,Cb3,EA053,?,EA053-NA,,,,,, +67613,Cb4,EA053,"Both, males more",EA053-2,,reid1930,,1920,EthnographicAtlas_1967_p80, +67614,Cb5,EA053,?,EA053-NA,,,,,, +67615,Cb6,EA053,?,EA053-NA,,,,,, +67616,Cb7,EA053,?,EA053-NA,,,,,, +67617,Cb8,EA053,"Both, males more",EA053-2,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p80, +67618,Cb9,EA053,Differentiated but equal,EA053-3,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +67619,Cc1,EA053,"Both, males more",EA053-2,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +67620,Cc10,EA053,Differentiated but equal,EA053-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +67621,Cc11,EA053,?,EA053-NA,,,,,, +67622,Cc12,EA053,Males alone,EA053-1,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +67623,Cc13,EA053,?,EA053-NA,,,,,, +67624,Cc14,EA053,Differentiated but equal,EA053-3,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +67625,Cc15,EA053,?,EA053-NA,,,,,, +67626,Cc16,EA053,Males alone,EA053-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +67627,Cc17,EA053,"Both, males more",EA053-2,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +67628,Cc18,EA053,?,EA053-NA,,,,,, +67629,Cc19,EA053,?,EA053-NA,,,,,, +67630,Cc2,EA053,Differentiated but equal,EA053-3,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +67631,Cc20,EA053,Males alone,EA053-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +67632,Cc3,EA053,Males alone,EA053-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +67633,Cc4,EA053,"Both, males more",EA053-2,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +67634,Cc5,EA053,Males alone,EA053-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +67635,Cc6,EA053,?,EA053-NA,,,,,, +67636,Cc7,EA053,?,EA053-NA,,,,,, +67637,Cc8,EA053,?,EA053-NA,,,,,, +67638,Cc9,EA053,Differentiated but equal,EA053-3,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +67639,Cd1,EA053,Equal participation,EA053-4,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +67640,Cd10,EA053,?,EA053-NA,,,,,, +67641,Cd11,EA053,?,EA053-NA,,,,,, +67642,Cd12,EA053,Differentiated but equal,EA053-3,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +67643,Cd13,EA053,?,EA053-NA,,,,,, +67644,Cd14,EA053,?,EA053-NA,,,,,, +67645,Cd15,EA053,?,EA053-NA,,,,,, +67646,Cd16,EA053,?,EA053-NA,,,,,, +67647,Cd17,EA053,?,EA053-NA,,,,,, +67648,Cd18,EA053,?,EA053-NA,,,,,, +67649,Cd19,EA053,?,EA053-NA,,,,,, +67650,Cd2,EA053,"Both, males more",EA053-2,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +67651,Cd20,EA053,?,EA053-NA,,,,,, +67652,Cd21,EA053,?,EA053-NA,,,,,, +67653,Cd3,EA053,Differentiated but equal,EA053-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +67654,Cd4,EA053,?,EA053-NA,,,,,, +67655,Cd5,EA053,Males alone,EA053-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +67656,Cd6,EA053,Males alone,EA053-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +67657,Cd7,EA053,?,EA053-NA,,,,,, +67658,Cd8,EA053,?,EA053-NA,,,,,, +67659,Cd9,EA053,?,EA053-NA,,,,,, +67660,Ce1,EA053,"Both, males more",EA053-2,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +67661,Ce2,EA053,?,EA053-NA,,,,,, +67662,Ce3,EA053,?,EA053-NA,,,,,, +67663,Ce4,EA053,Males alone,EA053-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67664,Ce5,EA053,Differentiated but equal,EA053-3,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +67665,Ce6,EA053,Males alone,EA053-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +67666,Ce7,EA053,Males alone,EA053-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +67667,Ce8,EA053,"Both, males more",EA053-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +67668,Cf1,EA053,Males alone,EA053-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +67669,Cf2,EA053,?,EA053-NA,,,,,, +67670,Cf3,EA053,Differentiated but equal,EA053-3,,munch1945,,1930,EthnographicAtlas_1967_p84, +67671,Cf4,EA053,"Both, males more",EA053-2,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +67672,Cf5,EA053,Differentiated but equal,EA053-3,,miner1939,,1930,EthnographicAtlas_1967_p84, +67673,Cg1,EA053,"Both, males more",EA053-2,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +67674,Cg2,EA053,Males alone,EA053-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +67675,Cg3,EA053,"Both, males more",EA053-2,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +67676,Cg4,EA053,Equal participation,EA053-4,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +67677,Cg5,EA053,?,EA053-NA,,,,,, +67678,Ch1,EA053,"Both, females more",EA053-5,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +67679,Ch10,EA053,?,EA053-NA,,,,,, +67680,Ch11,EA053,"Both, males more",EA053-2,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +67681,Ch2,EA053,Differentiated but equal,EA053-3,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +67682,Ch3,EA053,Females alone,EA053-6,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +67683,Ch4,EA053,?,EA053-NA,,,,,, +67684,Ch5,EA053,Equal participation,EA053-4,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +67685,Ch6,EA053,Equal participation,EA053-4,,ember1954,,1910,EthnographicAtlas_1967_p84, +67686,Ch7,EA053,"Both, females more",EA053-5,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +67687,Ch8,EA053,?,EA053-NA,,,,,, +67688,Ch9,EA053,"Both, females more",EA053-5,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +67689,Ci1,EA053,"Both, males more",EA053-2,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +67690,Ci10,EA053,Females alone,EA053-6,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +67691,Ci11,EA053,"Both, males more",EA053-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +67692,Ci12,EA053,Males alone,EA053-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +67693,Ci2,EA053,"Both, males more",EA053-2,,grigolia1939,,1930,EthnographicAtlas_1967_p84, +67694,Ci3,EA053,?,EA053-NA,,,,,, +67695,Ci4,EA053,Males alone,EA053-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +67696,Ci5,EA053,Males alone,EA053-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +67697,Ci6,EA053,?,EA053-NA,,,,,, +67698,Ci7,EA053,?,EA053-NA,,,,,, +67699,Ci8,EA053,?,EA053-NA,,,,,, +67700,Ci9,EA053,?,EA053-NA,,,,,, +67701,Cj1,EA053,"Both, males more",EA053-2,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +67702,Cj10,EA053,"Both, females more",EA053-5,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +67703,Cj2,EA053,Males alone,EA053-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +67704,Cj3,EA053,"Both, males more",EA053-2,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +67705,Cj4,EA053,Males alone,EA053-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +67706,Cj5,EA053,Males alone,EA053-1,,dickson1949,,1930,EthnographicAtlas_1967_p88, +67707,Cj6,EA053,?,EA053-NA,,,,,, +67708,Cj7,EA053,?,EA053-NA,,,,,, +67709,Cj8,EA053,"Both, males more",EA053-2,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +67710,Cj9,EA053,Differentiated but equal,EA053-3,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +67711,Ea1,EA053,Males alone,EA053-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +67712,Ea10,EA053,Differentiated but equal,EA053-3,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +67713,Ea11,EA053,"Both, males more",EA053-2,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +67714,Ea12,EA053,Males alone,EA053-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +67715,Ea13,EA053,"Both, males more",EA053-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +67716,Ea2,EA053,"Both, males more",EA053-2,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +67717,Ea3,EA053,"Both, males more",EA053-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +67718,Ea4,EA053,Differentiated but equal,EA053-3,,barth1956b,,1950,EthnographicAtlas_1967_p88, +67719,Ea5,EA053,Males alone,EA053-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +67720,Ea6,EA053,"Both, males more",EA053-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +67721,Ea7,EA053,"Both, males more",EA053-2,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +67722,Ea8,EA053,"Both, males more",EA053-2,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +67723,Ea9,EA053,Differentiated but equal,EA053-3,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +67724,Eb1,EA053,"Both, males more",EA053-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +67725,Eb2,EA053,Differentiated but equal,EA053-3,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +67726,Eb3,EA053,Differentiated but equal,EA053-3,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +67727,Eb4,EA053,?,EA053-NA,,,,,, +67728,Eb5,EA053,?,EA053-NA,,,,,, +67729,Eb6,EA053,?,EA053-NA,,,,,, +67730,Eb7,EA053,Differentiated but equal,EA053-3,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +67731,Eb8,EA053,?,EA053-NA,,,,,, +67732,Ec1,EA053,Activity is absent,EA053-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +67733,Ec10,EA053,Males alone,EA053-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +67734,Ec11,EA053,Males alone,EA053-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +67735,Ec2,EA053,"Both, males more",EA053-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67736,Ec3,EA053,"Both, males more",EA053-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +67737,Ec4,EA053,Males alone,EA053-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +67738,Ec5,EA053,Males alone,EA053-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +67739,Ec6,EA053,Activity is absent,EA053-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p88, +67740,Ec7,EA053,Activity is absent,EA053-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +67741,Ec8,EA053,Males alone,EA053-1,,shimkin1939,,1900,EthnographicAtlas_1967_p88, +67742,Ec9,EA053,?,EA053-NA,,,,,, +67743,Ed1,EA053,Males alone,EA053-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +67744,Ed10,EA053,Males alone,EA053-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +67745,Ed13,EA053,?,EA053-NA,,,,,, +67746,Ed14,EA053,?,EA053-NA,,,,,, +67747,Ed15a,EA053,?,EA053-NA,,,,,, +67748,Ed15b,EA053,"Activity present, sex diff. unspecified",EA053-8,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +67749,Ed16,EA053,?,EA053-NA,,,,,, +67750,Ed2,EA053,Equal participation,EA053-4,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +67751,Ed3,EA053,"Both, males more",EA053-2,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +67752,Ed4,EA053,Females alone,EA053-6,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +67753,Ed5,EA053,Males alone,EA053-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67754,Ed6,EA053,"Both, females more",EA053-5,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +67755,Ed7,EA053,Differentiated but equal,EA053-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +67756,Ed8,EA053,?,EA053-NA,,,,,, +67757,Ed9,EA053,Differentiated but equal,EA053-3,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +67758,Ee1,EA053,"Both, males more",EA053-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +67759,Ee2,EA053,Males alone,EA053-1,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +67760,Ee3,EA053,Equal participation,EA053-4,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +67761,Ee4,EA053,Differentiated but equal,EA053-3,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +67762,Ee5,EA053,"Both, males more",EA053-2,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +67763,Ee6,EA053,"Both, males more",EA053-2,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +67764,Ee7,EA053,?,EA053-NA,,,,,, +67765,Ee8,EA053,Differentiated but equal,EA053-3,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +67766,Ef1,EA053,"Both, males more",EA053-2,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +67767,Ef10,EA053,?,EA053-NA,,,,,, +67768,Ef11,EA053,Males alone,EA053-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +67769,Ef2,EA053,"Both, males more",EA053-2,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +67770,Ef3,EA053,?,EA053-NA,,,,,, +67771,Ef4,EA053,?,EA053-NA,,,,,, +67772,Ef5,EA053,"Both, males more",EA053-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +67773,Ef6,EA053,"Both, males more",EA053-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +67774,Ef7,EA053,"Both, females more",EA053-5,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +67775,Ef8,EA053,Males alone,EA053-1,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +67776,Ef9,EA053,Differentiated but equal,EA053-3,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67777,Eg1,EA053,"Both, males more",EA053-2,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67778,Eg10,EA053,Differentiated but equal,EA053-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +67779,Eg11,EA053,?,EA053-NA,,,,,, +67780,Eg12,EA053,?,EA053-NA,,,,,, +67781,Eg13,EA053,Differentiated but equal,EA053-3,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67782,Eg14,EA053,?,EA053-NA,,,,,, +67783,Eg2,EA053,Males alone,EA053-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +67784,Eg3,EA053,"Both, males more",EA053-2,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +67785,Eg4,EA053,Males alone,EA053-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +67786,Eg5,EA053,?,EA053-NA,,,,,, +67787,Eg6,EA053,"Both, males more",EA053-2,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +67788,Eg7,EA053,Males alone,EA053-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +67789,Eg8,EA053,"Both, males more",EA053-2,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +67790,Eg9,EA053,Activity is absent,EA053-9,,elwin1939,,1930,EthnographicAtlas_1967_p92, +67791,Eh1,EA053,Activity is absent,EA053-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +67792,Eh10,EA053,?,EA053-NA,,,,,, +67793,Eh2,EA053,Males alone,EA053-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +67794,Eh3,EA053,Males alone,EA053-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +67795,Eh4,EA053,Activity is absent,EA053-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67796,Eh5,EA053,Females alone,EA053-6,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +67797,Eh6,EA053,?,EA053-NA,,,,,, +67798,Eh7,EA053,Males alone,EA053-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +67799,Eh8,EA053,Males alone,EA053-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +67800,Eh9,EA053,Males alone,EA053-1,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +67801,Ei1,EA053,Differentiated but equal,EA053-3,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67802,Ei10,EA053,"Both, males more",EA053-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +67803,Ei11,EA053,?,EA053-NA,,,,,, +67804,Ei12,EA053,?,EA053-NA,,,,,, +67805,Ei13,EA053,?,EA053-NA,,,,,, +67806,Ei14,EA053,?,EA053-NA,,,,,, +67807,Ei15,EA053,?,EA053-NA,,,,,, +67808,Ei16,EA053,?,EA053-NA,,,,,, +67809,Ei17,EA053,?,EA053-NA,,,,,, +67810,Ei18,EA053,"Both, males more",EA053-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +67811,Ei19,EA053,?,EA053-NA,,,,,, +67812,Ei2,EA053,Males alone,EA053-1,,mills1922,,1920,EthnographicAtlas_1967_p92, +67813,Ei20,EA053,?,EA053-NA,,,,,, +67814,Ei3,EA053,Males alone,EA053-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +67815,Ei4,EA053,Differentiated but equal,EA053-3,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +67816,Ei5,EA053,"Both, females more",EA053-5,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +67817,Ei6,EA053,Differentiated but equal,EA053-3,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +67818,Ei7,EA053,?,EA053-NA,,,,,, +67819,Ei8,EA053,"Both, males more",EA053-2,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +67820,Ei9,EA053,"Both, males more",EA053-2,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +67821,Ej1,EA053,Differentiated but equal,EA053-3,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +67822,Ej10,EA053,Equal participation,EA053-4,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +67823,Ej11,EA053,?,EA053-NA,,,,,, +67824,Ej12,EA053,"Both, males more",EA053-2,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +67825,Ej13,EA053,?,EA053-NA,,,,,, +67826,Ej14,EA053,Activity is absent,EA053-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67827,Ej15,EA053,Differentiated but equal,EA053-3,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +67828,Ej16,EA053,Equal participation,EA053-4,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +67829,Ej2,EA053,Equal participation,EA053-4,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +67830,Ej3,EA053,Activity is absent,EA053-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +67831,Ej4,EA053,?,EA053-NA,,,,,, +67832,Ej5,EA053,Females alone,EA053-6,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +67833,Ej6,EA053,Activity is absent,EA053-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +67834,Ej7,EA053,Equal participation,EA053-4,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +67835,Ej8,EA053,"Both, males more",EA053-2,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +67836,Ej9,EA053,Equal participation,EA053-4,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +67837,Ia1,EA053,Females alone,EA053-6,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +67838,Ia10,EA053,Females alone,EA053-6,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +67839,Ia11,EA053,"Both, males more",EA053-2,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +67840,Ia12,EA053,?,EA053-NA,,,,,, +67841,Ia13,EA053,?,EA053-NA,,,,,, +67842,Ia14,EA053,Females alone,EA053-6,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +67843,Ia15,EA053,?,EA053-NA,,,,,, +67844,Ia16,EA053,Equal participation,EA053-4,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +67845,Ia17,EA053,?,EA053-NA,,,,,, +67846,Ia18,EA053,?,EA053-NA,,,,,, +67847,Ia2,EA053,"Both, males more",EA053-2,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +67848,Ia3,EA053,?,EA053-NA,,,,,, +67849,Ia4,EA053,?,EA053-NA,,,,,, +67850,Ia5,EA053,"Both, males more",EA053-2,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +67851,Ia6,EA053,Females alone,EA053-6,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67852,Ia7,EA053,?,EA053-NA,,,,,, +67853,Ia8,EA053,?,EA053-NA,,,,,, +67854,Ia9,EA053,"Both, males more",EA053-2,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +67855,Ib1,EA053,"Both, males more",EA053-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67856,Ib2,EA053,"Both, males more",EA053-2,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67857,Ib3,EA053,Differentiated but equal,EA053-3,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +67858,Ib4,EA053,"Both, males more",EA053-2,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +67859,Ib5,EA053,Differentiated but equal,EA053-3,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +67860,Ib6,EA053,?,EA053-NA,,,,,, +67861,Ib7,EA053,?,EA053-NA,,,,,, +67862,Ib8,EA053,Activity is absent,EA053-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +67863,Ib9,EA053,?,EA053-NA,,,,,, +67864,Ic1,EA053,"Both, males more",EA053-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67865,Ic10,EA053,?,EA053-NA,,,,,, +67866,Ic11,EA053,?,EA053-NA,,,,,, +67867,Ic12,EA053,?,EA053-NA,,,,,, +67868,Ic13,EA053,?,EA053-NA,,,,,, +67869,Ic2,EA053,Males alone,EA053-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +67870,Ic3,EA053,"Both, males more",EA053-2,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +67871,Ic4,EA053,?,EA053-NA,,,,,, +67872,Ic5,EA053,?,EA053-NA,,,,,, +67873,Ic6,EA053,"Both, females more",EA053-5,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +67874,Ic7,EA053,Differentiated but equal,EA053-3,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +67875,Ic8,EA053,?,EA053-NA,,,,,, +67876,Ic9,EA053,?,EA053-NA,,,,,, +67877,Id1,EA053,Activity is absent,EA053-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +67878,Id10,EA053,Activity is absent,EA053-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +67879,Id11,EA053,Activity is absent,EA053-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +67880,Id12,EA053,Activity is absent,EA053-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +67881,Id13,EA053,Activity is absent,EA053-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +67882,Id2,EA053,Activity is absent,EA053-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +67883,Id3,EA053,Activity is absent,EA053-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +67884,Id4,EA053,Activity is absent,EA053-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +67885,Id5,EA053,Activity is absent,EA053-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +67886,Id6,EA053,Activity is absent,EA053-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +67887,Id7,EA053,Activity is absent,EA053-9,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +67888,Id8,EA053,Activity is absent,EA053-9,,roth1890,,1830,EthnographicAtlas_1967_p96, +67889,Id9,EA053,Activity is absent,EA053-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +67890,Ie1,EA053,Females alone,EA053-6,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67891,Ie10,EA053,Equal participation,EA053-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +67892,Ie11,EA053,"Both, females more",EA053-5,,bowers1964,,1950,EthnographicAtlas_1967_p96, +67893,Ie12,EA053,Females alone,EA053-6,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67894,Ie13,EA053,Activity is absent,EA053-9,,landtman1927,,1920,EthnographicAtlas_1967_p96, +67895,Ie14,EA053,?,EA053-NA,,,,,, +67896,Ie15,EA053,Females alone,EA053-6,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67897,Ie16,EA053,Females alone,EA053-6,,williams194041,,1940,EthnographicAtlas_1967_p96, +67898,Ie17,EA053,Females alone,EA053-6,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +67899,Ie18,EA053,?,EA053-NA,,,,,, +67900,Ie19,EA053,Females alone,EA053-6,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +67901,Ie2,EA053,Females alone,EA053-6,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +67902,Ie20,EA053,?,EA053-NA,,,,,, +67903,Ie21,EA053,?,EA053-NA,,,,,, +67904,Ie22,EA053,?,EA053-NA,,,,,, +67905,Ie23,EA053,Females alone,EA053-6,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +67906,Ie24,EA053,?,EA053-NA,,,,,, +67907,Ie25,EA053,Females alone,EA053-6,,williamson1912,,1920,EthnographicAtlas_1967_p96, +67908,Ie26,EA053,?,EA053-NA,,,,,, +67909,Ie27,EA053,?,EA053-NA,,,,,, +67910,Ie28,EA053,?,EA053-NA,,,,,, +67911,Ie29,EA053,?,EA053-NA,,,,,, +67912,Ie3,EA053,Females alone,EA053-6,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67913,Ie30,EA053,Activity is absent,EA053-9,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +67914,Ie31,EA053,?,EA053-NA,,,,,, +67915,Ie32,EA053,Males alone,EA053-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +67916,Ie33,EA053,?,EA053-NA,,,,,, +67917,Ie34,EA053,?,EA053-NA,,,,,, +67918,Ie35,EA053,Activity is absent,EA053-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +67919,Ie36,EA053,?,EA053-NA,,,,,, +67920,Ie37,EA053,?,EA053-NA,,,,,, +67921,Ie38,EA053,Equal participation,EA053-4,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +67922,Ie39,EA053,Females alone,EA053-6,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +67923,Ie4,EA053,?,EA053-NA,,,,,, +67924,Ie5,EA053,Females alone,EA053-6,,williams1936,,1930,EthnographicAtlas_1967_p96, +67925,Ie6,EA053,Males alone,EA053-1,,held1947,,1930,EthnographicAtlas_1967_p96, +67926,Ie7,EA053,"Both, females more",EA053-5,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +67927,Ie8,EA053,Females alone,EA053-6,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +67928,Ie9,EA053,Equal participation,EA053-4,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +67929,If1,EA053,?,EA053-NA,,,,,, +67930,If10,EA053,?,EA053-NA,,,,,, +67931,If11,EA053,?,EA053-NA,,,,,, +67932,If12,EA053,?,EA053-NA,,,,,, +67933,If13,EA053,Activity is absent,EA053-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +67934,If14,EA053,Equal participation,EA053-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +67935,If15,EA053,?,EA053-NA,,,,,, +67936,If16,EA053,Females alone,EA053-6,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +67937,If17,EA053,Males alone,EA053-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +67938,If2,EA053,Females alone,EA053-6,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +67939,If3,EA053,?,EA053-NA,,,,,, +67940,If4,EA053,Females alone,EA053-6,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +67941,If5,EA053,?,EA053-NA,,,,,, +67942,If6,EA053,Females alone,EA053-6,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +67943,If7,EA053,Activity is absent,EA053-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +67944,If8,EA053,?,EA053-NA,,,,,, +67945,If9,EA053,?,EA053-NA,,,,,, +67946,Ig1,EA053,"Both, females more",EA053-5,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +67947,Ig10,EA053,"Both, females more",EA053-5,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +67948,Ig11,EA053,?,EA053-NA,,,,,, +67949,Ig12,EA053,?,EA053-NA,,,,,, +67950,Ig13,EA053,Activity is absent,EA053-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +67951,Ig14,EA053,?,EA053-NA,,,,,, +67952,Ig15,EA053,?,EA053-NA,,,,,, +67953,Ig16,EA053,?,EA053-NA,,,,,, +67954,Ig17,EA053,?,EA053-NA,,,,,, +67955,Ig18,EA053,?,EA053-NA,,,,,, +67956,Ig19,EA053,?,EA053-NA,,,,,, +67957,Ig2,EA053,Females alone,EA053-6,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +67958,Ig20,EA053,Equal participation,EA053-4,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +67959,Ig21,EA053,?,EA053-NA,,,,,, +67960,Ig3,EA053,Females alone,EA053-6,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +67961,Ig4,EA053,Females alone,EA053-6,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +67962,Ig5,EA053,?,EA053-NA,,,,,, +67963,Ig6,EA053,Females alone,EA053-6,,ivens1927,,1900,EthnographicAtlas_1967_p100, +67964,Ig7,EA053,Females alone,EA053-6,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +67965,Ig8,EA053,?,EA053-NA,,,,,, +67966,Ig9,EA053,"Both, females more",EA053-5,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +67967,Ih1,EA053,"Both, males more",EA053-2,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +67968,Ih10,EA053,?,EA053-NA,,,,,, +67969,Ih11,EA053,?,EA053-NA,,,,,, +67970,Ih12,EA053,?,EA053-NA,,,,,, +67971,Ih13,EA053,?,EA053-NA,,,,,, +67972,Ih14,EA053,"Activity present, sex diff. unspecified",EA053-8,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +67973,Ih2,EA053,"Both, males more",EA053-2,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67974,Ih3,EA053,Males alone,EA053-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p100, +67975,Ih4,EA053,Males alone,EA053-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67976,Ih5,EA053,?,EA053-NA,,,,,, +67977,Ih6,EA053,?,EA053-NA,,,,,, +67978,Ih7,EA053,?,EA053-NA,,,,,, +67979,Ih8,EA053,Equal participation,EA053-4,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +67980,Ih9,EA053,Equal participation,EA053-4,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67981,Ii1,EA053,Equal participation,EA053-4,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +67982,Ii10,EA053,?,EA053-NA,,,,,, +67983,Ii12,EA053,Males alone,EA053-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +67984,Ii13,EA053,Females alone,EA053-6,,burrows1937,,1830,EthnographicAtlas_1967_p100, +67985,Ii14,EA053,Equal participation,EA053-4,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +67986,Ii2,EA053,Activity is absent,EA053-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +67987,Ii3,EA053,Equal participation,EA053-4,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +67988,Ii4,EA053,?,EA053-NA,,,,,, +67989,Ii5,EA053,Activity is absent,EA053-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +67990,Ii6,EA053,Activity is absent,EA053-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +67991,Ii7,EA053,?,EA053-NA,,,,,, +67992,Ii8,EA053,Females alone,EA053-6,,burrows1936,,1840,EthnographicAtlas_1967_p100, +67993,Ii9,EA053,Activity is absent,EA053-9,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +67994,Ij1,EA053,Activity is absent,EA053-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +67995,Ij10,EA053,?,EA053-NA,,,,,, +67996,Ij2,EA053,Activity is absent,EA053-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +67997,Ij3,EA053,Females alone,EA053-6,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +67998,Ij4,EA053,Activity is absent,EA053-9,,buck1932a,,1850,EthnographicAtlas_1967_p104, +67999,Ij5,EA053,Activity is absent,EA053-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +68000,Ij6,EA053,?,EA053-NA,,,,,, +68001,Ij7,EA053,Activity is absent,EA053-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +68002,Ij8,EA053,?,EA053-NA,,,,,, +68003,Ij9,EA053,Activity is absent,EA053-9,,metraux1940,,1860,EthnographicAtlas_1967_p104, +68004,Na1,EA053,Activity is absent,EA053-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +68005,Na10,EA053,Activity is absent,EA053-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +68006,Na11,EA053,Males alone,EA053-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +68007,Na12,EA053,Females alone,EA053-6,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +68008,Na13,EA053,Activity is absent,EA053-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +68009,Na14,EA053,Activity is absent,EA053-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +68010,Na15,EA053,Activity is absent,EA053-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +68011,Na16,EA053,Activity is absent,EA053-9,,osgood1931,,1860,EthnographicAtlas_1967_p104, +68012,Na17,EA053,Activity is absent,EA053-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68013,Na19,EA053,Activity is absent,EA053-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +68014,Na2,EA053,Activity is absent,EA053-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +68015,Na20,EA053,Activity is absent,EA053-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +68016,Na21,EA053,Activity is absent,EA053-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +68017,Na22,EA053,Activity is absent,EA053-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +68018,Na23,EA053,Activity is absent,EA053-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +68019,Na24,EA053,Activity is absent,EA053-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +68020,Na25,EA053,Activity is absent,EA053-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +68021,Na26,EA053,Activity is absent,EA053-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +68022,Na27,EA053,Activity is absent,EA053-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +68023,Na28,EA053,Activity is absent,EA053-9,,jenness1937,,1880,EthnographicAtlas_1967_p104, +68024,Na29,EA053,Activity is absent,EA053-9,,goddard1916,,1850,EthnographicAtlas_1967_p104, +68025,Na3,EA053,Activity is absent,EA053-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +68026,Na30,EA053,Activity is absent,EA053-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +68027,Na31,EA053,Activity is absent,EA053-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +68028,Na32,EA053,Activity is absent,EA053-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +68029,Na33,EA053,Activity is absent,EA053-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +68030,Na34,EA053,Activity is absent,EA053-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +68031,Na35,EA053,Activity is absent,EA053-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +68032,Na36,EA053,Activity is absent,EA053-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +68033,Na37,EA053,Activity is absent,EA053-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +68034,Na38,EA053,Activity is absent,EA053-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +68035,Na39,EA053,Activity is absent,EA053-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +68036,Na4,EA053,Activity is absent,EA053-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +68037,Na40,EA053,Activity is absent,EA053-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +68038,Na41,EA053,Activity is absent,EA053-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +68039,Na42,EA053,Activity is absent,EA053-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +68040,Na43,EA053,Activity is absent,EA053-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +68041,Na44,EA053,?,EA053-NA,,,,,, +68042,Na45,EA053,Activity is absent,EA053-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +68043,Na5,EA053,Activity is absent,EA053-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +68044,Na6,EA053,Activity is absent,EA053-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +68045,Na7,EA053,Activity is absent,EA053-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +68046,Na8,EA053,Activity is absent,EA053-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +68047,Na9,EA053,Activity is absent,EA053-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68048,Nb1,EA053,Activity is absent,EA053-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +68049,Nb10,EA053,Activity is absent,EA053-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +68050,Nb11,EA053,Activity is absent,EA053-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +68051,Nb12,EA053,Activity is absent,EA053-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +68052,Nb13,EA053,Activity is absent,EA053-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +68053,Nb14,EA053,Activity is absent,EA053-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +68054,Nb15,EA053,Activity is absent,EA053-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +68055,Nb16,EA053,Activity is absent,EA053-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +68056,Nb17,EA053,Activity is absent,EA053-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +68057,Nb18,EA053,Activity is absent,EA053-9,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +68058,Nb19,EA053,Activity is absent,EA053-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +68059,Nb2,EA053,Activity is absent,EA053-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +68060,Nb20,EA053,Activity is absent,EA053-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +68061,Nb21,EA053,Activity is absent,EA053-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +68062,Nb22,EA053,Activity is absent,EA053-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +68063,Nb23,EA053,Activity is absent,EA053-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +68064,Nb24,EA053,Activity is absent,EA053-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +68065,Nb25,EA053,Activity is absent,EA053-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +68066,Nb26,EA053,Activity is absent,EA053-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +68067,Nb27,EA053,Activity is absent,EA053-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +68068,Nb28,EA053,Activity is absent,EA053-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +68069,Nb29,EA053,Activity is absent,EA053-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +68070,Nb3,EA053,Activity is absent,EA053-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +68071,Nb30,EA053,Activity is absent,EA053-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +68072,Nb31,EA053,Activity is absent,EA053-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +68073,Nb32,EA053,Activity is absent,EA053-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +68074,Nb33,EA053,Activity is absent,EA053-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +68075,Nb34,EA053,Activity is absent,EA053-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +68076,Nb35,EA053,Activity is absent,EA053-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +68077,Nb36,EA053,Activity is absent,EA053-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +68078,Nb37,EA053,Activity is absent,EA053-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +68079,Nb38,EA053,Activity is absent,EA053-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +68080,Nb39,EA053,Activity is absent,EA053-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +68081,Nb4,EA053,Activity is absent,EA053-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +68082,Nb5,EA053,Activity is absent,EA053-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +68083,Nb6,EA053,Activity is absent,EA053-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +68084,Nb7,EA053,Activity is absent,EA053-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +68085,Nb8,EA053,Activity is absent,EA053-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +68086,Nb9,EA053,Activity is absent,EA053-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +68087,Nc1,EA053,Activity is absent,EA053-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +68088,Nc10,EA053,Activity is absent,EA053-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +68089,Nc11,EA053,Activity is absent,EA053-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +68090,Nc12,EA053,Activity is absent,EA053-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +68091,Nc13,EA053,Activity is absent,EA053-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +68092,Nc14,EA053,Activity is absent,EA053-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +68093,Nc15,EA053,Activity is absent,EA053-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +68094,Nc16,EA053,Activity is absent,EA053-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +68095,Nc17,EA053,Activity is absent,EA053-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +68096,Nc18,EA053,Activity is absent,EA053-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +68097,Nc19,EA053,Activity is absent,EA053-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +68098,Nc2,EA053,Activity is absent,EA053-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +68099,Nc20,EA053,Activity is absent,EA053-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +68100,Nc21,EA053,Activity is absent,EA053-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +68101,Nc22,EA053,Activity is absent,EA053-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +68102,Nc23,EA053,Activity is absent,EA053-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +68103,Nc24,EA053,Activity is absent,EA053-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +68104,Nc25,EA053,Activity is absent,EA053-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +68105,Nc26,EA053,Activity is absent,EA053-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +68106,Nc27,EA053,Activity is absent,EA053-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +68107,Nc28,EA053,Activity is absent,EA053-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +68108,Nc29,EA053,Activity is absent,EA053-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +68109,Nc3,EA053,Activity is absent,EA053-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +68110,Nc30,EA053,Activity is absent,EA053-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +68111,Nc31,EA053,Activity is absent,EA053-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +68112,Nc32,EA053,Activity is absent,EA053-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +68113,Nc33,EA053,Activity is absent,EA053-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +68114,Nc34,EA053,Activity is absent,EA053-9,,meigs1939,,1880,EthnographicAtlas_1967_p108, +68115,Nc4,EA053,Activity is absent,EA053-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +68116,Nc5,EA053,Activity is absent,EA053-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +68117,Nc6,EA053,Activity is absent,EA053-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +68118,Nc7,EA053,Activity is absent,EA053-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +68119,Nc8,EA053,Activity is absent,EA053-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +68120,Nc9,EA053,Activity is absent,EA053-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +68121,Nd1,EA053,Activity is absent,EA053-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +68122,Nd10,EA053,Activity is absent,EA053-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +68123,Nd11,EA053,Activity is absent,EA053-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +68124,Nd12,EA053,Males alone,EA053-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +68125,Nd13,EA053,"Both, males more",EA053-2,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +68126,Nd14,EA053,?,EA053-NA,,,,,, +68127,Nd15,EA053,Activity is absent,EA053-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +68128,Nd16,EA053,?,EA053-NA,,,,,, +68129,Nd17,EA053,Activity is absent,EA053-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +68130,Nd18,EA053,Activity is absent,EA053-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +68131,Nd19,EA053,?,EA053-NA,,,,,, +68132,Nd2,EA053,Males alone,EA053-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +68133,Nd20,EA053,Males alone,EA053-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +68134,Nd21,EA053,Activity is absent,EA053-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +68135,Nd22,EA053,Activity is absent,EA053-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +68136,Nd23,EA053,Activity is absent,EA053-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +68137,Nd24,EA053,Activity is absent,EA053-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +68138,Nd25,EA053,Activity is absent,EA053-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +68139,Nd26,EA053,Activity is absent,EA053-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +68140,Nd27,EA053,Activity is absent,EA053-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +68141,Nd28,EA053,Activity is absent,EA053-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +68142,Nd29,EA053,Activity is absent,EA053-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +68143,Nd3,EA053,Activity is absent,EA053-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +68144,Nd30,EA053,Activity is absent,EA053-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +68145,Nd31,EA053,Activity is absent,EA053-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +68146,Nd32,EA053,Activity is absent,EA053-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +68147,Nd33,EA053,Activity is absent,EA053-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +68148,Nd34,EA053,Activity is absent,EA053-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +68149,Nd35,EA053,Activity is absent,EA053-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +68150,Nd36,EA053,Activity is absent,EA053-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +68151,Nd37,EA053,Activity is absent,EA053-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +68152,Nd38,EA053,Activity is absent,EA053-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +68153,Nd39,EA053,Activity is absent,EA053-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +68154,Nd4,EA053,Activity is absent,EA053-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +68155,Nd40,EA053,Activity is absent,EA053-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +68156,Nd41,EA053,Activity is absent,EA053-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +68157,Nd42,EA053,Activity is absent,EA053-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +68158,Nd43,EA053,Activity is absent,EA053-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +68159,Nd44,EA053,Activity is absent,EA053-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +68160,Nd45,EA053,Males alone,EA053-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +68161,Nd46,EA053,Activity is absent,EA053-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +68162,Nd47,EA053,Activity is absent,EA053-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +68163,Nd48,EA053,Activity is absent,EA053-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +68164,Nd49,EA053,Activity is absent,EA053-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +68165,Nd5,EA053,Activity is absent,EA053-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +68166,Nd50,EA053,Activity is absent,EA053-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +68167,Nd51,EA053,Activity is absent,EA053-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +68168,Nd52,EA053,Activity is absent,EA053-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +68169,Nd53,EA053,Activity is absent,EA053-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +68170,Nd54,EA053,Activity is absent,EA053-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68171,Nd55,EA053,Activity is absent,EA053-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +68172,Nd56,EA053,"Activity present, sex diff. unspecified",EA053-8,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +68173,Nd57,EA053,?,EA053-NA,,,,,, +68174,Nd58,EA053,?,EA053-NA,,,,,, +68175,Nd59,EA053,Activity is absent,EA053-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +68176,Nd6,EA053,Activity is absent,EA053-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +68177,Nd60,EA053,Activity is absent,EA053-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +68178,Nd61,EA053,Activity is absent,EA053-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +68179,Nd62,EA053,Males alone,EA053-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +68180,Nd63,EA053,?,EA053-NA,,,,,, +68181,Nd64,EA053,Males alone,EA053-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +68182,Nd65,EA053,Activity is absent,EA053-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +68183,Nd66,EA053,Activity is absent,EA053-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +68184,Nd67,EA053,Activity is absent,EA053-9,,gifford1936,,1870,EthnographicAtlas_1967_p112, +68185,Nd7,EA053,Males alone,EA053-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +68186,Nd8,EA053,Activity is absent,EA053-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +68187,Nd9,EA053,Activity is absent,EA053-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +68188,Ne1,EA053,Males alone,EA053-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +68189,Ne10,EA053,?,EA053-NA,,,,,, +68190,Ne11,EA053,Males alone,EA053-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +68191,Ne12,EA053,Males alone,EA053-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +68192,Ne13,EA053,Males alone,EA053-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +68193,Ne14,EA053,Males alone,EA053-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +68194,Ne15,EA053,"Both, males more",EA053-2,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +68195,Ne16,EA053,Activity is absent,EA053-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +68196,Ne17,EA053,?,EA053-NA,,,,,, +68197,Ne18,EA053,Males alone,EA053-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +68198,Ne19,EA053,Males alone,EA053-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +68199,Ne2,EA053,Males alone,EA053-1,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +68200,Ne20,EA053,?,EA053-NA,,,,,, +68201,Ne21,EA053,?,EA053-NA,,,,,, +68202,Ne3,EA053,Males alone,EA053-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +68203,Ne4,EA053,Males alone,EA053-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +68204,Ne5,EA053,Males alone,EA053-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +68205,Ne6,EA053,Males alone,EA053-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +68206,Ne7,EA053,Males alone,EA053-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +68207,Ne8,EA053,Males alone,EA053-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +68208,Ne9,EA053,Males alone,EA053-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +68209,Nf10,EA053,Males alone,EA053-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +68210,Nf11,EA053,Males alone,EA053-1,,whitman1937,,1870,EthnographicAtlas_1967_p116, +68211,Nf12,EA053,Males alone,EA053-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +68212,Nf13,EA053,Activity is absent,EA053-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68213,Nf14,EA053,Activity is absent,EA053-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +68214,Nf15,EA053,?,EA053-NA,,,,,, +68215,Nf2,EA053,Activity is absent,EA053-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +68216,Nf3,EA053,Males alone,EA053-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +68217,Nf4,EA053,Activity is absent,EA053-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +68218,Nf5,EA053,Males alone,EA053-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +68219,Nf6,EA053,Males alone,EA053-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +68220,Nf7,EA053,Males alone,EA053-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68221,Nf8,EA053,Activity is absent,EA053-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +68222,Nf9,EA053,Activity is absent,EA053-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +68223,Ng1,EA053,Activity is absent,EA053-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +68224,Ng10,EA053,Activity is absent,EA053-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +68225,Ng11,EA053,Activity is absent,EA053-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +68226,Ng12,EA053,Activity is absent,EA053-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +68227,Ng13,EA053,?,EA053-NA,,,,,, +68228,Ng14,EA053,?,EA053-NA,,,,,, +68229,Ng15,EA053,?,EA053-NA,,,,,, +68230,Ng2,EA053,?,EA053-NA,,,,,, +68231,Ng3,EA053,Activity is absent,EA053-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +68232,Ng4,EA053,?,EA053-NA,,,,,, +68233,Ng5,EA053,Activity is absent,EA053-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +68234,Ng6,EA053,Activity is absent,EA053-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +68235,Ng7,EA053,Activity is absent,EA053-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +68236,Ng8,EA053,Activity is absent,EA053-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +68237,Ng9,EA053,?,EA053-NA,,,,,, +68238,Nh1,EA053,Males alone,EA053-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +68239,Nh10,EA053,?,EA053-NA,,,,,, +68240,Nh11,EA053,?,EA053-NA,,,,,, +68241,Nh12,EA053,?,EA053-NA,,,,,, +68242,Nh13,EA053,?,EA053-NA,,,,,, +68243,Nh14,EA053,?,EA053-NA,,,,,, +68244,Nh15,EA053,Activity is absent,EA053-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +68245,Nh16,EA053,?,EA053-NA,,,,,, +68246,Nh17,EA053,Males alone,EA053-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +68247,Nh18,EA053,Males alone,EA053-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68248,Nh19,EA053,Activity is absent,EA053-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +68249,Nh2,EA053,Males alone,EA053-1,,dozier1954,,1950,EthnographicAtlas_1967_p116, +68250,Nh20,EA053,Activity is absent,EA053-9,,gifford1931,,1860,EthnographicAtlas_1967_p116, +68251,Nh21,EA053,Activity is absent,EA053-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68252,Nh22,EA053,Activity is absent,EA053-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +68253,Nh23,EA053,Females alone,EA053-6,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +68254,Nh24,EA053,?,EA053-NA,,,,,, +68255,Nh25,EA053,?,EA053-NA,,,,,, +68256,Nh26,EA053,?,EA053-NA,,,,,, +68257,Nh27,EA053,?,EA053-NA,,,,,, +68258,Nh3,EA053,Equal participation,EA053-4,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +68259,Nh4,EA053,?,EA053-NA,,,,,, +68260,Nh5,EA053,Activity is absent,EA053-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +68261,Nh6,EA053,"Both, males more",EA053-2,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +68262,Nh7,EA053,?,EA053-NA,,,,,, +68263,Nh8,EA053,?,EA053-NA,,,,,, +68264,Nh9,EA053,?,EA053-NA,,,,,, +68265,Ni1,EA053,Differentiated but equal,EA053-3,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +68266,Ni2,EA053,Activity is absent,EA053-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +68267,Ni3,EA053,Differentiated but equal,EA053-3,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +68268,Ni4,EA053,Activity is absent,EA053-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +68269,Ni5,EA053,Activity is absent,EA053-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +68270,Ni6,EA053,Activity is absent,EA053-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +68271,Ni7,EA053,Activity is absent,EA053-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +68272,Ni8,EA053,?,EA053-NA,,,,,, +68273,Ni9,EA053,?,EA053-NA,,,,,, +68274,Nj1,EA053,Females alone,EA053-6,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68275,Nj10,EA053,Equal participation,EA053-4,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68276,Nj11,EA053,?,EA053-NA,,,,,, +68277,Nj12,EA053,?,EA053-NA,,,,,, +68278,Nj13,EA053,?,EA053-NA,,,,,, +68279,Nj14,EA053,?,EA053-NA,,,,,, +68280,Nj2,EA053,Activity is absent,EA053-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +68281,Nj3,EA053,?,EA053-NA,,,,,, +68282,Nj4,EA053,Differentiated but equal,EA053-3,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +68283,Nj5,EA053,?,EA053-NA,,,,,, +68284,Nj6,EA053,?,EA053-NA,,,,,, +68285,Nj7,EA053,Males alone,EA053-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68286,Nj8,EA053,Activity is absent,EA053-9,,foster1948,,1500,EthnographicAtlas_1967_p120, +68287,Nj9,EA053,Equal participation,EA053-4,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +68288,Sa1,EA053,Males alone,EA053-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +68289,Sa10,EA053,?,EA053-NA,,,,,, +68290,Sa11,EA053,?,EA053-NA,,,,,, +68291,Sa12,EA053,?,EA053-NA,,,,,, +68292,Sa13,EA053,Equal participation,EA053-4,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +68293,Sa14,EA053,?,EA053-NA,,,,,, +68294,Sa15,EA053,?,EA053-NA,,,,,, +68295,Sa16,EA053,?,EA053-NA,,,,,, +68296,Sa17,EA053,?,EA053-NA,,,,,, +68297,Sa2,EA053,?,EA053-NA,,,,,, +68298,Sa3,EA053,Differentiated but equal,EA053-3,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +68299,Sa4,EA053,Activity is absent,EA053-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +68300,Sa5,EA053,?,EA053-NA,,,,,, +68301,Sa6,EA053,Activity is absent,EA053-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +68302,Sa7,EA053,Activity is absent,EA053-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +68303,Sa8,EA053,Males alone,EA053-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p120, +68304,Sa9,EA053,?,EA053-NA,,,,,, +68305,Sb1,EA053,Activity is absent,EA053-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +68306,Sb2,EA053,?,EA053-NA,,,,,, +68307,Sb3,EA053,?,EA053-NA,,,,,, +68308,Sb4,EA053,Activity is absent,EA053-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +68309,Sb5,EA053,Activity is absent,EA053-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p120, +68310,Sb6,EA053,Differentiated but equal,EA053-3,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +68311,Sb7,EA053,Activity is absent,EA053-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +68312,Sb8,EA053,Activity is absent,EA053-9,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +68313,Sb9,EA053,"Both, females more",EA053-5,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +68314,Sc1,EA053,Activity is absent,EA053-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +68315,Sc10,EA053,Activity is absent,EA053-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +68316,Sc11,EA053,Activity is absent,EA053-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +68317,Sc12,EA053,Activity is absent,EA053-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +68318,Sc13,EA053,Activity is absent,EA053-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +68319,Sc14,EA053,Activity is absent,EA053-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +68320,Sc15,EA053,Activity is absent,EA053-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +68321,Sc16,EA053,Activity is absent,EA053-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +68322,Sc17,EA053,Activity is absent,EA053-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +68323,Sc18,EA053,Activity is absent,EA053-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +68324,Sc2,EA053,Males alone,EA053-1,,leedsnd,,1950,EthnographicAtlas_1967_p120, +68325,Sc3,EA053,Activity is absent,EA053-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +68326,Sc4,EA053,Activity is absent,EA053-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +68327,Sc5,EA053,Activity is absent,EA053-9,,farabee1918,,1900,EthnographicAtlas_1967_p120, +68328,Sc6,EA053,Activity is absent,EA053-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68329,Sc7,EA053,Activity is absent,EA053-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +68330,Sc8,EA053,Activity is absent,EA053-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +68331,Sc9,EA053,Activity is absent,EA053-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +68332,Sd1,EA053,Activity is absent,EA053-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68333,Sd2,EA053,Activity is absent,EA053-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +68334,Sd3,EA053,Activity is absent,EA053-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +68335,Sd4,EA053,Activity is absent,EA053-9,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +68336,Sd5,EA053,Activity is absent,EA053-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +68337,Sd6,EA053,Activity is absent,EA053-9,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +68338,Sd7,EA053,Activity is absent,EA053-9,,fock1963,,1950,EthnographicAtlas_1967_p120, +68339,Sd8,EA053,Activity is absent,EA053-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +68340,Sd9,EA053,Activity is absent,EA053-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68341,Se1,EA053,Activity is absent,EA053-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +68342,Se10,EA053,Activity is absent,EA053-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p120, +68343,Se11,EA053,Activity is absent,EA053-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +68344,Se12,EA053,?,EA053-NA,,,,,, +68345,Se2,EA053,Activity is absent,EA053-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +68346,Se3,EA053,Females alone,EA053-6,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +68347,Se4,EA053,Activity is absent,EA053-9,,fejos1943,,1940,EthnographicAtlas_1967_p120, +68348,Se5,EA053,Activity is absent,EA053-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +68349,Se6,EA053,Activity is absent,EA053-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +68350,Se7,EA053,?,EA053-NA,,,,,, +68351,Se8,EA053,Activity is absent,EA053-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +68352,Se9,EA053,Activity is absent,EA053-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +68353,Sf1,EA053,Males alone,EA053-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +68354,Sf2,EA053,"Both, females more",EA053-5,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +68355,Sf3,EA053,?,EA053-NA,,,,,, +68356,Sf4,EA053,Activity is absent,EA053-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +68357,Sf5,EA053,Males alone,EA053-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +68358,Sf6,EA053,Activity is absent,EA053-9,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +68359,Sf7,EA053,Activity is absent,EA053-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +68360,Sf8,EA053,?,EA053-NA,,,,,, +68361,Sf9,EA053,?,EA053-NA,,,,,, +68362,Sg1,EA053,Activity is absent,EA053-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +68363,Sg2,EA053,"Both, males more",EA053-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68364,Sg3,EA053,Activity is absent,EA053-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +68365,Sg4,EA053,Males alone,EA053-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +68366,Sg5,EA053,Activity is absent,EA053-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68367,Sh1,EA053,Females alone,EA053-6,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +68368,Sh2,EA053,?,EA053-NA,,,,,, +68369,Sh3,EA053,Equal participation,EA053-4,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +68370,Sh4,EA053,Males alone,EA053-1,,oberg1949,,1940,EthnographicAtlas_1967_p124, +68371,Sh5,EA053,"Both, females more",EA053-5,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +68372,Sh6,EA053,Activity is absent,EA053-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +68373,Sh7,EA053,Equal participation,EA053-4,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +68374,Sh8,EA053,?,EA053-NA,,,,,, +68375,Sh9,EA053,Activity is absent,EA053-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +68376,Si1,EA053,Activity is absent,EA053-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68377,Si10,EA053,Activity is absent,EA053-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +68378,Si2,EA053,Activity is absent,EA053-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +68379,Si3,EA053,Activity is absent,EA053-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68380,Si4,EA053,Activity is absent,EA053-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +68381,Si5,EA053,Activity is absent,EA053-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +68382,Si6,EA053,Activity is absent,EA053-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +68383,Si7,EA053,?,EA053-NA,,,,,, +68384,Si8,EA053,Activity is absent,EA053-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +68385,Si9,EA053,?,EA053-NA,,,,,, +68386,Sj1,EA053,Activity is absent,EA053-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +68387,Sj10,EA053,Activity is absent,EA053-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68388,Sj11,EA053,Activity is absent,EA053-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +68389,Sj2,EA053,Activity is absent,EA053-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +68390,Sj3,EA053,Activity is absent,EA053-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +68391,Sj4,EA053,Females alone,EA053-6,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +68392,Sj5,EA053,Activity is absent,EA053-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +68393,Sj6,EA053,?,EA053-NA,,,,,, +68394,Sj7,EA053,Activity is absent,EA053-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +68395,Sj8,EA053,Activity is absent,EA053-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +68396,Sj9,EA053,Activity is absent,EA053-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +68397,ch12,EA053,Differentiated but equal,EA053-3,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +68398,ch13,EA053,Differentiated but equal,EA053-3,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +68399,ch14,EA053,"Both, females more",EA053-5,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +68400,ch15,EA053,"Both, females more",EA053-5,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +68401,ch16,EA053,Differentiated but equal,EA053-3,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +68402,ch17,EA053,Males alone,EA053-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +68403,ch18,EA053,"Both, males more",EA053-2,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +68404,ch19,EA053,Differentiated but equal,EA053-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +68405,ch20,EA053,Differentiated but equal,EA053-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +68406,ch21,EA053,Differentiated but equal,EA053-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +68407,ch22,EA053,"Activity present, sex diff. unspecified",EA053-8,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +68408,ch23,EA053,"Both, males more",EA053-2,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +68409,ch24,EA053,Equal participation,EA053-4,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +68410,ch25,EA053,"Both, males more",EA053-2,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +68411,ch26,EA053,"Both, females more",EA053-5,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +68412,ch27,EA053,"Both, females more",EA053-5,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +68413,ch28,EA053,"Both, males more",EA053-2,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +68414,ec12,EA053,Males alone,EA053-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +68415,ec13,EA053,Activity is absent,EA053-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +68416,ec14,EA053,Activity is absent,EA053-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +68417,ec15,EA053,Males alone,EA053-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +68418,ec16,EA053,"Both, females more",EA053-5,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +68419,ec17,EA053,"Both, females more",EA053-5,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +68420,ec18,EA053,Activity is absent,EA053-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +68421,ec19,EA053,Activity is absent,EA053-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +68422,ec20,EA053,Activity is absent,EA053-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +68423,ec21,EA053,Activity is absent,EA053-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +68424,Aa1,EA054,Activity is absent,EA054-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +68425,Aa2,EA054,Activity is absent,EA054-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +68426,Aa3,EA054,Activity is absent,EA054-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +68427,Aa4,EA054,?,EA054-NA,,,,,, +68428,Aa5,EA054,Activity is absent,EA054-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +68429,Aa6,EA054,"Both, females more",EA054-5,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p64, +68430,Aa7,EA054,Activity is absent,EA054-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +68431,Aa8,EA054,Activity is absent,EA054-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +68432,Aa9,EA054,Activity is absent,EA054-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +68433,Ab1,EA054,Activity is absent,EA054-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +68434,Ab10,EA054,"Both, females more",EA054-5,,hunter1936,,1936,EthnographicAtlas_1967_p64, +68435,Ab11,EA054,"Both, females more",EA054-5,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +68436,Ab12,EA054,"Both, females more",EA054-5,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +68437,Ab13,EA054,"Both, females more",EA054-5,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +68438,Ab14,EA054,Differentiated but equal,EA054-3,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +68439,Ab15,EA054,"Both, females more",EA054-5,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +68440,Ab16,EA054,"Both, females more",EA054-5,,earthy1933,,1930,EthnographicAtlas_1967_p64, +68441,Ab17,EA054,?,EA054-NA,,,,,, +68442,Ab18,EA054,Equal participation,EA054-4,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +68443,Ab19,EA054,Females alone,EA054-6,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +68444,Ab2,EA054,"Both, females more",EA054-5,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +68445,Ab20,EA054,?,EA054-NA,,,,,, +68446,Ab21a,EA054,?,EA054-NA,,,,,, +68447,Ab21b,EA054,?,EA054-NA,,,,,, +68448,Ab22,EA054,?,EA054-NA,,,,,, +68449,Ab3,EA054,"Both, females more",EA054-5,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +68450,Ab4,EA054,"Both, females more",EA054-5,,junod1927,,1920,EthnographicAtlas_1967_p64, +68451,Ab5,EA054,"Both, females more",EA054-5,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +68452,Ab6,EA054,"Both, females more",EA054-5,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +68453,Ab7,EA054,Equal participation,EA054-4,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p64, +68454,Ab8,EA054,"Both, females more",EA054-5,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +68455,Ab9,EA054,"Both, females more",EA054-5,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +68456,Ac1,EA054,"Both, females more",EA054-5,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +68457,Ac10,EA054,"Both, females more",EA054-5,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +68458,Ac11,EA054,"Both, males more",EA054-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +68459,Ac12,EA054,"Both, females more",EA054-5,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p64, +68460,Ac13,EA054,Females alone,EA054-6,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p64, +68461,Ac14,EA054,"Both, females more",EA054-5,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p64, +68462,Ac15,EA054,?,EA054-NA,,,,,, +68463,Ac16,EA054,?,EA054-NA,,,,,, +68464,Ac17,EA054,"Both, females more",EA054-5,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +68465,Ac18,EA054,"Both, females more",EA054-5,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +68466,Ac19,EA054,?,EA054-NA,,,,,, +68467,Ac2,EA054,"Both, females more",EA054-5,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p64, +68468,Ac20,EA054,?,EA054-NA,,,,,, +68469,Ac21,EA054,"Both, females more",EA054-5,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p64, +68470,Ac22,EA054,"Both, females more",EA054-5,,mertens1935,,1930,EthnographicAtlas_1967_p64, +68471,Ac23,EA054,"Both, females more",EA054-5,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +68472,Ac24,EA054,?,EA054-NA,,,,,, +68473,Ac25,EA054,"Both, females more",EA054-5,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p64, +68474,Ac26,EA054,?,EA054-NA,,,,,, +68475,Ac27,EA054,?,EA054-NA,,,,,, +68476,Ac28,EA054,"Both, females more",EA054-5,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +68477,Ac29,EA054,?,EA054-NA,,,,,, +68478,Ac3,EA054,"Both, females more",EA054-5,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +68479,Ac30,EA054,"Both, females more",EA054-5,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +68480,Ac31,EA054,"Both, females more",EA054-5,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +68481,Ac32,EA054,?,EA054-NA,,,,,, +68482,Ac33,EA054,"Both, females more",EA054-5,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +68483,Ac34,EA054,"Both, females more",EA054-5,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +68484,Ac35,EA054,?,EA054-NA,,,,,, +68485,Ac36,EA054,"Both, females more",EA054-5,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p64, +68486,Ac37,EA054,?,EA054-NA,,,,,, +68487,Ac38,EA054,"Both, females more",EA054-5,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +68488,Ac39,EA054,"Both, females more",EA054-5,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +68489,Ac4,EA054,"Both, females more",EA054-5,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +68490,Ac40,EA054,?,EA054-NA,,,,,, +68491,Ac41,EA054,?,EA054-NA,,,,,, +68492,Ac42,EA054,?,EA054-NA,,,,,, +68493,Ac43,EA054,?,EA054-NA,,,,,, +68494,Ac5,EA054,Equal participation,EA054-4,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +68495,Ac6,EA054,"Both, females more",EA054-5,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +68496,Ac7,EA054,"Both, females more",EA054-5,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +68497,Ac8,EA054,"Both, females more",EA054-5,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +68498,Ac9,EA054,"Both, females more",EA054-5,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +68499,Ad1,EA054,Equal participation,EA054-4,,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +68500,Ad10,EA054,"Both, females more",EA054-5,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +68501,Ad11,EA054,"Both, females more",EA054-5,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +68502,Ad12,EA054,?,EA054-NA,,,,,, +68503,Ad13,EA054,"Both, females more",EA054-5,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +68504,Ad14,EA054,Equal participation,EA054-4,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p68, +68505,Ad15,EA054,Equal participation,EA054-4,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p68, +68506,Ad16,EA054,"Both, males more",EA054-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +68507,Ad17,EA054,Equal participation,EA054-4,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +68508,Ad18,EA054,?,EA054-NA,,,,,, +68509,Ad19,EA054,"Both, females more",EA054-5,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +68510,Ad2,EA054,"Both, females more",EA054-5,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +68511,Ad20,EA054,"Both, females more",EA054-5,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +68512,Ad21,EA054,"Both, females more",EA054-5,,maurice193538,,1930,EthnographicAtlas_1967_p68, +68513,Ad22,EA054,"Both, females more",EA054-5,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +68514,Ad23,EA054,?,EA054-NA,,,,,, +68515,Ad24,EA054,"Both, females more",EA054-5,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +68516,Ad25,EA054,?,EA054-NA,,,,,, +68517,Ad26,EA054,"Both, females more",EA054-5,,sick1916,,1910,EthnographicAtlas_1967_p68, +68518,Ad27,EA054,"Both, females more",EA054-5,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +68519,Ad28,EA054,"Both, females more",EA054-5,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +68520,Ad29,EA054,Equal participation,EA054-4,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +68521,Ad3,EA054,Differentiated but equal,EA054-3,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +68522,Ad30,EA054,"Both, females more",EA054-5,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +68523,Ad31,EA054,"Both, females more",EA054-5,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +68524,Ad32,EA054,"Both, females more",EA054-5,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p68, +68525,Ad33,EA054,"Both, females more",EA054-5,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +68526,Ad34,EA054,"Both, females more",EA054-5,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +68527,Ad35,EA054,"Both, females more",EA054-5,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +68528,Ad36,EA054,?,EA054-NA,,,,,, +68529,Ad37,EA054,?,EA054-NA,,,,,, +68530,Ad38,EA054,?,EA054-NA,,,,,, +68531,Ad39,EA054,Differentiated but equal,EA054-3,,gray1963,,1950,EthnographicAtlas_1967_p68, +68532,Ad4,EA054,"Both, females more",EA054-5,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +68533,Ad40,EA054,?,EA054-NA,,,,,, +68534,Ad41,EA054,"Both, females more",EA054-5,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +68535,Ad42,EA054,"Both, females more",EA054-5,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p68, +68536,Ad43,EA054,?,EA054-NA,,,,,, +68537,Ad44,EA054,"Both, males more",EA054-2,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +68538,Ad45,EA054,"Both, females more",EA054-5,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +68539,Ad46,EA054,"Both, females more",EA054-5,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +68540,Ad47,EA054,"Both, females more",EA054-5,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +68541,Ad48,EA054,"Both, females more",EA054-5,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +68542,Ad49,EA054,"Both, females more",EA054-5,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +68543,Ad5,EA054,?,EA054-NA,,,,,, +68544,Ad50,EA054,Equal participation,EA054-4,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +68545,Ad51,EA054,"Both, males more",EA054-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +68546,Ad6,EA054,"Both, males more",EA054-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +68547,Ad7,EA054,"Both, females more",EA054-5,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +68548,Ad8,EA054,"Both, females more",EA054-5,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +68549,Ad9,EA054,"Both, females more",EA054-5,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +68550,Ae1,EA054,"Both, females more",EA054-5,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +68551,Ae10,EA054,"Both, females more",EA054-5,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +68552,Ae11,EA054,"Both, females more",EA054-5,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +68553,Ae12,EA054,"Both, females more",EA054-5,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +68554,Ae13,EA054,?,EA054-NA,,,,,, +68555,Ae14,EA054,"Both, females more",EA054-5,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +68556,Ae15,EA054,Differentiated but equal,EA054-3,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p68, +68557,Ae16,EA054,?,EA054-NA,,,,,, +68558,Ae17,EA054,"Both, females more",EA054-5,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +68559,Ae18,EA054,"Both, females more",EA054-5,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +68560,Ae19,EA054,?,EA054-NA,,,,,, +68561,Ae2,EA054,"Both, females more",EA054-5,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +68562,Ae20,EA054,?,EA054-NA,,,,,, +68563,Ae21,EA054,?,EA054-NA,,,,,, +68564,Ae22,EA054,"Both, females more",EA054-5,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p68, +68565,Ae23,EA054,?,EA054-NA,,,,,, +68566,Ae24,EA054,?,EA054-NA,,,,,, +68567,Ae25,EA054,?,EA054-NA,,,,,, +68568,Ae26,EA054,?,EA054-NA,,,,,, +68569,Ae27,EA054,?,EA054-NA,,,,,, +68570,Ae28,EA054,"Both, females more",EA054-5,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +68571,Ae29,EA054,"Both, females more",EA054-5,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +68572,Ae3,EA054,"Both, females more",EA054-5,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +68573,Ae30,EA054,?,EA054-NA,,,,,, +68574,Ae31,EA054,"Both, females more",EA054-5,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +68575,Ae32,EA054,?,EA054-NA,,,,,, +68576,Ae33,EA054,"Both, females more",EA054-5,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +68577,Ae34,EA054,?,EA054-NA,,,,,, +68578,Ae35,EA054,?,EA054-NA,,,,,, +68579,Ae36,EA054,?,EA054-NA,,,,,, +68580,Ae37,EA054,?,EA054-NA,,,,,, +68581,Ae38,EA054,"Both, females more",EA054-5,,wijnant192526,,1920,EthnographicAtlas_1967_p68, +68582,Ae39,EA054,"Both, females more",EA054-5,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +68583,Ae4,EA054,"Both, females more",EA054-5,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +68584,Ae40,EA054,?,EA054-NA,,,,,, +68585,Ae41,EA054,"Both, females more",EA054-5,,andersson1953,,1940,EthnographicAtlas_1967_p68, +68586,Ae42,EA054,?,EA054-NA,,,,,, +68587,Ae43,EA054,?,EA054-NA,,,,,, +68588,Ae44,EA054,?,EA054-NA,,,,,, +68589,Ae45,EA054,?,EA054-NA,,,,,, +68590,Ae46,EA054,?,EA054-NA,,,,,, +68591,Ae47,EA054,?,EA054-NA,,,,,, +68592,Ae48,EA054,"Both, females more",EA054-5,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p68, +68593,Ae49,EA054,?,EA054-NA,,,,,, +68594,Ae5,EA054,"Both, females more",EA054-5,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +68595,Ae50,EA054,"Both, females more",EA054-5,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +68596,Ae51,EA054,"Both, females more",EA054-5,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +68597,Ae52,EA054,"Both, females more",EA054-5,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +68598,Ae53,EA054,?,EA054-NA,,,,,, +68599,Ae54,EA054,?,EA054-NA,,,,,, +68600,Ae55,EA054,"Both, females more",EA054-5,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +68601,Ae56,EA054,"Both, females more",EA054-5,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +68602,Ae57,EA054,?,EA054-NA,,,,,, +68603,Ae58,EA054,?,EA054-NA,,,,,, +68604,Ae59,EA054,?,EA054-NA,,,,,, +68605,Ae6,EA054,"Both, females more",EA054-5,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +68606,Ae7,EA054,"Both, females more",EA054-5,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +68607,Ae8,EA054,Equal participation,EA054-4,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +68608,Ae9,EA054,"Both, females more",EA054-5,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +68609,Af1,EA054,"Both, females more",EA054-5,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +68610,Af10,EA054,"Both, females more",EA054-5,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +68611,Af11,EA054,"Both, females more",EA054-5,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +68612,Af12,EA054,?,EA054-NA,,,,,, +68613,Af13,EA054,"Both, females more",EA054-5,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +68614,Af14,EA054,"Both, females more",EA054-5,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +68615,Af15,EA054,"Both, females more",EA054-5,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +68616,Af16,EA054,?,EA054-NA,,,,,, +68617,Af17,EA054,?,EA054-NA,,,,,, +68618,Af18,EA054,?,EA054-NA,,,,,, +68619,Af19,EA054,Differentiated but equal,EA054-3,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p72, +68620,Af2,EA054,Equal participation,EA054-4,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +68621,Af20,EA054,"Both, females more",EA054-5,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +68622,Af21,EA054,?,EA054-NA,,,,,, +68623,Af22,EA054,?,EA054-NA,Performed almost exclusively by slaves,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +68624,Af23,EA054,"Both, females more",EA054-5,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +68625,Af24,EA054,Differentiated but equal,EA054-3,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +68626,Af25,EA054,"Both, females more",EA054-5,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +68627,Af26,EA054,?,EA054-NA,,,,,, +68628,Af27,EA054,?,EA054-NA,,,,,, +68629,Af28,EA054,"Both, males more",EA054-2,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +68630,Af29,EA054,?,EA054-NA,,,,,, +68631,Af3,EA054,Differentiated but equal,EA054-3,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +68632,Af30,EA054,?,EA054-NA,,,,,, +68633,Af31,EA054,?,EA054-NA,,,,,, +68634,Af32,EA054,"Both, males more",EA054-2,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68635,Af33,EA054,"Both, males more",EA054-2,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68636,Af34,EA054,?,EA054-NA,,,,,, +68637,Af35,EA054,?,EA054-NA,,,,,, +68638,Af36,EA054,Equal participation,EA054-4,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +68639,Af37,EA054,?,EA054-NA,,,,,, +68640,Af38,EA054,?,EA054-NA,,,,,, +68641,Af39,EA054,?,EA054-NA,,,,,, +68642,Af4,EA054,Differentiated but equal,EA054-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +68643,Af40,EA054,?,EA054-NA,,,,,, +68644,Af41,EA054,?,EA054-NA,,,,,, +68645,Af42,EA054,Equal participation,EA054-4,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +68646,Af43,EA054,"Both, males more",EA054-2,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p72, +68647,Af44,EA054,?,EA054-NA,,,,,, +68648,Af45,EA054,?,EA054-NA,,,,,, +68649,Af46,EA054,?,EA054-NA,,,,,, +68650,Af47,EA054,?,EA054-NA,,,,,, +68651,Af48,EA054,?,EA054-NA,,,,,, +68652,Af49,EA054,"Both, females more",EA054-5,,schwab1947,,1940,EthnographicAtlas_1967_p72, +68653,Af5,EA054,Differentiated but equal,EA054-3,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +68654,Af50,EA054,?,EA054-NA,,,,,, +68655,Af51,EA054,"Both, females more",EA054-5,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +68656,Af52,EA054,"Both, females more",EA054-5,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +68657,Af53,EA054,?,EA054-NA,,,,,, +68658,Af54,EA054,"Both, females more",EA054-5,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +68659,Af55,EA054,?,EA054-NA,,,,,, +68660,Af56,EA054,"Both, females more",EA054-5,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +68661,Af57,EA054,Differentiated but equal,EA054-3,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +68662,Af58,EA054,?,EA054-NA,,,,,, +68663,Af6,EA054,"Both, males more",EA054-2,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +68664,Af7,EA054,"Both, females more",EA054-5,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +68665,Af8,EA054,"Both, males more",EA054-2,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +68666,Af9,EA054,"Both, males more",EA054-2,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p72, +68667,Ag1,EA054,"Both, males more",EA054-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +68668,Ag10,EA054,Differentiated but equal,EA054-3,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +68669,Ag11,EA054,"Both, males more",EA054-2,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +68670,Ag12,EA054,"Both, males more",EA054-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +68671,Ag13,EA054,"Both, males more",EA054-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p72, +68672,Ag14,EA054,?,EA054-NA,,,,,, +68673,Ag15,EA054,?,EA054-NA,,,,,, +68674,Ag16,EA054,"Both, males more",EA054-2,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p72, +68675,Ag17,EA054,?,EA054-NA,,,,,, +68676,Ag18,EA054,"Both, males more",EA054-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p72, +68677,Ag19,EA054,"Both, females more",EA054-5,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p72, +68678,Ag2,EA054,Equal participation,EA054-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +68679,Ag20,EA054,?,EA054-NA,,,,,, +68680,Ag21,EA054,Differentiated but equal,EA054-3,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +68681,Ag22,EA054,"Both, males more",EA054-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +68682,Ag23,EA054,?,EA054-NA,,,,,, +68683,Ag24,EA054,?,EA054-NA,,,,,, +68684,Ag25,EA054,"Both, males more",EA054-2,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p72, +68685,Ag26,EA054,"Both, males more",EA054-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p72, +68686,Ag27,EA054,"Both, males more",EA054-2,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p72, +68687,Ag28,EA054,?,EA054-NA,,,,,, +68688,Ag29,EA054,?,EA054-NA,,,,,, +68689,Ag3,EA054,"Both, males more",EA054-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +68690,Ag30,EA054,"Both, males more",EA054-2,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +68691,Ag31,EA054,"Both, males more",EA054-2,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p72, +68692,Ag32,EA054,"Both, males more",EA054-2,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +68693,Ag33,EA054,?,EA054-NA,,,,,, +68694,Ag34,EA054,?,EA054-NA,,,,,, +68695,Ag35,EA054,?,EA054-NA,,,,,, +68696,Ag36,EA054,?,EA054-NA,,,,,, +68697,Ag37,EA054,?,EA054-NA,,,,,, +68698,Ag38,EA054,?,EA054-NA,,,,,, +68699,Ag39,EA054,"Both, males more",EA054-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +68700,Ag4,EA054,"Both, males more",EA054-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +68701,Ag40,EA054,?,EA054-NA,,,,,, +68702,Ag41,EA054,"Both, males more",EA054-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p72, +68703,Ag42,EA054,?,EA054-NA,,,,,, +68704,Ag43,EA054,?,EA054-NA,,,,,, +68705,Ag44,EA054,?,EA054-NA,,,,,, +68706,Ag45,EA054,Equal participation,EA054-4,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +68707,Ag46,EA054,?,EA054-NA,,,,,, +68708,Ag47,EA054,Equal participation,EA054-4,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +68709,Ag48,EA054,"Both, males more",EA054-2,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +68710,Ag49,EA054,"Both, females more",EA054-5,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +68711,Ag5,EA054,"Both, males more",EA054-2,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +68712,Ag50,EA054,"Both, males more",EA054-2,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +68713,Ag51,EA054,?,EA054-NA,,,,,, +68714,Ag52,EA054,?,EA054-NA,,,,,, +68715,Ag53,EA054,Differentiated but equal,EA054-3,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +68716,Ag54,EA054,Differentiated but equal,EA054-3,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +68717,Ag6,EA054,"Both, males more",EA054-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +68718,Ag7,EA054,"Both, males more",EA054-2,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p72, +68719,Ag8,EA054,Differentiated but equal,EA054-3,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +68720,Ag9,EA054,"Both, males more",EA054-2,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +68721,Ah1,EA054,"Both, males more",EA054-2,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68722,Ah10,EA054,?,EA054-NA,,,,,, +68723,Ah11,EA054,Differentiated but equal,EA054-3,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +68724,Ah12,EA054,?,EA054-NA,,,,,, +68725,Ah13,EA054,Equal participation,EA054-4,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +68726,Ah14,EA054,?,EA054-NA,,,,,, +68727,Ah15,EA054,"Both, males more",EA054-2,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +68728,Ah16,EA054,?,EA054-NA,,,,,, +68729,Ah17,EA054,?,EA054-NA,,,,,, +68730,Ah18,EA054,?,EA054-NA,,,,,, +68731,Ah19,EA054,"Both, males more",EA054-2,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p76, +68732,Ah2,EA054,"Both, males more",EA054-2,,meek1931a,,1920,EthnographicAtlas_1967_p76, +68733,Ah20,EA054,"Both, males more",EA054-2,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +68734,Ah21,EA054,?,EA054-NA,,,,,, +68735,Ah22,EA054,?,EA054-NA,,,,,, +68736,Ah23,EA054,?,EA054-NA,,,,,, +68737,Ah24,EA054,?,EA054-NA,,,,,, +68738,Ah25,EA054,?,EA054-NA,,,,,, +68739,Ah26,EA054,?,EA054-NA,,,,,, +68740,Ah27,EA054,?,EA054-NA,,,,,, +68741,Ah28,EA054,?,EA054-NA,,,,,, +68742,Ah29,EA054,?,EA054-NA,,,,,, +68743,Ah3,EA054,Differentiated but equal,EA054-3,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +68744,Ah30,EA054,"Both, males more",EA054-2,,meek1931b,,1920,EthnographicAtlas_1967_p76, +68745,Ah31,EA054,"Both, females more",EA054-5,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p76, +68746,Ah32,EA054,?,EA054-NA,,,,,, +68747,Ah33,EA054,Equal participation,EA054-4,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p76, +68748,Ah34,EA054,?,EA054-NA,,,,,, +68749,Ah35,EA054,?,EA054-NA,,,,,, +68750,Ah36,EA054,Equal participation,EA054-4,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +68751,Ah37,EA054,?,EA054-NA,,,,,, +68752,Ah38,EA054,Equal participation,EA054-4,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +68753,Ah39,EA054,Equal participation,EA054-4,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +68754,Ah4,EA054,"Both, males more",EA054-2,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p76, +68755,Ah5,EA054,?,EA054-NA,,,,,, +68756,Ah6,EA054,?,EA054-NA,,,,,, +68757,Ah7,EA054,Differentiated but equal,EA054-3,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +68758,Ah8,EA054,"Both, females more",EA054-5,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +68759,Ah9,EA054,Differentiated but equal,EA054-3,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +68760,Ai1,EA054,"Both, females more",EA054-5,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +68761,Ai10,EA054,Equal participation,EA054-4,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +68762,Ai11,EA054,"Both, females more",EA054-5,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +68763,Ai12,EA054,Equal participation,EA054-4,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p76, +68764,Ai13,EA054,?,EA054-NA,,,,,, +68765,Ai14,EA054,?,EA054-NA,,,,,, +68766,Ai15,EA054,"Both, females more",EA054-5,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +68767,Ai16,EA054,?,EA054-NA,,,,,, +68768,Ai17,EA054,Equal participation,EA054-4,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +68769,Ai18,EA054,Equal participation,EA054-4,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +68770,Ai19,EA054,?,EA054-NA,,,,,, +68771,Ai2,EA054,?,EA054-NA,,,,,, +68772,Ai20,EA054,?,EA054-NA,,,,,, +68773,Ai21,EA054,?,EA054-NA,,,,,, +68774,Ai22,EA054,Equal participation,EA054-4,,delafosse1897,,1890,EthnographicAtlas_1967_p76, +68775,Ai23,EA054,"Both, females more",EA054-5,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +68776,Ai24,EA054,?,EA054-NA,,,,,, +68777,Ai25,EA054,"Both, females more",EA054-5,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +68778,Ai26,EA054,"Both, females more",EA054-5,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +68779,Ai27,EA054,?,EA054-NA,,,,,, +68780,Ai28,EA054,"Both, females more",EA054-5,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +68781,Ai29,EA054,Equal participation,EA054-4,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +68782,Ai3,EA054,"Both, females more",EA054-5,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +68783,Ai30,EA054,"Both, females more",EA054-5,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +68784,Ai31,EA054,Equal participation,EA054-4,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +68785,Ai32,EA054,Equal participation,EA054-4,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p76, +68786,Ai33,EA054,"Both, males more",EA054-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p76, +68787,Ai34,EA054,Differentiated but equal,EA054-3,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +68788,Ai35,EA054,"Both, females more",EA054-5,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +68789,Ai36,EA054,"Both, females more",EA054-5,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +68790,Ai37,EA054,?,EA054-NA,,,,,, +68791,Ai38,EA054,Differentiated but equal,EA054-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +68792,Ai39,EA054,Differentiated but equal,EA054-3,,nadel1947,,1940,EthnographicAtlas_1967_p76, +68793,Ai4,EA054,?,EA054-NA,,,,,, +68794,Ai40,EA054,Equal participation,EA054-4,,nadel1947,,1940,EthnographicAtlas_1967_p76, +68795,Ai41,EA054,Equal participation,EA054-4,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +68796,Ai42,EA054,Differentiated but equal,EA054-3,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +68797,Ai43,EA054,"Both, females more",EA054-5,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +68798,Ai44,EA054,Equal participation,EA054-4,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p76, +68799,Ai45,EA054,?,EA054-NA,,,,,, +68800,Ai46,EA054,Equal participation,EA054-4,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p76, +68801,Ai47,EA054,?,EA054-NA,,,,,, +68802,Ai5,EA054,"Both, females more",EA054-5,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +68803,Ai6,EA054,Equal participation,EA054-4,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +68804,Ai7,EA054,"Both, females more",EA054-5,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +68805,Ai8,EA054,Equal participation,EA054-4,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +68806,Ai9,EA054,Equal participation,EA054-4,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +68807,Aj1,EA054,"Both, females more",EA054-5,,lawrance1957,,1950,EthnographicAtlas_1967_p76, +68808,Aj10,EA054,?,EA054-NA,,,,,, +68809,Aj11,EA054,Equal participation,EA054-4,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p80, +68810,Aj12,EA054,Differentiated but equal,EA054-3,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +68811,Aj13,EA054,"Both, females more",EA054-5,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +68812,Aj14,EA054,?,EA054-NA,,,,,, +68813,Aj15,EA054,Differentiated but equal,EA054-3,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +68814,Aj16,EA054,Differentiated but equal,EA054-3,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +68815,Aj17,EA054,Differentiated but equal,EA054-3,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +68816,Aj18,EA054,Differentiated but equal,EA054-3,,jensen1959,,1950,EthnographicAtlas_1967_p80, +68817,Aj19,EA054,"Both, females more",EA054-5,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p80, +68818,Aj2,EA054,Activity is absent,EA054-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +68819,Aj20,EA054,?,EA054-NA,,,,,, +68820,Aj21,EA054,"Both, females more",EA054-5,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +68821,Aj22,EA054,Equal participation,EA054-4,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +68822,Aj23,EA054,"Both, females more",EA054-5,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +68823,Aj24,EA054,"Both, females more",EA054-5,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +68824,Aj25,EA054,"Both, females more",EA054-5,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +68825,Aj26,EA054,"Both, females more",EA054-5,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +68826,Aj27,EA054,?,EA054-NA,,,,,, +68827,Aj28,EA054,Males alone,EA054-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +68828,Aj29,EA054,?,EA054-NA,,,,,, +68829,Aj3,EA054,Equal participation,EA054-4,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +68830,Aj30,EA054,?,EA054-NA,,,,,, +68831,Aj31,EA054,?,EA054-NA,,,,,, +68832,Aj4,EA054,"Both, females more",EA054-5,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +68833,Aj5,EA054,Females alone,EA054-6,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +68834,Aj6,EA054,Equal participation,EA054-4,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +68835,Aj7,EA054,"Both, females more",EA054-5,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +68836,Aj8,EA054,Differentiated but equal,EA054-3,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +68837,Aj9,EA054,Differentiated but equal,EA054-3,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +68838,Ca1,EA054,Equal participation,EA054-4,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +68839,Ca10,EA054,?,EA054-NA,,,,,, +68840,Ca11,EA054,"Both, males more",EA054-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +68841,Ca12,EA054,Males alone,EA054-1,Formerly mainly by slaves,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +68842,Ca13,EA054,Males alone,EA054-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +68843,Ca14,EA054,Males alone,EA054-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +68844,Ca15,EA054,Equal participation,EA054-4,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +68845,Ca16,EA054,Equal participation,EA054-4,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +68846,Ca17,EA054,Equal participation,EA054-4,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +68847,Ca18,EA054,?,EA054-NA,,,,,, +68848,Ca19,EA054,Differentiated but equal,EA054-3,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +68849,Ca2,EA054,?,EA054-NA,Performed by slaves,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +68850,Ca20,EA054,?,EA054-NA,,,,,, +68851,Ca21,EA054,?,EA054-NA,,,,,, +68852,Ca22,EA054,Equal participation,EA054-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +68853,Ca23,EA054,Equal participation,EA054-4,,jensen1959,,1950,EthnographicAtlas_1967_p80, +68854,Ca24,EA054,?,EA054-NA,,,,,, +68855,Ca25,EA054,Equal participation,EA054-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +68856,Ca26,EA054,?,EA054-NA,,,,,, +68857,Ca27,EA054,?,EA054-NA,,,,,, +68858,Ca28,EA054,"Both, males more",EA054-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +68859,Ca29,EA054,"Both, males more",EA054-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +68860,Ca3,EA054,"Both, males more",EA054-2,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p80, +68861,Ca30,EA054,?,EA054-NA,,,,,, +68862,Ca31,EA054,Males alone,EA054-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +68863,Ca32,EA054,Equal participation,EA054-4,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +68864,Ca33,EA054,Equal participation,EA054-4,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +68865,Ca34,EA054,?,EA054-NA,,,,,, +68866,Ca35,EA054,?,EA054-NA,,,,,, +68867,Ca36,EA054,?,EA054-NA,,,,,, +68868,Ca37,EA054,?,EA054-NA,,,,,, +68869,Ca38,EA054,?,EA054-NA,,,,,, +68870,Ca39,EA054,Males alone,EA054-1,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +68871,Ca4,EA054,Males alone,EA054-1,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +68872,Ca40,EA054,"Both, males more",EA054-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +68873,Ca41,EA054,"Both, females more",EA054-5,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +68874,Ca42,EA054,Differentiated but equal,EA054-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +68875,Ca43,EA054,?,EA054-NA,,,,,, +68876,Ca5,EA054,Females alone,EA054-6,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p80, +68877,Ca6,EA054,?,EA054-NA,Performed only by serfs,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p80, +68878,Ca7,EA054,"Both, males more",EA054-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +68879,Ca8,EA054,"Both, males more",EA054-2,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p80, +68880,Ca9,EA054,?,EA054-NA,,,,,, +68881,Cb1,EA054,?,EA054-NA,,,,,, +68882,Cb10,EA054,?,EA054-NA,,,,,, +68883,Cb11,EA054,?,EA054-NA,,,,,, +68884,Cb12,EA054,?,EA054-NA,,,,,, +68885,Cb13,EA054,?,EA054-NA,,,,,, +68886,Cb14,EA054,?,EA054-NA,,,,,, +68887,Cb15,EA054,?,EA054-NA,,,,,, +68888,Cb16,EA054,?,EA054-NA,,,,,, +68889,Cb17,EA054,Equal participation,EA054-4,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +68890,Cb18,EA054,"Both, males more",EA054-2,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p80, +68891,Cb19,EA054,Equal participation,EA054-4,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p80, +68892,Cb2,EA054,"Both, males more",EA054-2,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +68893,Cb20,EA054,"Both, males more",EA054-2,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +68894,Cb21,EA054,Activity is absent,EA054-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p84, +68895,Cb22,EA054,?,EA054-NA,Agriculture is largely performed by Negro serfs,coutouly1923;delmond1953,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +68896,Cb23,EA054,"Both, males more",EA054-2,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +68897,Cb24,EA054,?,EA054-NA,,,,,, +68898,Cb25,EA054,?,EA054-NA,,,,,, +68899,Cb26,EA054,"Both, males more",EA054-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +68900,Cb27,EA054,?,EA054-NA,,,,,, +68901,Cb28,EA054,?,EA054-NA,,,,,, +68902,Cb29,EA054,?,EA054-NA,,,,,, +68903,Cb3,EA054,"Both, males more",EA054-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +68904,Cb4,EA054,"Both, males more",EA054-2,,reid1930,,1920,EthnographicAtlas_1967_p80, +68905,Cb5,EA054,?,EA054-NA,,,,,, +68906,Cb6,EA054,Equal participation,EA054-4,,woodnd,,1920,EthnographicAtlas_1967_p80, +68907,Cb7,EA054,Equal participation,EA054-4,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p80, +68908,Cb8,EA054,?,EA054-NA,,,,,, +68909,Cb9,EA054,"Both, males more",EA054-2,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +68910,Cc1,EA054,Males alone,EA054-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +68911,Cc10,EA054,Differentiated but equal,EA054-3,Performed by serfs and slaves,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +68912,Cc11,EA054,?,EA054-NA,,,,,, +68913,Cc12,EA054,?,EA054-NA,Agriculture is done only by slaves and serfs,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +68914,Cc13,EA054,?,EA054-NA,,,,,, +68915,Cc14,EA054,?,EA054-NA,Agriculture is performed mainly by slaves and serfs,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +68916,Cc15,EA054,?,EA054-NA,,,,,, +68917,Cc16,EA054,?,EA054-NA,Performed exclusively by serfs and slaves,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +68918,Cc17,EA054,Males alone,EA054-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +68919,Cc18,EA054,?,EA054-NA,,,,,, +68920,Cc19,EA054,?,EA054-NA,,,,,, +68921,Cc2,EA054,"Both, females more",EA054-5,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +68922,Cc20,EA054,Males alone,EA054-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +68923,Cc3,EA054,Males alone,EA054-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +68924,Cc4,EA054,Males alone,EA054-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +68925,Cc5,EA054,?,EA054-NA,Performed exclusively by sedentary serfs,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +68926,Cc6,EA054,?,EA054-NA,,,,,, +68927,Cc7,EA054,?,EA054-NA,Performed by slaves or serfs,miner1953,Timbuctoo,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68928,Cc8,EA054,?,EA054-NA,,,,,, +68929,Cc9,EA054,?,EA054-NA,Agriculture is performed exclusively by slaves and serfs,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +68930,Cd1,EA054,Males alone,EA054-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +68931,Cd10,EA054,?,EA054-NA,,,,,, +68932,Cd11,EA054,Differentiated but equal,EA054-3,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p84, +68933,Cd12,EA054,Males alone,EA054-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +68934,Cd13,EA054,?,EA054-NA,,,,,, +68935,Cd14,EA054,?,EA054-NA,,,,,, +68936,Cd15,EA054,?,EA054-NA,,,,,, +68937,Cd16,EA054,?,EA054-NA,,,,,, +68938,Cd17,EA054,?,EA054-NA,,,,,, +68939,Cd18,EA054,?,EA054-NA,,,,,, +68940,Cd19,EA054,?,EA054-NA,,,,,, +68941,Cd2,EA054,"Both, males more",EA054-2,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +68942,Cd20,EA054,?,EA054-NA,,,,,, +68943,Cd21,EA054,?,EA054-NA,,,,,, +68944,Cd3,EA054,Males alone,EA054-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +68945,Cd4,EA054,Equal participation,EA054-4,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +68946,Cd5,EA054,"Both, males more",EA054-2,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +68947,Cd6,EA054,"Both, males more",EA054-2,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +68948,Cd7,EA054,?,EA054-NA,,,,,, +68949,Cd8,EA054,?,EA054-NA,,,,,, +68950,Cd9,EA054,?,EA054-NA,,,,,, +68951,Ce1,EA054,Equal participation,EA054-4,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +68952,Ce2,EA054,?,EA054-NA,,,,,, +68953,Ce3,EA054,?,EA054-NA,,,,,, +68954,Ce4,EA054,Males alone,EA054-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +68955,Ce5,EA054,Differentiated but equal,EA054-3,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +68956,Ce6,EA054,"Both, males more",EA054-2,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +68957,Ce7,EA054,Differentiated but equal,EA054-3,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +68958,Ce8,EA054,"Both, males more",EA054-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +68959,Cf1,EA054,Males alone,EA054-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +68960,Cf2,EA054,?,EA054-NA,,,,,, +68961,Cf3,EA054,Males alone,EA054-1,,munch1945,,1930,EthnographicAtlas_1967_p84, +68962,Cf4,EA054,"Both, males more",EA054-2,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +68963,Cf5,EA054,"Both, males more",EA054-2,,miner1939,,1930,EthnographicAtlas_1967_p84, +68964,Cg1,EA054,"Both, males more",EA054-2,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +68965,Cg2,EA054,"Both, males more",EA054-2,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +68966,Cg3,EA054,"Both, males more",EA054-2,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +68967,Cg4,EA054,Activity is absent,EA054-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +68968,Cg5,EA054,?,EA054-NA,,,,,, +68969,Ch1,EA054,Equal participation,EA054-4,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +68970,Ch10,EA054,?,EA054-NA,,,,,, +68971,Ch11,EA054,"Both, males more",EA054-2,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +68972,Ch2,EA054,"Both, males more",EA054-2,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +68973,Ch3,EA054,Equal participation,EA054-4,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +68974,Ch4,EA054,Differentiated but equal,EA054-3,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p84, +68975,Ch5,EA054,Equal participation,EA054-4,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +68976,Ch6,EA054,"Both, males more",EA054-2,,ember1954,,1910,EthnographicAtlas_1967_p84, +68977,Ch7,EA054,"Both, males more",EA054-2,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +68978,Ch8,EA054,"Both, males more",EA054-2,,hanzeli1955,,1940,EthnographicAtlas_1967_p84, +68979,Ch9,EA054,"Both, males more",EA054-2,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +68980,Ci1,EA054,Males alone,EA054-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +68981,Ci10,EA054,Males alone,EA054-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +68982,Ci11,EA054,"Both, males more",EA054-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +68983,Ci12,EA054,"Both, males more",EA054-2,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +68984,Ci2,EA054,"Both, females more",EA054-5,,grigolia1939,,1930,EthnographicAtlas_1967_p84, +68985,Ci3,EA054,?,EA054-NA,,,,,, +68986,Ci4,EA054,"Both, males more",EA054-2,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +68987,Ci5,EA054,Males alone,EA054-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +68988,Ci6,EA054,"Both, females more",EA054-5,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p84, +68989,Ci7,EA054,"Both, males more",EA054-2,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p84, +68990,Ci8,EA054,?,EA054-NA,,,,,, +68991,Ci9,EA054,?,EA054-NA,,,,,, +68992,Cj1,EA054,"Both, males more",EA054-2,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +68993,Cj10,EA054,"Both, males more",EA054-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +68994,Cj2,EA054,Activity is absent,EA054-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +68995,Cj3,EA054,Males alone,EA054-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +68996,Cj4,EA054,Males alone,EA054-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +68997,Cj5,EA054,Activity is absent,EA054-9,,dickson1949,,1930,EthnographicAtlas_1967_p88, +68998,Cj6,EA054,?,EA054-NA,,,,,, +68999,Cj7,EA054,Males alone,EA054-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +69000,Cj8,EA054,"Both, males more",EA054-2,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +69001,Cj9,EA054,?,EA054-NA,,,,,, +69002,Ea1,EA054,Males alone,EA054-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +69003,Ea10,EA054,"Both, males more",EA054-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +69004,Ea11,EA054,Males alone,EA054-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +69005,Ea12,EA054,Males alone,EA054-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +69006,Ea13,EA054,Males alone,EA054-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +69007,Ea2,EA054,Males alone,EA054-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +69008,Ea3,EA054,"Both, males more",EA054-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +69009,Ea4,EA054,Differentiated but equal,EA054-3,,barth1956b,,1950,EthnographicAtlas_1967_p88, +69010,Ea5,EA054,"Both, females more",EA054-5,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +69011,Ea6,EA054,?,EA054-NA,,,,,, +69012,Ea7,EA054,Males alone,EA054-1,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +69013,Ea8,EA054,Males alone,EA054-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +69014,Ea9,EA054,"Both, males more",EA054-2,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +69015,Eb1,EA054,Equal participation,EA054-4,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +69016,Eb2,EA054,Equal participation,EA054-4,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +69017,Eb3,EA054,Males alone,EA054-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +69018,Eb4,EA054,?,EA054-NA,,,,,, +69019,Eb5,EA054,?,EA054-NA,,,,,, +69020,Eb6,EA054,?,EA054-NA,,,,,, +69021,Eb7,EA054,Males alone,EA054-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +69022,Eb8,EA054,?,EA054-NA,,,,,, +69023,Ec1,EA054,Activity is absent,EA054-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +69024,Ec10,EA054,Activity is absent,EA054-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +69025,Ec11,EA054,Activity is absent,EA054-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +69026,Ec2,EA054,Females alone,EA054-6,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69027,Ec3,EA054,Activity is absent,EA054-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +69028,Ec4,EA054,Activity is absent,EA054-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +69029,Ec5,EA054,Activity is absent,EA054-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +69030,Ec6,EA054,Activity is absent,EA054-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p88, +69031,Ec7,EA054,"Both, females more",EA054-5,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +69032,Ec8,EA054,Activity is absent,EA054-9,,shimkin1939,,1900,EthnographicAtlas_1967_p88, +69033,Ec9,EA054,Females alone,EA054-6,,lattimore1933,,1920,EthnographicAtlas_1967_p88, +69034,Ed1,EA054,Equal participation,EA054-4,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +69035,Ed10,EA054,Equal participation,EA054-4,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +69036,Ed13,EA054,?,EA054-NA,,,,,, +69037,Ed14,EA054,?,EA054-NA,,,,,, +69038,Ed15a,EA054,?,EA054-NA,,,,,, +69039,Ed15b,EA054,"Both, males more",EA054-2,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +69040,Ed16,EA054,?,EA054-NA,,,,,, +69041,Ed2,EA054,Equal participation,EA054-4,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +69042,Ed3,EA054,"Both, males more",EA054-2,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +69043,Ed4,EA054,"Both, males more",EA054-2,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +69044,Ed5,EA054,Males alone,EA054-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69045,Ed6,EA054,Males alone,EA054-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +69046,Ed7,EA054,Equal participation,EA054-4,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +69047,Ed8,EA054,Equal participation,EA054-4,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +69048,Ed9,EA054,Differentiated but equal,EA054-3,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +69049,Ee1,EA054,"Both, males more",EA054-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +69050,Ee2,EA054,Equal participation,EA054-4,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +69051,Ee3,EA054,Equal participation,EA054-4,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +69052,Ee4,EA054,Equal participation,EA054-4,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +69053,Ee5,EA054,"Both, females more",EA054-5,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +69054,Ee6,EA054,Differentiated but equal,EA054-3,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +69055,Ee7,EA054,?,EA054-NA,,,,,, +69056,Ee8,EA054,Differentiated but equal,EA054-3,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +69057,Ef1,EA054,Equal participation,EA054-4,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +69058,Ef10,EA054,?,EA054-NA,,,,,, +69059,Ef11,EA054,Males alone,EA054-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +69060,Ef2,EA054,"Both, males more",EA054-2,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +69061,Ef3,EA054,?,EA054-NA,,,,,, +69062,Ef4,EA054,?,EA054-NA,,,,,, +69063,Ef5,EA054,"Both, males more",EA054-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +69064,Ef6,EA054,Differentiated but equal,EA054-3,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +69065,Ef7,EA054,"Both, males more",EA054-2,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +69066,Ef8,EA054,"Both, males more",EA054-2,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +69067,Ef9,EA054,Equal participation,EA054-4,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69068,Eg1,EA054,Males alone,EA054-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69069,Eg10,EA054,"Both, males more",EA054-2,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +69070,Eg11,EA054,?,EA054-NA,,,,,, +69071,Eg12,EA054,?,EA054-NA,,,,,, +69072,Eg13,EA054,"Both, males more",EA054-2,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69073,Eg14,EA054,Differentiated but equal,EA054-3,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +69074,Eg2,EA054,"Both, males more",EA054-2,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +69075,Eg3,EA054,Differentiated but equal,EA054-3,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +69076,Eg4,EA054,Activity is absent,EA054-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +69077,Eg5,EA054,Males alone,EA054-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +69078,Eg6,EA054,"Both, males more",EA054-2,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +69079,Eg7,EA054,Equal participation,EA054-4,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +69080,Eg8,EA054,"Both, males more",EA054-2,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +69081,Eg9,EA054,Equal participation,EA054-4,,elwin1939,,1930,EthnographicAtlas_1967_p92, +69082,Eh1,EA054,Activity is absent,EA054-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +69083,Eh10,EA054,?,EA054-NA,,,,,, +69084,Eh2,EA054,"Both, females more",EA054-5,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +69085,Eh3,EA054,Differentiated but equal,EA054-3,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +69086,Eh4,EA054,Activity is absent,EA054-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69087,Eh5,EA054,Males alone,EA054-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +69088,Eh6,EA054,"Both, males more",EA054-2,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p92, +69089,Eh7,EA054,Equal participation,EA054-4,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +69090,Eh8,EA054,Equal participation,EA054-4,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +69091,Eh9,EA054,Differentiated but equal,EA054-3,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +69092,Ei1,EA054,Differentiated but equal,EA054-3,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69093,Ei10,EA054,Differentiated but equal,EA054-3,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +69094,Ei11,EA054,Equal participation,EA054-4,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +69095,Ei12,EA054,?,EA054-NA,,,,,, +69096,Ei13,EA054,Equal participation,EA054-4,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +69097,Ei14,EA054,Equal participation,EA054-4,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +69098,Ei15,EA054,?,EA054-NA,,,,,, +69099,Ei16,EA054,Equal participation,EA054-4,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +69100,Ei17,EA054,?,EA054-NA,,,,,, +69101,Ei18,EA054,Equal participation,EA054-4,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +69102,Ei19,EA054,Equal participation,EA054-4,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +69103,Ei2,EA054,"Both, males more",EA054-2,,mills1922,,1920,EthnographicAtlas_1967_p92, +69104,Ei20,EA054,?,EA054-NA,,,,,, +69105,Ei3,EA054,"Both, males more",EA054-2,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +69106,Ei4,EA054,Equal participation,EA054-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +69107,Ei5,EA054,"Both, males more",EA054-2,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +69108,Ei6,EA054,Equal participation,EA054-4,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +69109,Ei7,EA054,Equal participation,EA054-4,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +69110,Ei8,EA054,"Both, females more",EA054-5,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +69111,Ei9,EA054,Differentiated but equal,EA054-3,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +69112,Ej1,EA054,Equal participation,EA054-4,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +69113,Ej10,EA054,"Both, males more",EA054-2,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +69114,Ej11,EA054,"Both, males more",EA054-2,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p92, +69115,Ej12,EA054,Equal participation,EA054-4,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +69116,Ej13,EA054,Differentiated but equal,EA054-3,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +69117,Ej14,EA054,Differentiated but equal,EA054-3,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69118,Ej15,EA054,Equal participation,EA054-4,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +69119,Ej16,EA054,"Both, females more",EA054-5,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +69120,Ej2,EA054,Equal participation,EA054-4,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +69121,Ej3,EA054,Activity is absent,EA054-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +69122,Ej4,EA054,"Both, males more",EA054-2,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +69123,Ej5,EA054,Equal participation,EA054-4,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +69124,Ej6,EA054,Activity is absent,EA054-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +69125,Ej7,EA054,"Both, females more",EA054-5,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +69126,Ej8,EA054,Equal participation,EA054-4,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +69127,Ej9,EA054,"Both, males more",EA054-2,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +69128,Ia1,EA054,"Both, females more",EA054-5,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +69129,Ia10,EA054,"Both, females more",EA054-5,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +69130,Ia11,EA054,"Both, females more",EA054-5,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +69131,Ia12,EA054,Equal participation,EA054-4,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +69132,Ia13,EA054,"Both, females more",EA054-5,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +69133,Ia14,EA054,Differentiated but equal,EA054-3,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +69134,Ia15,EA054,?,EA054-NA,,,,,, +69135,Ia16,EA054,Differentiated but equal,EA054-3,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +69136,Ia17,EA054,?,EA054-NA,,,,,, +69137,Ia18,EA054,?,EA054-NA,,,,,, +69138,Ia2,EA054,Equal participation,EA054-4,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +69139,Ia3,EA054,"Both, females more",EA054-5,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +69140,Ia4,EA054,Equal participation,EA054-4,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p92, +69141,Ia5,EA054,Equal participation,EA054-4,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +69142,Ia6,EA054,"Both, females more",EA054-5,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69143,Ia7,EA054,Equal participation,EA054-4,,fox1954,,1950,EthnographicAtlas_1967_p92, +69144,Ia8,EA054,?,EA054-NA,,,,,, +69145,Ia9,EA054,Equal participation,EA054-4,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +69146,Ib1,EA054,Equal participation,EA054-4,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69147,Ib2,EA054,Differentiated but equal,EA054-3,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69148,Ib3,EA054,Males alone,EA054-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +69149,Ib4,EA054,Equal participation,EA054-4,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +69150,Ib5,EA054,Differentiated but equal,EA054-3,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +69151,Ib6,EA054,"Both, males more",EA054-2,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +69152,Ib7,EA054,Differentiated but equal,EA054-3,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +69153,Ib8,EA054,?,EA054-NA,,,,,, +69154,Ib9,EA054,?,EA054-NA,,,,,, +69155,Ic1,EA054,"Both, males more",EA054-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69156,Ic10,EA054,Equal participation,EA054-4,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +69157,Ic11,EA054,Equal participation,EA054-4,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69158,Ic12,EA054,Equal participation,EA054-4,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +69159,Ic13,EA054,?,EA054-NA,,,,,, +69160,Ic2,EA054,"Both, females more",EA054-5,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +69161,Ic3,EA054,Differentiated but equal,EA054-3,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +69162,Ic4,EA054,?,EA054-NA,,,,,, +69163,Ic5,EA054,Equal participation,EA054-4,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +69164,Ic6,EA054,"Both, females more",EA054-5,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +69165,Ic7,EA054,"Both, males more",EA054-2,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +69166,Ic8,EA054,?,EA054-NA,,,,,, +69167,Ic9,EA054,"Both, females more",EA054-5,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p96, +69168,Id1,EA054,Activity is absent,EA054-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +69169,Id10,EA054,Activity is absent,EA054-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +69170,Id11,EA054,Activity is absent,EA054-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +69171,Id12,EA054,Activity is absent,EA054-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +69172,Id13,EA054,Activity is absent,EA054-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +69173,Id2,EA054,Activity is absent,EA054-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +69174,Id3,EA054,Activity is absent,EA054-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +69175,Id4,EA054,Activity is absent,EA054-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +69176,Id5,EA054,Activity is absent,EA054-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +69177,Id6,EA054,Activity is absent,EA054-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +69178,Id7,EA054,Activity is absent,EA054-9,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +69179,Id8,EA054,Activity is absent,EA054-9,,roth1890,,1830,EthnographicAtlas_1967_p96, +69180,Id9,EA054,Activity is absent,EA054-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +69181,Ie1,EA054,Differentiated but equal,EA054-3,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69182,Ie10,EA054,Equal participation,EA054-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +69183,Ie11,EA054,"Both, females more",EA054-5,,bowers1964,,1950,EthnographicAtlas_1967_p96, +69184,Ie12,EA054,Equal participation,EA054-4,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69185,Ie13,EA054,Equal participation,EA054-4,,landtman1927,,1920,EthnographicAtlas_1967_p96, +69186,Ie14,EA054,"Both, females more",EA054-5,,haddon1908,,1900,EthnographicAtlas_1967_p96, +69187,Ie15,EA054,Differentiated but equal,EA054-3,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69188,Ie16,EA054,"Both, females more",EA054-5,,williams194041,,1940,EthnographicAtlas_1967_p96, +69189,Ie17,EA054,"Both, females more",EA054-5,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +69190,Ie18,EA054,"Both, males more",EA054-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +69191,Ie19,EA054,"Both, females more",EA054-5,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +69192,Ie2,EA054,Differentiated but equal,EA054-3,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +69193,Ie20,EA054,Equal participation,EA054-4,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +69194,Ie21,EA054,Equal participation,EA054-4,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +69195,Ie22,EA054,Equal participation,EA054-4,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +69196,Ie23,EA054,Differentiated but equal,EA054-3,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +69197,Ie24,EA054,Differentiated but equal,EA054-3,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +69198,Ie25,EA054,Differentiated but equal,EA054-3,,williamson1912,,1920,EthnographicAtlas_1967_p96, +69199,Ie26,EA054,"Both, males more",EA054-2,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +69200,Ie27,EA054,Females alone,EA054-6,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +69201,Ie28,EA054,"Both, females more",EA054-5,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +69202,Ie29,EA054,"Both, females more",EA054-5,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69203,Ie3,EA054,"Both, males more",EA054-2,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69204,Ie30,EA054,?,EA054-NA,,,,,, +69205,Ie31,EA054,"Both, females more",EA054-5,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +69206,Ie32,EA054,"Both, males more",EA054-2,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +69207,Ie33,EA054,?,EA054-NA,,,,,, +69208,Ie34,EA054,?,EA054-NA,,,,,, +69209,Ie35,EA054,Equal participation,EA054-4,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +69210,Ie36,EA054,?,EA054-NA,,,,,, +69211,Ie37,EA054,?,EA054-NA,,,,,, +69212,Ie38,EA054,Differentiated but equal,EA054-3,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +69213,Ie39,EA054,Males alone,EA054-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +69214,Ie4,EA054,Differentiated but equal,EA054-3,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69215,Ie5,EA054,Equal participation,EA054-4,,williams1936,,1930,EthnographicAtlas_1967_p96, +69216,Ie6,EA054,"Both, females more",EA054-5,,held1947,,1930,EthnographicAtlas_1967_p96, +69217,Ie7,EA054,Differentiated but equal,EA054-3,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +69218,Ie8,EA054,"Both, males more",EA054-2,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +69219,Ie9,EA054,"Both, females more",EA054-5,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +69220,If1,EA054,"Both, females more",EA054-5,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69221,If10,EA054,?,EA054-NA,,,,,, +69222,If11,EA054,Males alone,EA054-1,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +69223,If12,EA054,Males alone,EA054-1,,mason1954,,1940,EthnographicAtlas_1967_p100, +69224,If13,EA054,Equal participation,EA054-4,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +69225,If14,EA054,"Both, females more",EA054-5,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +69226,If15,EA054,Females alone,EA054-6,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +69227,If16,EA054,"Both, females more",EA054-5,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +69228,If17,EA054,"Both, males more",EA054-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +69229,If2,EA054,"Both, males more",EA054-2,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +69230,If3,EA054,"Both, males more",EA054-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +69231,If4,EA054,Differentiated but equal,EA054-3,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +69232,If5,EA054,"Both, males more",EA054-2,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +69233,If6,EA054,"Both, females more",EA054-5,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +69234,If7,EA054,Equal participation,EA054-4,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +69235,If8,EA054,Equal participation,EA054-4,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +69236,If9,EA054,"Both, females more",EA054-5,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +69237,Ig1,EA054,Equal participation,EA054-4,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +69238,Ig10,EA054,"Both, females more",EA054-5,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +69239,Ig11,EA054,"Both, females more",EA054-5,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +69240,Ig12,EA054,Differentiated but equal,EA054-3,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p100, +69241,Ig13,EA054,"Both, males more",EA054-2,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +69242,Ig14,EA054,Differentiated but equal,EA054-3,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +69243,Ig15,EA054,?,EA054-NA,,,,,, +69244,Ig16,EA054,?,EA054-NA,,,,,, +69245,Ig17,EA054,?,EA054-NA,,,,,, +69246,Ig18,EA054,?,EA054-NA,,,,,, +69247,Ig19,EA054,?,EA054-NA,,,,,, +69248,Ig2,EA054,Differentiated but equal,EA054-3,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +69249,Ig20,EA054,Differentiated but equal,EA054-3,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +69250,Ig21,EA054,Differentiated but equal,EA054-3,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +69251,Ig3,EA054,"Both, females more",EA054-5,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +69252,Ig4,EA054,"Both, females more",EA054-5,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +69253,Ig5,EA054,Equal participation,EA054-4,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +69254,Ig6,EA054,Equal participation,EA054-4,,ivens1927,,1900,EthnographicAtlas_1967_p100, +69255,Ig7,EA054,Equal participation,EA054-4,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +69256,Ig8,EA054,?,EA054-NA,,,,,, +69257,Ig9,EA054,Activity is absent,EA054-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +69258,Ih1,EA054,?,EA054-NA,,,,,, +69259,Ih10,EA054,Equal participation,EA054-4,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69260,Ih11,EA054,?,EA054-NA,,,,,, +69261,Ih12,EA054,?,EA054-NA,,,,,, +69262,Ih13,EA054,?,EA054-NA,,,,,, +69263,Ih14,EA054,"Both, males more",EA054-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +69264,Ih2,EA054,Equal participation,EA054-4,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69265,Ih3,EA054,?,EA054-NA,,,,,, +69266,Ih4,EA054,"Both, males more",EA054-2,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69267,Ih5,EA054,"Both, females more",EA054-5,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p100, +69268,Ih6,EA054,Males alone,EA054-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +69269,Ih7,EA054,Females alone,EA054-6,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +69270,Ih8,EA054,"Both, males more",EA054-2,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +69271,Ih9,EA054,"Both, females more",EA054-5,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69272,Ii1,EA054,Differentiated but equal,EA054-3,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +69273,Ii10,EA054,?,EA054-NA,,,,,, +69274,Ii12,EA054,"Both, males more",EA054-2,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69275,Ii13,EA054,Males alone,EA054-1,,burrows1937,,1830,EthnographicAtlas_1967_p100, +69276,Ii14,EA054,"Both, males more",EA054-2,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +69277,Ii2,EA054,"Both, females more",EA054-5,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +69278,Ii3,EA054,Females alone,EA054-6,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +69279,Ii4,EA054,"Both, males more",EA054-2,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +69280,Ii5,EA054,"Both, females more",EA054-5,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +69281,Ii6,EA054,Males alone,EA054-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +69282,Ii7,EA054,Females alone,EA054-6,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +69283,Ii8,EA054,Males alone,EA054-1,,burrows1936,,1840,EthnographicAtlas_1967_p100, +69284,Ii9,EA054,Equal participation,EA054-4,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +69285,Ij1,EA054,Females alone,EA054-6,,buck1934,,1820,EthnographicAtlas_1967_p100, +69286,Ij10,EA054,?,EA054-NA,,,,,, +69287,Ij2,EA054,"Both, males more",EA054-2,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +69288,Ij3,EA054,"Both, males more",EA054-2,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +69289,Ij4,EA054,?,EA054-NA,,,,,, +69290,Ij5,EA054,"Both, males more",EA054-2,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +69291,Ij6,EA054,Males alone,EA054-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +69292,Ij7,EA054,Equal participation,EA054-4,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +69293,Ij8,EA054,"Both, males more",EA054-2,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +69294,Ij9,EA054,"Both, males more",EA054-2,,metraux1940,,1860,EthnographicAtlas_1967_p104, +69295,Na1,EA054,Activity is absent,EA054-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +69296,Na10,EA054,Activity is absent,EA054-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +69297,Na11,EA054,Activity is absent,EA054-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +69298,Na12,EA054,Activity is absent,EA054-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +69299,Na13,EA054,Activity is absent,EA054-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +69300,Na14,EA054,Activity is absent,EA054-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +69301,Na15,EA054,Activity is absent,EA054-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +69302,Na16,EA054,Activity is absent,EA054-9,,osgood1931,,1860,EthnographicAtlas_1967_p104, +69303,Na17,EA054,Activity is absent,EA054-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69304,Na19,EA054,Activity is absent,EA054-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +69305,Na2,EA054,Activity is absent,EA054-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +69306,Na20,EA054,Activity is absent,EA054-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +69307,Na21,EA054,Activity is absent,EA054-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +69308,Na22,EA054,Activity is absent,EA054-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +69309,Na23,EA054,Activity is absent,EA054-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +69310,Na24,EA054,Activity is absent,EA054-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +69311,Na25,EA054,Activity is absent,EA054-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +69312,Na26,EA054,Activity is absent,EA054-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +69313,Na27,EA054,Activity is absent,EA054-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +69314,Na28,EA054,Activity is absent,EA054-9,,jenness1937,,1880,EthnographicAtlas_1967_p104, +69315,Na29,EA054,Activity is absent,EA054-9,,goddard1916,,1850,EthnographicAtlas_1967_p104, +69316,Na3,EA054,Activity is absent,EA054-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +69317,Na30,EA054,Activity is absent,EA054-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +69318,Na31,EA054,Activity is absent,EA054-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +69319,Na32,EA054,Activity is absent,EA054-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +69320,Na33,EA054,Activity is absent,EA054-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +69321,Na34,EA054,Activity is absent,EA054-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +69322,Na35,EA054,Activity is absent,EA054-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +69323,Na36,EA054,"Both, females more",EA054-5,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +69324,Na37,EA054,Activity is absent,EA054-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +69325,Na38,EA054,Activity is absent,EA054-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +69326,Na39,EA054,Activity is absent,EA054-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +69327,Na4,EA054,Activity is absent,EA054-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +69328,Na40,EA054,Females alone,EA054-6,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +69329,Na41,EA054,Activity is absent,EA054-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +69330,Na42,EA054,"Both, females more",EA054-5,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +69331,Na43,EA054,Activity is absent,EA054-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +69332,Na44,EA054,?,EA054-NA,,,,,, +69333,Na45,EA054,Activity is absent,EA054-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +69334,Na5,EA054,Activity is absent,EA054-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +69335,Na6,EA054,Activity is absent,EA054-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +69336,Na7,EA054,Activity is absent,EA054-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +69337,Na8,EA054,Activity is absent,EA054-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +69338,Na9,EA054,Activity is absent,EA054-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69339,Nb1,EA054,Activity is absent,EA054-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +69340,Nb10,EA054,Activity is absent,EA054-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +69341,Nb11,EA054,Activity is absent,EA054-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +69342,Nb12,EA054,Activity is absent,EA054-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +69343,Nb13,EA054,Activity is absent,EA054-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +69344,Nb14,EA054,Activity is absent,EA054-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +69345,Nb15,EA054,Activity is absent,EA054-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +69346,Nb16,EA054,Activity is absent,EA054-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +69347,Nb17,EA054,Activity is absent,EA054-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +69348,Nb18,EA054,Activity is absent,EA054-9,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +69349,Nb19,EA054,Activity is absent,EA054-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +69350,Nb2,EA054,Activity is absent,EA054-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +69351,Nb20,EA054,Activity is absent,EA054-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +69352,Nb21,EA054,Activity is absent,EA054-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +69353,Nb22,EA054,Activity is absent,EA054-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +69354,Nb23,EA054,Activity is absent,EA054-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +69355,Nb24,EA054,Activity is absent,EA054-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +69356,Nb25,EA054,Activity is absent,EA054-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +69357,Nb26,EA054,Activity is absent,EA054-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +69358,Nb27,EA054,Activity is absent,EA054-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +69359,Nb28,EA054,Activity is absent,EA054-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +69360,Nb29,EA054,Activity is absent,EA054-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +69361,Nb3,EA054,Activity is absent,EA054-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +69362,Nb30,EA054,Activity is absent,EA054-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +69363,Nb31,EA054,Activity is absent,EA054-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +69364,Nb32,EA054,Activity is absent,EA054-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +69365,Nb33,EA054,Activity is absent,EA054-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +69366,Nb34,EA054,Activity is absent,EA054-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +69367,Nb35,EA054,Activity is absent,EA054-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +69368,Nb36,EA054,Activity is absent,EA054-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +69369,Nb37,EA054,Activity is absent,EA054-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +69370,Nb38,EA054,Activity is absent,EA054-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +69371,Nb39,EA054,Activity is absent,EA054-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +69372,Nb4,EA054,Activity is absent,EA054-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +69373,Nb5,EA054,Activity is absent,EA054-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +69374,Nb6,EA054,Activity is absent,EA054-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +69375,Nb7,EA054,Activity is absent,EA054-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +69376,Nb8,EA054,Activity is absent,EA054-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +69377,Nb9,EA054,Activity is absent,EA054-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +69378,Nc1,EA054,Activity is absent,EA054-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +69379,Nc10,EA054,Activity is absent,EA054-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +69380,Nc11,EA054,Activity is absent,EA054-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +69381,Nc12,EA054,Activity is absent,EA054-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +69382,Nc13,EA054,Activity is absent,EA054-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +69383,Nc14,EA054,Activity is absent,EA054-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +69384,Nc15,EA054,Activity is absent,EA054-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +69385,Nc16,EA054,Activity is absent,EA054-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +69386,Nc17,EA054,Activity is absent,EA054-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +69387,Nc18,EA054,Activity is absent,EA054-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +69388,Nc19,EA054,Activity is absent,EA054-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +69389,Nc2,EA054,Activity is absent,EA054-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +69390,Nc20,EA054,Activity is absent,EA054-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +69391,Nc21,EA054,Activity is absent,EA054-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +69392,Nc22,EA054,Activity is absent,EA054-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +69393,Nc23,EA054,Activity is absent,EA054-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +69394,Nc24,EA054,Activity is absent,EA054-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +69395,Nc25,EA054,Activity is absent,EA054-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +69396,Nc26,EA054,Activity is absent,EA054-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +69397,Nc27,EA054,Activity is absent,EA054-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +69398,Nc28,EA054,Activity is absent,EA054-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +69399,Nc29,EA054,Activity is absent,EA054-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +69400,Nc3,EA054,Activity is absent,EA054-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +69401,Nc30,EA054,Activity is absent,EA054-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +69402,Nc31,EA054,Activity is absent,EA054-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +69403,Nc32,EA054,Activity is absent,EA054-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +69404,Nc33,EA054,Activity is absent,EA054-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +69405,Nc34,EA054,Activity is absent,EA054-9,,meigs1939,,1880,EthnographicAtlas_1967_p108, +69406,Nc4,EA054,Activity is absent,EA054-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +69407,Nc5,EA054,Activity is absent,EA054-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +69408,Nc6,EA054,Activity is absent,EA054-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +69409,Nc7,EA054,Activity is absent,EA054-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +69410,Nc8,EA054,Activity is absent,EA054-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +69411,Nc9,EA054,Activity is absent,EA054-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +69412,Nd1,EA054,Activity is absent,EA054-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +69413,Nd10,EA054,Activity is absent,EA054-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +69414,Nd11,EA054,Activity is absent,EA054-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +69415,Nd12,EA054,Activity is absent,EA054-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +69416,Nd13,EA054,Activity is absent,EA054-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +69417,Nd14,EA054,Activity is absent,EA054-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +69418,Nd15,EA054,Activity is absent,EA054-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +69419,Nd16,EA054,Activity is absent,EA054-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +69420,Nd17,EA054,Activity is absent,EA054-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +69421,Nd18,EA054,Activity is absent,EA054-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +69422,Nd19,EA054,Activity is absent,EA054-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +69423,Nd2,EA054,Differentiated but equal,EA054-3,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +69424,Nd20,EA054,Activity is absent,EA054-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +69425,Nd21,EA054,Activity is absent,EA054-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +69426,Nd22,EA054,Activity is absent,EA054-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +69427,Nd23,EA054,Activity is absent,EA054-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +69428,Nd24,EA054,Activity is absent,EA054-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +69429,Nd25,EA054,Activity is absent,EA054-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +69430,Nd26,EA054,Activity is absent,EA054-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +69431,Nd27,EA054,Activity is absent,EA054-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +69432,Nd28,EA054,Activity is absent,EA054-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +69433,Nd29,EA054,Activity is absent,EA054-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +69434,Nd3,EA054,"Both, males more",EA054-2,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +69435,Nd30,EA054,Activity is absent,EA054-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +69436,Nd31,EA054,?,EA054-NA,,,,,, +69437,Nd32,EA054,Activity is absent,EA054-9,"But for the Panamint of Death Valley 'equal participation' (EA054 code ""4""), with no specialization specified (EA065 code ""9"")",driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +69438,Nd33,EA054,Activity is absent,EA054-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +69439,Nd34,EA054,Activity is absent,EA054-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +69440,Nd35,EA054,Equal participation,EA054-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +69441,Nd36,EA054,Activity is absent,EA054-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +69442,Nd37,EA054,?,EA054-NA,,,,,, +69443,Nd38,EA054,?,EA054-NA,,,,,, +69444,Nd39,EA054,?,EA054-NA,,,,,, +69445,Nd4,EA054,Activity is absent,EA054-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +69446,Nd40,EA054,Activity is absent,EA054-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +69447,Nd41,EA054,Activity is absent,EA054-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +69448,Nd42,EA054,Activity is absent,EA054-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +69449,Nd43,EA054,Activity is absent,EA054-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +69450,Nd44,EA054,Activity is absent,EA054-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +69451,Nd45,EA054,Activity is absent,EA054-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +69452,Nd46,EA054,Activity is absent,EA054-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +69453,Nd47,EA054,Activity is absent,EA054-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +69454,Nd48,EA054,Activity is absent,EA054-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +69455,Nd49,EA054,Activity is absent,EA054-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +69456,Nd5,EA054,Activity is absent,EA054-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +69457,Nd50,EA054,Activity is absent,EA054-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +69458,Nd51,EA054,?,EA054-NA,,,,,, +69459,Nd52,EA054,"Both, males more",EA054-2,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +69460,Nd53,EA054,Differentiated but equal,EA054-3,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +69461,Nd54,EA054,?,EA054-NA,,,,,, +69462,Nd55,EA054,?,EA054-NA,,,,,, +69463,Nd56,EA054,?,EA054-NA,,,,,, +69464,Nd57,EA054,Activity is absent,EA054-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +69465,Nd58,EA054,Activity is absent,EA054-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +69466,Nd59,EA054,Activity is absent,EA054-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +69467,Nd6,EA054,Activity is absent,EA054-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +69468,Nd60,EA054,Activity is absent,EA054-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +69469,Nd61,EA054,Activity is absent,EA054-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +69470,Nd62,EA054,Activity is absent,EA054-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +69471,Nd63,EA054,Activity is absent,EA054-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +69472,Nd64,EA054,Activity is absent,EA054-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +69473,Nd65,EA054,"Both, males more",EA054-2,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +69474,Nd66,EA054,Equal participation,EA054-4,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +69475,Nd67,EA054,Equal participation,EA054-4,,gifford1936,,1870,EthnographicAtlas_1967_p112, +69476,Nd7,EA054,Activity is absent,EA054-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +69477,Nd8,EA054,Activity is absent,EA054-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +69478,Nd9,EA054,Activity is absent,EA054-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +69479,Ne1,EA054,Activity is absent,EA054-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +69480,Ne10,EA054,Females alone,EA054-6,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +69481,Ne11,EA054,Activity is absent,EA054-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +69482,Ne12,EA054,Activity is absent,EA054-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +69483,Ne13,EA054,Activity is absent,EA054-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +69484,Ne14,EA054,Activity is absent,EA054-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +69485,Ne15,EA054,Females alone,EA054-6,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +69486,Ne16,EA054,Activity is absent,EA054-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +69487,Ne17,EA054,Activity is absent,EA054-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +69488,Ne18,EA054,Activity is absent,EA054-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +69489,Ne19,EA054,Activity is absent,EA054-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +69490,Ne2,EA054,Activity is absent,EA054-9,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +69491,Ne20,EA054,Females alone,EA054-6,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +69492,Ne21,EA054,?,EA054-NA,,,,,, +69493,Ne3,EA054,Activity is absent,EA054-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +69494,Ne4,EA054,?,EA054-NA,,,,,, +69495,Ne5,EA054,Females alone,EA054-6,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +69496,Ne6,EA054,Females alone,EA054-6,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +69497,Ne7,EA054,Activity is absent,EA054-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +69498,Ne8,EA054,Activity is absent,EA054-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +69499,Ne9,EA054,Activity is absent,EA054-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +69500,Nf10,EA054,?,EA054-NA,,,,,, +69501,Nf11,EA054,"Both, females more",EA054-5,,whitman1937,,1870,EthnographicAtlas_1967_p116, +69502,Nf12,EA054,Females alone,EA054-6,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +69503,Nf13,EA054,Females alone,EA054-6,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69504,Nf14,EA054,"Both, females more",EA054-5,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +69505,Nf15,EA054,?,EA054-NA,,,,,, +69506,Nf2,EA054,"Both, females more",EA054-5,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +69507,Nf3,EA054,"Both, females more",EA054-5,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +69508,Nf4,EA054,Females alone,EA054-6,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +69509,Nf5,EA054,Females alone,EA054-6,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +69510,Nf6,EA054,Females alone,EA054-6,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +69511,Nf7,EA054,Females alone,EA054-6,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69512,Nf8,EA054,"Both, females more",EA054-5,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +69513,Nf9,EA054,Females alone,EA054-6,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +69514,Ng1,EA054,Females alone,EA054-6,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +69515,Ng10,EA054,Females alone,EA054-6,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +69516,Ng11,EA054,Equal participation,EA054-4,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +69517,Ng12,EA054,"Both, females more",EA054-5,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +69518,Ng13,EA054,?,EA054-NA,,,,,, +69519,Ng14,EA054,?,EA054-NA,,,,,, +69520,Ng15,EA054,?,EA054-NA,,,,,, +69521,Ng2,EA054,?,EA054-NA,,,,,, +69522,Ng3,EA054,"Both, females more",EA054-5,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +69523,Ng4,EA054,?,EA054-NA,,,,,, +69524,Ng5,EA054,"Both, females more",EA054-5,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +69525,Ng6,EA054,"Both, females more",EA054-5,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +69526,Ng7,EA054,"Both, females more",EA054-5,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +69527,Ng8,EA054,"Both, females more",EA054-5,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +69528,Ng9,EA054,?,EA054-NA,,,,,, +69529,Nh1,EA054,Equal participation,EA054-4,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +69530,Nh10,EA054,?,EA054-NA,,,,,, +69531,Nh11,EA054,Males alone,EA054-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +69532,Nh12,EA054,"Both, males more",EA054-2,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +69533,Nh13,EA054,"Both, males more",EA054-2,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +69534,Nh14,EA054,?,EA054-NA,,,,,, +69535,Nh15,EA054,"Both, females more",EA054-5,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +69536,Nh16,EA054,Equal participation,EA054-4,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69537,Nh17,EA054,"Both, females more",EA054-5,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +69538,Nh18,EA054,Males alone,EA054-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69539,Nh19,EA054,Equal participation,EA054-4,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +69540,Nh2,EA054,Males alone,EA054-1,,dozier1954,,1950,EthnographicAtlas_1967_p116, +69541,Nh20,EA054,Equal participation,EA054-4,,gifford1931,,1860,EthnographicAtlas_1967_p116, +69542,Nh21,EA054,Equal participation,EA054-4,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69543,Nh22,EA054,Equal participation,EA054-4,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +69544,Nh23,EA054,"Both, females more",EA054-5,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +69545,Nh24,EA054,Activity is absent,EA054-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +69546,Nh25,EA054,Males alone,EA054-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +69547,Nh26,EA054,?,EA054-NA,,,,,, +69548,Nh27,EA054,?,EA054-NA,,,,,, +69549,Nh3,EA054,"Both, males more",EA054-2,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +69550,Nh4,EA054,"Both, males more",EA054-2,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +69551,Nh5,EA054,"Both, males more",EA054-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +69552,Nh6,EA054,"Both, males more",EA054-2,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +69553,Nh7,EA054,"Both, males more",EA054-2,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +69554,Nh8,EA054,Males alone,EA054-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +69555,Nh9,EA054,Males alone,EA054-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p116, +69556,Ni1,EA054,Males alone,EA054-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +69557,Ni2,EA054,"Both, males more",EA054-2,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +69558,Ni3,EA054,"Both, males more",EA054-2,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +69559,Ni4,EA054,Activity is absent,EA054-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +69560,Ni5,EA054,Activity is absent,EA054-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +69561,Ni6,EA054,"Both, males more",EA054-2,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +69562,Ni7,EA054,Males alone,EA054-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +69563,Ni8,EA054,?,EA054-NA,,,,,, +69564,Ni9,EA054,?,EA054-NA,,,,,, +69565,Nj1,EA054,Males alone,EA054-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69566,Nj10,EA054,Males alone,EA054-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69567,Nj11,EA054,?,EA054-NA,,,,,, +69568,Nj12,EA054,?,EA054-NA,,,,,, +69569,Nj13,EA054,?,EA054-NA,,,,,, +69570,Nj14,EA054,?,EA054-NA,,,,,, +69571,Nj2,EA054,Differentiated but equal,EA054-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +69572,Nj3,EA054,Males alone,EA054-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +69573,Nj4,EA054,"Both, males more",EA054-2,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +69574,Nj5,EA054,?,EA054-NA,,,,,, +69575,Nj6,EA054,?,EA054-NA,,,,,, +69576,Nj7,EA054,"Both, males more",EA054-2,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69577,Nj8,EA054,Males alone,EA054-1,,foster1948,,1500,EthnographicAtlas_1967_p120, +69578,Nj9,EA054,Males alone,EA054-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +69579,Sa1,EA054,Males alone,EA054-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +69580,Sa10,EA054,Males alone,EA054-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +69581,Sa11,EA054,?,EA054-NA,,,,,, +69582,Sa12,EA054,Males alone,EA054-1,,stone1948,,1948,EthnographicAtlas_1967_p120, +69583,Sa13,EA054,Males alone,EA054-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +69584,Sa14,EA054,?,EA054-NA,,,,,, +69585,Sa15,EA054,?,EA054-NA,,,,,, +69586,Sa16,EA054,?,EA054-NA,,,,,, +69587,Sa17,EA054,?,EA054-NA,,,,,, +69588,Sa2,EA054,?,EA054-NA,,,,,, +69589,Sa3,EA054,Males alone,EA054-1,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +69590,Sa4,EA054,Equal participation,EA054-4,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +69591,Sa5,EA054,Equal participation,EA054-4,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +69592,Sa6,EA054,Males alone,EA054-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +69593,Sa7,EA054,"Both, females more",EA054-5,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +69594,Sa8,EA054,Males alone,EA054-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p120, +69595,Sa9,EA054,Females alone,EA054-6,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +69596,Sb1,EA054,"Both, females more",EA054-5,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +69597,Sb2,EA054,Equal participation,EA054-4,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +69598,Sb3,EA054,?,EA054-NA,,,,,, +69599,Sb4,EA054,Differentiated but equal,EA054-3,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +69600,Sb5,EA054,Activity is absent,EA054-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p120, +69601,Sb6,EA054,Females alone,EA054-6,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +69602,Sb7,EA054,Differentiated but equal,EA054-3,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +69603,Sb8,EA054,"Both, females more",EA054-5,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +69604,Sb9,EA054,"Both, males more",EA054-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +69605,Sc1,EA054,"Both, females more",EA054-5,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +69606,Sc10,EA054,"Both, males more",EA054-2,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +69607,Sc11,EA054,Differentiated but equal,EA054-3,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +69608,Sc12,EA054,"Both, females more",EA054-5,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +69609,Sc13,EA054,"Both, females more",EA054-5,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +69610,Sc14,EA054,Equal participation,EA054-4,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +69611,Sc15,EA054,"Both, females more",EA054-5,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +69612,Sc16,EA054,"Both, females more",EA054-5,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +69613,Sc17,EA054,"Both, females more",EA054-5,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +69614,Sc18,EA054,"Both, females more",EA054-5,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +69615,Sc2,EA054,"Both, males more",EA054-2,,leedsnd,,1950,EthnographicAtlas_1967_p120, +69616,Sc3,EA054,Differentiated but equal,EA054-3,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +69617,Sc4,EA054,"Both, males more",EA054-2,"But among the agricultural Guahibo 'males alone' (EA054 code ""1""), with no specialization specified (EA065 code ""9"")",wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +69618,Sc5,EA054,"Both, females more",EA054-5,,farabee1918,,1900,EthnographicAtlas_1967_p120, +69619,Sc6,EA054,"Both, females more",EA054-5,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69620,Sc7,EA054,"Both, females more",EA054-5,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +69621,Sc8,EA054,"Both, females more",EA054-5,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +69622,Sc9,EA054,"Both, females more",EA054-5,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +69623,Sd1,EA054,Differentiated but equal,EA054-3,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69624,Sd2,EA054,"Both, males more",EA054-2,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +69625,Sd3,EA054,Equal participation,EA054-4,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +69626,Sd4,EA054,"Both, females more",EA054-5,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +69627,Sd5,EA054,Differentiated but equal,EA054-3,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +69628,Sd6,EA054,Activity is absent,EA054-9,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +69629,Sd7,EA054,"Both, females more",EA054-5,,fock1963,,1950,EthnographicAtlas_1967_p120, +69630,Sd8,EA054,?,EA054-NA,,,,,, +69631,Sd9,EA054,"Both, males more",EA054-2,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69632,Se1,EA054,Equal participation,EA054-4,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +69633,Se10,EA054,?,EA054-NA,,,,,, +69634,Se11,EA054,"Both, females more",EA054-5,,prost1965,,1960,EthnographicAtlas_1967_p124, +69635,Se12,EA054,?,EA054-NA,,,,,, +69636,Se2,EA054,"Both, females more",EA054-5,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +69637,Se3,EA054,"Both, females more",EA054-5,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +69638,Se4,EA054,"Both, females more",EA054-5,,fejos1943,,1940,EthnographicAtlas_1967_p120, +69639,Se5,EA054,"Both, females more",EA054-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +69640,Se6,EA054,"Both, females more",EA054-5,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +69641,Se7,EA054,?,EA054-NA,,,,,, +69642,Se8,EA054,Differentiated but equal,EA054-3,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +69643,Se9,EA054,Females alone,EA054-6,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +69644,Sf1,EA054,"Both, males more",EA054-2,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +69645,Sf2,EA054,Equal participation,EA054-4,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +69646,Sf3,EA054,"Both, females more",EA054-5,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +69647,Sf4,EA054,Differentiated but equal,EA054-3,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +69648,Sf5,EA054,Equal participation,EA054-4,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +69649,Sf6,EA054,Equal participation,EA054-4,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +69650,Sf7,EA054,Females alone,EA054-6,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +69651,Sf8,EA054,?,EA054-NA,,,,,, +69652,Sf9,EA054,?,EA054-NA,,,,,, +69653,Sg1,EA054,Activity is absent,EA054-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +69654,Sg2,EA054,"Both, males more",EA054-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69655,Sg3,EA054,Activity is absent,EA054-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +69656,Sg4,EA054,Activity is absent,EA054-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +69657,Sg5,EA054,Activity is absent,EA054-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69658,Sh1,EA054,"Both, females more",EA054-5,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +69659,Sh2,EA054,Differentiated but equal,EA054-3,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +69660,Sh3,EA054,Activity is absent,EA054-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +69661,Sh4,EA054,"Both, females more",EA054-5,,oberg1949,,1940,EthnographicAtlas_1967_p124, +69662,Sh5,EA054,Differentiated but equal,EA054-3,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +69663,Sh6,EA054,Females alone,EA054-6,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +69664,Sh7,EA054,"Both, males more",EA054-2,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +69665,Sh8,EA054,Differentiated but equal,EA054-3,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +69666,Sh9,EA054,Males alone,EA054-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +69667,Si1,EA054,Activity is absent,EA054-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69668,Si10,EA054,"Both, males more",EA054-2,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +69669,Si2,EA054,Differentiated but equal,EA054-3,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +69670,Si3,EA054,Differentiated but equal,EA054-3,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69671,Si4,EA054,"Both, males more",EA054-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +69672,Si5,EA054,"Both, males more",EA054-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +69673,Si6,EA054,?,EA054-NA,,,,,, +69674,Si7,EA054,?,EA054-NA,,,,,, +69675,Si8,EA054,Males alone,EA054-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +69676,Si9,EA054,?,EA054-NA,,,,,, +69677,Sj1,EA054,"Both, males more",EA054-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +69678,Sj10,EA054,"Both, males more",EA054-2,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69679,Sj11,EA054,"Both, males more",EA054-2,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +69680,Sj2,EA054,"Both, females more",EA054-5,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +69681,Sj3,EA054,Activity is absent,EA054-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +69682,Sj4,EA054,"Both, females more",EA054-5,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +69683,Sj5,EA054,Activity is absent,EA054-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +69684,Sj6,EA054,"Both, males more",EA054-2,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69685,Sj7,EA054,Equal participation,EA054-4,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +69686,Sj8,EA054,"Both, females more",EA054-5,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +69687,Sj9,EA054,Differentiated but equal,EA054-3,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +69688,ch12,EA054,Males alone,EA054-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +69689,ch13,EA054,"Both, males more",EA054-2,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +69690,ch14,EA054,"Both, males more",EA054-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +69691,ch15,EA054,"Both, males more",EA054-2,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +69692,ch16,EA054,"Both, males more",EA054-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +69693,ch17,EA054,"Both, males more",EA054-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +69694,ch18,EA054,"Both, males more",EA054-2,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +69695,ch19,EA054,Differentiated but equal,EA054-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +69696,ch20,EA054,Males alone,EA054-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +69697,ch21,EA054,"Both, males more",EA054-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +69698,ch22,EA054,"Activity present, sex diff. unspecified",EA054-8,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +69699,ch23,EA054,Differentiated but equal,EA054-3,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +69700,ch24,EA054,Equal participation,EA054-4,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +69701,ch25,EA054,"Both, males more",EA054-2,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +69702,ch26,EA054,"Both, males more",EA054-2,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +69703,ch27,EA054,"Both, females more",EA054-5,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +69704,ch28,EA054,"Both, males more",EA054-2,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +69705,ec12,EA054,Activity is absent,EA054-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +69706,ec13,EA054,Activity is absent,EA054-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +69707,ec14,EA054,Activity is absent,EA054-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +69708,ec15,EA054,Activity is absent,EA054-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +69709,ec16,EA054,Activity is absent,EA054-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +69710,ec17,EA054,Activity is absent,EA054-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +69711,ec18,EA054,Activity is absent,EA054-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +69712,ec19,EA054,Activity is absent,EA054-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +69713,ec20,EA054,Activity is absent,EA054-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +69714,ec21,EA054,Activity is absent,EA054-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +69715,Aa1,EA055,Activity is absent,EA055-10,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +69716,Aa2,EA055,Activity is absent,EA055-10,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +69717,Aa3,EA055,Most adults,EA055-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +69718,Aa4,EA055,?,EA055-NA,,,,,, +69719,Aa5,EA055,Activity is absent,EA055-10,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +69720,Aa6,EA055,?,EA055-NA,,,,,, +69721,Aa7,EA055,Activity is absent,EA055-10,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +69722,Aa8,EA055,Activity is absent,EA055-10,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +69723,Aa9,EA055,Activity is absent,EA055-10,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +69724,Ab1,EA055,Craft,EA055-3,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +69725,Ab10,EA055,Craft,EA055-3,,hunter1936,,1936,EthnographicAtlas_1967_p64, +69726,Ab11,EA055,Craft,EA055-3,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +69727,Ab12,EA055,Craft,EA055-3,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +69728,Ab13,EA055,Craft,EA055-3,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +69729,Ab14,EA055,Craft,EA055-3,Formerly though not recently,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +69730,Ab15,EA055,Craft,EA055-3,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +69731,Ab16,EA055,?,EA055-NA,,,,,, +69732,Ab17,EA055,?,EA055-NA,,,,,, +69733,Ab18,EA055,Craft,EA055-3,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +69734,Ab19,EA055,Craft,EA055-3,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +69735,Ab2,EA055,Craft,EA055-3,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +69736,Ab20,EA055,?,EA055-NA,,,,,, +69737,Ab21a,EA055,?,EA055-NA,,,,,, +69738,Ab21b,EA055,?,EA055-NA,,,,,, +69739,Ab22,EA055,?,EA055-NA,,,,,, +69740,Ab3,EA055,Craft,EA055-3,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +69741,Ab4,EA055,Craft,EA055-3,,junod1927,,1920,EthnographicAtlas_1967_p64, +69742,Ab5,EA055,Craft,EA055-3,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +69743,Ab6,EA055,Craft,EA055-3,But no longer practiced,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +69744,Ab7,EA055,?,EA055-NA,,,,,, +69745,Ab8,EA055,Craft,EA055-3,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +69746,Ab9,EA055,Craft,EA055-3,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +69747,Ac1,EA055,Craft,EA055-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +69748,Ac10,EA055,Craft,EA055-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +69749,Ac11,EA055,Craft,EA055-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +69750,Ac12,EA055,Craft,EA055-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p64, +69751,Ac13,EA055,Craft,EA055-3,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p64, +69752,Ac14,EA055,Craft,EA055-3,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p64, +69753,Ac15,EA055,?,EA055-NA,,,,,, +69754,Ac16,EA055,?,EA055-NA,,,,,, +69755,Ac17,EA055,Craft,EA055-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +69756,Ac18,EA055,Craft,EA055-3,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +69757,Ac19,EA055,?,EA055-NA,,,,,, +69758,Ac2,EA055,?,EA055-NA,,,,,, +69759,Ac20,EA055,?,EA055-NA,,,,,, +69760,Ac21,EA055,?,EA055-NA,,,,,, +69761,Ac22,EA055,?,EA055-NA,,,,,, +69762,Ac23,EA055,Craft,EA055-3,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +69763,Ac24,EA055,?,EA055-NA,,,,,, +69764,Ac25,EA055,?,EA055-NA,,,,,, +69765,Ac26,EA055,?,EA055-NA,,,,,, +69766,Ac27,EA055,?,EA055-NA,,,,,, +69767,Ac28,EA055,Craft,EA055-3,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +69768,Ac29,EA055,?,EA055-NA,,,,,, +69769,Ac3,EA055,Craft,EA055-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +69770,Ac30,EA055,Craft,EA055-3,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +69771,Ac31,EA055,Craft,EA055-3,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +69772,Ac32,EA055,?,EA055-NA,,,,,, +69773,Ac33,EA055,Activity is absent,EA055-10,"Formerly 'males alone' (EA044 code ""1"") with craft specialization (EA055 code ""3"")",lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +69774,Ac34,EA055,Craft,EA055-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +69775,Ac35,EA055,?,EA055-NA,,,,,, +69776,Ac36,EA055,Craft,EA055-3,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p64, +69777,Ac37,EA055,?,EA055-NA,,,,,, +69778,Ac38,EA055,Craft,EA055-3,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +69779,Ac39,EA055,Craft,EA055-3,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +69780,Ac4,EA055,Craft,EA055-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +69781,Ac40,EA055,?,EA055-NA,,,,,, +69782,Ac41,EA055,?,EA055-NA,,,,,, +69783,Ac42,EA055,?,EA055-NA,,,,,, +69784,Ac43,EA055,?,EA055-NA,,,,,, +69785,Ac5,EA055,Craft,EA055-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +69786,Ac6,EA055,Craft,EA055-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +69787,Ac7,EA055,Craft,EA055-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +69788,Ac8,EA055,Craft,EA055-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +69789,Ac9,EA055,Craft,EA055-3,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +69790,Ad1,EA055,Activity is absent,EA055-10,Despised as slave occupation,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +69791,Ad10,EA055,Craft,EA055-3,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +69792,Ad11,EA055,Craft,EA055-3,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +69793,Ad12,EA055,?,EA055-NA,,,,,, +69794,Ad13,EA055,Craft,EA055-3,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +69795,Ad14,EA055,Craft,EA055-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p68, +69796,Ad15,EA055,Craft,EA055-3,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p68, +69797,Ad16,EA055,Craft,EA055-3,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +69798,Ad17,EA055,Craft,EA055-3,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +69799,Ad18,EA055,?,EA055-NA,,,,,, +69800,Ad19,EA055,Craft,EA055-3,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +69801,Ad2,EA055,Craft,EA055-3,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +69802,Ad20,EA055,Craft,EA055-3,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +69803,Ad21,EA055,?,EA055-NA,,,,,, +69804,Ad22,EA055,Craft,EA055-3,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +69805,Ad23,EA055,?,EA055-NA,,,,,, +69806,Ad24,EA055,Craft,EA055-3,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +69807,Ad25,EA055,?,EA055-NA,,,,,, +69808,Ad26,EA055,Craft,EA055-3,,sick1916,,1910,EthnographicAtlas_1967_p68, +69809,Ad27,EA055,Craft,EA055-3,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +69810,Ad28,EA055,Craft,EA055-3,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +69811,Ad29,EA055,Craft,EA055-3,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +69812,Ad3,EA055,Craft,EA055-3,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +69813,Ad30,EA055,Craft,EA055-3,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +69814,Ad31,EA055,Craft,EA055-3,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +69815,Ad32,EA055,Craft,EA055-3,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p68, +69816,Ad33,EA055,Craft,EA055-3,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +69817,Ad34,EA055,Craft,EA055-3,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +69818,Ad35,EA055,Craft,EA055-3,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +69819,Ad36,EA055,?,EA055-NA,,,,,, +69820,Ad37,EA055,?,EA055-NA,,,,,, +69821,Ad38,EA055,?,EA055-NA,,,,,, +69822,Ad39,EA055,Craft,EA055-3,,gray1963,,1950,EthnographicAtlas_1967_p68, +69823,Ad4,EA055,Craft,EA055-3,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +69824,Ad40,EA055,?,EA055-NA,,,,,, +69825,Ad41,EA055,Craft,EA055-3,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +69826,Ad42,EA055,Craft,EA055-3,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p68, +69827,Ad43,EA055,?,EA055-NA,,,,,, +69828,Ad44,EA055,Craft,EA055-3,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +69829,Ad45,EA055,Craft,EA055-3,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +69830,Ad46,EA055,Craft,EA055-3,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +69831,Ad47,EA055,Craft,EA055-3,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +69832,Ad48,EA055,Craft,EA055-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +69833,Ad49,EA055,Craft,EA055-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +69834,Ad5,EA055,?,EA055-NA,,,,,, +69835,Ad50,EA055,Craft,EA055-3,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +69836,Ad51,EA055,Craft,EA055-3,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +69837,Ad6,EA055,Craft,EA055-3,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +69838,Ad7,EA055,Craft,EA055-3,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +69839,Ad8,EA055,Craft,EA055-3,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +69840,Ad9,EA055,Craft,EA055-3,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +69841,Ae1,EA055,Craft,EA055-3,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +69842,Ae10,EA055,Craft,EA055-3,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +69843,Ae11,EA055,Craft,EA055-3,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +69844,Ae12,EA055,Craft,EA055-3,Formerly,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +69845,Ae13,EA055,?,EA055-NA,,,,,, +69846,Ae14,EA055,Craft,EA055-3,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +69847,Ae15,EA055,Craft,EA055-3,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p68, +69848,Ae16,EA055,?,EA055-NA,,,,,, +69849,Ae17,EA055,Craft,EA055-3,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +69850,Ae18,EA055,Craft,EA055-3,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +69851,Ae19,EA055,?,EA055-NA,,,,,, +69852,Ae2,EA055,Craft,EA055-3,Formerly,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +69853,Ae20,EA055,?,EA055-NA,,,,,, +69854,Ae21,EA055,?,EA055-NA,,,,,, +69855,Ae22,EA055,?,EA055-NA,,,,,, +69856,Ae23,EA055,?,EA055-NA,,,,,, +69857,Ae24,EA055,?,EA055-NA,,,,,, +69858,Ae25,EA055,?,EA055-NA,,,,,, +69859,Ae26,EA055,?,EA055-NA,,,,,, +69860,Ae27,EA055,?,EA055-NA,,,,,, +69861,Ae28,EA055,?,EA055-NA,,,,,, +69862,Ae29,EA055,Craft,EA055-3,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +69863,Ae3,EA055,Craft,EA055-3,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +69864,Ae30,EA055,?,EA055-NA,,,,,, +69865,Ae31,EA055,Craft,EA055-3,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +69866,Ae32,EA055,?,EA055-NA,,,,,, +69867,Ae33,EA055,Craft,EA055-3,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +69868,Ae34,EA055,?,EA055-NA,,,,,, +69869,Ae35,EA055,?,EA055-NA,,,,,, +69870,Ae36,EA055,?,EA055-NA,,,,,, +69871,Ae37,EA055,?,EA055-NA,,,,,, +69872,Ae38,EA055,?,EA055-NA,,,,,, +69873,Ae39,EA055,Craft,EA055-3,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +69874,Ae4,EA055,Craft,EA055-3,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +69875,Ae40,EA055,?,EA055-NA,,,,,, +69876,Ae41,EA055,Craft,EA055-3,,andersson1953,,1940,EthnographicAtlas_1967_p68, +69877,Ae42,EA055,?,EA055-NA,,,,,, +69878,Ae43,EA055,?,EA055-NA,,,,,, +69879,Ae44,EA055,?,EA055-NA,,,,,, +69880,Ae45,EA055,?,EA055-NA,,,,,, +69881,Ae46,EA055,?,EA055-NA,,,,,, +69882,Ae47,EA055,?,EA055-NA,,,,,, +69883,Ae48,EA055,Craft,EA055-3,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p68, +69884,Ae49,EA055,?,EA055-NA,,,,,, +69885,Ae5,EA055,Most adults,EA055-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +69886,Ae50,EA055,Craft,EA055-3,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +69887,Ae51,EA055,Craft,EA055-3,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +69888,Ae52,EA055,Craft,EA055-3,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +69889,Ae53,EA055,?,EA055-NA,,,,,, +69890,Ae54,EA055,?,EA055-NA,,,,,, +69891,Ae55,EA055,Craft,EA055-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +69892,Ae56,EA055,?,EA055-NA,,,,,, +69893,Ae57,EA055,?,EA055-NA,,,,,, +69894,Ae58,EA055,?,EA055-NA,,,,,, +69895,Ae59,EA055,?,EA055-NA,,,,,, +69896,Ae6,EA055,Craft,EA055-3,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +69897,Ae7,EA055,Craft,EA055-3,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +69898,Ae8,EA055,Craft,EA055-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +69899,Ae9,EA055,Most adults,EA055-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +69900,Af1,EA055,Craft,EA055-3,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +69901,Af10,EA055,Craft,EA055-3,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +69902,Af11,EA055,Craft,EA055-3,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +69903,Af12,EA055,?,EA055-NA,,,,,, +69904,Af13,EA055,Craft,EA055-3,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +69905,Af14,EA055,Craft,EA055-3,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +69906,Af15,EA055,Craft,EA055-3,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +69907,Af16,EA055,?,EA055-NA,,,,,, +69908,Af17,EA055,?,EA055-NA,,,,,, +69909,Af18,EA055,?,EA055-NA,,,,,, +69910,Af19,EA055,?,EA055-NA,,,,,, +69911,Af2,EA055,Craft,EA055-3,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +69912,Af20,EA055,?,EA055-NA,,,,,, +69913,Af21,EA055,?,EA055-NA,,,,,, +69914,Af22,EA055,Craft,EA055-3,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +69915,Af23,EA055,Craft,EA055-3,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +69916,Af24,EA055,Craft,EA055-3,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +69917,Af25,EA055,Craft,EA055-3,But smiths are aliens of the Ibo tribes,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +69918,Af26,EA055,?,EA055-NA,,,,,, +69919,Af27,EA055,?,EA055-NA,,,,,, +69920,Af28,EA055,Craft,EA055-3,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +69921,Af29,EA055,?,EA055-NA,,,,,, +69922,Af3,EA055,Craft,EA055-3,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +69923,Af30,EA055,?,EA055-NA,,,,,, +69924,Af31,EA055,?,EA055-NA,,,,,, +69925,Af32,EA055,Craft,EA055-3,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69926,Af33,EA055,Craft,EA055-3,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +69927,Af34,EA055,?,EA055-NA,,,,,, +69928,Af35,EA055,?,EA055-NA,,,,,, +69929,Af36,EA055,Craft,EA055-3,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +69930,Af37,EA055,?,EA055-NA,,,,,, +69931,Af38,EA055,?,EA055-NA,,,,,, +69932,Af39,EA055,?,EA055-NA,,,,,, +69933,Af4,EA055,?,EA055-NA,,,,,, +69934,Af40,EA055,?,EA055-NA,,,,,, +69935,Af41,EA055,?,EA055-NA,,,,,, +69936,Af42,EA055,Craft,EA055-3,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +69937,Af43,EA055,?,EA055-NA,,,,,, +69938,Af44,EA055,?,EA055-NA,,,,,, +69939,Af45,EA055,?,EA055-NA,,,,,, +69940,Af46,EA055,?,EA055-NA,,,,,, +69941,Af47,EA055,?,EA055-NA,,,,,, +69942,Af48,EA055,?,EA055-NA,,,,,, +69943,Af49,EA055,Craft,EA055-3,,schwab1947,,1940,EthnographicAtlas_1967_p72, +69944,Af5,EA055,Craft,EA055-3,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +69945,Af50,EA055,?,EA055-NA,,,,,, +69946,Af51,EA055,Craft,EA055-3,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +69947,Af52,EA055,Craft,EA055-3,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +69948,Af53,EA055,?,EA055-NA,,,,,, +69949,Af54,EA055,Craft,EA055-3,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +69950,Af55,EA055,?,EA055-NA,,,,,, +69951,Af56,EA055,Craft,EA055-3,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +69952,Af57,EA055,Craft,EA055-3,But these specialists are aliens of the Yalunka tribe,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +69953,Af58,EA055,?,EA055-NA,,,,,, +69954,Af6,EA055,Craft,EA055-3,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +69955,Af7,EA055,?,EA055-NA,,,,,, +69956,Af8,EA055,Craft,EA055-3,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +69957,Af9,EA055,Craft,EA055-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p72, +69958,Ag1,EA055,Craft,EA055-3,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +69959,Ag10,EA055,Craft,EA055-3,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +69960,Ag11,EA055,Craft,EA055-3,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +69961,Ag12,EA055,Most adults,EA055-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +69962,Ag13,EA055,Craft,EA055-3,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p72, +69963,Ag14,EA055,?,EA055-NA,,,,,, +69964,Ag15,EA055,?,EA055-NA,,,,,, +69965,Ag16,EA055,?,EA055-NA,,,,,, +69966,Ag17,EA055,?,EA055-NA,,,,,, +69967,Ag18,EA055,?,EA055-NA,,,,,, +69968,Ag19,EA055,?,EA055-NA,,,,,, +69969,Ag2,EA055,Craft,EA055-3,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +69970,Ag20,EA055,?,EA055-NA,,,,,, +69971,Ag21,EA055,Craft,EA055-3,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +69972,Ag22,EA055,Craft,EA055-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +69973,Ag23,EA055,?,EA055-NA,,,,,, +69974,Ag24,EA055,?,EA055-NA,,,,,, +69975,Ag25,EA055,Craft,EA055-3,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p72, +69976,Ag26,EA055,Craft,EA055-3,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p72, +69977,Ag27,EA055,Craft,EA055-3,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p72, +69978,Ag28,EA055,?,EA055-NA,,,,,, +69979,Ag29,EA055,?,EA055-NA,,,,,, +69980,Ag3,EA055,Craft,EA055-3,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +69981,Ag30,EA055,Craft,EA055-3,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +69982,Ag31,EA055,Craft,EA055-3,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p72, +69983,Ag32,EA055,Craft,EA055-3,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +69984,Ag33,EA055,?,EA055-NA,,,,,, +69985,Ag34,EA055,?,EA055-NA,,,,,, +69986,Ag35,EA055,?,EA055-NA,,,,,, +69987,Ag36,EA055,?,EA055-NA,,,,,, +69988,Ag37,EA055,?,EA055-NA,,,,,, +69989,Ag38,EA055,?,EA055-NA,,,,,, +69990,Ag39,EA055,Craft,EA055-3,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +69991,Ag4,EA055,Craft,EA055-3,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +69992,Ag40,EA055,?,EA055-NA,,,,,, +69993,Ag41,EA055,Craft,EA055-3,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p72, +69994,Ag42,EA055,?,EA055-NA,,,,,, +69995,Ag43,EA055,?,EA055-NA,,,,,, +69996,Ag44,EA055,?,EA055-NA,,,,,, +69997,Ag45,EA055,Craft,EA055-3,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +69998,Ag46,EA055,?,EA055-NA,,,,,, +69999,Ag47,EA055,Craft,EA055-3,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +70000,Ag48,EA055,Craft,EA055-3,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +70001,Ag49,EA055,Craft,EA055-3,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +70002,Ag5,EA055,Most adults,EA055-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +70003,Ag50,EA055,Craft,EA055-3,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +70004,Ag51,EA055,?,EA055-NA,,,,,, +70005,Ag52,EA055,?,EA055-NA,,,,,, +70006,Ag53,EA055,Craft,EA055-3,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +70007,Ag54,EA055,Craft,EA055-3,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +70008,Ag6,EA055,Craft,EA055-3,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +70009,Ag7,EA055,?,EA055-NA,,,,,, +70010,Ag8,EA055,Craft,EA055-3,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +70011,Ag9,EA055,Craft,EA055-3,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +70012,Ah1,EA055,Activity is absent,EA055-10,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70013,Ah10,EA055,?,EA055-NA,,,,,, +70014,Ah11,EA055,Craft,EA055-3,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +70015,Ah12,EA055,?,EA055-NA,,,,,, +70016,Ah13,EA055,Most adults,EA055-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +70017,Ah14,EA055,Craft,EA055-3,,gunnandconant1960,,1920,EthnographicAtlas_1967_p76, +70018,Ah15,EA055,Most adults,EA055-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +70019,Ah16,EA055,?,EA055-NA,,,,,, +70020,Ah17,EA055,?,EA055-NA,,,,,, +70021,Ah18,EA055,?,EA055-NA,,,,,, +70022,Ah19,EA055,?,EA055-NA,,,,,, +70023,Ah2,EA055,Craft,EA055-3,,meek1931a,,1920,EthnographicAtlas_1967_p76, +70024,Ah20,EA055,?,EA055-NA,,,,,, +70025,Ah21,EA055,?,EA055-NA,,,,,, +70026,Ah22,EA055,?,EA055-NA,,,,,, +70027,Ah23,EA055,?,EA055-NA,,,,,, +70028,Ah24,EA055,?,EA055-NA,,,,,, +70029,Ah25,EA055,?,EA055-NA,,,,,, +70030,Ah26,EA055,?,EA055-NA,,,,,, +70031,Ah27,EA055,?,EA055-NA,,,,,, +70032,Ah28,EA055,?,EA055-NA,,,,,, +70033,Ah29,EA055,?,EA055-NA,,,,,, +70034,Ah3,EA055,Craft,EA055-3,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +70035,Ah30,EA055,Craft,EA055-3,,meek1931b,,1920,EthnographicAtlas_1967_p76, +70036,Ah31,EA055,Craft,EA055-3,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p76, +70037,Ah32,EA055,?,EA055-NA,,,,,, +70038,Ah33,EA055,Craft,EA055-3,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p76, +70039,Ah34,EA055,?,EA055-NA,,,,,, +70040,Ah35,EA055,?,EA055-NA,,,,,, +70041,Ah36,EA055,?,EA055-NA,,,,,, +70042,Ah37,EA055,?,EA055-NA,,,,,, +70043,Ah38,EA055,Craft,EA055-3,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +70044,Ah39,EA055,Craft,EA055-3,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +70045,Ah4,EA055,Craft,EA055-3,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p76, +70046,Ah5,EA055,?,EA055-NA,,,,,, +70047,Ah6,EA055,?,EA055-NA,,,,,, +70048,Ah7,EA055,Craft,EA055-3,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +70049,Ah8,EA055,Craft,EA055-3,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +70050,Ah9,EA055,Most adults,EA055-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +70051,Ai1,EA055,Craft,EA055-3,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +70052,Ai10,EA055,Activity is absent,EA055-10,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +70053,Ai11,EA055,Craft,EA055-3,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +70054,Ai12,EA055,?,EA055-NA,,,,,, +70055,Ai13,EA055,?,EA055-NA,,,,,, +70056,Ai14,EA055,Craft,EA055-3,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +70057,Ai15,EA055,Craft,EA055-3,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +70058,Ai16,EA055,?,EA055-NA,,,,,, +70059,Ai17,EA055,Craft,EA055-3,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +70060,Ai18,EA055,Activity is absent,EA055-10,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +70061,Ai19,EA055,?,EA055-NA,,,,,, +70062,Ai2,EA055,?,EA055-NA,,,,,, +70063,Ai20,EA055,?,EA055-NA,,,,,, +70064,Ai21,EA055,Craft,EA055-3,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p76, +70065,Ai22,EA055,?,EA055-NA,,,,,, +70066,Ai23,EA055,Craft,EA055-3,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +70067,Ai24,EA055,?,EA055-NA,,,,,, +70068,Ai25,EA055,Craft,EA055-3,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +70069,Ai26,EA055,Craft,EA055-3,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +70070,Ai27,EA055,?,EA055-NA,,,,,, +70071,Ai28,EA055,Craft,EA055-3,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +70072,Ai29,EA055,Craft,EA055-3,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +70073,Ai3,EA055,Craft,EA055-3,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +70074,Ai30,EA055,Craft,EA055-3,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +70075,Ai31,EA055,Craft,EA055-3,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +70076,Ai32,EA055,Craft,EA055-3,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p76, +70077,Ai33,EA055,Craft,EA055-3,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p76, +70078,Ai34,EA055,Craft,EA055-3,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +70079,Ai35,EA055,Craft,EA055-3,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +70080,Ai36,EA055,Craft,EA055-3,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +70081,Ai37,EA055,?,EA055-NA,,,,,, +70082,Ai38,EA055,Activity is absent,EA055-10,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +70083,Ai39,EA055,Activity is absent,EA055-10,,nadel1947,,1940,EthnographicAtlas_1967_p76, +70084,Ai4,EA055,?,EA055-NA,,,,,, +70085,Ai40,EA055,Activity is absent,EA055-10,,nadel1947,,1940,EthnographicAtlas_1967_p76, +70086,Ai41,EA055,Activity is absent,EA055-10,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +70087,Ai42,EA055,Activity is absent,EA055-10,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +70088,Ai43,EA055,Activity is absent,EA055-10,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +70089,Ai44,EA055,?,EA055-NA,,,,,, +70090,Ai45,EA055,?,EA055-NA,,,,,, +70091,Ai46,EA055,?,EA055-NA,,,,,, +70092,Ai47,EA055,Activity is absent,EA055-10,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +70093,Ai5,EA055,Craft,EA055-3,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +70094,Ai6,EA055,Craft,EA055-3,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +70095,Ai7,EA055,Craft,EA055-3,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +70096,Ai8,EA055,Activity is absent,EA055-10,Except for a few acculturated male craftsmen,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +70097,Ai9,EA055,Craft,EA055-3,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +70098,Aj1,EA055,?,EA055-NA,,,,,, +70099,Aj10,EA055,?,EA055-NA,,,,,, +70100,Aj11,EA055,Craft,EA055-3,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p80, +70101,Aj12,EA055,Craft,EA055-3,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +70102,Aj13,EA055,Craft,EA055-3,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +70103,Aj14,EA055,?,EA055-NA,,,,,, +70104,Aj15,EA055,Craft,EA055-3,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +70105,Aj16,EA055,Craft,EA055-3,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +70106,Aj17,EA055,Craft,EA055-3,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +70107,Aj18,EA055,Activity is absent,EA055-10,Iron products obtained by trade from the Dime or Maji tribes,jensen1959,,1950,EthnographicAtlas_1967_p80, +70108,Aj19,EA055,Craft,EA055-3,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p80, +70109,Aj2,EA055,Craft,EA055-3,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +70110,Aj20,EA055,Craft,EA055-3,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p80, +70111,Aj21,EA055,Activity is absent,EA055-10,Ironware is obtained by trade from the Labwor,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +70112,Aj22,EA055,Craft,EA055-3,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +70113,Aj23,EA055,Activity is absent,EA055-10,The products are obtained by trade from the Hill Suk,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +70114,Aj24,EA055,Craft,EA055-3,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +70115,Aj25,EA055,Craft,EA055-3,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +70116,Aj26,EA055,Craft,EA055-3,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +70117,Aj27,EA055,?,EA055-NA,,,,,, +70118,Aj28,EA055,Craft,EA055-3,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +70119,Aj29,EA055,?,EA055-NA,,,,,, +70120,Aj3,EA055,Activity is absent,EA055-10,"There are a few smiths; iron working is ""a recent innovation""",evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +70121,Aj30,EA055,?,EA055-NA,,,,,, +70122,Aj31,EA055,?,EA055-NA,,,,,, +70123,Aj4,EA055,Craft,EA055-3,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +70124,Aj5,EA055,?,EA055-NA,,,,,, +70125,Aj6,EA055,Craft,EA055-3,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +70126,Aj7,EA055,Craft,EA055-3,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +70127,Aj8,EA055,Craft,EA055-3,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +70128,Aj9,EA055,Craft,EA055-3,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +70129,Ca1,EA055,Craft,EA055-3,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +70130,Ca10,EA055,Craft,EA055-3,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +70131,Ca11,EA055,Craft,EA055-3,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +70132,Ca12,EA055,Craft,EA055-3,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +70133,Ca13,EA055,Craft,EA055-3,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +70134,Ca14,EA055,Craft,EA055-3,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +70135,Ca15,EA055,Craft,EA055-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +70136,Ca16,EA055,Craft,EA055-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +70137,Ca17,EA055,Activity is absent,EA055-10,Products obtained by trade with neighboring tribes,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +70138,Ca18,EA055,?,EA055-NA,Ironware obtained by trade with other tribes,cerulli1956;jensen1959;ricci1950,,1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +70139,Ca19,EA055,Craft,EA055-3,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +70140,Ca2,EA055,Craft,EA055-3,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +70141,Ca20,EA055,?,EA055-NA,,,,,, +70142,Ca21,EA055,Craft,EA055-3,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +70143,Ca22,EA055,Craft,EA055-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +70144,Ca23,EA055,Craft,EA055-3,,jensen1959,,1950,EthnographicAtlas_1967_p80, +70145,Ca24,EA055,Craft,EA055-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +70146,Ca25,EA055,Craft,EA055-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +70147,Ca26,EA055,?,EA055-NA,,,,,, +70148,Ca27,EA055,?,EA055-NA,,,,,, +70149,Ca28,EA055,Activity is absent,EA055-10,Iron wares are obtained in trade from the Dime,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +70150,Ca29,EA055,Craft,EA055-3,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +70151,Ca3,EA055,Craft,EA055-3,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p80, +70152,Ca30,EA055,Craft,EA055-3,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +70153,Ca31,EA055,Craft,EA055-3,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +70154,Ca32,EA055,Activity is absent,EA055-10,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +70155,Ca33,EA055,Activity is absent,EA055-10,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +70156,Ca34,EA055,?,EA055-NA,,,,,, +70157,Ca35,EA055,?,EA055-NA,,,,,, +70158,Ca36,EA055,?,EA055-NA,,,,,, +70159,Ca37,EA055,?,EA055-NA,,,,,, +70160,Ca38,EA055,?,EA055-NA,,,,,, +70161,Ca39,EA055,Craft,EA055-3,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +70162,Ca4,EA055,Craft,EA055-3,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +70163,Ca40,EA055,Craft,EA055-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +70164,Ca41,EA055,Craft,EA055-3,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +70165,Ca42,EA055,Craft,EA055-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +70166,Ca43,EA055,?,EA055-NA,,,,,, +70167,Ca5,EA055,?,EA055-NA,,,,,, +70168,Ca6,EA055,Craft,EA055-3,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p80, +70169,Ca7,EA055,Craft,EA055-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +70170,Ca8,EA055,Craft,EA055-3,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p80, +70171,Ca9,EA055,?,EA055-NA,,,,,, +70172,Cb1,EA055,?,EA055-NA,,,,,, +70173,Cb10,EA055,?,EA055-NA,,,,,, +70174,Cb11,EA055,?,EA055-NA,,,,,, +70175,Cb12,EA055,?,EA055-NA,,,,,, +70176,Cb13,EA055,?,EA055-NA,,,,,, +70177,Cb14,EA055,?,EA055-NA,,,,,, +70178,Cb15,EA055,?,EA055-NA,,,,,, +70179,Cb16,EA055,?,EA055-NA,,,,,, +70180,Cb17,EA055,Craft,EA055-3,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +70181,Cb18,EA055,Craft,EA055-3,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p80, +70182,Cb19,EA055,Craft,EA055-3,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p80, +70183,Cb2,EA055,Craft,EA055-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +70184,Cb20,EA055,Craft,EA055-3,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +70185,Cb21,EA055,?,EA055-NA,,,,,, +70186,Cb22,EA055,?,EA055-NA,,,,,, +70187,Cb23,EA055,Craft,EA055-3,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +70188,Cb24,EA055,?,EA055-NA,,,,,, +70189,Cb25,EA055,?,EA055-NA,,,,,, +70190,Cb26,EA055,Craft,EA055-3,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +70191,Cb27,EA055,?,EA055-NA,,,,,, +70192,Cb28,EA055,?,EA055-NA,,,,,, +70193,Cb29,EA055,?,EA055-NA,,,,,, +70194,Cb3,EA055,Craft,EA055-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +70195,Cb4,EA055,?,EA055-NA,,,,,, +70196,Cb5,EA055,Craft,EA055-3,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p80, +70197,Cb6,EA055,Craft,EA055-3,,woodnd,,1920,EthnographicAtlas_1967_p80, +70198,Cb7,EA055,Craft,EA055-3,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p80, +70199,Cb8,EA055,?,EA055-NA,,,,,, +70200,Cb9,EA055,Craft,EA055-3,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +70201,Cc1,EA055,Craft,EA055-3,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +70202,Cc10,EA055,Craft,EA055-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +70203,Cc11,EA055,?,EA055-NA,,,,,, +70204,Cc12,EA055,Craft,EA055-3,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +70205,Cc13,EA055,?,EA055-NA,,,,,, +70206,Cc14,EA055,Craft,EA055-3,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +70207,Cc15,EA055,?,EA055-NA,,,,,, +70208,Cc16,EA055,?,EA055-NA,,,,,, +70209,Cc17,EA055,Craft,EA055-3,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +70210,Cc18,EA055,?,EA055-NA,,,,,, +70211,Cc19,EA055,?,EA055-NA,,,,,, +70212,Cc2,EA055,Craft,EA055-3,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +70213,Cc20,EA055,Craft,EA055-3,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +70214,Cc3,EA055,Activity is absent,EA055-10,Alien itinerant smiths only,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +70215,Cc4,EA055,Craft,EA055-3,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +70216,Cc5,EA055,Craft,EA055-3,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +70217,Cc6,EA055,?,EA055-NA,,,,,, +70218,Cc7,EA055,?,EA055-NA,,,,,, +70219,Cc8,EA055,?,EA055-NA,,,,,, +70220,Cc9,EA055,Craft,EA055-3,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +70221,Cd1,EA055,Craft,EA055-3,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +70222,Cd10,EA055,?,EA055-NA,,,,,, +70223,Cd11,EA055,Activity is absent,EA055-10,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p84, +70224,Cd12,EA055,Craft,EA055-3,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +70225,Cd13,EA055,?,EA055-NA,,,,,, +70226,Cd14,EA055,?,EA055-NA,,,,,, +70227,Cd15,EA055,?,EA055-NA,,,,,, +70228,Cd16,EA055,?,EA055-NA,,,,,, +70229,Cd17,EA055,?,EA055-NA,,,,,, +70230,Cd18,EA055,?,EA055-NA,,,,,, +70231,Cd19,EA055,?,EA055-NA,,,,,, +70232,Cd2,EA055,Craft,EA055-3,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +70233,Cd20,EA055,?,EA055-NA,,,,,, +70234,Cd21,EA055,?,EA055-NA,,,,,, +70235,Cd3,EA055,Craft,EA055-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +70236,Cd4,EA055,Craft,EA055-3,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +70237,Cd5,EA055,Craft,EA055-3,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +70238,Cd6,EA055,Craft,EA055-3,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +70239,Cd7,EA055,?,EA055-NA,,,,,, +70240,Cd8,EA055,?,EA055-NA,,,,,, +70241,Cd9,EA055,?,EA055-NA,,,,,, +70242,Ce1,EA055,Craft,EA055-3,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +70243,Ce2,EA055,?,EA055-NA,,,,,, +70244,Ce3,EA055,Craft,EA055-3,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +70245,Ce4,EA055,Craft,EA055-3,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70246,Ce5,EA055,Craft,EA055-3,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +70247,Ce6,EA055,Craft,EA055-3,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +70248,Ce7,EA055,Craft,EA055-3,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +70249,Ce8,EA055,Craft,EA055-3,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +70250,Cf1,EA055,Craft,EA055-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +70251,Cf2,EA055,?,EA055-NA,,,,,, +70252,Cf3,EA055,Most adults,EA055-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +70253,Cf4,EA055,Craft,EA055-3,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +70254,Cf5,EA055,Craft,EA055-3,,miner1939,,1930,EthnographicAtlas_1967_p84, +70255,Cg1,EA055,Craft,EA055-3,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +70256,Cg2,EA055,Craft,EA055-3,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +70257,Cg3,EA055,Craft,EA055-3,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +70258,Cg4,EA055,Activity is absent,EA055-10,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +70259,Cg5,EA055,?,EA055-NA,,,,,, +70260,Ch1,EA055,Craft,EA055-3,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +70261,Ch10,EA055,?,EA055-NA,,,,,, +70262,Ch11,EA055,Industrial,EA055-4,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +70263,Ch2,EA055,Craft,EA055-3,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +70264,Ch3,EA055,Craft,EA055-3,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +70265,Ch4,EA055,Craft,EA055-3,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p84, +70266,Ch5,EA055,Craft,EA055-3,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +70267,Ch6,EA055,Craft,EA055-3,,ember1954,,1910,EthnographicAtlas_1967_p84, +70268,Ch7,EA055,Craft,EA055-3,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +70269,Ch8,EA055,Craft,EA055-3,,hanzeli1955,,1940,EthnographicAtlas_1967_p84, +70270,Ch9,EA055,Craft,EA055-3,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +70271,Ci1,EA055,Craft,EA055-3,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +70272,Ci10,EA055,Craft,EA055-3,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +70273,Ci11,EA055,Craft,EA055-3,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +70274,Ci12,EA055,Craft,EA055-3,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +70275,Ci2,EA055,Craft,EA055-3,,grigolia1939,,1930,EthnographicAtlas_1967_p84, +70276,Ci3,EA055,Craft,EA055-3,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p84, +70277,Ci4,EA055,Craft,EA055-3,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +70278,Ci5,EA055,Craft,EA055-3,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +70279,Ci6,EA055,Craft,EA055-3,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p84, +70280,Ci7,EA055,Craft,EA055-3,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p84, +70281,Ci8,EA055,?,EA055-NA,,,,,, +70282,Ci9,EA055,?,EA055-NA,,,,,, +70283,Cj1,EA055,Craft,EA055-3,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +70284,Cj10,EA055,Craft,EA055-3,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +70285,Cj2,EA055,Craft,EA055-3,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +70286,Cj3,EA055,Craft,EA055-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +70287,Cj4,EA055,Craft,EA055-3,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +70288,Cj5,EA055,Craft,EA055-3,,dickson1949,,1930,EthnographicAtlas_1967_p88, +70289,Cj6,EA055,?,EA055-NA,,,,,, +70290,Cj7,EA055,Craft,EA055-3,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +70291,Cj8,EA055,Craft,EA055-3,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +70292,Cj9,EA055,Craft,EA055-3,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +70293,Ea1,EA055,Craft,EA055-3,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +70294,Ea10,EA055,Craft,EA055-3,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +70295,Ea11,EA055,Craft,EA055-3,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +70296,Ea12,EA055,Craft,EA055-3,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +70297,Ea13,EA055,Craft,EA055-3,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +70298,Ea2,EA055,Craft,EA055-3,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +70299,Ea3,EA055,Craft,EA055-3,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +70300,Ea4,EA055,Craft,EA055-3,,barth1956b,,1950,EthnographicAtlas_1967_p88, +70301,Ea5,EA055,Craft,EA055-3,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +70302,Ea6,EA055,Craft,EA055-3,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +70303,Ea7,EA055,Craft,EA055-3,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +70304,Ea8,EA055,Craft,EA055-3,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +70305,Ea9,EA055,Craft,EA055-3,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +70306,Eb1,EA055,Craft,EA055-3,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +70307,Eb2,EA055,Craft,EA055-3,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +70308,Eb3,EA055,Craft,EA055-3,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +70309,Eb4,EA055,?,EA055-NA,,,,,, +70310,Eb5,EA055,?,EA055-NA,,,,,, +70311,Eb6,EA055,?,EA055-NA,,,,,, +70312,Eb7,EA055,Craft,EA055-3,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +70313,Eb8,EA055,?,EA055-NA,,,,,, +70314,Ec1,EA055,Craft,EA055-3,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +70315,Ec10,EA055,?,EA055-NA,,,,,, +70316,Ec11,EA055,Activity is absent,EA055-10,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +70317,Ec2,EA055,Craft,EA055-3,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70318,Ec3,EA055,Craft,EA055-3,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +70319,Ec4,EA055,Activity is absent,EA055-10,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +70320,Ec5,EA055,Craft,EA055-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +70321,Ec6,EA055,Activity is absent,EA055-10,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p88, +70322,Ec7,EA055,Activity is absent,EA055-10,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +70323,Ec8,EA055,?,EA055-NA,,,,,, +70324,Ec9,EA055,?,EA055-NA,,,,,, +70325,Ed1,EA055,Craft,EA055-3,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +70326,Ed10,EA055,Craft,EA055-3,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +70327,Ed13,EA055,?,EA055-NA,,,,,, +70328,Ed14,EA055,?,EA055-NA,,,,,, +70329,Ed15a,EA055,?,EA055-NA,,,,,, +70330,Ed15b,EA055,Craft,EA055-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +70331,Ed16,EA055,?,EA055-NA,,,,,, +70332,Ed2,EA055,Craft,EA055-3,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +70333,Ed3,EA055,Craft,EA055-3,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +70334,Ed4,EA055,Craft,EA055-3,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +70335,Ed5,EA055,Industrial,EA055-4,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70336,Ed6,EA055,Craft,EA055-3,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +70337,Ed7,EA055,Craft,EA055-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +70338,Ed8,EA055,Craft,EA055-3,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +70339,Ed9,EA055,Activity is absent,EA055-10,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +70340,Ee1,EA055,Craft,EA055-3,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +70341,Ee2,EA055,Craft,EA055-3,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +70342,Ee3,EA055,Activity is absent,EA055-10,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +70343,Ee4,EA055,Craft,EA055-3,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +70344,Ee5,EA055,Craft,EA055-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +70345,Ee6,EA055,Craft,EA055-3,"But smiths are Nepali, not Sherpa",furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +70346,Ee7,EA055,?,EA055-NA,,,,,, +70347,Ee8,EA055,Craft,EA055-3,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +70348,Ef1,EA055,Craft,EA055-3,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +70349,Ef10,EA055,?,EA055-NA,,,,,, +70350,Ef11,EA055,Craft,EA055-3,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +70351,Ef2,EA055,Craft,EA055-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +70352,Ef3,EA055,?,EA055-NA,,,,,, +70353,Ef4,EA055,?,EA055-NA,,,,,, +70354,Ef5,EA055,Craft,EA055-3,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +70355,Ef6,EA055,?,EA055-NA,,,,,, +70356,Ef7,EA055,Craft,EA055-3,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +70357,Ef8,EA055,Craft,EA055-3,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +70358,Ef9,EA055,Craft,EA055-3,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70359,Eg1,EA055,Activity is absent,EA055-10,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70360,Eg10,EA055,Craft,EA055-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +70361,Eg11,EA055,?,EA055-NA,,,,,, +70362,Eg12,EA055,?,EA055-NA,,,,,, +70363,Eg13,EA055,Activity is absent,EA055-10,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70364,Eg14,EA055,Activity is absent,EA055-10,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +70365,Eg2,EA055,Craft,EA055-3,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +70366,Eg3,EA055,Activity is absent,EA055-10,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +70367,Eg4,EA055,Activity is absent,EA055-10,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +70368,Eg5,EA055,Craft,EA055-3,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +70369,Eg6,EA055,Craft,EA055-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +70370,Eg7,EA055,?,EA055-NA,,,,,, +70371,Eg8,EA055,Craft,EA055-3,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +70372,Eg9,EA055,?,EA055-NA,,,,,, +70373,Eh1,EA055,Activity is absent,EA055-10,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +70374,Eh10,EA055,?,EA055-NA,,,,,, +70375,Eh2,EA055,Craft,EA055-3,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +70376,Eh3,EA055,Craft,EA055-3,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +70377,Eh4,EA055,Activity is absent,EA055-10,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70378,Eh5,EA055,Craft,EA055-3,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +70379,Eh6,EA055,Craft,EA055-3,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p92, +70380,Eh7,EA055,Craft,EA055-3,"But McLeod reports 'activity is absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +70381,Eh8,EA055,Craft,EA055-3,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +70382,Eh9,EA055,Craft,EA055-3,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +70383,Ei1,EA055,Activity is absent,EA055-10,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70384,Ei10,EA055,Activity is absent,EA055-10,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +70385,Ei11,EA055,Craft,EA055-3,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +70386,Ei12,EA055,?,EA055-NA,,,,,, +70387,Ei13,EA055,Craft,EA055-3,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +70388,Ei14,EA055,Craft,EA055-3,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +70389,Ei15,EA055,?,EA055-NA,,,,,, +70390,Ei16,EA055,Craft,EA055-3,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +70391,Ei17,EA055,?,EA055-NA,,,,,, +70392,Ei18,EA055,Craft,EA055-3,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +70393,Ei19,EA055,Craft,EA055-3,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +70394,Ei2,EA055,Craft,EA055-3,,mills1922,,1920,EthnographicAtlas_1967_p92, +70395,Ei20,EA055,?,EA055-NA,,,,,, +70396,Ei3,EA055,Craft,EA055-3,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +70397,Ei4,EA055,Craft,EA055-3,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +70398,Ei5,EA055,Craft,EA055-3,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +70399,Ei6,EA055,Craft,EA055-3,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +70400,Ei7,EA055,Activity is absent,EA055-10,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +70401,Ei8,EA055,Craft,EA055-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +70402,Ei9,EA055,Activity is absent,EA055-10,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +70403,Ej1,EA055,Activity is absent,EA055-10,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +70404,Ej10,EA055,Craft,EA055-3,Itinerant smiths,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +70405,Ej11,EA055,Craft,EA055-3,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p92, +70406,Ej12,EA055,Craft,EA055-3,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +70407,Ej13,EA055,Craft,EA055-3,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +70408,Ej14,EA055,Activity is absent,EA055-10,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70409,Ej15,EA055,Craft,EA055-3,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +70410,Ej16,EA055,Activity is absent,EA055-10,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +70411,Ej2,EA055,Craft,EA055-3,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +70412,Ej3,EA055,Activity is absent,EA055-10,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +70413,Ej4,EA055,Craft,EA055-3,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +70414,Ej5,EA055,Craft,EA055-3,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +70415,Ej6,EA055,Activity is absent,EA055-10,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +70416,Ej7,EA055,Craft,EA055-3,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +70417,Ej8,EA055,Craft,EA055-3,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +70418,Ej9,EA055,Craft,EA055-3,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +70419,Ia1,EA055,Craft,EA055-3,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +70420,Ia10,EA055,Craft,EA055-3,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +70421,Ia11,EA055,Craft,EA055-3,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +70422,Ia12,EA055,Craft,EA055-3,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +70423,Ia13,EA055,Activity is absent,EA055-10,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +70424,Ia14,EA055,Craft,EA055-3,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +70425,Ia15,EA055,?,EA055-NA,,,,,, +70426,Ia16,EA055,Craft,EA055-3,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +70427,Ia17,EA055,?,EA055-NA,,,,,, +70428,Ia18,EA055,?,EA055-NA,,,,,, +70429,Ia2,EA055,Craft,EA055-3,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +70430,Ia3,EA055,Craft,EA055-3,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +70431,Ia4,EA055,?,EA055-NA,,,,,, +70432,Ia5,EA055,Craft,EA055-3,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +70433,Ia6,EA055,Craft,EA055-3,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70434,Ia7,EA055,Craft,EA055-3,,fox1954,,1950,EthnographicAtlas_1967_p92, +70435,Ia8,EA055,?,EA055-NA,,,,,, +70436,Ia9,EA055,Craft,EA055-3,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +70437,Ib1,EA055,Craft,EA055-3,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70438,Ib2,EA055,Craft,EA055-3,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70439,Ib3,EA055,Craft,EA055-3,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +70440,Ib4,EA055,Craft,EA055-3,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +70441,Ib5,EA055,?,EA055-NA,,,,,, +70442,Ib6,EA055,Craft,EA055-3,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +70443,Ib7,EA055,Activity is absent,EA055-10,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +70444,Ib8,EA055,Activity is absent,EA055-10,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +70445,Ib9,EA055,?,EA055-NA,,,,,, +70446,Ic1,EA055,Craft,EA055-3,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70447,Ic10,EA055,Activity is absent,EA055-10,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +70448,Ic11,EA055,Craft,EA055-3,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70449,Ic12,EA055,Craft,EA055-3,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +70450,Ic13,EA055,?,EA055-NA,,,,,, +70451,Ic2,EA055,Craft,EA055-3,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +70452,Ic3,EA055,Craft,EA055-3,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +70453,Ic4,EA055,?,EA055-NA,,,,,, +70454,Ic5,EA055,Craft,EA055-3,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +70455,Ic6,EA055,Craft,EA055-3,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +70456,Ic7,EA055,Craft,EA055-3,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +70457,Ic8,EA055,Activity is absent,EA055-10,,pleyte1893,,1890,EthnographicAtlas_1967_p96, +70458,Ic9,EA055,Craft,EA055-3,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p96, +70459,Id1,EA055,Activity is absent,EA055-10,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +70460,Id10,EA055,Activity is absent,EA055-10,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +70461,Id11,EA055,Activity is absent,EA055-10,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +70462,Id12,EA055,Activity is absent,EA055-10,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +70463,Id13,EA055,Activity is absent,EA055-10,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +70464,Id2,EA055,Activity is absent,EA055-10,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +70465,Id3,EA055,Activity is absent,EA055-10,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +70466,Id4,EA055,Activity is absent,EA055-10,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +70467,Id5,EA055,Activity is absent,EA055-10,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +70468,Id6,EA055,Activity is absent,EA055-10,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +70469,Id7,EA055,Activity is absent,EA055-10,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +70470,Id8,EA055,Activity is absent,EA055-10,,roth1890,,1830,EthnographicAtlas_1967_p96, +70471,Id9,EA055,Activity is absent,EA055-10,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +70472,Ie1,EA055,Activity is absent,EA055-10,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70473,Ie10,EA055,Activity is absent,EA055-10,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +70474,Ie11,EA055,Activity is absent,EA055-10,,bowers1964,,1950,EthnographicAtlas_1967_p96, +70475,Ie12,EA055,Activity is absent,EA055-10,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70476,Ie13,EA055,Activity is absent,EA055-10,,landtman1927,,1920,EthnographicAtlas_1967_p96, +70477,Ie14,EA055,Activity is absent,EA055-10,,haddon1908,,1900,EthnographicAtlas_1967_p96, +70478,Ie15,EA055,Activity is absent,EA055-10,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70479,Ie16,EA055,Activity is absent,EA055-10,,williams194041,,1940,EthnographicAtlas_1967_p96, +70480,Ie17,EA055,Activity is absent,EA055-10,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +70481,Ie18,EA055,Activity is absent,EA055-10,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +70482,Ie19,EA055,Activity is absent,EA055-10,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +70483,Ie2,EA055,Activity is absent,EA055-10,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +70484,Ie20,EA055,Activity is absent,EA055-10,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +70485,Ie21,EA055,Activity is absent,EA055-10,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +70486,Ie22,EA055,Activity is absent,EA055-10,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +70487,Ie23,EA055,Activity is absent,EA055-10,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +70488,Ie24,EA055,Activity is absent,EA055-10,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +70489,Ie25,EA055,Activity is absent,EA055-10,,williamson1912,,1920,EthnographicAtlas_1967_p96, +70490,Ie26,EA055,Activity is absent,EA055-10,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +70491,Ie27,EA055,Activity is absent,EA055-10,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +70492,Ie28,EA055,Activity is absent,EA055-10,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +70493,Ie29,EA055,Activity is absent,EA055-10,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70494,Ie3,EA055,Activity is absent,EA055-10,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70495,Ie30,EA055,Activity is absent,EA055-10,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +70496,Ie31,EA055,Activity is absent,EA055-10,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +70497,Ie32,EA055,Activity is absent,EA055-10,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +70498,Ie33,EA055,Activity is absent,EA055-10,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +70499,Ie34,EA055,?,EA055-NA,,,,,, +70500,Ie35,EA055,Activity is absent,EA055-10,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +70501,Ie36,EA055,?,EA055-NA,,,,,, +70502,Ie37,EA055,?,EA055-NA,,,,,, +70503,Ie38,EA055,Activity is absent,EA055-10,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +70504,Ie39,EA055,Activity is absent,EA055-10,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +70505,Ie4,EA055,Activity is absent,EA055-10,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70506,Ie5,EA055,Activity is absent,EA055-10,,williams1936,,1930,EthnographicAtlas_1967_p96, +70507,Ie6,EA055,Activity is absent,EA055-10,,held1947,,1930,EthnographicAtlas_1967_p96, +70508,Ie7,EA055,Activity is absent,EA055-10,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +70509,Ie8,EA055,Activity is absent,EA055-10,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +70510,Ie9,EA055,Activity is absent,EA055-10,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +70511,If1,EA055,Activity is absent,EA055-10,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70512,If10,EA055,?,EA055-NA,,,,,, +70513,If11,EA055,Activity is absent,EA055-10,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +70514,If12,EA055,Activity is absent,EA055-10,,mason1954,,1940,EthnographicAtlas_1967_p100, +70515,If13,EA055,Activity is absent,EA055-10,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +70516,If14,EA055,Activity is absent,EA055-10,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +70517,If15,EA055,Activity is absent,EA055-10,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +70518,If16,EA055,Activity is absent,EA055-10,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +70519,If17,EA055,Activity is absent,EA055-10,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +70520,If2,EA055,Activity is absent,EA055-10,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +70521,If3,EA055,Activity is absent,EA055-10,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +70522,If4,EA055,Activity is absent,EA055-10,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +70523,If5,EA055,Activity is absent,EA055-10,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +70524,If6,EA055,Activity is absent,EA055-10,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +70525,If7,EA055,Activity is absent,EA055-10,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +70526,If8,EA055,Craft,EA055-3,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +70527,If9,EA055,Activity is absent,EA055-10,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +70528,Ig1,EA055,Activity is absent,EA055-10,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +70529,Ig10,EA055,Activity is absent,EA055-10,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +70530,Ig11,EA055,Activity is absent,EA055-10,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +70531,Ig12,EA055,Activity is absent,EA055-10,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p100, +70532,Ig13,EA055,Activity is absent,EA055-10,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +70533,Ig14,EA055,Activity is absent,EA055-10,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +70534,Ig15,EA055,?,EA055-NA,,,,,, +70535,Ig16,EA055,?,EA055-NA,,,,,, +70536,Ig17,EA055,?,EA055-NA,,,,,, +70537,Ig18,EA055,?,EA055-NA,,,,,, +70538,Ig19,EA055,?,EA055-NA,,,,,, +70539,Ig2,EA055,Activity is absent,EA055-10,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +70540,Ig20,EA055,Activity is absent,EA055-10,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +70541,Ig21,EA055,Activity is absent,EA055-10,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +70542,Ig3,EA055,Activity is absent,EA055-10,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +70543,Ig4,EA055,Activity is absent,EA055-10,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +70544,Ig5,EA055,Activity is absent,EA055-10,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +70545,Ig6,EA055,Activity is absent,EA055-10,,ivens1927,,1900,EthnographicAtlas_1967_p100, +70546,Ig7,EA055,Activity is absent,EA055-10,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +70547,Ig8,EA055,?,EA055-NA,,,,,, +70548,Ig9,EA055,Activity is absent,EA055-10,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +70549,Ih1,EA055,Activity is absent,EA055-10,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +70550,Ih10,EA055,Activity is absent,EA055-10,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70551,Ih11,EA055,?,EA055-NA,,,,,, +70552,Ih12,EA055,?,EA055-NA,,,,,, +70553,Ih13,EA055,?,EA055-NA,,,,,, +70554,Ih14,EA055,Activity is absent,EA055-10,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +70555,Ih2,EA055,Activity is absent,EA055-10,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70556,Ih3,EA055,Activity is absent,EA055-10,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p100, +70557,Ih4,EA055,Activity is absent,EA055-10,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70558,Ih5,EA055,Activity is absent,EA055-10,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p100, +70559,Ih6,EA055,Activity is absent,EA055-10,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +70560,Ih7,EA055,Activity is absent,EA055-10,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +70561,Ih8,EA055,Activity is absent,EA055-10,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +70562,Ih9,EA055,Activity is absent,EA055-10,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70563,Ii1,EA055,Activity is absent,EA055-10,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +70564,Ii10,EA055,?,EA055-NA,,,,,, +70565,Ii12,EA055,Activity is absent,EA055-10,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70566,Ii13,EA055,Activity is absent,EA055-10,,burrows1937,,1830,EthnographicAtlas_1967_p100, +70567,Ii14,EA055,Activity is absent,EA055-10,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +70568,Ii2,EA055,Activity is absent,EA055-10,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +70569,Ii3,EA055,Activity is absent,EA055-10,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +70570,Ii4,EA055,Activity is absent,EA055-10,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +70571,Ii5,EA055,Activity is absent,EA055-10,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +70572,Ii6,EA055,Activity is absent,EA055-10,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +70573,Ii7,EA055,Activity is absent,EA055-10,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +70574,Ii8,EA055,Activity is absent,EA055-10,,burrows1936,,1840,EthnographicAtlas_1967_p100, +70575,Ii9,EA055,Activity is absent,EA055-10,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +70576,Ij1,EA055,Activity is absent,EA055-10,,buck1934,,1820,EthnographicAtlas_1967_p100, +70577,Ij10,EA055,?,EA055-NA,,,,,, +70578,Ij2,EA055,Activity is absent,EA055-10,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +70579,Ij3,EA055,Activity is absent,EA055-10,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +70580,Ij4,EA055,Activity is absent,EA055-10,,buck1932a,,1850,EthnographicAtlas_1967_p104, +70581,Ij5,EA055,Activity is absent,EA055-10,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +70582,Ij6,EA055,Activity is absent,EA055-10,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +70583,Ij7,EA055,Activity is absent,EA055-10,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +70584,Ij8,EA055,Activity is absent,EA055-10,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +70585,Ij9,EA055,Activity is absent,EA055-10,,metraux1940,,1860,EthnographicAtlas_1967_p104, +70586,Na1,EA055,Activity is absent,EA055-10,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +70587,Na10,EA055,Activity is absent,EA055-10,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +70588,Na11,EA055,Activity is absent,EA055-10,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +70589,Na12,EA055,Activity is absent,EA055-10,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +70590,Na13,EA055,Activity is absent,EA055-10,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +70591,Na14,EA055,Activity is absent,EA055-10,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +70592,Na15,EA055,Activity is absent,EA055-10,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +70593,Na16,EA055,Activity is absent,EA055-10,,osgood1931,,1860,EthnographicAtlas_1967_p104, +70594,Na17,EA055,Activity is absent,EA055-10,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70595,Na19,EA055,Activity is absent,EA055-10,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +70596,Na2,EA055,Activity is absent,EA055-10,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +70597,Na20,EA055,Activity is absent,EA055-10,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +70598,Na21,EA055,Activity is absent,EA055-10,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +70599,Na22,EA055,Activity is absent,EA055-10,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +70600,Na23,EA055,Activity is absent,EA055-10,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +70601,Na24,EA055,Activity is absent,EA055-10,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +70602,Na25,EA055,Most adults,EA055-9,"Though ironworking is very old, it is confined to cold hammering and filing",birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +70603,Na26,EA055,Activity is absent,EA055-10,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +70604,Na27,EA055,Activity is absent,EA055-10,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +70605,Na28,EA055,Activity is absent,EA055-10,,jenness1937,,1880,EthnographicAtlas_1967_p104, +70606,Na29,EA055,Activity is absent,EA055-10,,goddard1916,,1850,EthnographicAtlas_1967_p104, +70607,Na3,EA055,Activity is absent,EA055-10,But some cold working of native copper,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +70608,Na30,EA055,Activity is absent,EA055-10,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +70609,Na31,EA055,Activity is absent,EA055-10,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +70610,Na32,EA055,Activity is absent,EA055-10,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +70611,Na33,EA055,Activity is absent,EA055-10,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +70612,Na34,EA055,Activity is absent,EA055-10,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +70613,Na35,EA055,Activity is absent,EA055-10,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +70614,Na36,EA055,Activity is absent,EA055-10,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +70615,Na37,EA055,Activity is absent,EA055-10,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +70616,Na38,EA055,Activity is absent,EA055-10,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +70617,Na39,EA055,Activity is absent,EA055-10,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +70618,Na4,EA055,Activity is absent,EA055-10,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +70619,Na40,EA055,Activity is absent,EA055-10,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +70620,Na41,EA055,Activity is absent,EA055-10,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +70621,Na42,EA055,Activity is absent,EA055-10,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +70622,Na43,EA055,Activity is absent,EA055-10,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +70623,Na44,EA055,?,EA055-NA,,,,,, +70624,Na45,EA055,Activity is absent,EA055-10,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +70625,Na5,EA055,Activity is absent,EA055-10,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +70626,Na6,EA055,Activity is absent,EA055-10,,lantis1946,,1930,EthnographicAtlas_1967_p104, +70627,Na7,EA055,Activity is absent,EA055-10,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +70628,Na8,EA055,Activity is absent,EA055-10,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +70629,Na9,EA055,Activity is absent,EA055-10,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70630,Nb1,EA055,Activity is absent,EA055-10,But men made artifacts of beaten copper,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +70631,Nb10,EA055,Activity is absent,EA055-10,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +70632,Nb11,EA055,Activity is absent,EA055-10,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +70633,Nb12,EA055,Activity is absent,EA055-10,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +70634,Nb13,EA055,Activity is absent,EA055-10,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +70635,Nb14,EA055,Activity is absent,EA055-10,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +70636,Nb15,EA055,Activity is absent,EA055-10,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +70637,Nb16,EA055,Activity is absent,EA055-10,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +70638,Nb17,EA055,Activity is absent,EA055-10,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +70639,Nb18,EA055,Activity is absent,EA055-10,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +70640,Nb19,EA055,Activity is absent,EA055-10,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +70641,Nb2,EA055,Activity is absent,EA055-10,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +70642,Nb20,EA055,Activity is absent,EA055-10,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +70643,Nb21,EA055,Activity is absent,EA055-10,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +70644,Nb22,EA055,Activity is absent,EA055-10,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +70645,Nb23,EA055,Activity is absent,EA055-10,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +70646,Nb24,EA055,Activity is absent,EA055-10,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +70647,Nb25,EA055,Activity is absent,EA055-10,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +70648,Nb26,EA055,Activity is absent,EA055-10,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +70649,Nb27,EA055,Activity is absent,EA055-10,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +70650,Nb28,EA055,Activity is absent,EA055-10,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +70651,Nb29,EA055,Activity is absent,EA055-10,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +70652,Nb3,EA055,Activity is absent,EA055-10,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +70653,Nb30,EA055,Activity is absent,EA055-10,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +70654,Nb31,EA055,Activity is absent,EA055-10,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +70655,Nb32,EA055,Activity is absent,EA055-10,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +70656,Nb33,EA055,Activity is absent,EA055-10,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +70657,Nb34,EA055,Activity is absent,EA055-10,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +70658,Nb35,EA055,Activity is absent,EA055-10,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +70659,Nb36,EA055,Activity is absent,EA055-10,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +70660,Nb37,EA055,Activity is absent,EA055-10,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +70661,Nb38,EA055,Activity is absent,EA055-10,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +70662,Nb39,EA055,Activity is absent,EA055-10,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +70663,Nb4,EA055,Activity is absent,EA055-10,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +70664,Nb5,EA055,Activity is absent,EA055-10,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +70665,Nb6,EA055,Activity is absent,EA055-10,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +70666,Nb7,EA055,Activity is absent,EA055-10,But artifacts were made of beaten copper,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +70667,Nb8,EA055,Activity is absent,EA055-10,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +70668,Nb9,EA055,Activity is absent,EA055-10,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +70669,Nc1,EA055,Activity is absent,EA055-10,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +70670,Nc10,EA055,Activity is absent,EA055-10,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +70671,Nc11,EA055,Activity is absent,EA055-10,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +70672,Nc12,EA055,Activity is absent,EA055-10,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +70673,Nc13,EA055,Activity is absent,EA055-10,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +70674,Nc14,EA055,Activity is absent,EA055-10,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +70675,Nc15,EA055,Activity is absent,EA055-10,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +70676,Nc16,EA055,Activity is absent,EA055-10,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +70677,Nc17,EA055,Activity is absent,EA055-10,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +70678,Nc18,EA055,Activity is absent,EA055-10,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +70679,Nc19,EA055,Activity is absent,EA055-10,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +70680,Nc2,EA055,Activity is absent,EA055-10,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +70681,Nc20,EA055,Activity is absent,EA055-10,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +70682,Nc21,EA055,Activity is absent,EA055-10,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +70683,Nc22,EA055,Activity is absent,EA055-10,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +70684,Nc23,EA055,Activity is absent,EA055-10,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +70685,Nc24,EA055,Activity is absent,EA055-10,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +70686,Nc25,EA055,Activity is absent,EA055-10,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +70687,Nc26,EA055,Activity is absent,EA055-10,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +70688,Nc27,EA055,Activity is absent,EA055-10,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +70689,Nc28,EA055,Activity is absent,EA055-10,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +70690,Nc29,EA055,Activity is absent,EA055-10,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +70691,Nc3,EA055,Activity is absent,EA055-10,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +70692,Nc30,EA055,Activity is absent,EA055-10,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +70693,Nc31,EA055,Activity is absent,EA055-10,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +70694,Nc32,EA055,Activity is absent,EA055-10,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +70695,Nc33,EA055,Activity is absent,EA055-10,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +70696,Nc34,EA055,Activity is absent,EA055-10,,meigs1939,,1880,EthnographicAtlas_1967_p108, +70697,Nc4,EA055,Activity is absent,EA055-10,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +70698,Nc5,EA055,Activity is absent,EA055-10,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +70699,Nc6,EA055,Activity is absent,EA055-10,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +70700,Nc7,EA055,Activity is absent,EA055-10,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +70701,Nc8,EA055,Activity is absent,EA055-10,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +70702,Nc9,EA055,Activity is absent,EA055-10,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +70703,Nd1,EA055,Activity is absent,EA055-10,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +70704,Nd10,EA055,Activity is absent,EA055-10,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +70705,Nd11,EA055,Activity is absent,EA055-10,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +70706,Nd12,EA055,Activity is absent,EA055-10,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +70707,Nd13,EA055,Activity is absent,EA055-10,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +70708,Nd14,EA055,Activity is absent,EA055-10,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +70709,Nd15,EA055,Activity is absent,EA055-10,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +70710,Nd16,EA055,Activity is absent,EA055-10,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +70711,Nd17,EA055,Activity is absent,EA055-10,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +70712,Nd18,EA055,Activity is absent,EA055-10,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +70713,Nd19,EA055,Activity is absent,EA055-10,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +70714,Nd2,EA055,Activity is absent,EA055-10,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +70715,Nd20,EA055,Activity is absent,EA055-10,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +70716,Nd21,EA055,Activity is absent,EA055-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +70717,Nd22,EA055,Activity is absent,EA055-10,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +70718,Nd23,EA055,Activity is absent,EA055-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +70719,Nd24,EA055,Activity is absent,EA055-10,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +70720,Nd25,EA055,Activity is absent,EA055-10,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +70721,Nd26,EA055,Activity is absent,EA055-10,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +70722,Nd27,EA055,Activity is absent,EA055-10,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +70723,Nd28,EA055,Activity is absent,EA055-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +70724,Nd29,EA055,Activity is absent,EA055-10,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +70725,Nd3,EA055,Activity is absent,EA055-10,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +70726,Nd30,EA055,Activity is absent,EA055-10,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +70727,Nd31,EA055,Activity is absent,EA055-10,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +70728,Nd32,EA055,Activity is absent,EA055-10,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +70729,Nd33,EA055,Activity is absent,EA055-10,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +70730,Nd34,EA055,Activity is absent,EA055-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +70731,Nd35,EA055,Activity is absent,EA055-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +70732,Nd36,EA055,Activity is absent,EA055-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +70733,Nd37,EA055,Activity is absent,EA055-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +70734,Nd38,EA055,Activity is absent,EA055-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +70735,Nd39,EA055,Activity is absent,EA055-10,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +70736,Nd4,EA055,Activity is absent,EA055-10,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +70737,Nd40,EA055,Activity is absent,EA055-10,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +70738,Nd41,EA055,Activity is absent,EA055-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +70739,Nd42,EA055,Activity is absent,EA055-10,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +70740,Nd43,EA055,Activity is absent,EA055-10,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +70741,Nd44,EA055,Activity is absent,EA055-10,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +70742,Nd45,EA055,Activity is absent,EA055-10,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +70743,Nd46,EA055,Activity is absent,EA055-10,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +70744,Nd47,EA055,Activity is absent,EA055-10,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +70745,Nd48,EA055,Activity is absent,EA055-10,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +70746,Nd49,EA055,Activity is absent,EA055-10,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +70747,Nd5,EA055,Activity is absent,EA055-10,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +70748,Nd50,EA055,Activity is absent,EA055-10,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +70749,Nd51,EA055,Activity is absent,EA055-10,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +70750,Nd52,EA055,Activity is absent,EA055-10,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +70751,Nd53,EA055,Activity is absent,EA055-10,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +70752,Nd54,EA055,Activity is absent,EA055-10,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70753,Nd55,EA055,Activity is absent,EA055-10,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +70754,Nd56,EA055,Activity is absent,EA055-10,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +70755,Nd57,EA055,Activity is absent,EA055-10,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +70756,Nd58,EA055,Activity is absent,EA055-10,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +70757,Nd59,EA055,Activity is absent,EA055-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +70758,Nd6,EA055,Activity is absent,EA055-10,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +70759,Nd60,EA055,Activity is absent,EA055-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +70760,Nd61,EA055,Activity is absent,EA055-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +70761,Nd62,EA055,Activity is absent,EA055-10,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +70762,Nd63,EA055,Activity is absent,EA055-10,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +70763,Nd64,EA055,Activity is absent,EA055-10,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +70764,Nd65,EA055,Activity is absent,EA055-10,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +70765,Nd66,EA055,Activity is absent,EA055-10,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +70766,Nd67,EA055,Activity is absent,EA055-10,,gifford1936,,1870,EthnographicAtlas_1967_p112, +70767,Nd7,EA055,Activity is absent,EA055-10,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +70768,Nd8,EA055,Activity is absent,EA055-10,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +70769,Nd9,EA055,Activity is absent,EA055-10,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +70770,Ne1,EA055,Activity is absent,EA055-10,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +70771,Ne10,EA055,Activity is absent,EA055-10,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +70772,Ne11,EA055,Activity is absent,EA055-10,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +70773,Ne12,EA055,Activity is absent,EA055-10,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +70774,Ne13,EA055,Activity is absent,EA055-10,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +70775,Ne14,EA055,Activity is absent,EA055-10,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +70776,Ne15,EA055,Activity is absent,EA055-10,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +70777,Ne16,EA055,Activity is absent,EA055-10,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +70778,Ne17,EA055,Activity is absent,EA055-10,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +70779,Ne18,EA055,Activity is absent,EA055-10,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +70780,Ne19,EA055,Activity is absent,EA055-10,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +70781,Ne2,EA055,Activity is absent,EA055-10,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +70782,Ne20,EA055,Activity is absent,EA055-10,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +70783,Ne21,EA055,?,EA055-NA,,,,,, +70784,Ne3,EA055,Activity is absent,EA055-10,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +70785,Ne4,EA055,Activity is absent,EA055-10,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +70786,Ne5,EA055,Activity is absent,EA055-10,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +70787,Ne6,EA055,Activity is absent,EA055-10,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +70788,Ne7,EA055,Activity is absent,EA055-10,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +70789,Ne8,EA055,Activity is absent,EA055-10,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +70790,Ne9,EA055,Activity is absent,EA055-10,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +70791,Nf10,EA055,Activity is absent,EA055-10,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +70792,Nf11,EA055,Activity is absent,EA055-10,,whitman1937,,1870,EthnographicAtlas_1967_p116, +70793,Nf12,EA055,Activity is absent,EA055-10,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +70794,Nf13,EA055,Activity is absent,EA055-10,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70795,Nf14,EA055,Activity is absent,EA055-10,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +70796,Nf15,EA055,?,EA055-NA,,,,,, +70797,Nf2,EA055,Activity is absent,EA055-10,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +70798,Nf3,EA055,Activity is absent,EA055-10,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +70799,Nf4,EA055,Activity is absent,EA055-10,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +70800,Nf5,EA055,Activity is absent,EA055-10,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +70801,Nf6,EA055,Activity is absent,EA055-10,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +70802,Nf7,EA055,Activity is absent,EA055-10,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70803,Nf8,EA055,Activity is absent,EA055-10,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +70804,Nf9,EA055,Activity is absent,EA055-10,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +70805,Ng1,EA055,Activity is absent,EA055-10,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +70806,Ng10,EA055,Activity is absent,EA055-10,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +70807,Ng11,EA055,Activity is absent,EA055-10,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +70808,Ng12,EA055,Activity is absent,EA055-10,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +70809,Ng13,EA055,?,EA055-NA,,,,,, +70810,Ng14,EA055,?,EA055-NA,,,,,, +70811,Ng15,EA055,?,EA055-NA,,,,,, +70812,Ng2,EA055,?,EA055-NA,,,,,, +70813,Ng3,EA055,Activity is absent,EA055-10,"But aboriginally men did some work in copper, and probably also in silver and gold, although without the use of fire",bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +70814,Ng4,EA055,?,EA055-NA,,,,,, +70815,Ng5,EA055,Activity is absent,EA055-10,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +70816,Ng6,EA055,Activity is absent,EA055-10,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +70817,Ng7,EA055,Activity is absent,EA055-10,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +70818,Ng8,EA055,Activity is absent,EA055-10,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +70819,Ng9,EA055,?,EA055-NA,,,,,, +70820,Nh1,EA055,Activity is absent,EA055-10,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +70821,Nh10,EA055,Activity is absent,EA055-10,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p116, +70822,Nh11,EA055,Activity is absent,EA055-10,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +70823,Nh12,EA055,Activity is absent,EA055-10,But a little silversmithing today,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +70824,Nh13,EA055,Activity is absent,EA055-10,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +70825,Nh14,EA055,?,EA055-NA,,,,,, +70826,Nh15,EA055,Activity is absent,EA055-10,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +70827,Nh16,EA055,Activity is absent,EA055-10,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70828,Nh17,EA055,Activity is absent,EA055-10,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +70829,Nh18,EA055,Activity is absent,EA055-10,"But aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70830,Nh19,EA055,Activity is absent,EA055-10,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +70831,Nh2,EA055,Activity is absent,EA055-10,,dozier1954,,1950,EthnographicAtlas_1967_p116, +70832,Nh20,EA055,Activity is absent,EA055-10,,gifford1931,,1860,EthnographicAtlas_1967_p116, +70833,Nh21,EA055,Activity is absent,EA055-10,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70834,Nh22,EA055,Activity is absent,EA055-10,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +70835,Nh23,EA055,Activity is absent,EA055-10,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +70836,Nh24,EA055,Activity is absent,EA055-10,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +70837,Nh25,EA055,Activity is absent,EA055-10,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +70838,Nh26,EA055,?,EA055-NA,,,,,, +70839,Nh27,EA055,?,EA055-NA,,,,,, +70840,Nh3,EA055,Craft,EA055-3,"But aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +70841,Nh4,EA055,Activity is absent,EA055-10,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +70842,Nh5,EA055,Activity is absent,EA055-10,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +70843,Nh6,EA055,Activity is absent,EA055-10,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +70844,Nh7,EA055,Activity is absent,EA055-10,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +70845,Nh8,EA055,Activity is absent,EA055-10,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +70846,Nh9,EA055,Activity is absent,EA055-10,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p116, +70847,Ni1,EA055,Activity is absent,EA055-10,Iron working is done by itinerant Mexican smiths,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +70848,Ni2,EA055,Activity is absent,EA055-10,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +70849,Ni3,EA055,Activity is absent,EA055-10,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +70850,Ni4,EA055,Activity is absent,EA055-10,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +70851,Ni5,EA055,Activity is absent,EA055-10,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +70852,Ni6,EA055,Activity is absent,EA055-10,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +70853,Ni7,EA055,Activity is absent,EA055-10,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +70854,Ni8,EA055,?,EA055-NA,,,,,, +70855,Ni9,EA055,?,EA055-NA,,,,,, +70856,Nj1,EA055,Activity is absent,EA055-10,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70857,Nj10,EA055,?,EA055-NA,,,,,, +70858,Nj11,EA055,?,EA055-NA,,,,,, +70859,Nj12,EA055,?,EA055-NA,,,,,, +70860,Nj13,EA055,?,EA055-NA,,,,,, +70861,Nj14,EA055,?,EA055-NA,,,,,, +70862,Nj2,EA055,Craft,EA055-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +70863,Nj3,EA055,Activity is absent,EA055-10,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +70864,Nj4,EA055,Activity is absent,EA055-10,But gold was worked aboriginally,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +70865,Nj5,EA055,?,EA055-NA,,,,,, +70866,Nj6,EA055,?,EA055-NA,,,,,, +70867,Nj7,EA055,Activity is absent,EA055-10,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70868,Nj8,EA055,Most adults,EA055-9,"Work was done in gold, silver, and copper",foster1948,,1500,EthnographicAtlas_1967_p120, +70869,Nj9,EA055,Craft,EA055-3,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +70870,Sa1,EA055,Activity is absent,EA055-10,But gold was worked aboriginally,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +70871,Sa10,EA055,Activity is absent,EA055-10,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +70872,Sa11,EA055,?,EA055-NA,,,,,, +70873,Sa12,EA055,Activity is absent,EA055-10,,stone1948,,1948,EthnographicAtlas_1967_p120, +70874,Sa13,EA055,Activity is absent,EA055-10,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +70875,Sa14,EA055,?,EA055-NA,,,,,, +70876,Sa15,EA055,?,EA055-NA,,,,,, +70877,Sa16,EA055,?,EA055-NA,,,,,, +70878,Sa17,EA055,?,EA055-NA,,,,,, +70879,Sa2,EA055,?,EA055-NA,,,,,, +70880,Sa3,EA055,Activity is absent,EA055-10,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +70881,Sa4,EA055,Activity is absent,EA055-10,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +70882,Sa5,EA055,Activity is absent,EA055-10,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +70883,Sa6,EA055,Most adults,EA055-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +70884,Sa7,EA055,Activity is absent,EA055-10,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +70885,Sa8,EA055,?,EA055-NA,,,,,, +70886,Sa9,EA055,Activity is absent,EA055-10,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +70887,Sb1,EA055,Activity is absent,EA055-10,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +70888,Sb2,EA055,Activity is absent,EA055-10,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +70889,Sb3,EA055,?,EA055-NA,,,,,, +70890,Sb4,EA055,Activity is absent,EA055-10,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +70891,Sb5,EA055,Activity is absent,EA055-10,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p120, +70892,Sb6,EA055,Activity is absent,EA055-10,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +70893,Sb7,EA055,Activity is absent,EA055-10,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +70894,Sb8,EA055,Activity is absent,EA055-10,But gold was beaten into ornaments,rouse1948a,,1520,EthnographicAtlas_1967_p120, +70895,Sb9,EA055,?,EA055-NA,,,,,, +70896,Sc1,EA055,Activity is absent,EA055-10,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +70897,Sc10,EA055,Activity is absent,EA055-10,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +70898,Sc11,EA055,Activity is absent,EA055-10,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +70899,Sc12,EA055,Activity is absent,EA055-10,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +70900,Sc13,EA055,Activity is absent,EA055-10,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +70901,Sc14,EA055,Activity is absent,EA055-10,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +70902,Sc15,EA055,Activity is absent,EA055-10,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +70903,Sc16,EA055,Activity is absent,EA055-10,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +70904,Sc17,EA055,Activity is absent,EA055-10,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +70905,Sc18,EA055,Activity is absent,EA055-10,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +70906,Sc2,EA055,Activity is absent,EA055-10,,leedsnd,,1950,EthnographicAtlas_1967_p120, +70907,Sc3,EA055,Activity is absent,EA055-10,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +70908,Sc4,EA055,Activity is absent,EA055-10,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +70909,Sc5,EA055,Activity is absent,EA055-10,,farabee1918,,1900,EthnographicAtlas_1967_p120, +70910,Sc6,EA055,Activity is absent,EA055-10,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70911,Sc7,EA055,Activity is absent,EA055-10,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +70912,Sc8,EA055,Activity is absent,EA055-10,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +70913,Sc9,EA055,Activity is absent,EA055-10,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +70914,Sd1,EA055,Activity is absent,EA055-10,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70915,Sd2,EA055,Activity is absent,EA055-10,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +70916,Sd3,EA055,Activity is absent,EA055-10,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +70917,Sd4,EA055,Activity is absent,EA055-10,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +70918,Sd5,EA055,Activity is absent,EA055-10,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +70919,Sd6,EA055,Activity is absent,EA055-10,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +70920,Sd7,EA055,Activity is absent,EA055-10,,fock1963,,1950,EthnographicAtlas_1967_p120, +70921,Sd8,EA055,Activity is absent,EA055-10,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +70922,Sd9,EA055,Activity is absent,EA055-10,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70923,Se1,EA055,Activity is absent,EA055-10,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +70924,Se10,EA055,Activity is absent,EA055-10,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p120, +70925,Se11,EA055,Activity is absent,EA055-10,,prost1965,,1960,EthnographicAtlas_1967_p124, +70926,Se12,EA055,?,EA055-NA,,,,,, +70927,Se2,EA055,Activity is absent,EA055-10,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +70928,Se3,EA055,Activity is absent,EA055-10,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +70929,Se4,EA055,Activity is absent,EA055-10,,fejos1943,,1940,EthnographicAtlas_1967_p120, +70930,Se5,EA055,Activity is absent,EA055-10,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +70931,Se6,EA055,Activity is absent,EA055-10,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +70932,Se7,EA055,?,EA055-NA,,,,,, +70933,Se8,EA055,Activity is absent,EA055-10,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +70934,Se9,EA055,Activity is absent,EA055-10,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +70935,Sf1,EA055,Craft,EA055-3,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +70936,Sf2,EA055,Most adults,EA055-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +70937,Sf3,EA055,Activity is absent,EA055-10,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +70938,Sf4,EA055,Activity is absent,EA055-10,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +70939,Sf5,EA055,Most adults,EA055-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +70940,Sf6,EA055,Most adults,EA055-9,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +70941,Sf7,EA055,Activity is absent,EA055-10,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +70942,Sf8,EA055,?,EA055-NA,,,,,, +70943,Sf9,EA055,?,EA055-NA,,,,,, +70944,Sg1,EA055,Activity is absent,EA055-10,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +70945,Sg2,EA055,Most adults,EA055-9,"Aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70946,Sg3,EA055,Activity is absent,EA055-10,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +70947,Sg4,EA055,Most adults,EA055-9,But silversmithing and loom weaving are relatively recent introductions,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +70948,Sg5,EA055,Activity is absent,EA055-10,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70949,Sh1,EA055,Activity is absent,EA055-10,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +70950,Sh2,EA055,Activity is absent,EA055-10,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +70951,Sh3,EA055,Activity is absent,EA055-10,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +70952,Sh4,EA055,Activity is absent,EA055-10,,oberg1949,,1940,EthnographicAtlas_1967_p124, +70953,Sh5,EA055,Activity is absent,EA055-10,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +70954,Sh6,EA055,Activity is absent,EA055-10,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +70955,Sh7,EA055,Activity is absent,EA055-10,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +70956,Sh8,EA055,Activity is absent,EA055-10,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +70957,Sh9,EA055,Activity is absent,EA055-10,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +70958,Si1,EA055,Activity is absent,EA055-10,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70959,Si10,EA055,Activity is absent,EA055-10,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +70960,Si2,EA055,Activity is absent,EA055-10,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +70961,Si3,EA055,Activity is absent,EA055-10,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70962,Si4,EA055,Activity is absent,EA055-10,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +70963,Si5,EA055,Activity is absent,EA055-10,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +70964,Si6,EA055,Activity is absent,EA055-10,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +70965,Si7,EA055,Activity is absent,EA055-10,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +70966,Si8,EA055,Activity is absent,EA055-10,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +70967,Si9,EA055,?,EA055-NA,,,,,, +70968,Sj1,EA055,Activity is absent,EA055-10,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +70969,Sj10,EA055,Activity is absent,EA055-10,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70970,Sj11,EA055,Activity is absent,EA055-10,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +70971,Sj2,EA055,Activity is absent,EA055-10,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +70972,Sj3,EA055,Activity is absent,EA055-10,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +70973,Sj4,EA055,Activity is absent,EA055-10,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +70974,Sj5,EA055,Activity is absent,EA055-10,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +70975,Sj6,EA055,Activity is absent,EA055-10,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +70976,Sj7,EA055,Activity is absent,EA055-10,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +70977,Sj8,EA055,Activity is absent,EA055-10,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +70978,Sj9,EA055,Activity is absent,EA055-10,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +70979,ch12,EA055,Activity is absent,EA055-10,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +70980,ch13,EA055,Activity is absent,EA055-10,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +70981,ch14,EA055,Activity is absent,EA055-10,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +70982,ch15,EA055,Activity is absent,EA055-10,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +70983,ch16,EA055,Craft,EA055-3,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +70984,ch17,EA055,Craft,EA055-3,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +70985,ch18,EA055,Craft,EA055-3,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +70986,ch19,EA055,Craft,EA055-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +70987,ch20,EA055,Activity is absent,EA055-10,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +70988,ch21,EA055,Craft,EA055-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +70989,ch22,EA055,Craft,EA055-3,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +70990,ch23,EA055,Craft,EA055-3,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +70991,ch24,EA055,Craft,EA055-3,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +70992,ch25,EA055,Craft,EA055-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +70993,ch26,EA055,Activity is absent,EA055-10,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +70994,ch27,EA055,Craft,EA055-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +70995,ch28,EA055,Craft,EA055-3,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +70996,ec12,EA055,Most adults,EA055-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +70997,ec13,EA055,Activity is absent,EA055-10,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +70998,ec14,EA055,Activity is absent,EA055-10,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +70999,ec15,EA055,Most adults,EA055-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +71000,ec16,EA055,Most adults,EA055-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +71001,ec17,EA055,Most adults,EA055-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +71002,ec18,EA055,Most adults,EA055-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +71003,ec19,EA055,?,EA055-NA,,,,,, +71004,ec20,EA055,Most adults,EA055-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +71005,ec21,EA055,Most adults,EA055-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +71006,Aa1,EA056,Activity is absent,EA056-10,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +71007,Aa2,EA056,Activity is absent,EA056-10,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +71008,Aa3,EA056,Activity is absent,EA056-10,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +71009,Aa4,EA056,?,EA056-NA,,,,,, +71010,Aa5,EA056,Activity is absent,EA056-10,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +71011,Aa6,EA056,?,EA056-NA,,,,,, +71012,Aa7,EA056,Activity is absent,EA056-10,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +71013,Aa8,EA056,Activity is absent,EA056-10,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +71014,Aa9,EA056,Activity is absent,EA056-10,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +71015,Ab1,EA056,Activity is absent,EA056-10,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +71016,Ab10,EA056,Activity is absent,EA056-10,,hunter1936,,1936,EthnographicAtlas_1967_p64, +71017,Ab11,EA056,Activity is absent,EA056-10,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +71018,Ab12,EA056,Activity is absent,EA056-10,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +71019,Ab13,EA056,Activity is absent,EA056-10,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +71020,Ab14,EA056,Activity is absent,EA056-10,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +71021,Ab15,EA056,Activity is absent,EA056-10,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +71022,Ab16,EA056,?,EA056-NA,,,,,, +71023,Ab17,EA056,?,EA056-NA,,,,,, +71024,Ab18,EA056,?,EA056-NA,,,,,, +71025,Ab19,EA056,Activity is absent,EA056-10,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +71026,Ab2,EA056,Activity is absent,EA056-10,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +71027,Ab20,EA056,?,EA056-NA,,,,,, +71028,Ab21a,EA056,?,EA056-NA,,,,,, +71029,Ab21b,EA056,?,EA056-NA,,,,,, +71030,Ab22,EA056,?,EA056-NA,,,,,, +71031,Ab3,EA056,Activity is absent,EA056-10,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +71032,Ab4,EA056,Activity is absent,EA056-10,But cotton cloth was formerly woven,junod1927,,1920,EthnographicAtlas_1967_p64, +71033,Ab5,EA056,Activity is absent,EA056-10,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +71034,Ab6,EA056,Most adults,EA056-9,But no longer practiced,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +71035,Ab7,EA056,?,EA056-NA,,,,,, +71036,Ab8,EA056,Activity is absent,EA056-10,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +71037,Ab9,EA056,Activity is absent,EA056-10,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +71038,Ac1,EA056,Activity is absent,EA056-10,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +71039,Ac10,EA056,Activity is absent,EA056-10,By men of a neighboring tribe,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +71040,Ac11,EA056,Most adults,EA056-9,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +71041,Ac12,EA056,?,EA056-NA,,,,,, +71042,Ac13,EA056,?,EA056-NA,,,,,, +71043,Ac14,EA056,?,EA056-NA,,,,,, +71044,Ac15,EA056,?,EA056-NA,,,,,, +71045,Ac16,EA056,?,EA056-NA,,,,,, +71046,Ac17,EA056,?,EA056-NA,,,,,, +71047,Ac18,EA056,?,EA056-NA,,,,,, +71048,Ac19,EA056,?,EA056-NA,,,,,, +71049,Ac2,EA056,?,EA056-NA,,,,,, +71050,Ac20,EA056,?,EA056-NA,,,,,, +71051,Ac21,EA056,?,EA056-NA,,,,,, +71052,Ac22,EA056,?,EA056-NA,,,,,, +71053,Ac23,EA056,Most adults,EA056-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +71054,Ac24,EA056,?,EA056-NA,,,,,, +71055,Ac25,EA056,?,EA056-NA,,,,,, +71056,Ac26,EA056,?,EA056-NA,,,,,, +71057,Ac27,EA056,?,EA056-NA,,,,,, +71058,Ac28,EA056,Most adults,EA056-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +71059,Ac29,EA056,?,EA056-NA,,,,,, +71060,Ac3,EA056,Activity is absent,EA056-10,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +71061,Ac30,EA056,?,EA056-NA,,,,,, +71062,Ac31,EA056,Activity is absent,EA056-10,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +71063,Ac32,EA056,?,EA056-NA,,,,,, +71064,Ac33,EA056,?,EA056-NA,,,,,, +71065,Ac34,EA056,Activity is absent,EA056-10,"Formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +71066,Ac35,EA056,?,EA056-NA,,,,,, +71067,Ac36,EA056,?,EA056-NA,,,,,, +71068,Ac37,EA056,?,EA056-NA,,,,,, +71069,Ac38,EA056,Most adults,EA056-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +71070,Ac39,EA056,?,EA056-NA,,,,,, +71071,Ac4,EA056,Most adults,EA056-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +71072,Ac40,EA056,?,EA056-NA,,,,,, +71073,Ac41,EA056,?,EA056-NA,,,,,, +71074,Ac42,EA056,?,EA056-NA,,,,,, +71075,Ac43,EA056,?,EA056-NA,,,,,, +71076,Ac5,EA056,?,EA056-NA,,,,,, +71077,Ac6,EA056,Activity is absent,EA056-10,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +71078,Ac7,EA056,Activity is absent,EA056-10,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +71079,Ac8,EA056,Most adults,EA056-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +71080,Ac9,EA056,?,EA056-NA,,,,,, +71081,Ad1,EA056,?,EA056-NA,,,,,, +71082,Ad10,EA056,?,EA056-NA,,,,,, +71083,Ad11,EA056,Activity is absent,EA056-10,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +71084,Ad12,EA056,?,EA056-NA,,,,,, +71085,Ad13,EA056,?,EA056-NA,,,,,, +71086,Ad14,EA056,Activity is absent,EA056-10,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p68, +71087,Ad15,EA056,Most adults,EA056-9,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p68, +71088,Ad16,EA056,Most adults,EA056-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +71089,Ad17,EA056,Most adults,EA056-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +71090,Ad18,EA056,?,EA056-NA,,,,,, +71091,Ad19,EA056,Most adults,EA056-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +71092,Ad2,EA056,Activity is absent,EA056-10,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +71093,Ad20,EA056,Most adults,EA056-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +71094,Ad21,EA056,?,EA056-NA,,,,,, +71095,Ad22,EA056,Most adults,EA056-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +71096,Ad23,EA056,?,EA056-NA,,,,,, +71097,Ad24,EA056,?,EA056-NA,,,,,, +71098,Ad25,EA056,?,EA056-NA,,,,,, +71099,Ad26,EA056,Activity is absent,EA056-10,,sick1916,,1910,EthnographicAtlas_1967_p68, +71100,Ad27,EA056,Activity is absent,EA056-10,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +71101,Ad28,EA056,?,EA056-NA,,,,,, +71102,Ad29,EA056,Activity is absent,EA056-10,"Formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +71103,Ad3,EA056,Activity is absent,EA056-10,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +71104,Ad30,EA056,?,EA056-NA,,,,,, +71105,Ad31,EA056,?,EA056-NA,,,,,, +71106,Ad32,EA056,?,EA056-NA,,,,,, +71107,Ad33,EA056,?,EA056-NA,,,,,, +71108,Ad34,EA056,?,EA056-NA,,,,,, +71109,Ad35,EA056,Activity is absent,EA056-10,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +71110,Ad36,EA056,?,EA056-NA,,,,,, +71111,Ad37,EA056,?,EA056-NA,,,,,, +71112,Ad38,EA056,?,EA056-NA,,,,,, +71113,Ad39,EA056,?,EA056-NA,,,,,, +71114,Ad4,EA056,Activity is absent,EA056-10,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +71115,Ad40,EA056,?,EA056-NA,,,,,, +71116,Ad41,EA056,?,EA056-NA,,,,,, +71117,Ad42,EA056,?,EA056-NA,,,,,, +71118,Ad43,EA056,?,EA056-NA,,,,,, +71119,Ad44,EA056,Activity is absent,EA056-10,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +71120,Ad45,EA056,?,EA056-NA,,,,,, +71121,Ad46,EA056,Most adults,EA056-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +71122,Ad47,EA056,Most adults,EA056-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +71123,Ad48,EA056,Activity is absent,EA056-10,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +71124,Ad49,EA056,?,EA056-NA,,,,,, +71125,Ad5,EA056,?,EA056-NA,,,,,, +71126,Ad50,EA056,Activity is absent,EA056-10,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +71127,Ad51,EA056,Activity is absent,EA056-10,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +71128,Ad6,EA056,Most adults,EA056-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +71129,Ad7,EA056,Activity is absent,EA056-10,But men made bark cloth,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +71130,Ad8,EA056,?,EA056-NA,,,,,, +71131,Ad9,EA056,Activity is absent,EA056-10,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +71132,Ae1,EA056,Activity is absent,EA056-10,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +71133,Ae10,EA056,Activity is absent,EA056-10,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +71134,Ae11,EA056,?,EA056-NA,,,,,, +71135,Ae12,EA056,?,EA056-NA,,,,,, +71136,Ae13,EA056,?,EA056-NA,,,,,, +71137,Ae14,EA056,?,EA056-NA,,,,,, +71138,Ae15,EA056,?,EA056-NA,,,,,, +71139,Ae16,EA056,?,EA056-NA,,,,,, +71140,Ae17,EA056,Activity is absent,EA056-10,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +71141,Ae18,EA056,Most adults,EA056-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +71142,Ae19,EA056,?,EA056-NA,,,,,, +71143,Ae2,EA056,?,EA056-NA,,,,,, +71144,Ae20,EA056,?,EA056-NA,,,,,, +71145,Ae21,EA056,?,EA056-NA,,,,,, +71146,Ae22,EA056,?,EA056-NA,,,,,, +71147,Ae23,EA056,?,EA056-NA,,,,,, +71148,Ae24,EA056,?,EA056-NA,,,,,, +71149,Ae25,EA056,?,EA056-NA,,,,,, +71150,Ae26,EA056,?,EA056-NA,,,,,, +71151,Ae27,EA056,?,EA056-NA,,,,,, +71152,Ae28,EA056,Activity is absent,EA056-10,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +71153,Ae29,EA056,?,EA056-NA,,,,,, +71154,Ae3,EA056,Activity is absent,EA056-10,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +71155,Ae30,EA056,?,EA056-NA,,,,,, +71156,Ae31,EA056,Activity is absent,EA056-10,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +71157,Ae32,EA056,?,EA056-NA,,,,,, +71158,Ae33,EA056,Activity is absent,EA056-10,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +71159,Ae34,EA056,?,EA056-NA,,,,,, +71160,Ae35,EA056,?,EA056-NA,,,,,, +71161,Ae36,EA056,?,EA056-NA,,,,,, +71162,Ae37,EA056,?,EA056-NA,,,,,, +71163,Ae38,EA056,?,EA056-NA,,,,,, +71164,Ae39,EA056,Activity is absent,EA056-10,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +71165,Ae4,EA056,Most adults,EA056-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +71166,Ae40,EA056,?,EA056-NA,,,,,, +71167,Ae41,EA056,Most adults,EA056-9,,andersson1953,,1940,EthnographicAtlas_1967_p68, +71168,Ae42,EA056,?,EA056-NA,,,,,, +71169,Ae43,EA056,?,EA056-NA,,,,,, +71170,Ae44,EA056,?,EA056-NA,,,,,, +71171,Ae45,EA056,?,EA056-NA,,,,,, +71172,Ae46,EA056,?,EA056-NA,,,,,, +71173,Ae47,EA056,?,EA056-NA,,,,,, +71174,Ae48,EA056,Most adults,EA056-9,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p68, +71175,Ae49,EA056,?,EA056-NA,,,,,, +71176,Ae5,EA056,Craft,EA056-3,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +71177,Ae50,EA056,Most adults,EA056-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +71178,Ae51,EA056,Activity is absent,EA056-10,Small carrying bags only,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +71179,Ae52,EA056,?,EA056-NA,,,,,, +71180,Ae53,EA056,?,EA056-NA,,,,,, +71181,Ae54,EA056,?,EA056-NA,,,,,, +71182,Ae55,EA056,?,EA056-NA,,,,,, +71183,Ae56,EA056,?,EA056-NA,,,,,, +71184,Ae57,EA056,?,EA056-NA,,,,,, +71185,Ae58,EA056,?,EA056-NA,,,,,, +71186,Ae59,EA056,?,EA056-NA,,,,,, +71187,Ae6,EA056,Most adults,EA056-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +71188,Ae7,EA056,Most adults,EA056-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +71189,Ae8,EA056,Activity is absent,EA056-10,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +71190,Ae9,EA056,Activity is absent,EA056-10,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +71191,Af1,EA056,Craft,EA056-3,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +71192,Af10,EA056,Activity is absent,EA056-10,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +71193,Af11,EA056,Most adults,EA056-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +71194,Af12,EA056,?,EA056-NA,,,,,, +71195,Af13,EA056,Most adults,EA056-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +71196,Af14,EA056,Most adults,EA056-9,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +71197,Af15,EA056,Most adults,EA056-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +71198,Af16,EA056,?,EA056-NA,,,,,, +71199,Af17,EA056,?,EA056-NA,,,,,, +71200,Af18,EA056,?,EA056-NA,,,,,, +71201,Af19,EA056,?,EA056-NA,,,,,, +71202,Af2,EA056,Activity is absent,EA056-10,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +71203,Af20,EA056,Most adults,EA056-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +71204,Af21,EA056,?,EA056-NA,,,,,, +71205,Af22,EA056,Activity is absent,EA056-10,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +71206,Af23,EA056,Activity is absent,EA056-10,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +71207,Af24,EA056,Craft,EA056-3,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +71208,Af25,EA056,Activity is absent,EA056-10,"But probably formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +71209,Af26,EA056,?,EA056-NA,,,,,, +71210,Af27,EA056,?,EA056-NA,,,,,, +71211,Af28,EA056,Most adults,EA056-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +71212,Af29,EA056,?,EA056-NA,,,,,, +71213,Af3,EA056,Craft,EA056-3,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +71214,Af30,EA056,?,EA056-NA,,,,,, +71215,Af31,EA056,?,EA056-NA,,,,,, +71216,Af32,EA056,Most adults,EA056-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71217,Af33,EA056,Most adults,EA056-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71218,Af34,EA056,?,EA056-NA,,,,,, +71219,Af35,EA056,?,EA056-NA,,,,,, +71220,Af36,EA056,Most adults,EA056-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +71221,Af37,EA056,?,EA056-NA,,,,,, +71222,Af38,EA056,?,EA056-NA,,,,,, +71223,Af39,EA056,?,EA056-NA,,,,,, +71224,Af4,EA056,?,EA056-NA,,,,,, +71225,Af40,EA056,?,EA056-NA,,,,,, +71226,Af41,EA056,?,EA056-NA,,,,,, +71227,Af42,EA056,Most adults,EA056-9,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +71228,Af43,EA056,?,EA056-NA,,,,,, +71229,Af44,EA056,?,EA056-NA,,,,,, +71230,Af45,EA056,?,EA056-NA,,,,,, +71231,Af46,EA056,?,EA056-NA,,,,,, +71232,Af47,EA056,?,EA056-NA,,,,,, +71233,Af48,EA056,?,EA056-NA,,,,,, +71234,Af49,EA056,?,EA056-NA,,,,,, +71235,Af5,EA056,Most adults,EA056-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +71236,Af50,EA056,?,EA056-NA,,,,,, +71237,Af51,EA056,?,EA056-NA,,,,,, +71238,Af52,EA056,Most adults,EA056-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +71239,Af53,EA056,?,EA056-NA,,,,,, +71240,Af54,EA056,Most adults,EA056-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +71241,Af55,EA056,?,EA056-NA,,,,,, +71242,Af56,EA056,?,EA056-NA,,,,,, +71243,Af57,EA056,Most adults,EA056-9,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +71244,Af58,EA056,?,EA056-NA,,,,,, +71245,Af6,EA056,Most adults,EA056-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +71246,Af7,EA056,?,EA056-NA,,,,,, +71247,Af8,EA056,Most adults,EA056-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +71248,Af9,EA056,?,EA056-NA,,,,,, +71249,Ag1,EA056,Most adults,EA056-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +71250,Ag10,EA056,?,EA056-NA,,,,,, +71251,Ag11,EA056,?,EA056-NA,,,,,, +71252,Ag12,EA056,?,EA056-NA,,,,,, +71253,Ag13,EA056,Most adults,EA056-9,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p72, +71254,Ag14,EA056,?,EA056-NA,,,,,, +71255,Ag15,EA056,?,EA056-NA,,,,,, +71256,Ag16,EA056,?,EA056-NA,,,,,, +71257,Ag17,EA056,?,EA056-NA,,,,,, +71258,Ag18,EA056,?,EA056-NA,,,,,, +71259,Ag19,EA056,?,EA056-NA,,,,,, +71260,Ag2,EA056,Most adults,EA056-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +71261,Ag20,EA056,?,EA056-NA,,,,,, +71262,Ag21,EA056,?,EA056-NA,,,,,, +71263,Ag22,EA056,Craft,EA056-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +71264,Ag23,EA056,?,EA056-NA,,,,,, +71265,Ag24,EA056,?,EA056-NA,,,,,, +71266,Ag25,EA056,?,EA056-NA,,,,,, +71267,Ag26,EA056,?,EA056-NA,,,,,, +71268,Ag27,EA056,?,EA056-NA,,,,,, +71269,Ag28,EA056,?,EA056-NA,,,,,, +71270,Ag29,EA056,?,EA056-NA,,,,,, +71271,Ag3,EA056,?,EA056-NA,,,,,, +71272,Ag30,EA056,Most adults,EA056-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +71273,Ag31,EA056,Most adults,EA056-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p72, +71274,Ag32,EA056,?,EA056-NA,,,,,, +71275,Ag33,EA056,?,EA056-NA,,,,,, +71276,Ag34,EA056,?,EA056-NA,,,,,, +71277,Ag35,EA056,?,EA056-NA,,,,,, +71278,Ag36,EA056,?,EA056-NA,,,,,, +71279,Ag37,EA056,?,EA056-NA,,,,,, +71280,Ag38,EA056,?,EA056-NA,,,,,, +71281,Ag39,EA056,?,EA056-NA,,,,,, +71282,Ag4,EA056,Activity is absent,EA056-10,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +71283,Ag40,EA056,?,EA056-NA,,,,,, +71284,Ag41,EA056,?,EA056-NA,,,,,, +71285,Ag42,EA056,?,EA056-NA,,,,,, +71286,Ag43,EA056,?,EA056-NA,,,,,, +71287,Ag44,EA056,?,EA056-NA,,,,,, +71288,Ag45,EA056,?,EA056-NA,,,,,, +71289,Ag46,EA056,?,EA056-NA,,,,,, +71290,Ag47,EA056,Most adults,EA056-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +71291,Ag48,EA056,Craft,EA056-3,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +71292,Ag49,EA056,Most adults,EA056-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +71293,Ag5,EA056,Most adults,EA056-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +71294,Ag50,EA056,?,EA056-NA,,,,,, +71295,Ag51,EA056,?,EA056-NA,,,,,, +71296,Ag52,EA056,?,EA056-NA,,,,,, +71297,Ag53,EA056,Most adults,EA056-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +71298,Ag54,EA056,Most adults,EA056-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +71299,Ag6,EA056,?,EA056-NA,,,,,, +71300,Ag7,EA056,?,EA056-NA,,,,,, +71301,Ag8,EA056,Most adults,EA056-9,But weaving is confined to a few special products,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +71302,Ag9,EA056,?,EA056-NA,,,,,, +71303,Ah1,EA056,Activity is absent,EA056-10,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71304,Ah10,EA056,?,EA056-NA,,,,,, +71305,Ah11,EA056,Most adults,EA056-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +71306,Ah12,EA056,?,EA056-NA,,,,,, +71307,Ah13,EA056,Most adults,EA056-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +71308,Ah14,EA056,Most adults,EA056-9,,gunnandconant1960,,1920,EthnographicAtlas_1967_p76, +71309,Ah15,EA056,Activity is absent,EA056-10,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +71310,Ah16,EA056,?,EA056-NA,,,,,, +71311,Ah17,EA056,?,EA056-NA,,,,,, +71312,Ah18,EA056,?,EA056-NA,,,,,, +71313,Ah19,EA056,?,EA056-NA,,,,,, +71314,Ah2,EA056,Most adults,EA056-9,,meek1931a,,1920,EthnographicAtlas_1967_p76, +71315,Ah20,EA056,?,EA056-NA,,,,,, +71316,Ah21,EA056,?,EA056-NA,,,,,, +71317,Ah22,EA056,?,EA056-NA,,,,,, +71318,Ah23,EA056,?,EA056-NA,,,,,, +71319,Ah24,EA056,?,EA056-NA,,,,,, +71320,Ah25,EA056,?,EA056-NA,,,,,, +71321,Ah26,EA056,?,EA056-NA,,,,,, +71322,Ah27,EA056,?,EA056-NA,,,,,, +71323,Ah28,EA056,?,EA056-NA,,,,,, +71324,Ah29,EA056,?,EA056-NA,,,,,, +71325,Ah3,EA056,Most adults,EA056-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +71326,Ah30,EA056,?,EA056-NA,,,,,, +71327,Ah31,EA056,?,EA056-NA,,,,,, +71328,Ah32,EA056,?,EA056-NA,,,,,, +71329,Ah33,EA056,?,EA056-NA,,,,,, +71330,Ah34,EA056,?,EA056-NA,,,,,, +71331,Ah35,EA056,?,EA056-NA,,,,,, +71332,Ah36,EA056,Activity is absent,EA056-10,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +71333,Ah37,EA056,?,EA056-NA,,,,,, +71334,Ah38,EA056,Activity is absent,EA056-10,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +71335,Ah39,EA056,Activity is absent,EA056-10,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +71336,Ah4,EA056,?,EA056-NA,,,,,, +71337,Ah5,EA056,?,EA056-NA,,,,,, +71338,Ah6,EA056,?,EA056-NA,,,,,, +71339,Ah7,EA056,Activity is absent,EA056-10,But women weave small bags,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +71340,Ah8,EA056,?,EA056-NA,,,,,, +71341,Ah9,EA056,Most adults,EA056-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +71342,Ai1,EA056,Activity is absent,EA056-10,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +71343,Ai10,EA056,Activity is absent,EA056-10,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +71344,Ai11,EA056,Activity is absent,EA056-10,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +71345,Ai12,EA056,?,EA056-NA,,,,,, +71346,Ai13,EA056,?,EA056-NA,,,,,, +71347,Ai14,EA056,Most adults,EA056-9,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +71348,Ai15,EA056,Most adults,EA056-9,But infrequent,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +71349,Ai16,EA056,?,EA056-NA,,,,,, +71350,Ai17,EA056,Activity is absent,EA056-10,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +71351,Ai18,EA056,Craft,EA056-3,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +71352,Ai19,EA056,?,EA056-NA,,,,,, +71353,Ai2,EA056,?,EA056-NA,,,,,, +71354,Ai20,EA056,?,EA056-NA,,,,,, +71355,Ai21,EA056,Most adults,EA056-9,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p76, +71356,Ai22,EA056,?,EA056-NA,,,,,, +71357,Ai23,EA056,Activity is absent,EA056-10,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +71358,Ai24,EA056,?,EA056-NA,,,,,, +71359,Ai25,EA056,Activity is absent,EA056-10,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +71360,Ai26,EA056,Activity is absent,EA056-10,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +71361,Ai27,EA056,?,EA056-NA,,,,,, +71362,Ai28,EA056,Activity is absent,EA056-10,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +71363,Ai29,EA056,Activity is absent,EA056-10,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +71364,Ai3,EA056,Most adults,EA056-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +71365,Ai30,EA056,Activity is absent,EA056-10,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +71366,Ai31,EA056,?,EA056-NA,,,,,, +71367,Ai32,EA056,?,EA056-NA,,,,,, +71368,Ai33,EA056,?,EA056-NA,,,,,, +71369,Ai34,EA056,?,EA056-NA,,,,,, +71370,Ai35,EA056,?,EA056-NA,,,,,, +71371,Ai36,EA056,Most adults,EA056-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +71372,Ai37,EA056,?,EA056-NA,,,,,, +71373,Ai38,EA056,Activity is absent,EA056-10,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +71374,Ai39,EA056,Activity is absent,EA056-10,,nadel1947,,1940,EthnographicAtlas_1967_p76, +71375,Ai4,EA056,?,EA056-NA,,,,,, +71376,Ai40,EA056,Activity is absent,EA056-10,,nadel1947,,1940,EthnographicAtlas_1967_p76, +71377,Ai41,EA056,Activity is absent,EA056-10,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +71378,Ai42,EA056,Activity is absent,EA056-10,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +71379,Ai43,EA056,Activity is absent,EA056-10,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +71380,Ai44,EA056,?,EA056-NA,,,,,, +71381,Ai45,EA056,?,EA056-NA,,,,,, +71382,Ai46,EA056,?,EA056-NA,,,,,, +71383,Ai47,EA056,Activity is absent,EA056-10,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +71384,Ai5,EA056,Activity is absent,EA056-10,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +71385,Ai6,EA056,Activity is absent,EA056-10,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +71386,Ai7,EA056,Activity is absent,EA056-10,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +71387,Ai8,EA056,Activity is absent,EA056-10,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +71388,Ai9,EA056,?,EA056-NA,,,,,, +71389,Aj1,EA056,?,EA056-NA,,,,,, +71390,Aj10,EA056,?,EA056-NA,,,,,, +71391,Aj11,EA056,?,EA056-NA,,,,,, +71392,Aj12,EA056,?,EA056-NA,,,,,, +71393,Aj13,EA056,?,EA056-NA,,,,,, +71394,Aj14,EA056,?,EA056-NA,,,,,, +71395,Aj15,EA056,Most adults,EA056-9,Aprons only,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +71396,Aj16,EA056,?,EA056-NA,,,,,, +71397,Aj17,EA056,Activity is absent,EA056-10,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +71398,Aj18,EA056,?,EA056-NA,,,,,, +71399,Aj19,EA056,?,EA056-NA,,,,,, +71400,Aj2,EA056,Activity is absent,EA056-10,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +71401,Aj20,EA056,?,EA056-NA,,,,,, +71402,Aj21,EA056,?,EA056-NA,,,,,, +71403,Aj22,EA056,?,EA056-NA,,,,,, +71404,Aj23,EA056,?,EA056-NA,,,,,, +71405,Aj24,EA056,?,EA056-NA,,,,,, +71406,Aj25,EA056,?,EA056-NA,,,,,, +71407,Aj26,EA056,?,EA056-NA,,,,,, +71408,Aj27,EA056,?,EA056-NA,,,,,, +71409,Aj28,EA056,?,EA056-NA,,,,,, +71410,Aj29,EA056,?,EA056-NA,,,,,, +71411,Aj3,EA056,Activity is absent,EA056-10,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +71412,Aj30,EA056,?,EA056-NA,,,,,, +71413,Aj31,EA056,?,EA056-NA,,,,,, +71414,Aj4,EA056,Activity is absent,EA056-10,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +71415,Aj5,EA056,?,EA056-NA,,,,,, +71416,Aj6,EA056,Activity is absent,EA056-10,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +71417,Aj7,EA056,Activity is absent,EA056-10,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +71418,Aj8,EA056,Activity is absent,EA056-10,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +71419,Aj9,EA056,Activity is absent,EA056-10,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +71420,Ca1,EA056,Craft,EA056-3,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +71421,Ca10,EA056,?,EA056-NA,,,,,, +71422,Ca11,EA056,?,EA056-NA,,,,,, +71423,Ca12,EA056,Most adults,EA056-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +71424,Ca13,EA056,?,EA056-NA,,,,,, +71425,Ca14,EA056,Most adults,EA056-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +71426,Ca15,EA056,Most adults,EA056-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +71427,Ca16,EA056,Most adults,EA056-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +71428,Ca17,EA056,Activity is absent,EA056-10,Products obtained by trade with neighboring tribes,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +71429,Ca18,EA056,?,EA056-NA,,,,,, +71430,Ca19,EA056,Activity is absent,EA056-10,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +71431,Ca2,EA056,Craft,EA056-3,But weaving is mainly done by sedentary rather than nomadic Somali,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +71432,Ca20,EA056,?,EA056-NA,,,,,, +71433,Ca21,EA056,Activity is absent,EA056-10,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +71434,Ca22,EA056,Craft,EA056-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +71435,Ca23,EA056,Activity is absent,EA056-10,,jensen1959,,1950,EthnographicAtlas_1967_p80, +71436,Ca24,EA056,?,EA056-NA,,,,,, +71437,Ca25,EA056,?,EA056-NA,,,,,, +71438,Ca26,EA056,?,EA056-NA,,,,,, +71439,Ca27,EA056,?,EA056-NA,,,,,, +71440,Ca28,EA056,Activity is absent,EA056-10,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +71441,Ca29,EA056,Most adults,EA056-9,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +71442,Ca3,EA056,?,EA056-NA,,,,,, +71443,Ca30,EA056,Most adults,EA056-9,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +71444,Ca31,EA056,Most adults,EA056-9,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +71445,Ca32,EA056,Activity is absent,EA056-10,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +71446,Ca33,EA056,Activity is absent,EA056-10,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +71447,Ca34,EA056,?,EA056-NA,,,,,, +71448,Ca35,EA056,?,EA056-NA,,,,,, +71449,Ca36,EA056,?,EA056-NA,,,,,, +71450,Ca37,EA056,?,EA056-NA,,,,,, +71451,Ca38,EA056,?,EA056-NA,,,,,, +71452,Ca39,EA056,Craft,EA056-3,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +71453,Ca4,EA056,?,EA056-NA,,,,,, +71454,Ca40,EA056,Most adults,EA056-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +71455,Ca41,EA056,Most adults,EA056-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +71456,Ca42,EA056,Activity is absent,EA056-10,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +71457,Ca43,EA056,?,EA056-NA,,,,,, +71458,Ca5,EA056,?,EA056-NA,,,,,, +71459,Ca6,EA056,?,EA056-NA,,,,,, +71460,Ca7,EA056,Craft,EA056-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +71461,Ca8,EA056,?,EA056-NA,,,,,, +71462,Ca9,EA056,?,EA056-NA,,,,,, +71463,Cb1,EA056,?,EA056-NA,,,,,, +71464,Cb10,EA056,?,EA056-NA,,,,,, +71465,Cb11,EA056,?,EA056-NA,,,,,, +71466,Cb12,EA056,?,EA056-NA,,,,,, +71467,Cb13,EA056,?,EA056-NA,,,,,, +71468,Cb14,EA056,?,EA056-NA,,,,,, +71469,Cb15,EA056,?,EA056-NA,,,,,, +71470,Cb16,EA056,?,EA056-NA,,,,,, +71471,Cb17,EA056,?,EA056-NA,,,,,, +71472,Cb18,EA056,Most adults,EA056-9,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p80, +71473,Cb19,EA056,?,EA056-NA,,,,,, +71474,Cb2,EA056,Craft,EA056-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +71475,Cb20,EA056,Craft,EA056-3,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +71476,Cb21,EA056,?,EA056-NA,,,,,, +71477,Cb22,EA056,?,EA056-NA,,,,,, +71478,Cb23,EA056,Craft,EA056-3,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +71479,Cb24,EA056,?,EA056-NA,,,,,, +71480,Cb25,EA056,?,EA056-NA,,,,,, +71481,Cb26,EA056,Most adults,EA056-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +71482,Cb27,EA056,?,EA056-NA,,,,,, +71483,Cb28,EA056,?,EA056-NA,,,,,, +71484,Cb29,EA056,?,EA056-NA,,,,,, +71485,Cb3,EA056,Craft,EA056-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +71486,Cb4,EA056,?,EA056-NA,,,,,, +71487,Cb5,EA056,?,EA056-NA,,,,,, +71488,Cb6,EA056,?,EA056-NA,,,,,, +71489,Cb7,EA056,Most adults,EA056-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p80, +71490,Cb8,EA056,?,EA056-NA,,,,,, +71491,Cb9,EA056,Most adults,EA056-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +71492,Cc1,EA056,Most adults,EA056-9,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +71493,Cc10,EA056,Activity is absent,EA056-10,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +71494,Cc11,EA056,?,EA056-NA,,,,,, +71495,Cc12,EA056,?,EA056-NA,,,,,, +71496,Cc13,EA056,?,EA056-NA,,,,,, +71497,Cc14,EA056,Activity is absent,EA056-10,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +71498,Cc15,EA056,?,EA056-NA,,,,,, +71499,Cc16,EA056,Most adults,EA056-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +71500,Cc17,EA056,Most adults,EA056-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +71501,Cc18,EA056,?,EA056-NA,,,,,, +71502,Cc19,EA056,?,EA056-NA,,,,,, +71503,Cc2,EA056,Activity is absent,EA056-10,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +71504,Cc20,EA056,?,EA056-NA,,,,,, +71505,Cc3,EA056,Most adults,EA056-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +71506,Cc4,EA056,Most adults,EA056-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +71507,Cc5,EA056,?,EA056-NA,,,,,, +71508,Cc6,EA056,?,EA056-NA,,,,,, +71509,Cc7,EA056,?,EA056-NA,,,,,, +71510,Cc8,EA056,?,EA056-NA,,,,,, +71511,Cc9,EA056,Activity is absent,EA056-10,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +71512,Cd1,EA056,?,EA056-NA,,,,,, +71513,Cd10,EA056,?,EA056-NA,,,,,, +71514,Cd11,EA056,?,EA056-NA,,,,,, +71515,Cd12,EA056,Most adults,EA056-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +71516,Cd13,EA056,?,EA056-NA,,,,,, +71517,Cd14,EA056,?,EA056-NA,,,,,, +71518,Cd15,EA056,?,EA056-NA,,,,,, +71519,Cd16,EA056,?,EA056-NA,,,,,, +71520,Cd17,EA056,?,EA056-NA,,,,,, +71521,Cd18,EA056,?,EA056-NA,,,,,, +71522,Cd19,EA056,?,EA056-NA,,,,,, +71523,Cd2,EA056,Craft,EA056-3,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +71524,Cd20,EA056,?,EA056-NA,,,,,, +71525,Cd21,EA056,?,EA056-NA,,,,,, +71526,Cd3,EA056,Most adults,EA056-9,Also male specialists using a more advanced type of loom,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +71527,Cd4,EA056,Craft,EA056-3,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +71528,Cd5,EA056,?,EA056-NA,,,,,, +71529,Cd6,EA056,Craft,EA056-3,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +71530,Cd7,EA056,?,EA056-NA,,,,,, +71531,Cd8,EA056,?,EA056-NA,,,,,, +71532,Cd9,EA056,?,EA056-NA,,,,,, +71533,Ce1,EA056,Most adults,EA056-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +71534,Ce2,EA056,?,EA056-NA,,,,,, +71535,Ce3,EA056,?,EA056-NA,,,,,, +71536,Ce4,EA056,?,EA056-NA,,,,,, +71537,Ce5,EA056,Industrial,EA056-4,Presumably industrial specialization only,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +71538,Ce6,EA056,Industrial,EA056-4,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +71539,Ce7,EA056,Industrial,EA056-4,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +71540,Ce8,EA056,Most adults,EA056-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +71541,Cf1,EA056,Industrial,EA056-4,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +71542,Cf2,EA056,?,EA056-NA,,,,,, +71543,Cf3,EA056,Activity is absent,EA056-10,,munch1945,,1930,EthnographicAtlas_1967_p84, +71544,Cf4,EA056,Industrial,EA056-4,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +71545,Cf5,EA056,Industrial,EA056-4,,miner1939,,1930,EthnographicAtlas_1967_p84, +71546,Cg1,EA056,Industrial,EA056-4,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +71547,Cg2,EA056,Most adults,EA056-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +71548,Cg3,EA056,?,EA056-NA,,,,,, +71549,Cg4,EA056,Most adults,EA056-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +71550,Cg5,EA056,?,EA056-NA,,,,,, +71551,Ch1,EA056,Most adults,EA056-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +71552,Ch10,EA056,?,EA056-NA,,,,,, +71553,Ch11,EA056,?,EA056-NA,,,,,, +71554,Ch2,EA056,Most adults,EA056-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +71555,Ch3,EA056,Industrial,EA056-4,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +71556,Ch4,EA056,?,EA056-NA,,,,,, +71557,Ch5,EA056,Most adults,EA056-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +71558,Ch6,EA056,Industrial,EA056-4,,ember1954,,1910,EthnographicAtlas_1967_p84, +71559,Ch7,EA056,Industrial,EA056-4,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +71560,Ch8,EA056,Most adults,EA056-9,,hanzeli1955,,1940,EthnographicAtlas_1967_p84, +71561,Ch9,EA056,Industrial,EA056-4,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +71562,Ci1,EA056,?,EA056-NA,,,,,, +71563,Ci10,EA056,Most adults,EA056-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +71564,Ci11,EA056,Craft,EA056-3,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +71565,Ci12,EA056,Most adults,EA056-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +71566,Ci2,EA056,?,EA056-NA,,,,,, +71567,Ci3,EA056,Most adults,EA056-9,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p84, +71568,Ci4,EA056,?,EA056-NA,,,,,, +71569,Ci5,EA056,Most adults,EA056-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +71570,Ci6,EA056,?,EA056-NA,,,,,, +71571,Ci7,EA056,Most adults,EA056-9,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p84, +71572,Ci8,EA056,?,EA056-NA,,,,,, +71573,Ci9,EA056,?,EA056-NA,,,,,, +71574,Cj1,EA056,Industrial,EA056-4,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +71575,Cj10,EA056,Craft,EA056-3,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +71576,Cj2,EA056,Most adults,EA056-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +71577,Cj3,EA056,Most adults,EA056-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +71578,Cj4,EA056,Craft,EA056-3,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +71579,Cj5,EA056,Most adults,EA056-9,,dickson1949,,1930,EthnographicAtlas_1967_p88, +71580,Cj6,EA056,?,EA056-NA,,,,,, +71581,Cj7,EA056,Industrial,EA056-4,"Formerly females alone (EA045 code ""6""), with no specialization specified (EA056 code ""9"")",davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +71582,Cj8,EA056,Activity is absent,EA056-10,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +71583,Cj9,EA056,Craft,EA056-3,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +71584,Ea1,EA056,Most adults,EA056-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +71585,Ea10,EA056,?,EA056-NA,,,,,, +71586,Ea11,EA056,Most adults,EA056-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +71587,Ea12,EA056,Most adults,EA056-9,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +71588,Ea13,EA056,Craft,EA056-3,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +71589,Ea2,EA056,Craft,EA056-3,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +71590,Ea3,EA056,Most adults,EA056-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +71591,Ea4,EA056,Craft,EA056-3,,barth1956b,,1950,EthnographicAtlas_1967_p88, +71592,Ea5,EA056,Craft,EA056-3,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +71593,Ea6,EA056,Most adults,EA056-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +71594,Ea7,EA056,Most adults,EA056-9,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +71595,Ea8,EA056,Most adults,EA056-9,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +71596,Ea9,EA056,Most adults,EA056-9,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +71597,Eb1,EA056,Most adults,EA056-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +71598,Eb2,EA056,Craft,EA056-3,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +71599,Eb3,EA056,Activity is absent,EA056-10,But felt is manufactured by both sexes,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +71600,Eb4,EA056,?,EA056-NA,,,,,, +71601,Eb5,EA056,?,EA056-NA,,,,,, +71602,Eb6,EA056,?,EA056-NA,,,,,, +71603,Eb7,EA056,?,EA056-NA,,,,,, +71604,Eb8,EA056,?,EA056-NA,,,,,, +71605,Ec1,EA056,Activity is absent,EA056-10,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +71606,Ec10,EA056,Most adults,EA056-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +71607,Ec11,EA056,Activity is absent,EA056-10,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +71608,Ec2,EA056,Craft,EA056-3,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71609,Ec3,EA056,Activity is absent,EA056-10,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +71610,Ec4,EA056,Activity is absent,EA056-10,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +71611,Ec5,EA056,Activity is absent,EA056-10,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +71612,Ec6,EA056,?,EA056-NA,,,,,, +71613,Ec7,EA056,Most adults,EA056-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +71614,Ec8,EA056,?,EA056-NA,,,,,, +71615,Ec9,EA056,?,EA056-NA,,,,,, +71616,Ed1,EA056,Most adults,EA056-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +71617,Ed10,EA056,Most adults,EA056-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +71618,Ed13,EA056,?,EA056-NA,,,,,, +71619,Ed14,EA056,?,EA056-NA,,,,,, +71620,Ed15a,EA056,?,EA056-NA,,,,,, +71621,Ed15b,EA056,Industrial,EA056-4,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +71622,Ed16,EA056,?,EA056-NA,,,,,, +71623,Ed2,EA056,Most adults,EA056-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +71624,Ed3,EA056,Most adults,EA056-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +71625,Ed4,EA056,Most adults,EA056-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +71626,Ed5,EA056,Most adults,EA056-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71627,Ed6,EA056,Most adults,EA056-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +71628,Ed7,EA056,Most adults,EA056-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +71629,Ed8,EA056,Most adults,EA056-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +71630,Ed9,EA056,Most adults,EA056-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +71631,Ee1,EA056,Most adults,EA056-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +71632,Ee2,EA056,Craft,EA056-3,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +71633,Ee3,EA056,Most adults,EA056-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +71634,Ee4,EA056,Craft,EA056-3,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +71635,Ee5,EA056,Craft,EA056-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +71636,Ee6,EA056,Most adults,EA056-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +71637,Ee7,EA056,?,EA056-NA,,,,,, +71638,Ee8,EA056,Most adults,EA056-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +71639,Ef1,EA056,Craft,EA056-3,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +71640,Ef10,EA056,?,EA056-NA,,,,,, +71641,Ef11,EA056,Craft,EA056-3,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +71642,Ef2,EA056,Craft,EA056-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +71643,Ef3,EA056,?,EA056-NA,,,,,, +71644,Ef4,EA056,?,EA056-NA,,,,,, +71645,Ef5,EA056,Activity is absent,EA056-10,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +71646,Ef6,EA056,?,EA056-NA,,,,,, +71647,Ef7,EA056,Craft,EA056-3,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +71648,Ef8,EA056,Craft,EA056-3,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +71649,Ef9,EA056,Craft,EA056-3,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71650,Eg1,EA056,Activity is absent,EA056-10,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71651,Eg10,EA056,Craft,EA056-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +71652,Eg11,EA056,?,EA056-NA,,,,,, +71653,Eg12,EA056,?,EA056-NA,,,,,, +71654,Eg13,EA056,Activity is absent,EA056-10,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71655,Eg14,EA056,Activity is absent,EA056-10,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +71656,Eg2,EA056,Craft,EA056-3,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +71657,Eg3,EA056,Activity is absent,EA056-10,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +71658,Eg4,EA056,Activity is absent,EA056-10,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +71659,Eg5,EA056,?,EA056-NA,,,,,, +71660,Eg6,EA056,?,EA056-NA,,,,,, +71661,Eg7,EA056,Activity is absent,EA056-10,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +71662,Eg8,EA056,Activity is absent,EA056-10,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +71663,Eg9,EA056,?,EA056-NA,,,,,, +71664,Eh1,EA056,Activity is absent,EA056-10,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +71665,Eh10,EA056,?,EA056-NA,,,,,, +71666,Eh2,EA056,Most adults,EA056-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +71667,Eh3,EA056,Most adults,EA056-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +71668,Eh4,EA056,Activity is absent,EA056-10,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71669,Eh5,EA056,Activity is absent,EA056-10,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +71670,Eh6,EA056,?,EA056-NA,,,,,, +71671,Eh7,EA056,Most adults,EA056-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +71672,Eh8,EA056,Most adults,EA056-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +71673,Eh9,EA056,?,EA056-NA,,,,,, +71674,Ei1,EA056,Most adults,EA056-9,But rare today,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71675,Ei10,EA056,Most adults,EA056-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +71676,Ei11,EA056,Most adults,EA056-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +71677,Ei12,EA056,?,EA056-NA,,,,,, +71678,Ei13,EA056,Most adults,EA056-9,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +71679,Ei14,EA056,Most adults,EA056-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +71680,Ei15,EA056,?,EA056-NA,,,,,, +71681,Ei16,EA056,Most adults,EA056-9,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +71682,Ei17,EA056,?,EA056-NA,,,,,, +71683,Ei18,EA056,Most adults,EA056-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +71684,Ei19,EA056,Most adults,EA056-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +71685,Ei2,EA056,Most adults,EA056-9,,mills1922,,1920,EthnographicAtlas_1967_p92, +71686,Ei20,EA056,?,EA056-NA,,,,,, +71687,Ei3,EA056,Most adults,EA056-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +71688,Ei4,EA056,Most adults,EA056-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +71689,Ei5,EA056,?,EA056-NA,,,,,, +71690,Ei6,EA056,Most adults,EA056-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +71691,Ei7,EA056,Most adults,EA056-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +71692,Ei8,EA056,Craft,EA056-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +71693,Ei9,EA056,Most adults,EA056-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +71694,Ej1,EA056,Activity is absent,EA056-10,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +71695,Ej10,EA056,Most adults,EA056-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +71696,Ej11,EA056,Most adults,EA056-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p92, +71697,Ej12,EA056,Most adults,EA056-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +71698,Ej13,EA056,Most adults,EA056-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +71699,Ej14,EA056,Activity is absent,EA056-10,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71700,Ej15,EA056,Most adults,EA056-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +71701,Ej16,EA056,Activity is absent,EA056-10,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +71702,Ej2,EA056,Most adults,EA056-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +71703,Ej3,EA056,Activity is absent,EA056-10,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +71704,Ej4,EA056,Craft,EA056-3,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +71705,Ej5,EA056,Most adults,EA056-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +71706,Ej6,EA056,Activity is absent,EA056-10,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +71707,Ej7,EA056,Most adults,EA056-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +71708,Ej8,EA056,Most adults,EA056-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +71709,Ej9,EA056,?,EA056-NA,,,,,, +71710,Ia1,EA056,Most adults,EA056-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +71711,Ia10,EA056,Activity is absent,EA056-10,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +71712,Ia11,EA056,Most adults,EA056-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +71713,Ia12,EA056,Most adults,EA056-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +71714,Ia13,EA056,Activity is absent,EA056-10,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +71715,Ia14,EA056,Most adults,EA056-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +71716,Ia15,EA056,?,EA056-NA,,,,,, +71717,Ia16,EA056,Most adults,EA056-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +71718,Ia17,EA056,?,EA056-NA,,,,,, +71719,Ia18,EA056,?,EA056-NA,,,,,, +71720,Ia2,EA056,Most adults,EA056-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +71721,Ia3,EA056,Most adults,EA056-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +71722,Ia4,EA056,?,EA056-NA,,,,,, +71723,Ia5,EA056,Most adults,EA056-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +71724,Ia6,EA056,Most adults,EA056-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71725,Ia7,EA056,?,EA056-NA,,,,,, +71726,Ia8,EA056,?,EA056-NA,,,,,, +71727,Ia9,EA056,Most adults,EA056-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +71728,Ib1,EA056,Most adults,EA056-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71729,Ib2,EA056,Activity is absent,EA056-10,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71730,Ib3,EA056,Craft,EA056-3,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +71731,Ib4,EA056,Most adults,EA056-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +71732,Ib5,EA056,Most adults,EA056-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +71733,Ib6,EA056,Most adults,EA056-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +71734,Ib7,EA056,Activity is absent,EA056-10,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +71735,Ib8,EA056,Activity is absent,EA056-10,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +71736,Ib9,EA056,?,EA056-NA,,,,,, +71737,Ic1,EA056,Most adults,EA056-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71738,Ic10,EA056,Most adults,EA056-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +71739,Ic11,EA056,Most adults,EA056-9,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71740,Ic12,EA056,?,EA056-NA,,,,,, +71741,Ic13,EA056,?,EA056-NA,,,,,, +71742,Ic2,EA056,Activity is absent,EA056-10,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +71743,Ic3,EA056,Most adults,EA056-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +71744,Ic4,EA056,?,EA056-NA,,,,,, +71745,Ic5,EA056,Activity is absent,EA056-10,But weaving has been recently introduced,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +71746,Ic6,EA056,Most adults,EA056-9,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +71747,Ic7,EA056,Most adults,EA056-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +71748,Ic8,EA056,Activity is absent,EA056-10,,pleyte1893,,1890,EthnographicAtlas_1967_p96, +71749,Ic9,EA056,?,EA056-NA,,,,,, +71750,Id1,EA056,Activity is absent,EA056-10,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +71751,Id10,EA056,Activity is absent,EA056-10,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +71752,Id11,EA056,Activity is absent,EA056-10,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +71753,Id12,EA056,Activity is absent,EA056-10,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +71754,Id13,EA056,Activity is absent,EA056-10,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +71755,Id2,EA056,Activity is absent,EA056-10,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +71756,Id3,EA056,Activity is absent,EA056-10,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +71757,Id4,EA056,Activity is absent,EA056-10,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +71758,Id5,EA056,Activity is absent,EA056-10,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +71759,Id6,EA056,Activity is absent,EA056-10,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +71760,Id7,EA056,Activity is absent,EA056-10,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +71761,Id8,EA056,Activity is absent,EA056-10,,roth1890,,1830,EthnographicAtlas_1967_p96, +71762,Id9,EA056,Activity is absent,EA056-10,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +71763,Ie1,EA056,Activity is absent,EA056-10,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71764,Ie10,EA056,Activity is absent,EA056-10,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +71765,Ie11,EA056,Activity is absent,EA056-10,,bowers1964,,1950,EthnographicAtlas_1967_p96, +71766,Ie12,EA056,Activity is absent,EA056-10,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71767,Ie13,EA056,Activity is absent,EA056-10,,landtman1927,,1920,EthnographicAtlas_1967_p96, +71768,Ie14,EA056,Activity is absent,EA056-10,,haddon1908,,1900,EthnographicAtlas_1967_p96, +71769,Ie15,EA056,Activity is absent,EA056-10,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71770,Ie16,EA056,Activity is absent,EA056-10,,williams194041,,1940,EthnographicAtlas_1967_p96, +71771,Ie17,EA056,Activity is absent,EA056-10,Armbands and belts only,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +71772,Ie18,EA056,Activity is absent,EA056-10,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +71773,Ie19,EA056,Activity is absent,EA056-10,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +71774,Ie2,EA056,Activity is absent,EA056-10,But women weave net bags,schmitz1960,,1920,EthnographicAtlas_1967_p96, +71775,Ie20,EA056,Activity is absent,EA056-10,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +71776,Ie21,EA056,Activity is absent,EA056-10,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +71777,Ie22,EA056,Activity is absent,EA056-10,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +71778,Ie23,EA056,Activity is absent,EA056-10,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +71779,Ie24,EA056,Activity is absent,EA056-10,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +71780,Ie25,EA056,Activity is absent,EA056-10,,williamson1912,,1920,EthnographicAtlas_1967_p96, +71781,Ie26,EA056,Activity is absent,EA056-10,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +71782,Ie27,EA056,Activity is absent,EA056-10,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +71783,Ie28,EA056,Activity is absent,EA056-10,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +71784,Ie29,EA056,Activity is absent,EA056-10,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71785,Ie3,EA056,Activity is absent,EA056-10,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71786,Ie30,EA056,Activity is absent,EA056-10,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +71787,Ie31,EA056,Activity is absent,EA056-10,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +71788,Ie32,EA056,Activity is absent,EA056-10,But women make net bags,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +71789,Ie33,EA056,Activity is absent,EA056-10,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +71790,Ie34,EA056,?,EA056-NA,,,,,, +71791,Ie35,EA056,Activity is absent,EA056-10,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +71792,Ie36,EA056,?,EA056-NA,,,,,, +71793,Ie37,EA056,?,EA056-NA,,,,,, +71794,Ie38,EA056,Activity is absent,EA056-10,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +71795,Ie39,EA056,Activity is absent,EA056-10,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +71796,Ie4,EA056,Activity is absent,EA056-10,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71797,Ie5,EA056,Activity is absent,EA056-10,,williams1936,,1930,EthnographicAtlas_1967_p96, +71798,Ie6,EA056,?,EA056-NA,,,,,, +71799,Ie7,EA056,Activity is absent,EA056-10,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +71800,Ie8,EA056,Activity is absent,EA056-10,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +71801,Ie9,EA056,Activity is absent,EA056-10,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +71802,If1,EA056,Most adults,EA056-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71803,If10,EA056,?,EA056-NA,,,,,, +71804,If11,EA056,Most adults,EA056-9,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +71805,If12,EA056,Activity is absent,EA056-10,,mason1954,,1940,EthnographicAtlas_1967_p100, +71806,If13,EA056,Activity is absent,EA056-10,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +71807,If14,EA056,Activity is absent,EA056-10,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +71808,If15,EA056,Most adults,EA056-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +71809,If16,EA056,Most adults,EA056-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +71810,If17,EA056,Activity is absent,EA056-10,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +71811,If2,EA056,Most adults,EA056-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +71812,If3,EA056,Activity is absent,EA056-10,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +71813,If4,EA056,Most adults,EA056-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +71814,If5,EA056,Most adults,EA056-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +71815,If6,EA056,Most adults,EA056-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +71816,If7,EA056,Activity is absent,EA056-10,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +71817,If8,EA056,Activity is absent,EA056-10,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +71818,If9,EA056,?,EA056-NA,,,,,, +71819,Ig1,EA056,Activity is absent,EA056-10,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +71820,Ig10,EA056,Activity is absent,EA056-10,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +71821,Ig11,EA056,Activity is absent,EA056-10,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +71822,Ig12,EA056,Activity is absent,EA056-10,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p100, +71823,Ig13,EA056,?,EA056-NA,,,,,, +71824,Ig14,EA056,Activity is absent,EA056-10,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +71825,Ig15,EA056,?,EA056-NA,,,,,, +71826,Ig16,EA056,?,EA056-NA,,,,,, +71827,Ig17,EA056,?,EA056-NA,,,,,, +71828,Ig18,EA056,?,EA056-NA,,,,,, +71829,Ig19,EA056,?,EA056-NA,,,,,, +71830,Ig2,EA056,Activity is absent,EA056-10,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +71831,Ig20,EA056,Activity is absent,EA056-10,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +71832,Ig21,EA056,Activity is absent,EA056-10,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +71833,Ig3,EA056,Activity is absent,EA056-10,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +71834,Ig4,EA056,Activity is absent,EA056-10,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +71835,Ig5,EA056,Activity is absent,EA056-10,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +71836,Ig6,EA056,Activity is absent,EA056-10,,ivens1927,,1900,EthnographicAtlas_1967_p100, +71837,Ig7,EA056,Activity is absent,EA056-10,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +71838,Ig8,EA056,?,EA056-NA,,,,,, +71839,Ig9,EA056,Activity is absent,EA056-10,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +71840,Ih1,EA056,Activity is absent,EA056-10,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +71841,Ih10,EA056,Activity is absent,EA056-10,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71842,Ih11,EA056,?,EA056-NA,,,,,, +71843,Ih12,EA056,?,EA056-NA,,,,,, +71844,Ih13,EA056,?,EA056-NA,,,,,, +71845,Ih14,EA056,Activity is absent,EA056-10,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +71846,Ih2,EA056,Activity is absent,EA056-10,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71847,Ih3,EA056,Activity is absent,EA056-10,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p100, +71848,Ih4,EA056,Activity is absent,EA056-10,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71849,Ih5,EA056,Activity is absent,EA056-10,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p100, +71850,Ih6,EA056,Activity is absent,EA056-10,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +71851,Ih7,EA056,Activity is absent,EA056-10,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +71852,Ih8,EA056,Activity is absent,EA056-10,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +71853,Ih9,EA056,Craft,EA056-3,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71854,Ii1,EA056,Activity is absent,EA056-10,"Women plait fine mats, but there is no true weaving",buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +71855,Ii10,EA056,?,EA056-NA,,,,,, +71856,Ii12,EA056,Activity is absent,EA056-10,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71857,Ii13,EA056,Activity is absent,EA056-10,,burrows1937,,1830,EthnographicAtlas_1967_p100, +71858,Ii14,EA056,Activity is absent,EA056-10,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +71859,Ii2,EA056,Activity is absent,EA056-10,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +71860,Ii3,EA056,Activity is absent,EA056-10,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +71861,Ii4,EA056,Activity is absent,EA056-10,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +71862,Ii5,EA056,Most adults,EA056-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +71863,Ii6,EA056,Activity is absent,EA056-10,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +71864,Ii7,EA056,Most adults,EA056-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +71865,Ii8,EA056,Activity is absent,EA056-10,,burrows1936,,1840,EthnographicAtlas_1967_p100, +71866,Ii9,EA056,Activity is absent,EA056-10,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +71867,Ij1,EA056,Activity is absent,EA056-10,,buck1934,,1820,EthnographicAtlas_1967_p100, +71868,Ij10,EA056,?,EA056-NA,,,,,, +71869,Ij2,EA056,Most adults,EA056-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +71870,Ij3,EA056,Activity is absent,EA056-10,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +71871,Ij4,EA056,Activity is absent,EA056-10,,buck1932a,,1850,EthnographicAtlas_1967_p104, +71872,Ij5,EA056,Activity is absent,EA056-10,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +71873,Ij6,EA056,Activity is absent,EA056-10,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +71874,Ij7,EA056,Activity is absent,EA056-10,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +71875,Ij8,EA056,Activity is absent,EA056-10,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +71876,Ij9,EA056,Activity is absent,EA056-10,,metraux1940,,1860,EthnographicAtlas_1967_p104, +71877,Na1,EA056,Activity is absent,EA056-10,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +71878,Na10,EA056,Activity is absent,EA056-10,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +71879,Na11,EA056,Activity is absent,EA056-10,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +71880,Na12,EA056,Activity is absent,EA056-10,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +71881,Na13,EA056,Activity is absent,EA056-10,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +71882,Na14,EA056,Activity is absent,EA056-10,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +71883,Na15,EA056,Activity is absent,EA056-10,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +71884,Na16,EA056,Activity is absent,EA056-10,Woven rabbit skin blankets only,osgood1931,,1860,EthnographicAtlas_1967_p104, +71885,Na17,EA056,Activity is absent,EA056-10,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71886,Na19,EA056,Most adults,EA056-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +71887,Na2,EA056,Activity is absent,EA056-10,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +71888,Na20,EA056,Activity is absent,EA056-10,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +71889,Na21,EA056,Activity is absent,EA056-10,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +71890,Na22,EA056,Activity is absent,EA056-10,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +71891,Na23,EA056,Activity is absent,EA056-10,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +71892,Na24,EA056,Activity is absent,EA056-10,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +71893,Na25,EA056,Activity is absent,EA056-10,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +71894,Na26,EA056,Activity is absent,EA056-10,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +71895,Na27,EA056,Activity is absent,EA056-10,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +71896,Na28,EA056,Activity is absent,EA056-10,,jenness1937,,1880,EthnographicAtlas_1967_p104, +71897,Na29,EA056,Activity is absent,EA056-10,,goddard1916,,1850,EthnographicAtlas_1967_p104, +71898,Na3,EA056,Activity is absent,EA056-10,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +71899,Na30,EA056,Activity is absent,EA056-10,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +71900,Na31,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +71901,Na32,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +71902,Na33,EA056,Activity is absent,EA056-10,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +71903,Na34,EA056,Activity is absent,EA056-10,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +71904,Na35,EA056,Activity is absent,EA056-10,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +71905,Na36,EA056,Activity is absent,EA056-10,Woven rabbit skin blankets only,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +71906,Na37,EA056,Activity is absent,EA056-10,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +71907,Na38,EA056,Activity is absent,EA056-10,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +71908,Na39,EA056,Activity is absent,EA056-10,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +71909,Na4,EA056,Activity is absent,EA056-10,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +71910,Na40,EA056,Activity is absent,EA056-10,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +71911,Na41,EA056,Most adults,EA056-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +71912,Na42,EA056,Activity is absent,EA056-10,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +71913,Na43,EA056,Activity is absent,EA056-10,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +71914,Na44,EA056,?,EA056-NA,,,,,, +71915,Na45,EA056,Activity is absent,EA056-10,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +71916,Na5,EA056,Activity is absent,EA056-10,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +71917,Na6,EA056,Activity is absent,EA056-10,,lantis1946,,1930,EthnographicAtlas_1967_p104, +71918,Na7,EA056,Activity is absent,EA056-10,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +71919,Na8,EA056,Activity is absent,EA056-10,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +71920,Na9,EA056,Activity is absent,EA056-10,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +71921,Nb1,EA056,Most adults,EA056-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +71922,Nb10,EA056,?,EA056-NA,,,,,, +71923,Nb11,EA056,Most adults,EA056-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +71924,Nb12,EA056,Most adults,EA056-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +71925,Nb13,EA056,Most adults,EA056-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +71926,Nb14,EA056,Most adults,EA056-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +71927,Nb15,EA056,Most adults,EA056-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +71928,Nb16,EA056,Most adults,EA056-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +71929,Nb17,EA056,Most adults,EA056-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +71930,Nb18,EA056,?,EA056-NA,,,,,, +71931,Nb19,EA056,Activity is absent,EA056-10,But blankets were woven of twisted rabbit skin strips,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +71932,Nb2,EA056,Most adults,EA056-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +71933,Nb20,EA056,Activity is absent,EA056-10,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +71934,Nb21,EA056,?,EA056-NA,,,,,, +71935,Nb22,EA056,Most adults,EA056-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +71936,Nb23,EA056,Most adults,EA056-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +71937,Nb24,EA056,Most adults,EA056-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +71938,Nb25,EA056,Most adults,EA056-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +71939,Nb26,EA056,Most adults,EA056-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +71940,Nb27,EA056,Most adults,EA056-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +71941,Nb28,EA056,Activity is absent,EA056-10,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +71942,Nb29,EA056,Activity is absent,EA056-10,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +71943,Nb3,EA056,Most adults,EA056-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +71944,Nb30,EA056,?,EA056-NA,,,,,, +71945,Nb31,EA056,Activity is absent,EA056-10,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +71946,Nb32,EA056,Activity is absent,EA056-10,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +71947,Nb33,EA056,Activity is absent,EA056-10,Woven rabbit skin blankets only,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +71948,Nb34,EA056,Activity is absent,EA056-10,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +71949,Nb35,EA056,Activity is absent,EA056-10,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +71950,Nb36,EA056,Activity is absent,EA056-10,But both sexes wove blankets of rabbit skin strips,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +71951,Nb37,EA056,Activity is absent,EA056-10,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +71952,Nb38,EA056,Most adults,EA056-9,But only blankets woven of rabbit skin strips,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +71953,Nb39,EA056,Activity is absent,EA056-10,But only blankets woven of rabbit skin strips,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +71954,Nb4,EA056,Activity is absent,EA056-10,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +71955,Nb5,EA056,Activity is absent,EA056-10,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +71956,Nb6,EA056,Activity is absent,EA056-10,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +71957,Nb7,EA056,Most adults,EA056-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +71958,Nb8,EA056,Most adults,EA056-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +71959,Nb9,EA056,Activity is absent,EA056-10,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +71960,Nc1,EA056,Activity is absent,EA056-10,But strips of rabbit fur were woven on a frame into blankets,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +71961,Nc10,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +71962,Nc11,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +71963,Nc12,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +71964,Nc13,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +71965,Nc14,EA056,Activity is absent,EA056-10,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +71966,Nc15,EA056,Activity is absent,EA056-10,Woven rabbit skin blankets only,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +71967,Nc16,EA056,Activity is absent,EA056-10,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +71968,Nc17,EA056,Activity is absent,EA056-10,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +71969,Nc18,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +71970,Nc19,EA056,Activity is absent,EA056-10,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +71971,Nc2,EA056,Activity is absent,EA056-10,But men wove strips of rabbit fur into blankets on a frame,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +71972,Nc20,EA056,Activity is absent,EA056-10,Rabbit skin blankets and feather capes only,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +71973,Nc21,EA056,Most adults,EA056-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +71974,Nc22,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +71975,Nc23,EA056,Activity is absent,EA056-10,Entry follows Gayton and Driver; Aginsky reports F,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +71976,Nc24,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +71977,Nc25,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +71978,Nc26,EA056,Most adults,EA056-9,Rabbit skin blankets only,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +71979,Nc27,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +71980,Nc28,EA056,Most adults,EA056-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +71981,Nc29,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +71982,Nc3,EA056,Activity is absent,EA056-10,Blankets were woven from strips of rabbit fur,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +71983,Nc30,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +71984,Nc31,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +71985,Nc32,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +71986,Nc33,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +71987,Nc34,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,meigs1939,,1880,EthnographicAtlas_1967_p108, +71988,Nc4,EA056,Activity is absent,EA056-10,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +71989,Nc5,EA056,Activity is absent,EA056-10,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +71990,Nc6,EA056,Activity is absent,EA056-10,Only blankets woven from strips of rabbit fur,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +71991,Nc7,EA056,Activity is absent,EA056-10,But a few rabbit-skin blankets are woven,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +71992,Nc8,EA056,Activity is absent,EA056-10,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +71993,Nc9,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +71994,Nd1,EA056,Activity is absent,EA056-10,But blankets were woven from strips of rabbit fur,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +71995,Nd10,EA056,Most adults,EA056-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +71996,Nd11,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +71997,Nd12,EA056,Activity is absent,EA056-10,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +71998,Nd13,EA056,Most adults,EA056-9,Rabbit skin blankets only,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +71999,Nd14,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +72000,Nd15,EA056,Activity is absent,EA056-10,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +72001,Nd16,EA056,Most adults,EA056-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +72002,Nd17,EA056,Activity is absent,EA056-10,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +72003,Nd18,EA056,Activity is absent,EA056-10,Woven packstraps and rabbit skin blankets only,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +72004,Nd19,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +72005,Nd2,EA056,Activity is absent,EA056-10,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +72006,Nd20,EA056,Activity is absent,EA056-10,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +72007,Nd21,EA056,Most adults,EA056-9,Fur-strip blankets only,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +72008,Nd22,EA056,Activity is absent,EA056-10,Fur-strip blankets only,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +72009,Nd23,EA056,Most adults,EA056-9,Fur-strip blankets only,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +72010,Nd24,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +72011,Nd25,EA056,Most adults,EA056-9,Fur-strip blankets only,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +72012,Nd26,EA056,Activity is absent,EA056-10,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +72013,Nd27,EA056,Activity is absent,EA056-10,Fur-strip blankets only,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +72014,Nd28,EA056,Most adults,EA056-9,Fur-strip blankets only,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +72015,Nd29,EA056,Most adults,EA056-9,Fur-strip blankets only,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +72016,Nd3,EA056,Activity is absent,EA056-10,Blankets were woven from rabbit skin strips,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +72017,Nd30,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +72018,Nd31,EA056,Most adults,EA056-9,Rabbit skin blankets only,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +72019,Nd32,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +72020,Nd33,EA056,Most adults,EA056-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +72021,Nd34,EA056,Most adults,EA056-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +72022,Nd35,EA056,Most adults,EA056-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +72023,Nd36,EA056,Most adults,EA056-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +72024,Nd37,EA056,Most adults,EA056-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +72025,Nd38,EA056,Most adults,EA056-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +72026,Nd39,EA056,Most adults,EA056-9,Fur-strip blankets only,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +72027,Nd4,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +72028,Nd40,EA056,Most adults,EA056-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +72029,Nd41,EA056,Most adults,EA056-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +72030,Nd42,EA056,Most adults,EA056-9,Fur-strip blankets only,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +72031,Nd43,EA056,Most adults,EA056-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +72032,Nd44,EA056,Most adults,EA056-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +72033,Nd45,EA056,Activity is absent,EA056-10,But rare,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +72034,Nd46,EA056,Most adults,EA056-9,But rare,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +72035,Nd47,EA056,Most adults,EA056-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +72036,Nd48,EA056,Most adults,EA056-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +72037,Nd49,EA056,Most adults,EA056-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +72038,Nd5,EA056,Activity is absent,EA056-10,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +72039,Nd50,EA056,Most adults,EA056-9,Rabbit skin blankets only,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +72040,Nd51,EA056,Most adults,EA056-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +72041,Nd52,EA056,Most adults,EA056-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +72042,Nd53,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +72043,Nd54,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72044,Nd55,EA056,Most adults,EA056-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +72045,Nd56,EA056,Most adults,EA056-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +72046,Nd57,EA056,Most adults,EA056-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +72047,Nd58,EA056,Most adults,EA056-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +72048,Nd59,EA056,Most adults,EA056-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +72049,Nd6,EA056,Activity is absent,EA056-10,"But blankets were woven from strips of rabbit fur, chiefly by women",barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +72050,Nd60,EA056,Most adults,EA056-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +72051,Nd61,EA056,Most adults,EA056-9,Rabbit skin blankets only,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +72052,Nd62,EA056,Activity is absent,EA056-10,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +72053,Nd63,EA056,Activity is absent,EA056-10,A few rabbit skin blankets only,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +72054,Nd64,EA056,Activity is absent,EA056-10,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +72055,Nd65,EA056,Most adults,EA056-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +72056,Nd66,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +72057,Nd67,EA056,?,EA056-NA,,,,,, +72058,Nd7,EA056,Activity is absent,EA056-10,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +72059,Nd8,EA056,Activity is absent,EA056-10,But bands influenced by the Coast Salish did some weaving,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +72060,Nd9,EA056,Activity is absent,EA056-10,Rabbit skin blankets only,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +72061,Ne1,EA056,Activity is absent,EA056-10,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +72062,Ne10,EA056,Activity is absent,EA056-10,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +72063,Ne11,EA056,Activity is absent,EA056-10,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +72064,Ne12,EA056,Activity is absent,EA056-10,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +72065,Ne13,EA056,Activity is absent,EA056-10,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +72066,Ne14,EA056,Activity is absent,EA056-10,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +72067,Ne15,EA056,Activity is absent,EA056-10,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +72068,Ne16,EA056,Activity is absent,EA056-10,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +72069,Ne17,EA056,Activity is absent,EA056-10,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +72070,Ne18,EA056,Activity is absent,EA056-10,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +72071,Ne19,EA056,Activity is absent,EA056-10,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +72072,Ne2,EA056,Activity is absent,EA056-10,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +72073,Ne20,EA056,Activity is absent,EA056-10,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +72074,Ne21,EA056,?,EA056-NA,,,,,, +72075,Ne3,EA056,Activity is absent,EA056-10,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +72076,Ne4,EA056,Activity is absent,EA056-10,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +72077,Ne5,EA056,Activity is absent,EA056-10,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +72078,Ne6,EA056,Activity is absent,EA056-10,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +72079,Ne7,EA056,Activity is absent,EA056-10,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +72080,Ne8,EA056,Activity is absent,EA056-10,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +72081,Ne9,EA056,Activity is absent,EA056-10,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +72082,Nf10,EA056,Activity is absent,EA056-10,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +72083,Nf11,EA056,Activity is absent,EA056-10,,whitman1937,,1870,EthnographicAtlas_1967_p116, +72084,Nf12,EA056,Activity is absent,EA056-10,But finger-woven bands and sashes were made,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +72085,Nf13,EA056,Activity is absent,EA056-10,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72086,Nf14,EA056,Activity is absent,EA056-10,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +72087,Nf15,EA056,?,EA056-NA,,,,,, +72088,Nf2,EA056,?,EA056-NA,,,,,, +72089,Nf3,EA056,Activity is absent,EA056-10,Scarves only,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +72090,Nf4,EA056,Most adults,EA056-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +72091,Nf5,EA056,Activity is absent,EA056-10,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +72092,Nf6,EA056,Activity is absent,EA056-10,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +72093,Nf7,EA056,Activity is absent,EA056-10,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72094,Nf8,EA056,Activity is absent,EA056-10,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +72095,Nf9,EA056,?,EA056-NA,,,,,, +72096,Ng1,EA056,Activity is absent,EA056-10,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +72097,Ng10,EA056,Activity is absent,EA056-10,Burden straps only,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +72098,Ng11,EA056,?,EA056-NA,,,,,, +72099,Ng12,EA056,Activity is absent,EA056-10,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +72100,Ng13,EA056,?,EA056-NA,,,,,, +72101,Ng14,EA056,?,EA056-NA,,,,,, +72102,Ng15,EA056,?,EA056-NA,,,,,, +72103,Ng2,EA056,?,EA056-NA,,,,,, +72104,Ng3,EA056,Most adults,EA056-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +72105,Ng4,EA056,?,EA056-NA,,,,,, +72106,Ng5,EA056,?,EA056-NA,,,,,, +72107,Ng6,EA056,?,EA056-NA,,,,,, +72108,Ng7,EA056,Most adults,EA056-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +72109,Ng8,EA056,Activity is absent,EA056-10,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +72110,Ng9,EA056,?,EA056-NA,,,,,, +72111,Nh1,EA056,Activity is absent,EA056-10,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +72112,Nh10,EA056,Most adults,EA056-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p116, +72113,Nh11,EA056,Most adults,EA056-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +72114,Nh12,EA056,Activity is absent,EA056-10,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +72115,Nh13,EA056,?,EA056-NA,,,,,, +72116,Nh14,EA056,?,EA056-NA,,,,,, +72117,Nh15,EA056,Activity is absent,EA056-10,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +72118,Nh16,EA056,Activity is absent,EA056-10,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72119,Nh17,EA056,Activity is absent,EA056-10,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +72120,Nh18,EA056,Most adults,EA056-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72121,Nh19,EA056,Most adults,EA056-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +72122,Nh2,EA056,Most adults,EA056-9,,dozier1954,,1950,EthnographicAtlas_1967_p116, +72123,Nh20,EA056,Most adults,EA056-9,,gifford1931,,1860,EthnographicAtlas_1967_p116, +72124,Nh21,EA056,Most adults,EA056-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72125,Nh22,EA056,Most adults,EA056-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +72126,Nh23,EA056,Most adults,EA056-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +72127,Nh24,EA056,Activity is absent,EA056-10,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +72128,Nh25,EA056,Activity is absent,EA056-10,"But probably formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +72129,Nh26,EA056,?,EA056-NA,,,,,, +72130,Nh27,EA056,?,EA056-NA,,,,,, +72131,Nh3,EA056,Most adults,EA056-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +72132,Nh4,EA056,Most adults,EA056-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +72133,Nh5,EA056,Most adults,EA056-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +72134,Nh6,EA056,Activity is absent,EA056-10,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +72135,Nh7,EA056,?,EA056-NA,,,,,, +72136,Nh8,EA056,Most adults,EA056-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +72137,Nh9,EA056,?,EA056-NA,,,,,, +72138,Ni1,EA056,Most adults,EA056-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +72139,Ni2,EA056,Most adults,EA056-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +72140,Ni3,EA056,Most adults,EA056-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +72141,Ni4,EA056,Activity is absent,EA056-10,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +72142,Ni5,EA056,Activity is absent,EA056-10,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +72143,Ni6,EA056,Most adults,EA056-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +72144,Ni7,EA056,Most adults,EA056-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +72145,Ni8,EA056,?,EA056-NA,,,,,, +72146,Ni9,EA056,?,EA056-NA,,,,,, +72147,Nj1,EA056,Most adults,EA056-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72148,Nj10,EA056,Most adults,EA056-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72149,Nj11,EA056,?,EA056-NA,,,,,, +72150,Nj12,EA056,?,EA056-NA,,,,,, +72151,Nj13,EA056,?,EA056-NA,,,,,, +72152,Nj14,EA056,?,EA056-NA,,,,,, +72153,Nj2,EA056,Most adults,EA056-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +72154,Nj3,EA056,Most adults,EA056-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +72155,Nj4,EA056,Most adults,EA056-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +72156,Nj5,EA056,?,EA056-NA,,,,,, +72157,Nj6,EA056,?,EA056-NA,,,,,, +72158,Nj7,EA056,Most adults,EA056-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72159,Nj8,EA056,Most adults,EA056-9,,foster1948,,1500,EthnographicAtlas_1967_p120, +72160,Nj9,EA056,Craft,EA056-3,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +72161,Sa1,EA056,Most adults,EA056-9,But only hammocks today,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +72162,Sa10,EA056,Most adults,EA056-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +72163,Sa11,EA056,?,EA056-NA,,,,,, +72164,Sa12,EA056,Activity is absent,EA056-10,"Weaving was formerly done (formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",stone1948,,1948,EthnographicAtlas_1967_p120, +72165,Sa13,EA056,Most adults,EA056-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +72166,Sa14,EA056,?,EA056-NA,,,,,, +72167,Sa15,EA056,?,EA056-NA,,,,,, +72168,Sa16,EA056,?,EA056-NA,,,,,, +72169,Sa17,EA056,?,EA056-NA,,,,,, +72170,Sa2,EA056,?,EA056-NA,,,,,, +72171,Sa3,EA056,Activity is absent,EA056-10,Agave bags only,wisdom1940,,1930,EthnographicAtlas_1967_p120, +72172,Sa4,EA056,Activity is absent,EA056-10,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +72173,Sa5,EA056,Most adults,EA056-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +72174,Sa6,EA056,Most adults,EA056-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +72175,Sa7,EA056,Activity is absent,EA056-10,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +72176,Sa8,EA056,Most adults,EA056-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p120, +72177,Sa9,EA056,Most adults,EA056-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +72178,Sb1,EA056,Most adults,EA056-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +72179,Sb2,EA056,Most adults,EA056-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +72180,Sb3,EA056,?,EA056-NA,,,,,, +72181,Sb4,EA056,Activity is absent,EA056-10,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +72182,Sb5,EA056,?,EA056-NA,,,,,, +72183,Sb6,EA056,Most adults,EA056-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +72184,Sb7,EA056,Most adults,EA056-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +72185,Sb8,EA056,Activity is absent,EA056-10,But hammocks were woven,rouse1948a,,1520,EthnographicAtlas_1967_p120, +72186,Sb9,EA056,Most adults,EA056-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +72187,Sc1,EA056,Most adults,EA056-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +72188,Sc10,EA056,Most adults,EA056-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +72189,Sc11,EA056,?,EA056-NA,,,,,, +72190,Sc12,EA056,Most adults,EA056-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +72191,Sc13,EA056,?,EA056-NA,,,,,, +72192,Sc14,EA056,Most adults,EA056-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +72193,Sc15,EA056,Most adults,EA056-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +72194,Sc16,EA056,Most adults,EA056-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +72195,Sc17,EA056,Most adults,EA056-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +72196,Sc18,EA056,Activity is absent,EA056-10,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +72197,Sc2,EA056,Activity is absent,EA056-10,But hammocks are made,leedsnd,,1950,EthnographicAtlas_1967_p120, +72198,Sc3,EA056,Most adults,EA056-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +72199,Sc4,EA056,Activity is absent,EA056-10,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +72200,Sc5,EA056,Most adults,EA056-9,,farabee1918,,1900,EthnographicAtlas_1967_p120, +72201,Sc6,EA056,?,EA056-NA,,,,,, +72202,Sc7,EA056,Activity is absent,EA056-10,Chiefly hammocks,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +72203,Sc8,EA056,Most adults,EA056-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +72204,Sc9,EA056,Most adults,EA056-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +72205,Sd1,EA056,Activity is absent,EA056-10,Hammocks only,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72206,Sd2,EA056,Activity is absent,EA056-10,Hammocks only,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +72207,Sd3,EA056,Most adults,EA056-9,Hammocks only,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +72208,Sd4,EA056,Activity is absent,EA056-10,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +72209,Sd5,EA056,Activity is absent,EA056-10,Hammocks only,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +72210,Sd6,EA056,?,EA056-NA,,,,,, +72211,Sd7,EA056,Most adults,EA056-9,"Mean weave hammocks and loincloths, women aprons",fock1963,,1950,EthnographicAtlas_1967_p120, +72212,Sd8,EA056,Most adults,EA056-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +72213,Sd9,EA056,Activity is absent,EA056-10,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72214,Se1,EA056,Activity is absent,EA056-10,Hammocks only,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +72215,Se10,EA056,Most adults,EA056-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p120, +72216,Se11,EA056,Activity is absent,EA056-10,,prost1965,,1960,EthnographicAtlas_1967_p124, +72217,Se12,EA056,?,EA056-NA,,,,,, +72218,Se2,EA056,Most adults,EA056-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +72219,Se3,EA056,Most adults,EA056-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +72220,Se4,EA056,Activity is absent,EA056-10,,fejos1943,,1940,EthnographicAtlas_1967_p120, +72221,Se5,EA056,Activity is absent,EA056-10,But men make hammocks,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +72222,Se6,EA056,Activity is absent,EA056-10,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +72223,Se7,EA056,?,EA056-NA,,,,,, +72224,Se8,EA056,Most adults,EA056-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +72225,Se9,EA056,Most adults,EA056-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +72226,Sf1,EA056,Most adults,EA056-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +72227,Sf2,EA056,Most adults,EA056-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +72228,Sf3,EA056,Most adults,EA056-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +72229,Sf4,EA056,Most adults,EA056-9,A few ornamented cloths only,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +72230,Sf5,EA056,Most adults,EA056-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +72231,Sf6,EA056,Most adults,EA056-9,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +72232,Sf7,EA056,Craft,EA056-3,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +72233,Sf8,EA056,?,EA056-NA,,,,,, +72234,Sf9,EA056,?,EA056-NA,,,,,, +72235,Sg1,EA056,Activity is absent,EA056-10,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +72236,Sg2,EA056,Most adults,EA056-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72237,Sg3,EA056,Activity is absent,EA056-10,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +72238,Sg4,EA056,Most adults,EA056-9,But silversmithing and loom weaving are relatively recent introductions,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +72239,Sg5,EA056,Activity is absent,EA056-10,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72240,Sh1,EA056,Most adults,EA056-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +72241,Sh2,EA056,Most adults,EA056-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +72242,Sh3,EA056,Most adults,EA056-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +72243,Sh4,EA056,Most adults,EA056-9,,oberg1949,,1940,EthnographicAtlas_1967_p124, +72244,Sh5,EA056,Most adults,EA056-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +72245,Sh6,EA056,Most adults,EA056-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +72246,Sh7,EA056,Most adults,EA056-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +72247,Sh8,EA056,Most adults,EA056-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +72248,Sh9,EA056,Most adults,EA056-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +72249,Si1,EA056,Activity is absent,EA056-10,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72250,Si10,EA056,Activity is absent,EA056-10,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +72251,Si2,EA056,Activity is absent,EA056-10,Hammocks only,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +72252,Si3,EA056,Activity is absent,EA056-10,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72253,Si4,EA056,Most adults,EA056-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +72254,Si5,EA056,Activity is absent,EA056-10,Hammocks only,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +72255,Si6,EA056,Most adults,EA056-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +72256,Si7,EA056,Most adults,EA056-9,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +72257,Si8,EA056,Most adults,EA056-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +72258,Si9,EA056,?,EA056-NA,,,,,, +72259,Sj1,EA056,Most adults,EA056-9,But not aboriginal,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +72260,Sj10,EA056,Most adults,EA056-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72261,Sj11,EA056,Activity is absent,EA056-10,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +72262,Sj2,EA056,Activity is absent,EA056-10,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +72263,Sj3,EA056,Activity is absent,EA056-10,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +72264,Sj4,EA056,Activity is absent,EA056-10,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +72265,Sj5,EA056,Activity is absent,EA056-10,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +72266,Sj6,EA056,Activity is absent,EA056-10,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72267,Sj7,EA056,Activity is absent,EA056-10,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +72268,Sj8,EA056,Activity is absent,EA056-10,Hammocks only,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +72269,Sj9,EA056,Activity is absent,EA056-10,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +72270,ch12,EA056,Most adults,EA056-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +72271,ch13,EA056,Most adults,EA056-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +72272,ch14,EA056,Most adults,EA056-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +72273,ch15,EA056,Most adults,EA056-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +72274,ch16,EA056,Industrial,EA056-4,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +72275,ch17,EA056,Most adults,EA056-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +72276,ch18,EA056,Most adults,EA056-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +72277,ch19,EA056,Most adults,EA056-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +72278,ch20,EA056,Most adults,EA056-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +72279,ch21,EA056,Industrial,EA056-4,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +72280,ch22,EA056,Most adults,EA056-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +72281,ch23,EA056,Activity is absent,EA056-10,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +72282,ch24,EA056,Most adults,EA056-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +72283,ch25,EA056,Most adults,EA056-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +72284,ch26,EA056,Most adults,EA056-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +72285,ch27,EA056,Most adults,EA056-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +72286,ch28,EA056,Most adults,EA056-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +72287,ec12,EA056,Activity is absent,EA056-10,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +72288,ec13,EA056,Activity is absent,EA056-10,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +72289,ec14,EA056,Activity is absent,EA056-10,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +72290,ec15,EA056,Activity is absent,EA056-10,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +72291,ec16,EA056,Activity is absent,EA056-10,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +72292,ec17,EA056,Activity is absent,EA056-10,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +72293,ec18,EA056,Activity is absent,EA056-10,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +72294,ec19,EA056,Activity is absent,EA056-10,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +72295,ec20,EA056,Activity is absent,EA056-10,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +72296,ec21,EA056,Activity is absent,EA056-10,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +72297,Aa1,EA057,Most adults,EA057-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +72298,Aa2,EA057,Most adults,EA057-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +72299,Aa3,EA057,Most adults,EA057-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +72300,Aa4,EA057,?,EA057-NA,,,,,, +72301,Aa5,EA057,Activity is absent,EA057-10,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +72302,Aa6,EA057,?,EA057-NA,,,,,, +72303,Aa7,EA057,Most adults,EA057-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +72304,Aa8,EA057,?,EA057-NA,,,,,, +72305,Aa9,EA057,Activity is absent,EA057-10,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +72306,Ab1,EA057,Most adults,EA057-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +72307,Ab10,EA057,Most adults,EA057-9,,hunter1936,,1936,EthnographicAtlas_1967_p64, +72308,Ab11,EA057,Most adults,EA057-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +72309,Ab12,EA057,Most adults,EA057-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +72310,Ab13,EA057,Most adults,EA057-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +72311,Ab14,EA057,Most adults,EA057-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +72312,Ab15,EA057,Most adults,EA057-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +72313,Ab16,EA057,?,EA057-NA,,,,,, +72314,Ab17,EA057,?,EA057-NA,,,,,, +72315,Ab18,EA057,?,EA057-NA,,,,,, +72316,Ab19,EA057,Most adults,EA057-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +72317,Ab2,EA057,Most adults,EA057-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +72318,Ab20,EA057,?,EA057-NA,,,,,, +72319,Ab21a,EA057,?,EA057-NA,,,,,, +72320,Ab21b,EA057,?,EA057-NA,,,,,, +72321,Ab22,EA057,?,EA057-NA,,,,,, +72322,Ab3,EA057,Most adults,EA057-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +72323,Ab4,EA057,Activity is absent,EA057-10,,junod1927,,1920,EthnographicAtlas_1967_p64, +72324,Ab5,EA057,Most adults,EA057-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +72325,Ab6,EA057,Most adults,EA057-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +72326,Ab7,EA057,?,EA057-NA,,,,,, +72327,Ab8,EA057,?,EA057-NA,,,,,, +72328,Ab9,EA057,Craft,EA057-3,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +72329,Ac1,EA057,Most adults,EA057-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +72330,Ac10,EA057,Most adults,EA057-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +72331,Ac11,EA057,?,EA057-NA,,,,,, +72332,Ac12,EA057,?,EA057-NA,,,,,, +72333,Ac13,EA057,?,EA057-NA,,,,,, +72334,Ac14,EA057,?,EA057-NA,,,,,, +72335,Ac15,EA057,?,EA057-NA,,,,,, +72336,Ac16,EA057,?,EA057-NA,,,,,, +72337,Ac17,EA057,?,EA057-NA,,,,,, +72338,Ac18,EA057,Most adults,EA057-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +72339,Ac19,EA057,?,EA057-NA,,,,,, +72340,Ac2,EA057,?,EA057-NA,,,,,, +72341,Ac20,EA057,?,EA057-NA,,,,,, +72342,Ac21,EA057,?,EA057-NA,,,,,, +72343,Ac22,EA057,?,EA057-NA,,,,,, +72344,Ac23,EA057,?,EA057-NA,,,,,, +72345,Ac24,EA057,?,EA057-NA,,,,,, +72346,Ac25,EA057,?,EA057-NA,,,,,, +72347,Ac26,EA057,?,EA057-NA,,,,,, +72348,Ac27,EA057,?,EA057-NA,,,,,, +72349,Ac28,EA057,?,EA057-NA,,,,,, +72350,Ac29,EA057,?,EA057-NA,,,,,, +72351,Ac3,EA057,Most adults,EA057-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +72352,Ac30,EA057,?,EA057-NA,,,,,, +72353,Ac31,EA057,Activity is absent,EA057-10,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +72354,Ac32,EA057,?,EA057-NA,,,,,, +72355,Ac33,EA057,?,EA057-NA,,,,,, +72356,Ac34,EA057,Most adults,EA057-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +72357,Ac35,EA057,?,EA057-NA,,,,,, +72358,Ac36,EA057,?,EA057-NA,,,,,, +72359,Ac37,EA057,?,EA057-NA,,,,,, +72360,Ac38,EA057,?,EA057-NA,,,,,, +72361,Ac39,EA057,?,EA057-NA,,,,,, +72362,Ac4,EA057,Most adults,EA057-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +72363,Ac40,EA057,?,EA057-NA,,,,,, +72364,Ac41,EA057,?,EA057-NA,,,,,, +72365,Ac42,EA057,?,EA057-NA,,,,,, +72366,Ac43,EA057,?,EA057-NA,,,,,, +72367,Ac5,EA057,?,EA057-NA,,,,,, +72368,Ac6,EA057,?,EA057-NA,,,,,, +72369,Ac7,EA057,Activity is absent,EA057-10,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +72370,Ac8,EA057,?,EA057-NA,,,,,, +72371,Ac9,EA057,?,EA057-NA,,,,,, +72372,Ad1,EA057,Activity is absent,EA057-10,Despised as slave occupation,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +72373,Ad10,EA057,?,EA057-NA,,,,,, +72374,Ad11,EA057,?,EA057-NA,,,,,, +72375,Ad12,EA057,?,EA057-NA,,,,,, +72376,Ad13,EA057,Most adults,EA057-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +72377,Ad14,EA057,?,EA057-NA,,,,,, +72378,Ad15,EA057,?,EA057-NA,,,,,, +72379,Ad16,EA057,?,EA057-NA,,,,,, +72380,Ad17,EA057,?,EA057-NA,,,,,, +72381,Ad18,EA057,?,EA057-NA,,,,,, +72382,Ad19,EA057,?,EA057-NA,,,,,, +72383,Ad2,EA057,Craft,EA057-3,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +72384,Ad20,EA057,?,EA057-NA,,,,,, +72385,Ad21,EA057,?,EA057-NA,,,,,, +72386,Ad22,EA057,?,EA057-NA,,,,,, +72387,Ad23,EA057,?,EA057-NA,,,,,, +72388,Ad24,EA057,?,EA057-NA,,,,,, +72389,Ad25,EA057,?,EA057-NA,,,,,, +72390,Ad26,EA057,?,EA057-NA,,,,,, +72391,Ad27,EA057,?,EA057-NA,,,,,, +72392,Ad28,EA057,?,EA057-NA,,,,,, +72393,Ad29,EA057,Activity is absent,EA057-10,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +72394,Ad3,EA057,Most adults,EA057-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +72395,Ad30,EA057,?,EA057-NA,,,,,, +72396,Ad31,EA057,?,EA057-NA,,,,,, +72397,Ad32,EA057,?,EA057-NA,,,,,, +72398,Ad33,EA057,?,EA057-NA,,,,,, +72399,Ad34,EA057,?,EA057-NA,,,,,, +72400,Ad35,EA057,Most adults,EA057-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +72401,Ad36,EA057,?,EA057-NA,,,,,, +72402,Ad37,EA057,?,EA057-NA,,,,,, +72403,Ad38,EA057,?,EA057-NA,,,,,, +72404,Ad39,EA057,?,EA057-NA,,,,,, +72405,Ad4,EA057,Most adults,EA057-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +72406,Ad40,EA057,?,EA057-NA,,,,,, +72407,Ad41,EA057,?,EA057-NA,,,,,, +72408,Ad42,EA057,?,EA057-NA,,,,,, +72409,Ad43,EA057,?,EA057-NA,,,,,, +72410,Ad44,EA057,?,EA057-NA,,,,,, +72411,Ad45,EA057,?,EA057-NA,,,,,, +72412,Ad46,EA057,Activity is absent,EA057-10,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +72413,Ad47,EA057,?,EA057-NA,,,,,, +72414,Ad48,EA057,Most adults,EA057-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +72415,Ad49,EA057,?,EA057-NA,,,,,, +72416,Ad5,EA057,?,EA057-NA,,,,,, +72417,Ad50,EA057,?,EA057-NA,,,,,, +72418,Ad51,EA057,?,EA057-NA,,,,,, +72419,Ad6,EA057,Activity is absent,EA057-10,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +72420,Ad7,EA057,Craft,EA057-3,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +72421,Ad8,EA057,?,EA057-NA,,,,,, +72422,Ad9,EA057,Most adults,EA057-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +72423,Ae1,EA057,?,EA057-NA,,,,,, +72424,Ae10,EA057,Most adults,EA057-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +72425,Ae11,EA057,Activity is absent,EA057-10,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +72426,Ae12,EA057,?,EA057-NA,,,,,, +72427,Ae13,EA057,?,EA057-NA,,,,,, +72428,Ae14,EA057,Most adults,EA057-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +72429,Ae15,EA057,?,EA057-NA,,,,,, +72430,Ae16,EA057,?,EA057-NA,,,,,, +72431,Ae17,EA057,?,EA057-NA,,,,,, +72432,Ae18,EA057,?,EA057-NA,,,,,, +72433,Ae19,EA057,?,EA057-NA,,,,,, +72434,Ae2,EA057,?,EA057-NA,,,,,, +72435,Ae20,EA057,?,EA057-NA,,,,,, +72436,Ae21,EA057,?,EA057-NA,,,,,, +72437,Ae22,EA057,?,EA057-NA,,,,,, +72438,Ae23,EA057,?,EA057-NA,,,,,, +72439,Ae24,EA057,?,EA057-NA,,,,,, +72440,Ae25,EA057,?,EA057-NA,,,,,, +72441,Ae26,EA057,?,EA057-NA,,,,,, +72442,Ae27,EA057,?,EA057-NA,,,,,, +72443,Ae28,EA057,Most adults,EA057-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +72444,Ae29,EA057,?,EA057-NA,,,,,, +72445,Ae3,EA057,?,EA057-NA,,,,,, +72446,Ae30,EA057,?,EA057-NA,,,,,, +72447,Ae31,EA057,?,EA057-NA,,,,,, +72448,Ae32,EA057,?,EA057-NA,,,,,, +72449,Ae33,EA057,?,EA057-NA,,,,,, +72450,Ae34,EA057,?,EA057-NA,,,,,, +72451,Ae35,EA057,?,EA057-NA,,,,,, +72452,Ae36,EA057,?,EA057-NA,,,,,, +72453,Ae37,EA057,?,EA057-NA,,,,,, +72454,Ae38,EA057,?,EA057-NA,,,,,, +72455,Ae39,EA057,Activity is absent,EA057-10,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +72456,Ae4,EA057,Activity is absent,EA057-10,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +72457,Ae40,EA057,?,EA057-NA,,,,,, +72458,Ae41,EA057,?,EA057-NA,,,,,, +72459,Ae42,EA057,?,EA057-NA,,,,,, +72460,Ae43,EA057,?,EA057-NA,,,,,, +72461,Ae44,EA057,?,EA057-NA,,,,,, +72462,Ae45,EA057,?,EA057-NA,,,,,, +72463,Ae46,EA057,?,EA057-NA,,,,,, +72464,Ae47,EA057,?,EA057-NA,,,,,, +72465,Ae48,EA057,?,EA057-NA,,,,,, +72466,Ae49,EA057,?,EA057-NA,,,,,, +72467,Ae5,EA057,?,EA057-NA,,,,,, +72468,Ae50,EA057,Most adults,EA057-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +72469,Ae51,EA057,?,EA057-NA,,,,,, +72470,Ae52,EA057,?,EA057-NA,,,,,, +72471,Ae53,EA057,?,EA057-NA,,,,,, +72472,Ae54,EA057,?,EA057-NA,,,,,, +72473,Ae55,EA057,?,EA057-NA,,,,,, +72474,Ae56,EA057,?,EA057-NA,,,,,, +72475,Ae57,EA057,?,EA057-NA,,,,,, +72476,Ae58,EA057,?,EA057-NA,,,,,, +72477,Ae59,EA057,?,EA057-NA,,,,,, +72478,Ae6,EA057,?,EA057-NA,,,,,, +72479,Ae7,EA057,Activity is absent,EA057-10,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +72480,Ae8,EA057,Most adults,EA057-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +72481,Ae9,EA057,?,EA057-NA,,,,,, +72482,Af1,EA057,Most adults,EA057-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +72483,Af10,EA057,Activity is absent,EA057-10,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +72484,Af11,EA057,Most adults,EA057-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +72485,Af12,EA057,?,EA057-NA,,,,,, +72486,Af13,EA057,?,EA057-NA,,,,,, +72487,Af14,EA057,?,EA057-NA,,,,,, +72488,Af15,EA057,?,EA057-NA,,,,,, +72489,Af16,EA057,?,EA057-NA,,,,,, +72490,Af17,EA057,?,EA057-NA,,,,,, +72491,Af18,EA057,?,EA057-NA,,,,,, +72492,Af19,EA057,?,EA057-NA,,,,,, +72493,Af2,EA057,?,EA057-NA,,,,,, +72494,Af20,EA057,?,EA057-NA,,,,,, +72495,Af21,EA057,?,EA057-NA,,,,,, +72496,Af22,EA057,?,EA057-NA,,,,,, +72497,Af23,EA057,Activity is absent,EA057-10,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +72498,Af24,EA057,Craft,EA057-3,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +72499,Af25,EA057,?,EA057-NA,,,,,, +72500,Af26,EA057,?,EA057-NA,,,,,, +72501,Af27,EA057,?,EA057-NA,,,,,, +72502,Af28,EA057,Craft,EA057-3,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +72503,Af29,EA057,?,EA057-NA,,,,,, +72504,Af3,EA057,?,EA057-NA,,,,,, +72505,Af30,EA057,?,EA057-NA,,,,,, +72506,Af31,EA057,?,EA057-NA,,,,,, +72507,Af32,EA057,?,EA057-NA,,,,,, +72508,Af33,EA057,?,EA057-NA,,,,,, +72509,Af34,EA057,?,EA057-NA,,,,,, +72510,Af35,EA057,?,EA057-NA,,,,,, +72511,Af36,EA057,?,EA057-NA,,,,,, +72512,Af37,EA057,?,EA057-NA,,,,,, +72513,Af38,EA057,?,EA057-NA,,,,,, +72514,Af39,EA057,?,EA057-NA,,,,,, +72515,Af4,EA057,?,EA057-NA,,,,,, +72516,Af40,EA057,?,EA057-NA,,,,,, +72517,Af41,EA057,?,EA057-NA,,,,,, +72518,Af42,EA057,?,EA057-NA,,,,,, +72519,Af43,EA057,?,EA057-NA,,,,,, +72520,Af44,EA057,?,EA057-NA,,,,,, +72521,Af45,EA057,?,EA057-NA,,,,,, +72522,Af46,EA057,?,EA057-NA,,,,,, +72523,Af47,EA057,?,EA057-NA,,,,,, +72524,Af48,EA057,?,EA057-NA,,,,,, +72525,Af49,EA057,?,EA057-NA,,,,,, +72526,Af5,EA057,Most adults,EA057-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +72527,Af50,EA057,?,EA057-NA,,,,,, +72528,Af51,EA057,Activity is absent,EA057-10,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +72529,Af52,EA057,?,EA057-NA,,,,,, +72530,Af53,EA057,?,EA057-NA,,,,,, +72531,Af54,EA057,Most adults,EA057-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +72532,Af55,EA057,?,EA057-NA,,,,,, +72533,Af56,EA057,Activity is absent,EA057-10,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +72534,Af57,EA057,Craft,EA057-3,But these specialists are aliens of the Yalunka tribe,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +72535,Af58,EA057,?,EA057-NA,,,,,, +72536,Af6,EA057,Most adults,EA057-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +72537,Af7,EA057,?,EA057-NA,,,,,, +72538,Af8,EA057,?,EA057-NA,,,,,, +72539,Af9,EA057,?,EA057-NA,,,,,, +72540,Ag1,EA057,Craft,EA057-3,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +72541,Ag10,EA057,Most adults,EA057-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +72542,Ag11,EA057,?,EA057-NA,,,,,, +72543,Ag12,EA057,Most adults,EA057-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +72544,Ag13,EA057,?,EA057-NA,,,,,, +72545,Ag14,EA057,?,EA057-NA,,,,,, +72546,Ag15,EA057,?,EA057-NA,,,,,, +72547,Ag16,EA057,?,EA057-NA,,,,,, +72548,Ag17,EA057,?,EA057-NA,,,,,, +72549,Ag18,EA057,?,EA057-NA,,,,,, +72550,Ag19,EA057,?,EA057-NA,,,,,, +72551,Ag2,EA057,Craft,EA057-3,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +72552,Ag20,EA057,?,EA057-NA,,,,,, +72553,Ag21,EA057,?,EA057-NA,,,,,, +72554,Ag22,EA057,Craft,EA057-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +72555,Ag23,EA057,?,EA057-NA,,,,,, +72556,Ag24,EA057,?,EA057-NA,,,,,, +72557,Ag25,EA057,Craft,EA057-3,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p72, +72558,Ag26,EA057,Craft,EA057-3,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p72, +72559,Ag27,EA057,?,EA057-NA,,,,,, +72560,Ag28,EA057,?,EA057-NA,,,,,, +72561,Ag29,EA057,?,EA057-NA,,,,,, +72562,Ag3,EA057,Craft,EA057-3,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +72563,Ag30,EA057,Craft,EA057-3,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +72564,Ag31,EA057,?,EA057-NA,,,,,, +72565,Ag32,EA057,Craft,EA057-3,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +72566,Ag33,EA057,?,EA057-NA,,,,,, +72567,Ag34,EA057,?,EA057-NA,,,,,, +72568,Ag35,EA057,?,EA057-NA,,,,,, +72569,Ag36,EA057,?,EA057-NA,,,,,, +72570,Ag37,EA057,?,EA057-NA,,,,,, +72571,Ag38,EA057,?,EA057-NA,,,,,, +72572,Ag39,EA057,?,EA057-NA,,,,,, +72573,Ag4,EA057,Most adults,EA057-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +72574,Ag40,EA057,?,EA057-NA,,,,,, +72575,Ag41,EA057,Most adults,EA057-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p72, +72576,Ag42,EA057,?,EA057-NA,,,,,, +72577,Ag43,EA057,?,EA057-NA,,,,,, +72578,Ag44,EA057,?,EA057-NA,,,,,, +72579,Ag45,EA057,?,EA057-NA,,,,,, +72580,Ag46,EA057,?,EA057-NA,,,,,, +72581,Ag47,EA057,Most adults,EA057-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +72582,Ag48,EA057,?,EA057-NA,,,,,, +72583,Ag49,EA057,Most adults,EA057-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +72584,Ag5,EA057,Most adults,EA057-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +72585,Ag50,EA057,?,EA057-NA,,,,,, +72586,Ag51,EA057,?,EA057-NA,,,,,, +72587,Ag52,EA057,?,EA057-NA,,,,,, +72588,Ag53,EA057,?,EA057-NA,,,,,, +72589,Ag54,EA057,Craft,EA057-3,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +72590,Ag6,EA057,?,EA057-NA,,,,,, +72591,Ag7,EA057,?,EA057-NA,,,,,, +72592,Ag8,EA057,?,EA057-NA,,,,,, +72593,Ag9,EA057,Craft,EA057-3,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +72594,Ah1,EA057,?,EA057-NA,,,,,, +72595,Ah10,EA057,?,EA057-NA,,,,,, +72596,Ah11,EA057,?,EA057-NA,,,,,, +72597,Ah12,EA057,?,EA057-NA,,,,,, +72598,Ah13,EA057,Most adults,EA057-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +72599,Ah14,EA057,Most adults,EA057-9,,gunnandconant1960,,1920,EthnographicAtlas_1967_p76, +72600,Ah15,EA057,?,EA057-NA,,,,,, +72601,Ah16,EA057,?,EA057-NA,,,,,, +72602,Ah17,EA057,?,EA057-NA,,,,,, +72603,Ah18,EA057,?,EA057-NA,,,,,, +72604,Ah19,EA057,?,EA057-NA,,,,,, +72605,Ah2,EA057,?,EA057-NA,,,,,, +72606,Ah20,EA057,?,EA057-NA,,,,,, +72607,Ah21,EA057,?,EA057-NA,,,,,, +72608,Ah22,EA057,?,EA057-NA,,,,,, +72609,Ah23,EA057,?,EA057-NA,,,,,, +72610,Ah24,EA057,?,EA057-NA,,,,,, +72611,Ah25,EA057,?,EA057-NA,,,,,, +72612,Ah26,EA057,?,EA057-NA,,,,,, +72613,Ah27,EA057,?,EA057-NA,,,,,, +72614,Ah28,EA057,?,EA057-NA,,,,,, +72615,Ah29,EA057,?,EA057-NA,,,,,, +72616,Ah3,EA057,Most adults,EA057-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +72617,Ah30,EA057,?,EA057-NA,,,,,, +72618,Ah31,EA057,?,EA057-NA,,,,,, +72619,Ah32,EA057,?,EA057-NA,,,,,, +72620,Ah33,EA057,?,EA057-NA,,,,,, +72621,Ah34,EA057,?,EA057-NA,,,,,, +72622,Ah35,EA057,?,EA057-NA,,,,,, +72623,Ah36,EA057,Most adults,EA057-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +72624,Ah37,EA057,?,EA057-NA,,,,,, +72625,Ah38,EA057,Most adults,EA057-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +72626,Ah39,EA057,Most adults,EA057-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +72627,Ah4,EA057,?,EA057-NA,,,,,, +72628,Ah5,EA057,?,EA057-NA,,,,,, +72629,Ah6,EA057,?,EA057-NA,,,,,, +72630,Ah7,EA057,Most adults,EA057-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +72631,Ah8,EA057,?,EA057-NA,,,,,, +72632,Ah9,EA057,Most adults,EA057-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +72633,Ai1,EA057,?,EA057-NA,,,,,, +72634,Ai10,EA057,?,EA057-NA,,,,,, +72635,Ai11,EA057,?,EA057-NA,,,,,, +72636,Ai12,EA057,?,EA057-NA,,,,,, +72637,Ai13,EA057,?,EA057-NA,,,,,, +72638,Ai14,EA057,Activity is absent,EA057-10,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +72639,Ai15,EA057,?,EA057-NA,,,,,, +72640,Ai16,EA057,?,EA057-NA,,,,,, +72641,Ai17,EA057,?,EA057-NA,,,,,, +72642,Ai18,EA057,?,EA057-NA,,,,,, +72643,Ai19,EA057,?,EA057-NA,,,,,, +72644,Ai2,EA057,?,EA057-NA,,,,,, +72645,Ai20,EA057,?,EA057-NA,,,,,, +72646,Ai21,EA057,?,EA057-NA,,,,,, +72647,Ai22,EA057,?,EA057-NA,,,,,, +72648,Ai23,EA057,?,EA057-NA,,,,,, +72649,Ai24,EA057,?,EA057-NA,,,,,, +72650,Ai25,EA057,?,EA057-NA,,,,,, +72651,Ai26,EA057,?,EA057-NA,,,,,, +72652,Ai27,EA057,?,EA057-NA,,,,,, +72653,Ai28,EA057,Activity is absent,EA057-10,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +72654,Ai29,EA057,?,EA057-NA,,,,,, +72655,Ai3,EA057,Activity is absent,EA057-10,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +72656,Ai30,EA057,?,EA057-NA,,,,,, +72657,Ai31,EA057,Most adults,EA057-9,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +72658,Ai32,EA057,?,EA057-NA,,,,,, +72659,Ai33,EA057,?,EA057-NA,,,,,, +72660,Ai34,EA057,?,EA057-NA,,,,,, +72661,Ai35,EA057,?,EA057-NA,,,,,, +72662,Ai36,EA057,?,EA057-NA,,,,,, +72663,Ai37,EA057,?,EA057-NA,,,,,, +72664,Ai38,EA057,?,EA057-NA,,,,,, +72665,Ai39,EA057,?,EA057-NA,,,,,, +72666,Ai4,EA057,?,EA057-NA,,,,,, +72667,Ai40,EA057,?,EA057-NA,,,,,, +72668,Ai41,EA057,?,EA057-NA,,,,,, +72669,Ai42,EA057,?,EA057-NA,,,,,, +72670,Ai43,EA057,?,EA057-NA,,,,,, +72671,Ai44,EA057,?,EA057-NA,,,,,, +72672,Ai45,EA057,?,EA057-NA,,,,,, +72673,Ai46,EA057,?,EA057-NA,,,,,, +72674,Ai47,EA057,Most adults,EA057-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +72675,Ai5,EA057,Most adults,EA057-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +72676,Ai6,EA057,Most adults,EA057-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +72677,Ai7,EA057,?,EA057-NA,,,,,, +72678,Ai8,EA057,?,EA057-NA,,,,,, +72679,Ai9,EA057,?,EA057-NA,,,,,, +72680,Aj1,EA057,?,EA057-NA,,,,,, +72681,Aj10,EA057,?,EA057-NA,,,,,, +72682,Aj11,EA057,?,EA057-NA,,,,,, +72683,Aj12,EA057,?,EA057-NA,,,,,, +72684,Aj13,EA057,?,EA057-NA,,,,,, +72685,Aj14,EA057,?,EA057-NA,,,,,, +72686,Aj15,EA057,?,EA057-NA,,,,,, +72687,Aj16,EA057,Most adults,EA057-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +72688,Aj17,EA057,?,EA057-NA,,,,,, +72689,Aj18,EA057,Most adults,EA057-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +72690,Aj19,EA057,?,EA057-NA,,,,,, +72691,Aj2,EA057,Most adults,EA057-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +72692,Aj20,EA057,?,EA057-NA,,,,,, +72693,Aj21,EA057,Most adults,EA057-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +72694,Aj22,EA057,?,EA057-NA,,,,,, +72695,Aj23,EA057,?,EA057-NA,,,,,, +72696,Aj24,EA057,?,EA057-NA,,,,,, +72697,Aj25,EA057,?,EA057-NA,,,,,, +72698,Aj26,EA057,?,EA057-NA,,,,,, +72699,Aj27,EA057,?,EA057-NA,,,,,, +72700,Aj28,EA057,?,EA057-NA,,,,,, +72701,Aj29,EA057,?,EA057-NA,,,,,, +72702,Aj3,EA057,?,EA057-NA,,,,,, +72703,Aj30,EA057,?,EA057-NA,,,,,, +72704,Aj31,EA057,?,EA057-NA,,,,,, +72705,Aj4,EA057,?,EA057-NA,,,,,, +72706,Aj5,EA057,Most adults,EA057-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +72707,Aj6,EA057,Most adults,EA057-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +72708,Aj7,EA057,Most adults,EA057-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +72709,Aj8,EA057,?,EA057-NA,,,,,, +72710,Aj9,EA057,Most adults,EA057-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +72711,Ca1,EA057,Craft,EA057-3,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +72712,Ca10,EA057,Craft,EA057-3,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +72713,Ca11,EA057,Most adults,EA057-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +72714,Ca12,EA057,Craft,EA057-3,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +72715,Ca13,EA057,Craft,EA057-3,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +72716,Ca14,EA057,Craft,EA057-3,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +72717,Ca15,EA057,Craft,EA057-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +72718,Ca16,EA057,Craft,EA057-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +72719,Ca17,EA057,Most adults,EA057-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +72720,Ca18,EA057,?,EA057-NA,,,,,, +72721,Ca19,EA057,?,EA057-NA,,,,,, +72722,Ca2,EA057,Craft,EA057-3,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +72723,Ca20,EA057,?,EA057-NA,,,,,, +72724,Ca21,EA057,?,EA057-NA,,,,,, +72725,Ca22,EA057,?,EA057-NA,,,,,, +72726,Ca23,EA057,Craft,EA057-3,,jensen1959,,1950,EthnographicAtlas_1967_p80, +72727,Ca24,EA057,Craft,EA057-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +72728,Ca25,EA057,Craft,EA057-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +72729,Ca26,EA057,?,EA057-NA,,,,,, +72730,Ca27,EA057,?,EA057-NA,,,,,, +72731,Ca28,EA057,Craft,EA057-3,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +72732,Ca29,EA057,Craft,EA057-3,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +72733,Ca3,EA057,?,EA057-NA,,,,,, +72734,Ca30,EA057,Craft,EA057-3,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +72735,Ca31,EA057,Most adults,EA057-9,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +72736,Ca32,EA057,Most adults,EA057-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +72737,Ca33,EA057,Most adults,EA057-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +72738,Ca34,EA057,?,EA057-NA,,,,,, +72739,Ca35,EA057,?,EA057-NA,,,,,, +72740,Ca36,EA057,?,EA057-NA,,,,,, +72741,Ca37,EA057,?,EA057-NA,,,,,, +72742,Ca38,EA057,?,EA057-NA,,,,,, +72743,Ca39,EA057,Craft,EA057-3,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +72744,Ca4,EA057,Most adults,EA057-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +72745,Ca40,EA057,Craft,EA057-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +72746,Ca41,EA057,Craft,EA057-3,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +72747,Ca42,EA057,?,EA057-NA,,,,,, +72748,Ca43,EA057,?,EA057-NA,,,,,, +72749,Ca5,EA057,Most adults,EA057-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p80, +72750,Ca6,EA057,?,EA057-NA,,,,,, +72751,Ca7,EA057,Craft,EA057-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +72752,Ca8,EA057,?,EA057-NA,,,,,, +72753,Ca9,EA057,?,EA057-NA,,,,,, +72754,Cb1,EA057,?,EA057-NA,,,,,, +72755,Cb10,EA057,?,EA057-NA,,,,,, +72756,Cb11,EA057,?,EA057-NA,,,,,, +72757,Cb12,EA057,?,EA057-NA,,,,,, +72758,Cb13,EA057,?,EA057-NA,,,,,, +72759,Cb14,EA057,?,EA057-NA,,,,,, +72760,Cb15,EA057,?,EA057-NA,,,,,, +72761,Cb16,EA057,?,EA057-NA,,,,,, +72762,Cb17,EA057,?,EA057-NA,,,,,, +72763,Cb18,EA057,?,EA057-NA,,,,,, +72764,Cb19,EA057,Most adults,EA057-9,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p80, +72765,Cb2,EA057,Craft,EA057-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +72766,Cb20,EA057,?,EA057-NA,,,,,, +72767,Cb21,EA057,?,EA057-NA,,,,,, +72768,Cb22,EA057,?,EA057-NA,,,,,, +72769,Cb23,EA057,Craft,EA057-3,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +72770,Cb24,EA057,Most adults,EA057-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p84, +72771,Cb25,EA057,?,EA057-NA,,,,,, +72772,Cb26,EA057,Craft,EA057-3,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +72773,Cb27,EA057,?,EA057-NA,,,,,, +72774,Cb28,EA057,?,EA057-NA,,,,,, +72775,Cb29,EA057,?,EA057-NA,,,,,, +72776,Cb3,EA057,Craft,EA057-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +72777,Cb4,EA057,?,EA057-NA,,,,,, +72778,Cb5,EA057,?,EA057-NA,,,,,, +72779,Cb6,EA057,?,EA057-NA,,,,,, +72780,Cb7,EA057,?,EA057-NA,,,,,, +72781,Cb8,EA057,?,EA057-NA,,,,,, +72782,Cb9,EA057,?,EA057-NA,,,,,, +72783,Cc1,EA057,Most adults,EA057-9,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +72784,Cc10,EA057,Most adults,EA057-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +72785,Cc11,EA057,?,EA057-NA,,,,,, +72786,Cc12,EA057,?,EA057-NA,,,,,, +72787,Cc13,EA057,?,EA057-NA,,,,,, +72788,Cc14,EA057,Craft,EA057-3,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +72789,Cc15,EA057,?,EA057-NA,,,,,, +72790,Cc16,EA057,Craft,EA057-3,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +72791,Cc17,EA057,Craft,EA057-3,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +72792,Cc18,EA057,?,EA057-NA,,,,,, +72793,Cc19,EA057,?,EA057-NA,,,,,, +72794,Cc2,EA057,Craft,EA057-3,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +72795,Cc20,EA057,Most adults,EA057-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +72796,Cc3,EA057,Craft,EA057-3,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +72797,Cc4,EA057,Most adults,EA057-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +72798,Cc5,EA057,Craft,EA057-3,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +72799,Cc6,EA057,?,EA057-NA,,,,,, +72800,Cc7,EA057,?,EA057-NA,,,,,, +72801,Cc8,EA057,?,EA057-NA,,,,,, +72802,Cc9,EA057,Most adults,EA057-9,But rare,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +72803,Cd1,EA057,?,EA057-NA,,,,,, +72804,Cd10,EA057,?,EA057-NA,,,,,, +72805,Cd11,EA057,?,EA057-NA,,,,,, +72806,Cd12,EA057,Most adults,EA057-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +72807,Cd13,EA057,?,EA057-NA,,,,,, +72808,Cd14,EA057,?,EA057-NA,,,,,, +72809,Cd15,EA057,?,EA057-NA,,,,,, +72810,Cd16,EA057,?,EA057-NA,,,,,, +72811,Cd17,EA057,?,EA057-NA,,,,,, +72812,Cd18,EA057,?,EA057-NA,,,,,, +72813,Cd19,EA057,?,EA057-NA,,,,,, +72814,Cd2,EA057,Craft,EA057-3,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +72815,Cd20,EA057,?,EA057-NA,,,,,, +72816,Cd21,EA057,?,EA057-NA,,,,,, +72817,Cd3,EA057,Craft,EA057-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +72818,Cd4,EA057,Most adults,EA057-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +72819,Cd5,EA057,Craft,EA057-3,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +72820,Cd6,EA057,?,EA057-NA,,,,,, +72821,Cd7,EA057,?,EA057-NA,,,,,, +72822,Cd8,EA057,?,EA057-NA,,,,,, +72823,Cd9,EA057,?,EA057-NA,,,,,, +72824,Ce1,EA057,Craft,EA057-3,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +72825,Ce2,EA057,?,EA057-NA,,,,,, +72826,Ce3,EA057,Craft,EA057-3,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +72827,Ce4,EA057,?,EA057-NA,,,,,, +72828,Ce5,EA057,Most adults,EA057-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +72829,Ce6,EA057,Craft,EA057-3,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +72830,Ce7,EA057,?,EA057-NA,,,,,, +72831,Ce8,EA057,?,EA057-NA,,,,,, +72832,Cf1,EA057,Industrial,EA057-4,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +72833,Cf2,EA057,?,EA057-NA,,,,,, +72834,Cf3,EA057,Most adults,EA057-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +72835,Cf4,EA057,Most adults,EA057-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +72836,Cf5,EA057,Industrial,EA057-4,,miner1939,,1930,EthnographicAtlas_1967_p84, +72837,Cg1,EA057,Industrial,EA057-4,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +72838,Cg2,EA057,?,EA057-NA,,,,,, +72839,Cg3,EA057,?,EA057-NA,,,,,, +72840,Cg4,EA057,Most adults,EA057-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +72841,Cg5,EA057,?,EA057-NA,,,,,, +72842,Ch1,EA057,Most adults,EA057-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +72843,Ch10,EA057,?,EA057-NA,,,,,, +72844,Ch11,EA057,?,EA057-NA,,,,,, +72845,Ch2,EA057,Most adults,EA057-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +72846,Ch3,EA057,Industrial,EA057-4,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +72847,Ch4,EA057,Most adults,EA057-9,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p84, +72848,Ch5,EA057,Most adults,EA057-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +72849,Ch6,EA057,?,EA057-NA,,,,,, +72850,Ch7,EA057,?,EA057-NA,,,,,, +72851,Ch8,EA057,?,EA057-NA,,,,,, +72852,Ch9,EA057,Most adults,EA057-9,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +72853,Ci1,EA057,Most adults,EA057-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +72854,Ci10,EA057,Most adults,EA057-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +72855,Ci11,EA057,Most adults,EA057-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +72856,Ci12,EA057,Most adults,EA057-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +72857,Ci2,EA057,?,EA057-NA,,,,,, +72858,Ci3,EA057,?,EA057-NA,,,,,, +72859,Ci4,EA057,?,EA057-NA,,,,,, +72860,Ci5,EA057,Activity is absent,EA057-10,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +72861,Ci6,EA057,Most adults,EA057-9,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p84, +72862,Ci7,EA057,Most adults,EA057-9,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p84, +72863,Ci8,EA057,?,EA057-NA,,,,,, +72864,Ci9,EA057,?,EA057-NA,,,,,, +72865,Cj1,EA057,Most adults,EA057-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +72866,Cj10,EA057,?,EA057-NA,,,,,, +72867,Cj2,EA057,Most adults,EA057-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +72868,Cj3,EA057,Craft,EA057-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +72869,Cj4,EA057,Most adults,EA057-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +72870,Cj5,EA057,?,EA057-NA,,,,,, +72871,Cj6,EA057,?,EA057-NA,,,,,, +72872,Cj7,EA057,?,EA057-NA,,,,,, +72873,Cj8,EA057,Craft,EA057-3,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +72874,Cj9,EA057,Craft,EA057-3,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +72875,Ea1,EA057,Craft,EA057-3,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +72876,Ea10,EA057,Most adults,EA057-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +72877,Ea11,EA057,?,EA057-NA,,,,,, +72878,Ea12,EA057,Most adults,EA057-9,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +72879,Ea13,EA057,?,EA057-NA,,,,,, +72880,Ea2,EA057,?,EA057-NA,,,,,, +72881,Ea3,EA057,Most adults,EA057-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +72882,Ea4,EA057,Most adults,EA057-9,,barth1956b,,1950,EthnographicAtlas_1967_p88, +72883,Ea5,EA057,Most adults,EA057-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +72884,Ea6,EA057,Most adults,EA057-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +72885,Ea7,EA057,?,EA057-NA,,,,,, +72886,Ea8,EA057,?,EA057-NA,,,,,, +72887,Ea9,EA057,Most adults,EA057-9,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +72888,Eb1,EA057,Most adults,EA057-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +72889,Eb2,EA057,Most adults,EA057-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +72890,Eb3,EA057,Most adults,EA057-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +72891,Eb4,EA057,?,EA057-NA,,,,,, +72892,Eb5,EA057,?,EA057-NA,,,,,, +72893,Eb6,EA057,?,EA057-NA,,,,,, +72894,Eb7,EA057,Most adults,EA057-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +72895,Eb8,EA057,?,EA057-NA,,,,,, +72896,Ec1,EA057,Most adults,EA057-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +72897,Ec10,EA057,Most adults,EA057-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +72898,Ec11,EA057,?,EA057-NA,,,,,, +72899,Ec2,EA057,Most adults,EA057-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72900,Ec3,EA057,Most adults,EA057-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +72901,Ec4,EA057,Most adults,EA057-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +72902,Ec5,EA057,Most adults,EA057-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +72903,Ec6,EA057,?,EA057-NA,,,,,, +72904,Ec7,EA057,Most adults,EA057-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +72905,Ec8,EA057,?,EA057-NA,,,,,, +72906,Ec9,EA057,?,EA057-NA,,,,,, +72907,Ed1,EA057,Most adults,EA057-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +72908,Ed10,EA057,?,EA057-NA,,,,,, +72909,Ed13,EA057,?,EA057-NA,,,,,, +72910,Ed14,EA057,?,EA057-NA,,,,,, +72911,Ed15a,EA057,?,EA057-NA,,,,,, +72912,Ed15b,EA057,Activity is absent,EA057-10,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +72913,Ed16,EA057,?,EA057-NA,,,,,, +72914,Ed2,EA057,Most adults,EA057-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +72915,Ed3,EA057,?,EA057-NA,,,,,, +72916,Ed4,EA057,?,EA057-NA,,,,,, +72917,Ed5,EA057,?,EA057-NA,,,,,, +72918,Ed6,EA057,?,EA057-NA,,,,,, +72919,Ed7,EA057,?,EA057-NA,,,,,, +72920,Ed8,EA057,Most adults,EA057-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +72921,Ed9,EA057,Most adults,EA057-9,But very unimportant,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +72922,Ee1,EA057,Activity is absent,EA057-10,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +72923,Ee2,EA057,Most adults,EA057-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +72924,Ee3,EA057,Most adults,EA057-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +72925,Ee4,EA057,Most adults,EA057-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +72926,Ee5,EA057,Craft,EA057-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +72927,Ee6,EA057,Most adults,EA057-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +72928,Ee7,EA057,?,EA057-NA,,,,,, +72929,Ee8,EA057,Craft,EA057-3,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +72930,Ef1,EA057,?,EA057-NA,,,,,, +72931,Ef10,EA057,?,EA057-NA,,,,,, +72932,Ef11,EA057,Craft,EA057-3,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +72933,Ef2,EA057,Craft,EA057-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +72934,Ef3,EA057,?,EA057-NA,,,,,, +72935,Ef4,EA057,?,EA057-NA,,,,,, +72936,Ef5,EA057,Most adults,EA057-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +72937,Ef6,EA057,?,EA057-NA,,,,,, +72938,Ef7,EA057,?,EA057-NA,,,,,, +72939,Ef8,EA057,Craft,EA057-3,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +72940,Ef9,EA057,Craft,EA057-3,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72941,Eg1,EA057,Activity is absent,EA057-10,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72942,Eg10,EA057,Craft,EA057-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +72943,Eg11,EA057,?,EA057-NA,,,,,, +72944,Eg12,EA057,?,EA057-NA,,,,,, +72945,Eg13,EA057,?,EA057-NA,,,,,, +72946,Eg14,EA057,?,EA057-NA,,,,,, +72947,Eg2,EA057,Craft,EA057-3,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +72948,Eg3,EA057,?,EA057-NA,,,,,, +72949,Eg4,EA057,?,EA057-NA,,,,,, +72950,Eg5,EA057,?,EA057-NA,,,,,, +72951,Eg6,EA057,?,EA057-NA,,,,,, +72952,Eg7,EA057,?,EA057-NA,,,,,, +72953,Eg8,EA057,?,EA057-NA,,,,,, +72954,Eg9,EA057,?,EA057-NA,,,,,, +72955,Eh1,EA057,Activity is absent,EA057-10,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +72956,Eh10,EA057,?,EA057-NA,,,,,, +72957,Eh2,EA057,Activity is absent,EA057-10,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +72958,Eh3,EA057,Most adults,EA057-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +72959,Eh4,EA057,Most adults,EA057-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72960,Eh5,EA057,?,EA057-NA,,,,,, +72961,Eh6,EA057,?,EA057-NA,,,,,, +72962,Eh7,EA057,?,EA057-NA,,,,,, +72963,Eh8,EA057,Most adults,EA057-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +72964,Eh9,EA057,?,EA057-NA,,,,,, +72965,Ei1,EA057,Activity is absent,EA057-10,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72966,Ei10,EA057,?,EA057-NA,,,,,, +72967,Ei11,EA057,?,EA057-NA,,,,,, +72968,Ei12,EA057,?,EA057-NA,,,,,, +72969,Ei13,EA057,Activity is absent,EA057-10,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +72970,Ei14,EA057,Activity is absent,EA057-10,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +72971,Ei15,EA057,?,EA057-NA,,,,,, +72972,Ei16,EA057,?,EA057-NA,,,,,, +72973,Ei17,EA057,?,EA057-NA,,,,,, +72974,Ei18,EA057,?,EA057-NA,,,,,, +72975,Ei19,EA057,?,EA057-NA,,,,,, +72976,Ei2,EA057,Activity is absent,EA057-10,,mills1922,,1920,EthnographicAtlas_1967_p92, +72977,Ei20,EA057,?,EA057-NA,,,,,, +72978,Ei3,EA057,?,EA057-NA,,,,,, +72979,Ei4,EA057,Activity is absent,EA057-10,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +72980,Ei5,EA057,?,EA057-NA,,,,,, +72981,Ei6,EA057,Activity is absent,EA057-10,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +72982,Ei7,EA057,?,EA057-NA,,,,,, +72983,Ei8,EA057,Most adults,EA057-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +72984,Ei9,EA057,?,EA057-NA,,,,,, +72985,Ej1,EA057,?,EA057-NA,,,,,, +72986,Ej10,EA057,Most adults,EA057-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +72987,Ej11,EA057,?,EA057-NA,,,,,, +72988,Ej12,EA057,?,EA057-NA,,,,,, +72989,Ej13,EA057,?,EA057-NA,,,,,, +72990,Ej14,EA057,Activity is absent,EA057-10,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +72991,Ej15,EA057,?,EA057-NA,,,,,, +72992,Ej16,EA057,?,EA057-NA,,,,,, +72993,Ej2,EA057,?,EA057-NA,,,,,, +72994,Ej3,EA057,Activity is absent,EA057-10,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +72995,Ej4,EA057,?,EA057-NA,,,,,, +72996,Ej5,EA057,?,EA057-NA,,,,,, +72997,Ej6,EA057,?,EA057-NA,,,,,, +72998,Ej7,EA057,?,EA057-NA,,,,,, +72999,Ej8,EA057,?,EA057-NA,,,,,, +73000,Ej9,EA057,?,EA057-NA,,,,,, +73001,Ia1,EA057,Most adults,EA057-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +73002,Ia10,EA057,?,EA057-NA,,,,,, +73003,Ia11,EA057,Most adults,EA057-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +73004,Ia12,EA057,?,EA057-NA,,,,,, +73005,Ia13,EA057,?,EA057-NA,,,,,, +73006,Ia14,EA057,?,EA057-NA,,,,,, +73007,Ia15,EA057,?,EA057-NA,,,,,, +73008,Ia16,EA057,Activity is absent,EA057-10,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +73009,Ia17,EA057,?,EA057-NA,,,,,, +73010,Ia18,EA057,?,EA057-NA,,,,,, +73011,Ia2,EA057,Activity is absent,EA057-10,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +73012,Ia3,EA057,Activity is absent,EA057-10,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +73013,Ia4,EA057,?,EA057-NA,,,,,, +73014,Ia5,EA057,?,EA057-NA,,,,,, +73015,Ia6,EA057,Most adults,EA057-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73016,Ia7,EA057,?,EA057-NA,,,,,, +73017,Ia8,EA057,?,EA057-NA,,,,,, +73018,Ia9,EA057,?,EA057-NA,,,,,, +73019,Ib1,EA057,Activity is absent,EA057-10,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73020,Ib2,EA057,Activity is absent,EA057-10,"For rural Java, but leather work is produced by urban craftsmen, mainly Chinese",dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73021,Ib3,EA057,Activity is absent,EA057-10,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +73022,Ib4,EA057,?,EA057-NA,,,,,, +73023,Ib5,EA057,?,EA057-NA,,,,,, +73024,Ib6,EA057,?,EA057-NA,,,,,, +73025,Ib7,EA057,Activity is absent,EA057-10,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +73026,Ib8,EA057,?,EA057-NA,,,,,, +73027,Ib9,EA057,?,EA057-NA,,,,,, +73028,Ic1,EA057,?,EA057-NA,,,,,, +73029,Ic10,EA057,?,EA057-NA,,,,,, +73030,Ic11,EA057,?,EA057-NA,,,,,, +73031,Ic12,EA057,?,EA057-NA,,,,,, +73032,Ic13,EA057,?,EA057-NA,,,,,, +73033,Ic2,EA057,?,EA057-NA,,,,,, +73034,Ic3,EA057,?,EA057-NA,,,,,, +73035,Ic4,EA057,?,EA057-NA,,,,,, +73036,Ic5,EA057,Activity is absent,EA057-10,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +73037,Ic6,EA057,?,EA057-NA,,,,,, +73038,Ic7,EA057,?,EA057-NA,,,,,, +73039,Ic8,EA057,?,EA057-NA,,,,,, +73040,Ic9,EA057,?,EA057-NA,,,,,, +73041,Id1,EA057,Activity is absent,EA057-10,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +73042,Id10,EA057,Activity is absent,EA057-10,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +73043,Id11,EA057,Activity is absent,EA057-10,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +73044,Id12,EA057,?,EA057-NA,,,,,, +73045,Id13,EA057,Activity is absent,EA057-10,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +73046,Id2,EA057,Activity is absent,EA057-10,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +73047,Id3,EA057,?,EA057-NA,,,,,, +73048,Id4,EA057,Activity is absent,EA057-10,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +73049,Id5,EA057,Activity is absent,EA057-10,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +73050,Id6,EA057,Activity is absent,EA057-10,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +73051,Id7,EA057,?,EA057-NA,,,,,, +73052,Id8,EA057,Activity is absent,EA057-10,,roth1890,,1830,EthnographicAtlas_1967_p96, +73053,Id9,EA057,Activity is absent,EA057-10,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +73054,Ie1,EA057,Activity is absent,EA057-10,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73055,Ie10,EA057,Activity is absent,EA057-10,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +73056,Ie11,EA057,Activity is absent,EA057-10,,bowers1964,,1950,EthnographicAtlas_1967_p96, +73057,Ie12,EA057,Activity is absent,EA057-10,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73058,Ie13,EA057,?,EA057-NA,,,,,, +73059,Ie14,EA057,?,EA057-NA,,,,,, +73060,Ie15,EA057,Activity is absent,EA057-10,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73061,Ie16,EA057,?,EA057-NA,,,,,, +73062,Ie17,EA057,?,EA057-NA,,,,,, +73063,Ie18,EA057,Activity is absent,EA057-10,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +73064,Ie19,EA057,Activity is absent,EA057-10,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +73065,Ie2,EA057,?,EA057-NA,,,,,, +73066,Ie20,EA057,Activity is absent,EA057-10,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +73067,Ie21,EA057,?,EA057-NA,,,,,, +73068,Ie22,EA057,Activity is absent,EA057-10,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +73069,Ie23,EA057,?,EA057-NA,,,,,, +73070,Ie24,EA057,Activity is absent,EA057-10,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +73071,Ie25,EA057,Activity is absent,EA057-10,,williamson1912,,1920,EthnographicAtlas_1967_p96, +73072,Ie26,EA057,Activity is absent,EA057-10,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +73073,Ie27,EA057,?,EA057-NA,,,,,, +73074,Ie28,EA057,?,EA057-NA,,,,,, +73075,Ie29,EA057,?,EA057-NA,,,,,, +73076,Ie3,EA057,Activity is absent,EA057-10,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73077,Ie30,EA057,?,EA057-NA,,,,,, +73078,Ie31,EA057,Activity is absent,EA057-10,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +73079,Ie32,EA057,Activity is absent,EA057-10,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +73080,Ie33,EA057,?,EA057-NA,,,,,, +73081,Ie34,EA057,?,EA057-NA,,,,,, +73082,Ie35,EA057,?,EA057-NA,,,,,, +73083,Ie36,EA057,?,EA057-NA,,,,,, +73084,Ie37,EA057,?,EA057-NA,,,,,, +73085,Ie38,EA057,Activity is absent,EA057-10,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +73086,Ie39,EA057,?,EA057-NA,,,,,, +73087,Ie4,EA057,Activity is absent,EA057-10,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73088,Ie5,EA057,Activity is absent,EA057-10,,williams1936,,1930,EthnographicAtlas_1967_p96, +73089,Ie6,EA057,?,EA057-NA,,,,,, +73090,Ie7,EA057,Activity is absent,EA057-10,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +73091,Ie8,EA057,?,EA057-NA,,,,,, +73092,Ie9,EA057,Activity is absent,EA057-10,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +73093,If1,EA057,?,EA057-NA,,,,,, +73094,If10,EA057,?,EA057-NA,,,,,, +73095,If11,EA057,Activity is absent,EA057-10,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +73096,If12,EA057,Activity is absent,EA057-10,,mason1954,,1940,EthnographicAtlas_1967_p100, +73097,If13,EA057,Activity is absent,EA057-10,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +73098,If14,EA057,Activity is absent,EA057-10,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +73099,If15,EA057,Activity is absent,EA057-10,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +73100,If16,EA057,Activity is absent,EA057-10,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +73101,If17,EA057,Activity is absent,EA057-10,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +73102,If2,EA057,Activity is absent,EA057-10,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +73103,If3,EA057,Activity is absent,EA057-10,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +73104,If4,EA057,Activity is absent,EA057-10,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +73105,If5,EA057,Activity is absent,EA057-10,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +73106,If6,EA057,Activity is absent,EA057-10,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +73107,If7,EA057,Activity is absent,EA057-10,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +73108,If8,EA057,Activity is absent,EA057-10,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +73109,If9,EA057,Activity is absent,EA057-10,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +73110,Ig1,EA057,Activity is absent,EA057-10,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +73111,Ig10,EA057,Activity is absent,EA057-10,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +73112,Ig11,EA057,Activity is absent,EA057-10,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +73113,Ig12,EA057,?,EA057-NA,,,,,, +73114,Ig13,EA057,?,EA057-NA,,,,,, +73115,Ig14,EA057,Activity is absent,EA057-10,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +73116,Ig15,EA057,?,EA057-NA,,,,,, +73117,Ig16,EA057,?,EA057-NA,,,,,, +73118,Ig17,EA057,?,EA057-NA,,,,,, +73119,Ig18,EA057,?,EA057-NA,,,,,, +73120,Ig19,EA057,?,EA057-NA,,,,,, +73121,Ig2,EA057,Activity is absent,EA057-10,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +73122,Ig20,EA057,?,EA057-NA,,,,,, +73123,Ig21,EA057,?,EA057-NA,,,,,, +73124,Ig3,EA057,Activity is absent,EA057-10,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +73125,Ig4,EA057,Activity is absent,EA057-10,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +73126,Ig5,EA057,?,EA057-NA,,,,,, +73127,Ig6,EA057,Activity is absent,EA057-10,,ivens1927,,1900,EthnographicAtlas_1967_p100, +73128,Ig7,EA057,?,EA057-NA,,,,,, +73129,Ig8,EA057,?,EA057-NA,,,,,, +73130,Ig9,EA057,?,EA057-NA,,,,,, +73131,Ih1,EA057,?,EA057-NA,,,,,, +73132,Ih10,EA057,?,EA057-NA,,,,,, +73133,Ih11,EA057,?,EA057-NA,,,,,, +73134,Ih12,EA057,?,EA057-NA,,,,,, +73135,Ih13,EA057,?,EA057-NA,,,,,, +73136,Ih14,EA057,Activity is absent,EA057-10,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +73137,Ih2,EA057,Activity is absent,EA057-10,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73138,Ih3,EA057,?,EA057-NA,,,,,, +73139,Ih4,EA057,Activity is absent,EA057-10,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73140,Ih5,EA057,?,EA057-NA,,,,,, +73141,Ih6,EA057,?,EA057-NA,,,,,, +73142,Ih7,EA057,?,EA057-NA,,,,,, +73143,Ih8,EA057,Activity is absent,EA057-10,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +73144,Ih9,EA057,?,EA057-NA,,,,,, +73145,Ii1,EA057,Activity is absent,EA057-10,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +73146,Ii10,EA057,?,EA057-NA,,,,,, +73147,Ii12,EA057,Activity is absent,EA057-10,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73148,Ii13,EA057,Activity is absent,EA057-10,,burrows1937,,1830,EthnographicAtlas_1967_p100, +73149,Ii14,EA057,Activity is absent,EA057-10,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +73150,Ii2,EA057,Activity is absent,EA057-10,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +73151,Ii3,EA057,Activity is absent,EA057-10,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +73152,Ii4,EA057,Activity is absent,EA057-10,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +73153,Ii5,EA057,Activity is absent,EA057-10,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +73154,Ii6,EA057,Activity is absent,EA057-10,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +73155,Ii7,EA057,Activity is absent,EA057-10,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +73156,Ii8,EA057,Activity is absent,EA057-10,,burrows1936,,1840,EthnographicAtlas_1967_p100, +73157,Ii9,EA057,Activity is absent,EA057-10,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +73158,Ij1,EA057,Activity is absent,EA057-10,,buck1934,,1820,EthnographicAtlas_1967_p100, +73159,Ij10,EA057,?,EA057-NA,,,,,, +73160,Ij2,EA057,Activity is absent,EA057-10,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +73161,Ij3,EA057,Most adults,EA057-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +73162,Ij4,EA057,Activity is absent,EA057-10,,buck1932a,,1850,EthnographicAtlas_1967_p104, +73163,Ij5,EA057,Activity is absent,EA057-10,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +73164,Ij6,EA057,Activity is absent,EA057-10,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +73165,Ij7,EA057,Activity is absent,EA057-10,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +73166,Ij8,EA057,Activity is absent,EA057-10,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +73167,Ij9,EA057,Activity is absent,EA057-10,,metraux1940,,1860,EthnographicAtlas_1967_p104, +73168,Na1,EA057,Most adults,EA057-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +73169,Na10,EA057,Most adults,EA057-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +73170,Na11,EA057,Most adults,EA057-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +73171,Na12,EA057,Most adults,EA057-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +73172,Na13,EA057,Most adults,EA057-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +73173,Na14,EA057,Most adults,EA057-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +73174,Na15,EA057,Most adults,EA057-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +73175,Na16,EA057,Most adults,EA057-9,,osgood1931,,1860,EthnographicAtlas_1967_p104, +73176,Na17,EA057,Most adults,EA057-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73177,Na19,EA057,Most adults,EA057-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +73178,Na2,EA057,Most adults,EA057-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +73179,Na20,EA057,Most adults,EA057-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +73180,Na21,EA057,Activity is absent,EA057-10,"Men scrape and women chew skins, but the preparation is strictly mechanical",birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +73181,Na22,EA057,Most adults,EA057-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +73182,Na23,EA057,Most adults,EA057-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +73183,Na24,EA057,Most adults,EA057-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +73184,Na25,EA057,Most adults,EA057-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +73185,Na26,EA057,Most adults,EA057-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +73186,Na27,EA057,Most adults,EA057-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +73187,Na28,EA057,Most adults,EA057-9,,jenness1937,,1880,EthnographicAtlas_1967_p104, +73188,Na29,EA057,Most adults,EA057-9,,goddard1916,,1850,EthnographicAtlas_1967_p104, +73189,Na3,EA057,Most adults,EA057-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +73190,Na30,EA057,Most adults,EA057-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +73191,Na31,EA057,Most adults,EA057-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +73192,Na32,EA057,Most adults,EA057-9,"In Murdock (1964a) coded as 'equal participation' (EA046 code ""4"") with the comment ""Entry follows Lips; Burgesse reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9""). In EA the entry is 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +73193,Na33,EA057,Most adults,EA057-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +73194,Na34,EA057,Most adults,EA057-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +73195,Na35,EA057,Most adults,EA057-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +73196,Na36,EA057,Most adults,EA057-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +73197,Na37,EA057,Most adults,EA057-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +73198,Na38,EA057,Most adults,EA057-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +73199,Na39,EA057,Most adults,EA057-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +73200,Na4,EA057,Most adults,EA057-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +73201,Na40,EA057,?,EA057-NA,,,,,, +73202,Na41,EA057,Most adults,EA057-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +73203,Na42,EA057,Most adults,EA057-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +73204,Na43,EA057,Most adults,EA057-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +73205,Na44,EA057,?,EA057-NA,,,,,, +73206,Na45,EA057,Most adults,EA057-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +73207,Na5,EA057,Most adults,EA057-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +73208,Na6,EA057,Most adults,EA057-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +73209,Na7,EA057,Most adults,EA057-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +73210,Na8,EA057,Most adults,EA057-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +73211,Na9,EA057,Most adults,EA057-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73212,Nb1,EA057,Most adults,EA057-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +73213,Nb10,EA057,?,EA057-NA,,,,,, +73214,Nb11,EA057,Most adults,EA057-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +73215,Nb12,EA057,Most adults,EA057-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +73216,Nb13,EA057,Most adults,EA057-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +73217,Nb14,EA057,Most adults,EA057-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +73218,Nb15,EA057,Most adults,EA057-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +73219,Nb16,EA057,Most adults,EA057-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +73220,Nb17,EA057,Most adults,EA057-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +73221,Nb18,EA057,Most adults,EA057-9,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +73222,Nb19,EA057,Most adults,EA057-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +73223,Nb2,EA057,Most adults,EA057-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +73224,Nb20,EA057,?,EA057-NA,,,,,, +73225,Nb21,EA057,Most adults,EA057-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +73226,Nb22,EA057,Most adults,EA057-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +73227,Nb23,EA057,Most adults,EA057-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +73228,Nb24,EA057,Most adults,EA057-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +73229,Nb25,EA057,Most adults,EA057-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +73230,Nb26,EA057,Most adults,EA057-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +73231,Nb27,EA057,Most adults,EA057-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +73232,Nb28,EA057,?,EA057-NA,,,,,, +73233,Nb29,EA057,?,EA057-NA,,,,,, +73234,Nb3,EA057,?,EA057-NA,,,,,, +73235,Nb30,EA057,Most adults,EA057-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +73236,Nb31,EA057,?,EA057-NA,,,,,, +73237,Nb32,EA057,Most adults,EA057-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +73238,Nb33,EA057,Most adults,EA057-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +73239,Nb34,EA057,Most adults,EA057-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +73240,Nb35,EA057,Most adults,EA057-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +73241,Nb36,EA057,Most adults,EA057-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +73242,Nb37,EA057,Most adults,EA057-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +73243,Nb38,EA057,Most adults,EA057-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +73244,Nb39,EA057,Most adults,EA057-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +73245,Nb4,EA057,Most adults,EA057-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +73246,Nb5,EA057,Most adults,EA057-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +73247,Nb6,EA057,Most adults,EA057-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +73248,Nb7,EA057,?,EA057-NA,,,,,, +73249,Nb8,EA057,Most adults,EA057-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +73250,Nb9,EA057,?,EA057-NA,,,,,, +73251,Nc1,EA057,Most adults,EA057-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +73252,Nc10,EA057,Most adults,EA057-9,"Entry follows Voegelin; Stewart reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +73253,Nc11,EA057,Most adults,EA057-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +73254,Nc12,EA057,Most adults,EA057-9,"Entry follows Voegelin; Dixon reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +73255,Nc13,EA057,Most adults,EA057-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +73256,Nc14,EA057,Most adults,EA057-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +73257,Nc15,EA057,Most adults,EA057-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +73258,Nc16,EA057,?,EA057-NA,,,,,, +73259,Nc17,EA057,Most adults,EA057-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +73260,Nc18,EA057,Most adults,EA057-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +73261,Nc19,EA057,Most adults,EA057-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +73262,Nc2,EA057,Most adults,EA057-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +73263,Nc20,EA057,Most adults,EA057-9,Skins were scraped but not actually tanned,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +73264,Nc21,EA057,?,EA057-NA,,,,,, +73265,Nc22,EA057,Most adults,EA057-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +73266,Nc23,EA057,Most adults,EA057-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +73267,Nc24,EA057,Most adults,EA057-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +73268,Nc25,EA057,Most adults,EA057-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +73269,Nc26,EA057,Most adults,EA057-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +73270,Nc27,EA057,Most adults,EA057-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +73271,Nc28,EA057,Most adults,EA057-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +73272,Nc29,EA057,Most adults,EA057-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +73273,Nc3,EA057,?,EA057-NA,,,,,, +73274,Nc30,EA057,Most adults,EA057-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +73275,Nc31,EA057,Most adults,EA057-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +73276,Nc32,EA057,Most adults,EA057-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +73277,Nc33,EA057,Most adults,EA057-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +73278,Nc34,EA057,?,EA057-NA,,,,,, +73279,Nc4,EA057,Most adults,EA057-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +73280,Nc5,EA057,?,EA057-NA,,,,,, +73281,Nc6,EA057,Most adults,EA057-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +73282,Nc7,EA057,Most adults,EA057-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +73283,Nc8,EA057,Most adults,EA057-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +73284,Nc9,EA057,Most adults,EA057-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +73285,Nd1,EA057,Most adults,EA057-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +73286,Nd10,EA057,Most adults,EA057-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +73287,Nd11,EA057,Most adults,EA057-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +73288,Nd12,EA057,Most adults,EA057-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +73289,Nd13,EA057,Most adults,EA057-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +73290,Nd14,EA057,Most adults,EA057-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +73291,Nd15,EA057,Most adults,EA057-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +73292,Nd16,EA057,Most adults,EA057-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +73293,Nd17,EA057,Most adults,EA057-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +73294,Nd18,EA057,Most adults,EA057-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +73295,Nd19,EA057,Most adults,EA057-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +73296,Nd2,EA057,Most adults,EA057-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +73297,Nd20,EA057,Most adults,EA057-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +73298,Nd21,EA057,Most adults,EA057-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +73299,Nd22,EA057,Most adults,EA057-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +73300,Nd23,EA057,Most adults,EA057-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +73301,Nd24,EA057,Most adults,EA057-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +73302,Nd25,EA057,Most adults,EA057-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +73303,Nd26,EA057,Most adults,EA057-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +73304,Nd27,EA057,Most adults,EA057-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +73305,Nd28,EA057,Most adults,EA057-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +73306,Nd29,EA057,Most adults,EA057-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +73307,Nd3,EA057,Most adults,EA057-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +73308,Nd30,EA057,?,EA057-NA,,,,,, +73309,Nd31,EA057,Most adults,EA057-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +73310,Nd32,EA057,Most adults,EA057-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +73311,Nd33,EA057,Most adults,EA057-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +73312,Nd34,EA057,Most adults,EA057-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +73313,Nd35,EA057,Most adults,EA057-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +73314,Nd36,EA057,Most adults,EA057-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +73315,Nd37,EA057,Most adults,EA057-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +73316,Nd38,EA057,Most adults,EA057-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +73317,Nd39,EA057,Most adults,EA057-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +73318,Nd4,EA057,Most adults,EA057-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +73319,Nd40,EA057,Most adults,EA057-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +73320,Nd41,EA057,Most adults,EA057-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +73321,Nd42,EA057,Most adults,EA057-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +73322,Nd43,EA057,Most adults,EA057-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +73323,Nd44,EA057,Most adults,EA057-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +73324,Nd45,EA057,Most adults,EA057-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +73325,Nd46,EA057,Most adults,EA057-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +73326,Nd47,EA057,Most adults,EA057-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +73327,Nd48,EA057,Most adults,EA057-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +73328,Nd49,EA057,Most adults,EA057-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +73329,Nd5,EA057,Most adults,EA057-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +73330,Nd50,EA057,Most adults,EA057-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +73331,Nd51,EA057,Most adults,EA057-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +73332,Nd52,EA057,Most adults,EA057-9,"Entry follows Stewart; Drucker reports 'males alone' (EA046 code ""1""), with no specialization specified (EA057 code ""9"")",drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +73333,Nd53,EA057,Most adults,EA057-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +73334,Nd54,EA057,Most adults,EA057-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73335,Nd55,EA057,Most adults,EA057-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +73336,Nd56,EA057,Most adults,EA057-9,"Entry follows Kelly; Stewart reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +73337,Nd57,EA057,Most adults,EA057-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +73338,Nd58,EA057,Most adults,EA057-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +73339,Nd59,EA057,Most adults,EA057-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +73340,Nd6,EA057,Most adults,EA057-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +73341,Nd60,EA057,Most adults,EA057-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +73342,Nd61,EA057,Most adults,EA057-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +73343,Nd62,EA057,Most adults,EA057-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +73344,Nd63,EA057,Most adults,EA057-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +73345,Nd64,EA057,Most adults,EA057-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +73346,Nd65,EA057,Most adults,EA057-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +73347,Nd66,EA057,Most adults,EA057-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +73348,Nd67,EA057,Most adults,EA057-9,,gifford1936,,1870,EthnographicAtlas_1967_p112, +73349,Nd7,EA057,Most adults,EA057-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +73350,Nd8,EA057,Most adults,EA057-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +73351,Nd9,EA057,Most adults,EA057-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +73352,Ne1,EA057,Most adults,EA057-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +73353,Ne10,EA057,Most adults,EA057-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +73354,Ne11,EA057,Most adults,EA057-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +73355,Ne12,EA057,Most adults,EA057-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +73356,Ne13,EA057,Most adults,EA057-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +73357,Ne14,EA057,Most adults,EA057-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +73358,Ne15,EA057,Most adults,EA057-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +73359,Ne16,EA057,Most adults,EA057-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +73360,Ne17,EA057,Most adults,EA057-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +73361,Ne18,EA057,Most adults,EA057-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +73362,Ne19,EA057,Most adults,EA057-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +73363,Ne2,EA057,Most adults,EA057-9,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +73364,Ne20,EA057,Most adults,EA057-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +73365,Ne21,EA057,?,EA057-NA,,,,,, +73366,Ne3,EA057,Most adults,EA057-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +73367,Ne4,EA057,Most adults,EA057-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +73368,Ne5,EA057,Most adults,EA057-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +73369,Ne6,EA057,?,EA057-NA,,,,,, +73370,Ne7,EA057,Most adults,EA057-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +73371,Ne8,EA057,Most adults,EA057-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +73372,Ne9,EA057,Most adults,EA057-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +73373,Nf10,EA057,Most adults,EA057-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +73374,Nf11,EA057,Most adults,EA057-9,,whitman1937,,1870,EthnographicAtlas_1967_p116, +73375,Nf12,EA057,Most adults,EA057-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +73376,Nf13,EA057,Most adults,EA057-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73377,Nf14,EA057,Most adults,EA057-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +73378,Nf15,EA057,?,EA057-NA,,,,,, +73379,Nf2,EA057,Most adults,EA057-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +73380,Nf3,EA057,Most adults,EA057-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +73381,Nf4,EA057,Most adults,EA057-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +73382,Nf5,EA057,?,EA057-NA,,,,,, +73383,Nf6,EA057,Most adults,EA057-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +73384,Nf7,EA057,Most adults,EA057-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73385,Nf8,EA057,Most adults,EA057-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +73386,Nf9,EA057,Most adults,EA057-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +73387,Ng1,EA057,Most adults,EA057-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +73388,Ng10,EA057,Most adults,EA057-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +73389,Ng11,EA057,Most adults,EA057-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +73390,Ng12,EA057,Most adults,EA057-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +73391,Ng13,EA057,?,EA057-NA,,,,,, +73392,Ng14,EA057,?,EA057-NA,,,,,, +73393,Ng15,EA057,?,EA057-NA,,,,,, +73394,Ng2,EA057,?,EA057-NA,,,,,, +73395,Ng3,EA057,Most adults,EA057-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +73396,Ng4,EA057,?,EA057-NA,,,,,, +73397,Ng5,EA057,?,EA057-NA,,,,,, +73398,Ng6,EA057,Most adults,EA057-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +73399,Ng7,EA057,Most adults,EA057-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +73400,Ng8,EA057,?,EA057-NA,,,,,, +73401,Ng9,EA057,?,EA057-NA,,,,,, +73402,Nh1,EA057,Most adults,EA057-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +73403,Nh10,EA057,?,EA057-NA,,,,,, +73404,Nh11,EA057,Most adults,EA057-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +73405,Nh12,EA057,Most adults,EA057-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +73406,Nh13,EA057,?,EA057-NA,,,,,, +73407,Nh14,EA057,?,EA057-NA,,,,,, +73408,Nh15,EA057,Most adults,EA057-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +73409,Nh16,EA057,Most adults,EA057-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73410,Nh17,EA057,Most adults,EA057-9,"But in some bands: 'males alone' (EA046 code ""1""), with no specialization specified (EA057 code ""9"")",gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +73411,Nh18,EA057,Most adults,EA057-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73412,Nh19,EA057,Most adults,EA057-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +73413,Nh2,EA057,?,EA057-NA,,,,,, +73414,Nh20,EA057,?,EA057-NA,,,,,, +73415,Nh21,EA057,Most adults,EA057-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73416,Nh22,EA057,Most adults,EA057-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +73417,Nh23,EA057,Activity is absent,EA057-10,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +73418,Nh24,EA057,Most adults,EA057-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +73419,Nh25,EA057,Most adults,EA057-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +73420,Nh26,EA057,?,EA057-NA,,,,,, +73421,Nh27,EA057,?,EA057-NA,,,,,, +73422,Nh3,EA057,Most adults,EA057-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +73423,Nh4,EA057,?,EA057-NA,,,,,, +73424,Nh5,EA057,Most adults,EA057-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +73425,Nh6,EA057,?,EA057-NA,,,,,, +73426,Nh7,EA057,?,EA057-NA,,,,,, +73427,Nh8,EA057,?,EA057-NA,,,,,, +73428,Nh9,EA057,?,EA057-NA,,,,,, +73429,Ni1,EA057,Most adults,EA057-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +73430,Ni2,EA057,Most adults,EA057-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +73431,Ni3,EA057,Most adults,EA057-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +73432,Ni4,EA057,?,EA057-NA,,,,,, +73433,Ni5,EA057,Most adults,EA057-9,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +73434,Ni6,EA057,Most adults,EA057-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +73435,Ni7,EA057,Most adults,EA057-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +73436,Ni8,EA057,?,EA057-NA,,,,,, +73437,Ni9,EA057,?,EA057-NA,,,,,, +73438,Nj1,EA057,?,EA057-NA,,,,,, +73439,Nj10,EA057,?,EA057-NA,,,,,, +73440,Nj11,EA057,?,EA057-NA,,,,,, +73441,Nj12,EA057,?,EA057-NA,,,,,, +73442,Nj13,EA057,?,EA057-NA,,,,,, +73443,Nj14,EA057,?,EA057-NA,,,,,, +73444,Nj2,EA057,Craft,EA057-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +73445,Nj3,EA057,?,EA057-NA,,,,,, +73446,Nj4,EA057,?,EA057-NA,,,,,, +73447,Nj5,EA057,?,EA057-NA,,,,,, +73448,Nj6,EA057,?,EA057-NA,,,,,, +73449,Nj7,EA057,Most adults,EA057-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73450,Nj8,EA057,?,EA057-NA,,,,,, +73451,Nj9,EA057,Activity is absent,EA057-10,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +73452,Sa1,EA057,?,EA057-NA,,,,,, +73453,Sa10,EA057,Activity is absent,EA057-10,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +73454,Sa11,EA057,?,EA057-NA,,,,,, +73455,Sa12,EA057,Most adults,EA057-9,,stone1948,,1948,EthnographicAtlas_1967_p120, +73456,Sa13,EA057,?,EA057-NA,,,,,, +73457,Sa14,EA057,?,EA057-NA,,,,,, +73458,Sa15,EA057,?,EA057-NA,,,,,, +73459,Sa16,EA057,?,EA057-NA,,,,,, +73460,Sa17,EA057,?,EA057-NA,,,,,, +73461,Sa2,EA057,?,EA057-NA,,,,,, +73462,Sa3,EA057,Most adults,EA057-9,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +73463,Sa4,EA057,?,EA057-NA,,,,,, +73464,Sa5,EA057,Activity is absent,EA057-10,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +73465,Sa6,EA057,?,EA057-NA,,,,,, +73466,Sa7,EA057,Activity is absent,EA057-10,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +73467,Sa8,EA057,?,EA057-NA,,,,,, +73468,Sa9,EA057,Most adults,EA057-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +73469,Sb1,EA057,?,EA057-NA,,,,,, +73470,Sb2,EA057,?,EA057-NA,,,,,, +73471,Sb3,EA057,?,EA057-NA,,,,,, +73472,Sb4,EA057,Activity is absent,EA057-10,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +73473,Sb5,EA057,?,EA057-NA,,,,,, +73474,Sb6,EA057,Most adults,EA057-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +73475,Sb7,EA057,Activity is absent,EA057-10,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +73476,Sb8,EA057,Activity is absent,EA057-10,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +73477,Sb9,EA057,Craft,EA057-3,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +73478,Sc1,EA057,Activity is absent,EA057-10,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +73479,Sc10,EA057,Activity is absent,EA057-10,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +73480,Sc11,EA057,Activity is absent,EA057-10,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +73481,Sc12,EA057,Activity is absent,EA057-10,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +73482,Sc13,EA057,Activity is absent,EA057-10,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +73483,Sc14,EA057,Activity is absent,EA057-10,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +73484,Sc15,EA057,Activity is absent,EA057-10,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +73485,Sc16,EA057,Activity is absent,EA057-10,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +73486,Sc17,EA057,Activity is absent,EA057-10,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +73487,Sc18,EA057,Activity is absent,EA057-10,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +73488,Sc2,EA057,?,EA057-NA,,,,,, +73489,Sc3,EA057,Activity is absent,EA057-10,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +73490,Sc4,EA057,Activity is absent,EA057-10,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +73491,Sc5,EA057,?,EA057-NA,,,,,, +73492,Sc6,EA057,?,EA057-NA,,,,,, +73493,Sc7,EA057,Activity is absent,EA057-10,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +73494,Sc8,EA057,?,EA057-NA,,,,,, +73495,Sc9,EA057,Activity is absent,EA057-10,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +73496,Sd1,EA057,?,EA057-NA,,,,,, +73497,Sd2,EA057,Activity is absent,EA057-10,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +73498,Sd3,EA057,Activity is absent,EA057-10,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +73499,Sd4,EA057,?,EA057-NA,,,,,, +73500,Sd5,EA057,?,EA057-NA,,,,,, +73501,Sd6,EA057,Activity is absent,EA057-10,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +73502,Sd7,EA057,?,EA057-NA,,,,,, +73503,Sd8,EA057,Activity is absent,EA057-10,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +73504,Sd9,EA057,Activity is absent,EA057-10,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73505,Se1,EA057,Activity is absent,EA057-10,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +73506,Se10,EA057,?,EA057-NA,,,,,, +73507,Se11,EA057,Activity is absent,EA057-10,,prost1965,,1960,EthnographicAtlas_1967_p124, +73508,Se12,EA057,?,EA057-NA,,,,,, +73509,Se2,EA057,?,EA057-NA,,,,,, +73510,Se3,EA057,Activity is absent,EA057-10,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +73511,Se4,EA057,Most adults,EA057-9,,fejos1943,,1940,EthnographicAtlas_1967_p120, +73512,Se5,EA057,Activity is absent,EA057-10,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +73513,Se6,EA057,Activity is absent,EA057-10,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +73514,Se7,EA057,?,EA057-NA,,,,,, +73515,Se8,EA057,Activity is absent,EA057-10,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +73516,Se9,EA057,Activity is absent,EA057-10,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +73517,Sf1,EA057,Activity is absent,EA057-10,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +73518,Sf2,EA057,Most adults,EA057-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +73519,Sf3,EA057,?,EA057-NA,,,,,, +73520,Sf4,EA057,?,EA057-NA,,,,,, +73521,Sf5,EA057,?,EA057-NA,,,,,, +73522,Sf6,EA057,?,EA057-NA,,,,,, +73523,Sf7,EA057,?,EA057-NA,,,,,, +73524,Sf8,EA057,?,EA057-NA,,,,,, +73525,Sf9,EA057,?,EA057-NA,,,,,, +73526,Sg1,EA057,Most adults,EA057-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +73527,Sg2,EA057,Most adults,EA057-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73528,Sg3,EA057,Most adults,EA057-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +73529,Sg4,EA057,Most adults,EA057-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +73530,Sg5,EA057,Activity is absent,EA057-10,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73531,Sh1,EA057,Most adults,EA057-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +73532,Sh2,EA057,Most adults,EA057-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +73533,Sh3,EA057,Most adults,EA057-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +73534,Sh4,EA057,Most adults,EA057-9,,oberg1949,,1940,EthnographicAtlas_1967_p124, +73535,Sh5,EA057,Most adults,EA057-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +73536,Sh6,EA057,Activity is absent,EA057-10,But there was no actual tanning,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +73537,Sh7,EA057,Most adults,EA057-9,But tanning is not aboriginal,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124,"Assume Murdock comment meant for Col 46, not Col 47 as stated Gray (1999)" +73538,Sh8,EA057,Activity is absent,EA057-10,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +73539,Sh9,EA057,Activity is absent,EA057-10,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +73540,Si1,EA057,?,EA057-NA,,,,,, +73541,Si10,EA057,Activity is absent,EA057-10,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +73542,Si2,EA057,?,EA057-NA,,,,,, +73543,Si3,EA057,Activity is absent,EA057-10,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73544,Si4,EA057,Activity is absent,EA057-10,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +73545,Si5,EA057,?,EA057-NA,,,,,, +73546,Si6,EA057,?,EA057-NA,,,,,, +73547,Si7,EA057,?,EA057-NA,,,,,, +73548,Si8,EA057,?,EA057-NA,,,,,, +73549,Si9,EA057,?,EA057-NA,,,,,, +73550,Sj1,EA057,?,EA057-NA,,,,,, +73551,Sj10,EA057,Activity is absent,EA057-10,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73552,Sj11,EA057,?,EA057-NA,,,,,, +73553,Sj2,EA057,?,EA057-NA,,,,,, +73554,Sj3,EA057,?,EA057-NA,,,,,, +73555,Sj4,EA057,Activity is absent,EA057-10,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +73556,Sj5,EA057,?,EA057-NA,,,,,, +73557,Sj6,EA057,?,EA057-NA,,,,,, +73558,Sj7,EA057,?,EA057-NA,,,,,, +73559,Sj8,EA057,Activity is absent,EA057-10,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +73560,Sj9,EA057,?,EA057-NA,,,,,, +73561,ch12,EA057,Most adults,EA057-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +73562,ch13,EA057,Activity is absent,EA057-10,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +73563,ch14,EA057,Craft,EA057-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +73564,ch15,EA057,Most adults,EA057-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +73565,ch16,EA057,Most adults,EA057-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +73566,ch17,EA057,Most adults,EA057-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +73567,ch18,EA057,?,EA057-NA,,,,,, +73568,ch19,EA057,Craft,EA057-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +73569,ch20,EA057,Craft,EA057-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +73570,ch21,EA057,Craft,EA057-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +73571,ch22,EA057,?,EA057-NA,,,,,, +73572,ch23,EA057,Craft,EA057-3,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +73573,ch24,EA057,Most adults,EA057-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +73574,ch25,EA057,Craft,EA057-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +73575,ch26,EA057,Craft,EA057-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +73576,ch27,EA057,Craft,EA057-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +73577,ch28,EA057,Craft,EA057-3,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +73578,ec12,EA057,Most adults,EA057-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +73579,ec13,EA057,Most adults,EA057-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +73580,ec14,EA057,Most adults,EA057-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +73581,ec15,EA057,Most adults,EA057-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +73582,ec16,EA057,Most adults,EA057-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +73583,ec17,EA057,Most adults,EA057-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +73584,ec18,EA057,Most adults,EA057-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +73585,ec19,EA057,Most adults,EA057-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +73586,ec20,EA057,Most adults,EA057-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +73587,ec21,EA057,Most adults,EA057-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +73588,Aa1,EA058,Activity is absent,EA058-10,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +73589,Aa2,EA058,Activity is absent,EA058-10,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +73590,Aa3,EA058,Most adults,EA058-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +73591,Aa4,EA058,?,EA058-NA,,,,,, +73592,Aa5,EA058,Activity is absent,EA058-10,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +73593,Aa6,EA058,?,EA058-NA,,,,,, +73594,Aa7,EA058,Activity is absent,EA058-10,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +73595,Aa8,EA058,Activity is absent,EA058-10,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +73596,Aa9,EA058,?,EA058-NA,,,,,, +73597,Ab1,EA058,?,EA058-NA,,,,,, +73598,Ab10,EA058,Most adults,EA058-9,,hunter1936,,1936,EthnographicAtlas_1967_p64, +73599,Ab11,EA058,Most adults,EA058-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +73600,Ab12,EA058,Most adults,EA058-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +73601,Ab13,EA058,Craft,EA058-3,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +73602,Ab14,EA058,Most adults,EA058-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +73603,Ab15,EA058,Most adults,EA058-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +73604,Ab16,EA058,?,EA058-NA,,,,,, +73605,Ab17,EA058,?,EA058-NA,,,,,, +73606,Ab18,EA058,Most adults,EA058-9,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +73607,Ab19,EA058,Most adults,EA058-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +73608,Ab2,EA058,?,EA058-NA,,,,,, +73609,Ab20,EA058,?,EA058-NA,,,,,, +73610,Ab21a,EA058,?,EA058-NA,,,,,, +73611,Ab21b,EA058,?,EA058-NA,,,,,, +73612,Ab22,EA058,?,EA058-NA,,,,,, +73613,Ab3,EA058,Most adults,EA058-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +73614,Ab4,EA058,Most adults,EA058-9,,junod1927,,1920,EthnographicAtlas_1967_p64, +73615,Ab5,EA058,Most adults,EA058-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +73616,Ab6,EA058,Craft,EA058-3,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +73617,Ab7,EA058,?,EA058-NA,,,,,, +73618,Ab8,EA058,Most adults,EA058-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +73619,Ab9,EA058,Most adults,EA058-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +73620,Ac1,EA058,Most adults,EA058-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +73621,Ac10,EA058,Most adults,EA058-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +73622,Ac11,EA058,Most adults,EA058-9,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +73623,Ac12,EA058,Most adults,EA058-9,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p64, +73624,Ac13,EA058,Most adults,EA058-9,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p64, +73625,Ac14,EA058,?,EA058-NA,,,,,, +73626,Ac15,EA058,?,EA058-NA,,,,,, +73627,Ac16,EA058,?,EA058-NA,,,,,, +73628,Ac17,EA058,Most adults,EA058-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +73629,Ac18,EA058,Most adults,EA058-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +73630,Ac19,EA058,?,EA058-NA,,,,,, +73631,Ac2,EA058,?,EA058-NA,,,,,, +73632,Ac20,EA058,?,EA058-NA,,,,,, +73633,Ac21,EA058,?,EA058-NA,,,,,, +73634,Ac22,EA058,?,EA058-NA,,,,,, +73635,Ac23,EA058,Most adults,EA058-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +73636,Ac24,EA058,?,EA058-NA,,,,,, +73637,Ac25,EA058,?,EA058-NA,,,,,, +73638,Ac26,EA058,?,EA058-NA,,,,,, +73639,Ac27,EA058,?,EA058-NA,,,,,, +73640,Ac28,EA058,Most adults,EA058-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +73641,Ac29,EA058,?,EA058-NA,,,,,, +73642,Ac3,EA058,Most adults,EA058-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +73643,Ac30,EA058,Most adults,EA058-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +73644,Ac31,EA058,Most adults,EA058-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +73645,Ac32,EA058,?,EA058-NA,,,,,, +73646,Ac33,EA058,Most adults,EA058-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +73647,Ac34,EA058,Most adults,EA058-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +73648,Ac35,EA058,?,EA058-NA,,,,,, +73649,Ac36,EA058,?,EA058-NA,,,,,, +73650,Ac37,EA058,?,EA058-NA,,,,,, +73651,Ac38,EA058,Most adults,EA058-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +73652,Ac39,EA058,Most adults,EA058-9,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +73653,Ac4,EA058,Activity is absent,EA058-10,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +73654,Ac40,EA058,?,EA058-NA,,,,,, +73655,Ac41,EA058,?,EA058-NA,,,,,, +73656,Ac42,EA058,?,EA058-NA,,,,,, +73657,Ac43,EA058,?,EA058-NA,,,,,, +73658,Ac5,EA058,Most adults,EA058-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +73659,Ac6,EA058,?,EA058-NA,,,,,, +73660,Ac7,EA058,Most adults,EA058-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +73661,Ac8,EA058,Most adults,EA058-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +73662,Ac9,EA058,Most adults,EA058-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +73663,Ad1,EA058,Activity is absent,EA058-10,Despised as slave occupation,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +73664,Ad10,EA058,Most adults,EA058-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +73665,Ad11,EA058,Most adults,EA058-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +73666,Ad12,EA058,?,EA058-NA,,,,,, +73667,Ad13,EA058,Most adults,EA058-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +73668,Ad14,EA058,Most adults,EA058-9,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p68, +73669,Ad15,EA058,?,EA058-NA,,,,,, +73670,Ad16,EA058,Most adults,EA058-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +73671,Ad17,EA058,Most adults,EA058-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +73672,Ad18,EA058,?,EA058-NA,,,,,, +73673,Ad19,EA058,Most adults,EA058-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +73674,Ad2,EA058,Craft,EA058-3,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +73675,Ad20,EA058,Most adults,EA058-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +73676,Ad21,EA058,?,EA058-NA,,,,,, +73677,Ad22,EA058,Most adults,EA058-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +73678,Ad23,EA058,?,EA058-NA,,,,,, +73679,Ad24,EA058,Most adults,EA058-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +73680,Ad25,EA058,?,EA058-NA,,,,,, +73681,Ad26,EA058,Most adults,EA058-9,,sick1916,,1910,EthnographicAtlas_1967_p68, +73682,Ad27,EA058,Most adults,EA058-9,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +73683,Ad28,EA058,Most adults,EA058-9,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +73684,Ad29,EA058,Most adults,EA058-9,Formerly,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +73685,Ad3,EA058,Activity is absent,EA058-10,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +73686,Ad30,EA058,Most adults,EA058-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +73687,Ad31,EA058,Most adults,EA058-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +73688,Ad32,EA058,Most adults,EA058-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p68, +73689,Ad33,EA058,?,EA058-NA,,,,,, +73690,Ad34,EA058,Craft,EA058-3,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +73691,Ad35,EA058,Most adults,EA058-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +73692,Ad36,EA058,?,EA058-NA,,,,,, +73693,Ad37,EA058,?,EA058-NA,,,,,, +73694,Ad38,EA058,?,EA058-NA,,,,,, +73695,Ad39,EA058,Craft,EA058-3,,gray1963,,1950,EthnographicAtlas_1967_p68, +73696,Ad4,EA058,Craft,EA058-3,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +73697,Ad40,EA058,?,EA058-NA,,,,,, +73698,Ad41,EA058,?,EA058-NA,,,,,, +73699,Ad42,EA058,?,EA058-NA,,,,,, +73700,Ad43,EA058,?,EA058-NA,,,,,, +73701,Ad44,EA058,Most adults,EA058-9,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +73702,Ad45,EA058,Most adults,EA058-9,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +73703,Ad46,EA058,Craft,EA058-3,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +73704,Ad47,EA058,Most adults,EA058-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +73705,Ad48,EA058,Craft,EA058-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +73706,Ad49,EA058,?,EA058-NA,,,,,, +73707,Ad5,EA058,?,EA058-NA,,,,,, +73708,Ad50,EA058,Most adults,EA058-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +73709,Ad51,EA058,Most adults,EA058-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +73710,Ad6,EA058,Most adults,EA058-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +73711,Ad7,EA058,Craft,EA058-3,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +73712,Ad8,EA058,?,EA058-NA,,,,,, +73713,Ad9,EA058,Most adults,EA058-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +73714,Ae1,EA058,Most adults,EA058-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +73715,Ae10,EA058,Most adults,EA058-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +73716,Ae11,EA058,Most adults,EA058-9,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +73717,Ae12,EA058,Most adults,EA058-9,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +73718,Ae13,EA058,?,EA058-NA,,,,,, +73719,Ae14,EA058,Craft,EA058-3,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +73720,Ae15,EA058,?,EA058-NA,,,,,, +73721,Ae16,EA058,?,EA058-NA,,,,,, +73722,Ae17,EA058,Most adults,EA058-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +73723,Ae18,EA058,Craft,EA058-3,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +73724,Ae19,EA058,?,EA058-NA,,,,,, +73725,Ae2,EA058,Most adults,EA058-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +73726,Ae20,EA058,?,EA058-NA,,,,,, +73727,Ae21,EA058,?,EA058-NA,,,,,, +73728,Ae22,EA058,?,EA058-NA,,,,,, +73729,Ae23,EA058,?,EA058-NA,,,,,, +73730,Ae24,EA058,?,EA058-NA,,,,,, +73731,Ae25,EA058,?,EA058-NA,,,,,, +73732,Ae26,EA058,?,EA058-NA,,,,,, +73733,Ae27,EA058,?,EA058-NA,,,,,, +73734,Ae28,EA058,Most adults,EA058-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +73735,Ae29,EA058,Most adults,EA058-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +73736,Ae3,EA058,Most adults,EA058-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +73737,Ae30,EA058,?,EA058-NA,,,,,, +73738,Ae31,EA058,Most adults,EA058-9,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +73739,Ae32,EA058,?,EA058-NA,,,,,, +73740,Ae33,EA058,Most adults,EA058-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +73741,Ae34,EA058,?,EA058-NA,,,,,, +73742,Ae35,EA058,?,EA058-NA,,,,,, +73743,Ae36,EA058,?,EA058-NA,,,,,, +73744,Ae37,EA058,?,EA058-NA,,,,,, +73745,Ae38,EA058,?,EA058-NA,,,,,, +73746,Ae39,EA058,Activity is absent,EA058-10,"But in some villages probably present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +73747,Ae4,EA058,Most adults,EA058-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +73748,Ae40,EA058,?,EA058-NA,,,,,, +73749,Ae41,EA058,Most adults,EA058-9,,andersson1953,,1940,EthnographicAtlas_1967_p68, +73750,Ae42,EA058,?,EA058-NA,,,,,, +73751,Ae43,EA058,?,EA058-NA,,,,,, +73752,Ae44,EA058,?,EA058-NA,,,,,, +73753,Ae45,EA058,?,EA058-NA,,,,,, +73754,Ae46,EA058,?,EA058-NA,,,,,, +73755,Ae47,EA058,?,EA058-NA,,,,,, +73756,Ae48,EA058,Most adults,EA058-9,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p68, +73757,Ae49,EA058,?,EA058-NA,,,,,, +73758,Ae5,EA058,Most adults,EA058-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +73759,Ae50,EA058,Most adults,EA058-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +73760,Ae51,EA058,Most adults,EA058-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +73761,Ae52,EA058,Most adults,EA058-9,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +73762,Ae53,EA058,?,EA058-NA,,,,,, +73763,Ae54,EA058,?,EA058-NA,,,,,, +73764,Ae55,EA058,Most adults,EA058-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +73765,Ae56,EA058,Most adults,EA058-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +73766,Ae57,EA058,?,EA058-NA,,,,,, +73767,Ae58,EA058,?,EA058-NA,,,,,, +73768,Ae59,EA058,?,EA058-NA,,,,,, +73769,Ae6,EA058,?,EA058-NA,,,,,, +73770,Ae7,EA058,Most adults,EA058-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +73771,Ae8,EA058,Craft,EA058-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +73772,Ae9,EA058,Most adults,EA058-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +73773,Af1,EA058,Craft,EA058-3,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +73774,Af10,EA058,Craft,EA058-3,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +73775,Af11,EA058,Most adults,EA058-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +73776,Af12,EA058,?,EA058-NA,,,,,, +73777,Af13,EA058,Most adults,EA058-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +73778,Af14,EA058,?,EA058-NA,,,,,, +73779,Af15,EA058,Most adults,EA058-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +73780,Af16,EA058,?,EA058-NA,,,,,, +73781,Af17,EA058,?,EA058-NA,,,,,, +73782,Af18,EA058,?,EA058-NA,,,,,, +73783,Af19,EA058,?,EA058-NA,,,,,, +73784,Af2,EA058,Most adults,EA058-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +73785,Af20,EA058,Most adults,EA058-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +73786,Af21,EA058,?,EA058-NA,,,,,, +73787,Af22,EA058,Most adults,EA058-9,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +73788,Af23,EA058,Most adults,EA058-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +73789,Af24,EA058,Most adults,EA058-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +73790,Af25,EA058,Most adults,EA058-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +73791,Af26,EA058,?,EA058-NA,,,,,, +73792,Af27,EA058,?,EA058-NA,,,,,, +73793,Af28,EA058,Most adults,EA058-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +73794,Af29,EA058,?,EA058-NA,,,,,, +73795,Af3,EA058,Most adults,EA058-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +73796,Af30,EA058,?,EA058-NA,,,,,, +73797,Af31,EA058,?,EA058-NA,,,,,, +73798,Af32,EA058,Most adults,EA058-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73799,Af33,EA058,Most adults,EA058-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73800,Af34,EA058,?,EA058-NA,,,,,, +73801,Af35,EA058,?,EA058-NA,,,,,, +73802,Af36,EA058,Most adults,EA058-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +73803,Af37,EA058,?,EA058-NA,,,,,, +73804,Af38,EA058,?,EA058-NA,,,,,, +73805,Af39,EA058,?,EA058-NA,,,,,, +73806,Af4,EA058,?,EA058-NA,,,,,, +73807,Af40,EA058,?,EA058-NA,,,,,, +73808,Af41,EA058,?,EA058-NA,,,,,, +73809,Af42,EA058,Most adults,EA058-9,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +73810,Af43,EA058,?,EA058-NA,,,,,, +73811,Af44,EA058,?,EA058-NA,,,,,, +73812,Af45,EA058,?,EA058-NA,,,,,, +73813,Af46,EA058,?,EA058-NA,,,,,, +73814,Af47,EA058,?,EA058-NA,,,,,, +73815,Af48,EA058,?,EA058-NA,,,,,, +73816,Af49,EA058,Most adults,EA058-9,,schwab1947,,1940,EthnographicAtlas_1967_p72, +73817,Af5,EA058,Most adults,EA058-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +73818,Af50,EA058,?,EA058-NA,,,,,, +73819,Af51,EA058,Most adults,EA058-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +73820,Af52,EA058,Most adults,EA058-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +73821,Af53,EA058,?,EA058-NA,,,,,, +73822,Af54,EA058,Most adults,EA058-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +73823,Af55,EA058,?,EA058-NA,,,,,, +73824,Af56,EA058,Most adults,EA058-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +73825,Af57,EA058,Most adults,EA058-9,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +73826,Af58,EA058,?,EA058-NA,,,,,, +73827,Af6,EA058,Most adults,EA058-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +73828,Af7,EA058,Most adults,EA058-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +73829,Af8,EA058,Most adults,EA058-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +73830,Af9,EA058,?,EA058-NA,,,,,, +73831,Ag1,EA058,Craft,EA058-3,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +73832,Ag10,EA058,Most adults,EA058-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +73833,Ag11,EA058,Most adults,EA058-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +73834,Ag12,EA058,Most adults,EA058-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +73835,Ag13,EA058,Most adults,EA058-9,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p72, +73836,Ag14,EA058,?,EA058-NA,,,,,, +73837,Ag15,EA058,?,EA058-NA,,,,,, +73838,Ag16,EA058,?,EA058-NA,,,,,, +73839,Ag17,EA058,?,EA058-NA,,,,,, +73840,Ag18,EA058,?,EA058-NA,,,,,, +73841,Ag19,EA058,?,EA058-NA,,,,,, +73842,Ag2,EA058,Craft,EA058-3,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +73843,Ag20,EA058,?,EA058-NA,,,,,, +73844,Ag21,EA058,Most adults,EA058-9,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +73845,Ag22,EA058,?,EA058-NA,,,,,, +73846,Ag23,EA058,?,EA058-NA,,,,,, +73847,Ag24,EA058,?,EA058-NA,,,,,, +73848,Ag25,EA058,?,EA058-NA,,,,,, +73849,Ag26,EA058,Most adults,EA058-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p72, +73850,Ag27,EA058,?,EA058-NA,,,,,, +73851,Ag28,EA058,?,EA058-NA,,,,,, +73852,Ag29,EA058,?,EA058-NA,,,,,, +73853,Ag3,EA058,?,EA058-NA,,,,,, +73854,Ag30,EA058,Craft,EA058-3,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +73855,Ag31,EA058,Craft,EA058-3,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p72, +73856,Ag32,EA058,Most adults,EA058-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +73857,Ag33,EA058,?,EA058-NA,,,,,, +73858,Ag34,EA058,?,EA058-NA,,,,,, +73859,Ag35,EA058,?,EA058-NA,,,,,, +73860,Ag36,EA058,?,EA058-NA,,,,,, +73861,Ag37,EA058,?,EA058-NA,,,,,, +73862,Ag38,EA058,?,EA058-NA,,,,,, +73863,Ag39,EA058,Most adults,EA058-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +73864,Ag4,EA058,Most adults,EA058-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +73865,Ag40,EA058,?,EA058-NA,,,,,, +73866,Ag41,EA058,Most adults,EA058-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p72, +73867,Ag42,EA058,?,EA058-NA,,,,,, +73868,Ag43,EA058,?,EA058-NA,,,,,, +73869,Ag44,EA058,?,EA058-NA,,,,,, +73870,Ag45,EA058,Craft,EA058-3,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +73871,Ag46,EA058,?,EA058-NA,,,,,, +73872,Ag47,EA058,Most adults,EA058-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +73873,Ag48,EA058,Most adults,EA058-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +73874,Ag49,EA058,Most adults,EA058-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +73875,Ag5,EA058,Most adults,EA058-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +73876,Ag50,EA058,Most adults,EA058-9,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +73877,Ag51,EA058,?,EA058-NA,,,,,, +73878,Ag52,EA058,?,EA058-NA,,,,,, +73879,Ag53,EA058,Most adults,EA058-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +73880,Ag54,EA058,Most adults,EA058-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +73881,Ag6,EA058,?,EA058-NA,,,,,, +73882,Ag7,EA058,?,EA058-NA,,,,,, +73883,Ag8,EA058,Most adults,EA058-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +73884,Ag9,EA058,?,EA058-NA,,,,,, +73885,Ah1,EA058,Activity is absent,EA058-10,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +73886,Ah10,EA058,?,EA058-NA,,,,,, +73887,Ah11,EA058,Most adults,EA058-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +73888,Ah12,EA058,?,EA058-NA,,,,,, +73889,Ah13,EA058,Most adults,EA058-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +73890,Ah14,EA058,Most adults,EA058-9,,gunnandconant1960,,1920,EthnographicAtlas_1967_p76, +73891,Ah15,EA058,Activity is absent,EA058-10,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +73892,Ah16,EA058,?,EA058-NA,,,,,, +73893,Ah17,EA058,?,EA058-NA,,,,,, +73894,Ah18,EA058,?,EA058-NA,,,,,, +73895,Ah19,EA058,Most adults,EA058-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p76, +73896,Ah2,EA058,Most adults,EA058-9,,meek1931a,,1920,EthnographicAtlas_1967_p76, +73897,Ah20,EA058,Activity is absent,EA058-10,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +73898,Ah21,EA058,?,EA058-NA,,,,,, +73899,Ah22,EA058,?,EA058-NA,,,,,, +73900,Ah23,EA058,?,EA058-NA,,,,,, +73901,Ah24,EA058,?,EA058-NA,,,,,, +73902,Ah25,EA058,?,EA058-NA,,,,,, +73903,Ah26,EA058,?,EA058-NA,,,,,, +73904,Ah27,EA058,?,EA058-NA,,,,,, +73905,Ah28,EA058,?,EA058-NA,,,,,, +73906,Ah29,EA058,?,EA058-NA,,,,,, +73907,Ah3,EA058,Most adults,EA058-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +73908,Ah30,EA058,?,EA058-NA,,,,,, +73909,Ah31,EA058,?,EA058-NA,,,,,, +73910,Ah32,EA058,?,EA058-NA,,,,,, +73911,Ah33,EA058,?,EA058-NA,,,,,, +73912,Ah34,EA058,?,EA058-NA,,,,,, +73913,Ah35,EA058,?,EA058-NA,,,,,, +73914,Ah36,EA058,Most adults,EA058-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +73915,Ah37,EA058,?,EA058-NA,,,,,, +73916,Ah38,EA058,Most adults,EA058-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +73917,Ah39,EA058,Most adults,EA058-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +73918,Ah4,EA058,?,EA058-NA,,,,,, +73919,Ah5,EA058,?,EA058-NA,,,,,, +73920,Ah6,EA058,?,EA058-NA,,,,,, +73921,Ah7,EA058,Craft,EA058-3,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +73922,Ah8,EA058,Most adults,EA058-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +73923,Ah9,EA058,Most adults,EA058-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +73924,Ai1,EA058,Most adults,EA058-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +73925,Ai10,EA058,Most adults,EA058-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +73926,Ai11,EA058,Most adults,EA058-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +73927,Ai12,EA058,?,EA058-NA,,,,,, +73928,Ai13,EA058,?,EA058-NA,,,,,, +73929,Ai14,EA058,Most adults,EA058-9,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +73930,Ai15,EA058,Most adults,EA058-9,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +73931,Ai16,EA058,?,EA058-NA,,,,,, +73932,Ai17,EA058,Most adults,EA058-9,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +73933,Ai18,EA058,Most adults,EA058-9,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +73934,Ai19,EA058,?,EA058-NA,,,,,, +73935,Ai2,EA058,?,EA058-NA,,,,,, +73936,Ai20,EA058,?,EA058-NA,,,,,, +73937,Ai21,EA058,?,EA058-NA,,,,,, +73938,Ai22,EA058,?,EA058-NA,,,,,, +73939,Ai23,EA058,Most adults,EA058-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +73940,Ai24,EA058,?,EA058-NA,,,,,, +73941,Ai25,EA058,Most adults,EA058-9,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +73942,Ai26,EA058,Most adults,EA058-9,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +73943,Ai27,EA058,?,EA058-NA,,,,,, +73944,Ai28,EA058,Most adults,EA058-9,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +73945,Ai29,EA058,Most adults,EA058-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +73946,Ai3,EA058,Most adults,EA058-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +73947,Ai30,EA058,Most adults,EA058-9,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +73948,Ai31,EA058,Most adults,EA058-9,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +73949,Ai32,EA058,Most adults,EA058-9,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p76, +73950,Ai33,EA058,?,EA058-NA,,,,,, +73951,Ai34,EA058,?,EA058-NA,,,,,, +73952,Ai35,EA058,Most adults,EA058-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +73953,Ai36,EA058,Most adults,EA058-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +73954,Ai37,EA058,?,EA058-NA,,,,,, +73955,Ai38,EA058,Most adults,EA058-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +73956,Ai39,EA058,Most adults,EA058-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +73957,Ai4,EA058,?,EA058-NA,,,,,, +73958,Ai40,EA058,Most adults,EA058-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +73959,Ai41,EA058,Most adults,EA058-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +73960,Ai42,EA058,Most adults,EA058-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +73961,Ai43,EA058,Most adults,EA058-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +73962,Ai44,EA058,Most adults,EA058-9,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p76, +73963,Ai45,EA058,?,EA058-NA,,,,,, +73964,Ai46,EA058,?,EA058-NA,,,,,, +73965,Ai47,EA058,Most adults,EA058-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +73966,Ai5,EA058,Most adults,EA058-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +73967,Ai6,EA058,Most adults,EA058-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +73968,Ai7,EA058,Most adults,EA058-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +73969,Ai8,EA058,Most adults,EA058-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +73970,Ai9,EA058,Most adults,EA058-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +73971,Aj1,EA058,?,EA058-NA,,,,,, +73972,Aj10,EA058,?,EA058-NA,,,,,, +73973,Aj11,EA058,?,EA058-NA,,,,,, +73974,Aj12,EA058,?,EA058-NA,,,,,, +73975,Aj13,EA058,Most adults,EA058-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +73976,Aj14,EA058,?,EA058-NA,,,,,, +73977,Aj15,EA058,Most adults,EA058-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +73978,Aj16,EA058,Most adults,EA058-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +73979,Aj17,EA058,Most adults,EA058-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +73980,Aj18,EA058,?,EA058-NA,,,,,, +73981,Aj19,EA058,?,EA058-NA,,,,,, +73982,Aj2,EA058,Most adults,EA058-9,A very few women made pottery,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +73983,Aj20,EA058,?,EA058-NA,,,,,, +73984,Aj21,EA058,Activity is absent,EA058-10,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +73985,Aj22,EA058,Most adults,EA058-9,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +73986,Aj23,EA058,Activity is absent,EA058-10,The products are obtained by trade from the Hill Suk,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +73987,Aj24,EA058,Most adults,EA058-9,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +73988,Aj25,EA058,Most adults,EA058-9,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +73989,Aj26,EA058,Most adults,EA058-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +73990,Aj27,EA058,?,EA058-NA,,,,,, +73991,Aj28,EA058,?,EA058-NA,,,,,, +73992,Aj29,EA058,?,EA058-NA,,,,,, +73993,Aj3,EA058,Activity is absent,EA058-10,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +73994,Aj30,EA058,?,EA058-NA,,,,,, +73995,Aj31,EA058,?,EA058-NA,,,,,, +73996,Aj4,EA058,Most adults,EA058-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +73997,Aj5,EA058,Activity is absent,EA058-10,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +73998,Aj6,EA058,Most adults,EA058-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +73999,Aj7,EA058,Craft,EA058-3,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +74000,Aj8,EA058,Most adults,EA058-9,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +74001,Aj9,EA058,Most adults,EA058-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +74002,Ca1,EA058,Craft,EA058-3,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +74003,Ca10,EA058,Activity is absent,EA058-10,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +74004,Ca11,EA058,Most adults,EA058-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +74005,Ca12,EA058,Most adults,EA058-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +74006,Ca13,EA058,Most adults,EA058-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +74007,Ca14,EA058,Craft,EA058-3,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +74008,Ca15,EA058,?,EA058-NA,,,,,, +74009,Ca16,EA058,Craft,EA058-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +74010,Ca17,EA058,Activity is absent,EA058-10,Products obtained by trade with neighboring tribes,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +74011,Ca18,EA058,?,EA058-NA,,,,,, +74012,Ca19,EA058,Activity is absent,EA058-10,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +74013,Ca2,EA058,Activity is absent,EA058-10,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +74014,Ca20,EA058,?,EA058-NA,,,,,, +74015,Ca21,EA058,Activity is absent,EA058-10,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +74016,Ca22,EA058,Craft,EA058-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +74017,Ca23,EA058,Craft,EA058-3,,jensen1959,,1950,EthnographicAtlas_1967_p80, +74018,Ca24,EA058,Craft,EA058-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +74019,Ca25,EA058,Craft,EA058-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +74020,Ca26,EA058,?,EA058-NA,,,,,, +74021,Ca27,EA058,?,EA058-NA,,,,,, +74022,Ca28,EA058,Most adults,EA058-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +74023,Ca29,EA058,Most adults,EA058-9,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +74024,Ca3,EA058,?,EA058-NA,,,,,, +74025,Ca30,EA058,Craft,EA058-3,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +74026,Ca31,EA058,Most adults,EA058-9,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +74027,Ca32,EA058,Most adults,EA058-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +74028,Ca33,EA058,Most adults,EA058-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +74029,Ca34,EA058,?,EA058-NA,,,,,, +74030,Ca35,EA058,?,EA058-NA,,,,,, +74031,Ca36,EA058,?,EA058-NA,,,,,, +74032,Ca37,EA058,?,EA058-NA,,,,,, +74033,Ca38,EA058,?,EA058-NA,,,,,, +74034,Ca39,EA058,Craft,EA058-3,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +74035,Ca4,EA058,?,EA058-NA,,,,,, +74036,Ca40,EA058,Craft,EA058-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +74037,Ca41,EA058,Craft,EA058-3,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +74038,Ca42,EA058,Craft,EA058-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +74039,Ca43,EA058,?,EA058-NA,,,,,, +74040,Ca5,EA058,?,EA058-NA,,,,,, +74041,Ca6,EA058,?,EA058-NA,,,,,, +74042,Ca7,EA058,Craft,EA058-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +74043,Ca8,EA058,?,EA058-NA,,,,,, +74044,Ca9,EA058,?,EA058-NA,,,,,, +74045,Cb1,EA058,?,EA058-NA,,,,,, +74046,Cb10,EA058,?,EA058-NA,,,,,, +74047,Cb11,EA058,?,EA058-NA,,,,,, +74048,Cb12,EA058,?,EA058-NA,,,,,, +74049,Cb13,EA058,?,EA058-NA,,,,,, +74050,Cb14,EA058,?,EA058-NA,,,,,, +74051,Cb15,EA058,?,EA058-NA,"Made by the kindred Messiria, not by the Humr proper",cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +74052,Cb16,EA058,?,EA058-NA,,,,,, +74053,Cb17,EA058,Craft,EA058-3,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +74054,Cb18,EA058,Craft,EA058-3,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p80, +74055,Cb19,EA058,Most adults,EA058-9,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p80, +74056,Cb2,EA058,Craft,EA058-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +74057,Cb20,EA058,Craft,EA058-3,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +74058,Cb21,EA058,?,EA058-NA,,,,,, +74059,Cb22,EA058,?,EA058-NA,,,,,, +74060,Cb23,EA058,?,EA058-NA,,,,,, +74061,Cb24,EA058,?,EA058-NA,,,,,, +74062,Cb25,EA058,?,EA058-NA,,,,,, +74063,Cb26,EA058,Most adults,EA058-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +74064,Cb27,EA058,?,EA058-NA,,,,,, +74065,Cb28,EA058,?,EA058-NA,,,,,, +74066,Cb29,EA058,?,EA058-NA,,,,,, +74067,Cb3,EA058,Craft,EA058-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +74068,Cb4,EA058,?,EA058-NA,,,,,, +74069,Cb5,EA058,?,EA058-NA,,,,,, +74070,Cb6,EA058,?,EA058-NA,,,,,, +74071,Cb7,EA058,?,EA058-NA,,,,,, +74072,Cb8,EA058,?,EA058-NA,,,,,, +74073,Cb9,EA058,Most adults,EA058-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +74074,Cc1,EA058,?,EA058-NA,,,,,, +74075,Cc10,EA058,Most adults,EA058-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +74076,Cc11,EA058,?,EA058-NA,,,,,, +74077,Cc12,EA058,Activity is absent,EA058-10,Pottery is imported from Tuat,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +74078,Cc13,EA058,?,EA058-NA,,,,,, +74079,Cc14,EA058,Craft,EA058-3,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +74080,Cc15,EA058,?,EA058-NA,,,,,, +74081,Cc16,EA058,Most adults,EA058-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +74082,Cc17,EA058,?,EA058-NA,,,,,, +74083,Cc18,EA058,?,EA058-NA,,,,,, +74084,Cc19,EA058,?,EA058-NA,,,,,, +74085,Cc2,EA058,Craft,EA058-3,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +74086,Cc20,EA058,?,EA058-NA,,,,,, +74087,Cc3,EA058,Most adults,EA058-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +74088,Cc4,EA058,?,EA058-NA,,,,,, +74089,Cc5,EA058,?,EA058-NA,,,,,, +74090,Cc6,EA058,?,EA058-NA,,,,,, +74091,Cc7,EA058,?,EA058-NA,,,,,, +74092,Cc8,EA058,?,EA058-NA,,,,,, +74093,Cc9,EA058,Most adults,EA058-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +74094,Cd1,EA058,?,EA058-NA,,,,,, +74095,Cd10,EA058,?,EA058-NA,,,,,, +74096,Cd11,EA058,?,EA058-NA,,,,,, +74097,Cd12,EA058,Most adults,EA058-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +74098,Cd13,EA058,?,EA058-NA,,,,,, +74099,Cd14,EA058,?,EA058-NA,,,,,, +74100,Cd15,EA058,?,EA058-NA,,,,,, +74101,Cd16,EA058,?,EA058-NA,,,,,, +74102,Cd17,EA058,?,EA058-NA,,,,,, +74103,Cd18,EA058,?,EA058-NA,,,,,, +74104,Cd19,EA058,?,EA058-NA,,,,,, +74105,Cd2,EA058,Craft,EA058-3,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +74106,Cd20,EA058,?,EA058-NA,,,,,, +74107,Cd21,EA058,?,EA058-NA,,,,,, +74108,Cd3,EA058,Most adults,EA058-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +74109,Cd4,EA058,Most adults,EA058-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +74110,Cd5,EA058,?,EA058-NA,,,,,, +74111,Cd6,EA058,Craft,EA058-3,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +74112,Cd7,EA058,?,EA058-NA,,,,,, +74113,Cd8,EA058,?,EA058-NA,,,,,, +74114,Cd9,EA058,?,EA058-NA,,,,,, +74115,Ce1,EA058,Most adults,EA058-9,There are also professional male potters in the towns,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +74116,Ce2,EA058,?,EA058-NA,,,,,, +74117,Ce3,EA058,?,EA058-NA,,,,,, +74118,Ce4,EA058,?,EA058-NA,,,,,, +74119,Ce5,EA058,Industrial,EA058-4,Presumably industrial specialization only,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +74120,Ce6,EA058,Industrial,EA058-4,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +74121,Ce7,EA058,Industrial,EA058-4,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +74122,Ce8,EA058,?,EA058-NA,,,,,, +74123,Cf1,EA058,Industrial,EA058-4,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +74124,Cf2,EA058,?,EA058-NA,,,,,, +74125,Cf3,EA058,Activity is absent,EA058-10,,munch1945,,1930,EthnographicAtlas_1967_p84, +74126,Cf4,EA058,Most adults,EA058-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +74127,Cf5,EA058,Industrial,EA058-4,,miner1939,,1930,EthnographicAtlas_1967_p84, +74128,Cg1,EA058,Industrial,EA058-4,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +74129,Cg2,EA058,?,EA058-NA,,,,,, +74130,Cg3,EA058,?,EA058-NA,,,,,, +74131,Cg4,EA058,Activity is absent,EA058-10,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +74132,Cg5,EA058,?,EA058-NA,,,,,, +74133,Ch1,EA058,Craft,EA058-3,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +74134,Ch10,EA058,?,EA058-NA,,,,,, +74135,Ch11,EA058,?,EA058-NA,,,,,, +74136,Ch2,EA058,Most adults,EA058-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +74137,Ch3,EA058,Industrial,EA058-4,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +74138,Ch4,EA058,?,EA058-NA,,,,,, +74139,Ch5,EA058,Most adults,EA058-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +74140,Ch6,EA058,Most adults,EA058-9,,ember1954,,1910,EthnographicAtlas_1967_p84, +74141,Ch7,EA058,Most adults,EA058-9,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +74142,Ch8,EA058,Most adults,EA058-9,,hanzeli1955,,1940,EthnographicAtlas_1967_p84, +74143,Ch9,EA058,Most adults,EA058-9,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +74144,Ci1,EA058,?,EA058-NA,,,,,, +74145,Ci10,EA058,Most adults,EA058-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +74146,Ci11,EA058,Most adults,EA058-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +74147,Ci12,EA058,Activity is absent,EA058-10,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +74148,Ci2,EA058,?,EA058-NA,,,,,, +74149,Ci3,EA058,Most adults,EA058-9,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p84, +74150,Ci4,EA058,?,EA058-NA,,,,,, +74151,Ci5,EA058,Activity is absent,EA058-10,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +74152,Ci6,EA058,?,EA058-NA,,,,,, +74153,Ci7,EA058,?,EA058-NA,,,,,, +74154,Ci8,EA058,?,EA058-NA,,,,,, +74155,Ci9,EA058,?,EA058-NA,,,,,, +74156,Cj1,EA058,Most adults,EA058-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +74157,Cj10,EA058,?,EA058-NA,,,,,, +74158,Cj2,EA058,?,EA058-NA,,,,,, +74159,Cj3,EA058,Craft,EA058-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +74160,Cj4,EA058,Craft,EA058-3,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +74161,Cj5,EA058,?,EA058-NA,,,,,, +74162,Cj6,EA058,?,EA058-NA,,,,,, +74163,Cj7,EA058,Most adults,EA058-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +74164,Cj8,EA058,Most adults,EA058-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +74165,Cj9,EA058,Craft,EA058-3,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +74166,Ea1,EA058,Most adults,EA058-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +74167,Ea10,EA058,?,EA058-NA,,,,,, +74168,Ea11,EA058,Most adults,EA058-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +74169,Ea12,EA058,?,EA058-NA,,,,,, +74170,Ea13,EA058,Craft,EA058-3,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +74171,Ea2,EA058,Most adults,EA058-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +74172,Ea3,EA058,Most adults,EA058-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +74173,Ea4,EA058,Craft,EA058-3,,barth1956b,,1950,EthnographicAtlas_1967_p88, +74174,Ea5,EA058,?,EA058-NA,,,,,, +74175,Ea6,EA058,Activity is absent,EA058-10,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +74176,Ea7,EA058,?,EA058-NA,,,,,, +74177,Ea8,EA058,?,EA058-NA,,,,,, +74178,Ea9,EA058,Most adults,EA058-9,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +74179,Eb1,EA058,Activity is absent,EA058-10,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +74180,Eb2,EA058,Activity is absent,EA058-10,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +74181,Eb3,EA058,Activity is absent,EA058-10,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +74182,Eb4,EA058,?,EA058-NA,,,,,, +74183,Eb5,EA058,?,EA058-NA,,,,,, +74184,Eb6,EA058,?,EA058-NA,,,,,, +74185,Eb7,EA058,?,EA058-NA,,,,,, +74186,Eb8,EA058,?,EA058-NA,,,,,, +74187,Ec1,EA058,Activity is absent,EA058-10,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +74188,Ec10,EA058,Most adults,EA058-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +74189,Ec11,EA058,Most adults,EA058-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +74190,Ec2,EA058,Most adults,EA058-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74191,Ec3,EA058,Most adults,EA058-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +74192,Ec4,EA058,Activity is absent,EA058-10,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +74193,Ec5,EA058,Most adults,EA058-9,But practiced in the recent past,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +74194,Ec6,EA058,?,EA058-NA,,,,,, +74195,Ec7,EA058,Activity is absent,EA058-10,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +74196,Ec8,EA058,?,EA058-NA,,,,,, +74197,Ec9,EA058,?,EA058-NA,,,,,, +74198,Ed1,EA058,Most adults,EA058-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +74199,Ed10,EA058,Most adults,EA058-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +74200,Ed13,EA058,?,EA058-NA,,,,,, +74201,Ed14,EA058,?,EA058-NA,,,,,, +74202,Ed15a,EA058,?,EA058-NA,,,,,, +74203,Ed15b,EA058,Most adults,EA058-9,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +74204,Ed16,EA058,?,EA058-NA,,,,,, +74205,Ed2,EA058,Activity is absent,EA058-10,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +74206,Ed3,EA058,Most adults,EA058-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +74207,Ed4,EA058,Most adults,EA058-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +74208,Ed5,EA058,Industrial,EA058-4,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74209,Ed6,EA058,Most adults,EA058-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +74210,Ed7,EA058,Most adults,EA058-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +74211,Ed8,EA058,?,EA058-NA,,,,,, +74212,Ed9,EA058,Most adults,EA058-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +74213,Ee1,EA058,Most adults,EA058-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +74214,Ee2,EA058,Most adults,EA058-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +74215,Ee3,EA058,Activity is absent,EA058-10,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +74216,Ee4,EA058,?,EA058-NA,,,,,, +74217,Ee5,EA058,Craft,EA058-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +74218,Ee6,EA058,?,EA058-NA,,,,,, +74219,Ee7,EA058,?,EA058-NA,,,,,, +74220,Ee8,EA058,Most adults,EA058-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +74221,Ef1,EA058,Most adults,EA058-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +74222,Ef10,EA058,?,EA058-NA,,,,,, +74223,Ef11,EA058,Craft,EA058-3,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +74224,Ef2,EA058,Craft,EA058-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +74225,Ef3,EA058,?,EA058-NA,,,,,, +74226,Ef4,EA058,?,EA058-NA,,,,,, +74227,Ef5,EA058,Most adults,EA058-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +74228,Ef6,EA058,?,EA058-NA,,,,,, +74229,Ef7,EA058,Activity is absent,EA058-10,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +74230,Ef8,EA058,Craft,EA058-3,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +74231,Ef9,EA058,Craft,EA058-3,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74232,Eg1,EA058,Activity is absent,EA058-10,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74233,Eg10,EA058,Craft,EA058-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +74234,Eg11,EA058,?,EA058-NA,,,,,, +74235,Eg12,EA058,?,EA058-NA,,,,,, +74236,Eg13,EA058,Activity is absent,EA058-10,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74237,Eg14,EA058,Activity is absent,EA058-10,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +74238,Eg2,EA058,Craft,EA058-3,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +74239,Eg3,EA058,Activity is absent,EA058-10,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +74240,Eg4,EA058,Activity is absent,EA058-10,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +74241,Eg5,EA058,?,EA058-NA,,,,,, +74242,Eg6,EA058,?,EA058-NA,,,,,, +74243,Eg7,EA058,Most adults,EA058-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +74244,Eg8,EA058,?,EA058-NA,,,,,, +74245,Eg9,EA058,Most adults,EA058-9,,elwin1939,,1930,EthnographicAtlas_1967_p92, +74246,Eh1,EA058,Most adults,EA058-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +74247,Eh10,EA058,?,EA058-NA,,,,,, +74248,Eh2,EA058,?,EA058-NA,,,,,, +74249,Eh3,EA058,Activity is absent,EA058-10,"But formerly present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +74250,Eh4,EA058,Most adults,EA058-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74251,Eh5,EA058,Craft,EA058-3,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +74252,Eh6,EA058,Most adults,EA058-9,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p92, +74253,Eh7,EA058,Activity is absent,EA058-10,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +74254,Eh8,EA058,Activity is absent,EA058-10,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +74255,Eh9,EA058,?,EA058-NA,,,,,, +74256,Ei1,EA058,Most adults,EA058-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74257,Ei10,EA058,Activity is absent,EA058-10,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +74258,Ei11,EA058,Most adults,EA058-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +74259,Ei12,EA058,?,EA058-NA,,,,,, +74260,Ei13,EA058,Most adults,EA058-9,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +74261,Ei14,EA058,Most adults,EA058-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +74262,Ei15,EA058,?,EA058-NA,,,,,, +74263,Ei16,EA058,Most adults,EA058-9,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +74264,Ei17,EA058,?,EA058-NA,,,,,, +74265,Ei18,EA058,?,EA058-NA,,,,,, +74266,Ei19,EA058,Most adults,EA058-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +74267,Ei2,EA058,Most adults,EA058-9,,mills1922,,1920,EthnographicAtlas_1967_p92, +74268,Ei20,EA058,?,EA058-NA,,,,,, +74269,Ei3,EA058,Craft,EA058-3,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +74270,Ei4,EA058,Most adults,EA058-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +74271,Ei5,EA058,Most adults,EA058-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +74272,Ei6,EA058,Activity is absent,EA058-10,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +74273,Ei7,EA058,Activity is absent,EA058-10,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +74274,Ei8,EA058,Craft,EA058-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +74275,Ei9,EA058,Activity is absent,EA058-10,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +74276,Ej1,EA058,Activity is absent,EA058-10,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +74277,Ej10,EA058,Activity is absent,EA058-10,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +74278,Ej11,EA058,?,EA058-NA,,,,,, +74279,Ej12,EA058,?,EA058-NA,,,,,, +74280,Ej13,EA058,Craft,EA058-3,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +74281,Ej14,EA058,Activity is absent,EA058-10,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74282,Ej15,EA058,Most adults,EA058-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +74283,Ej16,EA058,?,EA058-NA,,,,,, +74284,Ej2,EA058,Most adults,EA058-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +74285,Ej3,EA058,Activity is absent,EA058-10,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +74286,Ej4,EA058,Craft,EA058-3,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +74287,Ej5,EA058,Most adults,EA058-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +74288,Ej6,EA058,?,EA058-NA,,,,,, +74289,Ej7,EA058,?,EA058-NA,,,,,, +74290,Ej8,EA058,Most adults,EA058-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +74291,Ej9,EA058,?,EA058-NA,,,,,, +74292,Ia1,EA058,Most adults,EA058-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +74293,Ia10,EA058,Most adults,EA058-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +74294,Ia11,EA058,Most adults,EA058-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +74295,Ia12,EA058,Most adults,EA058-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +74296,Ia13,EA058,Activity is absent,EA058-10,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +74297,Ia14,EA058,Most adults,EA058-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +74298,Ia15,EA058,?,EA058-NA,,,,,, +74299,Ia16,EA058,Most adults,EA058-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +74300,Ia17,EA058,?,EA058-NA,,,,,, +74301,Ia18,EA058,?,EA058-NA,,,,,, +74302,Ia2,EA058,Activity is absent,EA058-10,Obtained by trade from the neighboring Kankanay,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +74303,Ia3,EA058,Most adults,EA058-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +74304,Ia4,EA058,?,EA058-NA,,,,,, +74305,Ia5,EA058,?,EA058-NA,,,,,, +74306,Ia6,EA058,Most adults,EA058-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74307,Ia7,EA058,?,EA058-NA,,,,,, +74308,Ia8,EA058,?,EA058-NA,,,,,, +74309,Ia9,EA058,Most adults,EA058-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +74310,Ib1,EA058,Most adults,EA058-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74311,Ib2,EA058,Most adults,EA058-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74312,Ib3,EA058,Craft,EA058-3,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +74313,Ib4,EA058,Most adults,EA058-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +74314,Ib5,EA058,Most adults,EA058-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +74315,Ib6,EA058,Most adults,EA058-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +74316,Ib7,EA058,Activity is absent,EA058-10,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +74317,Ib8,EA058,Activity is absent,EA058-10,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +74318,Ib9,EA058,?,EA058-NA,,,,,, +74319,Ic1,EA058,Most adults,EA058-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74320,Ic10,EA058,Activity is absent,EA058-10,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +74321,Ic11,EA058,Most adults,EA058-9,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74322,Ic12,EA058,Most adults,EA058-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +74323,Ic13,EA058,?,EA058-NA,,,,,, +74324,Ic2,EA058,?,EA058-NA,,,,,, +74325,Ic3,EA058,Most adults,EA058-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +74326,Ic4,EA058,?,EA058-NA,,,,,, +74327,Ic5,EA058,Most adults,EA058-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +74328,Ic6,EA058,Most adults,EA058-9,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +74329,Ic7,EA058,Activity is absent,EA058-10,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +74330,Ic8,EA058,Activity is absent,EA058-10,,pleyte1893,,1890,EthnographicAtlas_1967_p96, +74331,Ic9,EA058,Most adults,EA058-9,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p96, +74332,Id1,EA058,Activity is absent,EA058-10,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +74333,Id10,EA058,Activity is absent,EA058-10,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +74334,Id11,EA058,Activity is absent,EA058-10,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +74335,Id12,EA058,Activity is absent,EA058-10,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +74336,Id13,EA058,Activity is absent,EA058-10,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +74337,Id2,EA058,Activity is absent,EA058-10,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +74338,Id3,EA058,Activity is absent,EA058-10,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +74339,Id4,EA058,Activity is absent,EA058-10,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +74340,Id5,EA058,Activity is absent,EA058-10,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +74341,Id6,EA058,Activity is absent,EA058-10,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +74342,Id7,EA058,Most adults,EA058-9,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +74343,Id8,EA058,Activity is absent,EA058-10,,roth1890,,1830,EthnographicAtlas_1967_p96, +74344,Id9,EA058,Activity is absent,EA058-10,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +74345,Ie1,EA058,Activity is absent,EA058-10,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74346,Ie10,EA058,Most adults,EA058-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +74347,Ie11,EA058,Activity is absent,EA058-10,,bowers1964,,1950,EthnographicAtlas_1967_p96, +74348,Ie12,EA058,Most adults,EA058-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74349,Ie13,EA058,?,EA058-NA,,,,,, +74350,Ie14,EA058,?,EA058-NA,,,,,, +74351,Ie15,EA058,Most adults,EA058-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74352,Ie16,EA058,Activity is absent,EA058-10,,williams194041,,1940,EthnographicAtlas_1967_p96, +74353,Ie17,EA058,Activity is absent,EA058-10,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +74354,Ie18,EA058,Activity is absent,EA058-10,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +74355,Ie19,EA058,Activity is absent,EA058-10,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +74356,Ie2,EA058,Activity is absent,EA058-10,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +74357,Ie20,EA058,Most adults,EA058-9,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +74358,Ie21,EA058,Most adults,EA058-9,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +74359,Ie22,EA058,Activity is absent,EA058-10,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +74360,Ie23,EA058,Activity is absent,EA058-10,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +74361,Ie24,EA058,Activity is absent,EA058-10,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +74362,Ie25,EA058,Activity is absent,EA058-10,,williamson1912,,1920,EthnographicAtlas_1967_p96, +74363,Ie26,EA058,Activity is absent,EA058-10,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +74364,Ie27,EA058,?,EA058-NA,,,,,, +74365,Ie28,EA058,Most adults,EA058-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +74366,Ie29,EA058,?,EA058-NA,,,,,, +74367,Ie3,EA058,?,EA058-NA,,,,,, +74368,Ie30,EA058,Activity is absent,EA058-10,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +74369,Ie31,EA058,Activity is absent,EA058-10,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +74370,Ie32,EA058,Most adults,EA058-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +74371,Ie33,EA058,?,EA058-NA,,,,,, +74372,Ie34,EA058,?,EA058-NA,,,,,, +74373,Ie35,EA058,?,EA058-NA,,,,,, +74374,Ie36,EA058,?,EA058-NA,,,,,, +74375,Ie37,EA058,?,EA058-NA,,,,,, +74376,Ie38,EA058,Activity is absent,EA058-10,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +74377,Ie39,EA058,Most adults,EA058-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +74378,Ie4,EA058,Activity is absent,EA058-10,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74379,Ie5,EA058,Activity is absent,EA058-10,,williams1936,,1930,EthnographicAtlas_1967_p96, +74380,Ie6,EA058,?,EA058-NA,,,,,, +74381,Ie7,EA058,Activity is absent,EA058-10,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +74382,Ie8,EA058,Activity is absent,EA058-10,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +74383,Ie9,EA058,Most adults,EA058-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +74384,If1,EA058,Most adults,EA058-9,But extinct today,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74385,If10,EA058,?,EA058-NA,,,,,, +74386,If11,EA058,Activity is absent,EA058-10,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +74387,If12,EA058,Activity is absent,EA058-10,,mason1954,,1940,EthnographicAtlas_1967_p100, +74388,If13,EA058,Activity is absent,EA058-10,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +74389,If14,EA058,Activity is absent,EA058-10,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +74390,If15,EA058,?,EA058-NA,,,,,, +74391,If16,EA058,Activity is absent,EA058-10,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +74392,If17,EA058,Activity is absent,EA058-10,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +74393,If2,EA058,Activity is absent,EA058-10,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +74394,If3,EA058,Activity is absent,EA058-10,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +74395,If4,EA058,Activity is absent,EA058-10,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +74396,If5,EA058,Activity is absent,EA058-10,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +74397,If6,EA058,?,EA058-NA,,,,,, +74398,If7,EA058,Activity is absent,EA058-10,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +74399,If8,EA058,Activity is absent,EA058-10,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +74400,If9,EA058,Activity is absent,EA058-10,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +74401,Ig1,EA058,Most adults,EA058-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +74402,Ig10,EA058,Activity is absent,EA058-10,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +74403,Ig11,EA058,Activity is absent,EA058-10,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +74404,Ig12,EA058,Most adults,EA058-9,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p100, +74405,Ig13,EA058,?,EA058-NA,,,,,, +74406,Ig14,EA058,Most adults,EA058-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +74407,Ig15,EA058,?,EA058-NA,,,,,, +74408,Ig16,EA058,?,EA058-NA,,,,,, +74409,Ig17,EA058,?,EA058-NA,,,,,, +74410,Ig18,EA058,?,EA058-NA,,,,,, +74411,Ig19,EA058,?,EA058-NA,,,,,, +74412,Ig2,EA058,Most adults,EA058-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +74413,Ig20,EA058,?,EA058-NA,,,,,, +74414,Ig21,EA058,Activity is absent,EA058-10,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +74415,Ig3,EA058,Most adults,EA058-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +74416,Ig4,EA058,Activity is absent,EA058-10,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +74417,Ig5,EA058,?,EA058-NA,,,,,, +74418,Ig6,EA058,Activity is absent,EA058-10,,ivens1927,,1900,EthnographicAtlas_1967_p100, +74419,Ig7,EA058,?,EA058-NA,,,,,, +74420,Ig8,EA058,?,EA058-NA,,,,,, +74421,Ig9,EA058,Most adults,EA058-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +74422,Ih1,EA058,Activity is absent,EA058-10,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +74423,Ih10,EA058,?,EA058-NA,,,,,, +74424,Ih11,EA058,?,EA058-NA,,,,,, +74425,Ih12,EA058,?,EA058-NA,,,,,, +74426,Ih13,EA058,?,EA058-NA,,,,,, +74427,Ih14,EA058,Most adults,EA058-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +74428,Ih2,EA058,Activity is absent,EA058-10,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74429,Ih3,EA058,Activity is absent,EA058-10,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p100, +74430,Ih4,EA058,Most adults,EA058-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74431,Ih5,EA058,?,EA058-NA,,,,,, +74432,Ih6,EA058,?,EA058-NA,,,,,, +74433,Ih7,EA058,?,EA058-NA,,,,,, +74434,Ih8,EA058,?,EA058-NA,,,,,, +74435,Ih9,EA058,Activity is absent,EA058-10,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74436,Ii1,EA058,Activity is absent,EA058-10,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +74437,Ii10,EA058,?,EA058-NA,,,,,, +74438,Ii12,EA058,Activity is absent,EA058-10,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74439,Ii13,EA058,Activity is absent,EA058-10,,burrows1937,,1830,EthnographicAtlas_1967_p100, +74440,Ii14,EA058,Activity is absent,EA058-10,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +74441,Ii2,EA058,Activity is absent,EA058-10,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +74442,Ii3,EA058,Activity is absent,EA058-10,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +74443,Ii4,EA058,Activity is absent,EA058-10,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +74444,Ii5,EA058,Activity is absent,EA058-10,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +74445,Ii6,EA058,Activity is absent,EA058-10,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +74446,Ii7,EA058,Activity is absent,EA058-10,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +74447,Ii8,EA058,Activity is absent,EA058-10,,burrows1936,,1840,EthnographicAtlas_1967_p100, +74448,Ii9,EA058,Activity is absent,EA058-10,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +74449,Ij1,EA058,Activity is absent,EA058-10,,buck1934,,1820,EthnographicAtlas_1967_p100, +74450,Ij10,EA058,?,EA058-NA,,,,,, +74451,Ij2,EA058,Activity is absent,EA058-10,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +74452,Ij3,EA058,Activity is absent,EA058-10,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +74453,Ij4,EA058,Activity is absent,EA058-10,,buck1932a,,1850,EthnographicAtlas_1967_p104, +74454,Ij5,EA058,Activity is absent,EA058-10,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +74455,Ij6,EA058,Activity is absent,EA058-10,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +74456,Ij7,EA058,Activity is absent,EA058-10,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +74457,Ij8,EA058,Activity is absent,EA058-10,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +74458,Ij9,EA058,Activity is absent,EA058-10,,metraux1940,,1860,EthnographicAtlas_1967_p104, +74459,Na1,EA058,Activity is absent,EA058-10,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +74460,Na10,EA058,Activity is absent,EA058-10,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +74461,Na11,EA058,Most adults,EA058-9,But pottery was given up sometime after 1912,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +74462,Na12,EA058,Activity is absent,EA058-10,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +74463,Na13,EA058,Most adults,EA058-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +74464,Na14,EA058,Activity is absent,EA058-10,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +74465,Na15,EA058,Activity is absent,EA058-10,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +74466,Na16,EA058,Activity is absent,EA058-10,,osgood1931,,1860,EthnographicAtlas_1967_p104, +74467,Na17,EA058,Activity is absent,EA058-10,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74468,Na19,EA058,Activity is absent,EA058-10,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +74469,Na2,EA058,Most adults,EA058-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +74470,Na20,EA058,Activity is absent,EA058-10,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +74471,Na21,EA058,Activity is absent,EA058-10,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +74472,Na22,EA058,Activity is absent,EA058-10,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +74473,Na23,EA058,Activity is absent,EA058-10,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +74474,Na24,EA058,Activity is absent,EA058-10,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +74475,Na25,EA058,?,EA058-NA,,,,,, +74476,Na26,EA058,Activity is absent,EA058-10,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +74477,Na27,EA058,Activity is absent,EA058-10,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +74478,Na28,EA058,Activity is absent,EA058-10,,jenness1937,,1880,EthnographicAtlas_1967_p104, +74479,Na29,EA058,Activity is absent,EA058-10,,goddard1916,,1850,EthnographicAtlas_1967_p104, +74480,Na3,EA058,Activity is absent,EA058-10,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +74481,Na30,EA058,Activity is absent,EA058-10,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +74482,Na31,EA058,Activity is absent,EA058-10,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +74483,Na32,EA058,Activity is absent,EA058-10,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +74484,Na33,EA058,Activity is absent,EA058-10,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +74485,Na34,EA058,Activity is absent,EA058-10,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +74486,Na35,EA058,Activity is absent,EA058-10,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +74487,Na36,EA058,Activity is absent,EA058-10,But pottery was made prior to the mid-nineteenth century,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +74488,Na37,EA058,Activity is absent,EA058-10,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +74489,Na38,EA058,Most adults,EA058-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +74490,Na39,EA058,Activity is absent,EA058-10,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +74491,Na4,EA058,Activity is absent,EA058-10,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +74492,Na40,EA058,Most adults,EA058-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +74493,Na41,EA058,Activity is absent,EA058-10,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +74494,Na42,EA058,?,EA058-NA,,,,,, +74495,Na43,EA058,?,EA058-NA,,,,,, +74496,Na44,EA058,?,EA058-NA,,,,,, +74497,Na45,EA058,?,EA058-NA,,,,,, +74498,Na5,EA058,Activity is absent,EA058-10,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +74499,Na6,EA058,Most adults,EA058-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +74500,Na7,EA058,Activity is absent,EA058-10,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +74501,Na8,EA058,Most adults,EA058-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +74502,Na9,EA058,Activity is absent,EA058-10,But pottery is found in archaeological sites,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74503,Nb1,EA058,Activity is absent,EA058-10,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +74504,Nb10,EA058,Activity is absent,EA058-10,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +74505,Nb11,EA058,Activity is absent,EA058-10,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +74506,Nb12,EA058,Activity is absent,EA058-10,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +74507,Nb13,EA058,Activity is absent,EA058-10,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +74508,Nb14,EA058,Activity is absent,EA058-10,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +74509,Nb15,EA058,Activity is absent,EA058-10,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +74510,Nb16,EA058,Activity is absent,EA058-10,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +74511,Nb17,EA058,Activity is absent,EA058-10,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +74512,Nb18,EA058,Activity is absent,EA058-10,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +74513,Nb19,EA058,Activity is absent,EA058-10,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +74514,Nb2,EA058,Activity is absent,EA058-10,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +74515,Nb20,EA058,Activity is absent,EA058-10,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +74516,Nb21,EA058,Activity is absent,EA058-10,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +74517,Nb22,EA058,Activity is absent,EA058-10,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +74518,Nb23,EA058,Activity is absent,EA058-10,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +74519,Nb24,EA058,Activity is absent,EA058-10,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +74520,Nb25,EA058,Activity is absent,EA058-10,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +74521,Nb26,EA058,Activity is absent,EA058-10,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +74522,Nb27,EA058,Activity is absent,EA058-10,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +74523,Nb28,EA058,Activity is absent,EA058-10,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +74524,Nb29,EA058,Activity is absent,EA058-10,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +74525,Nb3,EA058,Activity is absent,EA058-10,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +74526,Nb30,EA058,Activity is absent,EA058-10,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +74527,Nb31,EA058,Activity is absent,EA058-10,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +74528,Nb32,EA058,Activity is absent,EA058-10,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +74529,Nb33,EA058,Activity is absent,EA058-10,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +74530,Nb34,EA058,Activity is absent,EA058-10,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +74531,Nb35,EA058,Activity is absent,EA058-10,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +74532,Nb36,EA058,Activity is absent,EA058-10,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +74533,Nb37,EA058,Activity is absent,EA058-10,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +74534,Nb38,EA058,Activity is absent,EA058-10,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +74535,Nb39,EA058,Activity is absent,EA058-10,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +74536,Nb4,EA058,Activity is absent,EA058-10,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +74537,Nb5,EA058,Activity is absent,EA058-10,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +74538,Nb6,EA058,Activity is absent,EA058-10,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +74539,Nb7,EA058,Activity is absent,EA058-10,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +74540,Nb8,EA058,Activity is absent,EA058-10,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +74541,Nb9,EA058,Activity is absent,EA058-10,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +74542,Nc1,EA058,Activity is absent,EA058-10,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +74543,Nc10,EA058,Activity is absent,EA058-10,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +74544,Nc11,EA058,Activity is absent,EA058-10,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +74545,Nc12,EA058,Activity is absent,EA058-10,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +74546,Nc13,EA058,Activity is absent,EA058-10,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +74547,Nc14,EA058,Activity is absent,EA058-10,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +74548,Nc15,EA058,Activity is absent,EA058-10,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +74549,Nc16,EA058,Activity is absent,EA058-10,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +74550,Nc17,EA058,Activity is absent,EA058-10,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +74551,Nc18,EA058,Activity is absent,EA058-10,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +74552,Nc19,EA058,Activity is absent,EA058-10,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +74553,Nc2,EA058,Most adults,EA058-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +74554,Nc20,EA058,Activity is absent,EA058-10,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +74555,Nc21,EA058,Activity is absent,EA058-10,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +74556,Nc22,EA058,Activity is absent,EA058-10,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +74557,Nc23,EA058,Most adults,EA058-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +74558,Nc24,EA058,Activity is absent,EA058-10,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +74559,Nc25,EA058,Most adults,EA058-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +74560,Nc26,EA058,Activity is absent,EA058-10,"Entry follows Mason; Harrington reports 'present, though sex participation unspecified' (EA047 code ""9"") and no specialization specified (EA058 code ""9""), perhaps for the post mission period",harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +74561,Nc27,EA058,?,EA058-NA,,,,,, +74562,Nc28,EA058,Activity is absent,EA058-10,"Entry follows Kroeber; Harrington reports 'present, though sex participation unspecified' (EA047 code ""9"") and no specialization specified (EA058 code ""9""), perhaps for the post mission period",harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +74563,Nc29,EA058,Activity is absent,EA058-10,But pottery was made in the post-mission period,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +74564,Nc3,EA058,Most adults,EA058-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +74565,Nc30,EA058,Most adults,EA058-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +74566,Nc31,EA058,Most adults,EA058-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +74567,Nc32,EA058,Most adults,EA058-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +74568,Nc33,EA058,Most adults,EA058-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +74569,Nc34,EA058,Most adults,EA058-9,,meigs1939,,1880,EthnographicAtlas_1967_p108, +74570,Nc4,EA058,Activity is absent,EA058-10,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +74571,Nc5,EA058,Activity is absent,EA058-10,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +74572,Nc6,EA058,Most adults,EA058-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +74573,Nc7,EA058,Activity is absent,EA058-10,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +74574,Nc8,EA058,Activity is absent,EA058-10,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +74575,Nc9,EA058,Activity is absent,EA058-10,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +74576,Nd1,EA058,Activity is absent,EA058-10,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +74577,Nd10,EA058,Activity is absent,EA058-10,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +74578,Nd11,EA058,Activity is absent,EA058-10,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +74579,Nd12,EA058,Activity is absent,EA058-10,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +74580,Nd13,EA058,Activity is absent,EA058-10,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +74581,Nd14,EA058,Activity is absent,EA058-10,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +74582,Nd15,EA058,Activity is absent,EA058-10,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +74583,Nd16,EA058,Activity is absent,EA058-10,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +74584,Nd17,EA058,?,EA058-NA,,,,,, +74585,Nd18,EA058,Activity is absent,EA058-10,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +74586,Nd19,EA058,Activity is absent,EA058-10,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +74587,Nd2,EA058,Activity is absent,EA058-10,But women made clay pipes,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +74588,Nd20,EA058,Activity is absent,EA058-10,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +74589,Nd21,EA058,Activity is absent,EA058-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +74590,Nd22,EA058,Activity is absent,EA058-10,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +74591,Nd23,EA058,Activity is absent,EA058-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +74592,Nd24,EA058,Activity is absent,EA058-10,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +74593,Nd25,EA058,Activity is absent,EA058-10,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +74594,Nd26,EA058,Activity is absent,EA058-10,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +74595,Nd27,EA058,Activity is absent,EA058-10,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +74596,Nd28,EA058,Activity is absent,EA058-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +74597,Nd29,EA058,Most adults,EA058-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +74598,Nd3,EA058,Most adults,EA058-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +74599,Nd30,EA058,Most adults,EA058-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +74600,Nd31,EA058,Most adults,EA058-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +74601,Nd32,EA058,Most adults,EA058-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +74602,Nd33,EA058,Most adults,EA058-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +74603,Nd34,EA058,Most adults,EA058-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +74604,Nd35,EA058,Most adults,EA058-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +74605,Nd36,EA058,Most adults,EA058-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +74606,Nd37,EA058,Most adults,EA058-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +74607,Nd38,EA058,Most adults,EA058-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +74608,Nd39,EA058,Most adults,EA058-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +74609,Nd4,EA058,Most adults,EA058-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +74610,Nd40,EA058,Most adults,EA058-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +74611,Nd41,EA058,Most adults,EA058-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +74612,Nd42,EA058,Most adults,EA058-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +74613,Nd43,EA058,Most adults,EA058-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +74614,Nd44,EA058,Most adults,EA058-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +74615,Nd45,EA058,Most adults,EA058-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +74616,Nd46,EA058,Most adults,EA058-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +74617,Nd47,EA058,?,EA058-NA,,,,,, +74618,Nd48,EA058,Most adults,EA058-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +74619,Nd49,EA058,Activity is absent,EA058-10,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +74620,Nd5,EA058,Activity is absent,EA058-10,But pottery was made at an earlier period,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +74621,Nd50,EA058,Most adults,EA058-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +74622,Nd51,EA058,Most adults,EA058-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +74623,Nd52,EA058,Most adults,EA058-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +74624,Nd53,EA058,Most adults,EA058-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +74625,Nd54,EA058,Most adults,EA058-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74626,Nd55,EA058,Most adults,EA058-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +74627,Nd56,EA058,Activity is absent,EA058-10,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +74628,Nd57,EA058,Most adults,EA058-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +74629,Nd58,EA058,Most adults,EA058-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +74630,Nd59,EA058,Most adults,EA058-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +74631,Nd6,EA058,Activity is absent,EA058-10,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +74632,Nd60,EA058,Activity is absent,EA058-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +74633,Nd61,EA058,Activity is absent,EA058-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +74634,Nd62,EA058,Activity is absent,EA058-10,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +74635,Nd63,EA058,Activity is absent,EA058-10,But pottery was made in the prehistoric period,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +74636,Nd64,EA058,Activity is absent,EA058-10,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +74637,Nd65,EA058,Most adults,EA058-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +74638,Nd66,EA058,Most adults,EA058-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +74639,Nd67,EA058,Most adults,EA058-9,,gifford1936,,1870,EthnographicAtlas_1967_p112, +74640,Nd7,EA058,Most adults,EA058-9,"But the pots were sun-dried, not fired",boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +74641,Nd8,EA058,Activity is absent,EA058-10,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +74642,Nd9,EA058,Activity is absent,EA058-10,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +74643,Ne1,EA058,Most adults,EA058-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +74644,Ne10,EA058,Most adults,EA058-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +74645,Ne11,EA058,Activity is absent,EA058-10,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +74646,Ne12,EA058,Activity is absent,EA058-10,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +74647,Ne13,EA058,Activity is absent,EA058-10,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +74648,Ne14,EA058,Activity is absent,EA058-10,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +74649,Ne15,EA058,Most adults,EA058-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +74650,Ne16,EA058,Most adults,EA058-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +74651,Ne17,EA058,?,EA058-NA,,,,,, +74652,Ne18,EA058,Activity is absent,EA058-10,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +74653,Ne19,EA058,Activity is absent,EA058-10,But a tradition that pottery was formerly made,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +74654,Ne2,EA058,Activity is absent,EA058-10,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +74655,Ne20,EA058,Activity is absent,EA058-10,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +74656,Ne21,EA058,?,EA058-NA,,,,,, +74657,Ne3,EA058,Activity is absent,EA058-10,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +74658,Ne4,EA058,Activity is absent,EA058-10,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +74659,Ne5,EA058,Most adults,EA058-9,But pottery disappeared after European contact,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +74660,Ne6,EA058,Most adults,EA058-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +74661,Ne7,EA058,Activity is absent,EA058-10,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +74662,Ne8,EA058,Activity is absent,EA058-10,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +74663,Ne9,EA058,Activity is absent,EA058-10,But pottery was made at an earlier date,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +74664,Nf10,EA058,Most adults,EA058-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +74665,Nf11,EA058,Most adults,EA058-9,,whitman1937,,1870,EthnographicAtlas_1967_p116, +74666,Nf12,EA058,Most adults,EA058-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +74667,Nf13,EA058,Most adults,EA058-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74668,Nf14,EA058,Most adults,EA058-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +74669,Nf15,EA058,?,EA058-NA,,,,,, +74670,Nf2,EA058,Most adults,EA058-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +74671,Nf3,EA058,Most adults,EA058-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +74672,Nf4,EA058,Most adults,EA058-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +74673,Nf5,EA058,?,EA058-NA,,,,,, +74674,Nf6,EA058,Most adults,EA058-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +74675,Nf7,EA058,Most adults,EA058-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74676,Nf8,EA058,Most adults,EA058-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +74677,Nf9,EA058,Most adults,EA058-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +74678,Ng1,EA058,Most adults,EA058-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +74679,Ng10,EA058,Most adults,EA058-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +74680,Ng11,EA058,Most adults,EA058-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +74681,Ng12,EA058,Most adults,EA058-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +74682,Ng13,EA058,?,EA058-NA,,,,,, +74683,Ng14,EA058,?,EA058-NA,,,,,, +74684,Ng15,EA058,?,EA058-NA,,,,,, +74685,Ng2,EA058,?,EA058-NA,,,,,, +74686,Ng3,EA058,Most adults,EA058-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +74687,Ng4,EA058,?,EA058-NA,,,,,, +74688,Ng5,EA058,Most adults,EA058-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +74689,Ng6,EA058,Most adults,EA058-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +74690,Ng7,EA058,Most adults,EA058-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +74691,Ng8,EA058,Most adults,EA058-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +74692,Ng9,EA058,?,EA058-NA,,,,,, +74693,Nh1,EA058,Most adults,EA058-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +74694,Nh10,EA058,Most adults,EA058-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p116, +74695,Nh11,EA058,Most adults,EA058-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +74696,Nh12,EA058,Most adults,EA058-9,But pottery is no longer made today,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +74697,Nh13,EA058,Most adults,EA058-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +74698,Nh14,EA058,?,EA058-NA,,,,,, +74699,Nh15,EA058,Most adults,EA058-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +74700,Nh16,EA058,Most adults,EA058-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74701,Nh17,EA058,Most adults,EA058-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +74702,Nh18,EA058,Most adults,EA058-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74703,Nh19,EA058,Most adults,EA058-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +74704,Nh2,EA058,Most adults,EA058-9,,dozier1954,,1950,EthnographicAtlas_1967_p116, +74705,Nh20,EA058,Most adults,EA058-9,,gifford1931,,1860,EthnographicAtlas_1967_p116, +74706,Nh21,EA058,Most adults,EA058-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74707,Nh22,EA058,Most adults,EA058-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +74708,Nh23,EA058,Most adults,EA058-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +74709,Nh24,EA058,?,EA058-NA,,,,,, +74710,Nh25,EA058,Most adults,EA058-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +74711,Nh26,EA058,?,EA058-NA,,,,,, +74712,Nh27,EA058,?,EA058-NA,,,,,, +74713,Nh3,EA058,Most adults,EA058-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +74714,Nh4,EA058,Most adults,EA058-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +74715,Nh5,EA058,Most adults,EA058-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +74716,Nh6,EA058,Most adults,EA058-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +74717,Nh7,EA058,Most adults,EA058-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +74718,Nh8,EA058,Most adults,EA058-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +74719,Nh9,EA058,Most adults,EA058-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p116, +74720,Ni1,EA058,Most adults,EA058-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +74721,Ni2,EA058,Most adults,EA058-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +74722,Ni3,EA058,Most adults,EA058-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +74723,Ni4,EA058,Most adults,EA058-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +74724,Ni5,EA058,Activity is absent,EA058-10,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +74725,Ni6,EA058,Most adults,EA058-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +74726,Ni7,EA058,Most adults,EA058-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +74727,Ni8,EA058,?,EA058-NA,,,,,, +74728,Ni9,EA058,?,EA058-NA,,,,,, +74729,Nj1,EA058,Most adults,EA058-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74730,Nj10,EA058,Craft,EA058-3,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74731,Nj11,EA058,?,EA058-NA,,,,,, +74732,Nj12,EA058,?,EA058-NA,,,,,, +74733,Nj13,EA058,?,EA058-NA,,,,,, +74734,Nj14,EA058,?,EA058-NA,,,,,, +74735,Nj2,EA058,Craft,EA058-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +74736,Nj3,EA058,Most adults,EA058-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +74737,Nj4,EA058,Most adults,EA058-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +74738,Nj5,EA058,?,EA058-NA,,,,,, +74739,Nj6,EA058,?,EA058-NA,,,,,, +74740,Nj7,EA058,Most adults,EA058-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74741,Nj8,EA058,Most adults,EA058-9,,foster1948,,1500,EthnographicAtlas_1967_p120, +74742,Nj9,EA058,Most adults,EA058-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +74743,Sa1,EA058,Most adults,EA058-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +74744,Sa10,EA058,Most adults,EA058-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +74745,Sa11,EA058,?,EA058-NA,,,,,, +74746,Sa12,EA058,Most adults,EA058-9,,stone1948,,1948,EthnographicAtlas_1967_p120, +74747,Sa13,EA058,Most adults,EA058-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +74748,Sa14,EA058,?,EA058-NA,,,,,, +74749,Sa15,EA058,?,EA058-NA,,,,,, +74750,Sa16,EA058,?,EA058-NA,,,,,, +74751,Sa17,EA058,?,EA058-NA,,,,,, +74752,Sa2,EA058,?,EA058-NA,,,,,, +74753,Sa3,EA058,Most adults,EA058-9,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +74754,Sa4,EA058,Senior age,EA058-2,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +74755,Sa5,EA058,Most adults,EA058-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +74756,Sa6,EA058,Most adults,EA058-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +74757,Sa7,EA058,Activity is absent,EA058-10,"There is incidental mention of pots, but they are presumably obtained through trade",solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +74758,Sa8,EA058,Most adults,EA058-9,Traded from a neighboring village,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p120, +74759,Sa9,EA058,Most adults,EA058-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +74760,Sb1,EA058,Most adults,EA058-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +74761,Sb2,EA058,Most adults,EA058-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +74762,Sb3,EA058,?,EA058-NA,,,,,, +74763,Sb4,EA058,Activity is absent,EA058-10,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +74764,Sb5,EA058,Most adults,EA058-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p120, +74765,Sb6,EA058,Most adults,EA058-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +74766,Sb7,EA058,Most adults,EA058-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +74767,Sb8,EA058,Most adults,EA058-9,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +74768,Sb9,EA058,Craft,EA058-3,But only outside of the valley,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +74769,Sc1,EA058,Most adults,EA058-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +74770,Sc10,EA058,Most adults,EA058-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +74771,Sc11,EA058,?,EA058-NA,,,,,, +74772,Sc12,EA058,Most adults,EA058-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +74773,Sc13,EA058,?,EA058-NA,,,,,, +74774,Sc14,EA058,Most adults,EA058-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +74775,Sc15,EA058,Most adults,EA058-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +74776,Sc16,EA058,Most adults,EA058-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +74777,Sc17,EA058,?,EA058-NA,,,,,, +74778,Sc18,EA058,Activity is absent,EA058-10,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +74779,Sc2,EA058,Most adults,EA058-9,,leedsnd,,1950,EthnographicAtlas_1967_p120, +74780,Sc3,EA058,Most adults,EA058-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +74781,Sc4,EA058,Most adults,EA058-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +74782,Sc5,EA058,Most adults,EA058-9,,farabee1918,,1900,EthnographicAtlas_1967_p120, +74783,Sc6,EA058,?,EA058-NA,,,,,, +74784,Sc7,EA058,Most adults,EA058-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +74785,Sc8,EA058,Most adults,EA058-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +74786,Sc9,EA058,Most adults,EA058-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +74787,Sd1,EA058,Most adults,EA058-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74788,Sd2,EA058,Most adults,EA058-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +74789,Sd3,EA058,Most adults,EA058-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +74790,Sd4,EA058,?,EA058-NA,,,,,, +74791,Sd5,EA058,Activity is absent,EA058-10,"But formerly present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +74792,Sd6,EA058,Most adults,EA058-9,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +74793,Sd7,EA058,Most adults,EA058-9,,fock1963,,1950,EthnographicAtlas_1967_p120, +74794,Sd8,EA058,Most adults,EA058-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +74795,Sd9,EA058,Most adults,EA058-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74796,Se1,EA058,Most adults,EA058-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +74797,Se10,EA058,Most adults,EA058-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p120, +74798,Se11,EA058,Most adults,EA058-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +74799,Se12,EA058,?,EA058-NA,,,,,, +74800,Se2,EA058,Most adults,EA058-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +74801,Se3,EA058,Most adults,EA058-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +74802,Se4,EA058,Senior age,EA058-2,,fejos1943,,1940,EthnographicAtlas_1967_p120, +74803,Se5,EA058,Most adults,EA058-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +74804,Se6,EA058,Most adults,EA058-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +74805,Se7,EA058,?,EA058-NA,,,,,, +74806,Se8,EA058,Most adults,EA058-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +74807,Se9,EA058,Most adults,EA058-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +74808,Sf1,EA058,Most adults,EA058-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +74809,Sf2,EA058,Most adults,EA058-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +74810,Sf3,EA058,Most adults,EA058-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +74811,Sf4,EA058,Most adults,EA058-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +74812,Sf5,EA058,Most adults,EA058-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +74813,Sf6,EA058,Most adults,EA058-9,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +74814,Sf7,EA058,Activity is absent,EA058-10,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +74815,Sf8,EA058,?,EA058-NA,,,,,, +74816,Sf9,EA058,?,EA058-NA,,,,,, +74817,Sg1,EA058,Activity is absent,EA058-10,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +74818,Sg2,EA058,Most adults,EA058-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74819,Sg3,EA058,Activity is absent,EA058-10,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +74820,Sg4,EA058,Most adults,EA058-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +74821,Sg5,EA058,Activity is absent,EA058-10,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74822,Sh1,EA058,Most adults,EA058-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +74823,Sh2,EA058,Most adults,EA058-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +74824,Sh3,EA058,Most adults,EA058-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +74825,Sh4,EA058,Most adults,EA058-9,,oberg1949,,1940,EthnographicAtlas_1967_p124, +74826,Sh5,EA058,Most adults,EA058-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +74827,Sh6,EA058,Most adults,EA058-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +74828,Sh7,EA058,Most adults,EA058-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124,"Assume Murdock comment meant for Col 46, not Col 47 as stated Gray (1999)" +74829,Sh8,EA058,Most adults,EA058-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +74830,Sh9,EA058,Most adults,EA058-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +74831,Si1,EA058,Most adults,EA058-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74832,Si10,EA058,Activity is absent,EA058-10,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +74833,Si2,EA058,Activity is absent,EA058-10,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +74834,Si3,EA058,Most adults,EA058-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74835,Si4,EA058,Activity is absent,EA058-10,But some groups make crude pottery,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +74836,Si5,EA058,Most adults,EA058-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +74837,Si6,EA058,Most adults,EA058-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +74838,Si7,EA058,Most adults,EA058-9,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +74839,Si8,EA058,Most adults,EA058-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +74840,Si9,EA058,?,EA058-NA,,,,,, +74841,Sj1,EA058,Most adults,EA058-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +74842,Sj10,EA058,Most adults,EA058-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74843,Sj11,EA058,Activity is absent,EA058-10,But pottery was formerly made,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +74844,Sj2,EA058,Activity is absent,EA058-10,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +74845,Sj3,EA058,Most adults,EA058-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +74846,Sj4,EA058,Activity is absent,EA058-10,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +74847,Sj5,EA058,Activity is absent,EA058-10,But pottery has been made in recent times,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +74848,Sj6,EA058,Activity is absent,EA058-10,But pottery was formerly made,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +74849,Sj7,EA058,Activity is absent,EA058-10,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +74850,Sj8,EA058,Most adults,EA058-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +74851,Sj9,EA058,Activity is absent,EA058-10,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +74852,ch12,EA058,Activity is absent,EA058-10,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +74853,ch13,EA058,Activity is absent,EA058-10,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +74854,ch14,EA058,Activity is absent,EA058-10,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +74855,ch15,EA058,Most adults,EA058-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +74856,ch16,EA058,Activity is absent,EA058-10,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +74857,ch17,EA058,Activity is absent,EA058-10,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +74858,ch18,EA058,Most adults,EA058-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +74859,ch19,EA058,Craft,EA058-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +74860,ch20,EA058,Activity is absent,EA058-10,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +74861,ch21,EA058,Craft,EA058-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +74862,ch22,EA058,Activity is absent,EA058-10,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +74863,ch23,EA058,Activity is absent,EA058-10,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +74864,ch24,EA058,Craft,EA058-3,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +74865,ch25,EA058,Craft,EA058-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +74866,ch26,EA058,?,EA058-NA,,,,,, +74867,ch27,EA058,Craft,EA058-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +74868,ch28,EA058,?,EA058-NA,,,,,, +74869,ec12,EA058,Activity is absent,EA058-10,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +74870,ec13,EA058,Activity is absent,EA058-10,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +74871,ec14,EA058,Activity is absent,EA058-10,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +74872,ec15,EA058,Activity is absent,EA058-10,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +74873,ec16,EA058,Activity is absent,EA058-10,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +74874,ec17,EA058,Activity is absent,EA058-10,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +74875,ec18,EA058,Activity is absent,EA058-10,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +74876,ec19,EA058,Activity is absent,EA058-10,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +74877,ec20,EA058,Activity is absent,EA058-10,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +74878,ec21,EA058,Activity is absent,EA058-10,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +74879,Aa1,EA059,Activity is absent,EA059-10,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +74880,Aa2,EA059,Activity is absent,EA059-10,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +74881,Aa3,EA059,Activity is absent,EA059-10,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +74882,Aa4,EA059,?,EA059-NA,,,,,, +74883,Aa5,EA059,Activity is absent,EA059-10,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +74884,Aa6,EA059,?,EA059-NA,,,,,, +74885,Aa7,EA059,Activity is absent,EA059-10,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +74886,Aa8,EA059,Activity is absent,EA059-10,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +74887,Aa9,EA059,Activity is absent,EA059-10,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +74888,Ab1,EA059,Activity is absent,EA059-10,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +74889,Ab10,EA059,?,EA059-NA,,,,,, +74890,Ab11,EA059,?,EA059-NA,,,,,, +74891,Ab12,EA059,Most adults,EA059-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +74892,Ab13,EA059,Activity is absent,EA059-10,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +74893,Ab14,EA059,Activity is absent,EA059-10,But bark canoes are mentioned in traditions,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +74894,Ab15,EA059,?,EA059-NA,,,,,, +74895,Ab16,EA059,?,EA059-NA,,,,,, +74896,Ab17,EA059,?,EA059-NA,,,,,, +74897,Ab18,EA059,?,EA059-NA,,,,,, +74898,Ab19,EA059,Activity is absent,EA059-10,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +74899,Ab2,EA059,?,EA059-NA,,,,,, +74900,Ab20,EA059,?,EA059-NA,,,,,, +74901,Ab21a,EA059,?,EA059-NA,,,,,, +74902,Ab21b,EA059,?,EA059-NA,,,,,, +74903,Ab22,EA059,?,EA059-NA,,,,,, +74904,Ab3,EA059,Most adults,EA059-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +74905,Ab4,EA059,Most adults,EA059-9,,junod1927,,1920,EthnographicAtlas_1967_p64, +74906,Ab5,EA059,Most adults,EA059-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +74907,Ab6,EA059,Activity is absent,EA059-10,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +74908,Ab7,EA059,?,EA059-NA,,,,,, +74909,Ab8,EA059,?,EA059-NA,,,,,, +74910,Ab9,EA059,?,EA059-NA,,,,,, +74911,Ac1,EA059,Most adults,EA059-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +74912,Ac10,EA059,Most adults,EA059-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +74913,Ac11,EA059,?,EA059-NA,,,,,, +74914,Ac12,EA059,?,EA059-NA,,,,,, +74915,Ac13,EA059,Most adults,EA059-9,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p64, +74916,Ac14,EA059,?,EA059-NA,,,,,, +74917,Ac15,EA059,?,EA059-NA,,,,,, +74918,Ac16,EA059,?,EA059-NA,,,,,, +74919,Ac17,EA059,?,EA059-NA,,,,,, +74920,Ac18,EA059,Most adults,EA059-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +74921,Ac19,EA059,?,EA059-NA,,,,,, +74922,Ac2,EA059,?,EA059-NA,,,,,, +74923,Ac20,EA059,?,EA059-NA,,,,,, +74924,Ac21,EA059,?,EA059-NA,,,,,, +74925,Ac22,EA059,?,EA059-NA,,,,,, +74926,Ac23,EA059,?,EA059-NA,,,,,, +74927,Ac24,EA059,?,EA059-NA,,,,,, +74928,Ac25,EA059,?,EA059-NA,,,,,, +74929,Ac26,EA059,?,EA059-NA,,,,,, +74930,Ac27,EA059,?,EA059-NA,,,,,, +74931,Ac28,EA059,?,EA059-NA,,,,,, +74932,Ac29,EA059,?,EA059-NA,,,,,, +74933,Ac3,EA059,Most adults,EA059-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +74934,Ac30,EA059,?,EA059-NA,,,,,, +74935,Ac31,EA059,Most adults,EA059-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +74936,Ac32,EA059,?,EA059-NA,,,,,, +74937,Ac33,EA059,?,EA059-NA,,,,,, +74938,Ac34,EA059,Most adults,EA059-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +74939,Ac35,EA059,?,EA059-NA,,,,,, +74940,Ac36,EA059,?,EA059-NA,,,,,, +74941,Ac37,EA059,?,EA059-NA,,,,,, +74942,Ac38,EA059,Most adults,EA059-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +74943,Ac39,EA059,Most adults,EA059-9,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +74944,Ac4,EA059,?,EA059-NA,,,,,, +74945,Ac40,EA059,?,EA059-NA,,,,,, +74946,Ac41,EA059,?,EA059-NA,,,,,, +74947,Ac42,EA059,?,EA059-NA,,,,,, +74948,Ac43,EA059,?,EA059-NA,,,,,, +74949,Ac5,EA059,Most adults,EA059-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +74950,Ac6,EA059,Most adults,EA059-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +74951,Ac7,EA059,Most adults,EA059-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +74952,Ac8,EA059,Most adults,EA059-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +74953,Ac9,EA059,?,EA059-NA,,,,,, +74954,Ad1,EA059,?,EA059-NA,,,,,, +74955,Ad10,EA059,?,EA059-NA,,,,,, +74956,Ad11,EA059,Most adults,EA059-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +74957,Ad12,EA059,?,EA059-NA,,,,,, +74958,Ad13,EA059,Craft,EA059-3,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +74959,Ad14,EA059,?,EA059-NA,,,,,, +74960,Ad15,EA059,?,EA059-NA,,,,,, +74961,Ad16,EA059,Most adults,EA059-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +74962,Ad17,EA059,?,EA059-NA,,,,,, +74963,Ad18,EA059,?,EA059-NA,,,,,, +74964,Ad19,EA059,?,EA059-NA,,,,,, +74965,Ad2,EA059,Craft,EA059-3,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +74966,Ad20,EA059,?,EA059-NA,,,,,, +74967,Ad21,EA059,?,EA059-NA,,,,,, +74968,Ad22,EA059,?,EA059-NA,,,,,, +74969,Ad23,EA059,?,EA059-NA,,,,,, +74970,Ad24,EA059,Activity is absent,EA059-10,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +74971,Ad25,EA059,?,EA059-NA,,,,,, +74972,Ad26,EA059,?,EA059-NA,,,,,, +74973,Ad27,EA059,Most adults,EA059-9,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +74974,Ad28,EA059,?,EA059-NA,,,,,, +74975,Ad29,EA059,Craft,EA059-3,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +74976,Ad3,EA059,Activity is absent,EA059-10,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +74977,Ad30,EA059,Most adults,EA059-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +74978,Ad31,EA059,?,EA059-NA,,,,,, +74979,Ad32,EA059,?,EA059-NA,,,,,, +74980,Ad33,EA059,Most adults,EA059-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +74981,Ad34,EA059,?,EA059-NA,,,,,, +74982,Ad35,EA059,?,EA059-NA,,,,,, +74983,Ad36,EA059,?,EA059-NA,,,,,, +74984,Ad37,EA059,?,EA059-NA,,,,,, +74985,Ad38,EA059,?,EA059-NA,,,,,, +74986,Ad39,EA059,Activity is absent,EA059-10,,gray1963,,1950,EthnographicAtlas_1967_p68, +74987,Ad4,EA059,Activity is absent,EA059-10,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +74988,Ad40,EA059,?,EA059-NA,,,,,, +74989,Ad41,EA059,?,EA059-NA,,,,,, +74990,Ad42,EA059,?,EA059-NA,,,,,, +74991,Ad43,EA059,?,EA059-NA,,,,,, +74992,Ad44,EA059,?,EA059-NA,,,,,, +74993,Ad45,EA059,?,EA059-NA,,,,,, +74994,Ad46,EA059,Craft,EA059-3,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +74995,Ad47,EA059,?,EA059-NA,,,,,, +74996,Ad48,EA059,Craft,EA059-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +74997,Ad49,EA059,?,EA059-NA,,,,,, +74998,Ad5,EA059,?,EA059-NA,,,,,, +74999,Ad50,EA059,?,EA059-NA,,,,,, +75000,Ad51,EA059,?,EA059-NA,,,,,, +75001,Ad6,EA059,Most adults,EA059-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +75002,Ad7,EA059,Craft,EA059-3,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +75003,Ad8,EA059,?,EA059-NA,,,,,, +75004,Ad9,EA059,Activity is absent,EA059-10,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +75005,Ae1,EA059,Activity is absent,EA059-10,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +75006,Ae10,EA059,Most adults,EA059-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +75007,Ae11,EA059,Most adults,EA059-9,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +75008,Ae12,EA059,Most adults,EA059-9,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +75009,Ae13,EA059,?,EA059-NA,,,,,, +75010,Ae14,EA059,Most adults,EA059-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +75011,Ae15,EA059,?,EA059-NA,,,,,, +75012,Ae16,EA059,?,EA059-NA,,,,,, +75013,Ae17,EA059,?,EA059-NA,,,,,, +75014,Ae18,EA059,Most adults,EA059-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +75015,Ae19,EA059,?,EA059-NA,,,,,, +75016,Ae2,EA059,Most adults,EA059-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +75017,Ae20,EA059,?,EA059-NA,,,,,, +75018,Ae21,EA059,?,EA059-NA,,,,,, +75019,Ae22,EA059,?,EA059-NA,,,,,, +75020,Ae23,EA059,?,EA059-NA,,,,,, +75021,Ae24,EA059,?,EA059-NA,,,,,, +75022,Ae25,EA059,?,EA059-NA,,,,,, +75023,Ae26,EA059,?,EA059-NA,,,,,, +75024,Ae27,EA059,?,EA059-NA,,,,,, +75025,Ae28,EA059,Most adults,EA059-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +75026,Ae29,EA059,Most adults,EA059-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +75027,Ae3,EA059,Most adults,EA059-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +75028,Ae30,EA059,?,EA059-NA,,,,,, +75029,Ae31,EA059,?,EA059-NA,,,,,, +75030,Ae32,EA059,?,EA059-NA,,,,,, +75031,Ae33,EA059,?,EA059-NA,,,,,, +75032,Ae34,EA059,?,EA059-NA,,,,,, +75033,Ae35,EA059,?,EA059-NA,,,,,, +75034,Ae36,EA059,?,EA059-NA,,,,,, +75035,Ae37,EA059,?,EA059-NA,,,,,, +75036,Ae38,EA059,?,EA059-NA,,,,,, +75037,Ae39,EA059,Activity is absent,EA059-10,"But in some villages probably 'present, though sex participation unspecified' (EA048 code ""9"") and no specialization specified (EA059 code ""9"")",burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +75038,Ae4,EA059,Most adults,EA059-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +75039,Ae40,EA059,?,EA059-NA,,,,,, +75040,Ae41,EA059,?,EA059-NA,,,,,, +75041,Ae42,EA059,?,EA059-NA,,,,,, +75042,Ae43,EA059,?,EA059-NA,,,,,, +75043,Ae44,EA059,?,EA059-NA,,,,,, +75044,Ae45,EA059,?,EA059-NA,,,,,, +75045,Ae46,EA059,?,EA059-NA,,,,,, +75046,Ae47,EA059,?,EA059-NA,,,,,, +75047,Ae48,EA059,?,EA059-NA,,,,,, +75048,Ae49,EA059,?,EA059-NA,,,,,, +75049,Ae5,EA059,?,EA059-NA,,,,,, +75050,Ae50,EA059,Most adults,EA059-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +75051,Ae51,EA059,?,EA059-NA,,,,,, +75052,Ae52,EA059,?,EA059-NA,,,,,, +75053,Ae53,EA059,?,EA059-NA,,,,,, +75054,Ae54,EA059,?,EA059-NA,,,,,, +75055,Ae55,EA059,?,EA059-NA,,,,,, +75056,Ae56,EA059,?,EA059-NA,,,,,, +75057,Ae57,EA059,?,EA059-NA,,,,,, +75058,Ae58,EA059,?,EA059-NA,,,,,, +75059,Ae59,EA059,?,EA059-NA,,,,,, +75060,Ae6,EA059,Most adults,EA059-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +75061,Ae7,EA059,?,EA059-NA,,,,,, +75062,Ae8,EA059,Most adults,EA059-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +75063,Ae9,EA059,Activity is absent,EA059-10,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +75064,Af1,EA059,Most adults,EA059-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +75065,Af10,EA059,Activity is absent,EA059-10,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +75066,Af11,EA059,?,EA059-NA,,,,,, +75067,Af12,EA059,?,EA059-NA,,,,,, +75068,Af13,EA059,?,EA059-NA,,,,,, +75069,Af14,EA059,Most adults,EA059-9,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +75070,Af15,EA059,Activity is absent,EA059-10,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +75071,Af16,EA059,?,EA059-NA,,,,,, +75072,Af17,EA059,?,EA059-NA,,,,,, +75073,Af18,EA059,?,EA059-NA,,,,,, +75074,Af19,EA059,Most adults,EA059-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p72, +75075,Af2,EA059,?,EA059-NA,,,,,, +75076,Af20,EA059,?,EA059-NA,,,,,, +75077,Af21,EA059,?,EA059-NA,,,,,, +75078,Af22,EA059,Most adults,EA059-9,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +75079,Af23,EA059,?,EA059-NA,,,,,, +75080,Af24,EA059,?,EA059-NA,,,,,, +75081,Af25,EA059,Most adults,EA059-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +75082,Af26,EA059,?,EA059-NA,,,,,, +75083,Af27,EA059,?,EA059-NA,,,,,, +75084,Af28,EA059,Most adults,EA059-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +75085,Af29,EA059,?,EA059-NA,,,,,, +75086,Af3,EA059,?,EA059-NA,,,,,, +75087,Af30,EA059,?,EA059-NA,,,,,, +75088,Af31,EA059,?,EA059-NA,,,,,, +75089,Af32,EA059,?,EA059-NA,,,,,, +75090,Af33,EA059,?,EA059-NA,,,,,, +75091,Af34,EA059,?,EA059-NA,,,,,, +75092,Af35,EA059,?,EA059-NA,,,,,, +75093,Af36,EA059,Most adults,EA059-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +75094,Af37,EA059,?,EA059-NA,,,,,, +75095,Af38,EA059,?,EA059-NA,,,,,, +75096,Af39,EA059,?,EA059-NA,,,,,, +75097,Af4,EA059,Activity is absent,EA059-10,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +75098,Af40,EA059,?,EA059-NA,,,,,, +75099,Af41,EA059,?,EA059-NA,,,,,, +75100,Af42,EA059,?,EA059-NA,,,,,, +75101,Af43,EA059,?,EA059-NA,,,,,, +75102,Af44,EA059,?,EA059-NA,,,,,, +75103,Af45,EA059,?,EA059-NA,,,,,, +75104,Af46,EA059,?,EA059-NA,,,,,, +75105,Af47,EA059,?,EA059-NA,,,,,, +75106,Af48,EA059,?,EA059-NA,,,,,, +75107,Af49,EA059,?,EA059-NA,,,,,, +75108,Af5,EA059,Most adults,EA059-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +75109,Af50,EA059,?,EA059-NA,,,,,, +75110,Af51,EA059,?,EA059-NA,,,,,, +75111,Af52,EA059,Most adults,EA059-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +75112,Af53,EA059,?,EA059-NA,,,,,, +75113,Af54,EA059,Activity is absent,EA059-10,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +75114,Af55,EA059,?,EA059-NA,,,,,, +75115,Af56,EA059,?,EA059-NA,Rude rafts only,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72,"Assume Murdock comment refers to Col 59, not Col 60 as stated in Gray (1999)" +75116,Af57,EA059,?,EA059-NA,,,,,, +75117,Af58,EA059,?,EA059-NA,,,,,, +75118,Af6,EA059,?,EA059-NA,,,,,, +75119,Af7,EA059,Most adults,EA059-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +75120,Af8,EA059,Most adults,EA059-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +75121,Af9,EA059,?,EA059-NA,,,,,, +75122,Ag1,EA059,Most adults,EA059-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +75123,Ag10,EA059,?,EA059-NA,,,,,, +75124,Ag11,EA059,?,EA059-NA,,,,,, +75125,Ag12,EA059,?,EA059-NA,,,,,, +75126,Ag13,EA059,?,EA059-NA,,,,,, +75127,Ag14,EA059,?,EA059-NA,,,,,, +75128,Ag15,EA059,?,EA059-NA,,,,,, +75129,Ag16,EA059,?,EA059-NA,,,,,, +75130,Ag17,EA059,?,EA059-NA,,,,,, +75131,Ag18,EA059,?,EA059-NA,,,,,, +75132,Ag19,EA059,?,EA059-NA,,,,,, +75133,Ag2,EA059,Activity is absent,EA059-10,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +75134,Ag20,EA059,?,EA059-NA,,,,,, +75135,Ag21,EA059,?,EA059-NA,,,,,, +75136,Ag22,EA059,Most adults,EA059-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +75137,Ag23,EA059,?,EA059-NA,,,,,, +75138,Ag24,EA059,?,EA059-NA,,,,,, +75139,Ag25,EA059,?,EA059-NA,,,,,, +75140,Ag26,EA059,?,EA059-NA,,,,,, +75141,Ag27,EA059,?,EA059-NA,,,,,, +75142,Ag28,EA059,?,EA059-NA,,,,,, +75143,Ag29,EA059,?,EA059-NA,,,,,, +75144,Ag3,EA059,?,EA059-NA,,,,,, +75145,Ag30,EA059,?,EA059-NA,,,,,, +75146,Ag31,EA059,?,EA059-NA,,,,,, +75147,Ag32,EA059,?,EA059-NA,,,,,, +75148,Ag33,EA059,?,EA059-NA,,,,,, +75149,Ag34,EA059,?,EA059-NA,,,,,, +75150,Ag35,EA059,?,EA059-NA,,,,,, +75151,Ag36,EA059,?,EA059-NA,,,,,, +75152,Ag37,EA059,?,EA059-NA,,,,,, +75153,Ag38,EA059,?,EA059-NA,,,,,, +75154,Ag39,EA059,?,EA059-NA,,,,,, +75155,Ag4,EA059,Activity is absent,EA059-10,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +75156,Ag40,EA059,?,EA059-NA,,,,,, +75157,Ag41,EA059,?,EA059-NA,,,,,, +75158,Ag42,EA059,?,EA059-NA,,,,,, +75159,Ag43,EA059,?,EA059-NA,,,,,, +75160,Ag44,EA059,?,EA059-NA,,,,,, +75161,Ag45,EA059,?,EA059-NA,,,,,, +75162,Ag46,EA059,?,EA059-NA,,,,,, +75163,Ag47,EA059,Most adults,EA059-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +75164,Ag48,EA059,?,EA059-NA,,,,,, +75165,Ag49,EA059,?,EA059-NA,,,,,, +75166,Ag5,EA059,?,EA059-NA,,,,,, +75167,Ag50,EA059,?,EA059-NA,,,,,, +75168,Ag51,EA059,?,EA059-NA,,,,,, +75169,Ag52,EA059,?,EA059-NA,,,,,, +75170,Ag53,EA059,?,EA059-NA,,,,,, +75171,Ag54,EA059,Activity is absent,EA059-10,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +75172,Ag6,EA059,?,EA059-NA,,,,,, +75173,Ag7,EA059,?,EA059-NA,,,,,, +75174,Ag8,EA059,Activity is absent,EA059-10,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +75175,Ag9,EA059,Craft,EA059-3,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +75176,Ah1,EA059,Activity is absent,EA059-10,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75177,Ah10,EA059,?,EA059-NA,,,,,, +75178,Ah11,EA059,?,EA059-NA,,,,,, +75179,Ah12,EA059,?,EA059-NA,,,,,, +75180,Ah13,EA059,?,EA059-NA,,,,,, +75181,Ah14,EA059,?,EA059-NA,,,,,, +75182,Ah15,EA059,Most adults,EA059-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +75183,Ah16,EA059,?,EA059-NA,,,,,, +75184,Ah17,EA059,?,EA059-NA,,,,,, +75185,Ah18,EA059,?,EA059-NA,,,,,, +75186,Ah19,EA059,?,EA059-NA,,,,,, +75187,Ah2,EA059,?,EA059-NA,,,,,, +75188,Ah20,EA059,?,EA059-NA,,,,,, +75189,Ah21,EA059,?,EA059-NA,,,,,, +75190,Ah22,EA059,?,EA059-NA,,,,,, +75191,Ah23,EA059,?,EA059-NA,,,,,, +75192,Ah24,EA059,?,EA059-NA,,,,,, +75193,Ah25,EA059,?,EA059-NA,,,,,, +75194,Ah26,EA059,?,EA059-NA,,,,,, +75195,Ah27,EA059,?,EA059-NA,,,,,, +75196,Ah28,EA059,?,EA059-NA,,,,,, +75197,Ah29,EA059,?,EA059-NA,,,,,, +75198,Ah3,EA059,Activity is absent,EA059-10,Crude rafts only,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +75199,Ah30,EA059,?,EA059-NA,,,,,, +75200,Ah31,EA059,?,EA059-NA,,,,,, +75201,Ah32,EA059,?,EA059-NA,,,,,, +75202,Ah33,EA059,?,EA059-NA,,,,,, +75203,Ah34,EA059,?,EA059-NA,,,,,, +75204,Ah35,EA059,?,EA059-NA,,,,,, +75205,Ah36,EA059,?,EA059-NA,,,,,, +75206,Ah37,EA059,?,EA059-NA,,,,,, +75207,Ah38,EA059,?,EA059-NA,,,,,, +75208,Ah39,EA059,Activity is absent,EA059-10,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +75209,Ah4,EA059,?,EA059-NA,,,,,, +75210,Ah5,EA059,?,EA059-NA,,,,,, +75211,Ah6,EA059,?,EA059-NA,,,,,, +75212,Ah7,EA059,Activity is absent,EA059-10,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +75213,Ah8,EA059,?,EA059-NA,,,,,, +75214,Ah9,EA059,Activity is absent,EA059-10,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +75215,Ai1,EA059,?,EA059-NA,,,,,, +75216,Ai10,EA059,Activity is absent,EA059-10,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +75217,Ai11,EA059,Most adults,EA059-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +75218,Ai12,EA059,?,EA059-NA,,,,,, +75219,Ai13,EA059,?,EA059-NA,,,,,, +75220,Ai14,EA059,Most adults,EA059-9,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +75221,Ai15,EA059,Most adults,EA059-9,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +75222,Ai16,EA059,?,EA059-NA,,,,,, +75223,Ai17,EA059,?,EA059-NA,,,,,, +75224,Ai18,EA059,Most adults,EA059-9,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +75225,Ai19,EA059,?,EA059-NA,,,,,, +75226,Ai2,EA059,?,EA059-NA,,,,,, +75227,Ai20,EA059,?,EA059-NA,,,,,, +75228,Ai21,EA059,?,EA059-NA,,,,,, +75229,Ai22,EA059,?,EA059-NA,,,,,, +75230,Ai23,EA059,?,EA059-NA,,,,,, +75231,Ai24,EA059,?,EA059-NA,,,,,, +75232,Ai25,EA059,?,EA059-NA,,,,,, +75233,Ai26,EA059,Most adults,EA059-9,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +75234,Ai27,EA059,?,EA059-NA,,,,,, +75235,Ai28,EA059,?,EA059-NA,,,,,, +75236,Ai29,EA059,?,EA059-NA,,,,,, +75237,Ai3,EA059,Most adults,EA059-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +75238,Ai30,EA059,Most adults,EA059-9,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +75239,Ai31,EA059,?,EA059-NA,,,,,, +75240,Ai32,EA059,?,EA059-NA,,,,,, +75241,Ai33,EA059,Most adults,EA059-9,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p76, +75242,Ai34,EA059,?,EA059-NA,,,,,, +75243,Ai35,EA059,?,EA059-NA,,,,,, +75244,Ai36,EA059,?,EA059-NA,,,,,, +75245,Ai37,EA059,?,EA059-NA,,,,,, +75246,Ai38,EA059,Activity is absent,EA059-10,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +75247,Ai39,EA059,Activity is absent,EA059-10,,nadel1947,,1940,EthnographicAtlas_1967_p76, +75248,Ai4,EA059,?,EA059-NA,,,,,, +75249,Ai40,EA059,Activity is absent,EA059-10,,nadel1947,,1940,EthnographicAtlas_1967_p76, +75250,Ai41,EA059,Activity is absent,EA059-10,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +75251,Ai42,EA059,Activity is absent,EA059-10,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +75252,Ai43,EA059,Activity is absent,EA059-10,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +75253,Ai44,EA059,Most adults,EA059-9,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p76, +75254,Ai45,EA059,?,EA059-NA,,,,,, +75255,Ai46,EA059,?,EA059-NA,,,,,, +75256,Ai47,EA059,?,EA059-NA,,,,,, +75257,Ai5,EA059,Activity is absent,EA059-10,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +75258,Ai6,EA059,Most adults,EA059-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +75259,Ai7,EA059,?,EA059-NA,,,,,, +75260,Ai8,EA059,Activity is absent,EA059-10,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +75261,Ai9,EA059,Craft,EA059-3,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +75262,Aj1,EA059,?,EA059-NA,,,,,, +75263,Aj10,EA059,?,EA059-NA,,,,,, +75264,Aj11,EA059,?,EA059-NA,,,,,, +75265,Aj12,EA059,?,EA059-NA,,,,,, +75266,Aj13,EA059,?,EA059-NA,,,,,, +75267,Aj14,EA059,?,EA059-NA,,,,,, +75268,Aj15,EA059,?,EA059-NA,,,,,, +75269,Aj16,EA059,Most adults,EA059-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +75270,Aj17,EA059,Most adults,EA059-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +75271,Aj18,EA059,?,EA059-NA,,,,,, +75272,Aj19,EA059,?,EA059-NA,,,,,, +75273,Aj2,EA059,Activity is absent,EA059-10,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +75274,Aj20,EA059,?,EA059-NA,,,,,, +75275,Aj21,EA059,?,EA059-NA,,,,,, +75276,Aj22,EA059,?,EA059-NA,,,,,, +75277,Aj23,EA059,?,EA059-NA,,,,,, +75278,Aj24,EA059,?,EA059-NA,,,,,, +75279,Aj25,EA059,?,EA059-NA,,,,,, +75280,Aj26,EA059,?,EA059-NA,,,,,, +75281,Aj27,EA059,?,EA059-NA,,,,,, +75282,Aj28,EA059,?,EA059-NA,,,,,, +75283,Aj29,EA059,?,EA059-NA,,,,,, +75284,Aj3,EA059,Activity is absent,EA059-10,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +75285,Aj30,EA059,?,EA059-NA,,,,,, +75286,Aj31,EA059,?,EA059-NA,,,,,, +75287,Aj4,EA059,?,EA059-NA,,,,,, +75288,Aj5,EA059,Activity is absent,EA059-10,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +75289,Aj6,EA059,Activity is absent,EA059-10,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +75290,Aj7,EA059,Activity is absent,EA059-10,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +75291,Aj8,EA059,?,EA059-NA,,,,,, +75292,Aj9,EA059,Activity is absent,EA059-10,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +75293,Ca1,EA059,Activity is absent,EA059-10,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +75294,Ca10,EA059,Activity is absent,EA059-10,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +75295,Ca11,EA059,?,EA059-NA,,,,,, +75296,Ca12,EA059,?,EA059-NA,,,,,, +75297,Ca13,EA059,?,EA059-NA,,,,,, +75298,Ca14,EA059,Activity is absent,EA059-10,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +75299,Ca15,EA059,?,EA059-NA,,,,,, +75300,Ca16,EA059,?,EA059-NA,,,,,, +75301,Ca17,EA059,?,EA059-NA,,,,,, +75302,Ca18,EA059,?,EA059-NA,,,,,, +75303,Ca19,EA059,Activity is absent,EA059-10,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +75304,Ca2,EA059,Activity is absent,EA059-10,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +75305,Ca20,EA059,?,EA059-NA,,,,,, +75306,Ca21,EA059,Activity is absent,EA059-10,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +75307,Ca22,EA059,?,EA059-NA,,,,,, +75308,Ca23,EA059,Activity is absent,EA059-10,,jensen1959,,1950,EthnographicAtlas_1967_p80, +75309,Ca24,EA059,Activity is absent,EA059-10,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +75310,Ca25,EA059,?,EA059-NA,,,,,, +75311,Ca26,EA059,?,EA059-NA,,,,,, +75312,Ca27,EA059,?,EA059-NA,,,,,, +75313,Ca28,EA059,?,EA059-NA,,,,,, +75314,Ca29,EA059,?,EA059-NA,,,,,, +75315,Ca3,EA059,?,EA059-NA,,,,,, +75316,Ca30,EA059,?,EA059-NA,,,,,, +75317,Ca31,EA059,?,EA059-NA,,,,,, +75318,Ca32,EA059,?,EA059-NA,,,,,, +75319,Ca33,EA059,?,EA059-NA,,,,,, +75320,Ca34,EA059,?,EA059-NA,,,,,, +75321,Ca35,EA059,?,EA059-NA,,,,,, +75322,Ca36,EA059,?,EA059-NA,,,,,, +75323,Ca37,EA059,?,EA059-NA,,,,,, +75324,Ca38,EA059,?,EA059-NA,,,,,, +75325,Ca39,EA059,?,EA059-NA,,,,,, +75326,Ca4,EA059,?,EA059-NA,,,,,, +75327,Ca40,EA059,?,EA059-NA,,,,,, +75328,Ca41,EA059,?,EA059-NA,,,,,, +75329,Ca42,EA059,?,EA059-NA,,,,,, +75330,Ca43,EA059,?,EA059-NA,,,,,, +75331,Ca5,EA059,?,EA059-NA,,,,,, +75332,Ca6,EA059,?,EA059-NA,,,,,, +75333,Ca7,EA059,?,EA059-NA,,,,,, +75334,Ca8,EA059,?,EA059-NA,,,,,, +75335,Ca9,EA059,?,EA059-NA,,,,,, +75336,Cb1,EA059,?,EA059-NA,,,,,, +75337,Cb10,EA059,?,EA059-NA,,,,,, +75338,Cb11,EA059,?,EA059-NA,,,,,, +75339,Cb12,EA059,?,EA059-NA,,,,,, +75340,Cb13,EA059,?,EA059-NA,,,,,, +75341,Cb14,EA059,?,EA059-NA,,,,,, +75342,Cb15,EA059,?,EA059-NA,,,,,, +75343,Cb16,EA059,?,EA059-NA,,,,,, +75344,Cb17,EA059,?,EA059-NA,,,,,, +75345,Cb18,EA059,?,EA059-NA,,,,,, +75346,Cb19,EA059,?,EA059-NA,,,,,, +75347,Cb2,EA059,Activity is absent,EA059-10,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +75348,Cb20,EA059,?,EA059-NA,,,,,, +75349,Cb21,EA059,?,EA059-NA,,,,,, +75350,Cb22,EA059,?,EA059-NA,,,,,, +75351,Cb23,EA059,?,EA059-NA,,,,,, +75352,Cb24,EA059,?,EA059-NA,,,,,, +75353,Cb25,EA059,?,EA059-NA,,,,,, +75354,Cb26,EA059,?,EA059-NA,,,,,, +75355,Cb27,EA059,?,EA059-NA,,,,,, +75356,Cb28,EA059,?,EA059-NA,,,,,, +75357,Cb29,EA059,?,EA059-NA,,,,,, +75358,Cb3,EA059,Craft,EA059-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +75359,Cb4,EA059,?,EA059-NA,,,,,, +75360,Cb5,EA059,Most adults,EA059-9,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p80, +75361,Cb6,EA059,?,EA059-NA,,,,,, +75362,Cb7,EA059,?,EA059-NA,,,,,, +75363,Cb8,EA059,?,EA059-NA,,,,,, +75364,Cb9,EA059,?,EA059-NA,,,,,, +75365,Cc1,EA059,Activity is absent,EA059-10,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +75366,Cc10,EA059,Activity is absent,EA059-10,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +75367,Cc11,EA059,?,EA059-NA,,,,,, +75368,Cc12,EA059,?,EA059-NA,,,,,, +75369,Cc13,EA059,?,EA059-NA,,,,,, +75370,Cc14,EA059,Activity is absent,EA059-10,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +75371,Cc15,EA059,?,EA059-NA,,,,,, +75372,Cc16,EA059,Activity is absent,EA059-10,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +75373,Cc17,EA059,Activity is absent,EA059-10,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +75374,Cc18,EA059,?,EA059-NA,,,,,, +75375,Cc19,EA059,?,EA059-NA,,,,,, +75376,Cc2,EA059,Activity is absent,EA059-10,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +75377,Cc20,EA059,Activity is absent,EA059-10,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +75378,Cc3,EA059,Activity is absent,EA059-10,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +75379,Cc4,EA059,?,EA059-NA,,,,,, +75380,Cc5,EA059,Activity is absent,EA059-10,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +75381,Cc6,EA059,?,EA059-NA,,,,,, +75382,Cc7,EA059,?,EA059-NA,,,,,, +75383,Cc8,EA059,?,EA059-NA,,,,,, +75384,Cc9,EA059,Activity is absent,EA059-10,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +75385,Cd1,EA059,Most adults,EA059-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +75386,Cd10,EA059,?,EA059-NA,,,,,, +75387,Cd11,EA059,Activity is absent,EA059-10,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p84, +75388,Cd12,EA059,?,EA059-NA,,,,,, +75389,Cd13,EA059,?,EA059-NA,,,,,, +75390,Cd14,EA059,?,EA059-NA,,,,,, +75391,Cd15,EA059,?,EA059-NA,,,,,, +75392,Cd16,EA059,?,EA059-NA,,,,,, +75393,Cd17,EA059,?,EA059-NA,,,,,, +75394,Cd18,EA059,?,EA059-NA,,,,,, +75395,Cd19,EA059,?,EA059-NA,,,,,, +75396,Cd2,EA059,Most adults,EA059-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +75397,Cd20,EA059,?,EA059-NA,,,,,, +75398,Cd21,EA059,?,EA059-NA,,,,,, +75399,Cd3,EA059,Most adults,EA059-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +75400,Cd4,EA059,Most adults,EA059-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +75401,Cd5,EA059,Activity is absent,EA059-10,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +75402,Cd6,EA059,Most adults,EA059-9,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +75403,Cd7,EA059,?,EA059-NA,,,,,, +75404,Cd8,EA059,?,EA059-NA,,,,,, +75405,Cd9,EA059,?,EA059-NA,,,,,, +75406,Ce1,EA059,Most adults,EA059-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +75407,Ce2,EA059,?,EA059-NA,,,,,, +75408,Ce3,EA059,Most adults,EA059-9,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +75409,Ce4,EA059,?,EA059-NA,,,,,, +75410,Ce5,EA059,Most adults,EA059-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +75411,Ce6,EA059,Most adults,EA059-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +75412,Ce7,EA059,Most adults,EA059-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +75413,Ce8,EA059,Activity is absent,EA059-10,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +75414,Cf1,EA059,Craft,EA059-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +75415,Cf2,EA059,?,EA059-NA,,,,,, +75416,Cf3,EA059,Most adults,EA059-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +75417,Cf4,EA059,?,EA059-NA,,,,,, +75418,Cf5,EA059,Most adults,EA059-9,,miner1939,,1930,EthnographicAtlas_1967_p84, +75419,Cg1,EA059,Industrial,EA059-4,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +75420,Cg2,EA059,Most adults,EA059-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +75421,Cg3,EA059,?,EA059-NA,,,,,, +75422,Cg4,EA059,Activity is absent,EA059-10,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +75423,Cg5,EA059,?,EA059-NA,,,,,, +75424,Ch1,EA059,Most adults,EA059-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +75425,Ch10,EA059,?,EA059-NA,,,,,, +75426,Ch11,EA059,Activity is absent,EA059-10,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +75427,Ch2,EA059,?,EA059-NA,,,,,, +75428,Ch3,EA059,Most adults,EA059-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +75429,Ch4,EA059,?,EA059-NA,,,,,, +75430,Ch5,EA059,Most adults,EA059-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +75431,Ch6,EA059,Most adults,EA059-9,,ember1954,,1910,EthnographicAtlas_1967_p84, +75432,Ch7,EA059,Most adults,EA059-9,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +75433,Ch8,EA059,?,EA059-NA,,,,,, +75434,Ch9,EA059,Most adults,EA059-9,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +75435,Ci1,EA059,Activity is absent,EA059-10,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +75436,Ci10,EA059,?,EA059-NA,,,,,, +75437,Ci11,EA059,Activity is absent,EA059-10,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +75438,Ci12,EA059,Activity is absent,EA059-10,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +75439,Ci2,EA059,?,EA059-NA,,,,,, +75440,Ci3,EA059,?,EA059-NA,,,,,, +75441,Ci4,EA059,?,EA059-NA,,,,,, +75442,Ci5,EA059,Activity is absent,EA059-10,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +75443,Ci6,EA059,?,EA059-NA,,,,,, +75444,Ci7,EA059,?,EA059-NA,,,,,, +75445,Ci8,EA059,?,EA059-NA,,,,,, +75446,Ci9,EA059,?,EA059-NA,,,,,, +75447,Cj1,EA059,?,EA059-NA,,,,,, +75448,Cj10,EA059,Craft,EA059-3,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +75449,Cj2,EA059,Activity is absent,EA059-10,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +75450,Cj3,EA059,Craft,EA059-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +75451,Cj4,EA059,Most adults,EA059-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +75452,Cj5,EA059,Activity is absent,EA059-10,But boats are made on the coast,dickson1949,,1930,EthnographicAtlas_1967_p88, +75453,Cj6,EA059,?,EA059-NA,,,,,, +75454,Cj7,EA059,Most adults,EA059-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +75455,Cj8,EA059,Activity is absent,EA059-10,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +75456,Cj9,EA059,?,EA059-NA,,,,,, +75457,Ea1,EA059,?,EA059-NA,,,,,, +75458,Ea10,EA059,Activity is absent,EA059-10,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +75459,Ea11,EA059,?,EA059-NA,,,,,, +75460,Ea12,EA059,?,EA059-NA,,,,,, +75461,Ea13,EA059,Activity is absent,EA059-10,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +75462,Ea2,EA059,?,EA059-NA,,,,,, +75463,Ea3,EA059,?,EA059-NA,,,,,, +75464,Ea4,EA059,?,EA059-NA,,,,,, +75465,Ea5,EA059,Activity is absent,EA059-10,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +75466,Ea6,EA059,Activity is absent,EA059-10,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +75467,Ea7,EA059,Activity is absent,EA059-10,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +75468,Ea8,EA059,Activity is absent,EA059-10,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +75469,Ea9,EA059,?,EA059-NA,,,,,, +75470,Eb1,EA059,Activity is absent,EA059-10,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +75471,Eb2,EA059,Activity is absent,EA059-10,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +75472,Eb3,EA059,Activity is absent,EA059-10,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +75473,Eb4,EA059,?,EA059-NA,,,,,, +75474,Eb5,EA059,?,EA059-NA,,,,,, +75475,Eb6,EA059,?,EA059-NA,,,,,, +75476,Eb7,EA059,Activity is absent,EA059-10,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +75477,Eb8,EA059,?,EA059-NA,,,,,, +75478,Ec1,EA059,Most adults,EA059-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +75479,Ec10,EA059,Most adults,EA059-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +75480,Ec11,EA059,Most adults,EA059-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +75481,Ec2,EA059,Most adults,EA059-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75482,Ec3,EA059,Most adults,EA059-9,Boats are largely confined to the Maritime Chukchee,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +75483,Ec4,EA059,Most adults,EA059-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +75484,Ec5,EA059,Most adults,EA059-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +75485,Ec6,EA059,?,EA059-NA,,,,,, +75486,Ec7,EA059,Most adults,EA059-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +75487,Ec8,EA059,?,EA059-NA,,,,,, +75488,Ec9,EA059,?,EA059-NA,,,,,, +75489,Ed1,EA059,Most adults,EA059-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +75490,Ed10,EA059,?,EA059-NA,,,,,, +75491,Ed13,EA059,?,EA059-NA,,,,,, +75492,Ed14,EA059,?,EA059-NA,,,,,, +75493,Ed15a,EA059,?,EA059-NA,,,,,, +75494,Ed15b,EA059,Craft,EA059-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +75495,Ed16,EA059,?,EA059-NA,,,,,, +75496,Ed2,EA059,?,EA059-NA,,,,,, +75497,Ed3,EA059,?,EA059-NA,,,,,, +75498,Ed4,EA059,?,EA059-NA,,,,,, +75499,Ed5,EA059,Activity is absent,EA059-10,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75500,Ed6,EA059,?,EA059-NA,,,,,, +75501,Ed7,EA059,Craft,EA059-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +75502,Ed8,EA059,Most adults,EA059-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +75503,Ed9,EA059,Activity is absent,EA059-10,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +75504,Ee1,EA059,Activity is absent,EA059-10,Rafts only,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +75505,Ee2,EA059,Activity is absent,EA059-10,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +75506,Ee3,EA059,Activity is absent,EA059-10,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +75507,Ee4,EA059,Most adults,EA059-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +75508,Ee5,EA059,Activity is absent,EA059-10,Rafts only,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +75509,Ee6,EA059,Activity is absent,EA059-10,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +75510,Ee7,EA059,?,EA059-NA,,,,,, +75511,Ee8,EA059,Most adults,EA059-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +75512,Ef1,EA059,?,EA059-NA,,,,,, +75513,Ef10,EA059,?,EA059-NA,,,,,, +75514,Ef11,EA059,Activity is absent,EA059-10,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +75515,Ef2,EA059,Craft,EA059-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +75516,Ef3,EA059,?,EA059-NA,,,,,, +75517,Ef4,EA059,?,EA059-NA,,,,,, +75518,Ef5,EA059,Most adults,EA059-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +75519,Ef6,EA059,?,EA059-NA,,,,,, +75520,Ef7,EA059,?,EA059-NA,,,,,, +75521,Ef8,EA059,Craft,EA059-3,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +75522,Ef9,EA059,?,EA059-NA,,,,,, +75523,Eg1,EA059,Activity is absent,EA059-10,Rafts only,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75524,Eg10,EA059,?,EA059-NA,,,,,, +75525,Eg11,EA059,?,EA059-NA,,,,,, +75526,Eg12,EA059,?,EA059-NA,,,,,, +75527,Eg13,EA059,Activity is absent,EA059-10,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75528,Eg14,EA059,Most adults,EA059-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +75529,Eg2,EA059,?,EA059-NA,,,,,, +75530,Eg3,EA059,Most adults,EA059-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +75531,Eg4,EA059,Activity is absent,EA059-10,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +75532,Eg5,EA059,Activity is absent,EA059-10,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +75533,Eg6,EA059,?,EA059-NA,,,,,, +75534,Eg7,EA059,?,EA059-NA,,,,,, +75535,Eg8,EA059,Activity is absent,EA059-10,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +75536,Eg9,EA059,?,EA059-NA,,,,,, +75537,Eh1,EA059,Most adults,EA059-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +75538,Eh10,EA059,?,EA059-NA,,,,,, +75539,Eh2,EA059,?,EA059-NA,,,,,, +75540,Eh3,EA059,Most adults,EA059-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +75541,Eh4,EA059,Activity is absent,EA059-10,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75542,Eh5,EA059,Most adults,EA059-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +75543,Eh6,EA059,Most adults,EA059-9,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p92, +75544,Eh7,EA059,Activity is absent,EA059-10,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +75545,Eh8,EA059,Most adults,EA059-9,"But McLeod reports activity is absent or unimportant (EA048 code ""9"", EA059 code ""10"")",faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +75546,Eh9,EA059,?,EA059-NA,,,,,, +75547,Ei1,EA059,Activity is absent,EA059-10,"But in one limited region 'males alone' (EA048 code ""1""), with no specialization specified (EA059 code ""9"")",burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75548,Ei10,EA059,?,EA059-NA,,,,,, +75549,Ei11,EA059,Activity is absent,EA059-10,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +75550,Ei12,EA059,?,EA059-NA,,,,,, +75551,Ei13,EA059,Activity is absent,EA059-10,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +75552,Ei14,EA059,Activity is absent,EA059-10,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +75553,Ei15,EA059,?,EA059-NA,,,,,, +75554,Ei16,EA059,Activity is absent,EA059-10,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +75555,Ei17,EA059,?,EA059-NA,,,,,, +75556,Ei18,EA059,?,EA059-NA,,,,,, +75557,Ei19,EA059,?,EA059-NA,,,,,, +75558,Ei2,EA059,?,EA059-NA,,,,,, +75559,Ei20,EA059,?,EA059-NA,,,,,, +75560,Ei3,EA059,Most adults,EA059-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +75561,Ei4,EA059,?,EA059-NA,,,,,, +75562,Ei5,EA059,?,EA059-NA,,,,,, +75563,Ei6,EA059,?,EA059-NA,,,,,, +75564,Ei7,EA059,?,EA059-NA,,,,,, +75565,Ei8,EA059,Most adults,EA059-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +75566,Ei9,EA059,?,EA059-NA,,,,,, +75567,Ej1,EA059,?,EA059-NA,,,,,, +75568,Ej10,EA059,Activity is absent,EA059-10,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +75569,Ej11,EA059,?,EA059-NA,,,,,, +75570,Ej12,EA059,?,EA059-NA,,,,,, +75571,Ej13,EA059,?,EA059-NA,,,,,, +75572,Ej14,EA059,Activity is absent,EA059-10,Bamboo rafts only,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75573,Ej15,EA059,Most adults,EA059-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +75574,Ej16,EA059,Activity is absent,EA059-10,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +75575,Ej2,EA059,?,EA059-NA,,,,,, +75576,Ej3,EA059,Activity is absent,EA059-10,Bamboo rafts only,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +75577,Ej4,EA059,Most adults,EA059-9,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +75578,Ej5,EA059,?,EA059-NA,,,,,, +75579,Ej6,EA059,Most adults,EA059-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +75580,Ej7,EA059,?,EA059-NA,,,,,, +75581,Ej8,EA059,Most adults,EA059-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +75582,Ej9,EA059,Most adults,EA059-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +75583,Ia1,EA059,?,EA059-NA,,,,,, +75584,Ia10,EA059,?,EA059-NA,,,,,, +75585,Ia11,EA059,?,EA059-NA,,,,,, +75586,Ia12,EA059,Most adults,EA059-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +75587,Ia13,EA059,Most adults,EA059-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +75588,Ia14,EA059,Most adults,EA059-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +75589,Ia15,EA059,?,EA059-NA,,,,,, +75590,Ia16,EA059,Activity is absent,EA059-10,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +75591,Ia17,EA059,?,EA059-NA,,,,,, +75592,Ia18,EA059,?,EA059-NA,,,,,, +75593,Ia2,EA059,Activity is absent,EA059-10,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +75594,Ia3,EA059,?,EA059-NA,,,,,, +75595,Ia4,EA059,?,EA059-NA,,,,,, +75596,Ia5,EA059,Activity is absent,EA059-10,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +75597,Ia6,EA059,?,EA059-NA,,,,,, +75598,Ia7,EA059,?,EA059-NA,,,,,, +75599,Ia8,EA059,?,EA059-NA,,,,,, +75600,Ia9,EA059,?,EA059-NA,,,,,, +75601,Ib1,EA059,Most adults,EA059-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75602,Ib2,EA059,Activity is absent,EA059-10,"But in coastal towns 'males alone' (EA048 code ""1""), with craft specialization (EA059 code ""3"")",dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75603,Ib3,EA059,Activity is absent,EA059-10,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +75604,Ib4,EA059,Most adults,EA059-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +75605,Ib5,EA059,Most adults,EA059-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +75606,Ib6,EA059,Most adults,EA059-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +75607,Ib7,EA059,Most adults,EA059-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +75608,Ib8,EA059,Activity is absent,EA059-10,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +75609,Ib9,EA059,?,EA059-NA,,,,,, +75610,Ic1,EA059,Most adults,EA059-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75611,Ic10,EA059,Most adults,EA059-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +75612,Ic11,EA059,Most adults,EA059-9,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75613,Ic12,EA059,?,EA059-NA,,,,,, +75614,Ic13,EA059,?,EA059-NA,,,,,, +75615,Ic2,EA059,?,EA059-NA,,,,,, +75616,Ic3,EA059,Most adults,EA059-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +75617,Ic4,EA059,?,EA059-NA,,,,,, +75618,Ic5,EA059,Most adults,EA059-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +75619,Ic6,EA059,Most adults,EA059-9,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +75620,Ic7,EA059,Most adults,EA059-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +75621,Ic8,EA059,Most adults,EA059-9,,pleyte1893,,1890,EthnographicAtlas_1967_p96, +75622,Ic9,EA059,Most adults,EA059-9,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p96, +75623,Id1,EA059,Activity is absent,EA059-10,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +75624,Id10,EA059,Activity is absent,EA059-10,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +75625,Id11,EA059,Most adults,EA059-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +75626,Id12,EA059,?,EA059-NA,,,,,, +75627,Id13,EA059,Most adults,EA059-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +75628,Id2,EA059,Most adults,EA059-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +75629,Id3,EA059,Most adults,EA059-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +75630,Id4,EA059,?,EA059-NA,,,,,, +75631,Id5,EA059,?,EA059-NA,,,,,, +75632,Id6,EA059,?,EA059-NA,,,,,, +75633,Id7,EA059,?,EA059-NA,,,,,, +75634,Id8,EA059,Activity is absent,EA059-10,Rafts only,roth1890,,1830,EthnographicAtlas_1967_p96, +75635,Id9,EA059,?,EA059-NA,,,,,, +75636,Ie1,EA059,Most adults,EA059-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75637,Ie10,EA059,Most adults,EA059-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +75638,Ie11,EA059,Activity is absent,EA059-10,,bowers1964,,1950,EthnographicAtlas_1967_p96, +75639,Ie12,EA059,Most adults,EA059-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75640,Ie13,EA059,Most adults,EA059-9,,landtman1927,,1920,EthnographicAtlas_1967_p96, +75641,Ie14,EA059,Most adults,EA059-9,,haddon1908,,1900,EthnographicAtlas_1967_p96, +75642,Ie15,EA059,?,EA059-NA,,,,,, +75643,Ie16,EA059,?,EA059-NA,,,,,, +75644,Ie17,EA059,Activity is absent,EA059-10,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +75645,Ie18,EA059,Most adults,EA059-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +75646,Ie19,EA059,Most adults,EA059-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +75647,Ie2,EA059,Activity is absent,EA059-10,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +75648,Ie20,EA059,Most adults,EA059-9,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +75649,Ie21,EA059,Most adults,EA059-9,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +75650,Ie22,EA059,Activity is absent,EA059-10,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +75651,Ie23,EA059,Most adults,EA059-9,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +75652,Ie24,EA059,?,EA059-NA,,,,,, +75653,Ie25,EA059,Activity is absent,EA059-10,,williamson1912,,1920,EthnographicAtlas_1967_p96, +75654,Ie26,EA059,Activity is absent,EA059-10,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +75655,Ie27,EA059,?,EA059-NA,,,,,, +75656,Ie28,EA059,Most adults,EA059-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +75657,Ie29,EA059,Most adults,EA059-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75658,Ie3,EA059,?,EA059-NA,,,,,, +75659,Ie30,EA059,Most adults,EA059-9,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +75660,Ie31,EA059,Activity is absent,EA059-10,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +75661,Ie32,EA059,Most adults,EA059-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +75662,Ie33,EA059,?,EA059-NA,,,,,, +75663,Ie34,EA059,?,EA059-NA,,,,,, +75664,Ie35,EA059,Most adults,EA059-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +75665,Ie36,EA059,?,EA059-NA,,,,,, +75666,Ie37,EA059,?,EA059-NA,,,,,, +75667,Ie38,EA059,Most adults,EA059-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +75668,Ie39,EA059,Most adults,EA059-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +75669,Ie4,EA059,Most adults,EA059-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75670,Ie5,EA059,Most adults,EA059-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +75671,Ie6,EA059,?,EA059-NA,,,,,, +75672,Ie7,EA059,Activity is absent,EA059-10,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +75673,Ie8,EA059,Most adults,EA059-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +75674,Ie9,EA059,Most adults,EA059-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +75675,If1,EA059,Most adults,EA059-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75676,If10,EA059,?,EA059-NA,,,,,, +75677,If11,EA059,Most adults,EA059-9,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +75678,If12,EA059,Most adults,EA059-9,,mason1954,,1940,EthnographicAtlas_1967_p100, +75679,If13,EA059,Most adults,EA059-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +75680,If14,EA059,Most adults,EA059-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +75681,If15,EA059,Most adults,EA059-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +75682,If16,EA059,Most adults,EA059-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +75683,If17,EA059,Most adults,EA059-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +75684,If2,EA059,Most adults,EA059-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +75685,If3,EA059,Most adults,EA059-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +75686,If4,EA059,Craft,EA059-3,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +75687,If5,EA059,Craft,EA059-3,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +75688,If6,EA059,Craft,EA059-3,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +75689,If7,EA059,Most adults,EA059-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +75690,If8,EA059,Most adults,EA059-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +75691,If9,EA059,Most adults,EA059-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +75692,Ig1,EA059,Activity is absent,EA059-10,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +75693,Ig10,EA059,Activity is absent,EA059-10,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +75694,Ig11,EA059,Most adults,EA059-9,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +75695,Ig12,EA059,?,EA059-NA,,,,,, +75696,Ig13,EA059,Most adults,EA059-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +75697,Ig14,EA059,Most adults,EA059-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +75698,Ig15,EA059,?,EA059-NA,,,,,, +75699,Ig16,EA059,?,EA059-NA,,,,,, +75700,Ig17,EA059,?,EA059-NA,,,,,, +75701,Ig18,EA059,?,EA059-NA,,,,,, +75702,Ig19,EA059,?,EA059-NA,,,,,, +75703,Ig2,EA059,Most adults,EA059-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +75704,Ig20,EA059,Most adults,EA059-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +75705,Ig21,EA059,Most adults,EA059-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +75706,Ig3,EA059,Most adults,EA059-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +75707,Ig4,EA059,Most adults,EA059-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +75708,Ig5,EA059,Most adults,EA059-9,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +75709,Ig6,EA059,Craft,EA059-3,,ivens1927,,1900,EthnographicAtlas_1967_p100, +75710,Ig7,EA059,Most adults,EA059-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +75711,Ig8,EA059,?,EA059-NA,,,,,, +75712,Ig9,EA059,Most adults,EA059-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +75713,Ih1,EA059,Most adults,EA059-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +75714,Ih10,EA059,Most adults,EA059-9,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75715,Ih11,EA059,?,EA059-NA,,,,,, +75716,Ih12,EA059,?,EA059-NA,,,,,, +75717,Ih13,EA059,?,EA059-NA,,,,,, +75718,Ih14,EA059,Most adults,EA059-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +75719,Ih2,EA059,Most adults,EA059-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75720,Ih3,EA059,Most adults,EA059-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p100, +75721,Ih4,EA059,Most adults,EA059-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75722,Ih5,EA059,?,EA059-NA,,,,,, +75723,Ih6,EA059,Most adults,EA059-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +75724,Ih7,EA059,Most adults,EA059-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +75725,Ih8,EA059,?,EA059-NA,,,,,, +75726,Ih9,EA059,Craft,EA059-3,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75727,Ii1,EA059,Most adults,EA059-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +75728,Ii10,EA059,?,EA059-NA,,,,,, +75729,Ii12,EA059,Most adults,EA059-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75730,Ii13,EA059,Craft,EA059-3,,burrows1937,,1830,EthnographicAtlas_1967_p100, +75731,Ii14,EA059,Craft,EA059-3,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +75732,Ii2,EA059,Craft,EA059-3,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +75733,Ii3,EA059,Most adults,EA059-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +75734,Ii4,EA059,Craft,EA059-3,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +75735,Ii5,EA059,Craft,EA059-3,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +75736,Ii6,EA059,Most adults,EA059-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +75737,Ii7,EA059,Most adults,EA059-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +75738,Ii8,EA059,Craft,EA059-3,,burrows1936,,1840,EthnographicAtlas_1967_p100, +75739,Ii9,EA059,Most adults,EA059-9,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +75740,Ij1,EA059,Most adults,EA059-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +75741,Ij10,EA059,?,EA059-NA,,,,,, +75742,Ij2,EA059,Most adults,EA059-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +75743,Ij3,EA059,Craft,EA059-3,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +75744,Ij4,EA059,Most adults,EA059-9,,buck1932a,,1850,EthnographicAtlas_1967_p104, +75745,Ij5,EA059,Most adults,EA059-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +75746,Ij6,EA059,Craft,EA059-3,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +75747,Ij7,EA059,Craft,EA059-3,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +75748,Ij8,EA059,Craft,EA059-3,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +75749,Ij9,EA059,Most adults,EA059-9,,metraux1940,,1860,EthnographicAtlas_1967_p104, +75750,Na1,EA059,Most adults,EA059-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +75751,Na10,EA059,Most adults,EA059-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +75752,Na11,EA059,Most adults,EA059-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +75753,Na12,EA059,Most adults,EA059-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +75754,Na13,EA059,Most adults,EA059-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +75755,Na14,EA059,Most adults,EA059-9,But boats were lacking until the kayak was introduced in 1862,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +75756,Na15,EA059,Most adults,EA059-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +75757,Na16,EA059,Most adults,EA059-9,,osgood1931,,1860,EthnographicAtlas_1967_p104, +75758,Na17,EA059,Most adults,EA059-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75759,Na19,EA059,Most adults,EA059-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +75760,Na2,EA059,Most adults,EA059-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +75761,Na20,EA059,Most adults,EA059-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +75762,Na21,EA059,Most adults,EA059-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +75763,Na22,EA059,Most adults,EA059-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +75764,Na23,EA059,Most adults,EA059-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +75765,Na24,EA059,Most adults,EA059-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +75766,Na25,EA059,Most adults,EA059-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +75767,Na26,EA059,Most adults,EA059-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +75768,Na27,EA059,Most adults,EA059-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +75769,Na28,EA059,Most adults,EA059-9,,jenness1937,,1880,EthnographicAtlas_1967_p104, +75770,Na29,EA059,Most adults,EA059-9,,goddard1916,,1850,EthnographicAtlas_1967_p104, +75771,Na3,EA059,Most adults,EA059-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +75772,Na30,EA059,Most adults,EA059-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +75773,Na31,EA059,Most adults,EA059-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +75774,Na32,EA059,Most adults,EA059-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +75775,Na33,EA059,Most adults,EA059-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +75776,Na34,EA059,Most adults,EA059-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +75777,Na35,EA059,Activity is absent,EA059-10,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +75778,Na36,EA059,Most adults,EA059-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +75779,Na37,EA059,Most adults,EA059-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +75780,Na38,EA059,Most adults,EA059-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +75781,Na39,EA059,Most adults,EA059-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +75782,Na4,EA059,Most adults,EA059-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +75783,Na40,EA059,Most adults,EA059-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +75784,Na41,EA059,Most adults,EA059-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +75785,Na42,EA059,Most adults,EA059-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +75786,Na43,EA059,Most adults,EA059-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +75787,Na44,EA059,?,EA059-NA,,,,,, +75788,Na45,EA059,Most adults,EA059-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +75789,Na5,EA059,Most adults,EA059-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +75790,Na6,EA059,Most adults,EA059-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +75791,Na7,EA059,Most adults,EA059-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +75792,Na8,EA059,Most adults,EA059-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +75793,Na9,EA059,Most adults,EA059-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75794,Nb1,EA059,Most adults,EA059-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +75795,Nb10,EA059,?,EA059-NA,,,,,, +75796,Nb11,EA059,Most adults,EA059-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +75797,Nb12,EA059,Most adults,EA059-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +75798,Nb13,EA059,Most adults,EA059-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +75799,Nb14,EA059,Most adults,EA059-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +75800,Nb15,EA059,Most adults,EA059-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +75801,Nb16,EA059,Most adults,EA059-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +75802,Nb17,EA059,Craft,EA059-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +75803,Nb18,EA059,Most adults,EA059-9,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +75804,Nb19,EA059,Most adults,EA059-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +75805,Nb2,EA059,Craft,EA059-3,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +75806,Nb20,EA059,Most adults,EA059-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +75807,Nb21,EA059,Most adults,EA059-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +75808,Nb22,EA059,Most adults,EA059-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +75809,Nb23,EA059,Most adults,EA059-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +75810,Nb24,EA059,Most adults,EA059-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +75811,Nb25,EA059,Craft,EA059-3,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +75812,Nb26,EA059,Most adults,EA059-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +75813,Nb27,EA059,Most adults,EA059-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +75814,Nb28,EA059,Most adults,EA059-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +75815,Nb29,EA059,Most adults,EA059-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +75816,Nb3,EA059,Most adults,EA059-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +75817,Nb30,EA059,Most adults,EA059-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +75818,Nb31,EA059,Most adults,EA059-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +75819,Nb32,EA059,?,EA059-NA,,,,,, +75820,Nb33,EA059,Activity is absent,EA059-10,Log rafts only,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +75821,Nb34,EA059,Most adults,EA059-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +75822,Nb35,EA059,Most adults,EA059-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +75823,Nb36,EA059,Most adults,EA059-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +75824,Nb37,EA059,Most adults,EA059-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +75825,Nb38,EA059,Most adults,EA059-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +75826,Nb39,EA059,Most adults,EA059-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +75827,Nb4,EA059,Most adults,EA059-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +75828,Nb5,EA059,Most adults,EA059-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +75829,Nb6,EA059,Most adults,EA059-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +75830,Nb7,EA059,Most adults,EA059-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +75831,Nb8,EA059,Most adults,EA059-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +75832,Nb9,EA059,Most adults,EA059-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +75833,Nc1,EA059,Activity is absent,EA059-10,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +75834,Nc10,EA059,Most adults,EA059-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +75835,Nc11,EA059,Most adults,EA059-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +75836,Nc12,EA059,Most adults,EA059-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +75837,Nc13,EA059,Activity is absent,EA059-10,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +75838,Nc14,EA059,Activity is absent,EA059-10,Rafts only,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +75839,Nc15,EA059,Activity is absent,EA059-10,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +75840,Nc16,EA059,?,EA059-NA,,,,,, +75841,Nc17,EA059,Activity is absent,EA059-10,Log rafts only,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +75842,Nc18,EA059,Activity is absent,EA059-10,But men make balsa rafts,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +75843,Nc19,EA059,Activity is absent,EA059-10,Rafts only,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +75844,Nc2,EA059,Activity is absent,EA059-10,Rafts of tule reeds only,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +75845,Nc20,EA059,Activity is absent,EA059-10,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +75846,Nc21,EA059,?,EA059-NA,,,,,, +75847,Nc22,EA059,Activity is absent,EA059-10,Balsa rafts only,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +75848,Nc23,EA059,Activity is absent,EA059-10,Log rafts only,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +75849,Nc24,EA059,Activity is absent,EA059-10,But men make balsa rafts,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +75850,Nc25,EA059,?,EA059-NA,,,,,, +75851,Nc26,EA059,Activity is absent,EA059-10,Balsa canoes only,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +75852,Nc27,EA059,?,EA059-NA,,,,,, +75853,Nc28,EA059,Most adults,EA059-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +75854,Nc29,EA059,Most adults,EA059-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +75855,Nc3,EA059,Activity is absent,EA059-10,Rafts of tule reeds only,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +75856,Nc30,EA059,Activity is absent,EA059-10,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +75857,Nc31,EA059,Activity is absent,EA059-10,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +75858,Nc32,EA059,Activity is absent,EA059-10,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +75859,Nc33,EA059,Activity is absent,EA059-10,Balsa rafts only,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +75860,Nc34,EA059,Activity is absent,EA059-10,,meigs1939,,1880,EthnographicAtlas_1967_p108, +75861,Nc4,EA059,Most adults,EA059-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +75862,Nc5,EA059,Activity is absent,EA059-10,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +75863,Nc6,EA059,Activity is absent,EA059-10,Balsa rafts only,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +75864,Nc7,EA059,Activity is absent,EA059-10,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +75865,Nc8,EA059,Most adults,EA059-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +75866,Nc9,EA059,Most adults,EA059-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +75867,Nd1,EA059,Most adults,EA059-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +75868,Nd10,EA059,Most adults,EA059-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +75869,Nd11,EA059,Most adults,EA059-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +75870,Nd12,EA059,Most adults,EA059-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +75871,Nd13,EA059,Most adults,EA059-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +75872,Nd14,EA059,Most adults,EA059-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +75873,Nd15,EA059,Most adults,EA059-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +75874,Nd16,EA059,Most adults,EA059-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +75875,Nd17,EA059,Most adults,EA059-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +75876,Nd18,EA059,Most adults,EA059-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +75877,Nd19,EA059,Most adults,EA059-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +75878,Nd2,EA059,Activity is absent,EA059-10,Rafts only,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +75879,Nd20,EA059,Most adults,EA059-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +75880,Nd21,EA059,Activity is absent,EA059-10,Balsa rafts only,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +75881,Nd22,EA059,Activity is absent,EA059-10,Balsa rafts only,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +75882,Nd23,EA059,Activity is absent,EA059-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +75883,Nd24,EA059,Activity is absent,EA059-10,Rafts only,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +75884,Nd25,EA059,Activity is absent,EA059-10,Balsa rafts only,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +75885,Nd26,EA059,Most adults,EA059-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +75886,Nd27,EA059,Activity is absent,EA059-10,Balsa rafts only,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +75887,Nd28,EA059,Activity is absent,EA059-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +75888,Nd29,EA059,Activity is absent,EA059-10,Balsa rafts only,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +75889,Nd3,EA059,Activity is absent,EA059-10,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +75890,Nd30,EA059,?,EA059-NA,,,,,, +75891,Nd31,EA059,Activity is absent,EA059-10,Log rafts only,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +75892,Nd32,EA059,Activity is absent,EA059-10,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +75893,Nd33,EA059,Activity is absent,EA059-10,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +75894,Nd34,EA059,Activity is absent,EA059-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +75895,Nd35,EA059,Activity is absent,EA059-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +75896,Nd36,EA059,Activity is absent,EA059-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +75897,Nd37,EA059,Activity is absent,EA059-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +75898,Nd38,EA059,Activity is absent,EA059-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +75899,Nd39,EA059,Activity is absent,EA059-10,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +75900,Nd4,EA059,Most adults,EA059-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +75901,Nd40,EA059,Activity is absent,EA059-10,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +75902,Nd41,EA059,Activity is absent,EA059-10,Balsa rafts only,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +75903,Nd42,EA059,Activity is absent,EA059-10,Balsa rafts only,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +75904,Nd43,EA059,Activity is absent,EA059-10,Balsa rafts only,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +75905,Nd44,EA059,Activity is absent,EA059-10,Balsa rafts only,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +75906,Nd45,EA059,Activity is absent,EA059-10,Balsa rafts only,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +75907,Nd46,EA059,Activity is absent,EA059-10,Balsa rafts only,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +75908,Nd47,EA059,Activity is absent,EA059-10,Balsa rafts only,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +75909,Nd48,EA059,Activity is absent,EA059-10,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +75910,Nd49,EA059,Activity is absent,EA059-10,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +75911,Nd5,EA059,Activity is absent,EA059-10,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +75912,Nd50,EA059,Activity is absent,EA059-10,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +75913,Nd51,EA059,?,EA059-NA,,,,,, +75914,Nd52,EA059,Activity is absent,EA059-10,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +75915,Nd53,EA059,Activity is absent,EA059-10,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +75916,Nd54,EA059,Activity is absent,EA059-10,Rafts only,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75917,Nd55,EA059,Activity is absent,EA059-10,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +75918,Nd56,EA059,Activity is absent,EA059-10,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +75919,Nd57,EA059,Activity is absent,EA059-10,But balsa rafts were made,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +75920,Nd58,EA059,Activity is absent,EA059-10,Rafts only,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +75921,Nd59,EA059,Activity is absent,EA059-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +75922,Nd6,EA059,Activity is absent,EA059-10,Rafts only,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +75923,Nd60,EA059,Activity is absent,EA059-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +75924,Nd61,EA059,Activity is absent,EA059-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +75925,Nd62,EA059,Activity is absent,EA059-10,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +75926,Nd63,EA059,Activity is absent,EA059-10,Balsa rafts only,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +75927,Nd64,EA059,Most adults,EA059-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +75928,Nd65,EA059,Activity is absent,EA059-10,Rafts only,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +75929,Nd66,EA059,Activity is absent,EA059-10,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +75930,Nd67,EA059,Activity is absent,EA059-10,,gifford1936,,1870,EthnographicAtlas_1967_p112, +75931,Nd7,EA059,Most adults,EA059-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +75932,Nd8,EA059,Most adults,EA059-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +75933,Nd9,EA059,Most adults,EA059-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +75934,Ne1,EA059,Activity is absent,EA059-10,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +75935,Ne10,EA059,Most adults,EA059-9,Skin bullboats,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +75936,Ne11,EA059,Most adults,EA059-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +75937,Ne12,EA059,Activity is absent,EA059-10,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +75938,Ne13,EA059,Activity is absent,EA059-10,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +75939,Ne14,EA059,Most adults,EA059-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +75940,Ne15,EA059,Most adults,EA059-9,Skin bullboats,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +75941,Ne16,EA059,Most adults,EA059-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +75942,Ne17,EA059,?,EA059-NA,,,,,, +75943,Ne18,EA059,Activity is absent,EA059-10,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +75944,Ne19,EA059,Most adults,EA059-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +75945,Ne2,EA059,?,EA059-NA,,,,,, +75946,Ne20,EA059,?,EA059-NA,,,,,, +75947,Ne21,EA059,?,EA059-NA,,,,,, +75948,Ne3,EA059,Activity is absent,EA059-10,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +75949,Ne4,EA059,Activity is absent,EA059-10,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +75950,Ne5,EA059,?,EA059-NA,,,,,, +75951,Ne6,EA059,?,EA059-NA,,,,,, +75952,Ne7,EA059,Activity is absent,EA059-10,Rafts only,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +75953,Ne8,EA059,?,EA059-NA,,,,,, +75954,Ne9,EA059,?,EA059-NA,,,,,, +75955,Nf10,EA059,?,EA059-NA,,,,,, +75956,Nf11,EA059,?,EA059-NA,,,,,, +75957,Nf12,EA059,?,EA059-NA,,,,,, +75958,Nf13,EA059,Most adults,EA059-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75959,Nf14,EA059,Most adults,EA059-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +75960,Nf15,EA059,?,EA059-NA,,,,,, +75961,Nf2,EA059,Most adults,EA059-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +75962,Nf3,EA059,Most adults,EA059-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +75963,Nf4,EA059,Most adults,EA059-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +75964,Nf5,EA059,?,EA059-NA,,,,,, +75965,Nf6,EA059,?,EA059-NA,,,,,, +75966,Nf7,EA059,Most adults,EA059-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75967,Nf8,EA059,?,EA059-NA,,,,,, +75968,Nf9,EA059,Most adults,EA059-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +75969,Ng1,EA059,Most adults,EA059-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +75970,Ng10,EA059,Most adults,EA059-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +75971,Ng11,EA059,Most adults,EA059-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +75972,Ng12,EA059,Most adults,EA059-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +75973,Ng13,EA059,?,EA059-NA,,,,,, +75974,Ng14,EA059,?,EA059-NA,,,,,, +75975,Ng15,EA059,?,EA059-NA,,,,,, +75976,Ng2,EA059,?,EA059-NA,,,,,, +75977,Ng3,EA059,Most adults,EA059-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +75978,Ng4,EA059,?,EA059-NA,,,,,, +75979,Ng5,EA059,Most adults,EA059-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +75980,Ng6,EA059,Most adults,EA059-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +75981,Ng7,EA059,Most adults,EA059-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +75982,Ng8,EA059,Most adults,EA059-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +75983,Ng9,EA059,?,EA059-NA,,,,,, +75984,Nh1,EA059,Activity is absent,EA059-10,Rafts only,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +75985,Nh10,EA059,?,EA059-NA,,,,,, +75986,Nh11,EA059,?,EA059-NA,,,,,, +75987,Nh12,EA059,Activity is absent,EA059-10,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +75988,Nh13,EA059,Activity is absent,EA059-10,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +75989,Nh14,EA059,?,EA059-NA,,,,,, +75990,Nh15,EA059,Activity is absent,EA059-10,Rafts only,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +75991,Nh16,EA059,Activity is absent,EA059-10,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75992,Nh17,EA059,Activity is absent,EA059-10,Rafts only,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +75993,Nh18,EA059,Activity is absent,EA059-10,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75994,Nh19,EA059,Activity is absent,EA059-10,Rafts only,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +75995,Nh2,EA059,Activity is absent,EA059-10,,dozier1954,,1950,EthnographicAtlas_1967_p116, +75996,Nh20,EA059,Activity is absent,EA059-10,Balsa rafts only,gifford1931,,1860,EthnographicAtlas_1967_p116, +75997,Nh21,EA059,Activity is absent,EA059-10,Balsa rafts only,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +75998,Nh22,EA059,Activity is absent,EA059-10,Balsa rafts only,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +75999,Nh23,EA059,Most adults,EA059-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +76000,Nh24,EA059,Activity is absent,EA059-10,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +76001,Nh25,EA059,Activity is absent,EA059-10,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +76002,Nh26,EA059,?,EA059-NA,,,,,, +76003,Nh27,EA059,?,EA059-NA,,,,,, +76004,Nh3,EA059,Activity is absent,EA059-10,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +76005,Nh4,EA059,Activity is absent,EA059-10,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +76006,Nh5,EA059,Activity is absent,EA059-10,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +76007,Nh6,EA059,Activity is absent,EA059-10,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +76008,Nh7,EA059,Activity is absent,EA059-10,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +76009,Nh8,EA059,Activity is absent,EA059-10,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +76010,Nh9,EA059,?,EA059-NA,,,,,, +76011,Ni1,EA059,?,EA059-NA,,,,,, +76012,Ni2,EA059,Activity is absent,EA059-10,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +76013,Ni3,EA059,?,EA059-NA,,,,,, +76014,Ni4,EA059,Activity is absent,EA059-10,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +76015,Ni5,EA059,Activity is absent,EA059-10,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +76016,Ni6,EA059,Activity is absent,EA059-10,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +76017,Ni7,EA059,Most adults,EA059-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +76018,Ni8,EA059,?,EA059-NA,,,,,, +76019,Ni9,EA059,?,EA059-NA,,,,,, +76020,Nj1,EA059,?,EA059-NA,,,,,, +76021,Nj10,EA059,Activity is absent,EA059-10,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76022,Nj11,EA059,?,EA059-NA,,,,,, +76023,Nj12,EA059,?,EA059-NA,,,,,, +76024,Nj13,EA059,?,EA059-NA,,,,,, +76025,Nj14,EA059,?,EA059-NA,,,,,, +76026,Nj2,EA059,Most adults,EA059-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +76027,Nj3,EA059,?,EA059-NA,,,,,, +76028,Nj4,EA059,?,EA059-NA,,,,,, +76029,Nj5,EA059,?,EA059-NA,,,,,, +76030,Nj6,EA059,?,EA059-NA,,,,,, +76031,Nj7,EA059,Activity is absent,EA059-10,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76032,Nj8,EA059,Most adults,EA059-9,,foster1948,,1500,EthnographicAtlas_1967_p120, +76033,Nj9,EA059,Activity is absent,EA059-10,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +76034,Sa1,EA059,Craft,EA059-3,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +76035,Sa10,EA059,?,EA059-NA,,,,,, +76036,Sa11,EA059,?,EA059-NA,,,,,, +76037,Sa12,EA059,?,EA059-NA,,,,,, +76038,Sa13,EA059,Activity is absent,EA059-10,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +76039,Sa14,EA059,?,EA059-NA,,,,,, +76040,Sa15,EA059,?,EA059-NA,,,,,, +76041,Sa16,EA059,?,EA059-NA,,,,,, +76042,Sa17,EA059,?,EA059-NA,,,,,, +76043,Sa2,EA059,?,EA059-NA,,,,,, +76044,Sa3,EA059,?,EA059-NA,,,,,, +76045,Sa4,EA059,Most adults,EA059-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +76046,Sa5,EA059,Activity is absent,EA059-10,"Entry follows Stone and Pittier, who report dugout canoes in some regions; Gann and Skinner deny the presence of water craft",gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +76047,Sa6,EA059,Most adults,EA059-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +76048,Sa7,EA059,Most adults,EA059-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +76049,Sa8,EA059,?,EA059-NA,,,,,, +76050,Sa9,EA059,Most adults,EA059-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +76051,Sb1,EA059,Most adults,EA059-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +76052,Sb2,EA059,Most adults,EA059-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +76053,Sb3,EA059,?,EA059-NA,,,,,, +76054,Sb4,EA059,Most adults,EA059-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +76055,Sb5,EA059,Most adults,EA059-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p120, +76056,Sb6,EA059,Activity is absent,EA059-10,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +76057,Sb7,EA059,?,EA059-NA,,,,,, +76058,Sb8,EA059,Most adults,EA059-9,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +76059,Sb9,EA059,Craft,EA059-3,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +76060,Sc1,EA059,Most adults,EA059-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +76061,Sc10,EA059,Most adults,EA059-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +76062,Sc11,EA059,?,EA059-NA,,,,,, +76063,Sc12,EA059,?,EA059-NA,,,,,, +76064,Sc13,EA059,Activity is absent,EA059-10,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +76065,Sc14,EA059,Most adults,EA059-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +76066,Sc15,EA059,Most adults,EA059-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +76067,Sc16,EA059,Most adults,EA059-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +76068,Sc17,EA059,?,EA059-NA,,,,,, +76069,Sc18,EA059,Most adults,EA059-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +76070,Sc2,EA059,Most adults,EA059-9,,leedsnd,,1950,EthnographicAtlas_1967_p120, +76071,Sc3,EA059,Most adults,EA059-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +76072,Sc4,EA059,Most adults,EA059-9,But the agricultural Guahibo make dugout canoes,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +76073,Sc5,EA059,Most adults,EA059-9,,farabee1918,,1900,EthnographicAtlas_1967_p120, +76074,Sc6,EA059,Most adults,EA059-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76075,Sc7,EA059,Most adults,EA059-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +76076,Sc8,EA059,Most adults,EA059-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +76077,Sc9,EA059,?,EA059-NA,,,,,, +76078,Sd1,EA059,Activity is absent,EA059-10,But barks canoes were formerly used,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76079,Sd2,EA059,Activity is absent,EA059-10,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +76080,Sd3,EA059,Most adults,EA059-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +76081,Sd4,EA059,Activity is absent,EA059-10,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +76082,Sd5,EA059,Most adults,EA059-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +76083,Sd6,EA059,Most adults,EA059-9,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +76084,Sd7,EA059,Most adults,EA059-9,,fock1963,,1950,EthnographicAtlas_1967_p120, +76085,Sd8,EA059,Most adults,EA059-9,Balsa rafts only,wilbert1963,,1950,EthnographicAtlas_1967_p120, +76086,Sd9,EA059,Most adults,EA059-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76087,Se1,EA059,Activity is absent,EA059-10,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +76088,Se10,EA059,Most adults,EA059-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p120, +76089,Se11,EA059,Most adults,EA059-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +76090,Se12,EA059,?,EA059-NA,,,,,, +76091,Se2,EA059,Most adults,EA059-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +76092,Se3,EA059,Most adults,EA059-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +76093,Se4,EA059,Most adults,EA059-9,,fejos1943,,1940,EthnographicAtlas_1967_p120, +76094,Se5,EA059,Most adults,EA059-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +76095,Se6,EA059,Most adults,EA059-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +76096,Se7,EA059,?,EA059-NA,,,,,, +76097,Se8,EA059,Activity is absent,EA059-10,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +76098,Se9,EA059,Most adults,EA059-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +76099,Sf1,EA059,Most adults,EA059-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +76100,Sf2,EA059,Most adults,EA059-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +76101,Sf3,EA059,Most adults,EA059-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +76102,Sf4,EA059,?,EA059-NA,,,,,, +76103,Sf5,EA059,Activity is absent,EA059-10,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +76104,Sf6,EA059,?,EA059-NA,,,,,, +76105,Sf7,EA059,Most adults,EA059-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +76106,Sf8,EA059,?,EA059-NA,,,,,, +76107,Sf9,EA059,?,EA059-NA,,,,,, +76108,Sg1,EA059,Most adults,EA059-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +76109,Sg2,EA059,Most adults,EA059-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76110,Sg3,EA059,?,EA059-NA,,,,,, +76111,Sg4,EA059,Activity is absent,EA059-10,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +76112,Sg5,EA059,Most adults,EA059-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76113,Sh1,EA059,Activity is absent,EA059-10,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +76114,Sh2,EA059,?,EA059-NA,,,,,, +76115,Sh3,EA059,Most adults,EA059-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +76116,Sh4,EA059,?,EA059-NA,,,,,, +76117,Sh5,EA059,Activity is absent,EA059-10,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +76118,Sh6,EA059,Activity is absent,EA059-10,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +76119,Sh7,EA059,Activity is absent,EA059-10,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +76120,Sh8,EA059,Activity is absent,EA059-10,"Formerly 'males alone' (EA048 code ""1""), with no specialization specified (EA059 code ""9"")",karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +76121,Sh9,EA059,Most adults,EA059-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +76122,Si1,EA059,Activity is absent,EA059-10,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76123,Si10,EA059,Most adults,EA059-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +76124,Si2,EA059,Most adults,EA059-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +76125,Si3,EA059,Most adults,EA059-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76126,Si4,EA059,Activity is absent,EA059-10,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +76127,Si5,EA059,Most adults,EA059-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +76128,Si6,EA059,Most adults,EA059-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +76129,Si7,EA059,Activity is absent,EA059-10,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +76130,Si8,EA059,?,EA059-NA,,,,,, +76131,Si9,EA059,?,EA059-NA,,,,,, +76132,Sj1,EA059,?,EA059-NA,,,,,, +76133,Sj10,EA059,Activity is absent,EA059-10,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76134,Sj11,EA059,Activity is absent,EA059-10,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +76135,Sj2,EA059,?,EA059-NA,,,,,, +76136,Sj3,EA059,Activity is absent,EA059-10,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +76137,Sj4,EA059,Activity is absent,EA059-10,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +76138,Sj5,EA059,Activity is absent,EA059-10,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +76139,Sj6,EA059,?,EA059-NA,,,,,, +76140,Sj7,EA059,Most adults,EA059-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +76141,Sj8,EA059,Most adults,EA059-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +76142,Sj9,EA059,Activity is absent,EA059-10,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +76143,ch12,EA059,Most adults,EA059-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +76144,ch13,EA059,Activity is absent,EA059-10,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +76145,ch14,EA059,Craft,EA059-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +76146,ch15,EA059,Craft,EA059-3,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +76147,ch16,EA059,Most adults,EA059-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +76148,ch17,EA059,Activity is absent,EA059-10,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +76149,ch18,EA059,Craft,EA059-3,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +76150,ch19,EA059,Craft,EA059-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +76151,ch20,EA059,Activity is absent,EA059-10,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +76152,ch21,EA059,Craft,EA059-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +76153,ch22,EA059,Activity is absent,EA059-10,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +76154,ch23,EA059,Activity is absent,EA059-10,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +76155,ch24,EA059,Most adults,EA059-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +76156,ch25,EA059,Craft,EA059-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +76157,ch26,EA059,Craft,EA059-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +76158,ch27,EA059,Craft,EA059-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +76159,ch28,EA059,Craft,EA059-3,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +76160,ec12,EA059,Activity is absent,EA059-10,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +76161,ec13,EA059,Most adults,EA059-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +76162,ec14,EA059,Most adults,EA059-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +76163,ec15,EA059,Most adults,EA059-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +76164,ec16,EA059,Most adults,EA059-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +76165,ec17,EA059,Most adults,EA059-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +76166,ec18,EA059,Most adults,EA059-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +76167,ec19,EA059,Most adults,EA059-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +76168,ec20,EA059,Most adults,EA059-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +76169,ec21,EA059,Most adults,EA059-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +76170,Aa1,EA006,Bride-service,EA006-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +76171,Aa2,EA006,Bride-wealth,EA006-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +76172,Aa3,EA006,Gift exchange,EA006-4,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +76173,Aa4,EA006,Bride-service,EA006-2,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +76174,Aa5,EA006,Woman exchange,EA006-5,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +76175,Aa6,EA006,Bride-wealth,EA006-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +76176,Aa7,EA006,Token bride-wealth,EA006-3,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +76177,Aa8,EA006,Bride-service,EA006-2,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +76178,Aa9,EA006,Bride-wealth,EA006-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +76179,Ab1,EA006,Bride-wealth,EA006-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +76180,Ab10,EA006,Bride-wealth,EA006-1,,hunter1936,,1936,EthnographicAtlas_1967_p62, +76181,Ab11,EA006,Bride-wealth,EA006-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +76182,Ab12,EA006,Bride-wealth,EA006-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +76183,Ab13,EA006,Bride-wealth,EA006-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +76184,Ab14,EA006,Bride-wealth,EA006-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +76185,Ab15,EA006,Bride-wealth,EA006-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +76186,Ab16,EA006,Bride-wealth,EA006-1,,earthy1933,,1930,EthnographicAtlas_1967_p62, +76187,Ab17,EA006,Bride-wealth,EA006-1,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +76188,Ab18,EA006,Bride-wealth,EA006-1,"Bride service (code ""2"") plus token bride price (code ""3"") with uxorilocal residence as a patterned alternative",bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +76189,Ab19,EA006,Bride-wealth,EA006-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +76190,Ab2,EA006,Bride-wealth,EA006-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +76191,Ab20,EA006,Bride-wealth,EA006-1,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +76192,Ab21a,EA006,Bride-wealth,EA006-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +76193,Ab21b,EA006,Bride-wealth,EA006-1,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +76194,Ab22,EA006,Bride-wealth,EA006-1,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +76195,Ab3,EA006,Token bride-wealth,EA006-3,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +76196,Ab4,EA006,Bride-wealth,EA006-1,,junod1927,,1920,EthnographicAtlas_1967_p62, +76197,Ab5,EA006,Bride-wealth,EA006-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +76198,Ab6,EA006,Bride-wealth,EA006-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +76199,Ab7,EA006,Bride-wealth,EA006-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +76200,Ab8,EA006,Bride-wealth,EA006-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +76201,Ab9,EA006,Bride-wealth,EA006-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +76202,Ac1,EA006,Bride-wealth,EA006-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +76203,Ac10,EA006,Bride-service,EA006-2,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +76204,Ac11,EA006,Token bride-wealth,EA006-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +76205,Ac12,EA006,Token bride-wealth,EA006-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +76206,Ac13,EA006,Bride-wealth,EA006-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +76207,Ac14,EA006,Bride-wealth,EA006-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +76208,Ac15,EA006,Bride-wealth,EA006-1,"Alternatively code ""3"", token bride price, in which case children belong to the MoBr",tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +76209,Ac16,EA006,Bride-wealth,EA006-1,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +76210,Ac17,EA006,Bride-wealth,EA006-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +76211,Ac18,EA006,Bride-wealth,EA006-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +76212,Ac19,EA006,Bride-wealth,EA006-1,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +76213,Ac2,EA006,Token bride-wealth,EA006-3,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +76214,Ac20,EA006,Bride-wealth,EA006-1,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +76215,Ac21,EA006,Bride-wealth,EA006-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +76216,Ac22,EA006,Bride-wealth,EA006-1,,mertens1935,,1930,EthnographicAtlas_1967_p62, +76217,Ac23,EA006,Bride-wealth,EA006-1,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +76218,Ac24,EA006,Bride-wealth,EA006-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +76219,Ac25,EA006,Bride-wealth,EA006-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +76220,Ac26,EA006,Bride-wealth,EA006-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +76221,Ac27,EA006,Token bride-wealth,EA006-3,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +76222,Ac28,EA006,Bride-wealth,EA006-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +76223,Ac29,EA006,Bride-wealth,EA006-1,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +76224,Ac3,EA006,Bride-service,EA006-2,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +76225,Ac30,EA006,Bride-wealth,EA006-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +76226,Ac31,EA006,Bride-wealth,EA006-1,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +76227,Ac32,EA006,Token bride-wealth,EA006-3,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +76228,Ac33,EA006,Bride-service,EA006-2,"Formerly code ""1"", bride wealth, with ""2"", bride service, as alternative",lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +76229,Ac34,EA006,Bride-service,EA006-2,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +76230,Ac35,EA006,Bride-service,EA006-2,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +76231,Ac36,EA006,Bride-wealth,EA006-1,"Formerly Bride service (code ""2"") with token bride price (code ""3"")",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +76232,Ac37,EA006,Bride-service,EA006-2,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +76233,Ac38,EA006,Bride-service,EA006-2,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +76234,Ac39,EA006,Bride-service,EA006-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +76235,Ac4,EA006,Bride-wealth,EA006-1,"A patterned alternative is code ""3"", token bride price, with alternating Uxorilocal and Avunculocal residence",tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +76236,Ac40,EA006,Bride-service,EA006-2,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +76237,Ac41,EA006,Bride-service,EA006-2,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +76238,Ac42,EA006,Bride-service,EA006-2,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +76239,Ac43,EA006,Bride-wealth,EA006-1,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +76240,Ac5,EA006,Bride-service,EA006-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +76241,Ac6,EA006,Token bride-wealth,EA006-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +76242,Ac7,EA006,Insignificant,EA006-6,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +76243,Ac8,EA006,Bride-wealth,EA006-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +76244,Ac9,EA006,Token bride-wealth,EA006-3,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +76245,Ad1,EA006,Bride-wealth,EA006-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +76246,Ad10,EA006,Bride-wealth,EA006-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +76247,Ad11,EA006,Bride-wealth,EA006-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +76248,Ad12,EA006,Bride-wealth,EA006-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +76249,Ad13,EA006,Bride-wealth,EA006-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +76250,Ad14,EA006,Bride-wealth,EA006-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +76251,Ad15,EA006,Bride-wealth,EA006-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +76252,Ad16,EA006,Bride-wealth,EA006-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +76253,Ad17,EA006,Bride-wealth,EA006-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +76254,Ad18,EA006,Bride-wealth,EA006-1,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +76255,Ad19,EA006,Bride-wealth,EA006-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +76256,Ad2,EA006,Bride-wealth,EA006-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +76257,Ad20,EA006,Bride-wealth,EA006-1,"Alternatively code ""3"", token bride price, with code ""2"", bride service as alternate/supplementary; in this case children are affiliated with the mother's group",blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +76258,Ad21,EA006,Bride-wealth,EA006-1,,maurice193538,,1930,EthnographicAtlas_1967_p66, +76259,Ad22,EA006,Bride-wealth,EA006-1,"Alternatively code ""6"", absence of consideration, in which case children are affiliated with the mother's kin group",abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +76260,Ad23,EA006,Bride-wealth,EA006-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +76261,Ad24,EA006,Bride-wealth,EA006-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +76262,Ad25,EA006,Bride-wealth,EA006-1,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +76263,Ad26,EA006,Bride-wealth,EA006-1,,sick1916,,1910,EthnographicAtlas_1967_p66, +76264,Ad27,EA006,Bride-wealth,EA006-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +76265,Ad28,EA006,Bride-wealth,EA006-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +76266,Ad29,EA006,Bride-wealth,EA006-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +76267,Ad3,EA006,Bride-wealth,EA006-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +76268,Ad30,EA006,Bride-wealth,EA006-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +76269,Ad31,EA006,Bride-wealth,EA006-1,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +76270,Ad32,EA006,Bride-wealth,EA006-1,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +76271,Ad33,EA006,Bride-wealth,EA006-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +76272,Ad34,EA006,Bride-wealth,EA006-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +76273,Ad35,EA006,Bride-wealth,EA006-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +76274,Ad36,EA006,Bride-wealth,EA006-1,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +76275,Ad37,EA006,Bride-wealth,EA006-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +76276,Ad38,EA006,Token bride-wealth,EA006-3,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +76277,Ad39,EA006,Bride-wealth,EA006-1,,gray1963,,1950,EthnographicAtlas_1967_p66, +76278,Ad4,EA006,Bride-wealth,EA006-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +76279,Ad40,EA006,Bride-wealth,EA006-1,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +76280,Ad41,EA006,Bride-wealth,EA006-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +76281,Ad42,EA006,Bride-wealth,EA006-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +76282,Ad43,EA006,Bride-wealth,EA006-1,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +76283,Ad44,EA006,Bride-wealth,EA006-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +76284,Ad45,EA006,Bride-wealth,EA006-1,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +76285,Ad46,EA006,Bride-wealth,EA006-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +76286,Ad47,EA006,Bride-wealth,EA006-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +76287,Ad48,EA006,Bride-wealth,EA006-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +76288,Ad49,EA006,Bride-wealth,EA006-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +76289,Ad5,EA006,Bride-wealth,EA006-1,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +76290,Ad50,EA006,Bride-wealth,EA006-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +76291,Ad51,EA006,Token bride-wealth,EA006-3,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +76292,Ad6,EA006,Bride-wealth,EA006-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +76293,Ad7,EA006,Bride-wealth,EA006-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +76294,Ad8,EA006,Bride-wealth,EA006-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +76295,Ad9,EA006,Bride-wealth,EA006-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +76296,Ae1,EA006,Woman exchange,EA006-5,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +76297,Ae10,EA006,Bride-wealth,EA006-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +76298,Ae11,EA006,Bride-wealth,EA006-1,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +76299,Ae12,EA006,Bride-wealth,EA006-1,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +76300,Ae13,EA006,Bride-wealth,EA006-1,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +76301,Ae14,EA006,Bride-wealth,EA006-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +76302,Ae15,EA006,Bride-wealth,EA006-1,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +76303,Ae16,EA006,Bride-wealth,EA006-1,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +76304,Ae17,EA006,Bride-wealth,EA006-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +76305,Ae18,EA006,Bride-wealth,EA006-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +76306,Ae19,EA006,Bride-wealth,EA006-1,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +76307,Ae2,EA006,Bride-wealth,EA006-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +76308,Ae20,EA006,Bride-wealth,EA006-1,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +76309,Ae21,EA006,Bride-wealth,EA006-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +76310,Ae22,EA006,Bride-wealth,EA006-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +76311,Ae23,EA006,Bride-wealth,EA006-1,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +76312,Ae24,EA006,Bride-wealth,EA006-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +76313,Ae25,EA006,Bride-wealth,EA006-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +76314,Ae26,EA006,Bride-wealth,EA006-1,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +76315,Ae27,EA006,Bride-wealth,EA006-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +76316,Ae28,EA006,Bride-wealth,EA006-1,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +76317,Ae29,EA006,Bride-wealth,EA006-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +76318,Ae3,EA006,Bride-wealth,EA006-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +76319,Ae30,EA006,Bride-wealth,EA006-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +76320,Ae31,EA006,Bride-wealth,EA006-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +76321,Ae32,EA006,Bride-wealth,EA006-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +76322,Ae33,EA006,Woman exchange,EA006-5,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +76323,Ae34,EA006,Bride-wealth,EA006-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +76324,Ae35,EA006,Bride-wealth,EA006-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +76325,Ae36,EA006,Bride-wealth,EA006-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +76326,Ae37,EA006,Bride-wealth,EA006-1,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +76327,Ae38,EA006,Bride-wealth,EA006-1,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +76328,Ae39,EA006,Bride-wealth,EA006-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +76329,Ae4,EA006,Bride-wealth,EA006-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +76330,Ae40,EA006,Bride-wealth,EA006-1,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +76331,Ae41,EA006,Bride-wealth,EA006-1,,andersson1953,,1940,EthnographicAtlas_1967_p66, +76332,Ae42,EA006,Bride-wealth,EA006-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +76333,Ae43,EA006,Bride-wealth,EA006-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +76334,Ae44,EA006,Bride-wealth,EA006-1,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +76335,Ae45,EA006,Bride-wealth,EA006-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +76336,Ae46,EA006,Bride-wealth,EA006-1,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +76337,Ae47,EA006,Bride-wealth,EA006-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +76338,Ae48,EA006,Bride-wealth,EA006-1,Usually after capture,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +76339,Ae49,EA006,Bride-wealth,EA006-1,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +76340,Ae5,EA006,Bride-wealth,EA006-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +76341,Ae50,EA006,Bride-wealth,EA006-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +76342,Ae51,EA006,Woman exchange,EA006-5,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +76343,Ae52,EA006,Bride-wealth,EA006-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +76344,Ae53,EA006,Bride-wealth,EA006-1,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +76345,Ae54,EA006,Bride-wealth,EA006-1,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +76346,Ae55,EA006,Bride-wealth,EA006-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +76347,Ae56,EA006,Bride-service,EA006-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +76348,Ae57,EA006,Bride-wealth,EA006-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +76349,Ae58,EA006,Token bride-wealth,EA006-3,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +76350,Ae59,EA006,Bride-wealth,EA006-1,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +76351,Ae6,EA006,Bride-wealth,EA006-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +76352,Ae7,EA006,Bride-wealth,EA006-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +76353,Ae8,EA006,Token bride-wealth,EA006-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +76354,Ae9,EA006,Bride-wealth,EA006-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +76355,Af1,EA006,Bride-wealth,EA006-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +76356,Af10,EA006,Bride-wealth,EA006-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +76357,Af11,EA006,Bride-wealth,EA006-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +76358,Af12,EA006,Bride-wealth,EA006-1,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +76359,Af13,EA006,Bride-service,EA006-2,"But usually code ""1"", bride wealth, today",brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +76360,Af14,EA006,Bride-wealth,EA006-1,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +76361,Af15,EA006,Bride-wealth,EA006-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +76362,Af16,EA006,Bride-wealth,EA006-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +76363,Af17,EA006,Bride-wealth,EA006-1,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +76364,Af18,EA006,Bride-service,EA006-2,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +76365,Af19,EA006,Bride-wealth,EA006-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +76366,Af2,EA006,Bride-wealth,EA006-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +76367,Af20,EA006,Bride-wealth,EA006-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +76368,Af21,EA006,Bride-wealth,EA006-1,"Alternatively code ""3"", token bride price, in which case children belong to their mother's group",granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +76369,Af22,EA006,Token bride-wealth,EA006-3,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +76370,Af23,EA006,Bride-wealth,EA006-1,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +76371,Af24,EA006,Bride-service,EA006-2,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +76372,Af25,EA006,Bride-wealth,EA006-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +76373,Af26,EA006,Bride-wealth,EA006-1,"Or alternatively bride service (code ""2"") plus token bride price (code ""3""), in which case children belong to the mother's kin group",bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +76374,Af27,EA006,Woman exchange,EA006-5,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +76375,Af28,EA006,Bride-service,EA006-2,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +76376,Af29,EA006,Bride-wealth,EA006-1,"Formerly also code ""6,"" exchange of a sister or female relative",armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +76377,Af3,EA006,Bride-wealth,EA006-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +76378,Af30,EA006,Bride-wealth,EA006-1,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +76379,Af31,EA006,Bride-wealth,EA006-1,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +76380,Af32,EA006,Bride-wealth,EA006-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76381,Af33,EA006,Bride-wealth,EA006-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76382,Af34,EA006,Bride-wealth,EA006-1,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76383,Af35,EA006,Bride-wealth,EA006-1,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +76384,Af36,EA006,Bride-wealth,EA006-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +76385,Af37,EA006,Bride-wealth,EA006-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +76386,Af38,EA006,Bride-wealth,EA006-1,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +76387,Af39,EA006,Bride-wealth,EA006-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +76388,Af4,EA006,Bride-wealth,EA006-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +76389,Af40,EA006,Bride-wealth,EA006-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +76390,Af41,EA006,Bride-wealth,EA006-1,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +76391,Af42,EA006,Bride-wealth,EA006-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +76392,Af43,EA006,Bride-wealth,EA006-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +76393,Af44,EA006,Token bride-wealth,EA006-3,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +76394,Af45,EA006,Bride-wealth,EA006-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +76395,Af46,EA006,Bride-wealth,EA006-1,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +76396,Af47,EA006,Bride-wealth,EA006-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +76397,Af48,EA006,Bride-wealth,EA006-1,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +76398,Af49,EA006,Bride-wealth,EA006-1,,schwab1947,,1940,EthnographicAtlas_1967_p70, +76399,Af5,EA006,Bride-wealth,EA006-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +76400,Af50,EA006,Bride-wealth,EA006-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +76401,Af51,EA006,Bride-wealth,EA006-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +76402,Af52,EA006,Bride-wealth,EA006-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +76403,Af53,EA006,Bride-wealth,EA006-1,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +76404,Af54,EA006,Bride-wealth,EA006-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +76405,Af55,EA006,Bride-wealth,EA006-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +76406,Af56,EA006,Bride-wealth,EA006-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +76407,Af57,EA006,Bride-wealth,EA006-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +76408,Af58,EA006,Bride-wealth,EA006-1,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +76409,Af6,EA006,Bride-wealth,EA006-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +76410,Af7,EA006,Bride-wealth,EA006-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +76411,Af8,EA006,Bride-wealth,EA006-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +76412,Af9,EA006,Token bride-wealth,EA006-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +76413,Ag1,EA006,Bride-wealth,EA006-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +76414,Ag10,EA006,Bride-service,EA006-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +76415,Ag11,EA006,Bride-service,EA006-2,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +76416,Ag12,EA006,Bride-wealth,EA006-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +76417,Ag13,EA006,Bride-wealth,EA006-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +76418,Ag14,EA006,Woman exchange,EA006-5,Formerly,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +76419,Ag15,EA006,Bride-wealth,EA006-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +76420,Ag16,EA006,Bride-service,EA006-2,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +76421,Ag17,EA006,Bride-service,EA006-2,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +76422,Ag18,EA006,Insignificant,EA006-6,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +76423,Ag19,EA006,Bride-wealth,EA006-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +76424,Ag2,EA006,Bride-wealth,EA006-1,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +76425,Ag20,EA006,Bride-wealth,EA006-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +76426,Ag21,EA006,Bride-wealth,EA006-1,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +76427,Ag22,EA006,Bride-wealth,EA006-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +76428,Ag23,EA006,Bride-wealth,EA006-1,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +76429,Ag24,EA006,Bride-wealth,EA006-1,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +76430,Ag25,EA006,Bride-wealth,EA006-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +76431,Ag26,EA006,Bride-wealth,EA006-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +76432,Ag27,EA006,Bride-wealth,EA006-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +76433,Ag28,EA006,Bride-wealth,EA006-1,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +76434,Ag29,EA006,Token bride-wealth,EA006-3,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +76435,Ag3,EA006,Bride-service,EA006-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +76436,Ag30,EA006,Bride-service,EA006-2,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +76437,Ag31,EA006,Bride-wealth,EA006-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +76438,Ag32,EA006,Bride-wealth,EA006-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +76439,Ag33,EA006,Bride-wealth,EA006-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +76440,Ag34,EA006,Bride-service,EA006-2,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +76441,Ag35,EA006,Token bride-wealth,EA006-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +76442,Ag36,EA006,Bride-wealth,EA006-1,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +76443,Ag37,EA006,Bride-wealth,EA006-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +76444,Ag38,EA006,Bride-wealth,EA006-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +76445,Ag39,EA006,Bride-wealth,EA006-1,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +76446,Ag4,EA006,Bride-wealth,EA006-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +76447,Ag40,EA006,Bride-wealth,EA006-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +76448,Ag41,EA006,Bride-wealth,EA006-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +76449,Ag42,EA006,Bride-wealth,EA006-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +76450,Ag43,EA006,Token bride-wealth,EA006-3,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +76451,Ag44,EA006,Bride-wealth,EA006-1,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +76452,Ag45,EA006,Token bride-wealth,EA006-3,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +76453,Ag46,EA006,Bride-wealth,EA006-1,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +76454,Ag47,EA006,Bride-wealth,EA006-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +76455,Ag48,EA006,Bride-wealth,EA006-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +76456,Ag49,EA006,Bride-service,EA006-2,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +76457,Ag5,EA006,Bride-wealth,EA006-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +76458,Ag50,EA006,Woman exchange,EA006-5,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +76459,Ag51,EA006,Bride-service,EA006-2,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +76460,Ag52,EA006,Bride-wealth,EA006-1,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +76461,Ag53,EA006,Bride-wealth,EA006-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +76462,Ag54,EA006,Bride-wealth,EA006-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +76463,Ag6,EA006,Bride-wealth,EA006-1,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +76464,Ag7,EA006,Bride-wealth,EA006-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +76465,Ag8,EA006,Bride-service,EA006-2,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +76466,Ag9,EA006,Bride-wealth,EA006-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +76467,Ah1,EA006,Token bride-wealth,EA006-3,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76468,Ah10,EA006,Bride-wealth,EA006-1,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +76469,Ah11,EA006,Woman exchange,EA006-5,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +76470,Ah12,EA006,Woman exchange,EA006-5,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +76471,Ah13,EA006,Bride-service,EA006-2,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +76472,Ah14,EA006,Bride-wealth,EA006-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +76473,Ah15,EA006,Bride-wealth,EA006-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +76474,Ah16,EA006,Bride-wealth,EA006-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +76475,Ah17,EA006,Bride-wealth,EA006-1,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +76476,Ah18,EA006,Bride-wealth,EA006-1,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +76477,Ah19,EA006,Bride-service,EA006-2,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +76478,Ah2,EA006,Bride-wealth,EA006-1,,meek1931a,,1920,EthnographicAtlas_1967_p74, +76479,Ah20,EA006,Bride-wealth,EA006-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +76480,Ah21,EA006,Bride-wealth,EA006-1,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76481,Ah22,EA006,Bride-wealth,EA006-1,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +76482,Ah23,EA006,Bride-service,EA006-2,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76483,Ah24,EA006,Woman exchange,EA006-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76484,Ah25,EA006,Bride-wealth,EA006-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76485,Ah26,EA006,Token bride-wealth,EA006-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76486,Ah27,EA006,Bride-wealth,EA006-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76487,Ah28,EA006,Bride-wealth,EA006-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +76488,Ah29,EA006,Bride-service,EA006-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76489,Ah3,EA006,Woman exchange,EA006-5,"Alternatively code ""3"", token bride price, involving avunculocal residence and affiliation with mother's kin group",bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +76490,Ah30,EA006,Bride-wealth,EA006-1,,meek1931b,,1920,EthnographicAtlas_1967_p74, +76491,Ah31,EA006,Bride-wealth,EA006-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +76492,Ah32,EA006,Bride-wealth,EA006-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76493,Ah33,EA006,Bride-wealth,EA006-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +76494,Ah34,EA006,Bride-wealth,EA006-1,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +76495,Ah35,EA006,Bride-wealth,EA006-1,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76496,Ah36,EA006,Bride-wealth,EA006-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +76497,Ah37,EA006,Bride-wealth,EA006-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76498,Ah38,EA006,Bride-wealth,EA006-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +76499,Ah39,EA006,Bride-wealth,EA006-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +76500,Ah4,EA006,Woman exchange,EA006-5,"Exchange marriage, formerly preferred, is now abolished and has been replaced by bride-price, its former alternative",meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74,"Assume Murdock comment refers to Col 12, not Col 14 as stated in Gray (1999)" +76501,Ah5,EA006,Bride-wealth,EA006-1,"Exchange marriage has been abolished by the British administration; payment of a bride-price, formerly a less preferred mode, is now the rule",meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +76502,Ah6,EA006,Token bride-wealth,EA006-3,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +76503,Ah7,EA006,Bride-wealth,EA006-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +76504,Ah8,EA006,Bride-wealth,EA006-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +76505,Ah9,EA006,Woman exchange,EA006-5,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +76506,Ai1,EA006,Woman exchange,EA006-5,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +76507,Ai10,EA006,Bride-wealth,EA006-1,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +76508,Ai11,EA006,Bride-wealth,EA006-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +76509,Ai12,EA006,Bride-wealth,EA006-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +76510,Ai13,EA006,Bride-wealth,EA006-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +76511,Ai14,EA006,Bride-wealth,EA006-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +76512,Ai15,EA006,Bride-wealth,EA006-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +76513,Ai16,EA006,Bride-wealth,EA006-1,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +76514,Ai17,EA006,Bride-wealth,EA006-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +76515,Ai18,EA006,Bride-wealth,EA006-1,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +76516,Ai19,EA006,Bride-wealth,EA006-1,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +76517,Ai2,EA006,Bride-wealth,EA006-1,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +76518,Ai20,EA006,Bride-wealth,EA006-1,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +76519,Ai21,EA006,Bride-wealth,EA006-1,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +76520,Ai22,EA006,Bride-wealth,EA006-1,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +76521,Ai23,EA006,Bride-wealth,EA006-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +76522,Ai24,EA006,Bride-wealth,EA006-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +76523,Ai25,EA006,Bride-wealth,EA006-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +76524,Ai26,EA006,Bride-wealth,EA006-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +76525,Ai27,EA006,Bride-wealth,EA006-1,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +76526,Ai28,EA006,Bride-wealth,EA006-1,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +76527,Ai29,EA006,Bride-wealth,EA006-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +76528,Ai3,EA006,Bride-wealth,EA006-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +76529,Ai30,EA006,Bride-wealth,EA006-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +76530,Ai31,EA006,Bride-wealth,EA006-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +76531,Ai32,EA006,Bride-wealth,EA006-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +76532,Ai33,EA006,Bride-wealth,EA006-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +76533,Ai34,EA006,Bride-wealth,EA006-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +76534,Ai35,EA006,Bride-wealth,EA006-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +76535,Ai36,EA006,Bride-wealth,EA006-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +76536,Ai37,EA006,Bride-wealth,EA006-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +76537,Ai38,EA006,Bride-wealth,EA006-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +76538,Ai39,EA006,Bride-wealth,EA006-1,,nadel1947,,1940,EthnographicAtlas_1967_p74, +76539,Ai4,EA006,Bride-service,EA006-2,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +76540,Ai40,EA006,Bride-wealth,EA006-1,,nadel1947,,1940,EthnographicAtlas_1967_p74, +76541,Ai41,EA006,Bride-wealth,EA006-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +76542,Ai42,EA006,Bride-wealth,EA006-1,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +76543,Ai43,EA006,Bride-wealth,EA006-1,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +76544,Ai44,EA006,Bride-wealth,EA006-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +76545,Ai45,EA006,Bride-wealth,EA006-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +76546,Ai46,EA006,Woman exchange,EA006-5,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +76547,Ai47,EA006,Woman exchange,EA006-5,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +76548,Ai5,EA006,Bride-wealth,EA006-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +76549,Ai6,EA006,Bride-wealth,EA006-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +76550,Ai7,EA006,Bride-wealth,EA006-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +76551,Ai8,EA006,Bride-wealth,EA006-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +76552,Ai9,EA006,Bride-wealth,EA006-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +76553,Aj1,EA006,Bride-wealth,EA006-1,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +76554,Aj10,EA006,Bride-wealth,EA006-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +76555,Aj11,EA006,Bride-wealth,EA006-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +76556,Aj12,EA006,Bride-wealth,EA006-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +76557,Aj13,EA006,Bride-wealth,EA006-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +76558,Aj14,EA006,Bride-wealth,EA006-1,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +76559,Aj15,EA006,Bride-wealth,EA006-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +76560,Aj16,EA006,Bride-wealth,EA006-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +76561,Aj17,EA006,Bride-wealth,EA006-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +76562,Aj18,EA006,Bride-wealth,EA006-1,,jensen1959,,1950,EthnographicAtlas_1967_p78, +76563,Aj19,EA006,Bride-wealth,EA006-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +76564,Aj2,EA006,Bride-wealth,EA006-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +76565,Aj20,EA006,Bride-wealth,EA006-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +76566,Aj21,EA006,Bride-wealth,EA006-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +76567,Aj22,EA006,Bride-wealth,EA006-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +76568,Aj23,EA006,Bride-wealth,EA006-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +76569,Aj24,EA006,Bride-wealth,EA006-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +76570,Aj25,EA006,Bride-wealth,EA006-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +76571,Aj26,EA006,Bride-wealth,EA006-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +76572,Aj27,EA006,Bride-wealth,EA006-1,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +76573,Aj28,EA006,Bride-wealth,EA006-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +76574,Aj29,EA006,Bride-wealth,EA006-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +76575,Aj3,EA006,Bride-wealth,EA006-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +76576,Aj30,EA006,Bride-wealth,EA006-1,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +76577,Aj31,EA006,Bride-wealth,EA006-1,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +76578,Aj4,EA006,Bride-wealth,EA006-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +76579,Aj5,EA006,Bride-wealth,EA006-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +76580,Aj6,EA006,Bride-wealth,EA006-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +76581,Aj7,EA006,Bride-wealth,EA006-1,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +76582,Aj8,EA006,Bride-wealth,EA006-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +76583,Aj9,EA006,Bride-wealth,EA006-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +76584,Ca1,EA006,Insignificant,EA006-6,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +76585,Ca10,EA006,Bride-wealth,EA006-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +76586,Ca11,EA006,Bride-wealth,EA006-1,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +76587,Ca12,EA006,Bride-wealth,EA006-1,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +76588,Ca13,EA006,Bride-wealth,EA006-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +76589,Ca14,EA006,Bride-wealth,EA006-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +76590,Ca15,EA006,Token bride-wealth,EA006-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +76591,Ca16,EA006,Bride-wealth,EA006-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +76592,Ca17,EA006,Bride-wealth,EA006-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +76593,Ca18,EA006,Bride-wealth,EA006-1,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +76594,Ca19,EA006,Bride-wealth,EA006-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +76595,Ca2,EA006,Bride-wealth,EA006-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +76596,Ca20,EA006,Bride-wealth,EA006-1,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +76597,Ca21,EA006,Bride-wealth,EA006-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +76598,Ca22,EA006,Bride-wealth,EA006-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +76599,Ca23,EA006,Bride-wealth,EA006-1,,jensen1959,,1950,EthnographicAtlas_1967_p78, +76600,Ca24,EA006,Bride-wealth,EA006-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +76601,Ca25,EA006,Bride-wealth,EA006-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +76602,Ca26,EA006,Bride-wealth,EA006-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +76603,Ca27,EA006,?,EA006-NA,,,,,, +76604,Ca28,EA006,Bride-wealth,EA006-1,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +76605,Ca29,EA006,Bride-wealth,EA006-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +76606,Ca3,EA006,Dowry,EA006-7,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +76607,Ca30,EA006,Bride-wealth,EA006-1,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +76608,Ca31,EA006,Insignificant,EA006-6,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +76609,Ca32,EA006,Bride-wealth,EA006-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +76610,Ca33,EA006,Bride-wealth,EA006-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +76611,Ca34,EA006,Bride-wealth,EA006-1,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +76612,Ca35,EA006,Bride-wealth,EA006-1,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +76613,Ca36,EA006,Bride-wealth,EA006-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +76614,Ca37,EA006,Bride-wealth,EA006-1,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +76615,Ca38,EA006,Bride-wealth,EA006-1,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +76616,Ca39,EA006,Bride-wealth,EA006-1,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +76617,Ca4,EA006,Bride-wealth,EA006-1,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +76618,Ca40,EA006,Token bride-wealth,EA006-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +76619,Ca41,EA006,Insignificant,EA006-6,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +76620,Ca42,EA006,Bride-wealth,EA006-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +76621,Ca43,EA006,Bride-service,EA006-2,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +76622,Ca5,EA006,Bride-wealth,EA006-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +76623,Ca6,EA006,Bride-wealth,EA006-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +76624,Ca7,EA006,Insignificant,EA006-6,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +76625,Ca8,EA006,Bride-wealth,EA006-1,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +76626,Ca9,EA006,Bride-wealth,EA006-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +76627,Cb1,EA006,Bride-wealth,EA006-1,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +76628,Cb10,EA006,Bride-wealth,EA006-1,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +76629,Cb11,EA006,Bride-wealth,EA006-1,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +76630,Cb12,EA006,Bride-wealth,EA006-1,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +76631,Cb13,EA006,Bride-wealth,EA006-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +76632,Cb14,EA006,Bride-wealth,EA006-1,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +76633,Cb15,EA006,Bride-wealth,EA006-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +76634,Cb16,EA006,Bride-wealth,EA006-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +76635,Cb17,EA006,Bride-wealth,EA006-1,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +76636,Cb18,EA006,Gift exchange,EA006-4,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +76637,Cb19,EA006,Bride-wealth,EA006-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +76638,Cb2,EA006,Bride-wealth,EA006-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +76639,Cb20,EA006,Bride-wealth,EA006-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +76640,Cb21,EA006,Bride-wealth,EA006-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +76641,Cb22,EA006,Bride-wealth,EA006-1,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +76642,Cb23,EA006,Bride-wealth,EA006-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +76643,Cb24,EA006,Bride-wealth,EA006-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +76644,Cb25,EA006,Bride-wealth,EA006-1,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +76645,Cb26,EA006,Bride-wealth,EA006-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +76646,Cb27,EA006,Bride-wealth,EA006-1,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76647,Cb28,EA006,Bride-wealth,EA006-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76648,Cb29,EA006,Bride-wealth,EA006-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +76649,Cb3,EA006,Bride-wealth,EA006-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +76650,Cb4,EA006,Bride-wealth,EA006-1,,reid1930,,1920,EthnographicAtlas_1967_p78, +76651,Cb5,EA006,Bride-wealth,EA006-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +76652,Cb6,EA006,Bride-service,EA006-2,,woodnd,,1920,EthnographicAtlas_1967_p78, +76653,Cb7,EA006,Bride-wealth,EA006-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +76654,Cb8,EA006,Bride-wealth,EA006-1,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +76655,Cb9,EA006,Bride-wealth,EA006-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +76656,Cc1,EA006,Bride-wealth,EA006-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +76657,Cc10,EA006,Bride-wealth,EA006-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +76658,Cc11,EA006,Bride-wealth,EA006-1,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +76659,Cc12,EA006,Bride-wealth,EA006-1,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +76660,Cc13,EA006,Bride-wealth,EA006-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +76661,Cc14,EA006,Bride-wealth,EA006-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +76662,Cc15,EA006,?,EA006-NA,,,,,, +76663,Cc16,EA006,Bride-wealth,EA006-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +76664,Cc17,EA006,Bride-wealth,EA006-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +76665,Cc18,EA006,Bride-wealth,EA006-1,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +76666,Cc19,EA006,Bride-wealth,EA006-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +76667,Cc2,EA006,Bride-wealth,EA006-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +76668,Cc20,EA006,Bride-wealth,EA006-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +76669,Cc3,EA006,Bride-wealth,EA006-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +76670,Cc4,EA006,Bride-wealth,EA006-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +76671,Cc5,EA006,Bride-wealth,EA006-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +76672,Cc6,EA006,Bride-wealth,EA006-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +76673,Cc7,EA006,Bride-wealth,EA006-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76674,Cc8,EA006,Bride-wealth,EA006-1,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +76675,Cc9,EA006,Bride-wealth,EA006-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +76676,Cd1,EA006,Bride-wealth,EA006-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +76677,Cd10,EA006,Bride-wealth,EA006-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +76678,Cd11,EA006,Bride-wealth,EA006-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +76679,Cd12,EA006,Bride-wealth,EA006-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +76680,Cd13,EA006,Bride-wealth,EA006-1,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +76681,Cd14,EA006,Bride-wealth,EA006-1,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +76682,Cd15,EA006,Bride-wealth,EA006-1,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +76683,Cd16,EA006,Bride-wealth,EA006-1,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +76684,Cd17,EA006,Bride-wealth,EA006-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +76685,Cd18,EA006,Bride-wealth,EA006-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +76686,Cd19,EA006,Bride-wealth,EA006-1,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +76687,Cd2,EA006,Bride-wealth,EA006-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +76688,Cd20,EA006,Bride-wealth,EA006-1,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +76689,Cd21,EA006,Bride-wealth,EA006-1,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +76690,Cd3,EA006,Bride-wealth,EA006-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +76691,Cd4,EA006,Bride-wealth,EA006-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +76692,Cd5,EA006,Bride-wealth,EA006-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +76693,Cd6,EA006,Bride-wealth,EA006-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +76694,Cd7,EA006,Bride-wealth,EA006-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +76695,Cd8,EA006,Bride-wealth,EA006-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +76696,Cd9,EA006,Bride-wealth,EA006-1,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +76697,Ce1,EA006,Bride-wealth,EA006-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +76698,Ce2,EA006,Insignificant,EA006-6,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +76699,Ce3,EA006,Dowry,EA006-7,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +76700,Ce4,EA006,Dowry,EA006-7,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76701,Ce5,EA006,Insignificant,EA006-6,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +76702,Ce6,EA006,Insignificant,EA006-6,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +76703,Ce7,EA006,Dowry,EA006-7,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +76704,Ce8,EA006,Dowry,EA006-7,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +76705,Cf1,EA006,Insignificant,EA006-6,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +76706,Cf2,EA006,Dowry,EA006-7,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +76707,Cf3,EA006,Insignificant,EA006-6,,munch1945,,1930,EthnographicAtlas_1967_p82, +76708,Cf4,EA006,Insignificant,EA006-6,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +76709,Cf5,EA006,Dowry,EA006-7,,miner1939,,1930,EthnographicAtlas_1967_p82, +76710,Cg1,EA006,Insignificant,EA006-6,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +76711,Cg2,EA006,Dowry,EA006-7,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +76712,Cg3,EA006,Dowry,EA006-7,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +76713,Cg4,EA006,Insignificant,EA006-6,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +76714,Cg5,EA006,Dowry,EA006-7,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +76715,Ch1,EA006,Dowry,EA006-7,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +76716,Ch10,EA006,Insignificant,EA006-6,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +76717,Ch11,EA006,Gift exchange,EA006-4,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +76718,Ch2,EA006,Dowry,EA006-7,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +76719,Ch3,EA006,Dowry,EA006-7,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +76720,Ch4,EA006,Dowry,EA006-7,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +76721,Ch5,EA006,Insignificant,EA006-6,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +76722,Ch6,EA006,Dowry,EA006-7,,ember1954,,1910,EthnographicAtlas_1967_p82, +76723,Ch7,EA006,Dowry,EA006-7,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +76724,Ch8,EA006,Gift exchange,EA006-4,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +76725,Ch9,EA006,Dowry,EA006-7,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +76726,Ci1,EA006,Gift exchange,EA006-4,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +76727,Ci10,EA006,Dowry,EA006-7,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +76728,Ci11,EA006,Bride-wealth,EA006-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +76729,Ci12,EA006,Gift exchange,EA006-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +76730,Ci2,EA006,Bride-wealth,EA006-1,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +76731,Ci3,EA006,Bride-wealth,EA006-1,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +76732,Ci4,EA006,Bride-wealth,EA006-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +76733,Ci5,EA006,Bride-wealth,EA006-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +76734,Ci6,EA006,Bride-wealth,EA006-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +76735,Ci7,EA006,Bride-wealth,EA006-1,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +76736,Ci8,EA006,Dowry,EA006-7,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +76737,Ci9,EA006,Bride-wealth,EA006-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +76738,Cj1,EA006,Bride-wealth,EA006-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +76739,Cj10,EA006,Bride-wealth,EA006-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +76740,Cj2,EA006,Bride-wealth,EA006-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +76741,Cj3,EA006,Bride-wealth,EA006-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +76742,Cj4,EA006,Token bride-wealth,EA006-3,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +76743,Cj5,EA006,Bride-wealth,EA006-1,,dickson1949,,1930,EthnographicAtlas_1967_p86, +76744,Cj6,EA006,Bride-wealth,EA006-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +76745,Cj7,EA006,Insignificant,EA006-6,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +76746,Cj8,EA006,Bride-wealth,EA006-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +76747,Cj9,EA006,Bride-wealth,EA006-1,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +76748,Ea1,EA006,Bride-wealth,EA006-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +76749,Ea10,EA006,Bride-wealth,EA006-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +76750,Ea11,EA006,Bride-wealth,EA006-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +76751,Ea12,EA006,Bride-wealth,EA006-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +76752,Ea13,EA006,Dowry,EA006-7,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +76753,Ea2,EA006,Bride-wealth,EA006-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +76754,Ea3,EA006,Bride-wealth,EA006-1,The dowry is approximately equal in value to the bride-price,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +76755,Ea4,EA006,Bride-wealth,EA006-1,,barth1956b,,1950,EthnographicAtlas_1967_p86, +76756,Ea5,EA006,Bride-wealth,EA006-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +76757,Ea6,EA006,Bride-wealth,EA006-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +76758,Ea7,EA006,Bride-wealth,EA006-1,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +76759,Ea8,EA006,Bride-wealth,EA006-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +76760,Ea9,EA006,Bride-wealth,EA006-1,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +76761,Eb1,EA006,Bride-wealth,EA006-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +76762,Eb2,EA006,Bride-wealth,EA006-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +76763,Eb3,EA006,Bride-wealth,EA006-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +76764,Eb4,EA006,Bride-wealth,EA006-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +76765,Eb5,EA006,Bride-wealth,EA006-1,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +76766,Eb6,EA006,Bride-wealth,EA006-1,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +76767,Eb7,EA006,Bride-wealth,EA006-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +76768,Eb8,EA006,Bride-wealth,EA006-1,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +76769,Ec1,EA006,Bride-wealth,EA006-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +76770,Ec10,EA006,Bride-wealth,EA006-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +76771,Ec11,EA006,Bride-wealth,EA006-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +76772,Ec2,EA006,Gift exchange,EA006-4,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76773,Ec3,EA006,Bride-service,EA006-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +76774,Ec4,EA006,Bride-wealth,EA006-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +76775,Ec5,EA006,Bride-service,EA006-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +76776,Ec6,EA006,Bride-service,EA006-2,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +76777,Ec7,EA006,Insignificant,EA006-6,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +76778,Ec8,EA006,Bride-wealth,EA006-1,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +76779,Ec9,EA006,Bride-wealth,EA006-1,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +76780,Ed1,EA006,Insignificant,EA006-6,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +76781,Ed10,EA006,Dowry,EA006-7,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +76782,Ed13,EA006,Insignificant,EA006-6,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +76783,Ed14,EA006,Bride-wealth,EA006-1,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +76784,Ed15a,EA006,Insignificant,EA006-6,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +76785,Ed15b,EA006,Dowry,EA006-7,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +76786,Ed16,EA006,Bride-wealth,EA006-1,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +76787,Ed2,EA006,Bride-wealth,EA006-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +76788,Ed3,EA006,Bride-wealth,EA006-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +76789,Ed4,EA006,Bride-wealth,EA006-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +76790,Ed5,EA006,Gift exchange,EA006-4,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76791,Ed6,EA006,Bride-wealth,EA006-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +76792,Ed7,EA006,Token bride-wealth,EA006-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +76793,Ed8,EA006,Bride-wealth,EA006-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +76794,Ed9,EA006,Bride-wealth,EA006-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +76795,Ee1,EA006,Bride-wealth,EA006-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +76796,Ee2,EA006,Token bride-wealth,EA006-3,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +76797,Ee3,EA006,Bride-wealth,EA006-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +76798,Ee4,EA006,Dowry,EA006-7,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +76799,Ee5,EA006,Bride-wealth,EA006-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +76800,Ee6,EA006,Dowry,EA006-7,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +76801,Ee7,EA006,Bride-wealth,EA006-1,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +76802,Ee8,EA006,Dowry,EA006-7,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +76803,Ef1,EA006,Bride-wealth,EA006-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +76804,Ef10,EA006,Bride-wealth,EA006-1,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76805,Ef11,EA006,Gift exchange,EA006-4,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +76806,Ef2,EA006,Dowry,EA006-7,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +76807,Ef3,EA006,Bride-wealth,EA006-1,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +76808,Ef4,EA006,Bride-wealth,EA006-1,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +76809,Ef5,EA006,Bride-wealth,EA006-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +76810,Ef6,EA006,Bride-wealth,EA006-1,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +76811,Ef7,EA006,Bride-wealth,EA006-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +76812,Ef8,EA006,Bride-wealth,EA006-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +76813,Ef9,EA006,Bride-wealth,EA006-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76814,Eg1,EA006,Token bride-wealth,EA006-3,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76815,Eg10,EA006,Dowry,EA006-7,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +76816,Eg11,EA006,?,EA006-NA,,,,,, +76817,Eg12,EA006,Bride-wealth,EA006-1,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +76818,Eg13,EA006,Bride-wealth,EA006-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76819,Eg14,EA006,Token bride-wealth,EA006-3,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +76820,Eg2,EA006,Dowry,EA006-7,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +76821,Eg3,EA006,Bride-wealth,EA006-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +76822,Eg4,EA006,Token bride-wealth,EA006-3,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +76823,Eg5,EA006,Insignificant,EA006-6,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +76824,Eg6,EA006,Insignificant,EA006-6,Entry pertains to the Nayar caste; a bride-price and a dowry are customary in the Tiyyar and Mappilla castes,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +76825,Eg7,EA006,Bride-wealth,EA006-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +76826,Eg8,EA006,Bride-wealth,EA006-1,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +76827,Eg9,EA006,Bride-wealth,EA006-1,,elwin1939,,1930,EthnographicAtlas_1967_p90, +76828,Eh1,EA006,Insignificant,EA006-6,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +76829,Eh10,EA006,Token bride-wealth,EA006-3,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +76830,Eh2,EA006,Token bride-wealth,EA006-3,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +76831,Eh3,EA006,Token bride-wealth,EA006-3,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +76832,Eh4,EA006,Token bride-wealth,EA006-3,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76833,Eh5,EA006,Insignificant,EA006-6,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +76834,Eh6,EA006,Dowry,EA006-7,The dowry is really a daughter's inheritance received in advance,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +76835,Eh7,EA006,Bride-wealth,EA006-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +76836,Eh8,EA006,Insignificant,EA006-6,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +76837,Eh9,EA006,Token bride-wealth,EA006-3,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +76838,Ei1,EA006,Insignificant,EA006-6,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76839,Ei10,EA006,Bride-wealth,EA006-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +76840,Ei11,EA006,Bride-service,EA006-2,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +76841,Ei12,EA006,Bride-wealth,EA006-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +76842,Ei13,EA006,Token bride-wealth,EA006-3,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +76843,Ei14,EA006,Token bride-wealth,EA006-3,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +76844,Ei15,EA006,Bride-wealth,EA006-1,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +76845,Ei16,EA006,Bride-wealth,EA006-1,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +76846,Ei17,EA006,Insignificant,EA006-6,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +76847,Ei18,EA006,Bride-wealth,EA006-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +76848,Ei19,EA006,Bride-wealth,EA006-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +76849,Ei2,EA006,Bride-wealth,EA006-1,,mills1922,,1920,EthnographicAtlas_1967_p90, +76850,Ei20,EA006,Bride-wealth,EA006-1,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +76851,Ei3,EA006,Dowry,EA006-7,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +76852,Ei4,EA006,Bride-wealth,EA006-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +76853,Ei5,EA006,Bride-wealth,EA006-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +76854,Ei6,EA006,Bride-service,EA006-2,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +76855,Ei7,EA006,Insignificant,EA006-6,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +76856,Ei8,EA006,Insignificant,EA006-6,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +76857,Ei9,EA006,Bride-wealth,EA006-1,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +76858,Ej1,EA006,Bride-wealth,EA006-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +76859,Ej10,EA006,Dowry,EA006-7,"Entry follows Donoghue; other sources report code ""1"", bride wealth",donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +76860,Ej11,EA006,Token bride-wealth,EA006-3,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +76861,Ej12,EA006,Bride-wealth,EA006-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +76862,Ej13,EA006,Bride-wealth,EA006-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +76863,Ej14,EA006,Insignificant,EA006-6,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76864,Ej15,EA006,Token bride-wealth,EA006-3,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +76865,Ej16,EA006,Bride-wealth,EA006-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +76866,Ej2,EA006,Gift exchange,EA006-4,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +76867,Ej3,EA006,Insignificant,EA006-6,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +76868,Ej4,EA006,Token bride-wealth,EA006-3,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +76869,Ej5,EA006,Bride-wealth,EA006-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +76870,Ej6,EA006,Insignificant,EA006-6,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +76871,Ej7,EA006,Insignificant,EA006-6,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +76872,Ej8,EA006,Bride-wealth,EA006-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +76873,Ej9,EA006,Token bride-wealth,EA006-3,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +76874,Ia1,EA006,Bride-wealth,EA006-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +76875,Ia10,EA006,Bride-wealth,EA006-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +76876,Ia11,EA006,Insignificant,EA006-6,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +76877,Ia12,EA006,Bride-wealth,EA006-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +76878,Ia13,EA006,Bride-wealth,EA006-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +76879,Ia14,EA006,Insignificant,EA006-6,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +76880,Ia15,EA006,Bride-wealth,EA006-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +76881,Ia16,EA006,Insignificant,EA006-6,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +76882,Ia17,EA006,Bride-wealth,EA006-1,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +76883,Ia18,EA006,Insignificant,EA006-6,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +76884,Ia2,EA006,Gift exchange,EA006-4,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +76885,Ia3,EA006,Bride-wealth,EA006-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +76886,Ia4,EA006,Bride-wealth,EA006-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +76887,Ia5,EA006,Bride-service,EA006-2,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +76888,Ia6,EA006,Bride-wealth,EA006-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76889,Ia7,EA006,Bride-service,EA006-2,"Formerly code ""1"", bride wealth",fox1954,,1950,EthnographicAtlas_1967_p90, +76890,Ia8,EA006,Bride-service,EA006-2,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +76891,Ia9,EA006,Insignificant,EA006-6,"Entry follows Mabuchi; Wei reports code ""1"", bride wealth",mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +76892,Ib1,EA006,Insignificant,EA006-6,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76893,Ib2,EA006,Insignificant,EA006-6,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76894,Ib3,EA006,Token bride-wealth,EA006-3,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +76895,Ib4,EA006,Bride-wealth,EA006-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +76896,Ib5,EA006,Bride-wealth,EA006-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +76897,Ib6,EA006,Insignificant,EA006-6,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +76898,Ib7,EA006,Bride-service,EA006-2,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +76899,Ib8,EA006,Bride-service,EA006-2,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +76900,Ib9,EA006,Bride-wealth,EA006-1,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +76901,Ic1,EA006,Bride-wealth,EA006-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76902,Ic10,EA006,Bride-wealth,EA006-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +76903,Ic11,EA006,Bride-wealth,EA006-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76904,Ic12,EA006,Insignificant,EA006-6,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +76905,Ic13,EA006,Bride-wealth,EA006-1,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +76906,Ic2,EA006,Bride-wealth,EA006-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +76907,Ic3,EA006,Bride-wealth,EA006-1,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +76908,Ic4,EA006,Bride-wealth,EA006-1,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +76909,Ic5,EA006,Bride-wealth,EA006-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +76910,Ic6,EA006,Bride-wealth,EA006-1,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +76911,Ic7,EA006,Bride-wealth,EA006-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +76912,Ic8,EA006,Bride-wealth,EA006-1,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +76913,Ic9,EA006,Gift exchange,EA006-4,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +76914,Id1,EA006,Dowry,EA006-7,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +76915,Id10,EA006,Token bride-wealth,EA006-3,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +76916,Id11,EA006,Woman exchange,EA006-5,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +76917,Id12,EA006,Insignificant,EA006-6,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +76918,Id13,EA006,Insignificant,EA006-6,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +76919,Id2,EA006,Bride-service,EA006-2,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +76920,Id3,EA006,Bride-wealth,EA006-1,"Formerly code ""6,"" exchange of a sister or female relative",basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +76921,Id4,EA006,Woman exchange,EA006-5,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +76922,Id5,EA006,Woman exchange,EA006-5,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +76923,Id6,EA006,Dowry,EA006-7,"Also code ""6"", absence of consideration",mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +76924,Id7,EA006,?,EA006-NA,,,,,, +76925,Id8,EA006,Insignificant,EA006-6,Marriage by capture was common,roth1890,,1830,EthnographicAtlas_1967_p94, +76926,Id9,EA006,Woman exchange,EA006-5,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +76927,Ie1,EA006,Bride-wealth,EA006-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76928,Ie10,EA006,Bride-wealth,EA006-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +76929,Ie11,EA006,Gift exchange,EA006-4,,bowers1964,,1950,EthnographicAtlas_1967_p94, +76930,Ie12,EA006,Bride-wealth,EA006-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76931,Ie13,EA006,Woman exchange,EA006-5,"Recently more commonly code ""1"", bride wealth",landtman1927,,1920,EthnographicAtlas_1967_p94, +76932,Ie14,EA006,Woman exchange,EA006-5,,haddon1908,,1900,EthnographicAtlas_1967_p94, +76933,Ie15,EA006,Bride-wealth,EA006-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76934,Ie16,EA006,Bride-wealth,EA006-1,,williams194041,,1940,EthnographicAtlas_1967_p94, +76935,Ie17,EA006,Bride-wealth,EA006-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +76936,Ie18,EA006,Woman exchange,EA006-5,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +76937,Ie19,EA006,Woman exchange,EA006-5,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +76938,Ie2,EA006,Woman exchange,EA006-5,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +76939,Ie20,EA006,Bride-wealth,EA006-1,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +76940,Ie21,EA006,Gift exchange,EA006-4,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +76941,Ie22,EA006,Bride-wealth,EA006-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +76942,Ie23,EA006,Bride-wealth,EA006-1,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +76943,Ie24,EA006,Bride-wealth,EA006-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +76944,Ie25,EA006,Bride-wealth,EA006-1,,williamson1912,,1920,EthnographicAtlas_1967_p94, +76945,Ie26,EA006,Woman exchange,EA006-5,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +76946,Ie27,EA006,Woman exchange,EA006-5,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +76947,Ie28,EA006,Woman exchange,EA006-5,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +76948,Ie29,EA006,Insignificant,EA006-6,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76949,Ie3,EA006,Insignificant,EA006-6,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76950,Ie30,EA006,Woman exchange,EA006-5,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +76951,Ie31,EA006,Bride-wealth,EA006-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +76952,Ie32,EA006,Bride-wealth,EA006-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +76953,Ie33,EA006,Woman exchange,EA006-5,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +76954,Ie34,EA006,Bride-wealth,EA006-1,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +76955,Ie35,EA006,Bride-wealth,EA006-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +76956,Ie36,EA006,Woman exchange,EA006-5,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +76957,Ie37,EA006,Bride-wealth,EA006-1,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +76958,Ie38,EA006,Gift exchange,EA006-4,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +76959,Ie39,EA006,Bride-wealth,EA006-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +76960,Ie4,EA006,Gift exchange,EA006-4,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76961,Ie5,EA006,Woman exchange,EA006-5,,williams1936,,1930,EthnographicAtlas_1967_p94, +76962,Ie6,EA006,Gift exchange,EA006-4,,held1947,,1930,EthnographicAtlas_1967_p94, +76963,Ie7,EA006,Bride-wealth,EA006-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +76964,Ie8,EA006,Bride-wealth,EA006-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +76965,Ie9,EA006,Bride-wealth,EA006-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +76966,If1,EA006,Bride-wealth,EA006-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +76967,If10,EA006,Insignificant,EA006-6,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +76968,If11,EA006,Insignificant,EA006-6,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +76969,If12,EA006,Insignificant,EA006-6,,mason1954,,1940,EthnographicAtlas_1967_p98, +76970,If13,EA006,Insignificant,EA006-6,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +76971,If14,EA006,Gift exchange,EA006-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +76972,If15,EA006,Insignificant,EA006-6,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +76973,If16,EA006,Insignificant,EA006-6,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +76974,If17,EA006,Insignificant,EA006-6,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +76975,If2,EA006,Insignificant,EA006-6,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +76976,If3,EA006,Insignificant,EA006-6,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +76977,If4,EA006,Insignificant,EA006-6,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +76978,If5,EA006,Insignificant,EA006-6,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +76979,If6,EA006,Insignificant,EA006-6,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +76980,If7,EA006,Bride-wealth,EA006-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +76981,If8,EA006,Insignificant,EA006-6,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +76982,If9,EA006,Bride-service,EA006-2,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +76983,Ig1,EA006,Bride-wealth,EA006-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +76984,Ig10,EA006,Gift exchange,EA006-4,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +76985,Ig11,EA006,Bride-wealth,EA006-1,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +76986,Ig12,EA006,Bride-wealth,EA006-1,But no bride-price is paid when residence is uxorilocal,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +76987,Ig13,EA006,Insignificant,EA006-6,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +76988,Ig14,EA006,Gift exchange,EA006-4,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +76989,Ig15,EA006,?,EA006-NA,,,,,, +76990,Ig16,EA006,?,EA006-NA,,,,,, +76991,Ig17,EA006,Bride-wealth,EA006-1,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +76992,Ig18,EA006,Bride-wealth,EA006-1,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +76993,Ig19,EA006,Bride-wealth,EA006-1,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +76994,Ig2,EA006,Gift exchange,EA006-4,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +76995,Ig20,EA006,Bride-wealth,EA006-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +76996,Ig21,EA006,Bride-wealth,EA006-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +76997,Ig3,EA006,Bride-wealth,EA006-1,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +76998,Ig4,EA006,Bride-wealth,EA006-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +76999,Ig5,EA006,Gift exchange,EA006-4,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +77000,Ig6,EA006,Bride-wealth,EA006-1,,ivens1927,,1900,EthnographicAtlas_1967_p98, +77001,Ig7,EA006,Bride-wealth,EA006-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +77002,Ig8,EA006,Bride-wealth,EA006-1,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +77003,Ig9,EA006,Gift exchange,EA006-4,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +77004,Ih1,EA006,Bride-wealth,EA006-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +77005,Ih10,EA006,Bride-wealth,EA006-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77006,Ih11,EA006,Bride-wealth,EA006-1,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +77007,Ih12,EA006,Bride-wealth,EA006-1,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +77008,Ih13,EA006,Woman exchange,EA006-5,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +77009,Ih14,EA006,Bride-wealth,EA006-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +77010,Ih2,EA006,Bride-wealth,EA006-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77011,Ih3,EA006,Woman exchange,EA006-5,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +77012,Ih4,EA006,Gift exchange,EA006-4,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77013,Ih5,EA006,Woman exchange,EA006-5,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +77014,Ih6,EA006,Insignificant,EA006-6,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +77015,Ih7,EA006,Bride-wealth,EA006-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +77016,Ih8,EA006,Gift exchange,EA006-4,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +77017,Ih9,EA006,Bride-wealth,EA006-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77018,Ii1,EA006,Gift exchange,EA006-4,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +77019,Ii10,EA006,Insignificant,EA006-6,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +77020,Ii12,EA006,Insignificant,EA006-6,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77021,Ii13,EA006,Insignificant,EA006-6,,burrows1937,,1830,EthnographicAtlas_1967_p98, +77022,Ii14,EA006,Gift exchange,EA006-4,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +77023,Ii2,EA006,Gift exchange,EA006-4,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +77024,Ii3,EA006,Gift exchange,EA006-4,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +77025,Ii4,EA006,Gift exchange,EA006-4,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +77026,Ii5,EA006,Insignificant,EA006-6,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +77027,Ii6,EA006,Insignificant,EA006-6,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +77028,Ii7,EA006,Insignificant,EA006-6,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +77029,Ii8,EA006,Insignificant,EA006-6,,burrows1936,,1840,EthnographicAtlas_1967_p98, +77030,Ii9,EA006,Insignificant,EA006-6,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +77031,Ij1,EA006,Insignificant,EA006-6,,buck1934,,1820,EthnographicAtlas_1967_p98, +77032,Ij10,EA006,Insignificant,EA006-6,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +77033,Ij2,EA006,Insignificant,EA006-6,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +77034,Ij3,EA006,Insignificant,EA006-6,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +77035,Ij4,EA006,Insignificant,EA006-6,,buck1932a,,1850,EthnographicAtlas_1967_p102, +77036,Ij5,EA006,Insignificant,EA006-6,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +77037,Ij6,EA006,Insignificant,EA006-6,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +77038,Ij7,EA006,Insignificant,EA006-6,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +77039,Ij8,EA006,Insignificant,EA006-6,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +77040,Ij9,EA006,Insignificant,EA006-6,,metraux1940,,1860,EthnographicAtlas_1967_p102, +77041,Na1,EA006,Token bride-wealth,EA006-3,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +77042,Na10,EA006,Insignificant,EA006-6,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +77043,Na11,EA006,Bride-service,EA006-2,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +77044,Na12,EA006,Bride-service,EA006-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +77045,Na13,EA006,Bride-service,EA006-2,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +77046,Na14,EA006,Insignificant,EA006-6,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +77047,Na15,EA006,Insignificant,EA006-6,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +77048,Na16,EA006,Insignificant,EA006-6,,osgood1931,,1860,EthnographicAtlas_1967_p102, +77049,Na17,EA006,Bride-service,EA006-2,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77050,Na19,EA006,Bride-wealth,EA006-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +77051,Na2,EA006,Insignificant,EA006-6,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +77052,Na20,EA006,Insignificant,EA006-6,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +77053,Na21,EA006,Bride-wealth,EA006-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +77054,Na22,EA006,Insignificant,EA006-6,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +77055,Na23,EA006,Bride-wealth,EA006-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +77056,Na24,EA006,Insignificant,EA006-6,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +77057,Na25,EA006,Insignificant,EA006-6,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +77058,Na26,EA006,Bride-service,EA006-2,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +77059,Na27,EA006,Bride-wealth,EA006-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +77060,Na28,EA006,Bride-service,EA006-2,,jenness1937,,1880,EthnographicAtlas_1967_p102, +77061,Na29,EA006,Insignificant,EA006-6,,goddard1916,,1850,EthnographicAtlas_1967_p102, +77062,Na3,EA006,Bride-service,EA006-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +77063,Na30,EA006,Insignificant,EA006-6,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +77064,Na31,EA006,Insignificant,EA006-6,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +77065,Na32,EA006,Bride-service,EA006-2,"In Murdock (1964a) coded as code ""6"", absence of consideration with the comment ""Entry follows Lips; Burgesse reports code ""2"", bride service. In EA the entry is code ""2"", bride service",burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +77066,Na33,EA006,Insignificant,EA006-6,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +77067,Na34,EA006,Insignificant,EA006-6,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +77068,Na35,EA006,Insignificant,EA006-6,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +77069,Na36,EA006,Insignificant,EA006-6,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +77070,Na37,EA006,Bride-wealth,EA006-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +77071,Na38,EA006,Insignificant,EA006-6,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +77072,Na39,EA006,Bride-service,EA006-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +77073,Na4,EA006,Bride-service,EA006-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +77074,Na40,EA006,?,EA006-NA,,,,,, +77075,Na41,EA006,Bride-service,EA006-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +77076,Na42,EA006,Insignificant,EA006-6,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +77077,Na43,EA006,Insignificant,EA006-6,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +77078,Na44,EA006,Insignificant,EA006-6,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +77079,Na45,EA006,Insignificant,EA006-6,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +77080,Na5,EA006,Insignificant,EA006-6,"Alternatively code ""6"", absence of consideration",lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +77081,Na6,EA006,Insignificant,EA006-6,,lantis1946,,1930,EthnographicAtlas_1967_p102, +77082,Na7,EA006,Bride-service,EA006-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +77083,Na8,EA006,Insignificant,EA006-6,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +77084,Na9,EA006,Bride-service,EA006-2,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77085,Nb1,EA006,Bride-service,EA006-2,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +77086,Nb10,EA006,Bride-service,EA006-2,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +77087,Nb11,EA006,Gift exchange,EA006-4,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +77088,Nb12,EA006,Gift exchange,EA006-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +77089,Nb13,EA006,Bride-wealth,EA006-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +77090,Nb14,EA006,Gift exchange,EA006-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +77091,Nb15,EA006,Gift exchange,EA006-4,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +77092,Nb16,EA006,Gift exchange,EA006-4,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +77093,Nb17,EA006,Gift exchange,EA006-4,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +77094,Nb18,EA006,Bride-wealth,EA006-1,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +77095,Nb19,EA006,Bride-wealth,EA006-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +77096,Nb2,EA006,Gift exchange,EA006-4,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +77097,Nb20,EA006,Bride-wealth,EA006-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +77098,Nb21,EA006,Bride-wealth,EA006-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +77099,Nb22,EA006,Gift exchange,EA006-4,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +77100,Nb23,EA006,Gift exchange,EA006-4,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +77101,Nb24,EA006,Gift exchange,EA006-4,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +77102,Nb25,EA006,Token bride-wealth,EA006-3,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +77103,Nb26,EA006,Bride-wealth,EA006-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +77104,Nb27,EA006,Gift exchange,EA006-4,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +77105,Nb28,EA006,Bride-wealth,EA006-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +77106,Nb29,EA006,Bride-wealth,EA006-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +77107,Nb3,EA006,Gift exchange,EA006-4,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +77108,Nb30,EA006,Bride-wealth,EA006-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +77109,Nb31,EA006,Bride-wealth,EA006-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +77110,Nb32,EA006,Bride-wealth,EA006-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +77111,Nb33,EA006,Bride-wealth,EA006-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +77112,Nb34,EA006,Bride-wealth,EA006-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +77113,Nb35,EA006,Bride-wealth,EA006-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +77114,Nb36,EA006,Bride-wealth,EA006-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +77115,Nb37,EA006,Bride-wealth,EA006-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +77116,Nb38,EA006,Bride-wealth,EA006-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +77117,Nb39,EA006,Bride-wealth,EA006-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +77118,Nb4,EA006,Bride-wealth,EA006-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +77119,Nb5,EA006,Bride-service,EA006-2,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +77120,Nb6,EA006,Bride-wealth,EA006-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +77121,Nb7,EA006,Bride-wealth,EA006-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +77122,Nb8,EA006,Gift exchange,EA006-4,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +77123,Nb9,EA006,Gift exchange,EA006-4,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +77124,Nc1,EA006,Gift exchange,EA006-4,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +77125,Nc10,EA006,Bride-wealth,EA006-1,"Entry follows Voegelin; Stewart reports code ""6"", absence of consideration",goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +77126,Nc11,EA006,Bride-service,EA006-2,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +77127,Nc12,EA006,Bride-service,EA006-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +77128,Nc13,EA006,Insignificant,EA006-6,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +77129,Nc14,EA006,Insignificant,EA006-6,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +77130,Nc15,EA006,Insignificant,EA006-6,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +77131,Nc16,EA006,Insignificant,EA006-6,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +77132,Nc17,EA006,Insignificant,EA006-6,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +77133,Nc18,EA006,Insignificant,EA006-6,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +77134,Nc19,EA006,Insignificant,EA006-6,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +77135,Nc2,EA006,Bride-wealth,EA006-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +77136,Nc20,EA006,Insignificant,EA006-6,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +77137,Nc21,EA006,Insignificant,EA006-6,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +77138,Nc22,EA006,Bride-wealth,EA006-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +77139,Nc23,EA006,Insignificant,EA006-6,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +77140,Nc24,EA006,Insignificant,EA006-6,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +77141,Nc25,EA006,Insignificant,EA006-6,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +77142,Nc26,EA006,Insignificant,EA006-6,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +77143,Nc27,EA006,Bride-wealth,EA006-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +77144,Nc28,EA006,Insignificant,EA006-6,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +77145,Nc29,EA006,Insignificant,EA006-6,"Entry follows Harrington; Kroeber reports code ""3"", token bride price",harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +77146,Nc3,EA006,Insignificant,EA006-6,Entry follows Gayton: Kroeber reports a bride-price,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +77147,Nc30,EA006,Bride-wealth,EA006-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +77148,Nc31,EA006,Insignificant,EA006-6,"But Strong reports code ""1"", bride wealth",drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +77149,Nc32,EA006,Insignificant,EA006-6,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +77150,Nc33,EA006,Bride-wealth,EA006-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +77151,Nc34,EA006,Bride-wealth,EA006-1,,meigs1939,,1880,EthnographicAtlas_1967_p106, +77152,Nc4,EA006,Gift exchange,EA006-4,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +77153,Nc5,EA006,Insignificant,EA006-6,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +77154,Nc6,EA006,Bride-wealth,EA006-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +77155,Nc7,EA006,Gift exchange,EA006-4,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +77156,Nc8,EA006,Gift exchange,EA006-4,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +77157,Nc9,EA006,Gift exchange,EA006-4,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +77158,Nd1,EA006,Gift exchange,EA006-4,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +77159,Nd10,EA006,Insignificant,EA006-6,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +77160,Nd11,EA006,Gift exchange,EA006-4,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +77161,Nd12,EA006,Insignificant,EA006-6,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +77162,Nd13,EA006,Insignificant,EA006-6,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +77163,Nd14,EA006,Insignificant,EA006-6,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +77164,Nd15,EA006,Gift exchange,EA006-4,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +77165,Nd16,EA006,Insignificant,EA006-6,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +77166,Nd17,EA006,Gift exchange,EA006-4,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +77167,Nd18,EA006,Gift exchange,EA006-4,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +77168,Nd19,EA006,Gift exchange,EA006-4,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +77169,Nd2,EA006,Insignificant,EA006-6,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +77170,Nd20,EA006,Bride-wealth,EA006-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +77171,Nd21,EA006,Insignificant,EA006-6,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +77172,Nd22,EA006,Insignificant,EA006-6,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +77173,Nd23,EA006,Insignificant,EA006-6,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +77174,Nd24,EA006,Bride-service,EA006-2,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +77175,Nd25,EA006,Insignificant,EA006-6,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +77176,Nd26,EA006,Insignificant,EA006-6,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +77177,Nd27,EA006,Insignificant,EA006-6,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +77178,Nd28,EA006,Insignificant,EA006-6,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +77179,Nd29,EA006,Insignificant,EA006-6,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +77180,Nd3,EA006,Token bride-wealth,EA006-3,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +77181,Nd30,EA006,Token bride-wealth,EA006-3,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +77182,Nd31,EA006,Insignificant,EA006-6,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +77183,Nd32,EA006,Insignificant,EA006-6,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +77184,Nd33,EA006,Insignificant,EA006-6,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +77185,Nd34,EA006,Insignificant,EA006-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +77186,Nd35,EA006,Bride-service,EA006-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +77187,Nd36,EA006,Insignificant,EA006-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +77188,Nd37,EA006,Insignificant,EA006-6,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +77189,Nd38,EA006,Bride-service,EA006-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +77190,Nd39,EA006,Insignificant,EA006-6,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +77191,Nd4,EA006,Token bride-wealth,EA006-3,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +77192,Nd40,EA006,Insignificant,EA006-6,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +77193,Nd41,EA006,Bride-service,EA006-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +77194,Nd42,EA006,Bride-service,EA006-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +77195,Nd43,EA006,Insignificant,EA006-6,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +77196,Nd44,EA006,Insignificant,EA006-6,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +77197,Nd45,EA006,Bride-service,EA006-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +77198,Nd46,EA006,Bride-service,EA006-2,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +77199,Nd47,EA006,Insignificant,EA006-6,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +77200,Nd48,EA006,Insignificant,EA006-6,"But Malouf reports code ""1"", bride wealth",malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +77201,Nd49,EA006,Insignificant,EA006-6,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +77202,Nd5,EA006,Insignificant,EA006-6,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +77203,Nd50,EA006,Insignificant,EA006-6,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +77204,Nd51,EA006,Insignificant,EA006-6,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +77205,Nd52,EA006,Insignificant,EA006-6,"But Lowie reports code ""2"", bride service",drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +77206,Nd53,EA006,Insignificant,EA006-6,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +77207,Nd54,EA006,Insignificant,EA006-6,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77208,Nd55,EA006,Insignificant,EA006-6,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +77209,Nd56,EA006,Insignificant,EA006-6,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +77210,Nd57,EA006,Insignificant,EA006-6,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +77211,Nd58,EA006,Insignificant,EA006-6,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +77212,Nd59,EA006,Insignificant,EA006-6,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +77213,Nd6,EA006,Insignificant,EA006-6,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +77214,Nd60,EA006,Insignificant,EA006-6,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +77215,Nd61,EA006,Token bride-wealth,EA006-3,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +77216,Nd62,EA006,Token bride-wealth,EA006-3,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +77217,Nd63,EA006,Insignificant,EA006-6,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +77218,Nd64,EA006,Bride-service,EA006-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +77219,Nd65,EA006,Insignificant,EA006-6,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +77220,Nd66,EA006,Token bride-wealth,EA006-3,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +77221,Nd67,EA006,Bride-wealth,EA006-1,,gifford1936,,1870,EthnographicAtlas_1967_p110, +77222,Nd7,EA006,Insignificant,EA006-6,"But Chamberlain reports code ""1"", bride wealth",boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +77223,Nd8,EA006,Gift exchange,EA006-4,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +77224,Nd9,EA006,Insignificant,EA006-6,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +77225,Ne1,EA006,Bride-wealth,EA006-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +77226,Ne10,EA006,Insignificant,EA006-6,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +77227,Ne11,EA006,Bride-wealth,EA006-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +77228,Ne12,EA006,Bride-wealth,EA006-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +77229,Ne13,EA006,Gift exchange,EA006-4,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +77230,Ne14,EA006,Insignificant,EA006-6,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +77231,Ne15,EA006,Insignificant,EA006-6,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +77232,Ne16,EA006,Bride-service,EA006-2,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +77233,Ne17,EA006,Insignificant,EA006-6,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +77234,Ne18,EA006,Gift exchange,EA006-4,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +77235,Ne19,EA006,Bride-wealth,EA006-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +77236,Ne2,EA006,Gift exchange,EA006-4,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +77237,Ne20,EA006,Bride-wealth,EA006-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +77238,Ne21,EA006,?,EA006-NA,,,,,, +77239,Ne3,EA006,Insignificant,EA006-6,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +77240,Ne4,EA006,Token bride-wealth,EA006-3,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +77241,Ne5,EA006,Token bride-wealth,EA006-3,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +77242,Ne6,EA006,Insignificant,EA006-6,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +77243,Ne7,EA006,Bride-wealth,EA006-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +77244,Ne8,EA006,Bride-wealth,EA006-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +77245,Ne9,EA006,Insignificant,EA006-6,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +77246,Nf10,EA006,Insignificant,EA006-6,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +77247,Nf11,EA006,Bride-wealth,EA006-1,,whitman1937,,1870,EthnographicAtlas_1967_p114, +77248,Nf12,EA006,Token bride-wealth,EA006-3,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +77249,Nf13,EA006,Token bride-wealth,EA006-3,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77250,Nf14,EA006,Insignificant,EA006-6,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +77251,Nf15,EA006,Bride-service,EA006-2,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +77252,Nf2,EA006,Bride-service,EA006-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +77253,Nf3,EA006,Gift exchange,EA006-4,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +77254,Nf4,EA006,Gift exchange,EA006-4,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +77255,Nf5,EA006,Bride-service,EA006-2,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +77256,Nf6,EA006,Insignificant,EA006-6,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +77257,Nf7,EA006,Bride-service,EA006-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77258,Nf8,EA006,Insignificant,EA006-6,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +77259,Nf9,EA006,Insignificant,EA006-6,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +77260,Ng1,EA006,Insignificant,EA006-6,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +77261,Ng10,EA006,Insignificant,EA006-6,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +77262,Ng11,EA006,Insignificant,EA006-6,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +77263,Ng12,EA006,Insignificant,EA006-6,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +77264,Ng13,EA006,Bride-service,EA006-2,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +77265,Ng14,EA006,Insignificant,EA006-6,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +77266,Ng15,EA006,?,EA006-NA,,,,,, +77267,Ng2,EA006,Insignificant,EA006-6,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +77268,Ng3,EA006,Token bride-wealth,EA006-3,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +77269,Ng4,EA006,Bride-service,EA006-2,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +77270,Ng5,EA006,Insignificant,EA006-6,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +77271,Ng6,EA006,Insignificant,EA006-6,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +77272,Ng7,EA006,Insignificant,EA006-6,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +77273,Ng8,EA006,?,EA006-NA,,,,,, +77274,Ng9,EA006,Insignificant,EA006-6,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +77275,Nh1,EA006,Insignificant,EA006-6,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +77276,Nh10,EA006,Insignificant,EA006-6,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +77277,Nh11,EA006,Insignificant,EA006-6,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +77278,Nh12,EA006,Insignificant,EA006-6,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +77279,Nh13,EA006,Insignificant,EA006-6,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +77280,Nh14,EA006,Insignificant,EA006-6,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +77281,Nh15,EA006,Insignificant,EA006-6,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +77282,Nh16,EA006,Insignificant,EA006-6,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77283,Nh17,EA006,Token bride-wealth,EA006-3,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +77284,Nh18,EA006,Insignificant,EA006-6,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77285,Nh19,EA006,Bride-service,EA006-2,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +77286,Nh2,EA006,Insignificant,EA006-6,,dozier1954,,1950,EthnographicAtlas_1967_p114, +77287,Nh20,EA006,Insignificant,EA006-6,,gifford1931,,1860,EthnographicAtlas_1967_p114, +77288,Nh21,EA006,Insignificant,EA006-6,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77289,Nh22,EA006,Insignificant,EA006-6,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +77290,Nh23,EA006,Insignificant,EA006-6,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +77291,Nh24,EA006,Insignificant,EA006-6,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +77292,Nh25,EA006,Insignificant,EA006-6,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +77293,Nh26,EA006,Insignificant,EA006-6,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +77294,Nh27,EA006,Insignificant,EA006-6,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +77295,Nh3,EA006,Token bride-wealth,EA006-3,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +77296,Nh4,EA006,Insignificant,EA006-6,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +77297,Nh5,EA006,Insignificant,EA006-6,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +77298,Nh6,EA006,Insignificant,EA006-6,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +77299,Nh7,EA006,Insignificant,EA006-6,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +77300,Nh8,EA006,Insignificant,EA006-6,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +77301,Nh9,EA006,Insignificant,EA006-6,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +77302,Ni1,EA006,Bride-service,EA006-2,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +77303,Ni2,EA006,Insignificant,EA006-6,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +77304,Ni3,EA006,Insignificant,EA006-6,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +77305,Ni4,EA006,Bride-wealth,EA006-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +77306,Ni5,EA006,Insignificant,EA006-6,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +77307,Ni6,EA006,Insignificant,EA006-6,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +77308,Ni7,EA006,Insignificant,EA006-6,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +77309,Ni8,EA006,Insignificant,EA006-6,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +77310,Ni9,EA006,?,EA006-NA,,,,,, +77311,Nj1,EA006,Insignificant,EA006-6,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77312,Nj10,EA006,Insignificant,EA006-6,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77313,Nj11,EA006,Bride-wealth,EA006-1,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +77314,Nj12,EA006,?,EA006-NA,,,,,, +77315,Nj13,EA006,?,EA006-NA,,,,,, +77316,Nj14,EA006,?,EA006-NA,,,,,, +77317,Nj2,EA006,Token bride-wealth,EA006-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +77318,Nj3,EA006,Insignificant,EA006-6,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +77319,Nj4,EA006,Insignificant,EA006-6,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +77320,Nj5,EA006,Insignificant,EA006-6,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +77321,Nj6,EA006,Insignificant,EA006-6,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +77322,Nj7,EA006,Insignificant,EA006-6,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77323,Nj8,EA006,Insignificant,EA006-6,,foster1948,,1500,EthnographicAtlas_1967_p118, +77324,Nj9,EA006,Insignificant,EA006-6,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +77325,Sa1,EA006,Bride-service,EA006-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +77326,Sa10,EA006,Token bride-wealth,EA006-3,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +77327,Sa11,EA006,Token bride-wealth,EA006-3,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +77328,Sa12,EA006,Insignificant,EA006-6,,stone1948,,1948,EthnographicAtlas_1967_p118, +77329,Sa13,EA006,Token bride-wealth,EA006-3,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +77330,Sa14,EA006,Bride-service,EA006-2,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +77331,Sa15,EA006,Insignificant,EA006-6,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +77332,Sa16,EA006,?,EA006-NA,,,,,, +77333,Sa17,EA006,Insignificant,EA006-6,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +77334,Sa2,EA006,Bride-service,EA006-2,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77335,Sa3,EA006,Bride-service,EA006-2,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +77336,Sa4,EA006,Insignificant,EA006-6,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +77337,Sa5,EA006,Bride-service,EA006-2,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +77338,Sa6,EA006,Bride-service,EA006-2,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +77339,Sa7,EA006,Insignificant,EA006-6,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +77340,Sa8,EA006,Token bride-wealth,EA006-3,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +77341,Sa9,EA006,Token bride-wealth,EA006-3,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +77342,Sb1,EA006,Bride-service,EA006-2,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +77343,Sb2,EA006,Bride-service,EA006-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +77344,Sb3,EA006,Insignificant,EA006-6,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +77345,Sb4,EA006,Insignificant,EA006-6,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +77346,Sb5,EA006,Bride-wealth,EA006-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +77347,Sb6,EA006,Bride-wealth,EA006-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +77348,Sb7,EA006,Insignificant,EA006-6,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +77349,Sb8,EA006,Bride-wealth,EA006-1,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +77350,Sb9,EA006,Insignificant,EA006-6,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +77351,Sc1,EA006,Bride-service,EA006-2,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +77352,Sc10,EA006,Bride-service,EA006-2,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +77353,Sc11,EA006,Bride-service,EA006-2,"Or alternatively code ""1"", bride wealth",simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +77354,Sc12,EA006,Bride-service,EA006-2,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +77355,Sc13,EA006,Insignificant,EA006-6,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +77356,Sc14,EA006,?,EA006-NA,,,,,, +77357,Sc15,EA006,Bride-service,EA006-2,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +77358,Sc16,EA006,Insignificant,EA006-6,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +77359,Sc17,EA006,Insignificant,EA006-6,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +77360,Sc18,EA006,Insignificant,EA006-6,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +77361,Sc2,EA006,Bride-service,EA006-2,,leedsnd,,1950,EthnographicAtlas_1967_p118, +77362,Sc3,EA006,Bride-service,EA006-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +77363,Sc4,EA006,Bride-service,EA006-2,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +77364,Sc5,EA006,Bride-service,EA006-2,,farabee1918,,1900,EthnographicAtlas_1967_p118, +77365,Sc6,EA006,Bride-wealth,EA006-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77366,Sc7,EA006,Bride-service,EA006-2,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +77367,Sc8,EA006,Insignificant,EA006-6,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +77368,Sc9,EA006,?,EA006-NA,,,,,, +77369,Sd1,EA006,Bride-service,EA006-2,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77370,Sd2,EA006,Insignificant,EA006-6,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +77371,Sd3,EA006,Insignificant,EA006-6,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +77372,Sd4,EA006,Insignificant,EA006-6,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +77373,Sd5,EA006,Bride-service,EA006-2,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +77374,Sd6,EA006,Bride-service,EA006-2,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +77375,Sd7,EA006,Bride-service,EA006-2,,fock1963,,1950,EthnographicAtlas_1967_p118, +77376,Sd8,EA006,Bride-service,EA006-2,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +77377,Sd9,EA006,Woman exchange,EA006-5,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77378,Se1,EA006,Insignificant,EA006-6,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +77379,Se10,EA006,Bride-service,EA006-2,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +77380,Se11,EA006,Insignificant,EA006-6,,prost1965,,1960,EthnographicAtlas_1967_p122, +77381,Se12,EA006,Woman exchange,EA006-5,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +77382,Se2,EA006,Woman exchange,EA006-5,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +77383,Se3,EA006,Bride-service,EA006-2,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +77384,Se4,EA006,Bride-service,EA006-2,,fejos1943,,1940,EthnographicAtlas_1967_p118, +77385,Se5,EA006,Woman exchange,EA006-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +77386,Se6,EA006,Bride-service,EA006-2,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +77387,Se7,EA006,Insignificant,EA006-6,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77388,Se8,EA006,Bride-service,EA006-2,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +77389,Se9,EA006,Bride-service,EA006-2,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +77390,Sf1,EA006,Insignificant,EA006-6,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +77391,Sf2,EA006,Insignificant,EA006-6,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +77392,Sf3,EA006,Insignificant,EA006-6,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +77393,Sf4,EA006,Token bride-wealth,EA006-3,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +77394,Sf5,EA006,Insignificant,EA006-6,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +77395,Sf6,EA006,Bride-wealth,EA006-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +77396,Sf7,EA006,Insignificant,EA006-6,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +77397,Sf8,EA006,Insignificant,EA006-6,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +77398,Sf9,EA006,Insignificant,EA006-6,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +77399,Sg1,EA006,Bride-service,EA006-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +77400,Sg2,EA006,Bride-wealth,EA006-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77401,Sg3,EA006,Insignificant,EA006-6,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +77402,Sg4,EA006,Gift exchange,EA006-4,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +77403,Sg5,EA006,Insignificant,EA006-6,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77404,Sh1,EA006,Bride-service,EA006-2,Entry follows Fock; earlier sources report a modest bride-price,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +77405,Sh2,EA006,Insignificant,EA006-6,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +77406,Sh3,EA006,Bride-wealth,EA006-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +77407,Sh4,EA006,Insignificant,EA006-6,,oberg1949,,1940,EthnographicAtlas_1967_p122, +77408,Sh5,EA006,Bride-service,EA006-2,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +77409,Sh6,EA006,Bride-service,EA006-2,"Entry follows Boggiani; Baldus reports code ""1"", bride wealth",baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +77410,Sh7,EA006,Bride-service,EA006-2,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +77411,Sh8,EA006,Insignificant,EA006-6,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +77412,Sh9,EA006,Insignificant,EA006-6,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +77413,Si1,EA006,Insignificant,EA006-6,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77414,Si10,EA006,Insignificant,EA006-6,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +77415,Si2,EA006,Token bride-wealth,EA006-3,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +77416,Si3,EA006,Insignificant,EA006-6,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77417,Si4,EA006,Insignificant,EA006-6,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +77418,Si5,EA006,Bride-service,EA006-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +77419,Si6,EA006,?,EA006-NA,,,,,, +77420,Si7,EA006,Insignificant,EA006-6,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +77421,Si8,EA006,Insignificant,EA006-6,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +77422,Si9,EA006,?,EA006-NA,,,,,, +77423,Sj1,EA006,Insignificant,EA006-6,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +77424,Sj10,EA006,Insignificant,EA006-6,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77425,Sj11,EA006,Bride-service,EA006-2,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +77426,Sj2,EA006,Insignificant,EA006-6,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +77427,Sj3,EA006,Insignificant,EA006-6,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +77428,Sj4,EA006,Bride-service,EA006-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +77429,Sj5,EA006,Insignificant,EA006-6,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +77430,Sj6,EA006,Bride-service,EA006-2,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77431,Sj7,EA006,Token bride-wealth,EA006-3,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +77432,Sj8,EA006,Bride-service,EA006-2,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +77433,Sj9,EA006,Insignificant,EA006-6,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +77434,ch12,EA006,Bride-wealth,EA006-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +77435,ch13,EA006,Gift exchange,EA006-4,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +77436,ch14,EA006,Gift exchange,EA006-4,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +77437,ch15,EA006,Dowry,EA006-7,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +77438,ch16,EA006,Dowry,EA006-7,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +77439,ch17,EA006,Gift exchange,EA006-4,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +77440,ch18,EA006,Dowry,EA006-7,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +77441,ch19,EA006,Dowry,EA006-7,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +77442,ch20,EA006,Bride-wealth,EA006-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +77443,ch21,EA006,Dowry,EA006-7,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +77444,ch22,EA006,Dowry,EA006-7,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +77445,ch23,EA006,Dowry,EA006-7,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +77446,ch24,EA006,Dowry,EA006-7,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +77447,ch25,EA006,Dowry,EA006-7,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +77448,ch26,EA006,Bride-wealth,EA006-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +77449,ch27,EA006,Dowry,EA006-7,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +77450,ch28,EA006,Insignificant,EA006-6,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +77451,ec12,EA006,Bride-wealth,EA006-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +77452,ec13,EA006,Bride-service,EA006-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +77453,ec14,EA006,Bride-service,EA006-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +77454,ec15,EA006,Bride-wealth,EA006-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +77455,ec16,EA006,Bride-wealth,EA006-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +77456,ec17,EA006,Bride-wealth,EA006-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +77457,ec18,EA006,Bride-wealth,EA006-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +77458,ec19,EA006,Bride-wealth,EA006-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +77459,ec20,EA006,Bride-wealth,EA006-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +77460,ec21,EA006,Bride-wealth,EA006-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +77461,Aa1,EA060,Most adults,EA060-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +77462,Aa2,EA060,Most adults,EA060-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +77463,Aa3,EA060,Most adults,EA060-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +77464,Aa4,EA060,?,EA060-NA,,,,,, +77465,Aa5,EA060,Most adults,EA060-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +77466,Aa6,EA060,?,EA060-NA,,,,,, +77467,Aa7,EA060,Most adults,EA060-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +77468,Aa8,EA060,?,EA060-NA,,,,,, +77469,Aa9,EA060,Most adults,EA060-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +77470,Ab1,EA060,?,EA060-NA,,,,,, +77471,Ab10,EA060,Most adults,EA060-9,,hunter1936,,1936,EthnographicAtlas_1967_p64, +77472,Ab11,EA060,?,EA060-NA,,,,,, +77473,Ab12,EA060,Most adults,EA060-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +77474,Ab13,EA060,Most adults,EA060-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +77475,Ab14,EA060,?,EA060-NA,,,,,, +77476,Ab15,EA060,?,EA060-NA,,,,,, +77477,Ab16,EA060,?,EA060-NA,,,,,, +77478,Ab17,EA060,?,EA060-NA,,,,,, +77479,Ab18,EA060,Most adults,EA060-9,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +77480,Ab19,EA060,Most adults,EA060-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +77481,Ab2,EA060,Most adults,EA060-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +77482,Ab20,EA060,?,EA060-NA,,,,,, +77483,Ab21a,EA060,?,EA060-NA,,,,,, +77484,Ab21b,EA060,?,EA060-NA,,,,,, +77485,Ab22,EA060,?,EA060-NA,,,,,, +77486,Ab3,EA060,Most adults,EA060-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +77487,Ab4,EA060,Most adults,EA060-9,,junod1927,,1920,EthnographicAtlas_1967_p64, +77488,Ab5,EA060,Most adults,EA060-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +77489,Ab6,EA060,Most adults,EA060-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +77490,Ab7,EA060,?,EA060-NA,,,,,, +77491,Ab8,EA060,Most adults,EA060-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +77492,Ab9,EA060,Most adults,EA060-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +77493,Ac1,EA060,Most adults,EA060-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +77494,Ac10,EA060,?,EA060-NA,,,,,, +77495,Ac11,EA060,?,EA060-NA,,,,,, +77496,Ac12,EA060,?,EA060-NA,,,,,, +77497,Ac13,EA060,?,EA060-NA,,,,,, +77498,Ac14,EA060,?,EA060-NA,,,,,, +77499,Ac15,EA060,?,EA060-NA,,,,,, +77500,Ac16,EA060,?,EA060-NA,,,,,, +77501,Ac17,EA060,Most adults,EA060-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +77502,Ac18,EA060,Most adults,EA060-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +77503,Ac19,EA060,?,EA060-NA,,,,,, +77504,Ac2,EA060,?,EA060-NA,,,,,, +77505,Ac20,EA060,?,EA060-NA,,,,,, +77506,Ac21,EA060,?,EA060-NA,,,,,, +77507,Ac22,EA060,?,EA060-NA,,,,,, +77508,Ac23,EA060,Most adults,EA060-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +77509,Ac24,EA060,?,EA060-NA,,,,,, +77510,Ac25,EA060,?,EA060-NA,,,,,, +77511,Ac26,EA060,?,EA060-NA,,,,,, +77512,Ac27,EA060,?,EA060-NA,,,,,, +77513,Ac28,EA060,?,EA060-NA,,,,,, +77514,Ac29,EA060,?,EA060-NA,,,,,, +77515,Ac3,EA060,Most adults,EA060-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +77516,Ac30,EA060,Most adults,EA060-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +77517,Ac31,EA060,?,EA060-NA,,,,,, +77518,Ac32,EA060,?,EA060-NA,,,,,, +77519,Ac33,EA060,?,EA060-NA,,,,,, +77520,Ac34,EA060,?,EA060-NA,,,,,, +77521,Ac35,EA060,?,EA060-NA,,,,,, +77522,Ac36,EA060,?,EA060-NA,,,,,, +77523,Ac37,EA060,?,EA060-NA,,,,,, +77524,Ac38,EA060,?,EA060-NA,,,,,, +77525,Ac39,EA060,?,EA060-NA,,,,,, +77526,Ac4,EA060,?,EA060-NA,,,,,, +77527,Ac40,EA060,?,EA060-NA,,,,,, +77528,Ac41,EA060,?,EA060-NA,,,,,, +77529,Ac42,EA060,?,EA060-NA,,,,,, +77530,Ac43,EA060,?,EA060-NA,,,,,, +77531,Ac5,EA060,?,EA060-NA,,,,,, +77532,Ac6,EA060,?,EA060-NA,,,,,, +77533,Ac7,EA060,Most adults,EA060-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +77534,Ac8,EA060,?,EA060-NA,,,,,, +77535,Ac9,EA060,?,EA060-NA,,,,,, +77536,Ad1,EA060,?,EA060-NA,,,,,, +77537,Ad10,EA060,?,EA060-NA,,,,,, +77538,Ad11,EA060,Most adults,EA060-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +77539,Ad12,EA060,?,EA060-NA,,,,,, +77540,Ad13,EA060,Most adults,EA060-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +77541,Ad14,EA060,Most adults,EA060-9,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p68, +77542,Ad15,EA060,?,EA060-NA,,,,,, +77543,Ad16,EA060,?,EA060-NA,,,,,, +77544,Ad17,EA060,Most adults,EA060-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +77545,Ad18,EA060,?,EA060-NA,,,,,, +77546,Ad19,EA060,Most adults,EA060-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +77547,Ad2,EA060,Most adults,EA060-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +77548,Ad20,EA060,Most adults,EA060-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +77549,Ad21,EA060,?,EA060-NA,,,,,, +77550,Ad22,EA060,?,EA060-NA,,,,,, +77551,Ad23,EA060,?,EA060-NA,,,,,, +77552,Ad24,EA060,?,EA060-NA,,,,,, +77553,Ad25,EA060,?,EA060-NA,,,,,, +77554,Ad26,EA060,?,EA060-NA,,,,,, +77555,Ad27,EA060,?,EA060-NA,,,,,, +77556,Ad28,EA060,?,EA060-NA,,,,,, +77557,Ad29,EA060,Craft,EA060-3,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +77558,Ad3,EA060,Most adults,EA060-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +77559,Ad30,EA060,?,EA060-NA,,,,,, +77560,Ad31,EA060,Most adults,EA060-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +77561,Ad32,EA060,?,EA060-NA,,,,,, +77562,Ad33,EA060,?,EA060-NA,,,,,, +77563,Ad34,EA060,?,EA060-NA,,,,,, +77564,Ad35,EA060,Most adults,EA060-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +77565,Ad36,EA060,?,EA060-NA,,,,,, +77566,Ad37,EA060,?,EA060-NA,,,,,, +77567,Ad38,EA060,?,EA060-NA,,,,,, +77568,Ad39,EA060,?,EA060-NA,,,,,, +77569,Ad4,EA060,Most adults,EA060-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +77570,Ad40,EA060,?,EA060-NA,,,,,, +77571,Ad41,EA060,Activity is absent,EA060-10,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +77572,Ad42,EA060,?,EA060-NA,,,,,, +77573,Ad43,EA060,?,EA060-NA,,,,,, +77574,Ad44,EA060,?,EA060-NA,,,,,, +77575,Ad45,EA060,Most adults,EA060-9,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +77576,Ad46,EA060,?,EA060-NA,,,,,, +77577,Ad47,EA060,?,EA060-NA,,,,,, +77578,Ad48,EA060,Most adults,EA060-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +77579,Ad49,EA060,?,EA060-NA,,,,,, +77580,Ad5,EA060,?,EA060-NA,,,,,, +77581,Ad50,EA060,?,EA060-NA,,,,,, +77582,Ad51,EA060,?,EA060-NA,,,,,, +77583,Ad6,EA060,Most adults,EA060-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +77584,Ad7,EA060,Most adults,EA060-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +77585,Ad8,EA060,Most adults,EA060-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +77586,Ad9,EA060,?,EA060-NA,,,,,, +77587,Ae1,EA060,Most adults,EA060-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +77588,Ae10,EA060,Most adults,EA060-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +77589,Ae11,EA060,Most adults,EA060-9,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +77590,Ae12,EA060,?,EA060-NA,,,,,, +77591,Ae13,EA060,?,EA060-NA,,,,,, +77592,Ae14,EA060,Most adults,EA060-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +77593,Ae15,EA060,?,EA060-NA,,,,,, +77594,Ae16,EA060,?,EA060-NA,,,,,, +77595,Ae17,EA060,?,EA060-NA,,,,,, +77596,Ae18,EA060,?,EA060-NA,,,,,, +77597,Ae19,EA060,?,EA060-NA,,,,,, +77598,Ae2,EA060,?,EA060-NA,,,,,, +77599,Ae20,EA060,?,EA060-NA,,,,,, +77600,Ae21,EA060,?,EA060-NA,,,,,, +77601,Ae22,EA060,?,EA060-NA,,,,,, +77602,Ae23,EA060,?,EA060-NA,,,,,, +77603,Ae24,EA060,?,EA060-NA,,,,,, +77604,Ae25,EA060,?,EA060-NA,,,,,, +77605,Ae26,EA060,?,EA060-NA,,,,,, +77606,Ae27,EA060,?,EA060-NA,,,,,, +77607,Ae28,EA060,?,EA060-NA,,,,,, +77608,Ae29,EA060,?,EA060-NA,,,,,, +77609,Ae3,EA060,?,EA060-NA,,,,,, +77610,Ae30,EA060,?,EA060-NA,,,,,, +77611,Ae31,EA060,?,EA060-NA,,,,,, +77612,Ae32,EA060,?,EA060-NA,,,,,, +77613,Ae33,EA060,Most adults,EA060-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +77614,Ae34,EA060,?,EA060-NA,,,,,, +77615,Ae35,EA060,?,EA060-NA,,,,,, +77616,Ae36,EA060,?,EA060-NA,,,,,, +77617,Ae37,EA060,?,EA060-NA,,,,,, +77618,Ae38,EA060,?,EA060-NA,,,,,, +77619,Ae39,EA060,Most adults,EA060-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +77620,Ae4,EA060,Most adults,EA060-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +77621,Ae40,EA060,?,EA060-NA,,,,,, +77622,Ae41,EA060,?,EA060-NA,,,,,, +77623,Ae42,EA060,?,EA060-NA,,,,,, +77624,Ae43,EA060,?,EA060-NA,,,,,, +77625,Ae44,EA060,?,EA060-NA,,,,,, +77626,Ae45,EA060,?,EA060-NA,,,,,, +77627,Ae46,EA060,?,EA060-NA,,,,,, +77628,Ae47,EA060,?,EA060-NA,,,,,, +77629,Ae48,EA060,?,EA060-NA,,,,,, +77630,Ae49,EA060,?,EA060-NA,,,,,, +77631,Ae5,EA060,Most adults,EA060-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +77632,Ae50,EA060,Most adults,EA060-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +77633,Ae51,EA060,Most adults,EA060-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +77634,Ae52,EA060,Most adults,EA060-9,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +77635,Ae53,EA060,?,EA060-NA,,,,,, +77636,Ae54,EA060,?,EA060-NA,,,,,, +77637,Ae55,EA060,Most adults,EA060-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +77638,Ae56,EA060,Most adults,EA060-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +77639,Ae57,EA060,?,EA060-NA,,,,,, +77640,Ae58,EA060,?,EA060-NA,,,,,, +77641,Ae59,EA060,?,EA060-NA,,,,,, +77642,Ae6,EA060,?,EA060-NA,,,,,, +77643,Ae7,EA060,?,EA060-NA,,,,,, +77644,Ae8,EA060,Most adults,EA060-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +77645,Ae9,EA060,Most adults,EA060-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +77646,Af1,EA060,?,EA060-NA,,,,,, +77647,Af10,EA060,Most adults,EA060-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +77648,Af11,EA060,?,EA060-NA,,,,,, +77649,Af12,EA060,?,EA060-NA,,,,,, +77650,Af13,EA060,?,EA060-NA,,,,,, +77651,Af14,EA060,Most adults,EA060-9,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +77652,Af15,EA060,Most adults,EA060-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +77653,Af16,EA060,?,EA060-NA,,,,,, +77654,Af17,EA060,?,EA060-NA,,,,,, +77655,Af18,EA060,?,EA060-NA,,,,,, +77656,Af19,EA060,?,EA060-NA,,,,,, +77657,Af2,EA060,?,EA060-NA,,,,,, +77658,Af20,EA060,?,EA060-NA,,,,,, +77659,Af21,EA060,?,EA060-NA,,,,,, +77660,Af22,EA060,?,EA060-NA,,,,,, +77661,Af23,EA060,Most adults,EA060-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +77662,Af24,EA060,Most adults,EA060-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +77663,Af25,EA060,?,EA060-NA,,,,,, +77664,Af26,EA060,?,EA060-NA,,,,,, +77665,Af27,EA060,?,EA060-NA,,,,,, +77666,Af28,EA060,?,EA060-NA,,,,,, +77667,Af29,EA060,?,EA060-NA,,,,,, +77668,Af3,EA060,?,EA060-NA,,,,,, +77669,Af30,EA060,?,EA060-NA,,,,,, +77670,Af31,EA060,?,EA060-NA,,,,,, +77671,Af32,EA060,?,EA060-NA,,,,,, +77672,Af33,EA060,?,EA060-NA,,,,,, +77673,Af34,EA060,?,EA060-NA,,,,,, +77674,Af35,EA060,?,EA060-NA,,,,,, +77675,Af36,EA060,?,EA060-NA,,,,,, +77676,Af37,EA060,?,EA060-NA,,,,,, +77677,Af38,EA060,?,EA060-NA,,,,,, +77678,Af39,EA060,?,EA060-NA,,,,,, +77679,Af4,EA060,Most adults,EA060-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +77680,Af40,EA060,?,EA060-NA,,,,,, +77681,Af41,EA060,?,EA060-NA,,,,,, +77682,Af42,EA060,?,EA060-NA,,,,,, +77683,Af43,EA060,?,EA060-NA,,,,,, +77684,Af44,EA060,?,EA060-NA,,,,,, +77685,Af45,EA060,?,EA060-NA,,,,,, +77686,Af46,EA060,?,EA060-NA,,,,,, +77687,Af47,EA060,?,EA060-NA,,,,,, +77688,Af48,EA060,?,EA060-NA,,,,,, +77689,Af49,EA060,?,EA060-NA,,,,,, +77690,Af5,EA060,Most adults,EA060-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +77691,Af50,EA060,?,EA060-NA,,,,,, +77692,Af51,EA060,?,EA060-NA,,,,,, +77693,Af52,EA060,Most adults,EA060-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +77694,Af53,EA060,?,EA060-NA,,,,,, +77695,Af54,EA060,?,EA060-NA,,,,,, +77696,Af55,EA060,?,EA060-NA,,,,,, +77697,Af56,EA060,Activity is absent,EA060-10,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72,"Assume Murdock comment refers to Col 59, not Col 60 as stated in Gray (1999)" +77698,Af57,EA060,?,EA060-NA,,,,,, +77699,Af58,EA060,?,EA060-NA,,,,,, +77700,Af6,EA060,Most adults,EA060-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +77701,Af7,EA060,?,EA060-NA,,,,,, +77702,Af8,EA060,?,EA060-NA,,,,,, +77703,Af9,EA060,?,EA060-NA,,,,,, +77704,Ag1,EA060,Most adults,EA060-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +77705,Ag10,EA060,Most adults,EA060-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +77706,Ag11,EA060,Most adults,EA060-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +77707,Ag12,EA060,Most adults,EA060-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +77708,Ag13,EA060,?,EA060-NA,,,,,, +77709,Ag14,EA060,?,EA060-NA,,,,,, +77710,Ag15,EA060,?,EA060-NA,,,,,, +77711,Ag16,EA060,?,EA060-NA,,,,,, +77712,Ag17,EA060,?,EA060-NA,,,,,, +77713,Ag18,EA060,?,EA060-NA,,,,,, +77714,Ag19,EA060,?,EA060-NA,,,,,, +77715,Ag2,EA060,Most adults,EA060-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +77716,Ag20,EA060,?,EA060-NA,,,,,, +77717,Ag21,EA060,Most adults,EA060-9,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +77718,Ag22,EA060,?,EA060-NA,,,,,, +77719,Ag23,EA060,?,EA060-NA,,,,,, +77720,Ag24,EA060,?,EA060-NA,,,,,, +77721,Ag25,EA060,?,EA060-NA,,,,,, +77722,Ag26,EA060,?,EA060-NA,,,,,, +77723,Ag27,EA060,?,EA060-NA,,,,,, +77724,Ag28,EA060,?,EA060-NA,,,,,, +77725,Ag29,EA060,?,EA060-NA,,,,,, +77726,Ag3,EA060,?,EA060-NA,,,,,, +77727,Ag30,EA060,?,EA060-NA,,,,,, +77728,Ag31,EA060,?,EA060-NA,,,,,, +77729,Ag32,EA060,?,EA060-NA,,,,,, +77730,Ag33,EA060,?,EA060-NA,,,,,, +77731,Ag34,EA060,?,EA060-NA,,,,,, +77732,Ag35,EA060,?,EA060-NA,,,,,, +77733,Ag36,EA060,?,EA060-NA,,,,,, +77734,Ag37,EA060,?,EA060-NA,,,,,, +77735,Ag38,EA060,?,EA060-NA,,,,,, +77736,Ag39,EA060,Most adults,EA060-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +77737,Ag4,EA060,Most adults,EA060-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +77738,Ag40,EA060,?,EA060-NA,,,,,, +77739,Ag41,EA060,Most adults,EA060-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p72, +77740,Ag42,EA060,?,EA060-NA,,,,,, +77741,Ag43,EA060,?,EA060-NA,,,,,, +77742,Ag44,EA060,?,EA060-NA,,,,,, +77743,Ag45,EA060,?,EA060-NA,,,,,, +77744,Ag46,EA060,?,EA060-NA,,,,,, +77745,Ag47,EA060,Most adults,EA060-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +77746,Ag48,EA060,Most adults,EA060-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +77747,Ag49,EA060,?,EA060-NA,,,,,, +77748,Ag5,EA060,Most adults,EA060-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +77749,Ag50,EA060,?,EA060-NA,,,,,, +77750,Ag51,EA060,?,EA060-NA,,,,,, +77751,Ag52,EA060,?,EA060-NA,,,,,, +77752,Ag53,EA060,Most adults,EA060-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +77753,Ag54,EA060,Most adults,EA060-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +77754,Ag6,EA060,?,EA060-NA,,,,,, +77755,Ag7,EA060,?,EA060-NA,,,,,, +77756,Ag8,EA060,?,EA060-NA,,,,,, +77757,Ag9,EA060,?,EA060-NA,,,,,, +77758,Ah1,EA060,Most adults,EA060-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +77759,Ah10,EA060,?,EA060-NA,,,,,, +77760,Ah11,EA060,?,EA060-NA,,,,,, +77761,Ah12,EA060,?,EA060-NA,,,,,, +77762,Ah13,EA060,?,EA060-NA,,,,,, +77763,Ah14,EA060,?,EA060-NA,,,,,, +77764,Ah15,EA060,?,EA060-NA,,,,,, +77765,Ah16,EA060,?,EA060-NA,,,,,, +77766,Ah17,EA060,?,EA060-NA,,,,,, +77767,Ah18,EA060,?,EA060-NA,,,,,, +77768,Ah19,EA060,?,EA060-NA,,,,,, +77769,Ah2,EA060,?,EA060-NA,,,,,, +77770,Ah20,EA060,Most adults,EA060-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +77771,Ah21,EA060,?,EA060-NA,,,,,, +77772,Ah22,EA060,?,EA060-NA,,,,,, +77773,Ah23,EA060,?,EA060-NA,,,,,, +77774,Ah24,EA060,?,EA060-NA,,,,,, +77775,Ah25,EA060,?,EA060-NA,,,,,, +77776,Ah26,EA060,?,EA060-NA,,,,,, +77777,Ah27,EA060,?,EA060-NA,,,,,, +77778,Ah28,EA060,?,EA060-NA,,,,,, +77779,Ah29,EA060,?,EA060-NA,,,,,, +77780,Ah3,EA060,Most adults,EA060-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +77781,Ah30,EA060,?,EA060-NA,,,,,, +77782,Ah31,EA060,?,EA060-NA,,,,,, +77783,Ah32,EA060,?,EA060-NA,,,,,, +77784,Ah33,EA060,?,EA060-NA,,,,,, +77785,Ah34,EA060,?,EA060-NA,,,,,, +77786,Ah35,EA060,?,EA060-NA,,,,,, +77787,Ah36,EA060,Most adults,EA060-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +77788,Ah37,EA060,?,EA060-NA,,,,,, +77789,Ah38,EA060,?,EA060-NA,,,,,, +77790,Ah39,EA060,Most adults,EA060-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +77791,Ah4,EA060,?,EA060-NA,,,,,, +77792,Ah5,EA060,?,EA060-NA,,,,,, +77793,Ah6,EA060,?,EA060-NA,,,,,, +77794,Ah7,EA060,Most adults,EA060-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +77795,Ah8,EA060,?,EA060-NA,,,,,, +77796,Ah9,EA060,Most adults,EA060-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +77797,Ai1,EA060,?,EA060-NA,,,,,, +77798,Ai10,EA060,?,EA060-NA,,,,,, +77799,Ai11,EA060,?,EA060-NA,,,,,, +77800,Ai12,EA060,?,EA060-NA,,,,,, +77801,Ai13,EA060,?,EA060-NA,,,,,, +77802,Ai14,EA060,?,EA060-NA,,,,,, +77803,Ai15,EA060,?,EA060-NA,,,,,, +77804,Ai16,EA060,?,EA060-NA,,,,,, +77805,Ai17,EA060,?,EA060-NA,,,,,, +77806,Ai18,EA060,?,EA060-NA,,,,,, +77807,Ai19,EA060,?,EA060-NA,,,,,, +77808,Ai2,EA060,?,EA060-NA,,,,,, +77809,Ai20,EA060,?,EA060-NA,,,,,, +77810,Ai21,EA060,?,EA060-NA,,,,,, +77811,Ai22,EA060,?,EA060-NA,,,,,, +77812,Ai23,EA060,?,EA060-NA,,,,,, +77813,Ai24,EA060,?,EA060-NA,,,,,, +77814,Ai25,EA060,?,EA060-NA,,,,,, +77815,Ai26,EA060,?,EA060-NA,,,,,, +77816,Ai27,EA060,?,EA060-NA,,,,,, +77817,Ai28,EA060,?,EA060-NA,,,,,, +77818,Ai29,EA060,?,EA060-NA,,,,,, +77819,Ai3,EA060,Most adults,EA060-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +77820,Ai30,EA060,?,EA060-NA,,,,,, +77821,Ai31,EA060,?,EA060-NA,,,,,, +77822,Ai32,EA060,Most adults,EA060-9,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p76, +77823,Ai33,EA060,Most adults,EA060-9,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p76, +77824,Ai34,EA060,?,EA060-NA,,,,,, +77825,Ai35,EA060,Most adults,EA060-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +77826,Ai36,EA060,Most adults,EA060-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +77827,Ai37,EA060,?,EA060-NA,,,,,, +77828,Ai38,EA060,?,EA060-NA,,,,,, +77829,Ai39,EA060,?,EA060-NA,,,,,, +77830,Ai4,EA060,?,EA060-NA,,,,,, +77831,Ai40,EA060,?,EA060-NA,,,,,, +77832,Ai41,EA060,?,EA060-NA,,,,,, +77833,Ai42,EA060,?,EA060-NA,,,,,, +77834,Ai43,EA060,?,EA060-NA,,,,,, +77835,Ai44,EA060,?,EA060-NA,,,,,, +77836,Ai45,EA060,?,EA060-NA,,,,,, +77837,Ai46,EA060,?,EA060-NA,,,,,, +77838,Ai47,EA060,Most adults,EA060-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +77839,Ai5,EA060,?,EA060-NA,,,,,, +77840,Ai6,EA060,Most adults,EA060-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +77841,Ai7,EA060,?,EA060-NA,,,,,, +77842,Ai8,EA060,?,EA060-NA,,,,,, +77843,Ai9,EA060,?,EA060-NA,,,,,, +77844,Aj1,EA060,?,EA060-NA,,,,,, +77845,Aj10,EA060,?,EA060-NA,,,,,, +77846,Aj11,EA060,?,EA060-NA,,,,,, +77847,Aj12,EA060,?,EA060-NA,,,,,, +77848,Aj13,EA060,?,EA060-NA,,,,,, +77849,Aj14,EA060,?,EA060-NA,,,,,, +77850,Aj15,EA060,Most adults,EA060-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +77851,Aj16,EA060,?,EA060-NA,,,,,, +77852,Aj17,EA060,Most adults,EA060-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +77853,Aj18,EA060,?,EA060-NA,,,,,, +77854,Aj19,EA060,?,EA060-NA,,,,,, +77855,Aj2,EA060,?,EA060-NA,,,,,, +77856,Aj20,EA060,?,EA060-NA,,,,,, +77857,Aj21,EA060,?,EA060-NA,,,,,, +77858,Aj22,EA060,Most adults,EA060-9,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +77859,Aj23,EA060,Most adults,EA060-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +77860,Aj24,EA060,?,EA060-NA,,,,,, +77861,Aj25,EA060,?,EA060-NA,,,,,, +77862,Aj26,EA060,?,EA060-NA,,,,,, +77863,Aj27,EA060,?,EA060-NA,,,,,, +77864,Aj28,EA060,?,EA060-NA,,,,,, +77865,Aj29,EA060,?,EA060-NA,,,,,, +77866,Aj3,EA060,?,EA060-NA,,,,,, +77867,Aj30,EA060,?,EA060-NA,,,,,, +77868,Aj31,EA060,?,EA060-NA,,,,,, +77869,Aj4,EA060,?,EA060-NA,,,,,, +77870,Aj5,EA060,Most adults,EA060-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +77871,Aj6,EA060,?,EA060-NA,,,,,, +77872,Aj7,EA060,Most adults,EA060-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +77873,Aj8,EA060,?,EA060-NA,,,,,, +77874,Aj9,EA060,Most adults,EA060-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +77875,Ca1,EA060,Most adults,EA060-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +77876,Ca10,EA060,?,EA060-NA,,,,,, +77877,Ca11,EA060,Most adults,EA060-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +77878,Ca12,EA060,Most adults,EA060-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +77879,Ca13,EA060,Most adults,EA060-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +77880,Ca14,EA060,?,EA060-NA,,,,,, +77881,Ca15,EA060,?,EA060-NA,,,,,, +77882,Ca16,EA060,?,EA060-NA,,,,,, +77883,Ca17,EA060,Most adults,EA060-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +77884,Ca18,EA060,?,EA060-NA,,,,,, +77885,Ca19,EA060,Most adults,EA060-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +77886,Ca2,EA060,Most adults,EA060-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +77887,Ca20,EA060,?,EA060-NA,,,,,, +77888,Ca21,EA060,Most adults,EA060-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +77889,Ca22,EA060,?,EA060-NA,,,,,, +77890,Ca23,EA060,?,EA060-NA,,,,,, +77891,Ca24,EA060,?,EA060-NA,,,,,, +77892,Ca25,EA060,?,EA060-NA,,,,,, +77893,Ca26,EA060,?,EA060-NA,,,,,, +77894,Ca27,EA060,?,EA060-NA,,,,,, +77895,Ca28,EA060,?,EA060-NA,,,,,, +77896,Ca29,EA060,?,EA060-NA,,,,,, +77897,Ca3,EA060,?,EA060-NA,,,,,, +77898,Ca30,EA060,?,EA060-NA,,,,,, +77899,Ca31,EA060,?,EA060-NA,,,,,, +77900,Ca32,EA060,?,EA060-NA,,,,,, +77901,Ca33,EA060,?,EA060-NA,,,,,, +77902,Ca34,EA060,?,EA060-NA,,,,,, +77903,Ca35,EA060,?,EA060-NA,,,,,, +77904,Ca36,EA060,?,EA060-NA,,,,,, +77905,Ca37,EA060,?,EA060-NA,,,,,, +77906,Ca38,EA060,?,EA060-NA,,,,,, +77907,Ca39,EA060,?,EA060-NA,,,,,, +77908,Ca4,EA060,?,EA060-NA,,,,,, +77909,Ca40,EA060,?,EA060-NA,,,,,, +77910,Ca41,EA060,Most adults,EA060-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +77911,Ca42,EA060,Most adults,EA060-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +77912,Ca43,EA060,?,EA060-NA,,,,,, +77913,Ca5,EA060,?,EA060-NA,,,,,, +77914,Ca6,EA060,Most adults,EA060-9,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p80, +77915,Ca7,EA060,Most adults,EA060-9,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +77916,Ca8,EA060,?,EA060-NA,,,,,, +77917,Ca9,EA060,?,EA060-NA,,,,,, +77918,Cb1,EA060,?,EA060-NA,,,,,, +77919,Cb10,EA060,?,EA060-NA,,,,,, +77920,Cb11,EA060,?,EA060-NA,,,,,, +77921,Cb12,EA060,?,EA060-NA,,,,,, +77922,Cb13,EA060,?,EA060-NA,,,,,, +77923,Cb14,EA060,?,EA060-NA,,,,,, +77924,Cb15,EA060,?,EA060-NA,,,,,, +77925,Cb16,EA060,?,EA060-NA,,,,,, +77926,Cb17,EA060,?,EA060-NA,,,,,, +77927,Cb18,EA060,?,EA060-NA,,,,,, +77928,Cb19,EA060,?,EA060-NA,,,,,, +77929,Cb2,EA060,Most adults,EA060-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +77930,Cb20,EA060,?,EA060-NA,,,,,, +77931,Cb21,EA060,?,EA060-NA,,,,,, +77932,Cb22,EA060,?,EA060-NA,,,,,, +77933,Cb23,EA060,?,EA060-NA,,,,,, +77934,Cb24,EA060,?,EA060-NA,,,,,, +77935,Cb25,EA060,?,EA060-NA,,,,,, +77936,Cb26,EA060,Most adults,EA060-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +77937,Cb27,EA060,?,EA060-NA,,,,,, +77938,Cb28,EA060,?,EA060-NA,,,,,, +77939,Cb29,EA060,?,EA060-NA,,,,,, +77940,Cb3,EA060,Most adults,EA060-9,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +77941,Cb4,EA060,?,EA060-NA,,,,,, +77942,Cb5,EA060,?,EA060-NA,,,,,, +77943,Cb6,EA060,?,EA060-NA,,,,,, +77944,Cb7,EA060,?,EA060-NA,,,,,, +77945,Cb8,EA060,?,EA060-NA,,,,,, +77946,Cb9,EA060,?,EA060-NA,,,,,, +77947,Cc1,EA060,Most adults,EA060-9,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +77948,Cc10,EA060,Most adults,EA060-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +77949,Cc11,EA060,?,EA060-NA,,,,,, +77950,Cc12,EA060,?,EA060-NA,,,,,, +77951,Cc13,EA060,?,EA060-NA,,,,,, +77952,Cc14,EA060,Most adults,EA060-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +77953,Cc15,EA060,?,EA060-NA,,,,,, +77954,Cc16,EA060,?,EA060-NA,,,,,, +77955,Cc17,EA060,Most adults,EA060-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +77956,Cc18,EA060,?,EA060-NA,,,,,, +77957,Cc19,EA060,?,EA060-NA,,,,,, +77958,Cc2,EA060,Most adults,EA060-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +77959,Cc20,EA060,?,EA060-NA,,,,,, +77960,Cc3,EA060,?,EA060-NA,,,,,, +77961,Cc4,EA060,?,EA060-NA,,,,,, +77962,Cc5,EA060,?,EA060-NA,,,,,, +77963,Cc6,EA060,?,EA060-NA,,,,,, +77964,Cc7,EA060,?,EA060-NA,,,,,, +77965,Cc8,EA060,?,EA060-NA,,,,,, +77966,Cc9,EA060,Most adults,EA060-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +77967,Cd1,EA060,?,EA060-NA,,,,,, +77968,Cd10,EA060,?,EA060-NA,,,,,, +77969,Cd11,EA060,?,EA060-NA,,,,,, +77970,Cd12,EA060,?,EA060-NA,,,,,, +77971,Cd13,EA060,?,EA060-NA,,,,,, +77972,Cd14,EA060,?,EA060-NA,,,,,, +77973,Cd15,EA060,?,EA060-NA,,,,,, +77974,Cd16,EA060,?,EA060-NA,,,,,, +77975,Cd17,EA060,?,EA060-NA,,,,,, +77976,Cd18,EA060,?,EA060-NA,,,,,, +77977,Cd19,EA060,?,EA060-NA,,,,,, +77978,Cd2,EA060,?,EA060-NA,,,,,, +77979,Cd20,EA060,?,EA060-NA,,,,,, +77980,Cd21,EA060,?,EA060-NA,,,,,, +77981,Cd3,EA060,Most adults,EA060-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +77982,Cd4,EA060,?,EA060-NA,,,,,, +77983,Cd5,EA060,?,EA060-NA,,,,,, +77984,Cd6,EA060,?,EA060-NA,,,,,, +77985,Cd7,EA060,?,EA060-NA,,,,,, +77986,Cd8,EA060,?,EA060-NA,,,,,, +77987,Cd9,EA060,?,EA060-NA,,,,,, +77988,Ce1,EA060,Most adults,EA060-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +77989,Ce2,EA060,?,EA060-NA,,,,,, +77990,Ce3,EA060,Craft,EA060-3,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +77991,Ce4,EA060,?,EA060-NA,,,,,, +77992,Ce5,EA060,Most adults,EA060-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +77993,Ce6,EA060,Most adults,EA060-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +77994,Ce7,EA060,Craft,EA060-3,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +77995,Ce8,EA060,Most adults,EA060-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +77996,Cf1,EA060,Craft,EA060-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +77997,Cf2,EA060,?,EA060-NA,,,,,, +77998,Cf3,EA060,Most adults,EA060-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +77999,Cf4,EA060,Most adults,EA060-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +78000,Cf5,EA060,?,EA060-NA,,,,,, +78001,Cg1,EA060,Craft,EA060-3,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +78002,Cg2,EA060,Most adults,EA060-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +78003,Cg3,EA060,Most adults,EA060-9,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +78004,Cg4,EA060,Most adults,EA060-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +78005,Cg5,EA060,?,EA060-NA,,,,,, +78006,Ch1,EA060,Craft,EA060-3,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +78007,Ch10,EA060,?,EA060-NA,,,,,, +78008,Ch11,EA060,Most adults,EA060-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +78009,Ch2,EA060,Most adults,EA060-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +78010,Ch3,EA060,Craft,EA060-3,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +78011,Ch4,EA060,Most adults,EA060-9,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p84, +78012,Ch5,EA060,Most adults,EA060-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +78013,Ch6,EA060,?,EA060-NA,,,,,, +78014,Ch7,EA060,?,EA060-NA,,,,,, +78015,Ch8,EA060,?,EA060-NA,,,,,, +78016,Ch9,EA060,?,EA060-NA,,,,,, +78017,Ci1,EA060,Most adults,EA060-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +78018,Ci10,EA060,Most adults,EA060-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +78019,Ci11,EA060,Craft,EA060-3,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +78020,Ci12,EA060,Most adults,EA060-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +78021,Ci2,EA060,?,EA060-NA,,,,,, +78022,Ci3,EA060,Activity is absent,EA060-10,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p84, +78023,Ci4,EA060,?,EA060-NA,,,,,, +78024,Ci5,EA060,Craft,EA060-3,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +78025,Ci6,EA060,?,EA060-NA,,,,,, +78026,Ci7,EA060,?,EA060-NA,,,,,, +78027,Ci8,EA060,?,EA060-NA,,,,,, +78028,Ci9,EA060,?,EA060-NA,,,,,, +78029,Cj1,EA060,Most adults,EA060-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +78030,Cj10,EA060,Most adults,EA060-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +78031,Cj2,EA060,Most adults,EA060-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +78032,Cj3,EA060,Craft,EA060-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +78033,Cj4,EA060,Craft,EA060-3,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +78034,Cj5,EA060,Most adults,EA060-9,,dickson1949,,1930,EthnographicAtlas_1967_p88, +78035,Cj6,EA060,?,EA060-NA,,,,,, +78036,Cj7,EA060,Craft,EA060-3,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +78037,Cj8,EA060,Most adults,EA060-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +78038,Cj9,EA060,?,EA060-NA,,,,,, +78039,Ea1,EA060,?,EA060-NA,,,,,, +78040,Ea10,EA060,Most adults,EA060-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +78041,Ea11,EA060,?,EA060-NA,,,,,, +78042,Ea12,EA060,?,EA060-NA,,,,,, +78043,Ea13,EA060,Most adults,EA060-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +78044,Ea2,EA060,?,EA060-NA,,,,,, +78045,Ea3,EA060,Most adults,EA060-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +78046,Ea4,EA060,Most adults,EA060-9,,barth1956b,,1950,EthnographicAtlas_1967_p88, +78047,Ea5,EA060,Craft,EA060-3,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +78048,Ea6,EA060,Most adults,EA060-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +78049,Ea7,EA060,Most adults,EA060-9,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +78050,Ea8,EA060,Craft,EA060-3,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +78051,Ea9,EA060,Craft,EA060-3,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +78052,Eb1,EA060,Most adults,EA060-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +78053,Eb2,EA060,?,EA060-NA,,,,,, +78054,Eb3,EA060,Most adults,EA060-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +78055,Eb4,EA060,?,EA060-NA,,,,,, +78056,Eb5,EA060,?,EA060-NA,,,,,, +78057,Eb6,EA060,?,EA060-NA,,,,,, +78058,Eb7,EA060,Most adults,EA060-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +78059,Eb8,EA060,?,EA060-NA,,,,,, +78060,Ec1,EA060,Most adults,EA060-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +78061,Ec10,EA060,?,EA060-NA,,,,,, +78062,Ec11,EA060,?,EA060-NA,,,,,, +78063,Ec2,EA060,Most adults,EA060-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78064,Ec3,EA060,Most adults,EA060-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +78065,Ec4,EA060,Most adults,EA060-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +78066,Ec5,EA060,?,EA060-NA,,,,,, +78067,Ec6,EA060,?,EA060-NA,,,,,, +78068,Ec7,EA060,Most adults,EA060-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +78069,Ec8,EA060,?,EA060-NA,,,,,, +78070,Ec9,EA060,?,EA060-NA,,,,,, +78071,Ed1,EA060,Most adults,EA060-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +78072,Ed10,EA060,?,EA060-NA,,,,,, +78073,Ed13,EA060,?,EA060-NA,,,,,, +78074,Ed14,EA060,?,EA060-NA,,,,,, +78075,Ed15a,EA060,?,EA060-NA,,,,,, +78076,Ed15b,EA060,Craft,EA060-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +78077,Ed16,EA060,?,EA060-NA,,,,,, +78078,Ed2,EA060,Most adults,EA060-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +78079,Ed3,EA060,?,EA060-NA,,,,,, +78080,Ed4,EA060,Most adults,EA060-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +78081,Ed5,EA060,Craft,EA060-3,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78082,Ed6,EA060,?,EA060-NA,,,,,, +78083,Ed7,EA060,Most adults,EA060-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +78084,Ed8,EA060,Craft,EA060-3,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +78085,Ed9,EA060,?,EA060-NA,,,,,, +78086,Ee1,EA060,Most adults,EA060-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +78087,Ee2,EA060,Most adults,EA060-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +78088,Ee3,EA060,Most adults,EA060-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +78089,Ee4,EA060,?,EA060-NA,,,,,, +78090,Ee5,EA060,Most adults,EA060-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +78091,Ee6,EA060,Craft,EA060-3,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +78092,Ee7,EA060,?,EA060-NA,,,,,, +78093,Ee8,EA060,?,EA060-NA,,,,,, +78094,Ef1,EA060,Most adults,EA060-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +78095,Ef10,EA060,?,EA060-NA,,,,,, +78096,Ef11,EA060,Craft,EA060-3,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +78097,Ef2,EA060,Craft,EA060-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +78098,Ef3,EA060,?,EA060-NA,,,,,, +78099,Ef4,EA060,?,EA060-NA,,,,,, +78100,Ef5,EA060,Most adults,EA060-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +78101,Ef6,EA060,Most adults,EA060-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +78102,Ef7,EA060,Craft,EA060-3,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +78103,Ef8,EA060,Craft,EA060-3,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +78104,Ef9,EA060,?,EA060-NA,,,,,, +78105,Eg1,EA060,Most adults,EA060-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78106,Eg10,EA060,Craft,EA060-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +78107,Eg11,EA060,?,EA060-NA,,,,,, +78108,Eg12,EA060,?,EA060-NA,,,,,, +78109,Eg13,EA060,Most adults,EA060-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78110,Eg14,EA060,?,EA060-NA,,,,,, +78111,Eg2,EA060,Craft,EA060-3,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +78112,Eg3,EA060,Most adults,EA060-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +78113,Eg4,EA060,Most adults,EA060-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +78114,Eg5,EA060,Most adults,EA060-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +78115,Eg6,EA060,?,EA060-NA,,,,,, +78116,Eg7,EA060,Most adults,EA060-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +78117,Eg8,EA060,Most adults,EA060-9,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +78118,Eg9,EA060,?,EA060-NA,,,,,, +78119,Eh1,EA060,Most adults,EA060-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +78120,Eh10,EA060,?,EA060-NA,,,,,, +78121,Eh2,EA060,Craft,EA060-3,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +78122,Eh3,EA060,Most adults,EA060-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +78123,Eh4,EA060,?,EA060-NA,,,,,, +78124,Eh5,EA060,Most adults,EA060-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +78125,Eh6,EA060,?,EA060-NA,,,,,, +78126,Eh7,EA060,Most adults,EA060-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +78127,Eh8,EA060,Most adults,EA060-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +78128,Eh9,EA060,?,EA060-NA,,,,,, +78129,Ei1,EA060,Most adults,EA060-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78130,Ei10,EA060,Most adults,EA060-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +78131,Ei11,EA060,Most adults,EA060-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +78132,Ei12,EA060,?,EA060-NA,,,,,, +78133,Ei13,EA060,?,EA060-NA,,,,,, +78134,Ei14,EA060,Most adults,EA060-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +78135,Ei15,EA060,?,EA060-NA,,,,,, +78136,Ei16,EA060,?,EA060-NA,,,,,, +78137,Ei17,EA060,?,EA060-NA,,,,,, +78138,Ei18,EA060,Most adults,EA060-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +78139,Ei19,EA060,?,EA060-NA,,,,,, +78140,Ei2,EA060,Most adults,EA060-9,,mills1922,,1920,EthnographicAtlas_1967_p92, +78141,Ei20,EA060,?,EA060-NA,,,,,, +78142,Ei3,EA060,Craft,EA060-3,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +78143,Ei4,EA060,Most adults,EA060-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +78144,Ei5,EA060,Most adults,EA060-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +78145,Ei6,EA060,?,EA060-NA,,,,,, +78146,Ei7,EA060,Most adults,EA060-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +78147,Ei8,EA060,Most adults,EA060-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +78148,Ei9,EA060,Most adults,EA060-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +78149,Ej1,EA060,Most adults,EA060-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +78150,Ej10,EA060,Most adults,EA060-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +78151,Ej11,EA060,?,EA060-NA,,,,,, +78152,Ej12,EA060,Most adults,EA060-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +78153,Ej13,EA060,Craft,EA060-3,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +78154,Ej14,EA060,?,EA060-NA,,,,,, +78155,Ej15,EA060,Most adults,EA060-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +78156,Ej16,EA060,Craft,EA060-3,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +78157,Ej2,EA060,Most adults,EA060-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +78158,Ej3,EA060,Most adults,EA060-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +78159,Ej4,EA060,Craft,EA060-3,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +78160,Ej5,EA060,Most adults,EA060-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +78161,Ej6,EA060,?,EA060-NA,,,,,, +78162,Ej7,EA060,?,EA060-NA,,,,,, +78163,Ej8,EA060,Most adults,EA060-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +78164,Ej9,EA060,Most adults,EA060-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +78165,Ia1,EA060,Most adults,EA060-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +78166,Ia10,EA060,?,EA060-NA,,,,,, +78167,Ia11,EA060,?,EA060-NA,,,,,, +78168,Ia12,EA060,?,EA060-NA,,,,,, +78169,Ia13,EA060,Most adults,EA060-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +78170,Ia14,EA060,?,EA060-NA,,,,,, +78171,Ia15,EA060,?,EA060-NA,,,,,, +78172,Ia16,EA060,Most adults,EA060-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +78173,Ia17,EA060,?,EA060-NA,,,,,, +78174,Ia18,EA060,?,EA060-NA,,,,,, +78175,Ia2,EA060,Most adults,EA060-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +78176,Ia3,EA060,?,EA060-NA,,,,,, +78177,Ia4,EA060,?,EA060-NA,,,,,, +78178,Ia5,EA060,?,EA060-NA,,,,,, +78179,Ia6,EA060,?,EA060-NA,,,,,, +78180,Ia7,EA060,?,EA060-NA,,,,,, +78181,Ia8,EA060,?,EA060-NA,,,,,, +78182,Ia9,EA060,?,EA060-NA,,,,,, +78183,Ib1,EA060,Most adults,EA060-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78184,Ib2,EA060,Most adults,EA060-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78185,Ib3,EA060,Most adults,EA060-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +78186,Ib4,EA060,?,EA060-NA,,,,,, +78187,Ib5,EA060,?,EA060-NA,,,,,, +78188,Ib6,EA060,?,EA060-NA,,,,,, +78189,Ib7,EA060,?,EA060-NA,,,,,, +78190,Ib8,EA060,?,EA060-NA,,,,,, +78191,Ib9,EA060,?,EA060-NA,,,,,, +78192,Ic1,EA060,Most adults,EA060-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78193,Ic10,EA060,?,EA060-NA,,,,,, +78194,Ic11,EA060,Most adults,EA060-9,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78195,Ic12,EA060,Most adults,EA060-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +78196,Ic13,EA060,?,EA060-NA,,,,,, +78197,Ic2,EA060,Most adults,EA060-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +78198,Ic3,EA060,?,EA060-NA,,,,,, +78199,Ic4,EA060,?,EA060-NA,,,,,, +78200,Ic5,EA060,?,EA060-NA,,,,,, +78201,Ic6,EA060,?,EA060-NA,,,,,, +78202,Ic7,EA060,?,EA060-NA,,,,,, +78203,Ic8,EA060,?,EA060-NA,,,,,, +78204,Ic9,EA060,?,EA060-NA,,,,,, +78205,Id1,EA060,Most adults,EA060-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +78206,Id10,EA060,Most adults,EA060-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +78207,Id11,EA060,?,EA060-NA,,,,,, +78208,Id12,EA060,?,EA060-NA,,,,,, +78209,Id13,EA060,?,EA060-NA,,,,,, +78210,Id2,EA060,Most adults,EA060-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +78211,Id3,EA060,?,EA060-NA,,,,,, +78212,Id4,EA060,?,EA060-NA,,,,,, +78213,Id5,EA060,?,EA060-NA,,,,,, +78214,Id6,EA060,?,EA060-NA,,,,,, +78215,Id7,EA060,?,EA060-NA,,,,,, +78216,Id8,EA060,Most adults,EA060-9,,roth1890,,1830,EthnographicAtlas_1967_p96, +78217,Id9,EA060,?,EA060-NA,,,,,, +78218,Ie1,EA060,Most adults,EA060-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78219,Ie10,EA060,Most adults,EA060-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +78220,Ie11,EA060,Most adults,EA060-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +78221,Ie12,EA060,Most adults,EA060-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78222,Ie13,EA060,?,EA060-NA,,,,,, +78223,Ie14,EA060,?,EA060-NA,,,,,, +78224,Ie15,EA060,Most adults,EA060-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78225,Ie16,EA060,?,EA060-NA,,,,,, +78226,Ie17,EA060,Most adults,EA060-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +78227,Ie18,EA060,?,EA060-NA,,,,,, +78228,Ie19,EA060,Most adults,EA060-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +78229,Ie2,EA060,?,EA060-NA,,,,,, +78230,Ie20,EA060,?,EA060-NA,,,,,, +78231,Ie21,EA060,?,EA060-NA,,,,,, +78232,Ie22,EA060,?,EA060-NA,,,,,, +78233,Ie23,EA060,?,EA060-NA,,,,,, +78234,Ie24,EA060,?,EA060-NA,,,,,, +78235,Ie25,EA060,?,EA060-NA,,,,,, +78236,Ie26,EA060,?,EA060-NA,,,,,, +78237,Ie27,EA060,?,EA060-NA,,,,,, +78238,Ie28,EA060,Most adults,EA060-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +78239,Ie29,EA060,Most adults,EA060-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78240,Ie3,EA060,?,EA060-NA,,,,,, +78241,Ie30,EA060,?,EA060-NA,,,,,, +78242,Ie31,EA060,Most adults,EA060-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +78243,Ie32,EA060,Most adults,EA060-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +78244,Ie33,EA060,?,EA060-NA,,,,,, +78245,Ie34,EA060,?,EA060-NA,,,,,, +78246,Ie35,EA060,Most adults,EA060-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +78247,Ie36,EA060,?,EA060-NA,,,,,, +78248,Ie37,EA060,?,EA060-NA,,,,,, +78249,Ie38,EA060,Most adults,EA060-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +78250,Ie39,EA060,?,EA060-NA,,,,,, +78251,Ie4,EA060,Most adults,EA060-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78252,Ie5,EA060,Most adults,EA060-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +78253,Ie6,EA060,?,EA060-NA,,,,,, +78254,Ie7,EA060,Most adults,EA060-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +78255,Ie8,EA060,Most adults,EA060-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +78256,Ie9,EA060,?,EA060-NA,,,,,, +78257,If1,EA060,Most adults,EA060-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78258,If10,EA060,?,EA060-NA,,,,,, +78259,If11,EA060,Most adults,EA060-9,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +78260,If12,EA060,?,EA060-NA,,,,,, +78261,If13,EA060,?,EA060-NA,,,,,, +78262,If14,EA060,Most adults,EA060-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +78263,If15,EA060,Most adults,EA060-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +78264,If16,EA060,Most adults,EA060-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +78265,If17,EA060,Most adults,EA060-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +78266,If2,EA060,Most adults,EA060-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +78267,If3,EA060,Most adults,EA060-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +78268,If4,EA060,Most adults,EA060-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +78269,If5,EA060,Most adults,EA060-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +78270,If6,EA060,Most adults,EA060-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +78271,If7,EA060,Most adults,EA060-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +78272,If8,EA060,Craft,EA060-3,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +78273,If9,EA060,Most adults,EA060-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +78274,Ig1,EA060,Most adults,EA060-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +78275,Ig10,EA060,Most adults,EA060-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +78276,Ig11,EA060,Most adults,EA060-9,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +78277,Ig12,EA060,?,EA060-NA,,,,,, +78278,Ig13,EA060,?,EA060-NA,,,,,, +78279,Ig14,EA060,Most adults,EA060-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +78280,Ig15,EA060,?,EA060-NA,,,,,, +78281,Ig16,EA060,?,EA060-NA,,,,,, +78282,Ig17,EA060,?,EA060-NA,,,,,, +78283,Ig18,EA060,?,EA060-NA,,,,,, +78284,Ig19,EA060,?,EA060-NA,,,,,, +78285,Ig2,EA060,Most adults,EA060-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +78286,Ig20,EA060,Most adults,EA060-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +78287,Ig21,EA060,Most adults,EA060-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +78288,Ig3,EA060,Most adults,EA060-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +78289,Ig4,EA060,Most adults,EA060-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +78290,Ig5,EA060,?,EA060-NA,,,,,, +78291,Ig6,EA060,Most adults,EA060-9,,ivens1927,,1900,EthnographicAtlas_1967_p100, +78292,Ig7,EA060,Most adults,EA060-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +78293,Ig8,EA060,?,EA060-NA,,,,,, +78294,Ig9,EA060,Most adults,EA060-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +78295,Ih1,EA060,?,EA060-NA,,,,,, +78296,Ih10,EA060,?,EA060-NA,,,,,, +78297,Ih11,EA060,?,EA060-NA,,,,,, +78298,Ih12,EA060,?,EA060-NA,,,,,, +78299,Ih13,EA060,?,EA060-NA,,,,,, +78300,Ih14,EA060,Most adults,EA060-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +78301,Ih2,EA060,?,EA060-NA,,,,,, +78302,Ih3,EA060,?,EA060-NA,,,,,, +78303,Ih4,EA060,Most adults,EA060-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78304,Ih5,EA060,?,EA060-NA,,,,,, +78305,Ih6,EA060,?,EA060-NA,,,,,, +78306,Ih7,EA060,Most adults,EA060-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +78307,Ih8,EA060,Most adults,EA060-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +78308,Ih9,EA060,Most adults,EA060-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78309,Ii1,EA060,Craft,EA060-3,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +78310,Ii10,EA060,?,EA060-NA,,,,,, +78311,Ii12,EA060,Most adults,EA060-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78312,Ii13,EA060,Craft,EA060-3,,burrows1937,,1830,EthnographicAtlas_1967_p100, +78313,Ii14,EA060,Craft,EA060-3,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +78314,Ii2,EA060,Most adults,EA060-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +78315,Ii3,EA060,Most adults,EA060-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +78316,Ii4,EA060,Most adults,EA060-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +78317,Ii5,EA060,Most adults,EA060-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +78318,Ii6,EA060,?,EA060-NA,,,,,, +78319,Ii7,EA060,Most adults,EA060-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +78320,Ii8,EA060,Most adults,EA060-9,,burrows1936,,1840,EthnographicAtlas_1967_p100, +78321,Ii9,EA060,Most adults,EA060-9,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +78322,Ij1,EA060,Most adults,EA060-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +78323,Ij10,EA060,?,EA060-NA,,,,,, +78324,Ij2,EA060,Most adults,EA060-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +78325,Ij3,EA060,Most adults,EA060-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +78326,Ij4,EA060,?,EA060-NA,,,,,, +78327,Ij5,EA060,Most adults,EA060-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +78328,Ij6,EA060,Most adults,EA060-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +78329,Ij7,EA060,Craft,EA060-3,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +78330,Ij8,EA060,?,EA060-NA,,,,,, +78331,Ij9,EA060,?,EA060-NA,,,,,, +78332,Na1,EA060,Most adults,EA060-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +78333,Na10,EA060,Most adults,EA060-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +78334,Na11,EA060,Most adults,EA060-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +78335,Na12,EA060,Most adults,EA060-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +78336,Na13,EA060,Most adults,EA060-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +78337,Na14,EA060,Most adults,EA060-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +78338,Na15,EA060,Most adults,EA060-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +78339,Na16,EA060,Most adults,EA060-9,,osgood1931,,1860,EthnographicAtlas_1967_p104, +78340,Na17,EA060,?,EA060-NA,,,,,, +78341,Na19,EA060,?,EA060-NA,,,,,, +78342,Na2,EA060,Most adults,EA060-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +78343,Na20,EA060,?,EA060-NA,,,,,, +78344,Na21,EA060,Most adults,EA060-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +78345,Na22,EA060,Most adults,EA060-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +78346,Na23,EA060,Most adults,EA060-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +78347,Na24,EA060,Most adults,EA060-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +78348,Na25,EA060,Most adults,EA060-9,"Formerly males alone (EA049 code ""1""), with no specialization specified (EA060 code ""9"")",birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +78349,Na26,EA060,Most adults,EA060-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +78350,Na27,EA060,Most adults,EA060-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +78351,Na28,EA060,?,EA060-NA,,,,,, +78352,Na29,EA060,Most adults,EA060-9,,goddard1916,,1850,EthnographicAtlas_1967_p104, +78353,Na3,EA060,Most adults,EA060-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +78354,Na30,EA060,Most adults,EA060-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +78355,Na31,EA060,Most adults,EA060-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +78356,Na32,EA060,Most adults,EA060-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +78357,Na33,EA060,Most adults,EA060-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +78358,Na34,EA060,Most adults,EA060-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +78359,Na35,EA060,Most adults,EA060-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +78360,Na36,EA060,Most adults,EA060-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +78361,Na37,EA060,Most adults,EA060-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +78362,Na38,EA060,Most adults,EA060-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +78363,Na39,EA060,?,EA060-NA,,,,,, +78364,Na4,EA060,Most adults,EA060-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +78365,Na40,EA060,?,EA060-NA,,,,,, +78366,Na41,EA060,Most adults,EA060-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +78367,Na42,EA060,?,EA060-NA,,,,,, +78368,Na43,EA060,?,EA060-NA,,,,,, +78369,Na44,EA060,?,EA060-NA,,,,,, +78370,Na45,EA060,Most adults,EA060-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +78371,Na5,EA060,Most adults,EA060-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +78372,Na6,EA060,Most adults,EA060-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +78373,Na7,EA060,Most adults,EA060-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +78374,Na8,EA060,Most adults,EA060-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +78375,Na9,EA060,?,EA060-NA,,,,,, +78376,Nb1,EA060,Most adults,EA060-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +78377,Nb10,EA060,?,EA060-NA,,,,,, +78378,Nb11,EA060,Most adults,EA060-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +78379,Nb12,EA060,Most adults,EA060-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +78380,Nb13,EA060,Most adults,EA060-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +78381,Nb14,EA060,Most adults,EA060-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +78382,Nb15,EA060,Most adults,EA060-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +78383,Nb16,EA060,?,EA060-NA,,,,,, +78384,Nb17,EA060,Most adults,EA060-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +78385,Nb18,EA060,?,EA060-NA,,,,,, +78386,Nb19,EA060,?,EA060-NA,,,,,, +78387,Nb2,EA060,Most adults,EA060-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +78388,Nb20,EA060,?,EA060-NA,,,,,, +78389,Nb21,EA060,?,EA060-NA,,,,,, +78390,Nb22,EA060,Most adults,EA060-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +78391,Nb23,EA060,?,EA060-NA,,,,,, +78392,Nb24,EA060,Most adults,EA060-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +78393,Nb25,EA060,Most adults,EA060-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +78394,Nb26,EA060,Most adults,EA060-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +78395,Nb27,EA060,Most adults,EA060-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +78396,Nb28,EA060,Most adults,EA060-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +78397,Nb29,EA060,?,EA060-NA,,,,,, +78398,Nb3,EA060,Most adults,EA060-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +78399,Nb30,EA060,?,EA060-NA,,,,,, +78400,Nb31,EA060,?,EA060-NA,,,,,, +78401,Nb32,EA060,Most adults,EA060-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +78402,Nb33,EA060,?,EA060-NA,,,,,, +78403,Nb34,EA060,?,EA060-NA,,,,,, +78404,Nb35,EA060,?,EA060-NA,,,,,, +78405,Nb36,EA060,?,EA060-NA,,,,,, +78406,Nb37,EA060,?,EA060-NA,,,,,, +78407,Nb38,EA060,?,EA060-NA,,,,,, +78408,Nb39,EA060,?,EA060-NA,,,,,, +78409,Nb4,EA060,Most adults,EA060-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +78410,Nb5,EA060,Most adults,EA060-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +78411,Nb6,EA060,?,EA060-NA,,,,,, +78412,Nb7,EA060,Most adults,EA060-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +78413,Nb8,EA060,?,EA060-NA,,,,,, +78414,Nb9,EA060,Most adults,EA060-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +78415,Nc1,EA060,Most adults,EA060-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +78416,Nc10,EA060,Most adults,EA060-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +78417,Nc11,EA060,?,EA060-NA,,,,,, +78418,Nc12,EA060,Most adults,EA060-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +78419,Nc13,EA060,Most adults,EA060-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +78420,Nc14,EA060,Most adults,EA060-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +78421,Nc15,EA060,?,EA060-NA,,,,,, +78422,Nc16,EA060,?,EA060-NA,,,,,, +78423,Nc17,EA060,?,EA060-NA,,,,,, +78424,Nc18,EA060,Most adults,EA060-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +78425,Nc19,EA060,?,EA060-NA,,,,,, +78426,Nc2,EA060,Most adults,EA060-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +78427,Nc20,EA060,?,EA060-NA,,,,,, +78428,Nc21,EA060,Most adults,EA060-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +78429,Nc22,EA060,Most adults,EA060-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +78430,Nc23,EA060,Most adults,EA060-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +78431,Nc24,EA060,?,EA060-NA,,,,,, +78432,Nc25,EA060,Most adults,EA060-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +78433,Nc26,EA060,?,EA060-NA,,,,,, +78434,Nc27,EA060,?,EA060-NA,,,,,, +78435,Nc28,EA060,?,EA060-NA,,,,,, +78436,Nc29,EA060,?,EA060-NA,,,,,, +78437,Nc3,EA060,?,EA060-NA,,,,,, +78438,Nc30,EA060,?,EA060-NA,,,,,, +78439,Nc31,EA060,?,EA060-NA,,,,,, +78440,Nc32,EA060,?,EA060-NA,,,,,, +78441,Nc33,EA060,?,EA060-NA,,,,,, +78442,Nc34,EA060,?,EA060-NA,,,,,, +78443,Nc4,EA060,Most adults,EA060-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +78444,Nc5,EA060,?,EA060-NA,,,,,, +78445,Nc6,EA060,?,EA060-NA,,,,,, +78446,Nc7,EA060,Most adults,EA060-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +78447,Nc8,EA060,Most adults,EA060-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +78448,Nc9,EA060,Most adults,EA060-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +78449,Nd1,EA060,Most adults,EA060-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +78450,Nd10,EA060,?,EA060-NA,,,,,, +78451,Nd11,EA060,?,EA060-NA,,,,,, +78452,Nd12,EA060,Most adults,EA060-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +78453,Nd13,EA060,Most adults,EA060-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +78454,Nd14,EA060,Most adults,EA060-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +78455,Nd15,EA060,Most adults,EA060-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +78456,Nd16,EA060,?,EA060-NA,,,,,, +78457,Nd17,EA060,?,EA060-NA,,,,,, +78458,Nd18,EA060,?,EA060-NA,,,,,, +78459,Nd19,EA060,?,EA060-NA,,,,,, +78460,Nd2,EA060,Most adults,EA060-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +78461,Nd20,EA060,?,EA060-NA,,,,,, +78462,Nd21,EA060,Most adults,EA060-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +78463,Nd22,EA060,Most adults,EA060-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +78464,Nd23,EA060,Most adults,EA060-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +78465,Nd24,EA060,Most adults,EA060-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +78466,Nd25,EA060,Most adults,EA060-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +78467,Nd26,EA060,Most adults,EA060-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +78468,Nd27,EA060,Most adults,EA060-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +78469,Nd28,EA060,Most adults,EA060-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +78470,Nd29,EA060,Most adults,EA060-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +78471,Nd3,EA060,Most adults,EA060-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +78472,Nd30,EA060,Most adults,EA060-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +78473,Nd31,EA060,?,EA060-NA,,,,,, +78474,Nd32,EA060,Most adults,EA060-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +78475,Nd33,EA060,?,EA060-NA,,,,,, +78476,Nd34,EA060,Most adults,EA060-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +78477,Nd35,EA060,Most adults,EA060-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +78478,Nd36,EA060,Most adults,EA060-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +78479,Nd37,EA060,Most adults,EA060-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +78480,Nd38,EA060,Most adults,EA060-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +78481,Nd39,EA060,Most adults,EA060-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +78482,Nd4,EA060,?,EA060-NA,,,,,, +78483,Nd40,EA060,?,EA060-NA,,,,,, +78484,Nd41,EA060,Most adults,EA060-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +78485,Nd42,EA060,Most adults,EA060-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +78486,Nd43,EA060,Most adults,EA060-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +78487,Nd44,EA060,Most adults,EA060-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +78488,Nd45,EA060,Most adults,EA060-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +78489,Nd46,EA060,?,EA060-NA,,,,,, +78490,Nd47,EA060,?,EA060-NA,,,,,, +78491,Nd48,EA060,Most adults,EA060-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +78492,Nd49,EA060,Most adults,EA060-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +78493,Nd5,EA060,?,EA060-NA,,,,,, +78494,Nd50,EA060,?,EA060-NA,,,,,, +78495,Nd51,EA060,?,EA060-NA,,,,,, +78496,Nd52,EA060,Most adults,EA060-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +78497,Nd53,EA060,Most adults,EA060-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +78498,Nd54,EA060,?,EA060-NA,,,,,, +78499,Nd55,EA060,?,EA060-NA,,,,,, +78500,Nd56,EA060,Most adults,EA060-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +78501,Nd57,EA060,?,EA060-NA,,,,,, +78502,Nd58,EA060,Most adults,EA060-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +78503,Nd59,EA060,?,EA060-NA,,,,,, +78504,Nd6,EA060,Most adults,EA060-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +78505,Nd60,EA060,Most adults,EA060-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +78506,Nd61,EA060,Most adults,EA060-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +78507,Nd62,EA060,Most adults,EA060-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +78508,Nd63,EA060,?,EA060-NA,,,,,, +78509,Nd64,EA060,Most adults,EA060-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +78510,Nd65,EA060,Most adults,EA060-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +78511,Nd66,EA060,Most adults,EA060-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +78512,Nd67,EA060,Most adults,EA060-9,,gifford1936,,1870,EthnographicAtlas_1967_p112, +78513,Nd7,EA060,Most adults,EA060-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +78514,Nd8,EA060,Most adults,EA060-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +78515,Nd9,EA060,?,EA060-NA,,,,,, +78516,Ne1,EA060,Most adults,EA060-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +78517,Ne10,EA060,?,EA060-NA,,,,,, +78518,Ne11,EA060,Most adults,EA060-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +78519,Ne12,EA060,Most adults,EA060-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +78520,Ne13,EA060,Most adults,EA060-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +78521,Ne14,EA060,Most adults,EA060-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +78522,Ne15,EA060,Most adults,EA060-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +78523,Ne16,EA060,Most adults,EA060-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +78524,Ne17,EA060,Most adults,EA060-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +78525,Ne18,EA060,Most adults,EA060-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +78526,Ne19,EA060,Most adults,EA060-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +78527,Ne2,EA060,Most adults,EA060-9,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +78528,Ne20,EA060,?,EA060-NA,,,,,, +78529,Ne21,EA060,?,EA060-NA,,,,,, +78530,Ne3,EA060,?,EA060-NA,,,,,, +78531,Ne4,EA060,Most adults,EA060-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +78532,Ne5,EA060,Most adults,EA060-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +78533,Ne6,EA060,?,EA060-NA,,,,,, +78534,Ne7,EA060,Most adults,EA060-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +78535,Ne8,EA060,Most adults,EA060-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +78536,Ne9,EA060,Most adults,EA060-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +78537,Nf10,EA060,Most adults,EA060-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +78538,Nf11,EA060,Most adults,EA060-9,,whitman1937,,1870,EthnographicAtlas_1967_p116, +78539,Nf12,EA060,Most adults,EA060-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +78540,Nf13,EA060,Most adults,EA060-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78541,Nf14,EA060,Most adults,EA060-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +78542,Nf15,EA060,?,EA060-NA,,,,,, +78543,Nf2,EA060,Most adults,EA060-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +78544,Nf3,EA060,Most adults,EA060-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +78545,Nf4,EA060,Most adults,EA060-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +78546,Nf5,EA060,Most adults,EA060-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +78547,Nf6,EA060,Most adults,EA060-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +78548,Nf7,EA060,Most adults,EA060-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78549,Nf8,EA060,Most adults,EA060-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +78550,Nf9,EA060,Most adults,EA060-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +78551,Ng1,EA060,Most adults,EA060-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +78552,Ng10,EA060,Most adults,EA060-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +78553,Ng11,EA060,?,EA060-NA,,,,,, +78554,Ng12,EA060,Most adults,EA060-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +78555,Ng13,EA060,?,EA060-NA,,,,,, +78556,Ng14,EA060,?,EA060-NA,,,,,, +78557,Ng15,EA060,?,EA060-NA,,,,,, +78558,Ng2,EA060,?,EA060-NA,,,,,, +78559,Ng3,EA060,Most adults,EA060-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +78560,Ng4,EA060,?,EA060-NA,,,,,, +78561,Ng5,EA060,?,EA060-NA,,,,,, +78562,Ng6,EA060,Most adults,EA060-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +78563,Ng7,EA060,Most adults,EA060-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +78564,Ng8,EA060,Most adults,EA060-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +78565,Ng9,EA060,?,EA060-NA,,,,,, +78566,Nh1,EA060,Most adults,EA060-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +78567,Nh10,EA060,?,EA060-NA,,,,,, +78568,Nh11,EA060,Most adults,EA060-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +78569,Nh12,EA060,?,EA060-NA,,,,,, +78570,Nh13,EA060,?,EA060-NA,,,,,, +78571,Nh14,EA060,?,EA060-NA,,,,,, +78572,Nh15,EA060,Most adults,EA060-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +78573,Nh16,EA060,Most adults,EA060-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78574,Nh17,EA060,Most adults,EA060-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +78575,Nh18,EA060,Most adults,EA060-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78576,Nh19,EA060,?,EA060-NA,,,,,, +78577,Nh2,EA060,?,EA060-NA,,,,,, +78578,Nh20,EA060,Most adults,EA060-9,,gifford1931,,1860,EthnographicAtlas_1967_p116, +78579,Nh21,EA060,Most adults,EA060-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78580,Nh22,EA060,?,EA060-NA,,,,,, +78581,Nh23,EA060,Most adults,EA060-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +78582,Nh24,EA060,?,EA060-NA,,,,,, +78583,Nh25,EA060,?,EA060-NA,,,,,, +78584,Nh26,EA060,?,EA060-NA,,,,,, +78585,Nh27,EA060,?,EA060-NA,,,,,, +78586,Nh3,EA060,Most adults,EA060-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +78587,Nh4,EA060,?,EA060-NA,,,,,, +78588,Nh5,EA060,Most adults,EA060-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +78589,Nh6,EA060,?,EA060-NA,,,,,, +78590,Nh7,EA060,?,EA060-NA,,,,,, +78591,Nh8,EA060,?,EA060-NA,,,,,, +78592,Nh9,EA060,?,EA060-NA,,,,,, +78593,Ni1,EA060,Most adults,EA060-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +78594,Ni2,EA060,?,EA060-NA,,,,,, +78595,Ni3,EA060,Most adults,EA060-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +78596,Ni4,EA060,Most adults,EA060-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +78597,Ni5,EA060,Most adults,EA060-9,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +78598,Ni6,EA060,Most adults,EA060-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +78599,Ni7,EA060,?,EA060-NA,,,,,, +78600,Ni8,EA060,?,EA060-NA,,,,,, +78601,Ni9,EA060,?,EA060-NA,,,,,, +78602,Nj1,EA060,?,EA060-NA,,,,,, +78603,Nj10,EA060,Most adults,EA060-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78604,Nj11,EA060,?,EA060-NA,,,,,, +78605,Nj12,EA060,?,EA060-NA,,,,,, +78606,Nj13,EA060,?,EA060-NA,,,,,, +78607,Nj14,EA060,?,EA060-NA,,,,,, +78608,Nj2,EA060,Craft,EA060-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +78609,Nj3,EA060,?,EA060-NA,,,,,, +78610,Nj4,EA060,Most adults,EA060-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +78611,Nj5,EA060,?,EA060-NA,,,,,, +78612,Nj6,EA060,?,EA060-NA,,,,,, +78613,Nj7,EA060,Most adults,EA060-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78614,Nj8,EA060,Most adults,EA060-9,,foster1948,,1500,EthnographicAtlas_1967_p120, +78615,Nj9,EA060,Most adults,EA060-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +78616,Sa1,EA060,Most adults,EA060-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +78617,Sa10,EA060,Most adults,EA060-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +78618,Sa11,EA060,?,EA060-NA,,,,,, +78619,Sa12,EA060,?,EA060-NA,,,,,, +78620,Sa13,EA060,Craft,EA060-3,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +78621,Sa14,EA060,?,EA060-NA,,,,,, +78622,Sa15,EA060,?,EA060-NA,,,,,, +78623,Sa16,EA060,?,EA060-NA,,,,,, +78624,Sa17,EA060,?,EA060-NA,,,,,, +78625,Sa2,EA060,?,EA060-NA,,,,,, +78626,Sa3,EA060,Most adults,EA060-9,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +78627,Sa4,EA060,?,EA060-NA,,,,,, +78628,Sa5,EA060,?,EA060-NA,,,,,, +78629,Sa6,EA060,?,EA060-NA,,,,,, +78630,Sa7,EA060,Most adults,EA060-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +78631,Sa8,EA060,?,EA060-NA,,,,,, +78632,Sa9,EA060,Most adults,EA060-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +78633,Sb1,EA060,Most adults,EA060-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +78634,Sb2,EA060,Most adults,EA060-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +78635,Sb3,EA060,?,EA060-NA,,,,,, +78636,Sb4,EA060,Most adults,EA060-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +78637,Sb5,EA060,?,EA060-NA,,,,,, +78638,Sb6,EA060,Most adults,EA060-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +78639,Sb7,EA060,?,EA060-NA,,,,,, +78640,Sb8,EA060,?,EA060-NA,,,,,, +78641,Sb9,EA060,?,EA060-NA,,,,,, +78642,Sc1,EA060,Most adults,EA060-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +78643,Sc10,EA060,Most adults,EA060-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +78644,Sc11,EA060,Most adults,EA060-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +78645,Sc12,EA060,Most adults,EA060-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +78646,Sc13,EA060,Most adults,EA060-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +78647,Sc14,EA060,Most adults,EA060-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +78648,Sc15,EA060,Most adults,EA060-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +78649,Sc16,EA060,Most adults,EA060-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +78650,Sc17,EA060,?,EA060-NA,,,,,, +78651,Sc18,EA060,Most adults,EA060-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +78652,Sc2,EA060,Most adults,EA060-9,,leedsnd,,1950,EthnographicAtlas_1967_p120, +78653,Sc3,EA060,Most adults,EA060-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +78654,Sc4,EA060,Most adults,EA060-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +78655,Sc5,EA060,?,EA060-NA,,,,,, +78656,Sc6,EA060,?,EA060-NA,,,,,, +78657,Sc7,EA060,Most adults,EA060-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +78658,Sc8,EA060,?,EA060-NA,,,,,, +78659,Sc9,EA060,Most adults,EA060-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +78660,Sd1,EA060,Most adults,EA060-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78661,Sd2,EA060,Most adults,EA060-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +78662,Sd3,EA060,Most adults,EA060-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +78663,Sd4,EA060,?,EA060-NA,,,,,, +78664,Sd5,EA060,?,EA060-NA,,,,,, +78665,Sd6,EA060,Most adults,EA060-9,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +78666,Sd7,EA060,Most adults,EA060-9,,fock1963,,1950,EthnographicAtlas_1967_p120, +78667,Sd8,EA060,?,EA060-NA,,,,,, +78668,Sd9,EA060,Most adults,EA060-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78669,Se1,EA060,Most adults,EA060-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +78670,Se10,EA060,?,EA060-NA,,,,,, +78671,Se11,EA060,Most adults,EA060-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +78672,Se12,EA060,?,EA060-NA,,,,,, +78673,Se2,EA060,Most adults,EA060-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +78674,Se3,EA060,Most adults,EA060-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +78675,Se4,EA060,Most adults,EA060-9,,fejos1943,,1940,EthnographicAtlas_1967_p120, +78676,Se5,EA060,Most adults,EA060-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +78677,Se6,EA060,Most adults,EA060-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +78678,Se7,EA060,?,EA060-NA,,,,,, +78679,Se8,EA060,Most adults,EA060-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +78680,Se9,EA060,?,EA060-NA,,,,,, +78681,Sf1,EA060,Most adults,EA060-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +78682,Sf2,EA060,Most adults,EA060-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +78683,Sf3,EA060,?,EA060-NA,,,,,, +78684,Sf4,EA060,?,EA060-NA,,,,,, +78685,Sf5,EA060,Most adults,EA060-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +78686,Sf6,EA060,Most adults,EA060-9,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +78687,Sf7,EA060,?,EA060-NA,,,,,, +78688,Sf8,EA060,?,EA060-NA,,,,,, +78689,Sf9,EA060,?,EA060-NA,,,,,, +78690,Sg1,EA060,Most adults,EA060-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +78691,Sg2,EA060,Most adults,EA060-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78692,Sg3,EA060,?,EA060-NA,,,,,, +78693,Sg4,EA060,Most adults,EA060-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +78694,Sg5,EA060,?,EA060-NA,,,,,, +78695,Sh1,EA060,Most adults,EA060-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +78696,Sh2,EA060,Most adults,EA060-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +78697,Sh3,EA060,?,EA060-NA,,,,,, +78698,Sh4,EA060,?,EA060-NA,,,,,, +78699,Sh5,EA060,Most adults,EA060-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +78700,Sh6,EA060,?,EA060-NA,,,,,, +78701,Sh7,EA060,Most adults,EA060-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +78702,Sh8,EA060,Most adults,EA060-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +78703,Sh9,EA060,Most adults,EA060-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +78704,Si1,EA060,Most adults,EA060-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78705,Si10,EA060,Most adults,EA060-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +78706,Si2,EA060,Most adults,EA060-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +78707,Si3,EA060,Most adults,EA060-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +78708,Si4,EA060,Most adults,EA060-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +78709,Si5,EA060,Most adults,EA060-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +78710,Si6,EA060,?,EA060-NA,,,,,, +78711,Si7,EA060,Most adults,EA060-9,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +78712,Si8,EA060,?,EA060-NA,,,,,, +78713,Si9,EA060,?,EA060-NA,,,,,, +78714,Sj1,EA060,?,EA060-NA,,,,,, +78715,Sj10,EA060,?,EA060-NA,,,,,, +78716,Sj11,EA060,Most adults,EA060-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +78717,Sj2,EA060,Most adults,EA060-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +78718,Sj3,EA060,Most adults,EA060-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +78719,Sj4,EA060,Most adults,EA060-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +78720,Sj5,EA060,?,EA060-NA,,,,,, +78721,Sj6,EA060,?,EA060-NA,,,,,, +78722,Sj7,EA060,?,EA060-NA,,,,,, +78723,Sj8,EA060,Most adults,EA060-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +78724,Sj9,EA060,Most adults,EA060-9,"Formerly males alone (EA049 code ""6""), with no specialization specified (EA060 code ""9"")",dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +78725,ch12,EA060,Craft,EA060-3,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +78726,ch13,EA060,Most adults,EA060-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +78727,ch14,EA060,Craft,EA060-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +78728,ch15,EA060,Most adults,EA060-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +78729,ch16,EA060,Most adults,EA060-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +78730,ch17,EA060,Most adults,EA060-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +78731,ch18,EA060,Most adults,EA060-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +78732,ch19,EA060,Most adults,EA060-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +78733,ch20,EA060,Most adults,EA060-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +78734,ch21,EA060,Most adults,EA060-9,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +78735,ch22,EA060,Most adults,EA060-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +78736,ch23,EA060,Most adults,EA060-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +78737,ch24,EA060,Most adults,EA060-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +78738,ch25,EA060,Most adults,EA060-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +78739,ch26,EA060,Most adults,EA060-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +78740,ch27,EA060,Most adults,EA060-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +78741,ch28,EA060,Most adults,EA060-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +78742,ec12,EA060,Most adults,EA060-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +78743,ec13,EA060,Most adults,EA060-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +78744,ec14,EA060,Most adults,EA060-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +78745,ec15,EA060,Most adults,EA060-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +78746,ec16,EA060,Most adults,EA060-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +78747,ec17,EA060,Most adults,EA060-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +78748,ec18,EA060,Most adults,EA060-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +78749,ec19,EA060,Most adults,EA060-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +78750,ec20,EA060,Most adults,EA060-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +78751,ec21,EA060,Most adults,EA060-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +78752,Aa1,EA061,Most adults,EA061-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +78753,Aa2,EA061,Most adults,EA061-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +78754,Aa3,EA061,Most adults,EA061-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +78755,Aa4,EA061,?,EA061-NA,,,,,, +78756,Aa5,EA061,Most adults,EA061-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +78757,Aa6,EA061,Most adults,EA061-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p64, +78758,Aa7,EA061,Most adults,EA061-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +78759,Aa8,EA061,Most adults,EA061-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +78760,Aa9,EA061,Most adults,EA061-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +78761,Ab1,EA061,Most adults,EA061-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +78762,Ab10,EA061,Most adults,EA061-9,,hunter1936,,1936,EthnographicAtlas_1967_p64, +78763,Ab11,EA061,Most adults,EA061-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +78764,Ab12,EA061,Activity is absent,EA061-10,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +78765,Ab13,EA061,Activity is absent,EA061-10,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +78766,Ab14,EA061,Most adults,EA061-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +78767,Ab15,EA061,Activity is absent,EA061-10,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +78768,Ab16,EA061,Most adults,EA061-9,,earthy1933,,1930,EthnographicAtlas_1967_p64, +78769,Ab17,EA061,?,EA061-NA,,,,,, +78770,Ab18,EA061,Most adults,EA061-9,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +78771,Ab19,EA061,Most adults,EA061-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +78772,Ab2,EA061,Most adults,EA061-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +78773,Ab20,EA061,?,EA061-NA,,,,,, +78774,Ab21a,EA061,?,EA061-NA,,,,,, +78775,Ab21b,EA061,?,EA061-NA,,,,,, +78776,Ab22,EA061,?,EA061-NA,,,,,, +78777,Ab3,EA061,Most adults,EA061-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +78778,Ab4,EA061,Most adults,EA061-9,,junod1927,,1920,EthnographicAtlas_1967_p64, +78779,Ab5,EA061,Most adults,EA061-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +78780,Ab6,EA061,Most adults,EA061-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +78781,Ab7,EA061,Activity is absent,EA061-10,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p64, +78782,Ab8,EA061,Most adults,EA061-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +78783,Ab9,EA061,Most adults,EA061-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +78784,Ac1,EA061,Most adults,EA061-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +78785,Ac10,EA061,Most adults,EA061-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +78786,Ac11,EA061,?,EA061-NA,,,,,, +78787,Ac12,EA061,?,EA061-NA,,,,,, +78788,Ac13,EA061,?,EA061-NA,,,,,, +78789,Ac14,EA061,Most adults,EA061-9,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p64, +78790,Ac15,EA061,?,EA061-NA,,,,,, +78791,Ac16,EA061,?,EA061-NA,,,,,, +78792,Ac17,EA061,?,EA061-NA,,,,,, +78793,Ac18,EA061,Most adults,EA061-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +78794,Ac19,EA061,?,EA061-NA,,,,,, +78795,Ac2,EA061,?,EA061-NA,,,,,, +78796,Ac20,EA061,?,EA061-NA,,,,,, +78797,Ac21,EA061,?,EA061-NA,,,,,, +78798,Ac22,EA061,?,EA061-NA,,,,,, +78799,Ac23,EA061,Most adults,EA061-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +78800,Ac24,EA061,?,EA061-NA,,,,,, +78801,Ac25,EA061,Most adults,EA061-9,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p64, +78802,Ac26,EA061,?,EA061-NA,,,,,, +78803,Ac27,EA061,?,EA061-NA,,,,,, +78804,Ac28,EA061,?,EA061-NA,,,,,, +78805,Ac29,EA061,?,EA061-NA,,,,,, +78806,Ac3,EA061,Most adults,EA061-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +78807,Ac30,EA061,Most adults,EA061-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +78808,Ac31,EA061,Most adults,EA061-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +78809,Ac32,EA061,?,EA061-NA,,,,,, +78810,Ac33,EA061,?,EA061-NA,,,,,, +78811,Ac34,EA061,?,EA061-NA,,,,,, +78812,Ac35,EA061,?,EA061-NA,,,,,, +78813,Ac36,EA061,?,EA061-NA,,,,,, +78814,Ac37,EA061,?,EA061-NA,,,,,, +78815,Ac38,EA061,?,EA061-NA,,,,,, +78816,Ac39,EA061,?,EA061-NA,,,,,, +78817,Ac4,EA061,Activity is absent,EA061-10,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +78818,Ac40,EA061,?,EA061-NA,,,,,, +78819,Ac41,EA061,?,EA061-NA,,,,,, +78820,Ac42,EA061,?,EA061-NA,,,,,, +78821,Ac43,EA061,?,EA061-NA,,,,,, +78822,Ac5,EA061,Activity is absent,EA061-10,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +78823,Ac6,EA061,Activity is absent,EA061-10,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +78824,Ac7,EA061,Activity is absent,EA061-10,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +78825,Ac8,EA061,?,EA061-NA,,,,,, +78826,Ac9,EA061,Activity is absent,EA061-10,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +78827,Ad1,EA061,Activity is absent,EA061-10,,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +78828,Ad10,EA061,?,EA061-NA,,,,,, +78829,Ad11,EA061,Most adults,EA061-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +78830,Ad12,EA061,?,EA061-NA,,,,,, +78831,Ad13,EA061,Activity is absent,EA061-10,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +78832,Ad14,EA061,?,EA061-NA,,,,,, +78833,Ad15,EA061,?,EA061-NA,,,,,, +78834,Ad16,EA061,?,EA061-NA,,,,,, +78835,Ad17,EA061,Most adults,EA061-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +78836,Ad18,EA061,?,EA061-NA,,,,,, +78837,Ad19,EA061,?,EA061-NA,,,,,, +78838,Ad2,EA061,Activity is absent,EA061-10,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +78839,Ad20,EA061,Most adults,EA061-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +78840,Ad21,EA061,?,EA061-NA,,,,,, +78841,Ad22,EA061,Most adults,EA061-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +78842,Ad23,EA061,?,EA061-NA,,,,,, +78843,Ad24,EA061,?,EA061-NA,,,,,, +78844,Ad25,EA061,?,EA061-NA,,,,,, +78845,Ad26,EA061,?,EA061-NA,,,,,, +78846,Ad27,EA061,?,EA061-NA,,,,,, +78847,Ad28,EA061,?,EA061-NA,,,,,, +78848,Ad29,EA061,?,EA061-NA,,,,,, +78849,Ad3,EA061,Activity is absent,EA061-10,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +78850,Ad30,EA061,Most adults,EA061-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +78851,Ad31,EA061,?,EA061-NA,,,,,, +78852,Ad32,EA061,?,EA061-NA,,,,,, +78853,Ad33,EA061,?,EA061-NA,,,,,, +78854,Ad34,EA061,?,EA061-NA,,,,,, +78855,Ad35,EA061,?,EA061-NA,,,,,, +78856,Ad36,EA061,?,EA061-NA,,,,,, +78857,Ad37,EA061,?,EA061-NA,,,,,, +78858,Ad38,EA061,?,EA061-NA,,,,,, +78859,Ad39,EA061,Activity is absent,EA061-10,,gray1963,,1950,EthnographicAtlas_1967_p68, +78860,Ad4,EA061,Activity is absent,EA061-10,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +78861,Ad40,EA061,?,EA061-NA,,,,,, +78862,Ad41,EA061,?,EA061-NA,,,,,, +78863,Ad42,EA061,?,EA061-NA,,,,,, +78864,Ad43,EA061,?,EA061-NA,,,,,, +78865,Ad44,EA061,?,EA061-NA,,,,,, +78866,Ad45,EA061,?,EA061-NA,,,,,, +78867,Ad46,EA061,?,EA061-NA,,,,,, +78868,Ad47,EA061,Most adults,EA061-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +78869,Ad48,EA061,?,EA061-NA,,,,,, +78870,Ad49,EA061,?,EA061-NA,,,,,, +78871,Ad5,EA061,?,EA061-NA,,,,,, +78872,Ad50,EA061,?,EA061-NA,,,,,, +78873,Ad51,EA061,?,EA061-NA,,,,,, +78874,Ad6,EA061,Activity is absent,EA061-10,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +78875,Ad7,EA061,Activity is absent,EA061-10,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +78876,Ad8,EA061,Activity is absent,EA061-10,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +78877,Ad9,EA061,Activity is absent,EA061-10,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +78878,Ae1,EA061,?,EA061-NA,,,,,, +78879,Ae10,EA061,Most adults,EA061-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +78880,Ae11,EA061,?,EA061-NA,,,,,, +78881,Ae12,EA061,?,EA061-NA,,,,,, +78882,Ae13,EA061,?,EA061-NA,,,,,, +78883,Ae14,EA061,?,EA061-NA,,,,,, +78884,Ae15,EA061,?,EA061-NA,,,,,, +78885,Ae16,EA061,?,EA061-NA,,,,,, +78886,Ae17,EA061,Most adults,EA061-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +78887,Ae18,EA061,Most adults,EA061-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +78888,Ae19,EA061,?,EA061-NA,,,,,, +78889,Ae2,EA061,Most adults,EA061-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +78890,Ae20,EA061,?,EA061-NA,,,,,, +78891,Ae21,EA061,?,EA061-NA,,,,,, +78892,Ae22,EA061,?,EA061-NA,,,,,, +78893,Ae23,EA061,?,EA061-NA,,,,,, +78894,Ae24,EA061,?,EA061-NA,,,,,, +78895,Ae25,EA061,?,EA061-NA,,,,,, +78896,Ae26,EA061,?,EA061-NA,,,,,, +78897,Ae27,EA061,?,EA061-NA,,,,,, +78898,Ae28,EA061,?,EA061-NA,,,,,, +78899,Ae29,EA061,Most adults,EA061-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +78900,Ae3,EA061,Most adults,EA061-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +78901,Ae30,EA061,?,EA061-NA,,,,,, +78902,Ae31,EA061,?,EA061-NA,,,,,, +78903,Ae32,EA061,?,EA061-NA,,,,,, +78904,Ae33,EA061,?,EA061-NA,,,,,, +78905,Ae34,EA061,?,EA061-NA,,,,,, +78906,Ae35,EA061,?,EA061-NA,,,,,, +78907,Ae36,EA061,?,EA061-NA,,,,,, +78908,Ae37,EA061,?,EA061-NA,,,,,, +78909,Ae38,EA061,?,EA061-NA,,,,,, +78910,Ae39,EA061,Most adults,EA061-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +78911,Ae4,EA061,Most adults,EA061-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +78912,Ae40,EA061,?,EA061-NA,,,,,, +78913,Ae41,EA061,?,EA061-NA,,,,,, +78914,Ae42,EA061,?,EA061-NA,,,,,, +78915,Ae43,EA061,?,EA061-NA,,,,,, +78916,Ae44,EA061,?,EA061-NA,,,,,, +78917,Ae45,EA061,?,EA061-NA,,,,,, +78918,Ae46,EA061,?,EA061-NA,,,,,, +78919,Ae47,EA061,?,EA061-NA,,,,,, +78920,Ae48,EA061,?,EA061-NA,,,,,, +78921,Ae49,EA061,?,EA061-NA,,,,,, +78922,Ae5,EA061,Activity is absent,EA061-10,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +78923,Ae50,EA061,?,EA061-NA,,,,,, +78924,Ae51,EA061,?,EA061-NA,,,,,, +78925,Ae52,EA061,?,EA061-NA,,,,,, +78926,Ae53,EA061,?,EA061-NA,,,,,, +78927,Ae54,EA061,?,EA061-NA,,,,,, +78928,Ae55,EA061,?,EA061-NA,,,,,, +78929,Ae56,EA061,?,EA061-NA,,,,,, +78930,Ae57,EA061,?,EA061-NA,,,,,, +78931,Ae58,EA061,?,EA061-NA,,,,,, +78932,Ae59,EA061,?,EA061-NA,,,,,, +78933,Ae6,EA061,Most adults,EA061-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +78934,Ae7,EA061,?,EA061-NA,,,,,, +78935,Ae8,EA061,Activity is absent,EA061-10,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +78936,Ae9,EA061,?,EA061-NA,,,,,, +78937,Af1,EA061,Activity is absent,EA061-10,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +78938,Af10,EA061,Activity is absent,EA061-10,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +78939,Af11,EA061,?,EA061-NA,,,,,, +78940,Af12,EA061,?,EA061-NA,,,,,, +78941,Af13,EA061,?,EA061-NA,,,,,, +78942,Af14,EA061,?,EA061-NA,,,,,, +78943,Af15,EA061,Most adults,EA061-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +78944,Af16,EA061,?,EA061-NA,,,,,, +78945,Af17,EA061,?,EA061-NA,,,,,, +78946,Af18,EA061,?,EA061-NA,,,,,, +78947,Af19,EA061,?,EA061-NA,,,,,, +78948,Af2,EA061,Activity is absent,EA061-10,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +78949,Af20,EA061,?,EA061-NA,,,,,, +78950,Af21,EA061,?,EA061-NA,,,,,, +78951,Af22,EA061,?,EA061-NA,,,,,, +78952,Af23,EA061,?,EA061-NA,,,,,, +78953,Af24,EA061,Most adults,EA061-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +78954,Af25,EA061,Most adults,EA061-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +78955,Af26,EA061,?,EA061-NA,,,,,, +78956,Af27,EA061,?,EA061-NA,,,,,, +78957,Af28,EA061,?,EA061-NA,,,,,, +78958,Af29,EA061,?,EA061-NA,,,,,, +78959,Af3,EA061,Activity is absent,EA061-10,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +78960,Af30,EA061,?,EA061-NA,,,,,, +78961,Af31,EA061,?,EA061-NA,,,,,, +78962,Af32,EA061,?,EA061-NA,,,,,, +78963,Af33,EA061,?,EA061-NA,,,,,, +78964,Af34,EA061,?,EA061-NA,,,,,, +78965,Af35,EA061,?,EA061-NA,,,,,, +78966,Af36,EA061,?,EA061-NA,,,,,, +78967,Af37,EA061,?,EA061-NA,,,,,, +78968,Af38,EA061,?,EA061-NA,,,,,, +78969,Af39,EA061,?,EA061-NA,,,,,, +78970,Af4,EA061,Most adults,EA061-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +78971,Af40,EA061,?,EA061-NA,,,,,, +78972,Af41,EA061,?,EA061-NA,,,,,, +78973,Af42,EA061,?,EA061-NA,,,,,, +78974,Af43,EA061,?,EA061-NA,,,,,, +78975,Af44,EA061,?,EA061-NA,,,,,, +78976,Af45,EA061,?,EA061-NA,,,,,, +78977,Af46,EA061,?,EA061-NA,,,,,, +78978,Af47,EA061,?,EA061-NA,,,,,, +78979,Af48,EA061,?,EA061-NA,,,,,, +78980,Af49,EA061,?,EA061-NA,,,,,, +78981,Af5,EA061,Most adults,EA061-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +78982,Af50,EA061,?,EA061-NA,,,,,, +78983,Af51,EA061,Most adults,EA061-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +78984,Af52,EA061,Most adults,EA061-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +78985,Af53,EA061,?,EA061-NA,,,,,, +78986,Af54,EA061,?,EA061-NA,,,,,, +78987,Af55,EA061,?,EA061-NA,,,,,, +78988,Af56,EA061,?,EA061-NA,,,,,, +78989,Af57,EA061,?,EA061-NA,,,,,, +78990,Af58,EA061,?,EA061-NA,,,,,, +78991,Af6,EA061,Most adults,EA061-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +78992,Af7,EA061,Most adults,EA061-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +78993,Af8,EA061,Most adults,EA061-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +78994,Af9,EA061,?,EA061-NA,,,,,, +78995,Ag1,EA061,Most adults,EA061-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +78996,Ag10,EA061,Most adults,EA061-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +78997,Ag11,EA061,Most adults,EA061-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +78998,Ag12,EA061,?,EA061-NA,,,,,, +78999,Ag13,EA061,?,EA061-NA,,,,,, +79000,Ag14,EA061,?,EA061-NA,,,,,, +79001,Ag15,EA061,?,EA061-NA,,,,,, +79002,Ag16,EA061,Most adults,EA061-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p72, +79003,Ag17,EA061,?,EA061-NA,,,,,, +79004,Ag18,EA061,Most adults,EA061-9,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p72, +79005,Ag19,EA061,?,EA061-NA,,,,,, +79006,Ag2,EA061,Most adults,EA061-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +79007,Ag20,EA061,?,EA061-NA,,,,,, +79008,Ag21,EA061,Most adults,EA061-9,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +79009,Ag22,EA061,?,EA061-NA,,,,,, +79010,Ag23,EA061,?,EA061-NA,,,,,, +79011,Ag24,EA061,?,EA061-NA,,,,,, +79012,Ag25,EA061,?,EA061-NA,,,,,, +79013,Ag26,EA061,?,EA061-NA,,,,,, +79014,Ag27,EA061,?,EA061-NA,,,,,, +79015,Ag28,EA061,?,EA061-NA,,,,,, +79016,Ag29,EA061,?,EA061-NA,,,,,, +79017,Ag3,EA061,Most adults,EA061-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +79018,Ag30,EA061,Most adults,EA061-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +79019,Ag31,EA061,?,EA061-NA,,,,,, +79020,Ag32,EA061,Most adults,EA061-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +79021,Ag33,EA061,?,EA061-NA,,,,,, +79022,Ag34,EA061,?,EA061-NA,,,,,, +79023,Ag35,EA061,?,EA061-NA,,,,,, +79024,Ag36,EA061,?,EA061-NA,,,,,, +79025,Ag37,EA061,?,EA061-NA,,,,,, +79026,Ag38,EA061,?,EA061-NA,,,,,, +79027,Ag39,EA061,Most adults,EA061-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +79028,Ag4,EA061,Most adults,EA061-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +79029,Ag40,EA061,?,EA061-NA,,,,,, +79030,Ag41,EA061,?,EA061-NA,,,,,, +79031,Ag42,EA061,?,EA061-NA,,,,,, +79032,Ag43,EA061,?,EA061-NA,,,,,, +79033,Ag44,EA061,?,EA061-NA,,,,,, +79034,Ag45,EA061,?,EA061-NA,,,,,, +79035,Ag46,EA061,?,EA061-NA,,,,,, +79036,Ag47,EA061,Most adults,EA061-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +79037,Ag48,EA061,?,EA061-NA,,,,,, +79038,Ag49,EA061,?,EA061-NA,,,,,, +79039,Ag5,EA061,Most adults,EA061-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +79040,Ag50,EA061,?,EA061-NA,,,,,, +79041,Ag51,EA061,?,EA061-NA,,,,,, +79042,Ag52,EA061,?,EA061-NA,,,,,, +79043,Ag53,EA061,Most adults,EA061-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +79044,Ag54,EA061,Most adults,EA061-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +79045,Ag6,EA061,Activity is absent,EA061-10,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +79046,Ag7,EA061,Activity is absent,EA061-10,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p72, +79047,Ag8,EA061,Most adults,EA061-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +79048,Ag9,EA061,Most adults,EA061-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +79049,Ah1,EA061,?,EA061-NA,,,,,, +79050,Ah10,EA061,?,EA061-NA,,,,,, +79051,Ah11,EA061,Most adults,EA061-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +79052,Ah12,EA061,?,EA061-NA,,,,,, +79053,Ah13,EA061,Most adults,EA061-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +79054,Ah14,EA061,?,EA061-NA,,,,,, +79055,Ah15,EA061,?,EA061-NA,,,,,, +79056,Ah16,EA061,?,EA061-NA,,,,,, +79057,Ah17,EA061,?,EA061-NA,,,,,, +79058,Ah18,EA061,?,EA061-NA,,,,,, +79059,Ah19,EA061,?,EA061-NA,,,,,, +79060,Ah2,EA061,?,EA061-NA,,,,,, +79061,Ah20,EA061,?,EA061-NA,,,,,, +79062,Ah21,EA061,?,EA061-NA,,,,,, +79063,Ah22,EA061,?,EA061-NA,,,,,, +79064,Ah23,EA061,?,EA061-NA,,,,,, +79065,Ah24,EA061,?,EA061-NA,,,,,, +79066,Ah25,EA061,?,EA061-NA,,,,,, +79067,Ah26,EA061,?,EA061-NA,,,,,, +79068,Ah27,EA061,?,EA061-NA,,,,,, +79069,Ah28,EA061,?,EA061-NA,,,,,, +79070,Ah29,EA061,?,EA061-NA,,,,,, +79071,Ah3,EA061,Most adults,EA061-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +79072,Ah30,EA061,?,EA061-NA,,,,,, +79073,Ah31,EA061,?,EA061-NA,,,,,, +79074,Ah32,EA061,?,EA061-NA,,,,,, +79075,Ah33,EA061,?,EA061-NA,,,,,, +79076,Ah34,EA061,?,EA061-NA,,,,,, +79077,Ah35,EA061,?,EA061-NA,,,,,, +79078,Ah36,EA061,?,EA061-NA,,,,,, +79079,Ah37,EA061,?,EA061-NA,,,,,, +79080,Ah38,EA061,?,EA061-NA,,,,,, +79081,Ah39,EA061,Most adults,EA061-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +79082,Ah4,EA061,Activity is absent,EA061-10,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p76, +79083,Ah5,EA061,?,EA061-NA,,,,,, +79084,Ah6,EA061,?,EA061-NA,,,,,, +79085,Ah7,EA061,Activity is absent,EA061-10,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +79086,Ah8,EA061,Most adults,EA061-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +79087,Ah9,EA061,Most adults,EA061-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +79088,Ai1,EA061,?,EA061-NA,,,,,, +79089,Ai10,EA061,Most adults,EA061-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +79090,Ai11,EA061,Most adults,EA061-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +79091,Ai12,EA061,?,EA061-NA,,,,,, +79092,Ai13,EA061,?,EA061-NA,,,,,, +79093,Ai14,EA061,?,EA061-NA,,,,,, +79094,Ai15,EA061,?,EA061-NA,,,,,, +79095,Ai16,EA061,?,EA061-NA,,,,,, +79096,Ai17,EA061,?,EA061-NA,,,,,, +79097,Ai18,EA061,?,EA061-NA,,,,,, +79098,Ai19,EA061,?,EA061-NA,,,,,, +79099,Ai2,EA061,?,EA061-NA,,,,,, +79100,Ai20,EA061,?,EA061-NA,,,,,, +79101,Ai21,EA061,Most adults,EA061-9,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p76, +79102,Ai22,EA061,?,EA061-NA,,,,,, +79103,Ai23,EA061,?,EA061-NA,,,,,, +79104,Ai24,EA061,?,EA061-NA,,,,,, +79105,Ai25,EA061,?,EA061-NA,,,,,, +79106,Ai26,EA061,?,EA061-NA,,,,,, +79107,Ai27,EA061,?,EA061-NA,,,,,, +79108,Ai28,EA061,Most adults,EA061-9,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +79109,Ai29,EA061,Most adults,EA061-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +79110,Ai3,EA061,Most adults,EA061-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +79111,Ai30,EA061,?,EA061-NA,,,,,, +79112,Ai31,EA061,?,EA061-NA,,,,,, +79113,Ai32,EA061,?,EA061-NA,,,,,, +79114,Ai33,EA061,?,EA061-NA,,,,,, +79115,Ai34,EA061,?,EA061-NA,,,,,, +79116,Ai35,EA061,Most adults,EA061-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +79117,Ai36,EA061,?,EA061-NA,,,,,, +79118,Ai37,EA061,?,EA061-NA,,,,,, +79119,Ai38,EA061,?,EA061-NA,,,,,, +79120,Ai39,EA061,?,EA061-NA,,,,,, +79121,Ai4,EA061,?,EA061-NA,,,,,, +79122,Ai40,EA061,?,EA061-NA,,,,,, +79123,Ai41,EA061,?,EA061-NA,,,,,, +79124,Ai42,EA061,?,EA061-NA,,,,,, +79125,Ai43,EA061,Most adults,EA061-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +79126,Ai44,EA061,?,EA061-NA,,,,,, +79127,Ai45,EA061,?,EA061-NA,,,,,, +79128,Ai46,EA061,?,EA061-NA,,,,,, +79129,Ai47,EA061,?,EA061-NA,,,,,, +79130,Ai5,EA061,?,EA061-NA,,,,,, +79131,Ai6,EA061,Most adults,EA061-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +79132,Ai7,EA061,Most adults,EA061-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +79133,Ai8,EA061,Most adults,EA061-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +79134,Ai9,EA061,?,EA061-NA,,,,,, +79135,Aj1,EA061,?,EA061-NA,,,,,, +79136,Aj10,EA061,?,EA061-NA,,,,,, +79137,Aj11,EA061,?,EA061-NA,,,,,, +79138,Aj12,EA061,?,EA061-NA,,,,,, +79139,Aj13,EA061,?,EA061-NA,,,,,, +79140,Aj14,EA061,?,EA061-NA,,,,,, +79141,Aj15,EA061,?,EA061-NA,,,,,, +79142,Aj16,EA061,?,EA061-NA,,,,,, +79143,Aj17,EA061,?,EA061-NA,,,,,, +79144,Aj18,EA061,?,EA061-NA,,,,,, +79145,Aj19,EA061,?,EA061-NA,,,,,, +79146,Aj2,EA061,Activity is absent,EA061-10,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +79147,Aj20,EA061,?,EA061-NA,,,,,, +79148,Aj21,EA061,?,EA061-NA,,,,,, +79149,Aj22,EA061,?,EA061-NA,,,,,, +79150,Aj23,EA061,Most adults,EA061-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +79151,Aj24,EA061,?,EA061-NA,,,,,, +79152,Aj25,EA061,?,EA061-NA,,,,,, +79153,Aj26,EA061,Most adults,EA061-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +79154,Aj27,EA061,?,EA061-NA,,,,,, +79155,Aj28,EA061,?,EA061-NA,,,,,, +79156,Aj29,EA061,?,EA061-NA,,,,,, +79157,Aj3,EA061,Most adults,EA061-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +79158,Aj30,EA061,?,EA061-NA,,,,,, +79159,Aj31,EA061,?,EA061-NA,,,,,, +79160,Aj4,EA061,Activity is absent,EA061-10,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +79161,Aj5,EA061,Most adults,EA061-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +79162,Aj6,EA061,Activity is absent,EA061-10,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +79163,Aj7,EA061,?,EA061-NA,,,,,, +79164,Aj8,EA061,Activity is absent,EA061-10,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +79165,Aj9,EA061,?,EA061-NA,,,,,, +79166,Ca1,EA061,Activity is absent,EA061-10,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +79167,Ca10,EA061,?,EA061-NA,,,,,, +79168,Ca11,EA061,?,EA061-NA,,,,,, +79169,Ca12,EA061,?,EA061-NA,,,,,, +79170,Ca13,EA061,?,EA061-NA,,,,,, +79171,Ca14,EA061,?,EA061-NA,,,,,, +79172,Ca15,EA061,?,EA061-NA,,,,,, +79173,Ca16,EA061,?,EA061-NA,,,,,, +79174,Ca17,EA061,?,EA061-NA,,,,,, +79175,Ca18,EA061,?,EA061-NA,,,,,, +79176,Ca19,EA061,?,EA061-NA,,,,,, +79177,Ca2,EA061,Activity is absent,EA061-10,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +79178,Ca20,EA061,?,EA061-NA,,,,,, +79179,Ca21,EA061,?,EA061-NA,,,,,, +79180,Ca22,EA061,?,EA061-NA,,,,,, +79181,Ca23,EA061,?,EA061-NA,,,,,, +79182,Ca24,EA061,?,EA061-NA,,,,,, +79183,Ca25,EA061,?,EA061-NA,,,,,, +79184,Ca26,EA061,?,EA061-NA,,,,,, +79185,Ca27,EA061,?,EA061-NA,,,,,, +79186,Ca28,EA061,?,EA061-NA,,,,,, +79187,Ca29,EA061,?,EA061-NA,,,,,, +79188,Ca3,EA061,?,EA061-NA,,,,,, +79189,Ca30,EA061,?,EA061-NA,,,,,, +79190,Ca31,EA061,?,EA061-NA,,,,,, +79191,Ca32,EA061,?,EA061-NA,,,,,, +79192,Ca33,EA061,?,EA061-NA,,,,,, +79193,Ca34,EA061,?,EA061-NA,,,,,, +79194,Ca35,EA061,?,EA061-NA,,,,,, +79195,Ca36,EA061,?,EA061-NA,,,,,, +79196,Ca37,EA061,?,EA061-NA,,,,,, +79197,Ca38,EA061,?,EA061-NA,,,,,, +79198,Ca39,EA061,?,EA061-NA,,,,,, +79199,Ca4,EA061,Activity is absent,EA061-10,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +79200,Ca40,EA061,?,EA061-NA,,,,,, +79201,Ca41,EA061,?,EA061-NA,,,,,, +79202,Ca42,EA061,?,EA061-NA,,,,,, +79203,Ca43,EA061,?,EA061-NA,,,,,, +79204,Ca5,EA061,?,EA061-NA,,,,,, +79205,Ca6,EA061,?,EA061-NA,,,,,, +79206,Ca7,EA061,?,EA061-NA,,,,,, +79207,Ca8,EA061,?,EA061-NA,,,,,, +79208,Ca9,EA061,?,EA061-NA,,,,,, +79209,Cb1,EA061,?,EA061-NA,,,,,, +79210,Cb10,EA061,?,EA061-NA,,,,,, +79211,Cb11,EA061,?,EA061-NA,,,,,, +79212,Cb12,EA061,?,EA061-NA,,,,,, +79213,Cb13,EA061,?,EA061-NA,,,,,, +79214,Cb14,EA061,?,EA061-NA,,,,,, +79215,Cb15,EA061,?,EA061-NA,,,,,, +79216,Cb16,EA061,?,EA061-NA,,,,,, +79217,Cb17,EA061,?,EA061-NA,,,,,, +79218,Cb18,EA061,?,EA061-NA,,,,,, +79219,Cb19,EA061,?,EA061-NA,,,,,, +79220,Cb2,EA061,Most adults,EA061-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +79221,Cb20,EA061,Most adults,EA061-9,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +79222,Cb21,EA061,Most adults,EA061-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p84, +79223,Cb22,EA061,?,EA061-NA,,,,,, +79224,Cb23,EA061,?,EA061-NA,,,,,, +79225,Cb24,EA061,Activity is absent,EA061-10,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p84, +79226,Cb25,EA061,?,EA061-NA,,,,,, +79227,Cb26,EA061,?,EA061-NA,,,,,, +79228,Cb27,EA061,?,EA061-NA,,,,,, +79229,Cb28,EA061,?,EA061-NA,,,,,, +79230,Cb29,EA061,?,EA061-NA,,,,,, +79231,Cb3,EA061,Activity is absent,EA061-10,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +79232,Cb4,EA061,Activity is absent,EA061-10,,reid1930,,1920,EthnographicAtlas_1967_p80, +79233,Cb5,EA061,?,EA061-NA,,,,,, +79234,Cb6,EA061,Activity is absent,EA061-10,,woodnd,,1920,EthnographicAtlas_1967_p80, +79235,Cb7,EA061,?,EA061-NA,,,,,, +79236,Cb8,EA061,Activity is absent,EA061-10,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p80, +79237,Cb9,EA061,Activity is absent,EA061-10,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +79238,Cc1,EA061,?,EA061-NA,,,,,, +79239,Cc10,EA061,Most adults,EA061-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +79240,Cc11,EA061,?,EA061-NA,,,,,, +79241,Cc12,EA061,?,EA061-NA,,,,,, +79242,Cc13,EA061,?,EA061-NA,,,,,, +79243,Cc14,EA061,Most adults,EA061-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +79244,Cc15,EA061,?,EA061-NA,,,,,, +79245,Cc16,EA061,Most adults,EA061-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +79246,Cc17,EA061,?,EA061-NA,,,,,, +79247,Cc18,EA061,?,EA061-NA,,,,,, +79248,Cc19,EA061,?,EA061-NA,,,,,, +79249,Cc2,EA061,Most adults,EA061-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +79250,Cc20,EA061,?,EA061-NA,,,,,, +79251,Cc3,EA061,Activity is absent,EA061-10,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +79252,Cc4,EA061,Activity is absent,EA061-10,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +79253,Cc5,EA061,?,EA061-NA,,,,,, +79254,Cc6,EA061,?,EA061-NA,,,,,, +79255,Cc7,EA061,?,EA061-NA,,,,,, +79256,Cc8,EA061,?,EA061-NA,,,,,, +79257,Cc9,EA061,Most adults,EA061-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +79258,Cd1,EA061,?,EA061-NA,,,,,, +79259,Cd10,EA061,?,EA061-NA,,,,,, +79260,Cd11,EA061,?,EA061-NA,,,,,, +79261,Cd12,EA061,?,EA061-NA,,,,,, +79262,Cd13,EA061,?,EA061-NA,,,,,, +79263,Cd14,EA061,?,EA061-NA,,,,,, +79264,Cd15,EA061,?,EA061-NA,,,,,, +79265,Cd16,EA061,?,EA061-NA,,,,,, +79266,Cd17,EA061,?,EA061-NA,,,,,, +79267,Cd18,EA061,?,EA061-NA,,,,,, +79268,Cd19,EA061,?,EA061-NA,,,,,, +79269,Cd2,EA061,Activity is absent,EA061-10,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +79270,Cd20,EA061,?,EA061-NA,,,,,, +79271,Cd21,EA061,?,EA061-NA,,,,,, +79272,Cd3,EA061,Activity is absent,EA061-10,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +79273,Cd4,EA061,Most adults,EA061-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +79274,Cd5,EA061,Most adults,EA061-9,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +79275,Cd6,EA061,?,EA061-NA,,,,,, +79276,Cd7,EA061,?,EA061-NA,,,,,, +79277,Cd8,EA061,?,EA061-NA,,,,,, +79278,Cd9,EA061,?,EA061-NA,,,,,, +79279,Ce1,EA061,Most adults,EA061-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +79280,Ce2,EA061,?,EA061-NA,,,,,, +79281,Ce3,EA061,?,EA061-NA,,,,,, +79282,Ce4,EA061,Activity is absent,EA061-10,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79283,Ce5,EA061,Activity is absent,EA061-10,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +79284,Ce6,EA061,Activity is absent,EA061-10,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +79285,Ce7,EA061,Activity is absent,EA061-10,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +79286,Ce8,EA061,Activity is absent,EA061-10,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +79287,Cf1,EA061,Activity is absent,EA061-10,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +79288,Cf2,EA061,?,EA061-NA,,,,,, +79289,Cf3,EA061,Most adults,EA061-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +79290,Cf4,EA061,?,EA061-NA,,,,,, +79291,Cf5,EA061,?,EA061-NA,,,,,, +79292,Cg1,EA061,Activity is absent,EA061-10,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +79293,Cg2,EA061,Activity is absent,EA061-10,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +79294,Cg3,EA061,Activity is absent,EA061-10,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +79295,Cg4,EA061,Most adults,EA061-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +79296,Cg5,EA061,?,EA061-NA,,,,,, +79297,Ch1,EA061,Activity is absent,EA061-10,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +79298,Ch10,EA061,?,EA061-NA,,,,,, +79299,Ch11,EA061,Activity is absent,EA061-10,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +79300,Ch2,EA061,Activity is absent,EA061-10,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +79301,Ch3,EA061,Activity is absent,EA061-10,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +79302,Ch4,EA061,?,EA061-NA,,,,,, +79303,Ch5,EA061,Activity is absent,EA061-10,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +79304,Ch6,EA061,?,EA061-NA,,,,,, +79305,Ch7,EA061,Most adults,EA061-9,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +79306,Ch8,EA061,Activity is absent,EA061-10,,hanzeli1955,,1940,EthnographicAtlas_1967_p84, +79307,Ch9,EA061,?,EA061-NA,,,,,, +79308,Ci1,EA061,Most adults,EA061-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +79309,Ci10,EA061,?,EA061-NA,,,,,, +79310,Ci11,EA061,Activity is absent,EA061-10,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +79311,Ci12,EA061,Most adults,EA061-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +79312,Ci2,EA061,?,EA061-NA,,,,,, +79313,Ci3,EA061,?,EA061-NA,,,,,, +79314,Ci4,EA061,Activity is absent,EA061-10,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +79315,Ci5,EA061,Activity is absent,EA061-10,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +79316,Ci6,EA061,?,EA061-NA,,,,,, +79317,Ci7,EA061,?,EA061-NA,,,,,, +79318,Ci8,EA061,?,EA061-NA,,,,,, +79319,Ci9,EA061,?,EA061-NA,,,,,, +79320,Cj1,EA061,Activity is absent,EA061-10,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +79321,Cj10,EA061,Most adults,EA061-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +79322,Cj2,EA061,Most adults,EA061-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +79323,Cj3,EA061,Activity is absent,EA061-10,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +79324,Cj4,EA061,Activity is absent,EA061-10,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +79325,Cj5,EA061,Activity is absent,EA061-10,,dickson1949,,1930,EthnographicAtlas_1967_p88, +79326,Cj6,EA061,?,EA061-NA,,,,,, +79327,Cj7,EA061,?,EA061-NA,,,,,, +79328,Cj8,EA061,Most adults,EA061-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +79329,Cj9,EA061,?,EA061-NA,,,,,, +79330,Ea1,EA061,?,EA061-NA,,,,,, +79331,Ea10,EA061,Most adults,EA061-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +79332,Ea11,EA061,?,EA061-NA,,,,,, +79333,Ea12,EA061,?,EA061-NA,,,,,, +79334,Ea13,EA061,Activity is absent,EA061-10,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +79335,Ea2,EA061,Activity is absent,EA061-10,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +79336,Ea3,EA061,Activity is absent,EA061-10,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +79337,Ea4,EA061,Most adults,EA061-9,,barth1956b,,1950,EthnographicAtlas_1967_p88, +79338,Ea5,EA061,?,EA061-NA,,,,,, +79339,Ea6,EA061,Most adults,EA061-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +79340,Ea7,EA061,?,EA061-NA,,,,,, +79341,Ea8,EA061,?,EA061-NA,,,,,, +79342,Ea9,EA061,Activity is absent,EA061-10,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +79343,Eb1,EA061,Activity is absent,EA061-10,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +79344,Eb2,EA061,Activity is absent,EA061-10,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +79345,Eb3,EA061,Activity is absent,EA061-10,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +79346,Eb4,EA061,?,EA061-NA,,,,,, +79347,Eb5,EA061,?,EA061-NA,,,,,, +79348,Eb6,EA061,?,EA061-NA,,,,,, +79349,Eb7,EA061,?,EA061-NA,,,,,, +79350,Eb8,EA061,?,EA061-NA,,,,,, +79351,Ec1,EA061,Most adults,EA061-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +79352,Ec10,EA061,?,EA061-NA,,,,,, +79353,Ec11,EA061,?,EA061-NA,,,,,, +79354,Ec2,EA061,Most adults,EA061-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79355,Ec3,EA061,Most adults,EA061-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +79356,Ec4,EA061,Most adults,EA061-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +79357,Ec5,EA061,Most adults,EA061-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +79358,Ec6,EA061,?,EA061-NA,,,,,, +79359,Ec7,EA061,Most adults,EA061-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +79360,Ec8,EA061,?,EA061-NA,,,,,, +79361,Ec9,EA061,Activity is absent,EA061-10,,lattimore1933,,1920,EthnographicAtlas_1967_p88, +79362,Ed1,EA061,Activity is absent,EA061-10,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +79363,Ed10,EA061,Activity is absent,EA061-10,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +79364,Ed13,EA061,?,EA061-NA,,,,,, +79365,Ed14,EA061,?,EA061-NA,,,,,, +79366,Ed15a,EA061,?,EA061-NA,,,,,, +79367,Ed15b,EA061,Activity is absent,EA061-10,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +79368,Ed16,EA061,?,EA061-NA,,,,,, +79369,Ed2,EA061,Activity is absent,EA061-10,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +79370,Ed3,EA061,Most adults,EA061-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +79371,Ed4,EA061,Activity is absent,EA061-10,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +79372,Ed5,EA061,Activity is absent,EA061-10,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79373,Ed6,EA061,Activity is absent,EA061-10,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +79374,Ed7,EA061,Activity is absent,EA061-10,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +79375,Ed8,EA061,Activity is absent,EA061-10,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +79376,Ed9,EA061,?,EA061-NA,,,,,, +79377,Ee1,EA061,Most adults,EA061-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +79378,Ee2,EA061,Activity is absent,EA061-10,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +79379,Ee3,EA061,Most adults,EA061-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +79380,Ee4,EA061,Activity is absent,EA061-10,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +79381,Ee5,EA061,Activity is absent,EA061-10,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +79382,Ee6,EA061,Activity is absent,EA061-10,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +79383,Ee7,EA061,?,EA061-NA,,,,,, +79384,Ee8,EA061,?,EA061-NA,,,,,, +79385,Ef1,EA061,Most adults,EA061-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +79386,Ef10,EA061,?,EA061-NA,,,,,, +79387,Ef11,EA061,Activity is absent,EA061-10,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +79388,Ef2,EA061,Activity is absent,EA061-10,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +79389,Ef3,EA061,?,EA061-NA,,,,,, +79390,Ef4,EA061,?,EA061-NA,,,,,, +79391,Ef5,EA061,Most adults,EA061-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +79392,Ef6,EA061,Most adults,EA061-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +79393,Ef7,EA061,?,EA061-NA,,,,,, +79394,Ef8,EA061,Most adults,EA061-9,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +79395,Ef9,EA061,Activity is absent,EA061-10,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79396,Eg1,EA061,Most adults,EA061-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79397,Eg10,EA061,Activity is absent,EA061-10,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +79398,Eg11,EA061,?,EA061-NA,,,,,, +79399,Eg12,EA061,?,EA061-NA,,,,,, +79400,Eg13,EA061,Most adults,EA061-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79401,Eg14,EA061,Most adults,EA061-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +79402,Eg2,EA061,Activity is absent,EA061-10,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +79403,Eg3,EA061,Most adults,EA061-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +79404,Eg4,EA061,Most adults,EA061-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +79405,Eg5,EA061,Activity is absent,EA061-10,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +79406,Eg6,EA061,Activity is absent,EA061-10,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +79407,Eg7,EA061,Most adults,EA061-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +79408,Eg8,EA061,Most adults,EA061-9,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +79409,Eg9,EA061,Most adults,EA061-9,,elwin1939,,1930,EthnographicAtlas_1967_p92, +79410,Eh1,EA061,Most adults,EA061-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +79411,Eh10,EA061,?,EA061-NA,,,,,, +79412,Eh2,EA061,Most adults,EA061-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +79413,Eh3,EA061,Activity is absent,EA061-10,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +79414,Eh4,EA061,Most adults,EA061-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79415,Eh5,EA061,Most adults,EA061-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +79416,Eh6,EA061,?,EA061-NA,,,,,, +79417,Eh7,EA061,?,EA061-NA,,,,,, +79418,Eh8,EA061,Activity is absent,EA061-10,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +79419,Eh9,EA061,?,EA061-NA,,,,,, +79420,Ei1,EA061,Most adults,EA061-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79421,Ei10,EA061,?,EA061-NA,,,,,, +79422,Ei11,EA061,?,EA061-NA,,,,,, +79423,Ei12,EA061,?,EA061-NA,,,,,, +79424,Ei13,EA061,Activity is absent,EA061-10,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +79425,Ei14,EA061,Activity is absent,EA061-10,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +79426,Ei15,EA061,?,EA061-NA,,,,,, +79427,Ei16,EA061,Activity is absent,EA061-10,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +79428,Ei17,EA061,?,EA061-NA,,,,,, +79429,Ei18,EA061,Activity is absent,EA061-10,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +79430,Ei19,EA061,?,EA061-NA,,,,,, +79431,Ei2,EA061,Activity is absent,EA061-10,,mills1922,,1920,EthnographicAtlas_1967_p92, +79432,Ei20,EA061,?,EA061-NA,,,,,, +79433,Ei3,EA061,Activity is absent,EA061-10,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +79434,Ei4,EA061,Activity is absent,EA061-10,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +79435,Ei5,EA061,Most adults,EA061-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +79436,Ei6,EA061,Activity is absent,EA061-10,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +79437,Ei7,EA061,Most adults,EA061-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +79438,Ei8,EA061,Most adults,EA061-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +79439,Ei9,EA061,Activity is absent,EA061-10,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +79440,Ej1,EA061,Most adults,EA061-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +79441,Ej10,EA061,Most adults,EA061-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +79442,Ej11,EA061,Activity is absent,EA061-10,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p92, +79443,Ej12,EA061,Activity is absent,EA061-10,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +79444,Ej13,EA061,Most adults,EA061-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +79445,Ej14,EA061,Most adults,EA061-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79446,Ej15,EA061,Activity is absent,EA061-10,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +79447,Ej16,EA061,Activity is absent,EA061-10,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +79448,Ej2,EA061,Most adults,EA061-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +79449,Ej3,EA061,Most adults,EA061-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +79450,Ej4,EA061,?,EA061-NA,,,,,, +79451,Ej5,EA061,?,EA061-NA,,,,,, +79452,Ej6,EA061,Activity is absent,EA061-10,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +79453,Ej7,EA061,Most adults,EA061-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +79454,Ej8,EA061,?,EA061-NA,,,,,, +79455,Ej9,EA061,Most adults,EA061-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +79456,Ia1,EA061,Most adults,EA061-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +79457,Ia10,EA061,?,EA061-NA,,,,,, +79458,Ia11,EA061,?,EA061-NA,,,,,, +79459,Ia12,EA061,?,EA061-NA,,,,,, +79460,Ia13,EA061,Activity is absent,EA061-10,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +79461,Ia14,EA061,Most adults,EA061-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +79462,Ia15,EA061,?,EA061-NA,,,,,, +79463,Ia16,EA061,Most adults,EA061-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +79464,Ia17,EA061,?,EA061-NA,,,,,, +79465,Ia18,EA061,?,EA061-NA,,,,,, +79466,Ia2,EA061,Activity is absent,EA061-10,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +79467,Ia3,EA061,?,EA061-NA,,,,,, +79468,Ia4,EA061,Most adults,EA061-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p92, +79469,Ia5,EA061,Most adults,EA061-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +79470,Ia6,EA061,?,EA061-NA,,,,,, +79471,Ia7,EA061,?,EA061-NA,,,,,, +79472,Ia8,EA061,?,EA061-NA,,,,,, +79473,Ia9,EA061,?,EA061-NA,,,,,, +79474,Ib1,EA061,Most adults,EA061-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79475,Ib2,EA061,Most adults,EA061-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79476,Ib3,EA061,Activity is absent,EA061-10,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +79477,Ib4,EA061,Activity is absent,EA061-10,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +79478,Ib5,EA061,Most adults,EA061-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +79479,Ib6,EA061,?,EA061-NA,,,,,, +79480,Ib7,EA061,Activity is absent,EA061-10,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +79481,Ib8,EA061,?,EA061-NA,,,,,, +79482,Ib9,EA061,?,EA061-NA,,,,,, +79483,Ic1,EA061,Activity is absent,EA061-10,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79484,Ic10,EA061,?,EA061-NA,,,,,, +79485,Ic11,EA061,?,EA061-NA,,,,,, +79486,Ic12,EA061,?,EA061-NA,,,,,, +79487,Ic13,EA061,?,EA061-NA,,,,,, +79488,Ic2,EA061,Most adults,EA061-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +79489,Ic3,EA061,?,EA061-NA,,,,,, +79490,Ic4,EA061,?,EA061-NA,,,,,, +79491,Ic5,EA061,?,EA061-NA,,,,,, +79492,Ic6,EA061,Most adults,EA061-9,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +79493,Ic7,EA061,?,EA061-NA,,,,,, +79494,Ic8,EA061,?,EA061-NA,,,,,, +79495,Ic9,EA061,?,EA061-NA,,,,,, +79496,Id1,EA061,Most adults,EA061-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +79497,Id10,EA061,Most adults,EA061-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +79498,Id11,EA061,Most adults,EA061-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +79499,Id12,EA061,Most adults,EA061-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +79500,Id13,EA061,Most adults,EA061-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +79501,Id2,EA061,Most adults,EA061-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +79502,Id3,EA061,Most adults,EA061-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +79503,Id4,EA061,Most adults,EA061-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +79504,Id5,EA061,Most adults,EA061-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +79505,Id6,EA061,Most adults,EA061-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +79506,Id7,EA061,Most adults,EA061-9,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +79507,Id8,EA061,Most adults,EA061-9,,roth1890,,1830,EthnographicAtlas_1967_p96, +79508,Id9,EA061,Most adults,EA061-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +79509,Ie1,EA061,Activity is absent,EA061-10,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79510,Ie10,EA061,?,EA061-NA,,,,,, +79511,Ie11,EA061,Most adults,EA061-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +79512,Ie12,EA061,Most adults,EA061-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79513,Ie13,EA061,Most adults,EA061-9,,landtman1927,,1920,EthnographicAtlas_1967_p96, +79514,Ie14,EA061,?,EA061-NA,,,,,, +79515,Ie15,EA061,?,EA061-NA,,,,,, +79516,Ie16,EA061,Most adults,EA061-9,,williams194041,,1940,EthnographicAtlas_1967_p96, +79517,Ie17,EA061,?,EA061-NA,,,,,, +79518,Ie18,EA061,Most adults,EA061-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +79519,Ie19,EA061,Most adults,EA061-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +79520,Ie2,EA061,Activity is absent,EA061-10,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +79521,Ie20,EA061,?,EA061-NA,,,,,, +79522,Ie21,EA061,?,EA061-NA,,,,,, +79523,Ie22,EA061,?,EA061-NA,,,,,, +79524,Ie23,EA061,?,EA061-NA,,,,,, +79525,Ie24,EA061,?,EA061-NA,,,,,, +79526,Ie25,EA061,?,EA061-NA,,,,,, +79527,Ie26,EA061,?,EA061-NA,,,,,, +79528,Ie27,EA061,Most adults,EA061-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +79529,Ie28,EA061,?,EA061-NA,,,,,, +79530,Ie29,EA061,?,EA061-NA,,,,,, +79531,Ie3,EA061,Most adults,EA061-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79532,Ie30,EA061,Most adults,EA061-9,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +79533,Ie31,EA061,?,EA061-NA,,,,,, +79534,Ie32,EA061,?,EA061-NA,,,,,, +79535,Ie33,EA061,Most adults,EA061-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +79536,Ie34,EA061,?,EA061-NA,,,,,, +79537,Ie35,EA061,Most adults,EA061-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +79538,Ie36,EA061,?,EA061-NA,,,,,, +79539,Ie37,EA061,?,EA061-NA,,,,,, +79540,Ie38,EA061,Most adults,EA061-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +79541,Ie39,EA061,Most adults,EA061-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +79542,Ie4,EA061,Most adults,EA061-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79543,Ie5,EA061,Activity is absent,EA061-10,,williams1936,,1930,EthnographicAtlas_1967_p96, +79544,Ie6,EA061,Most adults,EA061-9,,held1947,,1930,EthnographicAtlas_1967_p96, +79545,Ie7,EA061,Activity is absent,EA061-10,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +79546,Ie8,EA061,Most adults,EA061-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +79547,Ie9,EA061,Most adults,EA061-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +79548,If1,EA061,Activity is absent,EA061-10,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79549,If10,EA061,?,EA061-NA,,,,,, +79550,If11,EA061,Activity is absent,EA061-10,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +79551,If12,EA061,Activity is absent,EA061-10,,mason1954,,1940,EthnographicAtlas_1967_p100, +79552,If13,EA061,Activity is absent,EA061-10,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +79553,If14,EA061,Activity is absent,EA061-10,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +79554,If15,EA061,Activity is absent,EA061-10,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +79555,If16,EA061,Activity is absent,EA061-10,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +79556,If17,EA061,Most adults,EA061-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +79557,If2,EA061,Activity is absent,EA061-10,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +79558,If3,EA061,Activity is absent,EA061-10,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +79559,If4,EA061,Most adults,EA061-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +79560,If5,EA061,Activity is absent,EA061-10,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +79561,If6,EA061,Activity is absent,EA061-10,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +79562,If7,EA061,Most adults,EA061-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +79563,If8,EA061,Activity is absent,EA061-10,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +79564,If9,EA061,?,EA061-NA,,,,,, +79565,Ig1,EA061,Most adults,EA061-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +79566,Ig10,EA061,Most adults,EA061-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +79567,Ig11,EA061,Most adults,EA061-9,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +79568,Ig12,EA061,?,EA061-NA,,,,,, +79569,Ig13,EA061,?,EA061-NA,,,,,, +79570,Ig14,EA061,?,EA061-NA,,,,,, +79571,Ig15,EA061,?,EA061-NA,,,,,, +79572,Ig16,EA061,?,EA061-NA,,,,,, +79573,Ig17,EA061,?,EA061-NA,,,,,, +79574,Ig18,EA061,?,EA061-NA,,,,,, +79575,Ig19,EA061,?,EA061-NA,,,,,, +79576,Ig2,EA061,Most adults,EA061-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +79577,Ig20,EA061,?,EA061-NA,,,,,, +79578,Ig21,EA061,Most adults,EA061-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +79579,Ig3,EA061,Most adults,EA061-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +79580,Ig4,EA061,Activity is absent,EA061-10,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +79581,Ig5,EA061,Activity is absent,EA061-10,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +79582,Ig6,EA061,Activity is absent,EA061-10,,ivens1927,,1900,EthnographicAtlas_1967_p100, +79583,Ig7,EA061,Most adults,EA061-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +79584,Ig8,EA061,?,EA061-NA,,,,,, +79585,Ig9,EA061,Most adults,EA061-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +79586,Ih1,EA061,Activity is absent,EA061-10,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +79587,Ih10,EA061,?,EA061-NA,,,,,, +79588,Ih11,EA061,?,EA061-NA,,,,,, +79589,Ih12,EA061,?,EA061-NA,,,,,, +79590,Ih13,EA061,?,EA061-NA,,,,,, +79591,Ih14,EA061,Most adults,EA061-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +79592,Ih2,EA061,Activity is absent,EA061-10,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79593,Ih3,EA061,?,EA061-NA,,,,,, +79594,Ih4,EA061,Most adults,EA061-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79595,Ih5,EA061,?,EA061-NA,,,,,, +79596,Ih6,EA061,Activity is absent,EA061-10,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +79597,Ih7,EA061,Most adults,EA061-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +79598,Ih8,EA061,Most adults,EA061-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +79599,Ih9,EA061,?,EA061-NA,,,,,, +79600,Ii1,EA061,Activity is absent,EA061-10,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +79601,Ii10,EA061,?,EA061-NA,,,,,, +79602,Ii12,EA061,?,EA061-NA,,,,,, +79603,Ii13,EA061,?,EA061-NA,,,,,, +79604,Ii14,EA061,Most adults,EA061-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +79605,Ii2,EA061,Activity is absent,EA061-10,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +79606,Ii3,EA061,Most adults,EA061-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +79607,Ii4,EA061,Activity is absent,EA061-10,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +79608,Ii5,EA061,Activity is absent,EA061-10,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +79609,Ii6,EA061,Activity is absent,EA061-10,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +79610,Ii7,EA061,Activity is absent,EA061-10,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +79611,Ii8,EA061,?,EA061-NA,,,,,, +79612,Ii9,EA061,?,EA061-NA,,,,,, +79613,Ij1,EA061,Activity is absent,EA061-10,,buck1934,,1820,EthnographicAtlas_1967_p100, +79614,Ij10,EA061,?,EA061-NA,,,,,, +79615,Ij2,EA061,Most adults,EA061-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +79616,Ij3,EA061,Most adults,EA061-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +79617,Ij4,EA061,Activity is absent,EA061-10,,buck1932a,,1850,EthnographicAtlas_1967_p104, +79618,Ij5,EA061,Most adults,EA061-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +79619,Ij6,EA061,?,EA061-NA,,,,,, +79620,Ij7,EA061,?,EA061-NA,,,,,, +79621,Ij8,EA061,?,EA061-NA,,,,,, +79622,Ij9,EA061,?,EA061-NA,,,,,, +79623,Na1,EA061,Most adults,EA061-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +79624,Na10,EA061,Most adults,EA061-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +79625,Na11,EA061,Most adults,EA061-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +79626,Na12,EA061,Most adults,EA061-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +79627,Na13,EA061,?,EA061-NA,,,,,, +79628,Na14,EA061,Most adults,EA061-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +79629,Na15,EA061,Most adults,EA061-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +79630,Na16,EA061,?,EA061-NA,,,,,, +79631,Na17,EA061,Most adults,EA061-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79632,Na19,EA061,Most adults,EA061-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +79633,Na2,EA061,Activity is absent,EA061-10,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +79634,Na20,EA061,?,EA061-NA,,,,,, +79635,Na21,EA061,Most adults,EA061-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +79636,Na22,EA061,Activity is absent,EA061-10,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +79637,Na23,EA061,Most adults,EA061-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +79638,Na24,EA061,Most adults,EA061-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +79639,Na25,EA061,Most adults,EA061-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +79640,Na26,EA061,Most adults,EA061-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +79641,Na27,EA061,?,EA061-NA,,,,,, +79642,Na28,EA061,?,EA061-NA,,,,,, +79643,Na29,EA061,Most adults,EA061-9,,goddard1916,,1850,EthnographicAtlas_1967_p104, +79644,Na3,EA061,Most adults,EA061-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +79645,Na30,EA061,?,EA061-NA,,,,,, +79646,Na31,EA061,Most adults,EA061-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +79647,Na32,EA061,Most adults,EA061-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +79648,Na33,EA061,Most adults,EA061-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +79649,Na34,EA061,?,EA061-NA,,,,,, +79650,Na35,EA061,Most adults,EA061-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +79651,Na36,EA061,Most adults,EA061-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +79652,Na37,EA061,Most adults,EA061-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +79653,Na38,EA061,Most adults,EA061-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +79654,Na39,EA061,Most adults,EA061-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +79655,Na4,EA061,Most adults,EA061-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +79656,Na40,EA061,?,EA061-NA,,,,,, +79657,Na41,EA061,?,EA061-NA,,,,,, +79658,Na42,EA061,?,EA061-NA,,,,,, +79659,Na43,EA061,Activity is absent,EA061-10,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +79660,Na44,EA061,?,EA061-NA,,,,,, +79661,Na45,EA061,Most adults,EA061-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +79662,Na5,EA061,Most adults,EA061-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +79663,Na6,EA061,Most adults,EA061-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +79664,Na7,EA061,Most adults,EA061-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +79665,Na8,EA061,Most adults,EA061-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +79666,Na9,EA061,Most adults,EA061-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79667,Nb1,EA061,Most adults,EA061-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +79668,Nb10,EA061,Most adults,EA061-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +79669,Nb11,EA061,Most adults,EA061-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +79670,Nb12,EA061,?,EA061-NA,,,,,, +79671,Nb13,EA061,?,EA061-NA,,,,,, +79672,Nb14,EA061,?,EA061-NA,,,,,, +79673,Nb15,EA061,Most adults,EA061-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +79674,Nb16,EA061,Most adults,EA061-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +79675,Nb17,EA061,Most adults,EA061-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +79676,Nb18,EA061,Most adults,EA061-9,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +79677,Nb19,EA061,Most adults,EA061-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +79678,Nb2,EA061,Most adults,EA061-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +79679,Nb20,EA061,?,EA061-NA,,,,,, +79680,Nb21,EA061,?,EA061-NA,,,,,, +79681,Nb22,EA061,Most adults,EA061-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +79682,Nb23,EA061,?,EA061-NA,,,,,, +79683,Nb24,EA061,Most adults,EA061-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +79684,Nb25,EA061,Most adults,EA061-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +79685,Nb26,EA061,Most adults,EA061-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +79686,Nb27,EA061,Most adults,EA061-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +79687,Nb28,EA061,Most adults,EA061-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +79688,Nb29,EA061,?,EA061-NA,,,,,, +79689,Nb3,EA061,Most adults,EA061-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +79690,Nb30,EA061,Most adults,EA061-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +79691,Nb31,EA061,?,EA061-NA,,,,,, +79692,Nb32,EA061,Most adults,EA061-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +79693,Nb33,EA061,Most adults,EA061-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +79694,Nb34,EA061,Most adults,EA061-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +79695,Nb35,EA061,Most adults,EA061-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +79696,Nb36,EA061,Most adults,EA061-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +79697,Nb37,EA061,Most adults,EA061-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +79698,Nb38,EA061,Most adults,EA061-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +79699,Nb39,EA061,Most adults,EA061-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +79700,Nb4,EA061,Most adults,EA061-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +79701,Nb5,EA061,Most adults,EA061-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +79702,Nb6,EA061,Most adults,EA061-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +79703,Nb7,EA061,Most adults,EA061-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +79704,Nb8,EA061,?,EA061-NA,,,,,, +79705,Nb9,EA061,Most adults,EA061-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +79706,Nc1,EA061,Most adults,EA061-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +79707,Nc10,EA061,Most adults,EA061-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +79708,Nc11,EA061,Most adults,EA061-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +79709,Nc12,EA061,Most adults,EA061-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +79710,Nc13,EA061,Most adults,EA061-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +79711,Nc14,EA061,Most adults,EA061-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +79712,Nc15,EA061,Most adults,EA061-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +79713,Nc16,EA061,Most adults,EA061-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +79714,Nc17,EA061,Most adults,EA061-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +79715,Nc18,EA061,Most adults,EA061-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +79716,Nc19,EA061,?,EA061-NA,,,,,, +79717,Nc2,EA061,Most adults,EA061-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +79718,Nc20,EA061,Most adults,EA061-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +79719,Nc21,EA061,?,EA061-NA,,,,,, +79720,Nc22,EA061,?,EA061-NA,,,,,, +79721,Nc23,EA061,Most adults,EA061-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +79722,Nc24,EA061,Most adults,EA061-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +79723,Nc25,EA061,Most adults,EA061-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +79724,Nc26,EA061,Most adults,EA061-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +79725,Nc27,EA061,?,EA061-NA,,,,,, +79726,Nc28,EA061,?,EA061-NA,,,,,, +79727,Nc29,EA061,Most adults,EA061-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +79728,Nc3,EA061,Most adults,EA061-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +79729,Nc30,EA061,?,EA061-NA,,,,,, +79730,Nc31,EA061,?,EA061-NA,,,,,, +79731,Nc32,EA061,Most adults,EA061-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +79732,Nc33,EA061,Most adults,EA061-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +79733,Nc34,EA061,Most adults,EA061-9,,meigs1939,,1880,EthnographicAtlas_1967_p108, +79734,Nc4,EA061,Most adults,EA061-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +79735,Nc5,EA061,?,EA061-NA,,,,,, +79736,Nc6,EA061,Most adults,EA061-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +79737,Nc7,EA061,Most adults,EA061-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +79738,Nc8,EA061,Most adults,EA061-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +79739,Nc9,EA061,Most adults,EA061-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +79740,Nd1,EA061,Most adults,EA061-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +79741,Nd10,EA061,?,EA061-NA,,,,,, +79742,Nd11,EA061,Most adults,EA061-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +79743,Nd12,EA061,Most adults,EA061-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +79744,Nd13,EA061,Most adults,EA061-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +79745,Nd14,EA061,Most adults,EA061-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +79746,Nd15,EA061,Most adults,EA061-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +79747,Nd16,EA061,Most adults,EA061-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +79748,Nd17,EA061,Most adults,EA061-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +79749,Nd18,EA061,Most adults,EA061-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +79750,Nd19,EA061,Most adults,EA061-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +79751,Nd2,EA061,Most adults,EA061-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +79752,Nd20,EA061,Most adults,EA061-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +79753,Nd21,EA061,Most adults,EA061-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +79754,Nd22,EA061,Most adults,EA061-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +79755,Nd23,EA061,Most adults,EA061-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +79756,Nd24,EA061,Most adults,EA061-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +79757,Nd25,EA061,Most adults,EA061-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +79758,Nd26,EA061,Most adults,EA061-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +79759,Nd27,EA061,Most adults,EA061-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +79760,Nd28,EA061,Most adults,EA061-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +79761,Nd29,EA061,Most adults,EA061-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +79762,Nd3,EA061,Most adults,EA061-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +79763,Nd30,EA061,Most adults,EA061-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +79764,Nd31,EA061,Most adults,EA061-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +79765,Nd32,EA061,Most adults,EA061-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +79766,Nd33,EA061,Most adults,EA061-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +79767,Nd34,EA061,Most adults,EA061-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +79768,Nd35,EA061,Most adults,EA061-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +79769,Nd36,EA061,Most adults,EA061-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +79770,Nd37,EA061,Most adults,EA061-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +79771,Nd38,EA061,Most adults,EA061-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +79772,Nd39,EA061,Most adults,EA061-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +79773,Nd4,EA061,Most adults,EA061-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +79774,Nd40,EA061,Most adults,EA061-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +79775,Nd41,EA061,Most adults,EA061-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +79776,Nd42,EA061,Most adults,EA061-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +79777,Nd43,EA061,Most adults,EA061-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +79778,Nd44,EA061,Most adults,EA061-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +79779,Nd45,EA061,Most adults,EA061-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +79780,Nd46,EA061,Most adults,EA061-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +79781,Nd47,EA061,Most adults,EA061-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +79782,Nd48,EA061,Most adults,EA061-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +79783,Nd49,EA061,Most adults,EA061-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +79784,Nd5,EA061,Most adults,EA061-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +79785,Nd50,EA061,Most adults,EA061-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +79786,Nd51,EA061,Most adults,EA061-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +79787,Nd52,EA061,Most adults,EA061-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +79788,Nd53,EA061,Most adults,EA061-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +79789,Nd54,EA061,Most adults,EA061-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79790,Nd55,EA061,Most adults,EA061-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +79791,Nd56,EA061,Most adults,EA061-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +79792,Nd57,EA061,Most adults,EA061-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +79793,Nd58,EA061,Most adults,EA061-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +79794,Nd59,EA061,Most adults,EA061-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +79795,Nd6,EA061,Most adults,EA061-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +79796,Nd60,EA061,Most adults,EA061-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +79797,Nd61,EA061,Most adults,EA061-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +79798,Nd62,EA061,Most adults,EA061-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +79799,Nd63,EA061,Most adults,EA061-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +79800,Nd64,EA061,Most adults,EA061-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +79801,Nd65,EA061,Most adults,EA061-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +79802,Nd66,EA061,Most adults,EA061-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +79803,Nd67,EA061,?,EA061-NA,,,,,, +79804,Nd7,EA061,Most adults,EA061-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +79805,Nd8,EA061,Most adults,EA061-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +79806,Nd9,EA061,?,EA061-NA,,,,,, +79807,Ne1,EA061,Most adults,EA061-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +79808,Ne10,EA061,?,EA061-NA,,,,,, +79809,Ne11,EA061,Most adults,EA061-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +79810,Ne12,EA061,Most adults,EA061-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +79811,Ne13,EA061,Most adults,EA061-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +79812,Ne14,EA061,Most adults,EA061-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +79813,Ne15,EA061,Most adults,EA061-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +79814,Ne16,EA061,Most adults,EA061-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +79815,Ne17,EA061,?,EA061-NA,,,,,, +79816,Ne18,EA061,Most adults,EA061-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +79817,Ne19,EA061,Most adults,EA061-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +79818,Ne2,EA061,Most adults,EA061-9,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +79819,Ne20,EA061,?,EA061-NA,,,,,, +79820,Ne21,EA061,?,EA061-NA,,,,,, +79821,Ne3,EA061,Most adults,EA061-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +79822,Ne4,EA061,Most adults,EA061-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +79823,Ne5,EA061,Most adults,EA061-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +79824,Ne6,EA061,Activity is absent,EA061-10,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +79825,Ne7,EA061,Most adults,EA061-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +79826,Ne8,EA061,Most adults,EA061-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +79827,Ne9,EA061,Most adults,EA061-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +79828,Nf10,EA061,?,EA061-NA,,,,,, +79829,Nf11,EA061,?,EA061-NA,,,,,, +79830,Nf12,EA061,Most adults,EA061-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +79831,Nf13,EA061,?,EA061-NA,,,,,, +79832,Nf14,EA061,?,EA061-NA,,,,,, +79833,Nf15,EA061,?,EA061-NA,,,,,, +79834,Nf2,EA061,Most adults,EA061-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +79835,Nf3,EA061,Most adults,EA061-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +79836,Nf4,EA061,Most adults,EA061-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +79837,Nf5,EA061,Most adults,EA061-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +79838,Nf6,EA061,?,EA061-NA,,,,,, +79839,Nf7,EA061,?,EA061-NA,,,,,, +79840,Nf8,EA061,Most adults,EA061-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +79841,Nf9,EA061,Most adults,EA061-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +79842,Ng1,EA061,Most adults,EA061-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +79843,Ng10,EA061,Most adults,EA061-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +79844,Ng11,EA061,?,EA061-NA,,,,,, +79845,Ng12,EA061,?,EA061-NA,,,,,, +79846,Ng13,EA061,?,EA061-NA,,,,,, +79847,Ng14,EA061,?,EA061-NA,,,,,, +79848,Ng15,EA061,?,EA061-NA,,,,,, +79849,Ng2,EA061,?,EA061-NA,,,,,, +79850,Ng3,EA061,Most adults,EA061-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +79851,Ng4,EA061,?,EA061-NA,,,,,, +79852,Ng5,EA061,Most adults,EA061-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +79853,Ng6,EA061,Most adults,EA061-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +79854,Ng7,EA061,?,EA061-NA,,,,,, +79855,Ng8,EA061,?,EA061-NA,,,,,, +79856,Ng9,EA061,?,EA061-NA,,,,,, +79857,Nh1,EA061,Most adults,EA061-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +79858,Nh10,EA061,?,EA061-NA,,,,,, +79859,Nh11,EA061,?,EA061-NA,,,,,, +79860,Nh12,EA061,?,EA061-NA,,,,,, +79861,Nh13,EA061,?,EA061-NA,,,,,, +79862,Nh14,EA061,?,EA061-NA,,,,,, +79863,Nh15,EA061,Most adults,EA061-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +79864,Nh16,EA061,Most adults,EA061-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79865,Nh17,EA061,Most adults,EA061-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +79866,Nh18,EA061,Most adults,EA061-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79867,Nh19,EA061,Most adults,EA061-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +79868,Nh2,EA061,?,EA061-NA,,,,,, +79869,Nh20,EA061,?,EA061-NA,,,,,, +79870,Nh21,EA061,?,EA061-NA,,,,,, +79871,Nh22,EA061,?,EA061-NA,,,,,, +79872,Nh23,EA061,Most adults,EA061-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +79873,Nh24,EA061,Most adults,EA061-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +79874,Nh25,EA061,?,EA061-NA,,,,,, +79875,Nh26,EA061,?,EA061-NA,,,,,, +79876,Nh27,EA061,?,EA061-NA,,,,,, +79877,Nh3,EA061,Most adults,EA061-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +79878,Nh4,EA061,Activity is absent,EA061-10,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +79879,Nh5,EA061,Most adults,EA061-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +79880,Nh6,EA061,?,EA061-NA,,,,,, +79881,Nh7,EA061,?,EA061-NA,,,,,, +79882,Nh8,EA061,Most adults,EA061-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +79883,Nh9,EA061,?,EA061-NA,,,,,, +79884,Ni1,EA061,Most adults,EA061-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +79885,Ni2,EA061,Most adults,EA061-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +79886,Ni3,EA061,Junior age,EA061-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +79887,Ni4,EA061,?,EA061-NA,,,,,, +79888,Ni5,EA061,Most adults,EA061-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +79889,Ni6,EA061,Most adults,EA061-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +79890,Ni7,EA061,?,EA061-NA,,,,,, +79891,Ni8,EA061,?,EA061-NA,,,,,, +79892,Ni9,EA061,?,EA061-NA,,,,,, +79893,Nj1,EA061,Most adults,EA061-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79894,Nj10,EA061,?,EA061-NA,,,,,, +79895,Nj11,EA061,?,EA061-NA,,,,,, +79896,Nj12,EA061,?,EA061-NA,,,,,, +79897,Nj13,EA061,?,EA061-NA,,,,,, +79898,Nj14,EA061,?,EA061-NA,,,,,, +79899,Nj2,EA061,Most adults,EA061-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +79900,Nj3,EA061,Activity is absent,EA061-10,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +79901,Nj4,EA061,Most adults,EA061-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +79902,Nj5,EA061,?,EA061-NA,,,,,, +79903,Nj6,EA061,?,EA061-NA,,,,,, +79904,Nj7,EA061,Activity is absent,EA061-10,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79905,Nj8,EA061,?,EA061-NA,,,,,, +79906,Nj9,EA061,Activity is absent,EA061-10,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +79907,Sa1,EA061,Most adults,EA061-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +79908,Sa10,EA061,?,EA061-NA,,,,,, +79909,Sa11,EA061,?,EA061-NA,,,,,, +79910,Sa12,EA061,?,EA061-NA,,,,,, +79911,Sa13,EA061,?,EA061-NA,,,,,, +79912,Sa14,EA061,?,EA061-NA,,,,,, +79913,Sa15,EA061,?,EA061-NA,,,,,, +79914,Sa16,EA061,?,EA061-NA,,,,,, +79915,Sa17,EA061,?,EA061-NA,,,,,, +79916,Sa2,EA061,?,EA061-NA,,,,,, +79917,Sa3,EA061,Most adults,EA061-9,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +79918,Sa4,EA061,?,EA061-NA,,,,,, +79919,Sa5,EA061,Most adults,EA061-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +79920,Sa6,EA061,Activity is absent,EA061-10,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +79921,Sa7,EA061,?,EA061-NA,,,,,, +79922,Sa8,EA061,?,EA061-NA,,,,,, +79923,Sa9,EA061,Most adults,EA061-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +79924,Sb1,EA061,Most adults,EA061-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +79925,Sb2,EA061,Most adults,EA061-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +79926,Sb3,EA061,?,EA061-NA,,,,,, +79927,Sb4,EA061,Most adults,EA061-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +79928,Sb5,EA061,?,EA061-NA,,,,,, +79929,Sb6,EA061,Most adults,EA061-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +79930,Sb7,EA061,?,EA061-NA,,,,,, +79931,Sb8,EA061,?,EA061-NA,,,,,, +79932,Sb9,EA061,Activity is absent,EA061-10,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +79933,Sc1,EA061,Most adults,EA061-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +79934,Sc10,EA061,?,EA061-NA,,,,,, +79935,Sc11,EA061,Most adults,EA061-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +79936,Sc12,EA061,?,EA061-NA,,,,,, +79937,Sc13,EA061,?,EA061-NA,,,,,, +79938,Sc14,EA061,?,EA061-NA,,,,,, +79939,Sc15,EA061,?,EA061-NA,,,,,, +79940,Sc16,EA061,?,EA061-NA,,,,,, +79941,Sc17,EA061,?,EA061-NA,,,,,, +79942,Sc18,EA061,Most adults,EA061-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +79943,Sc2,EA061,Most adults,EA061-9,,leedsnd,,1950,EthnographicAtlas_1967_p120, +79944,Sc3,EA061,Most adults,EA061-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +79945,Sc4,EA061,Most adults,EA061-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +79946,Sc5,EA061,Most adults,EA061-9,,farabee1918,,1900,EthnographicAtlas_1967_p120, +79947,Sc6,EA061,Most adults,EA061-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79948,Sc7,EA061,Most adults,EA061-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +79949,Sc8,EA061,Most adults,EA061-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +79950,Sc9,EA061,Most adults,EA061-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +79951,Sd1,EA061,Most adults,EA061-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79952,Sd2,EA061,Most adults,EA061-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +79953,Sd3,EA061,?,EA061-NA,,,,,, +79954,Sd4,EA061,?,EA061-NA,,,,,, +79955,Sd5,EA061,Most adults,EA061-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +79956,Sd6,EA061,Most adults,EA061-9,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +79957,Sd7,EA061,Most adults,EA061-9,,fock1963,,1950,EthnographicAtlas_1967_p120, +79958,Sd8,EA061,?,EA061-NA,,,,,, +79959,Sd9,EA061,Most adults,EA061-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79960,Se1,EA061,Most adults,EA061-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +79961,Se10,EA061,?,EA061-NA,,,,,, +79962,Se11,EA061,Most adults,EA061-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +79963,Se12,EA061,?,EA061-NA,,,,,, +79964,Se2,EA061,Most adults,EA061-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +79965,Se3,EA061,Most adults,EA061-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +79966,Se4,EA061,?,EA061-NA,,,,,, +79967,Se5,EA061,Most adults,EA061-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +79968,Se6,EA061,Most adults,EA061-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +79969,Se7,EA061,?,EA061-NA,,,,,, +79970,Se8,EA061,Most adults,EA061-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +79971,Se9,EA061,?,EA061-NA,,,,,, +79972,Sf1,EA061,Activity is absent,EA061-10,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +79973,Sf2,EA061,Activity is absent,EA061-10,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +79974,Sf3,EA061,Most adults,EA061-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +79975,Sf4,EA061,Most adults,EA061-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +79976,Sf5,EA061,?,EA061-NA,,,,,, +79977,Sf6,EA061,?,EA061-NA,,,,,, +79978,Sf7,EA061,?,EA061-NA,,,,,, +79979,Sf8,EA061,?,EA061-NA,,,,,, +79980,Sf9,EA061,?,EA061-NA,,,,,, +79981,Sg1,EA061,Most adults,EA061-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +79982,Sg2,EA061,Most adults,EA061-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79983,Sg3,EA061,Most adults,EA061-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +79984,Sg4,EA061,Most adults,EA061-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +79985,Sg5,EA061,?,EA061-NA,,,,,, +79986,Sh1,EA061,Most adults,EA061-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +79987,Sh2,EA061,Most adults,EA061-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +79988,Sh3,EA061,Most adults,EA061-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +79989,Sh4,EA061,Most adults,EA061-9,,oberg1949,,1940,EthnographicAtlas_1967_p124, +79990,Sh5,EA061,Most adults,EA061-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +79991,Sh6,EA061,Most adults,EA061-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +79992,Sh7,EA061,?,EA061-NA,,,,,, +79993,Sh8,EA061,Most adults,EA061-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +79994,Sh9,EA061,Most adults,EA061-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +79995,Si1,EA061,Most adults,EA061-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +79996,Si10,EA061,Most adults,EA061-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +79997,Si2,EA061,Most adults,EA061-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +79998,Si3,EA061,?,EA061-NA,,,,,, +79999,Si4,EA061,Most adults,EA061-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +80000,Si5,EA061,Most adults,EA061-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +80001,Si6,EA061,Most adults,EA061-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +80002,Si7,EA061,?,EA061-NA,,,,,, +80003,Si8,EA061,Most adults,EA061-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +80004,Si9,EA061,?,EA061-NA,,,,,, +80005,Sj1,EA061,Most adults,EA061-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +80006,Sj10,EA061,Most adults,EA061-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80007,Sj11,EA061,Most adults,EA061-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +80008,Sj2,EA061,Most adults,EA061-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +80009,Sj3,EA061,Most adults,EA061-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +80010,Sj4,EA061,Most adults,EA061-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +80011,Sj5,EA061,Most adults,EA061-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +80012,Sj6,EA061,?,EA061-NA,,,,,, +80013,Sj7,EA061,Most adults,EA061-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +80014,Sj8,EA061,Most adults,EA061-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +80015,Sj9,EA061,Most adults,EA061-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +80016,ch12,EA061,Most adults,EA061-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +80017,ch13,EA061,Activity is absent,EA061-10,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +80018,ch14,EA061,Most adults,EA061-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +80019,ch15,EA061,Most adults,EA061-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +80020,ch16,EA061,Most adults,EA061-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +80021,ch17,EA061,Activity is absent,EA061-10,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +80022,ch18,EA061,Most adults,EA061-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +80023,ch19,EA061,Most adults,EA061-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +80024,ch20,EA061,Activity is absent,EA061-10,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +80025,ch21,EA061,Most adults,EA061-9,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +80026,ch22,EA061,Activity is absent,EA061-10,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +80027,ch23,EA061,Activity is absent,EA061-10,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +80028,ch24,EA061,Most adults,EA061-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +80029,ch25,EA061,Activity is absent,EA061-10,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +80030,ch26,EA061,Most adults,EA061-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +80031,ch27,EA061,Most adults,EA061-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +80032,ch28,EA061,Most adults,EA061-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +80033,ec12,EA061,Activity is absent,EA061-10,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +80034,ec13,EA061,Most adults,EA061-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +80035,ec14,EA061,Most adults,EA061-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +80036,ec15,EA061,Most adults,EA061-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +80037,ec16,EA061,Most adults,EA061-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +80038,ec17,EA061,Most adults,EA061-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +80039,ec18,EA061,Most adults,EA061-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +80040,ec19,EA061,Most adults,EA061-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +80041,ec20,EA061,Most adults,EA061-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +80042,ec21,EA061,Most adults,EA061-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +80043,Aa1,EA062,Most adults,EA062-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +80044,Aa2,EA062,Most adults,EA062-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +80045,Aa3,EA062,Most adults,EA062-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +80046,Aa4,EA062,?,EA062-NA,,,,,, +80047,Aa5,EA062,Most adults,EA062-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +80048,Aa6,EA062,Most adults,EA062-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p64, +80049,Aa7,EA062,Most adults,EA062-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +80050,Aa8,EA062,?,EA062-NA,,,,,, +80051,Aa9,EA062,Most adults,EA062-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +80052,Ab1,EA062,Most adults,EA062-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +80053,Ab10,EA062,Most adults,EA062-9,,hunter1936,,1936,EthnographicAtlas_1967_p64, +80054,Ab11,EA062,Most adults,EA062-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +80055,Ab12,EA062,Most adults,EA062-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +80056,Ab13,EA062,Most adults,EA062-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +80057,Ab14,EA062,Most adults,EA062-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +80058,Ab15,EA062,Most adults,EA062-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +80059,Ab16,EA062,Most adults,EA062-9,,earthy1933,,1930,EthnographicAtlas_1967_p64, +80060,Ab17,EA062,?,EA062-NA,,,,,, +80061,Ab18,EA062,Most adults,EA062-9,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +80062,Ab19,EA062,Most adults,EA062-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +80063,Ab2,EA062,Most adults,EA062-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +80064,Ab20,EA062,?,EA062-NA,,,,,, +80065,Ab21a,EA062,?,EA062-NA,,,,,, +80066,Ab21b,EA062,?,EA062-NA,,,,,, +80067,Ab22,EA062,?,EA062-NA,,,,,, +80068,Ab3,EA062,Most adults,EA062-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +80069,Ab4,EA062,Most adults,EA062-9,,junod1927,,1920,EthnographicAtlas_1967_p64, +80070,Ab5,EA062,Most adults,EA062-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +80071,Ab6,EA062,Most adults,EA062-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +80072,Ab7,EA062,Most adults,EA062-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p64, +80073,Ab8,EA062,Most adults,EA062-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +80074,Ab9,EA062,Most adults,EA062-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +80075,Ac1,EA062,Most adults,EA062-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +80076,Ac10,EA062,Most adults,EA062-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +80077,Ac11,EA062,Craft,EA062-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +80078,Ac12,EA062,Most adults,EA062-9,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p64, +80079,Ac13,EA062,?,EA062-NA,,,,,, +80080,Ac14,EA062,Most adults,EA062-9,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p64, +80081,Ac15,EA062,?,EA062-NA,,,,,, +80082,Ac16,EA062,?,EA062-NA,,,,,, +80083,Ac17,EA062,Most adults,EA062-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +80084,Ac18,EA062,Most adults,EA062-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +80085,Ac19,EA062,?,EA062-NA,,,,,, +80086,Ac2,EA062,Activity is absent,EA062-10,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p64, +80087,Ac20,EA062,?,EA062-NA,,,,,, +80088,Ac21,EA062,Most adults,EA062-9,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p64, +80089,Ac22,EA062,Most adults,EA062-9,,mertens1935,,1930,EthnographicAtlas_1967_p64, +80090,Ac23,EA062,Most adults,EA062-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +80091,Ac24,EA062,?,EA062-NA,,,,,, +80092,Ac25,EA062,Most adults,EA062-9,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p64, +80093,Ac26,EA062,?,EA062-NA,,,,,, +80094,Ac27,EA062,?,EA062-NA,,,,,, +80095,Ac28,EA062,Most adults,EA062-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +80096,Ac29,EA062,?,EA062-NA,,,,,, +80097,Ac3,EA062,Most adults,EA062-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +80098,Ac30,EA062,Most adults,EA062-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +80099,Ac31,EA062,Most adults,EA062-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +80100,Ac32,EA062,?,EA062-NA,,,,,, +80101,Ac33,EA062,Most adults,EA062-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +80102,Ac34,EA062,Most adults,EA062-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +80103,Ac35,EA062,?,EA062-NA,,,,,, +80104,Ac36,EA062,Most adults,EA062-9,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p64, +80105,Ac37,EA062,?,EA062-NA,,,,,, +80106,Ac38,EA062,Most adults,EA062-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +80107,Ac39,EA062,Most adults,EA062-9,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +80108,Ac4,EA062,Most adults,EA062-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +80109,Ac40,EA062,?,EA062-NA,,,,,, +80110,Ac41,EA062,?,EA062-NA,,,,,, +80111,Ac42,EA062,?,EA062-NA,,,,,, +80112,Ac43,EA062,?,EA062-NA,,,,,, +80113,Ac5,EA062,Most adults,EA062-9,There are also professional hippopotamus hunters,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +80114,Ac6,EA062,Most adults,EA062-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +80115,Ac7,EA062,Most adults,EA062-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +80116,Ac8,EA062,Most adults,EA062-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +80117,Ac9,EA062,Most adults,EA062-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +80118,Ad1,EA062,Most adults,EA062-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +80119,Ad10,EA062,Most adults,EA062-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +80120,Ad11,EA062,Most adults,EA062-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +80121,Ad12,EA062,?,EA062-NA,,,,,, +80122,Ad13,EA062,Most adults,EA062-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +80123,Ad14,EA062,?,EA062-NA,,,,,, +80124,Ad15,EA062,Most adults,EA062-9,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p68, +80125,Ad16,EA062,Most adults,EA062-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +80126,Ad17,EA062,Most adults,EA062-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +80127,Ad18,EA062,?,EA062-NA,,,,,, +80128,Ad19,EA062,Most adults,EA062-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +80129,Ad2,EA062,Most adults,EA062-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +80130,Ad20,EA062,Most adults,EA062-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +80131,Ad21,EA062,Most adults,EA062-9,,maurice193538,,1930,EthnographicAtlas_1967_p68, +80132,Ad22,EA062,Most adults,EA062-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +80133,Ad23,EA062,?,EA062-NA,,,,,, +80134,Ad24,EA062,Most adults,EA062-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +80135,Ad25,EA062,?,EA062-NA,,,,,, +80136,Ad26,EA062,?,EA062-NA,,,,,, +80137,Ad27,EA062,?,EA062-NA,,,,,, +80138,Ad28,EA062,Craft,EA062-3,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +80139,Ad29,EA062,Most adults,EA062-9,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +80140,Ad3,EA062,Most adults,EA062-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +80141,Ad30,EA062,Most adults,EA062-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +80142,Ad31,EA062,Most adults,EA062-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +80143,Ad32,EA062,Most adults,EA062-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p68, +80144,Ad33,EA062,Most adults,EA062-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +80145,Ad34,EA062,Most adults,EA062-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +80146,Ad35,EA062,Most adults,EA062-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +80147,Ad36,EA062,?,EA062-NA,,,,,, +80148,Ad37,EA062,?,EA062-NA,,,,,, +80149,Ad38,EA062,?,EA062-NA,,,,,, +80150,Ad39,EA062,Most adults,EA062-9,,gray1963,,1950,EthnographicAtlas_1967_p68, +80151,Ad4,EA062,Most adults,EA062-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +80152,Ad40,EA062,?,EA062-NA,,,,,, +80153,Ad41,EA062,Most adults,EA062-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +80154,Ad42,EA062,Most adults,EA062-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p68, +80155,Ad43,EA062,?,EA062-NA,,,,,, +80156,Ad44,EA062,?,EA062-NA,,,,,, +80157,Ad45,EA062,Most adults,EA062-9,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +80158,Ad46,EA062,Craft,EA062-3,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +80159,Ad47,EA062,Most adults,EA062-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +80160,Ad48,EA062,Most adults,EA062-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +80161,Ad49,EA062,Most adults,EA062-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +80162,Ad5,EA062,?,EA062-NA,,,,,, +80163,Ad50,EA062,Most adults,EA062-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +80164,Ad51,EA062,Most adults,EA062-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +80165,Ad6,EA062,Most adults,EA062-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +80166,Ad7,EA062,Most adults,EA062-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +80167,Ad8,EA062,Most adults,EA062-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +80168,Ad9,EA062,Most adults,EA062-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +80169,Ae1,EA062,Most adults,EA062-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +80170,Ae10,EA062,Craft,EA062-3,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +80171,Ae11,EA062,Most adults,EA062-9,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +80172,Ae12,EA062,Most adults,EA062-9,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +80173,Ae13,EA062,?,EA062-NA,,,,,, +80174,Ae14,EA062,Most adults,EA062-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +80175,Ae15,EA062,Most adults,EA062-9,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p68, +80176,Ae16,EA062,?,EA062-NA,,,,,, +80177,Ae17,EA062,Most adults,EA062-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +80178,Ae18,EA062,Most adults,EA062-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +80179,Ae19,EA062,?,EA062-NA,,,,,, +80180,Ae2,EA062,Most adults,EA062-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +80181,Ae20,EA062,?,EA062-NA,,,,,, +80182,Ae21,EA062,?,EA062-NA,,,,,, +80183,Ae22,EA062,Most adults,EA062-9,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p68, +80184,Ae23,EA062,?,EA062-NA,,,,,, +80185,Ae24,EA062,?,EA062-NA,,,,,, +80186,Ae25,EA062,?,EA062-NA,,,,,, +80187,Ae26,EA062,?,EA062-NA,,,,,, +80188,Ae27,EA062,?,EA062-NA,,,,,, +80189,Ae28,EA062,Most adults,EA062-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +80190,Ae29,EA062,Most adults,EA062-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +80191,Ae3,EA062,Most adults,EA062-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +80192,Ae30,EA062,?,EA062-NA,,,,,, +80193,Ae31,EA062,Most adults,EA062-9,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +80194,Ae32,EA062,?,EA062-NA,,,,,, +80195,Ae33,EA062,Most adults,EA062-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +80196,Ae34,EA062,?,EA062-NA,,,,,, +80197,Ae35,EA062,?,EA062-NA,,,,,, +80198,Ae36,EA062,?,EA062-NA,,,,,, +80199,Ae37,EA062,?,EA062-NA,,,,,, +80200,Ae38,EA062,Most adults,EA062-9,,wijnant192526,,1920,EthnographicAtlas_1967_p68, +80201,Ae39,EA062,Most adults,EA062-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +80202,Ae4,EA062,Most adults,EA062-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +80203,Ae40,EA062,?,EA062-NA,,,,,, +80204,Ae41,EA062,Most adults,EA062-9,,andersson1953,,1940,EthnographicAtlas_1967_p68, +80205,Ae42,EA062,?,EA062-NA,,,,,, +80206,Ae43,EA062,?,EA062-NA,,,,,, +80207,Ae44,EA062,?,EA062-NA,,,,,, +80208,Ae45,EA062,?,EA062-NA,,,,,, +80209,Ae46,EA062,?,EA062-NA,,,,,, +80210,Ae47,EA062,?,EA062-NA,,,,,, +80211,Ae48,EA062,?,EA062-NA,,,,,, +80212,Ae49,EA062,?,EA062-NA,,,,,, +80213,Ae5,EA062,Most adults,EA062-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +80214,Ae50,EA062,Most adults,EA062-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +80215,Ae51,EA062,Most adults,EA062-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +80216,Ae52,EA062,Most adults,EA062-9,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +80217,Ae53,EA062,?,EA062-NA,,,,,, +80218,Ae54,EA062,?,EA062-NA,,,,,, +80219,Ae55,EA062,Most adults,EA062-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +80220,Ae56,EA062,Most adults,EA062-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +80221,Ae57,EA062,?,EA062-NA,,,,,, +80222,Ae58,EA062,?,EA062-NA,,,,,, +80223,Ae59,EA062,?,EA062-NA,,,,,, +80224,Ae6,EA062,Most adults,EA062-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +80225,Ae7,EA062,Most adults,EA062-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +80226,Ae8,EA062,Craft,EA062-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +80227,Ae9,EA062,Most adults,EA062-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +80228,Af1,EA062,Most adults,EA062-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +80229,Af10,EA062,Activity is absent,EA062-10,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +80230,Af11,EA062,Most adults,EA062-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +80231,Af12,EA062,?,EA062-NA,,,,,, +80232,Af13,EA062,Most adults,EA062-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +80233,Af14,EA062,Most adults,EA062-9,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +80234,Af15,EA062,Most adults,EA062-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +80235,Af16,EA062,?,EA062-NA,,,,,, +80236,Af17,EA062,?,EA062-NA,,,,,, +80237,Af18,EA062,?,EA062-NA,,,,,, +80238,Af19,EA062,Most adults,EA062-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p72, +80239,Af2,EA062,Most adults,EA062-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +80240,Af20,EA062,Most adults,EA062-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +80241,Af21,EA062,?,EA062-NA,,,,,, +80242,Af22,EA062,Most adults,EA062-9,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +80243,Af23,EA062,?,EA062-NA,,,,,, +80244,Af24,EA062,Most adults,EA062-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +80245,Af25,EA062,Most adults,EA062-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +80246,Af26,EA062,?,EA062-NA,,,,,, +80247,Af27,EA062,?,EA062-NA,,,,,, +80248,Af28,EA062,Most adults,EA062-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +80249,Af29,EA062,?,EA062-NA,,,,,, +80250,Af3,EA062,Most adults,EA062-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +80251,Af30,EA062,?,EA062-NA,,,,,, +80252,Af31,EA062,?,EA062-NA,,,,,, +80253,Af32,EA062,Most adults,EA062-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80254,Af33,EA062,?,EA062-NA,,,,,, +80255,Af34,EA062,?,EA062-NA,,,,,, +80256,Af35,EA062,?,EA062-NA,,,,,, +80257,Af36,EA062,Most adults,EA062-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +80258,Af37,EA062,?,EA062-NA,,,,,, +80259,Af38,EA062,?,EA062-NA,,,,,, +80260,Af39,EA062,?,EA062-NA,,,,,, +80261,Af4,EA062,Most adults,EA062-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +80262,Af40,EA062,?,EA062-NA,,,,,, +80263,Af41,EA062,?,EA062-NA,,,,,, +80264,Af42,EA062,Most adults,EA062-9,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +80265,Af43,EA062,Most adults,EA062-9,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p72, +80266,Af44,EA062,?,EA062-NA,,,,,, +80267,Af45,EA062,?,EA062-NA,,,,,, +80268,Af46,EA062,?,EA062-NA,,,,,, +80269,Af47,EA062,?,EA062-NA,,,,,, +80270,Af48,EA062,?,EA062-NA,,,,,, +80271,Af49,EA062,Most adults,EA062-9,,schwab1947,,1940,EthnographicAtlas_1967_p72, +80272,Af5,EA062,Most adults,EA062-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +80273,Af50,EA062,?,EA062-NA,,,,,, +80274,Af51,EA062,Most adults,EA062-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +80275,Af52,EA062,Most adults,EA062-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +80276,Af53,EA062,?,EA062-NA,,,,,, +80277,Af54,EA062,Most adults,EA062-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +80278,Af55,EA062,?,EA062-NA,,,,,, +80279,Af56,EA062,Most adults,EA062-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +80280,Af57,EA062,Craft,EA062-3,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +80281,Af58,EA062,?,EA062-NA,,,,,, +80282,Af6,EA062,Activity is absent,EA062-10,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +80283,Af7,EA062,Most adults,EA062-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +80284,Af8,EA062,Most adults,EA062-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +80285,Af9,EA062,Most adults,EA062-9,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p72, +80286,Ag1,EA062,Most adults,EA062-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +80287,Ag10,EA062,Most adults,EA062-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +80288,Ag11,EA062,Most adults,EA062-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +80289,Ag12,EA062,Most adults,EA062-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +80290,Ag13,EA062,?,EA062-NA,,,,,, +80291,Ag14,EA062,?,EA062-NA,,,,,, +80292,Ag15,EA062,?,EA062-NA,,,,,, +80293,Ag16,EA062,Most adults,EA062-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p72, +80294,Ag17,EA062,?,EA062-NA,,,,,, +80295,Ag18,EA062,Most adults,EA062-9,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p72, +80296,Ag19,EA062,Most adults,EA062-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p72, +80297,Ag2,EA062,Most adults,EA062-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +80298,Ag20,EA062,?,EA062-NA,,,,,, +80299,Ag21,EA062,Most adults,EA062-9,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +80300,Ag22,EA062,Most adults,EA062-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +80301,Ag23,EA062,?,EA062-NA,,,,,, +80302,Ag24,EA062,?,EA062-NA,,,,,, +80303,Ag25,EA062,?,EA062-NA,,,,,, +80304,Ag26,EA062,?,EA062-NA,,,,,, +80305,Ag27,EA062,Most adults,EA062-9,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p72, +80306,Ag28,EA062,?,EA062-NA,,,,,, +80307,Ag29,EA062,?,EA062-NA,,,,,, +80308,Ag3,EA062,Most adults,EA062-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +80309,Ag30,EA062,Most adults,EA062-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +80310,Ag31,EA062,Most adults,EA062-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p72, +80311,Ag32,EA062,Most adults,EA062-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +80312,Ag33,EA062,?,EA062-NA,,,,,, +80313,Ag34,EA062,?,EA062-NA,,,,,, +80314,Ag35,EA062,?,EA062-NA,,,,,, +80315,Ag36,EA062,?,EA062-NA,,,,,, +80316,Ag37,EA062,?,EA062-NA,,,,,, +80317,Ag38,EA062,?,EA062-NA,,,,,, +80318,Ag39,EA062,?,EA062-NA,,,,,, +80319,Ag4,EA062,Most adults,EA062-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +80320,Ag40,EA062,?,EA062-NA,,,,,, +80321,Ag41,EA062,?,EA062-NA,,,,,, +80322,Ag42,EA062,?,EA062-NA,,,,,, +80323,Ag43,EA062,?,EA062-NA,,,,,, +80324,Ag44,EA062,?,EA062-NA,,,,,, +80325,Ag45,EA062,Most adults,EA062-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +80326,Ag46,EA062,?,EA062-NA,,,,,, +80327,Ag47,EA062,Most adults,EA062-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +80328,Ag48,EA062,Most adults,EA062-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +80329,Ag49,EA062,Most adults,EA062-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +80330,Ag5,EA062,Most adults,EA062-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +80331,Ag50,EA062,Most adults,EA062-9,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +80332,Ag51,EA062,?,EA062-NA,,,,,, +80333,Ag52,EA062,?,EA062-NA,,,,,, +80334,Ag53,EA062,Most adults,EA062-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +80335,Ag54,EA062,Most adults,EA062-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +80336,Ag6,EA062,Activity is absent,EA062-10,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +80337,Ag7,EA062,Activity is absent,EA062-10,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p72, +80338,Ag8,EA062,Most adults,EA062-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +80339,Ag9,EA062,Most adults,EA062-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +80340,Ah1,EA062,Most adults,EA062-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80341,Ah10,EA062,?,EA062-NA,,,,,, +80342,Ah11,EA062,?,EA062-NA,,,,,, +80343,Ah12,EA062,?,EA062-NA,,,,,, +80344,Ah13,EA062,Most adults,EA062-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +80345,Ah14,EA062,Most adults,EA062-9,,gunnandconant1960,,1920,EthnographicAtlas_1967_p76, +80346,Ah15,EA062,Most adults,EA062-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +80347,Ah16,EA062,?,EA062-NA,,,,,, +80348,Ah17,EA062,?,EA062-NA,,,,,, +80349,Ah18,EA062,?,EA062-NA,,,,,, +80350,Ah19,EA062,Most adults,EA062-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p76, +80351,Ah2,EA062,Most adults,EA062-9,,meek1931a,,1920,EthnographicAtlas_1967_p76, +80352,Ah20,EA062,Most adults,EA062-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +80353,Ah21,EA062,?,EA062-NA,,,,,, +80354,Ah22,EA062,?,EA062-NA,,,,,, +80355,Ah23,EA062,?,EA062-NA,,,,,, +80356,Ah24,EA062,?,EA062-NA,,,,,, +80357,Ah25,EA062,?,EA062-NA,,,,,, +80358,Ah26,EA062,?,EA062-NA,,,,,, +80359,Ah27,EA062,?,EA062-NA,,,,,, +80360,Ah28,EA062,?,EA062-NA,,,,,, +80361,Ah29,EA062,?,EA062-NA,,,,,, +80362,Ah3,EA062,Most adults,EA062-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +80363,Ah30,EA062,Most adults,EA062-9,,meek1931b,,1920,EthnographicAtlas_1967_p76, +80364,Ah31,EA062,Most adults,EA062-9,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p76, +80365,Ah32,EA062,?,EA062-NA,,,,,, +80366,Ah33,EA062,Most adults,EA062-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p76, +80367,Ah34,EA062,?,EA062-NA,,,,,, +80368,Ah35,EA062,?,EA062-NA,,,,,, +80369,Ah36,EA062,Most adults,EA062-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +80370,Ah37,EA062,?,EA062-NA,,,,,, +80371,Ah38,EA062,Most adults,EA062-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +80372,Ah39,EA062,Most adults,EA062-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +80373,Ah4,EA062,Activity is absent,EA062-10,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p76, +80374,Ah5,EA062,?,EA062-NA,,,,,, +80375,Ah6,EA062,?,EA062-NA,,,,,, +80376,Ah7,EA062,Most adults,EA062-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +80377,Ah8,EA062,Most adults,EA062-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +80378,Ah9,EA062,Most adults,EA062-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +80379,Ai1,EA062,Most adults,EA062-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +80380,Ai10,EA062,Most adults,EA062-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +80381,Ai11,EA062,Most adults,EA062-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +80382,Ai12,EA062,Most adults,EA062-9,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p76, +80383,Ai13,EA062,?,EA062-NA,,,,,, +80384,Ai14,EA062,Most adults,EA062-9,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +80385,Ai15,EA062,?,EA062-NA,,,,,, +80386,Ai16,EA062,?,EA062-NA,,,,,, +80387,Ai17,EA062,?,EA062-NA,,,,,, +80388,Ai18,EA062,?,EA062-NA,,,,,, +80389,Ai19,EA062,?,EA062-NA,,,,,, +80390,Ai2,EA062,?,EA062-NA,,,,,, +80391,Ai20,EA062,?,EA062-NA,,,,,, +80392,Ai21,EA062,?,EA062-NA,,,,,, +80393,Ai22,EA062,Most adults,EA062-9,,delafosse1897,,1890,EthnographicAtlas_1967_p76, +80394,Ai23,EA062,Most adults,EA062-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +80395,Ai24,EA062,?,EA062-NA,,,,,, +80396,Ai25,EA062,?,EA062-NA,,,,,, +80397,Ai26,EA062,Most adults,EA062-9,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +80398,Ai27,EA062,?,EA062-NA,,,,,, +80399,Ai28,EA062,Most adults,EA062-9,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +80400,Ai29,EA062,Most adults,EA062-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +80401,Ai3,EA062,Most adults,EA062-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +80402,Ai30,EA062,Most adults,EA062-9,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +80403,Ai31,EA062,Most adults,EA062-9,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +80404,Ai32,EA062,?,EA062-NA,,,,,, +80405,Ai33,EA062,?,EA062-NA,,,,,, +80406,Ai34,EA062,Most adults,EA062-9,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +80407,Ai35,EA062,Most adults,EA062-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +80408,Ai36,EA062,Most adults,EA062-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +80409,Ai37,EA062,?,EA062-NA,,,,,, +80410,Ai38,EA062,Most adults,EA062-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +80411,Ai39,EA062,Most adults,EA062-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +80412,Ai4,EA062,?,EA062-NA,,,,,, +80413,Ai40,EA062,Most adults,EA062-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +80414,Ai41,EA062,Most adults,EA062-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +80415,Ai42,EA062,Most adults,EA062-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +80416,Ai43,EA062,Most adults,EA062-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +80417,Ai44,EA062,Most adults,EA062-9,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p76, +80418,Ai45,EA062,?,EA062-NA,,,,,, +80419,Ai46,EA062,Most adults,EA062-9,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p76, +80420,Ai47,EA062,Most adults,EA062-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p76, +80421,Ai5,EA062,Most adults,EA062-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +80422,Ai6,EA062,Most adults,EA062-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +80423,Ai7,EA062,Most adults,EA062-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +80424,Ai8,EA062,Most adults,EA062-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +80425,Ai9,EA062,Most adults,EA062-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +80426,Aj1,EA062,Most adults,EA062-9,,lawrance1957,,1950,EthnographicAtlas_1967_p76, +80427,Aj10,EA062,?,EA062-NA,,,,,, +80428,Aj11,EA062,Most adults,EA062-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p80, +80429,Aj12,EA062,Most adults,EA062-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +80430,Aj13,EA062,Most adults,EA062-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +80431,Aj14,EA062,?,EA062-NA,,,,,, +80432,Aj15,EA062,Most adults,EA062-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +80433,Aj16,EA062,Most adults,EA062-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +80434,Aj17,EA062,Most adults,EA062-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +80435,Aj18,EA062,Most adults,EA062-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +80436,Aj19,EA062,Most adults,EA062-9,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p80, +80437,Aj2,EA062,Most adults,EA062-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +80438,Aj20,EA062,Most adults,EA062-9,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p80, +80439,Aj21,EA062,Most adults,EA062-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +80440,Aj22,EA062,Most adults,EA062-9,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +80441,Aj23,EA062,Most adults,EA062-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +80442,Aj24,EA062,Most adults,EA062-9,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +80443,Aj25,EA062,Most adults,EA062-9,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +80444,Aj26,EA062,Most adults,EA062-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +80445,Aj27,EA062,?,EA062-NA,,,,,, +80446,Aj28,EA062,Most adults,EA062-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +80447,Aj29,EA062,?,EA062-NA,,,,,, +80448,Aj3,EA062,Most adults,EA062-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +80449,Aj30,EA062,?,EA062-NA,,,,,, +80450,Aj31,EA062,?,EA062-NA,,,,,, +80451,Aj4,EA062,Most adults,EA062-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +80452,Aj5,EA062,Most adults,EA062-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +80453,Aj6,EA062,Most adults,EA062-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +80454,Aj7,EA062,Most adults,EA062-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +80455,Aj8,EA062,Craft,EA062-3,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +80456,Aj9,EA062,?,EA062-NA,,,,,, +80457,Ca1,EA062,Most adults,EA062-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +80458,Ca10,EA062,Craft,EA062-3,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +80459,Ca11,EA062,Most adults,EA062-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +80460,Ca12,EA062,Most adults,EA062-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +80461,Ca13,EA062,Most adults,EA062-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +80462,Ca14,EA062,Most adults,EA062-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +80463,Ca15,EA062,Most adults,EA062-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +80464,Ca16,EA062,Most adults,EA062-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +80465,Ca17,EA062,Most adults,EA062-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +80466,Ca18,EA062,?,EA062-NA,,,,,, +80467,Ca19,EA062,Most adults,EA062-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +80468,Ca2,EA062,Craft,EA062-3,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +80469,Ca20,EA062,?,EA062-NA,,,,,, +80470,Ca21,EA062,?,EA062-NA,,,,,, +80471,Ca22,EA062,?,EA062-NA,,,,,, +80472,Ca23,EA062,Most adults,EA062-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +80473,Ca24,EA062,Craft,EA062-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +80474,Ca25,EA062,?,EA062-NA,,,,,, +80475,Ca26,EA062,?,EA062-NA,,,,,, +80476,Ca27,EA062,?,EA062-NA,,,,,, +80477,Ca28,EA062,Activity is absent,EA062-10,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +80478,Ca29,EA062,Craft,EA062-3,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +80479,Ca3,EA062,Most adults,EA062-9,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p80, +80480,Ca30,EA062,Most adults,EA062-9,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +80481,Ca31,EA062,?,EA062-NA,,,,,, +80482,Ca32,EA062,?,EA062-NA,,,,,, +80483,Ca33,EA062,?,EA062-NA,,,,,, +80484,Ca34,EA062,?,EA062-NA,,,,,, +80485,Ca35,EA062,?,EA062-NA,,,,,, +80486,Ca36,EA062,?,EA062-NA,,,,,, +80487,Ca37,EA062,?,EA062-NA,,,,,, +80488,Ca38,EA062,?,EA062-NA,,,,,, +80489,Ca39,EA062,Craft,EA062-3,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +80490,Ca4,EA062,Activity is absent,EA062-10,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +80491,Ca40,EA062,Most adults,EA062-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +80492,Ca41,EA062,?,EA062-NA,,,,,, +80493,Ca42,EA062,Craft,EA062-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +80494,Ca43,EA062,?,EA062-NA,,,,,, +80495,Ca5,EA062,Most adults,EA062-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p80, +80496,Ca6,EA062,Most adults,EA062-9,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p80, +80497,Ca7,EA062,Craft,EA062-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +80498,Ca8,EA062,Craft,EA062-3,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p80, +80499,Ca9,EA062,?,EA062-NA,,,,,, +80500,Cb1,EA062,?,EA062-NA,,,,,, +80501,Cb10,EA062,?,EA062-NA,,,,,, +80502,Cb11,EA062,?,EA062-NA,,,,,, +80503,Cb12,EA062,?,EA062-NA,,,,,, +80504,Cb13,EA062,?,EA062-NA,,,,,, +80505,Cb14,EA062,?,EA062-NA,,,,,, +80506,Cb15,EA062,?,EA062-NA,,,,,, +80507,Cb16,EA062,?,EA062-NA,,,,,, +80508,Cb17,EA062,Most adults,EA062-9,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +80509,Cb18,EA062,Most adults,EA062-9,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p80, +80510,Cb19,EA062,?,EA062-NA,,,,,, +80511,Cb2,EA062,Most adults,EA062-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +80512,Cb20,EA062,Most adults,EA062-9,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +80513,Cb21,EA062,Most adults,EA062-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p84, +80514,Cb22,EA062,?,EA062-NA,,,,,, +80515,Cb23,EA062,Most adults,EA062-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +80516,Cb24,EA062,Activity is absent,EA062-10,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p84, +80517,Cb25,EA062,?,EA062-NA,,,,,, +80518,Cb26,EA062,Most adults,EA062-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +80519,Cb27,EA062,?,EA062-NA,,,,,, +80520,Cb28,EA062,?,EA062-NA,,,,,, +80521,Cb29,EA062,?,EA062-NA,,,,,, +80522,Cb3,EA062,Craft,EA062-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +80523,Cb4,EA062,Most adults,EA062-9,,reid1930,,1920,EthnographicAtlas_1967_p80, +80524,Cb5,EA062,Activity is absent,EA062-10,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p80, +80525,Cb6,EA062,Most adults,EA062-9,,woodnd,,1920,EthnographicAtlas_1967_p80, +80526,Cb7,EA062,Most adults,EA062-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p80, +80527,Cb8,EA062,Activity is absent,EA062-10,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p80, +80528,Cb9,EA062,?,EA062-NA,,,,,, +80529,Cc1,EA062,Most adults,EA062-9,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +80530,Cc10,EA062,Most adults,EA062-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +80531,Cc11,EA062,?,EA062-NA,,,,,, +80532,Cc12,EA062,Most adults,EA062-9,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +80533,Cc13,EA062,?,EA062-NA,,,,,, +80534,Cc14,EA062,Craft,EA062-3,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +80535,Cc15,EA062,?,EA062-NA,,,,,, +80536,Cc16,EA062,Most adults,EA062-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +80537,Cc17,EA062,Most adults,EA062-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +80538,Cc18,EA062,?,EA062-NA,,,,,, +80539,Cc19,EA062,?,EA062-NA,,,,,, +80540,Cc2,EA062,Craft,EA062-3,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +80541,Cc20,EA062,Activity is absent,EA062-10,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +80542,Cc3,EA062,Activity is absent,EA062-10,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +80543,Cc4,EA062,Activity is absent,EA062-10,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +80544,Cc5,EA062,Most adults,EA062-9,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +80545,Cc6,EA062,?,EA062-NA,,,,,, +80546,Cc7,EA062,?,EA062-NA,,,,,, +80547,Cc8,EA062,?,EA062-NA,,,,,, +80548,Cc9,EA062,Most adults,EA062-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +80549,Cd1,EA062,Activity is absent,EA062-10,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +80550,Cd10,EA062,?,EA062-NA,,,,,, +80551,Cd11,EA062,Most adults,EA062-9,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p84, +80552,Cd12,EA062,?,EA062-NA,,,,,, +80553,Cd13,EA062,?,EA062-NA,,,,,, +80554,Cd14,EA062,?,EA062-NA,,,,,, +80555,Cd15,EA062,?,EA062-NA,,,,,, +80556,Cd16,EA062,?,EA062-NA,,,,,, +80557,Cd17,EA062,?,EA062-NA,,,,,, +80558,Cd18,EA062,?,EA062-NA,,,,,, +80559,Cd19,EA062,?,EA062-NA,,,,,, +80560,Cd2,EA062,Activity is absent,EA062-10,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +80561,Cd20,EA062,?,EA062-NA,,,,,, +80562,Cd21,EA062,?,EA062-NA,,,,,, +80563,Cd3,EA062,Most adults,EA062-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +80564,Cd4,EA062,Activity is absent,EA062-10,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +80565,Cd5,EA062,Most adults,EA062-9,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +80566,Cd6,EA062,Most adults,EA062-9,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +80567,Cd7,EA062,?,EA062-NA,,,,,, +80568,Cd8,EA062,?,EA062-NA,,,,,, +80569,Cd9,EA062,?,EA062-NA,,,,,, +80570,Ce1,EA062,Activity is absent,EA062-10,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +80571,Ce2,EA062,?,EA062-NA,,,,,, +80572,Ce3,EA062,?,EA062-NA,,,,,, +80573,Ce4,EA062,Activity is absent,EA062-10,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80574,Ce5,EA062,Most adults,EA062-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +80575,Ce6,EA062,Most adults,EA062-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +80576,Ce7,EA062,Activity is absent,EA062-10,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +80577,Ce8,EA062,Most adults,EA062-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +80578,Cf1,EA062,Most adults,EA062-9,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +80579,Cf2,EA062,?,EA062-NA,,,,,, +80580,Cf3,EA062,Most adults,EA062-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +80581,Cf4,EA062,Most adults,EA062-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +80582,Cf5,EA062,Most adults,EA062-9,,miner1939,,1930,EthnographicAtlas_1967_p84, +80583,Cg1,EA062,Activity is absent,EA062-10,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +80584,Cg2,EA062,Most adults,EA062-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +80585,Cg3,EA062,Most adults,EA062-9,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +80586,Cg4,EA062,Most adults,EA062-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +80587,Cg5,EA062,?,EA062-NA,,,,,, +80588,Ch1,EA062,Most adults,EA062-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +80589,Ch10,EA062,?,EA062-NA,,,,,, +80590,Ch11,EA062,Activity is absent,EA062-10,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +80591,Ch2,EA062,Most adults,EA062-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +80592,Ch3,EA062,Most adults,EA062-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +80593,Ch4,EA062,Most adults,EA062-9,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p84, +80594,Ch5,EA062,Most adults,EA062-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +80595,Ch6,EA062,Most adults,EA062-9,,ember1954,,1910,EthnographicAtlas_1967_p84, +80596,Ch7,EA062,Most adults,EA062-9,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +80597,Ch8,EA062,?,EA062-NA,,,,,, +80598,Ch9,EA062,Most adults,EA062-9,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +80599,Ci1,EA062,Most adults,EA062-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +80600,Ci10,EA062,Most adults,EA062-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +80601,Ci11,EA062,Most adults,EA062-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +80602,Ci12,EA062,Most adults,EA062-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +80603,Ci2,EA062,Most adults,EA062-9,,grigolia1939,,1930,EthnographicAtlas_1967_p84, +80604,Ci3,EA062,Activity is absent,EA062-10,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p84, +80605,Ci4,EA062,Most adults,EA062-9,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +80606,Ci5,EA062,Activity is absent,EA062-10,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +80607,Ci6,EA062,Most adults,EA062-9,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p84, +80608,Ci7,EA062,Most adults,EA062-9,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p84, +80609,Ci8,EA062,?,EA062-NA,,,,,, +80610,Ci9,EA062,?,EA062-NA,,,,,, +80611,Cj1,EA062,Most adults,EA062-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +80612,Cj10,EA062,?,EA062-NA,,,,,, +80613,Cj2,EA062,Most adults,EA062-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +80614,Cj3,EA062,Craft,EA062-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +80615,Cj4,EA062,Craft,EA062-3,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +80616,Cj5,EA062,Most adults,EA062-9,,dickson1949,,1930,EthnographicAtlas_1967_p88, +80617,Cj6,EA062,?,EA062-NA,,,,,, +80618,Cj7,EA062,?,EA062-NA,,,,,, +80619,Cj8,EA062,Most adults,EA062-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +80620,Cj9,EA062,?,EA062-NA,,,,,, +80621,Ea1,EA062,Craft,EA062-3,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +80622,Ea10,EA062,?,EA062-NA,,,,,, +80623,Ea11,EA062,Activity is absent,EA062-10,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +80624,Ea12,EA062,Most adults,EA062-9,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +80625,Ea13,EA062,Craft,EA062-3,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +80626,Ea2,EA062,Activity is absent,EA062-10,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +80627,Ea3,EA062,Activity is absent,EA062-10,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +80628,Ea4,EA062,Most adults,EA062-9,,barth1956b,,1950,EthnographicAtlas_1967_p88, +80629,Ea5,EA062,Most adults,EA062-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +80630,Ea6,EA062,Most adults,EA062-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +80631,Ea7,EA062,Activity is absent,EA062-10,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +80632,Ea8,EA062,Most adults,EA062-9,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +80633,Ea9,EA062,Activity is absent,EA062-10,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +80634,Eb1,EA062,Most adults,EA062-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +80635,Eb2,EA062,Most adults,EA062-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +80636,Eb3,EA062,Most adults,EA062-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +80637,Eb4,EA062,?,EA062-NA,,,,,, +80638,Eb5,EA062,?,EA062-NA,,,,,, +80639,Eb6,EA062,?,EA062-NA,,,,,, +80640,Eb7,EA062,Most adults,EA062-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +80641,Eb8,EA062,?,EA062-NA,,,,,, +80642,Ec1,EA062,Most adults,EA062-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +80643,Ec10,EA062,Most adults,EA062-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +80644,Ec11,EA062,Most adults,EA062-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +80645,Ec2,EA062,Most adults,EA062-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80646,Ec3,EA062,Most adults,EA062-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +80647,Ec4,EA062,Most adults,EA062-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +80648,Ec5,EA062,Most adults,EA062-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +80649,Ec6,EA062,Most adults,EA062-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p88, +80650,Ec7,EA062,Most adults,EA062-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +80651,Ec8,EA062,Most adults,EA062-9,,shimkin1939,,1900,EthnographicAtlas_1967_p88, +80652,Ec9,EA062,Most adults,EA062-9,,lattimore1933,,1920,EthnographicAtlas_1967_p88, +80653,Ed1,EA062,Most adults,EA062-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +80654,Ed10,EA062,Activity is absent,EA062-10,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +80655,Ed13,EA062,?,EA062-NA,,,,,, +80656,Ed14,EA062,?,EA062-NA,,,,,, +80657,Ed15a,EA062,?,EA062-NA,,,,,, +80658,Ed15b,EA062,Activity is absent,EA062-10,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +80659,Ed16,EA062,?,EA062-NA,,,,,, +80660,Ed2,EA062,Most adults,EA062-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +80661,Ed3,EA062,Activity is absent,EA062-10,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +80662,Ed4,EA062,Most adults,EA062-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +80663,Ed5,EA062,Activity is absent,EA062-10,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80664,Ed6,EA062,Activity is absent,EA062-10,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +80665,Ed7,EA062,Activity is absent,EA062-10,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +80666,Ed8,EA062,Activity is absent,EA062-10,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +80667,Ed9,EA062,Activity is absent,EA062-10,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +80668,Ee1,EA062,Most adults,EA062-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +80669,Ee2,EA062,Activity is absent,EA062-10,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +80670,Ee3,EA062,Most adults,EA062-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +80671,Ee4,EA062,Most adults,EA062-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +80672,Ee5,EA062,Most adults,EA062-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +80673,Ee6,EA062,?,EA062-NA,,,,,, +80674,Ee7,EA062,?,EA062-NA,,,,,, +80675,Ee8,EA062,?,EA062-NA,,,,,, +80676,Ef1,EA062,Most adults,EA062-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +80677,Ef10,EA062,?,EA062-NA,,,,,, +80678,Ef11,EA062,Activity is absent,EA062-10,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +80679,Ef2,EA062,Most adults,EA062-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +80680,Ef3,EA062,?,EA062-NA,,,,,, +80681,Ef4,EA062,?,EA062-NA,,,,,, +80682,Ef5,EA062,Most adults,EA062-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +80683,Ef6,EA062,Most adults,EA062-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +80684,Ef7,EA062,Activity is absent,EA062-10,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +80685,Ef8,EA062,Most adults,EA062-9,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +80686,Ef9,EA062,Activity is absent,EA062-10,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80687,Eg1,EA062,Most adults,EA062-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80688,Eg10,EA062,Craft,EA062-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +80689,Eg11,EA062,?,EA062-NA,,,,,, +80690,Eg12,EA062,?,EA062-NA,,,,,, +80691,Eg13,EA062,Most adults,EA062-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80692,Eg14,EA062,Most adults,EA062-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +80693,Eg2,EA062,Activity is absent,EA062-10,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +80694,Eg3,EA062,Most adults,EA062-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +80695,Eg4,EA062,Activity is absent,EA062-10,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +80696,Eg5,EA062,Most adults,EA062-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +80697,Eg6,EA062,Most adults,EA062-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +80698,Eg7,EA062,Most adults,EA062-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +80699,Eg8,EA062,Activity is absent,EA062-10,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +80700,Eg9,EA062,Most adults,EA062-9,,elwin1939,,1930,EthnographicAtlas_1967_p92, +80701,Eh1,EA062,Most adults,EA062-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +80702,Eh10,EA062,?,EA062-NA,,,,,, +80703,Eh2,EA062,Most adults,EA062-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +80704,Eh3,EA062,Most adults,EA062-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +80705,Eh4,EA062,Most adults,EA062-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80706,Eh5,EA062,Most adults,EA062-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +80707,Eh6,EA062,?,EA062-NA,,,,,, +80708,Eh7,EA062,Most adults,EA062-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +80709,Eh8,EA062,Most adults,EA062-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +80710,Eh9,EA062,Most adults,EA062-9,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +80711,Ei1,EA062,Most adults,EA062-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80712,Ei10,EA062,Most adults,EA062-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +80713,Ei11,EA062,Most adults,EA062-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +80714,Ei12,EA062,?,EA062-NA,,,,,, +80715,Ei13,EA062,Most adults,EA062-9,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +80716,Ei14,EA062,Most adults,EA062-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +80717,Ei15,EA062,?,EA062-NA,,,,,, +80718,Ei16,EA062,Most adults,EA062-9,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +80719,Ei17,EA062,?,EA062-NA,,,,,, +80720,Ei18,EA062,Activity is absent,EA062-10,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +80721,Ei19,EA062,Most adults,EA062-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +80722,Ei2,EA062,Most adults,EA062-9,,mills1922,,1920,EthnographicAtlas_1967_p92, +80723,Ei20,EA062,?,EA062-NA,,,,,, +80724,Ei3,EA062,Craft,EA062-3,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +80725,Ei4,EA062,Most adults,EA062-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +80726,Ei5,EA062,Most adults,EA062-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +80727,Ei6,EA062,Most adults,EA062-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +80728,Ei7,EA062,Most adults,EA062-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +80729,Ei8,EA062,Most adults,EA062-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +80730,Ei9,EA062,Most adults,EA062-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +80731,Ej1,EA062,Most adults,EA062-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +80732,Ej10,EA062,Most adults,EA062-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +80733,Ej11,EA062,Activity is absent,EA062-10,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p92, +80734,Ej12,EA062,Most adults,EA062-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +80735,Ej13,EA062,Most adults,EA062-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +80736,Ej14,EA062,Most adults,EA062-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80737,Ej15,EA062,Most adults,EA062-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +80738,Ej16,EA062,Activity is absent,EA062-10,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +80739,Ej2,EA062,Most adults,EA062-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +80740,Ej3,EA062,Most adults,EA062-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +80741,Ej4,EA062,?,EA062-NA,,,,,, +80742,Ej5,EA062,?,EA062-NA,,,,,, +80743,Ej6,EA062,Most adults,EA062-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +80744,Ej7,EA062,Most adults,EA062-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +80745,Ej8,EA062,Most adults,EA062-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +80746,Ej9,EA062,Most adults,EA062-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +80747,Ia1,EA062,Most adults,EA062-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +80748,Ia10,EA062,Most adults,EA062-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +80749,Ia11,EA062,Most adults,EA062-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +80750,Ia12,EA062,Most adults,EA062-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +80751,Ia13,EA062,Activity is absent,EA062-10,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +80752,Ia14,EA062,Most adults,EA062-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +80753,Ia15,EA062,?,EA062-NA,,,,,, +80754,Ia16,EA062,Most adults,EA062-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +80755,Ia17,EA062,?,EA062-NA,,,,,, +80756,Ia18,EA062,?,EA062-NA,,,,,, +80757,Ia2,EA062,Most adults,EA062-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +80758,Ia3,EA062,?,EA062-NA,,,,,, +80759,Ia4,EA062,Most adults,EA062-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p92, +80760,Ia5,EA062,Most adults,EA062-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +80761,Ia6,EA062,Most adults,EA062-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80762,Ia7,EA062,Most adults,EA062-9,,fox1954,,1950,EthnographicAtlas_1967_p92, +80763,Ia8,EA062,?,EA062-NA,,,,,, +80764,Ia9,EA062,Most adults,EA062-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +80765,Ib1,EA062,Most adults,EA062-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80766,Ib2,EA062,Activity is absent,EA062-10,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80767,Ib3,EA062,Activity is absent,EA062-10,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +80768,Ib4,EA062,Most adults,EA062-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +80769,Ib5,EA062,Most adults,EA062-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +80770,Ib6,EA062,?,EA062-NA,,,,,, +80771,Ib7,EA062,Most adults,EA062-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +80772,Ib8,EA062,Most adults,EA062-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +80773,Ib9,EA062,?,EA062-NA,,,,,, +80774,Ic1,EA062,Activity is absent,EA062-10,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80775,Ic10,EA062,Most adults,EA062-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +80776,Ic11,EA062,?,EA062-NA,,,,,, +80777,Ic12,EA062,Most adults,EA062-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +80778,Ic13,EA062,?,EA062-NA,,,,,, +80779,Ic2,EA062,Most adults,EA062-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +80780,Ic3,EA062,Most adults,EA062-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +80781,Ic4,EA062,?,EA062-NA,,,,,, +80782,Ic5,EA062,Most adults,EA062-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +80783,Ic6,EA062,Most adults,EA062-9,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +80784,Ic7,EA062,?,EA062-NA,,,,,, +80785,Ic8,EA062,Most adults,EA062-9,,pleyte1893,,1890,EthnographicAtlas_1967_p96, +80786,Ic9,EA062,Most adults,EA062-9,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p96, +80787,Id1,EA062,Most adults,EA062-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +80788,Id10,EA062,Most adults,EA062-9,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +80789,Id11,EA062,Most adults,EA062-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +80790,Id12,EA062,Most adults,EA062-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +80791,Id13,EA062,Most adults,EA062-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +80792,Id2,EA062,Most adults,EA062-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +80793,Id3,EA062,Most adults,EA062-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +80794,Id4,EA062,Most adults,EA062-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +80795,Id5,EA062,Most adults,EA062-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +80796,Id6,EA062,Most adults,EA062-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +80797,Id7,EA062,Most adults,EA062-9,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +80798,Id8,EA062,Most adults,EA062-9,,roth1890,,1830,EthnographicAtlas_1967_p96, +80799,Id9,EA062,Most adults,EA062-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +80800,Ie1,EA062,Most adults,EA062-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80801,Ie10,EA062,Most adults,EA062-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +80802,Ie11,EA062,Most adults,EA062-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +80803,Ie12,EA062,Most adults,EA062-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80804,Ie13,EA062,Most adults,EA062-9,,landtman1927,,1920,EthnographicAtlas_1967_p96, +80805,Ie14,EA062,Most adults,EA062-9,,haddon1908,,1900,EthnographicAtlas_1967_p96, +80806,Ie15,EA062,Most adults,EA062-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80807,Ie16,EA062,Most adults,EA062-9,,williams194041,,1940,EthnographicAtlas_1967_p96, +80808,Ie17,EA062,Most adults,EA062-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +80809,Ie18,EA062,Most adults,EA062-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +80810,Ie19,EA062,Most adults,EA062-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +80811,Ie2,EA062,Most adults,EA062-9,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +80812,Ie20,EA062,Most adults,EA062-9,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +80813,Ie21,EA062,Most adults,EA062-9,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +80814,Ie22,EA062,?,EA062-NA,,,,,, +80815,Ie23,EA062,Most adults,EA062-9,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +80816,Ie24,EA062,Most adults,EA062-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +80817,Ie25,EA062,Most adults,EA062-9,,williamson1912,,1920,EthnographicAtlas_1967_p96, +80818,Ie26,EA062,Most adults,EA062-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +80819,Ie27,EA062,Most adults,EA062-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +80820,Ie28,EA062,Most adults,EA062-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +80821,Ie29,EA062,Most adults,EA062-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80822,Ie3,EA062,Most adults,EA062-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80823,Ie30,EA062,Most adults,EA062-9,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +80824,Ie31,EA062,Most adults,EA062-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +80825,Ie32,EA062,Most adults,EA062-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +80826,Ie33,EA062,Most adults,EA062-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +80827,Ie34,EA062,?,EA062-NA,,,,,, +80828,Ie35,EA062,Most adults,EA062-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +80829,Ie36,EA062,?,EA062-NA,,,,,, +80830,Ie37,EA062,?,EA062-NA,,,,,, +80831,Ie38,EA062,Activity is absent,EA062-10,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +80832,Ie39,EA062,Most adults,EA062-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +80833,Ie4,EA062,Activity is absent,EA062-10,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80834,Ie5,EA062,Most adults,EA062-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +80835,Ie6,EA062,Most adults,EA062-9,,held1947,,1930,EthnographicAtlas_1967_p96, +80836,Ie7,EA062,Most adults,EA062-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +80837,Ie8,EA062,Most adults,EA062-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +80838,Ie9,EA062,Most adults,EA062-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +80839,If1,EA062,Activity is absent,EA062-10,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80840,If10,EA062,?,EA062-NA,,,,,, +80841,If11,EA062,Activity is absent,EA062-10,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +80842,If12,EA062,Activity is absent,EA062-10,,mason1954,,1940,EthnographicAtlas_1967_p100, +80843,If13,EA062,Most adults,EA062-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +80844,If14,EA062,Junior age,EA062-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +80845,If15,EA062,Activity is absent,EA062-10,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +80846,If16,EA062,Activity is absent,EA062-10,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +80847,If17,EA062,Most adults,EA062-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +80848,If2,EA062,Activity is absent,EA062-10,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +80849,If3,EA062,Activity is absent,EA062-10,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +80850,If4,EA062,Activity is absent,EA062-10,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +80851,If5,EA062,Activity is absent,EA062-10,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +80852,If6,EA062,Activity is absent,EA062-10,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +80853,If7,EA062,Activity is absent,EA062-10,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +80854,If8,EA062,Activity is absent,EA062-10,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +80855,If9,EA062,?,EA062-NA,,,,,, +80856,Ig1,EA062,Most adults,EA062-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +80857,Ig10,EA062,Most adults,EA062-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +80858,Ig11,EA062,Most adults,EA062-9,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +80859,Ig12,EA062,Most adults,EA062-9,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p100, +80860,Ig13,EA062,Most adults,EA062-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +80861,Ig14,EA062,Most adults,EA062-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +80862,Ig15,EA062,?,EA062-NA,,,,,, +80863,Ig16,EA062,?,EA062-NA,,,,,, +80864,Ig17,EA062,?,EA062-NA,,,,,, +80865,Ig18,EA062,?,EA062-NA,,,,,, +80866,Ig19,EA062,?,EA062-NA,,,,,, +80867,Ig2,EA062,Most adults,EA062-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +80868,Ig20,EA062,Most adults,EA062-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +80869,Ig21,EA062,Most adults,EA062-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +80870,Ig3,EA062,Most adults,EA062-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +80871,Ig4,EA062,Most adults,EA062-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +80872,Ig5,EA062,Most adults,EA062-9,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +80873,Ig6,EA062,Most adults,EA062-9,,ivens1927,,1900,EthnographicAtlas_1967_p100, +80874,Ig7,EA062,Most adults,EA062-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +80875,Ig8,EA062,?,EA062-NA,,,,,, +80876,Ig9,EA062,Activity is absent,EA062-10,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +80877,Ih1,EA062,Activity is absent,EA062-10,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +80878,Ih10,EA062,Most adults,EA062-9,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80879,Ih11,EA062,?,EA062-NA,,,,,, +80880,Ih12,EA062,?,EA062-NA,,,,,, +80881,Ih13,EA062,?,EA062-NA,,,,,, +80882,Ih14,EA062,Most adults,EA062-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +80883,Ih2,EA062,Most adults,EA062-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80884,Ih3,EA062,?,EA062-NA,,,,,, +80885,Ih4,EA062,Most adults,EA062-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80886,Ih5,EA062,?,EA062-NA,,,,,, +80887,Ih6,EA062,Activity is absent,EA062-10,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +80888,Ih7,EA062,Activity is absent,EA062-10,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +80889,Ih8,EA062,Most adults,EA062-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +80890,Ih9,EA062,Most adults,EA062-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80891,Ii1,EA062,Activity is absent,EA062-10,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +80892,Ii10,EA062,?,EA062-NA,,,,,, +80893,Ii12,EA062,?,EA062-NA,,,,,, +80894,Ii13,EA062,Activity is absent,EA062-10,,burrows1937,,1830,EthnographicAtlas_1967_p100, +80895,Ii14,EA062,Activity is absent,EA062-10,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +80896,Ii2,EA062,Activity is absent,EA062-10,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +80897,Ii3,EA062,Activity is absent,EA062-10,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +80898,Ii4,EA062,Activity is absent,EA062-10,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +80899,Ii5,EA062,Activity is absent,EA062-10,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +80900,Ii6,EA062,Activity is absent,EA062-10,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +80901,Ii7,EA062,Most adults,EA062-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +80902,Ii8,EA062,?,EA062-NA,,,,,, +80903,Ii9,EA062,Activity is absent,EA062-10,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +80904,Ij1,EA062,Activity is absent,EA062-10,,buck1934,,1820,EthnographicAtlas_1967_p100, +80905,Ij10,EA062,?,EA062-NA,,,,,, +80906,Ij2,EA062,Most adults,EA062-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +80907,Ij3,EA062,Most adults,EA062-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +80908,Ij4,EA062,Activity is absent,EA062-10,,buck1932a,,1850,EthnographicAtlas_1967_p104, +80909,Ij5,EA062,Activity is absent,EA062-10,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +80910,Ij6,EA062,Activity is absent,EA062-10,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +80911,Ij7,EA062,Activity is absent,EA062-10,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +80912,Ij8,EA062,Activity is absent,EA062-10,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +80913,Ij9,EA062,?,EA062-NA,,,,,, +80914,Na1,EA062,Most adults,EA062-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +80915,Na10,EA062,Most adults,EA062-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +80916,Na11,EA062,Most adults,EA062-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +80917,Na12,EA062,Most adults,EA062-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +80918,Na13,EA062,Most adults,EA062-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +80919,Na14,EA062,Most adults,EA062-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +80920,Na15,EA062,Most adults,EA062-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +80921,Na16,EA062,Most adults,EA062-9,,osgood1931,,1860,EthnographicAtlas_1967_p104, +80922,Na17,EA062,Most adults,EA062-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80923,Na19,EA062,Most adults,EA062-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +80924,Na2,EA062,Most adults,EA062-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +80925,Na20,EA062,Most adults,EA062-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +80926,Na21,EA062,Most adults,EA062-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +80927,Na22,EA062,Most adults,EA062-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +80928,Na23,EA062,Most adults,EA062-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +80929,Na24,EA062,Most adults,EA062-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +80930,Na25,EA062,Most adults,EA062-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +80931,Na26,EA062,Most adults,EA062-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +80932,Na27,EA062,Most adults,EA062-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +80933,Na28,EA062,Most adults,EA062-9,,jenness1937,,1880,EthnographicAtlas_1967_p104, +80934,Na29,EA062,Most adults,EA062-9,,goddard1916,,1850,EthnographicAtlas_1967_p104, +80935,Na3,EA062,Most adults,EA062-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +80936,Na30,EA062,Most adults,EA062-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +80937,Na31,EA062,Most adults,EA062-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +80938,Na32,EA062,Most adults,EA062-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +80939,Na33,EA062,Most adults,EA062-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +80940,Na34,EA062,Most adults,EA062-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +80941,Na35,EA062,Most adults,EA062-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +80942,Na36,EA062,Most adults,EA062-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +80943,Na37,EA062,Most adults,EA062-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +80944,Na38,EA062,Most adults,EA062-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +80945,Na39,EA062,Most adults,EA062-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +80946,Na4,EA062,Most adults,EA062-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +80947,Na40,EA062,Most adults,EA062-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +80948,Na41,EA062,Most adults,EA062-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +80949,Na42,EA062,Most adults,EA062-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +80950,Na43,EA062,Most adults,EA062-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +80951,Na44,EA062,?,EA062-NA,,,,,, +80952,Na45,EA062,Most adults,EA062-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +80953,Na5,EA062,Most adults,EA062-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +80954,Na6,EA062,Most adults,EA062-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +80955,Na7,EA062,Most adults,EA062-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +80956,Na8,EA062,Most adults,EA062-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +80957,Na9,EA062,Most adults,EA062-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +80958,Nb1,EA062,Most adults,EA062-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +80959,Nb10,EA062,Most adults,EA062-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +80960,Nb11,EA062,Most adults,EA062-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +80961,Nb12,EA062,Most adults,EA062-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +80962,Nb13,EA062,Most adults,EA062-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +80963,Nb14,EA062,Most adults,EA062-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +80964,Nb15,EA062,Most adults,EA062-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +80965,Nb16,EA062,Most adults,EA062-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +80966,Nb17,EA062,Most adults,EA062-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +80967,Nb18,EA062,Most adults,EA062-9,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +80968,Nb19,EA062,Most adults,EA062-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +80969,Nb2,EA062,Most adults,EA062-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +80970,Nb20,EA062,Most adults,EA062-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +80971,Nb21,EA062,Most adults,EA062-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +80972,Nb22,EA062,Most adults,EA062-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +80973,Nb23,EA062,Most adults,EA062-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +80974,Nb24,EA062,Most adults,EA062-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +80975,Nb25,EA062,Most adults,EA062-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +80976,Nb26,EA062,Most adults,EA062-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +80977,Nb27,EA062,Most adults,EA062-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +80978,Nb28,EA062,Most adults,EA062-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +80979,Nb29,EA062,?,EA062-NA,,,,,, +80980,Nb3,EA062,Most adults,EA062-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +80981,Nb30,EA062,Most adults,EA062-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +80982,Nb31,EA062,Most adults,EA062-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +80983,Nb32,EA062,Most adults,EA062-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +80984,Nb33,EA062,Most adults,EA062-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +80985,Nb34,EA062,Most adults,EA062-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +80986,Nb35,EA062,Most adults,EA062-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +80987,Nb36,EA062,Most adults,EA062-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +80988,Nb37,EA062,Most adults,EA062-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +80989,Nb38,EA062,Most adults,EA062-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +80990,Nb39,EA062,Most adults,EA062-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +80991,Nb4,EA062,Most adults,EA062-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +80992,Nb5,EA062,Most adults,EA062-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +80993,Nb6,EA062,Most adults,EA062-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +80994,Nb7,EA062,Most adults,EA062-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +80995,Nb8,EA062,Most adults,EA062-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +80996,Nb9,EA062,Most adults,EA062-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +80997,Nc1,EA062,Most adults,EA062-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +80998,Nc10,EA062,Most adults,EA062-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +80999,Nc11,EA062,Most adults,EA062-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +81000,Nc12,EA062,Most adults,EA062-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +81001,Nc13,EA062,Most adults,EA062-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +81002,Nc14,EA062,Most adults,EA062-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +81003,Nc15,EA062,Most adults,EA062-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +81004,Nc16,EA062,Most adults,EA062-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +81005,Nc17,EA062,Most adults,EA062-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +81006,Nc18,EA062,Most adults,EA062-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +81007,Nc19,EA062,Most adults,EA062-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +81008,Nc2,EA062,Most adults,EA062-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +81009,Nc20,EA062,Most adults,EA062-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +81010,Nc21,EA062,Most adults,EA062-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +81011,Nc22,EA062,Most adults,EA062-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +81012,Nc23,EA062,Most adults,EA062-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +81013,Nc24,EA062,Most adults,EA062-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +81014,Nc25,EA062,Most adults,EA062-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +81015,Nc26,EA062,Most adults,EA062-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +81016,Nc27,EA062,Most adults,EA062-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +81017,Nc28,EA062,Most adults,EA062-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +81018,Nc29,EA062,Most adults,EA062-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +81019,Nc3,EA062,Most adults,EA062-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +81020,Nc30,EA062,Most adults,EA062-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +81021,Nc31,EA062,Most adults,EA062-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +81022,Nc32,EA062,Most adults,EA062-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +81023,Nc33,EA062,Most adults,EA062-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +81024,Nc34,EA062,Most adults,EA062-9,,meigs1939,,1880,EthnographicAtlas_1967_p108, +81025,Nc4,EA062,Most adults,EA062-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +81026,Nc5,EA062,Most adults,EA062-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +81027,Nc6,EA062,Most adults,EA062-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +81028,Nc7,EA062,Most adults,EA062-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +81029,Nc8,EA062,Most adults,EA062-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +81030,Nc9,EA062,Most adults,EA062-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +81031,Nd1,EA062,Most adults,EA062-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +81032,Nd10,EA062,Most adults,EA062-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +81033,Nd11,EA062,Most adults,EA062-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +81034,Nd12,EA062,Most adults,EA062-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +81035,Nd13,EA062,Most adults,EA062-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +81036,Nd14,EA062,Most adults,EA062-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +81037,Nd15,EA062,Most adults,EA062-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +81038,Nd16,EA062,Most adults,EA062-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +81039,Nd17,EA062,Most adults,EA062-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +81040,Nd18,EA062,Most adults,EA062-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +81041,Nd19,EA062,Most adults,EA062-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +81042,Nd2,EA062,Most adults,EA062-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +81043,Nd20,EA062,Most adults,EA062-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +81044,Nd21,EA062,Most adults,EA062-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +81045,Nd22,EA062,Most adults,EA062-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +81046,Nd23,EA062,Most adults,EA062-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +81047,Nd24,EA062,Most adults,EA062-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +81048,Nd25,EA062,Most adults,EA062-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +81049,Nd26,EA062,Most adults,EA062-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +81050,Nd27,EA062,Most adults,EA062-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +81051,Nd28,EA062,Most adults,EA062-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +81052,Nd29,EA062,Most adults,EA062-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +81053,Nd3,EA062,Most adults,EA062-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +81054,Nd30,EA062,Most adults,EA062-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +81055,Nd31,EA062,Most adults,EA062-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +81056,Nd32,EA062,Most adults,EA062-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +81057,Nd33,EA062,Most adults,EA062-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +81058,Nd34,EA062,Most adults,EA062-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +81059,Nd35,EA062,Most adults,EA062-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +81060,Nd36,EA062,Most adults,EA062-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +81061,Nd37,EA062,Most adults,EA062-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +81062,Nd38,EA062,Most adults,EA062-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +81063,Nd39,EA062,Most adults,EA062-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +81064,Nd4,EA062,Most adults,EA062-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +81065,Nd40,EA062,Most adults,EA062-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +81066,Nd41,EA062,Most adults,EA062-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +81067,Nd42,EA062,Most adults,EA062-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +81068,Nd43,EA062,Most adults,EA062-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +81069,Nd44,EA062,Most adults,EA062-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +81070,Nd45,EA062,Most adults,EA062-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +81071,Nd46,EA062,Most adults,EA062-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +81072,Nd47,EA062,Most adults,EA062-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +81073,Nd48,EA062,Most adults,EA062-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +81074,Nd49,EA062,Most adults,EA062-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +81075,Nd5,EA062,Most adults,EA062-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +81076,Nd50,EA062,Most adults,EA062-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +81077,Nd51,EA062,Most adults,EA062-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +81078,Nd52,EA062,Most adults,EA062-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +81079,Nd53,EA062,Most adults,EA062-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +81080,Nd54,EA062,Most adults,EA062-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81081,Nd55,EA062,Most adults,EA062-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +81082,Nd56,EA062,Most adults,EA062-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +81083,Nd57,EA062,Most adults,EA062-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +81084,Nd58,EA062,Most adults,EA062-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +81085,Nd59,EA062,Most adults,EA062-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +81086,Nd6,EA062,Most adults,EA062-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +81087,Nd60,EA062,Most adults,EA062-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +81088,Nd61,EA062,Most adults,EA062-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +81089,Nd62,EA062,Most adults,EA062-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +81090,Nd63,EA062,Most adults,EA062-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +81091,Nd64,EA062,Most adults,EA062-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +81092,Nd65,EA062,Most adults,EA062-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +81093,Nd66,EA062,Most adults,EA062-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +81094,Nd67,EA062,Most adults,EA062-9,,gifford1936,,1870,EthnographicAtlas_1967_p112, +81095,Nd7,EA062,Most adults,EA062-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +81096,Nd8,EA062,Most adults,EA062-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +81097,Nd9,EA062,Most adults,EA062-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +81098,Ne1,EA062,Most adults,EA062-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +81099,Ne10,EA062,Most adults,EA062-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +81100,Ne11,EA062,Most adults,EA062-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +81101,Ne12,EA062,Most adults,EA062-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +81102,Ne13,EA062,Most adults,EA062-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +81103,Ne14,EA062,Most adults,EA062-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +81104,Ne15,EA062,Most adults,EA062-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +81105,Ne16,EA062,Most adults,EA062-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +81106,Ne17,EA062,Most adults,EA062-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +81107,Ne18,EA062,Most adults,EA062-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +81108,Ne19,EA062,Most adults,EA062-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +81109,Ne2,EA062,Most adults,EA062-9,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +81110,Ne20,EA062,Most adults,EA062-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +81111,Ne21,EA062,?,EA062-NA,,,,,, +81112,Ne3,EA062,Most adults,EA062-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +81113,Ne4,EA062,Most adults,EA062-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +81114,Ne5,EA062,Most adults,EA062-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +81115,Ne6,EA062,Most adults,EA062-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +81116,Ne7,EA062,Most adults,EA062-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +81117,Ne8,EA062,Most adults,EA062-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +81118,Ne9,EA062,Most adults,EA062-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +81119,Nf10,EA062,Most adults,EA062-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +81120,Nf11,EA062,Most adults,EA062-9,,whitman1937,,1870,EthnographicAtlas_1967_p116, +81121,Nf12,EA062,Most adults,EA062-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +81122,Nf13,EA062,Most adults,EA062-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81123,Nf14,EA062,Most adults,EA062-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +81124,Nf15,EA062,?,EA062-NA,,,,,, +81125,Nf2,EA062,Most adults,EA062-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +81126,Nf3,EA062,Most adults,EA062-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +81127,Nf4,EA062,Most adults,EA062-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +81128,Nf5,EA062,Most adults,EA062-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +81129,Nf6,EA062,Most adults,EA062-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +81130,Nf7,EA062,Most adults,EA062-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81131,Nf8,EA062,Most adults,EA062-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +81132,Nf9,EA062,Most adults,EA062-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +81133,Ng1,EA062,Most adults,EA062-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +81134,Ng10,EA062,Most adults,EA062-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +81135,Ng11,EA062,Most adults,EA062-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +81136,Ng12,EA062,Most adults,EA062-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +81137,Ng13,EA062,?,EA062-NA,,,,,, +81138,Ng14,EA062,?,EA062-NA,,,,,, +81139,Ng15,EA062,?,EA062-NA,,,,,, +81140,Ng2,EA062,?,EA062-NA,,,,,, +81141,Ng3,EA062,Most adults,EA062-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +81142,Ng4,EA062,?,EA062-NA,,,,,, +81143,Ng5,EA062,Most adults,EA062-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +81144,Ng6,EA062,Most adults,EA062-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +81145,Ng7,EA062,Most adults,EA062-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +81146,Ng8,EA062,Most adults,EA062-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +81147,Ng9,EA062,?,EA062-NA,,,,,, +81148,Nh1,EA062,Most adults,EA062-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +81149,Nh10,EA062,Most adults,EA062-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p116, +81150,Nh11,EA062,Most adults,EA062-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +81151,Nh12,EA062,Most adults,EA062-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +81152,Nh13,EA062,Most adults,EA062-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +81153,Nh14,EA062,?,EA062-NA,,,,,, +81154,Nh15,EA062,Most adults,EA062-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +81155,Nh16,EA062,Most adults,EA062-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81156,Nh17,EA062,Most adults,EA062-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +81157,Nh18,EA062,Most adults,EA062-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81158,Nh19,EA062,Most adults,EA062-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +81159,Nh2,EA062,Most adults,EA062-9,,dozier1954,,1950,EthnographicAtlas_1967_p116, +81160,Nh20,EA062,Most adults,EA062-9,,gifford1931,,1860,EthnographicAtlas_1967_p116, +81161,Nh21,EA062,Most adults,EA062-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81162,Nh22,EA062,Most adults,EA062-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +81163,Nh23,EA062,Most adults,EA062-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +81164,Nh24,EA062,Most adults,EA062-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +81165,Nh25,EA062,Most adults,EA062-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +81166,Nh26,EA062,?,EA062-NA,,,,,, +81167,Nh27,EA062,?,EA062-NA,,,,,, +81168,Nh3,EA062,Most adults,EA062-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +81169,Nh4,EA062,Most adults,EA062-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +81170,Nh5,EA062,Most adults,EA062-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +81171,Nh6,EA062,Most adults,EA062-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +81172,Nh7,EA062,Most adults,EA062-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +81173,Nh8,EA062,Most adults,EA062-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +81174,Nh9,EA062,Most adults,EA062-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p116, +81175,Ni1,EA062,Most adults,EA062-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +81176,Ni2,EA062,Most adults,EA062-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +81177,Ni3,EA062,Most adults,EA062-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +81178,Ni4,EA062,Most adults,EA062-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +81179,Ni5,EA062,Most adults,EA062-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +81180,Ni6,EA062,Most adults,EA062-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +81181,Ni7,EA062,Most adults,EA062-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +81182,Ni8,EA062,?,EA062-NA,,,,,, +81183,Ni9,EA062,?,EA062-NA,,,,,, +81184,Nj1,EA062,Most adults,EA062-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81185,Nj10,EA062,Most adults,EA062-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81186,Nj11,EA062,?,EA062-NA,,,,,, +81187,Nj12,EA062,?,EA062-NA,,,,,, +81188,Nj13,EA062,?,EA062-NA,,,,,, +81189,Nj14,EA062,?,EA062-NA,,,,,, +81190,Nj2,EA062,Most adults,EA062-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +81191,Nj3,EA062,Most adults,EA062-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +81192,Nj4,EA062,Most adults,EA062-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +81193,Nj5,EA062,?,EA062-NA,,,,,, +81194,Nj6,EA062,?,EA062-NA,,,,,, +81195,Nj7,EA062,Most adults,EA062-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81196,Nj8,EA062,Most adults,EA062-9,,foster1948,,1500,EthnographicAtlas_1967_p120, +81197,Nj9,EA062,Activity is absent,EA062-10,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +81198,Sa1,EA062,Most adults,EA062-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +81199,Sa10,EA062,Most adults,EA062-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +81200,Sa11,EA062,?,EA062-NA,,,,,, +81201,Sa12,EA062,Most adults,EA062-9,,stone1948,,1948,EthnographicAtlas_1967_p120, +81202,Sa13,EA062,Most adults,EA062-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +81203,Sa14,EA062,?,EA062-NA,,,,,, +81204,Sa15,EA062,?,EA062-NA,,,,,, +81205,Sa16,EA062,?,EA062-NA,,,,,, +81206,Sa17,EA062,?,EA062-NA,,,,,, +81207,Sa2,EA062,?,EA062-NA,,,,,, +81208,Sa3,EA062,Most adults,EA062-9,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +81209,Sa4,EA062,Most adults,EA062-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +81210,Sa5,EA062,Most adults,EA062-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +81211,Sa6,EA062,Most adults,EA062-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +81212,Sa7,EA062,Most adults,EA062-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +81213,Sa8,EA062,?,EA062-NA,,,,,, +81214,Sa9,EA062,Most adults,EA062-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +81215,Sb1,EA062,Most adults,EA062-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +81216,Sb2,EA062,Most adults,EA062-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +81217,Sb3,EA062,?,EA062-NA,,,,,, +81218,Sb4,EA062,Most adults,EA062-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +81219,Sb5,EA062,?,EA062-NA,,,,,, +81220,Sb6,EA062,Most adults,EA062-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +81221,Sb7,EA062,Most adults,EA062-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +81222,Sb8,EA062,Most adults,EA062-9,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +81223,Sb9,EA062,Activity is absent,EA062-10,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +81224,Sc1,EA062,Most adults,EA062-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +81225,Sc10,EA062,Most adults,EA062-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +81226,Sc11,EA062,Most adults,EA062-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +81227,Sc12,EA062,Most adults,EA062-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +81228,Sc13,EA062,Most adults,EA062-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +81229,Sc14,EA062,Most adults,EA062-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +81230,Sc15,EA062,Most adults,EA062-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +81231,Sc16,EA062,Most adults,EA062-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +81232,Sc17,EA062,Most adults,EA062-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +81233,Sc18,EA062,Most adults,EA062-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +81234,Sc2,EA062,Most adults,EA062-9,,leedsnd,,1950,EthnographicAtlas_1967_p120, +81235,Sc3,EA062,Most adults,EA062-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +81236,Sc4,EA062,Most adults,EA062-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +81237,Sc5,EA062,Most adults,EA062-9,,farabee1918,,1900,EthnographicAtlas_1967_p120, +81238,Sc6,EA062,Most adults,EA062-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81239,Sc7,EA062,Most adults,EA062-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +81240,Sc8,EA062,Most adults,EA062-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +81241,Sc9,EA062,Most adults,EA062-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +81242,Sd1,EA062,Most adults,EA062-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81243,Sd2,EA062,Most adults,EA062-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +81244,Sd3,EA062,Most adults,EA062-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +81245,Sd4,EA062,Most adults,EA062-9,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +81246,Sd5,EA062,Most adults,EA062-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +81247,Sd6,EA062,Most adults,EA062-9,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +81248,Sd7,EA062,Most adults,EA062-9,,fock1963,,1950,EthnographicAtlas_1967_p120, +81249,Sd8,EA062,Most adults,EA062-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +81250,Sd9,EA062,Most adults,EA062-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81251,Se1,EA062,Most adults,EA062-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +81252,Se10,EA062,?,EA062-NA,,,,,, +81253,Se11,EA062,Most adults,EA062-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +81254,Se12,EA062,?,EA062-NA,,,,,, +81255,Se2,EA062,Most adults,EA062-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +81256,Se3,EA062,Most adults,EA062-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +81257,Se4,EA062,Most adults,EA062-9,,fejos1943,,1940,EthnographicAtlas_1967_p120, +81258,Se5,EA062,Most adults,EA062-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +81259,Se6,EA062,Most adults,EA062-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +81260,Se7,EA062,?,EA062-NA,,,,,, +81261,Se8,EA062,Most adults,EA062-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +81262,Se9,EA062,Most adults,EA062-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +81263,Sf1,EA062,Most adults,EA062-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +81264,Sf2,EA062,Most adults,EA062-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +81265,Sf3,EA062,Most adults,EA062-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +81266,Sf4,EA062,Most adults,EA062-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +81267,Sf5,EA062,Most adults,EA062-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +81268,Sf6,EA062,Most adults,EA062-9,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +81269,Sf7,EA062,Most adults,EA062-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +81270,Sf8,EA062,?,EA062-NA,,,,,, +81271,Sf9,EA062,?,EA062-NA,,,,,, +81272,Sg1,EA062,Most adults,EA062-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +81273,Sg2,EA062,Most adults,EA062-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81274,Sg3,EA062,Most adults,EA062-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +81275,Sg4,EA062,Most adults,EA062-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +81276,Sg5,EA062,Most adults,EA062-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81277,Sh1,EA062,Most adults,EA062-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +81278,Sh2,EA062,Most adults,EA062-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +81279,Sh3,EA062,Most adults,EA062-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +81280,Sh4,EA062,Most adults,EA062-9,,oberg1949,,1940,EthnographicAtlas_1967_p124, +81281,Sh5,EA062,Most adults,EA062-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +81282,Sh6,EA062,Most adults,EA062-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +81283,Sh7,EA062,Most adults,EA062-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +81284,Sh8,EA062,Most adults,EA062-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +81285,Sh9,EA062,Most adults,EA062-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +81286,Si1,EA062,Most adults,EA062-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81287,Si10,EA062,Most adults,EA062-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +81288,Si2,EA062,Most adults,EA062-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +81289,Si3,EA062,Most adults,EA062-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81290,Si4,EA062,Most adults,EA062-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +81291,Si5,EA062,Most adults,EA062-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +81292,Si6,EA062,Most adults,EA062-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +81293,Si7,EA062,Most adults,EA062-9,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p124, +81294,Si8,EA062,Most adults,EA062-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +81295,Si9,EA062,?,EA062-NA,,,,,, +81296,Sj1,EA062,Most adults,EA062-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +81297,Sj10,EA062,Most adults,EA062-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81298,Sj11,EA062,Most adults,EA062-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +81299,Sj2,EA062,Most adults,EA062-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +81300,Sj3,EA062,Most adults,EA062-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +81301,Sj4,EA062,Most adults,EA062-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +81302,Sj5,EA062,Most adults,EA062-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +81303,Sj6,EA062,Most adults,EA062-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81304,Sj7,EA062,Most adults,EA062-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +81305,Sj8,EA062,Most adults,EA062-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +81306,Sj9,EA062,Most adults,EA062-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +81307,ch12,EA062,Most adults,EA062-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +81308,ch13,EA062,Activity is absent,EA062-10,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +81309,ch14,EA062,Most adults,EA062-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +81310,ch15,EA062,Most adults,EA062-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +81311,ch16,EA062,Most adults,EA062-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +81312,ch17,EA062,Activity is absent,EA062-10,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +81313,ch18,EA062,Most adults,EA062-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +81314,ch19,EA062,Most adults,EA062-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +81315,ch20,EA062,Most adults,EA062-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +81316,ch21,EA062,Activity is absent,EA062-10,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +81317,ch22,EA062,Activity is absent,EA062-10,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +81318,ch23,EA062,Activity is absent,EA062-10,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +81319,ch24,EA062,Most adults,EA062-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +81320,ch25,EA062,Most adults,EA062-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +81321,ch26,EA062,Most adults,EA062-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +81322,ch27,EA062,Most adults,EA062-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +81323,ch28,EA062,Most adults,EA062-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +81324,ec12,EA062,Most adults,EA062-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +81325,ec13,EA062,Most adults,EA062-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +81326,ec14,EA062,Most adults,EA062-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +81327,ec15,EA062,Most adults,EA062-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +81328,ec16,EA062,Most adults,EA062-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +81329,ec17,EA062,Most adults,EA062-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +81330,ec18,EA062,Most adults,EA062-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +81331,ec19,EA062,Most adults,EA062-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +81332,ec20,EA062,Most adults,EA062-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +81333,ec21,EA062,Most adults,EA062-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +81334,Aa1,EA063,Activity is absent,EA063-10,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +81335,Aa2,EA063,Activity is absent,EA063-10,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +81336,Aa3,EA063,Most adults,EA063-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +81337,Aa4,EA063,?,EA063-NA,,,,,, +81338,Aa5,EA063,Activity is absent,EA063-10,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +81339,Aa6,EA063,Most adults,EA063-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p64, +81340,Aa7,EA063,Activity is absent,EA063-10,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +81341,Aa8,EA063,?,EA063-NA,,,,,, +81342,Aa9,EA063,Activity is absent,EA063-10,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +81343,Ab1,EA063,Activity is absent,EA063-10,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +81344,Ab10,EA063,Most adults,EA063-9,,hunter1936,,1936,EthnographicAtlas_1967_p64, +81345,Ab11,EA063,?,EA063-NA,,,,,, +81346,Ab12,EA063,Activity is absent,EA063-10,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +81347,Ab13,EA063,Activity is absent,EA063-10,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +81348,Ab14,EA063,Activity is absent,EA063-10,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +81349,Ab15,EA063,Activity is absent,EA063-10,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +81350,Ab16,EA063,?,EA063-NA,,,,,, +81351,Ab17,EA063,?,EA063-NA,,,,,, +81352,Ab18,EA063,Most adults,EA063-9,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +81353,Ab19,EA063,Most adults,EA063-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +81354,Ab2,EA063,Activity is absent,EA063-10,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +81355,Ab20,EA063,?,EA063-NA,,,,,, +81356,Ab21a,EA063,?,EA063-NA,,,,,, +81357,Ab21b,EA063,?,EA063-NA,,,,,, +81358,Ab22,EA063,?,EA063-NA,,,,,, +81359,Ab3,EA063,Most adults,EA063-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +81360,Ab4,EA063,Most adults,EA063-9,,junod1927,,1920,EthnographicAtlas_1967_p64, +81361,Ab5,EA063,Most adults,EA063-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +81362,Ab6,EA063,Activity is absent,EA063-10,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +81363,Ab7,EA063,Most adults,EA063-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p64, +81364,Ab8,EA063,Activity is absent,EA063-10,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +81365,Ab9,EA063,Activity is absent,EA063-10,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +81366,Ac1,EA063,Most adults,EA063-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +81367,Ac10,EA063,Most adults,EA063-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +81368,Ac11,EA063,Most adults,EA063-9,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +81369,Ac12,EA063,Most adults,EA063-9,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p64, +81370,Ac13,EA063,Most adults,EA063-9,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p64, +81371,Ac14,EA063,Most adults,EA063-9,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p64, +81372,Ac15,EA063,?,EA063-NA,,,,,, +81373,Ac16,EA063,?,EA063-NA,,,,,, +81374,Ac17,EA063,Most adults,EA063-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +81375,Ac18,EA063,Most adults,EA063-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +81376,Ac19,EA063,?,EA063-NA,,,,,, +81377,Ac2,EA063,Most adults,EA063-9,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p64, +81378,Ac20,EA063,?,EA063-NA,,,,,, +81379,Ac21,EA063,Most adults,EA063-9,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p64, +81380,Ac22,EA063,Most adults,EA063-9,,mertens1935,,1930,EthnographicAtlas_1967_p64, +81381,Ac23,EA063,Most adults,EA063-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +81382,Ac24,EA063,?,EA063-NA,,,,,, +81383,Ac25,EA063,?,EA063-NA,,,,,, +81384,Ac26,EA063,?,EA063-NA,,,,,, +81385,Ac27,EA063,?,EA063-NA,,,,,, +81386,Ac28,EA063,Most adults,EA063-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +81387,Ac29,EA063,?,EA063-NA,,,,,, +81388,Ac3,EA063,Most adults,EA063-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +81389,Ac30,EA063,Most adults,EA063-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +81390,Ac31,EA063,Most adults,EA063-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +81391,Ac32,EA063,?,EA063-NA,,,,,, +81392,Ac33,EA063,Most adults,EA063-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +81393,Ac34,EA063,Most adults,EA063-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +81394,Ac35,EA063,?,EA063-NA,,,,,, +81395,Ac36,EA063,?,EA063-NA,,,,,, +81396,Ac37,EA063,?,EA063-NA,,,,,, +81397,Ac38,EA063,Most adults,EA063-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +81398,Ac39,EA063,Most adults,EA063-9,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +81399,Ac4,EA063,Most adults,EA063-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +81400,Ac40,EA063,?,EA063-NA,,,,,, +81401,Ac41,EA063,?,EA063-NA,,,,,, +81402,Ac42,EA063,?,EA063-NA,,,,,, +81403,Ac43,EA063,?,EA063-NA,,,,,, +81404,Ac5,EA063,Most adults,EA063-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +81405,Ac6,EA063,Most adults,EA063-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +81406,Ac7,EA063,Most adults,EA063-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +81407,Ac8,EA063,Most adults,EA063-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +81408,Ac9,EA063,Activity is absent,EA063-10,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +81409,Ad1,EA063,Most adults,EA063-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +81410,Ad10,EA063,Most adults,EA063-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +81411,Ad11,EA063,Most adults,EA063-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +81412,Ad12,EA063,?,EA063-NA,,,,,, +81413,Ad13,EA063,Most adults,EA063-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +81414,Ad14,EA063,?,EA063-NA,,,,,, +81415,Ad15,EA063,?,EA063-NA,,,,,, +81416,Ad16,EA063,Most adults,EA063-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +81417,Ad17,EA063,?,EA063-NA,,,,,, +81418,Ad18,EA063,?,EA063-NA,,,,,, +81419,Ad19,EA063,Most adults,EA063-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +81420,Ad2,EA063,Craft,EA063-3,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +81421,Ad20,EA063,?,EA063-NA,,,,,, +81422,Ad21,EA063,Most adults,EA063-9,,maurice193538,,1930,EthnographicAtlas_1967_p68, +81423,Ad22,EA063,?,EA063-NA,,,,,, +81424,Ad23,EA063,?,EA063-NA,,,,,, +81425,Ad24,EA063,Activity is absent,EA063-10,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +81426,Ad25,EA063,?,EA063-NA,,,,,, +81427,Ad26,EA063,Activity is absent,EA063-10,,sick1916,,1910,EthnographicAtlas_1967_p68, +81428,Ad27,EA063,?,EA063-NA,,,,,, +81429,Ad28,EA063,Most adults,EA063-9,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +81430,Ad29,EA063,Most adults,EA063-9,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +81431,Ad3,EA063,Activity is absent,EA063-10,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +81432,Ad30,EA063,?,EA063-NA,,,,,, +81433,Ad31,EA063,?,EA063-NA,,,,,, +81434,Ad32,EA063,?,EA063-NA,,,,,, +81435,Ad33,EA063,Most adults,EA063-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +81436,Ad34,EA063,Most adults,EA063-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +81437,Ad35,EA063,Activity is absent,EA063-10,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +81438,Ad36,EA063,?,EA063-NA,,,,,, +81439,Ad37,EA063,?,EA063-NA,,,,,, +81440,Ad38,EA063,?,EA063-NA,,,,,, +81441,Ad39,EA063,Activity is absent,EA063-10,,gray1963,,1950,EthnographicAtlas_1967_p68, +81442,Ad4,EA063,Activity is absent,EA063-10,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +81443,Ad40,EA063,?,EA063-NA,,,,,, +81444,Ad41,EA063,Most adults,EA063-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +81445,Ad42,EA063,Most adults,EA063-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p68, +81446,Ad43,EA063,?,EA063-NA,,,,,, +81447,Ad44,EA063,Most adults,EA063-9,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +81448,Ad45,EA063,?,EA063-NA,,,,,, +81449,Ad46,EA063,Most adults,EA063-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +81450,Ad47,EA063,?,EA063-NA,,,,,, +81451,Ad48,EA063,Craft,EA063-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +81452,Ad49,EA063,Most adults,EA063-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +81453,Ad5,EA063,?,EA063-NA,,,,,, +81454,Ad50,EA063,?,EA063-NA,,,,,, +81455,Ad51,EA063,Most adults,EA063-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +81456,Ad6,EA063,Most adults,EA063-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +81457,Ad7,EA063,Most adults,EA063-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +81458,Ad8,EA063,Activity is absent,EA063-10,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +81459,Ad9,EA063,?,EA063-NA,,,,,, +81460,Ae1,EA063,Most adults,EA063-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +81461,Ae10,EA063,Most adults,EA063-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +81462,Ae11,EA063,Most adults,EA063-9,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +81463,Ae12,EA063,Most adults,EA063-9,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +81464,Ae13,EA063,?,EA063-NA,,,,,, +81465,Ae14,EA063,?,EA063-NA,,,,,, +81466,Ae15,EA063,Most adults,EA063-9,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p68, +81467,Ae16,EA063,?,EA063-NA,,,,,, +81468,Ae17,EA063,Most adults,EA063-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +81469,Ae18,EA063,Most adults,EA063-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +81470,Ae19,EA063,?,EA063-NA,,,,,, +81471,Ae2,EA063,Most adults,EA063-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +81472,Ae20,EA063,?,EA063-NA,,,,,, +81473,Ae21,EA063,?,EA063-NA,,,,,, +81474,Ae22,EA063,?,EA063-NA,,,,,, +81475,Ae23,EA063,?,EA063-NA,,,,,, +81476,Ae24,EA063,?,EA063-NA,,,,,, +81477,Ae25,EA063,?,EA063-NA,,,,,, +81478,Ae26,EA063,?,EA063-NA,,,,,, +81479,Ae27,EA063,?,EA063-NA,,,,,, +81480,Ae28,EA063,Most adults,EA063-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +81481,Ae29,EA063,Most adults,EA063-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +81482,Ae3,EA063,Most adults,EA063-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +81483,Ae30,EA063,?,EA063-NA,,,,,, +81484,Ae31,EA063,?,EA063-NA,,,,,, +81485,Ae32,EA063,?,EA063-NA,,,,,, +81486,Ae33,EA063,Most adults,EA063-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +81487,Ae34,EA063,?,EA063-NA,,,,,, +81488,Ae35,EA063,?,EA063-NA,,,,,, +81489,Ae36,EA063,?,EA063-NA,,,,,, +81490,Ae37,EA063,?,EA063-NA,,,,,, +81491,Ae38,EA063,Most adults,EA063-9,,wijnant192526,,1920,EthnographicAtlas_1967_p68, +81492,Ae39,EA063,Most adults,EA063-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +81493,Ae4,EA063,Most adults,EA063-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +81494,Ae40,EA063,?,EA063-NA,,,,,, +81495,Ae41,EA063,Most adults,EA063-9,,andersson1953,,1940,EthnographicAtlas_1967_p68, +81496,Ae42,EA063,?,EA063-NA,,,,,, +81497,Ae43,EA063,?,EA063-NA,,,,,, +81498,Ae44,EA063,?,EA063-NA,,,,,, +81499,Ae45,EA063,?,EA063-NA,,,,,, +81500,Ae46,EA063,?,EA063-NA,,,,,, +81501,Ae47,EA063,?,EA063-NA,,,,,, +81502,Ae48,EA063,Most adults,EA063-9,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p68, +81503,Ae49,EA063,?,EA063-NA,,,,,, +81504,Ae5,EA063,Activity is absent,EA063-10,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +81505,Ae50,EA063,?,EA063-NA,,,,,, +81506,Ae51,EA063,Most adults,EA063-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +81507,Ae52,EA063,?,EA063-NA,,,,,, +81508,Ae53,EA063,?,EA063-NA,,,,,, +81509,Ae54,EA063,?,EA063-NA,,,,,, +81510,Ae55,EA063,Most adults,EA063-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +81511,Ae56,EA063,?,EA063-NA,,,,,, +81512,Ae57,EA063,?,EA063-NA,,,,,, +81513,Ae58,EA063,?,EA063-NA,,,,,, +81514,Ae59,EA063,?,EA063-NA,,,,,, +81515,Ae6,EA063,Most adults,EA063-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +81516,Ae7,EA063,Most adults,EA063-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +81517,Ae8,EA063,Most adults,EA063-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +81518,Ae9,EA063,Activity is absent,EA063-10,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +81519,Af1,EA063,Most adults,EA063-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +81520,Af10,EA063,Activity is absent,EA063-10,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +81521,Af11,EA063,Most adults,EA063-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +81522,Af12,EA063,?,EA063-NA,,,,,, +81523,Af13,EA063,Most adults,EA063-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +81524,Af14,EA063,Most adults,EA063-9,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +81525,Af15,EA063,Most adults,EA063-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +81526,Af16,EA063,?,EA063-NA,,,,,, +81527,Af17,EA063,?,EA063-NA,,,,,, +81528,Af18,EA063,?,EA063-NA,,,,,, +81529,Af19,EA063,Most adults,EA063-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p72, +81530,Af2,EA063,Most adults,EA063-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +81531,Af20,EA063,Most adults,EA063-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +81532,Af21,EA063,?,EA063-NA,,,,,, +81533,Af22,EA063,Most adults,EA063-9,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +81534,Af23,EA063,Most adults,EA063-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +81535,Af24,EA063,?,EA063-NA,,,,,, +81536,Af25,EA063,Most adults,EA063-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +81537,Af26,EA063,?,EA063-NA,,,,,, +81538,Af27,EA063,?,EA063-NA,,,,,, +81539,Af28,EA063,?,EA063-NA,,,,,, +81540,Af29,EA063,?,EA063-NA,,,,,, +81541,Af3,EA063,Most adults,EA063-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +81542,Af30,EA063,?,EA063-NA,,,,,, +81543,Af31,EA063,?,EA063-NA,,,,,, +81544,Af32,EA063,?,EA063-NA,,,,,, +81545,Af33,EA063,?,EA063-NA,,,,,, +81546,Af34,EA063,?,EA063-NA,,,,,, +81547,Af35,EA063,?,EA063-NA,,,,,, +81548,Af36,EA063,Most adults,EA063-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +81549,Af37,EA063,?,EA063-NA,,,,,, +81550,Af38,EA063,?,EA063-NA,,,,,, +81551,Af39,EA063,?,EA063-NA,,,,,, +81552,Af4,EA063,Activity is absent,EA063-10,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +81553,Af40,EA063,?,EA063-NA,,,,,, +81554,Af41,EA063,?,EA063-NA,,,,,, +81555,Af42,EA063,Most adults,EA063-9,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +81556,Af43,EA063,Most adults,EA063-9,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p72, +81557,Af44,EA063,?,EA063-NA,,,,,, +81558,Af45,EA063,?,EA063-NA,,,,,, +81559,Af46,EA063,?,EA063-NA,,,,,, +81560,Af47,EA063,?,EA063-NA,,,,,, +81561,Af48,EA063,?,EA063-NA,,,,,, +81562,Af49,EA063,Most adults,EA063-9,,schwab1947,,1940,EthnographicAtlas_1967_p72, +81563,Af5,EA063,Most adults,EA063-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +81564,Af50,EA063,?,EA063-NA,,,,,, +81565,Af51,EA063,Most adults,EA063-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +81566,Af52,EA063,Most adults,EA063-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +81567,Af53,EA063,?,EA063-NA,,,,,, +81568,Af54,EA063,Most adults,EA063-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +81569,Af55,EA063,?,EA063-NA,,,,,, +81570,Af56,EA063,Most adults,EA063-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +81571,Af57,EA063,Most adults,EA063-9,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +81572,Af58,EA063,?,EA063-NA,,,,,, +81573,Af6,EA063,?,EA063-NA,,,,,, +81574,Af7,EA063,Most adults,EA063-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +81575,Af8,EA063,?,EA063-NA,,,,,, +81576,Af9,EA063,Most adults,EA063-9,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p72, +81577,Ag1,EA063,Most adults,EA063-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +81578,Ag10,EA063,Most adults,EA063-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +81579,Ag11,EA063,Most adults,EA063-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +81580,Ag12,EA063,Most adults,EA063-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +81581,Ag13,EA063,?,EA063-NA,,,,,, +81582,Ag14,EA063,?,EA063-NA,,,,,, +81583,Ag15,EA063,?,EA063-NA,,,,,, +81584,Ag16,EA063,Most adults,EA063-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p72, +81585,Ag17,EA063,?,EA063-NA,,,,,, +81586,Ag18,EA063,Most adults,EA063-9,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p72, +81587,Ag19,EA063,Most adults,EA063-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p72, +81588,Ag2,EA063,Activity is absent,EA063-10,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +81589,Ag20,EA063,?,EA063-NA,,,,,, +81590,Ag21,EA063,Most adults,EA063-9,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +81591,Ag22,EA063,Most adults,EA063-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +81592,Ag23,EA063,?,EA063-NA,,,,,, +81593,Ag24,EA063,?,EA063-NA,,,,,, +81594,Ag25,EA063,?,EA063-NA,,,,,, +81595,Ag26,EA063,?,EA063-NA,,,,,, +81596,Ag27,EA063,Activity is absent,EA063-10,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p72, +81597,Ag28,EA063,?,EA063-NA,,,,,, +81598,Ag29,EA063,?,EA063-NA,,,,,, +81599,Ag3,EA063,Activity is absent,EA063-10,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +81600,Ag30,EA063,Most adults,EA063-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +81601,Ag31,EA063,?,EA063-NA,,,,,, +81602,Ag32,EA063,Most adults,EA063-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +81603,Ag33,EA063,?,EA063-NA,,,,,, +81604,Ag34,EA063,?,EA063-NA,,,,,, +81605,Ag35,EA063,?,EA063-NA,,,,,, +81606,Ag36,EA063,?,EA063-NA,,,,,, +81607,Ag37,EA063,?,EA063-NA,,,,,, +81608,Ag38,EA063,?,EA063-NA,,,,,, +81609,Ag39,EA063,?,EA063-NA,,,,,, +81610,Ag4,EA063,Most adults,EA063-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +81611,Ag40,EA063,?,EA063-NA,,,,,, +81612,Ag41,EA063,?,EA063-NA,,,,,, +81613,Ag42,EA063,?,EA063-NA,,,,,, +81614,Ag43,EA063,?,EA063-NA,,,,,, +81615,Ag44,EA063,?,EA063-NA,,,,,, +81616,Ag45,EA063,?,EA063-NA,,,,,, +81617,Ag46,EA063,?,EA063-NA,,,,,, +81618,Ag47,EA063,Most adults,EA063-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +81619,Ag48,EA063,Most adults,EA063-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +81620,Ag49,EA063,?,EA063-NA,,,,,, +81621,Ag5,EA063,Most adults,EA063-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +81622,Ag50,EA063,Most adults,EA063-9,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +81623,Ag51,EA063,?,EA063-NA,,,,,, +81624,Ag52,EA063,?,EA063-NA,,,,,, +81625,Ag53,EA063,?,EA063-NA,,,,,, +81626,Ag54,EA063,Most adults,EA063-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +81627,Ag6,EA063,Activity is absent,EA063-10,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +81628,Ag7,EA063,Most adults,EA063-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p72, +81629,Ag8,EA063,Activity is absent,EA063-10,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +81630,Ag9,EA063,Most adults,EA063-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +81631,Ah1,EA063,?,EA063-NA,,,,,, +81632,Ah10,EA063,?,EA063-NA,,,,,, +81633,Ah11,EA063,Most adults,EA063-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +81634,Ah12,EA063,?,EA063-NA,,,,,, +81635,Ah13,EA063,?,EA063-NA,,,,,, +81636,Ah14,EA063,?,EA063-NA,,,,,, +81637,Ah15,EA063,Most adults,EA063-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +81638,Ah16,EA063,?,EA063-NA,,,,,, +81639,Ah17,EA063,?,EA063-NA,,,,,, +81640,Ah18,EA063,?,EA063-NA,,,,,, +81641,Ah19,EA063,Most adults,EA063-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p76, +81642,Ah2,EA063,Most adults,EA063-9,,meek1931a,,1920,EthnographicAtlas_1967_p76, +81643,Ah20,EA063,Most adults,EA063-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +81644,Ah21,EA063,?,EA063-NA,,,,,, +81645,Ah22,EA063,?,EA063-NA,,,,,, +81646,Ah23,EA063,?,EA063-NA,,,,,, +81647,Ah24,EA063,?,EA063-NA,,,,,, +81648,Ah25,EA063,?,EA063-NA,,,,,, +81649,Ah26,EA063,?,EA063-NA,,,,,, +81650,Ah27,EA063,?,EA063-NA,,,,,, +81651,Ah28,EA063,?,EA063-NA,,,,,, +81652,Ah29,EA063,?,EA063-NA,,,,,, +81653,Ah3,EA063,Most adults,EA063-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +81654,Ah30,EA063,?,EA063-NA,,,,,, +81655,Ah31,EA063,?,EA063-NA,,,,,, +81656,Ah32,EA063,?,EA063-NA,,,,,, +81657,Ah33,EA063,?,EA063-NA,,,,,, +81658,Ah34,EA063,?,EA063-NA,,,,,, +81659,Ah35,EA063,?,EA063-NA,,,,,, +81660,Ah36,EA063,?,EA063-NA,,,,,, +81661,Ah37,EA063,?,EA063-NA,,,,,, +81662,Ah38,EA063,?,EA063-NA,,,,,, +81663,Ah39,EA063,?,EA063-NA,,,,,, +81664,Ah4,EA063,Activity is absent,EA063-10,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p76, +81665,Ah5,EA063,?,EA063-NA,,,,,, +81666,Ah6,EA063,?,EA063-NA,,,,,, +81667,Ah7,EA063,Activity is absent,EA063-10,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +81668,Ah8,EA063,Most adults,EA063-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +81669,Ah9,EA063,Most adults,EA063-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +81670,Ai1,EA063,Most adults,EA063-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +81671,Ai10,EA063,Activity is absent,EA063-10,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +81672,Ai11,EA063,Most adults,EA063-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +81673,Ai12,EA063,?,EA063-NA,,,,,, +81674,Ai13,EA063,?,EA063-NA,,,,,, +81675,Ai14,EA063,Most adults,EA063-9,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p76, +81676,Ai15,EA063,Most adults,EA063-9,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +81677,Ai16,EA063,?,EA063-NA,,,,,, +81678,Ai17,EA063,?,EA063-NA,,,,,, +81679,Ai18,EA063,Most adults,EA063-9,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +81680,Ai19,EA063,?,EA063-NA,,,,,, +81681,Ai2,EA063,?,EA063-NA,,,,,, +81682,Ai20,EA063,?,EA063-NA,,,,,, +81683,Ai21,EA063,Most adults,EA063-9,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p76, +81684,Ai22,EA063,?,EA063-NA,,,,,, +81685,Ai23,EA063,Most adults,EA063-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +81686,Ai24,EA063,?,EA063-NA,,,,,, +81687,Ai25,EA063,Most adults,EA063-9,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +81688,Ai26,EA063,?,EA063-NA,,,,,, +81689,Ai27,EA063,?,EA063-NA,,,,,, +81690,Ai28,EA063,Most adults,EA063-9,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +81691,Ai29,EA063,Most adults,EA063-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +81692,Ai3,EA063,Most adults,EA063-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +81693,Ai30,EA063,Most adults,EA063-9,Mainly by Pygmies,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +81694,Ai31,EA063,?,EA063-NA,,,,,, +81695,Ai32,EA063,?,EA063-NA,,,,,, +81696,Ai33,EA063,?,EA063-NA,,,,,, +81697,Ai34,EA063,Most adults,EA063-9,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +81698,Ai35,EA063,Most adults,EA063-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +81699,Ai36,EA063,Most adults,EA063-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +81700,Ai37,EA063,?,EA063-NA,,,,,, +81701,Ai38,EA063,?,EA063-NA,,,,,, +81702,Ai39,EA063,?,EA063-NA,,,,,, +81703,Ai4,EA063,?,EA063-NA,,,,,, +81704,Ai40,EA063,?,EA063-NA,,,,,, +81705,Ai41,EA063,?,EA063-NA,,,,,, +81706,Ai42,EA063,?,EA063-NA,,,,,, +81707,Ai43,EA063,Activity is absent,EA063-10,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +81708,Ai44,EA063,?,EA063-NA,,,,,, +81709,Ai45,EA063,?,EA063-NA,,,,,, +81710,Ai46,EA063,Most adults,EA063-9,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p76, +81711,Ai47,EA063,?,EA063-NA,,,,,, +81712,Ai5,EA063,Activity is absent,EA063-10,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +81713,Ai6,EA063,?,EA063-NA,,,,,, +81714,Ai7,EA063,Most adults,EA063-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +81715,Ai8,EA063,Activity is absent,EA063-10,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +81716,Ai9,EA063,Most adults,EA063-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +81717,Aj1,EA063,Most adults,EA063-9,,lawrance1957,,1950,EthnographicAtlas_1967_p76, +81718,Aj10,EA063,?,EA063-NA,,,,,, +81719,Aj11,EA063,Most adults,EA063-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p80, +81720,Aj12,EA063,Most adults,EA063-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +81721,Aj13,EA063,Most adults,EA063-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +81722,Aj14,EA063,?,EA063-NA,,,,,, +81723,Aj15,EA063,Most adults,EA063-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +81724,Aj16,EA063,Most adults,EA063-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +81725,Aj17,EA063,?,EA063-NA,,,,,, +81726,Aj18,EA063,Activity is absent,EA063-10,,jensen1959,,1950,EthnographicAtlas_1967_p80, +81727,Aj19,EA063,Activity is absent,EA063-10,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p80, +81728,Aj2,EA063,Activity is absent,EA063-10,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +81729,Aj20,EA063,Activity is absent,EA063-10,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p80, +81730,Aj21,EA063,Activity is absent,EA063-10,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +81731,Aj22,EA063,?,EA063-NA,,,,,, +81732,Aj23,EA063,Activity is absent,EA063-10,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +81733,Aj24,EA063,Activity is absent,EA063-10,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +81734,Aj25,EA063,Activity is absent,EA063-10,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +81735,Aj26,EA063,Activity is absent,EA063-10,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +81736,Aj27,EA063,?,EA063-NA,,,,,, +81737,Aj28,EA063,Activity is absent,EA063-10,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +81738,Aj29,EA063,?,EA063-NA,,,,,, +81739,Aj3,EA063,Most adults,EA063-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +81740,Aj30,EA063,?,EA063-NA,,,,,, +81741,Aj31,EA063,?,EA063-NA,,,,,, +81742,Aj4,EA063,Activity is absent,EA063-10,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +81743,Aj5,EA063,Most adults,EA063-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +81744,Aj6,EA063,Most adults,EA063-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +81745,Aj7,EA063,Activity is absent,EA063-10,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +81746,Aj8,EA063,Craft,EA063-3,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +81747,Aj9,EA063,?,EA063-NA,,,,,, +81748,Ca1,EA063,Activity is absent,EA063-10,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +81749,Ca10,EA063,Activity is absent,EA063-10,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +81750,Ca11,EA063,Activity is absent,EA063-10,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +81751,Ca12,EA063,Activity is absent,EA063-10,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +81752,Ca13,EA063,Activity is absent,EA063-10,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +81753,Ca14,EA063,Activity is absent,EA063-10,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +81754,Ca15,EA063,Activity is absent,EA063-10,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +81755,Ca16,EA063,Activity is absent,EA063-10,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +81756,Ca17,EA063,Activity is absent,EA063-10,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +81757,Ca18,EA063,?,EA063-NA,,,,,, +81758,Ca19,EA063,Activity is absent,EA063-10,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +81759,Ca2,EA063,Activity is absent,EA063-10,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +81760,Ca20,EA063,?,EA063-NA,,,,,, +81761,Ca21,EA063,Activity is absent,EA063-10,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +81762,Ca22,EA063,Craft,EA063-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +81763,Ca23,EA063,Activity is absent,EA063-10,,jensen1959,,1950,EthnographicAtlas_1967_p80, +81764,Ca24,EA063,Activity is absent,EA063-10,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +81765,Ca25,EA063,Activity is absent,EA063-10,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +81766,Ca26,EA063,?,EA063-NA,,,,,, +81767,Ca27,EA063,?,EA063-NA,,,,,, +81768,Ca28,EA063,Activity is absent,EA063-10,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +81769,Ca29,EA063,?,EA063-NA,,,,,, +81770,Ca3,EA063,Activity is absent,EA063-10,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p80, +81771,Ca30,EA063,Craft,EA063-3,By an outcaste group (Manjo hunters),bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +81772,Ca31,EA063,?,EA063-NA,,,,,, +81773,Ca32,EA063,?,EA063-NA,,,,,, +81774,Ca33,EA063,?,EA063-NA,,,,,, +81775,Ca34,EA063,?,EA063-NA,,,,,, +81776,Ca35,EA063,?,EA063-NA,,,,,, +81777,Ca36,EA063,?,EA063-NA,,,,,, +81778,Ca37,EA063,?,EA063-NA,,,,,, +81779,Ca38,EA063,?,EA063-NA,,,,,, +81780,Ca39,EA063,?,EA063-NA,,,,,, +81781,Ca4,EA063,Activity is absent,EA063-10,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +81782,Ca40,EA063,Activity is absent,EA063-10,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +81783,Ca41,EA063,Activity is absent,EA063-10,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +81784,Ca42,EA063,Activity is absent,EA063-10,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +81785,Ca43,EA063,?,EA063-NA,,,,,, +81786,Ca5,EA063,Activity is absent,EA063-10,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p80, +81787,Ca6,EA063,?,EA063-NA,,,,,, +81788,Ca7,EA063,Most adults,EA063-9,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +81789,Ca8,EA063,?,EA063-NA,,,,,, +81790,Ca9,EA063,?,EA063-NA,,,,,, +81791,Cb1,EA063,?,EA063-NA,,,,,, +81792,Cb10,EA063,?,EA063-NA,,,,,, +81793,Cb11,EA063,?,EA063-NA,,,,,, +81794,Cb12,EA063,?,EA063-NA,,,,,, +81795,Cb13,EA063,?,EA063-NA,,,,,, +81796,Cb14,EA063,?,EA063-NA,,,,,, +81797,Cb15,EA063,?,EA063-NA,,,,,, +81798,Cb16,EA063,?,EA063-NA,,,,,, +81799,Cb17,EA063,Most adults,EA063-9,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +81800,Cb18,EA063,?,EA063-NA,,,,,, +81801,Cb19,EA063,?,EA063-NA,,,,,, +81802,Cb2,EA063,Most adults,EA063-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +81803,Cb20,EA063,Craft,EA063-3,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +81804,Cb21,EA063,Activity is absent,EA063-10,,pfeffer1936,,1930,EthnographicAtlas_1967_p84, +81805,Cb22,EA063,?,EA063-NA,,,,,, +81806,Cb23,EA063,Most adults,EA063-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +81807,Cb24,EA063,Activity is absent,EA063-10,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p84, +81808,Cb25,EA063,?,EA063-NA,,,,,, +81809,Cb26,EA063,Most adults,EA063-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +81810,Cb27,EA063,?,EA063-NA,,,,,, +81811,Cb28,EA063,?,EA063-NA,,,,,, +81812,Cb29,EA063,?,EA063-NA,,,,,, +81813,Cb3,EA063,Craft,EA063-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +81814,Cb4,EA063,Activity is absent,EA063-10,,reid1930,,1920,EthnographicAtlas_1967_p80, +81815,Cb5,EA063,Most adults,EA063-9,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p80, +81816,Cb6,EA063,Most adults,EA063-9,,woodnd,,1920,EthnographicAtlas_1967_p80, +81817,Cb7,EA063,?,EA063-NA,,,,,, +81818,Cb8,EA063,Activity is absent,EA063-10,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p80, +81819,Cb9,EA063,Activity is absent,EA063-10,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +81820,Cc1,EA063,Craft,EA063-3,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +81821,Cc10,EA063,Activity is absent,EA063-10,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +81822,Cc11,EA063,?,EA063-NA,,,,,, +81823,Cc12,EA063,Activity is absent,EA063-10,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +81824,Cc13,EA063,?,EA063-NA,,,,,, +81825,Cc14,EA063,Most adults,EA063-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +81826,Cc15,EA063,?,EA063-NA,,,,,, +81827,Cc16,EA063,Activity is absent,EA063-10,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +81828,Cc17,EA063,Craft,EA063-3,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +81829,Cc18,EA063,?,EA063-NA,,,,,, +81830,Cc19,EA063,?,EA063-NA,,,,,, +81831,Cc2,EA063,Activity is absent,EA063-10,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +81832,Cc20,EA063,Most adults,EA063-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +81833,Cc3,EA063,Activity is absent,EA063-10,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +81834,Cc4,EA063,Activity is absent,EA063-10,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +81835,Cc5,EA063,Activity is absent,EA063-10,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +81836,Cc6,EA063,?,EA063-NA,,,,,, +81837,Cc7,EA063,?,EA063-NA,,,,,, +81838,Cc8,EA063,?,EA063-NA,,,,,, +81839,Cc9,EA063,Activity is absent,EA063-10,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +81840,Cd1,EA063,Most adults,EA063-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +81841,Cd10,EA063,?,EA063-NA,,,,,, +81842,Cd11,EA063,Most adults,EA063-9,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p84, +81843,Cd12,EA063,?,EA063-NA,,,,,, +81844,Cd13,EA063,?,EA063-NA,,,,,, +81845,Cd14,EA063,?,EA063-NA,,,,,, +81846,Cd15,EA063,?,EA063-NA,,,,,, +81847,Cd16,EA063,?,EA063-NA,,,,,, +81848,Cd17,EA063,?,EA063-NA,,,,,, +81849,Cd18,EA063,?,EA063-NA,,,,,, +81850,Cd19,EA063,?,EA063-NA,,,,,, +81851,Cd2,EA063,Craft,EA063-3,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +81852,Cd20,EA063,?,EA063-NA,,,,,, +81853,Cd21,EA063,?,EA063-NA,,,,,, +81854,Cd3,EA063,Most adults,EA063-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +81855,Cd4,EA063,Activity is absent,EA063-10,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +81856,Cd5,EA063,?,EA063-NA,,,,,, +81857,Cd6,EA063,?,EA063-NA,,,,,, +81858,Cd7,EA063,?,EA063-NA,,,,,, +81859,Cd8,EA063,?,EA063-NA,,,,,, +81860,Cd9,EA063,?,EA063-NA,,,,,, +81861,Ce1,EA063,Activity is absent,EA063-10,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +81862,Ce2,EA063,?,EA063-NA,,,,,, +81863,Ce3,EA063,?,EA063-NA,,,,,, +81864,Ce4,EA063,Most adults,EA063-9,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81865,Ce5,EA063,Most adults,EA063-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +81866,Ce6,EA063,Most adults,EA063-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +81867,Ce7,EA063,Most adults,EA063-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +81868,Ce8,EA063,Most adults,EA063-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +81869,Cf1,EA063,Craft,EA063-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +81870,Cf2,EA063,?,EA063-NA,,,,,, +81871,Cf3,EA063,Most adults,EA063-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +81872,Cf4,EA063,Most adults,EA063-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +81873,Cf5,EA063,Most adults,EA063-9,,miner1939,,1930,EthnographicAtlas_1967_p84, +81874,Cg1,EA063,Craft,EA063-3,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +81875,Cg2,EA063,Most adults,EA063-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +81876,Cg3,EA063,?,EA063-NA,,,,,, +81877,Cg4,EA063,Most adults,EA063-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +81878,Cg5,EA063,?,EA063-NA,,,,,, +81879,Ch1,EA063,Activity is absent,EA063-10,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +81880,Ch10,EA063,?,EA063-NA,,,,,, +81881,Ch11,EA063,Activity is absent,EA063-10,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +81882,Ch2,EA063,?,EA063-NA,,,,,, +81883,Ch3,EA063,Activity is absent,EA063-10,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +81884,Ch4,EA063,?,EA063-NA,,,,,, +81885,Ch5,EA063,Most adults,EA063-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +81886,Ch6,EA063,Most adults,EA063-9,,ember1954,,1910,EthnographicAtlas_1967_p84, +81887,Ch7,EA063,Most adults,EA063-9,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +81888,Ch8,EA063,?,EA063-NA,,,,,, +81889,Ch9,EA063,Craft,EA063-3,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +81890,Ci1,EA063,Activity is absent,EA063-10,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +81891,Ci10,EA063,Activity is absent,EA063-10,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +81892,Ci11,EA063,Most adults,EA063-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +81893,Ci12,EA063,Most adults,EA063-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +81894,Ci2,EA063,Most adults,EA063-9,,grigolia1939,,1930,EthnographicAtlas_1967_p84, +81895,Ci3,EA063,?,EA063-NA,,,,,, +81896,Ci4,EA063,Activity is absent,EA063-10,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +81897,Ci5,EA063,Activity is absent,EA063-10,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +81898,Ci6,EA063,?,EA063-NA,,,,,, +81899,Ci7,EA063,?,EA063-NA,,,,,, +81900,Ci8,EA063,?,EA063-NA,,,,,, +81901,Ci9,EA063,?,EA063-NA,,,,,, +81902,Cj1,EA063,Activity is absent,EA063-10,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +81903,Cj10,EA063,Most adults,EA063-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +81904,Cj2,EA063,Activity is absent,EA063-10,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +81905,Cj3,EA063,Most adults,EA063-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +81906,Cj4,EA063,Craft,EA063-3,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +81907,Cj5,EA063,Activity is absent,EA063-10,,dickson1949,,1930,EthnographicAtlas_1967_p88, +81908,Cj6,EA063,?,EA063-NA,,,,,, +81909,Cj7,EA063,Most adults,EA063-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +81910,Cj8,EA063,Activity is absent,EA063-10,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +81911,Cj9,EA063,?,EA063-NA,,,,,, +81912,Ea1,EA063,?,EA063-NA,,,,,, +81913,Ea10,EA063,Activity is absent,EA063-10,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +81914,Ea11,EA063,Most adults,EA063-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +81915,Ea12,EA063,?,EA063-NA,,,,,, +81916,Ea13,EA063,Craft,EA063-3,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +81917,Ea2,EA063,Activity is absent,EA063-10,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +81918,Ea3,EA063,Activity is absent,EA063-10,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +81919,Ea4,EA063,Activity is absent,EA063-10,,barth1956b,,1950,EthnographicAtlas_1967_p88, +81920,Ea5,EA063,Activity is absent,EA063-10,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +81921,Ea6,EA063,Activity is absent,EA063-10,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +81922,Ea7,EA063,Activity is absent,EA063-10,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +81923,Ea8,EA063,Activity is absent,EA063-10,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +81924,Ea9,EA063,?,EA063-NA,,,,,, +81925,Eb1,EA063,Activity is absent,EA063-10,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +81926,Eb2,EA063,Most adults,EA063-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +81927,Eb3,EA063,Activity is absent,EA063-10,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +81928,Eb4,EA063,?,EA063-NA,,,,,, +81929,Eb5,EA063,?,EA063-NA,,,,,, +81930,Eb6,EA063,?,EA063-NA,,,,,, +81931,Eb7,EA063,Activity is absent,EA063-10,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +81932,Eb8,EA063,?,EA063-NA,,,,,, +81933,Ec1,EA063,Most adults,EA063-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +81934,Ec10,EA063,Most adults,EA063-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +81935,Ec11,EA063,Most adults,EA063-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +81936,Ec2,EA063,Most adults,EA063-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81937,Ec3,EA063,Most adults,EA063-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +81938,Ec4,EA063,Most adults,EA063-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +81939,Ec5,EA063,Most adults,EA063-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +81940,Ec6,EA063,Most adults,EA063-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p88, +81941,Ec7,EA063,Most adults,EA063-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +81942,Ec8,EA063,Most adults,EA063-9,,shimkin1939,,1900,EthnographicAtlas_1967_p88, +81943,Ec9,EA063,Most adults,EA063-9,,lattimore1933,,1920,EthnographicAtlas_1967_p88, +81944,Ed1,EA063,Most adults,EA063-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +81945,Ed10,EA063,?,EA063-NA,,,,,, +81946,Ed13,EA063,?,EA063-NA,,,,,, +81947,Ed14,EA063,?,EA063-NA,,,,,, +81948,Ed15a,EA063,?,EA063-NA,,,,,, +81949,Ed15b,EA063,Craft,EA063-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +81950,Ed16,EA063,?,EA063-NA,,,,,, +81951,Ed2,EA063,Activity is absent,EA063-10,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +81952,Ed3,EA063,Most adults,EA063-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +81953,Ed4,EA063,Most adults,EA063-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +81954,Ed5,EA063,Most adults,EA063-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81955,Ed6,EA063,Most adults,EA063-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +81956,Ed7,EA063,Most adults,EA063-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +81957,Ed8,EA063,Most adults,EA063-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +81958,Ed9,EA063,Most adults,EA063-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +81959,Ee1,EA063,Most adults,EA063-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +81960,Ee2,EA063,Activity is absent,EA063-10,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +81961,Ee3,EA063,Activity is absent,EA063-10,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +81962,Ee4,EA063,Craft,EA063-3,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +81963,Ee5,EA063,Activity is absent,EA063-10,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +81964,Ee6,EA063,Activity is absent,EA063-10,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +81965,Ee7,EA063,?,EA063-NA,,,,,, +81966,Ee8,EA063,Most adults,EA063-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +81967,Ef1,EA063,Most adults,EA063-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +81968,Ef10,EA063,?,EA063-NA,,,,,, +81969,Ef11,EA063,Activity is absent,EA063-10,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +81970,Ef2,EA063,Craft,EA063-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +81971,Ef3,EA063,?,EA063-NA,,,,,, +81972,Ef4,EA063,?,EA063-NA,,,,,, +81973,Ef5,EA063,Most adults,EA063-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +81974,Ef6,EA063,Most adults,EA063-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +81975,Ef7,EA063,Most adults,EA063-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +81976,Ef8,EA063,Craft,EA063-3,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +81977,Ef9,EA063,Most adults,EA063-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81978,Eg1,EA063,Most adults,EA063-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81979,Eg10,EA063,Most adults,EA063-9,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +81980,Eg11,EA063,?,EA063-NA,,,,,, +81981,Eg12,EA063,?,EA063-NA,,,,,, +81982,Eg13,EA063,Most adults,EA063-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81983,Eg14,EA063,Most adults,EA063-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +81984,Eg2,EA063,?,EA063-NA,,,,,, +81985,Eg3,EA063,Most adults,EA063-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +81986,Eg4,EA063,Activity is absent,EA063-10,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +81987,Eg5,EA063,Most adults,EA063-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +81988,Eg6,EA063,Craft,EA063-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +81989,Eg7,EA063,Most adults,EA063-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +81990,Eg8,EA063,Activity is absent,EA063-10,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +81991,Eg9,EA063,Most adults,EA063-9,,elwin1939,,1930,EthnographicAtlas_1967_p92, +81992,Eh1,EA063,Most adults,EA063-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +81993,Eh10,EA063,?,EA063-NA,,,,,, +81994,Eh2,EA063,Most adults,EA063-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +81995,Eh3,EA063,Most adults,EA063-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +81996,Eh4,EA063,Most adults,EA063-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +81997,Eh5,EA063,Most adults,EA063-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +81998,Eh6,EA063,?,EA063-NA,,,,,, +81999,Eh7,EA063,Most adults,EA063-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +82000,Eh8,EA063,Most adults,EA063-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +82001,Eh9,EA063,Most adults,EA063-9,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +82002,Ei1,EA063,Most adults,EA063-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82003,Ei10,EA063,Most adults,EA063-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +82004,Ei11,EA063,Most adults,EA063-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +82005,Ei12,EA063,?,EA063-NA,,,,,, +82006,Ei13,EA063,Most adults,EA063-9,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +82007,Ei14,EA063,Most adults,EA063-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +82008,Ei15,EA063,?,EA063-NA,,,,,, +82009,Ei16,EA063,Most adults,EA063-9,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +82010,Ei17,EA063,?,EA063-NA,,,,,, +82011,Ei18,EA063,Activity is absent,EA063-10,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +82012,Ei19,EA063,Most adults,EA063-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +82013,Ei2,EA063,Most adults,EA063-9,,mills1922,,1920,EthnographicAtlas_1967_p92, +82014,Ei20,EA063,?,EA063-NA,,,,,, +82015,Ei3,EA063,Craft,EA063-3,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +82016,Ei4,EA063,Most adults,EA063-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +82017,Ei5,EA063,Activity is absent,EA063-10,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +82018,Ei6,EA063,Activity is absent,EA063-10,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +82019,Ei7,EA063,Most adults,EA063-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +82020,Ei8,EA063,Most adults,EA063-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +82021,Ei9,EA063,Most adults,EA063-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +82022,Ej1,EA063,Most adults,EA063-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +82023,Ej10,EA063,Most adults,EA063-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +82024,Ej11,EA063,?,EA063-NA,,,,,, +82025,Ej12,EA063,Most adults,EA063-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +82026,Ej13,EA063,Most adults,EA063-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +82027,Ej14,EA063,Most adults,EA063-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82028,Ej15,EA063,Most adults,EA063-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +82029,Ej16,EA063,Most adults,EA063-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +82030,Ej2,EA063,Most adults,EA063-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +82031,Ej3,EA063,Most adults,EA063-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +82032,Ej4,EA063,Most adults,EA063-9,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +82033,Ej5,EA063,Most adults,EA063-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +82034,Ej6,EA063,Most adults,EA063-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +82035,Ej7,EA063,Most adults,EA063-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +82036,Ej8,EA063,Most adults,EA063-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +82037,Ej9,EA063,Most adults,EA063-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +82038,Ia1,EA063,Most adults,EA063-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +82039,Ia10,EA063,Activity is absent,EA063-10,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +82040,Ia11,EA063,Most adults,EA063-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +82041,Ia12,EA063,Most adults,EA063-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +82042,Ia13,EA063,Most adults,EA063-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +82043,Ia14,EA063,Most adults,EA063-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +82044,Ia15,EA063,?,EA063-NA,,,,,, +82045,Ia16,EA063,Most adults,EA063-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +82046,Ia17,EA063,?,EA063-NA,,,,,, +82047,Ia18,EA063,?,EA063-NA,,,,,, +82048,Ia2,EA063,Most adults,EA063-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +82049,Ia3,EA063,Most adults,EA063-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +82050,Ia4,EA063,Most adults,EA063-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p92, +82051,Ia5,EA063,Most adults,EA063-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +82052,Ia6,EA063,Most adults,EA063-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82053,Ia7,EA063,Most adults,EA063-9,,fox1954,,1950,EthnographicAtlas_1967_p92, +82054,Ia8,EA063,?,EA063-NA,,,,,, +82055,Ia9,EA063,Most adults,EA063-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +82056,Ib1,EA063,Most adults,EA063-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82057,Ib2,EA063,Activity is absent,EA063-10,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82058,Ib3,EA063,Activity is absent,EA063-10,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +82059,Ib4,EA063,?,EA063-NA,,,,,, +82060,Ib5,EA063,Most adults,EA063-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +82061,Ib6,EA063,Most adults,EA063-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +82062,Ib7,EA063,Most adults,EA063-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +82063,Ib8,EA063,?,EA063-NA,,,,,, +82064,Ib9,EA063,?,EA063-NA,,,,,, +82065,Ic1,EA063,Most adults,EA063-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82066,Ic10,EA063,Most adults,EA063-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +82067,Ic11,EA063,?,EA063-NA,,,,,, +82068,Ic12,EA063,Most adults,EA063-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +82069,Ic13,EA063,?,EA063-NA,,,,,, +82070,Ic2,EA063,Activity is absent,EA063-10,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +82071,Ic3,EA063,?,EA063-NA,,,,,, +82072,Ic4,EA063,?,EA063-NA,,,,,, +82073,Ic5,EA063,?,EA063-NA,,,,,, +82074,Ic6,EA063,Most adults,EA063-9,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +82075,Ic7,EA063,?,EA063-NA,,,,,, +82076,Ic8,EA063,?,EA063-NA,,,,,, +82077,Ic9,EA063,?,EA063-NA,,,,,, +82078,Id1,EA063,Activity is absent,EA063-10,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +82079,Id10,EA063,Activity is absent,EA063-10,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +82080,Id11,EA063,Most adults,EA063-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +82081,Id12,EA063,Most adults,EA063-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +82082,Id13,EA063,Most adults,EA063-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +82083,Id2,EA063,Most adults,EA063-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +82084,Id3,EA063,Most adults,EA063-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +82085,Id4,EA063,Most adults,EA063-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +82086,Id5,EA063,Most adults,EA063-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +82087,Id6,EA063,Most adults,EA063-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +82088,Id7,EA063,Most adults,EA063-9,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +82089,Id8,EA063,Most adults,EA063-9,,roth1890,,1830,EthnographicAtlas_1967_p96, +82090,Id9,EA063,?,EA063-NA,,,,,, +82091,Ie1,EA063,Most adults,EA063-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82092,Ie10,EA063,Most adults,EA063-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +82093,Ie11,EA063,Most adults,EA063-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +82094,Ie12,EA063,Most adults,EA063-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82095,Ie13,EA063,Most adults,EA063-9,,landtman1927,,1920,EthnographicAtlas_1967_p96, +82096,Ie14,EA063,Most adults,EA063-9,,haddon1908,,1900,EthnographicAtlas_1967_p96, +82097,Ie15,EA063,?,EA063-NA,,,,,, +82098,Ie16,EA063,Most adults,EA063-9,,williams194041,,1940,EthnographicAtlas_1967_p96, +82099,Ie17,EA063,Activity is absent,EA063-10,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +82100,Ie18,EA063,Most adults,EA063-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +82101,Ie19,EA063,Most adults,EA063-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +82102,Ie2,EA063,Activity is absent,EA063-10,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +82103,Ie20,EA063,Most adults,EA063-9,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +82104,Ie21,EA063,Most adults,EA063-9,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +82105,Ie22,EA063,Most adults,EA063-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +82106,Ie23,EA063,Most adults,EA063-9,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +82107,Ie24,EA063,?,EA063-NA,,,,,, +82108,Ie25,EA063,Most adults,EA063-9,,williamson1912,,1920,EthnographicAtlas_1967_p96, +82109,Ie26,EA063,?,EA063-NA,,,,,, +82110,Ie27,EA063,Most adults,EA063-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +82111,Ie28,EA063,Most adults,EA063-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +82112,Ie29,EA063,Most adults,EA063-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82113,Ie3,EA063,Activity is absent,EA063-10,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82114,Ie30,EA063,Most adults,EA063-9,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +82115,Ie31,EA063,?,EA063-NA,,,,,, +82116,Ie32,EA063,Most adults,EA063-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +82117,Ie33,EA063,?,EA063-NA,,,,,, +82118,Ie34,EA063,?,EA063-NA,,,,,, +82119,Ie35,EA063,Most adults,EA063-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +82120,Ie36,EA063,?,EA063-NA,,,,,, +82121,Ie37,EA063,?,EA063-NA,,,,,, +82122,Ie38,EA063,Most adults,EA063-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +82123,Ie39,EA063,Most adults,EA063-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +82124,Ie4,EA063,Most adults,EA063-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82125,Ie5,EA063,Most adults,EA063-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +82126,Ie6,EA063,Most adults,EA063-9,,held1947,,1930,EthnographicAtlas_1967_p96, +82127,Ie7,EA063,Activity is absent,EA063-10,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +82128,Ie8,EA063,Most adults,EA063-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +82129,Ie9,EA063,Most adults,EA063-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +82130,If1,EA063,Most adults,EA063-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82131,If10,EA063,?,EA063-NA,,,,,, +82132,If11,EA063,Most adults,EA063-9,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +82133,If12,EA063,Most adults,EA063-9,,mason1954,,1940,EthnographicAtlas_1967_p100, +82134,If13,EA063,Most adults,EA063-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +82135,If14,EA063,Most adults,EA063-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +82136,If15,EA063,Most adults,EA063-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +82137,If16,EA063,Most adults,EA063-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +82138,If17,EA063,Most adults,EA063-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +82139,If2,EA063,Most adults,EA063-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +82140,If3,EA063,Most adults,EA063-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +82141,If4,EA063,Most adults,EA063-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +82142,If5,EA063,Most adults,EA063-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +82143,If6,EA063,Most adults,EA063-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +82144,If7,EA063,Most adults,EA063-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +82145,If8,EA063,Most adults,EA063-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +82146,If9,EA063,Most adults,EA063-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +82147,Ig1,EA063,Most adults,EA063-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +82148,Ig10,EA063,Activity is absent,EA063-10,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +82149,Ig11,EA063,Most adults,EA063-9,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +82150,Ig12,EA063,?,EA063-NA,,,,,, +82151,Ig13,EA063,Most adults,EA063-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +82152,Ig14,EA063,Most adults,EA063-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +82153,Ig15,EA063,?,EA063-NA,,,,,, +82154,Ig16,EA063,?,EA063-NA,,,,,, +82155,Ig17,EA063,?,EA063-NA,,,,,, +82156,Ig18,EA063,?,EA063-NA,,,,,, +82157,Ig19,EA063,?,EA063-NA,,,,,, +82158,Ig2,EA063,Most adults,EA063-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +82159,Ig20,EA063,Most adults,EA063-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +82160,Ig21,EA063,Most adults,EA063-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +82161,Ig3,EA063,Most adults,EA063-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +82162,Ig4,EA063,Most adults,EA063-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +82163,Ig5,EA063,Most adults,EA063-9,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +82164,Ig6,EA063,Most adults,EA063-9,,ivens1927,,1900,EthnographicAtlas_1967_p100, +82165,Ig7,EA063,Most adults,EA063-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +82166,Ig8,EA063,?,EA063-NA,,,,,, +82167,Ig9,EA063,Most adults,EA063-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +82168,Ih1,EA063,Most adults,EA063-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +82169,Ih10,EA063,?,EA063-NA,,,,,, +82170,Ih11,EA063,?,EA063-NA,,,,,, +82171,Ih12,EA063,?,EA063-NA,,,,,, +82172,Ih13,EA063,?,EA063-NA,,,,,, +82173,Ih14,EA063,Activity is absent,EA063-10,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +82174,Ih2,EA063,Most adults,EA063-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82175,Ih3,EA063,?,EA063-NA,,,,,, +82176,Ih4,EA063,Most adults,EA063-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82177,Ih5,EA063,?,EA063-NA,,,,,, +82178,Ih6,EA063,Most adults,EA063-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +82179,Ih7,EA063,Most adults,EA063-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +82180,Ih8,EA063,Most adults,EA063-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +82181,Ih9,EA063,Most adults,EA063-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82182,Ii1,EA063,Most adults,EA063-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +82183,Ii10,EA063,?,EA063-NA,,,,,, +82184,Ii12,EA063,Most adults,EA063-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82185,Ii13,EA063,Most adults,EA063-9,,burrows1937,,1830,EthnographicAtlas_1967_p100, +82186,Ii14,EA063,Most adults,EA063-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +82187,Ii2,EA063,Most adults,EA063-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +82188,Ii3,EA063,Most adults,EA063-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +82189,Ii4,EA063,Most adults,EA063-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +82190,Ii5,EA063,Most adults,EA063-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +82191,Ii6,EA063,Most adults,EA063-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +82192,Ii7,EA063,Most adults,EA063-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +82193,Ii8,EA063,Most adults,EA063-9,,burrows1936,,1840,EthnographicAtlas_1967_p100, +82194,Ii9,EA063,Most adults,EA063-9,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +82195,Ij1,EA063,Most adults,EA063-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +82196,Ij10,EA063,?,EA063-NA,,,,,, +82197,Ij2,EA063,Most adults,EA063-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +82198,Ij3,EA063,Most adults,EA063-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +82199,Ij4,EA063,Most adults,EA063-9,,buck1932a,,1850,EthnographicAtlas_1967_p104, +82200,Ij5,EA063,Most adults,EA063-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +82201,Ij6,EA063,Most adults,EA063-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +82202,Ij7,EA063,Most adults,EA063-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +82203,Ij8,EA063,Most adults,EA063-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +82204,Ij9,EA063,Most adults,EA063-9,,metraux1940,,1860,EthnographicAtlas_1967_p104, +82205,Na1,EA063,Most adults,EA063-9,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +82206,Na10,EA063,Most adults,EA063-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +82207,Na11,EA063,Most adults,EA063-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +82208,Na12,EA063,Most adults,EA063-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +82209,Na13,EA063,Most adults,EA063-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +82210,Na14,EA063,Most adults,EA063-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +82211,Na15,EA063,Most adults,EA063-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +82212,Na16,EA063,Most adults,EA063-9,,osgood1931,,1860,EthnographicAtlas_1967_p104, +82213,Na17,EA063,Most adults,EA063-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82214,Na19,EA063,Most adults,EA063-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +82215,Na2,EA063,Most adults,EA063-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +82216,Na20,EA063,Most adults,EA063-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +82217,Na21,EA063,Most adults,EA063-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +82218,Na22,EA063,Most adults,EA063-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +82219,Na23,EA063,Most adults,EA063-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +82220,Na24,EA063,Most adults,EA063-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +82221,Na25,EA063,Most adults,EA063-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +82222,Na26,EA063,Most adults,EA063-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +82223,Na27,EA063,Most adults,EA063-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +82224,Na28,EA063,Most adults,EA063-9,,jenness1937,,1880,EthnographicAtlas_1967_p104, +82225,Na29,EA063,?,EA063-NA,,,,,, +82226,Na3,EA063,Most adults,EA063-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +82227,Na30,EA063,Most adults,EA063-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +82228,Na31,EA063,Most adults,EA063-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +82229,Na32,EA063,Most adults,EA063-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +82230,Na33,EA063,Most adults,EA063-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +82231,Na34,EA063,Most adults,EA063-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +82232,Na35,EA063,Most adults,EA063-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +82233,Na36,EA063,Most adults,EA063-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +82234,Na37,EA063,Most adults,EA063-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +82235,Na38,EA063,Most adults,EA063-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +82236,Na39,EA063,Most adults,EA063-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +82237,Na4,EA063,Most adults,EA063-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +82238,Na40,EA063,Most adults,EA063-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +82239,Na41,EA063,Most adults,EA063-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +82240,Na42,EA063,?,EA063-NA,,,,,, +82241,Na43,EA063,Most adults,EA063-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +82242,Na44,EA063,?,EA063-NA,,,,,, +82243,Na45,EA063,Most adults,EA063-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +82244,Na5,EA063,?,EA063-NA,,,,,, +82245,Na6,EA063,Most adults,EA063-9,,lantis1946,,1930,EthnographicAtlas_1967_p104, +82246,Na7,EA063,Most adults,EA063-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +82247,Na8,EA063,Most adults,EA063-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +82248,Na9,EA063,Most adults,EA063-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82249,Nb1,EA063,Most adults,EA063-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +82250,Nb10,EA063,Most adults,EA063-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +82251,Nb11,EA063,Most adults,EA063-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +82252,Nb12,EA063,Most adults,EA063-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +82253,Nb13,EA063,Most adults,EA063-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +82254,Nb14,EA063,Most adults,EA063-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +82255,Nb15,EA063,Most adults,EA063-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +82256,Nb16,EA063,Most adults,EA063-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +82257,Nb17,EA063,Most adults,EA063-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +82258,Nb18,EA063,Most adults,EA063-9,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +82259,Nb19,EA063,Most adults,EA063-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +82260,Nb2,EA063,Most adults,EA063-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +82261,Nb20,EA063,Most adults,EA063-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +82262,Nb21,EA063,?,EA063-NA,,,,,, +82263,Nb22,EA063,Most adults,EA063-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +82264,Nb23,EA063,Most adults,EA063-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +82265,Nb24,EA063,Most adults,EA063-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +82266,Nb25,EA063,Most adults,EA063-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +82267,Nb26,EA063,Most adults,EA063-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +82268,Nb27,EA063,Most adults,EA063-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +82269,Nb28,EA063,Most adults,EA063-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +82270,Nb29,EA063,?,EA063-NA,,,,,, +82271,Nb3,EA063,Most adults,EA063-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +82272,Nb30,EA063,?,EA063-NA,,,,,, +82273,Nb31,EA063,Most adults,EA063-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +82274,Nb32,EA063,Most adults,EA063-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +82275,Nb33,EA063,Most adults,EA063-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +82276,Nb34,EA063,Most adults,EA063-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +82277,Nb35,EA063,Most adults,EA063-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +82278,Nb36,EA063,Most adults,EA063-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +82279,Nb37,EA063,Most adults,EA063-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +82280,Nb38,EA063,Most adults,EA063-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +82281,Nb39,EA063,Most adults,EA063-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +82282,Nb4,EA063,Most adults,EA063-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +82283,Nb5,EA063,Most adults,EA063-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +82284,Nb6,EA063,Most adults,EA063-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +82285,Nb7,EA063,Most adults,EA063-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +82286,Nb8,EA063,Most adults,EA063-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +82287,Nb9,EA063,Most adults,EA063-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +82288,Nc1,EA063,Most adults,EA063-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +82289,Nc10,EA063,Most adults,EA063-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +82290,Nc11,EA063,Most adults,EA063-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +82291,Nc12,EA063,Most adults,EA063-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +82292,Nc13,EA063,Most adults,EA063-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +82293,Nc14,EA063,Most adults,EA063-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +82294,Nc15,EA063,Most adults,EA063-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +82295,Nc16,EA063,Most adults,EA063-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +82296,Nc17,EA063,Most adults,EA063-9,Essene reports that women engage in fishing,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +82297,Nc18,EA063,Most adults,EA063-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +82298,Nc19,EA063,?,EA063-NA,,,,,, +82299,Nc2,EA063,Most adults,EA063-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +82300,Nc20,EA063,Most adults,EA063-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +82301,Nc21,EA063,?,EA063-NA,,,,,, +82302,Nc22,EA063,?,EA063-NA,,,,,, +82303,Nc23,EA063,?,EA063-NA,,,,,, +82304,Nc24,EA063,?,EA063-NA,,,,,, +82305,Nc25,EA063,Most adults,EA063-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +82306,Nc26,EA063,?,EA063-NA,,,,,, +82307,Nc27,EA063,?,EA063-NA,,,,,, +82308,Nc28,EA063,?,EA063-NA,,,,,, +82309,Nc29,EA063,?,EA063-NA,,,,,, +82310,Nc3,EA063,Most adults,EA063-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +82311,Nc30,EA063,?,EA063-NA,,,,,, +82312,Nc31,EA063,Most adults,EA063-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +82313,Nc32,EA063,?,EA063-NA,,,,,, +82314,Nc33,EA063,?,EA063-NA,,,,,, +82315,Nc34,EA063,?,EA063-NA,,,,,, +82316,Nc4,EA063,Most adults,EA063-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +82317,Nc5,EA063,?,EA063-NA,,,,,, +82318,Nc6,EA063,Activity is absent,EA063-10,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +82319,Nc7,EA063,Most adults,EA063-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +82320,Nc8,EA063,Most adults,EA063-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +82321,Nc9,EA063,Most adults,EA063-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +82322,Nd1,EA063,Most adults,EA063-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +82323,Nd10,EA063,Most adults,EA063-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +82324,Nd11,EA063,Most adults,EA063-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +82325,Nd12,EA063,Most adults,EA063-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +82326,Nd13,EA063,Most adults,EA063-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +82327,Nd14,EA063,Most adults,EA063-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +82328,Nd15,EA063,Most adults,EA063-9,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +82329,Nd16,EA063,Most adults,EA063-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +82330,Nd17,EA063,Most adults,EA063-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +82331,Nd18,EA063,Most adults,EA063-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +82332,Nd19,EA063,Most adults,EA063-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +82333,Nd2,EA063,Most adults,EA063-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +82334,Nd20,EA063,Most adults,EA063-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +82335,Nd21,EA063,Most adults,EA063-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +82336,Nd22,EA063,Most adults,EA063-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +82337,Nd23,EA063,Most adults,EA063-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +82338,Nd24,EA063,Most adults,EA063-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +82339,Nd25,EA063,Most adults,EA063-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +82340,Nd26,EA063,Most adults,EA063-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +82341,Nd27,EA063,Most adults,EA063-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +82342,Nd28,EA063,Most adults,EA063-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +82343,Nd29,EA063,Most adults,EA063-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +82344,Nd3,EA063,Activity is absent,EA063-10,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +82345,Nd30,EA063,Most adults,EA063-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +82346,Nd31,EA063,Activity is absent,EA063-10,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +82347,Nd32,EA063,Activity is absent,EA063-10,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +82348,Nd33,EA063,Activity is absent,EA063-10,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +82349,Nd34,EA063,Activity is absent,EA063-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +82350,Nd35,EA063,Most adults,EA063-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +82351,Nd36,EA063,Activity is absent,EA063-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +82352,Nd37,EA063,Most adults,EA063-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +82353,Nd38,EA063,Most adults,EA063-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +82354,Nd39,EA063,Activity is absent,EA063-10,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +82355,Nd4,EA063,Most adults,EA063-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +82356,Nd40,EA063,?,EA063-NA,,,,,, +82357,Nd41,EA063,?,EA063-NA,,,,,, +82358,Nd42,EA063,Most adults,EA063-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +82359,Nd43,EA063,Most adults,EA063-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +82360,Nd44,EA063,Most adults,EA063-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +82361,Nd45,EA063,Most adults,EA063-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +82362,Nd46,EA063,Most adults,EA063-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +82363,Nd47,EA063,Most adults,EA063-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +82364,Nd48,EA063,?,EA063-NA,,,,,, +82365,Nd49,EA063,?,EA063-NA,,,,,, +82366,Nd5,EA063,?,EA063-NA,,,,,, +82367,Nd50,EA063,?,EA063-NA,,,,,, +82368,Nd51,EA063,?,EA063-NA,,,,,, +82369,Nd52,EA063,Activity is absent,EA063-10,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +82370,Nd53,EA063,Activity is absent,EA063-10,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +82371,Nd54,EA063,Activity is absent,EA063-10,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82372,Nd55,EA063,Activity is absent,EA063-10,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +82373,Nd56,EA063,Most adults,EA063-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +82374,Nd57,EA063,?,EA063-NA,,,,,, +82375,Nd58,EA063,Most adults,EA063-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +82376,Nd59,EA063,?,EA063-NA,,,,,, +82377,Nd6,EA063,Most adults,EA063-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +82378,Nd60,EA063,?,EA063-NA,,,,,, +82379,Nd61,EA063,?,EA063-NA,,,,,, +82380,Nd62,EA063,Most adults,EA063-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +82381,Nd63,EA063,Most adults,EA063-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +82382,Nd64,EA063,Most adults,EA063-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +82383,Nd65,EA063,Activity is absent,EA063-10,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +82384,Nd66,EA063,Activity is absent,EA063-10,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +82385,Nd67,EA063,Activity is absent,EA063-10,,gifford1936,,1870,EthnographicAtlas_1967_p112, +82386,Nd7,EA063,Most adults,EA063-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +82387,Nd8,EA063,Most adults,EA063-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +82388,Nd9,EA063,Most adults,EA063-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +82389,Ne1,EA063,Activity is absent,EA063-10,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +82390,Ne10,EA063,Most adults,EA063-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +82391,Ne11,EA063,Most adults,EA063-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +82392,Ne12,EA063,Activity is absent,EA063-10,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +82393,Ne13,EA063,Activity is absent,EA063-10,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +82394,Ne14,EA063,Most adults,EA063-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +82395,Ne15,EA063,?,EA063-NA,,,,,, +82396,Ne16,EA063,Most adults,EA063-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +82397,Ne17,EA063,Activity is absent,EA063-10,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +82398,Ne18,EA063,Activity is absent,EA063-10,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +82399,Ne19,EA063,Most adults,EA063-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +82400,Ne2,EA063,Activity is absent,EA063-10,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +82401,Ne20,EA063,Most adults,EA063-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +82402,Ne21,EA063,?,EA063-NA,,,,,, +82403,Ne3,EA063,Activity is absent,EA063-10,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +82404,Ne4,EA063,Activity is absent,EA063-10,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +82405,Ne5,EA063,Activity is absent,EA063-10,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +82406,Ne6,EA063,Most adults,EA063-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +82407,Ne7,EA063,Most adults,EA063-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +82408,Ne8,EA063,Most adults,EA063-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +82409,Ne9,EA063,Activity is absent,EA063-10,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +82410,Nf10,EA063,?,EA063-NA,,,,,, +82411,Nf11,EA063,Most adults,EA063-9,,whitman1937,,1870,EthnographicAtlas_1967_p116, +82412,Nf12,EA063,Most adults,EA063-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +82413,Nf13,EA063,?,EA063-NA,,,,,, +82414,Nf14,EA063,?,EA063-NA,,,,,, +82415,Nf15,EA063,?,EA063-NA,,,,,, +82416,Nf2,EA063,Most adults,EA063-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +82417,Nf3,EA063,Most adults,EA063-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +82418,Nf4,EA063,?,EA063-NA,,,,,, +82419,Nf5,EA063,Activity is absent,EA063-10,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +82420,Nf6,EA063,?,EA063-NA,,,,,, +82421,Nf7,EA063,?,EA063-NA,,,,,, +82422,Nf8,EA063,?,EA063-NA,,,,,, +82423,Nf9,EA063,Most adults,EA063-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +82424,Ng1,EA063,Most adults,EA063-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +82425,Ng10,EA063,Most adults,EA063-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +82426,Ng11,EA063,Most adults,EA063-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +82427,Ng12,EA063,?,EA063-NA,,,,,, +82428,Ng13,EA063,?,EA063-NA,,,,,, +82429,Ng14,EA063,?,EA063-NA,,,,,, +82430,Ng15,EA063,?,EA063-NA,,,,,, +82431,Ng2,EA063,?,EA063-NA,,,,,, +82432,Ng3,EA063,Most adults,EA063-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +82433,Ng4,EA063,?,EA063-NA,,,,,, +82434,Ng5,EA063,Most adults,EA063-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +82435,Ng6,EA063,Most adults,EA063-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +82436,Ng7,EA063,Most adults,EA063-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +82437,Ng8,EA063,?,EA063-NA,,,,,, +82438,Ng9,EA063,?,EA063-NA,,,,,, +82439,Nh1,EA063,Activity is absent,EA063-10,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +82440,Nh10,EA063,Activity is absent,EA063-10,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p116, +82441,Nh11,EA063,?,EA063-NA,,,,,, +82442,Nh12,EA063,Activity is absent,EA063-10,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +82443,Nh13,EA063,Activity is absent,EA063-10,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +82444,Nh14,EA063,?,EA063-NA,,,,,, +82445,Nh15,EA063,?,EA063-NA,,,,,, +82446,Nh16,EA063,?,EA063-NA,,,,,, +82447,Nh17,EA063,Activity is absent,EA063-10,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +82448,Nh18,EA063,Activity is absent,EA063-10,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82449,Nh19,EA063,?,EA063-NA,,,,,, +82450,Nh2,EA063,Activity is absent,EA063-10,,dozier1954,,1950,EthnographicAtlas_1967_p116, +82451,Nh20,EA063,?,EA063-NA,,,,,, +82452,Nh21,EA063,?,EA063-NA,,,,,, +82453,Nh22,EA063,?,EA063-NA,,,,,, +82454,Nh23,EA063,Most adults,EA063-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +82455,Nh24,EA063,Activity is absent,EA063-10,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +82456,Nh25,EA063,Activity is absent,EA063-10,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +82457,Nh26,EA063,?,EA063-NA,,,,,, +82458,Nh27,EA063,?,EA063-NA,,,,,, +82459,Nh3,EA063,Activity is absent,EA063-10,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +82460,Nh4,EA063,Activity is absent,EA063-10,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +82461,Nh5,EA063,Most adults,EA063-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +82462,Nh6,EA063,Activity is absent,EA063-10,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +82463,Nh7,EA063,Most adults,EA063-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +82464,Nh8,EA063,Activity is absent,EA063-10,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +82465,Nh9,EA063,Activity is absent,EA063-10,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p116, +82466,Ni1,EA063,Activity is absent,EA063-10,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +82467,Ni2,EA063,Activity is absent,EA063-10,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +82468,Ni3,EA063,Most adults,EA063-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +82469,Ni4,EA063,?,EA063-NA,,,,,, +82470,Ni5,EA063,?,EA063-NA,,,,,, +82471,Ni6,EA063,?,EA063-NA,,,,,, +82472,Ni7,EA063,Most adults,EA063-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +82473,Ni8,EA063,?,EA063-NA,,,,,, +82474,Ni9,EA063,?,EA063-NA,,,,,, +82475,Nj1,EA063,Activity is absent,EA063-10,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82476,Nj10,EA063,Most adults,EA063-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82477,Nj11,EA063,?,EA063-NA,,,,,, +82478,Nj12,EA063,?,EA063-NA,,,,,, +82479,Nj13,EA063,?,EA063-NA,,,,,, +82480,Nj14,EA063,?,EA063-NA,,,,,, +82481,Nj2,EA063,Craft,EA063-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +82482,Nj3,EA063,Most adults,EA063-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +82483,Nj4,EA063,Most adults,EA063-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +82484,Nj5,EA063,?,EA063-NA,,,,,, +82485,Nj6,EA063,?,EA063-NA,,,,,, +82486,Nj7,EA063,Most adults,EA063-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82487,Nj8,EA063,?,EA063-NA,,,,,, +82488,Nj9,EA063,Activity is absent,EA063-10,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +82489,Sa1,EA063,Most adults,EA063-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +82490,Sa10,EA063,Most adults,EA063-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +82491,Sa11,EA063,?,EA063-NA,,,,,, +82492,Sa12,EA063,Most adults,EA063-9,,stone1948,,1948,EthnographicAtlas_1967_p120, +82493,Sa13,EA063,Most adults,EA063-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +82494,Sa14,EA063,?,EA063-NA,,,,,, +82495,Sa15,EA063,?,EA063-NA,,,,,, +82496,Sa16,EA063,?,EA063-NA,,,,,, +82497,Sa17,EA063,?,EA063-NA,,,,,, +82498,Sa2,EA063,?,EA063-NA,,,,,, +82499,Sa3,EA063,Most adults,EA063-9,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +82500,Sa4,EA063,Most adults,EA063-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +82501,Sa5,EA063,Most adults,EA063-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +82502,Sa6,EA063,Most adults,EA063-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +82503,Sa7,EA063,Most adults,EA063-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +82504,Sa8,EA063,?,EA063-NA,,,,,, +82505,Sa9,EA063,Most adults,EA063-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +82506,Sb1,EA063,Most adults,EA063-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +82507,Sb2,EA063,Most adults,EA063-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +82508,Sb3,EA063,?,EA063-NA,,,,,, +82509,Sb4,EA063,Activity is absent,EA063-10,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +82510,Sb5,EA063,?,EA063-NA,,,,,, +82511,Sb6,EA063,Most adults,EA063-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +82512,Sb7,EA063,Most adults,EA063-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +82513,Sb8,EA063,Most adults,EA063-9,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +82514,Sb9,EA063,Activity is absent,EA063-10,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +82515,Sc1,EA063,Most adults,EA063-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +82516,Sc10,EA063,?,EA063-NA,,,,,, +82517,Sc11,EA063,Most adults,EA063-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +82518,Sc12,EA063,Most adults,EA063-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +82519,Sc13,EA063,Most adults,EA063-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +82520,Sc14,EA063,Most adults,EA063-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +82521,Sc15,EA063,?,EA063-NA,,,,,, +82522,Sc16,EA063,Most adults,EA063-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +82523,Sc17,EA063,Most adults,EA063-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +82524,Sc18,EA063,Most adults,EA063-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +82525,Sc2,EA063,Most adults,EA063-9,,leedsnd,,1950,EthnographicAtlas_1967_p120, +82526,Sc3,EA063,Most adults,EA063-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +82527,Sc4,EA063,Most adults,EA063-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +82528,Sc5,EA063,Most adults,EA063-9,,farabee1918,,1900,EthnographicAtlas_1967_p120, +82529,Sc6,EA063,Most adults,EA063-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82530,Sc7,EA063,Most adults,EA063-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +82531,Sc8,EA063,Most adults,EA063-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +82532,Sc9,EA063,Most adults,EA063-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +82533,Sd1,EA063,Most adults,EA063-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82534,Sd2,EA063,Most adults,EA063-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +82535,Sd3,EA063,Most adults,EA063-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +82536,Sd4,EA063,Most adults,EA063-9,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +82537,Sd5,EA063,Most adults,EA063-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +82538,Sd6,EA063,Most adults,EA063-9,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +82539,Sd7,EA063,Most adults,EA063-9,,fock1963,,1950,EthnographicAtlas_1967_p120, +82540,Sd8,EA063,?,EA063-NA,,,,,, +82541,Sd9,EA063,Most adults,EA063-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82542,Se1,EA063,Most adults,EA063-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +82543,Se10,EA063,?,EA063-NA,,,,,, +82544,Se11,EA063,Most adults,EA063-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +82545,Se12,EA063,?,EA063-NA,,,,,, +82546,Se2,EA063,Most adults,EA063-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +82547,Se3,EA063,Most adults,EA063-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +82548,Se4,EA063,Most adults,EA063-9,,fejos1943,,1940,EthnographicAtlas_1967_p120, +82549,Se5,EA063,Most adults,EA063-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +82550,Se6,EA063,Most adults,EA063-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +82551,Se7,EA063,?,EA063-NA,,,,,, +82552,Se8,EA063,Most adults,EA063-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +82553,Se9,EA063,Most adults,EA063-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +82554,Sf1,EA063,Activity is absent,EA063-10,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +82555,Sf2,EA063,Most adults,EA063-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +82556,Sf3,EA063,Most adults,EA063-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +82557,Sf4,EA063,Most adults,EA063-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +82558,Sf5,EA063,Activity is absent,EA063-10,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +82559,Sf6,EA063,?,EA063-NA,,,,,, +82560,Sf7,EA063,Most adults,EA063-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +82561,Sf8,EA063,?,EA063-NA,,,,,, +82562,Sf9,EA063,?,EA063-NA,,,,,, +82563,Sg1,EA063,Most adults,EA063-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +82564,Sg2,EA063,Most adults,EA063-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82565,Sg3,EA063,Most adults,EA063-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +82566,Sg4,EA063,?,EA063-NA,,,,,, +82567,Sg5,EA063,Most adults,EA063-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82568,Sh1,EA063,Most adults,EA063-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +82569,Sh2,EA063,Most adults,EA063-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +82570,Sh3,EA063,Most adults,EA063-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +82571,Sh4,EA063,Most adults,EA063-9,,oberg1949,,1940,EthnographicAtlas_1967_p124, +82572,Sh5,EA063,Most adults,EA063-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +82573,Sh6,EA063,?,EA063-NA,,,,,, +82574,Sh7,EA063,Most adults,EA063-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +82575,Sh8,EA063,Most adults,EA063-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +82576,Sh9,EA063,Most adults,EA063-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +82577,Si1,EA063,Most adults,EA063-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82578,Si10,EA063,Most adults,EA063-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +82579,Si2,EA063,Most adults,EA063-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +82580,Si3,EA063,Most adults,EA063-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82581,Si4,EA063,Most adults,EA063-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +82582,Si5,EA063,Most adults,EA063-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +82583,Si6,EA063,Most adults,EA063-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +82584,Si7,EA063,?,EA063-NA,,,,,, +82585,Si8,EA063,Most adults,EA063-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +82586,Si9,EA063,?,EA063-NA,,,,,, +82587,Sj1,EA063,?,EA063-NA,,,,,, +82588,Sj10,EA063,Most adults,EA063-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82589,Sj11,EA063,Most adults,EA063-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +82590,Sj2,EA063,Most adults,EA063-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +82591,Sj3,EA063,Activity is absent,EA063-10,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +82592,Sj4,EA063,Most adults,EA063-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +82593,Sj5,EA063,Most adults,EA063-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +82594,Sj6,EA063,?,EA063-NA,,,,,, +82595,Sj7,EA063,Most adults,EA063-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +82596,Sj8,EA063,Most adults,EA063-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +82597,Sj9,EA063,Most adults,EA063-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +82598,ch12,EA063,Most adults,EA063-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +82599,ch13,EA063,Activity is absent,EA063-10,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +82600,ch14,EA063,Most adults,EA063-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +82601,ch15,EA063,Most adults,EA063-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +82602,ch16,EA063,Most adults,EA063-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +82603,ch17,EA063,Most adults,EA063-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +82604,ch18,EA063,Craft,EA063-3,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +82605,ch19,EA063,Most adults,EA063-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +82606,ch20,EA063,Most adults,EA063-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +82607,ch21,EA063,Craft,EA063-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +82608,ch22,EA063,Activity is absent,EA063-10,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +82609,ch23,EA063,Activity is absent,EA063-10,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +82610,ch24,EA063,Most adults,EA063-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +82611,ch25,EA063,Most adults,EA063-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +82612,ch26,EA063,Most adults,EA063-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +82613,ch27,EA063,Craft,EA063-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +82614,ch28,EA063,Craft,EA063-3,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +82615,ec12,EA063,Most adults,EA063-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +82616,ec13,EA063,Most adults,EA063-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +82617,ec14,EA063,Most adults,EA063-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +82618,ec15,EA063,Most adults,EA063-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +82619,ec16,EA063,Most adults,EA063-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +82620,ec17,EA063,Most adults,EA063-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +82621,ec18,EA063,Most adults,EA063-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +82622,ec19,EA063,Most adults,EA063-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +82623,ec20,EA063,Most adults,EA063-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +82624,ec21,EA063,Most adults,EA063-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +82625,Aa1,EA064,Activity is absent,EA064-10,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +82626,Aa2,EA064,Activity is absent,EA064-10,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +82627,Aa3,EA064,Most adults,EA064-9,Women milk and children do most of the herding,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +82628,Aa4,EA064,?,EA064-NA,,,,,, +82629,Aa5,EA064,Activity is absent,EA064-10,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +82630,Aa6,EA064,Most adults,EA064-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p64, +82631,Aa7,EA064,Activity is absent,EA064-10,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +82632,Aa8,EA064,Activity is absent,EA064-10,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +82633,Aa9,EA064,Activity is absent,EA064-10,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +82634,Ab1,EA064,Most adults,EA064-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +82635,Ab10,EA064,Most adults,EA064-9,,hunter1936,,1936,EthnographicAtlas_1967_p64, +82636,Ab11,EA064,Most adults,EA064-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +82637,Ab12,EA064,Most adults,EA064-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +82638,Ab13,EA064,Most adults,EA064-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +82639,Ab14,EA064,Most adults,EA064-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +82640,Ab15,EA064,Most adults,EA064-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +82641,Ab16,EA064,Junior age,EA064-1,,earthy1933,,1930,EthnographicAtlas_1967_p64, +82642,Ab17,EA064,?,EA064-NA,,,,,, +82643,Ab18,EA064,Most adults,EA064-9,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +82644,Ab19,EA064,Junior age,EA064-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +82645,Ab2,EA064,Most adults,EA064-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +82646,Ab20,EA064,?,EA064-NA,,,,,, +82647,Ab21a,EA064,?,EA064-NA,,,,,, +82648,Ab21b,EA064,?,EA064-NA,,,,,, +82649,Ab22,EA064,?,EA064-NA,,,,,, +82650,Ab3,EA064,Most adults,EA064-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +82651,Ab4,EA064,Most adults,EA064-9,,junod1927,,1920,EthnographicAtlas_1967_p64, +82652,Ab5,EA064,Most adults,EA064-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +82653,Ab6,EA064,Most adults,EA064-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +82654,Ab7,EA064,Most adults,EA064-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p64, +82655,Ab8,EA064,Most adults,EA064-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +82656,Ab9,EA064,Most adults,EA064-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +82657,Ac1,EA064,Most adults,EA064-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +82658,Ac10,EA064,Most adults,EA064-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +82659,Ac11,EA064,?,EA064-NA,,,,,, +82660,Ac12,EA064,?,EA064-NA,,,,,, +82661,Ac13,EA064,?,EA064-NA,,,,,, +82662,Ac14,EA064,?,EA064-NA,,,,,, +82663,Ac15,EA064,?,EA064-NA,,,,,, +82664,Ac16,EA064,?,EA064-NA,,,,,, +82665,Ac17,EA064,?,EA064-NA,,,,,, +82666,Ac18,EA064,Most adults,EA064-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +82667,Ac19,EA064,?,EA064-NA,,,,,, +82668,Ac2,EA064,?,EA064-NA,,,,,, +82669,Ac20,EA064,?,EA064-NA,,,,,, +82670,Ac21,EA064,?,EA064-NA,,,,,, +82671,Ac22,EA064,Most adults,EA064-9,,mertens1935,,1930,EthnographicAtlas_1967_p64, +82672,Ac23,EA064,?,EA064-NA,,,,,, +82673,Ac24,EA064,?,EA064-NA,,,,,, +82674,Ac25,EA064,?,EA064-NA,,,,,, +82675,Ac26,EA064,?,EA064-NA,,,,,, +82676,Ac27,EA064,?,EA064-NA,,,,,, +82677,Ac28,EA064,?,EA064-NA,,,,,, +82678,Ac29,EA064,?,EA064-NA,,,,,, +82679,Ac3,EA064,?,EA064-NA,,,,,, +82680,Ac30,EA064,Most adults,EA064-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +82681,Ac31,EA064,?,EA064-NA,,,,,, +82682,Ac32,EA064,?,EA064-NA,,,,,, +82683,Ac33,EA064,Most adults,EA064-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +82684,Ac34,EA064,?,EA064-NA,,,,,, +82685,Ac35,EA064,?,EA064-NA,,,,,, +82686,Ac36,EA064,?,EA064-NA,,,,,, +82687,Ac37,EA064,?,EA064-NA,,,,,, +82688,Ac38,EA064,?,EA064-NA,,,,,, +82689,Ac39,EA064,?,EA064-NA,,,,,, +82690,Ac4,EA064,Activity is absent,EA064-10,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +82691,Ac40,EA064,?,EA064-NA,,,,,, +82692,Ac41,EA064,?,EA064-NA,,,,,, +82693,Ac42,EA064,?,EA064-NA,,,,,, +82694,Ac43,EA064,?,EA064-NA,,,,,, +82695,Ac5,EA064,Activity is absent,EA064-10,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +82696,Ac6,EA064,?,EA064-NA,,,,,, +82697,Ac7,EA064,?,EA064-NA,,,,,, +82698,Ac8,EA064,?,EA064-NA,,,,,, +82699,Ac9,EA064,Most adults,EA064-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +82700,Ad1,EA064,Most adults,EA064-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +82701,Ad10,EA064,Most adults,EA064-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +82702,Ad11,EA064,Most adults,EA064-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +82703,Ad12,EA064,?,EA064-NA,,,,,, +82704,Ad13,EA064,Most adults,EA064-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +82705,Ad14,EA064,?,EA064-NA,,,,,, +82706,Ad15,EA064,Most adults,EA064-9,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p68, +82707,Ad16,EA064,Most adults,EA064-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +82708,Ad17,EA064,Most adults,EA064-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +82709,Ad18,EA064,?,EA064-NA,,,,,, +82710,Ad19,EA064,Most adults,EA064-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +82711,Ad2,EA064,Most adults,EA064-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +82712,Ad20,EA064,Most adults,EA064-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +82713,Ad21,EA064,Most adults,EA064-9,,maurice193538,,1930,EthnographicAtlas_1967_p68, +82714,Ad22,EA064,Most adults,EA064-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +82715,Ad23,EA064,?,EA064-NA,,,,,, +82716,Ad24,EA064,Most adults,EA064-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +82717,Ad25,EA064,?,EA064-NA,,,,,, +82718,Ad26,EA064,Most adults,EA064-9,,sick1916,,1910,EthnographicAtlas_1967_p68, +82719,Ad27,EA064,?,EA064-NA,,,,,, +82720,Ad28,EA064,?,EA064-NA,,,,,, +82721,Ad29,EA064,Most adults,EA064-9,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +82722,Ad3,EA064,Most adults,EA064-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +82723,Ad30,EA064,Most adults,EA064-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +82724,Ad31,EA064,Most adults,EA064-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +82725,Ad32,EA064,Most adults,EA064-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p68, +82726,Ad33,EA064,Activity is absent,EA064-10,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +82727,Ad34,EA064,Most adults,EA064-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +82728,Ad35,EA064,Most adults,EA064-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +82729,Ad36,EA064,?,EA064-NA,,,,,, +82730,Ad37,EA064,?,EA064-NA,,,,,, +82731,Ad38,EA064,?,EA064-NA,,,,,, +82732,Ad39,EA064,Most adults,EA064-9,,gray1963,,1950,EthnographicAtlas_1967_p68, +82733,Ad4,EA064,Most adults,EA064-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +82734,Ad40,EA064,?,EA064-NA,,,,,, +82735,Ad41,EA064,Most adults,EA064-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +82736,Ad42,EA064,Most adults,EA064-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p68, +82737,Ad43,EA064,?,EA064-NA,,,,,, +82738,Ad44,EA064,Most adults,EA064-9,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +82739,Ad45,EA064,Most adults,EA064-9,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +82740,Ad46,EA064,Most adults,EA064-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +82741,Ad47,EA064,Most adults,EA064-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +82742,Ad48,EA064,Most adults,EA064-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +82743,Ad49,EA064,Most adults,EA064-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +82744,Ad5,EA064,?,EA064-NA,,,,,, +82745,Ad50,EA064,Most adults,EA064-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +82746,Ad51,EA064,?,EA064-NA,,,,,, +82747,Ad6,EA064,Most adults,EA064-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +82748,Ad7,EA064,Most adults,EA064-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +82749,Ad8,EA064,Most adults,EA064-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +82750,Ad9,EA064,Most adults,EA064-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +82751,Ae1,EA064,Most adults,EA064-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +82752,Ae10,EA064,Most adults,EA064-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +82753,Ae11,EA064,?,EA064-NA,,,,,, +82754,Ae12,EA064,?,EA064-NA,,,,,, +82755,Ae13,EA064,?,EA064-NA,,,,,, +82756,Ae14,EA064,Most adults,EA064-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +82757,Ae15,EA064,Most adults,EA064-9,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p68, +82758,Ae16,EA064,?,EA064-NA,,,,,, +82759,Ae17,EA064,?,EA064-NA,,,,,, +82760,Ae18,EA064,Most adults,EA064-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +82761,Ae19,EA064,?,EA064-NA,,,,,, +82762,Ae2,EA064,Most adults,EA064-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +82763,Ae20,EA064,?,EA064-NA,,,,,, +82764,Ae21,EA064,?,EA064-NA,,,,,, +82765,Ae22,EA064,?,EA064-NA,,,,,, +82766,Ae23,EA064,?,EA064-NA,,,,,, +82767,Ae24,EA064,?,EA064-NA,,,,,, +82768,Ae25,EA064,?,EA064-NA,,,,,, +82769,Ae26,EA064,?,EA064-NA,,,,,, +82770,Ae27,EA064,?,EA064-NA,,,,,, +82771,Ae28,EA064,?,EA064-NA,,,,,, +82772,Ae29,EA064,?,EA064-NA,,,,,, +82773,Ae3,EA064,Most adults,EA064-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +82774,Ae30,EA064,?,EA064-NA,,,,,, +82775,Ae31,EA064,?,EA064-NA,,,,,, +82776,Ae32,EA064,?,EA064-NA,,,,,, +82777,Ae33,EA064,?,EA064-NA,,,,,, +82778,Ae34,EA064,?,EA064-NA,,,,,, +82779,Ae35,EA064,?,EA064-NA,,,,,, +82780,Ae36,EA064,?,EA064-NA,,,,,, +82781,Ae37,EA064,?,EA064-NA,,,,,, +82782,Ae38,EA064,?,EA064-NA,,,,,, +82783,Ae39,EA064,Most adults,EA064-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +82784,Ae4,EA064,Activity is absent,EA064-10,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +82785,Ae40,EA064,?,EA064-NA,,,,,, +82786,Ae41,EA064,?,EA064-NA,,,,,, +82787,Ae42,EA064,?,EA064-NA,,,,,, +82788,Ae43,EA064,?,EA064-NA,,,,,, +82789,Ae44,EA064,?,EA064-NA,,,,,, +82790,Ae45,EA064,?,EA064-NA,,,,,, +82791,Ae46,EA064,?,EA064-NA,,,,,, +82792,Ae47,EA064,?,EA064-NA,,,,,, +82793,Ae48,EA064,?,EA064-NA,,,,,, +82794,Ae49,EA064,?,EA064-NA,,,,,, +82795,Ae5,EA064,?,EA064-NA,,,,,, +82796,Ae50,EA064,Most adults,EA064-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +82797,Ae51,EA064,Most adults,EA064-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +82798,Ae52,EA064,?,EA064-NA,,,,,, +82799,Ae53,EA064,?,EA064-NA,,,,,, +82800,Ae54,EA064,?,EA064-NA,,,,,, +82801,Ae55,EA064,?,EA064-NA,,,,,, +82802,Ae56,EA064,?,EA064-NA,,,,,, +82803,Ae57,EA064,?,EA064-NA,,,,,, +82804,Ae58,EA064,?,EA064-NA,,,,,, +82805,Ae59,EA064,?,EA064-NA,,,,,, +82806,Ae6,EA064,?,EA064-NA,,,,,, +82807,Ae7,EA064,?,EA064-NA,,,,,, +82808,Ae8,EA064,Most adults,EA064-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +82809,Ae9,EA064,?,EA064-NA,,,,,, +82810,Af1,EA064,Most adults,EA064-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +82811,Af10,EA064,Most adults,EA064-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +82812,Af11,EA064,?,EA064-NA,,,,,, +82813,Af12,EA064,?,EA064-NA,,,,,, +82814,Af13,EA064,?,EA064-NA,,,,,, +82815,Af14,EA064,?,EA064-NA,,,,,, +82816,Af15,EA064,?,EA064-NA,,,,,, +82817,Af16,EA064,?,EA064-NA,,,,,, +82818,Af17,EA064,?,EA064-NA,,,,,, +82819,Af18,EA064,?,EA064-NA,,,,,, +82820,Af19,EA064,Most adults,EA064-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p72, +82821,Af2,EA064,Most adults,EA064-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +82822,Af20,EA064,Most adults,EA064-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +82823,Af21,EA064,?,EA064-NA,,,,,, +82824,Af22,EA064,?,EA064-NA,,,,,, +82825,Af23,EA064,?,EA064-NA,,,,,, +82826,Af24,EA064,?,EA064-NA,,,,,, +82827,Af25,EA064,?,EA064-NA,,,,,, +82828,Af26,EA064,?,EA064-NA,,,,,, +82829,Af27,EA064,?,EA064-NA,,,,,, +82830,Af28,EA064,?,EA064-NA,,,,,, +82831,Af29,EA064,?,EA064-NA,,,,,, +82832,Af3,EA064,?,EA064-NA,,,,,, +82833,Af30,EA064,?,EA064-NA,,,,,, +82834,Af31,EA064,?,EA064-NA,,,,,, +82835,Af32,EA064,Most adults,EA064-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82836,Af33,EA064,?,EA064-NA,,,,,, +82837,Af34,EA064,?,EA064-NA,,,,,, +82838,Af35,EA064,?,EA064-NA,,,,,, +82839,Af36,EA064,?,EA064-NA,,,,,, +82840,Af37,EA064,?,EA064-NA,,,,,, +82841,Af38,EA064,?,EA064-NA,,,,,, +82842,Af39,EA064,?,EA064-NA,,,,,, +82843,Af4,EA064,Most adults,EA064-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +82844,Af40,EA064,?,EA064-NA,,,,,, +82845,Af41,EA064,?,EA064-NA,,,,,, +82846,Af42,EA064,?,EA064-NA,,,,,, +82847,Af43,EA064,?,EA064-NA,,,,,, +82848,Af44,EA064,?,EA064-NA,,,,,, +82849,Af45,EA064,?,EA064-NA,,,,,, +82850,Af46,EA064,?,EA064-NA,,,,,, +82851,Af47,EA064,?,EA064-NA,,,,,, +82852,Af48,EA064,?,EA064-NA,,,,,, +82853,Af49,EA064,?,EA064-NA,,,,,, +82854,Af5,EA064,?,EA064-NA,,,,,, +82855,Af50,EA064,?,EA064-NA,,,,,, +82856,Af51,EA064,?,EA064-NA,,,,,, +82857,Af52,EA064,Most adults,EA064-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +82858,Af53,EA064,?,EA064-NA,,,,,, +82859,Af54,EA064,?,EA064-NA,,,,,, +82860,Af55,EA064,?,EA064-NA,,,,,, +82861,Af56,EA064,?,EA064-NA,,,,,, +82862,Af57,EA064,?,EA064-NA,,,,,, +82863,Af58,EA064,?,EA064-NA,,,,,, +82864,Af6,EA064,Most adults,EA064-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +82865,Af7,EA064,?,EA064-NA,,,,,, +82866,Af8,EA064,Most adults,EA064-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +82867,Af9,EA064,?,EA064-NA,,,,,, +82868,Ag1,EA064,Most adults,EA064-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +82869,Ag10,EA064,Junior age,EA064-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +82870,Ag11,EA064,Junior age,EA064-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +82871,Ag12,EA064,Most adults,EA064-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +82872,Ag13,EA064,?,EA064-NA,,,,,, +82873,Ag14,EA064,?,EA064-NA,,,,,, +82874,Ag15,EA064,?,EA064-NA,,,,,, +82875,Ag16,EA064,Most adults,EA064-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p72, +82876,Ag17,EA064,?,EA064-NA,,,,,, +82877,Ag18,EA064,?,EA064-NA,,,,,, +82878,Ag19,EA064,Most adults,EA064-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p72, +82879,Ag2,EA064,Junior age,EA064-1,"Boys herd all animals except cattle, which are herded and milked exclusively by Fulani",hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +82880,Ag20,EA064,?,EA064-NA,,,,,, +82881,Ag21,EA064,Most adults,EA064-9,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +82882,Ag22,EA064,Most adults,EA064-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +82883,Ag23,EA064,?,EA064-NA,,,,,, +82884,Ag24,EA064,?,EA064-NA,,,,,, +82885,Ag25,EA064,?,EA064-NA,Cattle are herded and milked exclusively by Fulani,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p72, +82886,Ag26,EA064,Most adults,EA064-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p72, +82887,Ag27,EA064,?,EA064-NA,,,,,, +82888,Ag28,EA064,?,EA064-NA,,,,,, +82889,Ag29,EA064,?,EA064-NA,,,,,, +82890,Ag3,EA064,Most adults,EA064-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +82891,Ag30,EA064,?,EA064-NA,,,,,, +82892,Ag31,EA064,?,EA064-NA,,,,,, +82893,Ag32,EA064,?,EA064-NA,,,,,, +82894,Ag33,EA064,?,EA064-NA,,,,,, +82895,Ag34,EA064,?,EA064-NA,,,,,, +82896,Ag35,EA064,?,EA064-NA,,,,,, +82897,Ag36,EA064,?,EA064-NA,,,,,, +82898,Ag37,EA064,?,EA064-NA,,,,,, +82899,Ag38,EA064,?,EA064-NA,,,,,, +82900,Ag39,EA064,?,EA064-NA,,,,,, +82901,Ag4,EA064,Most adults,EA064-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +82902,Ag40,EA064,?,EA064-NA,,,,,, +82903,Ag41,EA064,?,EA064-NA,,,,,, +82904,Ag42,EA064,?,EA064-NA,,,,,, +82905,Ag43,EA064,?,EA064-NA,,,,,, +82906,Ag44,EA064,?,EA064-NA,,,,,, +82907,Ag45,EA064,Most adults,EA064-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +82908,Ag46,EA064,?,EA064-NA,,,,,, +82909,Ag47,EA064,Most adults,EA064-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +82910,Ag48,EA064,?,EA064-NA,,,,,, +82911,Ag49,EA064,?,EA064-NA,,,,,, +82912,Ag5,EA064,Most adults,EA064-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +82913,Ag50,EA064,?,EA064-NA,,,,,, +82914,Ag51,EA064,?,EA064-NA,,,,,, +82915,Ag52,EA064,?,EA064-NA,,,,,, +82916,Ag53,EA064,?,EA064-NA,,,,,, +82917,Ag54,EA064,Most adults,EA064-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +82918,Ag6,EA064,Most adults,EA064-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +82919,Ag7,EA064,Activity is absent,EA064-10,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p72, +82920,Ag8,EA064,Junior age,EA064-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +82921,Ag9,EA064,Most adults,EA064-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +82922,Ah1,EA064,Junior age,EA064-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +82923,Ah10,EA064,?,EA064-NA,,,,,, +82924,Ah11,EA064,Most adults,EA064-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +82925,Ah12,EA064,?,EA064-NA,,,,,, +82926,Ah13,EA064,?,EA064-NA,,,,,, +82927,Ah14,EA064,?,EA064-NA,,,,,, +82928,Ah15,EA064,?,EA064-NA,,,,,, +82929,Ah16,EA064,?,EA064-NA,,,,,, +82930,Ah17,EA064,?,EA064-NA,,,,,, +82931,Ah18,EA064,?,EA064-NA,,,,,, +82932,Ah19,EA064,Most adults,EA064-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p76, +82933,Ah2,EA064,Junior age,EA064-1,,meek1931a,,1920,EthnographicAtlas_1967_p76, +82934,Ah20,EA064,Most adults,EA064-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +82935,Ah21,EA064,?,EA064-NA,,,,,, +82936,Ah22,EA064,?,EA064-NA,,,,,, +82937,Ah23,EA064,?,EA064-NA,,,,,, +82938,Ah24,EA064,?,EA064-NA,,,,,, +82939,Ah25,EA064,?,EA064-NA,,,,,, +82940,Ah26,EA064,?,EA064-NA,,,,,, +82941,Ah27,EA064,?,EA064-NA,,,,,, +82942,Ah28,EA064,?,EA064-NA,,,,,, +82943,Ah29,EA064,?,EA064-NA,,,,,, +82944,Ah3,EA064,?,EA064-NA,,,,,, +82945,Ah30,EA064,Most adults,EA064-9,,meek1931b,,1920,EthnographicAtlas_1967_p76, +82946,Ah31,EA064,?,EA064-NA,,,,,, +82947,Ah32,EA064,?,EA064-NA,,,,,, +82948,Ah33,EA064,?,EA064-NA,,,,,, +82949,Ah34,EA064,?,EA064-NA,,,,,, +82950,Ah35,EA064,?,EA064-NA,,,,,, +82951,Ah36,EA064,?,EA064-NA,,,,,, +82952,Ah37,EA064,?,EA064-NA,,,,,, +82953,Ah38,EA064,?,EA064-NA,,,,,, +82954,Ah39,EA064,Junior age,EA064-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +82955,Ah4,EA064,?,EA064-NA,,,,,, +82956,Ah5,EA064,?,EA064-NA,,,,,, +82957,Ah6,EA064,?,EA064-NA,,,,,, +82958,Ah7,EA064,?,EA064-NA,,,,,, +82959,Ah8,EA064,Most adults,EA064-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +82960,Ah9,EA064,Most adults,EA064-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +82961,Ai1,EA064,?,EA064-NA,,,,,, +82962,Ai10,EA064,Most adults,EA064-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +82963,Ai11,EA064,?,EA064-NA,,,,,, +82964,Ai12,EA064,Junior age,EA064-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p76, +82965,Ai13,EA064,?,EA064-NA,,,,,, +82966,Ai14,EA064,?,EA064-NA,,,,,, +82967,Ai15,EA064,?,EA064-NA,,,,,, +82968,Ai16,EA064,?,EA064-NA,,,,,, +82969,Ai17,EA064,Junior age,EA064-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +82970,Ai18,EA064,?,EA064-NA,,,,,, +82971,Ai19,EA064,?,EA064-NA,,,,,, +82972,Ai2,EA064,?,EA064-NA,,,,,, +82973,Ai20,EA064,?,EA064-NA,,,,,, +82974,Ai21,EA064,?,EA064-NA,,,,,, +82975,Ai22,EA064,?,EA064-NA,,,,,, +82976,Ai23,EA064,?,EA064-NA,,,,,, +82977,Ai24,EA064,?,EA064-NA,,,,,, +82978,Ai25,EA064,?,EA064-NA,,,,,, +82979,Ai26,EA064,?,EA064-NA,,,,,, +82980,Ai27,EA064,?,EA064-NA,,,,,, +82981,Ai28,EA064,?,EA064-NA,,,,,, +82982,Ai29,EA064,Most adults,EA064-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +82983,Ai3,EA064,Activity is absent,EA064-10,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +82984,Ai30,EA064,?,EA064-NA,,,,,, +82985,Ai31,EA064,Most adults,EA064-9,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +82986,Ai32,EA064,Most adults,EA064-9,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p76, +82987,Ai33,EA064,Most adults,EA064-9,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p76, +82988,Ai34,EA064,Most adults,EA064-9,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +82989,Ai35,EA064,?,EA064-NA,,,,,, +82990,Ai36,EA064,Most adults,EA064-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +82991,Ai37,EA064,?,EA064-NA,,,,,, +82992,Ai38,EA064,Most adults,EA064-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +82993,Ai39,EA064,Most adults,EA064-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +82994,Ai4,EA064,?,EA064-NA,,,,,, +82995,Ai40,EA064,Most adults,EA064-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +82996,Ai41,EA064,Most adults,EA064-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +82997,Ai42,EA064,Most adults,EA064-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +82998,Ai43,EA064,Most adults,EA064-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +82999,Ai44,EA064,?,EA064-NA,,,,,, +83000,Ai45,EA064,?,EA064-NA,,,,,, +83001,Ai46,EA064,?,EA064-NA,,,,,, +83002,Ai47,EA064,?,EA064-NA,,,,,, +83003,Ai5,EA064,?,EA064-NA,,,,,, +83004,Ai6,EA064,Most adults,EA064-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +83005,Ai7,EA064,Most adults,EA064-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +83006,Ai8,EA064,Most adults,EA064-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +83007,Ai9,EA064,Most adults,EA064-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +83008,Aj1,EA064,Most adults,EA064-9,,lawrance1957,,1950,EthnographicAtlas_1967_p76, +83009,Aj10,EA064,?,EA064-NA,,,,,, +83010,Aj11,EA064,Most adults,EA064-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p80, +83011,Aj12,EA064,Most adults,EA064-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +83012,Aj13,EA064,Most adults,EA064-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +83013,Aj14,EA064,?,EA064-NA,,,,,, +83014,Aj15,EA064,Most adults,EA064-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +83015,Aj16,EA064,Most adults,EA064-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +83016,Aj17,EA064,Most adults,EA064-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +83017,Aj18,EA064,Most adults,EA064-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +83018,Aj19,EA064,Most adults,EA064-9,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p80, +83019,Aj2,EA064,Junior age,EA064-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +83020,Aj20,EA064,Most adults,EA064-9,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p80, +83021,Aj21,EA064,Most adults,EA064-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +83022,Aj22,EA064,Most adults,EA064-9,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +83023,Aj23,EA064,Most adults,EA064-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +83024,Aj24,EA064,Most adults,EA064-9,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +83025,Aj25,EA064,Most adults,EA064-9,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +83026,Aj26,EA064,Most adults,EA064-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +83027,Aj27,EA064,?,EA064-NA,,,,,, +83028,Aj28,EA064,Most adults,EA064-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +83029,Aj29,EA064,?,EA064-NA,,,,,, +83030,Aj3,EA064,Most adults,EA064-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +83031,Aj30,EA064,?,EA064-NA,,,,,, +83032,Aj31,EA064,?,EA064-NA,,,,,, +83033,Aj4,EA064,Most adults,EA064-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +83034,Aj5,EA064,Most adults,EA064-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +83035,Aj6,EA064,Most adults,EA064-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +83036,Aj7,EA064,Most adults,EA064-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +83037,Aj8,EA064,Most adults,EA064-9,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +83038,Aj9,EA064,Most adults,EA064-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +83039,Ca1,EA064,Junior age,EA064-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +83040,Ca10,EA064,Most adults,EA064-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +83041,Ca11,EA064,Most adults,EA064-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +83042,Ca12,EA064,Most adults,EA064-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +83043,Ca13,EA064,Most adults,EA064-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +83044,Ca14,EA064,Most adults,EA064-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +83045,Ca15,EA064,Most adults,EA064-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +83046,Ca16,EA064,Most adults,EA064-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +83047,Ca17,EA064,Most adults,EA064-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +83048,Ca18,EA064,?,EA064-NA,,,,,, +83049,Ca19,EA064,Most adults,EA064-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +83050,Ca2,EA064,Most adults,EA064-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +83051,Ca20,EA064,?,EA064-NA,,,,,, +83052,Ca21,EA064,Most adults,EA064-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +83053,Ca22,EA064,Most adults,EA064-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +83054,Ca23,EA064,Most adults,EA064-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +83055,Ca24,EA064,?,EA064-NA,,,,,, +83056,Ca25,EA064,Most adults,EA064-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +83057,Ca26,EA064,?,EA064-NA,,,,,, +83058,Ca27,EA064,?,EA064-NA,,,,,, +83059,Ca28,EA064,Most adults,EA064-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +83060,Ca29,EA064,?,EA064-NA,,,,,, +83061,Ca3,EA064,Most adults,EA064-9,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p80, +83062,Ca30,EA064,Most adults,EA064-9,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p80, +83063,Ca31,EA064,Most adults,EA064-9,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +83064,Ca32,EA064,Most adults,EA064-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +83065,Ca33,EA064,Most adults,EA064-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +83066,Ca34,EA064,?,EA064-NA,,,,,, +83067,Ca35,EA064,?,EA064-NA,,,,,, +83068,Ca36,EA064,?,EA064-NA,,,,,, +83069,Ca37,EA064,?,EA064-NA,,,,,, +83070,Ca38,EA064,?,EA064-NA,,,,,, +83071,Ca39,EA064,Most adults,EA064-9,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +83072,Ca4,EA064,Most adults,EA064-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +83073,Ca40,EA064,Most adults,EA064-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +83074,Ca41,EA064,?,EA064-NA,,,,,, +83075,Ca42,EA064,Most adults,EA064-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +83076,Ca43,EA064,?,EA064-NA,,,,,, +83077,Ca5,EA064,Most adults,EA064-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p80, +83078,Ca6,EA064,Most adults,EA064-9,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p80, +83079,Ca7,EA064,Most adults,EA064-9,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +83080,Ca8,EA064,?,EA064-NA,,,,,, +83081,Ca9,EA064,?,EA064-NA,,,,,, +83082,Cb1,EA064,?,EA064-NA,,,,,, +83083,Cb10,EA064,?,EA064-NA,,,,,, +83084,Cb11,EA064,?,EA064-NA,,,,,, +83085,Cb12,EA064,?,EA064-NA,,,,,, +83086,Cb13,EA064,?,EA064-NA,,,,,, +83087,Cb14,EA064,?,EA064-NA,,,,,, +83088,Cb15,EA064,?,EA064-NA,,,,,, +83089,Cb16,EA064,?,EA064-NA,,,,,, +83090,Cb17,EA064,Most adults,EA064-9,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +83091,Cb18,EA064,?,EA064-NA,,,,,, +83092,Cb19,EA064,Most adults,EA064-9,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p80, +83093,Cb2,EA064,Most adults,EA064-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +83094,Cb20,EA064,Craft,EA064-3,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +83095,Cb21,EA064,Most adults,EA064-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p84, +83096,Cb22,EA064,?,EA064-NA,,,,,, +83097,Cb23,EA064,Most adults,EA064-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +83098,Cb24,EA064,Most adults,EA064-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p84, +83099,Cb25,EA064,?,EA064-NA,,,,,, +83100,Cb26,EA064,Most adults,EA064-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +83101,Cb27,EA064,?,EA064-NA,,,,,, +83102,Cb28,EA064,?,EA064-NA,,,,,, +83103,Cb29,EA064,?,EA064-NA,,,,,, +83104,Cb3,EA064,?,EA064-NA,,,,,, +83105,Cb4,EA064,Most adults,EA064-9,,reid1930,,1920,EthnographicAtlas_1967_p80, +83106,Cb5,EA064,?,EA064-NA,,,,,, +83107,Cb6,EA064,?,EA064-NA,,,,,, +83108,Cb7,EA064,?,EA064-NA,,,,,, +83109,Cb8,EA064,Most adults,EA064-9,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p80, +83110,Cb9,EA064,Most adults,EA064-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +83111,Cc1,EA064,Most adults,EA064-9,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +83112,Cc10,EA064,Most adults,EA064-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +83113,Cc11,EA064,?,EA064-NA,,,,,, +83114,Cc12,EA064,Most adults,EA064-9,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +83115,Cc13,EA064,?,EA064-NA,,,,,, +83116,Cc14,EA064,Most adults,EA064-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +83117,Cc15,EA064,?,EA064-NA,,,,,, +83118,Cc16,EA064,Most adults,EA064-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +83119,Cc17,EA064,Most adults,EA064-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +83120,Cc18,EA064,?,EA064-NA,,,,,, +83121,Cc19,EA064,?,EA064-NA,,,,,, +83122,Cc2,EA064,Most adults,EA064-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +83123,Cc20,EA064,Most adults,EA064-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +83124,Cc3,EA064,Most adults,EA064-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +83125,Cc4,EA064,Most adults,EA064-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +83126,Cc5,EA064,Most adults,EA064-9,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +83127,Cc6,EA064,?,EA064-NA,,,,,, +83128,Cc7,EA064,?,EA064-NA,,,,,, +83129,Cc8,EA064,?,EA064-NA,,,,,, +83130,Cc9,EA064,Most adults,EA064-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +83131,Cd1,EA064,Most adults,EA064-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +83132,Cd10,EA064,?,EA064-NA,,,,,, +83133,Cd11,EA064,?,EA064-NA,,,,,, +83134,Cd12,EA064,Most adults,EA064-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +83135,Cd13,EA064,?,EA064-NA,,,,,, +83136,Cd14,EA064,?,EA064-NA,,,,,, +83137,Cd15,EA064,?,EA064-NA,,,,,, +83138,Cd16,EA064,?,EA064-NA,,,,,, +83139,Cd17,EA064,?,EA064-NA,,,,,, +83140,Cd18,EA064,?,EA064-NA,,,,,, +83141,Cd19,EA064,?,EA064-NA,,,,,, +83142,Cd2,EA064,Most adults,EA064-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +83143,Cd20,EA064,?,EA064-NA,,,,,, +83144,Cd21,EA064,?,EA064-NA,,,,,, +83145,Cd3,EA064,Most adults,EA064-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +83146,Cd4,EA064,?,EA064-NA,,,,,, +83147,Cd5,EA064,Most adults,EA064-9,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +83148,Cd6,EA064,Most adults,EA064-9,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +83149,Cd7,EA064,?,EA064-NA,,,,,, +83150,Cd8,EA064,?,EA064-NA,,,,,, +83151,Cd9,EA064,?,EA064-NA,,,,,, +83152,Ce1,EA064,Most adults,EA064-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +83153,Ce2,EA064,?,EA064-NA,,,,,, +83154,Ce3,EA064,?,EA064-NA,,,,,, +83155,Ce4,EA064,Most adults,EA064-9,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83156,Ce5,EA064,Most adults,EA064-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +83157,Ce6,EA064,Most adults,EA064-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +83158,Ce7,EA064,Craft,EA064-3,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +83159,Ce8,EA064,Most adults,EA064-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +83160,Cf1,EA064,Most adults,EA064-9,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +83161,Cf2,EA064,?,EA064-NA,,,,,, +83162,Cf3,EA064,Most adults,EA064-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +83163,Cf4,EA064,Most adults,EA064-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +83164,Cf5,EA064,Most adults,EA064-9,,miner1939,,1930,EthnographicAtlas_1967_p84, +83165,Cg1,EA064,Most adults,EA064-9,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +83166,Cg2,EA064,Most adults,EA064-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +83167,Cg3,EA064,Most adults,EA064-9,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +83168,Cg4,EA064,Most adults,EA064-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +83169,Cg5,EA064,?,EA064-NA,,,,,, +83170,Ch1,EA064,Most adults,EA064-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +83171,Ch10,EA064,?,EA064-NA,,,,,, +83172,Ch11,EA064,Most adults,EA064-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +83173,Ch2,EA064,Most adults,EA064-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +83174,Ch3,EA064,Most adults,EA064-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +83175,Ch4,EA064,?,EA064-NA,,,,,, +83176,Ch5,EA064,Most adults,EA064-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +83177,Ch6,EA064,Most adults,EA064-9,,ember1954,,1910,EthnographicAtlas_1967_p84, +83178,Ch7,EA064,Most adults,EA064-9,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +83179,Ch8,EA064,?,EA064-NA,,,,,, +83180,Ch9,EA064,Most adults,EA064-9,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +83181,Ci1,EA064,Most adults,EA064-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +83182,Ci10,EA064,Most adults,EA064-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +83183,Ci11,EA064,Most adults,EA064-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +83184,Ci12,EA064,Most adults,EA064-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +83185,Ci2,EA064,Most adults,EA064-9,,grigolia1939,,1930,EthnographicAtlas_1967_p84, +83186,Ci3,EA064,?,EA064-NA,,,,,, +83187,Ci4,EA064,Most adults,EA064-9,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +83188,Ci5,EA064,Most adults,EA064-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +83189,Ci6,EA064,?,EA064-NA,,,,,, +83190,Ci7,EA064,?,EA064-NA,,,,,, +83191,Ci8,EA064,?,EA064-NA,,,,,, +83192,Ci9,EA064,?,EA064-NA,,,,,, +83193,Cj1,EA064,Most adults,EA064-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +83194,Cj10,EA064,Most adults,EA064-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +83195,Cj2,EA064,Most adults,EA064-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +83196,Cj3,EA064,Most adults,EA064-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +83197,Cj4,EA064,Most adults,EA064-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +83198,Cj5,EA064,Most adults,EA064-9,,dickson1949,,1930,EthnographicAtlas_1967_p88, +83199,Cj6,EA064,?,EA064-NA,,,,,, +83200,Cj7,EA064,?,EA064-NA,,,,,, +83201,Cj8,EA064,Most adults,EA064-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +83202,Cj9,EA064,Most adults,EA064-9,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +83203,Ea1,EA064,Most adults,EA064-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +83204,Ea10,EA064,Most adults,EA064-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +83205,Ea11,EA064,Most adults,EA064-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +83206,Ea12,EA064,Most adults,EA064-9,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +83207,Ea13,EA064,Most adults,EA064-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +83208,Ea2,EA064,Most adults,EA064-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +83209,Ea3,EA064,Most adults,EA064-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +83210,Ea4,EA064,Most adults,EA064-9,,barth1956b,,1950,EthnographicAtlas_1967_p88, +83211,Ea5,EA064,Most adults,EA064-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +83212,Ea6,EA064,Most adults,EA064-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p88, +83213,Ea7,EA064,Most adults,EA064-9,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +83214,Ea8,EA064,Most adults,EA064-9,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +83215,Ea9,EA064,Most adults,EA064-9,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +83216,Eb1,EA064,Most adults,EA064-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +83217,Eb2,EA064,Most adults,EA064-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +83218,Eb3,EA064,Most adults,EA064-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +83219,Eb4,EA064,?,EA064-NA,,,,,, +83220,Eb5,EA064,?,EA064-NA,,,,,, +83221,Eb6,EA064,?,EA064-NA,,,,,, +83222,Eb7,EA064,Most adults,EA064-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +83223,Eb8,EA064,?,EA064-NA,,,,,, +83224,Ec1,EA064,Activity is absent,EA064-10,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +83225,Ec10,EA064,Most adults,EA064-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +83226,Ec11,EA064,Activity is absent,EA064-10,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +83227,Ec2,EA064,Most adults,EA064-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83228,Ec3,EA064,Most adults,EA064-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +83229,Ec4,EA064,Most adults,EA064-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +83230,Ec5,EA064,Most adults,EA064-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +83231,Ec6,EA064,Activity is absent,EA064-10,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p88, +83232,Ec7,EA064,Activity is absent,EA064-10,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +83233,Ec8,EA064,Most adults,EA064-9,,shimkin1939,,1900,EthnographicAtlas_1967_p88, +83234,Ec9,EA064,?,EA064-NA,,,,,, +83235,Ed1,EA064,Most adults,EA064-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +83236,Ed10,EA064,Most adults,EA064-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +83237,Ed13,EA064,?,EA064-NA,,,,,, +83238,Ed14,EA064,?,EA064-NA,,,,,, +83239,Ed15a,EA064,?,EA064-NA,,,,,, +83240,Ed15b,EA064,Junior age,EA064-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +83241,Ed16,EA064,?,EA064-NA,,,,,, +83242,Ed2,EA064,Most adults,EA064-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +83243,Ed3,EA064,Most adults,EA064-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +83244,Ed4,EA064,Most adults,EA064-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +83245,Ed5,EA064,Most adults,EA064-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83246,Ed6,EA064,Most adults,EA064-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +83247,Ed7,EA064,Most adults,EA064-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +83248,Ed8,EA064,?,EA064-NA,,,,,, +83249,Ed9,EA064,Most adults,EA064-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +83250,Ee1,EA064,Most adults,EA064-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +83251,Ee2,EA064,Most adults,EA064-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +83252,Ee3,EA064,Most adults,EA064-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +83253,Ee4,EA064,Most adults,EA064-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +83254,Ee5,EA064,Most adults,EA064-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +83255,Ee6,EA064,Most adults,EA064-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +83256,Ee7,EA064,?,EA064-NA,,,,,, +83257,Ee8,EA064,Most adults,EA064-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +83258,Ef1,EA064,Most adults,EA064-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +83259,Ef10,EA064,?,EA064-NA,,,,,, +83260,Ef11,EA064,Craft,EA064-3,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +83261,Ef2,EA064,Most adults,EA064-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +83262,Ef3,EA064,?,EA064-NA,,,,,, +83263,Ef4,EA064,?,EA064-NA,,,,,, +83264,Ef5,EA064,Most adults,EA064-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +83265,Ef6,EA064,Most adults,EA064-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +83266,Ef7,EA064,Most adults,EA064-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +83267,Ef8,EA064,Most adults,EA064-9,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +83268,Ef9,EA064,Most adults,EA064-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83269,Eg1,EA064,Most adults,EA064-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83270,Eg10,EA064,Most adults,EA064-9,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +83271,Eg11,EA064,?,EA064-NA,,,,,, +83272,Eg12,EA064,?,EA064-NA,,,,,, +83273,Eg13,EA064,Most adults,EA064-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83274,Eg14,EA064,?,EA064-NA,,,,,, +83275,Eg2,EA064,Most adults,EA064-9,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +83276,Eg3,EA064,Most adults,EA064-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +83277,Eg4,EA064,Most adults,EA064-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +83278,Eg5,EA064,?,EA064-NA,,,,,, +83279,Eg6,EA064,Most adults,EA064-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +83280,Eg7,EA064,Most adults,EA064-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +83281,Eg8,EA064,Most adults,EA064-9,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +83282,Eg9,EA064,Activity is absent,EA064-10,,elwin1939,,1930,EthnographicAtlas_1967_p92, +83283,Eh1,EA064,Activity is absent,EA064-10,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +83284,Eh10,EA064,?,EA064-NA,,,,,, +83285,Eh2,EA064,Most adults,EA064-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +83286,Eh3,EA064,Most adults,EA064-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +83287,Eh4,EA064,Activity is absent,EA064-10,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83288,Eh5,EA064,Most adults,EA064-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +83289,Eh6,EA064,?,EA064-NA,,,,,, +83290,Eh7,EA064,Most adults,EA064-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +83291,Eh8,EA064,Most adults,EA064-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +83292,Eh9,EA064,Most adults,EA064-9,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +83293,Ei1,EA064,Most adults,EA064-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83294,Ei10,EA064,Most adults,EA064-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +83295,Ei11,EA064,?,EA064-NA,,,,,, +83296,Ei12,EA064,?,EA064-NA,,,,,, +83297,Ei13,EA064,?,EA064-NA,,,,,, +83298,Ei14,EA064,?,EA064-NA,,,,,, +83299,Ei15,EA064,?,EA064-NA,,,,,, +83300,Ei16,EA064,?,EA064-NA,,,,,, +83301,Ei17,EA064,?,EA064-NA,,,,,, +83302,Ei18,EA064,Most adults,EA064-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +83303,Ei19,EA064,?,EA064-NA,,,,,, +83304,Ei2,EA064,Most adults,EA064-9,,mills1922,,1920,EthnographicAtlas_1967_p92, +83305,Ei20,EA064,?,EA064-NA,,,,,, +83306,Ei3,EA064,Most adults,EA064-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +83307,Ei4,EA064,Most adults,EA064-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +83308,Ei5,EA064,Most adults,EA064-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +83309,Ei6,EA064,Most adults,EA064-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +83310,Ei7,EA064,?,EA064-NA,,,,,, +83311,Ei8,EA064,Most adults,EA064-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +83312,Ei9,EA064,Most adults,EA064-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +83313,Ej1,EA064,Most adults,EA064-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +83314,Ej10,EA064,Most adults,EA064-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +83315,Ej11,EA064,?,EA064-NA,,,,,, +83316,Ej12,EA064,Most adults,EA064-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +83317,Ej13,EA064,?,EA064-NA,,,,,, +83318,Ej14,EA064,Activity is absent,EA064-10,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83319,Ej15,EA064,Most adults,EA064-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +83320,Ej16,EA064,Most adults,EA064-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +83321,Ej2,EA064,Most adults,EA064-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +83322,Ej3,EA064,Activity is absent,EA064-10,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +83323,Ej4,EA064,?,EA064-NA,,,,,, +83324,Ej5,EA064,Most adults,EA064-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +83325,Ej6,EA064,Activity is absent,EA064-10,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +83326,Ej7,EA064,Most adults,EA064-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +83327,Ej8,EA064,Most adults,EA064-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +83328,Ej9,EA064,Most adults,EA064-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +83329,Ia1,EA064,Most adults,EA064-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +83330,Ia10,EA064,Most adults,EA064-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +83331,Ia11,EA064,Most adults,EA064-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +83332,Ia12,EA064,?,EA064-NA,,,,,, +83333,Ia13,EA064,?,EA064-NA,,,,,, +83334,Ia14,EA064,Most adults,EA064-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +83335,Ia15,EA064,?,EA064-NA,,,,,, +83336,Ia16,EA064,Most adults,EA064-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +83337,Ia17,EA064,?,EA064-NA,,,,,, +83338,Ia18,EA064,?,EA064-NA,,,,,, +83339,Ia2,EA064,Junior age,EA064-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +83340,Ia3,EA064,?,EA064-NA,,,,,, +83341,Ia4,EA064,?,EA064-NA,,,,,, +83342,Ia5,EA064,Most adults,EA064-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +83343,Ia6,EA064,Most adults,EA064-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83344,Ia7,EA064,?,EA064-NA,,,,,, +83345,Ia8,EA064,?,EA064-NA,,,,,, +83346,Ia9,EA064,Most adults,EA064-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +83347,Ib1,EA064,Most adults,EA064-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83348,Ib2,EA064,Most adults,EA064-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83349,Ib3,EA064,Most adults,EA064-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +83350,Ib4,EA064,Most adults,EA064-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +83351,Ib5,EA064,Most adults,EA064-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +83352,Ib6,EA064,?,EA064-NA,,,,,, +83353,Ib7,EA064,?,EA064-NA,,,,,, +83354,Ib8,EA064,Activity is absent,EA064-10,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p96, +83355,Ib9,EA064,?,EA064-NA,,,,,, +83356,Ic1,EA064,Most adults,EA064-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83357,Ic10,EA064,?,EA064-NA,,,,,, +83358,Ic11,EA064,?,EA064-NA,,,,,, +83359,Ic12,EA064,?,EA064-NA,,,,,, +83360,Ic13,EA064,?,EA064-NA,,,,,, +83361,Ic2,EA064,Most adults,EA064-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +83362,Ic3,EA064,Most adults,EA064-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +83363,Ic4,EA064,?,EA064-NA,,,,,, +83364,Ic5,EA064,?,EA064-NA,,,,,, +83365,Ic6,EA064,Most adults,EA064-9,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +83366,Ic7,EA064,Most adults,EA064-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +83367,Ic8,EA064,?,EA064-NA,,,,,, +83368,Ic9,EA064,?,EA064-NA,,,,,, +83369,Id1,EA064,Activity is absent,EA064-10,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +83370,Id10,EA064,Activity is absent,EA064-10,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +83371,Id11,EA064,Activity is absent,EA064-10,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +83372,Id12,EA064,Activity is absent,EA064-10,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +83373,Id13,EA064,Activity is absent,EA064-10,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +83374,Id2,EA064,Activity is absent,EA064-10,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +83375,Id3,EA064,Activity is absent,EA064-10,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +83376,Id4,EA064,Activity is absent,EA064-10,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +83377,Id5,EA064,Activity is absent,EA064-10,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +83378,Id6,EA064,Activity is absent,EA064-10,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +83379,Id7,EA064,Activity is absent,EA064-10,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +83380,Id8,EA064,Activity is absent,EA064-10,,roth1890,,1830,EthnographicAtlas_1967_p96, +83381,Id9,EA064,Activity is absent,EA064-10,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +83382,Ie1,EA064,Most adults,EA064-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83383,Ie10,EA064,Most adults,EA064-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +83384,Ie11,EA064,Most adults,EA064-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +83385,Ie12,EA064,Most adults,EA064-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83386,Ie13,EA064,Activity is absent,EA064-10,,landtman1927,,1920,EthnographicAtlas_1967_p96, +83387,Ie14,EA064,?,EA064-NA,,,,,, +83388,Ie15,EA064,Most adults,EA064-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83389,Ie16,EA064,Most adults,EA064-9,,williams194041,,1940,EthnographicAtlas_1967_p96, +83390,Ie17,EA064,Most adults,EA064-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +83391,Ie18,EA064,?,EA064-NA,,,,,, +83392,Ie19,EA064,Most adults,EA064-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +83393,Ie2,EA064,Most adults,EA064-9,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +83394,Ie20,EA064,?,EA064-NA,,,,,, +83395,Ie21,EA064,?,EA064-NA,,,,,, +83396,Ie22,EA064,?,EA064-NA,,,,,, +83397,Ie23,EA064,Most adults,EA064-9,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +83398,Ie24,EA064,?,EA064-NA,,,,,, +83399,Ie25,EA064,Most adults,EA064-9,,williamson1912,,1920,EthnographicAtlas_1967_p96, +83400,Ie26,EA064,?,EA064-NA,,,,,, +83401,Ie27,EA064,?,EA064-NA,,,,,, +83402,Ie28,EA064,?,EA064-NA,,,,,, +83403,Ie29,EA064,?,EA064-NA,,,,,, +83404,Ie3,EA064,Most adults,EA064-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83405,Ie30,EA064,Activity is absent,EA064-10,,pouwer1955,,1950,EthnographicAtlas_1967_p100, +83406,Ie31,EA064,?,EA064-NA,,,,,, +83407,Ie32,EA064,Most adults,EA064-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +83408,Ie33,EA064,?,EA064-NA,,,,,, +83409,Ie34,EA064,?,EA064-NA,,,,,, +83410,Ie35,EA064,Activity is absent,EA064-10,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +83411,Ie36,EA064,?,EA064-NA,,,,,, +83412,Ie37,EA064,?,EA064-NA,,,,,, +83413,Ie38,EA064,Most adults,EA064-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +83414,Ie39,EA064,Most adults,EA064-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +83415,Ie4,EA064,?,EA064-NA,,,,,, +83416,Ie5,EA064,Most adults,EA064-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +83417,Ie6,EA064,Most adults,EA064-9,,held1947,,1930,EthnographicAtlas_1967_p96, +83418,Ie7,EA064,Most adults,EA064-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +83419,Ie8,EA064,Most adults,EA064-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +83420,Ie9,EA064,Most adults,EA064-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +83421,If1,EA064,?,EA064-NA,,,,,, +83422,If10,EA064,?,EA064-NA,,,,,, +83423,If11,EA064,?,EA064-NA,,,,,, +83424,If12,EA064,?,EA064-NA,,,,,, +83425,If13,EA064,Activity is absent,EA064-10,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +83426,If14,EA064,Most adults,EA064-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +83427,If15,EA064,?,EA064-NA,,,,,, +83428,If16,EA064,Most adults,EA064-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +83429,If17,EA064,Most adults,EA064-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +83430,If2,EA064,Most adults,EA064-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +83431,If3,EA064,?,EA064-NA,,,,,, +83432,If4,EA064,Most adults,EA064-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +83433,If5,EA064,?,EA064-NA,,,,,, +83434,If6,EA064,Most adults,EA064-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +83435,If7,EA064,Activity is absent,EA064-10,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +83436,If8,EA064,?,EA064-NA,,,,,, +83437,If9,EA064,?,EA064-NA,,,,,, +83438,Ig1,EA064,Most adults,EA064-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +83439,Ig10,EA064,Most adults,EA064-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +83440,Ig11,EA064,?,EA064-NA,,,,,, +83441,Ig12,EA064,?,EA064-NA,,,,,, +83442,Ig13,EA064,Activity is absent,EA064-10,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +83443,Ig14,EA064,?,EA064-NA,,,,,, +83444,Ig15,EA064,?,EA064-NA,,,,,, +83445,Ig16,EA064,?,EA064-NA,,,,,, +83446,Ig17,EA064,?,EA064-NA,,,,,, +83447,Ig18,EA064,?,EA064-NA,,,,,, +83448,Ig19,EA064,?,EA064-NA,,,,,, +83449,Ig2,EA064,Most adults,EA064-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +83450,Ig20,EA064,Most adults,EA064-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +83451,Ig21,EA064,?,EA064-NA,,,,,, +83452,Ig3,EA064,Most adults,EA064-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +83453,Ig4,EA064,Most adults,EA064-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +83454,Ig5,EA064,?,EA064-NA,,,,,, +83455,Ig6,EA064,Most adults,EA064-9,,ivens1927,,1900,EthnographicAtlas_1967_p100, +83456,Ig7,EA064,Most adults,EA064-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +83457,Ig8,EA064,?,EA064-NA,,,,,, +83458,Ig9,EA064,Most adults,EA064-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +83459,Ih1,EA064,Most adults,EA064-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p100, +83460,Ih10,EA064,?,EA064-NA,,,,,, +83461,Ih11,EA064,?,EA064-NA,,,,,, +83462,Ih12,EA064,?,EA064-NA,,,,,, +83463,Ih13,EA064,?,EA064-NA,,,,,, +83464,Ih14,EA064,Most adults,EA064-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +83465,Ih2,EA064,Most adults,EA064-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83466,Ih3,EA064,Most adults,EA064-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p100, +83467,Ih4,EA064,Most adults,EA064-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83468,Ih5,EA064,?,EA064-NA,,,,,, +83469,Ih6,EA064,?,EA064-NA,,,,,, +83470,Ih7,EA064,?,EA064-NA,,,,,, +83471,Ih8,EA064,Most adults,EA064-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +83472,Ih9,EA064,Most adults,EA064-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83473,Ii1,EA064,Most adults,EA064-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +83474,Ii10,EA064,?,EA064-NA,,,,,, +83475,Ii12,EA064,Most adults,EA064-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83476,Ii13,EA064,Most adults,EA064-9,,burrows1937,,1830,EthnographicAtlas_1967_p100, +83477,Ii14,EA064,Most adults,EA064-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +83478,Ii2,EA064,Activity is absent,EA064-10,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +83479,Ii3,EA064,Most adults,EA064-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +83480,Ii4,EA064,?,EA064-NA,,,,,, +83481,Ii5,EA064,Activity is absent,EA064-10,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +83482,Ii6,EA064,Activity is absent,EA064-10,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +83483,Ii7,EA064,?,EA064-NA,,,,,, +83484,Ii8,EA064,Most adults,EA064-9,,burrows1936,,1840,EthnographicAtlas_1967_p100, +83485,Ii9,EA064,Activity is absent,EA064-10,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +83486,Ij1,EA064,Activity is absent,EA064-10,,buck1934,,1820,EthnographicAtlas_1967_p100, +83487,Ij10,EA064,?,EA064-NA,,,,,, +83488,Ij2,EA064,Activity is absent,EA064-10,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +83489,Ij3,EA064,Most adults,EA064-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +83490,Ij4,EA064,Activity is absent,EA064-10,,buck1932a,,1850,EthnographicAtlas_1967_p104, +83491,Ij5,EA064,Activity is absent,EA064-10,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +83492,Ij6,EA064,?,EA064-NA,,,,,, +83493,Ij7,EA064,Activity is absent,EA064-10,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +83494,Ij8,EA064,?,EA064-NA,,,,,, +83495,Ij9,EA064,Activity is absent,EA064-10,,metraux1940,,1860,EthnographicAtlas_1967_p104, +83496,Na1,EA064,Activity is absent,EA064-10,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +83497,Na10,EA064,Activity is absent,EA064-10,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +83498,Na11,EA064,Most adults,EA064-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +83499,Na12,EA064,Most adults,EA064-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +83500,Na13,EA064,Activity is absent,EA064-10,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +83501,Na14,EA064,Activity is absent,EA064-10,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +83502,Na15,EA064,Activity is absent,EA064-10,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +83503,Na16,EA064,Activity is absent,EA064-10,,osgood1931,,1860,EthnographicAtlas_1967_p104, +83504,Na17,EA064,Activity is absent,EA064-10,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83505,Na19,EA064,Activity is absent,EA064-10,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +83506,Na2,EA064,Activity is absent,EA064-10,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +83507,Na20,EA064,Activity is absent,EA064-10,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +83508,Na21,EA064,Activity is absent,EA064-10,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +83509,Na22,EA064,Activity is absent,EA064-10,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +83510,Na23,EA064,Activity is absent,EA064-10,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +83511,Na24,EA064,Activity is absent,EA064-10,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +83512,Na25,EA064,Activity is absent,EA064-10,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +83513,Na26,EA064,Activity is absent,EA064-10,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +83514,Na27,EA064,Activity is absent,EA064-10,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +83515,Na28,EA064,Activity is absent,EA064-10,,jenness1937,,1880,EthnographicAtlas_1967_p104, +83516,Na29,EA064,Activity is absent,EA064-10,,goddard1916,,1850,EthnographicAtlas_1967_p104, +83517,Na3,EA064,Activity is absent,EA064-10,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +83518,Na30,EA064,Activity is absent,EA064-10,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +83519,Na31,EA064,Activity is absent,EA064-10,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +83520,Na32,EA064,Activity is absent,EA064-10,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +83521,Na33,EA064,Activity is absent,EA064-10,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +83522,Na34,EA064,Activity is absent,EA064-10,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +83523,Na35,EA064,Activity is absent,EA064-10,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +83524,Na36,EA064,Activity is absent,EA064-10,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +83525,Na37,EA064,Activity is absent,EA064-10,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +83526,Na38,EA064,Activity is absent,EA064-10,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +83527,Na39,EA064,Activity is absent,EA064-10,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +83528,Na4,EA064,Activity is absent,EA064-10,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +83529,Na40,EA064,Activity is absent,EA064-10,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +83530,Na41,EA064,Activity is absent,EA064-10,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +83531,Na42,EA064,Activity is absent,EA064-10,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +83532,Na43,EA064,Activity is absent,EA064-10,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +83533,Na44,EA064,?,EA064-NA,,,,,, +83534,Na45,EA064,Activity is absent,EA064-10,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +83535,Na5,EA064,Activity is absent,EA064-10,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +83536,Na6,EA064,Activity is absent,EA064-10,,lantis1946,,1930,EthnographicAtlas_1967_p104, +83537,Na7,EA064,Activity is absent,EA064-10,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +83538,Na8,EA064,Activity is absent,EA064-10,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +83539,Na9,EA064,Activity is absent,EA064-10,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83540,Nb1,EA064,Activity is absent,EA064-10,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +83541,Nb10,EA064,Activity is absent,EA064-10,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +83542,Nb11,EA064,Activity is absent,EA064-10,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +83543,Nb12,EA064,Activity is absent,EA064-10,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +83544,Nb13,EA064,Activity is absent,EA064-10,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +83545,Nb14,EA064,Activity is absent,EA064-10,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +83546,Nb15,EA064,Activity is absent,EA064-10,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +83547,Nb16,EA064,Activity is absent,EA064-10,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +83548,Nb17,EA064,Activity is absent,EA064-10,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +83549,Nb18,EA064,Activity is absent,EA064-10,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +83550,Nb19,EA064,Activity is absent,EA064-10,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +83551,Nb2,EA064,Activity is absent,EA064-10,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +83552,Nb20,EA064,Activity is absent,EA064-10,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +83553,Nb21,EA064,Activity is absent,EA064-10,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +83554,Nb22,EA064,Activity is absent,EA064-10,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +83555,Nb23,EA064,Activity is absent,EA064-10,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +83556,Nb24,EA064,Activity is absent,EA064-10,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +83557,Nb25,EA064,Activity is absent,EA064-10,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +83558,Nb26,EA064,Activity is absent,EA064-10,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +83559,Nb27,EA064,Activity is absent,EA064-10,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +83560,Nb28,EA064,Activity is absent,EA064-10,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +83561,Nb29,EA064,Activity is absent,EA064-10,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +83562,Nb3,EA064,Activity is absent,EA064-10,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +83563,Nb30,EA064,Activity is absent,EA064-10,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +83564,Nb31,EA064,Activity is absent,EA064-10,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +83565,Nb32,EA064,Activity is absent,EA064-10,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +83566,Nb33,EA064,Activity is absent,EA064-10,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +83567,Nb34,EA064,Activity is absent,EA064-10,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +83568,Nb35,EA064,Activity is absent,EA064-10,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +83569,Nb36,EA064,Activity is absent,EA064-10,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +83570,Nb37,EA064,Activity is absent,EA064-10,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +83571,Nb38,EA064,Activity is absent,EA064-10,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +83572,Nb39,EA064,Activity is absent,EA064-10,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +83573,Nb4,EA064,Activity is absent,EA064-10,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +83574,Nb5,EA064,Activity is absent,EA064-10,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +83575,Nb6,EA064,Activity is absent,EA064-10,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +83576,Nb7,EA064,Activity is absent,EA064-10,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +83577,Nb8,EA064,Activity is absent,EA064-10,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +83578,Nb9,EA064,Activity is absent,EA064-10,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +83579,Nc1,EA064,Activity is absent,EA064-10,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +83580,Nc10,EA064,Activity is absent,EA064-10,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +83581,Nc11,EA064,Activity is absent,EA064-10,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +83582,Nc12,EA064,Activity is absent,EA064-10,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +83583,Nc13,EA064,Activity is absent,EA064-10,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +83584,Nc14,EA064,Activity is absent,EA064-10,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +83585,Nc15,EA064,Activity is absent,EA064-10,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +83586,Nc16,EA064,Activity is absent,EA064-10,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +83587,Nc17,EA064,Activity is absent,EA064-10,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +83588,Nc18,EA064,Activity is absent,EA064-10,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +83589,Nc19,EA064,Activity is absent,EA064-10,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +83590,Nc2,EA064,Activity is absent,EA064-10,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +83591,Nc20,EA064,Activity is absent,EA064-10,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +83592,Nc21,EA064,Activity is absent,EA064-10,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +83593,Nc22,EA064,Activity is absent,EA064-10,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +83594,Nc23,EA064,Activity is absent,EA064-10,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +83595,Nc24,EA064,Activity is absent,EA064-10,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +83596,Nc25,EA064,Activity is absent,EA064-10,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +83597,Nc26,EA064,Activity is absent,EA064-10,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +83598,Nc27,EA064,Activity is absent,EA064-10,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +83599,Nc28,EA064,Activity is absent,EA064-10,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +83600,Nc29,EA064,Activity is absent,EA064-10,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +83601,Nc3,EA064,Activity is absent,EA064-10,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +83602,Nc30,EA064,Activity is absent,EA064-10,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +83603,Nc31,EA064,Activity is absent,EA064-10,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +83604,Nc32,EA064,Activity is absent,EA064-10,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +83605,Nc33,EA064,Activity is absent,EA064-10,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +83606,Nc34,EA064,Activity is absent,EA064-10,,meigs1939,,1880,EthnographicAtlas_1967_p108, +83607,Nc4,EA064,Activity is absent,EA064-10,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +83608,Nc5,EA064,Activity is absent,EA064-10,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +83609,Nc6,EA064,Activity is absent,EA064-10,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +83610,Nc7,EA064,Activity is absent,EA064-10,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +83611,Nc8,EA064,Activity is absent,EA064-10,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +83612,Nc9,EA064,Activity is absent,EA064-10,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +83613,Nd1,EA064,Activity is absent,EA064-10,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +83614,Nd10,EA064,Activity is absent,EA064-10,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +83615,Nd11,EA064,Activity is absent,EA064-10,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +83616,Nd12,EA064,Most adults,EA064-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +83617,Nd13,EA064,Most adults,EA064-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +83618,Nd14,EA064,?,EA064-NA,,,,,, +83619,Nd15,EA064,Activity is absent,EA064-10,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +83620,Nd16,EA064,?,EA064-NA,,,,,, +83621,Nd17,EA064,Activity is absent,EA064-10,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +83622,Nd18,EA064,Activity is absent,EA064-10,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +83623,Nd19,EA064,?,EA064-NA,,,,,, +83624,Nd2,EA064,Most adults,EA064-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +83625,Nd20,EA064,Most adults,EA064-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +83626,Nd21,EA064,Activity is absent,EA064-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +83627,Nd22,EA064,Activity is absent,EA064-10,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +83628,Nd23,EA064,Activity is absent,EA064-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +83629,Nd24,EA064,Activity is absent,EA064-10,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +83630,Nd25,EA064,Activity is absent,EA064-10,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +83631,Nd26,EA064,Activity is absent,EA064-10,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +83632,Nd27,EA064,Activity is absent,EA064-10,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +83633,Nd28,EA064,Activity is absent,EA064-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +83634,Nd29,EA064,Activity is absent,EA064-10,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +83635,Nd3,EA064,Activity is absent,EA064-10,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +83636,Nd30,EA064,Activity is absent,EA064-10,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +83637,Nd31,EA064,Activity is absent,EA064-10,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +83638,Nd32,EA064,Activity is absent,EA064-10,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +83639,Nd33,EA064,Activity is absent,EA064-10,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +83640,Nd34,EA064,Activity is absent,EA064-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +83641,Nd35,EA064,Activity is absent,EA064-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +83642,Nd36,EA064,Activity is absent,EA064-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +83643,Nd37,EA064,Activity is absent,EA064-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +83644,Nd38,EA064,Activity is absent,EA064-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +83645,Nd39,EA064,Activity is absent,EA064-10,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +83646,Nd4,EA064,Activity is absent,EA064-10,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +83647,Nd40,EA064,Activity is absent,EA064-10,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +83648,Nd41,EA064,Activity is absent,EA064-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +83649,Nd42,EA064,Activity is absent,EA064-10,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +83650,Nd43,EA064,Activity is absent,EA064-10,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +83651,Nd44,EA064,Activity is absent,EA064-10,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +83652,Nd45,EA064,Most adults,EA064-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +83653,Nd46,EA064,Activity is absent,EA064-10,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +83654,Nd47,EA064,Activity is absent,EA064-10,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +83655,Nd48,EA064,Activity is absent,EA064-10,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +83656,Nd49,EA064,Activity is absent,EA064-10,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +83657,Nd5,EA064,Activity is absent,EA064-10,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +83658,Nd50,EA064,Activity is absent,EA064-10,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +83659,Nd51,EA064,Activity is absent,EA064-10,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +83660,Nd52,EA064,Activity is absent,EA064-10,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +83661,Nd53,EA064,Activity is absent,EA064-10,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +83662,Nd54,EA064,Activity is absent,EA064-10,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83663,Nd55,EA064,Activity is absent,EA064-10,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +83664,Nd56,EA064,Most adults,EA064-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +83665,Nd57,EA064,?,EA064-NA,,,,,, +83666,Nd58,EA064,?,EA064-NA,,,,,, +83667,Nd59,EA064,Activity is absent,EA064-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +83668,Nd6,EA064,Activity is absent,EA064-10,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +83669,Nd60,EA064,Activity is absent,EA064-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +83670,Nd61,EA064,Activity is absent,EA064-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +83671,Nd62,EA064,Most adults,EA064-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +83672,Nd63,EA064,?,EA064-NA,,,,,, +83673,Nd64,EA064,Most adults,EA064-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +83674,Nd65,EA064,Activity is absent,EA064-10,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +83675,Nd66,EA064,Activity is absent,EA064-10,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +83676,Nd67,EA064,Most adults,EA064-9,,gifford1936,,1870,EthnographicAtlas_1967_p112, +83677,Nd7,EA064,Most adults,EA064-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +83678,Nd8,EA064,Activity is absent,EA064-10,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +83679,Nd9,EA064,Activity is absent,EA064-10,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +83680,Ne1,EA064,Most adults,EA064-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +83681,Ne10,EA064,?,EA064-NA,,,,,, +83682,Ne11,EA064,Most adults,EA064-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +83683,Ne12,EA064,Most adults,EA064-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +83684,Ne13,EA064,Most adults,EA064-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +83685,Ne14,EA064,Most adults,EA064-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +83686,Ne15,EA064,Most adults,EA064-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +83687,Ne16,EA064,Activity is absent,EA064-10,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +83688,Ne17,EA064,?,EA064-NA,,,,,, +83689,Ne18,EA064,Most adults,EA064-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +83690,Ne19,EA064,Most adults,EA064-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +83691,Ne2,EA064,Most adults,EA064-9,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +83692,Ne20,EA064,?,EA064-NA,,,,,, +83693,Ne21,EA064,?,EA064-NA,,,,,, +83694,Ne3,EA064,Most adults,EA064-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +83695,Ne4,EA064,Most adults,EA064-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p112, +83696,Ne5,EA064,Most adults,EA064-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +83697,Ne6,EA064,Most adults,EA064-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +83698,Ne7,EA064,Most adults,EA064-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +83699,Ne8,EA064,Most adults,EA064-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +83700,Ne9,EA064,Most adults,EA064-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +83701,Nf10,EA064,Most adults,EA064-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p116, +83702,Nf11,EA064,Most adults,EA064-9,,whitman1937,,1870,EthnographicAtlas_1967_p116, +83703,Nf12,EA064,Most adults,EA064-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +83704,Nf13,EA064,Activity is absent,EA064-10,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83705,Nf14,EA064,Most adults,EA064-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +83706,Nf15,EA064,?,EA064-NA,,,,,, +83707,Nf2,EA064,Activity is absent,EA064-10,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +83708,Nf3,EA064,Most adults,EA064-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +83709,Nf4,EA064,Activity is absent,EA064-10,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +83710,Nf5,EA064,Most adults,EA064-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +83711,Nf6,EA064,Most adults,EA064-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +83712,Nf7,EA064,Most adults,EA064-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83713,Nf8,EA064,Activity is absent,EA064-10,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +83714,Nf9,EA064,Activity is absent,EA064-10,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +83715,Ng1,EA064,Activity is absent,EA064-10,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +83716,Ng10,EA064,Activity is absent,EA064-10,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +83717,Ng11,EA064,Activity is absent,EA064-10,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +83718,Ng12,EA064,Activity is absent,EA064-10,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +83719,Ng13,EA064,?,EA064-NA,,,,,, +83720,Ng14,EA064,?,EA064-NA,,,,,, +83721,Ng15,EA064,?,EA064-NA,,,,,, +83722,Ng2,EA064,?,EA064-NA,,,,,, +83723,Ng3,EA064,Activity is absent,EA064-10,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +83724,Ng4,EA064,?,EA064-NA,,,,,, +83725,Ng5,EA064,Activity is absent,EA064-10,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +83726,Ng6,EA064,Activity is absent,EA064-10,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +83727,Ng7,EA064,Activity is absent,EA064-10,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +83728,Ng8,EA064,Activity is absent,EA064-10,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +83729,Ng9,EA064,?,EA064-NA,,,,,, +83730,Nh1,EA064,Most adults,EA064-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +83731,Nh10,EA064,?,EA064-NA,,,,,, +83732,Nh11,EA064,?,EA064-NA,,,,,, +83733,Nh12,EA064,?,EA064-NA,,,,,, +83734,Nh13,EA064,?,EA064-NA,,,,,, +83735,Nh14,EA064,?,EA064-NA,,,,,, +83736,Nh15,EA064,Activity is absent,EA064-10,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +83737,Nh16,EA064,?,EA064-NA,,,,,, +83738,Nh17,EA064,Junior age,EA064-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +83739,Nh18,EA064,Most adults,EA064-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83740,Nh19,EA064,Activity is absent,EA064-10,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +83741,Nh2,EA064,Most adults,EA064-9,,dozier1954,,1950,EthnographicAtlas_1967_p116, +83742,Nh20,EA064,Activity is absent,EA064-10,,gifford1931,,1860,EthnographicAtlas_1967_p116, +83743,Nh21,EA064,Activity is absent,EA064-10,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83744,Nh22,EA064,Activity is absent,EA064-10,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +83745,Nh23,EA064,Most adults,EA064-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +83746,Nh24,EA064,?,EA064-NA,,,,,, +83747,Nh25,EA064,?,EA064-NA,,,,,, +83748,Nh26,EA064,?,EA064-NA,,,,,, +83749,Nh27,EA064,?,EA064-NA,,,,,, +83750,Nh3,EA064,Most adults,EA064-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +83751,Nh4,EA064,?,EA064-NA,,,,,, +83752,Nh5,EA064,Activity is absent,EA064-10,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +83753,Nh6,EA064,Most adults,EA064-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +83754,Nh7,EA064,?,EA064-NA,,,,,, +83755,Nh8,EA064,?,EA064-NA,,,,,, +83756,Nh9,EA064,?,EA064-NA,,,,,, +83757,Ni1,EA064,Most adults,EA064-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +83758,Ni2,EA064,Activity is absent,EA064-10,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +83759,Ni3,EA064,Most adults,EA064-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +83760,Ni4,EA064,Activity is absent,EA064-10,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +83761,Ni5,EA064,Activity is absent,EA064-10,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +83762,Ni6,EA064,Activity is absent,EA064-10,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +83763,Ni7,EA064,Activity is absent,EA064-10,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +83764,Ni8,EA064,?,EA064-NA,,,,,, +83765,Ni9,EA064,?,EA064-NA,,,,,, +83766,Nj1,EA064,Most adults,EA064-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83767,Nj10,EA064,Most adults,EA064-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83768,Nj11,EA064,?,EA064-NA,,,,,, +83769,Nj12,EA064,?,EA064-NA,,,,,, +83770,Nj13,EA064,?,EA064-NA,,,,,, +83771,Nj14,EA064,?,EA064-NA,,,,,, +83772,Nj2,EA064,Activity is absent,EA064-10,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +83773,Nj3,EA064,?,EA064-NA,,,,,, +83774,Nj4,EA064,Most adults,EA064-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +83775,Nj5,EA064,?,EA064-NA,,,,,, +83776,Nj6,EA064,?,EA064-NA,,,,,, +83777,Nj7,EA064,Most adults,EA064-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83778,Nj8,EA064,Activity is absent,EA064-10,,foster1948,,1500,EthnographicAtlas_1967_p120, +83779,Nj9,EA064,Junior age,EA064-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +83780,Sa1,EA064,Most adults,EA064-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +83781,Sa10,EA064,?,EA064-NA,,,,,, +83782,Sa11,EA064,?,EA064-NA,,,,,, +83783,Sa12,EA064,?,EA064-NA,,,,,, +83784,Sa13,EA064,Junior age,EA064-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +83785,Sa14,EA064,?,EA064-NA,,,,,, +83786,Sa15,EA064,?,EA064-NA,,,,,, +83787,Sa16,EA064,?,EA064-NA,,,,,, +83788,Sa17,EA064,?,EA064-NA,,,,,, +83789,Sa2,EA064,?,EA064-NA,,,,,, +83790,Sa3,EA064,Most adults,EA064-9,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +83791,Sa4,EA064,Activity is absent,EA064-10,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +83792,Sa5,EA064,?,EA064-NA,,,,,, +83793,Sa6,EA064,Activity is absent,EA064-10,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +83794,Sa7,EA064,Activity is absent,EA064-10,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +83795,Sa8,EA064,Most adults,EA064-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p120, +83796,Sa9,EA064,?,EA064-NA,,,,,, +83797,Sb1,EA064,Activity is absent,EA064-10,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +83798,Sb2,EA064,?,EA064-NA,,,,,, +83799,Sb3,EA064,?,EA064-NA,,,,,, +83800,Sb4,EA064,Most adults,EA064-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +83801,Sb5,EA064,Activity is absent,EA064-10,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p120, +83802,Sb6,EA064,Most adults,EA064-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +83803,Sb7,EA064,Activity is absent,EA064-10,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +83804,Sb8,EA064,Activity is absent,EA064-10,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +83805,Sb9,EA064,Most adults,EA064-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +83806,Sc1,EA064,Activity is absent,EA064-10,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +83807,Sc10,EA064,Activity is absent,EA064-10,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +83808,Sc11,EA064,Activity is absent,EA064-10,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +83809,Sc12,EA064,Activity is absent,EA064-10,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +83810,Sc13,EA064,Activity is absent,EA064-10,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +83811,Sc14,EA064,Activity is absent,EA064-10,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +83812,Sc15,EA064,Activity is absent,EA064-10,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +83813,Sc16,EA064,Activity is absent,EA064-10,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +83814,Sc17,EA064,Activity is absent,EA064-10,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +83815,Sc18,EA064,Activity is absent,EA064-10,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +83816,Sc2,EA064,Most adults,EA064-9,,leedsnd,,1950,EthnographicAtlas_1967_p120, +83817,Sc3,EA064,Activity is absent,EA064-10,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +83818,Sc4,EA064,Activity is absent,EA064-10,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +83819,Sc5,EA064,Activity is absent,EA064-10,,farabee1918,,1900,EthnographicAtlas_1967_p120, +83820,Sc6,EA064,Activity is absent,EA064-10,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83821,Sc7,EA064,Activity is absent,EA064-10,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +83822,Sc8,EA064,Activity is absent,EA064-10,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +83823,Sc9,EA064,Activity is absent,EA064-10,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +83824,Sd1,EA064,Activity is absent,EA064-10,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83825,Sd2,EA064,Activity is absent,EA064-10,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +83826,Sd3,EA064,Activity is absent,EA064-10,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +83827,Sd4,EA064,Activity is absent,EA064-10,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +83828,Sd5,EA064,Activity is absent,EA064-10,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +83829,Sd6,EA064,Activity is absent,EA064-10,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +83830,Sd7,EA064,Activity is absent,EA064-10,,fock1963,,1950,EthnographicAtlas_1967_p120, +83831,Sd8,EA064,Activity is absent,EA064-10,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +83832,Sd9,EA064,Activity is absent,EA064-10,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83833,Se1,EA064,Activity is absent,EA064-10,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +83834,Se10,EA064,Activity is absent,EA064-10,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p120, +83835,Se11,EA064,Activity is absent,EA064-10,,prost1965,,1960,EthnographicAtlas_1967_p124, +83836,Se12,EA064,?,EA064-NA,,,,,, +83837,Se2,EA064,Activity is absent,EA064-10,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +83838,Se3,EA064,Most adults,EA064-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +83839,Se4,EA064,Activity is absent,EA064-10,,fejos1943,,1940,EthnographicAtlas_1967_p120, +83840,Se5,EA064,Activity is absent,EA064-10,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +83841,Se6,EA064,Activity is absent,EA064-10,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +83842,Se7,EA064,?,EA064-NA,,,,,, +83843,Se8,EA064,Activity is absent,EA064-10,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +83844,Se9,EA064,Activity is absent,EA064-10,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +83845,Sf1,EA064,Most adults,EA064-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +83846,Sf2,EA064,Most adults,EA064-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +83847,Sf3,EA064,?,EA064-NA,,,,,, +83848,Sf4,EA064,Activity is absent,EA064-10,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +83849,Sf5,EA064,Most adults,EA064-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +83850,Sf6,EA064,Activity is absent,EA064-10,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +83851,Sf7,EA064,Activity is absent,EA064-10,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +83852,Sf8,EA064,?,EA064-NA,,,,,, +83853,Sf9,EA064,?,EA064-NA,,,,,, +83854,Sg1,EA064,Activity is absent,EA064-10,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +83855,Sg2,EA064,Most adults,EA064-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83856,Sg3,EA064,Activity is absent,EA064-10,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +83857,Sg4,EA064,Most adults,EA064-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +83858,Sg5,EA064,Activity is absent,EA064-10,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83859,Sh1,EA064,Most adults,EA064-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +83860,Sh2,EA064,?,EA064-NA,,,,,, +83861,Sh3,EA064,Most adults,EA064-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +83862,Sh4,EA064,Most adults,EA064-9,,oberg1949,,1940,EthnographicAtlas_1967_p124, +83863,Sh5,EA064,Most adults,EA064-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +83864,Sh6,EA064,Activity is absent,EA064-10,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +83865,Sh7,EA064,Most adults,EA064-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +83866,Sh8,EA064,?,EA064-NA,,,,,, +83867,Sh9,EA064,Activity is absent,EA064-10,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +83868,Si1,EA064,Activity is absent,EA064-10,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83869,Si10,EA064,Activity is absent,EA064-10,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +83870,Si2,EA064,Activity is absent,EA064-10,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +83871,Si3,EA064,Activity is absent,EA064-10,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83872,Si4,EA064,Activity is absent,EA064-10,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +83873,Si5,EA064,Activity is absent,EA064-10,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +83874,Si6,EA064,Activity is absent,EA064-10,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p124, +83875,Si7,EA064,?,EA064-NA,,,,,, +83876,Si8,EA064,Activity is absent,EA064-10,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +83877,Si9,EA064,?,EA064-NA,,,,,, +83878,Sj1,EA064,Activity is absent,EA064-10,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +83879,Sj10,EA064,Activity is absent,EA064-10,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +83880,Sj11,EA064,Activity is absent,EA064-10,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +83881,Sj2,EA064,Activity is absent,EA064-10,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +83882,Sj3,EA064,Activity is absent,EA064-10,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +83883,Sj4,EA064,Most adults,EA064-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +83884,Sj5,EA064,Activity is absent,EA064-10,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +83885,Sj6,EA064,?,EA064-NA,,,,,, +83886,Sj7,EA064,Activity is absent,EA064-10,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +83887,Sj8,EA064,Activity is absent,EA064-10,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +83888,Sj9,EA064,Activity is absent,EA064-10,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +83889,ch12,EA064,Most adults,EA064-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +83890,ch13,EA064,Most adults,EA064-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +83891,ch14,EA064,Most adults,EA064-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +83892,ch15,EA064,Most adults,EA064-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +83893,ch16,EA064,Most adults,EA064-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +83894,ch17,EA064,Craft,EA064-3,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +83895,ch18,EA064,Most adults,EA064-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +83896,ch19,EA064,Most adults,EA064-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +83897,ch20,EA064,Most adults,EA064-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +83898,ch21,EA064,Most adults,EA064-9,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +83899,ch22,EA064,Most adults,EA064-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +83900,ch23,EA064,Most adults,EA064-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +83901,ch24,EA064,Most adults,EA064-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +83902,ch25,EA064,Craft,EA064-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +83903,ch26,EA064,Most adults,EA064-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +83904,ch27,EA064,Most adults,EA064-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +83905,ch28,EA064,Most adults,EA064-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +83906,ec12,EA064,Most adults,EA064-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +83907,ec13,EA064,Activity is absent,EA064-10,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +83908,ec14,EA064,Activity is absent,EA064-10,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +83909,ec15,EA064,Most adults,EA064-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +83910,ec16,EA064,Most adults,EA064-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +83911,ec17,EA064,Most adults,EA064-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +83912,ec18,EA064,Activity is absent,EA064-10,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +83913,ec19,EA064,Activity is absent,EA064-10,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +83914,ec20,EA064,Activity is absent,EA064-10,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +83915,ec21,EA064,Activity is absent,EA064-10,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +83916,Aa1,EA065,Activity is absent,EA065-10,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p64, +83917,Aa2,EA065,Activity is absent,EA065-10,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p64, +83918,Aa3,EA065,Activity is absent,EA065-10,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p64, +83919,Aa4,EA065,?,EA065-NA,,,,,, +83920,Aa5,EA065,Activity is absent,EA065-10,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p64, +83921,Aa6,EA065,Most adults,EA065-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p64, +83922,Aa7,EA065,Activity is absent,EA065-10,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p64, +83923,Aa8,EA065,Activity is absent,EA065-10,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +83924,Aa9,EA065,Activity is absent,EA065-10,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p64, +83925,Ab1,EA065,Activity is absent,EA065-10,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p64, +83926,Ab10,EA065,Most adults,EA065-9,,hunter1936,,1936,EthnographicAtlas_1967_p64, +83927,Ab11,EA065,Most adults,EA065-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +83928,Ab12,EA065,Most adults,EA065-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p64, +83929,Ab13,EA065,Most adults,EA065-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p64, +83930,Ab14,EA065,Most adults,EA065-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p64, +83931,Ab15,EA065,Most adults,EA065-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +83932,Ab16,EA065,Most adults,EA065-9,,earthy1933,,1930,EthnographicAtlas_1967_p64, +83933,Ab17,EA065,?,EA065-NA,,,,,, +83934,Ab18,EA065,Most adults,EA065-9,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p64, +83935,Ab19,EA065,Most adults,EA065-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p64, +83936,Ab2,EA065,Most adults,EA065-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p64, +83937,Ab20,EA065,?,EA065-NA,,,,,, +83938,Ab21a,EA065,?,EA065-NA,,,,,, +83939,Ab21b,EA065,?,EA065-NA,,,,,, +83940,Ab22,EA065,?,EA065-NA,,,,,, +83941,Ab3,EA065,Most adults,EA065-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p64, +83942,Ab4,EA065,Most adults,EA065-9,,junod1927,,1920,EthnographicAtlas_1967_p64, +83943,Ab5,EA065,Most adults,EA065-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p64, +83944,Ab6,EA065,Most adults,EA065-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p64, +83945,Ab7,EA065,Most adults,EA065-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p64, +83946,Ab8,EA065,Most adults,EA065-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p64, +83947,Ab9,EA065,Most adults,EA065-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p64, +83948,Ac1,EA065,Most adults,EA065-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p64, +83949,Ac10,EA065,Most adults,EA065-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p64, +83950,Ac11,EA065,Most adults,EA065-9,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p64, +83951,Ac12,EA065,Most adults,EA065-9,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p64, +83952,Ac13,EA065,Most adults,EA065-9,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p64, +83953,Ac14,EA065,Most adults,EA065-9,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p64, +83954,Ac15,EA065,?,EA065-NA,,,,,, +83955,Ac16,EA065,?,EA065-NA,,,,,, +83956,Ac17,EA065,Most adults,EA065-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p64, +83957,Ac18,EA065,Most adults,EA065-9,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p64, +83958,Ac19,EA065,?,EA065-NA,,,,,, +83959,Ac2,EA065,Most adults,EA065-9,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p64, +83960,Ac20,EA065,?,EA065-NA,,,,,, +83961,Ac21,EA065,Most adults,EA065-9,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p64, +83962,Ac22,EA065,Most adults,EA065-9,,mertens1935,,1930,EthnographicAtlas_1967_p64, +83963,Ac23,EA065,Most adults,EA065-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p64, +83964,Ac24,EA065,?,EA065-NA,,,,,, +83965,Ac25,EA065,Most adults,EA065-9,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p64, +83966,Ac26,EA065,?,EA065-NA,,,,,, +83967,Ac27,EA065,?,EA065-NA,,,,,, +83968,Ac28,EA065,Most adults,EA065-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p64, +83969,Ac29,EA065,?,EA065-NA,,,,,, +83970,Ac3,EA065,Most adults,EA065-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p64, +83971,Ac30,EA065,Most adults,EA065-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p64, +83972,Ac31,EA065,Most adults,EA065-9,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +83973,Ac32,EA065,?,EA065-NA,,,,,, +83974,Ac33,EA065,Most adults,EA065-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p64, +83975,Ac34,EA065,Most adults,EA065-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p64, +83976,Ac35,EA065,?,EA065-NA,,,,,, +83977,Ac36,EA065,Most adults,EA065-9,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p64, +83978,Ac37,EA065,?,EA065-NA,,,,,, +83979,Ac38,EA065,Most adults,EA065-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p64, +83980,Ac39,EA065,Most adults,EA065-9,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +83981,Ac4,EA065,Most adults,EA065-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p64, +83982,Ac40,EA065,?,EA065-NA,,,,,, +83983,Ac41,EA065,?,EA065-NA,,,,,, +83984,Ac42,EA065,?,EA065-NA,,,,,, +83985,Ac43,EA065,?,EA065-NA,,,,,, +83986,Ac5,EA065,Most adults,EA065-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p64, +83987,Ac6,EA065,Most adults,EA065-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p64, +83988,Ac7,EA065,Most adults,EA065-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p64, +83989,Ac8,EA065,Most adults,EA065-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p64, +83990,Ac9,EA065,Most adults,EA065-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p64, +83991,Ad1,EA065,Most adults,EA065-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p64, +83992,Ad10,EA065,Most adults,EA065-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p68, +83993,Ad11,EA065,Most adults,EA065-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p68, +83994,Ad12,EA065,?,EA065-NA,,,,,, +83995,Ad13,EA065,Most adults,EA065-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p68, +83996,Ad14,EA065,Most adults,EA065-9,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p68, +83997,Ad15,EA065,Most adults,EA065-9,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p68, +83998,Ad16,EA065,Most adults,EA065-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p68, +83999,Ad17,EA065,Most adults,EA065-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p68, +84000,Ad18,EA065,?,EA065-NA,,,,,, +84001,Ad19,EA065,Most adults,EA065-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p68, +84002,Ad2,EA065,Most adults,EA065-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p64, +84003,Ad20,EA065,Most adults,EA065-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p68, +84004,Ad21,EA065,Most adults,EA065-9,,maurice193538,,1930,EthnographicAtlas_1967_p68, +84005,Ad22,EA065,Most adults,EA065-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p68, +84006,Ad23,EA065,?,EA065-NA,,,,,, +84007,Ad24,EA065,Most adults,EA065-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p68, +84008,Ad25,EA065,?,EA065-NA,,,,,, +84009,Ad26,EA065,Most adults,EA065-9,,sick1916,,1910,EthnographicAtlas_1967_p68, +84010,Ad27,EA065,Most adults,EA065-9,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +84011,Ad28,EA065,Most adults,EA065-9,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +84012,Ad29,EA065,Most adults,EA065-9,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p68, +84013,Ad3,EA065,Most adults,EA065-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p64, +84014,Ad30,EA065,Most adults,EA065-9,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p68, +84015,Ad31,EA065,Most adults,EA065-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +84016,Ad32,EA065,Most adults,EA065-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p68, +84017,Ad33,EA065,Most adults,EA065-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p68, +84018,Ad34,EA065,Most adults,EA065-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +84019,Ad35,EA065,Most adults,EA065-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p68, +84020,Ad36,EA065,?,EA065-NA,,,,,, +84021,Ad37,EA065,?,EA065-NA,,,,,, +84022,Ad38,EA065,?,EA065-NA,,,,,, +84023,Ad39,EA065,Most adults,EA065-9,,gray1963,,1950,EthnographicAtlas_1967_p68, +84024,Ad4,EA065,Most adults,EA065-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p64, +84025,Ad40,EA065,?,EA065-NA,,,,,, +84026,Ad41,EA065,Most adults,EA065-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p68, +84027,Ad42,EA065,Most adults,EA065-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p68, +84028,Ad43,EA065,?,EA065-NA,,,,,, +84029,Ad44,EA065,Most adults,EA065-9,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p68, +84030,Ad45,EA065,Most adults,EA065-9,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p68, +84031,Ad46,EA065,Most adults,EA065-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p68, +84032,Ad47,EA065,Most adults,EA065-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +84033,Ad48,EA065,Most adults,EA065-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +84034,Ad49,EA065,Most adults,EA065-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +84035,Ad5,EA065,?,EA065-NA,,,,,, +84036,Ad50,EA065,Most adults,EA065-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +84037,Ad51,EA065,Most adults,EA065-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +84038,Ad6,EA065,Most adults,EA065-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p64, +84039,Ad7,EA065,Most adults,EA065-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p64, +84040,Ad8,EA065,Most adults,EA065-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p68, +84041,Ad9,EA065,Most adults,EA065-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p68, +84042,Ae1,EA065,Most adults,EA065-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p68, +84043,Ae10,EA065,Most adults,EA065-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +84044,Ae11,EA065,Most adults,EA065-9,,delhaise1909a,,1900,EthnographicAtlas_1967_p68, +84045,Ae12,EA065,Most adults,EA065-9,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p68, +84046,Ae13,EA065,?,EA065-NA,,,,,, +84047,Ae14,EA065,Most adults,EA065-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p68, +84048,Ae15,EA065,Most adults,EA065-9,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p68, +84049,Ae16,EA065,?,EA065-NA,,,,,, +84050,Ae17,EA065,Most adults,EA065-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p68, +84051,Ae18,EA065,Most adults,EA065-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +84052,Ae19,EA065,?,EA065-NA,,,,,, +84053,Ae2,EA065,Most adults,EA065-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p68, +84054,Ae20,EA065,?,EA065-NA,,,,,, +84055,Ae21,EA065,?,EA065-NA,,,,,, +84056,Ae22,EA065,Most adults,EA065-9,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p68, +84057,Ae23,EA065,?,EA065-NA,,,,,, +84058,Ae24,EA065,?,EA065-NA,,,,,, +84059,Ae25,EA065,?,EA065-NA,,,,,, +84060,Ae26,EA065,?,EA065-NA,,,,,, +84061,Ae27,EA065,?,EA065-NA,,,,,, +84062,Ae28,EA065,Most adults,EA065-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p68, +84063,Ae29,EA065,Most adults,EA065-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p68, +84064,Ae3,EA065,Most adults,EA065-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p68, +84065,Ae30,EA065,?,EA065-NA,,,,,, +84066,Ae31,EA065,Most adults,EA065-9,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +84067,Ae32,EA065,?,EA065-NA,,,,,, +84068,Ae33,EA065,Most adults,EA065-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +84069,Ae34,EA065,?,EA065-NA,,,,,, +84070,Ae35,EA065,?,EA065-NA,,,,,, +84071,Ae36,EA065,?,EA065-NA,,,,,, +84072,Ae37,EA065,?,EA065-NA,,,,,, +84073,Ae38,EA065,Most adults,EA065-9,,wijnant192526,,1920,EthnographicAtlas_1967_p68, +84074,Ae39,EA065,Most adults,EA065-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p68, +84075,Ae4,EA065,Most adults,EA065-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p68, +84076,Ae40,EA065,?,EA065-NA,,,,,, +84077,Ae41,EA065,Most adults,EA065-9,,andersson1953,,1940,EthnographicAtlas_1967_p68, +84078,Ae42,EA065,?,EA065-NA,,,,,, +84079,Ae43,EA065,?,EA065-NA,,,,,, +84080,Ae44,EA065,?,EA065-NA,,,,,, +84081,Ae45,EA065,?,EA065-NA,,,,,, +84082,Ae46,EA065,?,EA065-NA,,,,,, +84083,Ae47,EA065,?,EA065-NA,,,,,, +84084,Ae48,EA065,Most adults,EA065-9,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p68, +84085,Ae49,EA065,?,EA065-NA,,,,,, +84086,Ae5,EA065,Most adults,EA065-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p68, +84087,Ae50,EA065,Most adults,EA065-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p68, +84088,Ae51,EA065,Most adults,EA065-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p68, +84089,Ae52,EA065,Most adults,EA065-9,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +84090,Ae53,EA065,?,EA065-NA,,,,,, +84091,Ae54,EA065,?,EA065-NA,,,,,, +84092,Ae55,EA065,Most adults,EA065-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +84093,Ae56,EA065,Most adults,EA065-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +84094,Ae57,EA065,?,EA065-NA,,,,,, +84095,Ae58,EA065,?,EA065-NA,,,,,, +84096,Ae59,EA065,?,EA065-NA,,,,,, +84097,Ae6,EA065,Most adults,EA065-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p68, +84098,Ae7,EA065,Most adults,EA065-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p68, +84099,Ae8,EA065,Most adults,EA065-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p68, +84100,Ae9,EA065,Most adults,EA065-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p68, +84101,Af1,EA065,Most adults,EA065-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p68, +84102,Af10,EA065,Most adults,EA065-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p72, +84103,Af11,EA065,Most adults,EA065-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p72, +84104,Af12,EA065,?,EA065-NA,,,,,, +84105,Af13,EA065,Most adults,EA065-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p72, +84106,Af14,EA065,Most adults,EA065-9,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p72, +84107,Af15,EA065,Most adults,EA065-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p72, +84108,Af16,EA065,?,EA065-NA,,,,,, +84109,Af17,EA065,?,EA065-NA,,,,,, +84110,Af18,EA065,?,EA065-NA,,,,,, +84111,Af19,EA065,Most adults,EA065-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p72, +84112,Af2,EA065,Most adults,EA065-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p68, +84113,Af20,EA065,Most adults,EA065-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p72, +84114,Af21,EA065,?,EA065-NA,,,,,, +84115,Af22,EA065,?,EA065-NA,Performed almost exclusively by slaves,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p72, +84116,Af23,EA065,Most adults,EA065-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p72, +84117,Af24,EA065,Most adults,EA065-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p72, +84118,Af25,EA065,Most adults,EA065-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p72, +84119,Af26,EA065,?,EA065-NA,,,,,, +84120,Af27,EA065,?,EA065-NA,,,,,, +84121,Af28,EA065,Most adults,EA065-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p72, +84122,Af29,EA065,?,EA065-NA,,,,,, +84123,Af3,EA065,Most adults,EA065-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p68, +84124,Af30,EA065,?,EA065-NA,,,,,, +84125,Af31,EA065,?,EA065-NA,,,,,, +84126,Af32,EA065,Most adults,EA065-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84127,Af33,EA065,Most adults,EA065-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84128,Af34,EA065,?,EA065-NA,,,,,, +84129,Af35,EA065,?,EA065-NA,,,,,, +84130,Af36,EA065,Most adults,EA065-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p72, +84131,Af37,EA065,?,EA065-NA,,,,,, +84132,Af38,EA065,?,EA065-NA,,,,,, +84133,Af39,EA065,?,EA065-NA,,,,,, +84134,Af4,EA065,Most adults,EA065-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p72, +84135,Af40,EA065,?,EA065-NA,,,,,, +84136,Af41,EA065,?,EA065-NA,,,,,, +84137,Af42,EA065,Most adults,EA065-9,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p72, +84138,Af43,EA065,Most adults,EA065-9,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p72, +84139,Af44,EA065,?,EA065-NA,,,,,, +84140,Af45,EA065,?,EA065-NA,,,,,, +84141,Af46,EA065,?,EA065-NA,,,,,, +84142,Af47,EA065,?,EA065-NA,,,,,, +84143,Af48,EA065,?,EA065-NA,,,,,, +84144,Af49,EA065,Most adults,EA065-9,,schwab1947,,1940,EthnographicAtlas_1967_p72, +84145,Af5,EA065,Most adults,EA065-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p72, +84146,Af50,EA065,?,EA065-NA,,,,,, +84147,Af51,EA065,Most adults,EA065-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +84148,Af52,EA065,Most adults,EA065-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p72, +84149,Af53,EA065,?,EA065-NA,,,,,, +84150,Af54,EA065,Most adults,EA065-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p72, +84151,Af55,EA065,?,EA065-NA,,,,,, +84152,Af56,EA065,Most adults,EA065-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p72, +84153,Af57,EA065,Most adults,EA065-9,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p72, +84154,Af58,EA065,?,EA065-NA,,,,,, +84155,Af6,EA065,Most adults,EA065-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p72, +84156,Af7,EA065,Most adults,EA065-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p72, +84157,Af8,EA065,Most adults,EA065-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p72, +84158,Af9,EA065,Most adults,EA065-9,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p72, +84159,Ag1,EA065,Most adults,EA065-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p72, +84160,Ag10,EA065,Most adults,EA065-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p72, +84161,Ag11,EA065,Most adults,EA065-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p72, +84162,Ag12,EA065,Most adults,EA065-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p72, +84163,Ag13,EA065,Most adults,EA065-9,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p72, +84164,Ag14,EA065,?,EA065-NA,,,,,, +84165,Ag15,EA065,?,EA065-NA,,,,,, +84166,Ag16,EA065,Most adults,EA065-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p72, +84167,Ag17,EA065,?,EA065-NA,,,,,, +84168,Ag18,EA065,Most adults,EA065-9,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p72, +84169,Ag19,EA065,Most adults,EA065-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p72, +84170,Ag2,EA065,Most adults,EA065-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p72, +84171,Ag20,EA065,?,EA065-NA,,,,,, +84172,Ag21,EA065,Most adults,EA065-9,,lestrange1950,,1910,EthnographicAtlas_1967_p72, +84173,Ag22,EA065,Most adults,EA065-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p72, +84174,Ag23,EA065,?,EA065-NA,,,,,, +84175,Ag24,EA065,?,EA065-NA,,,,,, +84176,Ag25,EA065,Most adults,EA065-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p72, +84177,Ag26,EA065,Most adults,EA065-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p72, +84178,Ag27,EA065,Most adults,EA065-9,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p72, +84179,Ag28,EA065,?,EA065-NA,,,,,, +84180,Ag29,EA065,?,EA065-NA,,,,,, +84181,Ag3,EA065,Most adults,EA065-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p72, +84182,Ag30,EA065,Most adults,EA065-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p72, +84183,Ag31,EA065,Most adults,EA065-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p72, +84184,Ag32,EA065,Most adults,EA065-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p72, +84185,Ag33,EA065,?,EA065-NA,,,,,, +84186,Ag34,EA065,?,EA065-NA,,,,,, +84187,Ag35,EA065,?,EA065-NA,,,,,, +84188,Ag36,EA065,?,EA065-NA,,,,,, +84189,Ag37,EA065,?,EA065-NA,,,,,, +84190,Ag38,EA065,?,EA065-NA,,,,,, +84191,Ag39,EA065,Most adults,EA065-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +84192,Ag4,EA065,Most adults,EA065-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p72, +84193,Ag40,EA065,?,EA065-NA,,,,,, +84194,Ag41,EA065,Most adults,EA065-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p72, +84195,Ag42,EA065,?,EA065-NA,,,,,, +84196,Ag43,EA065,?,EA065-NA,,,,,, +84197,Ag44,EA065,?,EA065-NA,,,,,, +84198,Ag45,EA065,Most adults,EA065-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +84199,Ag46,EA065,?,EA065-NA,,,,,, +84200,Ag47,EA065,Most adults,EA065-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p76, +84201,Ag48,EA065,Most adults,EA065-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p76, +84202,Ag49,EA065,Most adults,EA065-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p76, +84203,Ag5,EA065,Most adults,EA065-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p72, +84204,Ag50,EA065,Most adults,EA065-9,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +84205,Ag51,EA065,?,EA065-NA,,,,,, +84206,Ag52,EA065,?,EA065-NA,,,,,, +84207,Ag53,EA065,Most adults,EA065-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +84208,Ag54,EA065,Most adults,EA065-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +84209,Ag6,EA065,Most adults,EA065-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p72, +84210,Ag7,EA065,Most adults,EA065-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p72, +84211,Ag8,EA065,Most adults,EA065-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p72, +84212,Ag9,EA065,Most adults,EA065-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p72, +84213,Ah1,EA065,Most adults,EA065-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84214,Ah10,EA065,?,EA065-NA,,,,,, +84215,Ah11,EA065,Most adults,EA065-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p76, +84216,Ah12,EA065,?,EA065-NA,,,,,, +84217,Ah13,EA065,Most adults,EA065-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +84218,Ah14,EA065,?,EA065-NA,,,,,, +84219,Ah15,EA065,Most adults,EA065-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p76, +84220,Ah16,EA065,?,EA065-NA,,,,,, +84221,Ah17,EA065,?,EA065-NA,,,,,, +84222,Ah18,EA065,?,EA065-NA,,,,,, +84223,Ah19,EA065,Most adults,EA065-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p76, +84224,Ah2,EA065,Most adults,EA065-9,,meek1931a,,1920,EthnographicAtlas_1967_p76, +84225,Ah20,EA065,Most adults,EA065-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p76, +84226,Ah21,EA065,?,EA065-NA,,,,,, +84227,Ah22,EA065,?,EA065-NA,,,,,, +84228,Ah23,EA065,?,EA065-NA,,,,,, +84229,Ah24,EA065,?,EA065-NA,,,,,, +84230,Ah25,EA065,?,EA065-NA,,,,,, +84231,Ah26,EA065,?,EA065-NA,,,,,, +84232,Ah27,EA065,?,EA065-NA,,,,,, +84233,Ah28,EA065,?,EA065-NA,,,,,, +84234,Ah29,EA065,?,EA065-NA,,,,,, +84235,Ah3,EA065,Most adults,EA065-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p76, +84236,Ah30,EA065,Most adults,EA065-9,,meek1931b,,1920,EthnographicAtlas_1967_p76, +84237,Ah31,EA065,Most adults,EA065-9,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p76, +84238,Ah32,EA065,?,EA065-NA,,,,,, +84239,Ah33,EA065,Most adults,EA065-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p76, +84240,Ah34,EA065,?,EA065-NA,,,,,, +84241,Ah35,EA065,?,EA065-NA,,,,,, +84242,Ah36,EA065,Most adults,EA065-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p76, +84243,Ah37,EA065,?,EA065-NA,,,,,, +84244,Ah38,EA065,Most adults,EA065-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p76, +84245,Ah39,EA065,Most adults,EA065-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p76, +84246,Ah4,EA065,Most adults,EA065-9,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p76, +84247,Ah5,EA065,?,EA065-NA,,,,,, +84248,Ah6,EA065,?,EA065-NA,,,,,, +84249,Ah7,EA065,Most adults,EA065-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p76, +84250,Ah8,EA065,Most adults,EA065-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p76, +84251,Ah9,EA065,Most adults,EA065-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p76, +84252,Ai1,EA065,Most adults,EA065-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p76, +84253,Ai10,EA065,Most adults,EA065-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p76, +84254,Ai11,EA065,Most adults,EA065-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p76, +84255,Ai12,EA065,Most adults,EA065-9,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p76, +84256,Ai13,EA065,?,EA065-NA,,,,,, +84257,Ai14,EA065,?,EA065-NA,,,,,, +84258,Ai15,EA065,Most adults,EA065-9,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p76, +84259,Ai16,EA065,?,EA065-NA,,,,,, +84260,Ai17,EA065,Most adults,EA065-9,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +84261,Ai18,EA065,Most adults,EA065-9,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +84262,Ai19,EA065,?,EA065-NA,,,,,, +84263,Ai2,EA065,?,EA065-NA,,,,,, +84264,Ai20,EA065,?,EA065-NA,,,,,, +84265,Ai21,EA065,?,EA065-NA,,,,,, +84266,Ai22,EA065,Most adults,EA065-9,,delafosse1897,,1890,EthnographicAtlas_1967_p76, +84267,Ai23,EA065,Most adults,EA065-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p76, +84268,Ai24,EA065,?,EA065-NA,,,,,, +84269,Ai25,EA065,Most adults,EA065-9,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +84270,Ai26,EA065,Most adults,EA065-9,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p76, +84271,Ai27,EA065,?,EA065-NA,,,,,, +84272,Ai28,EA065,Most adults,EA065-9,,delhaise1912,,1910,EthnographicAtlas_1967_p76, +84273,Ai29,EA065,Most adults,EA065-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p76, +84274,Ai3,EA065,Most adults,EA065-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p76, +84275,Ai30,EA065,Most adults,EA065-9,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +84276,Ai31,EA065,Most adults,EA065-9,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +84277,Ai32,EA065,Most adults,EA065-9,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p76, +84278,Ai33,EA065,Most adults,EA065-9,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p76, +84279,Ai34,EA065,Most adults,EA065-9,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +84280,Ai35,EA065,Most adults,EA065-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p76, +84281,Ai36,EA065,Most adults,EA065-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p76, +84282,Ai37,EA065,?,EA065-NA,,,,,, +84283,Ai38,EA065,Most adults,EA065-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +84284,Ai39,EA065,Most adults,EA065-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +84285,Ai4,EA065,?,EA065-NA,,,,,, +84286,Ai40,EA065,Most adults,EA065-9,,nadel1947,,1940,EthnographicAtlas_1967_p76, +84287,Ai41,EA065,Most adults,EA065-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p76, +84288,Ai42,EA065,Most adults,EA065-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p76, +84289,Ai43,EA065,Most adults,EA065-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p76, +84290,Ai44,EA065,Most adults,EA065-9,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p76, +84291,Ai45,EA065,?,EA065-NA,,,,,, +84292,Ai46,EA065,Most adults,EA065-9,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p76, +84293,Ai47,EA065,?,EA065-NA,,,,,, +84294,Ai5,EA065,Most adults,EA065-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p76, +84295,Ai6,EA065,Most adults,EA065-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p76, +84296,Ai7,EA065,Most adults,EA065-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p76, +84297,Ai8,EA065,Most adults,EA065-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p76, +84298,Ai9,EA065,Most adults,EA065-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p76, +84299,Aj1,EA065,Most adults,EA065-9,,lawrance1957,,1950,EthnographicAtlas_1967_p76, +84300,Aj10,EA065,?,EA065-NA,,,,,, +84301,Aj11,EA065,Most adults,EA065-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p80, +84302,Aj12,EA065,Most adults,EA065-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +84303,Aj13,EA065,Most adults,EA065-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +84304,Aj14,EA065,?,EA065-NA,,,,,, +84305,Aj15,EA065,Most adults,EA065-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p80, +84306,Aj16,EA065,Most adults,EA065-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p80, +84307,Aj17,EA065,Most adults,EA065-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p80, +84308,Aj18,EA065,Most adults,EA065-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +84309,Aj19,EA065,Most adults,EA065-9,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p80, +84310,Aj2,EA065,Activity is absent,EA065-10,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p80, +84311,Aj20,EA065,?,EA065-NA,,,,,, +84312,Aj21,EA065,Most adults,EA065-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p80, +84313,Aj22,EA065,Most adults,EA065-9,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +84314,Aj23,EA065,Most adults,EA065-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p80, +84315,Aj24,EA065,Most adults,EA065-9,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p80, +84316,Aj25,EA065,Most adults,EA065-9,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +84317,Aj26,EA065,Most adults,EA065-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p80, +84318,Aj27,EA065,?,EA065-NA,,,,,, +84319,Aj28,EA065,Most adults,EA065-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +84320,Aj29,EA065,?,EA065-NA,,,,,, +84321,Aj3,EA065,Most adults,EA065-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p80, +84322,Aj30,EA065,?,EA065-NA,,,,,, +84323,Aj31,EA065,?,EA065-NA,,,,,, +84324,Aj4,EA065,Most adults,EA065-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p80, +84325,Aj5,EA065,Most adults,EA065-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p80, +84326,Aj6,EA065,Most adults,EA065-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p80, +84327,Aj7,EA065,Most adults,EA065-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p80, +84328,Aj8,EA065,Most adults,EA065-9,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p80, +84329,Aj9,EA065,Most adults,EA065-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p80, +84330,Ca1,EA065,Most adults,EA065-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p80, +84331,Ca10,EA065,?,EA065-NA,,,,,, +84332,Ca11,EA065,Most adults,EA065-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p80, +84333,Ca12,EA065,Most adults,EA065-9,Formerly mainly by slaves,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p80, +84334,Ca13,EA065,Most adults,EA065-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p80, +84335,Ca14,EA065,Most adults,EA065-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p80, +84336,Ca15,EA065,Most adults,EA065-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +84337,Ca16,EA065,Most adults,EA065-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p80, +84338,Ca17,EA065,Most adults,EA065-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +84339,Ca18,EA065,?,EA065-NA,,,,,, +84340,Ca19,EA065,Most adults,EA065-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p80, +84341,Ca2,EA065,?,EA065-NA,Performed by slaves,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p80, +84342,Ca20,EA065,?,EA065-NA,,,,,, +84343,Ca21,EA065,?,EA065-NA,,,,,, +84344,Ca22,EA065,Most adults,EA065-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +84345,Ca23,EA065,Most adults,EA065-9,,jensen1959,,1950,EthnographicAtlas_1967_p80, +84346,Ca24,EA065,?,EA065-NA,,,,,, +84347,Ca25,EA065,Most adults,EA065-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +84348,Ca26,EA065,?,EA065-NA,,,,,, +84349,Ca27,EA065,?,EA065-NA,,,,,, +84350,Ca28,EA065,Most adults,EA065-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p80, +84351,Ca29,EA065,Most adults,EA065-9,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p80, +84352,Ca3,EA065,Most adults,EA065-9,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p80, +84353,Ca30,EA065,?,EA065-NA,,,,,, +84354,Ca31,EA065,Most adults,EA065-9,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p80, +84355,Ca32,EA065,Most adults,EA065-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +84356,Ca33,EA065,Most adults,EA065-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p80, +84357,Ca34,EA065,?,EA065-NA,,,,,, +84358,Ca35,EA065,?,EA065-NA,,,,,, +84359,Ca36,EA065,?,EA065-NA,,,,,, +84360,Ca37,EA065,?,EA065-NA,,,,,, +84361,Ca38,EA065,?,EA065-NA,,,,,, +84362,Ca39,EA065,Most adults,EA065-9,,lewis1965b,,1930,EthnographicAtlas_1967_p80, +84363,Ca4,EA065,Most adults,EA065-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p80, +84364,Ca40,EA065,Most adults,EA065-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +84365,Ca41,EA065,Most adults,EA065-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +84366,Ca42,EA065,Most adults,EA065-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +84367,Ca43,EA065,?,EA065-NA,,,,,, +84368,Ca5,EA065,Most adults,EA065-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p80, +84369,Ca6,EA065,?,EA065-NA,Performed only by serfs,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p80, +84370,Ca7,EA065,Most adults,EA065-9,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p80, +84371,Ca8,EA065,Most adults,EA065-9,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p80, +84372,Ca9,EA065,?,EA065-NA,,,,,, +84373,Cb1,EA065,?,EA065-NA,,,,,, +84374,Cb10,EA065,?,EA065-NA,,,,,, +84375,Cb11,EA065,?,EA065-NA,,,,,, +84376,Cb12,EA065,?,EA065-NA,,,,,, +84377,Cb13,EA065,?,EA065-NA,,,,,, +84378,Cb14,EA065,?,EA065-NA,,,,,, +84379,Cb15,EA065,?,EA065-NA,,,,,, +84380,Cb16,EA065,?,EA065-NA,,,,,, +84381,Cb17,EA065,Most adults,EA065-9,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p80, +84382,Cb18,EA065,Most adults,EA065-9,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p80, +84383,Cb19,EA065,Most adults,EA065-9,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p80, +84384,Cb2,EA065,Most adults,EA065-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p80, +84385,Cb20,EA065,Most adults,EA065-9,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +84386,Cb21,EA065,Activity is absent,EA065-10,,pfeffer1936,,1930,EthnographicAtlas_1967_p84, +84387,Cb22,EA065,?,EA065-NA,Agriculture is largely performed by Negro serfs,coutouly1923;delmond1953,,1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +84388,Cb23,EA065,Most adults,EA065-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p84, +84389,Cb24,EA065,?,EA065-NA,,,,,, +84390,Cb25,EA065,?,EA065-NA,,,,,, +84391,Cb26,EA065,Most adults,EA065-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p84, +84392,Cb27,EA065,?,EA065-NA,,,,,, +84393,Cb28,EA065,?,EA065-NA,,,,,, +84394,Cb29,EA065,?,EA065-NA,,,,,, +84395,Cb3,EA065,Most adults,EA065-9,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p80, +84396,Cb4,EA065,Most adults,EA065-9,,reid1930,,1920,EthnographicAtlas_1967_p80, +84397,Cb5,EA065,?,EA065-NA,,,,,, +84398,Cb6,EA065,Most adults,EA065-9,,woodnd,,1920,EthnographicAtlas_1967_p80, +84399,Cb7,EA065,Most adults,EA065-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p80, +84400,Cb8,EA065,?,EA065-NA,,,,,, +84401,Cb9,EA065,Most adults,EA065-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p80, +84402,Cc1,EA065,Most adults,EA065-9,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p84, +84403,Cc10,EA065,Most adults,EA065-9,Performed by serfs and slaves,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p84, +84404,Cc11,EA065,?,EA065-NA,,,,,, +84405,Cc12,EA065,?,EA065-NA,Agriculture is done only by slaves and serfs,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +84406,Cc13,EA065,?,EA065-NA,,,,,, +84407,Cc14,EA065,?,EA065-NA,Agriculture is performed mainly by slaves and serfs,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +84408,Cc15,EA065,?,EA065-NA,,,,,, +84409,Cc16,EA065,?,EA065-NA,Performed exclusively by serfs and slaves,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p84, +84410,Cc17,EA065,Most adults,EA065-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p84, +84411,Cc18,EA065,?,EA065-NA,,,,,, +84412,Cc19,EA065,?,EA065-NA,,,,,, +84413,Cc2,EA065,Most adults,EA065-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p84, +84414,Cc20,EA065,Most adults,EA065-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p84, +84415,Cc3,EA065,Most adults,EA065-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p84, +84416,Cc4,EA065,Most adults,EA065-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p84, +84417,Cc5,EA065,?,EA065-NA,Performed exclusively by sedentary serfs,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p84, +84418,Cc6,EA065,?,EA065-NA,,,,,, +84419,Cc7,EA065,?,EA065-NA,Performed by slaves or serfs,miner1953,Timbuctoo,1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84420,Cc8,EA065,?,EA065-NA,,,,,, +84421,Cc9,EA065,?,EA065-NA,Agriculture is performed exclusively by slaves and serfs,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p84, +84422,Cd1,EA065,Most adults,EA065-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p84, +84423,Cd10,EA065,?,EA065-NA,,,,,, +84424,Cd11,EA065,Most adults,EA065-9,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p84, +84425,Cd12,EA065,Most adults,EA065-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p84, +84426,Cd13,EA065,?,EA065-NA,,,,,, +84427,Cd14,EA065,?,EA065-NA,,,,,, +84428,Cd15,EA065,?,EA065-NA,,,,,, +84429,Cd16,EA065,?,EA065-NA,,,,,, +84430,Cd17,EA065,?,EA065-NA,,,,,, +84431,Cd18,EA065,?,EA065-NA,,,,,, +84432,Cd19,EA065,?,EA065-NA,,,,,, +84433,Cd2,EA065,Most adults,EA065-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p84, +84434,Cd20,EA065,?,EA065-NA,,,,,, +84435,Cd21,EA065,?,EA065-NA,,,,,, +84436,Cd3,EA065,Most adults,EA065-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p84, +84437,Cd4,EA065,Most adults,EA065-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p84, +84438,Cd5,EA065,Most adults,EA065-9,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p84, +84439,Cd6,EA065,Most adults,EA065-9,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p84, +84440,Cd7,EA065,?,EA065-NA,,,,,, +84441,Cd8,EA065,?,EA065-NA,,,,,, +84442,Cd9,EA065,?,EA065-NA,,,,,, +84443,Ce1,EA065,Most adults,EA065-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p84, +84444,Ce2,EA065,?,EA065-NA,,,,,, +84445,Ce3,EA065,?,EA065-NA,,,,,, +84446,Ce4,EA065,Most adults,EA065-9,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84447,Ce5,EA065,Most adults,EA065-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p84, +84448,Ce6,EA065,Most adults,EA065-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p84, +84449,Ce7,EA065,Most adults,EA065-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p84, +84450,Ce8,EA065,Most adults,EA065-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +84451,Cf1,EA065,Most adults,EA065-9,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p84, +84452,Cf2,EA065,?,EA065-NA,,,,,, +84453,Cf3,EA065,Most adults,EA065-9,,munch1945,,1930,EthnographicAtlas_1967_p84, +84454,Cf4,EA065,Most adults,EA065-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p84, +84455,Cf5,EA065,Most adults,EA065-9,,miner1939,,1930,EthnographicAtlas_1967_p84, +84456,Cg1,EA065,Most adults,EA065-9,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p84, +84457,Cg2,EA065,Most adults,EA065-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p84, +84458,Cg3,EA065,Most adults,EA065-9,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p84, +84459,Cg4,EA065,Activity is absent,EA065-10,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p84, +84460,Cg5,EA065,?,EA065-NA,,,,,, +84461,Ch1,EA065,Most adults,EA065-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p84, +84462,Ch10,EA065,?,EA065-NA,,,,,, +84463,Ch11,EA065,Most adults,EA065-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +84464,Ch2,EA065,Most adults,EA065-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p84, +84465,Ch3,EA065,Most adults,EA065-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p84, +84466,Ch4,EA065,Most adults,EA065-9,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p84, +84467,Ch5,EA065,Most adults,EA065-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p84, +84468,Ch6,EA065,Most adults,EA065-9,,ember1954,,1910,EthnographicAtlas_1967_p84, +84469,Ch7,EA065,Most adults,EA065-9,,friedrich1954,,1930,EthnographicAtlas_1967_p84, +84470,Ch8,EA065,Most adults,EA065-9,,hanzeli1955,,1940,EthnographicAtlas_1967_p84, +84471,Ch9,EA065,Most adults,EA065-9,,maciuika1955,,1930,EthnographicAtlas_1967_p84, +84472,Ci1,EA065,Most adults,EA065-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p84, +84473,Ci10,EA065,Most adults,EA065-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p84, +84474,Ci11,EA065,Most adults,EA065-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p84, +84475,Ci12,EA065,Most adults,EA065-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +84476,Ci2,EA065,Most adults,EA065-9,,grigolia1939,,1930,EthnographicAtlas_1967_p84, +84477,Ci3,EA065,?,EA065-NA,,,,,, +84478,Ci4,EA065,Most adults,EA065-9,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p84, +84479,Ci5,EA065,Most adults,EA065-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +84480,Ci6,EA065,Most adults,EA065-9,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p84, +84481,Ci7,EA065,Most adults,EA065-9,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p84, +84482,Ci8,EA065,?,EA065-NA,,,,,, +84483,Ci9,EA065,?,EA065-NA,,,,,, +84484,Cj1,EA065,Most adults,EA065-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p84, +84485,Cj10,EA065,Most adults,EA065-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p88, +84486,Cj2,EA065,Activity is absent,EA065-10,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p84, +84487,Cj3,EA065,Most adults,EA065-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p88, +84488,Cj4,EA065,Most adults,EA065-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p88, +84489,Cj5,EA065,Activity is absent,EA065-10,,dickson1949,,1930,EthnographicAtlas_1967_p88, +84490,Cj6,EA065,?,EA065-NA,,,,,, +84491,Cj7,EA065,Most adults,EA065-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p88, +84492,Cj8,EA065,Most adults,EA065-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p88, +84493,Cj9,EA065,?,EA065-NA,,,,,, +84494,Ea1,EA065,Most adults,EA065-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p88, +84495,Ea10,EA065,Most adults,EA065-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +84496,Ea11,EA065,Most adults,EA065-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +84497,Ea12,EA065,Most adults,EA065-9,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +84498,Ea13,EA065,Most adults,EA065-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +84499,Ea2,EA065,Most adults,EA065-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p88, +84500,Ea3,EA065,Most adults,EA065-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p88, +84501,Ea4,EA065,Most adults,EA065-9,,barth1956b,,1950,EthnographicAtlas_1967_p88, +84502,Ea5,EA065,Most adults,EA065-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p88, +84503,Ea6,EA065,?,EA065-NA,,,,,, +84504,Ea7,EA065,Most adults,EA065-9,,schurmann1962,,1950,EthnographicAtlas_1967_p88, +84505,Ea8,EA065,Most adults,EA065-9,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p88, +84506,Ea9,EA065,Most adults,EA065-9,,vreeland1957,,1950,EthnographicAtlas_1967_p88, +84507,Eb1,EA065,Most adults,EA065-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p88, +84508,Eb2,EA065,Most adults,EA065-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p88, +84509,Eb3,EA065,Most adults,EA065-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p88, +84510,Eb4,EA065,?,EA065-NA,,,,,, +84511,Eb5,EA065,?,EA065-NA,,,,,, +84512,Eb6,EA065,?,EA065-NA,,,,,, +84513,Eb7,EA065,Most adults,EA065-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p88, +84514,Eb8,EA065,?,EA065-NA,,,,,, +84515,Ec1,EA065,Activity is absent,EA065-10,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p88, +84516,Ec10,EA065,Activity is absent,EA065-10,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p88, +84517,Ec11,EA065,Most adults,EA065-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +84518,Ec2,EA065,Most adults,EA065-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84519,Ec3,EA065,Activity is absent,EA065-10,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p88, +84520,Ec4,EA065,Activity is absent,EA065-10,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p88, +84521,Ec5,EA065,Activity is absent,EA065-10,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p88, +84522,Ec6,EA065,Activity is absent,EA065-10,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p88, +84523,Ec7,EA065,Most adults,EA065-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p88, +84524,Ec8,EA065,Activity is absent,EA065-10,,shimkin1939,,1900,EthnographicAtlas_1967_p88, +84525,Ec9,EA065,Most adults,EA065-9,,lattimore1933,,1920,EthnographicAtlas_1967_p88, +84526,Ed1,EA065,Most adults,EA065-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p88, +84527,Ed10,EA065,Most adults,EA065-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p88, +84528,Ed13,EA065,?,EA065-NA,,,,,, +84529,Ed14,EA065,?,EA065-NA,,,,,, +84530,Ed15a,EA065,?,EA065-NA,,,,,, +84531,Ed15b,EA065,Most adults,EA065-9,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +84532,Ed16,EA065,?,EA065-NA,,,,,, +84533,Ed2,EA065,Most adults,EA065-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p88, +84534,Ed3,EA065,Most adults,EA065-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p88, +84535,Ed4,EA065,Most adults,EA065-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p88, +84536,Ed5,EA065,Most adults,EA065-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84537,Ed6,EA065,Most adults,EA065-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p88, +84538,Ed7,EA065,Most adults,EA065-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p88, +84539,Ed8,EA065,Most adults,EA065-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p88, +84540,Ed9,EA065,Most adults,EA065-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p88, +84541,Ee1,EA065,Most adults,EA065-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p88, +84542,Ee2,EA065,Most adults,EA065-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p88, +84543,Ee3,EA065,Most adults,EA065-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p88, +84544,Ee4,EA065,Most adults,EA065-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p88, +84545,Ee5,EA065,Most adults,EA065-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p88, +84546,Ee6,EA065,Most adults,EA065-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p88, +84547,Ee7,EA065,?,EA065-NA,,,,,, +84548,Ee8,EA065,Most adults,EA065-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +84549,Ef1,EA065,Most adults,EA065-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p88, +84550,Ef10,EA065,?,EA065-NA,,,,,, +84551,Ef11,EA065,Craft,EA065-3,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +84552,Ef2,EA065,Most adults,EA065-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +84553,Ef3,EA065,?,EA065-NA,,,,,, +84554,Ef4,EA065,?,EA065-NA,,,,,, +84555,Ef5,EA065,Most adults,EA065-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p88, +84556,Ef6,EA065,Most adults,EA065-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p88, +84557,Ef7,EA065,Most adults,EA065-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p88, +84558,Ef8,EA065,Most adults,EA065-9,But the Pandit themselves seldom engage in any manual labor,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p88, +84559,Ef9,EA065,Most adults,EA065-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84560,Eg1,EA065,Most adults,EA065-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84561,Eg10,EA065,Most adults,EA065-9,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p92, +84562,Eg11,EA065,?,EA065-NA,,,,,, +84563,Eg12,EA065,?,EA065-NA,,,,,, +84564,Eg13,EA065,Most adults,EA065-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84565,Eg14,EA065,Most adults,EA065-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +84566,Eg2,EA065,Most adults,EA065-9,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p88, +84567,Eg3,EA065,Most adults,EA065-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p88, +84568,Eg4,EA065,Activity is absent,EA065-10,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p88, +84569,Eg5,EA065,Most adults,EA065-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p92, +84570,Eg6,EA065,Most adults,EA065-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p92, +84571,Eg7,EA065,Most adults,EA065-9,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p92, +84572,Eg8,EA065,Most adults,EA065-9,,griffiths1946,,1940,EthnographicAtlas_1967_p92, +84573,Eg9,EA065,Most adults,EA065-9,,elwin1939,,1930,EthnographicAtlas_1967_p92, +84574,Eh1,EA065,Activity is absent,EA065-10,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p92, +84575,Eh10,EA065,?,EA065-NA,,,,,, +84576,Eh2,EA065,Most adults,EA065-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p92, +84577,Eh3,EA065,Most adults,EA065-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p92, +84578,Eh4,EA065,Activity is absent,EA065-10,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84579,Eh5,EA065,Most adults,EA065-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p92, +84580,Eh6,EA065,Most adults,EA065-9,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p92, +84581,Eh7,EA065,Most adults,EA065-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p92, +84582,Eh8,EA065,Most adults,EA065-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p92, +84583,Eh9,EA065,Most adults,EA065-9,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +84584,Ei1,EA065,Most adults,EA065-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84585,Ei10,EA065,Most adults,EA065-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p92, +84586,Ei11,EA065,Most adults,EA065-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p92, +84587,Ei12,EA065,?,EA065-NA,,,,,, +84588,Ei13,EA065,Most adults,EA065-9,,hutton1921a,,1910,EthnographicAtlas_1967_p92, +84589,Ei14,EA065,Most adults,EA065-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p92, +84590,Ei15,EA065,?,EA065-NA,,,,,, +84591,Ei16,EA065,Most adults,EA065-9,,hutton1921b,,1910,EthnographicAtlas_1967_p92, +84592,Ei17,EA065,?,EA065-NA,,,,,, +84593,Ei18,EA065,Most adults,EA065-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p92, +84594,Ei19,EA065,Most adults,EA065-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p92, +84595,Ei2,EA065,Most adults,EA065-9,,mills1922,,1920,EthnographicAtlas_1967_p92, +84596,Ei20,EA065,?,EA065-NA,,,,,, +84597,Ei3,EA065,Most adults,EA065-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p92, +84598,Ei4,EA065,Most adults,EA065-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p92, +84599,Ei5,EA065,Most adults,EA065-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p92, +84600,Ei6,EA065,Most adults,EA065-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p92, +84601,Ei7,EA065,Most adults,EA065-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p92, +84602,Ei8,EA065,Most adults,EA065-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p92, +84603,Ei9,EA065,Most adults,EA065-9,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p92, +84604,Ej1,EA065,Most adults,EA065-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p92, +84605,Ej10,EA065,Most adults,EA065-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p92, +84606,Ej11,EA065,Most adults,EA065-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p92, +84607,Ej12,EA065,Most adults,EA065-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p92, +84608,Ej13,EA065,Most adults,EA065-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p92, +84609,Ej14,EA065,Most adults,EA065-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84610,Ej15,EA065,Most adults,EA065-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +84611,Ej16,EA065,Most adults,EA065-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +84612,Ej2,EA065,Most adults,EA065-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p92, +84613,Ej3,EA065,Activity is absent,EA065-10,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p92, +84614,Ej4,EA065,Most adults,EA065-9,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p92, +84615,Ej5,EA065,Most adults,EA065-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p92, +84616,Ej6,EA065,Activity is absent,EA065-10,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p92, +84617,Ej7,EA065,Most adults,EA065-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p92, +84618,Ej8,EA065,Most adults,EA065-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p92, +84619,Ej9,EA065,Most adults,EA065-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +84620,Ia1,EA065,Most adults,EA065-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p92, +84621,Ia10,EA065,Most adults,EA065-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p92, +84622,Ia11,EA065,Most adults,EA065-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p92, +84623,Ia12,EA065,Most adults,EA065-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p96, +84624,Ia13,EA065,Most adults,EA065-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p96, +84625,Ia14,EA065,Most adults,EA065-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p96, +84626,Ia15,EA065,?,EA065-NA,,,,,, +84627,Ia16,EA065,Most adults,EA065-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p96, +84628,Ia17,EA065,?,EA065-NA,,,,,, +84629,Ia18,EA065,?,EA065-NA,,,,,, +84630,Ia2,EA065,Most adults,EA065-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p92, +84631,Ia3,EA065,Most adults,EA065-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p92, +84632,Ia4,EA065,Most adults,EA065-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p92, +84633,Ia5,EA065,Most adults,EA065-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p92, +84634,Ia6,EA065,Most adults,EA065-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84635,Ia7,EA065,Most adults,EA065-9,,fox1954,,1950,EthnographicAtlas_1967_p92, +84636,Ia8,EA065,?,EA065-NA,,,,,, +84637,Ia9,EA065,Most adults,EA065-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p92, +84638,Ib1,EA065,Most adults,EA065-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84639,Ib2,EA065,Most adults,EA065-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84640,Ib3,EA065,Most adults,EA065-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p96, +84641,Ib4,EA065,Most adults,EA065-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p96, +84642,Ib5,EA065,Most adults,EA065-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p96, +84643,Ib6,EA065,Most adults,EA065-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p96, +84644,Ib7,EA065,Most adults,EA065-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p96, +84645,Ib8,EA065,?,EA065-NA,,,,,, +84646,Ib9,EA065,?,EA065-NA,,,,,, +84647,Ic1,EA065,Most adults,EA065-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84648,Ic10,EA065,Most adults,EA065-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p96, +84649,Ic11,EA065,Most adults,EA065-9,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84650,Ic12,EA065,Most adults,EA065-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +84651,Ic13,EA065,?,EA065-NA,,,,,, +84652,Ic2,EA065,Most adults,EA065-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p96, +84653,Ic3,EA065,Most adults,EA065-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p96, +84654,Ic4,EA065,?,EA065-NA,,,,,, +84655,Ic5,EA065,Most adults,EA065-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p96, +84656,Ic6,EA065,Most adults,EA065-9,,drabbe1940,,1930,EthnographicAtlas_1967_p96, +84657,Ic7,EA065,Most adults,EA065-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p96, +84658,Ic8,EA065,?,EA065-NA,,,,,, +84659,Ic9,EA065,Most adults,EA065-9,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p96, +84660,Id1,EA065,Activity is absent,EA065-10,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p96, +84661,Id10,EA065,Activity is absent,EA065-10,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +84662,Id11,EA065,Activity is absent,EA065-10,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +84663,Id12,EA065,Activity is absent,EA065-10,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +84664,Id13,EA065,Activity is absent,EA065-10,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +84665,Id2,EA065,Activity is absent,EA065-10,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p96, +84666,Id3,EA065,Activity is absent,EA065-10,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p96, +84667,Id4,EA065,Activity is absent,EA065-10,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p96, +84668,Id5,EA065,Activity is absent,EA065-10,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p96, +84669,Id6,EA065,Activity is absent,EA065-10,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p96, +84670,Id7,EA065,Activity is absent,EA065-10,,falkenberg1962,,1940,Ethnology_Vol2_No2_Apr_1963, +84671,Id8,EA065,Activity is absent,EA065-10,,roth1890,,1830,EthnographicAtlas_1967_p96, +84672,Id9,EA065,Activity is absent,EA065-10,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p96, +84673,Ie1,EA065,Most adults,EA065-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84674,Ie10,EA065,Most adults,EA065-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p96, +84675,Ie11,EA065,Most adults,EA065-9,,bowers1964,,1950,EthnographicAtlas_1967_p96, +84676,Ie12,EA065,Most adults,EA065-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84677,Ie13,EA065,Most adults,EA065-9,,landtman1927,,1920,EthnographicAtlas_1967_p96, +84678,Ie14,EA065,Most adults,EA065-9,,haddon1908,,1900,EthnographicAtlas_1967_p96, +84679,Ie15,EA065,Most adults,EA065-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84680,Ie16,EA065,Most adults,EA065-9,,williams194041,,1940,EthnographicAtlas_1967_p96, +84681,Ie17,EA065,Most adults,EA065-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p96, +84682,Ie18,EA065,Most adults,EA065-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p96, +84683,Ie19,EA065,Most adults,EA065-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p96, +84684,Ie2,EA065,Most adults,EA065-9,,schmitz1960,,1920,EthnographicAtlas_1967_p96, +84685,Ie20,EA065,Most adults,EA065-9,,seligmann1910,,1900,EthnographicAtlas_1967_p96, +84686,Ie21,EA065,Most adults,EA065-9,,malinowski1916,,1900,EthnographicAtlas_1967_p96, +84687,Ie22,EA065,Most adults,EA065-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p96, +84688,Ie23,EA065,Most adults,EA065-9,,schoorl1957,,1950,EthnographicAtlas_1967_p96, +84689,Ie24,EA065,Most adults,EA065-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p96, +84690,Ie25,EA065,Most adults,EA065-9,,williamson1912,,1920,EthnographicAtlas_1967_p96, +84691,Ie26,EA065,Most adults,EA065-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p100, +84692,Ie27,EA065,Most adults,EA065-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p100, +84693,Ie28,EA065,Most adults,EA065-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p100, +84694,Ie29,EA065,Most adults,EA065-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84695,Ie3,EA065,Most adults,EA065-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84696,Ie30,EA065,?,EA065-NA,,,,,, +84697,Ie31,EA065,Most adults,EA065-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +84698,Ie32,EA065,Most adults,EA065-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +84699,Ie33,EA065,?,EA065-NA,,,,,, +84700,Ie34,EA065,?,EA065-NA,,,,,, +84701,Ie35,EA065,Most adults,EA065-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +84702,Ie36,EA065,?,EA065-NA,,,,,, +84703,Ie37,EA065,?,EA065-NA,,,,,, +84704,Ie38,EA065,Most adults,EA065-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +84705,Ie39,EA065,Most adults,EA065-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +84706,Ie4,EA065,Most adults,EA065-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84707,Ie5,EA065,Most adults,EA065-9,,williams1936,,1930,EthnographicAtlas_1967_p96, +84708,Ie6,EA065,Most adults,EA065-9,,held1947,,1930,EthnographicAtlas_1967_p96, +84709,Ie7,EA065,Most adults,EA065-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p96, +84710,Ie8,EA065,Most adults,EA065-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p96, +84711,Ie9,EA065,Most adults,EA065-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p96, +84712,If1,EA065,Most adults,EA065-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84713,If10,EA065,?,EA065-NA,,,,,, +84714,If11,EA065,Most adults,EA065-9,,sarfert1919,,1860,EthnographicAtlas_1967_p100, +84715,If12,EA065,Most adults,EA065-9,,mason1954,,1940,EthnographicAtlas_1967_p100, +84716,If13,EA065,Most adults,EA065-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p100, +84717,If14,EA065,Most adults,EA065-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p100, +84718,If15,EA065,Most adults,EA065-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p100, +84719,If16,EA065,Most adults,EA065-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +84720,If17,EA065,Most adults,EA065-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +84721,If2,EA065,Most adults,EA065-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p100, +84722,If3,EA065,Most adults,EA065-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p100, +84723,If4,EA065,Most adults,EA065-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p100, +84724,If5,EA065,Most adults,EA065-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p100, +84725,If6,EA065,Most adults,EA065-9,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p100, +84726,If7,EA065,Most adults,EA065-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p100, +84727,If8,EA065,Most adults,EA065-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p100, +84728,If9,EA065,Most adults,EA065-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p100, +84729,Ig1,EA065,Most adults,EA065-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p100, +84730,Ig10,EA065,Most adults,EA065-9,,schwartz1964,,1950,EthnographicAtlas_1967_p100, +84731,Ig11,EA065,Most adults,EA065-9,,armstrong1928,,1920,EthnographicAtlas_1967_p100, +84732,Ig12,EA065,Most adults,EA065-9,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p100, +84733,Ig13,EA065,Most adults,EA065-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p100, +84734,Ig14,EA065,Most adults,EA065-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p100, +84735,Ig15,EA065,?,EA065-NA,,,,,, +84736,Ig16,EA065,?,EA065-NA,,,,,, +84737,Ig17,EA065,?,EA065-NA,,,,,, +84738,Ig18,EA065,?,EA065-NA,,,,,, +84739,Ig19,EA065,?,EA065-NA,,,,,, +84740,Ig2,EA065,Most adults,EA065-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p100, +84741,Ig20,EA065,Most adults,EA065-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +84742,Ig21,EA065,Most adults,EA065-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +84743,Ig3,EA065,Most adults,EA065-9,,blackwood1935,,1930,EthnographicAtlas_1967_p100, +84744,Ig4,EA065,Most adults,EA065-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p100, +84745,Ig5,EA065,Most adults,EA065-9,,fortune1932b,,1920,EthnographicAtlas_1967_p100, +84746,Ig6,EA065,Most adults,EA065-9,,ivens1927,,1900,EthnographicAtlas_1967_p100, +84747,Ig7,EA065,Most adults,EA065-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p100, +84748,Ig8,EA065,?,EA065-NA,,,,,, +84749,Ig9,EA065,Activity is absent,EA065-10,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p100, +84750,Ih1,EA065,?,EA065-NA,,,,,, +84751,Ih10,EA065,Most adults,EA065-9,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84752,Ih11,EA065,?,EA065-NA,,,,,, +84753,Ih12,EA065,?,EA065-NA,,,,,, +84754,Ih13,EA065,?,EA065-NA,,,,,, +84755,Ih14,EA065,Most adults,EA065-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +84756,Ih2,EA065,Most adults,EA065-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84757,Ih3,EA065,?,EA065-NA,,,,,, +84758,Ih4,EA065,Most adults,EA065-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84759,Ih5,EA065,Most adults,EA065-9,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p100, +84760,Ih6,EA065,Most adults,EA065-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p100, +84761,Ih7,EA065,Most adults,EA065-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p100, +84762,Ih8,EA065,Most adults,EA065-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p100, +84763,Ih9,EA065,Most adults,EA065-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84764,Ii1,EA065,Most adults,EA065-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p100, +84765,Ii10,EA065,?,EA065-NA,,,,,, +84766,Ii12,EA065,Most adults,EA065-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84767,Ii13,EA065,Most adults,EA065-9,,burrows1937,,1830,EthnographicAtlas_1967_p100, +84768,Ii14,EA065,Most adults,EA065-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +84769,Ii2,EA065,Most adults,EA065-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p100, +84770,Ii3,EA065,Most adults,EA065-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p100, +84771,Ii4,EA065,Most adults,EA065-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p100, +84772,Ii5,EA065,Most adults,EA065-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p100, +84773,Ii6,EA065,Most adults,EA065-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p100, +84774,Ii7,EA065,Most adults,EA065-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p100, +84775,Ii8,EA065,Most adults,EA065-9,,burrows1936,,1840,EthnographicAtlas_1967_p100, +84776,Ii9,EA065,Most adults,EA065-9,,loeb1926a,,1840,EthnographicAtlas_1967_p100, +84777,Ij1,EA065,Most adults,EA065-9,,buck1934,,1820,EthnographicAtlas_1967_p100, +84778,Ij10,EA065,?,EA065-NA,,,,,, +84779,Ij2,EA065,Most adults,EA065-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +84780,Ij3,EA065,Most adults,EA065-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p104, +84781,Ij4,EA065,?,EA065-NA,,,,,, +84782,Ij5,EA065,Most adults,EA065-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p104, +84783,Ij6,EA065,Most adults,EA065-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p104, +84784,Ij7,EA065,Most adults,EA065-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p104, +84785,Ij8,EA065,Most adults,EA065-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p104, +84786,Ij9,EA065,Most adults,EA065-9,,metraux1940,,1860,EthnographicAtlas_1967_p104, +84787,Na1,EA065,Activity is absent,EA065-10,,mckennan1959,,1930,EthnographicAtlas_1967_p104, +84788,Na10,EA065,Activity is absent,EA065-10,,birketsmith1953,,1930,EthnographicAtlas_1967_p104, +84789,Na11,EA065,Activity is absent,EA065-10,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p104, +84790,Na12,EA065,Activity is absent,EA065-10,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p104, +84791,Na13,EA065,Activity is absent,EA065-10,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p104, +84792,Na14,EA065,Activity is absent,EA065-10,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p104, +84793,Na15,EA065,Activity is absent,EA065-10,,helmandlurie1961,,1860,EthnographicAtlas_1967_p104, +84794,Na16,EA065,Activity is absent,EA065-10,,osgood1931,,1860,EthnographicAtlas_1967_p104, +84795,Na17,EA065,Activity is absent,EA065-10,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84796,Na19,EA065,Activity is absent,EA065-10,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p104, +84797,Na2,EA065,Activity is absent,EA065-10,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p104, +84798,Na20,EA065,Activity is absent,EA065-10,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p104, +84799,Na21,EA065,Activity is absent,EA065-10,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p104, +84800,Na22,EA065,Activity is absent,EA065-10,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p104, +84801,Na23,EA065,Activity is absent,EA065-10,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p104, +84802,Na24,EA065,Activity is absent,EA065-10,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p104, +84803,Na25,EA065,Activity is absent,EA065-10,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +84804,Na26,EA065,Activity is absent,EA065-10,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p104, +84805,Na27,EA065,Activity is absent,EA065-10,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p104, +84806,Na28,EA065,Activity is absent,EA065-10,,jenness1937,,1880,EthnographicAtlas_1967_p104, +84807,Na29,EA065,Activity is absent,EA065-10,,goddard1916,,1850,EthnographicAtlas_1967_p104, +84808,Na3,EA065,Activity is absent,EA065-10,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p104, +84809,Na30,EA065,Activity is absent,EA065-10,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p104, +84810,Na31,EA065,Activity is absent,EA065-10,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p104, +84811,Na32,EA065,Activity is absent,EA065-10,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p104, +84812,Na33,EA065,Activity is absent,EA065-10,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p104, +84813,Na34,EA065,Activity is absent,EA065-10,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p104, +84814,Na35,EA065,Activity is absent,EA065-10,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p104, +84815,Na36,EA065,Most adults,EA065-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p104, +84816,Na37,EA065,Activity is absent,EA065-10,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p104, +84817,Na38,EA065,Activity is absent,EA065-10,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p104, +84818,Na39,EA065,Activity is absent,EA065-10,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p104, +84819,Na4,EA065,Activity is absent,EA065-10,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p104, +84820,Na40,EA065,Most adults,EA065-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +84821,Na41,EA065,Activity is absent,EA065-10,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p104, +84822,Na42,EA065,Most adults,EA065-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p104, +84823,Na43,EA065,Activity is absent,EA065-10,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +84824,Na44,EA065,?,EA065-NA,,,,,, +84825,Na45,EA065,Activity is absent,EA065-10,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +84826,Na5,EA065,Activity is absent,EA065-10,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p104, +84827,Na6,EA065,Activity is absent,EA065-10,,lantis1946,,1930,EthnographicAtlas_1967_p104, +84828,Na7,EA065,Activity is absent,EA065-10,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p104, +84829,Na8,EA065,Activity is absent,EA065-10,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p104, +84830,Na9,EA065,Activity is absent,EA065-10,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84831,Nb1,EA065,Activity is absent,EA065-10,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p104, +84832,Nb10,EA065,Activity is absent,EA065-10,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p108, +84833,Nb11,EA065,Activity is absent,EA065-10,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p108, +84834,Nb12,EA065,Activity is absent,EA065-10,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +84835,Nb13,EA065,Activity is absent,EA065-10,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p108, +84836,Nb14,EA065,Activity is absent,EA065-10,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +84837,Nb15,EA065,Activity is absent,EA065-10,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p108, +84838,Nb16,EA065,Activity is absent,EA065-10,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p108, +84839,Nb17,EA065,Activity is absent,EA065-10,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p108, +84840,Nb18,EA065,Activity is absent,EA065-10,,pettitt1950,,1880,EthnographicAtlas_1967_p108, +84841,Nb19,EA065,Activity is absent,EA065-10,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p108, +84842,Nb2,EA065,Activity is absent,EA065-10,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p104, +84843,Nb20,EA065,Activity is absent,EA065-10,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +84844,Nb21,EA065,Activity is absent,EA065-10,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p108, +84845,Nb22,EA065,Activity is absent,EA065-10,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p108, +84846,Nb23,EA065,Activity is absent,EA065-10,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p108, +84847,Nb24,EA065,Activity is absent,EA065-10,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p108, +84848,Nb25,EA065,Activity is absent,EA065-10,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p108, +84849,Nb26,EA065,Activity is absent,EA065-10,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p108, +84850,Nb27,EA065,Activity is absent,EA065-10,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p108, +84851,Nb28,EA065,Activity is absent,EA065-10,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p108, +84852,Nb29,EA065,Activity is absent,EA065-10,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +84853,Nb3,EA065,Activity is absent,EA065-10,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p104, +84854,Nb30,EA065,Activity is absent,EA065-10,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +84855,Nb31,EA065,Activity is absent,EA065-10,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p108, +84856,Nb32,EA065,Activity is absent,EA065-10,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p108, +84857,Nb33,EA065,Activity is absent,EA065-10,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p108, +84858,Nb34,EA065,Activity is absent,EA065-10,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p108, +84859,Nb35,EA065,Activity is absent,EA065-10,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p108, +84860,Nb36,EA065,Activity is absent,EA065-10,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p108, +84861,Nb37,EA065,Activity is absent,EA065-10,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +84862,Nb38,EA065,Activity is absent,EA065-10,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +84863,Nb39,EA065,Activity is absent,EA065-10,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p108, +84864,Nb4,EA065,Activity is absent,EA065-10,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p104, +84865,Nb5,EA065,Activity is absent,EA065-10,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p104, +84866,Nb6,EA065,Activity is absent,EA065-10,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p104, +84867,Nb7,EA065,Activity is absent,EA065-10,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p104, +84868,Nb8,EA065,Activity is absent,EA065-10,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p104, +84869,Nb9,EA065,Activity is absent,EA065-10,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p104, +84870,Nc1,EA065,Activity is absent,EA065-10,,goldschmidt1951,,1850,EthnographicAtlas_1967_p108, +84871,Nc10,EA065,Activity is absent,EA065-10,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p108, +84872,Nc11,EA065,Activity is absent,EA065-10,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p108, +84873,Nc12,EA065,Activity is absent,EA065-10,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p108, +84874,Nc13,EA065,Activity is absent,EA065-10,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p108, +84875,Nc14,EA065,Activity is absent,EA065-10,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p108, +84876,Nc15,EA065,Activity is absent,EA065-10,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p108, +84877,Nc16,EA065,Activity is absent,EA065-10,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +84878,Nc17,EA065,Activity is absent,EA065-10,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p108, +84879,Nc18,EA065,Activity is absent,EA065-10,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p108, +84880,Nc19,EA065,Activity is absent,EA065-10,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p108, +84881,Nc2,EA065,Activity is absent,EA065-10,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p108, +84882,Nc20,EA065,Activity is absent,EA065-10,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p108, +84883,Nc21,EA065,Activity is absent,EA065-10,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +84884,Nc22,EA065,Activity is absent,EA065-10,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p108, +84885,Nc23,EA065,Activity is absent,EA065-10,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p108, +84886,Nc24,EA065,Activity is absent,EA065-10,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p108, +84887,Nc25,EA065,Activity is absent,EA065-10,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p108, +84888,Nc26,EA065,Activity is absent,EA065-10,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +84889,Nc27,EA065,Activity is absent,EA065-10,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p108, +84890,Nc28,EA065,Activity is absent,EA065-10,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +84891,Nc29,EA065,Activity is absent,EA065-10,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p108, +84892,Nc3,EA065,Activity is absent,EA065-10,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p108, +84893,Nc30,EA065,Activity is absent,EA065-10,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +84894,Nc31,EA065,Activity is absent,EA065-10,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p108, +84895,Nc32,EA065,Activity is absent,EA065-10,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p108, +84896,Nc33,EA065,Activity is absent,EA065-10,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p108, +84897,Nc34,EA065,Activity is absent,EA065-10,,meigs1939,,1880,EthnographicAtlas_1967_p108, +84898,Nc4,EA065,Activity is absent,EA065-10,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p108, +84899,Nc5,EA065,Activity is absent,EA065-10,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p108, +84900,Nc6,EA065,Activity is absent,EA065-10,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p108, +84901,Nc7,EA065,Activity is absent,EA065-10,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p108, +84902,Nc8,EA065,Activity is absent,EA065-10,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p108, +84903,Nc9,EA065,Activity is absent,EA065-10,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p108, +84904,Nd1,EA065,Activity is absent,EA065-10,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p108, +84905,Nd10,EA065,Activity is absent,EA065-10,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p112, +84906,Nd11,EA065,Activity is absent,EA065-10,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p112, +84907,Nd12,EA065,Activity is absent,EA065-10,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p112, +84908,Nd13,EA065,Activity is absent,EA065-10,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +84909,Nd14,EA065,Activity is absent,EA065-10,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p112, +84910,Nd15,EA065,Activity is absent,EA065-10,,clineetal1938,,1880,EthnographicAtlas_1967_p112, +84911,Nd16,EA065,Activity is absent,EA065-10,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +84912,Nd17,EA065,Activity is absent,EA065-10,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +84913,Nd18,EA065,Activity is absent,EA065-10,,spierandsapir1930,,1860,EthnographicAtlas_1967_p112, +84914,Nd19,EA065,Activity is absent,EA065-10,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p112, +84915,Nd2,EA065,Most adults,EA065-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p108, +84916,Nd20,EA065,Activity is absent,EA065-10,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p112, +84917,Nd21,EA065,Activity is absent,EA065-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +84918,Nd22,EA065,Activity is absent,EA065-10,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p112, +84919,Nd23,EA065,Activity is absent,EA065-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +84920,Nd24,EA065,Activity is absent,EA065-10,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p112, +84921,Nd25,EA065,Activity is absent,EA065-10,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +84922,Nd26,EA065,Activity is absent,EA065-10,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +84923,Nd27,EA065,Activity is absent,EA065-10,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p112, +84924,Nd28,EA065,Activity is absent,EA065-10,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +84925,Nd29,EA065,Activity is absent,EA065-10,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +84926,Nd3,EA065,Most adults,EA065-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p112, +84927,Nd30,EA065,Activity is absent,EA065-10,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p112, +84928,Nd31,EA065,?,EA065-NA,,,,,, +84929,Nd32,EA065,Activity is absent,EA065-10,"But for the Panamint of Death Valley 'equal participation' (EA054 code ""4""), with no specialization specified (EA065 code ""9"")",driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p112, +84930,Nd33,EA065,Activity is absent,EA065-10,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +84931,Nd34,EA065,Activity is absent,EA065-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +84932,Nd35,EA065,Most adults,EA065-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +84933,Nd36,EA065,Activity is absent,EA065-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +84934,Nd37,EA065,?,EA065-NA,,,,,, +84935,Nd38,EA065,?,EA065-NA,,,,,, +84936,Nd39,EA065,?,EA065-NA,,,,,, +84937,Nd4,EA065,Activity is absent,EA065-10,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p112, +84938,Nd40,EA065,Activity is absent,EA065-10,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +84939,Nd41,EA065,Activity is absent,EA065-10,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +84940,Nd42,EA065,Activity is absent,EA065-10,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +84941,Nd43,EA065,Activity is absent,EA065-10,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p112, +84942,Nd44,EA065,Activity is absent,EA065-10,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +84943,Nd45,EA065,Activity is absent,EA065-10,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +84944,Nd46,EA065,Activity is absent,EA065-10,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p112, +84945,Nd47,EA065,Activity is absent,EA065-10,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +84946,Nd48,EA065,Activity is absent,EA065-10,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p112, +84947,Nd49,EA065,Activity is absent,EA065-10,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p112, +84948,Nd5,EA065,Activity is absent,EA065-10,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p112, +84949,Nd50,EA065,Activity is absent,EA065-10,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +84950,Nd51,EA065,?,EA065-NA,,,,,, +84951,Nd52,EA065,Most adults,EA065-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p112, +84952,Nd53,EA065,Most adults,EA065-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p112, +84953,Nd54,EA065,?,EA065-NA,,,,,, +84954,Nd55,EA065,?,EA065-NA,,,,,, +84955,Nd56,EA065,?,EA065-NA,,,,,, +84956,Nd57,EA065,Activity is absent,EA065-10,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +84957,Nd58,EA065,Activity is absent,EA065-10,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +84958,Nd59,EA065,Activity is absent,EA065-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +84959,Nd6,EA065,Activity is absent,EA065-10,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p112, +84960,Nd60,EA065,Activity is absent,EA065-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +84961,Nd61,EA065,Activity is absent,EA065-10,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +84962,Nd62,EA065,Activity is absent,EA065-10,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p112, +84963,Nd63,EA065,Activity is absent,EA065-10,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p112, +84964,Nd64,EA065,Activity is absent,EA065-10,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p112, +84965,Nd65,EA065,Most adults,EA065-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p112, +84966,Nd66,EA065,Most adults,EA065-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p112, +84967,Nd67,EA065,Most adults,EA065-9,,gifford1936,,1870,EthnographicAtlas_1967_p112, +84968,Nd7,EA065,Activity is absent,EA065-10,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p112, +84969,Nd8,EA065,Activity is absent,EA065-10,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p112, +84970,Nd9,EA065,Activity is absent,EA065-10,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p112, +84971,Ne1,EA065,Activity is absent,EA065-10,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p112, +84972,Ne10,EA065,Most adults,EA065-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p112, +84973,Ne11,EA065,Activity is absent,EA065-10,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p112, +84974,Ne12,EA065,Activity is absent,EA065-10,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +84975,Ne13,EA065,Activity is absent,EA065-10,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p112, +84976,Ne14,EA065,Activity is absent,EA065-10,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p112, +84977,Ne15,EA065,Most adults,EA065-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p112, +84978,Ne16,EA065,Activity is absent,EA065-10,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p112, +84979,Ne17,EA065,Activity is absent,EA065-10,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p112, +84980,Ne18,EA065,Activity is absent,EA065-10,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p112, +84981,Ne19,EA065,Activity is absent,EA065-10,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p112, +84982,Ne2,EA065,Activity is absent,EA065-10,,mcallister1937,,1870,EthnographicAtlas_1967_p112, +84983,Ne20,EA065,Most adults,EA065-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p116, +84984,Ne21,EA065,?,EA065-NA,,,,,, +84985,Ne3,EA065,Activity is absent,EA065-10,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p112, +84986,Ne4,EA065,?,EA065-NA,,,,,, +84987,Ne5,EA065,Most adults,EA065-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p112, +84988,Ne6,EA065,Most adults,EA065-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p112, +84989,Ne7,EA065,Activity is absent,EA065-10,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p112, +84990,Ne8,EA065,Activity is absent,EA065-10,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p112, +84991,Ne9,EA065,Activity is absent,EA065-10,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p112, +84992,Nf10,EA065,?,EA065-NA,,,,,, +84993,Nf11,EA065,Most adults,EA065-9,,whitman1937,,1870,EthnographicAtlas_1967_p116, +84994,Nf12,EA065,Most adults,EA065-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p116, +84995,Nf13,EA065,Most adults,EA065-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +84996,Nf14,EA065,Most adults,EA065-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +84997,Nf15,EA065,?,EA065-NA,,,,,, +84998,Nf2,EA065,Most adults,EA065-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p116, +84999,Nf3,EA065,Most adults,EA065-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p116, +85000,Nf4,EA065,Most adults,EA065-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p116, +85001,Nf5,EA065,Most adults,EA065-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p116, +85002,Nf6,EA065,Most adults,EA065-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p116, +85003,Nf7,EA065,Most adults,EA065-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85004,Nf8,EA065,Most adults,EA065-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p116, +85005,Nf9,EA065,Most adults,EA065-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p116, +85006,Ng1,EA065,Most adults,EA065-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p116, +85007,Ng10,EA065,Most adults,EA065-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p116, +85008,Ng11,EA065,Most adults,EA065-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p116, +85009,Ng12,EA065,Most adults,EA065-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p116, +85010,Ng13,EA065,?,EA065-NA,,,,,, +85011,Ng14,EA065,?,EA065-NA,,,,,, +85012,Ng15,EA065,?,EA065-NA,,,,,, +85013,Ng2,EA065,?,EA065-NA,,,,,, +85014,Ng3,EA065,Most adults,EA065-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p116, +85015,Ng4,EA065,?,EA065-NA,,,,,, +85016,Ng5,EA065,Most adults,EA065-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p116, +85017,Ng6,EA065,Most adults,EA065-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p116, +85018,Ng7,EA065,Most adults,EA065-9,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p116, +85019,Ng8,EA065,Most adults,EA065-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p116, +85020,Ng9,EA065,?,EA065-NA,,,,,, +85021,Nh1,EA065,Most adults,EA065-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p116, +85022,Nh10,EA065,?,EA065-NA,,,,,, +85023,Nh11,EA065,Most adults,EA065-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p116, +85024,Nh12,EA065,Most adults,EA065-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p116, +85025,Nh13,EA065,Most adults,EA065-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p116, +85026,Nh14,EA065,?,EA065-NA,,,,,, +85027,Nh15,EA065,Most adults,EA065-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p116, +85028,Nh16,EA065,Most adults,EA065-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85029,Nh17,EA065,Most adults,EA065-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p116, +85030,Nh18,EA065,Most adults,EA065-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85031,Nh19,EA065,Most adults,EA065-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p116, +85032,Nh2,EA065,Most adults,EA065-9,,dozier1954,,1950,EthnographicAtlas_1967_p116, +85033,Nh20,EA065,Most adults,EA065-9,,gifford1931,,1860,EthnographicAtlas_1967_p116, +85034,Nh21,EA065,Most adults,EA065-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85035,Nh22,EA065,Most adults,EA065-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p116, +85036,Nh23,EA065,Most adults,EA065-9,,gifford1932a,,1870,EthnographicAtlas_1967_p116, +85037,Nh24,EA065,Activity is absent,EA065-10,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p116, +85038,Nh25,EA065,Most adults,EA065-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p116, +85039,Nh26,EA065,?,EA065-NA,,,,,, +85040,Nh27,EA065,?,EA065-NA,,,,,, +85041,Nh3,EA065,Most adults,EA065-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p116, +85042,Nh4,EA065,Most adults,EA065-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p116, +85043,Nh5,EA065,Most adults,EA065-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p116, +85044,Nh6,EA065,Most adults,EA065-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p116, +85045,Nh7,EA065,Most adults,EA065-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p116, +85046,Nh8,EA065,Most adults,EA065-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p116, +85047,Nh9,EA065,Most adults,EA065-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p116, +85048,Ni1,EA065,Most adults,EA065-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p116, +85049,Ni2,EA065,Most adults,EA065-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p116, +85050,Ni3,EA065,Most adults,EA065-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p116, +85051,Ni4,EA065,Activity is absent,EA065-10,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p116, +85052,Ni5,EA065,Activity is absent,EA065-10,,driveranddriver1963,,1570,EthnographicAtlas_1967_p116, +85053,Ni6,EA065,Most adults,EA065-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p116, +85054,Ni7,EA065,Most adults,EA065-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p116, +85055,Ni8,EA065,?,EA065-NA,,,,,, +85056,Ni9,EA065,?,EA065-NA,,,,,, +85057,Nj1,EA065,Most adults,EA065-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85058,Nj10,EA065,Most adults,EA065-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85059,Nj11,EA065,?,EA065-NA,,,,,, +85060,Nj12,EA065,?,EA065-NA,,,,,, +85061,Nj13,EA065,?,EA065-NA,,,,,, +85062,Nj14,EA065,?,EA065-NA,,,,,, +85063,Nj2,EA065,Most adults,EA065-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p116, +85064,Nj3,EA065,Most adults,EA065-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p120, +85065,Nj4,EA065,Most adults,EA065-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p120, +85066,Nj5,EA065,?,EA065-NA,,,,,, +85067,Nj6,EA065,?,EA065-NA,,,,,, +85068,Nj7,EA065,Most adults,EA065-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85069,Nj8,EA065,Most adults,EA065-9,,foster1948,,1500,EthnographicAtlas_1967_p120, +85070,Nj9,EA065,Most adults,EA065-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p120, +85071,Sa1,EA065,Most adults,EA065-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p120, +85072,Sa10,EA065,Most adults,EA065-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p120, +85073,Sa11,EA065,?,EA065-NA,,,,,, +85074,Sa12,EA065,Most adults,EA065-9,,stone1948,,1948,EthnographicAtlas_1967_p120, +85075,Sa13,EA065,Most adults,EA065-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p120, +85076,Sa14,EA065,?,EA065-NA,,,,,, +85077,Sa15,EA065,?,EA065-NA,,,,,, +85078,Sa16,EA065,?,EA065-NA,,,,,, +85079,Sa17,EA065,?,EA065-NA,,,,,, +85080,Sa2,EA065,?,EA065-NA,,,,,, +85081,Sa3,EA065,Most adults,EA065-9,,wisdom1940,,1930,EthnographicAtlas_1967_p120, +85082,Sa4,EA065,Most adults,EA065-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p120, +85083,Sa5,EA065,Most adults,EA065-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p120, +85084,Sa6,EA065,Most adults,EA065-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p120, +85085,Sa7,EA065,Most adults,EA065-9,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p120, +85086,Sa8,EA065,Most adults,EA065-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p120, +85087,Sa9,EA065,Most adults,EA065-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p120, +85088,Sb1,EA065,Most adults,EA065-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p120, +85089,Sb2,EA065,Most adults,EA065-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p120, +85090,Sb3,EA065,?,EA065-NA,,,,,, +85091,Sb4,EA065,Most adults,EA065-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +85092,Sb5,EA065,Activity is absent,EA065-10,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p120, +85093,Sb6,EA065,Most adults,EA065-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p120, +85094,Sb7,EA065,Most adults,EA065-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p120, +85095,Sb8,EA065,Most adults,EA065-9,,rouse1948a,,1520,EthnographicAtlas_1967_p120, +85096,Sb9,EA065,Most adults,EA065-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +85097,Sc1,EA065,Most adults,EA065-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,Ethnology_Vol10_No1_Jan_1971, +85098,Sc10,EA065,Most adults,EA065-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p120, +85099,Sc11,EA065,Most adults,EA065-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p120, +85100,Sc12,EA065,Most adults,EA065-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p120, +85101,Sc13,EA065,Most adults,EA065-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +85102,Sc14,EA065,Most adults,EA065-9,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +85103,Sc15,EA065,Most adults,EA065-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p120, +85104,Sc16,EA065,Most adults,EA065-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p120, +85105,Sc17,EA065,Most adults,EA065-9,,wilbert1963,,1950,EthnographicAtlas_1967_p120, +85106,Sc18,EA065,Most adults,EA065-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +85107,Sc2,EA065,Most adults,EA065-9,,leedsnd,,1950,EthnographicAtlas_1967_p120, +85108,Sc3,EA065,Most adults,EA065-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p120, +85109,Sc4,EA065,Most adults,EA065-9,"But among the agricultural Guahibo 'males alone' (EA054 code ""1""), with no specialization specified (EA065 code ""9"")",wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p120, +85110,Sc5,EA065,Most adults,EA065-9,,farabee1918,,1900,EthnographicAtlas_1967_p120, +85111,Sc6,EA065,Most adults,EA065-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85112,Sc7,EA065,Most adults,EA065-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p120, +85113,Sc8,EA065,Most adults,EA065-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +85114,Sc9,EA065,Most adults,EA065-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p120, +85115,Sd1,EA065,Most adults,EA065-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85116,Sd2,EA065,Most adults,EA065-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p120, +85117,Sd3,EA065,Most adults,EA065-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p120, +85118,Sd4,EA065,Most adults,EA065-9,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +85119,Sd5,EA065,Most adults,EA065-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p120, +85120,Sd6,EA065,Activity is absent,EA065-10,,migliazza1964,,1960,EthnographicAtlas_1967_p120, +85121,Sd7,EA065,Most adults,EA065-9,,fock1963,,1950,EthnographicAtlas_1967_p120, +85122,Sd8,EA065,?,EA065-NA,,,,,, +85123,Sd9,EA065,Most adults,EA065-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85124,Se1,EA065,Most adults,EA065-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p120, +85125,Se10,EA065,?,EA065-NA,,,,,, +85126,Se11,EA065,Most adults,EA065-9,,prost1965,,1960,EthnographicAtlas_1967_p124, +85127,Se12,EA065,?,EA065-NA,,,,,, +85128,Se2,EA065,Most adults,EA065-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p120, +85129,Se3,EA065,Most adults,EA065-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p120, +85130,Se4,EA065,Most adults,EA065-9,,fejos1943,,1940,EthnographicAtlas_1967_p120, +85131,Se5,EA065,Most adults,EA065-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p120, +85132,Se6,EA065,Most adults,EA065-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p120, +85133,Se7,EA065,?,EA065-NA,,,,,, +85134,Se8,EA065,Most adults,EA065-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p120, +85135,Se9,EA065,Most adults,EA065-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p120, +85136,Sf1,EA065,Most adults,EA065-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p124, +85137,Sf2,EA065,Most adults,EA065-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p124, +85138,Sf3,EA065,Most adults,EA065-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p124, +85139,Sf4,EA065,Most adults,EA065-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p124, +85140,Sf5,EA065,Most adults,EA065-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p124, +85141,Sf6,EA065,Most adults,EA065-9,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p124, +85142,Sf7,EA065,Most adults,EA065-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p124, +85143,Sf8,EA065,?,EA065-NA,,,,,, +85144,Sf9,EA065,?,EA065-NA,,,,,, +85145,Sg1,EA065,Activity is absent,EA065-10,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p124, +85146,Sg2,EA065,Most adults,EA065-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85147,Sg3,EA065,Activity is absent,EA065-10,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p124, +85148,Sg4,EA065,Activity is absent,EA065-10,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p124, +85149,Sg5,EA065,Activity is absent,EA065-10,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85150,Sh1,EA065,Most adults,EA065-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p124, +85151,Sh2,EA065,Most adults,EA065-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p124, +85152,Sh3,EA065,Activity is absent,EA065-10,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p124, +85153,Sh4,EA065,Most adults,EA065-9,,oberg1949,,1940,EthnographicAtlas_1967_p124, +85154,Sh5,EA065,Most adults,EA065-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p124, +85155,Sh6,EA065,Most adults,EA065-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p124, +85156,Sh7,EA065,Most adults,EA065-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p124, +85157,Sh8,EA065,Most adults,EA065-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p124, +85158,Sh9,EA065,Most adults,EA065-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p124, +85159,Si1,EA065,Activity is absent,EA065-10,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85160,Si10,EA065,Most adults,EA065-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +85161,Si2,EA065,Most adults,EA065-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p124, +85162,Si3,EA065,Most adults,EA065-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85163,Si4,EA065,Most adults,EA065-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p124, +85164,Si5,EA065,Most adults,EA065-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +85165,Si6,EA065,?,EA065-NA,,,,,, +85166,Si7,EA065,?,EA065-NA,,,,,, +85167,Si8,EA065,Most adults,EA065-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p124, +85168,Si9,EA065,?,EA065-NA,,,,,, +85169,Sj1,EA065,Most adults,EA065-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p124, +85170,Sj10,EA065,Most adults,EA065-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85171,Sj11,EA065,Most adults,EA065-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +85172,Sj2,EA065,Most adults,EA065-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p124, +85173,Sj3,EA065,Activity is absent,EA065-10,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p124, +85174,Sj4,EA065,Most adults,EA065-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p124, +85175,Sj5,EA065,Activity is absent,EA065-10,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p124, +85176,Sj6,EA065,Most adults,EA065-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85177,Sj7,EA065,Most adults,EA065-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p124, +85178,Sj8,EA065,Most adults,EA065-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p124, +85179,Sj9,EA065,Most adults,EA065-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p124, +85180,ch12,EA065,Most adults,EA065-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +85181,ch13,EA065,Most adults,EA065-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +85182,ch14,EA065,Most adults,EA065-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +85183,ch15,EA065,Most adults,EA065-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +85184,ch16,EA065,Most adults,EA065-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +85185,ch17,EA065,Most adults,EA065-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +85186,ch18,EA065,Most adults,EA065-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +85187,ch19,EA065,Most adults,EA065-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +85188,ch20,EA065,Most adults,EA065-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +85189,ch21,EA065,Most adults,EA065-9,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +85190,ch22,EA065,Most adults,EA065-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +85191,ch23,EA065,Most adults,EA065-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +85192,ch24,EA065,Most adults,EA065-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +85193,ch25,EA065,Most adults,EA065-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +85194,ch26,EA065,Most adults,EA065-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +85195,ch27,EA065,Most adults,EA065-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +85196,ch28,EA065,Most adults,EA065-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +85197,ec12,EA065,Activity is absent,EA065-10,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +85198,ec13,EA065,Activity is absent,EA065-10,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +85199,ec14,EA065,Activity is absent,EA065-10,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +85200,ec15,EA065,Activity is absent,EA065-10,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +85201,ec16,EA065,Activity is absent,EA065-10,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +85202,ec17,EA065,Activity is absent,EA065-10,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +85203,ec18,EA065,Activity is absent,EA065-10,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +85204,ec19,EA065,Activity is absent,EA065-10,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +85205,ec20,EA065,Activity is absent,EA065-10,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +85206,ec21,EA065,Activity is absent,EA065-10,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +85207,Aa1,EA066,Absence of distinctions,EA066-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +85208,Aa2,EA066,Absence of distinctions,EA066-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +85209,Aa3,EA066,Wealth distinctions,EA066-2,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +85210,Aa4,EA066,Absence of distinctions,EA066-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +85211,Aa5,EA066,Absence of distinctions,EA066-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +85212,Aa6,EA066,Absence of distinctions,EA066-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +85213,Aa7,EA066,Absence of distinctions,EA066-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +85214,Aa8,EA066,Absence of distinctions,EA066-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +85215,Aa9,EA066,Absence of distinctions,EA066-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +85216,Ab1,EA066,Wealth distinctions,EA066-2,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +85217,Ab10,EA066,Wealth distinctions,EA066-2,,hunter1936,,1936,EthnographicAtlas_1967_p65, +85218,Ab11,EA066,Dual stratification,EA066-4,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +85219,Ab12,EA066,Dual stratification,EA066-4,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +85220,Ab13,EA066,Elite stratification,EA066-3,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +85221,Ab14,EA066,Dual stratification,EA066-4,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +85222,Ab15,EA066,Wealth distinctions,EA066-2,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +85223,Ab16,EA066,?,EA066-NA,,,,,, +85224,Ab17,EA066,?,EA066-NA,,,,,, +85225,Ab18,EA066,?,EA066-NA,,,,,, +85226,Ab19,EA066,Dual stratification,EA066-4,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +85227,Ab2,EA066,Dual stratification,EA066-4,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +85228,Ab20,EA066,Dual stratification,EA066-4,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +85229,Ab21a,EA066,Absence of distinctions,EA066-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +85230,Ab21b,EA066,?,EA066-NA,,,,,, +85231,Ab22,EA066,?,EA066-NA,,,,,, +85232,Ab3,EA066,Dual stratification,EA066-4,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +85233,Ab4,EA066,Dual stratification,EA066-4,,junod1927,,1920,EthnographicAtlas_1967_p65, +85234,Ab5,EA066,Dual stratification,EA066-4,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +85235,Ab6,EA066,Dual stratification,EA066-4,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +85236,Ab7,EA066,Dual stratification,EA066-4,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +85237,Ab8,EA066,Dual stratification,EA066-4,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +85238,Ab9,EA066,Elite stratification,EA066-3,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +85239,Ac1,EA066,Wealth distinctions,EA066-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +85240,Ac10,EA066,Absence of distinctions,EA066-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +85241,Ac11,EA066,Absence of distinctions,EA066-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +85242,Ac12,EA066,Dual stratification,EA066-4,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +85243,Ac13,EA066,Absence of distinctions,EA066-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +85244,Ac14,EA066,Dual stratification,EA066-4,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +85245,Ac15,EA066,Absence of distinctions,EA066-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +85246,Ac16,EA066,?,EA066-NA,,,,,, +85247,Ac17,EA066,Dual stratification,EA066-4,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +85248,Ac18,EA066,?,EA066-NA,,,,,, +85249,Ac19,EA066,?,EA066-NA,,,,,, +85250,Ac2,EA066,Dual stratification,EA066-4,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +85251,Ac20,EA066,?,EA066-NA,,,,,, +85252,Ac21,EA066,Dual stratification,EA066-4,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +85253,Ac22,EA066,?,EA066-NA,,,,,, +85254,Ac23,EA066,Dual stratification,EA066-4,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +85255,Ac24,EA066,Absence of distinctions,EA066-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +85256,Ac25,EA066,Absence of distinctions,EA066-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +85257,Ac26,EA066,Absence of distinctions,EA066-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +85258,Ac27,EA066,Absence of distinctions,EA066-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +85259,Ac28,EA066,?,EA066-NA,,,,,, +85260,Ac29,EA066,?,EA066-NA,,,,,, +85261,Ac3,EA066,Dual stratification,EA066-4,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +85262,Ac30,EA066,Absence of distinctions,EA066-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +85263,Ac31,EA066,Dual stratification,EA066-4,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +85264,Ac32,EA066,Absence of distinctions,EA066-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +85265,Ac33,EA066,Dual stratification,EA066-4,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +85266,Ac34,EA066,Dual stratification,EA066-4,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +85267,Ac35,EA066,?,EA066-NA,,,,,, +85268,Ac36,EA066,Dual stratification,EA066-4,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +85269,Ac37,EA066,Absence of distinctions,EA066-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +85270,Ac38,EA066,Absence of distinctions,EA066-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +85271,Ac39,EA066,Absence of distinctions,EA066-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +85272,Ac4,EA066,Dual stratification,EA066-4,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +85273,Ac40,EA066,Absence of distinctions,EA066-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +85274,Ac41,EA066,Absence of distinctions,EA066-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +85275,Ac42,EA066,Absence of distinctions,EA066-1,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +85276,Ac43,EA066,?,EA066-NA,,,,,, +85277,Ac5,EA066,Absence of distinctions,EA066-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +85278,Ac6,EA066,?,EA066-NA,,,,,, +85279,Ac7,EA066,Absence of distinctions,EA066-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +85280,Ac8,EA066,Dual stratification,EA066-4,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +85281,Ac9,EA066,Dual stratification,EA066-4,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +85282,Ad1,EA066,Absence of distinctions,EA066-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +85283,Ad10,EA066,Dual stratification,EA066-4,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +85284,Ad11,EA066,Dual stratification,EA066-4,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +85285,Ad12,EA066,Absence of distinctions,EA066-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +85286,Ad13,EA066,Absence of distinctions,EA066-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +85287,Ad14,EA066,Absence of distinctions,EA066-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +85288,Ad15,EA066,Dual stratification,EA066-4,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +85289,Ad16,EA066,Dual stratification,EA066-4,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +85290,Ad17,EA066,Dual stratification,EA066-4,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +85291,Ad18,EA066,?,EA066-NA,,,,,, +85292,Ad19,EA066,Dual stratification,EA066-4,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +85293,Ad2,EA066,Dual stratification,EA066-4,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +85294,Ad20,EA066,Dual stratification,EA066-4,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +85295,Ad21,EA066,Dual stratification,EA066-4,,maurice193538,,1930,EthnographicAtlas_1967_p69, +85296,Ad22,EA066,Dual stratification,EA066-4,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +85297,Ad23,EA066,Dual stratification,EA066-4,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +85298,Ad24,EA066,Dual stratification,EA066-4,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +85299,Ad25,EA066,Absence of distinctions,EA066-1,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +85300,Ad26,EA066,Absence of distinctions,EA066-1,,sick1916,,1910,EthnographicAtlas_1967_p69, +85301,Ad27,EA066,Absence of distinctions,EA066-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +85302,Ad28,EA066,Absence of distinctions,EA066-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +85303,Ad29,EA066,Dual stratification,EA066-4,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +85304,Ad3,EA066,Dual stratification,EA066-4,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +85305,Ad30,EA066,?,EA066-NA,,,,,, +85306,Ad31,EA066,?,EA066-NA,,,,,, +85307,Ad32,EA066,Absence of distinctions,EA066-1,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +85308,Ad33,EA066,Absence of distinctions,EA066-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +85309,Ad34,EA066,?,EA066-NA,,,,,, +85310,Ad35,EA066,Absence of distinctions,EA066-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +85311,Ad36,EA066,Dual stratification,EA066-4,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +85312,Ad37,EA066,Absence of distinctions,EA066-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +85313,Ad38,EA066,Absence of distinctions,EA066-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +85314,Ad39,EA066,Elite stratification,EA066-3,,gray1963,,1950,EthnographicAtlas_1967_p69, +85315,Ad4,EA066,Wealth distinctions,EA066-2,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +85316,Ad40,EA066,?,EA066-NA,,,,,, +85317,Ad41,EA066,Wealth distinctions,EA066-2,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +85318,Ad42,EA066,Dual stratification,EA066-4,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +85319,Ad43,EA066,Dual stratification,EA066-4,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +85320,Ad44,EA066,Absence of distinctions,EA066-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +85321,Ad45,EA066,Elite stratification,EA066-3,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +85322,Ad46,EA066,Dual stratification,EA066-4,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +85323,Ad47,EA066,Dual stratification,EA066-4,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +85324,Ad48,EA066,Dual stratification,EA066-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +85325,Ad49,EA066,Dual stratification,EA066-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +85326,Ad5,EA066,Wealth distinctions,EA066-2,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +85327,Ad50,EA066,Absence of distinctions,EA066-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +85328,Ad51,EA066,Absence of distinctions,EA066-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +85329,Ad6,EA066,Absence of distinctions,EA066-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +85330,Ad7,EA066,Dual stratification,EA066-4,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +85331,Ad8,EA066,Dual stratification,EA066-4,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +85332,Ad9,EA066,Wealth distinctions,EA066-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +85333,Ae1,EA066,Absence of distinctions,EA066-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +85334,Ae10,EA066,Complex stratification,EA066-5,"Ethnic classes or castes of herders, tillers, and hunters",czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +85335,Ae11,EA066,Absence of distinctions,EA066-1,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +85336,Ae12,EA066,Wealth distinctions,EA066-2,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +85337,Ae13,EA066,Dual stratification,EA066-4,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +85338,Ae14,EA066,Dual stratification,EA066-4,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +85339,Ae15,EA066,Complex stratification,EA066-5,"Ethnic classes or castes of herders, tillers, and hunters",schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +85340,Ae16,EA066,?,EA066-NA,,,,,, +85341,Ae17,EA066,Absence of distinctions,EA066-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +85342,Ae18,EA066,Wealth distinctions,EA066-2,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +85343,Ae19,EA066,Dual stratification,EA066-4,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +85344,Ae2,EA066,Wealth distinctions,EA066-2,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +85345,Ae20,EA066,Wealth distinctions,EA066-2,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +85346,Ae21,EA066,Absence of distinctions,EA066-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +85347,Ae22,EA066,Absence of distinctions,EA066-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +85348,Ae23,EA066,Absence of distinctions,EA066-1,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +85349,Ae24,EA066,Absence of distinctions,EA066-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +85350,Ae25,EA066,Wealth distinctions,EA066-2,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +85351,Ae26,EA066,Dual stratification,EA066-4,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +85352,Ae27,EA066,?,EA066-NA,,,,,, +85353,Ae28,EA066,Wealth distinctions,EA066-2,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +85354,Ae29,EA066,Absence of distinctions,EA066-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +85355,Ae3,EA066,Wealth distinctions,EA066-2,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +85356,Ae30,EA066,Absence of distinctions,EA066-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +85357,Ae31,EA066,Absence of distinctions,EA066-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +85358,Ae32,EA066,Absence of distinctions,EA066-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +85359,Ae33,EA066,Absence of distinctions,EA066-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +85360,Ae34,EA066,Absence of distinctions,EA066-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +85361,Ae35,EA066,Absence of distinctions,EA066-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +85362,Ae36,EA066,Absence of distinctions,EA066-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +85363,Ae37,EA066,Absence of distinctions,EA066-1,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +85364,Ae38,EA066,Absence of distinctions,EA066-1,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +85365,Ae39,EA066,Absence of distinctions,EA066-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +85366,Ae4,EA066,Absence of distinctions,EA066-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +85367,Ae40,EA066,?,EA066-NA,,,,,, +85368,Ae41,EA066,Absence of distinctions,EA066-1,,andersson1953,,1940,EthnographicAtlas_1967_p69, +85369,Ae42,EA066,Absence of distinctions,EA066-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +85370,Ae43,EA066,Absence of distinctions,EA066-1,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +85371,Ae44,EA066,Dual stratification,EA066-4,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +85372,Ae45,EA066,Absence of distinctions,EA066-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +85373,Ae46,EA066,?,EA066-NA,,,,,, +85374,Ae47,EA066,Absence of distinctions,EA066-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +85375,Ae48,EA066,Absence of distinctions,EA066-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +85376,Ae49,EA066,?,EA066-NA,,,,,, +85377,Ae5,EA066,Dual stratification,EA066-4,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +85378,Ae50,EA066,Dual stratification,EA066-4,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +85379,Ae51,EA066,Absence of distinctions,EA066-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +85380,Ae52,EA066,?,EA066-NA,,,,,, +85381,Ae53,EA066,?,EA066-NA,,,,,, +85382,Ae54,EA066,?,EA066-NA,,,,,, +85383,Ae55,EA066,?,EA066-NA,,,,,, +85384,Ae56,EA066,Dual stratification,EA066-4,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +85385,Ae57,EA066,?,EA066-NA,,,,,, +85386,Ae58,EA066,Dual stratification,EA066-4,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +85387,Ae59,EA066,Absence of distinctions,EA066-1,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +85388,Ae6,EA066,Dual stratification,EA066-4,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +85389,Ae7,EA066,Absence of distinctions,EA066-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +85390,Ae8,EA066,Complex stratification,EA066-5,"Ethnic classes or castes of herders, tillers, and hunters",bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +85391,Ae9,EA066,Dual stratification,EA066-4,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +85392,Af1,EA066,Dual stratification,EA066-4,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +85393,Af10,EA066,Absence of distinctions,EA066-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +85394,Af11,EA066,Absence of distinctions,EA066-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +85395,Af12,EA066,?,EA066-NA,,,,,, +85396,Af13,EA066,Dual stratification,EA066-4,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +85397,Af14,EA066,?,EA066-NA,,,,,, +85398,Af15,EA066,Wealth distinctions,EA066-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +85399,Af16,EA066,Absence of distinctions,EA066-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +85400,Af17,EA066,?,EA066-NA,,,,,, +85401,Af18,EA066,?,EA066-NA,,,,,, +85402,Af19,EA066,Wealth distinctions,EA066-2,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +85403,Af2,EA066,Absence of distinctions,EA066-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +85404,Af20,EA066,Wealth distinctions,EA066-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +85405,Af21,EA066,Dual stratification,EA066-4,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +85406,Af22,EA066,Dual stratification,EA066-4,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +85407,Af23,EA066,Wealth distinctions,EA066-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +85408,Af24,EA066,Dual stratification,EA066-4,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +85409,Af25,EA066,Wealth distinctions,EA066-2,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +85410,Af26,EA066,Wealth distinctions,EA066-2,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +85411,Af27,EA066,Wealth distinctions,EA066-2,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +85412,Af28,EA066,?,EA066-NA,,,,,, +85413,Af29,EA066,Absence of distinctions,EA066-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +85414,Af3,EA066,Dual stratification,EA066-4,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +85415,Af30,EA066,?,EA066-NA,,,,,, +85416,Af31,EA066,Absence of distinctions,EA066-1,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +85417,Af32,EA066,Dual stratification,EA066-4,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85418,Af33,EA066,Dual stratification,EA066-4,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85419,Af34,EA066,Dual stratification,EA066-4,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85420,Af35,EA066,?,EA066-NA,,,,,, +85421,Af36,EA066,Dual stratification,EA066-4,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +85422,Af37,EA066,Absence of distinctions,EA066-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +85423,Af38,EA066,?,EA066-NA,,,,,, +85424,Af39,EA066,Dual stratification,EA066-4,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +85425,Af4,EA066,Absence of distinctions,EA066-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +85426,Af40,EA066,Dual stratification,EA066-4,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +85427,Af41,EA066,Elite stratification,EA066-3,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +85428,Af42,EA066,Dual stratification,EA066-4,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +85429,Af43,EA066,?,EA066-NA,,,,,, +85430,Af44,EA066,Absence of distinctions,EA066-1,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +85431,Af45,EA066,Absence of distinctions,EA066-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +85432,Af46,EA066,?,EA066-NA,,,,,, +85433,Af47,EA066,Absence of distinctions,EA066-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +85434,Af48,EA066,?,EA066-NA,,,,,, +85435,Af49,EA066,Absence of distinctions,EA066-1,,schwab1947,,1940,EthnographicAtlas_1967_p73, +85436,Af5,EA066,Dual stratification,EA066-4,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +85437,Af50,EA066,?,EA066-NA,,,,,, +85438,Af51,EA066,Absence of distinctions,EA066-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +85439,Af52,EA066,Wealth distinctions,EA066-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +85440,Af53,EA066,?,EA066-NA,,,,,, +85441,Af54,EA066,Absence of distinctions,EA066-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +85442,Af55,EA066,Wealth distinctions,EA066-2,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +85443,Af56,EA066,?,EA066-NA,,,,,, +85444,Af57,EA066,?,EA066-NA,,,,,, +85445,Af58,EA066,?,EA066-NA,,,,,, +85446,Af6,EA066,Complex stratification,EA066-5,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +85447,Af7,EA066,Absence of distinctions,EA066-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +85448,Af8,EA066,Complex stratification,EA066-5,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +85449,Af9,EA066,Absence of distinctions,EA066-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +85450,Ag1,EA066,Dual stratification,EA066-4,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +85451,Ag10,EA066,Absence of distinctions,EA066-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +85452,Ag11,EA066,Absence of distinctions,EA066-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +85453,Ag12,EA066,Absence of distinctions,EA066-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +85454,Ag13,EA066,?,EA066-NA,,,,,, +85455,Ag14,EA066,Absence of distinctions,EA066-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +85456,Ag15,EA066,Absence of distinctions,EA066-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +85457,Ag16,EA066,Absence of distinctions,EA066-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +85458,Ag17,EA066,Elite stratification,EA066-3,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +85459,Ag18,EA066,Absence of distinctions,EA066-1,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +85460,Ag19,EA066,Absence of distinctions,EA066-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +85461,Ag2,EA066,Complex stratification,EA066-5,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +85462,Ag20,EA066,Absence of distinctions,EA066-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +85463,Ag21,EA066,Absence of distinctions,EA066-1,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +85464,Ag22,EA066,Dual stratification,EA066-4,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +85465,Ag23,EA066,Wealth distinctions,EA066-2,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +85466,Ag24,EA066,?,EA066-NA,,,,,, +85467,Ag25,EA066,Dual stratification,EA066-4,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +85468,Ag26,EA066,?,EA066-NA,,,,,, +85469,Ag27,EA066,Wealth distinctions,EA066-2,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +85470,Ag28,EA066,Complex stratification,EA066-5,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +85471,Ag29,EA066,?,EA066-NA,,,,,, +85472,Ag3,EA066,Wealth distinctions,EA066-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +85473,Ag30,EA066,Absence of distinctions,EA066-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +85474,Ag31,EA066,Absence of distinctions,EA066-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +85475,Ag32,EA066,Absence of distinctions,EA066-1,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +85476,Ag33,EA066,?,EA066-NA,,,,,, +85477,Ag34,EA066,Absence of distinctions,EA066-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +85478,Ag35,EA066,Absence of distinctions,EA066-1,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +85479,Ag36,EA066,?,EA066-NA,,,,,, +85480,Ag37,EA066,Absence of distinctions,EA066-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +85481,Ag38,EA066,Absence of distinctions,EA066-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +85482,Ag39,EA066,Absence of distinctions,EA066-1,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +85483,Ag4,EA066,Wealth distinctions,EA066-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +85484,Ag40,EA066,Wealth distinctions,EA066-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +85485,Ag41,EA066,Absence of distinctions,EA066-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +85486,Ag42,EA066,Absence of distinctions,EA066-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +85487,Ag43,EA066,?,EA066-NA,,,,,, +85488,Ag44,EA066,Dual stratification,EA066-4,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +85489,Ag45,EA066,Dual stratification,EA066-4,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +85490,Ag46,EA066,?,EA066-NA,,,,,, +85491,Ag47,EA066,Dual stratification,EA066-4,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +85492,Ag48,EA066,Absence of distinctions,EA066-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +85493,Ag49,EA066,Absence of distinctions,EA066-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +85494,Ag5,EA066,Absence of distinctions,EA066-1,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +85495,Ag50,EA066,Absence of distinctions,EA066-1,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +85496,Ag51,EA066,Absence of distinctions,EA066-1,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +85497,Ag52,EA066,?,EA066-NA,,,,,, +85498,Ag53,EA066,?,EA066-NA,,,,,, +85499,Ag54,EA066,Absence of distinctions,EA066-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +85500,Ag6,EA066,Dual stratification,EA066-4,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +85501,Ag7,EA066,Absence of distinctions,EA066-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +85502,Ag8,EA066,Absence of distinctions,EA066-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +85503,Ag9,EA066,Dual stratification,EA066-4,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +85504,Ah1,EA066,Absence of distinctions,EA066-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85505,Ah10,EA066,Absence of distinctions,EA066-1,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +85506,Ah11,EA066,?,EA066-NA,,,,,, +85507,Ah12,EA066,?,EA066-NA,,,,,, +85508,Ah13,EA066,Absence of distinctions,EA066-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +85509,Ah14,EA066,Absence of distinctions,EA066-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +85510,Ah15,EA066,Wealth distinctions,EA066-2,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +85511,Ah16,EA066,Dual stratification,EA066-4,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +85512,Ah17,EA066,?,EA066-NA,,,,,, +85513,Ah18,EA066,?,EA066-NA,,,,,, +85514,Ah19,EA066,Absence of distinctions,EA066-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +85515,Ah2,EA066,Dual stratification,EA066-4,,meek1931a,,1920,EthnographicAtlas_1967_p77, +85516,Ah20,EA066,Absence of distinctions,EA066-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +85517,Ah21,EA066,?,EA066-NA,,,,,, +85518,Ah22,EA066,Absence of distinctions,EA066-1,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +85519,Ah23,EA066,?,EA066-NA,,,,,, +85520,Ah24,EA066,Absence of distinctions,EA066-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +85521,Ah25,EA066,Absence of distinctions,EA066-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +85522,Ah26,EA066,Absence of distinctions,EA066-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +85523,Ah27,EA066,?,EA066-NA,,,,,, +85524,Ah28,EA066,Absence of distinctions,EA066-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +85525,Ah29,EA066,Absence of distinctions,EA066-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +85526,Ah3,EA066,Absence of distinctions,EA066-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +85527,Ah30,EA066,Absence of distinctions,EA066-1,,meek1931b,,1920,EthnographicAtlas_1967_p77, +85528,Ah31,EA066,Absence of distinctions,EA066-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +85529,Ah32,EA066,Absence of distinctions,EA066-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +85530,Ah33,EA066,Absence of distinctions,EA066-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +85531,Ah34,EA066,Dual stratification,EA066-4,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +85532,Ah35,EA066,Absence of distinctions,EA066-1,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +85533,Ah36,EA066,Dual stratification,EA066-4,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +85534,Ah37,EA066,Absence of distinctions,EA066-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +85535,Ah38,EA066,Absence of distinctions,EA066-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +85536,Ah39,EA066,Absence of distinctions,EA066-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +85537,Ah4,EA066,Absence of distinctions,EA066-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +85538,Ah5,EA066,Absence of distinctions,EA066-1,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +85539,Ah6,EA066,Absence of distinctions,EA066-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +85540,Ah7,EA066,Absence of distinctions,EA066-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +85541,Ah8,EA066,Dual stratification,EA066-4,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +85542,Ah9,EA066,Absence of distinctions,EA066-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +85543,Ai1,EA066,Absence of distinctions,EA066-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +85544,Ai10,EA066,Wealth distinctions,EA066-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +85545,Ai11,EA066,Dual stratification,EA066-4,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +85546,Ai12,EA066,Absence of distinctions,EA066-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +85547,Ai13,EA066,Absence of distinctions,EA066-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +85548,Ai14,EA066,?,EA066-NA,,,,,, +85549,Ai15,EA066,?,EA066-NA,,,,,, +85550,Ai16,EA066,?,EA066-NA,,,,,, +85551,Ai17,EA066,?,EA066-NA,,,,,, +85552,Ai18,EA066,Dual stratification,EA066-4,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +85553,Ai19,EA066,?,EA066-NA,,,,,, +85554,Ai2,EA066,Absence of distinctions,EA066-1,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +85555,Ai20,EA066,Absence of distinctions,EA066-1,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +85556,Ai21,EA066,Dual stratification,EA066-4,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +85557,Ai22,EA066,Absence of distinctions,EA066-1,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +85558,Ai23,EA066,Absence of distinctions,EA066-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +85559,Ai24,EA066,Absence of distinctions,EA066-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +85560,Ai25,EA066,Absence of distinctions,EA066-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +85561,Ai26,EA066,Absence of distinctions,EA066-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +85562,Ai27,EA066,?,EA066-NA,,,,,, +85563,Ai28,EA066,Absence of distinctions,EA066-1,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +85564,Ai29,EA066,Absence of distinctions,EA066-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +85565,Ai3,EA066,Dual stratification,EA066-4,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +85566,Ai30,EA066,Absence of distinctions,EA066-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +85567,Ai31,EA066,Dual stratification,EA066-4,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +85568,Ai32,EA066,Absence of distinctions,EA066-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +85569,Ai33,EA066,Absence of distinctions,EA066-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +85570,Ai34,EA066,Absence of distinctions,EA066-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +85571,Ai35,EA066,Absence of distinctions,EA066-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +85572,Ai36,EA066,Absence of distinctions,EA066-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +85573,Ai37,EA066,Absence of distinctions,EA066-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +85574,Ai38,EA066,Wealth distinctions,EA066-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +85575,Ai39,EA066,Wealth distinctions,EA066-2,,nadel1947,,1940,EthnographicAtlas_1967_p77, +85576,Ai4,EA066,?,EA066-NA,,,,,, +85577,Ai40,EA066,Wealth distinctions,EA066-2,,nadel1947,,1940,EthnographicAtlas_1967_p77, +85578,Ai41,EA066,Absence of distinctions,EA066-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +85579,Ai42,EA066,Absence of distinctions,EA066-1,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +85580,Ai43,EA066,Absence of distinctions,EA066-1,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +85581,Ai44,EA066,Dual stratification,EA066-4,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p77, +85582,Ai45,EA066,?,EA066-NA,,,,,, +85583,Ai46,EA066,Absence of distinctions,EA066-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +85584,Ai47,EA066,Absence of distinctions,EA066-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +85585,Ai5,EA066,Absence of distinctions,EA066-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +85586,Ai6,EA066,Complex stratification,EA066-5,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +85587,Ai7,EA066,Absence of distinctions,EA066-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +85588,Ai8,EA066,Absence of distinctions,EA066-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +85589,Ai9,EA066,Absence of distinctions,EA066-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +85590,Aj1,EA066,Absence of distinctions,EA066-1,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +85591,Aj10,EA066,Absence of distinctions,EA066-1,But there is a royal lineage,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +85592,Aj11,EA066,Absence of distinctions,EA066-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +85593,Aj12,EA066,Wealth distinctions,EA066-2,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +85594,Aj13,EA066,Elite stratification,EA066-3,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +85595,Aj14,EA066,Absence of distinctions,EA066-1,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +85596,Aj15,EA066,Elite stratification,EA066-3,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +85597,Aj16,EA066,Wealth distinctions,EA066-2,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +85598,Aj17,EA066,Dual stratification,EA066-4,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +85599,Aj18,EA066,?,EA066-NA,,,,,, +85600,Aj19,EA066,Absence of distinctions,EA066-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +85601,Aj2,EA066,Absence of distinctions,EA066-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +85602,Aj20,EA066,?,EA066-NA,,,,,, +85603,Aj21,EA066,Wealth distinctions,EA066-2,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +85604,Aj22,EA066,?,EA066-NA,,,,,, +85605,Aj23,EA066,Absence of distinctions,EA066-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +85606,Aj24,EA066,?,EA066-NA,,,,,, +85607,Aj25,EA066,Wealth distinctions,EA066-2,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +85608,Aj26,EA066,Absence of distinctions,EA066-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +85609,Aj27,EA066,?,EA066-NA,,,,,, +85610,Aj28,EA066,Absence of distinctions,EA066-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +85611,Aj29,EA066,Absence of distinctions,EA066-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +85612,Aj3,EA066,Absence of distinctions,EA066-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +85613,Aj30,EA066,?,EA066-NA,,,,,, +85614,Aj31,EA066,?,EA066-NA,,,,,, +85615,Aj4,EA066,Wealth distinctions,EA066-2,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +85616,Aj5,EA066,Absence of distinctions,EA066-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +85617,Aj6,EA066,Wealth distinctions,EA066-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +85618,Aj7,EA066,Absence of distinctions,EA066-1,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +85619,Aj8,EA066,Wealth distinctions,EA066-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +85620,Aj9,EA066,Absence of distinctions,EA066-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +85621,Ca1,EA066,Wealth distinctions,EA066-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +85622,Ca10,EA066,Wealth distinctions,EA066-2,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +85623,Ca11,EA066,Absence of distinctions,EA066-1,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +85624,Ca12,EA066,Dual stratification,EA066-4,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +85625,Ca13,EA066,?,EA066-NA,,,,,, +85626,Ca14,EA066,Absence of distinctions,EA066-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +85627,Ca15,EA066,?,EA066-NA,,,,,, +85628,Ca16,EA066,?,EA066-NA,,,,,, +85629,Ca17,EA066,Absence of distinctions,EA066-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +85630,Ca18,EA066,?,EA066-NA,,,,,, +85631,Ca19,EA066,Absence of distinctions,EA066-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +85632,Ca2,EA066,Wealth distinctions,EA066-2,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +85633,Ca20,EA066,?,EA066-NA,,,,,, +85634,Ca21,EA066,Absence of distinctions,EA066-1,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +85635,Ca22,EA066,Absence of distinctions,EA066-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +85636,Ca23,EA066,?,EA066-NA,,,,,, +85637,Ca24,EA066,?,EA066-NA,,,,,, +85638,Ca25,EA066,?,EA066-NA,,,,,, +85639,Ca26,EA066,?,EA066-NA,,,,,, +85640,Ca27,EA066,Elite stratification,EA066-3,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +85641,Ca28,EA066,Dual stratification,EA066-4,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +85642,Ca29,EA066,Dual stratification,EA066-4,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +85643,Ca3,EA066,Complex stratification,EA066-5,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +85644,Ca30,EA066,Dual stratification,EA066-4,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +85645,Ca31,EA066,Wealth distinctions,EA066-2,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +85646,Ca32,EA066,Absence of distinctions,EA066-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +85647,Ca33,EA066,Absence of distinctions,EA066-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +85648,Ca34,EA066,?,EA066-NA,,,,,, +85649,Ca35,EA066,?,EA066-NA,,,,,, +85650,Ca36,EA066,Elite stratification,EA066-3,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +85651,Ca37,EA066,Elite stratification,EA066-3,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +85652,Ca38,EA066,Elite stratification,EA066-3,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +85653,Ca39,EA066,Complex stratification,EA066-5,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +85654,Ca4,EA066,Wealth distinctions,EA066-2,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +85655,Ca40,EA066,Wealth distinctions,EA066-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +85656,Ca41,EA066,Wealth distinctions,EA066-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +85657,Ca42,EA066,Dual stratification,EA066-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +85658,Ca43,EA066,?,EA066-NA,,,,,, +85659,Ca5,EA066,Absence of distinctions,EA066-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +85660,Ca6,EA066,Wealth distinctions,EA066-2,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +85661,Ca7,EA066,Complex stratification,EA066-5,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +85662,Ca8,EA066,?,EA066-NA,,,,,, +85663,Ca9,EA066,?,EA066-NA,,,,,, +85664,Cb1,EA066,Dual stratification,EA066-4,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +85665,Cb10,EA066,Absence of distinctions,EA066-1,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +85666,Cb11,EA066,?,EA066-NA,,,,,, +85667,Cb12,EA066,?,EA066-NA,,,,,, +85668,Cb13,EA066,?,EA066-NA,,,,,, +85669,Cb14,EA066,?,EA066-NA,,,,,, +85670,Cb15,EA066,Wealth distinctions,EA066-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +85671,Cb16,EA066,?,EA066-NA,,,,,, +85672,Cb17,EA066,Dual stratification,EA066-4,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +85673,Cb18,EA066,Dual stratification,EA066-4,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +85674,Cb19,EA066,Dual stratification,EA066-4,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +85675,Cb2,EA066,Complex stratification,EA066-5,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +85676,Cb20,EA066,?,EA066-NA,,,,,, +85677,Cb21,EA066,Absence of distinctions,EA066-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +85678,Cb22,EA066,Elite stratification,EA066-3,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +85679,Cb23,EA066,Dual stratification,EA066-4,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +85680,Cb24,EA066,Absence of distinctions,EA066-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +85681,Cb25,EA066,Wealth distinctions,EA066-2,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +85682,Cb26,EA066,Complex stratification,EA066-5,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +85683,Cb27,EA066,?,EA066-NA,,,,,, +85684,Cb28,EA066,?,EA066-NA,,,,,, +85685,Cb29,EA066,?,EA066-NA,,,,,, +85686,Cb3,EA066,Complex stratification,EA066-5,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +85687,Cb4,EA066,Wealth distinctions,EA066-2,,reid1930,,1920,EthnographicAtlas_1967_p81, +85688,Cb5,EA066,Absence of distinctions,EA066-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +85689,Cb6,EA066,Dual stratification,EA066-4,,woodnd,,1920,EthnographicAtlas_1967_p81, +85690,Cb7,EA066,Dual stratification,EA066-4,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +85691,Cb8,EA066,Wealth distinctions,EA066-2,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +85692,Cb9,EA066,Dual stratification,EA066-4,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +85693,Cc1,EA066,Complex stratification,EA066-5,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +85694,Cc10,EA066,Elite stratification,EA066-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +85695,Cc11,EA066,Elite stratification,EA066-3,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +85696,Cc12,EA066,Elite stratification,EA066-3,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +85697,Cc13,EA066,Elite stratification,EA066-3,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +85698,Cc14,EA066,Dual stratification,EA066-4,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +85699,Cc15,EA066,Elite stratification,EA066-3,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +85700,Cc16,EA066,Elite stratification,EA066-3,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +85701,Cc17,EA066,Elite stratification,EA066-3,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +85702,Cc18,EA066,Elite stratification,EA066-3,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +85703,Cc19,EA066,Elite stratification,EA066-3,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +85704,Cc2,EA066,Dual stratification,EA066-4,All sources except Fuchs stress sharp class differentiation,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +85705,Cc20,EA066,Elite stratification,EA066-3,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +85706,Cc3,EA066,Wealth distinctions,EA066-2,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +85707,Cc4,EA066,Dual stratification,EA066-4,The primary distinction is between a literate class with religious and clerical functions and the illiterate common people,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +85708,Cc5,EA066,Elite stratification,EA066-3,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +85709,Cc6,EA066,Wealth distinctions,EA066-2,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +85710,Cc7,EA066,Elite stratification,EA066-3,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85711,Cc8,EA066,Elite stratification,EA066-3,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +85712,Cc9,EA066,Elite stratification,EA066-3,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +85713,Cd1,EA066,Wealth distinctions,EA066-2,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +85714,Cd10,EA066,Wealth distinctions,EA066-2,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +85715,Cd11,EA066,Dual stratification,EA066-4,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +85716,Cd12,EA066,Complex stratification,EA066-5,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +85717,Cd13,EA066,Wealth distinctions,EA066-2,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +85718,Cd14,EA066,?,EA066-NA,,,,,, +85719,Cd15,EA066,Wealth distinctions,EA066-2,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +85720,Cd16,EA066,Complex stratification,EA066-5,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +85721,Cd17,EA066,Wealth distinctions,EA066-2,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +85722,Cd18,EA066,Elite stratification,EA066-3,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +85723,Cd19,EA066,Complex stratification,EA066-5,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +85724,Cd2,EA066,Complex stratification,EA066-5,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +85725,Cd20,EA066,?,EA066-NA,,,,,, +85726,Cd21,EA066,Complex stratification,EA066-5,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +85727,Cd3,EA066,Wealth distinctions,EA066-2,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +85728,Cd4,EA066,Absence of distinctions,EA066-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +85729,Cd5,EA066,Absence of distinctions,EA066-1,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +85730,Cd6,EA066,Complex stratification,EA066-5,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +85731,Cd7,EA066,Wealth distinctions,EA066-2,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +85732,Cd8,EA066,Absence of distinctions,EA066-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +85733,Cd9,EA066,?,EA066-NA,Sharp class distinctions are lacking,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +85734,Ce1,EA066,Absence of distinctions,EA066-1,"But 'complex stratification' (code ""5"") in the urban population",coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +85735,Ce2,EA066,Complex stratification,EA066-5,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +85736,Ce3,EA066,Complex stratification,EA066-5,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +85737,Ce4,EA066,Complex stratification,EA066-5,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85738,Ce5,EA066,Complex stratification,EA066-5,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +85739,Ce6,EA066,Complex stratification,EA066-5,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +85740,Ce7,EA066,Complex stratification,EA066-5,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +85741,Ce8,EA066,Complex stratification,EA066-5,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +85742,Cf1,EA066,Complex stratification,EA066-5,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +85743,Cf2,EA066,Elite stratification,EA066-3,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +85744,Cf3,EA066,Absence of distinctions,EA066-1,,munch1945,,1930,EthnographicAtlas_1967_p85, +85745,Cf4,EA066,Complex stratification,EA066-5,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +85746,Cf5,EA066,Complex stratification,EA066-5,,miner1939,,1930,EthnographicAtlas_1967_p85, +85747,Cg1,EA066,Complex stratification,EA066-5,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +85748,Cg2,EA066,Elite stratification,EA066-3,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +85749,Cg3,EA066,Complex stratification,EA066-5,For the Irish in general,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +85750,Cg4,EA066,Wealth distinctions,EA066-2,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +85751,Cg5,EA066,Complex stratification,EA066-5,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +85752,Ch1,EA066,Complex stratification,EA066-5,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +85753,Ch10,EA066,?,EA066-NA,,,,,, +85754,Ch11,EA066,Complex stratification,EA066-5,But officially disclaimed,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +85755,Ch2,EA066,Wealth distinctions,EA066-2,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +85756,Ch3,EA066,Complex stratification,EA066-5,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +85757,Ch4,EA066,Elite stratification,EA066-3,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +85758,Ch5,EA066,Complex stratification,EA066-5,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +85759,Ch6,EA066,Complex stratification,EA066-5,,ember1954,,1910,EthnographicAtlas_1967_p85, +85760,Ch7,EA066,Complex stratification,EA066-5,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +85761,Ch8,EA066,Complex stratification,EA066-5,,hanzeli1955,,1940,EthnographicAtlas_1967_p85, +85762,Ch9,EA066,Complex stratification,EA066-5,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +85763,Ci1,EA066,Dual stratification,EA066-4,"But formerly D [sic, Gray (1999)]",aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +85764,Ci10,EA066,Wealth distinctions,EA066-2,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +85765,Ci11,EA066,Dual stratification,EA066-4,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +85766,Ci12,EA066,Complex stratification,EA066-5,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +85767,Ci2,EA066,Absence of distinctions,EA066-1,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +85768,Ci3,EA066,?,EA066-NA,,,,,, +85769,Ci4,EA066,Dual stratification,EA066-4,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +85770,Ci5,EA066,Complex stratification,EA066-5,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +85771,Ci6,EA066,Dual stratification,EA066-4,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +85772,Ci7,EA066,?,EA066-NA,,,,,, +85773,Ci8,EA066,Dual stratification,EA066-4,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +85774,Ci9,EA066,?,EA066-NA,A small feudal aristocracy of outside origin is reported,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +85775,Cj1,EA066,Elite stratification,EA066-3,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +85776,Cj10,EA066,Dual stratification,EA066-4,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +85777,Cj2,EA066,Wealth distinctions,EA066-2,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +85778,Cj3,EA066,Dual stratification,EA066-4,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +85779,Cj4,EA066,Complex stratification,EA066-5,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +85780,Cj5,EA066,?,EA066-NA,,,,,, +85781,Cj6,EA066,Complex stratification,EA066-5,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +85782,Cj7,EA066,Complex stratification,EA066-5,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +85783,Cj8,EA066,Absence of distinctions,EA066-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +85784,Cj9,EA066,Dual stratification,EA066-4,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +85785,Ea1,EA066,Elite stratification,EA066-3,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p89, +85786,Ea10,EA066,Dual stratification,EA066-4,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +85787,Ea11,EA066,Complex stratification,EA066-5,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +85788,Ea12,EA066,Dual stratification,EA066-4,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +85789,Ea13,EA066,Dual stratification,EA066-4,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +85790,Ea2,EA066,Complex stratification,EA066-5,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +85791,Ea3,EA066,Wealth distinctions,EA066-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +85792,Ea4,EA066,Elite stratification,EA066-3,,barth1956b,,1950,EthnographicAtlas_1967_p89, +85793,Ea5,EA066,Wealth distinctions,EA066-2,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +85794,Ea6,EA066,Wealth distinctions,EA066-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +85795,Ea7,EA066,Wealth distinctions,EA066-2,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +85796,Ea8,EA066,Dual stratification,EA066-4,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +85797,Ea9,EA066,Elite stratification,EA066-3,,vreeland1957,,1950,EthnographicAtlas_1967_p89, +85798,Eb1,EA066,Dual stratification,EA066-4,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +85799,Eb2,EA066,Dual stratification,EA066-4,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +85800,Eb3,EA066,Dual stratification,EA066-4,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +85801,Eb4,EA066,Absence of distinctions,EA066-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +85802,Eb5,EA066,Dual stratification,EA066-4,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +85803,Eb6,EA066,Dual stratification,EA066-4,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +85804,Eb7,EA066,Dual stratification,EA066-4,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +85805,Eb8,EA066,?,EA066-NA,,,,,, +85806,Ec1,EA066,Absence of distinctions,EA066-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +85807,Ec10,EA066,Wealth distinctions,EA066-2,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +85808,Ec11,EA066,Wealth distinctions,EA066-2,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +85809,Ec2,EA066,Wealth distinctions,EA066-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85810,Ec3,EA066,Wealth distinctions,EA066-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +85811,Ec4,EA066,Wealth distinctions,EA066-2,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +85812,Ec5,EA066,Wealth distinctions,EA066-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +85813,Ec6,EA066,Absence of distinctions,EA066-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +85814,Ec7,EA066,Absence of distinctions,EA066-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +85815,Ec8,EA066,Absence of distinctions,EA066-1,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +85816,Ec9,EA066,Absence of distinctions,EA066-1,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +85817,Ed1,EA066,Complex stratification,EA066-5,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +85818,Ed10,EA066,Complex stratification,EA066-5,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +85819,Ed13,EA066,?,EA066-NA,,,,,, +85820,Ed14,EA066,?,EA066-NA,,,,,, +85821,Ed15a,EA066,?,EA066-NA,,,,,, +85822,Ed15b,EA066,Complex stratification,EA066-5,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +85823,Ed16,EA066,?,EA066-NA,,,,,, +85824,Ed2,EA066,Dual stratification,EA066-4,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +85825,Ed3,EA066,Wealth distinctions,EA066-2,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +85826,Ed4,EA066,Absence of distinctions,EA066-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +85827,Ed5,EA066,Complex stratification,EA066-5,"For the region, but 'absent' (code ""1"") in the hamlet",beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85828,Ed6,EA066,Complex stratification,EA066-5,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +85829,Ed7,EA066,Dual stratification,EA066-4,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +85830,Ed8,EA066,Wealth distinctions,EA066-2,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +85831,Ed9,EA066,Wealth distinctions,EA066-2,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +85832,Ee1,EA066,Wealth distinctions,EA066-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +85833,Ee2,EA066,Complex stratification,EA066-5,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p89, +85834,Ee3,EA066,Wealth distinctions,EA066-2,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +85835,Ee4,EA066,Complex stratification,EA066-5,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +85836,Ee5,EA066,Dual stratification,EA066-4,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +85837,Ee6,EA066,Wealth distinctions,EA066-2,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +85838,Ee7,EA066,?,EA066-NA,,,,,, +85839,Ee8,EA066,Complex stratification,EA066-5,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +85840,Ef1,EA066,Absence of distinctions,EA066-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +85841,Ef10,EA066,?,EA066-NA,,,,,, +85842,Ef11,EA066,Dual stratification,EA066-4,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +85843,Ef2,EA066,Complex stratification,EA066-5,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +85844,Ef3,EA066,?,EA066-NA,,,,,, +85845,Ef4,EA066,Dual stratification,EA066-4,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +85846,Ef5,EA066,Complex stratification,EA066-5,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +85847,Ef6,EA066,?,EA066-NA,,,,,, +85848,Ef7,EA066,Complex stratification,EA066-5,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +85849,Ef8,EA066,Complex stratification,EA066-5,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +85850,Ef9,EA066,Complex stratification,EA066-5,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85851,Eg1,EA066,Absence of distinctions,EA066-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85852,Eg10,EA066,Complex stratification,EA066-5,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +85853,Eg11,EA066,?,EA066-NA,,,,,, +85854,Eg12,EA066,?,EA066-NA,,,,,, +85855,Eg13,EA066,Absence of distinctions,EA066-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85856,Eg14,EA066,Absence of distinctions,EA066-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +85857,Eg2,EA066,Complex stratification,EA066-5,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +85858,Eg3,EA066,Wealth distinctions,EA066-2,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +85859,Eg4,EA066,Absence of distinctions,EA066-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +85860,Eg5,EA066,Complex stratification,EA066-5,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +85861,Eg6,EA066,Complex stratification,EA066-5,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +85862,Eg7,EA066,?,EA066-NA,,,,,, +85863,Eg8,EA066,?,EA066-NA,,,,,, +85864,Eg9,EA066,Absence of distinctions,EA066-1,,elwin1939,,1930,EthnographicAtlas_1967_p93, +85865,Eh1,EA066,Absence of distinctions,EA066-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +85866,Eh10,EA066,?,EA066-NA,,,,,, +85867,Eh2,EA066,Dual stratification,EA066-4,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +85868,Eh3,EA066,Dual stratification,EA066-4,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +85869,Eh4,EA066,Absence of distinctions,EA066-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85870,Eh5,EA066,Absence of distinctions,EA066-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +85871,Eh6,EA066,Complex stratification,EA066-5,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +85872,Eh7,EA066,Dual stratification,EA066-4,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +85873,Eh8,EA066,Dual stratification,EA066-4,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +85874,Eh9,EA066,Dual stratification,EA066-4,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +85875,Ei1,EA066,Wealth distinctions,EA066-2,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85876,Ei10,EA066,?,EA066-NA,,,,,, +85877,Ei11,EA066,Wealth distinctions,EA066-2,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +85878,Ei12,EA066,Wealth distinctions,EA066-2,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +85879,Ei13,EA066,Wealth distinctions,EA066-2,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +85880,Ei14,EA066,Wealth distinctions,EA066-2,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +85881,Ei15,EA066,?,EA066-NA,,,,,, +85882,Ei16,EA066,Dual stratification,EA066-4,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +85883,Ei17,EA066,?,EA066-NA,,,,,, +85884,Ei18,EA066,Wealth distinctions,EA066-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +85885,Ei19,EA066,Dual stratification,EA066-4,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +85886,Ei2,EA066,Wealth distinctions,EA066-2,,mills1922,,1920,EthnographicAtlas_1967_p93, +85887,Ei20,EA066,?,EA066-NA,,,,,, +85888,Ei3,EA066,Complex stratification,EA066-5,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +85889,Ei4,EA066,Dual stratification,EA066-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +85890,Ei5,EA066,Dual stratification,EA066-4,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +85891,Ei6,EA066,Wealth distinctions,EA066-2,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +85892,Ei7,EA066,Wealth distinctions,EA066-2,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +85893,Ei8,EA066,Dual stratification,EA066-4,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +85894,Ei9,EA066,?,EA066-NA,,,,,, +85895,Ej1,EA066,Wealth distinctions,EA066-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +85896,Ej10,EA066,Wealth distinctions,EA066-2,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +85897,Ej11,EA066,Dual stratification,EA066-4,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +85898,Ej12,EA066,Dual stratification,EA066-4,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +85899,Ej13,EA066,Dual stratification,EA066-4,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +85900,Ej14,EA066,Absence of distinctions,EA066-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85901,Ej15,EA066,Complex stratification,EA066-5,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +85902,Ej16,EA066,Absence of distinctions,EA066-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +85903,Ej2,EA066,Wealth distinctions,EA066-2,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +85904,Ej3,EA066,Absence of distinctions,EA066-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +85905,Ej4,EA066,Complex stratification,EA066-5,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +85906,Ej5,EA066,Complex stratification,EA066-5,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +85907,Ej6,EA066,Absence of distinctions,EA066-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p93, +85908,Ej7,EA066,Absence of distinctions,EA066-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +85909,Ej8,EA066,Dual stratification,EA066-4,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +85910,Ej9,EA066,Wealth distinctions,EA066-2,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +85911,Ia1,EA066,Absence of distinctions,EA066-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +85912,Ia10,EA066,Absence of distinctions,EA066-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +85913,Ia11,EA066,Dual stratification,EA066-4,,mabuchi1960,,1930,EthnographicAtlas_1967_p93, +85914,Ia12,EA066,Complex stratification,EA066-5,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +85915,Ia13,EA066,Wealth distinctions,EA066-2,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +85916,Ia14,EA066,Absence of distinctions,EA066-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +85917,Ia15,EA066,Absence of distinctions,EA066-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +85918,Ia16,EA066,Wealth distinctions,EA066-2,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +85919,Ia17,EA066,?,EA066-NA,,,,,, +85920,Ia18,EA066,?,EA066-NA,,,,,, +85921,Ia2,EA066,Wealth distinctions,EA066-2,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +85922,Ia3,EA066,Wealth distinctions,EA066-2,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +85923,Ia4,EA066,Absence of distinctions,EA066-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +85924,Ia5,EA066,Absence of distinctions,EA066-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +85925,Ia6,EA066,Dual stratification,EA066-4,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85926,Ia7,EA066,Dual stratification,EA066-4,,fox1954,,1950,EthnographicAtlas_1967_p93, +85927,Ia8,EA066,Elite stratification,EA066-3,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +85928,Ia9,EA066,Absence of distinctions,EA066-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +85929,Ib1,EA066,Absence of distinctions,EA066-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85930,Ib2,EA066,Complex stratification,EA066-5,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85931,Ib3,EA066,Complex stratification,EA066-5,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +85932,Ib4,EA066,Wealth distinctions,EA066-2,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +85933,Ib5,EA066,Wealth distinctions,EA066-2,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +85934,Ib6,EA066,Dual stratification,EA066-4,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +85935,Ib7,EA066,Absence of distinctions,EA066-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +85936,Ib8,EA066,Absence of distinctions,EA066-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +85937,Ib9,EA066,?,EA066-NA,,,,,, +85938,Ic1,EA066,Dual stratification,EA066-4,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85939,Ic10,EA066,Absence of distinctions,EA066-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +85940,Ic11,EA066,Dual stratification,EA066-4,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85941,Ic12,EA066,Absence of distinctions,EA066-1,"But 'dual stratification' (code ""4"") on the coast",goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +85942,Ic13,EA066,?,EA066-NA,,,,,, +85943,Ic2,EA066,Wealth distinctions,EA066-2,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p97, +85944,Ic3,EA066,Dual stratification,EA066-4,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +85945,Ic4,EA066,Dual stratification,EA066-4,,kruyt1921;wetering1925,,1920,Ethnology_Vol2_No1_Jan_1963, +85946,Ic5,EA066,Wealth distinctions,EA066-2,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +85947,Ic6,EA066,Dual stratification,EA066-4,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +85948,Ic7,EA066,Dual stratification,EA066-4,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +85949,Ic8,EA066,Absence of distinctions,EA066-1,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +85950,Ic9,EA066,Dual stratification,EA066-4,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +85951,Id1,EA066,Absence of distinctions,EA066-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +85952,Id10,EA066,Absence of distinctions,EA066-1,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +85953,Id11,EA066,Absence of distinctions,EA066-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +85954,Id12,EA066,Absence of distinctions,EA066-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +85955,Id13,EA066,Absence of distinctions,EA066-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +85956,Id2,EA066,Absence of distinctions,EA066-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +85957,Id3,EA066,Absence of distinctions,EA066-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +85958,Id4,EA066,Absence of distinctions,EA066-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p97, +85959,Id5,EA066,Absence of distinctions,EA066-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p97, +85960,Id6,EA066,Absence of distinctions,EA066-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p97, +85961,Id7,EA066,?,EA066-NA,,,,,, +85962,Id8,EA066,Absence of distinctions,EA066-1,,roth1890,,1830,EthnographicAtlas_1967_p97, +85963,Id9,EA066,Absence of distinctions,EA066-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p97, +85964,Ie1,EA066,Wealth distinctions,EA066-2,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85965,Ie10,EA066,Wealth distinctions,EA066-2,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +85966,Ie11,EA066,Absence of distinctions,EA066-1,,bowers1964,,1950,EthnographicAtlas_1967_p97, +85967,Ie12,EA066,Absence of distinctions,EA066-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85968,Ie13,EA066,Absence of distinctions,EA066-1,,landtman1927,,1920,EthnographicAtlas_1967_p97, +85969,Ie14,EA066,Absence of distinctions,EA066-1,,haddon1908,,1900,EthnographicAtlas_1967_p97, +85970,Ie15,EA066,Absence of distinctions,EA066-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85971,Ie16,EA066,Absence of distinctions,EA066-1,,williams194041,,1940,EthnographicAtlas_1967_p97, +85972,Ie17,EA066,Wealth distinctions,EA066-2,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +85973,Ie18,EA066,Absence of distinctions,EA066-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +85974,Ie19,EA066,Absence of distinctions,EA066-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +85975,Ie2,EA066,Absence of distinctions,EA066-1,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +85976,Ie20,EA066,Dual stratification,EA066-4,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +85977,Ie21,EA066,Absence of distinctions,EA066-1,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +85978,Ie22,EA066,Dual stratification,EA066-4,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +85979,Ie23,EA066,Absence of distinctions,EA066-1,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +85980,Ie24,EA066,Wealth distinctions,EA066-2,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +85981,Ie25,EA066,Wealth distinctions,EA066-2,,williamson1912,,1920,EthnographicAtlas_1967_p97, +85982,Ie26,EA066,Absence of distinctions,EA066-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +85983,Ie27,EA066,Absence of distinctions,EA066-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +85984,Ie28,EA066,Wealth distinctions,EA066-2,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +85985,Ie29,EA066,Absence of distinctions,EA066-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85986,Ie3,EA066,Absence of distinctions,EA066-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85987,Ie30,EA066,Absence of distinctions,EA066-1,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +85988,Ie31,EA066,Wealth distinctions,EA066-2,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +85989,Ie32,EA066,Wealth distinctions,EA066-2,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +85990,Ie33,EA066,Absence of distinctions,EA066-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +85991,Ie34,EA066,?,EA066-NA,,,,,, +85992,Ie35,EA066,Absence of distinctions,EA066-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +85993,Ie36,EA066,?,EA066-NA,,,,,, +85994,Ie37,EA066,?,EA066-NA,,,,,, +85995,Ie38,EA066,Absence of distinctions,EA066-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +85996,Ie39,EA066,Wealth distinctions,EA066-2,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +85997,Ie4,EA066,Absence of distinctions,EA066-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +85998,Ie5,EA066,Absence of distinctions,EA066-1,,williams1936,,1930,EthnographicAtlas_1967_p97, +85999,Ie6,EA066,Absence of distinctions,EA066-1,,held1947,,1930,EthnographicAtlas_1967_p97, +86000,Ie7,EA066,Absence of distinctions,EA066-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +86001,Ie8,EA066,Wealth distinctions,EA066-2,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +86002,Ie9,EA066,Absence of distinctions,EA066-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +86003,If1,EA066,Dual stratification,EA066-4,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86004,If10,EA066,?,EA066-NA,,,,,, +86005,If11,EA066,Dual stratification,EA066-4,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +86006,If12,EA066,Absence of distinctions,EA066-1,,mason1954,,1940,EthnographicAtlas_1967_p101, +86007,If13,EA066,Dual stratification,EA066-4,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p101, +86008,If14,EA066,Dual stratification,EA066-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +86009,If15,EA066,Absence of distinctions,EA066-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +86010,If16,EA066,Absence of distinctions,EA066-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +86011,If17,EA066,Dual stratification,EA066-4,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +86012,If2,EA066,Absence of distinctions,EA066-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +86013,If3,EA066,Dual stratification,EA066-4,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +86014,If4,EA066,Absence of distinctions,EA066-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +86015,If5,EA066,Dual stratification,EA066-4,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +86016,If6,EA066,Dual stratification,EA066-4,"Complex stratification into nine social classes and seven ranks, of which three form an endogamous upper caste and four an endogamous lower caste",huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +86017,If7,EA066,Wealth distinctions,EA066-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +86018,If8,EA066,Absence of distinctions,EA066-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +86019,If9,EA066,Absence of distinctions,EA066-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +86020,Ig1,EA066,Wealth distinctions,EA066-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +86021,Ig10,EA066,Absence of distinctions,EA066-1,,schwartz1964,,1950,EthnographicAtlas_1967_p101, +86022,Ig11,EA066,Wealth distinctions,EA066-2,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +86023,Ig12,EA066,Wealth distinctions,EA066-2,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +86024,Ig13,EA066,Absence of distinctions,EA066-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +86025,Ig14,EA066,Wealth distinctions,EA066-2,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +86026,Ig15,EA066,?,EA066-NA,,,,,, +86027,Ig16,EA066,?,EA066-NA,,,,,, +86028,Ig17,EA066,?,EA066-NA,,,,,, +86029,Ig18,EA066,?,EA066-NA,,,,,, +86030,Ig19,EA066,?,EA066-NA,,,,,, +86031,Ig2,EA066,Dual stratification,EA066-4,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +86032,Ig20,EA066,Wealth distinctions,EA066-2,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +86033,Ig21,EA066,Absence of distinctions,EA066-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +86034,Ig3,EA066,Dual stratification,EA066-4,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +86035,Ig4,EA066,Absence of distinctions,EA066-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +86036,Ig5,EA066,Absence of distinctions,EA066-1,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +86037,Ig6,EA066,Absence of distinctions,EA066-1,,ivens1927,,1900,EthnographicAtlas_1967_p101, +86038,Ig7,EA066,Wealth distinctions,EA066-2,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +86039,Ig8,EA066,?,EA066-NA,,,,,, +86040,Ig9,EA066,Wealth distinctions,EA066-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +86041,Ih1,EA066,Wealth distinctions,EA066-2,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +86042,Ih10,EA066,Dual stratification,EA066-4,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86043,Ih11,EA066,?,EA066-NA,,,,,, +86044,Ih12,EA066,?,EA066-NA,,,,,, +86045,Ih13,EA066,?,EA066-NA,,,,,, +86046,Ih14,EA066,Wealth distinctions,EA066-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +86047,Ih2,EA066,Wealth distinctions,EA066-2,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86048,Ih3,EA066,Wealth distinctions,EA066-2,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +86049,Ih4,EA066,Wealth distinctions,EA066-2,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86050,Ih5,EA066,Absence of distinctions,EA066-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +86051,Ih6,EA066,Dual stratification,EA066-4,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p101, +86052,Ih7,EA066,Dual stratification,EA066-4,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +86053,Ih8,EA066,Absence of distinctions,EA066-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +86054,Ih9,EA066,Wealth distinctions,EA066-2,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86055,Ii1,EA066,Dual stratification,EA066-4,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +86056,Ii10,EA066,Dual stratification,EA066-4,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +86057,Ii12,EA066,Dual stratification,EA066-4,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86058,Ii13,EA066,Dual stratification,EA066-4,,burrows1937,,1830,EthnographicAtlas_1967_p101, +86059,Ii14,EA066,Dual stratification,EA066-4,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +86060,Ii2,EA066,Dual stratification,EA066-4,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +86061,Ii3,EA066,Absence of distinctions,EA066-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +86062,Ii4,EA066,Dual stratification,EA066-4,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +86063,Ii5,EA066,Wealth distinctions,EA066-2,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +86064,Ii6,EA066,Absence of distinctions,EA066-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +86065,Ii7,EA066,Dual stratification,EA066-4,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +86066,Ii8,EA066,Dual stratification,EA066-4,,burrows1936,,1840,EthnographicAtlas_1967_p101, +86067,Ii9,EA066,Dual stratification,EA066-4,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +86068,Ij1,EA066,Dual stratification,EA066-4,,buck1934,,1820,EthnographicAtlas_1967_p101, +86069,Ij10,EA066,?,EA066-NA,,,,,, +86070,Ij2,EA066,Dual stratification,EA066-4,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +86071,Ij3,EA066,Dual stratification,EA066-4,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +86072,Ij4,EA066,Dual stratification,EA066-4,,buck1932a,,1850,EthnographicAtlas_1967_p105, +86073,Ij5,EA066,Absence of distinctions,EA066-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +86074,Ij6,EA066,Dual stratification,EA066-4,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +86075,Ij7,EA066,Dual stratification,EA066-4,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +86076,Ij8,EA066,Dual stratification,EA066-4,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +86077,Ij9,EA066,Dual stratification,EA066-4,,metraux1940,,1860,EthnographicAtlas_1967_p105, +86078,Na1,EA066,Absence of distinctions,EA066-1,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +86079,Na10,EA066,Dual stratification,EA066-4,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +86080,Na11,EA066,?,EA066-NA,,,,,, +86081,Na12,EA066,Wealth distinctions,EA066-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +86082,Na13,EA066,Absence of distinctions,EA066-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +86083,Na14,EA066,Absence of distinctions,EA066-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +86084,Na15,EA066,Absence of distinctions,EA066-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +86085,Na16,EA066,Absence of distinctions,EA066-1,,osgood1931,,1860,EthnographicAtlas_1967_p105, +86086,Na17,EA066,Absence of distinctions,EA066-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86087,Na19,EA066,Dual stratification,EA066-4,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +86088,Na2,EA066,Wealth distinctions,EA066-2,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +86089,Na20,EA066,Wealth distinctions,EA066-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +86090,Na21,EA066,Absence of distinctions,EA066-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +86091,Na22,EA066,Absence of distinctions,EA066-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +86092,Na23,EA066,Absence of distinctions,EA066-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +86093,Na24,EA066,Absence of distinctions,EA066-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +86094,Na25,EA066,Absence of distinctions,EA066-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +86095,Na26,EA066,Dual stratification,EA066-4,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +86096,Na27,EA066,Wealth distinctions,EA066-2,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +86097,Na28,EA066,Absence of distinctions,EA066-1,,jenness1937,,1880,EthnographicAtlas_1967_p105, +86098,Na29,EA066,Absence of distinctions,EA066-1,,goddard1916,,1850,EthnographicAtlas_1967_p105, +86099,Na3,EA066,Absence of distinctions,EA066-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +86100,Na30,EA066,Absence of distinctions,EA066-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +86101,Na31,EA066,Absence of distinctions,EA066-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +86102,Na32,EA066,Absence of distinctions,EA066-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +86103,Na33,EA066,Absence of distinctions,EA066-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +86104,Na34,EA066,Absence of distinctions,EA066-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +86105,Na35,EA066,Absence of distinctions,EA066-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +86106,Na36,EA066,Absence of distinctions,EA066-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +86107,Na37,EA066,Absence of distinctions,EA066-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +86108,Na38,EA066,Absence of distinctions,EA066-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +86109,Na39,EA066,Absence of distinctions,EA066-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +86110,Na4,EA066,Absence of distinctions,EA066-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +86111,Na40,EA066,Absence of distinctions,EA066-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +86112,Na41,EA066,Absence of distinctions,EA066-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +86113,Na42,EA066,Absence of distinctions,EA066-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p105, +86114,Na43,EA066,Absence of distinctions,EA066-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +86115,Na44,EA066,Absence of distinctions,EA066-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +86116,Na45,EA066,Absence of distinctions,EA066-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +86117,Na5,EA066,Absence of distinctions,EA066-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +86118,Na6,EA066,Wealth distinctions,EA066-2,,lantis1946,,1930,EthnographicAtlas_1967_p105, +86119,Na7,EA066,Absence of distinctions,EA066-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +86120,Na8,EA066,Wealth distinctions,EA066-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +86121,Na9,EA066,Dual stratification,EA066-4,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86122,Nb1,EA066,Dual stratification,EA066-4,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +86123,Nb10,EA066,Dual stratification,EA066-4,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +86124,Nb11,EA066,Dual stratification,EA066-4,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +86125,Nb12,EA066,Wealth distinctions,EA066-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +86126,Nb13,EA066,Wealth distinctions,EA066-2,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +86127,Nb14,EA066,Wealth distinctions,EA066-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +86128,Nb15,EA066,Dual stratification,EA066-4,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +86129,Nb16,EA066,Dual stratification,EA066-4,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +86130,Nb17,EA066,Wealth distinctions,EA066-2,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +86131,Nb18,EA066,Dual stratification,EA066-4,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +86132,Nb19,EA066,Dual stratification,EA066-4,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +86133,Nb2,EA066,Wealth distinctions,EA066-2,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +86134,Nb20,EA066,Dual stratification,EA066-4,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +86135,Nb21,EA066,Wealth distinctions,EA066-2,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +86136,Nb22,EA066,Dual stratification,EA066-4,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +86137,Nb23,EA066,Dual stratification,EA066-4,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +86138,Nb24,EA066,Dual stratification,EA066-4,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +86139,Nb25,EA066,Dual stratification,EA066-4,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +86140,Nb26,EA066,Wealth distinctions,EA066-2,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +86141,Nb27,EA066,Dual stratification,EA066-4,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +86142,Nb28,EA066,Wealth distinctions,EA066-2,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +86143,Nb29,EA066,Wealth distinctions,EA066-2,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +86144,Nb3,EA066,Dual stratification,EA066-4,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +86145,Nb30,EA066,Wealth distinctions,EA066-2,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +86146,Nb31,EA066,Wealth distinctions,EA066-2,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +86147,Nb32,EA066,Wealth distinctions,EA066-2,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +86148,Nb33,EA066,Wealth distinctions,EA066-2,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +86149,Nb34,EA066,Wealth distinctions,EA066-2,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +86150,Nb35,EA066,Wealth distinctions,EA066-2,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +86151,Nb36,EA066,Wealth distinctions,EA066-2,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +86152,Nb37,EA066,Wealth distinctions,EA066-2,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +86153,Nb38,EA066,Wealth distinctions,EA066-2,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +86154,Nb39,EA066,Wealth distinctions,EA066-2,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +86155,Nb4,EA066,Wealth distinctions,EA066-2,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +86156,Nb5,EA066,Wealth distinctions,EA066-2,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +86157,Nb6,EA066,Wealth distinctions,EA066-2,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +86158,Nb7,EA066,Dual stratification,EA066-4,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +86159,Nb8,EA066,Dual stratification,EA066-4,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +86160,Nb9,EA066,Dual stratification,EA066-4,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +86161,Nc1,EA066,Wealth distinctions,EA066-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +86162,Nc10,EA066,Wealth distinctions,EA066-2,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +86163,Nc11,EA066,Wealth distinctions,EA066-2,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +86164,Nc12,EA066,Wealth distinctions,EA066-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +86165,Nc13,EA066,Wealth distinctions,EA066-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +86166,Nc14,EA066,Wealth distinctions,EA066-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +86167,Nc15,EA066,Absence of distinctions,EA066-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +86168,Nc16,EA066,Absence of distinctions,EA066-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +86169,Nc17,EA066,?,EA066-NA,,,,,, +86170,Nc18,EA066,Wealth distinctions,EA066-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +86171,Nc19,EA066,Wealth distinctions,EA066-2,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +86172,Nc2,EA066,Absence of distinctions,EA066-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +86173,Nc20,EA066,?,EA066-NA,,,,,, +86174,Nc21,EA066,Wealth distinctions,EA066-2,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +86175,Nc22,EA066,Wealth distinctions,EA066-2,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +86176,Nc23,EA066,Wealth distinctions,EA066-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +86177,Nc24,EA066,Wealth distinctions,EA066-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +86178,Nc25,EA066,Wealth distinctions,EA066-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +86179,Nc26,EA066,Wealth distinctions,EA066-2,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +86180,Nc27,EA066,Wealth distinctions,EA066-2,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +86181,Nc28,EA066,Wealth distinctions,EA066-2,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +86182,Nc29,EA066,Wealth distinctions,EA066-2,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +86183,Nc3,EA066,Wealth distinctions,EA066-2,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +86184,Nc30,EA066,Absence of distinctions,EA066-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +86185,Nc31,EA066,Absence of distinctions,EA066-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +86186,Nc32,EA066,Absence of distinctions,EA066-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +86187,Nc33,EA066,Absence of distinctions,EA066-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +86188,Nc34,EA066,Absence of distinctions,EA066-1,,meigs1939,,1880,EthnographicAtlas_1967_p109, +86189,Nc4,EA066,Wealth distinctions,EA066-2,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +86190,Nc5,EA066,Absence of distinctions,EA066-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +86191,Nc6,EA066,Absence of distinctions,EA066-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +86192,Nc7,EA066,Wealth distinctions,EA066-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +86193,Nc8,EA066,Wealth distinctions,EA066-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +86194,Nc9,EA066,Wealth distinctions,EA066-2,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +86195,Nd1,EA066,Wealth distinctions,EA066-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +86196,Nd10,EA066,Wealth distinctions,EA066-2,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +86197,Nd11,EA066,Absence of distinctions,EA066-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +86198,Nd12,EA066,Absence of distinctions,EA066-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +86199,Nd13,EA066,Absence of distinctions,EA066-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +86200,Nd14,EA066,Wealth distinctions,EA066-2,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +86201,Nd15,EA066,Absence of distinctions,EA066-1,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +86202,Nd16,EA066,Absence of distinctions,EA066-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +86203,Nd17,EA066,Wealth distinctions,EA066-2,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +86204,Nd18,EA066,Wealth distinctions,EA066-2,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +86205,Nd19,EA066,Absence of distinctions,EA066-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +86206,Nd2,EA066,Absence of distinctions,EA066-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +86207,Nd20,EA066,Wealth distinctions,EA066-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +86208,Nd21,EA066,Absence of distinctions,EA066-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +86209,Nd22,EA066,Absence of distinctions,EA066-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +86210,Nd23,EA066,Absence of distinctions,EA066-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +86211,Nd24,EA066,Absence of distinctions,EA066-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +86212,Nd25,EA066,Absence of distinctions,EA066-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +86213,Nd26,EA066,Absence of distinctions,EA066-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +86214,Nd27,EA066,Absence of distinctions,EA066-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +86215,Nd28,EA066,Absence of distinctions,EA066-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +86216,Nd29,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +86217,Nd3,EA066,Absence of distinctions,EA066-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +86218,Nd30,EA066,Absence of distinctions,EA066-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +86219,Nd31,EA066,Absence of distinctions,EA066-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +86220,Nd32,EA066,Absence of distinctions,EA066-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +86221,Nd33,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +86222,Nd34,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +86223,Nd35,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +86224,Nd36,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +86225,Nd37,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +86226,Nd38,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +86227,Nd39,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +86228,Nd4,EA066,Absence of distinctions,EA066-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +86229,Nd40,EA066,Absence of distinctions,EA066-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +86230,Nd41,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +86231,Nd42,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +86232,Nd43,EA066,Absence of distinctions,EA066-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +86233,Nd44,EA066,Absence of distinctions,EA066-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +86234,Nd45,EA066,Wealth distinctions,EA066-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +86235,Nd46,EA066,Absence of distinctions,EA066-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +86236,Nd47,EA066,Absence of distinctions,EA066-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +86237,Nd48,EA066,Absence of distinctions,EA066-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +86238,Nd49,EA066,Absence of distinctions,EA066-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +86239,Nd5,EA066,Absence of distinctions,EA066-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +86240,Nd50,EA066,Absence of distinctions,EA066-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +86241,Nd51,EA066,Absence of distinctions,EA066-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +86242,Nd52,EA066,Absence of distinctions,EA066-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +86243,Nd53,EA066,Absence of distinctions,EA066-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +86244,Nd54,EA066,Absence of distinctions,EA066-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86245,Nd55,EA066,Absence of distinctions,EA066-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +86246,Nd56,EA066,Absence of distinctions,EA066-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +86247,Nd57,EA066,Absence of distinctions,EA066-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +86248,Nd58,EA066,Absence of distinctions,EA066-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +86249,Nd59,EA066,Absence of distinctions,EA066-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +86250,Nd6,EA066,Absence of distinctions,EA066-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +86251,Nd60,EA066,Absence of distinctions,EA066-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +86252,Nd61,EA066,Absence of distinctions,EA066-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +86253,Nd62,EA066,Absence of distinctions,EA066-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +86254,Nd63,EA066,Absence of distinctions,EA066-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +86255,Nd64,EA066,Absence of distinctions,EA066-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +86256,Nd65,EA066,Absence of distinctions,EA066-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +86257,Nd66,EA066,Absence of distinctions,EA066-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +86258,Nd67,EA066,Absence of distinctions,EA066-1,,gifford1936,,1870,EthnographicAtlas_1967_p113, +86259,Nd7,EA066,Absence of distinctions,EA066-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +86260,Nd8,EA066,Wealth distinctions,EA066-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +86261,Nd9,EA066,Wealth distinctions,EA066-2,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +86262,Ne1,EA066,Absence of distinctions,EA066-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +86263,Ne10,EA066,?,EA066-NA,,,,,, +86264,Ne11,EA066,Absence of distinctions,EA066-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +86265,Ne12,EA066,Wealth distinctions,EA066-2,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +86266,Ne13,EA066,Wealth distinctions,EA066-2,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +86267,Ne14,EA066,Absence of distinctions,EA066-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +86268,Ne15,EA066,Absence of distinctions,EA066-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +86269,Ne16,EA066,Absence of distinctions,EA066-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +86270,Ne17,EA066,Absence of distinctions,EA066-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +86271,Ne18,EA066,Wealth distinctions,EA066-2,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +86272,Ne19,EA066,Absence of distinctions,EA066-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +86273,Ne2,EA066,Absence of distinctions,EA066-1,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +86274,Ne20,EA066,Absence of distinctions,EA066-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +86275,Ne21,EA066,?,EA066-NA,,,,,, +86276,Ne3,EA066,Absence of distinctions,EA066-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +86277,Ne4,EA066,Absence of distinctions,EA066-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +86278,Ne5,EA066,Absence of distinctions,EA066-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +86279,Ne6,EA066,Absence of distinctions,EA066-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +86280,Ne7,EA066,Absence of distinctions,EA066-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +86281,Ne8,EA066,Absence of distinctions,EA066-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +86282,Ne9,EA066,Absence of distinctions,EA066-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +86283,Nf10,EA066,Dual stratification,EA066-4,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +86284,Nf11,EA066,Dual stratification,EA066-4,,whitman1937,,1870,EthnographicAtlas_1967_p117, +86285,Nf12,EA066,Dual stratification,EA066-4,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +86286,Nf13,EA066,Absence of distinctions,EA066-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86287,Nf14,EA066,Elite stratification,EA066-3,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +86288,Nf15,EA066,?,EA066-NA,,,,,, +86289,Nf2,EA066,Absence of distinctions,EA066-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +86290,Nf3,EA066,Absence of distinctions,EA066-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +86291,Nf4,EA066,Absence of distinctions,EA066-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +86292,Nf5,EA066,Absence of distinctions,EA066-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +86293,Nf6,EA066,Dual stratification,EA066-4,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +86294,Nf7,EA066,Absence of distinctions,EA066-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86295,Nf8,EA066,Dual stratification,EA066-4,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +86296,Nf9,EA066,Absence of distinctions,EA066-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p117, +86297,Ng1,EA066,Wealth distinctions,EA066-2,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +86298,Ng10,EA066,Absence of distinctions,EA066-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +86299,Ng11,EA066,Absence of distinctions,EA066-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +86300,Ng12,EA066,Absence of distinctions,EA066-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +86301,Ng13,EA066,?,EA066-NA,,,,,, +86302,Ng14,EA066,?,EA066-NA,,,,,, +86303,Ng15,EA066,?,EA066-NA,,,,,, +86304,Ng2,EA066,Absence of distinctions,EA066-1,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +86305,Ng3,EA066,Absence of distinctions,EA066-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +86306,Ng4,EA066,Absence of distinctions,EA066-1,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +86307,Ng5,EA066,Absence of distinctions,EA066-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +86308,Ng6,EA066,Absence of distinctions,EA066-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +86309,Ng7,EA066,Elite stratification,EA066-3,Four social classes with caste-like features,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +86310,Ng8,EA066,Dual stratification,EA066-4,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +86311,Ng9,EA066,Absence of distinctions,EA066-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +86312,Nh1,EA066,Absence of distinctions,EA066-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +86313,Nh10,EA066,Absence of distinctions,EA066-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +86314,Nh11,EA066,Absence of distinctions,EA066-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +86315,Nh12,EA066,Wealth distinctions,EA066-2,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +86316,Nh13,EA066,Absence of distinctions,EA066-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +86317,Nh14,EA066,Absence of distinctions,EA066-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +86318,Nh15,EA066,Absence of distinctions,EA066-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +86319,Nh16,EA066,Absence of distinctions,EA066-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86320,Nh17,EA066,Absence of distinctions,EA066-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +86321,Nh18,EA066,Absence of distinctions,EA066-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86322,Nh19,EA066,Absence of distinctions,EA066-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +86323,Nh2,EA066,Absence of distinctions,EA066-1,,dozier1954,,1950,EthnographicAtlas_1967_p117, +86324,Nh20,EA066,Absence of distinctions,EA066-1,,gifford1931,,1860,EthnographicAtlas_1967_p117, +86325,Nh21,EA066,Absence of distinctions,EA066-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86326,Nh22,EA066,Absence of distinctions,EA066-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +86327,Nh23,EA066,Absence of distinctions,EA066-1,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +86328,Nh24,EA066,Absence of distinctions,EA066-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +86329,Nh25,EA066,Absence of distinctions,EA066-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +86330,Nh26,EA066,?,EA066-NA,,,,,, +86331,Nh27,EA066,?,EA066-NA,,,,,, +86332,Nh3,EA066,Absence of distinctions,EA066-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +86333,Nh4,EA066,Absence of distinctions,EA066-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +86334,Nh5,EA066,Absence of distinctions,EA066-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +86335,Nh6,EA066,Absence of distinctions,EA066-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +86336,Nh7,EA066,Absence of distinctions,EA066-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +86337,Nh8,EA066,Absence of distinctions,EA066-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +86338,Nh9,EA066,Absence of distinctions,EA066-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +86339,Ni1,EA066,Wealth distinctions,EA066-2,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +86340,Ni2,EA066,Absence of distinctions,EA066-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +86341,Ni3,EA066,Wealth distinctions,EA066-2,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +86342,Ni4,EA066,Absence of distinctions,EA066-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +86343,Ni5,EA066,Absence of distinctions,EA066-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +86344,Ni6,EA066,Absence of distinctions,EA066-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +86345,Ni7,EA066,Absence of distinctions,EA066-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +86346,Ni8,EA066,?,EA066-NA,,,,,, +86347,Ni9,EA066,?,EA066-NA,,,,,, +86348,Nj1,EA066,?,EA066-NA,,,,,, +86349,Nj10,EA066,?,EA066-NA,,,,,, +86350,Nj11,EA066,?,EA066-NA,,,,,, +86351,Nj12,EA066,?,EA066-NA,,,,,, +86352,Nj13,EA066,?,EA066-NA,,,,,, +86353,Nj14,EA066,?,EA066-NA,,,,,, +86354,Nj2,EA066,Complex stratification,EA066-5,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +86355,Nj3,EA066,Absence of distinctions,EA066-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +86356,Nj4,EA066,?,EA066-NA,,,,,, +86357,Nj5,EA066,?,EA066-NA,,,,,, +86358,Nj6,EA066,Absence of distinctions,EA066-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +86359,Nj7,EA066,?,EA066-NA,,,,,, +86360,Nj8,EA066,Dual stratification,EA066-4,,foster1948,,1500,EthnographicAtlas_1967_p121, +86361,Nj9,EA066,Absence of distinctions,EA066-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +86362,Sa1,EA066,Wealth distinctions,EA066-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +86363,Sa10,EA066,Absence of distinctions,EA066-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +86364,Sa11,EA066,Dual stratification,EA066-4,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +86365,Sa12,EA066,Dual stratification,EA066-4,,stone1948,,1948,EthnographicAtlas_1967_p121, +86366,Sa13,EA066,Wealth distinctions,EA066-2,"But aboriginally 'dual stratification' (code ""4"")",bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +86367,Sa14,EA066,?,EA066-NA,,,,,, +86368,Sa15,EA066,?,EA066-NA,,,,,, +86369,Sa16,EA066,?,EA066-NA,,,,,, +86370,Sa17,EA066,?,EA066-NA,,,,,, +86371,Sa2,EA066,?,EA066-NA,,,,,, +86372,Sa3,EA066,Complex stratification,EA066-5,"Though the Choroti themselves are egalitarian, the coresident Ladinos are stratified into classes",wisdom1940,,1930,EthnographicAtlas_1967_p121, +86373,Sa4,EA066,Absence of distinctions,EA066-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +86374,Sa5,EA066,Absence of distinctions,EA066-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +86375,Sa6,EA066,Complex stratification,EA066-5,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +86376,Sa7,EA066,Absence of distinctions,EA066-1,"Though egalitarian themselves, the Black Carib form an ethnic caste in Honduran society",solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +86377,Sa8,EA066,Wealth distinctions,EA066-2,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +86378,Sa9,EA066,Absence of distinctions,EA066-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +86379,Sb1,EA066,Absence of distinctions,EA066-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +86380,Sb2,EA066,Wealth distinctions,EA066-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +86381,Sb3,EA066,?,EA066-NA,,,,,, +86382,Sb4,EA066,Absence of distinctions,EA066-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +86383,Sb5,EA066,Absence of distinctions,EA066-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +86384,Sb6,EA066,Wealth distinctions,EA066-2,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +86385,Sb7,EA066,Absence of distinctions,EA066-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p121, +86386,Sb8,EA066,Dual stratification,EA066-4,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +86387,Sb9,EA066,Complex stratification,EA066-5,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +86388,Sc1,EA066,Absence of distinctions,EA066-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +86389,Sc10,EA066,Absence of distinctions,EA066-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p121, +86390,Sc11,EA066,Absence of distinctions,EA066-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p121, +86391,Sc12,EA066,Absence of distinctions,EA066-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +86392,Sc13,EA066,Absence of distinctions,EA066-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +86393,Sc14,EA066,?,EA066-NA,,,,,, +86394,Sc15,EA066,Absence of distinctions,EA066-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +86395,Sc16,EA066,Absence of distinctions,EA066-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +86396,Sc17,EA066,Absence of distinctions,EA066-1,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +86397,Sc18,EA066,Absence of distinctions,EA066-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +86398,Sc2,EA066,Absence of distinctions,EA066-1,,leedsnd,,1950,EthnographicAtlas_1967_p121, +86399,Sc3,EA066,Absence of distinctions,EA066-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +86400,Sc4,EA066,Absence of distinctions,EA066-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +86401,Sc5,EA066,Absence of distinctions,EA066-1,,farabee1918,,1900,EthnographicAtlas_1967_p121, +86402,Sc6,EA066,Absence of distinctions,EA066-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86403,Sc7,EA066,Absence of distinctions,EA066-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +86404,Sc8,EA066,Absence of distinctions,EA066-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +86405,Sc9,EA066,Absence of distinctions,EA066-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +86406,Sd1,EA066,Absence of distinctions,EA066-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86407,Sd2,EA066,Absence of distinctions,EA066-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +86408,Sd3,EA066,Absence of distinctions,EA066-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +86409,Sd4,EA066,Absence of distinctions,EA066-1,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +86410,Sd5,EA066,Absence of distinctions,EA066-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +86411,Sd6,EA066,Absence of distinctions,EA066-1,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +86412,Sd7,EA066,Absence of distinctions,EA066-1,,fock1963,,1950,EthnographicAtlas_1967_p121, +86413,Sd8,EA066,Absence of distinctions,EA066-1,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +86414,Sd9,EA066,Absence of distinctions,EA066-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86415,Se1,EA066,Absence of distinctions,EA066-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +86416,Se10,EA066,Wealth distinctions,EA066-2,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +86417,Se11,EA066,Absence of distinctions,EA066-1,,prost1965,,1960,EthnographicAtlas_1967_p125, +86418,Se12,EA066,?,EA066-NA,,,,,, +86419,Se2,EA066,Absence of distinctions,EA066-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +86420,Se3,EA066,Absence of distinctions,EA066-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +86421,Se4,EA066,Absence of distinctions,EA066-1,,fejos1943,,1940,EthnographicAtlas_1967_p121, +86422,Se5,EA066,Absence of distinctions,EA066-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +86423,Se6,EA066,Absence of distinctions,EA066-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +86424,Se7,EA066,Elite stratification,EA066-3,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86425,Se8,EA066,Absence of distinctions,EA066-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +86426,Se9,EA066,Absence of distinctions,EA066-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +86427,Sf1,EA066,Complex stratification,EA066-5,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +86428,Sf2,EA066,Wealth distinctions,EA066-2,But the Aymara form a lower caste in Bolivian society,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +86429,Sf3,EA066,Absence of distinctions,EA066-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +86430,Sf4,EA066,Absence of distinctions,EA066-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +86431,Sf5,EA066,?,EA066-NA,,,,,, +86432,Sf6,EA066,Dual stratification,EA066-4,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +86433,Sf7,EA066,Absence of distinctions,EA066-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +86434,Sf8,EA066,?,EA066-NA,,,,,, +86435,Sf9,EA066,?,EA066-NA,,,,,, +86436,Sg1,EA066,Absence of distinctions,EA066-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +86437,Sg2,EA066,Wealth distinctions,EA066-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86438,Sg3,EA066,Absence of distinctions,EA066-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +86439,Sg4,EA066,Absence of distinctions,EA066-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +86440,Sg5,EA066,Absence of distinctions,EA066-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86441,Sh1,EA066,Absence of distinctions,EA066-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +86442,Sh2,EA066,Dual stratification,EA066-4,Land is owned collectively by extended families,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +86443,Sh3,EA066,Dual stratification,EA066-4,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +86444,Sh4,EA066,Dual stratification,EA066-4,"Formerly D [sic, Gray (1999)]",oberg1949,,1940,EthnographicAtlas_1967_p125, +86445,Sh5,EA066,Absence of distinctions,EA066-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +86446,Sh6,EA066,Dual stratification,EA066-4,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +86447,Sh7,EA066,?,EA066-NA,,,,,, +86448,Sh8,EA066,Absence of distinctions,EA066-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +86449,Sh9,EA066,Absence of distinctions,EA066-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +86450,Si1,EA066,Absence of distinctions,EA066-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86451,Si10,EA066,Absence of distinctions,EA066-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +86452,Si2,EA066,Absence of distinctions,EA066-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +86453,Si3,EA066,Absence of distinctions,EA066-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86454,Si4,EA066,Absence of distinctions,EA066-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +86455,Si5,EA066,Absence of distinctions,EA066-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +86456,Si6,EA066,Absence of distinctions,EA066-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +86457,Si7,EA066,Absence of distinctions,EA066-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +86458,Si8,EA066,Absence of distinctions,EA066-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +86459,Si9,EA066,?,EA066-NA,,,,,, +86460,Sj1,EA066,Absence of distinctions,EA066-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +86461,Sj10,EA066,Absence of distinctions,EA066-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86462,Sj11,EA066,Absence of distinctions,EA066-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +86463,Sj2,EA066,Absence of distinctions,EA066-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +86464,Sj3,EA066,Absence of distinctions,EA066-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +86465,Sj4,EA066,Absence of distinctions,EA066-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +86466,Sj5,EA066,Absence of distinctions,EA066-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +86467,Sj6,EA066,Absence of distinctions,EA066-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86468,Sj7,EA066,Absence of distinctions,EA066-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +86469,Sj8,EA066,Wealth distinctions,EA066-2,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +86470,Sj9,EA066,Absence of distinctions,EA066-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +86471,ch12,EA066,Complex stratification,EA066-5,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +86472,ch13,EA066,Wealth distinctions,EA066-2,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +86473,ch14,EA066,Wealth distinctions,EA066-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +86474,ch15,EA066,Elite stratification,EA066-3,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +86475,ch16,EA066,Complex stratification,EA066-5,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +86476,ch17,EA066,Wealth distinctions,EA066-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +86477,ch18,EA066,Wealth distinctions,EA066-2,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +86478,ch19,EA066,Wealth distinctions,EA066-2,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +86479,ch20,EA066,Complex stratification,EA066-5,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +86480,ch21,EA066,Complex stratification,EA066-5,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +86481,ch22,EA066,Complex stratification,EA066-5,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +86482,ch23,EA066,Complex stratification,EA066-5,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +86483,ch24,EA066,Wealth distinctions,EA066-2,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +86484,ch25,EA066,Complex stratification,EA066-5,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +86485,ch26,EA066,Wealth distinctions,EA066-2,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +86486,ch27,EA066,Wealth distinctions,EA066-2,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +86487,ch28,EA066,Wealth distinctions,EA066-2,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +86488,ec12,EA066,Absence of distinctions,EA066-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +86489,ec13,EA066,Absence of distinctions,EA066-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +86490,ec14,EA066,Wealth distinctions,EA066-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +86491,ec15,EA066,Absence of distinctions,EA066-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +86492,ec16,EA066,Absence of distinctions,EA066-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +86493,ec17,EA066,Wealth distinctions,EA066-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +86494,ec18,EA066,Wealth distinctions,EA066-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +86495,ec19,EA066,Absence of distinctions,EA066-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +86496,ec20,EA066,Absence of distinctions,EA066-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +86497,ec21,EA066,Absence of distinctions,EA066-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +86498,Aa1,EA067,No secondary type,EA067-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +86499,Aa2,EA067,No secondary type,EA067-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +86500,Aa3,EA067,No secondary type,EA067-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +86501,Aa4,EA067,No secondary type,EA067-9,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +86502,Aa5,EA067,No secondary type,EA067-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +86503,Aa6,EA067,No secondary type,EA067-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +86504,Aa7,EA067,No secondary type,EA067-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +86505,Aa8,EA067,No secondary type,EA067-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +86506,Aa9,EA067,No secondary type,EA067-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +86507,Ab1,EA067,No secondary type,EA067-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +86508,Ab10,EA067,No secondary type,EA067-9,,hunter1936,,1936,EthnographicAtlas_1967_p65, +86509,Ab11,EA067,Wealth distinctions,EA067-2,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +86510,Ab12,EA067,No secondary type,EA067-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +86511,Ab13,EA067,Dual stratification,EA067-4,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +86512,Ab14,EA067,No secondary type,EA067-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +86513,Ab15,EA067,No secondary type,EA067-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +86514,Ab16,EA067,?,EA067-NA,,,,,, +86515,Ab17,EA067,?,EA067-NA,,,,,, +86516,Ab18,EA067,?,EA067-NA,,,,,, +86517,Ab19,EA067,Wealth distinctions,EA067-2,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +86518,Ab2,EA067,No secondary type,EA067-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +86519,Ab20,EA067,No secondary type,EA067-9,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +86520,Ab21a,EA067,No secondary type,EA067-9,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +86521,Ab21b,EA067,?,EA067-NA,,,,,, +86522,Ab22,EA067,?,EA067-NA,,,,,, +86523,Ab3,EA067,No secondary type,EA067-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +86524,Ab4,EA067,No secondary type,EA067-9,,junod1927,,1920,EthnographicAtlas_1967_p65, +86525,Ab5,EA067,No secondary type,EA067-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +86526,Ab6,EA067,No secondary type,EA067-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +86527,Ab7,EA067,No secondary type,EA067-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +86528,Ab8,EA067,No secondary type,EA067-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +86529,Ab9,EA067,No secondary type,EA067-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +86530,Ac1,EA067,No secondary type,EA067-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +86531,Ac10,EA067,No secondary type,EA067-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +86532,Ac11,EA067,No secondary type,EA067-9,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +86533,Ac12,EA067,No secondary type,EA067-9,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +86534,Ac13,EA067,No secondary type,EA067-9,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +86535,Ac14,EA067,No secondary type,EA067-9,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +86536,Ac15,EA067,No secondary type,EA067-9,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +86537,Ac16,EA067,?,EA067-NA,,,,,, +86538,Ac17,EA067,No secondary type,EA067-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +86539,Ac18,EA067,?,EA067-NA,,,,,, +86540,Ac19,EA067,?,EA067-NA,,,,,, +86541,Ac2,EA067,No secondary type,EA067-9,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +86542,Ac20,EA067,?,EA067-NA,,,,,, +86543,Ac21,EA067,No secondary type,EA067-9,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +86544,Ac22,EA067,?,EA067-NA,,,,,, +86545,Ac23,EA067,No secondary type,EA067-9,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +86546,Ac24,EA067,No secondary type,EA067-9,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +86547,Ac25,EA067,No secondary type,EA067-9,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +86548,Ac26,EA067,No secondary type,EA067-9,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +86549,Ac27,EA067,No secondary type,EA067-9,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +86550,Ac28,EA067,?,EA067-NA,,,,,, +86551,Ac29,EA067,?,EA067-NA,,,,,, +86552,Ac3,EA067,No secondary type,EA067-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +86553,Ac30,EA067,No secondary type,EA067-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +86554,Ac31,EA067,No secondary type,EA067-9,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +86555,Ac32,EA067,No secondary type,EA067-9,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +86556,Ac33,EA067,No secondary type,EA067-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +86557,Ac34,EA067,No secondary type,EA067-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +86558,Ac35,EA067,?,EA067-NA,,,,,, +86559,Ac36,EA067,No secondary type,EA067-9,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +86560,Ac37,EA067,No secondary type,EA067-9,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +86561,Ac38,EA067,No secondary type,EA067-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +86562,Ac39,EA067,No secondary type,EA067-9,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +86563,Ac4,EA067,No secondary type,EA067-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +86564,Ac40,EA067,No secondary type,EA067-9,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +86565,Ac41,EA067,No secondary type,EA067-9,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +86566,Ac42,EA067,No secondary type,EA067-9,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +86567,Ac43,EA067,?,EA067-NA,,,,,, +86568,Ac5,EA067,No secondary type,EA067-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +86569,Ac6,EA067,?,EA067-NA,,,,,, +86570,Ac7,EA067,No secondary type,EA067-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +86571,Ac8,EA067,No secondary type,EA067-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +86572,Ac9,EA067,No secondary type,EA067-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +86573,Ad1,EA067,No secondary type,EA067-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +86574,Ad10,EA067,No secondary type,EA067-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +86575,Ad11,EA067,No secondary type,EA067-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +86576,Ad12,EA067,No secondary type,EA067-9,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +86577,Ad13,EA067,No secondary type,EA067-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +86578,Ad14,EA067,No secondary type,EA067-9,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +86579,Ad15,EA067,No secondary type,EA067-9,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +86580,Ad16,EA067,No secondary type,EA067-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +86581,Ad17,EA067,No secondary type,EA067-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +86582,Ad18,EA067,?,EA067-NA,,,,,, +86583,Ad19,EA067,No secondary type,EA067-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +86584,Ad2,EA067,No secondary type,EA067-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +86585,Ad20,EA067,No secondary type,EA067-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +86586,Ad21,EA067,No secondary type,EA067-9,,maurice193538,,1930,EthnographicAtlas_1967_p69, +86587,Ad22,EA067,No secondary type,EA067-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +86588,Ad23,EA067,No secondary type,EA067-9,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +86589,Ad24,EA067,No secondary type,EA067-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +86590,Ad25,EA067,No secondary type,EA067-9,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +86591,Ad26,EA067,No secondary type,EA067-9,,sick1916,,1910,EthnographicAtlas_1967_p69, +86592,Ad27,EA067,No secondary type,EA067-9,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +86593,Ad28,EA067,No secondary type,EA067-9,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +86594,Ad29,EA067,No secondary type,EA067-9,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +86595,Ad3,EA067,No secondary type,EA067-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +86596,Ad30,EA067,?,EA067-NA,,,,,, +86597,Ad31,EA067,?,EA067-NA,,,,,, +86598,Ad32,EA067,No secondary type,EA067-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +86599,Ad33,EA067,No secondary type,EA067-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +86600,Ad34,EA067,?,EA067-NA,,,,,, +86601,Ad35,EA067,No secondary type,EA067-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +86602,Ad36,EA067,No secondary type,EA067-9,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +86603,Ad37,EA067,No secondary type,EA067-9,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +86604,Ad38,EA067,No secondary type,EA067-9,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +86605,Ad39,EA067,No secondary type,EA067-9,,gray1963,,1950,EthnographicAtlas_1967_p69, +86606,Ad4,EA067,No secondary type,EA067-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +86607,Ad40,EA067,?,EA067-NA,,,,,, +86608,Ad41,EA067,No secondary type,EA067-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +86609,Ad42,EA067,No secondary type,EA067-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +86610,Ad43,EA067,No secondary type,EA067-9,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +86611,Ad44,EA067,No secondary type,EA067-9,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +86612,Ad45,EA067,No secondary type,EA067-9,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +86613,Ad46,EA067,No secondary type,EA067-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +86614,Ad47,EA067,No secondary type,EA067-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +86615,Ad48,EA067,No secondary type,EA067-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +86616,Ad49,EA067,No secondary type,EA067-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +86617,Ad5,EA067,No secondary type,EA067-9,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +86618,Ad50,EA067,No secondary type,EA067-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +86619,Ad51,EA067,No secondary type,EA067-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +86620,Ad6,EA067,No secondary type,EA067-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +86621,Ad7,EA067,No secondary type,EA067-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +86622,Ad8,EA067,No secondary type,EA067-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +86623,Ad9,EA067,No secondary type,EA067-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +86624,Ae1,EA067,No secondary type,EA067-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +86625,Ae10,EA067,No secondary type,EA067-9,"Ethnic classes or castes of herders, tillers, and hunters",czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +86626,Ae11,EA067,No secondary type,EA067-9,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +86627,Ae12,EA067,No secondary type,EA067-9,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +86628,Ae13,EA067,No secondary type,EA067-9,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +86629,Ae14,EA067,No secondary type,EA067-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +86630,Ae15,EA067,No secondary type,EA067-9,"Ethnic classes or castes of herders, tillers, and hunters",schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +86631,Ae16,EA067,?,EA067-NA,,,,,, +86632,Ae17,EA067,No secondary type,EA067-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +86633,Ae18,EA067,No secondary type,EA067-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +86634,Ae19,EA067,No secondary type,EA067-9,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +86635,Ae2,EA067,No secondary type,EA067-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +86636,Ae20,EA067,No secondary type,EA067-9,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +86637,Ae21,EA067,No secondary type,EA067-9,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +86638,Ae22,EA067,No secondary type,EA067-9,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +86639,Ae23,EA067,No secondary type,EA067-9,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +86640,Ae24,EA067,No secondary type,EA067-9,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +86641,Ae25,EA067,No secondary type,EA067-9,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +86642,Ae26,EA067,No secondary type,EA067-9,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +86643,Ae27,EA067,?,EA067-NA,,,,,, +86644,Ae28,EA067,No secondary type,EA067-9,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +86645,Ae29,EA067,No secondary type,EA067-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +86646,Ae3,EA067,No secondary type,EA067-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +86647,Ae30,EA067,No secondary type,EA067-9,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +86648,Ae31,EA067,No secondary type,EA067-9,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +86649,Ae32,EA067,No secondary type,EA067-9,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +86650,Ae33,EA067,No secondary type,EA067-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +86651,Ae34,EA067,No secondary type,EA067-9,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +86652,Ae35,EA067,No secondary type,EA067-9,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +86653,Ae36,EA067,No secondary type,EA067-9,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +86654,Ae37,EA067,No secondary type,EA067-9,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +86655,Ae38,EA067,No secondary type,EA067-9,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +86656,Ae39,EA067,No secondary type,EA067-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +86657,Ae4,EA067,No secondary type,EA067-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +86658,Ae40,EA067,?,EA067-NA,,,,,, +86659,Ae41,EA067,No secondary type,EA067-9,,andersson1953,,1940,EthnographicAtlas_1967_p69, +86660,Ae42,EA067,No secondary type,EA067-9,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +86661,Ae43,EA067,No secondary type,EA067-9,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +86662,Ae44,EA067,No secondary type,EA067-9,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +86663,Ae45,EA067,No secondary type,EA067-9,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +86664,Ae46,EA067,?,EA067-NA,,,,,, +86665,Ae47,EA067,No secondary type,EA067-9,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +86666,Ae48,EA067,No secondary type,EA067-9,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +86667,Ae49,EA067,?,EA067-NA,,,,,, +86668,Ae5,EA067,No secondary type,EA067-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +86669,Ae50,EA067,No secondary type,EA067-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +86670,Ae51,EA067,No secondary type,EA067-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +86671,Ae52,EA067,?,EA067-NA,,,,,, +86672,Ae53,EA067,?,EA067-NA,,,,,, +86673,Ae54,EA067,?,EA067-NA,,,,,, +86674,Ae55,EA067,?,EA067-NA,,,,,, +86675,Ae56,EA067,No secondary type,EA067-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +86676,Ae57,EA067,?,EA067-NA,,,,,, +86677,Ae58,EA067,No secondary type,EA067-9,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +86678,Ae59,EA067,No secondary type,EA067-9,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +86679,Ae6,EA067,No secondary type,EA067-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +86680,Ae7,EA067,No secondary type,EA067-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +86681,Ae8,EA067,No secondary type,EA067-9,"Ethnic classes or castes of herders, tillers, and hunters",bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +86682,Ae9,EA067,No secondary type,EA067-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +86683,Af1,EA067,Complex stratification,EA067-5,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +86684,Af10,EA067,No secondary type,EA067-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +86685,Af11,EA067,No secondary type,EA067-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +86686,Af12,EA067,?,EA067-NA,,,,,, +86687,Af13,EA067,No secondary type,EA067-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +86688,Af14,EA067,?,EA067-NA,,,,,, +86689,Af15,EA067,No secondary type,EA067-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +86690,Af16,EA067,No secondary type,EA067-9,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +86691,Af17,EA067,?,EA067-NA,,,,,, +86692,Af18,EA067,?,EA067-NA,,,,,, +86693,Af19,EA067,No secondary type,EA067-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +86694,Af2,EA067,No secondary type,EA067-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +86695,Af20,EA067,No secondary type,EA067-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +86696,Af21,EA067,No secondary type,EA067-9,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +86697,Af22,EA067,No secondary type,EA067-9,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +86698,Af23,EA067,No secondary type,EA067-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +86699,Af24,EA067,No secondary type,EA067-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +86700,Af25,EA067,No secondary type,EA067-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +86701,Af26,EA067,No secondary type,EA067-9,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +86702,Af27,EA067,No secondary type,EA067-9,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +86703,Af28,EA067,?,EA067-NA,,,,,, +86704,Af29,EA067,No secondary type,EA067-9,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +86705,Af3,EA067,No secondary type,EA067-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +86706,Af30,EA067,?,EA067-NA,,,,,, +86707,Af31,EA067,No secondary type,EA067-9,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +86708,Af32,EA067,No secondary type,EA067-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86709,Af33,EA067,No secondary type,EA067-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86710,Af34,EA067,No secondary type,EA067-9,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86711,Af35,EA067,?,EA067-NA,,,,,, +86712,Af36,EA067,No secondary type,EA067-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +86713,Af37,EA067,No secondary type,EA067-9,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +86714,Af38,EA067,?,EA067-NA,,,,,, +86715,Af39,EA067,No secondary type,EA067-9,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +86716,Af4,EA067,No secondary type,EA067-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +86717,Af40,EA067,No secondary type,EA067-9,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +86718,Af41,EA067,No secondary type,EA067-9,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +86719,Af42,EA067,No secondary type,EA067-9,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +86720,Af43,EA067,?,EA067-NA,,,,,, +86721,Af44,EA067,No secondary type,EA067-9,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +86722,Af45,EA067,No secondary type,EA067-9,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +86723,Af46,EA067,?,EA067-NA,,,,,, +86724,Af47,EA067,No secondary type,EA067-9,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +86725,Af48,EA067,?,EA067-NA,,,,,, +86726,Af49,EA067,No secondary type,EA067-9,,schwab1947,,1940,EthnographicAtlas_1967_p73, +86727,Af5,EA067,No secondary type,EA067-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +86728,Af50,EA067,?,EA067-NA,,,,,, +86729,Af51,EA067,No secondary type,EA067-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +86730,Af52,EA067,No secondary type,EA067-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +86731,Af53,EA067,?,EA067-NA,,,,,, +86732,Af54,EA067,No secondary type,EA067-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +86733,Af55,EA067,No secondary type,EA067-9,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +86734,Af56,EA067,?,EA067-NA,,,,,, +86735,Af57,EA067,?,EA067-NA,,,,,, +86736,Af58,EA067,?,EA067-NA,,,,,, +86737,Af6,EA067,Dual stratification,EA067-4,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +86738,Af7,EA067,No secondary type,EA067-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +86739,Af8,EA067,Dual stratification,EA067-4,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +86740,Af9,EA067,No secondary type,EA067-9,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +86741,Ag1,EA067,No secondary type,EA067-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +86742,Ag10,EA067,No secondary type,EA067-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +86743,Ag11,EA067,No secondary type,EA067-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +86744,Ag12,EA067,No secondary type,EA067-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +86745,Ag13,EA067,?,EA067-NA,,,,,, +86746,Ag14,EA067,No secondary type,EA067-9,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +86747,Ag15,EA067,No secondary type,EA067-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +86748,Ag16,EA067,No secondary type,EA067-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +86749,Ag17,EA067,No secondary type,EA067-9,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +86750,Ag18,EA067,No secondary type,EA067-9,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +86751,Ag19,EA067,No secondary type,EA067-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +86752,Ag2,EA067,Dual stratification,EA067-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +86753,Ag20,EA067,No secondary type,EA067-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +86754,Ag21,EA067,No secondary type,EA067-9,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +86755,Ag22,EA067,Complex stratification,EA067-5,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +86756,Ag23,EA067,No secondary type,EA067-9,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +86757,Ag24,EA067,?,EA067-NA,,,,,, +86758,Ag25,EA067,No secondary type,EA067-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +86759,Ag26,EA067,?,EA067-NA,,,,,, +86760,Ag27,EA067,No secondary type,EA067-9,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +86761,Ag28,EA067,No secondary type,EA067-9,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +86762,Ag29,EA067,?,EA067-NA,,,,,, +86763,Ag3,EA067,No secondary type,EA067-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +86764,Ag30,EA067,No secondary type,EA067-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +86765,Ag31,EA067,No secondary type,EA067-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +86766,Ag32,EA067,No secondary type,EA067-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +86767,Ag33,EA067,?,EA067-NA,,,,,, +86768,Ag34,EA067,No secondary type,EA067-9,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +86769,Ag35,EA067,No secondary type,EA067-9,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +86770,Ag36,EA067,?,EA067-NA,,,,,, +86771,Ag37,EA067,No secondary type,EA067-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +86772,Ag38,EA067,No secondary type,EA067-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +86773,Ag39,EA067,No secondary type,EA067-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +86774,Ag4,EA067,No secondary type,EA067-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +86775,Ag40,EA067,No secondary type,EA067-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +86776,Ag41,EA067,No secondary type,EA067-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +86777,Ag42,EA067,No secondary type,EA067-9,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +86778,Ag43,EA067,?,EA067-NA,,,,,, +86779,Ag44,EA067,No secondary type,EA067-9,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +86780,Ag45,EA067,No secondary type,EA067-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +86781,Ag46,EA067,?,EA067-NA,,,,,, +86782,Ag47,EA067,No secondary type,EA067-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +86783,Ag48,EA067,No secondary type,EA067-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +86784,Ag49,EA067,No secondary type,EA067-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +86785,Ag5,EA067,No secondary type,EA067-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +86786,Ag50,EA067,No secondary type,EA067-9,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +86787,Ag51,EA067,No secondary type,EA067-9,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +86788,Ag52,EA067,?,EA067-NA,,,,,, +86789,Ag53,EA067,?,EA067-NA,,,,,, +86790,Ag54,EA067,No secondary type,EA067-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +86791,Ag6,EA067,No secondary type,EA067-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +86792,Ag7,EA067,No secondary type,EA067-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +86793,Ag8,EA067,No secondary type,EA067-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +86794,Ag9,EA067,No secondary type,EA067-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +86795,Ah1,EA067,No secondary type,EA067-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +86796,Ah10,EA067,No secondary type,EA067-9,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +86797,Ah11,EA067,?,EA067-NA,,,,,, +86798,Ah12,EA067,?,EA067-NA,,,,,, +86799,Ah13,EA067,No secondary type,EA067-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +86800,Ah14,EA067,No secondary type,EA067-9,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +86801,Ah15,EA067,No secondary type,EA067-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +86802,Ah16,EA067,No secondary type,EA067-9,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +86803,Ah17,EA067,?,EA067-NA,,,,,, +86804,Ah18,EA067,?,EA067-NA,,,,,, +86805,Ah19,EA067,No secondary type,EA067-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +86806,Ah2,EA067,No secondary type,EA067-9,,meek1931a,,1920,EthnographicAtlas_1967_p77, +86807,Ah20,EA067,No secondary type,EA067-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +86808,Ah21,EA067,?,EA067-NA,,,,,, +86809,Ah22,EA067,No secondary type,EA067-9,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +86810,Ah23,EA067,?,EA067-NA,,,,,, +86811,Ah24,EA067,No secondary type,EA067-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +86812,Ah25,EA067,No secondary type,EA067-9,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +86813,Ah26,EA067,No secondary type,EA067-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +86814,Ah27,EA067,?,EA067-NA,,,,,, +86815,Ah28,EA067,No secondary type,EA067-9,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +86816,Ah29,EA067,No secondary type,EA067-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +86817,Ah3,EA067,No secondary type,EA067-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +86818,Ah30,EA067,No secondary type,EA067-9,,meek1931b,,1920,EthnographicAtlas_1967_p77, +86819,Ah31,EA067,No secondary type,EA067-9,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +86820,Ah32,EA067,No secondary type,EA067-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +86821,Ah33,EA067,No secondary type,EA067-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +86822,Ah34,EA067,No secondary type,EA067-9,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +86823,Ah35,EA067,No secondary type,EA067-9,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +86824,Ah36,EA067,No secondary type,EA067-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +86825,Ah37,EA067,No secondary type,EA067-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +86826,Ah38,EA067,No secondary type,EA067-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +86827,Ah39,EA067,No secondary type,EA067-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +86828,Ah4,EA067,No secondary type,EA067-9,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +86829,Ah5,EA067,No secondary type,EA067-9,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +86830,Ah6,EA067,No secondary type,EA067-9,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +86831,Ah7,EA067,No secondary type,EA067-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +86832,Ah8,EA067,No secondary type,EA067-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +86833,Ah9,EA067,No secondary type,EA067-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +86834,Ai1,EA067,No secondary type,EA067-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +86835,Ai10,EA067,No secondary type,EA067-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +86836,Ai11,EA067,No secondary type,EA067-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +86837,Ai12,EA067,No secondary type,EA067-9,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +86838,Ai13,EA067,No secondary type,EA067-9,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +86839,Ai14,EA067,?,EA067-NA,,,,,, +86840,Ai15,EA067,?,EA067-NA,,,,,, +86841,Ai16,EA067,?,EA067-NA,,,,,, +86842,Ai17,EA067,?,EA067-NA,,,,,, +86843,Ai18,EA067,No secondary type,EA067-9,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +86844,Ai19,EA067,?,EA067-NA,,,,,, +86845,Ai2,EA067,No secondary type,EA067-9,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +86846,Ai20,EA067,No secondary type,EA067-9,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +86847,Ai21,EA067,No secondary type,EA067-9,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +86848,Ai22,EA067,No secondary type,EA067-9,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +86849,Ai23,EA067,No secondary type,EA067-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +86850,Ai24,EA067,No secondary type,EA067-9,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +86851,Ai25,EA067,No secondary type,EA067-9,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +86852,Ai26,EA067,No secondary type,EA067-9,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +86853,Ai27,EA067,?,EA067-NA,,,,,, +86854,Ai28,EA067,No secondary type,EA067-9,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +86855,Ai29,EA067,No secondary type,EA067-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +86856,Ai3,EA067,No secondary type,EA067-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +86857,Ai30,EA067,No secondary type,EA067-9,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +86858,Ai31,EA067,No secondary type,EA067-9,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +86859,Ai32,EA067,No secondary type,EA067-9,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +86860,Ai33,EA067,No secondary type,EA067-9,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +86861,Ai34,EA067,No secondary type,EA067-9,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +86862,Ai35,EA067,No secondary type,EA067-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +86863,Ai36,EA067,No secondary type,EA067-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +86864,Ai37,EA067,No secondary type,EA067-9,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +86865,Ai38,EA067,No secondary type,EA067-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +86866,Ai39,EA067,No secondary type,EA067-9,,nadel1947,,1940,EthnographicAtlas_1967_p77, +86867,Ai4,EA067,?,EA067-NA,,,,,, +86868,Ai40,EA067,No secondary type,EA067-9,,nadel1947,,1940,EthnographicAtlas_1967_p77, +86869,Ai41,EA067,No secondary type,EA067-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +86870,Ai42,EA067,No secondary type,EA067-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +86871,Ai43,EA067,No secondary type,EA067-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +86872,Ai44,EA067,No secondary type,EA067-9,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p77, +86873,Ai45,EA067,?,EA067-NA,,,,,, +86874,Ai46,EA067,No secondary type,EA067-9,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +86875,Ai47,EA067,No secondary type,EA067-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +86876,Ai5,EA067,No secondary type,EA067-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +86877,Ai6,EA067,Dual stratification,EA067-4,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +86878,Ai7,EA067,No secondary type,EA067-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +86879,Ai8,EA067,No secondary type,EA067-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +86880,Ai9,EA067,No secondary type,EA067-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +86881,Aj1,EA067,No secondary type,EA067-9,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +86882,Aj10,EA067,No secondary type,EA067-9,But there is a royal lineage,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +86883,Aj11,EA067,No secondary type,EA067-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +86884,Aj12,EA067,No secondary type,EA067-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +86885,Aj13,EA067,No secondary type,EA067-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +86886,Aj14,EA067,No secondary type,EA067-9,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +86887,Aj15,EA067,No secondary type,EA067-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +86888,Aj16,EA067,No secondary type,EA067-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +86889,Aj17,EA067,No secondary type,EA067-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +86890,Aj18,EA067,?,EA067-NA,,,,,, +86891,Aj19,EA067,No secondary type,EA067-9,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +86892,Aj2,EA067,No secondary type,EA067-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +86893,Aj20,EA067,?,EA067-NA,,,,,, +86894,Aj21,EA067,No secondary type,EA067-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +86895,Aj22,EA067,?,EA067-NA,,,,,, +86896,Aj23,EA067,No secondary type,EA067-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +86897,Aj24,EA067,?,EA067-NA,,,,,, +86898,Aj25,EA067,No secondary type,EA067-9,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +86899,Aj26,EA067,No secondary type,EA067-9,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +86900,Aj27,EA067,?,EA067-NA,,,,,, +86901,Aj28,EA067,No secondary type,EA067-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +86902,Aj29,EA067,No secondary type,EA067-9,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +86903,Aj3,EA067,No secondary type,EA067-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +86904,Aj30,EA067,?,EA067-NA,,,,,, +86905,Aj31,EA067,?,EA067-NA,,,,,, +86906,Aj4,EA067,No secondary type,EA067-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +86907,Aj5,EA067,No secondary type,EA067-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +86908,Aj6,EA067,No secondary type,EA067-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +86909,Aj7,EA067,No secondary type,EA067-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +86910,Aj8,EA067,No secondary type,EA067-9,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +86911,Aj9,EA067,No secondary type,EA067-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +86912,Ca1,EA067,No secondary type,EA067-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +86913,Ca10,EA067,No secondary type,EA067-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +86914,Ca11,EA067,No secondary type,EA067-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +86915,Ca12,EA067,No secondary type,EA067-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +86916,Ca13,EA067,?,EA067-NA,,,,,, +86917,Ca14,EA067,No secondary type,EA067-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +86918,Ca15,EA067,?,EA067-NA,,,,,, +86919,Ca16,EA067,?,EA067-NA,,,,,, +86920,Ca17,EA067,No secondary type,EA067-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +86921,Ca18,EA067,?,EA067-NA,,,,,, +86922,Ca19,EA067,No secondary type,EA067-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +86923,Ca2,EA067,No secondary type,EA067-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +86924,Ca20,EA067,?,EA067-NA,,,,,, +86925,Ca21,EA067,No secondary type,EA067-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +86926,Ca22,EA067,No secondary type,EA067-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +86927,Ca23,EA067,?,EA067-NA,,,,,, +86928,Ca24,EA067,?,EA067-NA,,,,,, +86929,Ca25,EA067,?,EA067-NA,,,,,, +86930,Ca26,EA067,?,EA067-NA,,,,,, +86931,Ca27,EA067,No secondary type,EA067-9,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +86932,Ca28,EA067,No secondary type,EA067-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +86933,Ca29,EA067,No secondary type,EA067-9,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +86934,Ca3,EA067,Dual stratification,EA067-4,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +86935,Ca30,EA067,No secondary type,EA067-9,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +86936,Ca31,EA067,No secondary type,EA067-9,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +86937,Ca32,EA067,No secondary type,EA067-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +86938,Ca33,EA067,No secondary type,EA067-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +86939,Ca34,EA067,?,EA067-NA,,,,,, +86940,Ca35,EA067,?,EA067-NA,,,,,, +86941,Ca36,EA067,No secondary type,EA067-9,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +86942,Ca37,EA067,No secondary type,EA067-9,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +86943,Ca38,EA067,No secondary type,EA067-9,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +86944,Ca39,EA067,No secondary type,EA067-9,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +86945,Ca4,EA067,No secondary type,EA067-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +86946,Ca40,EA067,No secondary type,EA067-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +86947,Ca41,EA067,No secondary type,EA067-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +86948,Ca42,EA067,No secondary type,EA067-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +86949,Ca43,EA067,?,EA067-NA,,,,,, +86950,Ca5,EA067,No secondary type,EA067-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +86951,Ca6,EA067,No secondary type,EA067-9,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +86952,Ca7,EA067,No secondary type,EA067-9,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +86953,Ca8,EA067,?,EA067-NA,,,,,, +86954,Ca9,EA067,?,EA067-NA,,,,,, +86955,Cb1,EA067,Complex stratification,EA067-5,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +86956,Cb10,EA067,No secondary type,EA067-9,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +86957,Cb11,EA067,?,EA067-NA,,,,,, +86958,Cb12,EA067,?,EA067-NA,,,,,, +86959,Cb13,EA067,?,EA067-NA,,,,,, +86960,Cb14,EA067,?,EA067-NA,,,,,, +86961,Cb15,EA067,No secondary type,EA067-9,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +86962,Cb16,EA067,?,EA067-NA,,,,,, +86963,Cb17,EA067,No secondary type,EA067-9,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +86964,Cb18,EA067,No secondary type,EA067-9,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +86965,Cb19,EA067,No secondary type,EA067-9,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +86966,Cb2,EA067,Dual stratification,EA067-4,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +86967,Cb20,EA067,?,EA067-NA,,,,,, +86968,Cb21,EA067,No secondary type,EA067-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +86969,Cb22,EA067,No secondary type,EA067-9,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +86970,Cb23,EA067,No secondary type,EA067-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +86971,Cb24,EA067,No secondary type,EA067-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +86972,Cb25,EA067,No secondary type,EA067-9,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +86973,Cb26,EA067,Dual stratification,EA067-4,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +86974,Cb27,EA067,?,EA067-NA,,,,,, +86975,Cb28,EA067,?,EA067-NA,,,,,, +86976,Cb29,EA067,?,EA067-NA,,,,,, +86977,Cb3,EA067,Elite stratification,EA067-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +86978,Cb4,EA067,No secondary type,EA067-9,,reid1930,,1920,EthnographicAtlas_1967_p81, +86979,Cb5,EA067,No secondary type,EA067-9,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +86980,Cb6,EA067,No secondary type,EA067-9,,woodnd,,1920,EthnographicAtlas_1967_p81, +86981,Cb7,EA067,No secondary type,EA067-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +86982,Cb8,EA067,No secondary type,EA067-9,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +86983,Cb9,EA067,Complex stratification,EA067-5,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +86984,Cc1,EA067,Elite stratification,EA067-3,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +86985,Cc10,EA067,No secondary type,EA067-9,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +86986,Cc11,EA067,No secondary type,EA067-9,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +86987,Cc12,EA067,No secondary type,EA067-9,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +86988,Cc13,EA067,No secondary type,EA067-9,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +86989,Cc14,EA067,No secondary type,EA067-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +86990,Cc15,EA067,No secondary type,EA067-9,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +86991,Cc16,EA067,No secondary type,EA067-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +86992,Cc17,EA067,No secondary type,EA067-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +86993,Cc18,EA067,No secondary type,EA067-9,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +86994,Cc19,EA067,No secondary type,EA067-9,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +86995,Cc2,EA067,No secondary type,EA067-9,All sources except Fuchs stress sharp class differentiation,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +86996,Cc20,EA067,No secondary type,EA067-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +86997,Cc3,EA067,No secondary type,EA067-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +86998,Cc4,EA067,No secondary type,EA067-9,The primary distinction is between a literate class with religious and clerical functions and the illiterate common people,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +86999,Cc5,EA067,No secondary type,EA067-9,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +87000,Cc6,EA067,No secondary type,EA067-9,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +87001,Cc7,EA067,Complex stratification,EA067-5,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87002,Cc8,EA067,No secondary type,EA067-9,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +87003,Cc9,EA067,No secondary type,EA067-9,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +87004,Cd1,EA067,No secondary type,EA067-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +87005,Cd10,EA067,No secondary type,EA067-9,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +87006,Cd11,EA067,No secondary type,EA067-9,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +87007,Cd12,EA067,Elite stratification,EA067-3,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +87008,Cd13,EA067,No secondary type,EA067-9,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +87009,Cd14,EA067,?,EA067-NA,,,,,, +87010,Cd15,EA067,No secondary type,EA067-9,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +87011,Cd16,EA067,No secondary type,EA067-9,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +87012,Cd17,EA067,No secondary type,EA067-9,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +87013,Cd18,EA067,No secondary type,EA067-9,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +87014,Cd19,EA067,No secondary type,EA067-9,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +87015,Cd2,EA067,Elite stratification,EA067-3,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +87016,Cd20,EA067,?,EA067-NA,,,,,, +87017,Cd21,EA067,No secondary type,EA067-9,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +87018,Cd3,EA067,No secondary type,EA067-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +87019,Cd4,EA067,No secondary type,EA067-9,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +87020,Cd5,EA067,No secondary type,EA067-9,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +87021,Cd6,EA067,No secondary type,EA067-9,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +87022,Cd7,EA067,No secondary type,EA067-9,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +87023,Cd8,EA067,No secondary type,EA067-9,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +87024,Cd9,EA067,?,EA067-NA,Sharp class distinctions are lacking,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +87025,Ce1,EA067,No secondary type,EA067-9,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +87026,Ce2,EA067,No secondary type,EA067-9,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +87027,Ce3,EA067,No secondary type,EA067-9,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +87028,Ce4,EA067,No secondary type,EA067-9,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87029,Ce5,EA067,No secondary type,EA067-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +87030,Ce6,EA067,No secondary type,EA067-9,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +87031,Ce7,EA067,No secondary type,EA067-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +87032,Ce8,EA067,Wealth distinctions,EA067-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +87033,Cf1,EA067,No secondary type,EA067-9,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +87034,Cf2,EA067,No secondary type,EA067-9,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +87035,Cf3,EA067,No secondary type,EA067-9,,munch1945,,1930,EthnographicAtlas_1967_p85, +87036,Cf4,EA067,No secondary type,EA067-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +87037,Cf5,EA067,No secondary type,EA067-9,,miner1939,,1930,EthnographicAtlas_1967_p85, +87038,Cg1,EA067,No secondary type,EA067-9,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +87039,Cg2,EA067,Wealth distinctions,EA067-2,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +87040,Cg3,EA067,No secondary type,EA067-9,For the Irish in general,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +87041,Cg4,EA067,No secondary type,EA067-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +87042,Cg5,EA067,No secondary type,EA067-9,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +87043,Ch1,EA067,No secondary type,EA067-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +87044,Ch10,EA067,?,EA067-NA,,,,,, +87045,Ch11,EA067,No secondary type,EA067-9,But officially disclaimed,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +87046,Ch2,EA067,No secondary type,EA067-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +87047,Ch3,EA067,No secondary type,EA067-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +87048,Ch4,EA067,No secondary type,EA067-9,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +87049,Ch5,EA067,No secondary type,EA067-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +87050,Ch6,EA067,No secondary type,EA067-9,,ember1954,,1910,EthnographicAtlas_1967_p85, +87051,Ch7,EA067,No secondary type,EA067-9,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +87052,Ch8,EA067,No secondary type,EA067-9,,hanzeli1955,,1940,EthnographicAtlas_1967_p85, +87053,Ch9,EA067,No secondary type,EA067-9,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +87054,Ci1,EA067,No secondary type,EA067-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +87055,Ci10,EA067,No secondary type,EA067-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +87056,Ci11,EA067,No secondary type,EA067-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +87057,Ci12,EA067,No secondary type,EA067-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +87058,Ci2,EA067,No secondary type,EA067-9,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +87059,Ci3,EA067,?,EA067-NA,,,,,, +87060,Ci4,EA067,No secondary type,EA067-9,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +87061,Ci5,EA067,Wealth distinctions,EA067-2,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +87062,Ci6,EA067,No secondary type,EA067-9,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +87063,Ci7,EA067,?,EA067-NA,,,,,, +87064,Ci8,EA067,No secondary type,EA067-9,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +87065,Ci9,EA067,?,EA067-NA,A small feudal aristocracy of outside origin is reported,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +87066,Cj1,EA067,Complex stratification,EA067-5,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +87067,Cj10,EA067,No secondary type,EA067-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +87068,Cj2,EA067,No secondary type,EA067-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +87069,Cj3,EA067,No secondary type,EA067-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +87070,Cj4,EA067,No secondary type,EA067-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +87071,Cj5,EA067,?,EA067-NA,,,,,, +87072,Cj6,EA067,No secondary type,EA067-9,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +87073,Cj7,EA067,No secondary type,EA067-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +87074,Cj8,EA067,No secondary type,EA067-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +87075,Cj9,EA067,No secondary type,EA067-9,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +87076,Ea1,EA067,No secondary type,EA067-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p89, +87077,Ea10,EA067,No secondary type,EA067-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +87078,Ea11,EA067,Dual stratification,EA067-4,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +87079,Ea12,EA067,No secondary type,EA067-9,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +87080,Ea13,EA067,No secondary type,EA067-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +87081,Ea2,EA067,No secondary type,EA067-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +87082,Ea3,EA067,No secondary type,EA067-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +87083,Ea4,EA067,No secondary type,EA067-9,,barth1956b,,1950,EthnographicAtlas_1967_p89, +87084,Ea5,EA067,No secondary type,EA067-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +87085,Ea6,EA067,No secondary type,EA067-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +87086,Ea7,EA067,No secondary type,EA067-9,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +87087,Ea8,EA067,No secondary type,EA067-9,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +87088,Ea9,EA067,Complex stratification,EA067-5,,vreeland1957,,1950,EthnographicAtlas_1967_p89, +87089,Eb1,EA067,No secondary type,EA067-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +87090,Eb2,EA067,No secondary type,EA067-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +87091,Eb3,EA067,No secondary type,EA067-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +87092,Eb4,EA067,No secondary type,EA067-9,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +87093,Eb5,EA067,No secondary type,EA067-9,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +87094,Eb6,EA067,No secondary type,EA067-9,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +87095,Eb7,EA067,Wealth distinctions,EA067-2,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +87096,Eb8,EA067,?,EA067-NA,,,,,, +87097,Ec1,EA067,No secondary type,EA067-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +87098,Ec10,EA067,No secondary type,EA067-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +87099,Ec11,EA067,No secondary type,EA067-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +87100,Ec2,EA067,No secondary type,EA067-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87101,Ec3,EA067,No secondary type,EA067-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +87102,Ec4,EA067,No secondary type,EA067-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +87103,Ec5,EA067,No secondary type,EA067-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +87104,Ec6,EA067,No secondary type,EA067-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +87105,Ec7,EA067,No secondary type,EA067-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +87106,Ec8,EA067,No secondary type,EA067-9,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +87107,Ec9,EA067,No secondary type,EA067-9,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +87108,Ed1,EA067,No secondary type,EA067-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +87109,Ed10,EA067,No secondary type,EA067-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +87110,Ed13,EA067,?,EA067-NA,,,,,, +87111,Ed14,EA067,?,EA067-NA,,,,,, +87112,Ed15a,EA067,?,EA067-NA,,,,,, +87113,Ed15b,EA067,No secondary type,EA067-9,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +87114,Ed16,EA067,?,EA067-NA,,,,,, +87115,Ed2,EA067,No secondary type,EA067-9,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +87116,Ed3,EA067,No secondary type,EA067-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +87117,Ed4,EA067,No secondary type,EA067-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +87118,Ed5,EA067,No secondary type,EA067-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87119,Ed6,EA067,No secondary type,EA067-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +87120,Ed7,EA067,Complex stratification,EA067-5,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +87121,Ed8,EA067,No secondary type,EA067-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +87122,Ed9,EA067,No secondary type,EA067-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +87123,Ee1,EA067,No secondary type,EA067-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +87124,Ee2,EA067,No secondary type,EA067-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p89, +87125,Ee3,EA067,No secondary type,EA067-9,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +87126,Ee4,EA067,No secondary type,EA067-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +87127,Ee5,EA067,No secondary type,EA067-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +87128,Ee6,EA067,No secondary type,EA067-9,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +87129,Ee7,EA067,?,EA067-NA,,,,,, +87130,Ee8,EA067,No secondary type,EA067-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +87131,Ef1,EA067,No secondary type,EA067-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +87132,Ef10,EA067,?,EA067-NA,,,,,, +87133,Ef11,EA067,Elite stratification,EA067-3,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +87134,Ef2,EA067,No secondary type,EA067-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +87135,Ef3,EA067,?,EA067-NA,,,,,, +87136,Ef4,EA067,No secondary type,EA067-9,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +87137,Ef5,EA067,No secondary type,EA067-9,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +87138,Ef6,EA067,?,EA067-NA,,,,,, +87139,Ef7,EA067,No secondary type,EA067-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +87140,Ef8,EA067,No secondary type,EA067-9,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +87141,Ef9,EA067,No secondary type,EA067-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87142,Eg1,EA067,No secondary type,EA067-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87143,Eg10,EA067,No secondary type,EA067-9,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +87144,Eg11,EA067,?,EA067-NA,,,,,, +87145,Eg12,EA067,?,EA067-NA,,,,,, +87146,Eg13,EA067,No secondary type,EA067-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87147,Eg14,EA067,No secondary type,EA067-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +87148,Eg2,EA067,No secondary type,EA067-9,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +87149,Eg3,EA067,No secondary type,EA067-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +87150,Eg4,EA067,No secondary type,EA067-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +87151,Eg5,EA067,No secondary type,EA067-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +87152,Eg6,EA067,No secondary type,EA067-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +87153,Eg7,EA067,?,EA067-NA,,,,,, +87154,Eg8,EA067,?,EA067-NA,,,,,, +87155,Eg9,EA067,No secondary type,EA067-9,,elwin1939,,1930,EthnographicAtlas_1967_p93, +87156,Eh1,EA067,No secondary type,EA067-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +87157,Eh10,EA067,?,EA067-NA,,,,,, +87158,Eh2,EA067,No secondary type,EA067-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +87159,Eh3,EA067,No secondary type,EA067-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +87160,Eh4,EA067,No secondary type,EA067-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87161,Eh5,EA067,No secondary type,EA067-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +87162,Eh6,EA067,No secondary type,EA067-9,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +87163,Eh7,EA067,No secondary type,EA067-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +87164,Eh8,EA067,No secondary type,EA067-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +87165,Eh9,EA067,No secondary type,EA067-9,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +87166,Ei1,EA067,No secondary type,EA067-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87167,Ei10,EA067,?,EA067-NA,,,,,, +87168,Ei11,EA067,No secondary type,EA067-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +87169,Ei12,EA067,No secondary type,EA067-9,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +87170,Ei13,EA067,No secondary type,EA067-9,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +87171,Ei14,EA067,No secondary type,EA067-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +87172,Ei15,EA067,?,EA067-NA,,,,,, +87173,Ei16,EA067,Elite stratification,EA067-3,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +87174,Ei17,EA067,?,EA067-NA,,,,,, +87175,Ei18,EA067,No secondary type,EA067-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +87176,Ei19,EA067,No secondary type,EA067-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +87177,Ei2,EA067,No secondary type,EA067-9,,mills1922,,1920,EthnographicAtlas_1967_p93, +87178,Ei20,EA067,?,EA067-NA,,,,,, +87179,Ei3,EA067,No secondary type,EA067-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +87180,Ei4,EA067,No secondary type,EA067-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +87181,Ei5,EA067,No secondary type,EA067-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +87182,Ei6,EA067,No secondary type,EA067-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +87183,Ei7,EA067,No secondary type,EA067-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +87184,Ei8,EA067,No secondary type,EA067-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +87185,Ei9,EA067,?,EA067-NA,,,,,, +87186,Ej1,EA067,No secondary type,EA067-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +87187,Ej10,EA067,No secondary type,EA067-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +87188,Ej11,EA067,No secondary type,EA067-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +87189,Ej12,EA067,No secondary type,EA067-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +87190,Ej13,EA067,Elite stratification,EA067-3,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +87191,Ej14,EA067,No secondary type,EA067-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87192,Ej15,EA067,Dual stratification,EA067-4,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +87193,Ej16,EA067,No secondary type,EA067-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +87194,Ej2,EA067,No secondary type,EA067-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +87195,Ej3,EA067,No secondary type,EA067-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +87196,Ej4,EA067,No secondary type,EA067-9,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +87197,Ej5,EA067,Dual stratification,EA067-4,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +87198,Ej6,EA067,No secondary type,EA067-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p93, +87199,Ej7,EA067,No secondary type,EA067-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +87200,Ej8,EA067,No secondary type,EA067-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +87201,Ej9,EA067,No secondary type,EA067-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +87202,Ia1,EA067,No secondary type,EA067-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +87203,Ia10,EA067,No secondary type,EA067-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +87204,Ia11,EA067,No secondary type,EA067-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p93, +87205,Ia12,EA067,No secondary type,EA067-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +87206,Ia13,EA067,No secondary type,EA067-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +87207,Ia14,EA067,No secondary type,EA067-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +87208,Ia15,EA067,No secondary type,EA067-9,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +87209,Ia16,EA067,No secondary type,EA067-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +87210,Ia17,EA067,?,EA067-NA,,,,,, +87211,Ia18,EA067,?,EA067-NA,,,,,, +87212,Ia2,EA067,No secondary type,EA067-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +87213,Ia3,EA067,No secondary type,EA067-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +87214,Ia4,EA067,No secondary type,EA067-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +87215,Ia5,EA067,No secondary type,EA067-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +87216,Ia6,EA067,No secondary type,EA067-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87217,Ia7,EA067,No secondary type,EA067-9,,fox1954,,1950,EthnographicAtlas_1967_p93, +87218,Ia8,EA067,Wealth distinctions,EA067-2,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +87219,Ia9,EA067,No secondary type,EA067-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +87220,Ib1,EA067,No secondary type,EA067-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87221,Ib2,EA067,No secondary type,EA067-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87222,Ib3,EA067,No secondary type,EA067-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +87223,Ib4,EA067,No secondary type,EA067-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +87224,Ib5,EA067,No secondary type,EA067-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +87225,Ib6,EA067,No secondary type,EA067-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +87226,Ib7,EA067,No secondary type,EA067-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +87227,Ib8,EA067,No secondary type,EA067-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +87228,Ib9,EA067,?,EA067-NA,,,,,, +87229,Ic1,EA067,Complex stratification,EA067-5,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87230,Ic10,EA067,No secondary type,EA067-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +87231,Ic11,EA067,No secondary type,EA067-9,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87232,Ic12,EA067,No secondary type,EA067-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +87233,Ic13,EA067,?,EA067-NA,,,,,, +87234,Ic2,EA067,No secondary type,EA067-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p97, +87235,Ic3,EA067,No secondary type,EA067-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +87236,Ic4,EA067,No secondary type,EA067-9,,kruyt1921;wetering1925,,1920,Ethnology_Vol2_No1_Jan_1963, +87237,Ic5,EA067,No secondary type,EA067-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +87238,Ic6,EA067,No secondary type,EA067-9,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +87239,Ic7,EA067,No secondary type,EA067-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +87240,Ic8,EA067,No secondary type,EA067-9,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +87241,Ic9,EA067,No secondary type,EA067-9,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +87242,Id1,EA067,No secondary type,EA067-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +87243,Id10,EA067,No secondary type,EA067-9,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +87244,Id11,EA067,No secondary type,EA067-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +87245,Id12,EA067,No secondary type,EA067-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +87246,Id13,EA067,No secondary type,EA067-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +87247,Id2,EA067,No secondary type,EA067-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +87248,Id3,EA067,No secondary type,EA067-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +87249,Id4,EA067,No secondary type,EA067-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p97, +87250,Id5,EA067,No secondary type,EA067-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p97, +87251,Id6,EA067,No secondary type,EA067-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p97, +87252,Id7,EA067,?,EA067-NA,,,,,, +87253,Id8,EA067,No secondary type,EA067-9,,roth1890,,1830,EthnographicAtlas_1967_p97, +87254,Id9,EA067,No secondary type,EA067-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p97, +87255,Ie1,EA067,No secondary type,EA067-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87256,Ie10,EA067,No secondary type,EA067-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +87257,Ie11,EA067,Wealth distinctions,EA067-2,,bowers1964,,1950,EthnographicAtlas_1967_p97, +87258,Ie12,EA067,No secondary type,EA067-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87259,Ie13,EA067,No secondary type,EA067-9,,landtman1927,,1920,EthnographicAtlas_1967_p97, +87260,Ie14,EA067,No secondary type,EA067-9,,haddon1908,,1900,EthnographicAtlas_1967_p97, +87261,Ie15,EA067,No secondary type,EA067-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87262,Ie16,EA067,No secondary type,EA067-9,,williams194041,,1940,EthnographicAtlas_1967_p97, +87263,Ie17,EA067,No secondary type,EA067-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +87264,Ie18,EA067,No secondary type,EA067-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +87265,Ie19,EA067,No secondary type,EA067-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +87266,Ie2,EA067,No secondary type,EA067-9,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +87267,Ie20,EA067,No secondary type,EA067-9,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +87268,Ie21,EA067,No secondary type,EA067-9,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +87269,Ie22,EA067,No secondary type,EA067-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +87270,Ie23,EA067,No secondary type,EA067-9,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +87271,Ie24,EA067,No secondary type,EA067-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +87272,Ie25,EA067,No secondary type,EA067-9,,williamson1912,,1920,EthnographicAtlas_1967_p97, +87273,Ie26,EA067,No secondary type,EA067-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +87274,Ie27,EA067,No secondary type,EA067-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +87275,Ie28,EA067,No secondary type,EA067-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +87276,Ie29,EA067,No secondary type,EA067-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87277,Ie3,EA067,No secondary type,EA067-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87278,Ie30,EA067,No secondary type,EA067-9,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +87279,Ie31,EA067,No secondary type,EA067-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +87280,Ie32,EA067,No secondary type,EA067-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +87281,Ie33,EA067,No secondary type,EA067-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +87282,Ie34,EA067,?,EA067-NA,,,,,, +87283,Ie35,EA067,No secondary type,EA067-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +87284,Ie36,EA067,?,EA067-NA,,,,,, +87285,Ie37,EA067,?,EA067-NA,,,,,, +87286,Ie38,EA067,No secondary type,EA067-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +87287,Ie39,EA067,No secondary type,EA067-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +87288,Ie4,EA067,No secondary type,EA067-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87289,Ie5,EA067,No secondary type,EA067-9,,williams1936,,1930,EthnographicAtlas_1967_p97, +87290,Ie6,EA067,No secondary type,EA067-9,,held1947,,1930,EthnographicAtlas_1967_p97, +87291,Ie7,EA067,No secondary type,EA067-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +87292,Ie8,EA067,No secondary type,EA067-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +87293,Ie9,EA067,No secondary type,EA067-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +87294,If1,EA067,Wealth distinctions,EA067-2,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87295,If10,EA067,?,EA067-NA,,,,,, +87296,If11,EA067,No secondary type,EA067-9,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +87297,If12,EA067,No secondary type,EA067-9,,mason1954,,1940,EthnographicAtlas_1967_p101, +87298,If13,EA067,No secondary type,EA067-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p101, +87299,If14,EA067,No secondary type,EA067-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +87300,If15,EA067,No secondary type,EA067-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +87301,If16,EA067,No secondary type,EA067-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +87302,If17,EA067,No secondary type,EA067-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +87303,If2,EA067,No secondary type,EA067-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +87304,If3,EA067,No secondary type,EA067-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +87305,If4,EA067,No secondary type,EA067-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +87306,If5,EA067,No secondary type,EA067-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +87307,If6,EA067,No secondary type,EA067-9,"Complex stratification into nine social classes and seven ranks, of which three form an endogamous upper caste and four an endogamous lower caste",huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +87308,If7,EA067,No secondary type,EA067-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +87309,If8,EA067,No secondary type,EA067-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +87310,If9,EA067,No secondary type,EA067-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +87311,Ig1,EA067,No secondary type,EA067-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +87312,Ig10,EA067,No secondary type,EA067-9,,schwartz1964,,1950,EthnographicAtlas_1967_p101, +87313,Ig11,EA067,No secondary type,EA067-9,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +87314,Ig12,EA067,No secondary type,EA067-9,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +87315,Ig13,EA067,No secondary type,EA067-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +87316,Ig14,EA067,No secondary type,EA067-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +87317,Ig15,EA067,?,EA067-NA,,,,,, +87318,Ig16,EA067,?,EA067-NA,,,,,, +87319,Ig17,EA067,?,EA067-NA,,,,,, +87320,Ig18,EA067,?,EA067-NA,,,,,, +87321,Ig19,EA067,?,EA067-NA,,,,,, +87322,Ig2,EA067,No secondary type,EA067-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +87323,Ig20,EA067,No secondary type,EA067-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +87324,Ig21,EA067,No secondary type,EA067-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +87325,Ig3,EA067,Wealth distinctions,EA067-2,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +87326,Ig4,EA067,No secondary type,EA067-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +87327,Ig5,EA067,No secondary type,EA067-9,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +87328,Ig6,EA067,No secondary type,EA067-9,,ivens1927,,1900,EthnographicAtlas_1967_p101, +87329,Ig7,EA067,No secondary type,EA067-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +87330,Ig8,EA067,?,EA067-NA,,,,,, +87331,Ig9,EA067,No secondary type,EA067-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +87332,Ih1,EA067,No secondary type,EA067-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +87333,Ih10,EA067,No secondary type,EA067-9,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87334,Ih11,EA067,?,EA067-NA,,,,,, +87335,Ih12,EA067,?,EA067-NA,,,,,, +87336,Ih13,EA067,?,EA067-NA,,,,,, +87337,Ih14,EA067,No secondary type,EA067-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +87338,Ih2,EA067,No secondary type,EA067-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87339,Ih3,EA067,No secondary type,EA067-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +87340,Ih4,EA067,No secondary type,EA067-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87341,Ih5,EA067,No secondary type,EA067-9,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +87342,Ih6,EA067,No secondary type,EA067-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p101, +87343,Ih7,EA067,No secondary type,EA067-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +87344,Ih8,EA067,No secondary type,EA067-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +87345,Ih9,EA067,No secondary type,EA067-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87346,Ii1,EA067,No secondary type,EA067-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +87347,Ii10,EA067,No secondary type,EA067-9,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +87348,Ii12,EA067,No secondary type,EA067-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87349,Ii13,EA067,No secondary type,EA067-9,,burrows1937,,1830,EthnographicAtlas_1967_p101, +87350,Ii14,EA067,No secondary type,EA067-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +87351,Ii2,EA067,No secondary type,EA067-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +87352,Ii3,EA067,No secondary type,EA067-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +87353,Ii4,EA067,No secondary type,EA067-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +87354,Ii5,EA067,No secondary type,EA067-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +87355,Ii6,EA067,No secondary type,EA067-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +87356,Ii7,EA067,No secondary type,EA067-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +87357,Ii8,EA067,No secondary type,EA067-9,,burrows1936,,1840,EthnographicAtlas_1967_p101, +87358,Ii9,EA067,No secondary type,EA067-9,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +87359,Ij1,EA067,No secondary type,EA067-9,,buck1934,,1820,EthnographicAtlas_1967_p101, +87360,Ij10,EA067,?,EA067-NA,,,,,, +87361,Ij2,EA067,No secondary type,EA067-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +87362,Ij3,EA067,Complex stratification,EA067-5,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +87363,Ij4,EA067,No secondary type,EA067-9,,buck1932a,,1850,EthnographicAtlas_1967_p105, +87364,Ij5,EA067,No secondary type,EA067-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +87365,Ij6,EA067,Elite stratification,EA067-3,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +87366,Ij7,EA067,No secondary type,EA067-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +87367,Ij8,EA067,No secondary type,EA067-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +87368,Ij9,EA067,No secondary type,EA067-9,,metraux1940,,1860,EthnographicAtlas_1967_p105, +87369,Na1,EA067,No secondary type,EA067-9,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +87370,Na10,EA067,No secondary type,EA067-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +87371,Na11,EA067,?,EA067-NA,,,,,, +87372,Na12,EA067,No secondary type,EA067-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +87373,Na13,EA067,No secondary type,EA067-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +87374,Na14,EA067,No secondary type,EA067-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +87375,Na15,EA067,No secondary type,EA067-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +87376,Na16,EA067,No secondary type,EA067-9,,osgood1931,,1860,EthnographicAtlas_1967_p105, +87377,Na17,EA067,No secondary type,EA067-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87378,Na19,EA067,No secondary type,EA067-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +87379,Na2,EA067,No secondary type,EA067-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +87380,Na20,EA067,No secondary type,EA067-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +87381,Na21,EA067,No secondary type,EA067-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +87382,Na22,EA067,No secondary type,EA067-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +87383,Na23,EA067,No secondary type,EA067-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +87384,Na24,EA067,No secondary type,EA067-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +87385,Na25,EA067,No secondary type,EA067-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +87386,Na26,EA067,No secondary type,EA067-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +87387,Na27,EA067,No secondary type,EA067-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +87388,Na28,EA067,No secondary type,EA067-9,,jenness1937,,1880,EthnographicAtlas_1967_p105, +87389,Na29,EA067,No secondary type,EA067-9,,goddard1916,,1850,EthnographicAtlas_1967_p105, +87390,Na3,EA067,No secondary type,EA067-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +87391,Na30,EA067,No secondary type,EA067-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +87392,Na31,EA067,No secondary type,EA067-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +87393,Na32,EA067,No secondary type,EA067-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +87394,Na33,EA067,No secondary type,EA067-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +87395,Na34,EA067,No secondary type,EA067-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +87396,Na35,EA067,No secondary type,EA067-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +87397,Na36,EA067,No secondary type,EA067-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +87398,Na37,EA067,No secondary type,EA067-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +87399,Na38,EA067,No secondary type,EA067-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +87400,Na39,EA067,No secondary type,EA067-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +87401,Na4,EA067,No secondary type,EA067-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +87402,Na40,EA067,No secondary type,EA067-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +87403,Na41,EA067,No secondary type,EA067-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +87404,Na42,EA067,No secondary type,EA067-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p105, +87405,Na43,EA067,No secondary type,EA067-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +87406,Na44,EA067,No secondary type,EA067-9,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +87407,Na45,EA067,No secondary type,EA067-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +87408,Na5,EA067,No secondary type,EA067-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +87409,Na6,EA067,No secondary type,EA067-9,,lantis1946,,1930,EthnographicAtlas_1967_p105, +87410,Na7,EA067,No secondary type,EA067-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +87411,Na8,EA067,No secondary type,EA067-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +87412,Na9,EA067,No secondary type,EA067-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87413,Nb1,EA067,No secondary type,EA067-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +87414,Nb10,EA067,No secondary type,EA067-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +87415,Nb11,EA067,No secondary type,EA067-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +87416,Nb12,EA067,No secondary type,EA067-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +87417,Nb13,EA067,No secondary type,EA067-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +87418,Nb14,EA067,No secondary type,EA067-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +87419,Nb15,EA067,No secondary type,EA067-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +87420,Nb16,EA067,No secondary type,EA067-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +87421,Nb17,EA067,No secondary type,EA067-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +87422,Nb18,EA067,No secondary type,EA067-9,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +87423,Nb19,EA067,No secondary type,EA067-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +87424,Nb2,EA067,No secondary type,EA067-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +87425,Nb20,EA067,No secondary type,EA067-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +87426,Nb21,EA067,No secondary type,EA067-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +87427,Nb22,EA067,No secondary type,EA067-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +87428,Nb23,EA067,No secondary type,EA067-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +87429,Nb24,EA067,No secondary type,EA067-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +87430,Nb25,EA067,No secondary type,EA067-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +87431,Nb26,EA067,No secondary type,EA067-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +87432,Nb27,EA067,No secondary type,EA067-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +87433,Nb28,EA067,No secondary type,EA067-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +87434,Nb29,EA067,No secondary type,EA067-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +87435,Nb3,EA067,No secondary type,EA067-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +87436,Nb30,EA067,No secondary type,EA067-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +87437,Nb31,EA067,No secondary type,EA067-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +87438,Nb32,EA067,No secondary type,EA067-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +87439,Nb33,EA067,No secondary type,EA067-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +87440,Nb34,EA067,No secondary type,EA067-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +87441,Nb35,EA067,No secondary type,EA067-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +87442,Nb36,EA067,No secondary type,EA067-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +87443,Nb37,EA067,No secondary type,EA067-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +87444,Nb38,EA067,No secondary type,EA067-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +87445,Nb39,EA067,No secondary type,EA067-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +87446,Nb4,EA067,No secondary type,EA067-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +87447,Nb5,EA067,No secondary type,EA067-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +87448,Nb6,EA067,No secondary type,EA067-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +87449,Nb7,EA067,No secondary type,EA067-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +87450,Nb8,EA067,No secondary type,EA067-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +87451,Nb9,EA067,No secondary type,EA067-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +87452,Nc1,EA067,No secondary type,EA067-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +87453,Nc10,EA067,No secondary type,EA067-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +87454,Nc11,EA067,No secondary type,EA067-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +87455,Nc12,EA067,No secondary type,EA067-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +87456,Nc13,EA067,No secondary type,EA067-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +87457,Nc14,EA067,No secondary type,EA067-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +87458,Nc15,EA067,No secondary type,EA067-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +87459,Nc16,EA067,No secondary type,EA067-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +87460,Nc17,EA067,?,EA067-NA,,,,,, +87461,Nc18,EA067,No secondary type,EA067-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +87462,Nc19,EA067,No secondary type,EA067-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +87463,Nc2,EA067,No secondary type,EA067-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +87464,Nc20,EA067,?,EA067-NA,,,,,, +87465,Nc21,EA067,No secondary type,EA067-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +87466,Nc22,EA067,No secondary type,EA067-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +87467,Nc23,EA067,No secondary type,EA067-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +87468,Nc24,EA067,No secondary type,EA067-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +87469,Nc25,EA067,No secondary type,EA067-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +87470,Nc26,EA067,No secondary type,EA067-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +87471,Nc27,EA067,No secondary type,EA067-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +87472,Nc28,EA067,No secondary type,EA067-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +87473,Nc29,EA067,No secondary type,EA067-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +87474,Nc3,EA067,No secondary type,EA067-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +87475,Nc30,EA067,No secondary type,EA067-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +87476,Nc31,EA067,No secondary type,EA067-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +87477,Nc32,EA067,No secondary type,EA067-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +87478,Nc33,EA067,No secondary type,EA067-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +87479,Nc34,EA067,No secondary type,EA067-9,,meigs1939,,1880,EthnographicAtlas_1967_p109, +87480,Nc4,EA067,No secondary type,EA067-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +87481,Nc5,EA067,No secondary type,EA067-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +87482,Nc6,EA067,No secondary type,EA067-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +87483,Nc7,EA067,No secondary type,EA067-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +87484,Nc8,EA067,No secondary type,EA067-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +87485,Nc9,EA067,No secondary type,EA067-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +87486,Nd1,EA067,No secondary type,EA067-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +87487,Nd10,EA067,No secondary type,EA067-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +87488,Nd11,EA067,No secondary type,EA067-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +87489,Nd12,EA067,No secondary type,EA067-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +87490,Nd13,EA067,No secondary type,EA067-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +87491,Nd14,EA067,No secondary type,EA067-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +87492,Nd15,EA067,No secondary type,EA067-9,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +87493,Nd16,EA067,No secondary type,EA067-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +87494,Nd17,EA067,No secondary type,EA067-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +87495,Nd18,EA067,No secondary type,EA067-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +87496,Nd19,EA067,No secondary type,EA067-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +87497,Nd2,EA067,No secondary type,EA067-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +87498,Nd20,EA067,No secondary type,EA067-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +87499,Nd21,EA067,No secondary type,EA067-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +87500,Nd22,EA067,No secondary type,EA067-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +87501,Nd23,EA067,No secondary type,EA067-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +87502,Nd24,EA067,No secondary type,EA067-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +87503,Nd25,EA067,No secondary type,EA067-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +87504,Nd26,EA067,No secondary type,EA067-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +87505,Nd27,EA067,No secondary type,EA067-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +87506,Nd28,EA067,No secondary type,EA067-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +87507,Nd29,EA067,No secondary type,EA067-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +87508,Nd3,EA067,No secondary type,EA067-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +87509,Nd30,EA067,No secondary type,EA067-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +87510,Nd31,EA067,No secondary type,EA067-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +87511,Nd32,EA067,No secondary type,EA067-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +87512,Nd33,EA067,No secondary type,EA067-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +87513,Nd34,EA067,No secondary type,EA067-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +87514,Nd35,EA067,No secondary type,EA067-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +87515,Nd36,EA067,No secondary type,EA067-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +87516,Nd37,EA067,No secondary type,EA067-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +87517,Nd38,EA067,No secondary type,EA067-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +87518,Nd39,EA067,No secondary type,EA067-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +87519,Nd4,EA067,No secondary type,EA067-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +87520,Nd40,EA067,No secondary type,EA067-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +87521,Nd41,EA067,No secondary type,EA067-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +87522,Nd42,EA067,No secondary type,EA067-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +87523,Nd43,EA067,No secondary type,EA067-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +87524,Nd44,EA067,No secondary type,EA067-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +87525,Nd45,EA067,No secondary type,EA067-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +87526,Nd46,EA067,No secondary type,EA067-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +87527,Nd47,EA067,No secondary type,EA067-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +87528,Nd48,EA067,No secondary type,EA067-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +87529,Nd49,EA067,No secondary type,EA067-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +87530,Nd5,EA067,No secondary type,EA067-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +87531,Nd50,EA067,No secondary type,EA067-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +87532,Nd51,EA067,No secondary type,EA067-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +87533,Nd52,EA067,No secondary type,EA067-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +87534,Nd53,EA067,No secondary type,EA067-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +87535,Nd54,EA067,No secondary type,EA067-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87536,Nd55,EA067,No secondary type,EA067-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +87537,Nd56,EA067,No secondary type,EA067-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +87538,Nd57,EA067,No secondary type,EA067-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +87539,Nd58,EA067,No secondary type,EA067-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +87540,Nd59,EA067,No secondary type,EA067-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +87541,Nd6,EA067,No secondary type,EA067-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +87542,Nd60,EA067,No secondary type,EA067-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +87543,Nd61,EA067,No secondary type,EA067-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +87544,Nd62,EA067,No secondary type,EA067-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +87545,Nd63,EA067,No secondary type,EA067-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +87546,Nd64,EA067,No secondary type,EA067-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +87547,Nd65,EA067,No secondary type,EA067-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +87548,Nd66,EA067,No secondary type,EA067-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +87549,Nd67,EA067,No secondary type,EA067-9,,gifford1936,,1870,EthnographicAtlas_1967_p113, +87550,Nd7,EA067,No secondary type,EA067-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +87551,Nd8,EA067,No secondary type,EA067-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +87552,Nd9,EA067,No secondary type,EA067-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +87553,Ne1,EA067,No secondary type,EA067-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +87554,Ne10,EA067,?,EA067-NA,,,,,, +87555,Ne11,EA067,No secondary type,EA067-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +87556,Ne12,EA067,No secondary type,EA067-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +87557,Ne13,EA067,No secondary type,EA067-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +87558,Ne14,EA067,No secondary type,EA067-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +87559,Ne15,EA067,No secondary type,EA067-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +87560,Ne16,EA067,No secondary type,EA067-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +87561,Ne17,EA067,No secondary type,EA067-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +87562,Ne18,EA067,No secondary type,EA067-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +87563,Ne19,EA067,No secondary type,EA067-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +87564,Ne2,EA067,No secondary type,EA067-9,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +87565,Ne20,EA067,No secondary type,EA067-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +87566,Ne21,EA067,?,EA067-NA,,,,,, +87567,Ne3,EA067,No secondary type,EA067-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +87568,Ne4,EA067,No secondary type,EA067-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +87569,Ne5,EA067,No secondary type,EA067-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +87570,Ne6,EA067,No secondary type,EA067-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +87571,Ne7,EA067,No secondary type,EA067-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +87572,Ne8,EA067,No secondary type,EA067-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +87573,Ne9,EA067,No secondary type,EA067-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +87574,Nf10,EA067,No secondary type,EA067-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +87575,Nf11,EA067,No secondary type,EA067-9,,whitman1937,,1870,EthnographicAtlas_1967_p117, +87576,Nf12,EA067,No secondary type,EA067-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +87577,Nf13,EA067,No secondary type,EA067-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87578,Nf14,EA067,No secondary type,EA067-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +87579,Nf15,EA067,?,EA067-NA,,,,,, +87580,Nf2,EA067,No secondary type,EA067-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +87581,Nf3,EA067,No secondary type,EA067-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +87582,Nf4,EA067,No secondary type,EA067-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +87583,Nf5,EA067,No secondary type,EA067-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +87584,Nf6,EA067,No secondary type,EA067-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +87585,Nf7,EA067,No secondary type,EA067-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87586,Nf8,EA067,No secondary type,EA067-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +87587,Nf9,EA067,No secondary type,EA067-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p117, +87588,Ng1,EA067,No secondary type,EA067-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +87589,Ng10,EA067,No secondary type,EA067-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +87590,Ng11,EA067,No secondary type,EA067-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +87591,Ng12,EA067,No secondary type,EA067-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +87592,Ng13,EA067,?,EA067-NA,,,,,, +87593,Ng14,EA067,?,EA067-NA,,,,,, +87594,Ng15,EA067,?,EA067-NA,,,,,, +87595,Ng2,EA067,No secondary type,EA067-9,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +87596,Ng3,EA067,No secondary type,EA067-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +87597,Ng4,EA067,No secondary type,EA067-9,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +87598,Ng5,EA067,No secondary type,EA067-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +87599,Ng6,EA067,No secondary type,EA067-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +87600,Ng7,EA067,No secondary type,EA067-9,Four social classes with caste-like features,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +87601,Ng8,EA067,No secondary type,EA067-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +87602,Ng9,EA067,No secondary type,EA067-9,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +87603,Nh1,EA067,No secondary type,EA067-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +87604,Nh10,EA067,No secondary type,EA067-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +87605,Nh11,EA067,No secondary type,EA067-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +87606,Nh12,EA067,No secondary type,EA067-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +87607,Nh13,EA067,No secondary type,EA067-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +87608,Nh14,EA067,No secondary type,EA067-9,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +87609,Nh15,EA067,No secondary type,EA067-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +87610,Nh16,EA067,No secondary type,EA067-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87611,Nh17,EA067,No secondary type,EA067-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +87612,Nh18,EA067,No secondary type,EA067-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87613,Nh19,EA067,No secondary type,EA067-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +87614,Nh2,EA067,No secondary type,EA067-9,,dozier1954,,1950,EthnographicAtlas_1967_p117, +87615,Nh20,EA067,No secondary type,EA067-9,,gifford1931,,1860,EthnographicAtlas_1967_p117, +87616,Nh21,EA067,No secondary type,EA067-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87617,Nh22,EA067,No secondary type,EA067-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +87618,Nh23,EA067,No secondary type,EA067-9,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +87619,Nh24,EA067,No secondary type,EA067-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +87620,Nh25,EA067,No secondary type,EA067-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +87621,Nh26,EA067,?,EA067-NA,,,,,, +87622,Nh27,EA067,?,EA067-NA,,,,,, +87623,Nh3,EA067,No secondary type,EA067-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +87624,Nh4,EA067,No secondary type,EA067-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +87625,Nh5,EA067,No secondary type,EA067-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +87626,Nh6,EA067,No secondary type,EA067-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +87627,Nh7,EA067,No secondary type,EA067-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +87628,Nh8,EA067,No secondary type,EA067-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +87629,Nh9,EA067,No secondary type,EA067-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +87630,Ni1,EA067,No secondary type,EA067-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +87631,Ni2,EA067,No secondary type,EA067-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +87632,Ni3,EA067,No secondary type,EA067-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +87633,Ni4,EA067,No secondary type,EA067-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +87634,Ni5,EA067,No secondary type,EA067-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +87635,Ni6,EA067,No secondary type,EA067-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +87636,Ni7,EA067,No secondary type,EA067-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +87637,Ni8,EA067,?,EA067-NA,,,,,, +87638,Ni9,EA067,?,EA067-NA,,,,,, +87639,Nj1,EA067,?,EA067-NA,,,,,, +87640,Nj10,EA067,?,EA067-NA,,,,,, +87641,Nj11,EA067,?,EA067-NA,,,,,, +87642,Nj12,EA067,?,EA067-NA,,,,,, +87643,Nj13,EA067,?,EA067-NA,,,,,, +87644,Nj14,EA067,?,EA067-NA,,,,,, +87645,Nj2,EA067,No secondary type,EA067-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +87646,Nj3,EA067,No secondary type,EA067-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +87647,Nj4,EA067,?,EA067-NA,,,,,, +87648,Nj5,EA067,?,EA067-NA,,,,,, +87649,Nj6,EA067,No secondary type,EA067-9,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +87650,Nj7,EA067,?,EA067-NA,,,,,, +87651,Nj8,EA067,No secondary type,EA067-9,,foster1948,,1500,EthnographicAtlas_1967_p121, +87652,Nj9,EA067,No secondary type,EA067-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +87653,Sa1,EA067,No secondary type,EA067-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +87654,Sa10,EA067,No secondary type,EA067-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +87655,Sa11,EA067,No secondary type,EA067-9,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +87656,Sa12,EA067,No secondary type,EA067-9,,stone1948,,1948,EthnographicAtlas_1967_p121, +87657,Sa13,EA067,No secondary type,EA067-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +87658,Sa14,EA067,?,EA067-NA,,,,,, +87659,Sa15,EA067,?,EA067-NA,,,,,, +87660,Sa16,EA067,?,EA067-NA,,,,,, +87661,Sa17,EA067,?,EA067-NA,,,,,, +87662,Sa2,EA067,?,EA067-NA,,,,,, +87663,Sa3,EA067,No secondary type,EA067-9,"Though the Choroti themselves are egalitarian, the coresident Ladinos are stratified into classes",wisdom1940,,1930,EthnographicAtlas_1967_p121, +87664,Sa4,EA067,No secondary type,EA067-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +87665,Sa5,EA067,No secondary type,EA067-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +87666,Sa6,EA067,No secondary type,EA067-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +87667,Sa7,EA067,No secondary type,EA067-9,"Though egalitarian themselves, the Black Carib form an ethnic caste in Honduran society",solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +87668,Sa8,EA067,No secondary type,EA067-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +87669,Sa9,EA067,No secondary type,EA067-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +87670,Sb1,EA067,No secondary type,EA067-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +87671,Sb2,EA067,No secondary type,EA067-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +87672,Sb3,EA067,?,EA067-NA,,,,,, +87673,Sb4,EA067,No secondary type,EA067-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +87674,Sb5,EA067,No secondary type,EA067-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +87675,Sb6,EA067,No secondary type,EA067-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +87676,Sb7,EA067,No secondary type,EA067-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p121, +87677,Sb8,EA067,No secondary type,EA067-9,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +87678,Sb9,EA067,No secondary type,EA067-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +87679,Sc1,EA067,No secondary type,EA067-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +87680,Sc10,EA067,No secondary type,EA067-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p121, +87681,Sc11,EA067,No secondary type,EA067-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p121, +87682,Sc12,EA067,No secondary type,EA067-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +87683,Sc13,EA067,No secondary type,EA067-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +87684,Sc14,EA067,?,EA067-NA,,,,,, +87685,Sc15,EA067,No secondary type,EA067-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +87686,Sc16,EA067,No secondary type,EA067-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +87687,Sc17,EA067,No secondary type,EA067-9,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +87688,Sc18,EA067,No secondary type,EA067-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +87689,Sc2,EA067,No secondary type,EA067-9,,leedsnd,,1950,EthnographicAtlas_1967_p121, +87690,Sc3,EA067,No secondary type,EA067-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +87691,Sc4,EA067,No secondary type,EA067-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +87692,Sc5,EA067,No secondary type,EA067-9,,farabee1918,,1900,EthnographicAtlas_1967_p121, +87693,Sc6,EA067,No secondary type,EA067-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87694,Sc7,EA067,No secondary type,EA067-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +87695,Sc8,EA067,No secondary type,EA067-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +87696,Sc9,EA067,No secondary type,EA067-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +87697,Sd1,EA067,No secondary type,EA067-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87698,Sd2,EA067,No secondary type,EA067-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +87699,Sd3,EA067,No secondary type,EA067-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +87700,Sd4,EA067,No secondary type,EA067-9,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +87701,Sd5,EA067,No secondary type,EA067-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +87702,Sd6,EA067,No secondary type,EA067-9,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +87703,Sd7,EA067,No secondary type,EA067-9,,fock1963,,1950,EthnographicAtlas_1967_p121, +87704,Sd8,EA067,No secondary type,EA067-9,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +87705,Sd9,EA067,No secondary type,EA067-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87706,Se1,EA067,No secondary type,EA067-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +87707,Se10,EA067,No secondary type,EA067-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +87708,Se11,EA067,No secondary type,EA067-9,,prost1965,,1960,EthnographicAtlas_1967_p125, +87709,Se12,EA067,?,EA067-NA,,,,,, +87710,Se2,EA067,No secondary type,EA067-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +87711,Se3,EA067,No secondary type,EA067-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +87712,Se4,EA067,No secondary type,EA067-9,,fejos1943,,1940,EthnographicAtlas_1967_p121, +87713,Se5,EA067,No secondary type,EA067-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +87714,Se6,EA067,No secondary type,EA067-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +87715,Se7,EA067,No secondary type,EA067-9,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87716,Se8,EA067,No secondary type,EA067-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +87717,Se9,EA067,No secondary type,EA067-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +87718,Sf1,EA067,Elite stratification,EA067-3,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +87719,Sf2,EA067,No secondary type,EA067-9,But the Aymara form a lower caste in Bolivian society,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +87720,Sf3,EA067,No secondary type,EA067-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +87721,Sf4,EA067,No secondary type,EA067-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +87722,Sf5,EA067,?,EA067-NA,,,,,, +87723,Sf6,EA067,Complex stratification,EA067-5,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +87724,Sf7,EA067,No secondary type,EA067-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +87725,Sf8,EA067,?,EA067-NA,,,,,, +87726,Sf9,EA067,?,EA067-NA,,,,,, +87727,Sg1,EA067,No secondary type,EA067-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +87728,Sg2,EA067,No secondary type,EA067-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87729,Sg3,EA067,No secondary type,EA067-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +87730,Sg4,EA067,No secondary type,EA067-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +87731,Sg5,EA067,No secondary type,EA067-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87732,Sh1,EA067,No secondary type,EA067-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +87733,Sh2,EA067,No secondary type,EA067-9,Land is owned collectively by extended families,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +87734,Sh3,EA067,No secondary type,EA067-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +87735,Sh4,EA067,No secondary type,EA067-9,,oberg1949,,1940,EthnographicAtlas_1967_p125, +87736,Sh5,EA067,No secondary type,EA067-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +87737,Sh6,EA067,No secondary type,EA067-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +87738,Sh7,EA067,?,EA067-NA,,,,,, +87739,Sh8,EA067,No secondary type,EA067-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +87740,Sh9,EA067,No secondary type,EA067-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +87741,Si1,EA067,No secondary type,EA067-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87742,Si10,EA067,No secondary type,EA067-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +87743,Si2,EA067,No secondary type,EA067-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +87744,Si3,EA067,No secondary type,EA067-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87745,Si4,EA067,No secondary type,EA067-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +87746,Si5,EA067,No secondary type,EA067-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +87747,Si6,EA067,No secondary type,EA067-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +87748,Si7,EA067,No secondary type,EA067-9,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +87749,Si8,EA067,No secondary type,EA067-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +87750,Si9,EA067,?,EA067-NA,,,,,, +87751,Sj1,EA067,No secondary type,EA067-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +87752,Sj10,EA067,No secondary type,EA067-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87753,Sj11,EA067,No secondary type,EA067-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +87754,Sj2,EA067,No secondary type,EA067-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +87755,Sj3,EA067,No secondary type,EA067-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +87756,Sj4,EA067,No secondary type,EA067-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +87757,Sj5,EA067,No secondary type,EA067-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +87758,Sj6,EA067,No secondary type,EA067-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +87759,Sj7,EA067,No secondary type,EA067-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +87760,Sj8,EA067,No secondary type,EA067-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +87761,Sj9,EA067,No secondary type,EA067-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +87762,ch12,EA067,Wealth distinctions,EA067-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +87763,ch13,EA067,No secondary type,EA067-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +87764,ch14,EA067,Elite stratification,EA067-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +87765,ch15,EA067,Wealth distinctions,EA067-2,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +87766,ch16,EA067,Wealth distinctions,EA067-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +87767,ch17,EA067,No secondary type,EA067-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +87768,ch18,EA067,No secondary type,EA067-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +87769,ch19,EA067,No secondary type,EA067-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +87770,ch20,EA067,Wealth distinctions,EA067-2,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +87771,ch21,EA067,Wealth distinctions,EA067-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +87772,ch22,EA067,No secondary type,EA067-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +87773,ch23,EA067,Dual stratification,EA067-4,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +87774,ch24,EA067,No secondary type,EA067-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +87775,ch25,EA067,Wealth distinctions,EA067-2,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +87776,ch26,EA067,Elite stratification,EA067-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +87777,ch27,EA067,No secondary type,EA067-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +87778,ch28,EA067,No secondary type,EA067-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +87779,ec12,EA067,No secondary type,EA067-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +87780,ec13,EA067,No secondary type,EA067-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +87781,ec14,EA067,No secondary type,EA067-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +87782,ec15,EA067,No secondary type,EA067-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +87783,ec16,EA067,No secondary type,EA067-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +87784,ec17,EA067,No secondary type,EA067-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +87785,ec18,EA067,No secondary type,EA067-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +87786,ec19,EA067,No secondary type,EA067-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +87787,ec20,EA067,No secondary type,EA067-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +87788,ec21,EA067,No secondary type,EA067-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +87789,Aa1,EA068,Absence of distinctions,EA068-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +87790,Aa2,EA068,Absence of distinctions,EA068-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +87791,Aa3,EA068,Absence of distinctions,EA068-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +87792,Aa4,EA068,Absence of distinctions,EA068-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +87793,Aa5,EA068,Absence of distinctions,EA068-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +87794,Aa6,EA068,Absence of distinctions,EA068-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +87795,Aa7,EA068,Absence of distinctions,EA068-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +87796,Aa8,EA068,Absence of distinctions,EA068-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +87797,Aa9,EA068,Absence of distinctions,EA068-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +87798,Ab1,EA068,Absence of distinctions,EA068-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +87799,Ab10,EA068,Absence of distinctions,EA068-1,,hunter1936,,1936,EthnographicAtlas_1967_p65, +87800,Ab11,EA068,Absence of distinctions,EA068-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +87801,Ab12,EA068,Absence of distinctions,EA068-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +87802,Ab13,EA068,Ethnic stratification,EA068-3,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +87803,Ab14,EA068,Absence of distinctions,EA068-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +87804,Ab15,EA068,Absence of distinctions,EA068-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +87805,Ab16,EA068,Absence of distinctions,EA068-1,,earthy1933,,1930,EthnographicAtlas_1967_p65, +87806,Ab17,EA068,Absence of distinctions,EA068-1,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +87807,Ab18,EA068,?,EA068-NA,,,,,, +87808,Ab19,EA068,Absence of distinctions,EA068-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +87809,Ab2,EA068,Absence of distinctions,EA068-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +87810,Ab20,EA068,Absence of distinctions,EA068-1,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +87811,Ab21a,EA068,Absence of distinctions,EA068-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +87812,Ab21b,EA068,?,EA068-NA,,,,,, +87813,Ab22,EA068,?,EA068-NA,,,,,, +87814,Ab3,EA068,Absence of distinctions,EA068-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +87815,Ab4,EA068,Absence of distinctions,EA068-1,,junod1927,,1920,EthnographicAtlas_1967_p65, +87816,Ab5,EA068,Absence of distinctions,EA068-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +87817,Ab6,EA068,Absence of distinctions,EA068-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +87818,Ab7,EA068,Absence of distinctions,EA068-1,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +87819,Ab8,EA068,Absence of distinctions,EA068-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +87820,Ab9,EA068,Ethnic stratification,EA068-3,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +87821,Ac1,EA068,Absence of distinctions,EA068-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +87822,Ac10,EA068,Absence of distinctions,EA068-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +87823,Ac11,EA068,Absence of distinctions,EA068-1,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +87824,Ac12,EA068,Absence of distinctions,EA068-1,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +87825,Ac13,EA068,Absence of distinctions,EA068-1,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +87826,Ac14,EA068,Absence of distinctions,EA068-1,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +87827,Ac15,EA068,Absence of distinctions,EA068-1,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +87828,Ac16,EA068,?,EA068-NA,,,,,, +87829,Ac17,EA068,Absence of distinctions,EA068-1,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +87830,Ac18,EA068,?,EA068-NA,,,,,, +87831,Ac19,EA068,?,EA068-NA,,,,,, +87832,Ac2,EA068,Absence of distinctions,EA068-1,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +87833,Ac20,EA068,?,EA068-NA,,,,,, +87834,Ac21,EA068,Absence of distinctions,EA068-1,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +87835,Ac22,EA068,?,EA068-NA,,,,,, +87836,Ac23,EA068,Despised occupation groups,EA068-2,Dependent Pygmies,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +87837,Ac24,EA068,Absence of distinctions,EA068-1,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +87838,Ac25,EA068,Absence of distinctions,EA068-1,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +87839,Ac26,EA068,Absence of distinctions,EA068-1,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +87840,Ac27,EA068,Absence of distinctions,EA068-1,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +87841,Ac28,EA068,Absence of distinctions,EA068-1,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +87842,Ac29,EA068,?,EA068-NA,,,,,, +87843,Ac3,EA068,Absence of distinctions,EA068-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +87844,Ac30,EA068,Absence of distinctions,EA068-1,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +87845,Ac31,EA068,Absence of distinctions,EA068-1,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +87846,Ac32,EA068,Absence of distinctions,EA068-1,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +87847,Ac33,EA068,Absence of distinctions,EA068-1,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +87848,Ac34,EA068,Absence of distinctions,EA068-1,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +87849,Ac35,EA068,Absence of distinctions,EA068-1,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +87850,Ac36,EA068,Absence of distinctions,EA068-1,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +87851,Ac37,EA068,Absence of distinctions,EA068-1,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +87852,Ac38,EA068,Absence of distinctions,EA068-1,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +87853,Ac39,EA068,Absence of distinctions,EA068-1,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +87854,Ac4,EA068,Ethnic stratification,EA068-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +87855,Ac40,EA068,Absence of distinctions,EA068-1,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +87856,Ac41,EA068,Absence of distinctions,EA068-1,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +87857,Ac42,EA068,Absence of distinctions,EA068-1,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +87858,Ac43,EA068,?,EA068-NA,,,,,, +87859,Ac5,EA068,Absence of distinctions,EA068-1,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +87860,Ac6,EA068,Absence of distinctions,EA068-1,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +87861,Ac7,EA068,Absence of distinctions,EA068-1,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +87862,Ac8,EA068,Absence of distinctions,EA068-1,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +87863,Ac9,EA068,Absence of distinctions,EA068-1,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +87864,Ad1,EA068,Despised occupation groups,EA068-2,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +87865,Ad10,EA068,?,EA068-NA,,,,,, +87866,Ad11,EA068,Absence of distinctions,EA068-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +87867,Ad12,EA068,Absence of distinctions,EA068-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +87868,Ad13,EA068,Absence of distinctions,EA068-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +87869,Ad14,EA068,Despised occupation groups,EA068-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +87870,Ad15,EA068,Absence of distinctions,EA068-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +87871,Ad16,EA068,Absence of distinctions,EA068-1,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +87872,Ad17,EA068,Absence of distinctions,EA068-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +87873,Ad18,EA068,Absence of distinctions,EA068-1,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +87874,Ad19,EA068,Absence of distinctions,EA068-1,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +87875,Ad2,EA068,Absence of distinctions,EA068-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +87876,Ad20,EA068,Absence of distinctions,EA068-1,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +87877,Ad21,EA068,Absence of distinctions,EA068-1,,maurice193538,,1930,EthnographicAtlas_1967_p69, +87878,Ad22,EA068,Absence of distinctions,EA068-1,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +87879,Ad23,EA068,Absence of distinctions,EA068-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +87880,Ad24,EA068,Absence of distinctions,EA068-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +87881,Ad25,EA068,Absence of distinctions,EA068-1,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +87882,Ad26,EA068,Despised occupation groups,EA068-2,,sick1916,,1910,EthnographicAtlas_1967_p69, +87883,Ad27,EA068,Absence of distinctions,EA068-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +87884,Ad28,EA068,Absence of distinctions,EA068-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +87885,Ad29,EA068,?,EA068-NA,,,,,, +87886,Ad3,EA068,Absence of distinctions,EA068-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +87887,Ad30,EA068,?,EA068-NA,,,,,, +87888,Ad31,EA068,?,EA068-NA,,,,,, +87889,Ad32,EA068,?,EA068-NA,,,,,, +87890,Ad33,EA068,Absence of distinctions,EA068-1,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +87891,Ad34,EA068,?,EA068-NA,,,,,, +87892,Ad35,EA068,Absence of distinctions,EA068-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +87893,Ad36,EA068,Absence of distinctions,EA068-1,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +87894,Ad37,EA068,Absence of distinctions,EA068-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +87895,Ad38,EA068,Absence of distinctions,EA068-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +87896,Ad39,EA068,Despised occupation groups,EA068-2,,gray1963,,1950,EthnographicAtlas_1967_p69, +87897,Ad4,EA068,Absence of distinctions,EA068-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +87898,Ad40,EA068,Absence of distinctions,EA068-1,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +87899,Ad41,EA068,Absence of distinctions,EA068-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +87900,Ad42,EA068,Absence of distinctions,EA068-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +87901,Ad43,EA068,Absence of distinctions,EA068-1,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +87902,Ad44,EA068,Absence of distinctions,EA068-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +87903,Ad45,EA068,Ethnic stratification,EA068-3,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +87904,Ad46,EA068,Absence of distinctions,EA068-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +87905,Ad47,EA068,Absence of distinctions,EA068-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +87906,Ad48,EA068,Absence of distinctions,EA068-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +87907,Ad49,EA068,Absence of distinctions,EA068-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +87908,Ad5,EA068,Absence of distinctions,EA068-1,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +87909,Ad50,EA068,Absence of distinctions,EA068-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +87910,Ad51,EA068,Absence of distinctions,EA068-1,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +87911,Ad6,EA068,Absence of distinctions,EA068-1,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +87912,Ad7,EA068,Absence of distinctions,EA068-1,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +87913,Ad8,EA068,Absence of distinctions,EA068-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +87914,Ad9,EA068,Absence of distinctions,EA068-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +87915,Ae1,EA068,Ethnic stratification,EA068-3,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +87916,Ae10,EA068,Ethnic stratification,EA068-3,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +87917,Ae11,EA068,Absence of distinctions,EA068-1,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +87918,Ae12,EA068,Absence of distinctions,EA068-1,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +87919,Ae13,EA068,Absence of distinctions,EA068-1,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +87920,Ae14,EA068,Absence of distinctions,EA068-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +87921,Ae15,EA068,Ethnic stratification,EA068-3,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +87922,Ae16,EA068,?,EA068-NA,,,,,, +87923,Ae17,EA068,Absence of distinctions,EA068-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +87924,Ae18,EA068,Absence of distinctions,EA068-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +87925,Ae19,EA068,Absence of distinctions,EA068-1,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +87926,Ae2,EA068,Absence of distinctions,EA068-1,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +87927,Ae20,EA068,Ethnic stratification,EA068-3,Pygmies are attached as serfs to minor or minimal lineages,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +87928,Ae21,EA068,Absence of distinctions,EA068-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +87929,Ae22,EA068,Absence of distinctions,EA068-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +87930,Ae23,EA068,Ethnic stratification,EA068-3,Dependent Pygmies,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +87931,Ae24,EA068,Ethnic stratification,EA068-3,Dependent Pygmies,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +87932,Ae25,EA068,Absence of distinctions,EA068-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +87933,Ae26,EA068,Absence of distinctions,EA068-1,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +87934,Ae27,EA068,Absence of distinctions,EA068-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +87935,Ae28,EA068,Absence of distinctions,EA068-1,But there are a few dependent Pygmies,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +87936,Ae29,EA068,Absence of distinctions,EA068-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +87937,Ae3,EA068,Ethnic stratification,EA068-3,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +87938,Ae30,EA068,Ethnic stratification,EA068-3,Dependent Pygmies,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +87939,Ae31,EA068,Absence of distinctions,EA068-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +87940,Ae32,EA068,Absence of distinctions,EA068-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +87941,Ae33,EA068,Ethnic stratification,EA068-3,Dependent Pygmies,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +87942,Ae34,EA068,Absence of distinctions,EA068-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +87943,Ae35,EA068,Absence of distinctions,EA068-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +87944,Ae36,EA068,Absence of distinctions,EA068-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +87945,Ae37,EA068,Absence of distinctions,EA068-1,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +87946,Ae38,EA068,Absence of distinctions,EA068-1,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +87947,Ae39,EA068,Absence of distinctions,EA068-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +87948,Ae4,EA068,Ethnic stratification,EA068-3,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +87949,Ae40,EA068,Ethnic stratification,EA068-3,Dependent Pygmies,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +87950,Ae41,EA068,Ethnic stratification,EA068-3,Dependent Pygmies,andersson1953,,1940,EthnographicAtlas_1967_p69, +87951,Ae42,EA068,Ethnic stratification,EA068-3,Dependent Pygmies,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +87952,Ae43,EA068,Ethnic stratification,EA068-3,Dependent Pygmies,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +87953,Ae44,EA068,Absence of distinctions,EA068-1,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +87954,Ae45,EA068,Absence of distinctions,EA068-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +87955,Ae46,EA068,Ethnic stratification,EA068-3,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +87956,Ae47,EA068,Ethnic stratification,EA068-3,Dependent Pygmies,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +87957,Ae48,EA068,Absence of distinctions,EA068-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +87958,Ae49,EA068,?,EA068-NA,,,,,, +87959,Ae5,EA068,Absence of distinctions,EA068-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +87960,Ae50,EA068,Absence of distinctions,EA068-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +87961,Ae51,EA068,Absence of distinctions,EA068-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +87962,Ae52,EA068,?,EA068-NA,,,,,, +87963,Ae53,EA068,Ethnic stratification,EA068-3,Dependent Pygmies,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +87964,Ae54,EA068,?,EA068-NA,,,,,, +87965,Ae55,EA068,Absence of distinctions,EA068-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +87966,Ae56,EA068,Absence of distinctions,EA068-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +87967,Ae57,EA068,Absence of distinctions,EA068-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +87968,Ae58,EA068,Absence of distinctions,EA068-1,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +87969,Ae59,EA068,Absence of distinctions,EA068-1,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +87970,Ae6,EA068,Absence of distinctions,EA068-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +87971,Ae7,EA068,Absence of distinctions,EA068-1,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +87972,Ae8,EA068,Ethnic stratification,EA068-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +87973,Ae9,EA068,Absence of distinctions,EA068-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +87974,Af1,EA068,Absence of distinctions,EA068-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +87975,Af10,EA068,Absence of distinctions,EA068-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +87976,Af11,EA068,Absence of distinctions,EA068-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +87977,Af12,EA068,Absence of distinctions,EA068-1,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +87978,Af13,EA068,Absence of distinctions,EA068-1,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +87979,Af14,EA068,?,EA068-NA,,,,,, +87980,Af15,EA068,Absence of distinctions,EA068-1,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +87981,Af16,EA068,Absence of distinctions,EA068-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +87982,Af17,EA068,?,EA068-NA,,,,,, +87983,Af18,EA068,Absence of distinctions,EA068-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +87984,Af19,EA068,Absence of distinctions,EA068-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +87985,Af2,EA068,Absence of distinctions,EA068-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +87986,Af20,EA068,Absence of distinctions,EA068-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +87987,Af21,EA068,Absence of distinctions,EA068-1,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +87988,Af22,EA068,Absence of distinctions,EA068-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +87989,Af23,EA068,Absence of distinctions,EA068-1,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +87990,Af24,EA068,Absence of distinctions,EA068-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +87991,Af25,EA068,Absence of distinctions,EA068-1,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +87992,Af26,EA068,Absence of distinctions,EA068-1,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +87993,Af27,EA068,Absence of distinctions,EA068-1,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +87994,Af28,EA068,?,EA068-NA,,,,,, +87995,Af29,EA068,Absence of distinctions,EA068-1,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +87996,Af3,EA068,Absence of distinctions,EA068-1,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +87997,Af30,EA068,?,EA068-NA,,,,,, +87998,Af31,EA068,Absence of distinctions,EA068-1,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +87999,Af32,EA068,Absence of distinctions,EA068-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88000,Af33,EA068,Absence of distinctions,EA068-1,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88001,Af34,EA068,Absence of distinctions,EA068-1,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88002,Af35,EA068,?,EA068-NA,,,,,, +88003,Af36,EA068,Absence of distinctions,EA068-1,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +88004,Af37,EA068,Absence of distinctions,EA068-1,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +88005,Af38,EA068,?,EA068-NA,,,,,, +88006,Af39,EA068,Absence of distinctions,EA068-1,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +88007,Af4,EA068,Absence of distinctions,EA068-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +88008,Af40,EA068,Absence of distinctions,EA068-1,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +88009,Af41,EA068,Absence of distinctions,EA068-1,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +88010,Af42,EA068,Absence of distinctions,EA068-1,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +88011,Af43,EA068,?,EA068-NA,,,,,, +88012,Af44,EA068,Absence of distinctions,EA068-1,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +88013,Af45,EA068,Absence of distinctions,EA068-1,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +88014,Af46,EA068,?,EA068-NA,,,,,, +88015,Af47,EA068,Absence of distinctions,EA068-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +88016,Af48,EA068,?,EA068-NA,,,,,, +88017,Af49,EA068,Absence of distinctions,EA068-1,,schwab1947,,1940,EthnographicAtlas_1967_p73, +88018,Af5,EA068,Absence of distinctions,EA068-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +88019,Af50,EA068,Absence of distinctions,EA068-1,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +88020,Af51,EA068,Absence of distinctions,EA068-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +88021,Af52,EA068,Absence of distinctions,EA068-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +88022,Af53,EA068,?,EA068-NA,,,,,, +88023,Af54,EA068,Absence of distinctions,EA068-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +88024,Af55,EA068,Absence of distinctions,EA068-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +88025,Af56,EA068,Absence of distinctions,EA068-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +88026,Af57,EA068,Absence of distinctions,EA068-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +88027,Af58,EA068,Absence of distinctions,EA068-1,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +88028,Af6,EA068,Absence of distinctions,EA068-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +88029,Af7,EA068,Absence of distinctions,EA068-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +88030,Af8,EA068,Absence of distinctions,EA068-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +88031,Af9,EA068,Absence of distinctions,EA068-1,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +88032,Ag1,EA068,Despised occupation groups,EA068-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +88033,Ag10,EA068,Absence of distinctions,EA068-1,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +88034,Ag11,EA068,Absence of distinctions,EA068-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +88035,Ag12,EA068,Absence of distinctions,EA068-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +88036,Ag13,EA068,Absence of distinctions,EA068-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +88037,Ag14,EA068,Absence of distinctions,EA068-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +88038,Ag15,EA068,Absence of distinctions,EA068-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +88039,Ag16,EA068,Absence of distinctions,EA068-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +88040,Ag17,EA068,?,EA068-NA,,,,,, +88041,Ag18,EA068,Absence of distinctions,EA068-1,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +88042,Ag19,EA068,Absence of distinctions,EA068-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +88043,Ag2,EA068,Despised occupation groups,EA068-2,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +88044,Ag20,EA068,Absence of distinctions,EA068-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +88045,Ag21,EA068,Absence of distinctions,EA068-1,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +88046,Ag22,EA068,Despised occupation groups,EA068-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +88047,Ag23,EA068,Despised occupation groups,EA068-2,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +88048,Ag24,EA068,?,EA068-NA,,,,,, +88049,Ag25,EA068,Despised occupation groups,EA068-2,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +88050,Ag26,EA068,Despised occupation groups,EA068-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +88051,Ag27,EA068,?,EA068-NA,,,,,, +88052,Ag28,EA068,?,EA068-NA,,,,,, +88053,Ag29,EA068,?,EA068-NA,,,,,, +88054,Ag3,EA068,Despised occupation groups,EA068-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +88055,Ag30,EA068,Despised occupation groups,EA068-2,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +88056,Ag31,EA068,Despised occupation groups,EA068-2,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +88057,Ag32,EA068,Despised occupation groups,EA068-2,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +88058,Ag33,EA068,?,EA068-NA,,,,,, +88059,Ag34,EA068,Absence of distinctions,EA068-1,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +88060,Ag35,EA068,Absence of distinctions,EA068-1,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +88061,Ag36,EA068,?,EA068-NA,,,,,, +88062,Ag37,EA068,Absence of distinctions,EA068-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +88063,Ag38,EA068,Absence of distinctions,EA068-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +88064,Ag39,EA068,Absence of distinctions,EA068-1,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +88065,Ag4,EA068,Absence of distinctions,EA068-1,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +88066,Ag40,EA068,Absence of distinctions,EA068-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +88067,Ag41,EA068,Absence of distinctions,EA068-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +88068,Ag42,EA068,?,EA068-NA,,,,,, +88069,Ag43,EA068,?,EA068-NA,,,,,, +88070,Ag44,EA068,?,EA068-NA,,,,,, +88071,Ag45,EA068,Despised occupation groups,EA068-2,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +88072,Ag46,EA068,?,EA068-NA,,,,,, +88073,Ag47,EA068,Despised occupation groups,EA068-2,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +88074,Ag48,EA068,Absence of distinctions,EA068-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +88075,Ag49,EA068,Absence of distinctions,EA068-1,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +88076,Ag5,EA068,?,EA068-NA,,,,,, +88077,Ag50,EA068,Absence of distinctions,EA068-1,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +88078,Ag51,EA068,Absence of distinctions,EA068-1,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +88079,Ag52,EA068,?,EA068-NA,,,,,, +88080,Ag53,EA068,Absence of distinctions,EA068-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +88081,Ag54,EA068,Absence of distinctions,EA068-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +88082,Ag6,EA068,Despised occupation groups,EA068-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +88083,Ag7,EA068,Despised occupation groups,EA068-2,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +88084,Ag8,EA068,Despised occupation groups,EA068-2,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +88085,Ag9,EA068,Despised occupation groups,EA068-2,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +88086,Ah1,EA068,Absence of distinctions,EA068-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88087,Ah10,EA068,Absence of distinctions,EA068-1,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +88088,Ah11,EA068,?,EA068-NA,,,,,, +88089,Ah12,EA068,?,EA068-NA,,,,,, +88090,Ah13,EA068,Absence of distinctions,EA068-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +88091,Ah14,EA068,Absence of distinctions,EA068-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +88092,Ah15,EA068,Absence of distinctions,EA068-1,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +88093,Ah16,EA068,Absence of distinctions,EA068-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +88094,Ah17,EA068,?,EA068-NA,,,,,, +88095,Ah18,EA068,?,EA068-NA,,,,,, +88096,Ah19,EA068,Absence of distinctions,EA068-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +88097,Ah2,EA068,Absence of distinctions,EA068-1,,meek1931a,,1920,EthnographicAtlas_1967_p77, +88098,Ah20,EA068,Absence of distinctions,EA068-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +88099,Ah21,EA068,?,EA068-NA,,,,,, +88100,Ah22,EA068,Absence of distinctions,EA068-1,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +88101,Ah23,EA068,?,EA068-NA,,,,,, +88102,Ah24,EA068,Absence of distinctions,EA068-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +88103,Ah25,EA068,Absence of distinctions,EA068-1,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +88104,Ah26,EA068,Absence of distinctions,EA068-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +88105,Ah27,EA068,?,EA068-NA,,,,,, +88106,Ah28,EA068,Absence of distinctions,EA068-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +88107,Ah29,EA068,Absence of distinctions,EA068-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +88108,Ah3,EA068,Absence of distinctions,EA068-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +88109,Ah30,EA068,Absence of distinctions,EA068-1,,meek1931b,,1920,EthnographicAtlas_1967_p77, +88110,Ah31,EA068,Absence of distinctions,EA068-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +88111,Ah32,EA068,Absence of distinctions,EA068-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +88112,Ah33,EA068,Absence of distinctions,EA068-1,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +88113,Ah34,EA068,?,EA068-NA,,,,,, +88114,Ah35,EA068,?,EA068-NA,,,,,, +88115,Ah36,EA068,?,EA068-NA,,,,,, +88116,Ah37,EA068,?,EA068-NA,,,,,, +88117,Ah38,EA068,Absence of distinctions,EA068-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +88118,Ah39,EA068,Absence of distinctions,EA068-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +88119,Ah4,EA068,Absence of distinctions,EA068-1,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +88120,Ah5,EA068,Despised occupation groups,EA068-2,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +88121,Ah6,EA068,Absence of distinctions,EA068-1,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +88122,Ah7,EA068,Despised occupation groups,EA068-2,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +88123,Ah8,EA068,Absence of distinctions,EA068-1,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +88124,Ah9,EA068,Absence of distinctions,EA068-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +88125,Ai1,EA068,Absence of distinctions,EA068-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +88126,Ai10,EA068,Absence of distinctions,EA068-1,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +88127,Ai11,EA068,Absence of distinctions,EA068-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +88128,Ai12,EA068,Absence of distinctions,EA068-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +88129,Ai13,EA068,Absence of distinctions,EA068-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +88130,Ai14,EA068,?,EA068-NA,,,,,, +88131,Ai15,EA068,Absence of distinctions,EA068-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +88132,Ai16,EA068,Despised occupation groups,EA068-2,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +88133,Ai17,EA068,?,EA068-NA,,,,,, +88134,Ai18,EA068,?,EA068-NA,,,,,, +88135,Ai19,EA068,?,EA068-NA,,,,,, +88136,Ai2,EA068,Absence of distinctions,EA068-1,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +88137,Ai20,EA068,?,EA068-NA,,,,,, +88138,Ai21,EA068,?,EA068-NA,,,,,, +88139,Ai22,EA068,Absence of distinctions,EA068-1,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +88140,Ai23,EA068,Absence of distinctions,EA068-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +88141,Ai24,EA068,Absence of distinctions,EA068-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +88142,Ai25,EA068,Absence of distinctions,EA068-1,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +88143,Ai26,EA068,Absence of distinctions,EA068-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +88144,Ai27,EA068,?,EA068-NA,,,,,, +88145,Ai28,EA068,Absence of distinctions,EA068-1,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +88146,Ai29,EA068,Absence of distinctions,EA068-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +88147,Ai3,EA068,Absence of distinctions,EA068-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +88148,Ai30,EA068,Despised occupation groups,EA068-2,Dependent Pygmies,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +88149,Ai31,EA068,Absence of distinctions,EA068-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +88150,Ai32,EA068,Absence of distinctions,EA068-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +88151,Ai33,EA068,Absence of distinctions,EA068-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +88152,Ai34,EA068,Absence of distinctions,EA068-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +88153,Ai35,EA068,Absence of distinctions,EA068-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +88154,Ai36,EA068,Absence of distinctions,EA068-1,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +88155,Ai37,EA068,Absence of distinctions,EA068-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +88156,Ai38,EA068,Absence of distinctions,EA068-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +88157,Ai39,EA068,Absence of distinctions,EA068-1,,nadel1947,,1940,EthnographicAtlas_1967_p77, +88158,Ai4,EA068,?,EA068-NA,,,,,, +88159,Ai40,EA068,Absence of distinctions,EA068-1,,nadel1947,,1940,EthnographicAtlas_1967_p77, +88160,Ai41,EA068,Absence of distinctions,EA068-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +88161,Ai42,EA068,Absence of distinctions,EA068-1,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +88162,Ai43,EA068,Absence of distinctions,EA068-1,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +88163,Ai44,EA068,?,EA068-NA,,,,,, +88164,Ai45,EA068,?,EA068-NA,,,,,, +88165,Ai46,EA068,Absence of distinctions,EA068-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +88166,Ai47,EA068,Absence of distinctions,EA068-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +88167,Ai5,EA068,Absence of distinctions,EA068-1,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +88168,Ai6,EA068,Absence of distinctions,EA068-1,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +88169,Ai7,EA068,Absence of distinctions,EA068-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +88170,Ai8,EA068,Absence of distinctions,EA068-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +88171,Ai9,EA068,Absence of distinctions,EA068-1,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +88172,Aj1,EA068,Absence of distinctions,EA068-1,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +88173,Aj10,EA068,Absence of distinctions,EA068-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +88174,Aj11,EA068,Absence of distinctions,EA068-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +88175,Aj12,EA068,Despised occupation groups,EA068-2,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +88176,Aj13,EA068,Despised occupation groups,EA068-2,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +88177,Aj14,EA068,Absence of distinctions,EA068-1,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +88178,Aj15,EA068,Despised occupation groups,EA068-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +88179,Aj16,EA068,Absence of distinctions,EA068-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +88180,Aj17,EA068,Absence of distinctions,EA068-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +88181,Aj18,EA068,?,EA068-NA,,,,,, +88182,Aj19,EA068,?,EA068-NA,,,,,, +88183,Aj2,EA068,Despised occupation groups,EA068-2,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +88184,Aj20,EA068,Despised occupation groups,EA068-2,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +88185,Aj21,EA068,Absence of distinctions,EA068-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +88186,Aj22,EA068,Absence of distinctions,EA068-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +88187,Aj23,EA068,Absence of distinctions,EA068-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +88188,Aj24,EA068,Absence of distinctions,EA068-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +88189,Aj25,EA068,Despised occupation groups,EA068-2,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +88190,Aj26,EA068,?,EA068-NA,,,,,, +88191,Aj27,EA068,?,EA068-NA,,,,,, +88192,Aj28,EA068,Despised occupation groups,EA068-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +88193,Aj29,EA068,?,EA068-NA,,,,,, +88194,Aj3,EA068,Ethnic stratification,EA068-3,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +88195,Aj30,EA068,?,EA068-NA,,,,,, +88196,Aj31,EA068,?,EA068-NA,,,,,, +88197,Aj4,EA068,Absence of distinctions,EA068-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +88198,Aj5,EA068,Absence of distinctions,EA068-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +88199,Aj6,EA068,Absence of distinctions,EA068-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +88200,Aj7,EA068,Absence of distinctions,EA068-1,"Entry follows Huntingford, contra earlier reports of despised occupation groups (code ""2"")",hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +88201,Aj8,EA068,Despised occupation groups,EA068-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +88202,Aj9,EA068,Despised occupation groups,EA068-2,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +88203,Ca1,EA068,Despised occupation groups,EA068-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +88204,Ca10,EA068,Ethnic stratification,EA068-3,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +88205,Ca11,EA068,Despised occupation groups,EA068-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +88206,Ca12,EA068,Despised occupation groups,EA068-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +88207,Ca13,EA068,Despised occupation groups,EA068-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +88208,Ca14,EA068,Despised occupation groups,EA068-2,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +88209,Ca15,EA068,Despised occupation groups,EA068-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +88210,Ca16,EA068,Despised occupation groups,EA068-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +88211,Ca17,EA068,Absence of distinctions,EA068-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +88212,Ca18,EA068,?,EA068-NA,,,,,, +88213,Ca19,EA068,Despised occupation groups,EA068-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +88214,Ca2,EA068,Despised occupation groups,EA068-2,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +88215,Ca20,EA068,Despised occupation groups,EA068-2,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +88216,Ca21,EA068,Despised occupation groups,EA068-2,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +88217,Ca22,EA068,Despised occupation groups,EA068-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +88218,Ca23,EA068,Despised occupation groups,EA068-2,,jensen1959,,1950,EthnographicAtlas_1967_p81, +88219,Ca24,EA068,Despised occupation groups,EA068-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +88220,Ca25,EA068,Despised occupation groups,EA068-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +88221,Ca26,EA068,Despised occupation groups,EA068-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +88222,Ca27,EA068,Despised occupation groups,EA068-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +88223,Ca28,EA068,Despised occupation groups,EA068-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +88224,Ca29,EA068,Despised occupation groups,EA068-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +88225,Ca3,EA068,Despised occupation groups,EA068-2,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +88226,Ca30,EA068,Despised occupation groups,EA068-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +88227,Ca31,EA068,Absence of distinctions,EA068-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +88228,Ca32,EA068,Absence of distinctions,EA068-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +88229,Ca33,EA068,Absence of distinctions,EA068-1,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +88230,Ca34,EA068,?,EA068-NA,,,,,, +88231,Ca35,EA068,?,EA068-NA,,,,,, +88232,Ca36,EA068,?,EA068-NA,,,,,, +88233,Ca37,EA068,?,EA068-NA,,,,,, +88234,Ca38,EA068,?,EA068-NA,,,,,, +88235,Ca39,EA068,Despised occupation groups,EA068-2,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +88236,Ca4,EA068,?,EA068-NA,,,,,, +88237,Ca40,EA068,Despised occupation groups,EA068-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +88238,Ca41,EA068,Despised occupation groups,EA068-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +88239,Ca42,EA068,Despised occupation groups,EA068-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +88240,Ca43,EA068,?,EA068-NA,,,,,, +88241,Ca5,EA068,?,EA068-NA,,,,,, +88242,Ca6,EA068,Absence of distinctions,EA068-1,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +88243,Ca7,EA068,Despised occupation groups,EA068-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +88244,Ca8,EA068,Despised occupation groups,EA068-2,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +88245,Ca9,EA068,?,EA068-NA,,,,,, +88246,Cb1,EA068,Absence of distinctions,EA068-1,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +88247,Cb10,EA068,Absence of distinctions,EA068-1,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +88248,Cb11,EA068,?,EA068-NA,,,,,, +88249,Cb12,EA068,?,EA068-NA,,,,,, +88250,Cb13,EA068,?,EA068-NA,,,,,, +88251,Cb14,EA068,?,EA068-NA,,,,,, +88252,Cb15,EA068,Ethnic stratification,EA068-3,"""Descendants of slaves . . . do not fully enjoy the privileges that Humr do""",cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +88253,Cb16,EA068,?,EA068-NA,,,,,, +88254,Cb17,EA068,Despised occupation groups,EA068-2,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +88255,Cb18,EA068,Despised occupation groups,EA068-2,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +88256,Cb19,EA068,Despised occupation groups,EA068-2,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +88257,Cb2,EA068,Despised occupation groups,EA068-2,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +88258,Cb20,EA068,Despised occupation groups,EA068-2,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +88259,Cb21,EA068,Absence of distinctions,EA068-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +88260,Cb22,EA068,Despised occupation groups,EA068-2,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +88261,Cb23,EA068,Despised occupation groups,EA068-2,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +88262,Cb24,EA068,Absence of distinctions,EA068-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +88263,Cb25,EA068,Ethnic stratification,EA068-3,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +88264,Cb26,EA068,Despised occupation groups,EA068-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +88265,Cb27,EA068,Despised occupation groups,EA068-2,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +88266,Cb28,EA068,?,EA068-NA,,,,,, +88267,Cb29,EA068,?,EA068-NA,,,,,, +88268,Cb3,EA068,Despised occupation groups,EA068-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +88269,Cb4,EA068,?,EA068-NA,,,,,, +88270,Cb5,EA068,Despised occupation groups,EA068-2,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +88271,Cb6,EA068,Absence of distinctions,EA068-1,,woodnd,,1920,EthnographicAtlas_1967_p81, +88272,Cb7,EA068,Absence of distinctions,EA068-1,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +88273,Cb8,EA068,?,EA068-NA,,,,,, +88274,Cb9,EA068,Absence of distinctions,EA068-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +88275,Cc1,EA068,Complex caste stratification,EA068-4,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +88276,Cc10,EA068,Complex caste stratification,EA068-4,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +88277,Cc11,EA068,?,EA068-NA,,,,,, +88278,Cc12,EA068,Despised occupation groups,EA068-2,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +88279,Cc13,EA068,Despised occupation groups,EA068-2,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +88280,Cc14,EA068,Despised occupation groups,EA068-2,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +88281,Cc15,EA068,Despised occupation groups,EA068-2,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +88282,Cc16,EA068,Despised occupation groups,EA068-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +88283,Cc17,EA068,Despised occupation groups,EA068-2,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +88284,Cc18,EA068,Despised occupation groups,EA068-2,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +88285,Cc19,EA068,Despised occupation groups,EA068-2,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +88286,Cc2,EA068,Despised occupation groups,EA068-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +88287,Cc20,EA068,Despised occupation groups,EA068-2,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +88288,Cc3,EA068,?,EA068-NA,,,,,, +88289,Cc4,EA068,Ethnic stratification,EA068-3,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +88290,Cc5,EA068,Ethnic stratification,EA068-3,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +88291,Cc6,EA068,?,EA068-NA,,,,,, +88292,Cc7,EA068,Complex caste stratification,EA068-4,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88293,Cc8,EA068,Despised occupation groups,EA068-2,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +88294,Cc9,EA068,Complex caste stratification,EA068-4,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +88295,Cd1,EA068,?,EA068-NA,,,,,, +88296,Cd10,EA068,?,EA068-NA,,,,,, +88297,Cd11,EA068,Despised occupation groups,EA068-2,Midwives and mortuary specialists were outcaste groups,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +88298,Cd12,EA068,Despised occupation groups,EA068-2,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +88299,Cd13,EA068,?,EA068-NA,,,,,, +88300,Cd14,EA068,?,EA068-NA,,,,,, +88301,Cd15,EA068,?,EA068-NA,,,,,, +88302,Cd16,EA068,Despised occupation groups,EA068-2,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +88303,Cd17,EA068,?,EA068-NA,,,,,, +88304,Cd18,EA068,?,EA068-NA,,,,,, +88305,Cd19,EA068,?,EA068-NA,,,,,, +88306,Cd2,EA068,Complex caste stratification,EA068-4,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +88307,Cd20,EA068,?,EA068-NA,Class distinctions are not marked,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +88308,Cd21,EA068,Despised occupation groups,EA068-2,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +88309,Cd3,EA068,Despised occupation groups,EA068-2,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +88310,Cd4,EA068,?,EA068-NA,,,,,, +88311,Cd5,EA068,Absence of distinctions,EA068-1,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +88312,Cd6,EA068,?,EA068-NA,,,,,, +88313,Cd7,EA068,?,EA068-NA,,,,,, +88314,Cd8,EA068,?,EA068-NA,,,,,, +88315,Cd9,EA068,?,EA068-NA,,,,,, +88316,Ce1,EA068,?,EA068-NA,,,,,, +88317,Ce2,EA068,Absence of distinctions,EA068-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +88318,Ce3,EA068,Absence of distinctions,EA068-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +88319,Ce4,EA068,Absence of distinctions,EA068-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88320,Ce5,EA068,Absence of distinctions,EA068-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +88321,Ce6,EA068,?,EA068-NA,,,,,, +88322,Ce7,EA068,Absence of distinctions,EA068-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +88323,Ce8,EA068,Absence of distinctions,EA068-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +88324,Cf1,EA068,Absence of distinctions,EA068-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +88325,Cf2,EA068,Ethnic stratification,EA068-3,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +88326,Cf3,EA068,Absence of distinctions,EA068-1,,munch1945,,1930,EthnographicAtlas_1967_p85, +88327,Cf4,EA068,Ethnic stratification,EA068-3,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +88328,Cf5,EA068,Absence of distinctions,EA068-1,,miner1939,,1930,EthnographicAtlas_1967_p85, +88329,Cg1,EA068,Absence of distinctions,EA068-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +88330,Cg2,EA068,Absence of distinctions,EA068-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +88331,Cg3,EA068,Absence of distinctions,EA068-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +88332,Cg4,EA068,Absence of distinctions,EA068-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +88333,Cg5,EA068,Absence of distinctions,EA068-1,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +88334,Ch1,EA068,Absence of distinctions,EA068-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +88335,Ch10,EA068,?,EA068-NA,,,,,, +88336,Ch11,EA068,Absence of distinctions,EA068-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +88337,Ch2,EA068,Absence of distinctions,EA068-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +88338,Ch3,EA068,Absence of distinctions,EA068-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +88339,Ch4,EA068,Absence of distinctions,EA068-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +88340,Ch5,EA068,Absence of distinctions,EA068-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +88341,Ch6,EA068,?,EA068-NA,,,,,, +88342,Ch7,EA068,Absence of distinctions,EA068-1,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +88343,Ch8,EA068,Absence of distinctions,EA068-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p85, +88344,Ch9,EA068,Despised occupation groups,EA068-2,Jews,maciuika1955,,1930,EthnographicAtlas_1967_p85, +88345,Ci1,EA068,Absence of distinctions,EA068-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +88346,Ci10,EA068,Absence of distinctions,EA068-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +88347,Ci11,EA068,Absence of distinctions,EA068-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +88348,Ci12,EA068,Absence of distinctions,EA068-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +88349,Ci2,EA068,Absence of distinctions,EA068-1,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +88350,Ci3,EA068,?,EA068-NA,,,,,, +88351,Ci4,EA068,Absence of distinctions,EA068-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +88352,Ci5,EA068,Absence of distinctions,EA068-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +88353,Ci6,EA068,?,EA068-NA,,,,,, +88354,Ci7,EA068,?,EA068-NA,,,,,, +88355,Ci8,EA068,?,EA068-NA,,,,,, +88356,Ci9,EA068,?,EA068-NA,,,,,, +88357,Cj1,EA068,?,EA068-NA,,,,,, +88358,Cj10,EA068,Despised occupation groups,EA068-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +88359,Cj2,EA068,Despised occupation groups,EA068-2,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +88360,Cj3,EA068,Absence of distinctions,EA068-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +88361,Cj4,EA068,Absence of distinctions,EA068-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +88362,Cj5,EA068,Absence of distinctions,EA068-1,,dickson1949,,1930,EthnographicAtlas_1967_p89, +88363,Cj6,EA068,?,EA068-NA,,,,,, +88364,Cj7,EA068,Absence of distinctions,EA068-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +88365,Cj8,EA068,Absence of distinctions,EA068-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +88366,Cj9,EA068,Despised occupation groups,EA068-2,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +88367,Ea1,EA068,Complex caste stratification,EA068-4,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p89, +88368,Ea10,EA068,Despised occupation groups,EA068-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +88369,Ea11,EA068,Despised occupation groups,EA068-2,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +88370,Ea12,EA068,?,EA068-NA,,,,,, +88371,Ea13,EA068,Complex caste stratification,EA068-4,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +88372,Ea2,EA068,Despised occupation groups,EA068-2,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +88373,Ea3,EA068,Despised occupation groups,EA068-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +88374,Ea4,EA068,Complex caste stratification,EA068-4,,barth1956b,,1950,EthnographicAtlas_1967_p89, +88375,Ea5,EA068,Despised occupation groups,EA068-2,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +88376,Ea6,EA068,Despised occupation groups,EA068-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +88377,Ea7,EA068,Despised occupation groups,EA068-2,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +88378,Ea8,EA068,?,EA068-NA,,,,,, +88379,Ea9,EA068,?,EA068-NA,,,,,, +88380,Eb1,EA068,Absence of distinctions,EA068-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +88381,Eb2,EA068,?,EA068-NA,,,,,, +88382,Eb3,EA068,Absence of distinctions,EA068-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +88383,Eb4,EA068,Absence of distinctions,EA068-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +88384,Eb5,EA068,?,EA068-NA,,,,,, +88385,Eb6,EA068,?,EA068-NA,,,,,, +88386,Eb7,EA068,Absence of distinctions,EA068-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +88387,Eb8,EA068,?,EA068-NA,,,,,, +88388,Ec1,EA068,Absence of distinctions,EA068-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +88389,Ec10,EA068,Absence of distinctions,EA068-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +88390,Ec11,EA068,Absence of distinctions,EA068-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +88391,Ec2,EA068,Absence of distinctions,EA068-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88392,Ec3,EA068,Absence of distinctions,EA068-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +88393,Ec4,EA068,Absence of distinctions,EA068-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +88394,Ec5,EA068,Absence of distinctions,EA068-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +88395,Ec6,EA068,Absence of distinctions,EA068-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +88396,Ec7,EA068,Absence of distinctions,EA068-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +88397,Ec8,EA068,Absence of distinctions,EA068-1,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +88398,Ec9,EA068,Absence of distinctions,EA068-1,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +88399,Ed1,EA068,Despised occupation groups,EA068-2,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +88400,Ed10,EA068,Absence of distinctions,EA068-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +88401,Ed13,EA068,?,EA068-NA,,,,,, +88402,Ed14,EA068,?,EA068-NA,,,,,, +88403,Ed15a,EA068,?,EA068-NA,,,,,, +88404,Ed15b,EA068,Absence of distinctions,EA068-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +88405,Ed16,EA068,?,EA068-NA,,,,,, +88406,Ed2,EA068,?,EA068-NA,,,,,, +88407,Ed3,EA068,Absence of distinctions,EA068-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +88408,Ed4,EA068,Absence of distinctions,EA068-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +88409,Ed5,EA068,Despised occupation groups,EA068-2,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88410,Ed6,EA068,Absence of distinctions,EA068-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +88411,Ed7,EA068,Absence of distinctions,EA068-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +88412,Ed8,EA068,Absence of distinctions,EA068-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +88413,Ed9,EA068,Absence of distinctions,EA068-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +88414,Ee1,EA068,Absence of distinctions,EA068-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +88415,Ee2,EA068,Despised occupation groups,EA068-2,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p89, +88416,Ee3,EA068,?,EA068-NA,,,,,, +88417,Ee4,EA068,?,EA068-NA,,,,,, +88418,Ee5,EA068,Complex caste stratification,EA068-4,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +88419,Ee6,EA068,Despised occupation groups,EA068-2,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +88420,Ee7,EA068,?,EA068-NA,,,,,, +88421,Ee8,EA068,Complex caste stratification,EA068-4,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +88422,Ef1,EA068,Absence of distinctions,EA068-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +88423,Ef10,EA068,?,EA068-NA,,,,,, +88424,Ef11,EA068,Complex caste stratification,EA068-4,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +88425,Ef2,EA068,Complex caste stratification,EA068-4,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +88426,Ef3,EA068,?,EA068-NA,,,,,, +88427,Ef4,EA068,?,EA068-NA,,,,,, +88428,Ef5,EA068,Complex caste stratification,EA068-4,The Bhil form part of a complex caste structure,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +88429,Ef6,EA068,Complex caste stratification,EA068-4,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +88430,Ef7,EA068,Complex caste stratification,EA068-4,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +88431,Ef8,EA068,Complex caste stratification,EA068-4,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +88432,Ef9,EA068,Complex caste stratification,EA068-4,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88433,Eg1,EA068,Absence of distinctions,EA068-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88434,Eg10,EA068,Complex caste stratification,EA068-4,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +88435,Eg11,EA068,?,EA068-NA,,,,,, +88436,Eg12,EA068,?,EA068-NA,,,,,, +88437,Eg13,EA068,Absence of distinctions,EA068-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88438,Eg14,EA068,?,EA068-NA,,,,,, +88439,Eg2,EA068,Complex caste stratification,EA068-4,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +88440,Eg3,EA068,Complex caste stratification,EA068-4,The Hindu caste system has exerted considerable influence,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +88441,Eg4,EA068,Absence of distinctions,EA068-1,Two endogamous moieties exhibit minor caste-like features,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +88442,Eg5,EA068,Complex caste stratification,EA068-4,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +88443,Eg6,EA068,Complex caste stratification,EA068-4,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +88444,Eg7,EA068,?,EA068-NA,,,,,, +88445,Eg8,EA068,Complex caste stratification,EA068-4,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +88446,Eg9,EA068,Absence of distinctions,EA068-1,,elwin1939,,1930,EthnographicAtlas_1967_p93, +88447,Eh1,EA068,Absence of distinctions,EA068-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +88448,Eh10,EA068,?,EA068-NA,,,,,, +88449,Eh2,EA068,Absence of distinctions,EA068-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +88450,Eh3,EA068,Absence of distinctions,EA068-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +88451,Eh4,EA068,Absence of distinctions,EA068-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88452,Eh5,EA068,Absence of distinctions,EA068-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +88453,Eh6,EA068,Complex caste stratification,EA068-4,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +88454,Eh7,EA068,Absence of distinctions,EA068-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +88455,Eh8,EA068,Absence of distinctions,EA068-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +88456,Eh9,EA068,Absence of distinctions,EA068-1,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +88457,Ei1,EA068,Absence of distinctions,EA068-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88458,Ei10,EA068,Absence of distinctions,EA068-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +88459,Ei11,EA068,Absence of distinctions,EA068-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +88460,Ei12,EA068,Absence of distinctions,EA068-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +88461,Ei13,EA068,Absence of distinctions,EA068-1,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +88462,Ei14,EA068,Absence of distinctions,EA068-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +88463,Ei15,EA068,?,EA068-NA,,,,,, +88464,Ei16,EA068,Absence of distinctions,EA068-1,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +88465,Ei17,EA068,?,EA068-NA,,,,,, +88466,Ei18,EA068,Absence of distinctions,EA068-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +88467,Ei19,EA068,Absence of distinctions,EA068-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +88468,Ei2,EA068,Absence of distinctions,EA068-1,,mills1922,,1920,EthnographicAtlas_1967_p93, +88469,Ei20,EA068,?,EA068-NA,,,,,, +88470,Ei3,EA068,Absence of distinctions,EA068-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +88471,Ei4,EA068,Absence of distinctions,EA068-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +88472,Ei5,EA068,Absence of distinctions,EA068-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +88473,Ei6,EA068,Absence of distinctions,EA068-1,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +88474,Ei7,EA068,Absence of distinctions,EA068-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +88475,Ei8,EA068,Absence of distinctions,EA068-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +88476,Ei9,EA068,?,EA068-NA,,,,,, +88477,Ej1,EA068,Absence of distinctions,EA068-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +88478,Ej10,EA068,Absence of distinctions,EA068-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +88479,Ej11,EA068,Absence of distinctions,EA068-1,"But formerly complex caste stratification (code ""4"")",lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +88480,Ej12,EA068,Absence of distinctions,EA068-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +88481,Ej13,EA068,Absence of distinctions,EA068-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +88482,Ej14,EA068,Absence of distinctions,EA068-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88483,Ej15,EA068,Ethnic stratification,EA068-3,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +88484,Ej16,EA068,Absence of distinctions,EA068-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +88485,Ej2,EA068,Absence of distinctions,EA068-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +88486,Ej3,EA068,Absence of distinctions,EA068-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +88487,Ej4,EA068,Absence of distinctions,EA068-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +88488,Ej5,EA068,Absence of distinctions,EA068-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +88489,Ej6,EA068,Absence of distinctions,EA068-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p93, +88490,Ej7,EA068,Absence of distinctions,EA068-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +88491,Ej8,EA068,Absence of distinctions,EA068-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +88492,Ej9,EA068,Absence of distinctions,EA068-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +88493,Ia1,EA068,Absence of distinctions,EA068-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +88494,Ia10,EA068,Absence of distinctions,EA068-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +88495,Ia11,EA068,Absence of distinctions,EA068-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p93, +88496,Ia12,EA068,Absence of distinctions,EA068-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +88497,Ia13,EA068,Absence of distinctions,EA068-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +88498,Ia14,EA068,Absence of distinctions,EA068-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +88499,Ia15,EA068,Absence of distinctions,EA068-1,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +88500,Ia16,EA068,Absence of distinctions,EA068-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +88501,Ia17,EA068,?,EA068-NA,,,,,, +88502,Ia18,EA068,?,EA068-NA,,,,,, +88503,Ia2,EA068,Absence of distinctions,EA068-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +88504,Ia3,EA068,Absence of distinctions,EA068-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +88505,Ia4,EA068,Absence of distinctions,EA068-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +88506,Ia5,EA068,Absence of distinctions,EA068-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +88507,Ia6,EA068,Absence of distinctions,EA068-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88508,Ia7,EA068,Absence of distinctions,EA068-1,,fox1954,,1950,EthnographicAtlas_1967_p93, +88509,Ia8,EA068,Absence of distinctions,EA068-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +88510,Ia9,EA068,Absence of distinctions,EA068-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +88511,Ib1,EA068,Absence of distinctions,EA068-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88512,Ib2,EA068,Absence of distinctions,EA068-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88513,Ib3,EA068,Complex caste stratification,EA068-4,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +88514,Ib4,EA068,Absence of distinctions,EA068-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +88515,Ib5,EA068,Absence of distinctions,EA068-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +88516,Ib6,EA068,Absence of distinctions,EA068-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +88517,Ib7,EA068,Absence of distinctions,EA068-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +88518,Ib8,EA068,Absence of distinctions,EA068-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +88519,Ib9,EA068,?,EA068-NA,,,,,, +88520,Ic1,EA068,Absence of distinctions,EA068-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88521,Ic10,EA068,Absence of distinctions,EA068-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +88522,Ic11,EA068,Absence of distinctions,EA068-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88523,Ic12,EA068,Absence of distinctions,EA068-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +88524,Ic13,EA068,?,EA068-NA,,,,,, +88525,Ic2,EA068,Absence of distinctions,EA068-1,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p97, +88526,Ic3,EA068,Ethnic stratification,EA068-3,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +88527,Ic4,EA068,Absence of distinctions,EA068-1,,kruyt1921;wetering1925,,1920,Ethnology_Vol2_No1_Jan_1963, +88528,Ic5,EA068,Absence of distinctions,EA068-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +88529,Ic6,EA068,Absence of distinctions,EA068-1,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +88530,Ic7,EA068,Absence of distinctions,EA068-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +88531,Ic8,EA068,Absence of distinctions,EA068-1,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +88532,Ic9,EA068,Absence of distinctions,EA068-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +88533,Id1,EA068,Absence of distinctions,EA068-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +88534,Id10,EA068,Absence of distinctions,EA068-1,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +88535,Id11,EA068,Absence of distinctions,EA068-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +88536,Id12,EA068,Absence of distinctions,EA068-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +88537,Id13,EA068,Absence of distinctions,EA068-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +88538,Id2,EA068,Absence of distinctions,EA068-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +88539,Id3,EA068,Absence of distinctions,EA068-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +88540,Id4,EA068,Absence of distinctions,EA068-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p97, +88541,Id5,EA068,Absence of distinctions,EA068-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p97, +88542,Id6,EA068,Absence of distinctions,EA068-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p97, +88543,Id7,EA068,?,EA068-NA,,,,,, +88544,Id8,EA068,Absence of distinctions,EA068-1,,roth1890,,1830,EthnographicAtlas_1967_p97, +88545,Id9,EA068,Absence of distinctions,EA068-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p97, +88546,Ie1,EA068,Absence of distinctions,EA068-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88547,Ie10,EA068,Absence of distinctions,EA068-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +88548,Ie11,EA068,Absence of distinctions,EA068-1,,bowers1964,,1950,EthnographicAtlas_1967_p97, +88549,Ie12,EA068,Absence of distinctions,EA068-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88550,Ie13,EA068,Absence of distinctions,EA068-1,,landtman1927,,1920,EthnographicAtlas_1967_p97, +88551,Ie14,EA068,Absence of distinctions,EA068-1,,haddon1908,,1900,EthnographicAtlas_1967_p97, +88552,Ie15,EA068,Absence of distinctions,EA068-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88553,Ie16,EA068,Absence of distinctions,EA068-1,,williams194041,,1940,EthnographicAtlas_1967_p97, +88554,Ie17,EA068,Absence of distinctions,EA068-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +88555,Ie18,EA068,Absence of distinctions,EA068-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +88556,Ie19,EA068,Absence of distinctions,EA068-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +88557,Ie2,EA068,Absence of distinctions,EA068-1,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +88558,Ie20,EA068,Absence of distinctions,EA068-1,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +88559,Ie21,EA068,Absence of distinctions,EA068-1,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +88560,Ie22,EA068,Absence of distinctions,EA068-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +88561,Ie23,EA068,Absence of distinctions,EA068-1,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +88562,Ie24,EA068,Absence of distinctions,EA068-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +88563,Ie25,EA068,Absence of distinctions,EA068-1,,williamson1912,,1920,EthnographicAtlas_1967_p97, +88564,Ie26,EA068,Absence of distinctions,EA068-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +88565,Ie27,EA068,Absence of distinctions,EA068-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +88566,Ie28,EA068,Absence of distinctions,EA068-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +88567,Ie29,EA068,Absence of distinctions,EA068-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88568,Ie3,EA068,Absence of distinctions,EA068-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88569,Ie30,EA068,Absence of distinctions,EA068-1,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +88570,Ie31,EA068,Absence of distinctions,EA068-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +88571,Ie32,EA068,Absence of distinctions,EA068-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +88572,Ie33,EA068,Absence of distinctions,EA068-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +88573,Ie34,EA068,?,EA068-NA,,,,,, +88574,Ie35,EA068,Absence of distinctions,EA068-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +88575,Ie36,EA068,?,EA068-NA,,,,,, +88576,Ie37,EA068,?,EA068-NA,,,,,, +88577,Ie38,EA068,Absence of distinctions,EA068-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +88578,Ie39,EA068,Absence of distinctions,EA068-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +88579,Ie4,EA068,Absence of distinctions,EA068-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88580,Ie5,EA068,Absence of distinctions,EA068-1,,williams1936,,1930,EthnographicAtlas_1967_p97, +88581,Ie6,EA068,Absence of distinctions,EA068-1,,held1947,,1930,EthnographicAtlas_1967_p97, +88582,Ie7,EA068,Absence of distinctions,EA068-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +88583,Ie8,EA068,Absence of distinctions,EA068-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +88584,Ie9,EA068,Absence of distinctions,EA068-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +88585,If1,EA068,Absence of distinctions,EA068-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88586,If10,EA068,?,EA068-NA,,,,,, +88587,If11,EA068,Absence of distinctions,EA068-1,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +88588,If12,EA068,Absence of distinctions,EA068-1,,mason1954,,1940,EthnographicAtlas_1967_p101, +88589,If13,EA068,Absence of distinctions,EA068-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p101, +88590,If14,EA068,Absence of distinctions,EA068-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +88591,If15,EA068,Absence of distinctions,EA068-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +88592,If16,EA068,Absence of distinctions,EA068-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +88593,If17,EA068,Absence of distinctions,EA068-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +88594,If2,EA068,Absence of distinctions,EA068-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +88595,If3,EA068,Absence of distinctions,EA068-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +88596,If4,EA068,Absence of distinctions,EA068-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +88597,If5,EA068,Absence of distinctions,EA068-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +88598,If6,EA068,Absence of distinctions,EA068-1,"Complex stratification into nine social classes and seven ranks, of which three form an endogamous upper caste and four an endogamous lower caste",huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +88599,If7,EA068,Absence of distinctions,EA068-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +88600,If8,EA068,Absence of distinctions,EA068-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +88601,If9,EA068,Absence of distinctions,EA068-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +88602,Ig1,EA068,Absence of distinctions,EA068-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +88603,Ig10,EA068,Absence of distinctions,EA068-1,,schwartz1964,,1950,EthnographicAtlas_1967_p101, +88604,Ig11,EA068,Absence of distinctions,EA068-1,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +88605,Ig12,EA068,Absence of distinctions,EA068-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +88606,Ig13,EA068,Absence of distinctions,EA068-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +88607,Ig14,EA068,Absence of distinctions,EA068-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +88608,Ig15,EA068,?,EA068-NA,,,,,, +88609,Ig16,EA068,?,EA068-NA,,,,,, +88610,Ig17,EA068,?,EA068-NA,,,,,, +88611,Ig18,EA068,?,EA068-NA,,,,,, +88612,Ig19,EA068,?,EA068-NA,,,,,, +88613,Ig2,EA068,Absence of distinctions,EA068-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +88614,Ig20,EA068,Absence of distinctions,EA068-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +88615,Ig21,EA068,Absence of distinctions,EA068-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +88616,Ig3,EA068,Absence of distinctions,EA068-1,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +88617,Ig4,EA068,Absence of distinctions,EA068-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +88618,Ig5,EA068,Absence of distinctions,EA068-1,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +88619,Ig6,EA068,Absence of distinctions,EA068-1,,ivens1927,,1900,EthnographicAtlas_1967_p101, +88620,Ig7,EA068,Absence of distinctions,EA068-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +88621,Ig8,EA068,?,EA068-NA,,,,,, +88622,Ig9,EA068,Absence of distinctions,EA068-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +88623,Ih1,EA068,Absence of distinctions,EA068-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +88624,Ih10,EA068,Absence of distinctions,EA068-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88625,Ih11,EA068,?,EA068-NA,,,,,, +88626,Ih12,EA068,?,EA068-NA,,,,,, +88627,Ih13,EA068,?,EA068-NA,,,,,, +88628,Ih14,EA068,Absence of distinctions,EA068-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +88629,Ih2,EA068,Absence of distinctions,EA068-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88630,Ih3,EA068,Absence of distinctions,EA068-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +88631,Ih4,EA068,Absence of distinctions,EA068-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88632,Ih5,EA068,Absence of distinctions,EA068-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +88633,Ih6,EA068,Absence of distinctions,EA068-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p101, +88634,Ih7,EA068,Absence of distinctions,EA068-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +88635,Ih8,EA068,Absence of distinctions,EA068-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +88636,Ih9,EA068,Absence of distinctions,EA068-1,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88637,Ii1,EA068,Absence of distinctions,EA068-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +88638,Ii10,EA068,Absence of distinctions,EA068-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +88639,Ii12,EA068,Absence of distinctions,EA068-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88640,Ii13,EA068,Absence of distinctions,EA068-1,,burrows1937,,1830,EthnographicAtlas_1967_p101, +88641,Ii14,EA068,Absence of distinctions,EA068-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +88642,Ii2,EA068,Absence of distinctions,EA068-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +88643,Ii3,EA068,Absence of distinctions,EA068-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +88644,Ii4,EA068,Absence of distinctions,EA068-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +88645,Ii5,EA068,Absence of distinctions,EA068-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +88646,Ii6,EA068,Absence of distinctions,EA068-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +88647,Ii7,EA068,Absence of distinctions,EA068-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +88648,Ii8,EA068,Absence of distinctions,EA068-1,,burrows1936,,1840,EthnographicAtlas_1967_p101, +88649,Ii9,EA068,Absence of distinctions,EA068-1,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +88650,Ij1,EA068,Absence of distinctions,EA068-1,,buck1934,,1820,EthnographicAtlas_1967_p101, +88651,Ij10,EA068,Absence of distinctions,EA068-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +88652,Ij2,EA068,Absence of distinctions,EA068-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +88653,Ij3,EA068,Absence of distinctions,EA068-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +88654,Ij4,EA068,Absence of distinctions,EA068-1,,buck1932a,,1850,EthnographicAtlas_1967_p105, +88655,Ij5,EA068,Absence of distinctions,EA068-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +88656,Ij6,EA068,Absence of distinctions,EA068-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +88657,Ij7,EA068,Absence of distinctions,EA068-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +88658,Ij8,EA068,Absence of distinctions,EA068-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +88659,Ij9,EA068,Absence of distinctions,EA068-1,,metraux1940,,1860,EthnographicAtlas_1967_p105, +88660,Na1,EA068,Absence of distinctions,EA068-1,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +88661,Na10,EA068,Absence of distinctions,EA068-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +88662,Na11,EA068,Absence of distinctions,EA068-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +88663,Na12,EA068,Absence of distinctions,EA068-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +88664,Na13,EA068,Absence of distinctions,EA068-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +88665,Na14,EA068,Absence of distinctions,EA068-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +88666,Na15,EA068,Absence of distinctions,EA068-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +88667,Na16,EA068,Absence of distinctions,EA068-1,,osgood1931,,1860,EthnographicAtlas_1967_p105, +88668,Na17,EA068,Absence of distinctions,EA068-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88669,Na19,EA068,Absence of distinctions,EA068-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +88670,Na2,EA068,Absence of distinctions,EA068-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +88671,Na20,EA068,Absence of distinctions,EA068-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +88672,Na21,EA068,Absence of distinctions,EA068-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +88673,Na22,EA068,Absence of distinctions,EA068-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +88674,Na23,EA068,Absence of distinctions,EA068-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +88675,Na24,EA068,Absence of distinctions,EA068-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +88676,Na25,EA068,Absence of distinctions,EA068-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +88677,Na26,EA068,Absence of distinctions,EA068-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +88678,Na27,EA068,Absence of distinctions,EA068-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +88679,Na28,EA068,Absence of distinctions,EA068-1,,jenness1937,,1880,EthnographicAtlas_1967_p105, +88680,Na29,EA068,Absence of distinctions,EA068-1,,goddard1916,,1850,EthnographicAtlas_1967_p105, +88681,Na3,EA068,Absence of distinctions,EA068-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +88682,Na30,EA068,Absence of distinctions,EA068-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +88683,Na31,EA068,Absence of distinctions,EA068-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +88684,Na32,EA068,Absence of distinctions,EA068-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +88685,Na33,EA068,Absence of distinctions,EA068-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +88686,Na34,EA068,Absence of distinctions,EA068-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +88687,Na35,EA068,Absence of distinctions,EA068-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +88688,Na36,EA068,Absence of distinctions,EA068-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +88689,Na37,EA068,Absence of distinctions,EA068-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +88690,Na38,EA068,Absence of distinctions,EA068-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +88691,Na39,EA068,Absence of distinctions,EA068-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +88692,Na4,EA068,Absence of distinctions,EA068-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +88693,Na40,EA068,Absence of distinctions,EA068-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +88694,Na41,EA068,Absence of distinctions,EA068-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +88695,Na42,EA068,Absence of distinctions,EA068-1,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p105, +88696,Na43,EA068,Absence of distinctions,EA068-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +88697,Na44,EA068,Absence of distinctions,EA068-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +88698,Na45,EA068,Absence of distinctions,EA068-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +88699,Na5,EA068,Absence of distinctions,EA068-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +88700,Na6,EA068,Absence of distinctions,EA068-1,,lantis1946,,1930,EthnographicAtlas_1967_p105, +88701,Na7,EA068,Absence of distinctions,EA068-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +88702,Na8,EA068,Absence of distinctions,EA068-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +88703,Na9,EA068,Absence of distinctions,EA068-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88704,Nb1,EA068,Absence of distinctions,EA068-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +88705,Nb10,EA068,Absence of distinctions,EA068-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +88706,Nb11,EA068,Absence of distinctions,EA068-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +88707,Nb12,EA068,Absence of distinctions,EA068-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +88708,Nb13,EA068,Absence of distinctions,EA068-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +88709,Nb14,EA068,Absence of distinctions,EA068-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +88710,Nb15,EA068,Absence of distinctions,EA068-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +88711,Nb16,EA068,Absence of distinctions,EA068-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +88712,Nb17,EA068,Absence of distinctions,EA068-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +88713,Nb18,EA068,Absence of distinctions,EA068-1,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +88714,Nb19,EA068,Absence of distinctions,EA068-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +88715,Nb2,EA068,Absence of distinctions,EA068-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +88716,Nb20,EA068,Absence of distinctions,EA068-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +88717,Nb21,EA068,Absence of distinctions,EA068-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +88718,Nb22,EA068,Absence of distinctions,EA068-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +88719,Nb23,EA068,Absence of distinctions,EA068-1,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +88720,Nb24,EA068,Absence of distinctions,EA068-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +88721,Nb25,EA068,Absence of distinctions,EA068-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +88722,Nb26,EA068,Absence of distinctions,EA068-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +88723,Nb27,EA068,Absence of distinctions,EA068-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +88724,Nb28,EA068,Absence of distinctions,EA068-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +88725,Nb29,EA068,Absence of distinctions,EA068-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +88726,Nb3,EA068,Absence of distinctions,EA068-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +88727,Nb30,EA068,Absence of distinctions,EA068-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +88728,Nb31,EA068,Absence of distinctions,EA068-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +88729,Nb32,EA068,Absence of distinctions,EA068-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +88730,Nb33,EA068,Absence of distinctions,EA068-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +88731,Nb34,EA068,Absence of distinctions,EA068-1,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +88732,Nb35,EA068,Absence of distinctions,EA068-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +88733,Nb36,EA068,Absence of distinctions,EA068-1,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +88734,Nb37,EA068,Absence of distinctions,EA068-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +88735,Nb38,EA068,Absence of distinctions,EA068-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +88736,Nb39,EA068,Absence of distinctions,EA068-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +88737,Nb4,EA068,Absence of distinctions,EA068-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +88738,Nb5,EA068,Absence of distinctions,EA068-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +88739,Nb6,EA068,Absence of distinctions,EA068-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +88740,Nb7,EA068,Absence of distinctions,EA068-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +88741,Nb8,EA068,Absence of distinctions,EA068-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +88742,Nb9,EA068,Absence of distinctions,EA068-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +88743,Nc1,EA068,Absence of distinctions,EA068-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +88744,Nc10,EA068,Absence of distinctions,EA068-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +88745,Nc11,EA068,Absence of distinctions,EA068-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +88746,Nc12,EA068,Absence of distinctions,EA068-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +88747,Nc13,EA068,Absence of distinctions,EA068-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +88748,Nc14,EA068,Absence of distinctions,EA068-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +88749,Nc15,EA068,Absence of distinctions,EA068-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +88750,Nc16,EA068,Absence of distinctions,EA068-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +88751,Nc17,EA068,Absence of distinctions,EA068-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +88752,Nc18,EA068,Absence of distinctions,EA068-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +88753,Nc19,EA068,Absence of distinctions,EA068-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +88754,Nc2,EA068,Absence of distinctions,EA068-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +88755,Nc20,EA068,Absence of distinctions,EA068-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +88756,Nc21,EA068,Absence of distinctions,EA068-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +88757,Nc22,EA068,Absence of distinctions,EA068-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +88758,Nc23,EA068,Absence of distinctions,EA068-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +88759,Nc24,EA068,Absence of distinctions,EA068-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +88760,Nc25,EA068,Absence of distinctions,EA068-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +88761,Nc26,EA068,Absence of distinctions,EA068-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +88762,Nc27,EA068,Absence of distinctions,EA068-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +88763,Nc28,EA068,Absence of distinctions,EA068-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +88764,Nc29,EA068,Absence of distinctions,EA068-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +88765,Nc3,EA068,Absence of distinctions,EA068-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +88766,Nc30,EA068,Absence of distinctions,EA068-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +88767,Nc31,EA068,Absence of distinctions,EA068-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +88768,Nc32,EA068,Absence of distinctions,EA068-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +88769,Nc33,EA068,Absence of distinctions,EA068-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +88770,Nc34,EA068,Absence of distinctions,EA068-1,,meigs1939,,1880,EthnographicAtlas_1967_p109, +88771,Nc4,EA068,Absence of distinctions,EA068-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +88772,Nc5,EA068,Absence of distinctions,EA068-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +88773,Nc6,EA068,Absence of distinctions,EA068-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +88774,Nc7,EA068,Absence of distinctions,EA068-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +88775,Nc8,EA068,Absence of distinctions,EA068-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +88776,Nc9,EA068,Absence of distinctions,EA068-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +88777,Nd1,EA068,Absence of distinctions,EA068-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +88778,Nd10,EA068,Absence of distinctions,EA068-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +88779,Nd11,EA068,Absence of distinctions,EA068-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +88780,Nd12,EA068,Absence of distinctions,EA068-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +88781,Nd13,EA068,Absence of distinctions,EA068-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +88782,Nd14,EA068,Absence of distinctions,EA068-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +88783,Nd15,EA068,Absence of distinctions,EA068-1,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +88784,Nd16,EA068,Absence of distinctions,EA068-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +88785,Nd17,EA068,Absence of distinctions,EA068-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +88786,Nd18,EA068,Absence of distinctions,EA068-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +88787,Nd19,EA068,Absence of distinctions,EA068-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +88788,Nd2,EA068,Absence of distinctions,EA068-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +88789,Nd20,EA068,Absence of distinctions,EA068-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +88790,Nd21,EA068,Absence of distinctions,EA068-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +88791,Nd22,EA068,Absence of distinctions,EA068-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +88792,Nd23,EA068,Absence of distinctions,EA068-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +88793,Nd24,EA068,Absence of distinctions,EA068-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +88794,Nd25,EA068,Absence of distinctions,EA068-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +88795,Nd26,EA068,Absence of distinctions,EA068-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +88796,Nd27,EA068,Absence of distinctions,EA068-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +88797,Nd28,EA068,Absence of distinctions,EA068-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +88798,Nd29,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +88799,Nd3,EA068,Absence of distinctions,EA068-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +88800,Nd30,EA068,Absence of distinctions,EA068-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +88801,Nd31,EA068,Absence of distinctions,EA068-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +88802,Nd32,EA068,Absence of distinctions,EA068-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +88803,Nd33,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +88804,Nd34,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +88805,Nd35,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +88806,Nd36,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +88807,Nd37,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +88808,Nd38,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +88809,Nd39,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +88810,Nd4,EA068,Absence of distinctions,EA068-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +88811,Nd40,EA068,Absence of distinctions,EA068-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +88812,Nd41,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +88813,Nd42,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +88814,Nd43,EA068,Absence of distinctions,EA068-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +88815,Nd44,EA068,Absence of distinctions,EA068-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +88816,Nd45,EA068,Absence of distinctions,EA068-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +88817,Nd46,EA068,Absence of distinctions,EA068-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +88818,Nd47,EA068,Absence of distinctions,EA068-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +88819,Nd48,EA068,Absence of distinctions,EA068-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +88820,Nd49,EA068,Absence of distinctions,EA068-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +88821,Nd5,EA068,Absence of distinctions,EA068-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +88822,Nd50,EA068,Absence of distinctions,EA068-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +88823,Nd51,EA068,Absence of distinctions,EA068-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +88824,Nd52,EA068,Absence of distinctions,EA068-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +88825,Nd53,EA068,Absence of distinctions,EA068-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +88826,Nd54,EA068,Absence of distinctions,EA068-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88827,Nd55,EA068,Absence of distinctions,EA068-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +88828,Nd56,EA068,Absence of distinctions,EA068-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +88829,Nd57,EA068,Absence of distinctions,EA068-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +88830,Nd58,EA068,Absence of distinctions,EA068-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +88831,Nd59,EA068,Absence of distinctions,EA068-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +88832,Nd6,EA068,Absence of distinctions,EA068-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +88833,Nd60,EA068,Absence of distinctions,EA068-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +88834,Nd61,EA068,Absence of distinctions,EA068-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +88835,Nd62,EA068,Absence of distinctions,EA068-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +88836,Nd63,EA068,Absence of distinctions,EA068-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +88837,Nd64,EA068,Absence of distinctions,EA068-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +88838,Nd65,EA068,Absence of distinctions,EA068-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +88839,Nd66,EA068,Absence of distinctions,EA068-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +88840,Nd67,EA068,Absence of distinctions,EA068-1,,gifford1936,,1870,EthnographicAtlas_1967_p113, +88841,Nd7,EA068,Absence of distinctions,EA068-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +88842,Nd8,EA068,Absence of distinctions,EA068-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +88843,Nd9,EA068,Absence of distinctions,EA068-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +88844,Ne1,EA068,Absence of distinctions,EA068-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +88845,Ne10,EA068,Absence of distinctions,EA068-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +88846,Ne11,EA068,Absence of distinctions,EA068-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +88847,Ne12,EA068,Absence of distinctions,EA068-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +88848,Ne13,EA068,Absence of distinctions,EA068-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +88849,Ne14,EA068,Absence of distinctions,EA068-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +88850,Ne15,EA068,Absence of distinctions,EA068-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +88851,Ne16,EA068,Absence of distinctions,EA068-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +88852,Ne17,EA068,Absence of distinctions,EA068-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +88853,Ne18,EA068,Absence of distinctions,EA068-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +88854,Ne19,EA068,Absence of distinctions,EA068-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +88855,Ne2,EA068,Absence of distinctions,EA068-1,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +88856,Ne20,EA068,Absence of distinctions,EA068-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +88857,Ne21,EA068,?,EA068-NA,,,,,, +88858,Ne3,EA068,Absence of distinctions,EA068-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +88859,Ne4,EA068,Absence of distinctions,EA068-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +88860,Ne5,EA068,Absence of distinctions,EA068-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +88861,Ne6,EA068,Absence of distinctions,EA068-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +88862,Ne7,EA068,Absence of distinctions,EA068-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +88863,Ne8,EA068,Absence of distinctions,EA068-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +88864,Ne9,EA068,Absence of distinctions,EA068-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +88865,Nf10,EA068,Absence of distinctions,EA068-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +88866,Nf11,EA068,Absence of distinctions,EA068-1,,whitman1937,,1870,EthnographicAtlas_1967_p117, +88867,Nf12,EA068,Absence of distinctions,EA068-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +88868,Nf13,EA068,Absence of distinctions,EA068-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88869,Nf14,EA068,Complex caste stratification,EA068-4,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +88870,Nf15,EA068,?,EA068-NA,,,,,, +88871,Nf2,EA068,Absence of distinctions,EA068-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +88872,Nf3,EA068,Absence of distinctions,EA068-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +88873,Nf4,EA068,Absence of distinctions,EA068-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +88874,Nf5,EA068,Absence of distinctions,EA068-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +88875,Nf6,EA068,Absence of distinctions,EA068-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +88876,Nf7,EA068,Absence of distinctions,EA068-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88877,Nf8,EA068,Absence of distinctions,EA068-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +88878,Nf9,EA068,Absence of distinctions,EA068-1,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p117, +88879,Ng1,EA068,Absence of distinctions,EA068-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +88880,Ng10,EA068,Absence of distinctions,EA068-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +88881,Ng11,EA068,Absence of distinctions,EA068-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +88882,Ng12,EA068,Absence of distinctions,EA068-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +88883,Ng13,EA068,?,EA068-NA,,,,,, +88884,Ng14,EA068,?,EA068-NA,,,,,, +88885,Ng15,EA068,?,EA068-NA,,,,,, +88886,Ng2,EA068,Absence of distinctions,EA068-1,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +88887,Ng3,EA068,Absence of distinctions,EA068-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +88888,Ng4,EA068,Absence of distinctions,EA068-1,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +88889,Ng5,EA068,Absence of distinctions,EA068-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +88890,Ng6,EA068,Absence of distinctions,EA068-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +88891,Ng7,EA068,Complex caste stratification,EA068-4,Four social classes with caste-like features,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +88892,Ng8,EA068,Absence of distinctions,EA068-1,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +88893,Ng9,EA068,Absence of distinctions,EA068-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +88894,Nh1,EA068,Absence of distinctions,EA068-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +88895,Nh10,EA068,Absence of distinctions,EA068-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +88896,Nh11,EA068,Absence of distinctions,EA068-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +88897,Nh12,EA068,Absence of distinctions,EA068-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +88898,Nh13,EA068,Absence of distinctions,EA068-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +88899,Nh14,EA068,Absence of distinctions,EA068-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +88900,Nh15,EA068,Absence of distinctions,EA068-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +88901,Nh16,EA068,Absence of distinctions,EA068-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88902,Nh17,EA068,Absence of distinctions,EA068-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +88903,Nh18,EA068,Absence of distinctions,EA068-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88904,Nh19,EA068,Absence of distinctions,EA068-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +88905,Nh2,EA068,Absence of distinctions,EA068-1,,dozier1954,,1950,EthnographicAtlas_1967_p117, +88906,Nh20,EA068,Absence of distinctions,EA068-1,,gifford1931,,1860,EthnographicAtlas_1967_p117, +88907,Nh21,EA068,Absence of distinctions,EA068-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88908,Nh22,EA068,Absence of distinctions,EA068-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +88909,Nh23,EA068,Absence of distinctions,EA068-1,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +88910,Nh24,EA068,Absence of distinctions,EA068-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +88911,Nh25,EA068,Absence of distinctions,EA068-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +88912,Nh26,EA068,?,EA068-NA,,,,,, +88913,Nh27,EA068,?,EA068-NA,,,,,, +88914,Nh3,EA068,Absence of distinctions,EA068-1,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +88915,Nh4,EA068,Absence of distinctions,EA068-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +88916,Nh5,EA068,Absence of distinctions,EA068-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +88917,Nh6,EA068,Absence of distinctions,EA068-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +88918,Nh7,EA068,Absence of distinctions,EA068-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +88919,Nh8,EA068,Absence of distinctions,EA068-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +88920,Nh9,EA068,Absence of distinctions,EA068-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +88921,Ni1,EA068,Absence of distinctions,EA068-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +88922,Ni2,EA068,Absence of distinctions,EA068-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +88923,Ni3,EA068,Absence of distinctions,EA068-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +88924,Ni4,EA068,Absence of distinctions,EA068-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +88925,Ni5,EA068,Absence of distinctions,EA068-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +88926,Ni6,EA068,Absence of distinctions,EA068-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +88927,Ni7,EA068,Absence of distinctions,EA068-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +88928,Ni8,EA068,?,EA068-NA,,,,,, +88929,Ni9,EA068,?,EA068-NA,,,,,, +88930,Nj1,EA068,Absence of distinctions,EA068-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88931,Nj10,EA068,Absence of distinctions,EA068-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88932,Nj11,EA068,?,EA068-NA,,,,,, +88933,Nj12,EA068,?,EA068-NA,,,,,, +88934,Nj13,EA068,?,EA068-NA,,,,,, +88935,Nj14,EA068,?,EA068-NA,,,,,, +88936,Nj2,EA068,Absence of distinctions,EA068-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +88937,Nj3,EA068,Absence of distinctions,EA068-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +88938,Nj4,EA068,Absence of distinctions,EA068-1,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p121, +88939,Nj5,EA068,?,EA068-NA,,,,,, +88940,Nj6,EA068,Absence of distinctions,EA068-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +88941,Nj7,EA068,Absence of distinctions,EA068-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88942,Nj8,EA068,Absence of distinctions,EA068-1,,foster1948,,1500,EthnographicAtlas_1967_p121, +88943,Nj9,EA068,Absence of distinctions,EA068-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +88944,Sa1,EA068,Absence of distinctions,EA068-1,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +88945,Sa10,EA068,Absence of distinctions,EA068-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +88946,Sa11,EA068,Absence of distinctions,EA068-1,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +88947,Sa12,EA068,Absence of distinctions,EA068-1,,stone1948,,1948,EthnographicAtlas_1967_p121, +88948,Sa13,EA068,Ethnic stratification,EA068-3,The Indians form an ethnic caste with respect to the dominant Ladinos,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +88949,Sa14,EA068,?,EA068-NA,,,,,, +88950,Sa15,EA068,?,EA068-NA,,,,,, +88951,Sa16,EA068,?,EA068-NA,,,,,, +88952,Sa17,EA068,?,EA068-NA,,,,,, +88953,Sa2,EA068,?,EA068-NA,,,,,, +88954,Sa3,EA068,Absence of distinctions,EA068-1,"Though the Choroti themselves are egalitarian, the coresident Ladinos are stratified into classes",wisdom1940,,1930,EthnographicAtlas_1967_p121, +88955,Sa4,EA068,Absence of distinctions,EA068-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +88956,Sa5,EA068,Absence of distinctions,EA068-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +88957,Sa6,EA068,Absence of distinctions,EA068-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +88958,Sa7,EA068,Absence of distinctions,EA068-1,"Though egalitarian themselves, the Black Carib form an ethnic caste in Honduran society",solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +88959,Sa8,EA068,Absence of distinctions,EA068-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +88960,Sa9,EA068,Absence of distinctions,EA068-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +88961,Sb1,EA068,Absence of distinctions,EA068-1,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +88962,Sb2,EA068,Absence of distinctions,EA068-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +88963,Sb3,EA068,?,EA068-NA,,,,,, +88964,Sb4,EA068,Absence of distinctions,EA068-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +88965,Sb5,EA068,Absence of distinctions,EA068-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +88966,Sb6,EA068,Absence of distinctions,EA068-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +88967,Sb7,EA068,Absence of distinctions,EA068-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p121, +88968,Sb8,EA068,Absence of distinctions,EA068-1,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +88969,Sb9,EA068,Absence of distinctions,EA068-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +88970,Sc1,EA068,Absence of distinctions,EA068-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +88971,Sc10,EA068,Absence of distinctions,EA068-1,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p121, +88972,Sc11,EA068,Absence of distinctions,EA068-1,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p121, +88973,Sc12,EA068,Absence of distinctions,EA068-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +88974,Sc13,EA068,Absence of distinctions,EA068-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +88975,Sc14,EA068,?,EA068-NA,,,,,, +88976,Sc15,EA068,Absence of distinctions,EA068-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +88977,Sc16,EA068,Absence of distinctions,EA068-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +88978,Sc17,EA068,Absence of distinctions,EA068-1,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +88979,Sc18,EA068,Absence of distinctions,EA068-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +88980,Sc2,EA068,Absence of distinctions,EA068-1,,leedsnd,,1950,EthnographicAtlas_1967_p121, +88981,Sc3,EA068,Absence of distinctions,EA068-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +88982,Sc4,EA068,Absence of distinctions,EA068-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +88983,Sc5,EA068,Absence of distinctions,EA068-1,,farabee1918,,1900,EthnographicAtlas_1967_p121, +88984,Sc6,EA068,Absence of distinctions,EA068-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88985,Sc7,EA068,Absence of distinctions,EA068-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +88986,Sc8,EA068,Absence of distinctions,EA068-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +88987,Sc9,EA068,Absence of distinctions,EA068-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +88988,Sd1,EA068,Absence of distinctions,EA068-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88989,Sd2,EA068,Absence of distinctions,EA068-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +88990,Sd3,EA068,Absence of distinctions,EA068-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +88991,Sd4,EA068,Absence of distinctions,EA068-1,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +88992,Sd5,EA068,Absence of distinctions,EA068-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +88993,Sd6,EA068,Absence of distinctions,EA068-1,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +88994,Sd7,EA068,Absence of distinctions,EA068-1,,fock1963,,1950,EthnographicAtlas_1967_p121, +88995,Sd8,EA068,Absence of distinctions,EA068-1,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +88996,Sd9,EA068,Absence of distinctions,EA068-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +88997,Se1,EA068,Absence of distinctions,EA068-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +88998,Se10,EA068,Absence of distinctions,EA068-1,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +88999,Se11,EA068,Absence of distinctions,EA068-1,,prost1965,,1960,EthnographicAtlas_1967_p125, +89000,Se12,EA068,?,EA068-NA,,,,,, +89001,Se2,EA068,Absence of distinctions,EA068-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +89002,Se3,EA068,Absence of distinctions,EA068-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +89003,Se4,EA068,Absence of distinctions,EA068-1,,fejos1943,,1940,EthnographicAtlas_1967_p121, +89004,Se5,EA068,Absence of distinctions,EA068-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +89005,Se6,EA068,Absence of distinctions,EA068-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +89006,Se7,EA068,Absence of distinctions,EA068-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89007,Se8,EA068,Absence of distinctions,EA068-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +89008,Se9,EA068,Absence of distinctions,EA068-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +89009,Sf1,EA068,Absence of distinctions,EA068-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +89010,Sf2,EA068,Absence of distinctions,EA068-1,But the Aymara form a lower caste in Bolivian society,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +89011,Sf3,EA068,Absence of distinctions,EA068-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +89012,Sf4,EA068,Absence of distinctions,EA068-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +89013,Sf5,EA068,Absence of distinctions,EA068-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +89014,Sf6,EA068,Absence of distinctions,EA068-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +89015,Sf7,EA068,Absence of distinctions,EA068-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +89016,Sf8,EA068,?,EA068-NA,,,,,, +89017,Sf9,EA068,?,EA068-NA,,,,,, +89018,Sg1,EA068,Absence of distinctions,EA068-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +89019,Sg2,EA068,Absence of distinctions,EA068-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89020,Sg3,EA068,Absence of distinctions,EA068-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +89021,Sg4,EA068,Absence of distinctions,EA068-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +89022,Sg5,EA068,Absence of distinctions,EA068-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89023,Sh1,EA068,Absence of distinctions,EA068-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +89024,Sh2,EA068,Absence of distinctions,EA068-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +89025,Sh3,EA068,Absence of distinctions,EA068-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +89026,Sh4,EA068,Absence of distinctions,EA068-1,"Formerly S [sic, Gray (1999)]",oberg1949,,1940,EthnographicAtlas_1967_p125, +89027,Sh5,EA068,Absence of distinctions,EA068-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +89028,Sh6,EA068,Absence of distinctions,EA068-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +89029,Sh7,EA068,Absence of distinctions,EA068-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +89030,Sh8,EA068,Absence of distinctions,EA068-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +89031,Sh9,EA068,Absence of distinctions,EA068-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +89032,Si1,EA068,Absence of distinctions,EA068-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89033,Si10,EA068,Absence of distinctions,EA068-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +89034,Si2,EA068,Absence of distinctions,EA068-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +89035,Si3,EA068,Absence of distinctions,EA068-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89036,Si4,EA068,Absence of distinctions,EA068-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +89037,Si5,EA068,Absence of distinctions,EA068-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +89038,Si6,EA068,Absence of distinctions,EA068-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +89039,Si7,EA068,Absence of distinctions,EA068-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +89040,Si8,EA068,Absence of distinctions,EA068-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +89041,Si9,EA068,?,EA068-NA,,,,,, +89042,Sj1,EA068,Absence of distinctions,EA068-1,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +89043,Sj10,EA068,Absence of distinctions,EA068-1,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89044,Sj11,EA068,Absence of distinctions,EA068-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +89045,Sj2,EA068,Absence of distinctions,EA068-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +89046,Sj3,EA068,Absence of distinctions,EA068-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +89047,Sj4,EA068,Absence of distinctions,EA068-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +89048,Sj5,EA068,Absence of distinctions,EA068-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +89049,Sj6,EA068,Absence of distinctions,EA068-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89050,Sj7,EA068,Absence of distinctions,EA068-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +89051,Sj8,EA068,Absence of distinctions,EA068-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +89052,Sj9,EA068,Absence of distinctions,EA068-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +89053,ch12,EA068,Absence of distinctions,EA068-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +89054,ch13,EA068,Absence of distinctions,EA068-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +89055,ch14,EA068,Absence of distinctions,EA068-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +89056,ch15,EA068,Absence of distinctions,EA068-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +89057,ch16,EA068,Absence of distinctions,EA068-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +89058,ch17,EA068,Absence of distinctions,EA068-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +89059,ch18,EA068,Absence of distinctions,EA068-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +89060,ch19,EA068,Absence of distinctions,EA068-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +89061,ch20,EA068,Absence of distinctions,EA068-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +89062,ch21,EA068,Absence of distinctions,EA068-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +89063,ch22,EA068,Absence of distinctions,EA068-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +89064,ch23,EA068,Absence of distinctions,EA068-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +89065,ch24,EA068,Absence of distinctions,EA068-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +89066,ch25,EA068,Absence of distinctions,EA068-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +89067,ch26,EA068,Absence of distinctions,EA068-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +89068,ch27,EA068,Absence of distinctions,EA068-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +89069,ch28,EA068,Absence of distinctions,EA068-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +89070,ec12,EA068,Absence of distinctions,EA068-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +89071,ec13,EA068,Absence of distinctions,EA068-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +89072,ec14,EA068,Absence of distinctions,EA068-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +89073,ec15,EA068,Absence of distinctions,EA068-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +89074,ec16,EA068,Absence of distinctions,EA068-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +89075,ec17,EA068,Absence of distinctions,EA068-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +89076,ec18,EA068,Absence of distinctions,EA068-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +89077,ec19,EA068,Absence of distinctions,EA068-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +89078,ec20,EA068,Absence of distinctions,EA068-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +89079,ec21,EA068,Absence of distinctions,EA068-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +89080,Aa1,EA069,No secondary type,EA069-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +89081,Aa2,EA069,No secondary type,EA069-9,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +89082,Aa3,EA069,No secondary type,EA069-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +89083,Aa4,EA069,No secondary type,EA069-9,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +89084,Aa5,EA069,No secondary type,EA069-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +89085,Aa6,EA069,No secondary type,EA069-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +89086,Aa7,EA069,No secondary type,EA069-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +89087,Aa8,EA069,No secondary type,EA069-9,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +89088,Aa9,EA069,No secondary type,EA069-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +89089,Ab1,EA069,No secondary type,EA069-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +89090,Ab10,EA069,No secondary type,EA069-9,,hunter1936,,1936,EthnographicAtlas_1967_p65, +89091,Ab11,EA069,No secondary type,EA069-9,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +89092,Ab12,EA069,No secondary type,EA069-9,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +89093,Ab13,EA069,No secondary type,EA069-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +89094,Ab14,EA069,No secondary type,EA069-9,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +89095,Ab15,EA069,No secondary type,EA069-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +89096,Ab16,EA069,No secondary type,EA069-9,,earthy1933,,1930,EthnographicAtlas_1967_p65, +89097,Ab17,EA069,No secondary type,EA069-9,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +89098,Ab18,EA069,?,EA069-NA,,,,,, +89099,Ab19,EA069,No secondary type,EA069-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +89100,Ab2,EA069,No secondary type,EA069-9,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +89101,Ab20,EA069,No secondary type,EA069-9,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +89102,Ab21a,EA069,No secondary type,EA069-9,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +89103,Ab21b,EA069,?,EA069-NA,,,,,, +89104,Ab22,EA069,?,EA069-NA,,,,,, +89105,Ab3,EA069,No secondary type,EA069-9,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +89106,Ab4,EA069,No secondary type,EA069-9,,junod1927,,1920,EthnographicAtlas_1967_p65, +89107,Ab5,EA069,No secondary type,EA069-9,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +89108,Ab6,EA069,No secondary type,EA069-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +89109,Ab7,EA069,No secondary type,EA069-9,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +89110,Ab8,EA069,No secondary type,EA069-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +89111,Ab9,EA069,No secondary type,EA069-9,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +89112,Ac1,EA069,No secondary type,EA069-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +89113,Ac10,EA069,No secondary type,EA069-9,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +89114,Ac11,EA069,No secondary type,EA069-9,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +89115,Ac12,EA069,No secondary type,EA069-9,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +89116,Ac13,EA069,No secondary type,EA069-9,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +89117,Ac14,EA069,No secondary type,EA069-9,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +89118,Ac15,EA069,No secondary type,EA069-9,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +89119,Ac16,EA069,?,EA069-NA,,,,,, +89120,Ac17,EA069,No secondary type,EA069-9,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +89121,Ac18,EA069,?,EA069-NA,,,,,, +89122,Ac19,EA069,?,EA069-NA,,,,,, +89123,Ac2,EA069,No secondary type,EA069-9,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +89124,Ac20,EA069,?,EA069-NA,,,,,, +89125,Ac21,EA069,No secondary type,EA069-9,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +89126,Ac22,EA069,?,EA069-NA,,,,,, +89127,Ac23,EA069,No secondary type,EA069-9,Dependent Pygmies,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +89128,Ac24,EA069,No secondary type,EA069-9,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +89129,Ac25,EA069,No secondary type,EA069-9,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +89130,Ac26,EA069,No secondary type,EA069-9,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +89131,Ac27,EA069,No secondary type,EA069-9,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +89132,Ac28,EA069,No secondary type,EA069-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +89133,Ac29,EA069,?,EA069-NA,,,,,, +89134,Ac3,EA069,No secondary type,EA069-9,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +89135,Ac30,EA069,No secondary type,EA069-9,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +89136,Ac31,EA069,No secondary type,EA069-9,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +89137,Ac32,EA069,No secondary type,EA069-9,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +89138,Ac33,EA069,No secondary type,EA069-9,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +89139,Ac34,EA069,No secondary type,EA069-9,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +89140,Ac35,EA069,No secondary type,EA069-9,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +89141,Ac36,EA069,No secondary type,EA069-9,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +89142,Ac37,EA069,No secondary type,EA069-9,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +89143,Ac38,EA069,No secondary type,EA069-9,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +89144,Ac39,EA069,No secondary type,EA069-9,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +89145,Ac4,EA069,No secondary type,EA069-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +89146,Ac40,EA069,No secondary type,EA069-9,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +89147,Ac41,EA069,No secondary type,EA069-9,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +89148,Ac42,EA069,No secondary type,EA069-9,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +89149,Ac43,EA069,?,EA069-NA,,,,,, +89150,Ac5,EA069,No secondary type,EA069-9,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +89151,Ac6,EA069,No secondary type,EA069-9,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +89152,Ac7,EA069,No secondary type,EA069-9,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +89153,Ac8,EA069,No secondary type,EA069-9,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +89154,Ac9,EA069,No secondary type,EA069-9,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +89155,Ad1,EA069,No secondary type,EA069-9,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +89156,Ad10,EA069,?,EA069-NA,,,,,, +89157,Ad11,EA069,No secondary type,EA069-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +89158,Ad12,EA069,No secondary type,EA069-9,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +89159,Ad13,EA069,No secondary type,EA069-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +89160,Ad14,EA069,No secondary type,EA069-9,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +89161,Ad15,EA069,No secondary type,EA069-9,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +89162,Ad16,EA069,No secondary type,EA069-9,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +89163,Ad17,EA069,No secondary type,EA069-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +89164,Ad18,EA069,No secondary type,EA069-9,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +89165,Ad19,EA069,No secondary type,EA069-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +89166,Ad2,EA069,No secondary type,EA069-9,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +89167,Ad20,EA069,No secondary type,EA069-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +89168,Ad21,EA069,No secondary type,EA069-9,,maurice193538,,1930,EthnographicAtlas_1967_p69, +89169,Ad22,EA069,No secondary type,EA069-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +89170,Ad23,EA069,No secondary type,EA069-9,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +89171,Ad24,EA069,No secondary type,EA069-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +89172,Ad25,EA069,No secondary type,EA069-9,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +89173,Ad26,EA069,No secondary type,EA069-9,,sick1916,,1910,EthnographicAtlas_1967_p69, +89174,Ad27,EA069,No secondary type,EA069-9,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +89175,Ad28,EA069,No secondary type,EA069-9,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +89176,Ad29,EA069,?,EA069-NA,,,,,, +89177,Ad3,EA069,No secondary type,EA069-9,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +89178,Ad30,EA069,?,EA069-NA,,,,,, +89179,Ad31,EA069,?,EA069-NA,,,,,, +89180,Ad32,EA069,?,EA069-NA,,,,,, +89181,Ad33,EA069,No secondary type,EA069-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +89182,Ad34,EA069,?,EA069-NA,,,,,, +89183,Ad35,EA069,No secondary type,EA069-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +89184,Ad36,EA069,No secondary type,EA069-9,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +89185,Ad37,EA069,No secondary type,EA069-9,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +89186,Ad38,EA069,No secondary type,EA069-9,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +89187,Ad39,EA069,No secondary type,EA069-9,,gray1963,,1950,EthnographicAtlas_1967_p69, +89188,Ad4,EA069,No secondary type,EA069-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +89189,Ad40,EA069,No secondary type,EA069-9,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +89190,Ad41,EA069,No secondary type,EA069-9,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +89191,Ad42,EA069,No secondary type,EA069-9,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +89192,Ad43,EA069,No secondary type,EA069-9,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +89193,Ad44,EA069,No secondary type,EA069-9,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +89194,Ad45,EA069,No secondary type,EA069-9,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +89195,Ad46,EA069,No secondary type,EA069-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +89196,Ad47,EA069,No secondary type,EA069-9,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +89197,Ad48,EA069,No secondary type,EA069-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +89198,Ad49,EA069,No secondary type,EA069-9,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +89199,Ad5,EA069,No secondary type,EA069-9,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +89200,Ad50,EA069,No secondary type,EA069-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +89201,Ad51,EA069,No secondary type,EA069-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +89202,Ad6,EA069,No secondary type,EA069-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +89203,Ad7,EA069,No secondary type,EA069-9,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +89204,Ad8,EA069,No secondary type,EA069-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +89205,Ad9,EA069,No secondary type,EA069-9,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +89206,Ae1,EA069,No secondary type,EA069-9,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +89207,Ae10,EA069,No secondary type,EA069-9,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +89208,Ae11,EA069,No secondary type,EA069-9,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +89209,Ae12,EA069,No secondary type,EA069-9,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +89210,Ae13,EA069,No secondary type,EA069-9,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +89211,Ae14,EA069,No secondary type,EA069-9,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +89212,Ae15,EA069,No secondary type,EA069-9,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +89213,Ae16,EA069,?,EA069-NA,,,,,, +89214,Ae17,EA069,No secondary type,EA069-9,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +89215,Ae18,EA069,No secondary type,EA069-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +89216,Ae19,EA069,No secondary type,EA069-9,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +89217,Ae2,EA069,No secondary type,EA069-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +89218,Ae20,EA069,No secondary type,EA069-9,Pygmies are attached as serfs to minor or minimal lineages,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +89219,Ae21,EA069,No secondary type,EA069-9,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +89220,Ae22,EA069,No secondary type,EA069-9,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +89221,Ae23,EA069,No secondary type,EA069-9,Dependent Pygmies,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +89222,Ae24,EA069,No secondary type,EA069-9,Dependent Pygmies,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +89223,Ae25,EA069,No secondary type,EA069-9,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +89224,Ae26,EA069,No secondary type,EA069-9,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +89225,Ae27,EA069,No secondary type,EA069-9,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +89226,Ae28,EA069,No secondary type,EA069-9,But there are a few dependent Pygmies,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +89227,Ae29,EA069,No secondary type,EA069-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +89228,Ae3,EA069,No secondary type,EA069-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +89229,Ae30,EA069,No secondary type,EA069-9,Dependent Pygmies,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +89230,Ae31,EA069,No secondary type,EA069-9,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +89231,Ae32,EA069,No secondary type,EA069-9,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +89232,Ae33,EA069,No secondary type,EA069-9,Dependent Pygmies,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +89233,Ae34,EA069,No secondary type,EA069-9,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +89234,Ae35,EA069,No secondary type,EA069-9,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +89235,Ae36,EA069,No secondary type,EA069-9,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +89236,Ae37,EA069,No secondary type,EA069-9,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +89237,Ae38,EA069,No secondary type,EA069-9,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +89238,Ae39,EA069,No secondary type,EA069-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +89239,Ae4,EA069,No secondary type,EA069-9,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +89240,Ae40,EA069,No secondary type,EA069-9,Dependent Pygmies,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +89241,Ae41,EA069,No secondary type,EA069-9,Dependent Pygmies,andersson1953,,1940,EthnographicAtlas_1967_p69, +89242,Ae42,EA069,No secondary type,EA069-9,Dependent Pygmies,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +89243,Ae43,EA069,No secondary type,EA069-9,Dependent Pygmies,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +89244,Ae44,EA069,No secondary type,EA069-9,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +89245,Ae45,EA069,No secondary type,EA069-9,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +89246,Ae46,EA069,No secondary type,EA069-9,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +89247,Ae47,EA069,No secondary type,EA069-9,Dependent Pygmies,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +89248,Ae48,EA069,No secondary type,EA069-9,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +89249,Ae49,EA069,?,EA069-NA,,,,,, +89250,Ae5,EA069,No secondary type,EA069-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +89251,Ae50,EA069,No secondary type,EA069-9,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +89252,Ae51,EA069,No secondary type,EA069-9,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +89253,Ae52,EA069,?,EA069-NA,,,,,, +89254,Ae53,EA069,No secondary type,EA069-9,Dependent Pygmies,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +89255,Ae54,EA069,?,EA069-NA,,,,,, +89256,Ae55,EA069,No secondary type,EA069-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +89257,Ae56,EA069,No secondary type,EA069-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +89258,Ae57,EA069,No secondary type,EA069-9,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +89259,Ae58,EA069,No secondary type,EA069-9,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +89260,Ae59,EA069,No secondary type,EA069-9,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +89261,Ae6,EA069,No secondary type,EA069-9,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +89262,Ae7,EA069,No secondary type,EA069-9,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +89263,Ae8,EA069,No secondary type,EA069-9,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +89264,Ae9,EA069,No secondary type,EA069-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +89265,Af1,EA069,No secondary type,EA069-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +89266,Af10,EA069,No secondary type,EA069-9,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +89267,Af11,EA069,No secondary type,EA069-9,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +89268,Af12,EA069,No secondary type,EA069-9,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +89269,Af13,EA069,No secondary type,EA069-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +89270,Af14,EA069,?,EA069-NA,,,,,, +89271,Af15,EA069,No secondary type,EA069-9,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +89272,Af16,EA069,No secondary type,EA069-9,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +89273,Af17,EA069,?,EA069-NA,,,,,, +89274,Af18,EA069,No secondary type,EA069-9,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +89275,Af19,EA069,No secondary type,EA069-9,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +89276,Af2,EA069,No secondary type,EA069-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +89277,Af20,EA069,No secondary type,EA069-9,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +89278,Af21,EA069,No secondary type,EA069-9,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +89279,Af22,EA069,No secondary type,EA069-9,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +89280,Af23,EA069,No secondary type,EA069-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +89281,Af24,EA069,No secondary type,EA069-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +89282,Af25,EA069,No secondary type,EA069-9,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +89283,Af26,EA069,No secondary type,EA069-9,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +89284,Af27,EA069,No secondary type,EA069-9,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +89285,Af28,EA069,?,EA069-NA,,,,,, +89286,Af29,EA069,No secondary type,EA069-9,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +89287,Af3,EA069,No secondary type,EA069-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +89288,Af30,EA069,?,EA069-NA,,,,,, +89289,Af31,EA069,No secondary type,EA069-9,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +89290,Af32,EA069,No secondary type,EA069-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89291,Af33,EA069,No secondary type,EA069-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89292,Af34,EA069,No secondary type,EA069-9,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89293,Af35,EA069,?,EA069-NA,,,,,, +89294,Af36,EA069,No secondary type,EA069-9,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +89295,Af37,EA069,No secondary type,EA069-9,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +89296,Af38,EA069,?,EA069-NA,,,,,, +89297,Af39,EA069,No secondary type,EA069-9,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +89298,Af4,EA069,No secondary type,EA069-9,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +89299,Af40,EA069,No secondary type,EA069-9,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +89300,Af41,EA069,No secondary type,EA069-9,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +89301,Af42,EA069,No secondary type,EA069-9,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +89302,Af43,EA069,?,EA069-NA,,,,,, +89303,Af44,EA069,No secondary type,EA069-9,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +89304,Af45,EA069,No secondary type,EA069-9,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +89305,Af46,EA069,?,EA069-NA,,,,,, +89306,Af47,EA069,No secondary type,EA069-9,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +89307,Af48,EA069,?,EA069-NA,,,,,, +89308,Af49,EA069,No secondary type,EA069-9,,schwab1947,,1940,EthnographicAtlas_1967_p73, +89309,Af5,EA069,No secondary type,EA069-9,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +89310,Af50,EA069,No secondary type,EA069-9,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +89311,Af51,EA069,No secondary type,EA069-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +89312,Af52,EA069,No secondary type,EA069-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +89313,Af53,EA069,?,EA069-NA,,,,,, +89314,Af54,EA069,No secondary type,EA069-9,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +89315,Af55,EA069,No secondary type,EA069-9,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +89316,Af56,EA069,No secondary type,EA069-9,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +89317,Af57,EA069,No secondary type,EA069-9,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +89318,Af58,EA069,No secondary type,EA069-9,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +89319,Af6,EA069,No secondary type,EA069-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +89320,Af7,EA069,No secondary type,EA069-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +89321,Af8,EA069,No secondary type,EA069-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +89322,Af9,EA069,No secondary type,EA069-9,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +89323,Ag1,EA069,No secondary type,EA069-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +89324,Ag10,EA069,No secondary type,EA069-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +89325,Ag11,EA069,No secondary type,EA069-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +89326,Ag12,EA069,No secondary type,EA069-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +89327,Ag13,EA069,No secondary type,EA069-9,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +89328,Ag14,EA069,No secondary type,EA069-9,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +89329,Ag15,EA069,No secondary type,EA069-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +89330,Ag16,EA069,No secondary type,EA069-9,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +89331,Ag17,EA069,?,EA069-NA,,,,,, +89332,Ag18,EA069,No secondary type,EA069-9,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +89333,Ag19,EA069,No secondary type,EA069-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +89334,Ag2,EA069,No secondary type,EA069-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +89335,Ag20,EA069,No secondary type,EA069-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +89336,Ag21,EA069,No secondary type,EA069-9,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +89337,Ag22,EA069,No secondary type,EA069-9,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +89338,Ag23,EA069,No secondary type,EA069-9,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +89339,Ag24,EA069,?,EA069-NA,,,,,, +89340,Ag25,EA069,No secondary type,EA069-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +89341,Ag26,EA069,No secondary type,EA069-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +89342,Ag27,EA069,?,EA069-NA,,,,,, +89343,Ag28,EA069,?,EA069-NA,,,,,, +89344,Ag29,EA069,?,EA069-NA,,,,,, +89345,Ag3,EA069,No secondary type,EA069-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +89346,Ag30,EA069,No secondary type,EA069-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +89347,Ag31,EA069,No secondary type,EA069-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +89348,Ag32,EA069,No secondary type,EA069-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +89349,Ag33,EA069,?,EA069-NA,,,,,, +89350,Ag34,EA069,No secondary type,EA069-9,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +89351,Ag35,EA069,No secondary type,EA069-9,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +89352,Ag36,EA069,?,EA069-NA,,,,,, +89353,Ag37,EA069,No secondary type,EA069-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +89354,Ag38,EA069,No secondary type,EA069-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +89355,Ag39,EA069,No secondary type,EA069-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +89356,Ag4,EA069,No secondary type,EA069-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +89357,Ag40,EA069,No secondary type,EA069-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +89358,Ag41,EA069,No secondary type,EA069-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +89359,Ag42,EA069,?,EA069-NA,,,,,, +89360,Ag43,EA069,?,EA069-NA,,,,,, +89361,Ag44,EA069,?,EA069-NA,,,,,, +89362,Ag45,EA069,No secondary type,EA069-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +89363,Ag46,EA069,?,EA069-NA,,,,,, +89364,Ag47,EA069,No secondary type,EA069-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +89365,Ag48,EA069,No secondary type,EA069-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +89366,Ag49,EA069,No secondary type,EA069-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +89367,Ag5,EA069,?,EA069-NA,,,,,, +89368,Ag50,EA069,No secondary type,EA069-9,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +89369,Ag51,EA069,No secondary type,EA069-9,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +89370,Ag52,EA069,?,EA069-NA,,,,,, +89371,Ag53,EA069,No secondary type,EA069-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +89372,Ag54,EA069,No secondary type,EA069-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +89373,Ag6,EA069,No secondary type,EA069-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +89374,Ag7,EA069,No secondary type,EA069-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +89375,Ag8,EA069,No secondary type,EA069-9,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +89376,Ag9,EA069,No secondary type,EA069-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +89377,Ah1,EA069,No secondary type,EA069-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89378,Ah10,EA069,No secondary type,EA069-9,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +89379,Ah11,EA069,?,EA069-NA,,,,,, +89380,Ah12,EA069,?,EA069-NA,,,,,, +89381,Ah13,EA069,No secondary type,EA069-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +89382,Ah14,EA069,No secondary type,EA069-9,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +89383,Ah15,EA069,No secondary type,EA069-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +89384,Ah16,EA069,No secondary type,EA069-9,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +89385,Ah17,EA069,?,EA069-NA,,,,,, +89386,Ah18,EA069,?,EA069-NA,,,,,, +89387,Ah19,EA069,No secondary type,EA069-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +89388,Ah2,EA069,No secondary type,EA069-9,,meek1931a,,1920,EthnographicAtlas_1967_p77, +89389,Ah20,EA069,No secondary type,EA069-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +89390,Ah21,EA069,?,EA069-NA,,,,,, +89391,Ah22,EA069,No secondary type,EA069-9,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +89392,Ah23,EA069,?,EA069-NA,,,,,, +89393,Ah24,EA069,No secondary type,EA069-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +89394,Ah25,EA069,No secondary type,EA069-9,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +89395,Ah26,EA069,No secondary type,EA069-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +89396,Ah27,EA069,?,EA069-NA,,,,,, +89397,Ah28,EA069,No secondary type,EA069-9,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +89398,Ah29,EA069,No secondary type,EA069-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +89399,Ah3,EA069,No secondary type,EA069-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +89400,Ah30,EA069,No secondary type,EA069-9,,meek1931b,,1920,EthnographicAtlas_1967_p77, +89401,Ah31,EA069,No secondary type,EA069-9,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +89402,Ah32,EA069,No secondary type,EA069-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +89403,Ah33,EA069,No secondary type,EA069-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +89404,Ah34,EA069,?,EA069-NA,,,,,, +89405,Ah35,EA069,?,EA069-NA,,,,,, +89406,Ah36,EA069,?,EA069-NA,,,,,, +89407,Ah37,EA069,?,EA069-NA,,,,,, +89408,Ah38,EA069,No secondary type,EA069-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +89409,Ah39,EA069,No secondary type,EA069-9,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +89410,Ah4,EA069,No secondary type,EA069-9,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +89411,Ah5,EA069,No secondary type,EA069-9,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +89412,Ah6,EA069,No secondary type,EA069-9,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +89413,Ah7,EA069,No secondary type,EA069-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +89414,Ah8,EA069,No secondary type,EA069-9,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +89415,Ah9,EA069,No secondary type,EA069-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +89416,Ai1,EA069,No secondary type,EA069-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +89417,Ai10,EA069,No secondary type,EA069-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +89418,Ai11,EA069,No secondary type,EA069-9,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +89419,Ai12,EA069,No secondary type,EA069-9,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +89420,Ai13,EA069,No secondary type,EA069-9,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +89421,Ai14,EA069,?,EA069-NA,,,,,, +89422,Ai15,EA069,No secondary type,EA069-9,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +89423,Ai16,EA069,No secondary type,EA069-9,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +89424,Ai17,EA069,?,EA069-NA,,,,,, +89425,Ai18,EA069,?,EA069-NA,,,,,, +89426,Ai19,EA069,?,EA069-NA,,,,,, +89427,Ai2,EA069,No secondary type,EA069-9,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +89428,Ai20,EA069,?,EA069-NA,,,,,, +89429,Ai21,EA069,?,EA069-NA,,,,,, +89430,Ai22,EA069,No secondary type,EA069-9,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +89431,Ai23,EA069,No secondary type,EA069-9,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +89432,Ai24,EA069,No secondary type,EA069-9,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +89433,Ai25,EA069,No secondary type,EA069-9,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +89434,Ai26,EA069,No secondary type,EA069-9,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +89435,Ai27,EA069,?,EA069-NA,,,,,, +89436,Ai28,EA069,No secondary type,EA069-9,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +89437,Ai29,EA069,No secondary type,EA069-9,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +89438,Ai3,EA069,No secondary type,EA069-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +89439,Ai30,EA069,No secondary type,EA069-9,Dependent Pygmies,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +89440,Ai31,EA069,No secondary type,EA069-9,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +89441,Ai32,EA069,No secondary type,EA069-9,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +89442,Ai33,EA069,No secondary type,EA069-9,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +89443,Ai34,EA069,No secondary type,EA069-9,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +89444,Ai35,EA069,No secondary type,EA069-9,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +89445,Ai36,EA069,No secondary type,EA069-9,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +89446,Ai37,EA069,No secondary type,EA069-9,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +89447,Ai38,EA069,No secondary type,EA069-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +89448,Ai39,EA069,No secondary type,EA069-9,,nadel1947,,1940,EthnographicAtlas_1967_p77, +89449,Ai4,EA069,?,EA069-NA,,,,,, +89450,Ai40,EA069,No secondary type,EA069-9,,nadel1947,,1940,EthnographicAtlas_1967_p77, +89451,Ai41,EA069,No secondary type,EA069-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +89452,Ai42,EA069,No secondary type,EA069-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +89453,Ai43,EA069,No secondary type,EA069-9,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +89454,Ai44,EA069,?,EA069-NA,,,,,, +89455,Ai45,EA069,?,EA069-NA,,,,,, +89456,Ai46,EA069,No secondary type,EA069-9,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +89457,Ai47,EA069,No secondary type,EA069-9,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +89458,Ai5,EA069,No secondary type,EA069-9,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +89459,Ai6,EA069,No secondary type,EA069-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +89460,Ai7,EA069,No secondary type,EA069-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +89461,Ai8,EA069,No secondary type,EA069-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +89462,Ai9,EA069,No secondary type,EA069-9,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +89463,Aj1,EA069,No secondary type,EA069-9,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +89464,Aj10,EA069,No secondary type,EA069-9,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +89465,Aj11,EA069,No secondary type,EA069-9,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +89466,Aj12,EA069,No secondary type,EA069-9,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +89467,Aj13,EA069,No secondary type,EA069-9,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +89468,Aj14,EA069,No secondary type,EA069-9,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +89469,Aj15,EA069,No secondary type,EA069-9,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +89470,Aj16,EA069,No secondary type,EA069-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +89471,Aj17,EA069,No secondary type,EA069-9,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +89472,Aj18,EA069,?,EA069-NA,,,,,, +89473,Aj19,EA069,?,EA069-NA,,,,,, +89474,Aj2,EA069,No secondary type,EA069-9,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +89475,Aj20,EA069,No secondary type,EA069-9,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +89476,Aj21,EA069,No secondary type,EA069-9,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +89477,Aj22,EA069,No secondary type,EA069-9,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +89478,Aj23,EA069,No secondary type,EA069-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +89479,Aj24,EA069,No secondary type,EA069-9,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +89480,Aj25,EA069,No secondary type,EA069-9,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +89481,Aj26,EA069,?,EA069-NA,,,,,, +89482,Aj27,EA069,?,EA069-NA,,,,,, +89483,Aj28,EA069,No secondary type,EA069-9,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +89484,Aj29,EA069,?,EA069-NA,,,,,, +89485,Aj3,EA069,No secondary type,EA069-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +89486,Aj30,EA069,?,EA069-NA,,,,,, +89487,Aj31,EA069,?,EA069-NA,,,,,, +89488,Aj4,EA069,No secondary type,EA069-9,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +89489,Aj5,EA069,No secondary type,EA069-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +89490,Aj6,EA069,No secondary type,EA069-9,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +89491,Aj7,EA069,No secondary type,EA069-9,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +89492,Aj8,EA069,Ethnic stratification,EA069-3,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +89493,Aj9,EA069,No secondary type,EA069-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +89494,Ca1,EA069,No secondary type,EA069-9,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +89495,Ca10,EA069,No secondary type,EA069-9,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +89496,Ca11,EA069,No secondary type,EA069-9,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +89497,Ca12,EA069,No secondary type,EA069-9,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +89498,Ca13,EA069,No secondary type,EA069-9,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +89499,Ca14,EA069,No secondary type,EA069-9,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +89500,Ca15,EA069,No secondary type,EA069-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +89501,Ca16,EA069,No secondary type,EA069-9,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +89502,Ca17,EA069,No secondary type,EA069-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +89503,Ca18,EA069,?,EA069-NA,,,,,, +89504,Ca19,EA069,No secondary type,EA069-9,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +89505,Ca2,EA069,No secondary type,EA069-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +89506,Ca20,EA069,No secondary type,EA069-9,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +89507,Ca21,EA069,No secondary type,EA069-9,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +89508,Ca22,EA069,No secondary type,EA069-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +89509,Ca23,EA069,No secondary type,EA069-9,,jensen1959,,1950,EthnographicAtlas_1967_p81, +89510,Ca24,EA069,No secondary type,EA069-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +89511,Ca25,EA069,No secondary type,EA069-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +89512,Ca26,EA069,No secondary type,EA069-9,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +89513,Ca27,EA069,No secondary type,EA069-9,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +89514,Ca28,EA069,No secondary type,EA069-9,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +89515,Ca29,EA069,No secondary type,EA069-9,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +89516,Ca3,EA069,No secondary type,EA069-9,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +89517,Ca30,EA069,No secondary type,EA069-9,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +89518,Ca31,EA069,No secondary type,EA069-9,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +89519,Ca32,EA069,No secondary type,EA069-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +89520,Ca33,EA069,No secondary type,EA069-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +89521,Ca34,EA069,?,EA069-NA,,,,,, +89522,Ca35,EA069,?,EA069-NA,,,,,, +89523,Ca36,EA069,?,EA069-NA,,,,,, +89524,Ca37,EA069,?,EA069-NA,,,,,, +89525,Ca38,EA069,?,EA069-NA,,,,,, +89526,Ca39,EA069,No secondary type,EA069-9,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +89527,Ca4,EA069,?,EA069-NA,,,,,, +89528,Ca40,EA069,No secondary type,EA069-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +89529,Ca41,EA069,No secondary type,EA069-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +89530,Ca42,EA069,No secondary type,EA069-9,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +89531,Ca43,EA069,?,EA069-NA,,,,,, +89532,Ca5,EA069,?,EA069-NA,,,,,, +89533,Ca6,EA069,No secondary type,EA069-9,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +89534,Ca7,EA069,No secondary type,EA069-9,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +89535,Ca8,EA069,No secondary type,EA069-9,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +89536,Ca9,EA069,?,EA069-NA,,,,,, +89537,Cb1,EA069,No secondary type,EA069-9,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +89538,Cb10,EA069,No secondary type,EA069-9,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +89539,Cb11,EA069,?,EA069-NA,,,,,, +89540,Cb12,EA069,?,EA069-NA,,,,,, +89541,Cb13,EA069,?,EA069-NA,,,,,, +89542,Cb14,EA069,?,EA069-NA,,,,,, +89543,Cb15,EA069,No secondary type,EA069-9,"""Descendants of slaves . . . do not fully enjoy the privileges that Humr do""",cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +89544,Cb16,EA069,?,EA069-NA,,,,,, +89545,Cb17,EA069,No secondary type,EA069-9,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +89546,Cb18,EA069,No secondary type,EA069-9,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +89547,Cb19,EA069,No secondary type,EA069-9,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +89548,Cb2,EA069,No secondary type,EA069-9,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +89549,Cb20,EA069,No secondary type,EA069-9,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +89550,Cb21,EA069,No secondary type,EA069-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +89551,Cb22,EA069,No secondary type,EA069-9,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +89552,Cb23,EA069,No secondary type,EA069-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +89553,Cb24,EA069,No secondary type,EA069-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +89554,Cb25,EA069,No secondary type,EA069-9,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +89555,Cb26,EA069,No secondary type,EA069-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +89556,Cb27,EA069,No secondary type,EA069-9,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +89557,Cb28,EA069,?,EA069-NA,,,,,, +89558,Cb29,EA069,?,EA069-NA,,,,,, +89559,Cb3,EA069,No secondary type,EA069-9,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +89560,Cb4,EA069,?,EA069-NA,,,,,, +89561,Cb5,EA069,No secondary type,EA069-9,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +89562,Cb6,EA069,No secondary type,EA069-9,,woodnd,,1920,EthnographicAtlas_1967_p81, +89563,Cb7,EA069,No secondary type,EA069-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +89564,Cb8,EA069,?,EA069-NA,,,,,, +89565,Cb9,EA069,No secondary type,EA069-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +89566,Cc1,EA069,Despised occupation groups,EA069-2,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +89567,Cc10,EA069,Despised occupation groups,EA069-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +89568,Cc11,EA069,?,EA069-NA,,,,,, +89569,Cc12,EA069,No secondary type,EA069-9,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +89570,Cc13,EA069,No secondary type,EA069-9,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +89571,Cc14,EA069,No secondary type,EA069-9,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +89572,Cc15,EA069,No secondary type,EA069-9,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +89573,Cc16,EA069,No secondary type,EA069-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +89574,Cc17,EA069,No secondary type,EA069-9,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +89575,Cc18,EA069,No secondary type,EA069-9,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +89576,Cc19,EA069,No secondary type,EA069-9,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +89577,Cc2,EA069,No secondary type,EA069-9,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +89578,Cc20,EA069,No secondary type,EA069-9,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +89579,Cc3,EA069,?,EA069-NA,,,,,, +89580,Cc4,EA069,No secondary type,EA069-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +89581,Cc5,EA069,Despised occupation groups,EA069-2,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +89582,Cc6,EA069,?,EA069-NA,,,,,, +89583,Cc7,EA069,No secondary type,EA069-9,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89584,Cc8,EA069,No secondary type,EA069-9,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +89585,Cc9,EA069,Despised occupation groups,EA069-2,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +89586,Cd1,EA069,?,EA069-NA,,,,,, +89587,Cd10,EA069,?,EA069-NA,,,,,, +89588,Cd11,EA069,No secondary type,EA069-9,Midwives and mortuary specialists were outcaste groups,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +89589,Cd12,EA069,No secondary type,EA069-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +89590,Cd13,EA069,?,EA069-NA,,,,,, +89591,Cd14,EA069,?,EA069-NA,,,,,, +89592,Cd15,EA069,?,EA069-NA,,,,,, +89593,Cd16,EA069,No secondary type,EA069-9,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +89594,Cd17,EA069,?,EA069-NA,,,,,, +89595,Cd18,EA069,?,EA069-NA,,,,,, +89596,Cd19,EA069,?,EA069-NA,,,,,, +89597,Cd2,EA069,No secondary type,EA069-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +89598,Cd20,EA069,?,EA069-NA,Class distinctions are not marked,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +89599,Cd21,EA069,No secondary type,EA069-9,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +89600,Cd3,EA069,Ethnic stratification,EA069-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +89601,Cd4,EA069,?,EA069-NA,,,,,, +89602,Cd5,EA069,No secondary type,EA069-9,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +89603,Cd6,EA069,?,EA069-NA,,,,,, +89604,Cd7,EA069,?,EA069-NA,,,,,, +89605,Cd8,EA069,?,EA069-NA,,,,,, +89606,Cd9,EA069,?,EA069-NA,,,,,, +89607,Ce1,EA069,?,EA069-NA,,,,,, +89608,Ce2,EA069,No secondary type,EA069-9,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +89609,Ce3,EA069,No secondary type,EA069-9,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +89610,Ce4,EA069,No secondary type,EA069-9,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89611,Ce5,EA069,No secondary type,EA069-9,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +89612,Ce6,EA069,?,EA069-NA,,,,,, +89613,Ce7,EA069,No secondary type,EA069-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +89614,Ce8,EA069,No secondary type,EA069-9,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +89615,Cf1,EA069,No secondary type,EA069-9,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +89616,Cf2,EA069,No secondary type,EA069-9,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +89617,Cf3,EA069,No secondary type,EA069-9,,munch1945,,1930,EthnographicAtlas_1967_p85, +89618,Cf4,EA069,No secondary type,EA069-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +89619,Cf5,EA069,No secondary type,EA069-9,,miner1939,,1930,EthnographicAtlas_1967_p85, +89620,Cg1,EA069,No secondary type,EA069-9,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +89621,Cg2,EA069,No secondary type,EA069-9,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +89622,Cg3,EA069,No secondary type,EA069-9,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +89623,Cg4,EA069,No secondary type,EA069-9,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +89624,Cg5,EA069,No secondary type,EA069-9,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +89625,Ch1,EA069,No secondary type,EA069-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +89626,Ch10,EA069,?,EA069-NA,,,,,, +89627,Ch11,EA069,No secondary type,EA069-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +89628,Ch2,EA069,No secondary type,EA069-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +89629,Ch3,EA069,No secondary type,EA069-9,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +89630,Ch4,EA069,No secondary type,EA069-9,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +89631,Ch5,EA069,No secondary type,EA069-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +89632,Ch6,EA069,?,EA069-NA,,,,,, +89633,Ch7,EA069,No secondary type,EA069-9,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +89634,Ch8,EA069,No secondary type,EA069-9,,hanzeli1955,,1940,EthnographicAtlas_1967_p85, +89635,Ch9,EA069,No secondary type,EA069-9,Jews,maciuika1955,,1930,EthnographicAtlas_1967_p85, +89636,Ci1,EA069,No secondary type,EA069-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +89637,Ci10,EA069,No secondary type,EA069-9,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +89638,Ci11,EA069,No secondary type,EA069-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +89639,Ci12,EA069,No secondary type,EA069-9,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +89640,Ci2,EA069,No secondary type,EA069-9,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +89641,Ci3,EA069,?,EA069-NA,,,,,, +89642,Ci4,EA069,No secondary type,EA069-9,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +89643,Ci5,EA069,No secondary type,EA069-9,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +89644,Ci6,EA069,?,EA069-NA,,,,,, +89645,Ci7,EA069,?,EA069-NA,,,,,, +89646,Ci8,EA069,?,EA069-NA,,,,,, +89647,Ci9,EA069,?,EA069-NA,,,,,, +89648,Cj1,EA069,?,EA069-NA,,,,,, +89649,Cj10,EA069,No secondary type,EA069-9,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +89650,Cj2,EA069,No secondary type,EA069-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +89651,Cj3,EA069,No secondary type,EA069-9,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +89652,Cj4,EA069,No secondary type,EA069-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +89653,Cj5,EA069,No secondary type,EA069-9,,dickson1949,,1930,EthnographicAtlas_1967_p89, +89654,Cj6,EA069,?,EA069-NA,,,,,, +89655,Cj7,EA069,No secondary type,EA069-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +89656,Cj8,EA069,No secondary type,EA069-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +89657,Cj9,EA069,No secondary type,EA069-9,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +89658,Ea1,EA069,No secondary type,EA069-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p89, +89659,Ea10,EA069,No secondary type,EA069-9,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +89660,Ea11,EA069,No secondary type,EA069-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +89661,Ea12,EA069,?,EA069-NA,,,,,, +89662,Ea13,EA069,No secondary type,EA069-9,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +89663,Ea2,EA069,No secondary type,EA069-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +89664,Ea3,EA069,No secondary type,EA069-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +89665,Ea4,EA069,No secondary type,EA069-9,,barth1956b,,1950,EthnographicAtlas_1967_p89, +89666,Ea5,EA069,No secondary type,EA069-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +89667,Ea6,EA069,No secondary type,EA069-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +89668,Ea7,EA069,No secondary type,EA069-9,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +89669,Ea8,EA069,?,EA069-NA,,,,,, +89670,Ea9,EA069,?,EA069-NA,,,,,, +89671,Eb1,EA069,No secondary type,EA069-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +89672,Eb2,EA069,?,EA069-NA,,,,,, +89673,Eb3,EA069,No secondary type,EA069-9,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +89674,Eb4,EA069,No secondary type,EA069-9,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +89675,Eb5,EA069,?,EA069-NA,,,,,, +89676,Eb6,EA069,?,EA069-NA,,,,,, +89677,Eb7,EA069,No secondary type,EA069-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +89678,Eb8,EA069,?,EA069-NA,,,,,, +89679,Ec1,EA069,No secondary type,EA069-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +89680,Ec10,EA069,No secondary type,EA069-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +89681,Ec11,EA069,No secondary type,EA069-9,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +89682,Ec2,EA069,No secondary type,EA069-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89683,Ec3,EA069,No secondary type,EA069-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +89684,Ec4,EA069,No secondary type,EA069-9,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +89685,Ec5,EA069,No secondary type,EA069-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +89686,Ec6,EA069,No secondary type,EA069-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +89687,Ec7,EA069,No secondary type,EA069-9,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +89688,Ec8,EA069,No secondary type,EA069-9,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +89689,Ec9,EA069,No secondary type,EA069-9,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +89690,Ed1,EA069,No secondary type,EA069-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +89691,Ed10,EA069,No secondary type,EA069-9,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +89692,Ed13,EA069,?,EA069-NA,,,,,, +89693,Ed14,EA069,?,EA069-NA,,,,,, +89694,Ed15a,EA069,?,EA069-NA,,,,,, +89695,Ed15b,EA069,No secondary type,EA069-9,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +89696,Ed16,EA069,?,EA069-NA,,,,,, +89697,Ed2,EA069,?,EA069-NA,,,,,, +89698,Ed3,EA069,No secondary type,EA069-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +89699,Ed4,EA069,No secondary type,EA069-9,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +89700,Ed5,EA069,No secondary type,EA069-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89701,Ed6,EA069,No secondary type,EA069-9,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +89702,Ed7,EA069,No secondary type,EA069-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +89703,Ed8,EA069,No secondary type,EA069-9,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +89704,Ed9,EA069,No secondary type,EA069-9,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +89705,Ee1,EA069,No secondary type,EA069-9,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +89706,Ee2,EA069,No secondary type,EA069-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p89, +89707,Ee3,EA069,?,EA069-NA,,,,,, +89708,Ee4,EA069,?,EA069-NA,,,,,, +89709,Ee5,EA069,No secondary type,EA069-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +89710,Ee6,EA069,Ethnic stratification,EA069-3,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +89711,Ee7,EA069,?,EA069-NA,,,,,, +89712,Ee8,EA069,No secondary type,EA069-9,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +89713,Ef1,EA069,No secondary type,EA069-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +89714,Ef10,EA069,?,EA069-NA,,,,,, +89715,Ef11,EA069,No secondary type,EA069-9,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +89716,Ef2,EA069,No secondary type,EA069-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +89717,Ef3,EA069,?,EA069-NA,,,,,, +89718,Ef4,EA069,?,EA069-NA,,,,,, +89719,Ef5,EA069,No secondary type,EA069-9,The Bhil form part of a complex caste structure,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +89720,Ef6,EA069,No secondary type,EA069-9,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +89721,Ef7,EA069,No secondary type,EA069-9,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +89722,Ef8,EA069,No secondary type,EA069-9,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +89723,Ef9,EA069,No secondary type,EA069-9,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89724,Eg1,EA069,No secondary type,EA069-9,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89725,Eg10,EA069,No secondary type,EA069-9,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +89726,Eg11,EA069,?,EA069-NA,,,,,, +89727,Eg12,EA069,?,EA069-NA,,,,,, +89728,Eg13,EA069,No secondary type,EA069-9,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89729,Eg14,EA069,?,EA069-NA,,,,,, +89730,Eg2,EA069,No secondary type,EA069-9,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +89731,Eg3,EA069,No secondary type,EA069-9,The Hindu caste system has exerted considerable influence,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +89732,Eg4,EA069,No secondary type,EA069-9,Two endogamous moieties exhibit minor caste-like features,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +89733,Eg5,EA069,No secondary type,EA069-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +89734,Eg6,EA069,No secondary type,EA069-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +89735,Eg7,EA069,?,EA069-NA,,,,,, +89736,Eg8,EA069,No secondary type,EA069-9,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +89737,Eg9,EA069,No secondary type,EA069-9,,elwin1939,,1930,EthnographicAtlas_1967_p93, +89738,Eh1,EA069,No secondary type,EA069-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +89739,Eh10,EA069,?,EA069-NA,,,,,, +89740,Eh2,EA069,No secondary type,EA069-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +89741,Eh3,EA069,No secondary type,EA069-9,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +89742,Eh4,EA069,No secondary type,EA069-9,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89743,Eh5,EA069,No secondary type,EA069-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +89744,Eh6,EA069,No secondary type,EA069-9,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +89745,Eh7,EA069,No secondary type,EA069-9,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +89746,Eh8,EA069,No secondary type,EA069-9,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +89747,Eh9,EA069,No secondary type,EA069-9,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +89748,Ei1,EA069,No secondary type,EA069-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89749,Ei10,EA069,No secondary type,EA069-9,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +89750,Ei11,EA069,No secondary type,EA069-9,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +89751,Ei12,EA069,No secondary type,EA069-9,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +89752,Ei13,EA069,No secondary type,EA069-9,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +89753,Ei14,EA069,No secondary type,EA069-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +89754,Ei15,EA069,?,EA069-NA,,,,,, +89755,Ei16,EA069,No secondary type,EA069-9,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +89756,Ei17,EA069,?,EA069-NA,,,,,, +89757,Ei18,EA069,No secondary type,EA069-9,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +89758,Ei19,EA069,No secondary type,EA069-9,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +89759,Ei2,EA069,No secondary type,EA069-9,,mills1922,,1920,EthnographicAtlas_1967_p93, +89760,Ei20,EA069,?,EA069-NA,,,,,, +89761,Ei3,EA069,No secondary type,EA069-9,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +89762,Ei4,EA069,No secondary type,EA069-9,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +89763,Ei5,EA069,No secondary type,EA069-9,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +89764,Ei6,EA069,No secondary type,EA069-9,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +89765,Ei7,EA069,No secondary type,EA069-9,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +89766,Ei8,EA069,No secondary type,EA069-9,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +89767,Ei9,EA069,?,EA069-NA,,,,,, +89768,Ej1,EA069,No secondary type,EA069-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +89769,Ej10,EA069,No secondary type,EA069-9,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +89770,Ej11,EA069,No secondary type,EA069-9,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +89771,Ej12,EA069,No secondary type,EA069-9,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +89772,Ej13,EA069,No secondary type,EA069-9,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +89773,Ej14,EA069,No secondary type,EA069-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89774,Ej15,EA069,No secondary type,EA069-9,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +89775,Ej16,EA069,No secondary type,EA069-9,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +89776,Ej2,EA069,No secondary type,EA069-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +89777,Ej3,EA069,No secondary type,EA069-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +89778,Ej4,EA069,No secondary type,EA069-9,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +89779,Ej5,EA069,No secondary type,EA069-9,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +89780,Ej6,EA069,No secondary type,EA069-9,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p93, +89781,Ej7,EA069,No secondary type,EA069-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +89782,Ej8,EA069,No secondary type,EA069-9,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +89783,Ej9,EA069,No secondary type,EA069-9,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +89784,Ia1,EA069,No secondary type,EA069-9,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +89785,Ia10,EA069,No secondary type,EA069-9,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +89786,Ia11,EA069,No secondary type,EA069-9,,mabuchi1960,,1930,EthnographicAtlas_1967_p93, +89787,Ia12,EA069,No secondary type,EA069-9,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +89788,Ia13,EA069,No secondary type,EA069-9,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +89789,Ia14,EA069,No secondary type,EA069-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +89790,Ia15,EA069,No secondary type,EA069-9,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +89791,Ia16,EA069,No secondary type,EA069-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +89792,Ia17,EA069,?,EA069-NA,,,,,, +89793,Ia18,EA069,?,EA069-NA,,,,,, +89794,Ia2,EA069,No secondary type,EA069-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +89795,Ia3,EA069,No secondary type,EA069-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +89796,Ia4,EA069,No secondary type,EA069-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +89797,Ia5,EA069,No secondary type,EA069-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +89798,Ia6,EA069,No secondary type,EA069-9,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89799,Ia7,EA069,No secondary type,EA069-9,,fox1954,,1950,EthnographicAtlas_1967_p93, +89800,Ia8,EA069,No secondary type,EA069-9,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +89801,Ia9,EA069,No secondary type,EA069-9,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +89802,Ib1,EA069,No secondary type,EA069-9,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89803,Ib2,EA069,No secondary type,EA069-9,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89804,Ib3,EA069,No secondary type,EA069-9,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +89805,Ib4,EA069,No secondary type,EA069-9,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +89806,Ib5,EA069,No secondary type,EA069-9,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +89807,Ib6,EA069,No secondary type,EA069-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +89808,Ib7,EA069,No secondary type,EA069-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +89809,Ib8,EA069,No secondary type,EA069-9,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +89810,Ib9,EA069,?,EA069-NA,,,,,, +89811,Ic1,EA069,No secondary type,EA069-9,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89812,Ic10,EA069,No secondary type,EA069-9,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +89813,Ic11,EA069,No secondary type,EA069-9,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89814,Ic12,EA069,No secondary type,EA069-9,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +89815,Ic13,EA069,?,EA069-NA,,,,,, +89816,Ic2,EA069,No secondary type,EA069-9,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p97, +89817,Ic3,EA069,No secondary type,EA069-9,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +89818,Ic4,EA069,No secondary type,EA069-9,,kruyt1921;wetering1925,,1920,Ethnology_Vol2_No1_Jan_1963, +89819,Ic5,EA069,No secondary type,EA069-9,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +89820,Ic6,EA069,No secondary type,EA069-9,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +89821,Ic7,EA069,No secondary type,EA069-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +89822,Ic8,EA069,No secondary type,EA069-9,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +89823,Ic9,EA069,No secondary type,EA069-9,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +89824,Id1,EA069,No secondary type,EA069-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +89825,Id10,EA069,No secondary type,EA069-9,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +89826,Id11,EA069,No secondary type,EA069-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +89827,Id12,EA069,No secondary type,EA069-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +89828,Id13,EA069,No secondary type,EA069-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +89829,Id2,EA069,No secondary type,EA069-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +89830,Id3,EA069,No secondary type,EA069-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +89831,Id4,EA069,No secondary type,EA069-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p97, +89832,Id5,EA069,No secondary type,EA069-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p97, +89833,Id6,EA069,No secondary type,EA069-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p97, +89834,Id7,EA069,?,EA069-NA,,,,,, +89835,Id8,EA069,No secondary type,EA069-9,,roth1890,,1830,EthnographicAtlas_1967_p97, +89836,Id9,EA069,No secondary type,EA069-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p97, +89837,Ie1,EA069,No secondary type,EA069-9,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89838,Ie10,EA069,No secondary type,EA069-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +89839,Ie11,EA069,No secondary type,EA069-9,,bowers1964,,1950,EthnographicAtlas_1967_p97, +89840,Ie12,EA069,No secondary type,EA069-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89841,Ie13,EA069,No secondary type,EA069-9,,landtman1927,,1920,EthnographicAtlas_1967_p97, +89842,Ie14,EA069,No secondary type,EA069-9,,haddon1908,,1900,EthnographicAtlas_1967_p97, +89843,Ie15,EA069,No secondary type,EA069-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89844,Ie16,EA069,No secondary type,EA069-9,,williams194041,,1940,EthnographicAtlas_1967_p97, +89845,Ie17,EA069,No secondary type,EA069-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +89846,Ie18,EA069,No secondary type,EA069-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +89847,Ie19,EA069,No secondary type,EA069-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +89848,Ie2,EA069,No secondary type,EA069-9,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +89849,Ie20,EA069,No secondary type,EA069-9,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +89850,Ie21,EA069,No secondary type,EA069-9,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +89851,Ie22,EA069,No secondary type,EA069-9,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +89852,Ie23,EA069,No secondary type,EA069-9,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +89853,Ie24,EA069,No secondary type,EA069-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +89854,Ie25,EA069,No secondary type,EA069-9,,williamson1912,,1920,EthnographicAtlas_1967_p97, +89855,Ie26,EA069,No secondary type,EA069-9,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +89856,Ie27,EA069,No secondary type,EA069-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +89857,Ie28,EA069,No secondary type,EA069-9,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +89858,Ie29,EA069,No secondary type,EA069-9,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89859,Ie3,EA069,No secondary type,EA069-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89860,Ie30,EA069,No secondary type,EA069-9,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +89861,Ie31,EA069,No secondary type,EA069-9,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +89862,Ie32,EA069,No secondary type,EA069-9,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +89863,Ie33,EA069,No secondary type,EA069-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +89864,Ie34,EA069,?,EA069-NA,,,,,, +89865,Ie35,EA069,No secondary type,EA069-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +89866,Ie36,EA069,?,EA069-NA,,,,,, +89867,Ie37,EA069,?,EA069-NA,,,,,, +89868,Ie38,EA069,No secondary type,EA069-9,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +89869,Ie39,EA069,No secondary type,EA069-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +89870,Ie4,EA069,No secondary type,EA069-9,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89871,Ie5,EA069,No secondary type,EA069-9,,williams1936,,1930,EthnographicAtlas_1967_p97, +89872,Ie6,EA069,No secondary type,EA069-9,,held1947,,1930,EthnographicAtlas_1967_p97, +89873,Ie7,EA069,No secondary type,EA069-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +89874,Ie8,EA069,No secondary type,EA069-9,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +89875,Ie9,EA069,No secondary type,EA069-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +89876,If1,EA069,No secondary type,EA069-9,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89877,If10,EA069,?,EA069-NA,,,,,, +89878,If11,EA069,No secondary type,EA069-9,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +89879,If12,EA069,No secondary type,EA069-9,,mason1954,,1940,EthnographicAtlas_1967_p101, +89880,If13,EA069,No secondary type,EA069-9,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p101, +89881,If14,EA069,No secondary type,EA069-9,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +89882,If15,EA069,No secondary type,EA069-9,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +89883,If16,EA069,No secondary type,EA069-9,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +89884,If17,EA069,No secondary type,EA069-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +89885,If2,EA069,No secondary type,EA069-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +89886,If3,EA069,No secondary type,EA069-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +89887,If4,EA069,No secondary type,EA069-9,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +89888,If5,EA069,No secondary type,EA069-9,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +89889,If6,EA069,No secondary type,EA069-9,"Complex stratification into nine social classes and seven ranks, of which three form an endogamous upper caste and four an endogamous lower caste",huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +89890,If7,EA069,No secondary type,EA069-9,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +89891,If8,EA069,No secondary type,EA069-9,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +89892,If9,EA069,No secondary type,EA069-9,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +89893,Ig1,EA069,No secondary type,EA069-9,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +89894,Ig10,EA069,No secondary type,EA069-9,,schwartz1964,,1950,EthnographicAtlas_1967_p101, +89895,Ig11,EA069,No secondary type,EA069-9,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +89896,Ig12,EA069,No secondary type,EA069-9,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +89897,Ig13,EA069,No secondary type,EA069-9,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +89898,Ig14,EA069,No secondary type,EA069-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +89899,Ig15,EA069,?,EA069-NA,,,,,, +89900,Ig16,EA069,?,EA069-NA,,,,,, +89901,Ig17,EA069,?,EA069-NA,,,,,, +89902,Ig18,EA069,?,EA069-NA,,,,,, +89903,Ig19,EA069,?,EA069-NA,,,,,, +89904,Ig2,EA069,No secondary type,EA069-9,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +89905,Ig20,EA069,No secondary type,EA069-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +89906,Ig21,EA069,No secondary type,EA069-9,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +89907,Ig3,EA069,No secondary type,EA069-9,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +89908,Ig4,EA069,No secondary type,EA069-9,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +89909,Ig5,EA069,No secondary type,EA069-9,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +89910,Ig6,EA069,No secondary type,EA069-9,,ivens1927,,1900,EthnographicAtlas_1967_p101, +89911,Ig7,EA069,No secondary type,EA069-9,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +89912,Ig8,EA069,?,EA069-NA,,,,,, +89913,Ig9,EA069,No secondary type,EA069-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +89914,Ih1,EA069,No secondary type,EA069-9,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +89915,Ih10,EA069,No secondary type,EA069-9,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89916,Ih11,EA069,?,EA069-NA,,,,,, +89917,Ih12,EA069,?,EA069-NA,,,,,, +89918,Ih13,EA069,?,EA069-NA,,,,,, +89919,Ih14,EA069,No secondary type,EA069-9,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +89920,Ih2,EA069,No secondary type,EA069-9,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89921,Ih3,EA069,No secondary type,EA069-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +89922,Ih4,EA069,No secondary type,EA069-9,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89923,Ih5,EA069,No secondary type,EA069-9,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +89924,Ih6,EA069,No secondary type,EA069-9,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p101, +89925,Ih7,EA069,No secondary type,EA069-9,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +89926,Ih8,EA069,No secondary type,EA069-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +89927,Ih9,EA069,No secondary type,EA069-9,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89928,Ii1,EA069,No secondary type,EA069-9,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +89929,Ii10,EA069,No secondary type,EA069-9,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +89930,Ii12,EA069,No secondary type,EA069-9,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89931,Ii13,EA069,No secondary type,EA069-9,,burrows1937,,1830,EthnographicAtlas_1967_p101, +89932,Ii14,EA069,No secondary type,EA069-9,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +89933,Ii2,EA069,No secondary type,EA069-9,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +89934,Ii3,EA069,No secondary type,EA069-9,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +89935,Ii4,EA069,No secondary type,EA069-9,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +89936,Ii5,EA069,No secondary type,EA069-9,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +89937,Ii6,EA069,No secondary type,EA069-9,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +89938,Ii7,EA069,No secondary type,EA069-9,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +89939,Ii8,EA069,No secondary type,EA069-9,,burrows1936,,1840,EthnographicAtlas_1967_p101, +89940,Ii9,EA069,No secondary type,EA069-9,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +89941,Ij1,EA069,No secondary type,EA069-9,,buck1934,,1820,EthnographicAtlas_1967_p101, +89942,Ij10,EA069,No secondary type,EA069-9,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +89943,Ij2,EA069,No secondary type,EA069-9,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +89944,Ij3,EA069,No secondary type,EA069-9,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +89945,Ij4,EA069,No secondary type,EA069-9,,buck1932a,,1850,EthnographicAtlas_1967_p105, +89946,Ij5,EA069,No secondary type,EA069-9,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +89947,Ij6,EA069,No secondary type,EA069-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +89948,Ij7,EA069,No secondary type,EA069-9,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +89949,Ij8,EA069,No secondary type,EA069-9,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +89950,Ij9,EA069,No secondary type,EA069-9,,metraux1940,,1860,EthnographicAtlas_1967_p105, +89951,Na1,EA069,No secondary type,EA069-9,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +89952,Na10,EA069,No secondary type,EA069-9,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +89953,Na11,EA069,No secondary type,EA069-9,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +89954,Na12,EA069,No secondary type,EA069-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +89955,Na13,EA069,No secondary type,EA069-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +89956,Na14,EA069,No secondary type,EA069-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +89957,Na15,EA069,No secondary type,EA069-9,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +89958,Na16,EA069,No secondary type,EA069-9,,osgood1931,,1860,EthnographicAtlas_1967_p105, +89959,Na17,EA069,No secondary type,EA069-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89960,Na19,EA069,No secondary type,EA069-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +89961,Na2,EA069,No secondary type,EA069-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +89962,Na20,EA069,No secondary type,EA069-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +89963,Na21,EA069,No secondary type,EA069-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +89964,Na22,EA069,No secondary type,EA069-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +89965,Na23,EA069,No secondary type,EA069-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +89966,Na24,EA069,No secondary type,EA069-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +89967,Na25,EA069,No secondary type,EA069-9,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +89968,Na26,EA069,No secondary type,EA069-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +89969,Na27,EA069,No secondary type,EA069-9,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +89970,Na28,EA069,No secondary type,EA069-9,,jenness1937,,1880,EthnographicAtlas_1967_p105, +89971,Na29,EA069,No secondary type,EA069-9,,goddard1916,,1850,EthnographicAtlas_1967_p105, +89972,Na3,EA069,No secondary type,EA069-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +89973,Na30,EA069,No secondary type,EA069-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +89974,Na31,EA069,No secondary type,EA069-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +89975,Na32,EA069,No secondary type,EA069-9,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +89976,Na33,EA069,No secondary type,EA069-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +89977,Na34,EA069,No secondary type,EA069-9,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +89978,Na35,EA069,No secondary type,EA069-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +89979,Na36,EA069,No secondary type,EA069-9,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +89980,Na37,EA069,No secondary type,EA069-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +89981,Na38,EA069,No secondary type,EA069-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +89982,Na39,EA069,No secondary type,EA069-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +89983,Na4,EA069,No secondary type,EA069-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +89984,Na40,EA069,No secondary type,EA069-9,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +89985,Na41,EA069,No secondary type,EA069-9,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +89986,Na42,EA069,No secondary type,EA069-9,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p105, +89987,Na43,EA069,No secondary type,EA069-9,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +89988,Na44,EA069,No secondary type,EA069-9,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +89989,Na45,EA069,No secondary type,EA069-9,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +89990,Na5,EA069,No secondary type,EA069-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +89991,Na6,EA069,No secondary type,EA069-9,,lantis1946,,1930,EthnographicAtlas_1967_p105, +89992,Na7,EA069,No secondary type,EA069-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +89993,Na8,EA069,No secondary type,EA069-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +89994,Na9,EA069,No secondary type,EA069-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +89995,Nb1,EA069,No secondary type,EA069-9,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +89996,Nb10,EA069,No secondary type,EA069-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +89997,Nb11,EA069,No secondary type,EA069-9,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +89998,Nb12,EA069,No secondary type,EA069-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +89999,Nb13,EA069,No secondary type,EA069-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +90000,Nb14,EA069,No secondary type,EA069-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +90001,Nb15,EA069,No secondary type,EA069-9,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +90002,Nb16,EA069,No secondary type,EA069-9,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +90003,Nb17,EA069,No secondary type,EA069-9,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +90004,Nb18,EA069,No secondary type,EA069-9,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +90005,Nb19,EA069,No secondary type,EA069-9,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +90006,Nb2,EA069,No secondary type,EA069-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +90007,Nb20,EA069,No secondary type,EA069-9,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +90008,Nb21,EA069,No secondary type,EA069-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +90009,Nb22,EA069,No secondary type,EA069-9,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +90010,Nb23,EA069,No secondary type,EA069-9,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +90011,Nb24,EA069,No secondary type,EA069-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +90012,Nb25,EA069,No secondary type,EA069-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +90013,Nb26,EA069,No secondary type,EA069-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +90014,Nb27,EA069,No secondary type,EA069-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +90015,Nb28,EA069,No secondary type,EA069-9,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +90016,Nb29,EA069,No secondary type,EA069-9,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +90017,Nb3,EA069,No secondary type,EA069-9,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +90018,Nb30,EA069,No secondary type,EA069-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +90019,Nb31,EA069,No secondary type,EA069-9,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +90020,Nb32,EA069,No secondary type,EA069-9,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +90021,Nb33,EA069,No secondary type,EA069-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +90022,Nb34,EA069,No secondary type,EA069-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +90023,Nb35,EA069,No secondary type,EA069-9,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +90024,Nb36,EA069,No secondary type,EA069-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +90025,Nb37,EA069,No secondary type,EA069-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +90026,Nb38,EA069,No secondary type,EA069-9,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +90027,Nb39,EA069,No secondary type,EA069-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +90028,Nb4,EA069,No secondary type,EA069-9,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +90029,Nb5,EA069,No secondary type,EA069-9,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +90030,Nb6,EA069,No secondary type,EA069-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +90031,Nb7,EA069,No secondary type,EA069-9,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +90032,Nb8,EA069,No secondary type,EA069-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +90033,Nb9,EA069,No secondary type,EA069-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +90034,Nc1,EA069,No secondary type,EA069-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +90035,Nc10,EA069,No secondary type,EA069-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +90036,Nc11,EA069,No secondary type,EA069-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +90037,Nc12,EA069,No secondary type,EA069-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +90038,Nc13,EA069,No secondary type,EA069-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +90039,Nc14,EA069,No secondary type,EA069-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +90040,Nc15,EA069,No secondary type,EA069-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +90041,Nc16,EA069,No secondary type,EA069-9,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +90042,Nc17,EA069,No secondary type,EA069-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +90043,Nc18,EA069,No secondary type,EA069-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +90044,Nc19,EA069,No secondary type,EA069-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +90045,Nc2,EA069,No secondary type,EA069-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +90046,Nc20,EA069,No secondary type,EA069-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +90047,Nc21,EA069,No secondary type,EA069-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +90048,Nc22,EA069,No secondary type,EA069-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +90049,Nc23,EA069,No secondary type,EA069-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +90050,Nc24,EA069,No secondary type,EA069-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +90051,Nc25,EA069,No secondary type,EA069-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +90052,Nc26,EA069,No secondary type,EA069-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +90053,Nc27,EA069,No secondary type,EA069-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +90054,Nc28,EA069,No secondary type,EA069-9,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +90055,Nc29,EA069,No secondary type,EA069-9,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +90056,Nc3,EA069,No secondary type,EA069-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +90057,Nc30,EA069,No secondary type,EA069-9,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +90058,Nc31,EA069,No secondary type,EA069-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +90059,Nc32,EA069,No secondary type,EA069-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +90060,Nc33,EA069,No secondary type,EA069-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +90061,Nc34,EA069,No secondary type,EA069-9,,meigs1939,,1880,EthnographicAtlas_1967_p109, +90062,Nc4,EA069,No secondary type,EA069-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +90063,Nc5,EA069,No secondary type,EA069-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +90064,Nc6,EA069,No secondary type,EA069-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +90065,Nc7,EA069,No secondary type,EA069-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +90066,Nc8,EA069,No secondary type,EA069-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +90067,Nc9,EA069,No secondary type,EA069-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +90068,Nd1,EA069,No secondary type,EA069-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +90069,Nd10,EA069,No secondary type,EA069-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +90070,Nd11,EA069,No secondary type,EA069-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +90071,Nd12,EA069,No secondary type,EA069-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +90072,Nd13,EA069,No secondary type,EA069-9,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +90073,Nd14,EA069,No secondary type,EA069-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +90074,Nd15,EA069,No secondary type,EA069-9,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +90075,Nd16,EA069,No secondary type,EA069-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +90076,Nd17,EA069,No secondary type,EA069-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +90077,Nd18,EA069,No secondary type,EA069-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +90078,Nd19,EA069,No secondary type,EA069-9,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +90079,Nd2,EA069,No secondary type,EA069-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +90080,Nd20,EA069,No secondary type,EA069-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +90081,Nd21,EA069,No secondary type,EA069-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +90082,Nd22,EA069,No secondary type,EA069-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +90083,Nd23,EA069,No secondary type,EA069-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +90084,Nd24,EA069,No secondary type,EA069-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +90085,Nd25,EA069,No secondary type,EA069-9,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +90086,Nd26,EA069,No secondary type,EA069-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +90087,Nd27,EA069,No secondary type,EA069-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +90088,Nd28,EA069,No secondary type,EA069-9,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +90089,Nd29,EA069,No secondary type,EA069-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +90090,Nd3,EA069,No secondary type,EA069-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +90091,Nd30,EA069,No secondary type,EA069-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +90092,Nd31,EA069,No secondary type,EA069-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +90093,Nd32,EA069,No secondary type,EA069-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +90094,Nd33,EA069,No secondary type,EA069-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +90095,Nd34,EA069,No secondary type,EA069-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +90096,Nd35,EA069,No secondary type,EA069-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +90097,Nd36,EA069,No secondary type,EA069-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +90098,Nd37,EA069,No secondary type,EA069-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +90099,Nd38,EA069,No secondary type,EA069-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +90100,Nd39,EA069,No secondary type,EA069-9,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +90101,Nd4,EA069,No secondary type,EA069-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +90102,Nd40,EA069,No secondary type,EA069-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +90103,Nd41,EA069,No secondary type,EA069-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +90104,Nd42,EA069,No secondary type,EA069-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +90105,Nd43,EA069,No secondary type,EA069-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +90106,Nd44,EA069,No secondary type,EA069-9,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +90107,Nd45,EA069,No secondary type,EA069-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +90108,Nd46,EA069,No secondary type,EA069-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +90109,Nd47,EA069,No secondary type,EA069-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +90110,Nd48,EA069,No secondary type,EA069-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +90111,Nd49,EA069,No secondary type,EA069-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +90112,Nd5,EA069,No secondary type,EA069-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +90113,Nd50,EA069,No secondary type,EA069-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +90114,Nd51,EA069,No secondary type,EA069-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +90115,Nd52,EA069,No secondary type,EA069-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +90116,Nd53,EA069,No secondary type,EA069-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +90117,Nd54,EA069,No secondary type,EA069-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90118,Nd55,EA069,No secondary type,EA069-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +90119,Nd56,EA069,No secondary type,EA069-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +90120,Nd57,EA069,No secondary type,EA069-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +90121,Nd58,EA069,No secondary type,EA069-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +90122,Nd59,EA069,No secondary type,EA069-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +90123,Nd6,EA069,No secondary type,EA069-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +90124,Nd60,EA069,No secondary type,EA069-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +90125,Nd61,EA069,No secondary type,EA069-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +90126,Nd62,EA069,No secondary type,EA069-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +90127,Nd63,EA069,No secondary type,EA069-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +90128,Nd64,EA069,No secondary type,EA069-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +90129,Nd65,EA069,No secondary type,EA069-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +90130,Nd66,EA069,No secondary type,EA069-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +90131,Nd67,EA069,No secondary type,EA069-9,,gifford1936,,1870,EthnographicAtlas_1967_p113, +90132,Nd7,EA069,No secondary type,EA069-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +90133,Nd8,EA069,No secondary type,EA069-9,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +90134,Nd9,EA069,No secondary type,EA069-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +90135,Ne1,EA069,No secondary type,EA069-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +90136,Ne10,EA069,No secondary type,EA069-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +90137,Ne11,EA069,No secondary type,EA069-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +90138,Ne12,EA069,No secondary type,EA069-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +90139,Ne13,EA069,No secondary type,EA069-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +90140,Ne14,EA069,No secondary type,EA069-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +90141,Ne15,EA069,No secondary type,EA069-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +90142,Ne16,EA069,No secondary type,EA069-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +90143,Ne17,EA069,No secondary type,EA069-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +90144,Ne18,EA069,No secondary type,EA069-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +90145,Ne19,EA069,No secondary type,EA069-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +90146,Ne2,EA069,No secondary type,EA069-9,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +90147,Ne20,EA069,No secondary type,EA069-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +90148,Ne21,EA069,?,EA069-NA,,,,,, +90149,Ne3,EA069,No secondary type,EA069-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +90150,Ne4,EA069,No secondary type,EA069-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +90151,Ne5,EA069,No secondary type,EA069-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +90152,Ne6,EA069,No secondary type,EA069-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +90153,Ne7,EA069,No secondary type,EA069-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +90154,Ne8,EA069,No secondary type,EA069-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +90155,Ne9,EA069,No secondary type,EA069-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +90156,Nf10,EA069,No secondary type,EA069-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +90157,Nf11,EA069,No secondary type,EA069-9,,whitman1937,,1870,EthnographicAtlas_1967_p117, +90158,Nf12,EA069,No secondary type,EA069-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +90159,Nf13,EA069,No secondary type,EA069-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90160,Nf14,EA069,No secondary type,EA069-9,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +90161,Nf15,EA069,?,EA069-NA,,,,,, +90162,Nf2,EA069,No secondary type,EA069-9,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +90163,Nf3,EA069,No secondary type,EA069-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +90164,Nf4,EA069,No secondary type,EA069-9,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +90165,Nf5,EA069,No secondary type,EA069-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +90166,Nf6,EA069,No secondary type,EA069-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +90167,Nf7,EA069,No secondary type,EA069-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90168,Nf8,EA069,No secondary type,EA069-9,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +90169,Nf9,EA069,No secondary type,EA069-9,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p117, +90170,Ng1,EA069,No secondary type,EA069-9,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +90171,Ng10,EA069,No secondary type,EA069-9,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +90172,Ng11,EA069,No secondary type,EA069-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +90173,Ng12,EA069,No secondary type,EA069-9,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +90174,Ng13,EA069,?,EA069-NA,,,,,, +90175,Ng14,EA069,?,EA069-NA,,,,,, +90176,Ng15,EA069,?,EA069-NA,,,,,, +90177,Ng2,EA069,No secondary type,EA069-9,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +90178,Ng3,EA069,No secondary type,EA069-9,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +90179,Ng4,EA069,No secondary type,EA069-9,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +90180,Ng5,EA069,No secondary type,EA069-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +90181,Ng6,EA069,No secondary type,EA069-9,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +90182,Ng7,EA069,No secondary type,EA069-9,Four social classes with caste-like features,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +90183,Ng8,EA069,No secondary type,EA069-9,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +90184,Ng9,EA069,No secondary type,EA069-9,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +90185,Nh1,EA069,No secondary type,EA069-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +90186,Nh10,EA069,No secondary type,EA069-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +90187,Nh11,EA069,No secondary type,EA069-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +90188,Nh12,EA069,No secondary type,EA069-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +90189,Nh13,EA069,No secondary type,EA069-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +90190,Nh14,EA069,No secondary type,EA069-9,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +90191,Nh15,EA069,No secondary type,EA069-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +90192,Nh16,EA069,No secondary type,EA069-9,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90193,Nh17,EA069,No secondary type,EA069-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +90194,Nh18,EA069,No secondary type,EA069-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90195,Nh19,EA069,No secondary type,EA069-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +90196,Nh2,EA069,No secondary type,EA069-9,,dozier1954,,1950,EthnographicAtlas_1967_p117, +90197,Nh20,EA069,No secondary type,EA069-9,,gifford1931,,1860,EthnographicAtlas_1967_p117, +90198,Nh21,EA069,No secondary type,EA069-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90199,Nh22,EA069,No secondary type,EA069-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +90200,Nh23,EA069,No secondary type,EA069-9,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +90201,Nh24,EA069,No secondary type,EA069-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +90202,Nh25,EA069,No secondary type,EA069-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +90203,Nh26,EA069,?,EA069-NA,,,,,, +90204,Nh27,EA069,?,EA069-NA,,,,,, +90205,Nh3,EA069,No secondary type,EA069-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +90206,Nh4,EA069,No secondary type,EA069-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +90207,Nh5,EA069,No secondary type,EA069-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +90208,Nh6,EA069,No secondary type,EA069-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +90209,Nh7,EA069,No secondary type,EA069-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +90210,Nh8,EA069,No secondary type,EA069-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +90211,Nh9,EA069,No secondary type,EA069-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +90212,Ni1,EA069,No secondary type,EA069-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +90213,Ni2,EA069,No secondary type,EA069-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +90214,Ni3,EA069,No secondary type,EA069-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +90215,Ni4,EA069,No secondary type,EA069-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +90216,Ni5,EA069,No secondary type,EA069-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +90217,Ni6,EA069,No secondary type,EA069-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +90218,Ni7,EA069,No secondary type,EA069-9,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +90219,Ni8,EA069,?,EA069-NA,,,,,, +90220,Ni9,EA069,?,EA069-NA,,,,,, +90221,Nj1,EA069,No secondary type,EA069-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90222,Nj10,EA069,No secondary type,EA069-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90223,Nj11,EA069,?,EA069-NA,,,,,, +90224,Nj12,EA069,?,EA069-NA,,,,,, +90225,Nj13,EA069,?,EA069-NA,,,,,, +90226,Nj14,EA069,?,EA069-NA,,,,,, +90227,Nj2,EA069,No secondary type,EA069-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +90228,Nj3,EA069,No secondary type,EA069-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +90229,Nj4,EA069,No secondary type,EA069-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p121, +90230,Nj5,EA069,?,EA069-NA,,,,,, +90231,Nj6,EA069,No secondary type,EA069-9,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +90232,Nj7,EA069,No secondary type,EA069-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90233,Nj8,EA069,No secondary type,EA069-9,,foster1948,,1500,EthnographicAtlas_1967_p121, +90234,Nj9,EA069,No secondary type,EA069-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +90235,Sa1,EA069,No secondary type,EA069-9,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +90236,Sa10,EA069,No secondary type,EA069-9,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +90237,Sa11,EA069,No secondary type,EA069-9,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +90238,Sa12,EA069,No secondary type,EA069-9,,stone1948,,1948,EthnographicAtlas_1967_p121, +90239,Sa13,EA069,No secondary type,EA069-9,The Indians form an ethnic caste with respect to the dominant Ladinos,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +90240,Sa14,EA069,?,EA069-NA,,,,,, +90241,Sa15,EA069,?,EA069-NA,,,,,, +90242,Sa16,EA069,?,EA069-NA,,,,,, +90243,Sa17,EA069,?,EA069-NA,,,,,, +90244,Sa2,EA069,?,EA069-NA,,,,,, +90245,Sa3,EA069,No secondary type,EA069-9,"Though the Choroti themselves are egalitarian, the coresident Ladinos are stratified into classes",wisdom1940,,1930,EthnographicAtlas_1967_p121, +90246,Sa4,EA069,No secondary type,EA069-9,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +90247,Sa5,EA069,No secondary type,EA069-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +90248,Sa6,EA069,No secondary type,EA069-9,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +90249,Sa7,EA069,No secondary type,EA069-9,"Though egalitarian themselves, the Black Carib form an ethnic caste in Honduran society",solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +90250,Sa8,EA069,No secondary type,EA069-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +90251,Sa9,EA069,No secondary type,EA069-9,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +90252,Sb1,EA069,No secondary type,EA069-9,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +90253,Sb2,EA069,No secondary type,EA069-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +90254,Sb3,EA069,?,EA069-NA,,,,,, +90255,Sb4,EA069,No secondary type,EA069-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +90256,Sb5,EA069,No secondary type,EA069-9,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +90257,Sb6,EA069,No secondary type,EA069-9,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +90258,Sb7,EA069,No secondary type,EA069-9,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p121, +90259,Sb8,EA069,No secondary type,EA069-9,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +90260,Sb9,EA069,No secondary type,EA069-9,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +90261,Sc1,EA069,No secondary type,EA069-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +90262,Sc10,EA069,No secondary type,EA069-9,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p121, +90263,Sc11,EA069,No secondary type,EA069-9,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p121, +90264,Sc12,EA069,No secondary type,EA069-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +90265,Sc13,EA069,No secondary type,EA069-9,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +90266,Sc14,EA069,?,EA069-NA,,,,,, +90267,Sc15,EA069,No secondary type,EA069-9,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +90268,Sc16,EA069,No secondary type,EA069-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +90269,Sc17,EA069,No secondary type,EA069-9,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +90270,Sc18,EA069,No secondary type,EA069-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +90271,Sc2,EA069,No secondary type,EA069-9,,leedsnd,,1950,EthnographicAtlas_1967_p121, +90272,Sc3,EA069,No secondary type,EA069-9,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +90273,Sc4,EA069,No secondary type,EA069-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +90274,Sc5,EA069,No secondary type,EA069-9,,farabee1918,,1900,EthnographicAtlas_1967_p121, +90275,Sc6,EA069,No secondary type,EA069-9,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90276,Sc7,EA069,No secondary type,EA069-9,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +90277,Sc8,EA069,No secondary type,EA069-9,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +90278,Sc9,EA069,No secondary type,EA069-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +90279,Sd1,EA069,No secondary type,EA069-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90280,Sd2,EA069,No secondary type,EA069-9,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +90281,Sd3,EA069,No secondary type,EA069-9,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +90282,Sd4,EA069,No secondary type,EA069-9,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +90283,Sd5,EA069,No secondary type,EA069-9,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +90284,Sd6,EA069,No secondary type,EA069-9,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +90285,Sd7,EA069,No secondary type,EA069-9,,fock1963,,1950,EthnographicAtlas_1967_p121, +90286,Sd8,EA069,No secondary type,EA069-9,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +90287,Sd9,EA069,No secondary type,EA069-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90288,Se1,EA069,No secondary type,EA069-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +90289,Se10,EA069,No secondary type,EA069-9,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +90290,Se11,EA069,No secondary type,EA069-9,,prost1965,,1960,EthnographicAtlas_1967_p125, +90291,Se12,EA069,?,EA069-NA,,,,,, +90292,Se2,EA069,No secondary type,EA069-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +90293,Se3,EA069,No secondary type,EA069-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +90294,Se4,EA069,No secondary type,EA069-9,,fejos1943,,1940,EthnographicAtlas_1967_p121, +90295,Se5,EA069,No secondary type,EA069-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +90296,Se6,EA069,No secondary type,EA069-9,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +90297,Se7,EA069,No secondary type,EA069-9,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90298,Se8,EA069,No secondary type,EA069-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +90299,Se9,EA069,No secondary type,EA069-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +90300,Sf1,EA069,No secondary type,EA069-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +90301,Sf2,EA069,No secondary type,EA069-9,But the Aymara form a lower caste in Bolivian society,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +90302,Sf3,EA069,No secondary type,EA069-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +90303,Sf4,EA069,No secondary type,EA069-9,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +90304,Sf5,EA069,No secondary type,EA069-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +90305,Sf6,EA069,No secondary type,EA069-9,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +90306,Sf7,EA069,No secondary type,EA069-9,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +90307,Sf8,EA069,?,EA069-NA,,,,,, +90308,Sf9,EA069,?,EA069-NA,,,,,, +90309,Sg1,EA069,No secondary type,EA069-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +90310,Sg2,EA069,No secondary type,EA069-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90311,Sg3,EA069,No secondary type,EA069-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +90312,Sg4,EA069,No secondary type,EA069-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +90313,Sg5,EA069,No secondary type,EA069-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90314,Sh1,EA069,No secondary type,EA069-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +90315,Sh2,EA069,No secondary type,EA069-9,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +90316,Sh3,EA069,No secondary type,EA069-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +90317,Sh4,EA069,No secondary type,EA069-9,,oberg1949,,1940,EthnographicAtlas_1967_p125, +90318,Sh5,EA069,No secondary type,EA069-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +90319,Sh6,EA069,No secondary type,EA069-9,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +90320,Sh7,EA069,No secondary type,EA069-9,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +90321,Sh8,EA069,No secondary type,EA069-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +90322,Sh9,EA069,No secondary type,EA069-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +90323,Si1,EA069,No secondary type,EA069-9,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90324,Si10,EA069,No secondary type,EA069-9,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +90325,Si2,EA069,No secondary type,EA069-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +90326,Si3,EA069,No secondary type,EA069-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90327,Si4,EA069,No secondary type,EA069-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +90328,Si5,EA069,No secondary type,EA069-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +90329,Si6,EA069,No secondary type,EA069-9,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +90330,Si7,EA069,No secondary type,EA069-9,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +90331,Si8,EA069,No secondary type,EA069-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +90332,Si9,EA069,?,EA069-NA,,,,,, +90333,Sj1,EA069,No secondary type,EA069-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +90334,Sj10,EA069,No secondary type,EA069-9,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90335,Sj11,EA069,No secondary type,EA069-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +90336,Sj2,EA069,No secondary type,EA069-9,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +90337,Sj3,EA069,No secondary type,EA069-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +90338,Sj4,EA069,No secondary type,EA069-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +90339,Sj5,EA069,No secondary type,EA069-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +90340,Sj6,EA069,No secondary type,EA069-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90341,Sj7,EA069,No secondary type,EA069-9,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +90342,Sj8,EA069,No secondary type,EA069-9,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +90343,Sj9,EA069,No secondary type,EA069-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +90344,ch12,EA069,No secondary type,EA069-9,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +90345,ch13,EA069,No secondary type,EA069-9,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +90346,ch14,EA069,No secondary type,EA069-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +90347,ch15,EA069,No secondary type,EA069-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +90348,ch16,EA069,No secondary type,EA069-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +90349,ch17,EA069,No secondary type,EA069-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +90350,ch18,EA069,No secondary type,EA069-9,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +90351,ch19,EA069,No secondary type,EA069-9,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +90352,ch20,EA069,No secondary type,EA069-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +90353,ch21,EA069,No secondary type,EA069-9,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +90354,ch22,EA069,No secondary type,EA069-9,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +90355,ch23,EA069,No secondary type,EA069-9,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +90356,ch24,EA069,No secondary type,EA069-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +90357,ch25,EA069,No secondary type,EA069-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +90358,ch26,EA069,No secondary type,EA069-9,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +90359,ch27,EA069,No secondary type,EA069-9,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +90360,ch28,EA069,No secondary type,EA069-9,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +90361,ec12,EA069,No secondary type,EA069-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +90362,ec13,EA069,No secondary type,EA069-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +90363,ec14,EA069,No secondary type,EA069-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +90364,ec15,EA069,No secondary type,EA069-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +90365,ec16,EA069,No secondary type,EA069-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +90366,ec17,EA069,No secondary type,EA069-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +90367,ec18,EA069,No secondary type,EA069-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +90368,ec19,EA069,No secondary type,EA069-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +90369,ec20,EA069,No secondary type,EA069-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +90370,ec21,EA069,No secondary type,EA069-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +90371,Aa1,EA007,No alternate,EA007-8,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +90372,Aa2,EA007,No alternate,EA007-8,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +90373,Aa3,EA007,Bride-wealth,EA007-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +90374,Aa4,EA007,No alternate,EA007-8,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +90375,Aa5,EA007,Bride-wealth,EA007-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +90376,Aa6,EA007,No alternate,EA007-8,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +90377,Aa7,EA007,No alternate,EA007-8,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +90378,Aa8,EA007,No alternate,EA007-8,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +90379,Aa9,EA007,No alternate,EA007-8,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +90380,Ab1,EA007,No alternate,EA007-8,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +90381,Ab10,EA007,No alternate,EA007-8,,hunter1936,,1936,EthnographicAtlas_1967_p62, +90382,Ab11,EA007,No alternate,EA007-8,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +90383,Ab12,EA007,No alternate,EA007-8,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +90384,Ab13,EA007,No alternate,EA007-8,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +90385,Ab14,EA007,No alternate,EA007-8,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +90386,Ab15,EA007,No alternate,EA007-8,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +90387,Ab16,EA007,No alternate,EA007-8,,earthy1933,,1930,EthnographicAtlas_1967_p62, +90388,Ab17,EA007,No alternate,EA007-8,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +90389,Ab18,EA007,No alternate,EA007-8,"Bride service (code ""2"") plus token bride price (code ""3"") with uxorilocal residence as a patterned alternative",bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +90390,Ab19,EA007,No alternate,EA007-8,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +90391,Ab2,EA007,No alternate,EA007-8,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +90392,Ab20,EA007,No alternate,EA007-8,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +90393,Ab21a,EA007,No alternate,EA007-8,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +90394,Ab21b,EA007,No alternate,EA007-8,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +90395,Ab22,EA007,No alternate,EA007-8,,junod1936,,1920,Ethnology_Vol7_No1_Jan_1968, +90396,Ab3,EA007,Bride-service,EA007-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +90397,Ab4,EA007,No alternate,EA007-8,,junod1927,,1920,EthnographicAtlas_1967_p62, +90398,Ab5,EA007,No alternate,EA007-8,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +90399,Ab6,EA007,No alternate,EA007-8,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +90400,Ab7,EA007,No alternate,EA007-8,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +90401,Ab8,EA007,No alternate,EA007-8,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +90402,Ab9,EA007,No alternate,EA007-8,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +90403,Ac1,EA007,No alternate,EA007-8,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +90404,Ac10,EA007,Token bride-wealth,EA007-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +90405,Ac11,EA007,No alternate,EA007-8,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +90406,Ac12,EA007,No alternate,EA007-8,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +90407,Ac13,EA007,No alternate,EA007-8,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +90408,Ac14,EA007,No alternate,EA007-8,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +90409,Ac15,EA007,No alternate,EA007-8,"Alternatively code ""3"", token bride price, in which case children belong to the MoBr",tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +90410,Ac16,EA007,No alternate,EA007-8,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +90411,Ac17,EA007,No alternate,EA007-8,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +90412,Ac18,EA007,No alternate,EA007-8,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +90413,Ac19,EA007,No alternate,EA007-8,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +90414,Ac2,EA007,No alternate,EA007-8,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +90415,Ac20,EA007,No alternate,EA007-8,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +90416,Ac21,EA007,No alternate,EA007-8,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +90417,Ac22,EA007,No alternate,EA007-8,,mertens1935,,1930,EthnographicAtlas_1967_p62, +90418,Ac23,EA007,No alternate,EA007-8,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +90419,Ac24,EA007,No alternate,EA007-8,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +90420,Ac25,EA007,No alternate,EA007-8,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +90421,Ac26,EA007,No alternate,EA007-8,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +90422,Ac27,EA007,No alternate,EA007-8,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +90423,Ac28,EA007,No alternate,EA007-8,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +90424,Ac29,EA007,No alternate,EA007-8,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +90425,Ac3,EA007,Token bride-wealth,EA007-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +90426,Ac30,EA007,No alternate,EA007-8,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +90427,Ac31,EA007,No alternate,EA007-8,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +90428,Ac32,EA007,Bride-service,EA007-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +90429,Ac33,EA007,No alternate,EA007-8,"Formerly code ""1"", bride wealth, with ""2"", bride service, as alternative",lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +90430,Ac34,EA007,Token bride-wealth,EA007-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +90431,Ac35,EA007,Token bride-wealth,EA007-3,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +90432,Ac36,EA007,No alternate,EA007-8,"Formerly Bride service (code ""2"") with token bride price (code ""3"")",sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +90433,Ac37,EA007,No alternate,EA007-8,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +90434,Ac38,EA007,No alternate,EA007-8,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +90435,Ac39,EA007,Token bride-wealth,EA007-3,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +90436,Ac4,EA007,No alternate,EA007-8,"A patterned alternative is code ""3"", token bride price, with alternating Uxorilocal and Avunculocal residence",tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +90437,Ac40,EA007,No alternate,EA007-8,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +90438,Ac41,EA007,Token bride-wealth,EA007-3,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +90439,Ac42,EA007,No alternate,EA007-8,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +90440,Ac43,EA007,Bride-service,EA007-2,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +90441,Ac5,EA007,Token bride-wealth,EA007-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +90442,Ac6,EA007,No alternate,EA007-8,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +90443,Ac7,EA007,No alternate,EA007-8,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +90444,Ac8,EA007,No alternate,EA007-8,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +90445,Ac9,EA007,No alternate,EA007-8,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +90446,Ad1,EA007,No alternate,EA007-8,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +90447,Ad10,EA007,No alternate,EA007-8,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +90448,Ad11,EA007,Bride-service,EA007-2,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +90449,Ad12,EA007,No alternate,EA007-8,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +90450,Ad13,EA007,No alternate,EA007-8,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +90451,Ad14,EA007,Bride-service,EA007-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +90452,Ad15,EA007,Bride-service,EA007-2,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +90453,Ad16,EA007,No alternate,EA007-8,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +90454,Ad17,EA007,Bride-service,EA007-2,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +90455,Ad18,EA007,No alternate,EA007-8,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +90456,Ad19,EA007,Bride-service,EA007-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +90457,Ad2,EA007,No alternate,EA007-8,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +90458,Ad20,EA007,No alternate,EA007-8,"Alternatively code ""3"", token bride price, with code ""2"", bride service as alternate/supplementary; in this case children are affiliated with the mother's group",blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +90459,Ad21,EA007,No alternate,EA007-8,,maurice193538,,1930,EthnographicAtlas_1967_p66, +90460,Ad22,EA007,No alternate,EA007-8,"Alternatively code ""6"", absence of consideration, in which case children are affiliated with the mother's kin group",abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +90461,Ad23,EA007,No alternate,EA007-8,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +90462,Ad24,EA007,No alternate,EA007-8,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +90463,Ad25,EA007,No alternate,EA007-8,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +90464,Ad26,EA007,No alternate,EA007-8,,sick1916,,1910,EthnographicAtlas_1967_p66, +90465,Ad27,EA007,Bride-service,EA007-2,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +90466,Ad28,EA007,No alternate,EA007-8,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +90467,Ad29,EA007,No alternate,EA007-8,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +90468,Ad3,EA007,No alternate,EA007-8,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +90469,Ad30,EA007,No alternate,EA007-8,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +90470,Ad31,EA007,No alternate,EA007-8,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +90471,Ad32,EA007,No alternate,EA007-8,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +90472,Ad33,EA007,No alternate,EA007-8,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +90473,Ad34,EA007,No alternate,EA007-8,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +90474,Ad35,EA007,No alternate,EA007-8,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +90475,Ad36,EA007,No alternate,EA007-8,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +90476,Ad37,EA007,No alternate,EA007-8,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +90477,Ad38,EA007,No alternate,EA007-8,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +90478,Ad39,EA007,No alternate,EA007-8,,gray1963,,1950,EthnographicAtlas_1967_p66, +90479,Ad4,EA007,No alternate,EA007-8,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +90480,Ad40,EA007,No alternate,EA007-8,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +90481,Ad41,EA007,No alternate,EA007-8,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +90482,Ad42,EA007,No alternate,EA007-8,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +90483,Ad43,EA007,No alternate,EA007-8,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +90484,Ad44,EA007,No alternate,EA007-8,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +90485,Ad45,EA007,No alternate,EA007-8,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +90486,Ad46,EA007,No alternate,EA007-8,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +90487,Ad47,EA007,No alternate,EA007-8,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +90488,Ad48,EA007,No alternate,EA007-8,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +90489,Ad49,EA007,No alternate,EA007-8,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +90490,Ad5,EA007,No alternate,EA007-8,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +90491,Ad50,EA007,Bride-service,EA007-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +90492,Ad51,EA007,Bride-service,EA007-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +90493,Ad6,EA007,No alternate,EA007-8,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +90494,Ad7,EA007,No alternate,EA007-8,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +90495,Ad8,EA007,No alternate,EA007-8,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +90496,Ad9,EA007,No alternate,EA007-8,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +90497,Ae1,EA007,Bride-wealth,EA007-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +90498,Ae10,EA007,No alternate,EA007-8,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +90499,Ae11,EA007,No alternate,EA007-8,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +90500,Ae12,EA007,No alternate,EA007-8,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +90501,Ae13,EA007,No alternate,EA007-8,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +90502,Ae14,EA007,No alternate,EA007-8,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +90503,Ae15,EA007,No alternate,EA007-8,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +90504,Ae16,EA007,No alternate,EA007-8,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +90505,Ae17,EA007,No alternate,EA007-8,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +90506,Ae18,EA007,No alternate,EA007-8,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +90507,Ae19,EA007,Bride-service,EA007-2,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +90508,Ae2,EA007,No alternate,EA007-8,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +90509,Ae20,EA007,No alternate,EA007-8,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +90510,Ae21,EA007,No alternate,EA007-8,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +90511,Ae22,EA007,No alternate,EA007-8,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +90512,Ae23,EA007,No alternate,EA007-8,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +90513,Ae24,EA007,No alternate,EA007-8,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +90514,Ae25,EA007,No alternate,EA007-8,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +90515,Ae26,EA007,No alternate,EA007-8,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +90516,Ae27,EA007,No alternate,EA007-8,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +90517,Ae28,EA007,No alternate,EA007-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +90518,Ae29,EA007,No alternate,EA007-8,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +90519,Ae3,EA007,No alternate,EA007-8,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +90520,Ae30,EA007,No alternate,EA007-8,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +90521,Ae31,EA007,No alternate,EA007-8,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +90522,Ae32,EA007,No alternate,EA007-8,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +90523,Ae33,EA007,Bride-wealth,EA007-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +90524,Ae34,EA007,No alternate,EA007-8,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +90525,Ae35,EA007,No alternate,EA007-8,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +90526,Ae36,EA007,No alternate,EA007-8,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +90527,Ae37,EA007,No alternate,EA007-8,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +90528,Ae38,EA007,No alternate,EA007-8,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +90529,Ae39,EA007,No alternate,EA007-8,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +90530,Ae4,EA007,No alternate,EA007-8,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +90531,Ae40,EA007,No alternate,EA007-8,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +90532,Ae41,EA007,No alternate,EA007-8,,andersson1953,,1940,EthnographicAtlas_1967_p66, +90533,Ae42,EA007,No alternate,EA007-8,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +90534,Ae43,EA007,No alternate,EA007-8,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +90535,Ae44,EA007,No alternate,EA007-8,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +90536,Ae45,EA007,No alternate,EA007-8,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +90537,Ae46,EA007,No alternate,EA007-8,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +90538,Ae47,EA007,Woman exchange,EA007-5,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +90539,Ae48,EA007,No alternate,EA007-8,Usually after capture,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +90540,Ae49,EA007,No alternate,EA007-8,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +90541,Ae5,EA007,No alternate,EA007-8,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +90542,Ae50,EA007,No alternate,EA007-8,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +90543,Ae51,EA007,Bride-wealth,EA007-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +90544,Ae52,EA007,No alternate,EA007-8,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +90545,Ae53,EA007,No alternate,EA007-8,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +90546,Ae54,EA007,Bride-service,EA007-2,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +90547,Ae55,EA007,No alternate,EA007-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +90548,Ae56,EA007,No alternate,EA007-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +90549,Ae57,EA007,No alternate,EA007-8,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +90550,Ae58,EA007,No alternate,EA007-8,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +90551,Ae59,EA007,Bride-service,EA007-2,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +90552,Ae6,EA007,No alternate,EA007-8,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +90553,Ae7,EA007,No alternate,EA007-8,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +90554,Ae8,EA007,No alternate,EA007-8,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +90555,Ae9,EA007,No alternate,EA007-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +90556,Af1,EA007,Bride-service,EA007-2,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +90557,Af10,EA007,No alternate,EA007-8,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +90558,Af11,EA007,No alternate,EA007-8,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +90559,Af12,EA007,No alternate,EA007-8,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +90560,Af13,EA007,No alternate,EA007-8,"But usually code ""1"", bride wealth, today",brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +90561,Af14,EA007,No alternate,EA007-8,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +90562,Af15,EA007,Bride-service,EA007-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +90563,Af16,EA007,No alternate,EA007-8,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +90564,Af17,EA007,No alternate,EA007-8,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +90565,Af18,EA007,No alternate,EA007-8,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +90566,Af19,EA007,No alternate,EA007-8,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +90567,Af2,EA007,Bride-service,EA007-2,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +90568,Af20,EA007,Bride-service,EA007-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +90569,Af21,EA007,No alternate,EA007-8,"Alternatively code ""3"", token bride price, in which case children belong to their mother's group",granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +90570,Af22,EA007,No alternate,EA007-8,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +90571,Af23,EA007,Bride-service,EA007-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +90572,Af24,EA007,Token bride-wealth,EA007-3,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +90573,Af25,EA007,Bride-service,EA007-2,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +90574,Af26,EA007,No alternate,EA007-8,"Or alternatively bride service (code ""2"") plus token bride price (code ""3""), in which case children belong to the mother's kin group",bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +90575,Af27,EA007,Bride-wealth,EA007-1,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +90576,Af28,EA007,Token bride-wealth,EA007-3,,gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +90577,Af29,EA007,No alternate,EA007-8,"Formerly also code ""6,"" exchange of a sister or female relative",armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +90578,Af3,EA007,No alternate,EA007-8,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +90579,Af30,EA007,Bride-service,EA007-2,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +90580,Af31,EA007,Bride-service,EA007-2,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +90581,Af32,EA007,Bride-service,EA007-2,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90582,Af33,EA007,No alternate,EA007-8,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90583,Af34,EA007,No alternate,EA007-8,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90584,Af35,EA007,Bride-service,EA007-2,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +90585,Af36,EA007,Bride-service,EA007-2,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +90586,Af37,EA007,Bride-service,EA007-2,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +90587,Af38,EA007,Bride-service,EA007-2,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +90588,Af39,EA007,No alternate,EA007-8,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +90589,Af4,EA007,No alternate,EA007-8,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +90590,Af40,EA007,No alternate,EA007-8,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +90591,Af41,EA007,Bride-service,EA007-2,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +90592,Af42,EA007,No alternate,EA007-8,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +90593,Af43,EA007,No alternate,EA007-8,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +90594,Af44,EA007,Bride-service,EA007-2,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +90595,Af45,EA007,No alternate,EA007-8,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +90596,Af46,EA007,No alternate,EA007-8,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +90597,Af47,EA007,No alternate,EA007-8,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +90598,Af48,EA007,No alternate,EA007-8,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +90599,Af49,EA007,No alternate,EA007-8,,schwab1947,,1940,EthnographicAtlas_1967_p70, +90600,Af5,EA007,Token bride-wealth,EA007-3,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +90601,Af50,EA007,No alternate,EA007-8,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +90602,Af51,EA007,No alternate,EA007-8,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +90603,Af52,EA007,No alternate,EA007-8,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +90604,Af53,EA007,No alternate,EA007-8,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +90605,Af54,EA007,No alternate,EA007-8,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +90606,Af55,EA007,No alternate,EA007-8,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +90607,Af56,EA007,No alternate,EA007-8,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +90608,Af57,EA007,Bride-service,EA007-2,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +90609,Af58,EA007,Dowry,EA007-7,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +90610,Af6,EA007,Bride-service,EA007-2,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +90611,Af7,EA007,No alternate,EA007-8,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +90612,Af8,EA007,No alternate,EA007-8,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +90613,Af9,EA007,No alternate,EA007-8,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +90614,Ag1,EA007,Bride-service,EA007-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +90615,Ag10,EA007,Token bride-wealth,EA007-3,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +90616,Ag11,EA007,No alternate,EA007-8,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +90617,Ag12,EA007,No alternate,EA007-8,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +90618,Ag13,EA007,No alternate,EA007-8,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +90619,Ag14,EA007,No alternate,EA007-8,Formerly,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +90620,Ag15,EA007,No alternate,EA007-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +90621,Ag16,EA007,Token bride-wealth,EA007-3,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +90622,Ag17,EA007,Token bride-wealth,EA007-3,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +90623,Ag18,EA007,No alternate,EA007-8,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +90624,Ag19,EA007,Bride-service,EA007-2,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +90625,Ag2,EA007,No alternate,EA007-8,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +90626,Ag20,EA007,Bride-service,EA007-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +90627,Ag21,EA007,No alternate,EA007-8,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +90628,Ag22,EA007,Bride-service,EA007-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +90629,Ag23,EA007,No alternate,EA007-8,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +90630,Ag24,EA007,Bride-service,EA007-2,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +90631,Ag25,EA007,No alternate,EA007-8,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +90632,Ag26,EA007,No alternate,EA007-8,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +90633,Ag27,EA007,No alternate,EA007-8,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +90634,Ag28,EA007,No alternate,EA007-8,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +90635,Ag29,EA007,No alternate,EA007-8,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +90636,Ag3,EA007,Token bride-wealth,EA007-3,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +90637,Ag30,EA007,Token bride-wealth,EA007-3,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +90638,Ag31,EA007,Bride-service,EA007-2,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +90639,Ag32,EA007,Bride-service,EA007-2,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +90640,Ag33,EA007,Bride-service,EA007-2,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +90641,Ag34,EA007,Token bride-wealth,EA007-3,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +90642,Ag35,EA007,Bride-service,EA007-2,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +90643,Ag36,EA007,Bride-service,EA007-2,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +90644,Ag37,EA007,No alternate,EA007-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +90645,Ag38,EA007,No alternate,EA007-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +90646,Ag39,EA007,Bride-service,EA007-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +90647,Ag4,EA007,Bride-service,EA007-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +90648,Ag40,EA007,No alternate,EA007-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +90649,Ag41,EA007,Bride-service,EA007-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +90650,Ag42,EA007,No alternate,EA007-8,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +90651,Ag43,EA007,No alternate,EA007-8,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +90652,Ag44,EA007,No alternate,EA007-8,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +90653,Ag45,EA007,No alternate,EA007-8,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +90654,Ag46,EA007,Bride-service,EA007-2,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +90655,Ag47,EA007,No alternate,EA007-8,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +90656,Ag48,EA007,Bride-service,EA007-2,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +90657,Ag49,EA007,Token bride-wealth,EA007-3,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +90658,Ag5,EA007,Bride-service,EA007-2,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +90659,Ag50,EA007,No alternate,EA007-8,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +90660,Ag51,EA007,No alternate,EA007-8,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +90661,Ag52,EA007,Bride-service,EA007-2,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +90662,Ag53,EA007,Bride-service,EA007-2,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +90663,Ag54,EA007,No alternate,EA007-8,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +90664,Ag6,EA007,Bride-service,EA007-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +90665,Ag7,EA007,Bride-service,EA007-2,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +90666,Ag8,EA007,Token bride-wealth,EA007-3,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +90667,Ag9,EA007,Bride-service,EA007-2,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +90668,Ah1,EA007,No alternate,EA007-8,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90669,Ah10,EA007,Bride-service,EA007-2,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +90670,Ah11,EA007,No alternate,EA007-8,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +90671,Ah12,EA007,No alternate,EA007-8,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +90672,Ah13,EA007,No alternate,EA007-8,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +90673,Ah14,EA007,Bride-service,EA007-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +90674,Ah15,EA007,Bride-service,EA007-2,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +90675,Ah16,EA007,No alternate,EA007-8,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +90676,Ah17,EA007,No alternate,EA007-8,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +90677,Ah18,EA007,Bride-service,EA007-2,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +90678,Ah19,EA007,Token bride-wealth,EA007-3,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +90679,Ah2,EA007,No alternate,EA007-8,,meek1931a,,1920,EthnographicAtlas_1967_p74, +90680,Ah20,EA007,No alternate,EA007-8,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +90681,Ah21,EA007,Bride-service,EA007-2,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90682,Ah22,EA007,No alternate,EA007-8,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +90683,Ah23,EA007,Token bride-wealth,EA007-3,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90684,Ah24,EA007,No alternate,EA007-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90685,Ah25,EA007,No alternate,EA007-8,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90686,Ah26,EA007,No alternate,EA007-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90687,Ah27,EA007,No alternate,EA007-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90688,Ah28,EA007,Bride-service,EA007-2,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +90689,Ah29,EA007,No alternate,EA007-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90690,Ah3,EA007,No alternate,EA007-8,"Alternatively code ""3"", token bride price, involving avunculocal residence and affiliation with mother's kin group",bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +90691,Ah30,EA007,Bride-service,EA007-2,,meek1931b,,1920,EthnographicAtlas_1967_p74, +90692,Ah31,EA007,Bride-service,EA007-2,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +90693,Ah32,EA007,Bride-service,EA007-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90694,Ah33,EA007,Bride-service,EA007-2,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +90695,Ah34,EA007,Bride-service,EA007-2,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +90696,Ah35,EA007,Bride-service,EA007-2,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90697,Ah36,EA007,No alternate,EA007-8,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +90698,Ah37,EA007,Bride-service,EA007-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90699,Ah38,EA007,No alternate,EA007-8,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +90700,Ah39,EA007,Bride-service,EA007-2,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +90701,Ah4,EA007,Token bride-wealth,EA007-3,"Exchange marriage, formerly preferred, is now abolished and has been replaced by bride-price, its former alternative",meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74,"Assume Murdock comment refers to Col 12, not Col 14 as stated in Gray (1999)" +90702,Ah5,EA007,Bride-service,EA007-2,"Exchange marriage has been abolished by the British administration; payment of a bride-price, formerly a less preferred mode, is now the rule",meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +90703,Ah6,EA007,No alternate,EA007-8,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +90704,Ah7,EA007,No alternate,EA007-8,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +90705,Ah8,EA007,No alternate,EA007-8,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +90706,Ah9,EA007,No alternate,EA007-8,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +90707,Ai1,EA007,Bride-wealth,EA007-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +90708,Ai10,EA007,No alternate,EA007-8,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +90709,Ai11,EA007,No alternate,EA007-8,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +90710,Ai12,EA007,Bride-service,EA007-2,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +90711,Ai13,EA007,No alternate,EA007-8,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +90712,Ai14,EA007,No alternate,EA007-8,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +90713,Ai15,EA007,No alternate,EA007-8,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +90714,Ai16,EA007,No alternate,EA007-8,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +90715,Ai17,EA007,No alternate,EA007-8,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +90716,Ai18,EA007,No alternate,EA007-8,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +90717,Ai19,EA007,No alternate,EA007-8,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +90718,Ai2,EA007,Bride-service,EA007-2,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +90719,Ai20,EA007,No alternate,EA007-8,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +90720,Ai21,EA007,No alternate,EA007-8,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +90721,Ai22,EA007,No alternate,EA007-8,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +90722,Ai23,EA007,No alternate,EA007-8,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +90723,Ai24,EA007,Bride-service,EA007-2,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +90724,Ai25,EA007,No alternate,EA007-8,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +90725,Ai26,EA007,No alternate,EA007-8,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +90726,Ai27,EA007,No alternate,EA007-8,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +90727,Ai28,EA007,No alternate,EA007-8,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +90728,Ai29,EA007,No alternate,EA007-8,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +90729,Ai3,EA007,Bride-service,EA007-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +90730,Ai30,EA007,Woman exchange,EA007-5,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +90731,Ai31,EA007,No alternate,EA007-8,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +90732,Ai32,EA007,Bride-service,EA007-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +90733,Ai33,EA007,Bride-service,EA007-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +90734,Ai34,EA007,Bride-service,EA007-2,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +90735,Ai35,EA007,Bride-service,EA007-2,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +90736,Ai36,EA007,No alternate,EA007-8,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +90737,Ai37,EA007,No alternate,EA007-8,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +90738,Ai38,EA007,No alternate,EA007-8,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +90739,Ai39,EA007,No alternate,EA007-8,,nadel1947,,1940,EthnographicAtlas_1967_p74, +90740,Ai4,EA007,Token bride-wealth,EA007-3,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +90741,Ai40,EA007,Dowry,EA007-7,,nadel1947,,1940,EthnographicAtlas_1967_p74, +90742,Ai41,EA007,Bride-service,EA007-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +90743,Ai42,EA007,No alternate,EA007-8,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +90744,Ai43,EA007,Bride-service,EA007-2,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +90745,Ai44,EA007,No alternate,EA007-8,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +90746,Ai45,EA007,Bride-service,EA007-2,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +90747,Ai46,EA007,No alternate,EA007-8,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +90748,Ai47,EA007,No alternate,EA007-8,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +90749,Ai5,EA007,No alternate,EA007-8,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +90750,Ai6,EA007,Bride-service,EA007-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +90751,Ai7,EA007,No alternate,EA007-8,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +90752,Ai8,EA007,Bride-service,EA007-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +90753,Ai9,EA007,No alternate,EA007-8,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +90754,Aj1,EA007,No alternate,EA007-8,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +90755,Aj10,EA007,Bride-service,EA007-2,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +90756,Aj11,EA007,No alternate,EA007-8,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +90757,Aj12,EA007,No alternate,EA007-8,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +90758,Aj13,EA007,Bride-service,EA007-2,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +90759,Aj14,EA007,Bride-service,EA007-2,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +90760,Aj15,EA007,Bride-service,EA007-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +90761,Aj16,EA007,No alternate,EA007-8,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +90762,Aj17,EA007,No alternate,EA007-8,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +90763,Aj18,EA007,No alternate,EA007-8,,jensen1959,,1950,EthnographicAtlas_1967_p78, +90764,Aj19,EA007,Bride-service,EA007-2,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +90765,Aj2,EA007,No alternate,EA007-8,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +90766,Aj20,EA007,No alternate,EA007-8,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +90767,Aj21,EA007,No alternate,EA007-8,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +90768,Aj22,EA007,No alternate,EA007-8,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +90769,Aj23,EA007,No alternate,EA007-8,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +90770,Aj24,EA007,No alternate,EA007-8,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +90771,Aj25,EA007,No alternate,EA007-8,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +90772,Aj26,EA007,No alternate,EA007-8,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +90773,Aj27,EA007,No alternate,EA007-8,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +90774,Aj28,EA007,Bride-service,EA007-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +90775,Aj29,EA007,No alternate,EA007-8,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +90776,Aj3,EA007,No alternate,EA007-8,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +90777,Aj30,EA007,No alternate,EA007-8,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +90778,Aj31,EA007,No alternate,EA007-8,,driberg1925b;evanspritchard1940c;walsh1922,,1920,Ethnology_Vol7_No1_Jan_1968, +90779,Aj4,EA007,No alternate,EA007-8,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +90780,Aj5,EA007,No alternate,EA007-8,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +90781,Aj6,EA007,No alternate,EA007-8,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +90782,Aj7,EA007,No alternate,EA007-8,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +90783,Aj8,EA007,Bride-service,EA007-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +90784,Aj9,EA007,No alternate,EA007-8,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +90785,Ca1,EA007,No alternate,EA007-8,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +90786,Ca10,EA007,No alternate,EA007-8,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +90787,Ca11,EA007,No alternate,EA007-8,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +90788,Ca12,EA007,No alternate,EA007-8,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +90789,Ca13,EA007,No alternate,EA007-8,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +90790,Ca14,EA007,No alternate,EA007-8,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +90791,Ca15,EA007,No alternate,EA007-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +90792,Ca16,EA007,No alternate,EA007-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +90793,Ca17,EA007,No alternate,EA007-8,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +90794,Ca18,EA007,No alternate,EA007-8,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +90795,Ca19,EA007,No alternate,EA007-8,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +90796,Ca2,EA007,No alternate,EA007-8,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +90797,Ca20,EA007,No alternate,EA007-8,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +90798,Ca21,EA007,No alternate,EA007-8,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +90799,Ca22,EA007,No alternate,EA007-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +90800,Ca23,EA007,No alternate,EA007-8,,jensen1959,,1950,EthnographicAtlas_1967_p78, +90801,Ca24,EA007,No alternate,EA007-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +90802,Ca25,EA007,No alternate,EA007-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +90803,Ca26,EA007,No alternate,EA007-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +90804,Ca27,EA007,?,EA007-NA,,,,,, +90805,Ca28,EA007,No alternate,EA007-8,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +90806,Ca29,EA007,No alternate,EA007-8,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +90807,Ca3,EA007,No alternate,EA007-8,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +90808,Ca30,EA007,No alternate,EA007-8,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +90809,Ca31,EA007,No alternate,EA007-8,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +90810,Ca32,EA007,Bride-service,EA007-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +90811,Ca33,EA007,Bride-service,EA007-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +90812,Ca34,EA007,No alternate,EA007-8,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +90813,Ca35,EA007,No alternate,EA007-8,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +90814,Ca36,EA007,No alternate,EA007-8,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +90815,Ca37,EA007,No alternate,EA007-8,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +90816,Ca38,EA007,No alternate,EA007-8,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +90817,Ca39,EA007,No alternate,EA007-8,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +90818,Ca4,EA007,No alternate,EA007-8,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +90819,Ca40,EA007,No alternate,EA007-8,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +90820,Ca41,EA007,No alternate,EA007-8,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +90821,Ca42,EA007,No alternate,EA007-8,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +90822,Ca43,EA007,No alternate,EA007-8,,owen1937;rober1928,,1930,Ethnology_Vol7_No1_Jan_1968, +90823,Ca5,EA007,No alternate,EA007-8,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +90824,Ca6,EA007,No alternate,EA007-8,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +90825,Ca7,EA007,No alternate,EA007-8,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +90826,Ca8,EA007,No alternate,EA007-8,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +90827,Ca9,EA007,No alternate,EA007-8,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +90828,Cb1,EA007,No alternate,EA007-8,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +90829,Cb10,EA007,Bride-service,EA007-2,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +90830,Cb11,EA007,No alternate,EA007-8,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +90831,Cb12,EA007,No alternate,EA007-8,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +90832,Cb13,EA007,No alternate,EA007-8,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +90833,Cb14,EA007,No alternate,EA007-8,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +90834,Cb15,EA007,No alternate,EA007-8,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +90835,Cb16,EA007,No alternate,EA007-8,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +90836,Cb17,EA007,No alternate,EA007-8,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +90837,Cb18,EA007,Dowry,EA007-7,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +90838,Cb19,EA007,No alternate,EA007-8,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +90839,Cb2,EA007,No alternate,EA007-8,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +90840,Cb20,EA007,No alternate,EA007-8,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +90841,Cb21,EA007,No alternate,EA007-8,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +90842,Cb22,EA007,No alternate,EA007-8,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +90843,Cb23,EA007,No alternate,EA007-8,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +90844,Cb24,EA007,No alternate,EA007-8,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +90845,Cb25,EA007,No alternate,EA007-8,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +90846,Cb26,EA007,Dowry,EA007-7,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +90847,Cb27,EA007,Bride-service,EA007-2,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90848,Cb28,EA007,Bride-service,EA007-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90849,Cb29,EA007,No alternate,EA007-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +90850,Cb3,EA007,No alternate,EA007-8,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +90851,Cb4,EA007,No alternate,EA007-8,,reid1930,,1920,EthnographicAtlas_1967_p78, +90852,Cb5,EA007,No alternate,EA007-8,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +90853,Cb6,EA007,Token bride-wealth,EA007-3,,woodnd,,1920,EthnographicAtlas_1967_p78, +90854,Cb7,EA007,No alternate,EA007-8,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +90855,Cb8,EA007,No alternate,EA007-8,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +90856,Cb9,EA007,No alternate,EA007-8,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +90857,Cc1,EA007,No alternate,EA007-8,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +90858,Cc10,EA007,No alternate,EA007-8,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +90859,Cc11,EA007,No alternate,EA007-8,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +90860,Cc12,EA007,No alternate,EA007-8,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +90861,Cc13,EA007,No alternate,EA007-8,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +90862,Cc14,EA007,No alternate,EA007-8,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +90863,Cc15,EA007,?,EA007-NA,,,,,, +90864,Cc16,EA007,No alternate,EA007-8,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +90865,Cc17,EA007,No alternate,EA007-8,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +90866,Cc18,EA007,No alternate,EA007-8,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +90867,Cc19,EA007,No alternate,EA007-8,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +90868,Cc2,EA007,No alternate,EA007-8,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +90869,Cc20,EA007,No alternate,EA007-8,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +90870,Cc3,EA007,No alternate,EA007-8,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +90871,Cc4,EA007,No alternate,EA007-8,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +90872,Cc5,EA007,Dowry,EA007-7,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +90873,Cc6,EA007,No alternate,EA007-8,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +90874,Cc7,EA007,No alternate,EA007-8,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90875,Cc8,EA007,No alternate,EA007-8,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +90876,Cc9,EA007,No alternate,EA007-8,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +90877,Cd1,EA007,No alternate,EA007-8,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +90878,Cd10,EA007,No alternate,EA007-8,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +90879,Cd11,EA007,No alternate,EA007-8,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +90880,Cd12,EA007,No alternate,EA007-8,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +90881,Cd13,EA007,No alternate,EA007-8,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +90882,Cd14,EA007,No alternate,EA007-8,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +90883,Cd15,EA007,No alternate,EA007-8,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +90884,Cd16,EA007,No alternate,EA007-8,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +90885,Cd17,EA007,No alternate,EA007-8,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +90886,Cd18,EA007,No alternate,EA007-8,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +90887,Cd19,EA007,No alternate,EA007-8,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +90888,Cd2,EA007,No alternate,EA007-8,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +90889,Cd20,EA007,No alternate,EA007-8,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +90890,Cd21,EA007,No alternate,EA007-8,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +90891,Cd3,EA007,No alternate,EA007-8,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +90892,Cd4,EA007,No alternate,EA007-8,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +90893,Cd5,EA007,No alternate,EA007-8,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +90894,Cd6,EA007,No alternate,EA007-8,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +90895,Cd7,EA007,No alternate,EA007-8,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +90896,Cd8,EA007,No alternate,EA007-8,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +90897,Cd9,EA007,No alternate,EA007-8,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +90898,Ce1,EA007,No alternate,EA007-8,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +90899,Ce2,EA007,No alternate,EA007-8,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +90900,Ce3,EA007,No alternate,EA007-8,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +90901,Ce4,EA007,No alternate,EA007-8,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90902,Ce5,EA007,No alternate,EA007-8,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +90903,Ce6,EA007,No alternate,EA007-8,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +90904,Ce7,EA007,No alternate,EA007-8,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +90905,Ce8,EA007,No alternate,EA007-8,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +90906,Cf1,EA007,No alternate,EA007-8,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +90907,Cf2,EA007,No alternate,EA007-8,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +90908,Cf3,EA007,No alternate,EA007-8,,munch1945,,1930,EthnographicAtlas_1967_p82, +90909,Cf4,EA007,No alternate,EA007-8,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +90910,Cf5,EA007,No alternate,EA007-8,,miner1939,,1930,EthnographicAtlas_1967_p82, +90911,Cg1,EA007,No alternate,EA007-8,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +90912,Cg2,EA007,No alternate,EA007-8,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +90913,Cg3,EA007,No alternate,EA007-8,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +90914,Cg4,EA007,No alternate,EA007-8,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +90915,Cg5,EA007,No alternate,EA007-8,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +90916,Ch1,EA007,No alternate,EA007-8,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +90917,Ch10,EA007,No alternate,EA007-8,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +90918,Ch11,EA007,Dowry,EA007-7,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +90919,Ch2,EA007,No alternate,EA007-8,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +90920,Ch3,EA007,No alternate,EA007-8,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +90921,Ch4,EA007,No alternate,EA007-8,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +90922,Ch5,EA007,No alternate,EA007-8,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +90923,Ch6,EA007,No alternate,EA007-8,,ember1954,,1910,EthnographicAtlas_1967_p82, +90924,Ch7,EA007,No alternate,EA007-8,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +90925,Ch8,EA007,No alternate,EA007-8,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +90926,Ch9,EA007,No alternate,EA007-8,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +90927,Ci1,EA007,No alternate,EA007-8,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +90928,Ci10,EA007,No alternate,EA007-8,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +90929,Ci11,EA007,No alternate,EA007-8,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +90930,Ci12,EA007,No alternate,EA007-8,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +90931,Ci2,EA007,Dowry,EA007-7,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +90932,Ci3,EA007,Dowry,EA007-7,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +90933,Ci4,EA007,No alternate,EA007-8,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +90934,Ci5,EA007,Dowry,EA007-7,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +90935,Ci6,EA007,No alternate,EA007-8,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +90936,Ci7,EA007,No alternate,EA007-8,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +90937,Ci8,EA007,No alternate,EA007-8,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +90938,Ci9,EA007,Dowry,EA007-7,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +90939,Cj1,EA007,No alternate,EA007-8,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +90940,Cj10,EA007,No alternate,EA007-8,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +90941,Cj2,EA007,No alternate,EA007-8,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +90942,Cj3,EA007,Bride-service,EA007-2,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +90943,Cj4,EA007,Dowry,EA007-7,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +90944,Cj5,EA007,No alternate,EA007-8,,dickson1949,,1930,EthnographicAtlas_1967_p86, +90945,Cj6,EA007,No alternate,EA007-8,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +90946,Cj7,EA007,No alternate,EA007-8,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +90947,Cj8,EA007,No alternate,EA007-8,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +90948,Cj9,EA007,No alternate,EA007-8,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +90949,Ea1,EA007,Dowry,EA007-7,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +90950,Ea10,EA007,Woman exchange,EA007-5,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +90951,Ea11,EA007,Dowry,EA007-7,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +90952,Ea12,EA007,Dowry,EA007-7,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +90953,Ea13,EA007,Bride-wealth,EA007-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +90954,Ea2,EA007,No alternate,EA007-8,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +90955,Ea3,EA007,Dowry,EA007-7,The dowry is approximately equal in value to the bride-price,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +90956,Ea4,EA007,No alternate,EA007-8,,barth1956b,,1950,EthnographicAtlas_1967_p86, +90957,Ea5,EA007,No alternate,EA007-8,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +90958,Ea6,EA007,Bride-service,EA007-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +90959,Ea7,EA007,No alternate,EA007-8,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +90960,Ea8,EA007,No alternate,EA007-8,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p86, +90961,Ea9,EA007,No alternate,EA007-8,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +90962,Eb1,EA007,Dowry,EA007-7,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +90963,Eb2,EA007,No alternate,EA007-8,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +90964,Eb3,EA007,Dowry,EA007-7,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +90965,Eb4,EA007,No alternate,EA007-8,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +90966,Eb5,EA007,No alternate,EA007-8,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +90967,Eb6,EA007,No alternate,EA007-8,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +90968,Eb7,EA007,No alternate,EA007-8,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +90969,Eb8,EA007,Dowry,EA007-7,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +90970,Ec1,EA007,No alternate,EA007-8,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +90971,Ec10,EA007,No alternate,EA007-8,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +90972,Ec11,EA007,No alternate,EA007-8,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +90973,Ec2,EA007,Bride-service,EA007-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90974,Ec3,EA007,No alternate,EA007-8,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +90975,Ec4,EA007,Dowry,EA007-7,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +90976,Ec5,EA007,No alternate,EA007-8,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +90977,Ec6,EA007,Woman exchange,EA007-5,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +90978,Ec7,EA007,No alternate,EA007-8,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +90979,Ec8,EA007,No alternate,EA007-8,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +90980,Ec9,EA007,No alternate,EA007-8,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +90981,Ed1,EA007,No alternate,EA007-8,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +90982,Ed10,EA007,No alternate,EA007-8,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +90983,Ed13,EA007,No alternate,EA007-8,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +90984,Ed14,EA007,No alternate,EA007-8,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +90985,Ed15a,EA007,No alternate,EA007-8,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +90986,Ed15b,EA007,No alternate,EA007-8,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +90987,Ed16,EA007,No alternate,EA007-8,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +90988,Ed2,EA007,No alternate,EA007-8,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +90989,Ed3,EA007,Woman exchange,EA007-5,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +90990,Ed4,EA007,No alternate,EA007-8,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +90991,Ed5,EA007,No alternate,EA007-8,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +90992,Ed6,EA007,No alternate,EA007-8,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +90993,Ed7,EA007,Dowry,EA007-7,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +90994,Ed8,EA007,No alternate,EA007-8,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +90995,Ed9,EA007,No alternate,EA007-8,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +90996,Ee1,EA007,Bride-service,EA007-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +90997,Ee2,EA007,Dowry,EA007-7,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +90998,Ee3,EA007,No alternate,EA007-8,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +90999,Ee4,EA007,Bride-wealth,EA007-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +91000,Ee5,EA007,No alternate,EA007-8,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +91001,Ee6,EA007,No alternate,EA007-8,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +91002,Ee7,EA007,No alternate,EA007-8,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +91003,Ee8,EA007,No alternate,EA007-8,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +91004,Ef1,EA007,No alternate,EA007-8,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +91005,Ef10,EA007,No alternate,EA007-8,,grierson1885;karve1953;mitra1894,Ganges River Valley,1880,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91006,Ef11,EA007,No alternate,EA007-8,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +91007,Ef2,EA007,Bride-wealth,EA007-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +91008,Ef3,EA007,No alternate,EA007-8,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +91009,Ef4,EA007,No alternate,EA007-8,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +91010,Ef5,EA007,No alternate,EA007-8,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +91011,Ef6,EA007,No alternate,EA007-8,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +91012,Ef7,EA007,No alternate,EA007-8,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +91013,Ef8,EA007,No alternate,EA007-8,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +91014,Ef9,EA007,Dowry,EA007-7,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91015,Eg1,EA007,No alternate,EA007-8,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91016,Eg10,EA007,No alternate,EA007-8,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +91017,Eg11,EA007,?,EA007-NA,,,,,, +91018,Eg12,EA007,No alternate,EA007-8,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +91019,Eg13,EA007,Bride-service,EA007-2,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91020,Eg14,EA007,No alternate,EA007-8,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +91021,Eg2,EA007,No alternate,EA007-8,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +91022,Eg3,EA007,No alternate,EA007-8,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +91023,Eg4,EA007,No alternate,EA007-8,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +91024,Eg5,EA007,No alternate,EA007-8,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +91025,Eg6,EA007,No alternate,EA007-8,Entry pertains to the Nayar caste; a bride-price and a dowry are customary in the Tiyyar and Mappilla castes,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +91026,Eg7,EA007,No alternate,EA007-8,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +91027,Eg8,EA007,No alternate,EA007-8,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +91028,Eg9,EA007,No alternate,EA007-8,,elwin1939,,1930,EthnographicAtlas_1967_p90, +91029,Eh1,EA007,No alternate,EA007-8,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +91030,Eh10,EA007,No alternate,EA007-8,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +91031,Eh2,EA007,No alternate,EA007-8,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +91032,Eh3,EA007,No alternate,EA007-8,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +91033,Eh4,EA007,No alternate,EA007-8,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91034,Eh5,EA007,No alternate,EA007-8,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +91035,Eh6,EA007,No alternate,EA007-8,The dowry is really a daughter's inheritance received in advance,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +91036,Eh7,EA007,No alternate,EA007-8,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +91037,Eh8,EA007,No alternate,EA007-8,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +91038,Eh9,EA007,Bride-service,EA007-2,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +91039,Ei1,EA007,No alternate,EA007-8,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91040,Ei10,EA007,No alternate,EA007-8,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +91041,Ei11,EA007,Bride-wealth,EA007-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +91042,Ei12,EA007,No alternate,EA007-8,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +91043,Ei13,EA007,No alternate,EA007-8,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +91044,Ei14,EA007,No alternate,EA007-8,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +91045,Ei15,EA007,No alternate,EA007-8,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +91046,Ei16,EA007,No alternate,EA007-8,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +91047,Ei17,EA007,No alternate,EA007-8,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +91048,Ei18,EA007,No alternate,EA007-8,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +91049,Ei19,EA007,No alternate,EA007-8,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +91050,Ei2,EA007,Bride-service,EA007-2,,mills1922,,1920,EthnographicAtlas_1967_p90, +91051,Ei20,EA007,No alternate,EA007-8,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +91052,Ei3,EA007,No alternate,EA007-8,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +91053,Ei4,EA007,No alternate,EA007-8,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +91054,Ei5,EA007,No alternate,EA007-8,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +91055,Ei6,EA007,Dowry,EA007-7,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +91056,Ei7,EA007,No alternate,EA007-8,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +91057,Ei8,EA007,No alternate,EA007-8,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +91058,Ei9,EA007,No alternate,EA007-8,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +91059,Ej1,EA007,Bride-service,EA007-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +91060,Ej10,EA007,No alternate,EA007-8,"Entry follows Donoghue; other sources report code ""1"", bride wealth",donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +91061,Ej11,EA007,No alternate,EA007-8,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +91062,Ej12,EA007,No alternate,EA007-8,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +91063,Ej13,EA007,No alternate,EA007-8,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +91064,Ej14,EA007,No alternate,EA007-8,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91065,Ej15,EA007,No alternate,EA007-8,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +91066,Ej16,EA007,No alternate,EA007-8,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +91067,Ej2,EA007,No alternate,EA007-8,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +91068,Ej3,EA007,No alternate,EA007-8,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +91069,Ej4,EA007,No alternate,EA007-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +91070,Ej5,EA007,No alternate,EA007-8,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +91071,Ej6,EA007,No alternate,EA007-8,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +91072,Ej7,EA007,No alternate,EA007-8,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +91073,Ej8,EA007,No alternate,EA007-8,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +91074,Ej9,EA007,No alternate,EA007-8,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +91075,Ia1,EA007,No alternate,EA007-8,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +91076,Ia10,EA007,No alternate,EA007-8,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +91077,Ia11,EA007,No alternate,EA007-8,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +91078,Ia12,EA007,No alternate,EA007-8,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +91079,Ia13,EA007,No alternate,EA007-8,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +91080,Ia14,EA007,No alternate,EA007-8,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +91081,Ia15,EA007,Bride-service,EA007-2,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +91082,Ia16,EA007,No alternate,EA007-8,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +91083,Ia17,EA007,No alternate,EA007-8,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +91084,Ia18,EA007,No alternate,EA007-8,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +91085,Ia2,EA007,No alternate,EA007-8,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +91086,Ia3,EA007,No alternate,EA007-8,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +91087,Ia4,EA007,Bride-service,EA007-2,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +91088,Ia5,EA007,No alternate,EA007-8,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +91089,Ia6,EA007,No alternate,EA007-8,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91090,Ia7,EA007,Token bride-wealth,EA007-3,"Formerly code ""1"", bride wealth",fox1954,,1950,EthnographicAtlas_1967_p90, +91091,Ia8,EA007,No alternate,EA007-8,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +91092,Ia9,EA007,No alternate,EA007-8,"Entry follows Mabuchi; Wei reports code ""1"", bride wealth",mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +91093,Ib1,EA007,No alternate,EA007-8,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91094,Ib2,EA007,Token bride-wealth,EA007-3,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91095,Ib3,EA007,No alternate,EA007-8,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +91096,Ib4,EA007,No alternate,EA007-8,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +91097,Ib5,EA007,No alternate,EA007-8,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +91098,Ib6,EA007,No alternate,EA007-8,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +91099,Ib7,EA007,No alternate,EA007-8,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +91100,Ib8,EA007,Token bride-wealth,EA007-3,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +91101,Ib9,EA007,No alternate,EA007-8,,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +91102,Ic1,EA007,No alternate,EA007-8,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91103,Ic10,EA007,No alternate,EA007-8,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +91104,Ic11,EA007,No alternate,EA007-8,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91105,Ic12,EA007,No alternate,EA007-8,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +91106,Ic13,EA007,No alternate,EA007-8,,fischer1957a,,1950,Ethnology_Vol7_No1_Jan_1968, +91107,Ic2,EA007,Dowry,EA007-7,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +91108,Ic3,EA007,No alternate,EA007-8,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +91109,Ic4,EA007,No alternate,EA007-8,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +91110,Ic5,EA007,No alternate,EA007-8,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +91111,Ic6,EA007,Bride-service,EA007-2,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +91112,Ic7,EA007,Woman exchange,EA007-5,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +91113,Ic8,EA007,No alternate,EA007-8,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +91114,Ic9,EA007,No alternate,EA007-8,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +91115,Id1,EA007,No alternate,EA007-8,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +91116,Id10,EA007,No alternate,EA007-8,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +91117,Id11,EA007,No alternate,EA007-8,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +91118,Id12,EA007,No alternate,EA007-8,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +91119,Id13,EA007,No alternate,EA007-8,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +91120,Id2,EA007,No alternate,EA007-8,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +91121,Id3,EA007,Bride-service,EA007-2,"Formerly code ""6,"" exchange of a sister or female relative",basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +91122,Id4,EA007,No alternate,EA007-8,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +91123,Id5,EA007,No alternate,EA007-8,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +91124,Id6,EA007,No alternate,EA007-8,"Also code ""6"", absence of consideration",mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +91125,Id7,EA007,?,EA007-NA,,,,,, +91126,Id8,EA007,No alternate,EA007-8,Marriage by capture was common,roth1890,,1830,EthnographicAtlas_1967_p94, +91127,Id9,EA007,No alternate,EA007-8,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +91128,Ie1,EA007,No alternate,EA007-8,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91129,Ie10,EA007,Bride-service,EA007-2,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +91130,Ie11,EA007,Bride-wealth,EA007-1,,bowers1964,,1950,EthnographicAtlas_1967_p94, +91131,Ie12,EA007,No alternate,EA007-8,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91132,Ie13,EA007,No alternate,EA007-8,"Recently more commonly code ""1"", bride wealth",landtman1927,,1920,EthnographicAtlas_1967_p94, +91133,Ie14,EA007,No alternate,EA007-8,,haddon1908,,1900,EthnographicAtlas_1967_p94, +91134,Ie15,EA007,Woman exchange,EA007-5,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91135,Ie16,EA007,No alternate,EA007-8,,williams194041,,1940,EthnographicAtlas_1967_p94, +91136,Ie17,EA007,No alternate,EA007-8,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +91137,Ie18,EA007,Bride-wealth,EA007-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +91138,Ie19,EA007,No alternate,EA007-8,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +91139,Ie2,EA007,No alternate,EA007-8,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +91140,Ie20,EA007,No alternate,EA007-8,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +91141,Ie21,EA007,No alternate,EA007-8,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +91142,Ie22,EA007,No alternate,EA007-8,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +91143,Ie23,EA007,No alternate,EA007-8,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +91144,Ie24,EA007,No alternate,EA007-8,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +91145,Ie25,EA007,No alternate,EA007-8,,williamson1912,,1920,EthnographicAtlas_1967_p94, +91146,Ie26,EA007,Bride-wealth,EA007-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +91147,Ie27,EA007,No alternate,EA007-8,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +91148,Ie28,EA007,No alternate,EA007-8,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +91149,Ie29,EA007,No alternate,EA007-8,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91150,Ie3,EA007,No alternate,EA007-8,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91151,Ie30,EA007,No alternate,EA007-8,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +91152,Ie31,EA007,No alternate,EA007-8,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +91153,Ie32,EA007,No alternate,EA007-8,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +91154,Ie33,EA007,No alternate,EA007-8,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +91155,Ie34,EA007,Woman exchange,EA007-5,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +91156,Ie35,EA007,No alternate,EA007-8,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +91157,Ie36,EA007,No alternate,EA007-8,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +91158,Ie37,EA007,No alternate,EA007-8,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +91159,Ie38,EA007,Bride-wealth,EA007-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +91160,Ie39,EA007,No alternate,EA007-8,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +91161,Ie4,EA007,No alternate,EA007-8,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91162,Ie5,EA007,No alternate,EA007-8,,williams1936,,1930,EthnographicAtlas_1967_p94, +91163,Ie6,EA007,No alternate,EA007-8,,held1947,,1930,EthnographicAtlas_1967_p94, +91164,Ie7,EA007,No alternate,EA007-8,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +91165,Ie8,EA007,No alternate,EA007-8,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +91166,Ie9,EA007,No alternate,EA007-8,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +91167,If1,EA007,No alternate,EA007-8,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91168,If10,EA007,No alternate,EA007-8,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +91169,If11,EA007,No alternate,EA007-8,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +91170,If12,EA007,No alternate,EA007-8,,mason1954,,1940,EthnographicAtlas_1967_p98, +91171,If13,EA007,No alternate,EA007-8,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +91172,If14,EA007,Bride-service,EA007-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +91173,If15,EA007,No alternate,EA007-8,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +91174,If16,EA007,No alternate,EA007-8,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +91175,If17,EA007,No alternate,EA007-8,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +91176,If2,EA007,No alternate,EA007-8,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +91177,If3,EA007,No alternate,EA007-8,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +91178,If4,EA007,No alternate,EA007-8,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +91179,If5,EA007,No alternate,EA007-8,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +91180,If6,EA007,No alternate,EA007-8,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +91181,If7,EA007,No alternate,EA007-8,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +91182,If8,EA007,No alternate,EA007-8,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +91183,If9,EA007,No alternate,EA007-8,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +91184,Ig1,EA007,No alternate,EA007-8,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +91185,Ig10,EA007,No alternate,EA007-8,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +91186,Ig11,EA007,No alternate,EA007-8,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +91187,Ig12,EA007,No alternate,EA007-8,But no bride-price is paid when residence is uxorilocal,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +91188,Ig13,EA007,No alternate,EA007-8,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +91189,Ig14,EA007,No alternate,EA007-8,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +91190,Ig15,EA007,?,EA007-NA,,,,,, +91191,Ig16,EA007,?,EA007-NA,,,,,, +91192,Ig17,EA007,No alternate,EA007-8,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +91193,Ig18,EA007,No alternate,EA007-8,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +91194,Ig19,EA007,No alternate,EA007-8,,chowning1962;goodenough1952,,1950,Ethnology_Vol7_No1_Jan_1968, +91195,Ig2,EA007,No alternate,EA007-8,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +91196,Ig20,EA007,No alternate,EA007-8,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +91197,Ig21,EA007,Woman exchange,EA007-5,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +91198,Ig3,EA007,No alternate,EA007-8,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +91199,Ig4,EA007,No alternate,EA007-8,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +91200,Ig5,EA007,No alternate,EA007-8,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +91201,Ig6,EA007,No alternate,EA007-8,,ivens1927,,1900,EthnographicAtlas_1967_p98, +91202,Ig7,EA007,Woman exchange,EA007-5,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +91203,Ig8,EA007,No alternate,EA007-8,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +91204,Ig9,EA007,No alternate,EA007-8,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +91205,Ih1,EA007,No alternate,EA007-8,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +91206,Ih10,EA007,No alternate,EA007-8,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91207,Ih11,EA007,No alternate,EA007-8,,deacon1929,,1920,Ethnology_Vol7_No1_Jan_1968, +91208,Ih12,EA007,No alternate,EA007-8,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +91209,Ih13,EA007,No alternate,EA007-8,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +91210,Ih14,EA007,No alternate,EA007-8,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +91211,Ih2,EA007,No alternate,EA007-8,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91212,Ih3,EA007,Bride-wealth,EA007-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +91213,Ih4,EA007,No alternate,EA007-8,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91214,Ih5,EA007,No alternate,EA007-8,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p98, +91215,Ih6,EA007,No alternate,EA007-8,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +91216,Ih7,EA007,Bride-service,EA007-2,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +91217,Ih8,EA007,No alternate,EA007-8,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +91218,Ih9,EA007,No alternate,EA007-8,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91219,Ii1,EA007,No alternate,EA007-8,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +91220,Ii10,EA007,No alternate,EA007-8,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +91221,Ii12,EA007,No alternate,EA007-8,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91222,Ii13,EA007,No alternate,EA007-8,,burrows1937,,1830,EthnographicAtlas_1967_p98, +91223,Ii14,EA007,No alternate,EA007-8,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +91224,Ii2,EA007,No alternate,EA007-8,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +91225,Ii3,EA007,No alternate,EA007-8,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +91226,Ii4,EA007,No alternate,EA007-8,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +91227,Ii5,EA007,No alternate,EA007-8,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +91228,Ii6,EA007,No alternate,EA007-8,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +91229,Ii7,EA007,No alternate,EA007-8,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +91230,Ii8,EA007,No alternate,EA007-8,,burrows1936,,1840,EthnographicAtlas_1967_p98, +91231,Ii9,EA007,No alternate,EA007-8,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +91232,Ij1,EA007,No alternate,EA007-8,,buck1934,,1820,EthnographicAtlas_1967_p98, +91233,Ij10,EA007,No alternate,EA007-8,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +91234,Ij2,EA007,No alternate,EA007-8,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +91235,Ij3,EA007,No alternate,EA007-8,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +91236,Ij4,EA007,No alternate,EA007-8,,buck1932a,,1850,EthnographicAtlas_1967_p102, +91237,Ij5,EA007,No alternate,EA007-8,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +91238,Ij6,EA007,No alternate,EA007-8,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +91239,Ij7,EA007,No alternate,EA007-8,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +91240,Ij8,EA007,No alternate,EA007-8,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +91241,Ij9,EA007,No alternate,EA007-8,,metraux1940,,1860,EthnographicAtlas_1967_p102, +91242,Na1,EA007,Bride-service,EA007-2,,mckennan1959,,1930,EthnographicAtlas_1967_p102, +91243,Na10,EA007,No alternate,EA007-8,,birketsmith1953,,1930,EthnographicAtlas_1967_p102, +91244,Na11,EA007,No alternate,EA007-8,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +91245,Na12,EA007,No alternate,EA007-8,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +91246,Na13,EA007,Token bride-wealth,EA007-3,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +91247,Na14,EA007,No alternate,EA007-8,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +91248,Na15,EA007,No alternate,EA007-8,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +91249,Na16,EA007,No alternate,EA007-8,,osgood1931,,1860,EthnographicAtlas_1967_p102, +91250,Na17,EA007,No alternate,EA007-8,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91251,Na19,EA007,Bride-service,EA007-2,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +91252,Na2,EA007,No alternate,EA007-8,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +91253,Na20,EA007,No alternate,EA007-8,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +91254,Na21,EA007,No alternate,EA007-8,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +91255,Na22,EA007,No alternate,EA007-8,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +91256,Na23,EA007,No alternate,EA007-8,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +91257,Na24,EA007,No alternate,EA007-8,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +91258,Na25,EA007,No alternate,EA007-8,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +91259,Na26,EA007,Bride-wealth,EA007-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +91260,Na27,EA007,No alternate,EA007-8,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +91261,Na28,EA007,No alternate,EA007-8,,jenness1937,,1880,EthnographicAtlas_1967_p102, +91262,Na29,EA007,No alternate,EA007-8,,goddard1916,,1850,EthnographicAtlas_1967_p102, +91263,Na3,EA007,No alternate,EA007-8,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +91264,Na30,EA007,No alternate,EA007-8,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +91265,Na31,EA007,No alternate,EA007-8,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +91266,Na32,EA007,No alternate,EA007-8,"In Murdock (1964a) coded as code ""6"", absence of consideration with the comment ""Entry follows Lips; Burgesse reports code ""2"", bride service. In EA the entry is code ""2"", bride service",burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +91267,Na33,EA007,No alternate,EA007-8,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +91268,Na34,EA007,No alternate,EA007-8,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +91269,Na35,EA007,No alternate,EA007-8,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +91270,Na36,EA007,No alternate,EA007-8,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +91271,Na37,EA007,No alternate,EA007-8,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +91272,Na38,EA007,No alternate,EA007-8,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +91273,Na39,EA007,No alternate,EA007-8,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +91274,Na4,EA007,No alternate,EA007-8,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +91275,Na40,EA007,?,EA007-NA,,,,,, +91276,Na41,EA007,No alternate,EA007-8,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +91277,Na42,EA007,No alternate,EA007-8,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +91278,Na43,EA007,No alternate,EA007-8,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +91279,Na44,EA007,No alternate,EA007-8,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +91280,Na45,EA007,Woman exchange,EA007-5,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +91281,Na5,EA007,Woman exchange,EA007-5,"Alternatively code ""6"", absence of consideration",lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +91282,Na6,EA007,No alternate,EA007-8,,lantis1946,,1930,EthnographicAtlas_1967_p102, +91283,Na7,EA007,No alternate,EA007-8,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +91284,Na8,EA007,No alternate,EA007-8,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +91285,Na9,EA007,No alternate,EA007-8,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91286,Nb1,EA007,No alternate,EA007-8,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +91287,Nb10,EA007,No alternate,EA007-8,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +91288,Nb11,EA007,No alternate,EA007-8,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +91289,Nb12,EA007,No alternate,EA007-8,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +91290,Nb13,EA007,No alternate,EA007-8,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +91291,Nb14,EA007,No alternate,EA007-8,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +91292,Nb15,EA007,Bride-wealth,EA007-1,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +91293,Nb16,EA007,No alternate,EA007-8,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +91294,Nb17,EA007,Bride-wealth,EA007-1,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +91295,Nb18,EA007,No alternate,EA007-8,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +91296,Nb19,EA007,No alternate,EA007-8,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +91297,Nb2,EA007,Bride-wealth,EA007-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +91298,Nb20,EA007,No alternate,EA007-8,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +91299,Nb21,EA007,Woman exchange,EA007-5,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +91300,Nb22,EA007,Bride-wealth,EA007-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +91301,Nb23,EA007,No alternate,EA007-8,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +91302,Nb24,EA007,Bride-wealth,EA007-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +91303,Nb25,EA007,No alternate,EA007-8,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +91304,Nb26,EA007,No alternate,EA007-8,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +91305,Nb27,EA007,No alternate,EA007-8,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +91306,Nb28,EA007,No alternate,EA007-8,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +91307,Nb29,EA007,No alternate,EA007-8,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +91308,Nb3,EA007,Bride-wealth,EA007-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +91309,Nb30,EA007,No alternate,EA007-8,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +91310,Nb31,EA007,No alternate,EA007-8,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +91311,Nb32,EA007,No alternate,EA007-8,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +91312,Nb33,EA007,No alternate,EA007-8,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +91313,Nb34,EA007,No alternate,EA007-8,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +91314,Nb35,EA007,No alternate,EA007-8,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +91315,Nb36,EA007,No alternate,EA007-8,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +91316,Nb37,EA007,No alternate,EA007-8,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +91317,Nb38,EA007,No alternate,EA007-8,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +91318,Nb39,EA007,No alternate,EA007-8,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +91319,Nb4,EA007,No alternate,EA007-8,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +91320,Nb5,EA007,No alternate,EA007-8,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +91321,Nb6,EA007,No alternate,EA007-8,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +91322,Nb7,EA007,Dowry,EA007-7,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +91323,Nb8,EA007,No alternate,EA007-8,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p102, +91324,Nb9,EA007,No alternate,EA007-8,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +91325,Nc1,EA007,No alternate,EA007-8,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +91326,Nc10,EA007,Bride-service,EA007-2,"Entry follows Voegelin; Stewart reports code ""6"", absence of consideration",goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +91327,Nc11,EA007,No alternate,EA007-8,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +91328,Nc12,EA007,No alternate,EA007-8,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +91329,Nc13,EA007,No alternate,EA007-8,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +91330,Nc14,EA007,No alternate,EA007-8,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +91331,Nc15,EA007,No alternate,EA007-8,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +91332,Nc16,EA007,No alternate,EA007-8,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +91333,Nc17,EA007,No alternate,EA007-8,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +91334,Nc18,EA007,No alternate,EA007-8,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +91335,Nc19,EA007,No alternate,EA007-8,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +91336,Nc2,EA007,No alternate,EA007-8,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +91337,Nc20,EA007,No alternate,EA007-8,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +91338,Nc21,EA007,No alternate,EA007-8,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +91339,Nc22,EA007,No alternate,EA007-8,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +91340,Nc23,EA007,No alternate,EA007-8,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +91341,Nc24,EA007,No alternate,EA007-8,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +91342,Nc25,EA007,No alternate,EA007-8,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +91343,Nc26,EA007,No alternate,EA007-8,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +91344,Nc27,EA007,No alternate,EA007-8,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +91345,Nc28,EA007,No alternate,EA007-8,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +91346,Nc29,EA007,No alternate,EA007-8,"Entry follows Harrington; Kroeber reports code ""3"", token bride price",harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +91347,Nc3,EA007,No alternate,EA007-8,Entry follows Gayton: Kroeber reports a bride-price,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +91348,Nc30,EA007,No alternate,EA007-8,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +91349,Nc31,EA007,No alternate,EA007-8,"But Strong reports code ""1"", bride wealth",drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +91350,Nc32,EA007,No alternate,EA007-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +91351,Nc33,EA007,No alternate,EA007-8,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +91352,Nc34,EA007,No alternate,EA007-8,,meigs1939,,1880,EthnographicAtlas_1967_p106, +91353,Nc4,EA007,Bride-wealth,EA007-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +91354,Nc5,EA007,No alternate,EA007-8,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +91355,Nc6,EA007,No alternate,EA007-8,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +91356,Nc7,EA007,No alternate,EA007-8,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +91357,Nc8,EA007,Bride-wealth,EA007-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +91358,Nc9,EA007,No alternate,EA007-8,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +91359,Nd1,EA007,No alternate,EA007-8,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +91360,Nd10,EA007,No alternate,EA007-8,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +91361,Nd11,EA007,No alternate,EA007-8,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +91362,Nd12,EA007,No alternate,EA007-8,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +91363,Nd13,EA007,No alternate,EA007-8,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +91364,Nd14,EA007,No alternate,EA007-8,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +91365,Nd15,EA007,No alternate,EA007-8,,clineetal1938,,1880,EthnographicAtlas_1967_p110, +91366,Nd16,EA007,No alternate,EA007-8,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +91367,Nd17,EA007,No alternate,EA007-8,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +91368,Nd18,EA007,No alternate,EA007-8,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +91369,Nd19,EA007,No alternate,EA007-8,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +91370,Nd2,EA007,No alternate,EA007-8,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +91371,Nd20,EA007,No alternate,EA007-8,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +91372,Nd21,EA007,No alternate,EA007-8,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +91373,Nd22,EA007,No alternate,EA007-8,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +91374,Nd23,EA007,No alternate,EA007-8,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +91375,Nd24,EA007,No alternate,EA007-8,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +91376,Nd25,EA007,No alternate,EA007-8,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +91377,Nd26,EA007,No alternate,EA007-8,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +91378,Nd27,EA007,No alternate,EA007-8,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +91379,Nd28,EA007,No alternate,EA007-8,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +91380,Nd29,EA007,No alternate,EA007-8,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +91381,Nd3,EA007,No alternate,EA007-8,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +91382,Nd30,EA007,No alternate,EA007-8,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +91383,Nd31,EA007,No alternate,EA007-8,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +91384,Nd32,EA007,No alternate,EA007-8,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +91385,Nd33,EA007,No alternate,EA007-8,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +91386,Nd34,EA007,No alternate,EA007-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +91387,Nd35,EA007,No alternate,EA007-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +91388,Nd36,EA007,No alternate,EA007-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +91389,Nd37,EA007,No alternate,EA007-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +91390,Nd38,EA007,No alternate,EA007-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +91391,Nd39,EA007,No alternate,EA007-8,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +91392,Nd4,EA007,No alternate,EA007-8,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +91393,Nd40,EA007,No alternate,EA007-8,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +91394,Nd41,EA007,No alternate,EA007-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +91395,Nd42,EA007,No alternate,EA007-8,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +91396,Nd43,EA007,No alternate,EA007-8,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +91397,Nd44,EA007,No alternate,EA007-8,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +91398,Nd45,EA007,No alternate,EA007-8,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +91399,Nd46,EA007,No alternate,EA007-8,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +91400,Nd47,EA007,No alternate,EA007-8,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +91401,Nd48,EA007,No alternate,EA007-8,"But Malouf reports code ""1"", bride wealth",malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +91402,Nd49,EA007,No alternate,EA007-8,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +91403,Nd5,EA007,No alternate,EA007-8,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +91404,Nd50,EA007,No alternate,EA007-8,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +91405,Nd51,EA007,No alternate,EA007-8,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +91406,Nd52,EA007,No alternate,EA007-8,"But Lowie reports code ""2"", bride service",drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +91407,Nd53,EA007,No alternate,EA007-8,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +91408,Nd54,EA007,No alternate,EA007-8,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91409,Nd55,EA007,No alternate,EA007-8,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +91410,Nd56,EA007,No alternate,EA007-8,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +91411,Nd57,EA007,No alternate,EA007-8,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +91412,Nd58,EA007,No alternate,EA007-8,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +91413,Nd59,EA007,No alternate,EA007-8,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +91414,Nd6,EA007,No alternate,EA007-8,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +91415,Nd60,EA007,No alternate,EA007-8,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +91416,Nd61,EA007,No alternate,EA007-8,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +91417,Nd62,EA007,No alternate,EA007-8,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +91418,Nd63,EA007,No alternate,EA007-8,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +91419,Nd64,EA007,No alternate,EA007-8,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +91420,Nd65,EA007,No alternate,EA007-8,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +91421,Nd66,EA007,Bride-service,EA007-2,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +91422,Nd67,EA007,No alternate,EA007-8,,gifford1936,,1870,EthnographicAtlas_1967_p110, +91423,Nd7,EA007,No alternate,EA007-8,"But Chamberlain reports code ""1"", bride wealth",boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +91424,Nd8,EA007,Bride-service,EA007-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +91425,Nd9,EA007,No alternate,EA007-8,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +91426,Ne1,EA007,No alternate,EA007-8,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +91427,Ne10,EA007,No alternate,EA007-8,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +91428,Ne11,EA007,Bride-service,EA007-2,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +91429,Ne12,EA007,No alternate,EA007-8,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +91430,Ne13,EA007,Bride-wealth,EA007-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +91431,Ne14,EA007,No alternate,EA007-8,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +91432,Ne15,EA007,No alternate,EA007-8,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +91433,Ne16,EA007,No alternate,EA007-8,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +91434,Ne17,EA007,No alternate,EA007-8,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +91435,Ne18,EA007,Bride-wealth,EA007-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +91436,Ne19,EA007,No alternate,EA007-8,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +91437,Ne2,EA007,No alternate,EA007-8,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +91438,Ne20,EA007,No alternate,EA007-8,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +91439,Ne21,EA007,?,EA007-NA,,,,,, +91440,Ne3,EA007,No alternate,EA007-8,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +91441,Ne4,EA007,No alternate,EA007-8,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +91442,Ne5,EA007,No alternate,EA007-8,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +91443,Ne6,EA007,No alternate,EA007-8,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +91444,Ne7,EA007,No alternate,EA007-8,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +91445,Ne8,EA007,No alternate,EA007-8,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +91446,Ne9,EA007,No alternate,EA007-8,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +91447,Nf10,EA007,No alternate,EA007-8,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +91448,Nf11,EA007,Bride-service,EA007-2,,whitman1937,,1870,EthnographicAtlas_1967_p114, +91449,Nf12,EA007,No alternate,EA007-8,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +91450,Nf13,EA007,No alternate,EA007-8,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91451,Nf14,EA007,No alternate,EA007-8,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +91452,Nf15,EA007,No alternate,EA007-8,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +91453,Nf2,EA007,No alternate,EA007-8,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +91454,Nf3,EA007,No alternate,EA007-8,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +91455,Nf4,EA007,No alternate,EA007-8,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +91456,Nf5,EA007,No alternate,EA007-8,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +91457,Nf6,EA007,No alternate,EA007-8,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +91458,Nf7,EA007,No alternate,EA007-8,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91459,Nf8,EA007,No alternate,EA007-8,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +91460,Nf9,EA007,No alternate,EA007-8,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +91461,Ng1,EA007,No alternate,EA007-8,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +91462,Ng10,EA007,No alternate,EA007-8,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +91463,Ng11,EA007,No alternate,EA007-8,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +91464,Ng12,EA007,No alternate,EA007-8,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +91465,Ng13,EA007,No alternate,EA007-8,,hallowell1926;speck1818;vetromile1866,,,Ethnology_Vol7_No1_Jan_1968, +91466,Ng14,EA007,No alternate,EA007-8,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +91467,Ng15,EA007,?,EA007-NA,,,,,, +91468,Ng2,EA007,No alternate,EA007-8,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +91469,Ng3,EA007,No alternate,EA007-8,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +91470,Ng4,EA007,No alternate,EA007-8,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +91471,Ng5,EA007,No alternate,EA007-8,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +91472,Ng6,EA007,No alternate,EA007-8,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +91473,Ng7,EA007,No alternate,EA007-8,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +91474,Ng8,EA007,?,EA007-NA,,,,,, +91475,Ng9,EA007,No alternate,EA007-8,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +91476,Nh1,EA007,No alternate,EA007-8,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +91477,Nh10,EA007,No alternate,EA007-8,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +91478,Nh11,EA007,No alternate,EA007-8,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +91479,Nh12,EA007,No alternate,EA007-8,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +91480,Nh13,EA007,No alternate,EA007-8,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +91481,Nh14,EA007,No alternate,EA007-8,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +91482,Nh15,EA007,No alternate,EA007-8,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +91483,Nh16,EA007,No alternate,EA007-8,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91484,Nh17,EA007,No alternate,EA007-8,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +91485,Nh18,EA007,No alternate,EA007-8,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91486,Nh19,EA007,No alternate,EA007-8,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +91487,Nh2,EA007,No alternate,EA007-8,,dozier1954,,1950,EthnographicAtlas_1967_p114, +91488,Nh20,EA007,No alternate,EA007-8,,gifford1931,,1860,EthnographicAtlas_1967_p114, +91489,Nh21,EA007,No alternate,EA007-8,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91490,Nh22,EA007,No alternate,EA007-8,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +91491,Nh23,EA007,No alternate,EA007-8,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +91492,Nh24,EA007,No alternate,EA007-8,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +91493,Nh25,EA007,No alternate,EA007-8,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +91494,Nh26,EA007,No alternate,EA007-8,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +91495,Nh27,EA007,No alternate,EA007-8,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +91496,Nh3,EA007,No alternate,EA007-8,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +91497,Nh4,EA007,No alternate,EA007-8,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +91498,Nh5,EA007,No alternate,EA007-8,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +91499,Nh6,EA007,No alternate,EA007-8,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +91500,Nh7,EA007,No alternate,EA007-8,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +91501,Nh8,EA007,No alternate,EA007-8,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +91502,Nh9,EA007,No alternate,EA007-8,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +91503,Ni1,EA007,No alternate,EA007-8,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +91504,Ni2,EA007,No alternate,EA007-8,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +91505,Ni3,EA007,No alternate,EA007-8,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +91506,Ni4,EA007,No alternate,EA007-8,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +91507,Ni5,EA007,No alternate,EA007-8,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +91508,Ni6,EA007,No alternate,EA007-8,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +91509,Ni7,EA007,No alternate,EA007-8,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +91510,Ni8,EA007,No alternate,EA007-8,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +91511,Ni9,EA007,?,EA007-NA,,,,,, +91512,Nj1,EA007,No alternate,EA007-8,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91513,Nj10,EA007,No alternate,EA007-8,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91514,Nj11,EA007,No alternate,EA007-8,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +91515,Nj12,EA007,?,EA007-NA,,,,,, +91516,Nj13,EA007,?,EA007-NA,,,,,, +91517,Nj14,EA007,?,EA007-NA,,,,,, +91518,Nj2,EA007,No alternate,EA007-8,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +91519,Nj3,EA007,No alternate,EA007-8,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +91520,Nj4,EA007,No alternate,EA007-8,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p118, +91521,Nj5,EA007,No alternate,EA007-8,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +91522,Nj6,EA007,No alternate,EA007-8,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +91523,Nj7,EA007,No alternate,EA007-8,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91524,Nj8,EA007,No alternate,EA007-8,,foster1948,,1500,EthnographicAtlas_1967_p118, +91525,Nj9,EA007,No alternate,EA007-8,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +91526,Sa1,EA007,No alternate,EA007-8,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +91527,Sa10,EA007,No alternate,EA007-8,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +91528,Sa11,EA007,No alternate,EA007-8,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +91529,Sa12,EA007,No alternate,EA007-8,,stone1948,,1948,EthnographicAtlas_1967_p118, +91530,Sa13,EA007,No alternate,EA007-8,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +91531,Sa14,EA007,No alternate,EA007-8,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +91532,Sa15,EA007,No alternate,EA007-8,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +91533,Sa16,EA007,?,EA007-NA,,,,,, +91534,Sa17,EA007,No alternate,EA007-8,,gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +91535,Sa2,EA007,Token bride-wealth,EA007-3,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91536,Sa3,EA007,No alternate,EA007-8,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +91537,Sa4,EA007,No alternate,EA007-8,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +91538,Sa5,EA007,No alternate,EA007-8,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +91539,Sa6,EA007,Token bride-wealth,EA007-3,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +91540,Sa7,EA007,No alternate,EA007-8,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +91541,Sa8,EA007,No alternate,EA007-8,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +91542,Sa9,EA007,Bride-service,EA007-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +91543,Sb1,EA007,No alternate,EA007-8,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +91544,Sb2,EA007,No alternate,EA007-8,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +91545,Sb3,EA007,No alternate,EA007-8,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +91546,Sb4,EA007,Bride-service,EA007-2,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +91547,Sb5,EA007,No alternate,EA007-8,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +91548,Sb6,EA007,No alternate,EA007-8,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +91549,Sb7,EA007,No alternate,EA007-8,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +91550,Sb8,EA007,No alternate,EA007-8,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +91551,Sb9,EA007,No alternate,EA007-8,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +91552,Sc1,EA007,No alternate,EA007-8,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +91553,Sc10,EA007,No alternate,EA007-8,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +91554,Sc11,EA007,No alternate,EA007-8,"Or alternatively code ""1"", bride wealth",simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +91555,Sc12,EA007,No alternate,EA007-8,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +91556,Sc13,EA007,No alternate,EA007-8,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +91557,Sc14,EA007,?,EA007-NA,,,,,, +91558,Sc15,EA007,No alternate,EA007-8,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +91559,Sc16,EA007,No alternate,EA007-8,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +91560,Sc17,EA007,No alternate,EA007-8,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +91561,Sc18,EA007,Bride-service,EA007-2,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +91562,Sc2,EA007,No alternate,EA007-8,,leedsnd,,1950,EthnographicAtlas_1967_p118, +91563,Sc3,EA007,No alternate,EA007-8,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +91564,Sc4,EA007,No alternate,EA007-8,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +91565,Sc5,EA007,No alternate,EA007-8,,farabee1918,,1900,EthnographicAtlas_1967_p118, +91566,Sc6,EA007,Bride-service,EA007-2,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91567,Sc7,EA007,No alternate,EA007-8,,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +91568,Sc8,EA007,No alternate,EA007-8,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +91569,Sc9,EA007,?,EA007-NA,,,,,, +91570,Sd1,EA007,No alternate,EA007-8,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91571,Sd2,EA007,No alternate,EA007-8,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +91572,Sd3,EA007,No alternate,EA007-8,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +91573,Sd4,EA007,No alternate,EA007-8,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +91574,Sd5,EA007,No alternate,EA007-8,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +91575,Sd6,EA007,Token bride-wealth,EA007-3,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +91576,Sd7,EA007,No alternate,EA007-8,,fock1963,,1950,EthnographicAtlas_1967_p118, +91577,Sd8,EA007,No alternate,EA007-8,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +91578,Sd9,EA007,Bride-service,EA007-2,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91579,Se1,EA007,No alternate,EA007-8,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +91580,Se10,EA007,No alternate,EA007-8,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +91581,Se11,EA007,No alternate,EA007-8,,prost1965,,1960,EthnographicAtlas_1967_p122, +91582,Se12,EA007,No alternate,EA007-8,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +91583,Se2,EA007,No alternate,EA007-8,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +91584,Se3,EA007,No alternate,EA007-8,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +91585,Se4,EA007,No alternate,EA007-8,,fejos1943,,1940,EthnographicAtlas_1967_p118, +91586,Se5,EA007,No alternate,EA007-8,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +91587,Se6,EA007,No alternate,EA007-8,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +91588,Se7,EA007,No alternate,EA007-8,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91589,Se8,EA007,Woman exchange,EA007-5,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +91590,Se9,EA007,No alternate,EA007-8,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +91591,Sf1,EA007,No alternate,EA007-8,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +91592,Sf2,EA007,No alternate,EA007-8,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +91593,Sf3,EA007,No alternate,EA007-8,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +91594,Sf4,EA007,Bride-service,EA007-2,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +91595,Sf5,EA007,No alternate,EA007-8,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +91596,Sf6,EA007,No alternate,EA007-8,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +91597,Sf7,EA007,No alternate,EA007-8,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +91598,Sf8,EA007,No alternate,EA007-8,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +91599,Sf9,EA007,No alternate,EA007-8,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +91600,Sg1,EA007,Token bride-wealth,EA007-3,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +91601,Sg2,EA007,No alternate,EA007-8,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91602,Sg3,EA007,No alternate,EA007-8,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +91603,Sg4,EA007,Bride-wealth,EA007-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +91604,Sg5,EA007,No alternate,EA007-8,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91605,Sh1,EA007,No alternate,EA007-8,Entry follows Fock; earlier sources report a modest bride-price,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +91606,Sh2,EA007,No alternate,EA007-8,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +91607,Sh3,EA007,No alternate,EA007-8,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +91608,Sh4,EA007,No alternate,EA007-8,,oberg1949,,1940,EthnographicAtlas_1967_p122, +91609,Sh5,EA007,No alternate,EA007-8,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +91610,Sh6,EA007,No alternate,EA007-8,"Entry follows Boggiani; Baldus reports code ""1"", bride wealth",baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +91611,Sh7,EA007,No alternate,EA007-8,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +91612,Sh8,EA007,No alternate,EA007-8,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +91613,Sh9,EA007,No alternate,EA007-8,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +91614,Si1,EA007,No alternate,EA007-8,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91615,Si10,EA007,No alternate,EA007-8,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +91616,Si2,EA007,No alternate,EA007-8,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +91617,Si3,EA007,No alternate,EA007-8,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91618,Si4,EA007,No alternate,EA007-8,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +91619,Si5,EA007,No alternate,EA007-8,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +91620,Si6,EA007,?,EA007-NA,,,,,, +91621,Si7,EA007,No alternate,EA007-8,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +91622,Si8,EA007,No alternate,EA007-8,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +91623,Si9,EA007,?,EA007-NA,,,,,, +91624,Sj1,EA007,No alternate,EA007-8,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +91625,Sj10,EA007,No alternate,EA007-8,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91626,Sj11,EA007,No alternate,EA007-8,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +91627,Sj2,EA007,No alternate,EA007-8,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +91628,Sj3,EA007,No alternate,EA007-8,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +91629,Sj4,EA007,No alternate,EA007-8,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +91630,Sj5,EA007,No alternate,EA007-8,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +91631,Sj6,EA007,No alternate,EA007-8,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91632,Sj7,EA007,No alternate,EA007-8,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +91633,Sj8,EA007,No alternate,EA007-8,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +91634,Sj9,EA007,No alternate,EA007-8,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +91635,ch12,EA007,Dowry,EA007-7,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +91636,ch13,EA007,Insignificant,EA007-6,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +91637,ch14,EA007,Insignificant,EA007-6,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +91638,ch15,EA007,Bride-wealth,EA007-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +91639,ch16,EA007,No alternate,EA007-8,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +91640,ch17,EA007,Insignificant,EA007-6,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +91641,ch18,EA007,No alternate,EA007-8,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +91642,ch19,EA007,No alternate,EA007-8,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +91643,ch20,EA007,Dowry,EA007-7,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +91644,ch21,EA007,No alternate,EA007-8,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +91645,ch22,EA007,No alternate,EA007-8,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +91646,ch23,EA007,No alternate,EA007-8,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +91647,ch24,EA007,No alternate,EA007-8,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +91648,ch25,EA007,Insignificant,EA007-6,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +91649,ch26,EA007,Dowry,EA007-7,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +91650,ch27,EA007,Insignificant,EA007-6,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +91651,ch28,EA007,Insignificant,EA007-6,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +91652,ec12,EA007,Woman exchange,EA007-5,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +91653,ec13,EA007,No alternate,EA007-8,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +91654,ec14,EA007,Woman exchange,EA007-5,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +91655,ec15,EA007,No alternate,EA007-8,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +91656,ec16,EA007,Woman exchange,EA007-5,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +91657,ec17,EA007,Woman exchange,EA007-5,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +91658,ec18,EA007,Bride-service,EA007-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +91659,ec19,EA007,Bride-service,EA007-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +91660,ec20,EA007,Bride-service,EA007-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +91661,ec21,EA007,Woman exchange,EA007-5,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +91662,Aa1,EA070,Absence of slavery,EA070-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +91663,Aa2,EA070,Absence of slavery,EA070-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +91664,Aa3,EA070,Absence of slavery,EA070-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +91665,Aa4,EA070,"Slavery, nonhereditary",EA070-2,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +91666,Aa5,EA070,Absence of slavery,EA070-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +91667,Aa6,EA070,Absence of slavery,EA070-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +91668,Aa7,EA070,Absence of slavery,EA070-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +91669,Aa8,EA070,Absence of slavery,EA070-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +91670,Aa9,EA070,Absence of slavery,EA070-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +91671,Ab1,EA070,"Slavery, hereditary",EA070-4,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +91672,Ab10,EA070,Absence of slavery,EA070-1,,hunter1936,,1936,EthnographicAtlas_1967_p65, +91673,Ab11,EA070,Absence of slavery,EA070-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +91674,Ab12,EA070,Absence of slavery,EA070-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +91675,Ab13,EA070,Absence of slavery,EA070-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +91676,Ab14,EA070,Absence of slavery,EA070-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +91677,Ab15,EA070,?,EA070-NA,,,,,, +91678,Ab16,EA070,Absence of slavery,EA070-1,,earthy1933,,1930,EthnographicAtlas_1967_p65, +91679,Ab17,EA070,"Slavery, no info on heritability",EA070-3,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +91680,Ab18,EA070,"Slavery, no info on heritability",EA070-3,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +91681,Ab19,EA070,"Slavery, hereditary",EA070-4,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +91682,Ab2,EA070,Absence of slavery,EA070-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +91683,Ab20,EA070,"Slavery, no info on heritability",EA070-3,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +91684,Ab21a,EA070,"Slavery, no info on heritability",EA070-3,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +91685,Ab21b,EA070,?,EA070-NA,,,,,, +91686,Ab22,EA070,?,EA070-NA,,,,,, +91687,Ab3,EA070,"Slavery, hereditary",EA070-4,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +91688,Ab4,EA070,Absence of slavery,EA070-1,,junod1927,,1920,EthnographicAtlas_1967_p65, +91689,Ab5,EA070,"Slavery, hereditary",EA070-4,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +91690,Ab6,EA070,"Slavery, nonhereditary",EA070-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +91691,Ab7,EA070,"Slavery, no info on heritability",EA070-3,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +91692,Ab8,EA070,Absence of slavery,EA070-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +91693,Ab9,EA070,Absence of slavery,EA070-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +91694,Ac1,EA070,"Slavery, hereditary",EA070-4,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +91695,Ac10,EA070,"Slavery, no info on heritability",EA070-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +91696,Ac11,EA070,"Slavery, hereditary",EA070-4,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +91697,Ac12,EA070,"Slavery, no info on heritability",EA070-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +91698,Ac13,EA070,"Slavery, hereditary",EA070-4,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +91699,Ac14,EA070,"Slavery, hereditary",EA070-4,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +91700,Ac15,EA070,"Slavery, hereditary",EA070-4,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +91701,Ac16,EA070,"Slavery, hereditary",EA070-4,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +91702,Ac17,EA070,"Slavery, nonhereditary",EA070-2,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +91703,Ac18,EA070,"Slavery, nonhereditary",EA070-2,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +91704,Ac19,EA070,"Slavery, no info on heritability",EA070-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +91705,Ac2,EA070,"Slavery, no info on heritability",EA070-3,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +91706,Ac20,EA070,"Slavery, hereditary",EA070-4,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +91707,Ac21,EA070,"Slavery, nonhereditary",EA070-2,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +91708,Ac22,EA070,"Slavery, no info on heritability",EA070-3,,mertens1935,,1930,EthnographicAtlas_1967_p65, +91709,Ac23,EA070,"Slavery, no info on heritability",EA070-3,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +91710,Ac24,EA070,"Slavery, hereditary",EA070-4,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +91711,Ac25,EA070,"Slavery, hereditary",EA070-4,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +91712,Ac26,EA070,"Slavery, hereditary",EA070-4,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +91713,Ac27,EA070,?,EA070-NA,,,,,, +91714,Ac28,EA070,?,EA070-NA,,,,,, +91715,Ac29,EA070,"Slavery, no info on heritability",EA070-3,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +91716,Ac3,EA070,"Slavery, nonhereditary",EA070-2,"Entry follows Richards; earlier sources report hereditary slavery (code ""4"")",delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +91717,Ac30,EA070,"Slavery, nonhereditary",EA070-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +91718,Ac31,EA070,"Slavery, no info on heritability",EA070-3,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +91719,Ac32,EA070,"Slavery, no info on heritability",EA070-3,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +91720,Ac33,EA070,"Slavery, hereditary",EA070-4,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +91721,Ac34,EA070,"Slavery, no info on heritability",EA070-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +91722,Ac35,EA070,"Slavery, hereditary",EA070-4,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +91723,Ac36,EA070,"Slavery, nonhereditary",EA070-2,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +91724,Ac37,EA070,?,EA070-NA,,,,,, +91725,Ac38,EA070,"Slavery, hereditary",EA070-4,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +91726,Ac39,EA070,"Slavery, hereditary",EA070-4,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +91727,Ac4,EA070,"Slavery, hereditary",EA070-4,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +91728,Ac40,EA070,"Slavery, no info on heritability",EA070-3,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +91729,Ac41,EA070,"Slavery, no info on heritability",EA070-3,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +91730,Ac42,EA070,"Slavery, no info on heritability",EA070-3,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +91731,Ac43,EA070,?,EA070-NA,,,,,, +91732,Ac5,EA070,"Slavery, no info on heritability",EA070-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +91733,Ac6,EA070,"Slavery, no info on heritability",EA070-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +91734,Ac7,EA070,"Slavery, hereditary",EA070-4,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +91735,Ac8,EA070,"Slavery, nonhereditary",EA070-2,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +91736,Ac9,EA070,"Slavery, nonhereditary",EA070-2,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +91737,Ad1,EA070,"Slavery, hereditary",EA070-4,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +91738,Ad10,EA070,"Slavery, hereditary",EA070-4,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +91739,Ad11,EA070,"Slavery, hereditary",EA070-4,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +91740,Ad12,EA070,?,EA070-NA,,,,,, +91741,Ad13,EA070,"Slavery, nonhereditary",EA070-2,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +91742,Ad14,EA070,"Slavery, no info on heritability",EA070-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +91743,Ad15,EA070,"Slavery, nonhereditary",EA070-2,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +91744,Ad16,EA070,"Slavery, nonhereditary",EA070-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +91745,Ad17,EA070,"Slavery, nonhereditary",EA070-2,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +91746,Ad18,EA070,"Slavery, nonhereditary",EA070-2,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +91747,Ad19,EA070,"Slavery, no info on heritability",EA070-3,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +91748,Ad2,EA070,"Slavery, hereditary",EA070-4,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +91749,Ad20,EA070,"Slavery, nonhereditary",EA070-2,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +91750,Ad21,EA070,"Slavery, no info on heritability",EA070-3,,maurice193538,,1930,EthnographicAtlas_1967_p69, +91751,Ad22,EA070,"Slavery, no info on heritability",EA070-3,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +91752,Ad23,EA070,"Slavery, no info on heritability",EA070-3,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +91753,Ad24,EA070,"Slavery, nonhereditary",EA070-2,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +91754,Ad25,EA070,"Slavery, no info on heritability",EA070-3,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +91755,Ad26,EA070,Absence of slavery,EA070-1,,sick1916,,1910,EthnographicAtlas_1967_p69, +91756,Ad27,EA070,"Slavery, no info on heritability",EA070-3,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +91757,Ad28,EA070,"Slavery, hereditary",EA070-4,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +91758,Ad29,EA070,"Slavery, hereditary",EA070-4,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +91759,Ad3,EA070,Absence of slavery,EA070-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +91760,Ad30,EA070,"Slavery, no info on heritability",EA070-3,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +91761,Ad31,EA070,"Slavery, no info on heritability",EA070-3,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +91762,Ad32,EA070,"Slavery, nonhereditary",EA070-2,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +91763,Ad33,EA070,"Slavery, nonhereditary",EA070-2,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +91764,Ad34,EA070,"Slavery, no info on heritability",EA070-3,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +91765,Ad35,EA070,"Slavery, no info on heritability",EA070-3,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +91766,Ad36,EA070,"Slavery, hereditary",EA070-4,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +91767,Ad37,EA070,Absence of slavery,EA070-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +91768,Ad38,EA070,Absence of slavery,EA070-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +91769,Ad39,EA070,Absence of slavery,EA070-1,,gray1963,,1950,EthnographicAtlas_1967_p69, +91770,Ad4,EA070,Absence of slavery,EA070-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +91771,Ad40,EA070,?,EA070-NA,,,,,, +91772,Ad41,EA070,?,EA070-NA,,,,,, +91773,Ad42,EA070,"Slavery, nonhereditary",EA070-2,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +91774,Ad43,EA070,"Slavery, hereditary",EA070-4,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +91775,Ad44,EA070,?,EA070-NA,,,,,, +91776,Ad45,EA070,"Slavery, nonhereditary",EA070-2,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +91777,Ad46,EA070,"Slavery, hereditary",EA070-4,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +91778,Ad47,EA070,"Slavery, hereditary",EA070-4,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +91779,Ad48,EA070,"Slavery, no info on heritability",EA070-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +91780,Ad49,EA070,"Slavery, hereditary",EA070-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +91781,Ad5,EA070,Absence of slavery,EA070-1,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +91782,Ad50,EA070,"Slavery, no info on heritability",EA070-3,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +91783,Ad51,EA070,"Slavery, no info on heritability",EA070-3,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +91784,Ad6,EA070,"Slavery, nonhereditary",EA070-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +91785,Ad7,EA070,"Slavery, hereditary",EA070-4,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +91786,Ad8,EA070,"Slavery, hereditary",EA070-4,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +91787,Ad9,EA070,"Slavery, nonhereditary",EA070-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +91788,Ae1,EA070,Absence of slavery,EA070-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +91789,Ae10,EA070,"Slavery, nonhereditary",EA070-2,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +91790,Ae11,EA070,"Slavery, hereditary",EA070-4,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +91791,Ae12,EA070,"Slavery, hereditary",EA070-4,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +91792,Ae13,EA070,?,EA070-NA,,,,,, +91793,Ae14,EA070,"Slavery, no info on heritability",EA070-3,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +91794,Ae15,EA070,"Slavery, no info on heritability",EA070-3,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +91795,Ae16,EA070,"Slavery, no info on heritability",EA070-3,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +91796,Ae17,EA070,Absence of slavery,EA070-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +91797,Ae18,EA070,"Slavery, hereditary",EA070-4,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +91798,Ae19,EA070,"Slavery, hereditary",EA070-4,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +91799,Ae2,EA070,"Slavery, nonhereditary",EA070-2,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +91800,Ae20,EA070,"Slavery, nonhereditary",EA070-2,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +91801,Ae21,EA070,"Slavery, hereditary",EA070-4,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +91802,Ae22,EA070,"Slavery, no info on heritability",EA070-3,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +91803,Ae23,EA070,"Slavery, no info on heritability",EA070-3,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +91804,Ae24,EA070,"Slavery, no info on heritability",EA070-3,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +91805,Ae25,EA070,"Slavery, nonhereditary",EA070-2,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +91806,Ae26,EA070,"Slavery, nonhereditary",EA070-2,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +91807,Ae27,EA070,"Slavery, no info on heritability",EA070-3,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +91808,Ae28,EA070,"Slavery, hereditary",EA070-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +91809,Ae29,EA070,"Slavery, hereditary",EA070-4,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +91810,Ae3,EA070,Absence of slavery,EA070-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +91811,Ae30,EA070,Absence of slavery,EA070-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +91812,Ae31,EA070,"Slavery, no info on heritability",EA070-3,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +91813,Ae32,EA070,Absence of slavery,EA070-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +91814,Ae33,EA070,?,EA070-NA,,,,,, +91815,Ae34,EA070,Absence of slavery,EA070-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +91816,Ae35,EA070,"Slavery, no info on heritability",EA070-3,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +91817,Ae36,EA070,"Slavery, no info on heritability",EA070-3,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +91818,Ae37,EA070,"Slavery, nonhereditary",EA070-2,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +91819,Ae38,EA070,"Slavery, no info on heritability",EA070-3,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +91820,Ae39,EA070,"Slavery, nonhereditary",EA070-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +91821,Ae4,EA070,"Slavery, nonhereditary",EA070-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +91822,Ae40,EA070,"Slavery, no info on heritability",EA070-3,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +91823,Ae41,EA070,"Slavery, no info on heritability",EA070-3,,andersson1953,,1940,EthnographicAtlas_1967_p69, +91824,Ae42,EA070,"Slavery, nonhereditary",EA070-2,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +91825,Ae43,EA070,"Slavery, no info on heritability",EA070-3,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +91826,Ae44,EA070,"Slavery, no info on heritability",EA070-3,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +91827,Ae45,EA070,"Slavery, hereditary",EA070-4,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +91828,Ae46,EA070,"Slavery, no info on heritability",EA070-3,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +91829,Ae47,EA070,"Slavery, no info on heritability",EA070-3,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +91830,Ae48,EA070,"Slavery, no info on heritability",EA070-3,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +91831,Ae49,EA070,"Slavery, no info on heritability",EA070-3,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +91832,Ae5,EA070,"Slavery, hereditary",EA070-4,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +91833,Ae50,EA070,"Slavery, hereditary",EA070-4,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +91834,Ae51,EA070,"Slavery, hereditary",EA070-4,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +91835,Ae52,EA070,"Slavery, no info on heritability",EA070-3,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +91836,Ae53,EA070,"Slavery, no info on heritability",EA070-3,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +91837,Ae54,EA070,"Slavery, no info on heritability",EA070-3,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +91838,Ae55,EA070,"Slavery, no info on heritability",EA070-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +91839,Ae56,EA070,"Slavery, no info on heritability",EA070-3,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +91840,Ae57,EA070,"Slavery, no info on heritability",EA070-3,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +91841,Ae58,EA070,"Slavery, no info on heritability",EA070-3,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +91842,Ae59,EA070,"Slavery, no info on heritability",EA070-3,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +91843,Ae6,EA070,"Slavery, hereditary",EA070-4,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +91844,Ae7,EA070,"Slavery, nonhereditary",EA070-2,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +91845,Ae8,EA070,"Slavery, nonhereditary",EA070-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +91846,Ae9,EA070,"Slavery, hereditary",EA070-4,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +91847,Af1,EA070,"Slavery, hereditary",EA070-4,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +91848,Af10,EA070,"Slavery, hereditary",EA070-4,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +91849,Af11,EA070,"Slavery, hereditary",EA070-4,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +91850,Af12,EA070,"Slavery, no info on heritability",EA070-3,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +91851,Af13,EA070,"Slavery, hereditary",EA070-4,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +91852,Af14,EA070,"Slavery, no info on heritability",EA070-3,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +91853,Af15,EA070,"Slavery, hereditary",EA070-4,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +91854,Af16,EA070,"Slavery, no info on heritability",EA070-3,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +91855,Af17,EA070,"Slavery, no info on heritability",EA070-3,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +91856,Af18,EA070,"Slavery, no info on heritability",EA070-3,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +91857,Af19,EA070,"Slavery, no info on heritability",EA070-3,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +91858,Af2,EA070,"Slavery, hereditary",EA070-4,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +91859,Af20,EA070,"Slavery, no info on heritability",EA070-3,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +91860,Af21,EA070,"Slavery, nonhereditary",EA070-2,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +91861,Af22,EA070,"Slavery, hereditary",EA070-4,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +91862,Af23,EA070,"Slavery, hereditary",EA070-4,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +91863,Af24,EA070,"Slavery, hereditary",EA070-4,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +91864,Af25,EA070,"Slavery, hereditary",EA070-4,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +91865,Af26,EA070,"Slavery, no info on heritability",EA070-3,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +91866,Af27,EA070,"Slavery, no info on heritability",EA070-3,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +91867,Af28,EA070,"Slavery, no info on heritability",EA070-3,,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +91868,Af29,EA070,"Slavery, no info on heritability",EA070-3,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +91869,Af3,EA070,"Slavery, nonhereditary",EA070-2,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +91870,Af30,EA070,"Slavery, no info on heritability",EA070-3,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +91871,Af31,EA070,"Slavery, no info on heritability",EA070-3,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +91872,Af32,EA070,"Slavery, hereditary",EA070-4,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91873,Af33,EA070,"Slavery, no info on heritability",EA070-3,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91874,Af34,EA070,"Slavery, no info on heritability",EA070-3,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91875,Af35,EA070,?,EA070-NA,,,,,, +91876,Af36,EA070,"Slavery, no info on heritability",EA070-3,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +91877,Af37,EA070,"Slavery, hereditary",EA070-4,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +91878,Af38,EA070,"Slavery, hereditary",EA070-4,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +91879,Af39,EA070,"Slavery, hereditary",EA070-4,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +91880,Af4,EA070,"Slavery, nonhereditary",EA070-2,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +91881,Af40,EA070,"Slavery, hereditary",EA070-4,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +91882,Af41,EA070,"Slavery, no info on heritability",EA070-3,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +91883,Af42,EA070,"Slavery, hereditary",EA070-4,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +91884,Af43,EA070,"Slavery, no info on heritability",EA070-3,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +91885,Af44,EA070,"Slavery, no info on heritability",EA070-3,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +91886,Af45,EA070,"Slavery, no info on heritability",EA070-3,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +91887,Af46,EA070,"Slavery, no info on heritability",EA070-3,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +91888,Af47,EA070,"Slavery, no info on heritability",EA070-3,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +91889,Af48,EA070,"Slavery, no info on heritability",EA070-3,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +91890,Af49,EA070,"Slavery, nonhereditary",EA070-2,,schwab1947,,1940,EthnographicAtlas_1967_p73, +91891,Af5,EA070,"Slavery, hereditary",EA070-4,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +91892,Af50,EA070,"Slavery, no info on heritability",EA070-3,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +91893,Af51,EA070,Absence of slavery,EA070-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +91894,Af52,EA070,"Slavery, hereditary",EA070-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +91895,Af53,EA070,?,EA070-NA,,,,,, +91896,Af54,EA070,"Slavery, no info on heritability",EA070-3,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +91897,Af55,EA070,"Slavery, no info on heritability",EA070-3,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +91898,Af56,EA070,"Slavery, no info on heritability",EA070-3,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +91899,Af57,EA070,"Slavery, no info on heritability",EA070-3,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +91900,Af58,EA070,"Slavery, no info on heritability",EA070-3,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +91901,Af6,EA070,"Slavery, nonhereditary",EA070-2,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +91902,Af7,EA070,Absence of slavery,EA070-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +91903,Af8,EA070,"Slavery, hereditary",EA070-4,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +91904,Af9,EA070,"Slavery, hereditary",EA070-4,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +91905,Ag1,EA070,"Slavery, hereditary",EA070-4,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +91906,Ag10,EA070,"Slavery, nonhereditary",EA070-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +91907,Ag11,EA070,"Slavery, nonhereditary",EA070-2,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +91908,Ag12,EA070,"Slavery, nonhereditary",EA070-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +91909,Ag13,EA070,"Slavery, no info on heritability",EA070-3,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +91910,Ag14,EA070,Absence of slavery,EA070-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +91911,Ag15,EA070,"Slavery, no info on heritability",EA070-3,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +91912,Ag16,EA070,Absence of slavery,EA070-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +91913,Ag17,EA070,"Slavery, no info on heritability",EA070-3,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +91914,Ag18,EA070,"Slavery, no info on heritability",EA070-3,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +91915,Ag19,EA070,Absence of slavery,EA070-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +91916,Ag2,EA070,"Slavery, hereditary",EA070-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +91917,Ag20,EA070,Absence of slavery,EA070-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +91918,Ag21,EA070,Absence of slavery,EA070-1,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +91919,Ag22,EA070,"Slavery, hereditary",EA070-4,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +91920,Ag23,EA070,"Slavery, no info on heritability",EA070-3,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +91921,Ag24,EA070,"Slavery, no info on heritability",EA070-3,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +91922,Ag25,EA070,"Slavery, hereditary",EA070-4,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +91923,Ag26,EA070,"Slavery, no info on heritability",EA070-3,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +91924,Ag27,EA070,"Slavery, no info on heritability",EA070-3,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +91925,Ag28,EA070,"Slavery, hereditary",EA070-4,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +91926,Ag29,EA070,?,EA070-NA,,,,,, +91927,Ag3,EA070,"Slavery, hereditary",EA070-4,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +91928,Ag30,EA070,"Slavery, no info on heritability",EA070-3,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +91929,Ag31,EA070,"Slavery, hereditary",EA070-4,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +91930,Ag32,EA070,"Slavery, hereditary",EA070-4,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +91931,Ag33,EA070,"Slavery, no info on heritability",EA070-3,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +91932,Ag34,EA070,"Slavery, no info on heritability",EA070-3,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +91933,Ag35,EA070,"Slavery, no info on heritability",EA070-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +91934,Ag36,EA070,?,EA070-NA,,,,,, +91935,Ag37,EA070,"Slavery, no info on heritability",EA070-3,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +91936,Ag38,EA070,"Slavery, no info on heritability",EA070-3,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +91937,Ag39,EA070,"Slavery, no info on heritability",EA070-3,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +91938,Ag4,EA070,"Slavery, nonhereditary",EA070-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +91939,Ag40,EA070,"Slavery, no info on heritability",EA070-3,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +91940,Ag41,EA070,?,EA070-NA,,,,,, +91941,Ag42,EA070,"Slavery, no info on heritability",EA070-3,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +91942,Ag43,EA070,?,EA070-NA,,,,,, +91943,Ag44,EA070,"Slavery, no info on heritability",EA070-3,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +91944,Ag45,EA070,"Slavery, hereditary",EA070-4,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +91945,Ag46,EA070,"Slavery, no info on heritability",EA070-3,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +91946,Ag47,EA070,"Slavery, hereditary",EA070-4,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +91947,Ag48,EA070,"Slavery, hereditary",EA070-4,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +91948,Ag49,EA070,"Slavery, no info on heritability",EA070-3,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +91949,Ag5,EA070,"Slavery, nonhereditary",EA070-2,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +91950,Ag50,EA070,"Slavery, no info on heritability",EA070-3,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +91951,Ag51,EA070,"Slavery, no info on heritability",EA070-3,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +91952,Ag52,EA070,?,EA070-NA,,,,,, +91953,Ag53,EA070,"Slavery, hereditary",EA070-4,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +91954,Ag54,EA070,"Slavery, hereditary",EA070-4,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +91955,Ag6,EA070,"Slavery, no info on heritability",EA070-3,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +91956,Ag7,EA070,"Slavery, no info on heritability",EA070-3,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +91957,Ag8,EA070,Absence of slavery,EA070-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +91958,Ag9,EA070,"Slavery, hereditary",EA070-4,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +91959,Ah1,EA070,"Slavery, no info on heritability",EA070-3,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +91960,Ah10,EA070,"Slavery, no info on heritability",EA070-3,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +91961,Ah11,EA070,"Slavery, no info on heritability",EA070-3,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +91962,Ah12,EA070,?,EA070-NA,,,,,, +91963,Ah13,EA070,"Slavery, no info on heritability",EA070-3,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +91964,Ah14,EA070,"Slavery, no info on heritability",EA070-3,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +91965,Ah15,EA070,?,EA070-NA,,,,,, +91966,Ah16,EA070,"Slavery, no info on heritability",EA070-3,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +91967,Ah17,EA070,?,EA070-NA,,,,,, +91968,Ah18,EA070,"Slavery, no info on heritability",EA070-3,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +91969,Ah19,EA070,"Slavery, no info on heritability",EA070-3,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +91970,Ah2,EA070,"Slavery, nonhereditary",EA070-2,,meek1931a,,1920,EthnographicAtlas_1967_p77, +91971,Ah20,EA070,"Slavery, no info on heritability",EA070-3,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +91972,Ah21,EA070,"Slavery, no info on heritability",EA070-3,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +91973,Ah22,EA070,"Slavery, no info on heritability",EA070-3,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +91974,Ah23,EA070,?,EA070-NA,,,,,, +91975,Ah24,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +91976,Ah25,EA070,"Slavery, no info on heritability",EA070-3,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +91977,Ah26,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +91978,Ah27,EA070,?,EA070-NA,,,,,, +91979,Ah28,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +91980,Ah29,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +91981,Ah3,EA070,"Slavery, hereditary",EA070-4,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +91982,Ah30,EA070,?,EA070-NA,,,,,, +91983,Ah31,EA070,"Slavery, no info on heritability",EA070-3,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +91984,Ah32,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +91985,Ah33,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +91986,Ah34,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +91987,Ah35,EA070,"Slavery, no info on heritability",EA070-3,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +91988,Ah36,EA070,Absence of slavery,EA070-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +91989,Ah37,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +91990,Ah38,EA070,"Slavery, no info on heritability",EA070-3,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +91991,Ah39,EA070,Absence of slavery,EA070-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +91992,Ah4,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +91993,Ah5,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +91994,Ah6,EA070,"Slavery, no info on heritability",EA070-3,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +91995,Ah7,EA070,Absence of slavery,EA070-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +91996,Ah8,EA070,"Slavery, hereditary",EA070-4,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +91997,Ah9,EA070,"Slavery, no info on heritability",EA070-3,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +91998,Ai1,EA070,"Slavery, nonhereditary",EA070-2,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +91999,Ai10,EA070,"Slavery, nonhereditary",EA070-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +92000,Ai11,EA070,"Slavery, nonhereditary",EA070-2,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +92001,Ai12,EA070,"Slavery, no info on heritability",EA070-3,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +92002,Ai13,EA070,"Slavery, no info on heritability",EA070-3,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +92003,Ai14,EA070,?,EA070-NA,,,,,, +92004,Ai15,EA070,"Slavery, no info on heritability",EA070-3,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +92005,Ai16,EA070,?,EA070-NA,,,,,, +92006,Ai17,EA070,?,EA070-NA,,,,,, +92007,Ai18,EA070,"Slavery, no info on heritability",EA070-3,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +92008,Ai19,EA070,?,EA070-NA,,,,,, +92009,Ai2,EA070,"Slavery, nonhereditary",EA070-2,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +92010,Ai20,EA070,?,EA070-NA,,,,,, +92011,Ai21,EA070,"Slavery, hereditary",EA070-4,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +92012,Ai22,EA070,"Slavery, no info on heritability",EA070-3,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +92013,Ai23,EA070,"Slavery, no info on heritability",EA070-3,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +92014,Ai24,EA070,Absence of slavery,EA070-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +92015,Ai25,EA070,"Slavery, no info on heritability",EA070-3,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +92016,Ai26,EA070,"Slavery, hereditary",EA070-4,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +92017,Ai27,EA070,"Slavery, no info on heritability",EA070-3,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +92018,Ai28,EA070,"Slavery, no info on heritability",EA070-3,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +92019,Ai29,EA070,?,EA070-NA,,,,,, +92020,Ai3,EA070,"Slavery, nonhereditary",EA070-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +92021,Ai30,EA070,?,EA070-NA,,,,,, +92022,Ai31,EA070,Absence of slavery,EA070-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +92023,Ai32,EA070,"Slavery, nonhereditary",EA070-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +92024,Ai33,EA070,?,EA070-NA,,,,,, +92025,Ai34,EA070,?,EA070-NA,,,,,, +92026,Ai35,EA070,Absence of slavery,EA070-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +92027,Ai36,EA070,"Slavery, no info on heritability",EA070-3,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +92028,Ai37,EA070,"Slavery, no info on heritability",EA070-3,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +92029,Ai38,EA070,?,EA070-NA,,,,,, +92030,Ai39,EA070,"Slavery, no info on heritability",EA070-3,,nadel1947,,1940,EthnographicAtlas_1967_p77, +92031,Ai4,EA070,?,EA070-NA,,,,,, +92032,Ai40,EA070,"Slavery, no info on heritability",EA070-3,,nadel1947,,1940,EthnographicAtlas_1967_p77, +92033,Ai41,EA070,"Slavery, no info on heritability",EA070-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +92034,Ai42,EA070,"Slavery, no info on heritability",EA070-3,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +92035,Ai43,EA070,"Slavery, hereditary",EA070-4,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +92036,Ai44,EA070,?,EA070-NA,,,,,, +92037,Ai45,EA070,?,EA070-NA,,,,,, +92038,Ai46,EA070,"Slavery, no info on heritability",EA070-3,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +92039,Ai47,EA070,?,EA070-NA,,,,,, +92040,Ai5,EA070,"Slavery, no info on heritability",EA070-3,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +92041,Ai6,EA070,"Slavery, hereditary",EA070-4,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +92042,Ai7,EA070,"Slavery, hereditary",EA070-4,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +92043,Ai8,EA070,"Slavery, hereditary",EA070-4,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +92044,Ai9,EA070,?,EA070-NA,,,,,, +92045,Aj1,EA070,"Slavery, nonhereditary",EA070-2,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +92046,Aj10,EA070,Absence of slavery,EA070-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +92047,Aj11,EA070,"Slavery, no info on heritability",EA070-3,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +92048,Aj12,EA070,Absence of slavery,EA070-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +92049,Aj13,EA070,?,EA070-NA,,,,,, +92050,Aj14,EA070,?,EA070-NA,,,,,, +92051,Aj15,EA070,"Slavery, nonhereditary",EA070-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +92052,Aj16,EA070,Absence of slavery,EA070-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +92053,Aj17,EA070,"Slavery, no info on heritability",EA070-3,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +92054,Aj18,EA070,?,EA070-NA,,,,,, +92055,Aj19,EA070,"Slavery, no info on heritability",EA070-3,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +92056,Aj2,EA070,Absence of slavery,EA070-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +92057,Aj20,EA070,"Slavery, no info on heritability",EA070-3,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +92058,Aj21,EA070,Absence of slavery,EA070-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +92059,Aj22,EA070,?,EA070-NA,,,,,, +92060,Aj23,EA070,Absence of slavery,EA070-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +92061,Aj24,EA070,?,EA070-NA,,,,,, +92062,Aj25,EA070,Absence of slavery,EA070-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +92063,Aj26,EA070,Absence of slavery,EA070-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +92064,Aj27,EA070,Absence of slavery,EA070-1,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +92065,Aj28,EA070,Absence of slavery,EA070-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +92066,Aj29,EA070,Absence of slavery,EA070-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +92067,Aj3,EA070,Absence of slavery,EA070-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +92068,Aj30,EA070,?,EA070-NA,,,,,, +92069,Aj31,EA070,?,EA070-NA,,,,,, +92070,Aj4,EA070,"Slavery, nonhereditary",EA070-2,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +92071,Aj5,EA070,Absence of slavery,EA070-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +92072,Aj6,EA070,Absence of slavery,EA070-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +92073,Aj7,EA070,Absence of slavery,EA070-1,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +92074,Aj8,EA070,Absence of slavery,EA070-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +92075,Aj9,EA070,Absence of slavery,EA070-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +92076,Ca1,EA070,Absence of slavery,EA070-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +92077,Ca10,EA070,"Slavery, hereditary",EA070-4,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +92078,Ca11,EA070,"Slavery, no info on heritability",EA070-3,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +92079,Ca12,EA070,"Slavery, hereditary",EA070-4,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +92080,Ca13,EA070,"Slavery, hereditary",EA070-4,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +92081,Ca14,EA070,"Slavery, nonhereditary",EA070-2,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +92082,Ca15,EA070,?,EA070-NA,,,,,, +92083,Ca16,EA070,?,EA070-NA,,,,,, +92084,Ca17,EA070,?,EA070-NA,,,,,, +92085,Ca18,EA070,?,EA070-NA,,,,,, +92086,Ca19,EA070,?,EA070-NA,,,,,, +92087,Ca2,EA070,"Slavery, hereditary",EA070-4,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +92088,Ca20,EA070,?,EA070-NA,,,,,, +92089,Ca21,EA070,?,EA070-NA,,,,,, +92090,Ca22,EA070,?,EA070-NA,,,,,, +92091,Ca23,EA070,?,EA070-NA,,,,,, +92092,Ca24,EA070,"Slavery, no info on heritability",EA070-3,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +92093,Ca25,EA070,?,EA070-NA,,,,,, +92094,Ca26,EA070,?,EA070-NA,,,,,, +92095,Ca27,EA070,?,EA070-NA,,,,,, +92096,Ca28,EA070,?,EA070-NA,,,,,, +92097,Ca29,EA070,"Slavery, hereditary",EA070-4,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +92098,Ca3,EA070,"Slavery, hereditary",EA070-4,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +92099,Ca30,EA070,"Slavery, hereditary",EA070-4,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +92100,Ca31,EA070,Absence of slavery,EA070-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +92101,Ca32,EA070,"Slavery, nonhereditary",EA070-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +92102,Ca33,EA070,"Slavery, nonhereditary",EA070-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +92103,Ca34,EA070,?,EA070-NA,,,,,, +92104,Ca35,EA070,?,EA070-NA,,,,,, +92105,Ca36,EA070,"Slavery, hereditary",EA070-4,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +92106,Ca37,EA070,"Slavery, hereditary",EA070-4,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +92107,Ca38,EA070,"Slavery, hereditary",EA070-4,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +92108,Ca39,EA070,"Slavery, hereditary",EA070-4,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +92109,Ca4,EA070,?,EA070-NA,,,,,, +92110,Ca40,EA070,"Slavery, hereditary",EA070-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +92111,Ca41,EA070,"Slavery, hereditary",EA070-4,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +92112,Ca42,EA070,"Slavery, hereditary",EA070-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +92113,Ca43,EA070,?,EA070-NA,,,,,, +92114,Ca5,EA070,Absence of slavery,EA070-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +92115,Ca6,EA070,"Slavery, hereditary",EA070-4,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +92116,Ca7,EA070,"Slavery, hereditary",EA070-4,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +92117,Ca8,EA070,?,EA070-NA,,,,,, +92118,Ca9,EA070,Absence of slavery,EA070-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +92119,Cb1,EA070,"Slavery, nonhereditary",EA070-2,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +92120,Cb10,EA070,"Slavery, no info on heritability",EA070-3,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +92121,Cb11,EA070,?,EA070-NA,,,,,, +92122,Cb12,EA070,"Slavery, no info on heritability",EA070-3,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +92123,Cb13,EA070,"Slavery, no info on heritability",EA070-3,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +92124,Cb14,EA070,"Slavery, no info on heritability",EA070-3,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +92125,Cb15,EA070,"Slavery, hereditary",EA070-4,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +92126,Cb16,EA070,"Slavery, no info on heritability",EA070-3,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +92127,Cb17,EA070,"Slavery, no info on heritability",EA070-3,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +92128,Cb18,EA070,"Slavery, hereditary",EA070-4,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +92129,Cb19,EA070,"Slavery, hereditary",EA070-4,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +92130,Cb2,EA070,"Slavery, hereditary",EA070-4,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +92131,Cb20,EA070,"Slavery, no info on heritability",EA070-3,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +92132,Cb21,EA070,"Slavery, no info on heritability",EA070-3,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +92133,Cb22,EA070,"Slavery, no info on heritability",EA070-3,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +92134,Cb23,EA070,"Slavery, hereditary",EA070-4,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +92135,Cb24,EA070,?,EA070-NA,,,,,, +92136,Cb25,EA070,"Slavery, no info on heritability",EA070-3,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +92137,Cb26,EA070,"Slavery, no info on heritability",EA070-3,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +92138,Cb27,EA070,"Slavery, no info on heritability",EA070-3,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +92139,Cb28,EA070,?,EA070-NA,,,,,, +92140,Cb29,EA070,?,EA070-NA,,,,,, +92141,Cb3,EA070,"Slavery, hereditary",EA070-4,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +92142,Cb4,EA070,"Slavery, no info on heritability",EA070-3,,reid1930,,1920,EthnographicAtlas_1967_p81, +92143,Cb5,EA070,"Slavery, no info on heritability",EA070-3,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +92144,Cb6,EA070,"Slavery, no info on heritability",EA070-3,,woodnd,,1920,EthnographicAtlas_1967_p81, +92145,Cb7,EA070,"Slavery, hereditary",EA070-4,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +92146,Cb8,EA070,"Slavery, no info on heritability",EA070-3,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +92147,Cb9,EA070,"Slavery, hereditary",EA070-4,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +92148,Cc1,EA070,"Slavery, hereditary",EA070-4,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +92149,Cc10,EA070,"Slavery, hereditary",EA070-4,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +92150,Cc11,EA070,"Slavery, hereditary",EA070-4,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +92151,Cc12,EA070,"Slavery, hereditary",EA070-4,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +92152,Cc13,EA070,?,EA070-NA,,,,,, +92153,Cc14,EA070,"Slavery, hereditary",EA070-4,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +92154,Cc15,EA070,"Slavery, hereditary",EA070-4,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +92155,Cc16,EA070,"Slavery, hereditary",EA070-4,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +92156,Cc17,EA070,"Slavery, hereditary",EA070-4,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +92157,Cc18,EA070,"Slavery, hereditary",EA070-4,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +92158,Cc19,EA070,"Slavery, hereditary",EA070-4,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +92159,Cc2,EA070,"Slavery, nonhereditary",EA070-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +92160,Cc20,EA070,"Slavery, hereditary",EA070-4,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +92161,Cc3,EA070,"Slavery, hereditary",EA070-4,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +92162,Cc4,EA070,"Slavery, no info on heritability",EA070-3,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +92163,Cc5,EA070,"Slavery, hereditary",EA070-4,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +92164,Cc6,EA070,"Slavery, hereditary",EA070-4,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +92165,Cc7,EA070,"Slavery, hereditary",EA070-4,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92166,Cc8,EA070,"Slavery, hereditary",EA070-4,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +92167,Cc9,EA070,"Slavery, hereditary",EA070-4,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +92168,Cd1,EA070,"Slavery, hereditary",EA070-4,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +92169,Cd10,EA070,Absence of slavery,EA070-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +92170,Cd11,EA070,Absence of slavery,EA070-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +92171,Cd12,EA070,"Slavery, hereditary",EA070-4,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +92172,Cd13,EA070,?,EA070-NA,,,,,, +92173,Cd14,EA070,"Slavery, hereditary",EA070-4,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +92174,Cd15,EA070,"Slavery, hereditary",EA070-4,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +92175,Cd16,EA070,"Slavery, hereditary",EA070-4,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +92176,Cd17,EA070,?,EA070-NA,,,,,, +92177,Cd18,EA070,"Slavery, hereditary",EA070-4,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +92178,Cd19,EA070,"Slavery, hereditary",EA070-4,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +92179,Cd2,EA070,"Slavery, no info on heritability",EA070-3,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +92180,Cd20,EA070,?,EA070-NA,,,,,, +92181,Cd21,EA070,?,EA070-NA,,,,,, +92182,Cd3,EA070,Absence of slavery,EA070-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +92183,Cd4,EA070,"Slavery, nonhereditary",EA070-2,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +92184,Cd5,EA070,Absence of slavery,EA070-1,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +92185,Cd6,EA070,"Slavery, hereditary",EA070-4,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +92186,Cd7,EA070,"Slavery, no info on heritability",EA070-3,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +92187,Cd8,EA070,?,EA070-NA,,,,,, +92188,Cd9,EA070,"Slavery, hereditary",EA070-4,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +92189,Ce1,EA070,Absence of slavery,EA070-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +92190,Ce2,EA070,Absence of slavery,EA070-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +92191,Ce3,EA070,"Slavery, hereditary",EA070-4,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +92192,Ce4,EA070,Absence of slavery,EA070-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92193,Ce5,EA070,Absence of slavery,EA070-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +92194,Ce6,EA070,Absence of slavery,EA070-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +92195,Ce7,EA070,Absence of slavery,EA070-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +92196,Ce8,EA070,Absence of slavery,EA070-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +92197,Cf1,EA070,Absence of slavery,EA070-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +92198,Cf2,EA070,"Slavery, nonhereditary",EA070-2,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +92199,Cf3,EA070,Absence of slavery,EA070-1,,munch1945,,1930,EthnographicAtlas_1967_p85, +92200,Cf4,EA070,"Slavery, hereditary",EA070-4,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +92201,Cf5,EA070,Absence of slavery,EA070-1,,miner1939,,1930,EthnographicAtlas_1967_p85, +92202,Cg1,EA070,Absence of slavery,EA070-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +92203,Cg2,EA070,"Slavery, hereditary",EA070-4,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +92204,Cg3,EA070,Absence of slavery,EA070-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +92205,Cg4,EA070,Absence of slavery,EA070-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +92206,Cg5,EA070,Absence of slavery,EA070-1,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +92207,Ch1,EA070,Absence of slavery,EA070-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +92208,Ch10,EA070,?,EA070-NA,,,,,, +92209,Ch11,EA070,Absence of slavery,EA070-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +92210,Ch2,EA070,Absence of slavery,EA070-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +92211,Ch3,EA070,Absence of slavery,EA070-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +92212,Ch4,EA070,Absence of slavery,EA070-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +92213,Ch5,EA070,Absence of slavery,EA070-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +92214,Ch6,EA070,Absence of slavery,EA070-1,,ember1954,,1910,EthnographicAtlas_1967_p85, +92215,Ch7,EA070,Absence of slavery,EA070-1,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +92216,Ch8,EA070,Absence of slavery,EA070-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p85, +92217,Ch9,EA070,Absence of slavery,EA070-1,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +92218,Ci1,EA070,?,EA070-NA,,,,,, +92219,Ci10,EA070,Absence of slavery,EA070-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +92220,Ci11,EA070,Absence of slavery,EA070-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +92221,Ci12,EA070,"Slavery, hereditary",EA070-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +92222,Ci2,EA070,Absence of slavery,EA070-1,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +92223,Ci3,EA070,?,EA070-NA,,,,,, +92224,Ci4,EA070,"Slavery, no info on heritability",EA070-3,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +92225,Ci5,EA070,Absence of slavery,EA070-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +92226,Ci6,EA070,"Slavery, hereditary",EA070-4,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +92227,Ci7,EA070,?,EA070-NA,,,,,, +92228,Ci8,EA070,"Slavery, hereditary",EA070-4,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +92229,Ci9,EA070,Absence of slavery,EA070-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +92230,Cj1,EA070,Absence of slavery,EA070-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +92231,Cj10,EA070,"Slavery, hereditary",EA070-4,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +92232,Cj2,EA070,"Slavery, hereditary",EA070-4,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +92233,Cj3,EA070,"Slavery, hereditary",EA070-4,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +92234,Cj4,EA070,"Slavery, hereditary",EA070-4,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +92235,Cj5,EA070,"Slavery, hereditary",EA070-4,,dickson1949,,1930,EthnographicAtlas_1967_p89, +92236,Cj6,EA070,Absence of slavery,EA070-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +92237,Cj7,EA070,Absence of slavery,EA070-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +92238,Cj8,EA070,"Slavery, hereditary",EA070-4,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +92239,Cj9,EA070,"Slavery, hereditary",EA070-4,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +92240,Ea1,EA070,?,EA070-NA,,,,,, +92241,Ea10,EA070,"Slavery, hereditary",EA070-4,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +92242,Ea11,EA070,"Slavery, hereditary",EA070-4,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +92243,Ea12,EA070,?,EA070-NA,,,,,, +92244,Ea13,EA070,Absence of slavery,EA070-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +92245,Ea2,EA070,"Slavery, no info on heritability",EA070-3,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +92246,Ea3,EA070,"Slavery, no info on heritability",EA070-3,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +92247,Ea4,EA070,?,EA070-NA,,,,,, +92248,Ea5,EA070,"Slavery, hereditary",EA070-4,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +92249,Ea6,EA070,Absence of slavery,EA070-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +92250,Ea7,EA070,?,EA070-NA,,,,,, +92251,Ea8,EA070,"Slavery, hereditary",EA070-4,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +92252,Ea9,EA070,"Slavery, hereditary",EA070-4,,vreeland1957,,1950,EthnographicAtlas_1967_p89, +92253,Eb1,EA070,"Slavery, hereditary",EA070-4,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +92254,Eb2,EA070,"Slavery, no info on heritability",EA070-3,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +92255,Eb3,EA070,"Slavery, hereditary",EA070-4,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +92256,Eb4,EA070,Absence of slavery,EA070-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +92257,Eb5,EA070,"Slavery, no info on heritability",EA070-3,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +92258,Eb6,EA070,"Slavery, no info on heritability",EA070-3,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +92259,Eb7,EA070,"Slavery, hereditary",EA070-4,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +92260,Eb8,EA070,?,EA070-NA,,,,,, +92261,Ec1,EA070,Absence of slavery,EA070-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +92262,Ec10,EA070,"Slavery, no info on heritability",EA070-3,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +92263,Ec11,EA070,Absence of slavery,EA070-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +92264,Ec2,EA070,"Slavery, no info on heritability",EA070-3,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92265,Ec3,EA070,"Slavery, nonhereditary",EA070-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +92266,Ec4,EA070,Absence of slavery,EA070-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +92267,Ec5,EA070,"Slavery, nonhereditary",EA070-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +92268,Ec6,EA070,"Slavery, nonhereditary",EA070-2,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +92269,Ec7,EA070,Absence of slavery,EA070-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +92270,Ec8,EA070,Absence of slavery,EA070-1,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +92271,Ec9,EA070,"Slavery, no info on heritability",EA070-3,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +92272,Ed1,EA070,"Slavery, hereditary",EA070-4,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +92273,Ed10,EA070,?,EA070-NA,,,,,, +92274,Ed13,EA070,?,EA070-NA,,,,,, +92275,Ed14,EA070,?,EA070-NA,,,,,, +92276,Ed15a,EA070,?,EA070-NA,,,,,, +92277,Ed15b,EA070,Absence of slavery,EA070-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +92278,Ed16,EA070,?,EA070-NA,,,,,, +92279,Ed2,EA070,"Slavery, hereditary",EA070-4,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +92280,Ed3,EA070,"Slavery, nonhereditary",EA070-2,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +92281,Ed4,EA070,Absence of slavery,EA070-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +92282,Ed5,EA070,Absence of slavery,EA070-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92283,Ed6,EA070,"Slavery, nonhereditary",EA070-2,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +92284,Ed7,EA070,Absence of slavery,EA070-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +92285,Ed8,EA070,Absence of slavery,EA070-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +92286,Ed9,EA070,?,EA070-NA,,,,,, +92287,Ee1,EA070,"Slavery, hereditary",EA070-4,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +92288,Ee2,EA070,?,EA070-NA,,,,,, +92289,Ee3,EA070,"Slavery, hereditary",EA070-4,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +92290,Ee4,EA070,"Slavery, no info on heritability",EA070-3,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +92291,Ee5,EA070,"Slavery, hereditary",EA070-4,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +92292,Ee6,EA070,"Slavery, hereditary",EA070-4,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +92293,Ee7,EA070,?,EA070-NA,,,,,, +92294,Ee8,EA070,"Slavery, no info on heritability",EA070-3,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +92295,Ef1,EA070,Absence of slavery,EA070-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +92296,Ef10,EA070,?,EA070-NA,,,,,, +92297,Ef11,EA070,Absence of slavery,EA070-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +92298,Ef2,EA070,Absence of slavery,EA070-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +92299,Ef3,EA070,?,EA070-NA,,,,,, +92300,Ef4,EA070,?,EA070-NA,,,,,, +92301,Ef5,EA070,Absence of slavery,EA070-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +92302,Ef6,EA070,"Slavery, nonhereditary",EA070-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +92303,Ef7,EA070,Absence of slavery,EA070-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +92304,Ef8,EA070,?,EA070-NA,,,,,, +92305,Ef9,EA070,?,EA070-NA,,,,,, +92306,Eg1,EA070,Absence of slavery,EA070-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92307,Eg10,EA070,Absence of slavery,EA070-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +92308,Eg11,EA070,?,EA070-NA,,,,,, +92309,Eg12,EA070,?,EA070-NA,,,,,, +92310,Eg13,EA070,Absence of slavery,EA070-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92311,Eg14,EA070,Absence of slavery,EA070-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +92312,Eg2,EA070,Absence of slavery,EA070-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +92313,Eg3,EA070,Absence of slavery,EA070-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +92314,Eg4,EA070,Absence of slavery,EA070-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +92315,Eg5,EA070,"Slavery, hereditary",EA070-4,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +92316,Eg6,EA070,Absence of slavery,EA070-1,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +92317,Eg7,EA070,Absence of slavery,EA070-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +92318,Eg8,EA070,Absence of slavery,EA070-1,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +92319,Eg9,EA070,Absence of slavery,EA070-1,,elwin1939,,1930,EthnographicAtlas_1967_p93, +92320,Eh1,EA070,Absence of slavery,EA070-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +92321,Eh10,EA070,?,EA070-NA,,,,,, +92322,Eh2,EA070,"Slavery, hereditary",EA070-4,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +92323,Eh3,EA070,"Slavery, hereditary",EA070-4,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +92324,Eh4,EA070,Absence of slavery,EA070-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92325,Eh5,EA070,Absence of slavery,EA070-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +92326,Eh6,EA070,Absence of slavery,EA070-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +92327,Eh7,EA070,"Slavery, hereditary",EA070-4,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +92328,Eh8,EA070,"Slavery, hereditary",EA070-4,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +92329,Eh9,EA070,"Slavery, hereditary",EA070-4,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +92330,Ei1,EA070,"Slavery, no info on heritability",EA070-3,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92331,Ei10,EA070,"Slavery, hereditary",EA070-4,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +92332,Ei11,EA070,Absence of slavery,EA070-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +92333,Ei12,EA070,"Slavery, no info on heritability",EA070-3,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +92334,Ei13,EA070,"Slavery, nonhereditary",EA070-2,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +92335,Ei14,EA070,"Slavery, hereditary",EA070-4,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +92336,Ei15,EA070,?,EA070-NA,,,,,, +92337,Ei16,EA070,Absence of slavery,EA070-1,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +92338,Ei17,EA070,?,EA070-NA,,,,,, +92339,Ei18,EA070,?,EA070-NA,,,,,, +92340,Ei19,EA070,"Slavery, hereditary",EA070-4,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +92341,Ei2,EA070,"Slavery, hereditary",EA070-4,,mills1922,,1920,EthnographicAtlas_1967_p93, +92342,Ei20,EA070,?,EA070-NA,,,,,, +92343,Ei3,EA070,"Slavery, no info on heritability",EA070-3,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +92344,Ei4,EA070,"Slavery, hereditary",EA070-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +92345,Ei5,EA070,"Slavery, no info on heritability",EA070-3,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +92346,Ei6,EA070,?,EA070-NA,,,,,, +92347,Ei7,EA070,"Slavery, nonhereditary",EA070-2,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +92348,Ei8,EA070,"Slavery, hereditary",EA070-4,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +92349,Ei9,EA070,?,EA070-NA,,,,,, +92350,Ej1,EA070,Absence of slavery,EA070-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +92351,Ej10,EA070,Absence of slavery,EA070-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +92352,Ej11,EA070,?,EA070-NA,,,,,, +92353,Ej12,EA070,?,EA070-NA,,,,,, +92354,Ej13,EA070,Absence of slavery,EA070-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +92355,Ej14,EA070,Absence of slavery,EA070-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92356,Ej15,EA070,"Slavery, hereditary",EA070-4,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +92357,Ej16,EA070,Absence of slavery,EA070-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +92358,Ej2,EA070,"Slavery, nonhereditary",EA070-2,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +92359,Ej3,EA070,Absence of slavery,EA070-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +92360,Ej4,EA070,"Slavery, no info on heritability",EA070-3,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +92361,Ej5,EA070,"Slavery, no info on heritability",EA070-3,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +92362,Ej6,EA070,Absence of slavery,EA070-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p93, +92363,Ej7,EA070,Absence of slavery,EA070-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +92364,Ej8,EA070,"Slavery, nonhereditary",EA070-2,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +92365,Ej9,EA070,Absence of slavery,EA070-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +92366,Ia1,EA070,"Slavery, nonhereditary",EA070-2,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +92367,Ia10,EA070,?,EA070-NA,,,,,, +92368,Ia11,EA070,?,EA070-NA,,,,,, +92369,Ia12,EA070,Absence of slavery,EA070-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +92370,Ia13,EA070,Absence of slavery,EA070-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +92371,Ia14,EA070,Absence of slavery,EA070-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +92372,Ia15,EA070,"Slavery, nonhereditary",EA070-2,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +92373,Ia16,EA070,Absence of slavery,EA070-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +92374,Ia17,EA070,?,EA070-NA,,,,,, +92375,Ia18,EA070,?,EA070-NA,,,,,, +92376,Ia2,EA070,Absence of slavery,EA070-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +92377,Ia3,EA070,"Slavery, hereditary",EA070-4,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +92378,Ia4,EA070,Absence of slavery,EA070-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +92379,Ia5,EA070,Absence of slavery,EA070-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +92380,Ia6,EA070,Absence of slavery,EA070-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92381,Ia7,EA070,"Slavery, nonhereditary",EA070-2,,fox1954,,1950,EthnographicAtlas_1967_p93, +92382,Ia8,EA070,Absence of slavery,EA070-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +92383,Ia9,EA070,?,EA070-NA,,,,,, +92384,Ib1,EA070,"Slavery, hereditary",EA070-4,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92385,Ib2,EA070,Absence of slavery,EA070-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92386,Ib3,EA070,Absence of slavery,EA070-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +92387,Ib4,EA070,"Slavery, no info on heritability",EA070-3,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +92388,Ib5,EA070,Absence of slavery,EA070-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +92389,Ib6,EA070,"Slavery, hereditary",EA070-4,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +92390,Ib7,EA070,Absence of slavery,EA070-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +92391,Ib8,EA070,Absence of slavery,EA070-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +92392,Ib9,EA070,?,EA070-NA,,,,,, +92393,Ic1,EA070,"Slavery, hereditary",EA070-4,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92394,Ic10,EA070,"Slavery, hereditary",EA070-4,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +92395,Ic11,EA070,"Slavery, hereditary",EA070-4,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92396,Ic12,EA070,Absence of slavery,EA070-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +92397,Ic13,EA070,?,EA070-NA,,,,,, +92398,Ic2,EA070,"Slavery, nonhereditary",EA070-2,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p97, +92399,Ic3,EA070,"Slavery, hereditary",EA070-4,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +92400,Ic4,EA070,"Slavery, nonhereditary",EA070-2,,kruyt1921;wetering1925,,1920,Ethnology_Vol2_No1_Jan_1963, +92401,Ic5,EA070,"Slavery, no info on heritability",EA070-3,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +92402,Ic6,EA070,"Slavery, nonhereditary",EA070-2,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +92403,Ic7,EA070,"Slavery, hereditary",EA070-4,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +92404,Ic8,EA070,"Slavery, hereditary",EA070-4,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +92405,Ic9,EA070,"Slavery, hereditary",EA070-4,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +92406,Id1,EA070,Absence of slavery,EA070-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +92407,Id10,EA070,Absence of slavery,EA070-1,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +92408,Id11,EA070,Absence of slavery,EA070-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +92409,Id12,EA070,Absence of slavery,EA070-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +92410,Id13,EA070,Absence of slavery,EA070-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +92411,Id2,EA070,Absence of slavery,EA070-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +92412,Id3,EA070,Absence of slavery,EA070-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +92413,Id4,EA070,Absence of slavery,EA070-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p97, +92414,Id5,EA070,Absence of slavery,EA070-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p97, +92415,Id6,EA070,Absence of slavery,EA070-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p97, +92416,Id7,EA070,?,EA070-NA,,,,,, +92417,Id8,EA070,Absence of slavery,EA070-1,,roth1890,,1830,EthnographicAtlas_1967_p97, +92418,Id9,EA070,Absence of slavery,EA070-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p97, +92419,Ie1,EA070,Absence of slavery,EA070-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92420,Ie10,EA070,Absence of slavery,EA070-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +92421,Ie11,EA070,Absence of slavery,EA070-1,,bowers1964,,1950,EthnographicAtlas_1967_p97, +92422,Ie12,EA070,Absence of slavery,EA070-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92423,Ie13,EA070,Absence of slavery,EA070-1,,landtman1927,,1920,EthnographicAtlas_1967_p97, +92424,Ie14,EA070,Absence of slavery,EA070-1,,haddon1908,,1900,EthnographicAtlas_1967_p97, +92425,Ie15,EA070,Absence of slavery,EA070-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92426,Ie16,EA070,Absence of slavery,EA070-1,,williams194041,,1940,EthnographicAtlas_1967_p97, +92427,Ie17,EA070,Absence of slavery,EA070-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +92428,Ie18,EA070,Absence of slavery,EA070-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +92429,Ie19,EA070,Absence of slavery,EA070-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +92430,Ie2,EA070,Absence of slavery,EA070-1,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +92431,Ie20,EA070,Absence of slavery,EA070-1,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +92432,Ie21,EA070,Absence of slavery,EA070-1,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +92433,Ie22,EA070,Absence of slavery,EA070-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +92434,Ie23,EA070,Absence of slavery,EA070-1,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +92435,Ie24,EA070,Absence of slavery,EA070-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +92436,Ie25,EA070,Absence of slavery,EA070-1,,williamson1912,,1920,EthnographicAtlas_1967_p97, +92437,Ie26,EA070,Absence of slavery,EA070-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +92438,Ie27,EA070,Absence of slavery,EA070-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +92439,Ie28,EA070,Absence of slavery,EA070-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +92440,Ie29,EA070,Absence of slavery,EA070-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92441,Ie3,EA070,Absence of slavery,EA070-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92442,Ie30,EA070,Absence of slavery,EA070-1,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +92443,Ie31,EA070,Absence of slavery,EA070-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +92444,Ie32,EA070,Absence of slavery,EA070-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +92445,Ie33,EA070,Absence of slavery,EA070-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +92446,Ie34,EA070,?,EA070-NA,,,,,, +92447,Ie35,EA070,Absence of slavery,EA070-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +92448,Ie36,EA070,?,EA070-NA,,,,,, +92449,Ie37,EA070,?,EA070-NA,,,,,, +92450,Ie38,EA070,Absence of slavery,EA070-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +92451,Ie39,EA070,Absence of slavery,EA070-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +92452,Ie4,EA070,Absence of slavery,EA070-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92453,Ie5,EA070,Absence of slavery,EA070-1,,williams1936,,1930,EthnographicAtlas_1967_p97, +92454,Ie6,EA070,"Slavery, nonhereditary",EA070-2,,held1947,,1930,EthnographicAtlas_1967_p97, +92455,Ie7,EA070,Absence of slavery,EA070-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +92456,Ie8,EA070,Absence of slavery,EA070-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +92457,Ie9,EA070,Absence of slavery,EA070-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +92458,If1,EA070,Absence of slavery,EA070-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92459,If10,EA070,?,EA070-NA,,,,,, +92460,If11,EA070,Absence of slavery,EA070-1,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +92461,If12,EA070,Absence of slavery,EA070-1,,mason1954,,1940,EthnographicAtlas_1967_p101, +92462,If13,EA070,Absence of slavery,EA070-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p101, +92463,If14,EA070,Absence of slavery,EA070-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +92464,If15,EA070,Absence of slavery,EA070-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +92465,If16,EA070,Absence of slavery,EA070-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +92466,If17,EA070,Absence of slavery,EA070-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +92467,If2,EA070,Absence of slavery,EA070-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +92468,If3,EA070,Absence of slavery,EA070-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +92469,If4,EA070,Absence of slavery,EA070-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +92470,If5,EA070,Absence of slavery,EA070-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +92471,If6,EA070,Absence of slavery,EA070-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +92472,If7,EA070,"Slavery, nonhereditary",EA070-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +92473,If8,EA070,Absence of slavery,EA070-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +92474,If9,EA070,Absence of slavery,EA070-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +92475,Ig1,EA070,Absence of slavery,EA070-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +92476,Ig10,EA070,Absence of slavery,EA070-1,,schwartz1964,,1950,EthnographicAtlas_1967_p101, +92477,Ig11,EA070,Absence of slavery,EA070-1,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +92478,Ig12,EA070,"Slavery, nonhereditary",EA070-2,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +92479,Ig13,EA070,"Slavery, nonhereditary",EA070-2,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +92480,Ig14,EA070,Absence of slavery,EA070-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +92481,Ig15,EA070,?,EA070-NA,,,,,, +92482,Ig16,EA070,?,EA070-NA,,,,,, +92483,Ig17,EA070,?,EA070-NA,,,,,, +92484,Ig18,EA070,?,EA070-NA,,,,,, +92485,Ig19,EA070,?,EA070-NA,,,,,, +92486,Ig2,EA070,Absence of slavery,EA070-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +92487,Ig20,EA070,?,EA070-NA,,,,,, +92488,Ig21,EA070,Absence of slavery,EA070-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +92489,Ig3,EA070,Absence of slavery,EA070-1,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +92490,Ig4,EA070,Absence of slavery,EA070-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +92491,Ig5,EA070,Absence of slavery,EA070-1,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +92492,Ig6,EA070,Absence of slavery,EA070-1,,ivens1927,,1900,EthnographicAtlas_1967_p101, +92493,Ig7,EA070,Absence of slavery,EA070-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +92494,Ig8,EA070,?,EA070-NA,,,,,, +92495,Ig9,EA070,Absence of slavery,EA070-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +92496,Ih1,EA070,Absence of slavery,EA070-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +92497,Ih10,EA070,Absence of slavery,EA070-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92498,Ih11,EA070,?,EA070-NA,,,,,, +92499,Ih12,EA070,?,EA070-NA,,,,,, +92500,Ih13,EA070,?,EA070-NA,,,,,, +92501,Ih14,EA070,Absence of slavery,EA070-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +92502,Ih2,EA070,Absence of slavery,EA070-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92503,Ih3,EA070,Absence of slavery,EA070-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +92504,Ih4,EA070,Absence of slavery,EA070-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92505,Ih5,EA070,Absence of slavery,EA070-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +92506,Ih6,EA070,Absence of slavery,EA070-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p101, +92507,Ih7,EA070,"Slavery, no info on heritability",EA070-3,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +92508,Ih8,EA070,Absence of slavery,EA070-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +92509,Ih9,EA070,"Slavery, nonhereditary",EA070-2,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92510,Ii1,EA070,Absence of slavery,EA070-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +92511,Ii10,EA070,Absence of slavery,EA070-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +92512,Ii12,EA070,Absence of slavery,EA070-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92513,Ii13,EA070,Absence of slavery,EA070-1,,burrows1937,,1830,EthnographicAtlas_1967_p101, +92514,Ii14,EA070,Absence of slavery,EA070-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +92515,Ii2,EA070,Absence of slavery,EA070-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +92516,Ii3,EA070,Absence of slavery,EA070-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +92517,Ii4,EA070,Absence of slavery,EA070-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +92518,Ii5,EA070,Absence of slavery,EA070-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +92519,Ii6,EA070,Absence of slavery,EA070-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +92520,Ii7,EA070,Absence of slavery,EA070-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +92521,Ii8,EA070,Absence of slavery,EA070-1,,burrows1936,,1840,EthnographicAtlas_1967_p101, +92522,Ii9,EA070,Absence of slavery,EA070-1,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +92523,Ij1,EA070,Absence of slavery,EA070-1,,buck1934,,1820,EthnographicAtlas_1967_p101, +92524,Ij10,EA070,Absence of slavery,EA070-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +92525,Ij2,EA070,"Slavery, nonhereditary",EA070-2,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +92526,Ij3,EA070,Absence of slavery,EA070-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +92527,Ij4,EA070,Absence of slavery,EA070-1,,buck1932a,,1850,EthnographicAtlas_1967_p105, +92528,Ij5,EA070,Absence of slavery,EA070-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +92529,Ij6,EA070,"Slavery, hereditary",EA070-4,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +92530,Ij7,EA070,Absence of slavery,EA070-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +92531,Ij8,EA070,Absence of slavery,EA070-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +92532,Ij9,EA070,"Slavery, nonhereditary",EA070-2,,metraux1940,,1860,EthnographicAtlas_1967_p105, +92533,Na1,EA070,Absence of slavery,EA070-1,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +92534,Na10,EA070,"Slavery, no info on heritability",EA070-3,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +92535,Na11,EA070,Absence of slavery,EA070-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +92536,Na12,EA070,Absence of slavery,EA070-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +92537,Na13,EA070,Absence of slavery,EA070-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +92538,Na14,EA070,Absence of slavery,EA070-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +92539,Na15,EA070,Absence of slavery,EA070-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +92540,Na16,EA070,Absence of slavery,EA070-1,,osgood1931,,1860,EthnographicAtlas_1967_p105, +92541,Na17,EA070,Absence of slavery,EA070-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92542,Na19,EA070,"Slavery, hereditary",EA070-4,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +92543,Na2,EA070,Absence of slavery,EA070-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +92544,Na20,EA070,"Slavery, nonhereditary",EA070-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +92545,Na21,EA070,Absence of slavery,EA070-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +92546,Na22,EA070,Absence of slavery,EA070-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +92547,Na23,EA070,Absence of slavery,EA070-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +92548,Na24,EA070,Absence of slavery,EA070-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +92549,Na25,EA070,Absence of slavery,EA070-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +92550,Na26,EA070,Absence of slavery,EA070-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +92551,Na27,EA070,"Slavery, hereditary",EA070-4,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +92552,Na28,EA070,Absence of slavery,EA070-1,,jenness1937,,1880,EthnographicAtlas_1967_p105, +92553,Na29,EA070,Absence of slavery,EA070-1,,goddard1916,,1850,EthnographicAtlas_1967_p105, +92554,Na3,EA070,Absence of slavery,EA070-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +92555,Na30,EA070,Absence of slavery,EA070-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +92556,Na31,EA070,Absence of slavery,EA070-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +92557,Na32,EA070,Absence of slavery,EA070-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +92558,Na33,EA070,Absence of slavery,EA070-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +92559,Na34,EA070,Absence of slavery,EA070-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +92560,Na35,EA070,Absence of slavery,EA070-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +92561,Na36,EA070,Absence of slavery,EA070-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +92562,Na37,EA070,Absence of slavery,EA070-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +92563,Na38,EA070,Absence of slavery,EA070-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +92564,Na39,EA070,Absence of slavery,EA070-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +92565,Na4,EA070,Absence of slavery,EA070-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +92566,Na40,EA070,Absence of slavery,EA070-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +92567,Na41,EA070,Absence of slavery,EA070-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +92568,Na42,EA070,?,EA070-NA,,,,,, +92569,Na43,EA070,Absence of slavery,EA070-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +92570,Na44,EA070,Absence of slavery,EA070-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +92571,Na45,EA070,Absence of slavery,EA070-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +92572,Na5,EA070,Absence of slavery,EA070-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +92573,Na6,EA070,Absence of slavery,EA070-1,,lantis1946,,1930,EthnographicAtlas_1967_p105, +92574,Na7,EA070,Absence of slavery,EA070-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +92575,Na8,EA070,Absence of slavery,EA070-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +92576,Na9,EA070,"Slavery, hereditary",EA070-4,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92577,Nb1,EA070,"Slavery, hereditary",EA070-4,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +92578,Nb10,EA070,"Slavery, hereditary",EA070-4,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +92579,Nb11,EA070,"Slavery, hereditary",EA070-4,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +92580,Nb12,EA070,"Slavery, hereditary",EA070-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +92581,Nb13,EA070,"Slavery, hereditary",EA070-4,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +92582,Nb14,EA070,"Slavery, hereditary",EA070-4,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +92583,Nb15,EA070,"Slavery, hereditary",EA070-4,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +92584,Nb16,EA070,"Slavery, hereditary",EA070-4,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +92585,Nb17,EA070,"Slavery, nonhereditary",EA070-2,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +92586,Nb18,EA070,"Slavery, hereditary",EA070-4,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +92587,Nb19,EA070,"Slavery, hereditary",EA070-4,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +92588,Nb2,EA070,"Slavery, hereditary",EA070-4,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +92589,Nb20,EA070,"Slavery, hereditary",EA070-4,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +92590,Nb21,EA070,"Slavery, no info on heritability",EA070-3,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +92591,Nb22,EA070,"Slavery, hereditary",EA070-4,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +92592,Nb23,EA070,"Slavery, hereditary",EA070-4,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +92593,Nb24,EA070,"Slavery, hereditary",EA070-4,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +92594,Nb25,EA070,"Slavery, hereditary",EA070-4,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +92595,Nb26,EA070,"Slavery, hereditary",EA070-4,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +92596,Nb27,EA070,"Slavery, hereditary",EA070-4,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +92597,Nb28,EA070,"Slavery, hereditary",EA070-4,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +92598,Nb29,EA070,"Slavery, hereditary",EA070-4,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +92599,Nb3,EA070,"Slavery, hereditary",EA070-4,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +92600,Nb30,EA070,"Slavery, no info on heritability",EA070-3,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +92601,Nb31,EA070,"Slavery, nonhereditary",EA070-2,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +92602,Nb32,EA070,"Slavery, nonhereditary",EA070-2,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +92603,Nb33,EA070,Absence of slavery,EA070-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +92604,Nb34,EA070,"Slavery, nonhereditary",EA070-2,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +92605,Nb35,EA070,"Slavery, nonhereditary",EA070-2,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +92606,Nb36,EA070,"Slavery, nonhereditary",EA070-2,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +92607,Nb37,EA070,?,EA070-NA,,,,,, +92608,Nb38,EA070,?,EA070-NA,,,,,, +92609,Nb39,EA070,Absence of slavery,EA070-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +92610,Nb4,EA070,"Slavery, nonhereditary",EA070-2,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +92611,Nb5,EA070,"Slavery, nonhereditary",EA070-2,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +92612,Nb6,EA070,"Slavery, nonhereditary",EA070-2,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +92613,Nb7,EA070,"Slavery, hereditary",EA070-4,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +92614,Nb8,EA070,"Slavery, hereditary",EA070-4,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +92615,Nb9,EA070,"Slavery, hereditary",EA070-4,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +92616,Nc1,EA070,Absence of slavery,EA070-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +92617,Nc10,EA070,Absence of slavery,EA070-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +92618,Nc11,EA070,Absence of slavery,EA070-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +92619,Nc12,EA070,Absence of slavery,EA070-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +92620,Nc13,EA070,Absence of slavery,EA070-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +92621,Nc14,EA070,Absence of slavery,EA070-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +92622,Nc15,EA070,Absence of slavery,EA070-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +92623,Nc16,EA070,Absence of slavery,EA070-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +92624,Nc17,EA070,Absence of slavery,EA070-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +92625,Nc18,EA070,Absence of slavery,EA070-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +92626,Nc19,EA070,Absence of slavery,EA070-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +92627,Nc2,EA070,Absence of slavery,EA070-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +92628,Nc20,EA070,"Slavery, nonhereditary",EA070-2,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +92629,Nc21,EA070,Absence of slavery,EA070-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +92630,Nc22,EA070,Absence of slavery,EA070-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +92631,Nc23,EA070,Absence of slavery,EA070-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +92632,Nc24,EA070,Absence of slavery,EA070-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +92633,Nc25,EA070,Absence of slavery,EA070-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +92634,Nc26,EA070,Absence of slavery,EA070-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +92635,Nc27,EA070,Absence of slavery,EA070-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +92636,Nc28,EA070,Absence of slavery,EA070-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +92637,Nc29,EA070,Absence of slavery,EA070-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +92638,Nc3,EA070,Absence of slavery,EA070-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +92639,Nc30,EA070,Absence of slavery,EA070-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +92640,Nc31,EA070,Absence of slavery,EA070-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +92641,Nc32,EA070,Absence of slavery,EA070-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +92642,Nc33,EA070,Absence of slavery,EA070-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +92643,Nc34,EA070,Absence of slavery,EA070-1,,meigs1939,,1880,EthnographicAtlas_1967_p109, +92644,Nc4,EA070,Absence of slavery,EA070-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +92645,Nc5,EA070,Absence of slavery,EA070-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +92646,Nc6,EA070,Absence of slavery,EA070-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +92647,Nc7,EA070,Absence of slavery,EA070-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +92648,Nc8,EA070,"Slavery, nonhereditary",EA070-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +92649,Nc9,EA070,"Slavery, nonhereditary",EA070-2,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +92650,Nd1,EA070,"Slavery, nonhereditary",EA070-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +92651,Nd10,EA070,"Slavery, hereditary",EA070-4,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +92652,Nd11,EA070,"Slavery, nonhereditary",EA070-2,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +92653,Nd12,EA070,"Slavery, nonhereditary",EA070-2,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +92654,Nd13,EA070,Absence of slavery,EA070-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +92655,Nd14,EA070,"Slavery, nonhereditary",EA070-2,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +92656,Nd15,EA070,Absence of slavery,EA070-1,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +92657,Nd16,EA070,"Slavery, nonhereditary",EA070-2,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +92658,Nd17,EA070,"Slavery, nonhereditary",EA070-2,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +92659,Nd18,EA070,"Slavery, hereditary",EA070-4,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +92660,Nd19,EA070,"Slavery, nonhereditary",EA070-2,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +92661,Nd2,EA070,Absence of slavery,EA070-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +92662,Nd20,EA070,"Slavery, nonhereditary",EA070-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +92663,Nd21,EA070,Absence of slavery,EA070-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +92664,Nd22,EA070,Absence of slavery,EA070-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +92665,Nd23,EA070,Absence of slavery,EA070-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +92666,Nd24,EA070,Absence of slavery,EA070-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +92667,Nd25,EA070,Absence of slavery,EA070-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +92668,Nd26,EA070,Absence of slavery,EA070-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +92669,Nd27,EA070,Absence of slavery,EA070-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +92670,Nd28,EA070,Absence of slavery,EA070-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +92671,Nd29,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +92672,Nd3,EA070,Absence of slavery,EA070-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +92673,Nd30,EA070,Absence of slavery,EA070-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +92674,Nd31,EA070,Absence of slavery,EA070-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +92675,Nd32,EA070,Absence of slavery,EA070-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +92676,Nd33,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +92677,Nd34,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +92678,Nd35,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +92679,Nd36,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +92680,Nd37,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +92681,Nd38,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +92682,Nd39,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +92683,Nd4,EA070,Absence of slavery,EA070-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +92684,Nd40,EA070,Absence of slavery,EA070-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +92685,Nd41,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +92686,Nd42,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +92687,Nd43,EA070,Absence of slavery,EA070-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +92688,Nd44,EA070,Absence of slavery,EA070-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +92689,Nd45,EA070,Absence of slavery,EA070-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +92690,Nd46,EA070,Absence of slavery,EA070-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +92691,Nd47,EA070,Absence of slavery,EA070-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +92692,Nd48,EA070,Absence of slavery,EA070-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +92693,Nd49,EA070,Absence of slavery,EA070-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +92694,Nd5,EA070,Absence of slavery,EA070-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +92695,Nd50,EA070,Absence of slavery,EA070-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +92696,Nd51,EA070,Absence of slavery,EA070-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +92697,Nd52,EA070,Absence of slavery,EA070-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +92698,Nd53,EA070,Absence of slavery,EA070-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +92699,Nd54,EA070,Absence of slavery,EA070-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92700,Nd55,EA070,Absence of slavery,EA070-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +92701,Nd56,EA070,Absence of slavery,EA070-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +92702,Nd57,EA070,Absence of slavery,EA070-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +92703,Nd58,EA070,Absence of slavery,EA070-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +92704,Nd59,EA070,Absence of slavery,EA070-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +92705,Nd6,EA070,Absence of slavery,EA070-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +92706,Nd60,EA070,Absence of slavery,EA070-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +92707,Nd61,EA070,Absence of slavery,EA070-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +92708,Nd62,EA070,Absence of slavery,EA070-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +92709,Nd63,EA070,Absence of slavery,EA070-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +92710,Nd64,EA070,Absence of slavery,EA070-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +92711,Nd65,EA070,Absence of slavery,EA070-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +92712,Nd66,EA070,Absence of slavery,EA070-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +92713,Nd67,EA070,Absence of slavery,EA070-1,,gifford1936,,1870,EthnographicAtlas_1967_p113, +92714,Nd7,EA070,"Slavery, nonhereditary",EA070-2,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +92715,Nd8,EA070,"Slavery, nonhereditary",EA070-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +92716,Nd9,EA070,"Slavery, nonhereditary",EA070-2,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +92717,Ne1,EA070,Absence of slavery,EA070-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +92718,Ne10,EA070,Absence of slavery,EA070-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +92719,Ne11,EA070,Absence of slavery,EA070-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +92720,Ne12,EA070,Absence of slavery,EA070-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +92721,Ne13,EA070,Absence of slavery,EA070-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +92722,Ne14,EA070,Absence of slavery,EA070-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +92723,Ne15,EA070,Absence of slavery,EA070-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +92724,Ne16,EA070,Absence of slavery,EA070-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +92725,Ne17,EA070,Absence of slavery,EA070-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +92726,Ne18,EA070,Absence of slavery,EA070-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +92727,Ne19,EA070,Absence of slavery,EA070-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +92728,Ne2,EA070,Absence of slavery,EA070-1,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +92729,Ne20,EA070,Absence of slavery,EA070-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +92730,Ne21,EA070,?,EA070-NA,,,,,, +92731,Ne3,EA070,"Slavery, nonhereditary",EA070-2,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +92732,Ne4,EA070,Absence of slavery,EA070-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +92733,Ne5,EA070,Absence of slavery,EA070-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +92734,Ne6,EA070,Absence of slavery,EA070-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +92735,Ne7,EA070,Absence of slavery,EA070-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +92736,Ne8,EA070,"Slavery, nonhereditary",EA070-2,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +92737,Ne9,EA070,Absence of slavery,EA070-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +92738,Nf10,EA070,Absence of slavery,EA070-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +92739,Nf11,EA070,Absence of slavery,EA070-1,,whitman1937,,1870,EthnographicAtlas_1967_p117, +92740,Nf12,EA070,Absence of slavery,EA070-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +92741,Nf13,EA070,"Slavery, nonhereditary",EA070-2,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92742,Nf14,EA070,?,EA070-NA,,,,,, +92743,Nf15,EA070,?,EA070-NA,,,,,, +92744,Nf2,EA070,Absence of slavery,EA070-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +92745,Nf3,EA070,"Slavery, nonhereditary",EA070-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +92746,Nf4,EA070,"Slavery, no info on heritability",EA070-3,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +92747,Nf5,EA070,Absence of slavery,EA070-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +92748,Nf6,EA070,"Slavery, nonhereditary",EA070-2,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +92749,Nf7,EA070,"Slavery, no info on heritability",EA070-3,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92750,Nf8,EA070,"Slavery, nonhereditary",EA070-2,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +92751,Nf9,EA070,"Slavery, no info on heritability",EA070-3,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p117, +92752,Ng1,EA070,Absence of slavery,EA070-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +92753,Ng10,EA070,Absence of slavery,EA070-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +92754,Ng11,EA070,Absence of slavery,EA070-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +92755,Ng12,EA070,Absence of slavery,EA070-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +92756,Ng13,EA070,?,EA070-NA,,,,,, +92757,Ng14,EA070,?,EA070-NA,,,,,, +92758,Ng15,EA070,?,EA070-NA,,,,,, +92759,Ng2,EA070,Absence of slavery,EA070-1,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +92760,Ng3,EA070,Absence of slavery,EA070-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +92761,Ng4,EA070,Absence of slavery,EA070-1,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +92762,Ng5,EA070,Absence of slavery,EA070-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +92763,Ng6,EA070,Absence of slavery,EA070-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +92764,Ng7,EA070,?,EA070-NA,,,,,, +92765,Ng8,EA070,?,EA070-NA,,,,,, +92766,Ng9,EA070,Absence of slavery,EA070-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +92767,Nh1,EA070,Absence of slavery,EA070-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +92768,Nh10,EA070,Absence of slavery,EA070-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +92769,Nh11,EA070,Absence of slavery,EA070-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +92770,Nh12,EA070,Absence of slavery,EA070-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +92771,Nh13,EA070,Absence of slavery,EA070-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +92772,Nh14,EA070,Absence of slavery,EA070-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +92773,Nh15,EA070,"Slavery, nonhereditary",EA070-2,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +92774,Nh16,EA070,Absence of slavery,EA070-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92775,Nh17,EA070,Absence of slavery,EA070-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +92776,Nh18,EA070,Absence of slavery,EA070-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92777,Nh19,EA070,"Slavery, nonhereditary",EA070-2,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +92778,Nh2,EA070,Absence of slavery,EA070-1,,dozier1954,,1950,EthnographicAtlas_1967_p117, +92779,Nh20,EA070,?,EA070-NA,,,,,, +92780,Nh21,EA070,"Slavery, nonhereditary",EA070-2,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92781,Nh22,EA070,?,EA070-NA,,,,,, +92782,Nh23,EA070,Absence of slavery,EA070-1,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +92783,Nh24,EA070,Absence of slavery,EA070-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +92784,Nh25,EA070,Absence of slavery,EA070-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +92785,Nh26,EA070,?,EA070-NA,,,,,, +92786,Nh27,EA070,?,EA070-NA,,,,,, +92787,Nh3,EA070,"Slavery, nonhereditary",EA070-2,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +92788,Nh4,EA070,Absence of slavery,EA070-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +92789,Nh5,EA070,Absence of slavery,EA070-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +92790,Nh6,EA070,Absence of slavery,EA070-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +92791,Nh7,EA070,Absence of slavery,EA070-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +92792,Nh8,EA070,Absence of slavery,EA070-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +92793,Nh9,EA070,Absence of slavery,EA070-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +92794,Ni1,EA070,Absence of slavery,EA070-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +92795,Ni2,EA070,Absence of slavery,EA070-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +92796,Ni3,EA070,Absence of slavery,EA070-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +92797,Ni4,EA070,Absence of slavery,EA070-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +92798,Ni5,EA070,Absence of slavery,EA070-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +92799,Ni6,EA070,Absence of slavery,EA070-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +92800,Ni7,EA070,Absence of slavery,EA070-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +92801,Ni8,EA070,?,EA070-NA,,,,,, +92802,Ni9,EA070,?,EA070-NA,,,,,, +92803,Nj1,EA070,Absence of slavery,EA070-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92804,Nj10,EA070,Absence of slavery,EA070-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92805,Nj11,EA070,?,EA070-NA,,,,,, +92806,Nj12,EA070,?,EA070-NA,,,,,, +92807,Nj13,EA070,?,EA070-NA,,,,,, +92808,Nj14,EA070,?,EA070-NA,,,,,, +92809,Nj2,EA070,"Slavery, nonhereditary",EA070-2,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +92810,Nj3,EA070,Absence of slavery,EA070-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +92811,Nj4,EA070,"Slavery, no info on heritability",EA070-3,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p121, +92812,Nj5,EA070,?,EA070-NA,,,,,, +92813,Nj6,EA070,Absence of slavery,EA070-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +92814,Nj7,EA070,Absence of slavery,EA070-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92815,Nj8,EA070,?,EA070-NA,,,,,, +92816,Nj9,EA070,Absence of slavery,EA070-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +92817,Sa1,EA070,"Slavery, no info on heritability",EA070-3,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +92818,Sa10,EA070,Absence of slavery,EA070-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +92819,Sa11,EA070,"Slavery, hereditary",EA070-4,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +92820,Sa12,EA070,Absence of slavery,EA070-1,,stone1948,,1948,EthnographicAtlas_1967_p121, +92821,Sa13,EA070,"Slavery, hereditary",EA070-4,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +92822,Sa14,EA070,?,EA070-NA,,,,,, +92823,Sa15,EA070,?,EA070-NA,,,,,, +92824,Sa16,EA070,?,EA070-NA,,,,,, +92825,Sa17,EA070,?,EA070-NA,,,,,, +92826,Sa2,EA070,?,EA070-NA,,,,,, +92827,Sa3,EA070,Absence of slavery,EA070-1,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +92828,Sa4,EA070,Absence of slavery,EA070-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +92829,Sa5,EA070,Absence of slavery,EA070-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +92830,Sa6,EA070,"Slavery, hereditary",EA070-4,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +92831,Sa7,EA070,Absence of slavery,EA070-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +92832,Sa8,EA070,Absence of slavery,EA070-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +92833,Sa9,EA070,Absence of slavery,EA070-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +92834,Sb1,EA070,"Slavery, hereditary",EA070-4,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +92835,Sb2,EA070,Absence of slavery,EA070-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +92836,Sb3,EA070,?,EA070-NA,,,,,, +92837,Sb4,EA070,Absence of slavery,EA070-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +92838,Sb5,EA070,Absence of slavery,EA070-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +92839,Sb6,EA070,"Slavery, hereditary",EA070-4,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +92840,Sb7,EA070,Absence of slavery,EA070-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p121, +92841,Sb8,EA070,"Slavery, no info on heritability",EA070-3,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +92842,Sb9,EA070,"Slavery, hereditary",EA070-4,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +92843,Sc1,EA070,Absence of slavery,EA070-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +92844,Sc10,EA070,"Slavery, no info on heritability",EA070-3,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p121, +92845,Sc11,EA070,?,EA070-NA,,,,,, +92846,Sc12,EA070,?,EA070-NA,,,,,, +92847,Sc13,EA070,Absence of slavery,EA070-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +92848,Sc14,EA070,?,EA070-NA,,,,,, +92849,Sc15,EA070,"Slavery, no info on heritability",EA070-3,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +92850,Sc16,EA070,Absence of slavery,EA070-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +92851,Sc17,EA070,Absence of slavery,EA070-1,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +92852,Sc18,EA070,Absence of slavery,EA070-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +92853,Sc2,EA070,Absence of slavery,EA070-1,,leedsnd,,1950,EthnographicAtlas_1967_p121, +92854,Sc3,EA070,Absence of slavery,EA070-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +92855,Sc4,EA070,Absence of slavery,EA070-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +92856,Sc5,EA070,Absence of slavery,EA070-1,,farabee1918,,1900,EthnographicAtlas_1967_p121, +92857,Sc6,EA070,Absence of slavery,EA070-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92858,Sc7,EA070,Absence of slavery,EA070-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +92859,Sc8,EA070,Absence of slavery,EA070-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +92860,Sc9,EA070,Absence of slavery,EA070-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +92861,Sd1,EA070,Absence of slavery,EA070-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92862,Sd2,EA070,Absence of slavery,EA070-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +92863,Sd3,EA070,Absence of slavery,EA070-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +92864,Sd4,EA070,Absence of slavery,EA070-1,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +92865,Sd5,EA070,Absence of slavery,EA070-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +92866,Sd6,EA070,Absence of slavery,EA070-1,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +92867,Sd7,EA070,Absence of slavery,EA070-1,,fock1963,,1950,EthnographicAtlas_1967_p121, +92868,Sd8,EA070,Absence of slavery,EA070-1,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +92869,Sd9,EA070,Absence of slavery,EA070-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92870,Se1,EA070,Absence of slavery,EA070-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +92871,Se10,EA070,"Slavery, nonhereditary",EA070-2,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +92872,Se11,EA070,Absence of slavery,EA070-1,,prost1965,,1960,EthnographicAtlas_1967_p125, +92873,Se12,EA070,?,EA070-NA,,,,,, +92874,Se2,EA070,Absence of slavery,EA070-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +92875,Se3,EA070,Absence of slavery,EA070-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +92876,Se4,EA070,Absence of slavery,EA070-1,,fejos1943,,1940,EthnographicAtlas_1967_p121, +92877,Se5,EA070,"Slavery, hereditary",EA070-4,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +92878,Se6,EA070,"Slavery, nonhereditary",EA070-2,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +92879,Se7,EA070,Absence of slavery,EA070-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92880,Se8,EA070,Absence of slavery,EA070-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +92881,Se9,EA070,"Slavery, nonhereditary",EA070-2,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +92882,Sf1,EA070,Absence of slavery,EA070-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +92883,Sf2,EA070,Absence of slavery,EA070-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +92884,Sf3,EA070,Absence of slavery,EA070-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +92885,Sf4,EA070,?,EA070-NA,,,,,, +92886,Sf5,EA070,Absence of slavery,EA070-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +92887,Sf6,EA070,"Slavery, no info on heritability",EA070-3,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +92888,Sf7,EA070,Absence of slavery,EA070-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +92889,Sf8,EA070,?,EA070-NA,,,,,, +92890,Sf9,EA070,?,EA070-NA,,,,,, +92891,Sg1,EA070,Absence of slavery,EA070-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +92892,Sg2,EA070,"Slavery, nonhereditary",EA070-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92893,Sg3,EA070,Absence of slavery,EA070-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +92894,Sg4,EA070,"Slavery, nonhereditary",EA070-2,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +92895,Sg5,EA070,Absence of slavery,EA070-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92896,Sh1,EA070,Absence of slavery,EA070-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +92897,Sh2,EA070,"Slavery, hereditary",EA070-4,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +92898,Sh3,EA070,"Slavery, hereditary",EA070-4,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +92899,Sh4,EA070,"Slavery, no info on heritability",EA070-3,,oberg1949,,1940,EthnographicAtlas_1967_p125, +92900,Sh5,EA070,Absence of slavery,EA070-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +92901,Sh6,EA070,"Slavery, no info on heritability",EA070-3,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +92902,Sh7,EA070,?,EA070-NA,,,,,, +92903,Sh8,EA070,Absence of slavery,EA070-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +92904,Sh9,EA070,Absence of slavery,EA070-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +92905,Si1,EA070,Absence of slavery,EA070-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92906,Si10,EA070,Absence of slavery,EA070-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +92907,Si2,EA070,"Slavery, nonhereditary",EA070-2,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +92908,Si3,EA070,Absence of slavery,EA070-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92909,Si4,EA070,Absence of slavery,EA070-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +92910,Si5,EA070,Absence of slavery,EA070-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +92911,Si6,EA070,Absence of slavery,EA070-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +92912,Si7,EA070,"Slavery, nonhereditary",EA070-2,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +92913,Si8,EA070,Absence of slavery,EA070-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +92914,Si9,EA070,?,EA070-NA,,,,,, +92915,Sj1,EA070,"Slavery, nonhereditary",EA070-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +92916,Sj10,EA070,?,EA070-NA,,,,,, +92917,Sj11,EA070,Absence of slavery,EA070-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +92918,Sj2,EA070,Absence of slavery,EA070-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +92919,Sj3,EA070,Absence of slavery,EA070-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +92920,Sj4,EA070,Absence of slavery,EA070-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +92921,Sj5,EA070,Absence of slavery,EA070-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +92922,Sj6,EA070,Absence of slavery,EA070-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +92923,Sj7,EA070,Absence of slavery,EA070-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +92924,Sj8,EA070,"Slavery, nonhereditary",EA070-2,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +92925,Sj9,EA070,Absence of slavery,EA070-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +92926,ch12,EA070,Absence of slavery,EA070-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +92927,ch13,EA070,Absence of slavery,EA070-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +92928,ch14,EA070,Absence of slavery,EA070-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +92929,ch15,EA070,Absence of slavery,EA070-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +92930,ch16,EA070,Absence of slavery,EA070-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +92931,ch17,EA070,Absence of slavery,EA070-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +92932,ch18,EA070,Absence of slavery,EA070-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +92933,ch19,EA070,Absence of slavery,EA070-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +92934,ch20,EA070,Absence of slavery,EA070-1,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +92935,ch21,EA070,Absence of slavery,EA070-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +92936,ch22,EA070,Absence of slavery,EA070-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +92937,ch23,EA070,Absence of slavery,EA070-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +92938,ch24,EA070,Absence of slavery,EA070-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +92939,ch25,EA070,Absence of slavery,EA070-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +92940,ch26,EA070,Absence of slavery,EA070-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +92941,ch27,EA070,Absence of slavery,EA070-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +92942,ch28,EA070,Absence of slavery,EA070-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +92943,ec12,EA070,Absence of slavery,EA070-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +92944,ec13,EA070,"Slavery, nonhereditary",EA070-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +92945,ec14,EA070,"Slavery, nonhereditary",EA070-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +92946,ec15,EA070,Absence of slavery,EA070-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +92947,ec16,EA070,Absence of slavery,EA070-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +92948,ec17,EA070,Absence of slavery,EA070-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +92949,ec18,EA070,"Slavery, nonhereditary",EA070-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +92950,ec19,EA070,Absence of slavery,EA070-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +92951,ec20,EA070,Absence of slavery,EA070-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +92952,ec21,EA070,Absence of slavery,EA070-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +92953,Aa1,EA071,Slavery never practiced,EA071-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +92954,Aa2,EA071,Slavery never practiced,EA071-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +92955,Aa3,EA071,Slavery never practiced,EA071-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +92956,Aa4,EA071,Past and present slavery,EA071-3,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +92957,Aa5,EA071,Slavery never practiced,EA071-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +92958,Aa6,EA071,Slavery never practiced,EA071-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +92959,Aa7,EA071,Slavery never practiced,EA071-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +92960,Aa8,EA071,Slavery never practiced,EA071-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +92961,Aa9,EA071,Slavery never practiced,EA071-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +92962,Ab1,EA071,Past slavery,EA071-2,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +92963,Ab10,EA071,Slavery never practiced,EA071-1,,hunter1936,,1936,EthnographicAtlas_1967_p65, +92964,Ab11,EA071,Slavery never practiced,EA071-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +92965,Ab12,EA071,Slavery never practiced,EA071-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +92966,Ab13,EA071,Slavery never practiced,EA071-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +92967,Ab14,EA071,Slavery never practiced,EA071-1,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +92968,Ab15,EA071,?,EA071-NA,,,,,, +92969,Ab16,EA071,Slavery never practiced,EA071-1,,earthy1933,,1930,EthnographicAtlas_1967_p65, +92970,Ab17,EA071,Past slavery,EA071-2,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +92971,Ab18,EA071,Past and present slavery,EA071-3,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +92972,Ab19,EA071,Past slavery,EA071-2,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +92973,Ab2,EA071,Slavery never practiced,EA071-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +92974,Ab20,EA071,Past and present slavery,EA071-3,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +92975,Ab21a,EA071,Past slavery,EA071-2,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +92976,Ab21b,EA071,?,EA071-NA,,,,,, +92977,Ab22,EA071,?,EA071-NA,,,,,, +92978,Ab3,EA071,Past and present slavery,EA071-3,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +92979,Ab4,EA071,Slavery never practiced,EA071-1,,junod1927,,1920,EthnographicAtlas_1967_p65, +92980,Ab5,EA071,Past and present slavery,EA071-3,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +92981,Ab6,EA071,Past slavery,EA071-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +92982,Ab7,EA071,Past slavery,EA071-2,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +92983,Ab8,EA071,Slavery never practiced,EA071-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +92984,Ab9,EA071,Slavery never practiced,EA071-1,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +92985,Ac1,EA071,Past slavery,EA071-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +92986,Ac10,EA071,Past slavery,EA071-2,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +92987,Ac11,EA071,Past and present slavery,EA071-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +92988,Ac12,EA071,Past and present slavery,EA071-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +92989,Ac13,EA071,Past slavery,EA071-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +92990,Ac14,EA071,Past slavery,EA071-2,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +92991,Ac15,EA071,Past and present slavery,EA071-3,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +92992,Ac16,EA071,Past and present slavery,EA071-3,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +92993,Ac17,EA071,Past and present slavery,EA071-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +92994,Ac18,EA071,Past slavery,EA071-2,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +92995,Ac19,EA071,Past and present slavery,EA071-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +92996,Ac2,EA071,Past slavery,EA071-2,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +92997,Ac20,EA071,Past slavery,EA071-2,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +92998,Ac21,EA071,Past slavery,EA071-2,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +92999,Ac22,EA071,Past slavery,EA071-2,,mertens1935,,1930,EthnographicAtlas_1967_p65, +93000,Ac23,EA071,Past slavery,EA071-2,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +93001,Ac24,EA071,Past slavery,EA071-2,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +93002,Ac25,EA071,Past slavery,EA071-2,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +93003,Ac26,EA071,Past and present slavery,EA071-3,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +93004,Ac27,EA071,?,EA071-NA,,,,,, +93005,Ac28,EA071,?,EA071-NA,,,,,, +93006,Ac29,EA071,Past slavery,EA071-2,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +93007,Ac3,EA071,Past slavery,EA071-2,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +93008,Ac30,EA071,Past slavery,EA071-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +93009,Ac31,EA071,Past slavery,EA071-2,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +93010,Ac32,EA071,Past slavery,EA071-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +93011,Ac33,EA071,Past slavery,EA071-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +93012,Ac34,EA071,Past slavery,EA071-2,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +93013,Ac35,EA071,Past and present slavery,EA071-3,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +93014,Ac36,EA071,Past slavery,EA071-2,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +93015,Ac37,EA071,?,EA071-NA,,,,,, +93016,Ac38,EA071,Past and present slavery,EA071-3,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +93017,Ac39,EA071,Past slavery,EA071-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +93018,Ac4,EA071,Past and present slavery,EA071-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +93019,Ac40,EA071,Past and present slavery,EA071-3,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +93020,Ac41,EA071,Past and present slavery,EA071-3,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +93021,Ac42,EA071,Past and present slavery,EA071-3,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +93022,Ac43,EA071,Past and present slavery,EA071-3,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +93023,Ac5,EA071,Past and present slavery,EA071-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +93024,Ac6,EA071,Past slavery,EA071-2,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +93025,Ac7,EA071,Past slavery,EA071-2,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +93026,Ac8,EA071,Past and present slavery,EA071-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +93027,Ac9,EA071,Past slavery,EA071-2,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +93028,Ad1,EA071,Past slavery,EA071-2,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +93029,Ad10,EA071,Past and present slavery,EA071-3,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +93030,Ad11,EA071,Past slavery,EA071-2,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +93031,Ad12,EA071,?,EA071-NA,,,,,, +93032,Ad13,EA071,Past slavery,EA071-2,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +93033,Ad14,EA071,Past slavery,EA071-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +93034,Ad15,EA071,Past slavery,EA071-2,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +93035,Ad16,EA071,Past slavery,EA071-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +93036,Ad17,EA071,Past and present slavery,EA071-3,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +93037,Ad18,EA071,Past and present slavery,EA071-3,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +93038,Ad19,EA071,Past slavery,EA071-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +93039,Ad2,EA071,Past slavery,EA071-2,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +93040,Ad20,EA071,Past and present slavery,EA071-3,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +93041,Ad21,EA071,Past slavery,EA071-2,,maurice193538,,1930,EthnographicAtlas_1967_p69, +93042,Ad22,EA071,Past slavery,EA071-2,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +93043,Ad23,EA071,Past and present slavery,EA071-3,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +93044,Ad24,EA071,Past and present slavery,EA071-3,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +93045,Ad25,EA071,Past and present slavery,EA071-3,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +93046,Ad26,EA071,Slavery never practiced,EA071-1,,sick1916,,1910,EthnographicAtlas_1967_p69, +93047,Ad27,EA071,Past and present slavery,EA071-3,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +93048,Ad28,EA071,Past and present slavery,EA071-3,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +93049,Ad29,EA071,Past slavery,EA071-2,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +93050,Ad3,EA071,Slavery never practiced,EA071-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +93051,Ad30,EA071,Past and present slavery,EA071-3,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +93052,Ad31,EA071,Past and present slavery,EA071-3,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +93053,Ad32,EA071,Past and present slavery,EA071-3,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +93054,Ad33,EA071,Past and present slavery,EA071-3,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +93055,Ad34,EA071,Past slavery,EA071-2,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +93056,Ad35,EA071,Past slavery,EA071-2,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +93057,Ad36,EA071,Past and present slavery,EA071-3,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +93058,Ad37,EA071,Slavery never practiced,EA071-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +93059,Ad38,EA071,Slavery never practiced,EA071-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +93060,Ad39,EA071,Slavery never practiced,EA071-1,,gray1963,,1950,EthnographicAtlas_1967_p69, +93061,Ad4,EA071,Slavery never practiced,EA071-1,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +93062,Ad40,EA071,?,EA071-NA,,,,,, +93063,Ad41,EA071,?,EA071-NA,,,,,, +93064,Ad42,EA071,Past and present slavery,EA071-3,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +93065,Ad43,EA071,Past slavery,EA071-2,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +93066,Ad44,EA071,?,EA071-NA,,,,,, +93067,Ad45,EA071,Past slavery,EA071-2,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +93068,Ad46,EA071,Past slavery,EA071-2,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +93069,Ad47,EA071,Past and present slavery,EA071-3,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +93070,Ad48,EA071,Past slavery,EA071-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +93071,Ad49,EA071,Past slavery,EA071-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +93072,Ad5,EA071,Slavery never practiced,EA071-1,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +93073,Ad50,EA071,Past slavery,EA071-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +93074,Ad51,EA071,Past slavery,EA071-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +93075,Ad6,EA071,Past slavery,EA071-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +93076,Ad7,EA071,Past slavery,EA071-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +93077,Ad8,EA071,Past slavery,EA071-2,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +93078,Ad9,EA071,Past slavery,EA071-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +93079,Ae1,EA071,Slavery never practiced,EA071-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +93080,Ae10,EA071,Past slavery,EA071-2,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +93081,Ae11,EA071,Past and present slavery,EA071-3,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +93082,Ae12,EA071,Past slavery,EA071-2,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +93083,Ae13,EA071,?,EA071-NA,,,,,, +93084,Ae14,EA071,Past slavery,EA071-2,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +93085,Ae15,EA071,Past and present slavery,EA071-3,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +93086,Ae16,EA071,Past and present slavery,EA071-3,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +93087,Ae17,EA071,Slavery never practiced,EA071-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +93088,Ae18,EA071,Past and present slavery,EA071-3,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +93089,Ae19,EA071,Past and present slavery,EA071-3,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +93090,Ae2,EA071,Past slavery,EA071-2,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +93091,Ae20,EA071,Past and present slavery,EA071-3,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +93092,Ae21,EA071,Past and present slavery,EA071-3,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +93093,Ae22,EA071,Past and present slavery,EA071-3,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +93094,Ae23,EA071,Past and present slavery,EA071-3,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +93095,Ae24,EA071,Past and present slavery,EA071-3,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +93096,Ae25,EA071,Past and present slavery,EA071-3,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +93097,Ae26,EA071,Past and present slavery,EA071-3,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +93098,Ae27,EA071,Past and present slavery,EA071-3,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +93099,Ae28,EA071,Past and present slavery,EA071-3,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +93100,Ae29,EA071,Past and present slavery,EA071-3,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +93101,Ae3,EA071,Slavery never practiced,EA071-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +93102,Ae30,EA071,Slavery never practiced,EA071-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +93103,Ae31,EA071,Past and present slavery,EA071-3,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +93104,Ae32,EA071,Slavery never practiced,EA071-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +93105,Ae33,EA071,?,EA071-NA,,,,,, +93106,Ae34,EA071,Slavery never practiced,EA071-1,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +93107,Ae35,EA071,Past and present slavery,EA071-3,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +93108,Ae36,EA071,Past and present slavery,EA071-3,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +93109,Ae37,EA071,Past and present slavery,EA071-3,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +93110,Ae38,EA071,Past and present slavery,EA071-3,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +93111,Ae39,EA071,Past slavery,EA071-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +93112,Ae4,EA071,Past slavery,EA071-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +93113,Ae40,EA071,Past and present slavery,EA071-3,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +93114,Ae41,EA071,Past slavery,EA071-2,,andersson1953,,1940,EthnographicAtlas_1967_p69, +93115,Ae42,EA071,Past and present slavery,EA071-3,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +93116,Ae43,EA071,Past and present slavery,EA071-3,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +93117,Ae44,EA071,Past and present slavery,EA071-3,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +93118,Ae45,EA071,Past and present slavery,EA071-3,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +93119,Ae46,EA071,Past and present slavery,EA071-3,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +93120,Ae47,EA071,Past and present slavery,EA071-3,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +93121,Ae48,EA071,Past and present slavery,EA071-3,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +93122,Ae49,EA071,Past and present slavery,EA071-3,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +93123,Ae5,EA071,Past slavery,EA071-2,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +93124,Ae50,EA071,Past and present slavery,EA071-3,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +93125,Ae51,EA071,Past and present slavery,EA071-3,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +93126,Ae52,EA071,Past slavery,EA071-2,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +93127,Ae53,EA071,Past slavery,EA071-2,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +93128,Ae54,EA071,Past slavery,EA071-2,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +93129,Ae55,EA071,Past slavery,EA071-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +93130,Ae56,EA071,Past slavery,EA071-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +93131,Ae57,EA071,Past slavery,EA071-2,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +93132,Ae58,EA071,Past and present slavery,EA071-3,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +93133,Ae59,EA071,Past slavery,EA071-2,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +93134,Ae6,EA071,Past slavery,EA071-2,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +93135,Ae7,EA071,Past and present slavery,EA071-3,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +93136,Ae8,EA071,Past slavery,EA071-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +93137,Ae9,EA071,Past slavery,EA071-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +93138,Af1,EA071,Past and present slavery,EA071-3,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +93139,Af10,EA071,Past and present slavery,EA071-3,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +93140,Af11,EA071,Past slavery,EA071-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +93141,Af12,EA071,Past slavery,EA071-2,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +93142,Af13,EA071,Past and present slavery,EA071-3,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +93143,Af14,EA071,Past slavery,EA071-2,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +93144,Af15,EA071,Past and present slavery,EA071-3,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +93145,Af16,EA071,Past and present slavery,EA071-3,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +93146,Af17,EA071,Past slavery,EA071-2,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +93147,Af18,EA071,Past slavery,EA071-2,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +93148,Af19,EA071,Past slavery,EA071-2,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +93149,Af2,EA071,Past slavery,EA071-2,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +93150,Af20,EA071,Past and present slavery,EA071-3,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +93151,Af21,EA071,Past and present slavery,EA071-3,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +93152,Af22,EA071,Past slavery,EA071-2,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +93153,Af23,EA071,Past slavery,EA071-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +93154,Af24,EA071,Past and present slavery,EA071-3,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +93155,Af25,EA071,Past slavery,EA071-2,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +93156,Af26,EA071,Past and present slavery,EA071-3,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +93157,Af27,EA071,Past slavery,EA071-2,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +93158,Af28,EA071,Past slavery,EA071-2,,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +93159,Af29,EA071,Past slavery,EA071-2,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +93160,Af3,EA071,Past slavery,EA071-2,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +93161,Af30,EA071,Past slavery,EA071-2,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +93162,Af31,EA071,Past slavery,EA071-2,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +93163,Af32,EA071,Past slavery,EA071-2,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93164,Af33,EA071,Past slavery,EA071-2,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93165,Af34,EA071,Past slavery,EA071-2,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93166,Af35,EA071,?,EA071-NA,,,,,, +93167,Af36,EA071,Past slavery,EA071-2,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +93168,Af37,EA071,Past slavery,EA071-2,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +93169,Af38,EA071,Past slavery,EA071-2,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +93170,Af39,EA071,Past and present slavery,EA071-3,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +93171,Af4,EA071,Past slavery,EA071-2,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +93172,Af40,EA071,Past and present slavery,EA071-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +93173,Af41,EA071,Past slavery,EA071-2,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +93174,Af42,EA071,Past slavery,EA071-2,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +93175,Af43,EA071,Past slavery,EA071-2,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +93176,Af44,EA071,Past and present slavery,EA071-3,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +93177,Af45,EA071,Past and present slavery,EA071-3,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +93178,Af46,EA071,Past and present slavery,EA071-3,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +93179,Af47,EA071,Past slavery,EA071-2,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +93180,Af48,EA071,Past and present slavery,EA071-3,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +93181,Af49,EA071,Past and present slavery,EA071-3,,schwab1947,,1940,EthnographicAtlas_1967_p73, +93182,Af5,EA071,Past slavery,EA071-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +93183,Af50,EA071,Past slavery,EA071-2,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +93184,Af51,EA071,Slavery never practiced,EA071-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +93185,Af52,EA071,Past slavery,EA071-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +93186,Af53,EA071,?,EA071-NA,,,,,, +93187,Af54,EA071,Past slavery,EA071-2,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +93188,Af55,EA071,Past and present slavery,EA071-3,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +93189,Af56,EA071,Past slavery,EA071-2,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +93190,Af57,EA071,Past slavery,EA071-2,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +93191,Af58,EA071,Past slavery,EA071-2,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +93192,Af6,EA071,Past slavery,EA071-2,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +93193,Af7,EA071,Slavery never practiced,EA071-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +93194,Af8,EA071,Past slavery,EA071-2,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +93195,Af9,EA071,Past and present slavery,EA071-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +93196,Ag1,EA071,Past slavery,EA071-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +93197,Ag10,EA071,Past and present slavery,EA071-3,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +93198,Ag11,EA071,Past slavery,EA071-2,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +93199,Ag12,EA071,Past and present slavery,EA071-3,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +93200,Ag13,EA071,Past slavery,EA071-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +93201,Ag14,EA071,Slavery never practiced,EA071-1,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +93202,Ag15,EA071,Past slavery,EA071-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +93203,Ag16,EA071,Slavery never practiced,EA071-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +93204,Ag17,EA071,Past slavery,EA071-2,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +93205,Ag18,EA071,Past slavery,EA071-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +93206,Ag19,EA071,Slavery never practiced,EA071-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +93207,Ag2,EA071,Past slavery,EA071-2,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +93208,Ag20,EA071,Slavery never practiced,EA071-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +93209,Ag21,EA071,Slavery never practiced,EA071-1,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +93210,Ag22,EA071,Past slavery,EA071-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +93211,Ag23,EA071,Past and present slavery,EA071-3,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +93212,Ag24,EA071,Past slavery,EA071-2,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +93213,Ag25,EA071,Past and present slavery,EA071-3,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +93214,Ag26,EA071,Past slavery,EA071-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +93215,Ag27,EA071,Past slavery,EA071-2,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +93216,Ag28,EA071,Past slavery,EA071-2,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +93217,Ag29,EA071,?,EA071-NA,,,,,, +93218,Ag3,EA071,Past slavery,EA071-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +93219,Ag30,EA071,Past and present slavery,EA071-3,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +93220,Ag31,EA071,Past and present slavery,EA071-3,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +93221,Ag32,EA071,Past and present slavery,EA071-3,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +93222,Ag33,EA071,Past slavery,EA071-2,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +93223,Ag34,EA071,Past slavery,EA071-2,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +93224,Ag35,EA071,Past and present slavery,EA071-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +93225,Ag36,EA071,?,EA071-NA,,,,,, +93226,Ag37,EA071,Past slavery,EA071-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +93227,Ag38,EA071,Past slavery,EA071-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +93228,Ag39,EA071,Past slavery,EA071-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +93229,Ag4,EA071,Past slavery,EA071-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +93230,Ag40,EA071,Past slavery,EA071-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +93231,Ag41,EA071,?,EA071-NA,,,,,, +93232,Ag42,EA071,Past slavery,EA071-2,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +93233,Ag43,EA071,?,EA071-NA,,,,,, +93234,Ag44,EA071,Past and present slavery,EA071-3,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +93235,Ag45,EA071,Past slavery,EA071-2,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +93236,Ag46,EA071,Past slavery,EA071-2,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +93237,Ag47,EA071,Past and present slavery,EA071-3,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +93238,Ag48,EA071,Past and present slavery,EA071-3,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +93239,Ag49,EA071,Past and present slavery,EA071-3,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +93240,Ag5,EA071,Past slavery,EA071-2,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +93241,Ag50,EA071,Past and present slavery,EA071-3,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +93242,Ag51,EA071,Past slavery,EA071-2,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +93243,Ag52,EA071,?,EA071-NA,,,,,, +93244,Ag53,EA071,Past slavery,EA071-2,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +93245,Ag54,EA071,Past slavery,EA071-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +93246,Ag6,EA071,Past slavery,EA071-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +93247,Ag7,EA071,Past slavery,EA071-2,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +93248,Ag8,EA071,Slavery never practiced,EA071-1,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +93249,Ag9,EA071,Past slavery,EA071-2,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +93250,Ah1,EA071,Past slavery,EA071-2,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93251,Ah10,EA071,Past and present slavery,EA071-3,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +93252,Ah11,EA071,Past slavery,EA071-2,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +93253,Ah12,EA071,?,EA071-NA,,,,,, +93254,Ah13,EA071,Past slavery,EA071-2,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +93255,Ah14,EA071,Past slavery,EA071-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +93256,Ah15,EA071,?,EA071-NA,,,,,, +93257,Ah16,EA071,Past and present slavery,EA071-3,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +93258,Ah17,EA071,?,EA071-NA,,,,,, +93259,Ah18,EA071,Past slavery,EA071-2,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +93260,Ah19,EA071,Past slavery,EA071-2,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +93261,Ah2,EA071,Past slavery,EA071-2,,meek1931a,,1920,EthnographicAtlas_1967_p77, +93262,Ah20,EA071,Past slavery,EA071-2,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +93263,Ah21,EA071,Past and present slavery,EA071-3,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +93264,Ah22,EA071,Past and present slavery,EA071-3,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +93265,Ah23,EA071,?,EA071-NA,,,,,, +93266,Ah24,EA071,Past and present slavery,EA071-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +93267,Ah25,EA071,Past slavery,EA071-2,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +93268,Ah26,EA071,Past and present slavery,EA071-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +93269,Ah27,EA071,?,EA071-NA,,,,,, +93270,Ah28,EA071,Past slavery,EA071-2,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +93271,Ah29,EA071,Past and present slavery,EA071-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +93272,Ah3,EA071,Past slavery,EA071-2,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +93273,Ah30,EA071,?,EA071-NA,,,,,, +93274,Ah31,EA071,Past and present slavery,EA071-3,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +93275,Ah32,EA071,Past and present slavery,EA071-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +93276,Ah33,EA071,Past and present slavery,EA071-3,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +93277,Ah34,EA071,Past and present slavery,EA071-3,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +93278,Ah35,EA071,Past and present slavery,EA071-3,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +93279,Ah36,EA071,Slavery never practiced,EA071-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +93280,Ah37,EA071,Past and present slavery,EA071-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +93281,Ah38,EA071,Past and present slavery,EA071-3,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +93282,Ah39,EA071,Slavery never practiced,EA071-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +93283,Ah4,EA071,Past slavery,EA071-2,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +93284,Ah5,EA071,Past slavery,EA071-2,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +93285,Ah6,EA071,Past slavery,EA071-2,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +93286,Ah7,EA071,Slavery never practiced,EA071-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +93287,Ah8,EA071,Past and present slavery,EA071-3,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +93288,Ah9,EA071,Past slavery,EA071-2,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +93289,Ai1,EA071,Past and present slavery,EA071-3,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +93290,Ai10,EA071,Past slavery,EA071-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +93291,Ai11,EA071,Past and present slavery,EA071-3,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +93292,Ai12,EA071,Past slavery,EA071-2,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +93293,Ai13,EA071,Past and present slavery,EA071-3,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +93294,Ai14,EA071,?,EA071-NA,,,,,, +93295,Ai15,EA071,Past and present slavery,EA071-3,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +93296,Ai16,EA071,?,EA071-NA,,,,,, +93297,Ai17,EA071,?,EA071-NA,,,,,, +93298,Ai18,EA071,Past and present slavery,EA071-3,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +93299,Ai19,EA071,?,EA071-NA,,,,,, +93300,Ai2,EA071,Past slavery,EA071-2,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +93301,Ai20,EA071,?,EA071-NA,,,,,, +93302,Ai21,EA071,Past and present slavery,EA071-3,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +93303,Ai22,EA071,Past and present slavery,EA071-3,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +93304,Ai23,EA071,Past slavery,EA071-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +93305,Ai24,EA071,Slavery never practiced,EA071-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +93306,Ai25,EA071,Past slavery,EA071-2,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +93307,Ai26,EA071,Past and present slavery,EA071-3,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +93308,Ai27,EA071,Past and present slavery,EA071-3,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +93309,Ai28,EA071,Past and present slavery,EA071-3,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +93310,Ai29,EA071,?,EA071-NA,,,,,, +93311,Ai3,EA071,Past slavery,EA071-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +93312,Ai30,EA071,?,EA071-NA,,,,,, +93313,Ai31,EA071,Slavery never practiced,EA071-1,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +93314,Ai32,EA071,Past slavery,EA071-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +93315,Ai33,EA071,?,EA071-NA,,,,,, +93316,Ai34,EA071,?,EA071-NA,,,,,, +93317,Ai35,EA071,Slavery never practiced,EA071-1,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +93318,Ai36,EA071,Past slavery,EA071-2,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +93319,Ai37,EA071,Past and present slavery,EA071-3,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +93320,Ai38,EA071,?,EA071-NA,,,,,, +93321,Ai39,EA071,Past and present slavery,EA071-3,,nadel1947,,1940,EthnographicAtlas_1967_p77, +93322,Ai4,EA071,?,EA071-NA,,,,,, +93323,Ai40,EA071,Past and present slavery,EA071-3,,nadel1947,,1940,EthnographicAtlas_1967_p77, +93324,Ai41,EA071,Past and present slavery,EA071-3,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +93325,Ai42,EA071,Past and present slavery,EA071-3,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +93326,Ai43,EA071,Past and present slavery,EA071-3,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +93327,Ai44,EA071,?,EA071-NA,,,,,, +93328,Ai45,EA071,?,EA071-NA,,,,,, +93329,Ai46,EA071,Past and present slavery,EA071-3,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +93330,Ai47,EA071,?,EA071-NA,,,,,, +93331,Ai5,EA071,Past slavery,EA071-2,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +93332,Ai6,EA071,Past slavery,EA071-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +93333,Ai7,EA071,Past and present slavery,EA071-3,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +93334,Ai8,EA071,Past slavery,EA071-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +93335,Ai9,EA071,?,EA071-NA,,,,,, +93336,Aj1,EA071,Past slavery,EA071-2,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +93337,Aj10,EA071,Slavery never practiced,EA071-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +93338,Aj11,EA071,Past and present slavery,EA071-3,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +93339,Aj12,EA071,Slavery never practiced,EA071-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +93340,Aj13,EA071,?,EA071-NA,,,,,, +93341,Aj14,EA071,?,EA071-NA,,,,,, +93342,Aj15,EA071,Past and present slavery,EA071-3,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +93343,Aj16,EA071,Slavery never practiced,EA071-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +93344,Aj17,EA071,Past and present slavery,EA071-3,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +93345,Aj18,EA071,?,EA071-NA,,,,,, +93346,Aj19,EA071,Past and present slavery,EA071-3,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +93347,Aj2,EA071,Slavery never practiced,EA071-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +93348,Aj20,EA071,Past slavery,EA071-2,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +93349,Aj21,EA071,Slavery never practiced,EA071-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +93350,Aj22,EA071,?,EA071-NA,,,,,, +93351,Aj23,EA071,Slavery never practiced,EA071-1,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +93352,Aj24,EA071,?,EA071-NA,,,,,, +93353,Aj25,EA071,Slavery never practiced,EA071-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +93354,Aj26,EA071,Slavery never practiced,EA071-1,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +93355,Aj27,EA071,Slavery never practiced,EA071-1,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +93356,Aj28,EA071,Slavery never practiced,EA071-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +93357,Aj29,EA071,Slavery never practiced,EA071-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +93358,Aj3,EA071,Slavery never practiced,EA071-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +93359,Aj30,EA071,?,EA071-NA,,,,,, +93360,Aj31,EA071,?,EA071-NA,,,,,, +93361,Aj4,EA071,Past slavery,EA071-2,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +93362,Aj5,EA071,Slavery never practiced,EA071-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +93363,Aj6,EA071,Slavery never practiced,EA071-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +93364,Aj7,EA071,Slavery never practiced,EA071-1,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +93365,Aj8,EA071,Slavery never practiced,EA071-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +93366,Aj9,EA071,Slavery never practiced,EA071-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +93367,Ca1,EA071,Slavery never practiced,EA071-1,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +93368,Ca10,EA071,Past and present slavery,EA071-3,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +93369,Ca11,EA071,Past and present slavery,EA071-3,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +93370,Ca12,EA071,Past and present slavery,EA071-3,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +93371,Ca13,EA071,Past slavery,EA071-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +93372,Ca14,EA071,Past slavery,EA071-2,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +93373,Ca15,EA071,?,EA071-NA,,,,,, +93374,Ca16,EA071,?,EA071-NA,,,,,, +93375,Ca17,EA071,?,EA071-NA,,,,,, +93376,Ca18,EA071,?,EA071-NA,,,,,, +93377,Ca19,EA071,?,EA071-NA,,,,,, +93378,Ca2,EA071,Past slavery,EA071-2,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +93379,Ca20,EA071,?,EA071-NA,,,,,, +93380,Ca21,EA071,?,EA071-NA,,,,,, +93381,Ca22,EA071,?,EA071-NA,,,,,, +93382,Ca23,EA071,?,EA071-NA,,,,,, +93383,Ca24,EA071,Past slavery,EA071-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +93384,Ca25,EA071,?,EA071-NA,,,,,, +93385,Ca26,EA071,?,EA071-NA,,,,,, +93386,Ca27,EA071,?,EA071-NA,,,,,, +93387,Ca28,EA071,?,EA071-NA,,,,,, +93388,Ca29,EA071,Past slavery,EA071-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +93389,Ca3,EA071,Past slavery,EA071-2,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +93390,Ca30,EA071,Past and present slavery,EA071-3,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +93391,Ca31,EA071,Slavery never practiced,EA071-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +93392,Ca32,EA071,Past and present slavery,EA071-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +93393,Ca33,EA071,Past and present slavery,EA071-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +93394,Ca34,EA071,?,EA071-NA,,,,,, +93395,Ca35,EA071,?,EA071-NA,,,,,, +93396,Ca36,EA071,Past and present slavery,EA071-3,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +93397,Ca37,EA071,Past and present slavery,EA071-3,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +93398,Ca38,EA071,Past and present slavery,EA071-3,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +93399,Ca39,EA071,Past and present slavery,EA071-3,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +93400,Ca4,EA071,?,EA071-NA,,,,,, +93401,Ca40,EA071,Past slavery,EA071-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +93402,Ca41,EA071,Past slavery,EA071-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +93403,Ca42,EA071,Past slavery,EA071-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +93404,Ca43,EA071,?,EA071-NA,,,,,, +93405,Ca5,EA071,Slavery never practiced,EA071-1,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +93406,Ca6,EA071,Past and present slavery,EA071-3,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +93407,Ca7,EA071,Past slavery,EA071-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +93408,Ca8,EA071,?,EA071-NA,,,,,, +93409,Ca9,EA071,Slavery never practiced,EA071-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +93410,Cb1,EA071,Past slavery,EA071-2,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +93411,Cb10,EA071,Past slavery,EA071-2,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +93412,Cb11,EA071,?,EA071-NA,,,,,, +93413,Cb12,EA071,Past and present slavery,EA071-3,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +93414,Cb13,EA071,Past and present slavery,EA071-3,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +93415,Cb14,EA071,Past and present slavery,EA071-3,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +93416,Cb15,EA071,Past slavery,EA071-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +93417,Cb16,EA071,Past and present slavery,EA071-3,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +93418,Cb17,EA071,Past slavery,EA071-2,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +93419,Cb18,EA071,Past slavery,EA071-2,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +93420,Cb19,EA071,Past and present slavery,EA071-3,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +93421,Cb2,EA071,Past slavery,EA071-2,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +93422,Cb20,EA071,Past slavery,EA071-2,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +93423,Cb21,EA071,Past and present slavery,EA071-3,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +93424,Cb22,EA071,Past slavery,EA071-2,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +93425,Cb23,EA071,Past slavery,EA071-2,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +93426,Cb24,EA071,?,EA071-NA,,,,,, +93427,Cb25,EA071,Past slavery,EA071-2,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +93428,Cb26,EA071,Past slavery,EA071-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +93429,Cb27,EA071,Past and present slavery,EA071-3,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +93430,Cb28,EA071,?,EA071-NA,,,,,, +93431,Cb29,EA071,?,EA071-NA,,,,,, +93432,Cb3,EA071,Past slavery,EA071-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +93433,Cb4,EA071,Past and present slavery,EA071-3,,reid1930,,1920,EthnographicAtlas_1967_p81, +93434,Cb5,EA071,Past slavery,EA071-2,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +93435,Cb6,EA071,Past and present slavery,EA071-3,,woodnd,,1920,EthnographicAtlas_1967_p81, +93436,Cb7,EA071,Past and present slavery,EA071-3,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +93437,Cb8,EA071,Past slavery,EA071-2,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +93438,Cb9,EA071,Past slavery,EA071-2,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +93439,Cc1,EA071,Past and present slavery,EA071-3,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +93440,Cc10,EA071,Past and present slavery,EA071-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +93441,Cc11,EA071,Past and present slavery,EA071-3,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +93442,Cc12,EA071,Past and present slavery,EA071-3,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +93443,Cc13,EA071,?,EA071-NA,,,,,, +93444,Cc14,EA071,Past and present slavery,EA071-3,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +93445,Cc15,EA071,Past slavery,EA071-2,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +93446,Cc16,EA071,Past slavery,EA071-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +93447,Cc17,EA071,Past and present slavery,EA071-3,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +93448,Cc18,EA071,Past and present slavery,EA071-3,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +93449,Cc19,EA071,Past slavery,EA071-2,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +93450,Cc2,EA071,Past slavery,EA071-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +93451,Cc20,EA071,Past and present slavery,EA071-3,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +93452,Cc3,EA071,Past slavery,EA071-2,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +93453,Cc4,EA071,Past slavery,EA071-2,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +93454,Cc5,EA071,Past slavery,EA071-2,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +93455,Cc6,EA071,Past and present slavery,EA071-3,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +93456,Cc7,EA071,Past and present slavery,EA071-3,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93457,Cc8,EA071,Past and present slavery,EA071-3,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +93458,Cc9,EA071,Past and present slavery,EA071-3,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +93459,Cd1,EA071,Past and present slavery,EA071-3,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +93460,Cd10,EA071,Slavery never practiced,EA071-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +93461,Cd11,EA071,Slavery never practiced,EA071-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +93462,Cd12,EA071,Past and present slavery,EA071-3,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +93463,Cd13,EA071,?,EA071-NA,,,,,, +93464,Cd14,EA071,Past slavery,EA071-2,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +93465,Cd15,EA071,Past slavery,EA071-2,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +93466,Cd16,EA071,Past slavery,EA071-2,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +93467,Cd17,EA071,?,EA071-NA,,,,,, +93468,Cd18,EA071,Past slavery,EA071-2,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +93469,Cd19,EA071,Past slavery,EA071-2,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +93470,Cd2,EA071,Past slavery,EA071-2,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +93471,Cd20,EA071,?,EA071-NA,,,,,, +93472,Cd21,EA071,?,EA071-NA,,,,,, +93473,Cd3,EA071,Slavery never practiced,EA071-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +93474,Cd4,EA071,Past slavery,EA071-2,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +93475,Cd5,EA071,Slavery never practiced,EA071-1,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +93476,Cd6,EA071,Past and present slavery,EA071-3,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +93477,Cd7,EA071,Past slavery,EA071-2,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +93478,Cd8,EA071,?,EA071-NA,,,,,, +93479,Cd9,EA071,Past slavery,EA071-2,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +93480,Ce1,EA071,Slavery never practiced,EA071-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +93481,Ce2,EA071,?,EA071-NA,,,,,, +93482,Ce3,EA071,Past and present slavery,EA071-3,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +93483,Ce4,EA071,Slavery never practiced,EA071-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93484,Ce5,EA071,Slavery never practiced,EA071-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +93485,Ce6,EA071,Slavery never practiced,EA071-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +93486,Ce7,EA071,Slavery never practiced,EA071-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +93487,Ce8,EA071,Slavery never practiced,EA071-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +93488,Cf1,EA071,Slavery never practiced,EA071-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +93489,Cf2,EA071,Past and present slavery,EA071-3,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +93490,Cf3,EA071,Slavery never practiced,EA071-1,,munch1945,,1930,EthnographicAtlas_1967_p85, +93491,Cf4,EA071,Past slavery,EA071-2,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +93492,Cf5,EA071,Slavery never practiced,EA071-1,,miner1939,,1930,EthnographicAtlas_1967_p85, +93493,Cg1,EA071,Slavery never practiced,EA071-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +93494,Cg2,EA071,Past and present slavery,EA071-3,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +93495,Cg3,EA071,Slavery never practiced,EA071-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +93496,Cg4,EA071,Slavery never practiced,EA071-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +93497,Cg5,EA071,Slavery never practiced,EA071-1,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +93498,Ch1,EA071,Slavery never practiced,EA071-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +93499,Ch10,EA071,?,EA071-NA,,,,,, +93500,Ch11,EA071,Slavery never practiced,EA071-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +93501,Ch2,EA071,Slavery never practiced,EA071-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +93502,Ch3,EA071,Slavery never practiced,EA071-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +93503,Ch4,EA071,Slavery never practiced,EA071-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +93504,Ch5,EA071,Slavery never practiced,EA071-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +93505,Ch6,EA071,Slavery never practiced,EA071-1,,ember1954,,1910,EthnographicAtlas_1967_p85, +93506,Ch7,EA071,Slavery never practiced,EA071-1,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +93507,Ch8,EA071,Slavery never practiced,EA071-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p85, +93508,Ch9,EA071,Slavery never practiced,EA071-1,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +93509,Ci1,EA071,?,EA071-NA,,,,,, +93510,Ci10,EA071,Slavery never practiced,EA071-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +93511,Ci11,EA071,Slavery never practiced,EA071-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +93512,Ci12,EA071,Past slavery,EA071-2,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +93513,Ci2,EA071,Slavery never practiced,EA071-1,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +93514,Ci3,EA071,?,EA071-NA,,,,,, +93515,Ci4,EA071,Past slavery,EA071-2,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +93516,Ci5,EA071,Slavery never practiced,EA071-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +93517,Ci6,EA071,Past and present slavery,EA071-3,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +93518,Ci7,EA071,?,EA071-NA,,,,,, +93519,Ci8,EA071,Past and present slavery,EA071-3,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +93520,Ci9,EA071,Slavery never practiced,EA071-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +93521,Cj1,EA071,Slavery never practiced,EA071-1,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +93522,Cj10,EA071,Past slavery,EA071-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +93523,Cj2,EA071,Past and present slavery,EA071-3,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +93524,Cj3,EA071,Past and present slavery,EA071-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +93525,Cj4,EA071,Past and present slavery,EA071-3,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +93526,Cj5,EA071,Past and present slavery,EA071-3,,dickson1949,,1930,EthnographicAtlas_1967_p89, +93527,Cj6,EA071,Slavery never practiced,EA071-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +93528,Cj7,EA071,Slavery never practiced,EA071-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +93529,Cj8,EA071,Past and present slavery,EA071-3,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +93530,Cj9,EA071,Past and present slavery,EA071-3,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +93531,Ea1,EA071,?,EA071-NA,,,,,, +93532,Ea10,EA071,Past slavery,EA071-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +93533,Ea11,EA071,Past slavery,EA071-2,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +93534,Ea12,EA071,?,EA071-NA,,,,,, +93535,Ea13,EA071,Slavery never practiced,EA071-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +93536,Ea2,EA071,Past slavery,EA071-2,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +93537,Ea3,EA071,Past slavery,EA071-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +93538,Ea4,EA071,?,EA071-NA,,,,,, +93539,Ea5,EA071,Past and present slavery,EA071-3,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +93540,Ea6,EA071,Slavery never practiced,EA071-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +93541,Ea7,EA071,?,EA071-NA,,,,,, +93542,Ea8,EA071,Past and present slavery,EA071-3,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +93543,Ea9,EA071,Past slavery,EA071-2,,vreeland1957,,1950,EthnographicAtlas_1967_p89, +93544,Eb1,EA071,Past slavery,EA071-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +93545,Eb2,EA071,Past and present slavery,EA071-3,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +93546,Eb3,EA071,Past slavery,EA071-2,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +93547,Eb4,EA071,?,EA071-NA,,,,,, +93548,Eb5,EA071,Past slavery,EA071-2,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +93549,Eb6,EA071,?,EA071-NA,,,,,, +93550,Eb7,EA071,Past slavery,EA071-2,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +93551,Eb8,EA071,?,EA071-NA,,,,,, +93552,Ec1,EA071,Slavery never practiced,EA071-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +93553,Ec10,EA071,Past slavery,EA071-2,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +93554,Ec11,EA071,Slavery never practiced,EA071-1,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +93555,Ec2,EA071,Past slavery,EA071-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93556,Ec3,EA071,Past slavery,EA071-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +93557,Ec4,EA071,Slavery never practiced,EA071-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +93558,Ec5,EA071,Past slavery,EA071-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +93559,Ec6,EA071,Past slavery,EA071-2,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +93560,Ec7,EA071,Slavery never practiced,EA071-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +93561,Ec8,EA071,Slavery never practiced,EA071-1,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +93562,Ec9,EA071,Past and present slavery,EA071-3,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +93563,Ed1,EA071,Past slavery,EA071-2,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +93564,Ed10,EA071,?,EA071-NA,,,,,, +93565,Ed13,EA071,?,EA071-NA,,,,,, +93566,Ed14,EA071,?,EA071-NA,,,,,, +93567,Ed15a,EA071,?,EA071-NA,,,,,, +93568,Ed15b,EA071,Slavery never practiced,EA071-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +93569,Ed16,EA071,?,EA071-NA,,,,,, +93570,Ed2,EA071,Past and present slavery,EA071-3,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +93571,Ed3,EA071,Past slavery,EA071-2,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +93572,Ed4,EA071,Slavery never practiced,EA071-1,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +93573,Ed5,EA071,Slavery never practiced,EA071-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93574,Ed6,EA071,Past slavery,EA071-2,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +93575,Ed7,EA071,Slavery never practiced,EA071-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +93576,Ed8,EA071,Slavery never practiced,EA071-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +93577,Ed9,EA071,?,EA071-NA,,,,,, +93578,Ee1,EA071,Past and present slavery,EA071-3,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +93579,Ee2,EA071,?,EA071-NA,,,,,, +93580,Ee3,EA071,Past slavery,EA071-2,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +93581,Ee4,EA071,Past and present slavery,EA071-3,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +93582,Ee5,EA071,Past and present slavery,EA071-3,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +93583,Ee6,EA071,Past slavery,EA071-2,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +93584,Ee7,EA071,?,EA071-NA,,,,,, +93585,Ee8,EA071,Past slavery,EA071-2,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +93586,Ef1,EA071,Slavery never practiced,EA071-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +93587,Ef10,EA071,?,EA071-NA,,,,,, +93588,Ef11,EA071,Slavery never practiced,EA071-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +93589,Ef2,EA071,Slavery never practiced,EA071-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +93590,Ef3,EA071,?,EA071-NA,,,,,, +93591,Ef4,EA071,?,EA071-NA,,,,,, +93592,Ef5,EA071,Slavery never practiced,EA071-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +93593,Ef6,EA071,Past slavery,EA071-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +93594,Ef7,EA071,Slavery never practiced,EA071-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +93595,Ef8,EA071,?,EA071-NA,,,,,, +93596,Ef9,EA071,?,EA071-NA,,,,,, +93597,Eg1,EA071,Slavery never practiced,EA071-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93598,Eg10,EA071,Slavery never practiced,EA071-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +93599,Eg11,EA071,?,EA071-NA,,,,,, +93600,Eg12,EA071,?,EA071-NA,,,,,, +93601,Eg13,EA071,Slavery never practiced,EA071-1,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93602,Eg14,EA071,Slavery never practiced,EA071-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +93603,Eg2,EA071,Slavery never practiced,EA071-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +93604,Eg3,EA071,Slavery never practiced,EA071-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +93605,Eg4,EA071,Slavery never practiced,EA071-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +93606,Eg5,EA071,Past slavery,EA071-2,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +93607,Eg6,EA071,Slavery never practiced,EA071-1,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +93608,Eg7,EA071,Slavery never practiced,EA071-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +93609,Eg8,EA071,Slavery never practiced,EA071-1,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +93610,Eg9,EA071,Slavery never practiced,EA071-1,,elwin1939,,1930,EthnographicAtlas_1967_p93, +93611,Eh1,EA071,Slavery never practiced,EA071-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +93612,Eh10,EA071,?,EA071-NA,,,,,, +93613,Eh2,EA071,Past slavery,EA071-2,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +93614,Eh3,EA071,Past slavery,EA071-2,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +93615,Eh4,EA071,Slavery never practiced,EA071-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93616,Eh5,EA071,Slavery never practiced,EA071-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +93617,Eh6,EA071,Slavery never practiced,EA071-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +93618,Eh7,EA071,Past slavery,EA071-2,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +93619,Eh8,EA071,Past slavery,EA071-2,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +93620,Eh9,EA071,Past slavery,EA071-2,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +93621,Ei1,EA071,Past slavery,EA071-2,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93622,Ei10,EA071,Past slavery,EA071-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +93623,Ei11,EA071,Slavery never practiced,EA071-1,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +93624,Ei12,EA071,Past slavery,EA071-2,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +93625,Ei13,EA071,Past and present slavery,EA071-3,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +93626,Ei14,EA071,Past slavery,EA071-2,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +93627,Ei15,EA071,?,EA071-NA,,,,,, +93628,Ei16,EA071,Slavery never practiced,EA071-1,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +93629,Ei17,EA071,?,EA071-NA,,,,,, +93630,Ei18,EA071,?,EA071-NA,,,,,, +93631,Ei19,EA071,Past and present slavery,EA071-3,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +93632,Ei2,EA071,Past slavery,EA071-2,,mills1922,,1920,EthnographicAtlas_1967_p93, +93633,Ei20,EA071,?,EA071-NA,,,,,, +93634,Ei3,EA071,Past slavery,EA071-2,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +93635,Ei4,EA071,Past and present slavery,EA071-3,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +93636,Ei5,EA071,Past slavery,EA071-2,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +93637,Ei6,EA071,?,EA071-NA,,,,,, +93638,Ei7,EA071,Past slavery,EA071-2,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +93639,Ei8,EA071,Past and present slavery,EA071-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +93640,Ei9,EA071,?,EA071-NA,,,,,, +93641,Ej1,EA071,Slavery never practiced,EA071-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +93642,Ej10,EA071,Slavery never practiced,EA071-1,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +93643,Ej11,EA071,?,EA071-NA,,,,,, +93644,Ej12,EA071,?,EA071-NA,,,,,, +93645,Ej13,EA071,Slavery never practiced,EA071-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +93646,Ej14,EA071,Slavery never practiced,EA071-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93647,Ej15,EA071,Past and present slavery,EA071-3,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +93648,Ej16,EA071,Slavery never practiced,EA071-1,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +93649,Ej2,EA071,Past and present slavery,EA071-3,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +93650,Ej3,EA071,Slavery never practiced,EA071-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +93651,Ej4,EA071,Past slavery,EA071-2,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +93652,Ej5,EA071,Past slavery,EA071-2,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +93653,Ej6,EA071,Slavery never practiced,EA071-1,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p93, +93654,Ej7,EA071,Slavery never practiced,EA071-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +93655,Ej8,EA071,Past slavery,EA071-2,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +93656,Ej9,EA071,Slavery never practiced,EA071-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +93657,Ia1,EA071,Past slavery,EA071-2,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +93658,Ia10,EA071,?,EA071-NA,,,,,, +93659,Ia11,EA071,?,EA071-NA,,,,,, +93660,Ia12,EA071,Slavery never practiced,EA071-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +93661,Ia13,EA071,Slavery never practiced,EA071-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +93662,Ia14,EA071,Slavery never practiced,EA071-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +93663,Ia15,EA071,Past slavery,EA071-2,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +93664,Ia16,EA071,Slavery never practiced,EA071-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +93665,Ia17,EA071,?,EA071-NA,,,,,, +93666,Ia18,EA071,?,EA071-NA,,,,,, +93667,Ia2,EA071,Slavery never practiced,EA071-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +93668,Ia3,EA071,Past slavery,EA071-2,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +93669,Ia4,EA071,Slavery never practiced,EA071-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +93670,Ia5,EA071,Slavery never practiced,EA071-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +93671,Ia6,EA071,Slavery never practiced,EA071-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93672,Ia7,EA071,Past slavery,EA071-2,,fox1954,,1950,EthnographicAtlas_1967_p93, +93673,Ia8,EA071,Slavery never practiced,EA071-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +93674,Ia9,EA071,?,EA071-NA,,,,,, +93675,Ib1,EA071,Past slavery,EA071-2,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93676,Ib2,EA071,Slavery never practiced,EA071-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93677,Ib3,EA071,Slavery never practiced,EA071-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +93678,Ib4,EA071,Past slavery,EA071-2,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +93679,Ib5,EA071,Slavery never practiced,EA071-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +93680,Ib6,EA071,Past slavery,EA071-2,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +93681,Ib7,EA071,Slavery never practiced,EA071-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +93682,Ib8,EA071,Slavery never practiced,EA071-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +93683,Ib9,EA071,?,EA071-NA,,,,,, +93684,Ic1,EA071,Past slavery,EA071-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93685,Ic10,EA071,Past and present slavery,EA071-3,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +93686,Ic11,EA071,Past slavery,EA071-2,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93687,Ic12,EA071,Slavery never practiced,EA071-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +93688,Ic13,EA071,?,EA071-NA,,,,,, +93689,Ic2,EA071,Past slavery,EA071-2,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p97, +93690,Ic3,EA071,Past slavery,EA071-2,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +93691,Ic4,EA071,Past slavery,EA071-2,,kruyt1921;wetering1925,,1920,Ethnology_Vol2_No1_Jan_1963, +93692,Ic5,EA071,Past slavery,EA071-2,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +93693,Ic6,EA071,Past slavery,EA071-2,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +93694,Ic7,EA071,Past slavery,EA071-2,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +93695,Ic8,EA071,Past and present slavery,EA071-3,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +93696,Ic9,EA071,Past and present slavery,EA071-3,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +93697,Id1,EA071,Slavery never practiced,EA071-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +93698,Id10,EA071,Slavery never practiced,EA071-1,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +93699,Id11,EA071,Slavery never practiced,EA071-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +93700,Id12,EA071,Slavery never practiced,EA071-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +93701,Id13,EA071,Slavery never practiced,EA071-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +93702,Id2,EA071,Slavery never practiced,EA071-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +93703,Id3,EA071,Slavery never practiced,EA071-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +93704,Id4,EA071,Slavery never practiced,EA071-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p97, +93705,Id5,EA071,Slavery never practiced,EA071-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p97, +93706,Id6,EA071,Slavery never practiced,EA071-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p97, +93707,Id7,EA071,?,EA071-NA,,,,,, +93708,Id8,EA071,Slavery never practiced,EA071-1,,roth1890,,1830,EthnographicAtlas_1967_p97, +93709,Id9,EA071,Slavery never practiced,EA071-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p97, +93710,Ie1,EA071,Slavery never practiced,EA071-1,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93711,Ie10,EA071,Slavery never practiced,EA071-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +93712,Ie11,EA071,Slavery never practiced,EA071-1,,bowers1964,,1950,EthnographicAtlas_1967_p97, +93713,Ie12,EA071,Slavery never practiced,EA071-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93714,Ie13,EA071,Slavery never practiced,EA071-1,,landtman1927,,1920,EthnographicAtlas_1967_p97, +93715,Ie14,EA071,Slavery never practiced,EA071-1,,haddon1908,,1900,EthnographicAtlas_1967_p97, +93716,Ie15,EA071,Slavery never practiced,EA071-1,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93717,Ie16,EA071,Slavery never practiced,EA071-1,,williams194041,,1940,EthnographicAtlas_1967_p97, +93718,Ie17,EA071,Slavery never practiced,EA071-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +93719,Ie18,EA071,Slavery never practiced,EA071-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +93720,Ie19,EA071,Slavery never practiced,EA071-1,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +93721,Ie2,EA071,Slavery never practiced,EA071-1,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +93722,Ie20,EA071,Slavery never practiced,EA071-1,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +93723,Ie21,EA071,Slavery never practiced,EA071-1,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +93724,Ie22,EA071,Slavery never practiced,EA071-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +93725,Ie23,EA071,Slavery never practiced,EA071-1,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +93726,Ie24,EA071,Slavery never practiced,EA071-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +93727,Ie25,EA071,Slavery never practiced,EA071-1,,williamson1912,,1920,EthnographicAtlas_1967_p97, +93728,Ie26,EA071,Slavery never practiced,EA071-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +93729,Ie27,EA071,Slavery never practiced,EA071-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +93730,Ie28,EA071,Slavery never practiced,EA071-1,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +93731,Ie29,EA071,Slavery never practiced,EA071-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93732,Ie3,EA071,Slavery never practiced,EA071-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93733,Ie30,EA071,Slavery never practiced,EA071-1,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +93734,Ie31,EA071,Slavery never practiced,EA071-1,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +93735,Ie32,EA071,Slavery never practiced,EA071-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +93736,Ie33,EA071,Slavery never practiced,EA071-1,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +93737,Ie34,EA071,?,EA071-NA,,,,,, +93738,Ie35,EA071,Slavery never practiced,EA071-1,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +93739,Ie36,EA071,?,EA071-NA,,,,,, +93740,Ie37,EA071,?,EA071-NA,,,,,, +93741,Ie38,EA071,Slavery never practiced,EA071-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +93742,Ie39,EA071,Slavery never practiced,EA071-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +93743,Ie4,EA071,Slavery never practiced,EA071-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93744,Ie5,EA071,Slavery never practiced,EA071-1,,williams1936,,1930,EthnographicAtlas_1967_p97, +93745,Ie6,EA071,Past slavery,EA071-2,,held1947,,1930,EthnographicAtlas_1967_p97, +93746,Ie7,EA071,Slavery never practiced,EA071-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +93747,Ie8,EA071,Slavery never practiced,EA071-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +93748,Ie9,EA071,Slavery never practiced,EA071-1,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +93749,If1,EA071,Slavery never practiced,EA071-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93750,If10,EA071,?,EA071-NA,,,,,, +93751,If11,EA071,Slavery never practiced,EA071-1,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +93752,If12,EA071,Slavery never practiced,EA071-1,,mason1954,,1940,EthnographicAtlas_1967_p101, +93753,If13,EA071,Slavery never practiced,EA071-1,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p101, +93754,If14,EA071,Slavery never practiced,EA071-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +93755,If15,EA071,Slavery never practiced,EA071-1,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +93756,If16,EA071,Slavery never practiced,EA071-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +93757,If17,EA071,Slavery never practiced,EA071-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +93758,If2,EA071,Slavery never practiced,EA071-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +93759,If3,EA071,Slavery never practiced,EA071-1,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +93760,If4,EA071,Slavery never practiced,EA071-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +93761,If5,EA071,Slavery never practiced,EA071-1,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +93762,If6,EA071,Slavery never practiced,EA071-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +93763,If7,EA071,Past slavery,EA071-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +93764,If8,EA071,Slavery never practiced,EA071-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +93765,If9,EA071,Slavery never practiced,EA071-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +93766,Ig1,EA071,Slavery never practiced,EA071-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +93767,Ig10,EA071,Slavery never practiced,EA071-1,,schwartz1964,,1950,EthnographicAtlas_1967_p101, +93768,Ig11,EA071,Slavery never practiced,EA071-1,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +93769,Ig12,EA071,Past and present slavery,EA071-3,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +93770,Ig13,EA071,Past slavery,EA071-2,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +93771,Ig14,EA071,Slavery never practiced,EA071-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +93772,Ig15,EA071,?,EA071-NA,,,,,, +93773,Ig16,EA071,?,EA071-NA,,,,,, +93774,Ig17,EA071,?,EA071-NA,,,,,, +93775,Ig18,EA071,?,EA071-NA,,,,,, +93776,Ig19,EA071,?,EA071-NA,,,,,, +93777,Ig2,EA071,Slavery never practiced,EA071-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +93778,Ig20,EA071,?,EA071-NA,,,,,, +93779,Ig21,EA071,Slavery never practiced,EA071-1,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +93780,Ig3,EA071,Slavery never practiced,EA071-1,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +93781,Ig4,EA071,Slavery never practiced,EA071-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +93782,Ig5,EA071,Slavery never practiced,EA071-1,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +93783,Ig6,EA071,Slavery never practiced,EA071-1,,ivens1927,,1900,EthnographicAtlas_1967_p101, +93784,Ig7,EA071,Slavery never practiced,EA071-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +93785,Ig8,EA071,?,EA071-NA,,,,,, +93786,Ig9,EA071,Slavery never practiced,EA071-1,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +93787,Ih1,EA071,Slavery never practiced,EA071-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +93788,Ih10,EA071,Slavery never practiced,EA071-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93789,Ih11,EA071,?,EA071-NA,,,,,, +93790,Ih12,EA071,?,EA071-NA,,,,,, +93791,Ih13,EA071,?,EA071-NA,,,,,, +93792,Ih14,EA071,Slavery never practiced,EA071-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +93793,Ih2,EA071,Slavery never practiced,EA071-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93794,Ih3,EA071,Slavery never practiced,EA071-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +93795,Ih4,EA071,Slavery never practiced,EA071-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93796,Ih5,EA071,Slavery never practiced,EA071-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +93797,Ih6,EA071,Slavery never practiced,EA071-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p101, +93798,Ih7,EA071,Past slavery,EA071-2,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +93799,Ih8,EA071,Slavery never practiced,EA071-1,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +93800,Ih9,EA071,Past and present slavery,EA071-3,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93801,Ii1,EA071,Slavery never practiced,EA071-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +93802,Ii10,EA071,Slavery never practiced,EA071-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +93803,Ii12,EA071,Slavery never practiced,EA071-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93804,Ii13,EA071,Slavery never practiced,EA071-1,,burrows1937,,1830,EthnographicAtlas_1967_p101, +93805,Ii14,EA071,Slavery never practiced,EA071-1,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +93806,Ii2,EA071,Slavery never practiced,EA071-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +93807,Ii3,EA071,Slavery never practiced,EA071-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +93808,Ii4,EA071,Slavery never practiced,EA071-1,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +93809,Ii5,EA071,Slavery never practiced,EA071-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +93810,Ii6,EA071,Slavery never practiced,EA071-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +93811,Ii7,EA071,Slavery never practiced,EA071-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +93812,Ii8,EA071,Slavery never practiced,EA071-1,,burrows1936,,1840,EthnographicAtlas_1967_p101, +93813,Ii9,EA071,Slavery never practiced,EA071-1,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +93814,Ij1,EA071,Slavery never practiced,EA071-1,,buck1934,,1820,EthnographicAtlas_1967_p101, +93815,Ij10,EA071,Slavery never practiced,EA071-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +93816,Ij2,EA071,Past and present slavery,EA071-3,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +93817,Ij3,EA071,Slavery never practiced,EA071-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +93818,Ij4,EA071,Slavery never practiced,EA071-1,,buck1932a,,1850,EthnographicAtlas_1967_p105, +93819,Ij5,EA071,Slavery never practiced,EA071-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +93820,Ij6,EA071,Past slavery,EA071-2,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +93821,Ij7,EA071,Slavery never practiced,EA071-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +93822,Ij8,EA071,Slavery never practiced,EA071-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +93823,Ij9,EA071,Past and present slavery,EA071-3,,metraux1940,,1860,EthnographicAtlas_1967_p105, +93824,Na1,EA071,Slavery never practiced,EA071-1,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +93825,Na10,EA071,Past slavery,EA071-2,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +93826,Na11,EA071,Slavery never practiced,EA071-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +93827,Na12,EA071,Slavery never practiced,EA071-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +93828,Na13,EA071,Slavery never practiced,EA071-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +93829,Na14,EA071,Slavery never practiced,EA071-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +93830,Na15,EA071,Slavery never practiced,EA071-1,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +93831,Na16,EA071,Slavery never practiced,EA071-1,,osgood1931,,1860,EthnographicAtlas_1967_p105, +93832,Na17,EA071,Slavery never practiced,EA071-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93833,Na19,EA071,Past and present slavery,EA071-3,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +93834,Na2,EA071,Slavery never practiced,EA071-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +93835,Na20,EA071,Past and present slavery,EA071-3,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +93836,Na21,EA071,Slavery never practiced,EA071-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +93837,Na22,EA071,Slavery never practiced,EA071-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +93838,Na23,EA071,Slavery never practiced,EA071-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +93839,Na24,EA071,Slavery never practiced,EA071-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +93840,Na25,EA071,Slavery never practiced,EA071-1,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +93841,Na26,EA071,Slavery never practiced,EA071-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +93842,Na27,EA071,Past and present slavery,EA071-3,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +93843,Na28,EA071,Slavery never practiced,EA071-1,,jenness1937,,1880,EthnographicAtlas_1967_p105, +93844,Na29,EA071,Slavery never practiced,EA071-1,,goddard1916,,1850,EthnographicAtlas_1967_p105, +93845,Na3,EA071,Slavery never practiced,EA071-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +93846,Na30,EA071,Slavery never practiced,EA071-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +93847,Na31,EA071,Slavery never practiced,EA071-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +93848,Na32,EA071,Slavery never practiced,EA071-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +93849,Na33,EA071,Slavery never practiced,EA071-1,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +93850,Na34,EA071,Slavery never practiced,EA071-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +93851,Na35,EA071,Slavery never practiced,EA071-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +93852,Na36,EA071,Slavery never practiced,EA071-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +93853,Na37,EA071,Slavery never practiced,EA071-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +93854,Na38,EA071,Slavery never practiced,EA071-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +93855,Na39,EA071,Slavery never practiced,EA071-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +93856,Na4,EA071,Slavery never practiced,EA071-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +93857,Na40,EA071,Slavery never practiced,EA071-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +93858,Na41,EA071,Slavery never practiced,EA071-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +93859,Na42,EA071,?,EA071-NA,,,,,, +93860,Na43,EA071,Slavery never practiced,EA071-1,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +93861,Na44,EA071,Slavery never practiced,EA071-1,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +93862,Na45,EA071,Slavery never practiced,EA071-1,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +93863,Na5,EA071,Slavery never practiced,EA071-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +93864,Na6,EA071,Slavery never practiced,EA071-1,,lantis1946,,1930,EthnographicAtlas_1967_p105, +93865,Na7,EA071,Slavery never practiced,EA071-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +93866,Na8,EA071,Slavery never practiced,EA071-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +93867,Na9,EA071,Past and present slavery,EA071-3,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93868,Nb1,EA071,Past slavery,EA071-2,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +93869,Nb10,EA071,Past and present slavery,EA071-3,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +93870,Nb11,EA071,Past and present slavery,EA071-3,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +93871,Nb12,EA071,Past and present slavery,EA071-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +93872,Nb13,EA071,Past and present slavery,EA071-3,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +93873,Nb14,EA071,Past and present slavery,EA071-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +93874,Nb15,EA071,Past and present slavery,EA071-3,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +93875,Nb16,EA071,Past and present slavery,EA071-3,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +93876,Nb17,EA071,Past and present slavery,EA071-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +93877,Nb18,EA071,Past and present slavery,EA071-3,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +93878,Nb19,EA071,Past and present slavery,EA071-3,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +93879,Nb2,EA071,Past slavery,EA071-2,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +93880,Nb20,EA071,Past and present slavery,EA071-3,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +93881,Nb21,EA071,Past and present slavery,EA071-3,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +93882,Nb22,EA071,Past and present slavery,EA071-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +93883,Nb23,EA071,Past and present slavery,EA071-3,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +93884,Nb24,EA071,Past and present slavery,EA071-3,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +93885,Nb25,EA071,Past and present slavery,EA071-3,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +93886,Nb26,EA071,Past and present slavery,EA071-3,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +93887,Nb27,EA071,Past and present slavery,EA071-3,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +93888,Nb28,EA071,Past and present slavery,EA071-3,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +93889,Nb29,EA071,Past and present slavery,EA071-3,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +93890,Nb3,EA071,Past slavery,EA071-2,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +93891,Nb30,EA071,Past and present slavery,EA071-3,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +93892,Nb31,EA071,Past and present slavery,EA071-3,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +93893,Nb32,EA071,Past and present slavery,EA071-3,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +93894,Nb33,EA071,Slavery never practiced,EA071-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +93895,Nb34,EA071,Past and present slavery,EA071-3,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +93896,Nb35,EA071,Past and present slavery,EA071-3,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +93897,Nb36,EA071,Past and present slavery,EA071-3,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +93898,Nb37,EA071,?,EA071-NA,,,,,, +93899,Nb38,EA071,?,EA071-NA,,,,,, +93900,Nb39,EA071,Slavery never practiced,EA071-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +93901,Nb4,EA071,Past and present slavery,EA071-3,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +93902,Nb5,EA071,Past slavery,EA071-2,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +93903,Nb6,EA071,Past and present slavery,EA071-3,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +93904,Nb7,EA071,Past slavery,EA071-2,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +93905,Nb8,EA071,Past slavery,EA071-2,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +93906,Nb9,EA071,Past and present slavery,EA071-3,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +93907,Nc1,EA071,Slavery never practiced,EA071-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +93908,Nc10,EA071,Slavery never practiced,EA071-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +93909,Nc11,EA071,Slavery never practiced,EA071-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +93910,Nc12,EA071,Slavery never practiced,EA071-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +93911,Nc13,EA071,Slavery never practiced,EA071-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +93912,Nc14,EA071,Slavery never practiced,EA071-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +93913,Nc15,EA071,Slavery never practiced,EA071-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +93914,Nc16,EA071,Slavery never practiced,EA071-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +93915,Nc17,EA071,Slavery never practiced,EA071-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +93916,Nc18,EA071,Slavery never practiced,EA071-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +93917,Nc19,EA071,Slavery never practiced,EA071-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +93918,Nc2,EA071,Slavery never practiced,EA071-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +93919,Nc20,EA071,Past and present slavery,EA071-3,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +93920,Nc21,EA071,Slavery never practiced,EA071-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +93921,Nc22,EA071,Slavery never practiced,EA071-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +93922,Nc23,EA071,Slavery never practiced,EA071-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +93923,Nc24,EA071,Slavery never practiced,EA071-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +93924,Nc25,EA071,Slavery never practiced,EA071-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +93925,Nc26,EA071,Slavery never practiced,EA071-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +93926,Nc27,EA071,Slavery never practiced,EA071-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +93927,Nc28,EA071,Slavery never practiced,EA071-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +93928,Nc29,EA071,Slavery never practiced,EA071-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +93929,Nc3,EA071,Slavery never practiced,EA071-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +93930,Nc30,EA071,Slavery never practiced,EA071-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +93931,Nc31,EA071,Slavery never practiced,EA071-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +93932,Nc32,EA071,Slavery never practiced,EA071-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +93933,Nc33,EA071,Slavery never practiced,EA071-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +93934,Nc34,EA071,Slavery never practiced,EA071-1,,meigs1939,,1880,EthnographicAtlas_1967_p109, +93935,Nc4,EA071,Slavery never practiced,EA071-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +93936,Nc5,EA071,Slavery never practiced,EA071-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +93937,Nc6,EA071,Slavery never practiced,EA071-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +93938,Nc7,EA071,Slavery never practiced,EA071-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +93939,Nc8,EA071,Past and present slavery,EA071-3,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +93940,Nc9,EA071,Past and present slavery,EA071-3,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +93941,Nd1,EA071,Past slavery,EA071-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +93942,Nd10,EA071,Past and present slavery,EA071-3,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +93943,Nd11,EA071,Past and present slavery,EA071-3,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +93944,Nd12,EA071,Past and present slavery,EA071-3,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +93945,Nd13,EA071,Slavery never practiced,EA071-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +93946,Nd14,EA071,Past and present slavery,EA071-3,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +93947,Nd15,EA071,Slavery never practiced,EA071-1,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +93948,Nd16,EA071,Past and present slavery,EA071-3,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +93949,Nd17,EA071,Past and present slavery,EA071-3,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +93950,Nd18,EA071,Past and present slavery,EA071-3,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +93951,Nd19,EA071,Past and present slavery,EA071-3,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +93952,Nd2,EA071,Slavery never practiced,EA071-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +93953,Nd20,EA071,Past and present slavery,EA071-3,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +93954,Nd21,EA071,Slavery never practiced,EA071-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +93955,Nd22,EA071,Slavery never practiced,EA071-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +93956,Nd23,EA071,Slavery never practiced,EA071-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +93957,Nd24,EA071,Slavery never practiced,EA071-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +93958,Nd25,EA071,Slavery never practiced,EA071-1,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +93959,Nd26,EA071,Slavery never practiced,EA071-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +93960,Nd27,EA071,Slavery never practiced,EA071-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +93961,Nd28,EA071,Slavery never practiced,EA071-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +93962,Nd29,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +93963,Nd3,EA071,Slavery never practiced,EA071-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +93964,Nd30,EA071,Slavery never practiced,EA071-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +93965,Nd31,EA071,Slavery never practiced,EA071-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +93966,Nd32,EA071,Slavery never practiced,EA071-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +93967,Nd33,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +93968,Nd34,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +93969,Nd35,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +93970,Nd36,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +93971,Nd37,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +93972,Nd38,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +93973,Nd39,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +93974,Nd4,EA071,Slavery never practiced,EA071-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +93975,Nd40,EA071,Slavery never practiced,EA071-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +93976,Nd41,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +93977,Nd42,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +93978,Nd43,EA071,Slavery never practiced,EA071-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +93979,Nd44,EA071,Slavery never practiced,EA071-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +93980,Nd45,EA071,Slavery never practiced,EA071-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +93981,Nd46,EA071,Slavery never practiced,EA071-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +93982,Nd47,EA071,Slavery never practiced,EA071-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +93983,Nd48,EA071,Slavery never practiced,EA071-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +93984,Nd49,EA071,Slavery never practiced,EA071-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +93985,Nd5,EA071,Slavery never practiced,EA071-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +93986,Nd50,EA071,Slavery never practiced,EA071-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +93987,Nd51,EA071,Slavery never practiced,EA071-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +93988,Nd52,EA071,Slavery never practiced,EA071-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +93989,Nd53,EA071,Slavery never practiced,EA071-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +93990,Nd54,EA071,Slavery never practiced,EA071-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +93991,Nd55,EA071,Slavery never practiced,EA071-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +93992,Nd56,EA071,Slavery never practiced,EA071-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +93993,Nd57,EA071,Slavery never practiced,EA071-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +93994,Nd58,EA071,Slavery never practiced,EA071-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +93995,Nd59,EA071,Slavery never practiced,EA071-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +93996,Nd6,EA071,Slavery never practiced,EA071-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +93997,Nd60,EA071,Slavery never practiced,EA071-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +93998,Nd61,EA071,Slavery never practiced,EA071-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +93999,Nd62,EA071,Slavery never practiced,EA071-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +94000,Nd63,EA071,Slavery never practiced,EA071-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +94001,Nd64,EA071,Slavery never practiced,EA071-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +94002,Nd65,EA071,Slavery never practiced,EA071-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +94003,Nd66,EA071,Slavery never practiced,EA071-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +94004,Nd67,EA071,Slavery never practiced,EA071-1,,gifford1936,,1870,EthnographicAtlas_1967_p113, +94005,Nd7,EA071,Past slavery,EA071-2,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +94006,Nd8,EA071,Past slavery,EA071-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +94007,Nd9,EA071,Past and present slavery,EA071-3,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +94008,Ne1,EA071,Slavery never practiced,EA071-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +94009,Ne10,EA071,Slavery never practiced,EA071-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +94010,Ne11,EA071,Slavery never practiced,EA071-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +94011,Ne12,EA071,Slavery never practiced,EA071-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +94012,Ne13,EA071,Slavery never practiced,EA071-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +94013,Ne14,EA071,Slavery never practiced,EA071-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +94014,Ne15,EA071,Slavery never practiced,EA071-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +94015,Ne16,EA071,Slavery never practiced,EA071-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +94016,Ne17,EA071,Slavery never practiced,EA071-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +94017,Ne18,EA071,Slavery never practiced,EA071-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +94018,Ne19,EA071,Slavery never practiced,EA071-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +94019,Ne2,EA071,Slavery never practiced,EA071-1,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +94020,Ne20,EA071,Slavery never practiced,EA071-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +94021,Ne21,EA071,?,EA071-NA,,,,,, +94022,Ne3,EA071,Past slavery,EA071-2,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +94023,Ne4,EA071,Slavery never practiced,EA071-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +94024,Ne5,EA071,Slavery never practiced,EA071-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +94025,Ne6,EA071,Slavery never practiced,EA071-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +94026,Ne7,EA071,Slavery never practiced,EA071-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +94027,Ne8,EA071,Past and present slavery,EA071-3,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +94028,Ne9,EA071,Slavery never practiced,EA071-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +94029,Nf10,EA071,Slavery never practiced,EA071-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +94030,Nf11,EA071,Slavery never practiced,EA071-1,,whitman1937,,1870,EthnographicAtlas_1967_p117, +94031,Nf12,EA071,Slavery never practiced,EA071-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +94032,Nf13,EA071,Past and present slavery,EA071-3,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94033,Nf14,EA071,?,EA071-NA,,,,,, +94034,Nf15,EA071,?,EA071-NA,,,,,, +94035,Nf2,EA071,Slavery never practiced,EA071-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +94036,Nf3,EA071,Past slavery,EA071-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +94037,Nf4,EA071,Past slavery,EA071-2,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +94038,Nf5,EA071,Slavery never practiced,EA071-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +94039,Nf6,EA071,Past slavery,EA071-2,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +94040,Nf7,EA071,Past slavery,EA071-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94041,Nf8,EA071,Past and present slavery,EA071-3,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +94042,Nf9,EA071,Past slavery,EA071-2,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p117, +94043,Ng1,EA071,Slavery never practiced,EA071-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +94044,Ng10,EA071,Slavery never practiced,EA071-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +94045,Ng11,EA071,Slavery never practiced,EA071-1,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +94046,Ng12,EA071,Slavery never practiced,EA071-1,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +94047,Ng13,EA071,?,EA071-NA,,,,,, +94048,Ng14,EA071,?,EA071-NA,,,,,, +94049,Ng15,EA071,?,EA071-NA,,,,,, +94050,Ng2,EA071,Slavery never practiced,EA071-1,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +94051,Ng3,EA071,Slavery never practiced,EA071-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +94052,Ng4,EA071,Slavery never practiced,EA071-1,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +94053,Ng5,EA071,Slavery never practiced,EA071-1,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +94054,Ng6,EA071,Slavery never practiced,EA071-1,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +94055,Ng7,EA071,?,EA071-NA,,,,,, +94056,Ng8,EA071,?,EA071-NA,,,,,, +94057,Ng9,EA071,Slavery never practiced,EA071-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +94058,Nh1,EA071,Slavery never practiced,EA071-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +94059,Nh10,EA071,Slavery never practiced,EA071-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +94060,Nh11,EA071,Slavery never practiced,EA071-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +94061,Nh12,EA071,Slavery never practiced,EA071-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +94062,Nh13,EA071,Slavery never practiced,EA071-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +94063,Nh14,EA071,Slavery never practiced,EA071-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +94064,Nh15,EA071,Past and present slavery,EA071-3,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +94065,Nh16,EA071,Slavery never practiced,EA071-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94066,Nh17,EA071,Slavery never practiced,EA071-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +94067,Nh18,EA071,Slavery never practiced,EA071-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94068,Nh19,EA071,Past and present slavery,EA071-3,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +94069,Nh2,EA071,Slavery never practiced,EA071-1,,dozier1954,,1950,EthnographicAtlas_1967_p117, +94070,Nh20,EA071,?,EA071-NA,,,,,, +94071,Nh21,EA071,Past and present slavery,EA071-3,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94072,Nh22,EA071,?,EA071-NA,,,,,, +94073,Nh23,EA071,Slavery never practiced,EA071-1,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +94074,Nh24,EA071,Slavery never practiced,EA071-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +94075,Nh25,EA071,Slavery never practiced,EA071-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +94076,Nh26,EA071,?,EA071-NA,,,,,, +94077,Nh27,EA071,?,EA071-NA,,,,,, +94078,Nh3,EA071,Past slavery,EA071-2,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +94079,Nh4,EA071,Slavery never practiced,EA071-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +94080,Nh5,EA071,Slavery never practiced,EA071-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +94081,Nh6,EA071,Slavery never practiced,EA071-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +94082,Nh7,EA071,Slavery never practiced,EA071-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +94083,Nh8,EA071,Slavery never practiced,EA071-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +94084,Nh9,EA071,Slavery never practiced,EA071-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +94085,Ni1,EA071,Slavery never practiced,EA071-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +94086,Ni2,EA071,Slavery never practiced,EA071-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +94087,Ni3,EA071,Slavery never practiced,EA071-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +94088,Ni4,EA071,Slavery never practiced,EA071-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +94089,Ni5,EA071,Slavery never practiced,EA071-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +94090,Ni6,EA071,Slavery never practiced,EA071-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +94091,Ni7,EA071,Slavery never practiced,EA071-1,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +94092,Ni8,EA071,?,EA071-NA,,,,,, +94093,Ni9,EA071,?,EA071-NA,,,,,, +94094,Nj1,EA071,Slavery never practiced,EA071-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94095,Nj10,EA071,Slavery never practiced,EA071-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94096,Nj11,EA071,?,EA071-NA,,,,,, +94097,Nj12,EA071,?,EA071-NA,,,,,, +94098,Nj13,EA071,?,EA071-NA,,,,,, +94099,Nj14,EA071,?,EA071-NA,,,,,, +94100,Nj2,EA071,Past and present slavery,EA071-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +94101,Nj3,EA071,Slavery never practiced,EA071-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +94102,Nj4,EA071,Past slavery,EA071-2,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p121, +94103,Nj5,EA071,?,EA071-NA,,,,,, +94104,Nj6,EA071,Slavery never practiced,EA071-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +94105,Nj7,EA071,Slavery never practiced,EA071-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94106,Nj8,EA071,?,EA071-NA,,,,,, +94107,Nj9,EA071,Slavery never practiced,EA071-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +94108,Sa1,EA071,Past slavery,EA071-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +94109,Sa10,EA071,Slavery never practiced,EA071-1,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +94110,Sa11,EA071,Past and present slavery,EA071-3,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +94111,Sa12,EA071,Slavery never practiced,EA071-1,,stone1948,,1948,EthnographicAtlas_1967_p121, +94112,Sa13,EA071,Past slavery,EA071-2,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +94113,Sa14,EA071,?,EA071-NA,,,,,, +94114,Sa15,EA071,?,EA071-NA,,,,,, +94115,Sa16,EA071,?,EA071-NA,,,,,, +94116,Sa17,EA071,?,EA071-NA,,,,,, +94117,Sa2,EA071,?,EA071-NA,,,,,, +94118,Sa3,EA071,Slavery never practiced,EA071-1,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +94119,Sa4,EA071,Slavery never practiced,EA071-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +94120,Sa5,EA071,Slavery never practiced,EA071-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +94121,Sa6,EA071,Past and present slavery,EA071-3,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +94122,Sa7,EA071,Slavery never practiced,EA071-1,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +94123,Sa8,EA071,Slavery never practiced,EA071-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +94124,Sa9,EA071,Slavery never practiced,EA071-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +94125,Sb1,EA071,Past and present slavery,EA071-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +94126,Sb2,EA071,Slavery never practiced,EA071-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +94127,Sb3,EA071,?,EA071-NA,,,,,, +94128,Sb4,EA071,Slavery never practiced,EA071-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +94129,Sb5,EA071,Slavery never practiced,EA071-1,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +94130,Sb6,EA071,Past and present slavery,EA071-3,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +94131,Sb7,EA071,Slavery never practiced,EA071-1,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p121, +94132,Sb8,EA071,Past and present slavery,EA071-3,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +94133,Sb9,EA071,Past slavery,EA071-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +94134,Sc1,EA071,Slavery never practiced,EA071-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +94135,Sc10,EA071,Past and present slavery,EA071-3,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p121, +94136,Sc11,EA071,?,EA071-NA,,,,,, +94137,Sc12,EA071,?,EA071-NA,,,,,, +94138,Sc13,EA071,Slavery never practiced,EA071-1,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +94139,Sc14,EA071,?,EA071-NA,,,,,, +94140,Sc15,EA071,Past and present slavery,EA071-3,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +94141,Sc16,EA071,Slavery never practiced,EA071-1,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +94142,Sc17,EA071,Slavery never practiced,EA071-1,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +94143,Sc18,EA071,Slavery never practiced,EA071-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +94144,Sc2,EA071,Slavery never practiced,EA071-1,,leedsnd,,1950,EthnographicAtlas_1967_p121, +94145,Sc3,EA071,Slavery never practiced,EA071-1,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +94146,Sc4,EA071,Slavery never practiced,EA071-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +94147,Sc5,EA071,Slavery never practiced,EA071-1,,farabee1918,,1900,EthnographicAtlas_1967_p121, +94148,Sc6,EA071,Slavery never practiced,EA071-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94149,Sc7,EA071,Slavery never practiced,EA071-1,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +94150,Sc8,EA071,Slavery never practiced,EA071-1,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +94151,Sc9,EA071,Slavery never practiced,EA071-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +94152,Sd1,EA071,Slavery never practiced,EA071-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94153,Sd2,EA071,Slavery never practiced,EA071-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +94154,Sd3,EA071,Slavery never practiced,EA071-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +94155,Sd4,EA071,Slavery never practiced,EA071-1,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +94156,Sd5,EA071,Slavery never practiced,EA071-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +94157,Sd6,EA071,Slavery never practiced,EA071-1,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +94158,Sd7,EA071,Slavery never practiced,EA071-1,,fock1963,,1950,EthnographicAtlas_1967_p121, +94159,Sd8,EA071,Slavery never practiced,EA071-1,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +94160,Sd9,EA071,Slavery never practiced,EA071-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94161,Se1,EA071,Slavery never practiced,EA071-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +94162,Se10,EA071,Past and present slavery,EA071-3,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +94163,Se11,EA071,Slavery never practiced,EA071-1,,prost1965,,1960,EthnographicAtlas_1967_p125, +94164,Se12,EA071,Past slavery,EA071-2,,fulop1955,,1950,Ethnology_Vol4_No4_Oct_1965, +94165,Se2,EA071,Slavery never practiced,EA071-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +94166,Se3,EA071,Slavery never practiced,EA071-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +94167,Se4,EA071,Slavery never practiced,EA071-1,,fejos1943,,1940,EthnographicAtlas_1967_p121, +94168,Se5,EA071,Past and present slavery,EA071-3,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +94169,Se6,EA071,Past and present slavery,EA071-3,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +94170,Se7,EA071,Slavery never practiced,EA071-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94171,Se8,EA071,Slavery never practiced,EA071-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +94172,Se9,EA071,Past and present slavery,EA071-3,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +94173,Sf1,EA071,Slavery never practiced,EA071-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +94174,Sf2,EA071,Slavery never practiced,EA071-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +94175,Sf3,EA071,Slavery never practiced,EA071-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +94176,Sf4,EA071,?,EA071-NA,,,,,, +94177,Sf5,EA071,Slavery never practiced,EA071-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +94178,Sf6,EA071,Past and present slavery,EA071-3,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +94179,Sf7,EA071,Slavery never practiced,EA071-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +94180,Sf8,EA071,?,EA071-NA,,,,,, +94181,Sf9,EA071,?,EA071-NA,,,,,, +94182,Sg1,EA071,Slavery never practiced,EA071-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +94183,Sg2,EA071,Past slavery,EA071-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94184,Sg3,EA071,Slavery never practiced,EA071-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +94185,Sg4,EA071,Past and present slavery,EA071-3,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +94186,Sg5,EA071,Slavery never practiced,EA071-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94187,Sh1,EA071,Slavery never practiced,EA071-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +94188,Sh2,EA071,Past and present slavery,EA071-3,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +94189,Sh3,EA071,Past and present slavery,EA071-3,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +94190,Sh4,EA071,Past and present slavery,EA071-3,,oberg1949,,1940,EthnographicAtlas_1967_p125, +94191,Sh5,EA071,Slavery never practiced,EA071-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +94192,Sh6,EA071,Past and present slavery,EA071-3,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +94193,Sh7,EA071,?,EA071-NA,,,,,, +94194,Sh8,EA071,Slavery never practiced,EA071-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +94195,Sh9,EA071,Slavery never practiced,EA071-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +94196,Si1,EA071,Slavery never practiced,EA071-1,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94197,Si10,EA071,Slavery never practiced,EA071-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +94198,Si2,EA071,Past slavery,EA071-2,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +94199,Si3,EA071,Slavery never practiced,EA071-1,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94200,Si4,EA071,Slavery never practiced,EA071-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +94201,Si5,EA071,Slavery never practiced,EA071-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +94202,Si6,EA071,Slavery never practiced,EA071-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +94203,Si7,EA071,Past and present slavery,EA071-3,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +94204,Si8,EA071,Slavery never practiced,EA071-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +94205,Si9,EA071,?,EA071-NA,,,,,, +94206,Sj1,EA071,Past and present slavery,EA071-3,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +94207,Sj10,EA071,?,EA071-NA,,,,,, +94208,Sj11,EA071,Slavery never practiced,EA071-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +94209,Sj2,EA071,Slavery never practiced,EA071-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +94210,Sj3,EA071,Slavery never practiced,EA071-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +94211,Sj4,EA071,Slavery never practiced,EA071-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +94212,Sj5,EA071,Slavery never practiced,EA071-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +94213,Sj6,EA071,Slavery never practiced,EA071-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94214,Sj7,EA071,Slavery never practiced,EA071-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +94215,Sj8,EA071,Past and present slavery,EA071-3,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +94216,Sj9,EA071,Slavery never practiced,EA071-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +94217,ch12,EA071,Slavery never practiced,EA071-1,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +94218,ch13,EA071,Slavery never practiced,EA071-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +94219,ch14,EA071,Slavery never practiced,EA071-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +94220,ch15,EA071,Past slavery,EA071-2,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +94221,ch16,EA071,Slavery never practiced,EA071-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +94222,ch17,EA071,Past slavery,EA071-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +94223,ch18,EA071,Slavery never practiced,EA071-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +94224,ch19,EA071,Past slavery,EA071-2,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +94225,ch20,EA071,Past slavery,EA071-2,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +94226,ch21,EA071,Past slavery,EA071-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +94227,ch22,EA071,Past slavery,EA071-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +94228,ch23,EA071,Slavery never practiced,EA071-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +94229,ch24,EA071,Past slavery,EA071-2,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +94230,ch25,EA071,Past slavery,EA071-2,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +94231,ch26,EA071,Slavery never practiced,EA071-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +94232,ch27,EA071,Past slavery,EA071-2,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +94233,ch28,EA071,Slavery never practiced,EA071-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +94234,ec12,EA071,Slavery never practiced,EA071-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +94235,ec13,EA071,Past and present slavery,EA071-3,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +94236,ec14,EA071,Past and present slavery,EA071-3,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +94237,ec15,EA071,Slavery never practiced,EA071-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +94238,ec16,EA071,Slavery never practiced,EA071-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +94239,ec17,EA071,Slavery never practiced,EA071-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +94240,ec18,EA071,Past and present slavery,EA071-3,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +94241,ec19,EA071,Slavery never practiced,EA071-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +94242,ec20,EA071,Slavery never practiced,EA071-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +94243,ec21,EA071,Slavery never practiced,EA071-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +94244,Aa1,EA072,Patrilineal heir,EA072-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +94245,Aa2,EA072,Nonhered: inf. consensus,EA072-7,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +94246,Aa3,EA072,Patrilineal heir,EA072-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +94247,Aa4,EA072,Patrilineal heir,EA072-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +94248,Aa5,EA072,Absence of office,EA072-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +94249,Aa6,EA072,?,EA072-NA,,,,,, +94250,Aa7,EA072,Patrilineal heir,EA072-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +94251,Aa8,EA072,?,EA072-NA,,,,,, +94252,Aa9,EA072,Nonhered: seniority,EA072-4,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +94253,Ab1,EA072,Patrilineal heir,EA072-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +94254,Ab10,EA072,Patrilineal heir,EA072-1,,hunter1936,,1936,EthnographicAtlas_1967_p65, +94255,Ab11,EA072,Patrilineal heir,EA072-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +94256,Ab12,EA072,Patrilineal heir,EA072-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +94257,Ab13,EA072,Patrilineal heir,EA072-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +94258,Ab14,EA072,?,EA072-NA,,,,,, +94259,Ab15,EA072,Patrilineal heir,EA072-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +94260,Ab16,EA072,Patrilineal heir,EA072-1,,earthy1933,,1930,EthnographicAtlas_1967_p65, +94261,Ab17,EA072,Patrilineal heir,EA072-1,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +94262,Ab18,EA072,Patrilineal heir,EA072-1,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +94263,Ab19,EA072,Nonhered: appointed by auth.,EA072-3,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +94264,Ab2,EA072,Patrilineal heir,EA072-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +94265,Ab20,EA072,Nonhered: appointed by auth.,EA072-3,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +94266,Ab21a,EA072,Patrilineal heir,EA072-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +94267,Ab21b,EA072,?,EA072-NA,,,,,, +94268,Ab22,EA072,?,EA072-NA,,,,,, +94269,Ab3,EA072,Patrilineal heir,EA072-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +94270,Ab4,EA072,Patrilineal heir,EA072-1,,junod1927,,1920,EthnographicAtlas_1967_p65, +94271,Ab5,EA072,Patrilineal heir,EA072-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +94272,Ab6,EA072,Patrilineal heir,EA072-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +94273,Ab7,EA072,Matrilineal heir,EA072-2,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +94274,Ab8,EA072,Patrilineal heir,EA072-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +94275,Ab9,EA072,Nonhered: appointed by auth.,EA072-3,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +94276,Ac1,EA072,Matrilineal heir,EA072-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +94277,Ac10,EA072,Matrilineal heir,EA072-2,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +94278,Ac11,EA072,Matrilineal heir,EA072-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +94279,Ac12,EA072,Matrilineal heir,EA072-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +94280,Ac13,EA072,Matrilineal heir,EA072-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +94281,Ac14,EA072,Matrilineal heir,EA072-2,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +94282,Ac15,EA072,Matrilineal heir,EA072-2,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +94283,Ac16,EA072,Matrilineal heir,EA072-2,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +94284,Ac17,EA072,Matrilineal heir,EA072-2,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +94285,Ac18,EA072,Matrilineal heir,EA072-2,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +94286,Ac19,EA072,Nonhered: election,EA072-6,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +94287,Ac2,EA072,Matrilineal heir,EA072-2,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +94288,Ac20,EA072,Matrilineal heir,EA072-2,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +94289,Ac21,EA072,Matrilineal heir,EA072-2,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +94290,Ac22,EA072,Matrilineal heir,EA072-2,,mertens1935,,1930,EthnographicAtlas_1967_p65, +94291,Ac23,EA072,Matrilineal heir,EA072-2,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +94292,Ac24,EA072,Matrilineal heir,EA072-2,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +94293,Ac25,EA072,Matrilineal heir,EA072-2,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +94294,Ac26,EA072,Matrilineal heir,EA072-2,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +94295,Ac27,EA072,Matrilineal heir,EA072-2,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +94296,Ac28,EA072,Matrilineal heir,EA072-2,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +94297,Ac29,EA072,?,EA072-NA,,,,,, +94298,Ac3,EA072,Matrilineal heir,EA072-2,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +94299,Ac30,EA072,Matrilineal heir,EA072-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +94300,Ac31,EA072,Nonhered: appointed by auth.,EA072-3,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +94301,Ac32,EA072,Matrilineal heir,EA072-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +94302,Ac33,EA072,Matrilineal heir,EA072-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +94303,Ac34,EA072,Matrilineal heir,EA072-2,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +94304,Ac35,EA072,?,EA072-NA,,,,,, +94305,Ac36,EA072,Patrilineal heir,EA072-1,Formerly matrilineal,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +94306,Ac37,EA072,Matrilineal heir,EA072-2,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +94307,Ac38,EA072,Matrilineal heir,EA072-2,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +94308,Ac39,EA072,Matrilineal heir,EA072-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +94309,Ac4,EA072,Nonhered: seniority,EA072-4,The eldest lineage head succeeds,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +94310,Ac40,EA072,Matrilineal heir,EA072-2,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +94311,Ac41,EA072,?,EA072-NA,Matrilineal,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +94312,Ac42,EA072,?,EA072-NA,,,,,, +94313,Ac43,EA072,?,EA072-NA,,,,,, +94314,Ac5,EA072,Matrilineal heir,EA072-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +94315,Ac6,EA072,Matrilineal heir,EA072-2,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +94316,Ac7,EA072,Matrilineal heir,EA072-2,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +94317,Ac8,EA072,Matrilineal heir,EA072-2,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +94318,Ac9,EA072,?,EA072-NA,,,,,, +94319,Ad1,EA072,Patrilineal heir,EA072-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +94320,Ad10,EA072,Patrilineal heir,EA072-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +94321,Ad11,EA072,Nonhered: appointed by auth.,EA072-3,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +94322,Ad12,EA072,Absence of office,EA072-9,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +94323,Ad13,EA072,?,EA072-NA,,,,,, +94324,Ad14,EA072,Matrilineal heir,EA072-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +94325,Ad15,EA072,Patrilineal heir,EA072-1,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +94326,Ad16,EA072,Nonhered: appointed by auth.,EA072-3,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +94327,Ad17,EA072,Patrilineal heir,EA072-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +94328,Ad18,EA072,Nonhered: appointed by auth.,EA072-3,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +94329,Ad19,EA072,Nonhered: election,EA072-6,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +94330,Ad2,EA072,Patrilineal heir,EA072-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +94331,Ad20,EA072,Patrilineal heir,EA072-1,"But formerly 'matrilineal heir' (code ""2"") in some chiefdoms",blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +94332,Ad21,EA072,Nonhered: election,EA072-6,Nq in the royal family [sic Gray (1999)],maurice193538,,1930,EthnographicAtlas_1967_p69, +94333,Ad22,EA072,Nonhered: appointed by auth.,EA072-3,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +94334,Ad23,EA072,Patrilineal heir,EA072-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +94335,Ad24,EA072,Patrilineal heir,EA072-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +94336,Ad25,EA072,?,EA072-NA,,,,,, +94337,Ad26,EA072,Absence of office,EA072-9,,sick1916,,1910,EthnographicAtlas_1967_p69, +94338,Ad27,EA072,Nonhered: appointed by auth.,EA072-3,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +94339,Ad28,EA072,?,EA072-NA,,,,,, +94340,Ad29,EA072,Nonhered: election,EA072-6,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +94341,Ad3,EA072,Patrilineal heir,EA072-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +94342,Ad30,EA072,Patrilineal heir,EA072-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +94343,Ad31,EA072,Absence of office,EA072-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +94344,Ad32,EA072,Absence of office,EA072-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +94345,Ad33,EA072,Absence of office,EA072-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +94346,Ad34,EA072,Absence of office,EA072-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +94347,Ad35,EA072,Absence of office,EA072-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +94348,Ad36,EA072,Patrilineal heir,EA072-1,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +94349,Ad37,EA072,?,EA072-NA,,,,,, +94350,Ad38,EA072,?,EA072-NA,,,,,, +94351,Ad39,EA072,Nonhered: election,EA072-6,,gray1963,,1950,EthnographicAtlas_1967_p69, +94352,Ad4,EA072,Matrilineal heir,EA072-2,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +94353,Ad40,EA072,?,EA072-NA,,,,,, +94354,Ad41,EA072,?,EA072-NA,,,,,, +94355,Ad42,EA072,Patrilineal heir,EA072-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +94356,Ad43,EA072,?,EA072-NA,,,,,, +94357,Ad44,EA072,Patrilineal heir,EA072-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +94358,Ad45,EA072,?,EA072-NA,,,,,, +94359,Ad46,EA072,Nonhered: appointed by auth.,EA072-3,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +94360,Ad47,EA072,Patrilineal heir,EA072-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +94361,Ad48,EA072,Patrilineal heir,EA072-1,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +94362,Ad49,EA072,?,EA072-NA,,,,,, +94363,Ad5,EA072,Matrilineal heir,EA072-2,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +94364,Ad50,EA072,Matrilineal heir,EA072-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +94365,Ad51,EA072,Matrilineal heir,EA072-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +94366,Ad6,EA072,Nonhered: election,EA072-6,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +94367,Ad7,EA072,Nonhered: appointed by auth.,EA072-3,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +94368,Ad8,EA072,?,EA072-NA,,,,,, +94369,Ad9,EA072,Patrilineal heir,EA072-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +94370,Ae1,EA072,Absence of office,EA072-9,A council of elders only,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +94371,Ae10,EA072,Patrilineal heir,EA072-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +94372,Ae11,EA072,Patrilineal heir,EA072-1,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +94373,Ae12,EA072,Patrilineal heir,EA072-1,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +94374,Ae13,EA072,Nonhered: appointed by auth.,EA072-3,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +94375,Ae14,EA072,Patrilineal heir,EA072-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +94376,Ae15,EA072,?,EA072-NA,,,,,, +94377,Ae16,EA072,Patrilineal heir,EA072-1,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +94378,Ae17,EA072,Patrilineal heir,EA072-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +94379,Ae18,EA072,Patrilineal heir,EA072-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +94380,Ae19,EA072,?,EA072-NA,,,,,, +94381,Ae2,EA072,Absence of office,EA072-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +94382,Ae20,EA072,Patrilineal heir,EA072-1,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +94383,Ae21,EA072,Patrilineal heir,EA072-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +94384,Ae22,EA072,Patrilineal heir,EA072-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +94385,Ae23,EA072,Patrilineal heir,EA072-1,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +94386,Ae24,EA072,Patrilineal heir,EA072-1,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +94387,Ae25,EA072,Patrilineal heir,EA072-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +94388,Ae26,EA072,Patrilineal heir,EA072-1,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +94389,Ae27,EA072,Patrilineal heir,EA072-1,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +94390,Ae28,EA072,?,EA072-NA,,,,,, +94391,Ae29,EA072,Patrilineal heir,EA072-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +94392,Ae3,EA072,Patrilineal heir,EA072-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +94393,Ae30,EA072,?,EA072-NA,,,,,, +94394,Ae31,EA072,Patrilineal heir,EA072-1,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +94395,Ae32,EA072,?,EA072-NA,,,,,, +94396,Ae33,EA072,Patrilineal heir,EA072-1,"But Moller reports 'patrilineal heir' (code ""1"")",czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +94397,Ae34,EA072,?,EA072-NA,,,,,, +94398,Ae35,EA072,?,EA072-NA,,,,,, +94399,Ae36,EA072,Patrilineal heir,EA072-1,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +94400,Ae37,EA072,?,EA072-NA,,,,,, +94401,Ae38,EA072,Matrilineal heir,EA072-2,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +94402,Ae39,EA072,Nonhered: inf. consensus,EA072-7,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +94403,Ae4,EA072,Patrilineal heir,EA072-1,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +94404,Ae40,EA072,Patrilineal heir,EA072-1,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +94405,Ae41,EA072,Patrilineal heir,EA072-1,,andersson1953,,1940,EthnographicAtlas_1967_p69, +94406,Ae42,EA072,Patrilineal heir,EA072-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +94407,Ae43,EA072,?,EA072-NA,,,,,, +94408,Ae44,EA072,Matrilineal heir,EA072-2,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +94409,Ae45,EA072,Patrilineal heir,EA072-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +94410,Ae46,EA072,?,EA072-NA,,,,,, +94411,Ae47,EA072,Patrilineal heir,EA072-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +94412,Ae48,EA072,Patrilineal heir,EA072-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +94413,Ae49,EA072,Patrilineal heir,EA072-1,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +94414,Ae5,EA072,Patrilineal heir,EA072-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +94415,Ae50,EA072,Patrilineal heir,EA072-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +94416,Ae51,EA072,Patrilineal heir,EA072-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +94417,Ae52,EA072,Patrilineal heir,EA072-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +94418,Ae53,EA072,Matrilineal heir,EA072-2,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +94419,Ae54,EA072,Matrilineal heir,EA072-2,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +94420,Ae55,EA072,?,EA072-NA,,,,,, +94421,Ae56,EA072,?,EA072-NA,,,,,, +94422,Ae57,EA072,?,EA072-NA,,,,,, +94423,Ae58,EA072,?,EA072-NA,,,,,, +94424,Ae59,EA072,?,EA072-NA,,,,,, +94425,Ae6,EA072,Patrilineal heir,EA072-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +94426,Ae7,EA072,?,EA072-NA,,,,,, +94427,Ae8,EA072,Patrilineal heir,EA072-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +94428,Ae9,EA072,Patrilineal heir,EA072-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +94429,Af1,EA072,Patrilineal heir,EA072-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +94430,Af10,EA072,Patrilineal heir,EA072-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +94431,Af11,EA072,Patrilineal heir,EA072-1,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +94432,Af12,EA072,?,EA072-NA,,,,,, +94433,Af13,EA072,?,EA072-NA,,,,,, +94434,Af14,EA072,?,EA072-NA,,,,,, +94435,Af15,EA072,Nonhered: election,EA072-6,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +94436,Af16,EA072,Patrilineal heir,EA072-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +94437,Af17,EA072,?,EA072-NA,,,,,, +94438,Af18,EA072,Patrilineal heir,EA072-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +94439,Af19,EA072,Nonhered: election,EA072-6,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +94440,Af2,EA072,?,EA072-NA,,,,,, +94441,Af20,EA072,Patrilineal heir,EA072-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +94442,Af21,EA072,?,EA072-NA,,,,,, +94443,Af22,EA072,Nonhered: seniority,EA072-4,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +94444,Af23,EA072,Absence of office,EA072-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +94445,Af24,EA072,Patrilineal heir,EA072-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +94446,Af25,EA072,Nonhered: seniority,EA072-4,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +94447,Af26,EA072,Patrilineal heir,EA072-1,"But 'nonhereditary, based on seniority' (code ""4"") in some villages",bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +94448,Af27,EA072,Nonhered: election,EA072-6,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +94449,Af28,EA072,Patrilineal heir,EA072-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +94450,Af29,EA072,?,EA072-NA,,,,,, +94451,Af3,EA072,Nonhered: election,EA072-6,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +94452,Af30,EA072,?,EA072-NA,,,,,, +94453,Af31,EA072,Patrilineal heir,EA072-1,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +94454,Af32,EA072,?,EA072-NA,,,,,, +94455,Af33,EA072,?,EA072-NA,,,,,, +94456,Af34,EA072,?,EA072-NA,,,,,, +94457,Af35,EA072,?,EA072-NA,,,,,, +94458,Af36,EA072,Nonhered: election,EA072-6,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +94459,Af37,EA072,?,EA072-NA,,,,,, +94460,Af38,EA072,?,EA072-NA,,,,,, +94461,Af39,EA072,Matrilineal heir,EA072-2,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +94462,Af4,EA072,Matrilineal heir,EA072-2,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +94463,Af40,EA072,Matrilineal heir,EA072-2,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +94464,Af41,EA072,Matrilineal heir,EA072-2,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +94465,Af42,EA072,Nonhered: election,EA072-6,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +94466,Af43,EA072,Patrilineal heir,EA072-1,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +94467,Af44,EA072,?,EA072-NA,,,,,, +94468,Af45,EA072,Matrilineal heir,EA072-2,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +94469,Af46,EA072,?,EA072-NA,,,,,, +94470,Af47,EA072,Patrilineal heir,EA072-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +94471,Af48,EA072,Patrilineal heir,EA072-1,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +94472,Af49,EA072,Patrilineal heir,EA072-1,,schwab1947,,1940,EthnographicAtlas_1967_p73, +94473,Af5,EA072,Patrilineal heir,EA072-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +94474,Af50,EA072,?,EA072-NA,,,,,, +94475,Af51,EA072,Patrilineal heir,EA072-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +94476,Af52,EA072,Patrilineal heir,EA072-1,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +94477,Af53,EA072,?,EA072-NA,,,,,, +94478,Af54,EA072,Patrilineal heir,EA072-1,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +94479,Af55,EA072,Patrilineal heir,EA072-1,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +94480,Af56,EA072,Patrilineal heir,EA072-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +94481,Af57,EA072,?,EA072-NA,,,,,, +94482,Af58,EA072,Nonhered: influence,EA072-5,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +94483,Af6,EA072,Patrilineal heir,EA072-1,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +94484,Af7,EA072,Nonhered: seniority,EA072-4,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +94485,Af8,EA072,Nonhered: seniority,EA072-4,"But 'patrilineal heir' (code ""1"") in some regions",banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +94486,Af9,EA072,Matrilineal heir,EA072-2,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +94487,Ag1,EA072,Patrilineal heir,EA072-1,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +94488,Ag10,EA072,Absence of office,EA072-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +94489,Ag11,EA072,?,EA072-NA,,,,,, +94490,Ag12,EA072,Patrilineal heir,EA072-1,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +94491,Ag13,EA072,Patrilineal heir,EA072-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +94492,Ag14,EA072,?,EA072-NA,,,,,, +94493,Ag15,EA072,?,EA072-NA,,,,,, +94494,Ag16,EA072,Patrilineal heir,EA072-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +94495,Ag17,EA072,?,EA072-NA,,,,,, +94496,Ag18,EA072,Matrilineal heir,EA072-2,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +94497,Ag19,EA072,Patrilineal heir,EA072-1,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +94498,Ag2,EA072,?,EA072-NA,,,,,, +94499,Ag20,EA072,?,EA072-NA,,,,,, +94500,Ag21,EA072,Matrilineal heir,EA072-2,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +94501,Ag22,EA072,Patrilineal heir,EA072-1,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +94502,Ag23,EA072,?,EA072-NA,,,,,, +94503,Ag24,EA072,?,EA072-NA,,,,,, +94504,Ag25,EA072,?,EA072-NA,,,,,, +94505,Ag26,EA072,?,EA072-NA,,,,,, +94506,Ag27,EA072,?,EA072-NA,,,,,, +94507,Ag28,EA072,?,EA072-NA,,,,,, +94508,Ag29,EA072,?,EA072-NA,,,,,, +94509,Ag3,EA072,Patrilineal heir,EA072-1,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +94510,Ag30,EA072,Patrilineal heir,EA072-1,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +94511,Ag31,EA072,Patrilineal heir,EA072-1,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +94512,Ag32,EA072,?,EA072-NA,,,,,, +94513,Ag33,EA072,?,EA072-NA,,,,,, +94514,Ag34,EA072,?,EA072-NA,,,,,, +94515,Ag35,EA072,Matrilineal heir,EA072-2,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +94516,Ag36,EA072,?,EA072-NA,,,,,, +94517,Ag37,EA072,Patrilineal heir,EA072-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +94518,Ag38,EA072,Patrilineal heir,EA072-1,"Entry follows Tauxier; Rattry reports 'nonhereditary through election' (code ""6"")",rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +94519,Ag39,EA072,Patrilineal heir,EA072-1,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +94520,Ag4,EA072,Nonhered: seniority,EA072-4,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +94521,Ag40,EA072,Patrilineal heir,EA072-1,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +94522,Ag41,EA072,Patrilineal heir,EA072-1,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +94523,Ag42,EA072,Patrilineal heir,EA072-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +94524,Ag43,EA072,?,EA072-NA,,,,,, +94525,Ag44,EA072,Nonhered: appointed by auth.,EA072-3,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +94526,Ag45,EA072,Nonhered: appointed by auth.,EA072-3,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +94527,Ag46,EA072,Patrilineal heir,EA072-1,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +94528,Ag47,EA072,Patrilineal heir,EA072-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +94529,Ag48,EA072,Nonhered: seniority,EA072-4,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +94530,Ag49,EA072,Nonhered: influence,EA072-5,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +94531,Ag5,EA072,?,EA072-NA,,,,,, +94532,Ag50,EA072,Nonhered: influence,EA072-5,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +94533,Ag51,EA072,?,EA072-NA,,,,,, +94534,Ag52,EA072,Nonhered: election,EA072-6,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +94535,Ag53,EA072,Patrilineal heir,EA072-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +94536,Ag54,EA072,Patrilineal heir,EA072-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +94537,Ag6,EA072,?,EA072-NA,,,,,, +94538,Ag7,EA072,?,EA072-NA,,,,,, +94539,Ag8,EA072,Matrilineal heir,EA072-2,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +94540,Ag9,EA072,Patrilineal heir,EA072-1,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +94541,Ah1,EA072,Nonhered: seniority,EA072-4,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94542,Ah10,EA072,Nonhered: seniority,EA072-4,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +94543,Ah11,EA072,?,EA072-NA,,,,,, +94544,Ah12,EA072,?,EA072-NA,,,,,, +94545,Ah13,EA072,Patrilineal heir,EA072-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +94546,Ah14,EA072,?,EA072-NA,,,,,, +94547,Ah15,EA072,Nonhered: seniority,EA072-4,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +94548,Ah16,EA072,Patrilineal heir,EA072-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +94549,Ah17,EA072,Patrilineal heir,EA072-1,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +94550,Ah18,EA072,Patrilineal heir,EA072-1,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +94551,Ah19,EA072,Patrilineal heir,EA072-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +94552,Ah2,EA072,Patrilineal heir,EA072-1,,meek1931a,,1920,EthnographicAtlas_1967_p77, +94553,Ah20,EA072,?,EA072-NA,,,,,, +94554,Ah21,EA072,?,EA072-NA,,,,,, +94555,Ah22,EA072,Patrilineal heir,EA072-1,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +94556,Ah23,EA072,Patrilineal heir,EA072-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +94557,Ah24,EA072,?,EA072-NA,,,,,, +94558,Ah25,EA072,?,EA072-NA,,,,,, +94559,Ah26,EA072,Matrilineal heir,EA072-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +94560,Ah27,EA072,?,EA072-NA,,,,,, +94561,Ah28,EA072,?,EA072-NA,,,,,, +94562,Ah29,EA072,Matrilineal heir,EA072-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +94563,Ah3,EA072,Absence of office,EA072-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +94564,Ah30,EA072,Absence of office,EA072-9,,meek1931b,,1920,EthnographicAtlas_1967_p77, +94565,Ah31,EA072,Patrilineal heir,EA072-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +94566,Ah32,EA072,?,EA072-NA,,,,,, +94567,Ah33,EA072,?,EA072-NA,,,,,, +94568,Ah34,EA072,Nonhered: appointed by auth.,EA072-3,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +94569,Ah35,EA072,?,EA072-NA,,,,,, +94570,Ah36,EA072,Patrilineal heir,EA072-1,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +94571,Ah37,EA072,?,EA072-NA,,,,,, +94572,Ah38,EA072,Patrilineal heir,EA072-1,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +94573,Ah39,EA072,Nonhered: election,EA072-6,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +94574,Ah4,EA072,Matrilineal heir,EA072-2,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +94575,Ah5,EA072,Nonhered: election,EA072-6,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +94576,Ah6,EA072,?,EA072-NA,,,,,, +94577,Ah7,EA072,Nonhered: election,EA072-6,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +94578,Ah8,EA072,?,EA072-NA,,,,,, +94579,Ah9,EA072,Nonhered: inf. consensus,EA072-7,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +94580,Ai1,EA072,Patrilineal heir,EA072-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +94581,Ai10,EA072,Absence of office,EA072-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +94582,Ai11,EA072,Patrilineal heir,EA072-1,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +94583,Ai12,EA072,Patrilineal heir,EA072-1,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +94584,Ai13,EA072,Patrilineal heir,EA072-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +94585,Ai14,EA072,Patrilineal heir,EA072-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p77, +94586,Ai15,EA072,Patrilineal heir,EA072-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +94587,Ai16,EA072,Nonhered: influence,EA072-5,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +94588,Ai17,EA072,Patrilineal heir,EA072-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +94589,Ai18,EA072,Nonhered: election,EA072-6,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +94590,Ai19,EA072,?,EA072-NA,,,,,, +94591,Ai2,EA072,Patrilineal heir,EA072-1,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +94592,Ai20,EA072,?,EA072-NA,,,,,, +94593,Ai21,EA072,?,EA072-NA,,,,,, +94594,Ai22,EA072,?,EA072-NA,,,,,, +94595,Ai23,EA072,Patrilineal heir,EA072-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +94596,Ai24,EA072,Patrilineal heir,EA072-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +94597,Ai25,EA072,Nonhered: election,EA072-6,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +94598,Ai26,EA072,Patrilineal heir,EA072-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +94599,Ai27,EA072,?,EA072-NA,,,,,, +94600,Ai28,EA072,Nonhered: appointed by auth.,EA072-3,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +94601,Ai29,EA072,Patrilineal heir,EA072-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +94602,Ai3,EA072,Patrilineal heir,EA072-1,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +94603,Ai30,EA072,Patrilineal heir,EA072-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +94604,Ai31,EA072,?,EA072-NA,,,,,, +94605,Ai32,EA072,Patrilineal heir,EA072-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +94606,Ai33,EA072,Patrilineal heir,EA072-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +94607,Ai34,EA072,Patrilineal heir,EA072-1,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +94608,Ai35,EA072,Nonhered: influence,EA072-5,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +94609,Ai36,EA072,Nonhered: election,EA072-6,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +94610,Ai37,EA072,Patrilineal heir,EA072-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +94611,Ai38,EA072,?,EA072-NA,,,,,, +94612,Ai39,EA072,?,EA072-NA,,,,,, +94613,Ai4,EA072,?,EA072-NA,,,,,, +94614,Ai40,EA072,Absence of office,EA072-9,,nadel1947,,1940,EthnographicAtlas_1967_p77, +94615,Ai41,EA072,?,EA072-NA,,,,,, +94616,Ai42,EA072,Patrilineal heir,EA072-1,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +94617,Ai43,EA072,?,EA072-NA,,,,,, +94618,Ai44,EA072,Patrilineal heir,EA072-1,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p77, +94619,Ai45,EA072,?,EA072-NA,,,,,, +94620,Ai46,EA072,Patrilineal heir,EA072-1,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +94621,Ai47,EA072,Patrilineal heir,EA072-1,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +94622,Ai5,EA072,?,EA072-NA,,,,,, +94623,Ai6,EA072,Nonhered: election,EA072-6,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +94624,Ai7,EA072,Patrilineal heir,EA072-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +94625,Ai8,EA072,?,EA072-NA,,,,,, +94626,Ai9,EA072,?,EA072-NA,,,,,, +94627,Aj1,EA072,?,EA072-NA,,,,,, +94628,Aj10,EA072,?,EA072-NA,,,,,, +94629,Aj11,EA072,?,EA072-NA,,,,,, +94630,Aj12,EA072,Patrilineal heir,EA072-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +94631,Aj13,EA072,?,EA072-NA,,,,,, +94632,Aj14,EA072,?,EA072-NA,,,,,, +94633,Aj15,EA072,Patrilineal heir,EA072-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +94634,Aj16,EA072,Patrilineal heir,EA072-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +94635,Aj17,EA072,Patrilineal heir,EA072-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +94636,Aj18,EA072,Patrilineal heir,EA072-1,,jensen1959,,1950,EthnographicAtlas_1967_p81, +94637,Aj19,EA072,Patrilineal heir,EA072-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +94638,Aj2,EA072,Absence of office,EA072-9,A council of elders,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +94639,Aj20,EA072,Patrilineal heir,EA072-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +94640,Aj21,EA072,?,EA072-NA,,,,,, +94641,Aj22,EA072,Patrilineal heir,EA072-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +94642,Aj23,EA072,Absence of office,EA072-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +94643,Aj24,EA072,Patrilineal heir,EA072-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +94644,Aj25,EA072,?,EA072-NA,,,,,, +94645,Aj26,EA072,Nonhered: inf. consensus,EA072-7,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +94646,Aj27,EA072,?,EA072-NA,,,,,, +94647,Aj28,EA072,Patrilineal heir,EA072-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +94648,Aj29,EA072,Absence of office,EA072-9,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +94649,Aj3,EA072,Absence of office,EA072-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +94650,Aj30,EA072,?,EA072-NA,,,,,, +94651,Aj31,EA072,?,EA072-NA,,,,,, +94652,Aj4,EA072,Patrilineal heir,EA072-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +94653,Aj5,EA072,Absence of office,EA072-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +94654,Aj6,EA072,Patrilineal heir,EA072-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +94655,Aj7,EA072,Nonhered: seniority,EA072-4,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +94656,Aj8,EA072,Patrilineal heir,EA072-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +94657,Aj9,EA072,Absence of office,EA072-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +94658,Ca1,EA072,Nonhered: election,EA072-6,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +94659,Ca10,EA072,Patrilineal heir,EA072-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +94660,Ca11,EA072,Nonhered: election,EA072-6,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +94661,Ca12,EA072,?,EA072-NA,,,,,, +94662,Ca13,EA072,Patrilineal heir,EA072-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +94663,Ca14,EA072,Patrilineal heir,EA072-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +94664,Ca15,EA072,Patrilineal heir,EA072-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +94665,Ca16,EA072,?,EA072-NA,,,,,, +94666,Ca17,EA072,?,EA072-NA,,,,,, +94667,Ca18,EA072,Patrilineal heir,EA072-1,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +94668,Ca19,EA072,Patrilineal heir,EA072-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +94669,Ca2,EA072,Nonhered: election,EA072-6,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +94670,Ca20,EA072,?,EA072-NA,,,,,, +94671,Ca21,EA072,?,EA072-NA,,,,,, +94672,Ca22,EA072,?,EA072-NA,,,,,, +94673,Ca23,EA072,Patrilineal heir,EA072-1,,jensen1959,,1950,EthnographicAtlas_1967_p81, +94674,Ca24,EA072,?,EA072-NA,,,,,, +94675,Ca25,EA072,Patrilineal heir,EA072-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +94676,Ca26,EA072,Patrilineal heir,EA072-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +94677,Ca27,EA072,?,EA072-NA,,,,,, +94678,Ca28,EA072,?,EA072-NA,,,,,, +94679,Ca29,EA072,Patrilineal heir,EA072-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +94680,Ca3,EA072,Nonhered: appointed by auth.,EA072-3,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +94681,Ca30,EA072,?,EA072-NA,,,,,, +94682,Ca31,EA072,Nonhered: appointed by auth.,EA072-3,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +94683,Ca32,EA072,Absence of office,EA072-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +94684,Ca33,EA072,Absence of office,EA072-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +94685,Ca34,EA072,Nonhered: appointed by auth.,EA072-3,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +94686,Ca35,EA072,?,EA072-NA,"Patrilineal, though formerly matrilineal",clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +94687,Ca36,EA072,?,EA072-NA,,,,,, +94688,Ca37,EA072,?,EA072-NA,,,,,, +94689,Ca38,EA072,Patrilineal heir,EA072-1,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +94690,Ca39,EA072,Absence of office,EA072-9,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +94691,Ca4,EA072,Absence of office,EA072-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +94692,Ca40,EA072,Patrilineal heir,EA072-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +94693,Ca41,EA072,Absence of office,EA072-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +94694,Ca42,EA072,Patrilineal heir,EA072-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +94695,Ca43,EA072,?,EA072-NA,,,,,, +94696,Ca5,EA072,Absence of office,EA072-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +94697,Ca6,EA072,?,EA072-NA,,,,,, +94698,Ca7,EA072,Nonhered: appointed by auth.,EA072-3,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +94699,Ca8,EA072,?,EA072-NA,,,,,, +94700,Ca9,EA072,Absence of office,EA072-9,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +94701,Cb1,EA072,Nonhered: appointed by auth.,EA072-3,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +94702,Cb10,EA072,?,EA072-NA,,,,,, +94703,Cb11,EA072,Matrilineal heir,EA072-2,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +94704,Cb12,EA072,?,EA072-NA,,,,,, +94705,Cb13,EA072,?,EA072-NA,,,,,, +94706,Cb14,EA072,Nonhered: election,EA072-6,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +94707,Cb15,EA072,Nonhered: influence,EA072-5,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +94708,Cb16,EA072,Patrilineal heir,EA072-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +94709,Cb17,EA072,Patrilineal heir,EA072-1,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +94710,Cb18,EA072,?,EA072-NA,,,,,, +94711,Cb19,EA072,Nonhered: appointed by auth.,EA072-3,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +94712,Cb2,EA072,Patrilineal heir,EA072-1,The head of the founding lineage,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +94713,Cb20,EA072,Nonhered: election,EA072-6,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +94714,Cb21,EA072,?,EA072-NA,,,,,, +94715,Cb22,EA072,Nonhered: appointed by auth.,EA072-3,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +94716,Cb23,EA072,Nonhered: influence,EA072-5,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +94717,Cb24,EA072,Patrilineal heir,EA072-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +94718,Cb25,EA072,Nonhered: election,EA072-6,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +94719,Cb26,EA072,Patrilineal heir,EA072-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +94720,Cb27,EA072,Nonhered: appointed by auth.,EA072-3,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +94721,Cb28,EA072,Patrilineal heir,EA072-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +94722,Cb29,EA072,Patrilineal heir,EA072-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +94723,Cb3,EA072,Patrilineal heir,EA072-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +94724,Cb4,EA072,?,EA072-NA,,,,,, +94725,Cb5,EA072,Absence of office,EA072-9,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +94726,Cb6,EA072,?,EA072-NA,,,,,, +94727,Cb7,EA072,?,EA072-NA,,,,,, +94728,Cb8,EA072,Nonhered: influence,EA072-5,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +94729,Cb9,EA072,?,EA072-NA,,,,,, +94730,Cc1,EA072,Nonhered: election,EA072-6,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +94731,Cc10,EA072,Matrilineal heir,EA072-2,"But mainly 'patrilineal heir' (code ""1"") today",jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +94732,Cc11,EA072,Matrilineal heir,EA072-2,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +94733,Cc12,EA072,?,EA072-NA,,,,,, +94734,Cc13,EA072,Matrilineal heir,EA072-2,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +94735,Cc14,EA072,?,EA072-NA,,,,,, +94736,Cc15,EA072,Nonhered: appointed by auth.,EA072-3,"Formerly 'nonhereditary through election' (code ""6"")",chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +94737,Cc16,EA072,Patrilineal heir,EA072-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +94738,Cc17,EA072,?,EA072-NA,,,,,, +94739,Cc18,EA072,Patrilineal heir,EA072-1,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +94740,Cc19,EA072,?,EA072-NA,,,,,, +94741,Cc2,EA072,Nonhered: seniority,EA072-4,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +94742,Cc20,EA072,Nonhered: election,EA072-6,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +94743,Cc3,EA072,Absence of office,EA072-9,A council of sib chiefs,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +94744,Cc4,EA072,Absence of office,EA072-9,A separate local council for each of the two classes,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +94745,Cc5,EA072,Nonhered: election,EA072-6,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +94746,Cc6,EA072,?,EA072-NA,,,,,, +94747,Cc7,EA072,?,EA072-NA,,,,,, +94748,Cc8,EA072,Patrilineal heir,EA072-1,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +94749,Cc9,EA072,Matrilineal heir,EA072-2,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +94750,Cd1,EA072,?,EA072-NA,,,,,, +94751,Cd10,EA072,Nonhered: appointed by auth.,EA072-3,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +94752,Cd11,EA072,Matrilineal heir,EA072-2,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +94753,Cd12,EA072,Absence of office,EA072-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +94754,Cd13,EA072,?,EA072-NA,,,,,, +94755,Cd14,EA072,Nonhered: election,EA072-6,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +94756,Cd15,EA072,Absence of office,EA072-9,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +94757,Cd16,EA072,?,EA072-NA,,,,,, +94758,Cd17,EA072,?,EA072-NA,,,,,, +94759,Cd18,EA072,Patrilineal heir,EA072-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +94760,Cd19,EA072,?,EA072-NA,,,,,, +94761,Cd2,EA072,Nonhered: election,EA072-6,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +94762,Cd20,EA072,?,EA072-NA,,,,,, +94763,Cd21,EA072,?,EA072-NA,,,,,, +94764,Cd3,EA072,Absence of office,EA072-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +94765,Cd4,EA072,Nonhered: election,EA072-6,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +94766,Cd5,EA072,Nonhered: election,EA072-6,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +94767,Cd6,EA072,Patrilineal heir,EA072-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +94768,Cd7,EA072,Absence of office,EA072-9,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +94769,Cd8,EA072,?,EA072-NA,,,,,, +94770,Cd9,EA072,?,EA072-NA,,,,,, +94771,Ce1,EA072,Patrilineal heir,EA072-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +94772,Ce2,EA072,Nonhered: election,EA072-6,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +94773,Ce3,EA072,?,EA072-NA,,,,,, +94774,Ce4,EA072,?,EA072-NA,,,,,, +94775,Ce5,EA072,Nonhered: election,EA072-6,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +94776,Ce6,EA072,Nonhered: appointed by auth.,EA072-3,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +94777,Ce7,EA072,Nonhered: election,EA072-6,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +94778,Ce8,EA072,Nonhered: election,EA072-6,"But 'nonhereditary through appointment' (code ""3"") subsequent to 1939",carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +94779,Cf1,EA072,Nonhered: election,EA072-6,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +94780,Cf2,EA072,?,EA072-NA,,,,,, +94781,Cf3,EA072,Absence of office,EA072-9,,munch1945,,1930,EthnographicAtlas_1967_p85, +94782,Cf4,EA072,Nonhered: election,EA072-6,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +94783,Cf5,EA072,Nonhered: election,EA072-6,,miner1939,,1930,EthnographicAtlas_1967_p85, +94784,Cg1,EA072,Nonhered: election,EA072-6,"Three ""selectmen"" chosen by lot",coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +94785,Cg2,EA072,?,EA072-NA,,,,,, +94786,Cg3,EA072,?,EA072-NA,,,,,, +94787,Cg4,EA072,?,EA072-NA,,,,,, +94788,Cg5,EA072,?,EA072-NA,,,,,, +94789,Ch1,EA072,Nonhered: election,EA072-6,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +94790,Ch10,EA072,?,EA072-NA,,,,,, +94791,Ch11,EA072,Nonhered: appointed by auth.,EA072-3,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +94792,Ch2,EA072,?,EA072-NA,,,,,, +94793,Ch3,EA072,?,EA072-NA,,,,,, +94794,Ch4,EA072,?,EA072-NA,,,,,, +94795,Ch5,EA072,?,EA072-NA,,,,,, +94796,Ch6,EA072,?,EA072-NA,,,,,, +94797,Ch7,EA072,Nonhered: election,EA072-6,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +94798,Ch8,EA072,?,EA072-NA,,,,,, +94799,Ch9,EA072,Nonhered: inf. consensus,EA072-7,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +94800,Ci1,EA072,Patrilineal heir,EA072-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +94801,Ci10,EA072,Nonhered: election,EA072-6,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +94802,Ci11,EA072,Patrilineal heir,EA072-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +94803,Ci12,EA072,Nonhered: seniority,EA072-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +94804,Ci2,EA072,Absence of office,EA072-9,A village priest but no headman,grigolia1939,,1930,EthnographicAtlas_1967_p85, +94805,Ci3,EA072,?,EA072-NA,,,,,, +94806,Ci4,EA072,Patrilineal heir,EA072-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +94807,Ci5,EA072,Nonhered: election,EA072-6,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +94808,Ci6,EA072,Patrilineal heir,EA072-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +94809,Ci7,EA072,?,EA072-NA,,,,,, +94810,Ci8,EA072,?,EA072-NA,,,,,, +94811,Ci9,EA072,Absence of office,EA072-9,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +94812,Cj1,EA072,Nonhered: election,EA072-6,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +94813,Cj10,EA072,Nonhered: appointed by auth.,EA072-3,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +94814,Cj2,EA072,?,EA072-NA,,,,,, +94815,Cj3,EA072,Nonhered: appointed by auth.,EA072-3,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +94816,Cj4,EA072,Patrilineal heir,EA072-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +94817,Cj5,EA072,?,EA072-NA,,,,,, +94818,Cj6,EA072,?,EA072-NA,,,,,, +94819,Cj7,EA072,Nonhered: election,EA072-6,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +94820,Cj8,EA072,Nonhered: appointed by auth.,EA072-3,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +94821,Cj9,EA072,?,EA072-NA,,,,,, +94822,Ea1,EA072,?,EA072-NA,,,,,, +94823,Ea10,EA072,Patrilineal heir,EA072-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +94824,Ea11,EA072,?,EA072-NA,,,,,, +94825,Ea12,EA072,Patrilineal heir,EA072-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +94826,Ea13,EA072,Patrilineal heir,EA072-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +94827,Ea2,EA072,Nonhered: influence,EA072-5,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +94828,Ea3,EA072,Patrilineal heir,EA072-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +94829,Ea4,EA072,Absence of office,EA072-9,A council of lineage representatives,barth1956b,,1950,EthnographicAtlas_1967_p89, +94830,Ea5,EA072,Patrilineal heir,EA072-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +94831,Ea6,EA072,Patrilineal heir,EA072-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +94832,Ea7,EA072,Nonhered: inf. consensus,EA072-7,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +94833,Ea8,EA072,Patrilineal heir,EA072-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +94834,Ea9,EA072,Nonhered: appointed by auth.,EA072-3,,vreeland1957,,1950,EthnographicAtlas_1967_p89, +94835,Eb1,EA072,?,EA072-NA,,,,,, +94836,Eb2,EA072,Patrilineal heir,EA072-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +94837,Eb3,EA072,Patrilineal heir,EA072-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +94838,Eb4,EA072,Nonhered: inf. consensus,EA072-7,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +94839,Eb5,EA072,?,EA072-NA,,,,,, +94840,Eb6,EA072,?,EA072-NA,,,,,, +94841,Eb7,EA072,?,EA072-NA,,,,,, +94842,Eb8,EA072,?,EA072-NA,,,,,, +94843,Ec1,EA072,Patrilineal heir,EA072-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +94844,Ec10,EA072,?,EA072-NA,,,,,, +94845,Ec11,EA072,?,EA072-NA,,,,,, +94846,Ec2,EA072,Nonhered: election,EA072-6,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94847,Ec3,EA072,Nonhered: influence,EA072-5,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +94848,Ec4,EA072,?,EA072-NA,,,,,, +94849,Ec5,EA072,Nonhered: seniority,EA072-4,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +94850,Ec6,EA072,Nonhered: seniority,EA072-4,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +94851,Ec7,EA072,Patrilineal heir,EA072-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +94852,Ec8,EA072,Absence of office,EA072-9,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +94853,Ec9,EA072,?,EA072-NA,,,,,, +94854,Ed1,EA072,Nonhered: seniority,EA072-4,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +94855,Ed10,EA072,Nonhered: appointed by auth.,EA072-3,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +94856,Ed13,EA072,?,EA072-NA,,,,,, +94857,Ed14,EA072,?,EA072-NA,,,,,, +94858,Ed15a,EA072,?,EA072-NA,,,,,, +94859,Ed15b,EA072,Nonhered: inf. consensus,EA072-7,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +94860,Ed16,EA072,?,EA072-NA,,,,,, +94861,Ed2,EA072,Patrilineal heir,EA072-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +94862,Ed3,EA072,Nonhered: election,EA072-6,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +94863,Ed4,EA072,Nonhered: appointed by auth.,EA072-3,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +94864,Ed5,EA072,Nonhered: election,EA072-6,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94865,Ed6,EA072,Nonhered: appointed by auth.,EA072-3,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +94866,Ed7,EA072,Nonhered: election,EA072-6,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +94867,Ed8,EA072,Nonhered: election,EA072-6,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +94868,Ed9,EA072,Patrilineal heir,EA072-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +94869,Ee1,EA072,Absence of office,EA072-9,A council of elders,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +94870,Ee2,EA072,?,EA072-NA,,,,,, +94871,Ee3,EA072,Patrilineal heir,EA072-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +94872,Ee4,EA072,Nonhered: election,EA072-6,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +94873,Ee5,EA072,?,EA072-NA,,,,,, +94874,Ee6,EA072,Nonhered: inf. consensus,EA072-7,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +94875,Ee7,EA072,?,EA072-NA,,,,,, +94876,Ee8,EA072,Patrilineal heir,EA072-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +94877,Ef1,EA072,Patrilineal heir,EA072-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +94878,Ef10,EA072,?,EA072-NA,,,,,, +94879,Ef11,EA072,Nonhered: inf. consensus,EA072-7,"Among the Thakur; 'nonhereditary through appointment' (code ""3"") after 1945",cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +94880,Ef2,EA072,Patrilineal heir,EA072-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +94881,Ef3,EA072,?,EA072-NA,,,,,, +94882,Ef4,EA072,Nonhered: appointed by auth.,EA072-3,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +94883,Ef5,EA072,Patrilineal heir,EA072-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +94884,Ef6,EA072,Nonhered: election,EA072-6,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +94885,Ef7,EA072,Nonhered: election,EA072-6,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +94886,Ef8,EA072,?,EA072-NA,,,,,, +94887,Ef9,EA072,?,EA072-NA,,,,,, +94888,Eg1,EA072,Nonhered: inf. consensus,EA072-7,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94889,Eg10,EA072,?,EA072-NA,,,,,, +94890,Eg11,EA072,Patrilineal heir,EA072-1,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +94891,Eg12,EA072,?,EA072-NA,,,,,, +94892,Eg13,EA072,?,EA072-NA,,,,,, +94893,Eg14,EA072,Patrilineal heir,EA072-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +94894,Eg2,EA072,?,EA072-NA,,,,,, +94895,Eg3,EA072,Patrilineal heir,EA072-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +94896,Eg4,EA072,Nonhered: inf. consensus,EA072-7,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +94897,Eg5,EA072,Patrilineal heir,EA072-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +94898,Eg6,EA072,Matrilineal heir,EA072-2,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +94899,Eg7,EA072,Patrilineal heir,EA072-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +94900,Eg8,EA072,Nonhered: inf. consensus,EA072-7,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +94901,Eg9,EA072,?,EA072-NA,,,,,, +94902,Eh1,EA072,Nonhered: inf. consensus,EA072-7,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +94903,Eh10,EA072,?,EA072-NA,,,,,, +94904,Eh2,EA072,Nonhered: appointed by auth.,EA072-3,"But originally 'nonhereditary through election' (code ""6"")",grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +94905,Eh3,EA072,Nonhered: election,EA072-6,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +94906,Eh4,EA072,?,EA072-NA,,,,,, +94907,Eh5,EA072,Nonhered: inf. consensus,EA072-7,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +94908,Eh6,EA072,?,EA072-NA,,,,,, +94909,Eh7,EA072,Patrilineal heir,EA072-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +94910,Eh8,EA072,Patrilineal heir,EA072-1,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +94911,Eh9,EA072,Patrilineal heir,EA072-1,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +94912,Ei1,EA072,Matrilineal heir,EA072-2,The heir is a classificatory SiSo who is DaHu,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94913,Ei10,EA072,?,EA072-NA,,,,,, +94914,Ei11,EA072,Nonhered: election,EA072-6,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +94915,Ei12,EA072,Patrilineal heir,EA072-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +94916,Ei13,EA072,Patrilineal heir,EA072-1,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +94917,Ei14,EA072,Absence of office,EA072-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +94918,Ei15,EA072,?,EA072-NA,,,,,, +94919,Ei16,EA072,?,EA072-NA,,,,,, +94920,Ei17,EA072,?,EA072-NA,,,,,, +94921,Ei18,EA072,Patrilineal heir,EA072-1,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +94922,Ei19,EA072,Patrilineal heir,EA072-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +94923,Ei2,EA072,Patrilineal heir,EA072-1,,mills1922,,1920,EthnographicAtlas_1967_p93, +94924,Ei20,EA072,?,EA072-NA,,,,,, +94925,Ei3,EA072,Nonhered: appointed by auth.,EA072-3,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +94926,Ei4,EA072,Patrilineal heir,EA072-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +94927,Ei5,EA072,Patrilineal heir,EA072-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +94928,Ei6,EA072,Absence of office,EA072-9,A council of eight graded elders,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +94929,Ei7,EA072,Patrilineal heir,EA072-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +94930,Ei8,EA072,Nonhered: inf. consensus,EA072-7,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +94931,Ei9,EA072,?,EA072-NA,,,,,, +94932,Ej1,EA072,Patrilineal heir,EA072-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +94933,Ej10,EA072,Matrilineal heir,EA072-2,"Donoghue reports 'nonhereditary through appointment' (code ""3"")",donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +94934,Ej11,EA072,Nonhered: election,EA072-6,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +94935,Ej12,EA072,Nonhered: seniority,EA072-4,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +94936,Ej13,EA072,Patrilineal heir,EA072-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +94937,Ej14,EA072,Absence of office,EA072-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94938,Ej15,EA072,?,EA072-NA,,,,,, +94939,Ej16,EA072,Nonhered: election,EA072-6,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +94940,Ej2,EA072,Absence of office,EA072-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +94941,Ej3,EA072,Patrilineal heir,EA072-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +94942,Ej4,EA072,Nonhered: election,EA072-6,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +94943,Ej5,EA072,Nonhered: election,EA072-6,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +94944,Ej6,EA072,?,EA072-NA,,,,,, +94945,Ej7,EA072,Patrilineal heir,EA072-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +94946,Ej8,EA072,?,EA072-NA,,,,,, +94947,Ej9,EA072,Nonhered: election,EA072-6,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +94948,Ia1,EA072,Nonhered: election,EA072-6,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +94949,Ia10,EA072,Patrilineal heir,EA072-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +94950,Ia11,EA072,Nonhered: inf. consensus,EA072-7,,mabuchi1960,,1930,EthnographicAtlas_1967_p93, +94951,Ia12,EA072,Nonhered: election,EA072-6,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +94952,Ia13,EA072,Patrilineal heir,EA072-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +94953,Ia14,EA072,Absence of office,EA072-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +94954,Ia15,EA072,Nonhered: influence,EA072-5,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +94955,Ia16,EA072,Nonhered: inf. consensus,EA072-7,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +94956,Ia17,EA072,?,EA072-NA,,,,,, +94957,Ia18,EA072,?,EA072-NA,,,,,, +94958,Ia2,EA072,Absence of office,EA072-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +94959,Ia3,EA072,Absence of office,EA072-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +94960,Ia4,EA072,Absence of office,EA072-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +94961,Ia5,EA072,Absence of office,EA072-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +94962,Ia6,EA072,Patrilineal heir,EA072-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94963,Ia7,EA072,Absence of office,EA072-9,,fox1954,,1950,EthnographicAtlas_1967_p93, +94964,Ia8,EA072,Absence of office,EA072-9,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +94965,Ia9,EA072,Nonhered: election,EA072-6,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +94966,Ib1,EA072,Nonhered: inf. consensus,EA072-7,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94967,Ib2,EA072,Nonhered: election,EA072-6,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94968,Ib3,EA072,Nonhered: election,EA072-6,Selected by divination,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +94969,Ib4,EA072,Patrilineal heir,EA072-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +94970,Ib5,EA072,Nonhered: inf. consensus,EA072-7,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +94971,Ib6,EA072,Matrilineal heir,EA072-2,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +94972,Ib7,EA072,Absence of office,EA072-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +94973,Ib8,EA072,?,EA072-NA,,,,,, +94974,Ib9,EA072,?,EA072-NA,,,,,, +94975,Ic1,EA072,Patrilineal heir,EA072-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94976,Ic10,EA072,Nonhered: election,EA072-6,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +94977,Ic11,EA072,Patrilineal heir,EA072-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +94978,Ic12,EA072,Nonhered: election,EA072-6,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +94979,Ic13,EA072,?,EA072-NA,,,,,, +94980,Ic2,EA072,?,EA072-NA,,,,,, +94981,Ic3,EA072,Matrilineal heir,EA072-2,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +94982,Ic4,EA072,?,EA072-NA,,,,,, +94983,Ic5,EA072,Nonhered: election,EA072-6,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +94984,Ic6,EA072,Patrilineal heir,EA072-1,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +94985,Ic7,EA072,?,EA072-NA,,,,,, +94986,Ic8,EA072,Patrilineal heir,EA072-1,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +94987,Ic9,EA072,Patrilineal heir,EA072-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +94988,Id1,EA072,Patrilineal heir,EA072-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +94989,Id10,EA072,Absence of office,EA072-9,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +94990,Id11,EA072,Absence of office,EA072-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +94991,Id12,EA072,Absence of office,EA072-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +94992,Id13,EA072,?,EA072-NA,,,,,, +94993,Id2,EA072,Patrilineal heir,EA072-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +94994,Id3,EA072,Patrilineal heir,EA072-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +94995,Id4,EA072,Patrilineal heir,EA072-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p97, +94996,Id5,EA072,?,EA072-NA,,,,,, +94997,Id6,EA072,?,EA072-NA,,,,,, +94998,Id7,EA072,?,EA072-NA,,,,,, +94999,Id8,EA072,Nonhered: inf. consensus,EA072-7,,roth1890,,1830,EthnographicAtlas_1967_p97, +95000,Id9,EA072,Patrilineal heir,EA072-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p97, +95001,Ie1,EA072,Nonhered: influence,EA072-5,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95002,Ie10,EA072,Patrilineal heir,EA072-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +95003,Ie11,EA072,Nonhered: inf. consensus,EA072-7,,bowers1964,,1950,EthnographicAtlas_1967_p97, +95004,Ie12,EA072,Absence of office,EA072-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95005,Ie13,EA072,Absence of office,EA072-9,,landtman1927,,1920,EthnographicAtlas_1967_p97, +95006,Ie14,EA072,Absence of office,EA072-9,,haddon1908,,1900,EthnographicAtlas_1967_p97, +95007,Ie15,EA072,Absence of office,EA072-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95008,Ie16,EA072,?,EA072-NA,,,,,, +95009,Ie17,EA072,Nonhered: influence,EA072-5,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +95010,Ie18,EA072,?,EA072-NA,,,,,, +95011,Ie19,EA072,Absence of office,EA072-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +95012,Ie2,EA072,Nonhered: influence,EA072-5,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +95013,Ie20,EA072,Patrilineal heir,EA072-1,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +95014,Ie21,EA072,?,EA072-NA,,,,,, +95015,Ie22,EA072,Patrilineal heir,EA072-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +95016,Ie23,EA072,Nonhered: influence,EA072-5,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +95017,Ie24,EA072,Nonhered: influence,EA072-5,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +95018,Ie25,EA072,Patrilineal heir,EA072-1,,williamson1912,,1920,EthnographicAtlas_1967_p97, +95019,Ie26,EA072,Nonhered: inf. consensus,EA072-7,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +95020,Ie27,EA072,Absence of office,EA072-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +95021,Ie28,EA072,Nonhered: influence,EA072-5,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +95022,Ie29,EA072,Patrilineal heir,EA072-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95023,Ie3,EA072,Absence of office,EA072-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95024,Ie30,EA072,?,EA072-NA,,,,,, +95025,Ie31,EA072,?,EA072-NA,,,,,, +95026,Ie32,EA072,Patrilineal heir,EA072-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +95027,Ie33,EA072,Absence of office,EA072-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +95028,Ie34,EA072,?,EA072-NA,,,,,, +95029,Ie35,EA072,Absence of office,EA072-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +95030,Ie36,EA072,?,EA072-NA,,,,,, +95031,Ie37,EA072,?,EA072-NA,,,,,, +95032,Ie38,EA072,Nonhered: influence,EA072-5,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +95033,Ie39,EA072,Patrilineal heir,EA072-1,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +95034,Ie4,EA072,Patrilineal heir,EA072-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95035,Ie5,EA072,Absence of office,EA072-9,,williams1936,,1930,EthnographicAtlas_1967_p97, +95036,Ie6,EA072,Nonhered: seniority,EA072-4,,held1947,,1930,EthnographicAtlas_1967_p97, +95037,Ie7,EA072,Absence of office,EA072-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +95038,Ie8,EA072,Patrilineal heir,EA072-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +95039,Ie9,EA072,Nonhered: inf. consensus,EA072-7,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +95040,If1,EA072,Matrilineal heir,EA072-2,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95041,If10,EA072,?,EA072-NA,,,,,, +95042,If11,EA072,?,EA072-NA,,,,,, +95043,If12,EA072,Absence of office,EA072-9,,mason1954,,1940,EthnographicAtlas_1967_p101, +95044,If13,EA072,?,EA072-NA,,,,,, +95045,If14,EA072,Nonhered: seniority,EA072-4,Within the leading ramage of the village,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +95046,If15,EA072,?,EA072-NA,,,,,, +95047,If16,EA072,Matrilineal heir,EA072-2,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +95048,If17,EA072,Patrilineal heir,EA072-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +95049,If2,EA072,Matrilineal heir,EA072-2,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +95050,If3,EA072,Matrilineal heir,EA072-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +95051,If4,EA072,Matrilineal heir,EA072-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +95052,If5,EA072,Matrilineal heir,EA072-2,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +95053,If6,EA072,Patrilineal heir,EA072-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +95054,If7,EA072,Nonhered: election,EA072-6,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +95055,If8,EA072,Nonhered: election,EA072-6,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +95056,If9,EA072,Matrilineal heir,EA072-2,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +95057,Ig1,EA072,Nonhered: influence,EA072-5,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +95058,Ig10,EA072,?,EA072-NA,,,,,, +95059,Ig11,EA072,Patrilineal heir,EA072-1,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +95060,Ig12,EA072,Patrilineal heir,EA072-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +95061,Ig13,EA072,Patrilineal heir,EA072-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +95062,Ig14,EA072,Matrilineal heir,EA072-2,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +95063,Ig15,EA072,?,EA072-NA,,,,,, +95064,Ig16,EA072,?,EA072-NA,,,,,, +95065,Ig17,EA072,?,EA072-NA,,,,,, +95066,Ig18,EA072,?,EA072-NA,,,,,, +95067,Ig19,EA072,?,EA072-NA,,,,,, +95068,Ig2,EA072,Matrilineal heir,EA072-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +95069,Ig20,EA072,Nonhered: influence,EA072-5,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +95070,Ig21,EA072,?,EA072-NA,,,,,, +95071,Ig3,EA072,Matrilineal heir,EA072-2,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +95072,Ig4,EA072,Nonhered: influence,EA072-5,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +95073,Ig5,EA072,Absence of office,EA072-9,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +95074,Ig6,EA072,Patrilineal heir,EA072-1,,ivens1927,,1900,EthnographicAtlas_1967_p101, +95075,Ig7,EA072,Nonhered: inf. consensus,EA072-7,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +95076,Ig8,EA072,?,EA072-NA,,,,,, +95077,Ig9,EA072,Absence of office,EA072-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +95078,Ih1,EA072,Nonhered: seniority,EA072-4,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +95079,Ih10,EA072,Patrilineal heir,EA072-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95080,Ih11,EA072,?,EA072-NA,,,,,, +95081,Ih12,EA072,?,EA072-NA,,,,,, +95082,Ih13,EA072,?,EA072-NA,,,,,, +95083,Ih14,EA072,Patrilineal heir,EA072-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +95084,Ih2,EA072,Patrilineal heir,EA072-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95085,Ih3,EA072,Absence of office,EA072-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +95086,Ih4,EA072,Patrilineal heir,EA072-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95087,Ih5,EA072,Patrilineal heir,EA072-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +95088,Ih6,EA072,Patrilineal heir,EA072-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p101, +95089,Ih7,EA072,Patrilineal heir,EA072-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +95090,Ih8,EA072,?,EA072-NA,,,,,, +95091,Ih9,EA072,Nonhered: influence,EA072-5,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95092,Ii1,EA072,Patrilineal heir,EA072-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +95093,Ii10,EA072,Patrilineal heir,EA072-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +95094,Ii12,EA072,Patrilineal heir,EA072-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95095,Ii13,EA072,Patrilineal heir,EA072-1,,burrows1937,,1830,EthnographicAtlas_1967_p101, +95096,Ii14,EA072,Nonhered: inf. consensus,EA072-7,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +95097,Ii2,EA072,Patrilineal heir,EA072-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +95098,Ii3,EA072,Patrilineal heir,EA072-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +95099,Ii4,EA072,?,EA072-NA,,,,,, +95100,Ii5,EA072,Patrilineal heir,EA072-1,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +95101,Ii6,EA072,Patrilineal heir,EA072-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +95102,Ii7,EA072,Patrilineal heir,EA072-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +95103,Ii8,EA072,Nonhered: election,EA072-6,Succession is elective within the ramage,burrows1936,,1840,EthnographicAtlas_1967_p101, +95104,Ii9,EA072,?,EA072-NA,,,,,, +95105,Ij1,EA072,Patrilineal heir,EA072-1,,buck1934,,1820,EthnographicAtlas_1967_p101, +95106,Ij10,EA072,Patrilineal heir,EA072-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +95107,Ij2,EA072,Patrilineal heir,EA072-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +95108,Ij3,EA072,Patrilineal heir,EA072-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +95109,Ij4,EA072,Patrilineal heir,EA072-1,,buck1932a,,1850,EthnographicAtlas_1967_p105, +95110,Ij5,EA072,Patrilineal heir,EA072-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +95111,Ij6,EA072,Patrilineal heir,EA072-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +95112,Ij7,EA072,Patrilineal heir,EA072-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +95113,Ij8,EA072,Patrilineal heir,EA072-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +95114,Ij9,EA072,Patrilineal heir,EA072-1,,metraux1940,,1860,EthnographicAtlas_1967_p105, +95115,Na1,EA072,Nonhered: inf. consensus,EA072-7,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +95116,Na10,EA072,Patrilineal heir,EA072-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +95117,Na11,EA072,?,EA072-NA,Election of village headmen was introduced in 1925,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +95118,Na12,EA072,Nonhered: influence,EA072-5,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +95119,Na13,EA072,Nonhered: inf. consensus,EA072-7,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +95120,Na14,EA072,Absence of office,EA072-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +95121,Na15,EA072,Nonhered: inf. consensus,EA072-7,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +95122,Na16,EA072,Nonhered: inf. consensus,EA072-7,,osgood1931,,1860,EthnographicAtlas_1967_p105, +95123,Na17,EA072,Nonhered: inf. consensus,EA072-7,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95124,Na19,EA072,Absence of office,EA072-9,"But 'matrilineal heir' (code ""2"") for sib chiefs",jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +95125,Na2,EA072,Absence of office,EA072-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +95126,Na20,EA072,Patrilineal heir,EA072-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +95127,Na21,EA072,Nonhered: seniority,EA072-4,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +95128,Na22,EA072,Nonhered: seniority,EA072-4,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +95129,Na23,EA072,Patrilineal heir,EA072-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +95130,Na24,EA072,Absence of office,EA072-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +95131,Na25,EA072,?,EA072-NA,,,,,, +95132,Na26,EA072,Patrilineal heir,EA072-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +95133,Na27,EA072,Matrilineal heir,EA072-2,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +95134,Na28,EA072,Nonhered: inf. consensus,EA072-7,,jenness1937,,1880,EthnographicAtlas_1967_p105, +95135,Na29,EA072,?,EA072-NA,,,,,, +95136,Na3,EA072,Absence of office,EA072-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +95137,Na30,EA072,Nonhered: inf. consensus,EA072-7,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +95138,Na31,EA072,Nonhered: inf. consensus,EA072-7,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +95139,Na32,EA072,Patrilineal heir,EA072-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +95140,Na33,EA072,Absence of office,EA072-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +95141,Na34,EA072,?,EA072-NA,,,,,, +95142,Na35,EA072,Patrilineal heir,EA072-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +95143,Na36,EA072,Patrilineal heir,EA072-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +95144,Na37,EA072,Absence of office,EA072-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +95145,Na38,EA072,Patrilineal heir,EA072-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +95146,Na39,EA072,Patrilineal heir,EA072-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +95147,Na4,EA072,Absence of office,EA072-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +95148,Na40,EA072,?,EA072-NA,,,,,, +95149,Na41,EA072,Patrilineal heir,EA072-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +95150,Na42,EA072,?,EA072-NA,,,,,, +95151,Na43,EA072,?,EA072-NA,,,,,, +95152,Na44,EA072,Nonhered: inf. consensus,EA072-7,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +95153,Na45,EA072,Nonhered: seniority,EA072-4,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +95154,Na5,EA072,Nonhered: seniority,EA072-4,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +95155,Na6,EA072,Absence of office,EA072-9,,lantis1946,,1930,EthnographicAtlas_1967_p105, +95156,Na7,EA072,Nonhered: inf. consensus,EA072-7,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +95157,Na8,EA072,Absence of office,EA072-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +95158,Na9,EA072,Patrilineal heir,EA072-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95159,Nb1,EA072,Matrilineal heir,EA072-2,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +95160,Nb10,EA072,Patrilineal heir,EA072-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +95161,Nb11,EA072,Patrilineal heir,EA072-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +95162,Nb12,EA072,Absence of office,EA072-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +95163,Nb13,EA072,Absence of office,EA072-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +95164,Nb14,EA072,Absence of office,EA072-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +95165,Nb15,EA072,?,EA072-NA,,,,,, +95166,Nb16,EA072,Patrilineal heir,EA072-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +95167,Nb17,EA072,Nonhered: influence,EA072-5,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +95168,Nb18,EA072,Patrilineal heir,EA072-1,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +95169,Nb19,EA072,Patrilineal heir,EA072-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +95170,Nb2,EA072,Nonhered: influence,EA072-5,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +95171,Nb20,EA072,Nonhered: influence,EA072-5,"A ""chief"" names his own successor",barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +95172,Nb21,EA072,Nonhered: influence,EA072-5,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +95173,Nb22,EA072,Matrilineal heir,EA072-2,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +95174,Nb23,EA072,Matrilineal heir,EA072-2,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +95175,Nb24,EA072,Patrilineal heir,EA072-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +95176,Nb25,EA072,Nonhered: influence,EA072-5,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +95177,Nb26,EA072,Absence of office,EA072-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +95178,Nb27,EA072,Nonhered: inf. consensus,EA072-7,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +95179,Nb28,EA072,Nonhered: influence,EA072-5,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +95180,Nb29,EA072,Nonhered: influence,EA072-5,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +95181,Nb3,EA072,Patrilineal heir,EA072-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +95182,Nb30,EA072,Absence of office,EA072-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +95183,Nb31,EA072,Nonhered: influence,EA072-5,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +95184,Nb32,EA072,Patrilineal heir,EA072-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +95185,Nb33,EA072,Patrilineal heir,EA072-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +95186,Nb34,EA072,Absence of office,EA072-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +95187,Nb35,EA072,Patrilineal heir,EA072-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +95188,Nb36,EA072,Absence of office,EA072-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +95189,Nb37,EA072,Nonhered: election,EA072-6,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +95190,Nb38,EA072,Patrilineal heir,EA072-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +95191,Nb39,EA072,Patrilineal heir,EA072-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +95192,Nb4,EA072,Nonhered: influence,EA072-5,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +95193,Nb5,EA072,Matrilineal heir,EA072-2,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +95194,Nb6,EA072,Patrilineal heir,EA072-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +95195,Nb7,EA072,Matrilineal heir,EA072-2,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +95196,Nb8,EA072,Matrilineal heir,EA072-2,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +95197,Nb9,EA072,Absence of office,EA072-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +95198,Nc1,EA072,Patrilineal heir,EA072-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +95199,Nc10,EA072,Patrilineal heir,EA072-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +95200,Nc11,EA072,Patrilineal heir,EA072-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +95201,Nc12,EA072,Nonhered: inf. consensus,EA072-7,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +95202,Nc13,EA072,Patrilineal heir,EA072-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +95203,Nc14,EA072,Patrilineal heir,EA072-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +95204,Nc15,EA072,Nonhered: inf. consensus,EA072-7,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +95205,Nc16,EA072,Patrilineal heir,EA072-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +95206,Nc17,EA072,Patrilineal heir,EA072-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +95207,Nc18,EA072,Nonhered: inf. consensus,EA072-7,"But often 'matrilineal heir' (code ""2"")",aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +95208,Nc19,EA072,Matrilineal heir,EA072-2,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +95209,Nc2,EA072,Patrilineal heir,EA072-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +95210,Nc20,EA072,Nonhered: inf. consensus,EA072-7,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +95211,Nc21,EA072,Nonhered: inf. consensus,EA072-7,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +95212,Nc22,EA072,Patrilineal heir,EA072-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +95213,Nc23,EA072,Patrilineal heir,EA072-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +95214,Nc24,EA072,?,EA072-NA,,,,,, +95215,Nc25,EA072,Patrilineal heir,EA072-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +95216,Nc26,EA072,Patrilineal heir,EA072-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +95217,Nc27,EA072,Nonhered: influence,EA072-5,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +95218,Nc28,EA072,Patrilineal heir,EA072-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +95219,Nc29,EA072,Patrilineal heir,EA072-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +95220,Nc3,EA072,Patrilineal heir,EA072-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +95221,Nc30,EA072,Patrilineal heir,EA072-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +95222,Nc31,EA072,Patrilineal heir,EA072-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +95223,Nc32,EA072,Patrilineal heir,EA072-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +95224,Nc33,EA072,Patrilineal heir,EA072-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +95225,Nc34,EA072,Patrilineal heir,EA072-1,,meigs1939,,1880,EthnographicAtlas_1967_p109, +95226,Nc4,EA072,Patrilineal heir,EA072-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +95227,Nc5,EA072,Patrilineal heir,EA072-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +95228,Nc6,EA072,Patrilineal heir,EA072-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +95229,Nc7,EA072,Patrilineal heir,EA072-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +95230,Nc8,EA072,Nonhered: inf. consensus,EA072-7,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +95231,Nc9,EA072,Nonhered: election,EA072-6,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +95232,Nd1,EA072,Patrilineal heir,EA072-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +95233,Nd10,EA072,Nonhered: inf. consensus,EA072-7,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +95234,Nd11,EA072,Patrilineal heir,EA072-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +95235,Nd12,EA072,Patrilineal heir,EA072-1,"Entry follows Turney-High; Ray reports 'nonhereditary through influence' (code ""5"")",ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +95236,Nd13,EA072,?,EA072-NA,,,,,, +95237,Nd14,EA072,Nonhered: election,EA072-6,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +95238,Nd15,EA072,Patrilineal heir,EA072-1,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +95239,Nd16,EA072,?,EA072-NA,,,,,, +95240,Nd17,EA072,?,EA072-NA,,,,,, +95241,Nd18,EA072,Patrilineal heir,EA072-1,"Or alternatively 'patrilineal heir' (code ""1"")",spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +95242,Nd19,EA072,Nonhered: inf. consensus,EA072-7,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +95243,Nd2,EA072,Patrilineal heir,EA072-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +95244,Nd20,EA072,Nonhered: election,EA072-6,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +95245,Nd21,EA072,Nonhered: inf. consensus,EA072-7,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +95246,Nd22,EA072,Nonhered: inf. consensus,EA072-7,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +95247,Nd23,EA072,Nonhered: inf. consensus,EA072-7,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +95248,Nd24,EA072,Nonhered: inf. consensus,EA072-7,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +95249,Nd25,EA072,Nonhered: inf. consensus,EA072-7,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +95250,Nd26,EA072,?,EA072-NA,,,,,, +95251,Nd27,EA072,Nonhered: inf. consensus,EA072-7,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +95252,Nd28,EA072,Nonhered: inf. consensus,EA072-7,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +95253,Nd29,EA072,Patrilineal heir,EA072-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +95254,Nd3,EA072,Patrilineal heir,EA072-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +95255,Nd30,EA072,Patrilineal heir,EA072-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +95256,Nd31,EA072,Patrilineal heir,EA072-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +95257,Nd32,EA072,Patrilineal heir,EA072-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +95258,Nd33,EA072,Patrilineal heir,EA072-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +95259,Nd34,EA072,Patrilineal heir,EA072-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +95260,Nd35,EA072,?,EA072-NA,Nonhereditary succession through appointment by predecessor,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +95261,Nd36,EA072,?,EA072-NA,,,,,, +95262,Nd37,EA072,?,EA072-NA,,,,,, +95263,Nd38,EA072,?,EA072-NA,,,,,, +95264,Nd39,EA072,?,EA072-NA,,,,,, +95265,Nd4,EA072,Patrilineal heir,EA072-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +95266,Nd40,EA072,?,EA072-NA,,,,,, +95267,Nd41,EA072,Patrilineal heir,EA072-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +95268,Nd42,EA072,Absence of office,EA072-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +95269,Nd43,EA072,Absence of office,EA072-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +95270,Nd44,EA072,Patrilineal heir,EA072-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +95271,Nd45,EA072,Nonhered: inf. consensus,EA072-7,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +95272,Nd46,EA072,Nonhered: inf. consensus,EA072-7,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +95273,Nd47,EA072,Absence of office,EA072-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +95274,Nd48,EA072,Absence of office,EA072-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +95275,Nd49,EA072,Nonhered: inf. consensus,EA072-7,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +95276,Nd5,EA072,Patrilineal heir,EA072-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +95277,Nd50,EA072,?,EA072-NA,,,,,, +95278,Nd51,EA072,?,EA072-NA,,,,,, +95279,Nd52,EA072,Nonhered: seniority,EA072-4,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +95280,Nd53,EA072,Nonhered: inf. consensus,EA072-7,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +95281,Nd54,EA072,Patrilineal heir,EA072-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95282,Nd55,EA072,?,EA072-NA,,,,,, +95283,Nd56,EA072,Nonhered: inf. consensus,EA072-7,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +95284,Nd57,EA072,Nonhered: inf. consensus,EA072-7,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +95285,Nd58,EA072,Patrilineal heir,EA072-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +95286,Nd59,EA072,Patrilineal heir,EA072-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +95287,Nd6,EA072,Patrilineal heir,EA072-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +95288,Nd60,EA072,Patrilineal heir,EA072-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +95289,Nd61,EA072,Patrilineal heir,EA072-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +95290,Nd62,EA072,?,EA072-NA,,,,,, +95291,Nd63,EA072,Nonhered: inf. consensus,EA072-7,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +95292,Nd64,EA072,Nonhered: inf. consensus,EA072-7,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +95293,Nd65,EA072,Patrilineal heir,EA072-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +95294,Nd66,EA072,Nonhered: influence,EA072-5,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +95295,Nd67,EA072,Nonhered: inf. consensus,EA072-7,,gifford1936,,1870,EthnographicAtlas_1967_p113, +95296,Nd7,EA072,Nonhered: influence,EA072-5,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +95297,Nd8,EA072,Patrilineal heir,EA072-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +95298,Nd9,EA072,Patrilineal heir,EA072-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +95299,Ne1,EA072,Nonhered: influence,EA072-5,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +95300,Ne10,EA072,Patrilineal heir,EA072-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +95301,Ne11,EA072,Nonhered: inf. consensus,EA072-7,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +95302,Ne12,EA072,Nonhered: inf. consensus,EA072-7,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +95303,Ne13,EA072,Nonhered: inf. consensus,EA072-7,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +95304,Ne14,EA072,Patrilineal heir,EA072-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +95305,Ne15,EA072,Nonhered: inf. consensus,EA072-7,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +95306,Ne16,EA072,Patrilineal heir,EA072-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +95307,Ne17,EA072,Nonhered: influence,EA072-5,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +95308,Ne18,EA072,Nonhered: inf. consensus,EA072-7,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +95309,Ne19,EA072,Patrilineal heir,EA072-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +95310,Ne2,EA072,?,EA072-NA,,,,,, +95311,Ne20,EA072,?,EA072-NA,,,,,, +95312,Ne21,EA072,?,EA072-NA,,,,,, +95313,Ne3,EA072,Nonhered: inf. consensus,EA072-7,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +95314,Ne4,EA072,Nonhered: influence,EA072-5,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +95315,Ne5,EA072,Absence of office,EA072-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +95316,Ne6,EA072,?,EA072-NA,,,,,, +95317,Ne7,EA072,Nonhered: influence,EA072-5,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +95318,Ne8,EA072,Nonhered: influence,EA072-5,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +95319,Ne9,EA072,Nonhered: influence,EA072-5,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +95320,Nf10,EA072,Patrilineal heir,EA072-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +95321,Nf11,EA072,?,EA072-NA,,,,,, +95322,Nf12,EA072,Patrilineal heir,EA072-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +95323,Nf13,EA072,Patrilineal heir,EA072-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95324,Nf14,EA072,Patrilineal heir,EA072-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +95325,Nf15,EA072,?,EA072-NA,,,,,, +95326,Nf2,EA072,Patrilineal heir,EA072-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +95327,Nf3,EA072,Nonhered: influence,EA072-5,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +95328,Nf4,EA072,Patrilineal heir,EA072-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +95329,Nf5,EA072,Patrilineal heir,EA072-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +95330,Nf6,EA072,Patrilineal heir,EA072-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +95331,Nf7,EA072,Patrilineal heir,EA072-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95332,Nf8,EA072,Patrilineal heir,EA072-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +95333,Nf9,EA072,?,EA072-NA,,,,,, +95334,Ng1,EA072,Matrilineal heir,EA072-2,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +95335,Ng10,EA072,Matrilineal heir,EA072-2,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +95336,Ng11,EA072,Nonhered: election,EA072-6,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +95337,Ng12,EA072,?,EA072-NA,,,,,, +95338,Ng13,EA072,?,EA072-NA,,,,,, +95339,Ng14,EA072,?,EA072-NA,,,,,, +95340,Ng15,EA072,?,EA072-NA,,,,,, +95341,Ng2,EA072,?,EA072-NA,,,,,, +95342,Ng3,EA072,Matrilineal heir,EA072-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +95343,Ng4,EA072,?,EA072-NA,,,,,, +95344,Ng5,EA072,?,EA072-NA,,,,,, +95345,Ng6,EA072,Matrilineal heir,EA072-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +95346,Ng7,EA072,Matrilineal heir,EA072-2,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +95347,Ng8,EA072,Matrilineal heir,EA072-2,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +95348,Ng9,EA072,?,EA072-NA,,,,,, +95349,Nh1,EA072,Nonhered: inf. consensus,EA072-7,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +95350,Nh10,EA072,Nonhered: election,EA072-6,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +95351,Nh11,EA072,Nonhered: election,EA072-6,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +95352,Nh12,EA072,Nonhered: election,EA072-6,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +95353,Nh13,EA072,?,EA072-NA,,,,,, +95354,Nh14,EA072,?,EA072-NA,,,,,, +95355,Nh15,EA072,?,EA072-NA,,,,,, +95356,Nh16,EA072,Patrilineal heir,EA072-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95357,Nh17,EA072,Matrilineal heir,EA072-2,"But alternatively 'nonhereditary through informal consensus' (code ""7"")",gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +95358,Nh18,EA072,Matrilineal heir,EA072-2,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95359,Nh19,EA072,Nonhered: inf. consensus,EA072-7,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +95360,Nh2,EA072,?,EA072-NA,,,,,, +95361,Nh20,EA072,Nonhered: inf. consensus,EA072-7,,gifford1931,,1860,EthnographicAtlas_1967_p117, +95362,Nh21,EA072,Patrilineal heir,EA072-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95363,Nh22,EA072,Nonhered: inf. consensus,EA072-7,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +95364,Nh23,EA072,Absence of office,EA072-9,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +95365,Nh24,EA072,Nonhered: inf. consensus,EA072-7,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +95366,Nh25,EA072,Nonhered: election,EA072-6,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +95367,Nh26,EA072,?,EA072-NA,,,,,, +95368,Nh27,EA072,?,EA072-NA,,,,,, +95369,Nh3,EA072,Nonhered: inf. consensus,EA072-7,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +95370,Nh4,EA072,Nonhered: election,EA072-6,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +95371,Nh5,EA072,?,EA072-NA,,,,,, +95372,Nh6,EA072,Nonhered: election,EA072-6,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +95373,Nh7,EA072,Nonhered: election,EA072-6,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +95374,Nh8,EA072,Nonhered: election,EA072-6,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +95375,Nh9,EA072,Nonhered: election,EA072-6,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +95376,Ni1,EA072,Nonhered: election,EA072-6,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +95377,Ni2,EA072,Absence of office,EA072-9,A council only,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +95378,Ni3,EA072,Nonhered: election,EA072-6,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +95379,Ni4,EA072,?,EA072-NA,,,,,, +95380,Ni5,EA072,Nonhered: inf. consensus,EA072-7,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +95381,Ni6,EA072,Patrilineal heir,EA072-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +95382,Ni7,EA072,Nonhered: election,EA072-6,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +95383,Ni8,EA072,?,EA072-NA,,,,,, +95384,Ni9,EA072,?,EA072-NA,,,,,, +95385,Nj1,EA072,Nonhered: election,EA072-6,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95386,Nj10,EA072,Nonhered: election,EA072-6,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95387,Nj11,EA072,?,EA072-NA,,,,,, +95388,Nj12,EA072,?,EA072-NA,,,,,, +95389,Nj13,EA072,?,EA072-NA,,,,,, +95390,Nj14,EA072,?,EA072-NA,,,,,, +95391,Nj2,EA072,Patrilineal heir,EA072-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +95392,Nj3,EA072,Nonhered: election,EA072-6,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +95393,Nj4,EA072,?,EA072-NA,,,,,, +95394,Nj5,EA072,?,EA072-NA,,,,,, +95395,Nj6,EA072,?,EA072-NA,,,,,, +95396,Nj7,EA072,Nonhered: election,EA072-6,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95397,Nj8,EA072,Patrilineal heir,EA072-1,,foster1948,,1500,EthnographicAtlas_1967_p121, +95398,Nj9,EA072,Nonhered: seniority,EA072-4,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +95399,Sa1,EA072,Nonhered: election,EA072-6,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +95400,Sa10,EA072,?,EA072-NA,,,,,, +95401,Sa11,EA072,?,EA072-NA,,,,,, +95402,Sa12,EA072,Patrilineal heir,EA072-1,,stone1948,,1948,EthnographicAtlas_1967_p121, +95403,Sa13,EA072,Nonhered: inf. consensus,EA072-7,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +95404,Sa14,EA072,?,EA072-NA,,,,,, +95405,Sa15,EA072,?,EA072-NA,,,,,, +95406,Sa16,EA072,?,EA072-NA,,,,,, +95407,Sa17,EA072,?,EA072-NA,,,,,, +95408,Sa2,EA072,?,EA072-NA,,,,,, +95409,Sa3,EA072,Nonhered: election,EA072-6,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +95410,Sa4,EA072,?,EA072-NA,,,,,, +95411,Sa5,EA072,?,EA072-NA,,,,,, +95412,Sa6,EA072,?,EA072-NA,,,,,, +95413,Sa7,EA072,Nonhered: appointed by auth.,EA072-3,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +95414,Sa8,EA072,Nonhered: appointed by auth.,EA072-3,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +95415,Sa9,EA072,?,EA072-NA,,,,,, +95416,Sb1,EA072,Nonhered: inf. consensus,EA072-7,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +95417,Sb2,EA072,Patrilineal heir,EA072-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +95418,Sb3,EA072,?,EA072-NA,,,,,, +95419,Sb4,EA072,Nonhered: election,EA072-6,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +95420,Sb5,EA072,?,EA072-NA,,,,,, +95421,Sb6,EA072,Matrilineal heir,EA072-2,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +95422,Sb7,EA072,Nonhered: seniority,EA072-4,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p121, +95423,Sb8,EA072,Matrilineal heir,EA072-2,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +95424,Sb9,EA072,?,EA072-NA,,,,,, +95425,Sc1,EA072,Nonhered: inf. consensus,EA072-7,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +95426,Sc10,EA072,?,EA072-NA,,,,,, +95427,Sc11,EA072,?,EA072-NA,,,,,, +95428,Sc12,EA072,Patrilineal heir,EA072-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +95429,Sc13,EA072,?,EA072-NA,,,,,, +95430,Sc14,EA072,?,EA072-NA,,,,,, +95431,Sc15,EA072,Patrilineal heir,EA072-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +95432,Sc16,EA072,?,EA072-NA,,,,,, +95433,Sc17,EA072,?,EA072-NA,,,,,, +95434,Sc18,EA072,Matrilineal heir,EA072-2,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +95435,Sc2,EA072,Patrilineal heir,EA072-1,,leedsnd,,1950,EthnographicAtlas_1967_p121, +95436,Sc3,EA072,Nonhered: inf. consensus,EA072-7,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +95437,Sc4,EA072,Nonhered: inf. consensus,EA072-7,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +95438,Sc5,EA072,?,EA072-NA,,,,,, +95439,Sc6,EA072,Matrilineal heir,EA072-2,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95440,Sc7,EA072,?,EA072-NA,,,,,, +95441,Sc8,EA072,?,EA072-NA,,,,,, +95442,Sc9,EA072,?,EA072-NA,,,,,, +95443,Sd1,EA072,Patrilineal heir,EA072-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95444,Sd2,EA072,?,EA072-NA,,,,,, +95445,Sd3,EA072,Nonhered: election,EA072-6,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +95446,Sd4,EA072,?,EA072-NA,,,,,, +95447,Sd5,EA072,Patrilineal heir,EA072-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +95448,Sd6,EA072,Nonhered: inf. consensus,EA072-7,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +95449,Sd7,EA072,Patrilineal heir,EA072-1,,fock1963,,1950,EthnographicAtlas_1967_p121, +95450,Sd8,EA072,Patrilineal heir,EA072-1,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +95451,Sd9,EA072,Nonhered: inf. consensus,EA072-7,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95452,Se1,EA072,Patrilineal heir,EA072-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +95453,Se10,EA072,?,EA072-NA,,,,,, +95454,Se11,EA072,?,EA072-NA,,,,,, +95455,Se12,EA072,?,EA072-NA,,,,,, +95456,Se2,EA072,?,EA072-NA,,,,,, +95457,Se3,EA072,Absence of office,EA072-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +95458,Se4,EA072,Nonhered: election,EA072-6,,fejos1943,,1940,EthnographicAtlas_1967_p121, +95459,Se5,EA072,Patrilineal heir,EA072-1,"Alternatively 'patrilineal heir' (code ""1"")",goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +95460,Se6,EA072,Patrilineal heir,EA072-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +95461,Se7,EA072,Nonhered: appointed by auth.,EA072-3,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95462,Se8,EA072,Absence of office,EA072-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +95463,Se9,EA072,?,EA072-NA,,,,,, +95464,Sf1,EA072,?,EA072-NA,,,,,, +95465,Sf2,EA072,?,EA072-NA,,,,,, +95466,Sf3,EA072,Patrilineal heir,EA072-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +95467,Sf4,EA072,Nonhered: inf. consensus,EA072-7,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +95468,Sf5,EA072,Nonhered: election,EA072-6,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +95469,Sf6,EA072,Matrilineal heir,EA072-2,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +95470,Sf7,EA072,Patrilineal heir,EA072-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +95471,Sf8,EA072,?,EA072-NA,,,,,, +95472,Sf9,EA072,?,EA072-NA,,,,,, +95473,Sg1,EA072,Absence of office,EA072-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +95474,Sg2,EA072,Patrilineal heir,EA072-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95475,Sg3,EA072,Nonhered: inf. consensus,EA072-7,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +95476,Sg4,EA072,Patrilineal heir,EA072-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +95477,Sg5,EA072,Absence of office,EA072-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95478,Sh1,EA072,?,EA072-NA,,,,,, +95479,Sh2,EA072,Patrilineal heir,EA072-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +95480,Sh3,EA072,Patrilineal heir,EA072-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +95481,Sh4,EA072,?,EA072-NA,,,,,, +95482,Sh5,EA072,?,EA072-NA,,,,,, +95483,Sh6,EA072,?,EA072-NA,,,,,, +95484,Sh7,EA072,Patrilineal heir,EA072-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +95485,Sh8,EA072,Patrilineal heir,EA072-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +95486,Sh9,EA072,Patrilineal heir,EA072-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +95487,Si1,EA072,Matrilineal heir,EA072-2,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95488,Si10,EA072,Patrilineal heir,EA072-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +95489,Si2,EA072,Patrilineal heir,EA072-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +95490,Si3,EA072,Nonhered: inf. consensus,EA072-7,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95491,Si4,EA072,Nonhered: inf. consensus,EA072-7,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +95492,Si5,EA072,Patrilineal heir,EA072-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +95493,Si6,EA072,Patrilineal heir,EA072-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +95494,Si7,EA072,Patrilineal heir,EA072-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +95495,Si8,EA072,Patrilineal heir,EA072-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +95496,Si9,EA072,?,EA072-NA,,,,,, +95497,Sj1,EA072,Patrilineal heir,EA072-1,The preferred successor is a grandson,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +95498,Sj10,EA072,?,EA072-NA,,,,,, +95499,Sj11,EA072,Nonhered: inf. consensus,EA072-7,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +95500,Sj2,EA072,Patrilineal heir,EA072-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +95501,Sj3,EA072,Absence of office,EA072-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +95502,Sj4,EA072,?,EA072-NA,,,,,, +95503,Sj5,EA072,Nonhered: inf. consensus,EA072-7,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +95504,Sj6,EA072,Nonhered: appointed by auth.,EA072-3,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95505,Sj7,EA072,Matrilineal heir,EA072-2,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +95506,Sj8,EA072,Patrilineal heir,EA072-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +95507,Sj9,EA072,Matrilineal heir,EA072-2,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +95508,ch12,EA072,Nonhered: election,EA072-6,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +95509,ch13,EA072,Nonhered: election,EA072-6,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +95510,ch14,EA072,Nonhered: election,EA072-6,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +95511,ch15,EA072,Nonhered: election,EA072-6,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +95512,ch16,EA072,Nonhered: election,EA072-6,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +95513,ch17,EA072,Nonhered: election,EA072-6,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +95514,ch18,EA072,Nonhered: election,EA072-6,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +95515,ch19,EA072,Nonhered: election,EA072-6,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +95516,ch20,EA072,Nonhered: election,EA072-6,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +95517,ch21,EA072,Nonhered: election,EA072-6,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +95518,ch22,EA072,Nonhered: election,EA072-6,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +95519,ch23,EA072,Nonhered: election,EA072-6,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +95520,ch24,EA072,Nonhered: appointed by auth.,EA072-3,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +95521,ch25,EA072,Nonhered: election,EA072-6,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +95522,ch26,EA072,Nonhered: election,EA072-6,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +95523,ch27,EA072,Nonhered: election,EA072-6,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +95524,ch28,EA072,Nonhered: election,EA072-6,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +95525,ec12,EA072,Absence of office,EA072-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +95526,ec13,EA072,Nonhered: influence,EA072-5,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +95527,ec14,EA072,Nonhered: influence,EA072-5,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +95528,ec15,EA072,Nonhered: influence,EA072-5,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +95529,ec16,EA072,Absence of office,EA072-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +95530,ec17,EA072,Absence of office,EA072-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +95531,ec18,EA072,Absence of office,EA072-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +95532,ec19,EA072,Absence of office,EA072-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +95533,ec20,EA072,Absence of office,EA072-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +95534,ec21,EA072,Absence of office,EA072-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +95535,Aa1,EA073,Son,EA073-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +95536,Aa2,EA073,Nonhereditary,EA073-5,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +95537,Aa3,EA073,Son,EA073-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +95538,Aa4,EA073,Son,EA073-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +95539,Aa5,EA073,Absence of office,EA073-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +95540,Aa6,EA073,?,EA073-NA,,,,,, +95541,Aa7,EA073,Son,EA073-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +95542,Aa8,EA073,?,EA073-NA,,,,,, +95543,Aa9,EA073,Nonhereditary,EA073-5,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +95544,Ab1,EA073,Patrilineal heir,EA073-2,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +95545,Ab10,EA073,Son,EA073-1,,hunter1936,,1936,EthnographicAtlas_1967_p65, +95546,Ab11,EA073,Son,EA073-1,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +95547,Ab12,EA073,Son,EA073-1,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +95548,Ab13,EA073,Son,EA073-1,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +95549,Ab14,EA073,?,EA073-NA,,,,,, +95550,Ab15,EA073,Son,EA073-1,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +95551,Ab16,EA073,Patrilineal heir,EA073-2,,earthy1933,,1930,EthnographicAtlas_1967_p65, +95552,Ab17,EA073,Patrilineal heir,EA073-2,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +95553,Ab18,EA073,Patrilineal heir,EA073-2,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +95554,Ab19,EA073,Nonhereditary,EA073-5,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +95555,Ab2,EA073,Son,EA073-1,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +95556,Ab20,EA073,Nonhereditary,EA073-5,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +95557,Ab21a,EA073,Son,EA073-1,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +95558,Ab21b,EA073,?,EA073-NA,,,,,, +95559,Ab22,EA073,?,EA073-NA,,,,,, +95560,Ab3,EA073,Son,EA073-1,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +95561,Ab4,EA073,Patrilineal heir,EA073-2,,junod1927,,1920,EthnographicAtlas_1967_p65, +95562,Ab5,EA073,Son,EA073-1,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +95563,Ab6,EA073,Son,EA073-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +95564,Ab7,EA073,Sister's son,EA073-3,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +95565,Ab8,EA073,Son,EA073-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +95566,Ab9,EA073,Nonhereditary,EA073-5,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +95567,Ac1,EA073,Sister's son,EA073-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +95568,Ac10,EA073,Matrilineal heir,EA073-4,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +95569,Ac11,EA073,Sister's son,EA073-3,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +95570,Ac12,EA073,Sister's son,EA073-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +95571,Ac13,EA073,Sister's son,EA073-3,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +95572,Ac14,EA073,Matrilineal heir,EA073-4,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +95573,Ac15,EA073,Matrilineal heir,EA073-4,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +95574,Ac16,EA073,Matrilineal heir,EA073-4,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +95575,Ac17,EA073,Matrilineal heir,EA073-4,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +95576,Ac18,EA073,Matrilineal heir,EA073-4,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +95577,Ac19,EA073,Nonhereditary,EA073-5,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +95578,Ac2,EA073,Sister's son,EA073-3,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +95579,Ac20,EA073,Matrilineal heir,EA073-4,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +95580,Ac21,EA073,Matrilineal heir,EA073-4,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +95581,Ac22,EA073,Sister's son,EA073-3,,mertens1935,,1930,EthnographicAtlas_1967_p65, +95582,Ac23,EA073,Matrilineal heir,EA073-4,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +95583,Ac24,EA073,Matrilineal heir,EA073-4,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +95584,Ac25,EA073,Matrilineal heir,EA073-4,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +95585,Ac26,EA073,Matrilineal heir,EA073-4,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +95586,Ac27,EA073,Sister's son,EA073-3,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +95587,Ac28,EA073,Matrilineal heir,EA073-4,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +95588,Ac29,EA073,?,EA073-NA,,,,,, +95589,Ac3,EA073,Matrilineal heir,EA073-4,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +95590,Ac30,EA073,Matrilineal heir,EA073-4,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +95591,Ac31,EA073,Nonhereditary,EA073-5,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +95592,Ac32,EA073,Matrilineal heir,EA073-4,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +95593,Ac33,EA073,Matrilineal heir,EA073-4,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +95594,Ac34,EA073,Matrilineal heir,EA073-4,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +95595,Ac35,EA073,?,EA073-NA,,,,,, +95596,Ac36,EA073,Son,EA073-1,Formerly matrilineal,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +95597,Ac37,EA073,Matrilineal heir,EA073-4,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +95598,Ac38,EA073,Matrilineal heir,EA073-4,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +95599,Ac39,EA073,Sister's son,EA073-3,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +95600,Ac4,EA073,Nonhereditary,EA073-5,The eldest lineage head succeeds,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +95601,Ac40,EA073,Matrilineal heir,EA073-4,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +95602,Ac41,EA073,?,EA073-NA,Matrilineal,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +95603,Ac42,EA073,?,EA073-NA,,,,,, +95604,Ac43,EA073,?,EA073-NA,,,,,, +95605,Ac5,EA073,Sister's son,EA073-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +95606,Ac6,EA073,Matrilineal heir,EA073-4,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +95607,Ac7,EA073,Sister's son,EA073-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +95608,Ac8,EA073,Matrilineal heir,EA073-4,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +95609,Ac9,EA073,?,EA073-NA,,,,,, +95610,Ad1,EA073,Son,EA073-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +95611,Ad10,EA073,Son,EA073-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +95612,Ad11,EA073,Nonhereditary,EA073-5,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +95613,Ad12,EA073,Absence of office,EA073-9,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +95614,Ad13,EA073,?,EA073-NA,,,,,, +95615,Ad14,EA073,Sister's son,EA073-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +95616,Ad15,EA073,Patrilineal heir,EA073-2,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +95617,Ad16,EA073,Nonhereditary,EA073-5,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +95618,Ad17,EA073,Son,EA073-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +95619,Ad18,EA073,Nonhereditary,EA073-5,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +95620,Ad19,EA073,Nonhereditary,EA073-5,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +95621,Ad2,EA073,Son,EA073-1,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +95622,Ad20,EA073,Son,EA073-1,"But formerly 'matrilineal heir' (code ""4"") in some chiefdoms",blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +95623,Ad21,EA073,Nonhereditary,EA073-5,Nq in the royal family [sic Gray (1999)],maurice193538,,1930,EthnographicAtlas_1967_p69, +95624,Ad22,EA073,Nonhereditary,EA073-5,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +95625,Ad23,EA073,Son,EA073-1,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +95626,Ad24,EA073,Son,EA073-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +95627,Ad25,EA073,?,EA073-NA,,,,,, +95628,Ad26,EA073,Absence of office,EA073-9,,sick1916,,1910,EthnographicAtlas_1967_p69, +95629,Ad27,EA073,Nonhereditary,EA073-5,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +95630,Ad28,EA073,?,EA073-NA,,,,,, +95631,Ad29,EA073,Nonhereditary,EA073-5,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +95632,Ad3,EA073,Son,EA073-1,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +95633,Ad30,EA073,Patrilineal heir,EA073-2,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +95634,Ad31,EA073,Absence of office,EA073-9,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +95635,Ad32,EA073,Absence of office,EA073-9,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +95636,Ad33,EA073,Absence of office,EA073-9,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +95637,Ad34,EA073,Absence of office,EA073-9,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +95638,Ad35,EA073,Absence of office,EA073-9,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +95639,Ad36,EA073,Patrilineal heir,EA073-2,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +95640,Ad37,EA073,?,EA073-NA,,,,,, +95641,Ad38,EA073,?,EA073-NA,,,,,, +95642,Ad39,EA073,Nonhereditary,EA073-5,,gray1963,,1950,EthnographicAtlas_1967_p69, +95643,Ad4,EA073,Matrilineal heir,EA073-4,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +95644,Ad40,EA073,?,EA073-NA,,,,,, +95645,Ad41,EA073,?,EA073-NA,,,,,, +95646,Ad42,EA073,Son,EA073-1,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +95647,Ad43,EA073,?,EA073-NA,,,,,, +95648,Ad44,EA073,Son,EA073-1,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +95649,Ad45,EA073,?,EA073-NA,,,,,, +95650,Ad46,EA073,Nonhereditary,EA073-5,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +95651,Ad47,EA073,Son,EA073-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +95652,Ad48,EA073,Patrilineal heir,EA073-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +95653,Ad49,EA073,?,EA073-NA,,,,,, +95654,Ad5,EA073,Matrilineal heir,EA073-4,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +95655,Ad50,EA073,Sister's son,EA073-3,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +95656,Ad51,EA073,Sister's son,EA073-3,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +95657,Ad6,EA073,Nonhereditary,EA073-5,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +95658,Ad7,EA073,Nonhereditary,EA073-5,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +95659,Ad8,EA073,?,EA073-NA,,,,,, +95660,Ad9,EA073,Patrilineal heir,EA073-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +95661,Ae1,EA073,Absence of office,EA073-9,A council of elders only,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +95662,Ae10,EA073,Son,EA073-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +95663,Ae11,EA073,Patrilineal heir,EA073-2,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +95664,Ae12,EA073,Son,EA073-1,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +95665,Ae13,EA073,Nonhereditary,EA073-5,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +95666,Ae14,EA073,Son,EA073-1,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +95667,Ae15,EA073,?,EA073-NA,,,,,, +95668,Ae16,EA073,Son,EA073-1,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +95669,Ae17,EA073,Patrilineal heir,EA073-2,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +95670,Ae18,EA073,Son,EA073-1,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +95671,Ae19,EA073,?,EA073-NA,,,,,, +95672,Ae2,EA073,Absence of office,EA073-9,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +95673,Ae20,EA073,Patrilineal heir,EA073-2,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +95674,Ae21,EA073,Son,EA073-1,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +95675,Ae22,EA073,Son,EA073-1,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +95676,Ae23,EA073,Patrilineal heir,EA073-2,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +95677,Ae24,EA073,Patrilineal heir,EA073-2,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +95678,Ae25,EA073,Son,EA073-1,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +95679,Ae26,EA073,Patrilineal heir,EA073-2,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +95680,Ae27,EA073,Patrilineal heir,EA073-2,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +95681,Ae28,EA073,?,EA073-NA,,,,,, +95682,Ae29,EA073,Patrilineal heir,EA073-2,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +95683,Ae3,EA073,Son,EA073-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +95684,Ae30,EA073,?,EA073-NA,,,,,, +95685,Ae31,EA073,Patrilineal heir,EA073-2,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +95686,Ae32,EA073,?,EA073-NA,,,,,, +95687,Ae33,EA073,Son,EA073-1,"But Moller reports 'patrilineal heir who takes precedence over a son' (code ""2"")",czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +95688,Ae34,EA073,?,EA073-NA,,,,,, +95689,Ae35,EA073,?,EA073-NA,,,,,, +95690,Ae36,EA073,Patrilineal heir,EA073-2,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +95691,Ae37,EA073,?,EA073-NA,,,,,, +95692,Ae38,EA073,Matrilineal heir,EA073-4,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +95693,Ae39,EA073,Nonhereditary,EA073-5,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +95694,Ae4,EA073,Patrilineal heir,EA073-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +95695,Ae40,EA073,Patrilineal heir,EA073-2,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +95696,Ae41,EA073,Son,EA073-1,,andersson1953,,1940,EthnographicAtlas_1967_p69, +95697,Ae42,EA073,Son,EA073-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +95698,Ae43,EA073,?,EA073-NA,,,,,, +95699,Ae44,EA073,Matrilineal heir,EA073-4,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +95700,Ae45,EA073,Son,EA073-1,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +95701,Ae46,EA073,?,EA073-NA,,,,,, +95702,Ae47,EA073,Son,EA073-1,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +95703,Ae48,EA073,Son,EA073-1,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +95704,Ae49,EA073,Son,EA073-1,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +95705,Ae5,EA073,Son,EA073-1,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +95706,Ae50,EA073,Son,EA073-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +95707,Ae51,EA073,Son,EA073-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +95708,Ae52,EA073,Son,EA073-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +95709,Ae53,EA073,Matrilineal heir,EA073-4,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +95710,Ae54,EA073,Sister's son,EA073-3,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +95711,Ae55,EA073,?,EA073-NA,,,,,, +95712,Ae56,EA073,?,EA073-NA,,,,,, +95713,Ae57,EA073,?,EA073-NA,,,,,, +95714,Ae58,EA073,?,EA073-NA,,,,,, +95715,Ae59,EA073,?,EA073-NA,,,,,, +95716,Ae6,EA073,Patrilineal heir,EA073-2,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +95717,Ae7,EA073,?,EA073-NA,,,,,, +95718,Ae8,EA073,Son,EA073-1,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +95719,Ae9,EA073,Son,EA073-1,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +95720,Af1,EA073,Son,EA073-1,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +95721,Af10,EA073,Patrilineal heir,EA073-2,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +95722,Af11,EA073,Patrilineal heir,EA073-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +95723,Af12,EA073,?,EA073-NA,,,,,, +95724,Af13,EA073,?,EA073-NA,,,,,, +95725,Af14,EA073,?,EA073-NA,,,,,, +95726,Af15,EA073,Nonhereditary,EA073-5,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +95727,Af16,EA073,Son,EA073-1,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +95728,Af17,EA073,?,EA073-NA,,,,,, +95729,Af18,EA073,Son,EA073-1,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +95730,Af19,EA073,Nonhereditary,EA073-5,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +95731,Af2,EA073,?,EA073-NA,,,,,, +95732,Af20,EA073,Son,EA073-1,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +95733,Af21,EA073,?,EA073-NA,,,,,, +95734,Af22,EA073,Nonhereditary,EA073-5,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +95735,Af23,EA073,Absence of office,EA073-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +95736,Af24,EA073,Son,EA073-1,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +95737,Af25,EA073,Nonhereditary,EA073-5,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +95738,Af26,EA073,Patrilineal heir,EA073-2,"But 'nonhereditary, based on seniority' (code ""4"") in some villages",bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +95739,Af27,EA073,Nonhereditary,EA073-5,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +95740,Af28,EA073,Son,EA073-1,,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +95741,Af29,EA073,?,EA073-NA,,,,,, +95742,Af3,EA073,Nonhereditary,EA073-5,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +95743,Af30,EA073,?,EA073-NA,,,,,, +95744,Af31,EA073,Patrilineal heir,EA073-2,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +95745,Af32,EA073,?,EA073-NA,,,,,, +95746,Af33,EA073,?,EA073-NA,,,,,, +95747,Af34,EA073,?,EA073-NA,,,,,, +95748,Af35,EA073,?,EA073-NA,,,,,, +95749,Af36,EA073,Nonhereditary,EA073-5,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +95750,Af37,EA073,?,EA073-NA,,,,,, +95751,Af38,EA073,?,EA073-NA,,,,,, +95752,Af39,EA073,Matrilineal heir,EA073-4,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +95753,Af4,EA073,Matrilineal heir,EA073-4,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +95754,Af40,EA073,Matrilineal heir,EA073-4,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +95755,Af41,EA073,Matrilineal heir,EA073-4,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +95756,Af42,EA073,Nonhereditary,EA073-5,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +95757,Af43,EA073,Patrilineal heir,EA073-2,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +95758,Af44,EA073,?,EA073-NA,,,,,, +95759,Af45,EA073,Matrilineal heir,EA073-4,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +95760,Af46,EA073,?,EA073-NA,,,,,, +95761,Af47,EA073,Son,EA073-1,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +95762,Af48,EA073,Son,EA073-1,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +95763,Af49,EA073,Son,EA073-1,,schwab1947,,1940,EthnographicAtlas_1967_p73, +95764,Af5,EA073,Patrilineal heir,EA073-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +95765,Af50,EA073,?,EA073-NA,,,,,, +95766,Af51,EA073,Patrilineal heir,EA073-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +95767,Af52,EA073,Patrilineal heir,EA073-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +95768,Af53,EA073,?,EA073-NA,,,,,, +95769,Af54,EA073,Patrilineal heir,EA073-2,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +95770,Af55,EA073,Patrilineal heir,EA073-2,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +95771,Af56,EA073,Son,EA073-1,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +95772,Af57,EA073,?,EA073-NA,,,,,, +95773,Af58,EA073,Nonhereditary,EA073-5,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +95774,Af6,EA073,Patrilineal heir,EA073-2,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +95775,Af7,EA073,Nonhereditary,EA073-5,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +95776,Af8,EA073,Nonhereditary,EA073-5,"But 'patrilineal heir who takes precedence over a son' (code ""2"") in some regions",banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +95777,Af9,EA073,Matrilineal heir,EA073-4,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +95778,Ag1,EA073,Patrilineal heir,EA073-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +95779,Ag10,EA073,Absence of office,EA073-9,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +95780,Ag11,EA073,?,EA073-NA,,,,,, +95781,Ag12,EA073,Patrilineal heir,EA073-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +95782,Ag13,EA073,Son,EA073-1,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +95783,Ag14,EA073,?,EA073-NA,,,,,, +95784,Ag15,EA073,?,EA073-NA,,,,,, +95785,Ag16,EA073,Son,EA073-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +95786,Ag17,EA073,?,EA073-NA,,,,,, +95787,Ag18,EA073,Matrilineal heir,EA073-4,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +95788,Ag19,EA073,Patrilineal heir,EA073-2,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +95789,Ag2,EA073,?,EA073-NA,,,,,, +95790,Ag20,EA073,?,EA073-NA,,,,,, +95791,Ag21,EA073,Matrilineal heir,EA073-4,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +95792,Ag22,EA073,Patrilineal heir,EA073-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +95793,Ag23,EA073,?,EA073-NA,,,,,, +95794,Ag24,EA073,?,EA073-NA,,,,,, +95795,Ag25,EA073,?,EA073-NA,,,,,, +95796,Ag26,EA073,?,EA073-NA,,,,,, +95797,Ag27,EA073,?,EA073-NA,,,,,, +95798,Ag28,EA073,?,EA073-NA,,,,,, +95799,Ag29,EA073,?,EA073-NA,,,,,, +95800,Ag3,EA073,Patrilineal heir,EA073-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +95801,Ag30,EA073,Patrilineal heir,EA073-2,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +95802,Ag31,EA073,Patrilineal heir,EA073-2,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +95803,Ag32,EA073,?,EA073-NA,,,,,, +95804,Ag33,EA073,?,EA073-NA,,,,,, +95805,Ag34,EA073,?,EA073-NA,,,,,, +95806,Ag35,EA073,Sister's son,EA073-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +95807,Ag36,EA073,?,EA073-NA,,,,,, +95808,Ag37,EA073,Patrilineal heir,EA073-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +95809,Ag38,EA073,Patrilineal heir,EA073-2,"Entry follows Tauxier; Rattry reports 'nonhereditary' (code ""5"")",rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +95810,Ag39,EA073,Patrilineal heir,EA073-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +95811,Ag4,EA073,Nonhereditary,EA073-5,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +95812,Ag40,EA073,Patrilineal heir,EA073-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +95813,Ag41,EA073,Patrilineal heir,EA073-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +95814,Ag42,EA073,Patrilineal heir,EA073-2,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +95815,Ag43,EA073,?,EA073-NA,,,,,, +95816,Ag44,EA073,Nonhereditary,EA073-5,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +95817,Ag45,EA073,Nonhereditary,EA073-5,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +95818,Ag46,EA073,Patrilineal heir,EA073-2,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +95819,Ag47,EA073,Son,EA073-1,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +95820,Ag48,EA073,Nonhereditary,EA073-5,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +95821,Ag49,EA073,Nonhereditary,EA073-5,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +95822,Ag5,EA073,?,EA073-NA,,,,,, +95823,Ag50,EA073,Nonhereditary,EA073-5,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +95824,Ag51,EA073,?,EA073-NA,,,,,, +95825,Ag52,EA073,Nonhereditary,EA073-5,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +95826,Ag53,EA073,Son,EA073-1,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +95827,Ag54,EA073,Patrilineal heir,EA073-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +95828,Ag6,EA073,?,EA073-NA,,,,,, +95829,Ag7,EA073,?,EA073-NA,,,,,, +95830,Ag8,EA073,Matrilineal heir,EA073-4,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +95831,Ag9,EA073,Patrilineal heir,EA073-2,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +95832,Ah1,EA073,Nonhereditary,EA073-5,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +95833,Ah10,EA073,Nonhereditary,EA073-5,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +95834,Ah11,EA073,?,EA073-NA,,,,,, +95835,Ah12,EA073,?,EA073-NA,,,,,, +95836,Ah13,EA073,Son,EA073-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +95837,Ah14,EA073,?,EA073-NA,,,,,, +95838,Ah15,EA073,Nonhereditary,EA073-5,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +95839,Ah16,EA073,Son,EA073-1,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +95840,Ah17,EA073,Patrilineal heir,EA073-2,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +95841,Ah18,EA073,Patrilineal heir,EA073-2,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +95842,Ah19,EA073,Patrilineal heir,EA073-2,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +95843,Ah2,EA073,Patrilineal heir,EA073-2,,meek1931a,,1920,EthnographicAtlas_1967_p77, +95844,Ah20,EA073,?,EA073-NA,,,,,, +95845,Ah21,EA073,?,EA073-NA,,,,,, +95846,Ah22,EA073,Patrilineal heir,EA073-2,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +95847,Ah23,EA073,Patrilineal heir,EA073-2,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +95848,Ah24,EA073,?,EA073-NA,,,,,, +95849,Ah25,EA073,?,EA073-NA,,,,,, +95850,Ah26,EA073,Sister's son,EA073-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +95851,Ah27,EA073,?,EA073-NA,,,,,, +95852,Ah28,EA073,?,EA073-NA,,,,,, +95853,Ah29,EA073,Sister's son,EA073-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +95854,Ah3,EA073,Absence of office,EA073-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +95855,Ah30,EA073,Absence of office,EA073-9,,meek1931b,,1920,EthnographicAtlas_1967_p77, +95856,Ah31,EA073,Patrilineal heir,EA073-2,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +95857,Ah32,EA073,?,EA073-NA,,,,,, +95858,Ah33,EA073,?,EA073-NA,,,,,, +95859,Ah34,EA073,Nonhereditary,EA073-5,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +95860,Ah35,EA073,?,EA073-NA,,,,,, +95861,Ah36,EA073,Patrilineal heir,EA073-2,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +95862,Ah37,EA073,?,EA073-NA,,,,,, +95863,Ah38,EA073,Patrilineal heir,EA073-2,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +95864,Ah39,EA073,Nonhereditary,EA073-5,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +95865,Ah4,EA073,Matrilineal heir,EA073-4,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +95866,Ah5,EA073,Nonhereditary,EA073-5,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +95867,Ah6,EA073,?,EA073-NA,,,,,, +95868,Ah7,EA073,Nonhereditary,EA073-5,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +95869,Ah8,EA073,?,EA073-NA,,,,,, +95870,Ah9,EA073,Nonhereditary,EA073-5,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +95871,Ai1,EA073,Patrilineal heir,EA073-2,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +95872,Ai10,EA073,Absence of office,EA073-9,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +95873,Ai11,EA073,Patrilineal heir,EA073-2,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +95874,Ai12,EA073,Patrilineal heir,EA073-2,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +95875,Ai13,EA073,Son,EA073-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +95876,Ai14,EA073,Son,EA073-1,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p77, +95877,Ai15,EA073,Son,EA073-1,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +95878,Ai16,EA073,Nonhereditary,EA073-5,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +95879,Ai17,EA073,Son,EA073-1,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +95880,Ai18,EA073,Nonhereditary,EA073-5,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +95881,Ai19,EA073,?,EA073-NA,,,,,, +95882,Ai2,EA073,Patrilineal heir,EA073-2,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +95883,Ai20,EA073,?,EA073-NA,,,,,, +95884,Ai21,EA073,?,EA073-NA,,,,,, +95885,Ai22,EA073,?,EA073-NA,,,,,, +95886,Ai23,EA073,Son,EA073-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +95887,Ai24,EA073,Son,EA073-1,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +95888,Ai25,EA073,Nonhereditary,EA073-5,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +95889,Ai26,EA073,Son,EA073-1,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +95890,Ai27,EA073,?,EA073-NA,,,,,, +95891,Ai28,EA073,Nonhereditary,EA073-5,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +95892,Ai29,EA073,Son,EA073-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +95893,Ai3,EA073,Patrilineal heir,EA073-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +95894,Ai30,EA073,Son,EA073-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +95895,Ai31,EA073,?,EA073-NA,,,,,, +95896,Ai32,EA073,Son,EA073-1,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +95897,Ai33,EA073,Son,EA073-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +95898,Ai34,EA073,Patrilineal heir,EA073-2,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +95899,Ai35,EA073,Nonhereditary,EA073-5,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +95900,Ai36,EA073,Nonhereditary,EA073-5,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +95901,Ai37,EA073,Son,EA073-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +95902,Ai38,EA073,?,EA073-NA,,,,,, +95903,Ai39,EA073,?,EA073-NA,,,,,, +95904,Ai4,EA073,?,EA073-NA,,,,,, +95905,Ai40,EA073,Absence of office,EA073-9,,nadel1947,,1940,EthnographicAtlas_1967_p77, +95906,Ai41,EA073,?,EA073-NA,,,,,, +95907,Ai42,EA073,Patrilineal heir,EA073-2,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +95908,Ai43,EA073,?,EA073-NA,,,,,, +95909,Ai44,EA073,Patrilineal heir,EA073-2,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p77, +95910,Ai45,EA073,?,EA073-NA,,,,,, +95911,Ai46,EA073,Patrilineal heir,EA073-2,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +95912,Ai47,EA073,Patrilineal heir,EA073-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +95913,Ai5,EA073,?,EA073-NA,,,,,, +95914,Ai6,EA073,Nonhereditary,EA073-5,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +95915,Ai7,EA073,Son,EA073-1,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +95916,Ai8,EA073,?,EA073-NA,,,,,, +95917,Ai9,EA073,?,EA073-NA,,,,,, +95918,Aj1,EA073,?,EA073-NA,,,,,, +95919,Aj10,EA073,?,EA073-NA,,,,,, +95920,Aj11,EA073,?,EA073-NA,,,,,, +95921,Aj12,EA073,Son,EA073-1,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +95922,Aj13,EA073,?,EA073-NA,,,,,, +95923,Aj14,EA073,?,EA073-NA,,,,,, +95924,Aj15,EA073,Son,EA073-1,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +95925,Aj16,EA073,Son,EA073-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +95926,Aj17,EA073,Son,EA073-1,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +95927,Aj18,EA073,Patrilineal heir,EA073-2,,jensen1959,,1950,EthnographicAtlas_1967_p81, +95928,Aj19,EA073,Son,EA073-1,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +95929,Aj2,EA073,Absence of office,EA073-9,A council of elders,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +95930,Aj20,EA073,Son,EA073-1,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +95931,Aj21,EA073,?,EA073-NA,,,,,, +95932,Aj22,EA073,Son,EA073-1,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +95933,Aj23,EA073,Absence of office,EA073-9,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +95934,Aj24,EA073,Son,EA073-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +95935,Aj25,EA073,?,EA073-NA,,,,,, +95936,Aj26,EA073,Nonhereditary,EA073-5,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +95937,Aj27,EA073,?,EA073-NA,,,,,, +95938,Aj28,EA073,Son,EA073-1,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +95939,Aj29,EA073,Absence of office,EA073-9,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +95940,Aj3,EA073,Absence of office,EA073-9,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +95941,Aj30,EA073,?,EA073-NA,,,,,, +95942,Aj31,EA073,?,EA073-NA,,,,,, +95943,Aj4,EA073,Son,EA073-1,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +95944,Aj5,EA073,Absence of office,EA073-9,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +95945,Aj6,EA073,Son,EA073-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +95946,Aj7,EA073,Nonhereditary,EA073-5,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +95947,Aj8,EA073,Son,EA073-1,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +95948,Aj9,EA073,Absence of office,EA073-9,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +95949,Ca1,EA073,Nonhereditary,EA073-5,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +95950,Ca10,EA073,Son,EA073-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +95951,Ca11,EA073,Nonhereditary,EA073-5,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +95952,Ca12,EA073,?,EA073-NA,,,,,, +95953,Ca13,EA073,Son,EA073-1,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +95954,Ca14,EA073,Son,EA073-1,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +95955,Ca15,EA073,Son,EA073-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +95956,Ca16,EA073,?,EA073-NA,,,,,, +95957,Ca17,EA073,?,EA073-NA,,,,,, +95958,Ca18,EA073,Patrilineal heir,EA073-2,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +95959,Ca19,EA073,Son,EA073-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +95960,Ca2,EA073,Nonhereditary,EA073-5,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +95961,Ca20,EA073,?,EA073-NA,,,,,, +95962,Ca21,EA073,?,EA073-NA,,,,,, +95963,Ca22,EA073,?,EA073-NA,,,,,, +95964,Ca23,EA073,Son,EA073-1,,jensen1959,,1950,EthnographicAtlas_1967_p81, +95965,Ca24,EA073,?,EA073-NA,,,,,, +95966,Ca25,EA073,Son,EA073-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +95967,Ca26,EA073,Son,EA073-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +95968,Ca27,EA073,?,EA073-NA,,,,,, +95969,Ca28,EA073,?,EA073-NA,,,,,, +95970,Ca29,EA073,Son,EA073-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +95971,Ca3,EA073,Nonhereditary,EA073-5,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +95972,Ca30,EA073,?,EA073-NA,,,,,, +95973,Ca31,EA073,Nonhereditary,EA073-5,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +95974,Ca32,EA073,Absence of office,EA073-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +95975,Ca33,EA073,Absence of office,EA073-9,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +95976,Ca34,EA073,Nonhereditary,EA073-5,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +95977,Ca35,EA073,?,EA073-NA,"Patrilineal, though formerly matrilineal",clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +95978,Ca36,EA073,?,EA073-NA,,,,,, +95979,Ca37,EA073,?,EA073-NA,,,,,, +95980,Ca38,EA073,Son,EA073-1,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +95981,Ca39,EA073,Absence of office,EA073-9,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +95982,Ca4,EA073,Absence of office,EA073-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +95983,Ca40,EA073,Son,EA073-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +95984,Ca41,EA073,Absence of office,EA073-9,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +95985,Ca42,EA073,Son,EA073-1,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +95986,Ca43,EA073,?,EA073-NA,,,,,, +95987,Ca5,EA073,Absence of office,EA073-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +95988,Ca6,EA073,?,EA073-NA,,,,,, +95989,Ca7,EA073,Nonhereditary,EA073-5,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +95990,Ca8,EA073,?,EA073-NA,,,,,, +95991,Ca9,EA073,Absence of office,EA073-9,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +95992,Cb1,EA073,Nonhereditary,EA073-5,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +95993,Cb10,EA073,?,EA073-NA,,,,,, +95994,Cb11,EA073,Sister's son,EA073-3,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +95995,Cb12,EA073,?,EA073-NA,,,,,, +95996,Cb13,EA073,?,EA073-NA,,,,,, +95997,Cb14,EA073,Nonhereditary,EA073-5,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +95998,Cb15,EA073,Nonhereditary,EA073-5,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +95999,Cb16,EA073,Son,EA073-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +96000,Cb17,EA073,Son,EA073-1,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +96001,Cb18,EA073,?,EA073-NA,,,,,, +96002,Cb19,EA073,Nonhereditary,EA073-5,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +96003,Cb2,EA073,Patrilineal heir,EA073-2,The head of the founding lineage,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +96004,Cb20,EA073,Nonhereditary,EA073-5,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +96005,Cb21,EA073,?,EA073-NA,,,,,, +96006,Cb22,EA073,Nonhereditary,EA073-5,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +96007,Cb23,EA073,Nonhereditary,EA073-5,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +96008,Cb24,EA073,Son,EA073-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +96009,Cb25,EA073,Nonhereditary,EA073-5,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +96010,Cb26,EA073,Patrilineal heir,EA073-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +96011,Cb27,EA073,Nonhereditary,EA073-5,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +96012,Cb28,EA073,Patrilineal heir,EA073-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +96013,Cb29,EA073,Patrilineal heir,EA073-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +96014,Cb3,EA073,Patrilineal heir,EA073-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +96015,Cb4,EA073,?,EA073-NA,,,,,, +96016,Cb5,EA073,Absence of office,EA073-9,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +96017,Cb6,EA073,?,EA073-NA,,,,,, +96018,Cb7,EA073,?,EA073-NA,,,,,, +96019,Cb8,EA073,Nonhereditary,EA073-5,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +96020,Cb9,EA073,?,EA073-NA,,,,,, +96021,Cc1,EA073,Nonhereditary,EA073-5,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +96022,Cc10,EA073,Matrilineal heir,EA073-4,"But mainly 'hereditary by a son' (code ""1"") today",jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +96023,Cc11,EA073,Matrilineal heir,EA073-4,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +96024,Cc12,EA073,?,EA073-NA,,,,,, +96025,Cc13,EA073,Sister's son,EA073-3,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +96026,Cc14,EA073,?,EA073-NA,,,,,, +96027,Cc15,EA073,Nonhereditary,EA073-5,"Formerly 'nonhereditary' (code ""5"")",chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +96028,Cc16,EA073,Son,EA073-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +96029,Cc17,EA073,?,EA073-NA,,,,,, +96030,Cc18,EA073,Son,EA073-1,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +96031,Cc19,EA073,?,EA073-NA,,,,,, +96032,Cc2,EA073,Nonhereditary,EA073-5,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +96033,Cc20,EA073,Nonhereditary,EA073-5,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +96034,Cc3,EA073,Absence of office,EA073-9,A council of sib chiefs,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +96035,Cc4,EA073,Absence of office,EA073-9,A separate local council for each of the two classes,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +96036,Cc5,EA073,Nonhereditary,EA073-5,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +96037,Cc6,EA073,?,EA073-NA,,,,,, +96038,Cc7,EA073,?,EA073-NA,,,,,, +96039,Cc8,EA073,Patrilineal heir,EA073-2,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +96040,Cc9,EA073,Sister's son,EA073-3,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +96041,Cd1,EA073,?,EA073-NA,,,,,, +96042,Cd10,EA073,Nonhereditary,EA073-5,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +96043,Cd11,EA073,Sister's son,EA073-3,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +96044,Cd12,EA073,Absence of office,EA073-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +96045,Cd13,EA073,?,EA073-NA,,,,,, +96046,Cd14,EA073,Nonhereditary,EA073-5,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +96047,Cd15,EA073,Absence of office,EA073-9,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +96048,Cd16,EA073,?,EA073-NA,,,,,, +96049,Cd17,EA073,?,EA073-NA,,,,,, +96050,Cd18,EA073,Son,EA073-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +96051,Cd19,EA073,?,EA073-NA,,,,,, +96052,Cd2,EA073,Nonhereditary,EA073-5,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +96053,Cd20,EA073,?,EA073-NA,,,,,, +96054,Cd21,EA073,?,EA073-NA,,,,,, +96055,Cd3,EA073,Absence of office,EA073-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +96056,Cd4,EA073,Nonhereditary,EA073-5,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +96057,Cd5,EA073,Nonhereditary,EA073-5,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +96058,Cd6,EA073,Son,EA073-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +96059,Cd7,EA073,Absence of office,EA073-9,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +96060,Cd8,EA073,?,EA073-NA,,,,,, +96061,Cd9,EA073,?,EA073-NA,,,,,, +96062,Ce1,EA073,Son,EA073-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +96063,Ce2,EA073,Nonhereditary,EA073-5,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +96064,Ce3,EA073,?,EA073-NA,,,,,, +96065,Ce4,EA073,?,EA073-NA,,,,,, +96066,Ce5,EA073,Nonhereditary,EA073-5,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +96067,Ce6,EA073,Nonhereditary,EA073-5,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +96068,Ce7,EA073,Nonhereditary,EA073-5,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +96069,Ce8,EA073,Nonhereditary,EA073-5,"But 'nonhereditary' (code ""5"") subsequent to 1939",carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +96070,Cf1,EA073,Nonhereditary,EA073-5,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +96071,Cf2,EA073,?,EA073-NA,,,,,, +96072,Cf3,EA073,Absence of office,EA073-9,,munch1945,,1930,EthnographicAtlas_1967_p85, +96073,Cf4,EA073,Nonhereditary,EA073-5,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +96074,Cf5,EA073,Nonhereditary,EA073-5,,miner1939,,1930,EthnographicAtlas_1967_p85, +96075,Cg1,EA073,Nonhereditary,EA073-5,"Three ""selectmen"" chosen by lot",coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +96076,Cg2,EA073,?,EA073-NA,,,,,, +96077,Cg3,EA073,?,EA073-NA,,,,,, +96078,Cg4,EA073,?,EA073-NA,,,,,, +96079,Cg5,EA073,?,EA073-NA,,,,,, +96080,Ch1,EA073,Nonhereditary,EA073-5,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +96081,Ch10,EA073,?,EA073-NA,,,,,, +96082,Ch11,EA073,Nonhereditary,EA073-5,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +96083,Ch2,EA073,?,EA073-NA,,,,,, +96084,Ch3,EA073,?,EA073-NA,,,,,, +96085,Ch4,EA073,?,EA073-NA,,,,,, +96086,Ch5,EA073,?,EA073-NA,,,,,, +96087,Ch6,EA073,?,EA073-NA,,,,,, +96088,Ch7,EA073,Nonhereditary,EA073-5,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +96089,Ch8,EA073,?,EA073-NA,,,,,, +96090,Ch9,EA073,Nonhereditary,EA073-5,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +96091,Ci1,EA073,Son,EA073-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +96092,Ci10,EA073,Nonhereditary,EA073-5,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +96093,Ci11,EA073,Son,EA073-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +96094,Ci12,EA073,Nonhereditary,EA073-5,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +96095,Ci2,EA073,Absence of office,EA073-9,A village priest but no headman,grigolia1939,,1930,EthnographicAtlas_1967_p85, +96096,Ci3,EA073,?,EA073-NA,,,,,, +96097,Ci4,EA073,Son,EA073-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +96098,Ci5,EA073,Nonhereditary,EA073-5,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +96099,Ci6,EA073,Son,EA073-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +96100,Ci7,EA073,?,EA073-NA,,,,,, +96101,Ci8,EA073,?,EA073-NA,,,,,, +96102,Ci9,EA073,Absence of office,EA073-9,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +96103,Cj1,EA073,Nonhereditary,EA073-5,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +96104,Cj10,EA073,Nonhereditary,EA073-5,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +96105,Cj2,EA073,?,EA073-NA,,,,,, +96106,Cj3,EA073,Nonhereditary,EA073-5,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +96107,Cj4,EA073,Son,EA073-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +96108,Cj5,EA073,?,EA073-NA,,,,,, +96109,Cj6,EA073,?,EA073-NA,,,,,, +96110,Cj7,EA073,Nonhereditary,EA073-5,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +96111,Cj8,EA073,Nonhereditary,EA073-5,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +96112,Cj9,EA073,?,EA073-NA,,,,,, +96113,Ea1,EA073,?,EA073-NA,,,,,, +96114,Ea10,EA073,Son,EA073-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +96115,Ea11,EA073,?,EA073-NA,,,,,, +96116,Ea12,EA073,Son,EA073-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +96117,Ea13,EA073,Son,EA073-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +96118,Ea2,EA073,Nonhereditary,EA073-5,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +96119,Ea3,EA073,Son,EA073-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +96120,Ea4,EA073,Absence of office,EA073-9,A council of lineage representatives,barth1956b,,1950,EthnographicAtlas_1967_p89, +96121,Ea5,EA073,Son,EA073-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +96122,Ea6,EA073,Son,EA073-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +96123,Ea7,EA073,Nonhereditary,EA073-5,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +96124,Ea8,EA073,Son,EA073-1,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +96125,Ea9,EA073,Nonhereditary,EA073-5,,vreeland1957,,1950,EthnographicAtlas_1967_p89, +96126,Eb1,EA073,?,EA073-NA,,,,,, +96127,Eb2,EA073,Son,EA073-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +96128,Eb3,EA073,Son,EA073-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +96129,Eb4,EA073,Nonhereditary,EA073-5,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +96130,Eb5,EA073,?,EA073-NA,,,,,, +96131,Eb6,EA073,?,EA073-NA,,,,,, +96132,Eb7,EA073,?,EA073-NA,,,,,, +96133,Eb8,EA073,?,EA073-NA,,,,,, +96134,Ec1,EA073,Patrilineal heir,EA073-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +96135,Ec10,EA073,?,EA073-NA,,,,,, +96136,Ec11,EA073,?,EA073-NA,,,,,, +96137,Ec2,EA073,Nonhereditary,EA073-5,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96138,Ec3,EA073,Nonhereditary,EA073-5,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +96139,Ec4,EA073,?,EA073-NA,,,,,, +96140,Ec5,EA073,Nonhereditary,EA073-5,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +96141,Ec6,EA073,Nonhereditary,EA073-5,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +96142,Ec7,EA073,Son,EA073-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +96143,Ec8,EA073,Absence of office,EA073-9,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +96144,Ec9,EA073,?,EA073-NA,,,,,, +96145,Ed1,EA073,Nonhereditary,EA073-5,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +96146,Ed10,EA073,Nonhereditary,EA073-5,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +96147,Ed13,EA073,?,EA073-NA,,,,,, +96148,Ed14,EA073,?,EA073-NA,,,,,, +96149,Ed15a,EA073,?,EA073-NA,,,,,, +96150,Ed15b,EA073,Nonhereditary,EA073-5,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +96151,Ed16,EA073,?,EA073-NA,,,,,, +96152,Ed2,EA073,Son,EA073-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +96153,Ed3,EA073,Nonhereditary,EA073-5,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +96154,Ed4,EA073,Nonhereditary,EA073-5,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +96155,Ed5,EA073,Nonhereditary,EA073-5,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96156,Ed6,EA073,Nonhereditary,EA073-5,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +96157,Ed7,EA073,Nonhereditary,EA073-5,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +96158,Ed8,EA073,Nonhereditary,EA073-5,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +96159,Ed9,EA073,Son,EA073-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +96160,Ee1,EA073,Absence of office,EA073-9,A council of elders,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +96161,Ee2,EA073,?,EA073-NA,,,,,, +96162,Ee3,EA073,Son,EA073-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +96163,Ee4,EA073,Nonhereditary,EA073-5,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +96164,Ee5,EA073,?,EA073-NA,,,,,, +96165,Ee6,EA073,Nonhereditary,EA073-5,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +96166,Ee7,EA073,?,EA073-NA,,,,,, +96167,Ee8,EA073,Son,EA073-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +96168,Ef1,EA073,Son,EA073-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +96169,Ef10,EA073,?,EA073-NA,,,,,, +96170,Ef11,EA073,Nonhereditary,EA073-5,"Among the Thakur; 'nonhereditary' (code ""5"") after 1945",cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +96171,Ef2,EA073,Son,EA073-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +96172,Ef3,EA073,?,EA073-NA,,,,,, +96173,Ef4,EA073,Nonhereditary,EA073-5,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +96174,Ef5,EA073,Son,EA073-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +96175,Ef6,EA073,Nonhereditary,EA073-5,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +96176,Ef7,EA073,Nonhereditary,EA073-5,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +96177,Ef8,EA073,?,EA073-NA,,,,,, +96178,Ef9,EA073,?,EA073-NA,,,,,, +96179,Eg1,EA073,Nonhereditary,EA073-5,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96180,Eg10,EA073,?,EA073-NA,,,,,, +96181,Eg11,EA073,Son,EA073-1,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +96182,Eg12,EA073,?,EA073-NA,,,,,, +96183,Eg13,EA073,?,EA073-NA,,,,,, +96184,Eg14,EA073,Son,EA073-1,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +96185,Eg2,EA073,?,EA073-NA,,,,,, +96186,Eg3,EA073,Son,EA073-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +96187,Eg4,EA073,Nonhereditary,EA073-5,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +96188,Eg5,EA073,Son,EA073-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +96189,Eg6,EA073,Matrilineal heir,EA073-4,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +96190,Eg7,EA073,Son,EA073-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +96191,Eg8,EA073,Nonhereditary,EA073-5,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +96192,Eg9,EA073,?,EA073-NA,,,,,, +96193,Eh1,EA073,Nonhereditary,EA073-5,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +96194,Eh10,EA073,?,EA073-NA,,,,,, +96195,Eh2,EA073,Nonhereditary,EA073-5,"But originally 'nonhereditary' (code ""5"")",grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +96196,Eh3,EA073,Nonhereditary,EA073-5,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +96197,Eh4,EA073,?,EA073-NA,,,,,, +96198,Eh5,EA073,Nonhereditary,EA073-5,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +96199,Eh6,EA073,?,EA073-NA,,,,,, +96200,Eh7,EA073,Patrilineal heir,EA073-2,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +96201,Eh8,EA073,Patrilineal heir,EA073-2,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +96202,Eh9,EA073,Son,EA073-1,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +96203,Ei1,EA073,Sister's son,EA073-3,The heir is a classificatory SiSo who is DaHu,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96204,Ei10,EA073,?,EA073-NA,,,,,, +96205,Ei11,EA073,Nonhereditary,EA073-5,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +96206,Ei12,EA073,Son,EA073-1,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +96207,Ei13,EA073,Son,EA073-1,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +96208,Ei14,EA073,Absence of office,EA073-9,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +96209,Ei15,EA073,?,EA073-NA,,,,,, +96210,Ei16,EA073,?,EA073-NA,,,,,, +96211,Ei17,EA073,?,EA073-NA,,,,,, +96212,Ei18,EA073,Patrilineal heir,EA073-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +96213,Ei19,EA073,Son,EA073-1,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +96214,Ei2,EA073,Patrilineal heir,EA073-2,,mills1922,,1920,EthnographicAtlas_1967_p93, +96215,Ei20,EA073,?,EA073-NA,,,,,, +96216,Ei3,EA073,Nonhereditary,EA073-5,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +96217,Ei4,EA073,Son,EA073-1,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +96218,Ei5,EA073,Son,EA073-1,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +96219,Ei6,EA073,Absence of office,EA073-9,A council of eight graded elders,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +96220,Ei7,EA073,Son,EA073-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +96221,Ei8,EA073,Nonhereditary,EA073-5,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +96222,Ei9,EA073,?,EA073-NA,,,,,, +96223,Ej1,EA073,Son,EA073-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +96224,Ej10,EA073,Sister's son,EA073-3,"Donoghue reports 'nonhereditary' (code ""5"")",donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +96225,Ej11,EA073,Nonhereditary,EA073-5,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +96226,Ej12,EA073,Nonhereditary,EA073-5,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +96227,Ej13,EA073,Son,EA073-1,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +96228,Ej14,EA073,Absence of office,EA073-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96229,Ej15,EA073,?,EA073-NA,,,,,, +96230,Ej16,EA073,Nonhereditary,EA073-5,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +96231,Ej2,EA073,Absence of office,EA073-9,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +96232,Ej3,EA073,Son,EA073-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +96233,Ej4,EA073,Nonhereditary,EA073-5,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +96234,Ej5,EA073,Nonhereditary,EA073-5,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +96235,Ej6,EA073,?,EA073-NA,,,,,, +96236,Ej7,EA073,Patrilineal heir,EA073-2,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +96237,Ej8,EA073,?,EA073-NA,,,,,, +96238,Ej9,EA073,Nonhereditary,EA073-5,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +96239,Ia1,EA073,Nonhereditary,EA073-5,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +96240,Ia10,EA073,Son,EA073-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +96241,Ia11,EA073,Nonhereditary,EA073-5,,mabuchi1960,,1930,EthnographicAtlas_1967_p93, +96242,Ia12,EA073,Nonhereditary,EA073-5,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +96243,Ia13,EA073,Son,EA073-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +96244,Ia14,EA073,Absence of office,EA073-9,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +96245,Ia15,EA073,Nonhereditary,EA073-5,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +96246,Ia16,EA073,Nonhereditary,EA073-5,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +96247,Ia17,EA073,?,EA073-NA,,,,,, +96248,Ia18,EA073,?,EA073-NA,,,,,, +96249,Ia2,EA073,Absence of office,EA073-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +96250,Ia3,EA073,Absence of office,EA073-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +96251,Ia4,EA073,Absence of office,EA073-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +96252,Ia5,EA073,Absence of office,EA073-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +96253,Ia6,EA073,Son,EA073-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96254,Ia7,EA073,Absence of office,EA073-9,,fox1954,,1950,EthnographicAtlas_1967_p93, +96255,Ia8,EA073,Absence of office,EA073-9,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +96256,Ia9,EA073,Nonhereditary,EA073-5,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +96257,Ib1,EA073,Nonhereditary,EA073-5,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96258,Ib2,EA073,Nonhereditary,EA073-5,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96259,Ib3,EA073,Nonhereditary,EA073-5,Selected by divination,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +96260,Ib4,EA073,Son,EA073-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +96261,Ib5,EA073,Nonhereditary,EA073-5,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +96262,Ib6,EA073,Matrilineal heir,EA073-4,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +96263,Ib7,EA073,Absence of office,EA073-9,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +96264,Ib8,EA073,?,EA073-NA,,,,,, +96265,Ib9,EA073,?,EA073-NA,,,,,, +96266,Ic1,EA073,Son,EA073-1,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96267,Ic10,EA073,Nonhereditary,EA073-5,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +96268,Ic11,EA073,Son,EA073-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96269,Ic12,EA073,Nonhereditary,EA073-5,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +96270,Ic13,EA073,?,EA073-NA,,,,,, +96271,Ic2,EA073,?,EA073-NA,,,,,, +96272,Ic3,EA073,Matrilineal heir,EA073-4,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +96273,Ic4,EA073,?,EA073-NA,,,,,, +96274,Ic5,EA073,Nonhereditary,EA073-5,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +96275,Ic6,EA073,Son,EA073-1,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +96276,Ic7,EA073,?,EA073-NA,,,,,, +96277,Ic8,EA073,Son,EA073-1,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +96278,Ic9,EA073,Son,EA073-1,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +96279,Id1,EA073,Son,EA073-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +96280,Id10,EA073,Absence of office,EA073-9,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +96281,Id11,EA073,Absence of office,EA073-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +96282,Id12,EA073,Absence of office,EA073-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +96283,Id13,EA073,?,EA073-NA,,,,,, +96284,Id2,EA073,Son,EA073-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +96285,Id3,EA073,Son,EA073-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +96286,Id4,EA073,Son,EA073-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p97, +96287,Id5,EA073,?,EA073-NA,,,,,, +96288,Id6,EA073,?,EA073-NA,,,,,, +96289,Id7,EA073,?,EA073-NA,,,,,, +96290,Id8,EA073,Nonhereditary,EA073-5,,roth1890,,1830,EthnographicAtlas_1967_p97, +96291,Id9,EA073,Son,EA073-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p97, +96292,Ie1,EA073,Nonhereditary,EA073-5,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96293,Ie10,EA073,Son,EA073-1,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +96294,Ie11,EA073,Nonhereditary,EA073-5,,bowers1964,,1950,EthnographicAtlas_1967_p97, +96295,Ie12,EA073,Absence of office,EA073-9,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96296,Ie13,EA073,Absence of office,EA073-9,,landtman1927,,1920,EthnographicAtlas_1967_p97, +96297,Ie14,EA073,Absence of office,EA073-9,,haddon1908,,1900,EthnographicAtlas_1967_p97, +96298,Ie15,EA073,Absence of office,EA073-9,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96299,Ie16,EA073,?,EA073-NA,,,,,, +96300,Ie17,EA073,Nonhereditary,EA073-5,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +96301,Ie18,EA073,?,EA073-NA,,,,,, +96302,Ie19,EA073,Absence of office,EA073-9,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +96303,Ie2,EA073,Nonhereditary,EA073-5,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +96304,Ie20,EA073,Son,EA073-1,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +96305,Ie21,EA073,?,EA073-NA,,,,,, +96306,Ie22,EA073,Son,EA073-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +96307,Ie23,EA073,Nonhereditary,EA073-5,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +96308,Ie24,EA073,Nonhereditary,EA073-5,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +96309,Ie25,EA073,Son,EA073-1,,williamson1912,,1920,EthnographicAtlas_1967_p97, +96310,Ie26,EA073,Nonhereditary,EA073-5,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +96311,Ie27,EA073,Absence of office,EA073-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +96312,Ie28,EA073,Nonhereditary,EA073-5,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +96313,Ie29,EA073,Son,EA073-1,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96314,Ie3,EA073,Absence of office,EA073-9,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96315,Ie30,EA073,?,EA073-NA,,,,,, +96316,Ie31,EA073,?,EA073-NA,,,,,, +96317,Ie32,EA073,Son,EA073-1,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +96318,Ie33,EA073,Absence of office,EA073-9,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +96319,Ie34,EA073,?,EA073-NA,,,,,, +96320,Ie35,EA073,Absence of office,EA073-9,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +96321,Ie36,EA073,?,EA073-NA,,,,,, +96322,Ie37,EA073,?,EA073-NA,,,,,, +96323,Ie38,EA073,Nonhereditary,EA073-5,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +96324,Ie39,EA073,Patrilineal heir,EA073-2,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +96325,Ie4,EA073,Son,EA073-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96326,Ie5,EA073,Absence of office,EA073-9,,williams1936,,1930,EthnographicAtlas_1967_p97, +96327,Ie6,EA073,Nonhereditary,EA073-5,,held1947,,1930,EthnographicAtlas_1967_p97, +96328,Ie7,EA073,Absence of office,EA073-9,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +96329,Ie8,EA073,Son,EA073-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +96330,Ie9,EA073,Nonhereditary,EA073-5,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +96331,If1,EA073,Matrilineal heir,EA073-4,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96332,If10,EA073,?,EA073-NA,,,,,, +96333,If11,EA073,?,EA073-NA,,,,,, +96334,If12,EA073,Absence of office,EA073-9,,mason1954,,1940,EthnographicAtlas_1967_p101, +96335,If13,EA073,?,EA073-NA,,,,,, +96336,If14,EA073,Nonhereditary,EA073-5,Within the leading ramage of the village,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +96337,If15,EA073,?,EA073-NA,,,,,, +96338,If16,EA073,Matrilineal heir,EA073-4,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +96339,If17,EA073,Patrilineal heir,EA073-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +96340,If2,EA073,Sister's son,EA073-3,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +96341,If3,EA073,Matrilineal heir,EA073-4,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +96342,If4,EA073,Matrilineal heir,EA073-4,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +96343,If5,EA073,Matrilineal heir,EA073-4,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +96344,If6,EA073,Patrilineal heir,EA073-2,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +96345,If7,EA073,Nonhereditary,EA073-5,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +96346,If8,EA073,Nonhereditary,EA073-5,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +96347,If9,EA073,Matrilineal heir,EA073-4,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +96348,Ig1,EA073,Nonhereditary,EA073-5,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +96349,Ig10,EA073,?,EA073-NA,,,,,, +96350,Ig11,EA073,Son,EA073-1,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +96351,Ig12,EA073,Son,EA073-1,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +96352,Ig13,EA073,Son,EA073-1,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +96353,Ig14,EA073,Sister's son,EA073-3,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +96354,Ig15,EA073,?,EA073-NA,,,,,, +96355,Ig16,EA073,?,EA073-NA,,,,,, +96356,Ig17,EA073,?,EA073-NA,,,,,, +96357,Ig18,EA073,?,EA073-NA,,,,,, +96358,Ig19,EA073,?,EA073-NA,,,,,, +96359,Ig2,EA073,Sister's son,EA073-3,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +96360,Ig20,EA073,Nonhereditary,EA073-5,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +96361,Ig21,EA073,?,EA073-NA,,,,,, +96362,Ig3,EA073,Sister's son,EA073-3,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +96363,Ig4,EA073,Nonhereditary,EA073-5,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +96364,Ig5,EA073,Absence of office,EA073-9,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +96365,Ig6,EA073,Son,EA073-1,,ivens1927,,1900,EthnographicAtlas_1967_p101, +96366,Ig7,EA073,Nonhereditary,EA073-5,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +96367,Ig8,EA073,?,EA073-NA,,,,,, +96368,Ig9,EA073,Absence of office,EA073-9,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +96369,Ih1,EA073,Nonhereditary,EA073-5,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +96370,Ih10,EA073,Son,EA073-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96371,Ih11,EA073,?,EA073-NA,,,,,, +96372,Ih12,EA073,?,EA073-NA,,,,,, +96373,Ih13,EA073,?,EA073-NA,,,,,, +96374,Ih14,EA073,Patrilineal heir,EA073-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +96375,Ih2,EA073,Son,EA073-1,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96376,Ih3,EA073,Absence of office,EA073-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +96377,Ih4,EA073,Patrilineal heir,EA073-2,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96378,Ih5,EA073,Son,EA073-1,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +96379,Ih6,EA073,Patrilineal heir,EA073-2,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p101, +96380,Ih7,EA073,Son,EA073-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +96381,Ih8,EA073,?,EA073-NA,,,,,, +96382,Ih9,EA073,Nonhereditary,EA073-5,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96383,Ii1,EA073,Son,EA073-1,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +96384,Ii10,EA073,Son,EA073-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +96385,Ii12,EA073,Son,EA073-1,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96386,Ii13,EA073,Patrilineal heir,EA073-2,,burrows1937,,1830,EthnographicAtlas_1967_p101, +96387,Ii14,EA073,Nonhereditary,EA073-5,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +96388,Ii2,EA073,Son,EA073-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +96389,Ii3,EA073,Son,EA073-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +96390,Ii4,EA073,?,EA073-NA,,,,,, +96391,Ii5,EA073,Patrilineal heir,EA073-2,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +96392,Ii6,EA073,Patrilineal heir,EA073-2,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +96393,Ii7,EA073,Son,EA073-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +96394,Ii8,EA073,Nonhereditary,EA073-5,Succession is elective within the ramage,burrows1936,,1840,EthnographicAtlas_1967_p101, +96395,Ii9,EA073,?,EA073-NA,,,,,, +96396,Ij1,EA073,Patrilineal heir,EA073-2,,buck1934,,1820,EthnographicAtlas_1967_p101, +96397,Ij10,EA073,Son,EA073-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +96398,Ij2,EA073,Son,EA073-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +96399,Ij3,EA073,Son,EA073-1,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +96400,Ij4,EA073,Son,EA073-1,,buck1932a,,1850,EthnographicAtlas_1967_p105, +96401,Ij5,EA073,Son,EA073-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +96402,Ij6,EA073,Son,EA073-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +96403,Ij7,EA073,Son,EA073-1,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +96404,Ij8,EA073,Son,EA073-1,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +96405,Ij9,EA073,Son,EA073-1,,metraux1940,,1860,EthnographicAtlas_1967_p105, +96406,Na1,EA073,Nonhereditary,EA073-5,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +96407,Na10,EA073,Son,EA073-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +96408,Na11,EA073,?,EA073-NA,Election of village headmen was introduced in 1925,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +96409,Na12,EA073,Nonhereditary,EA073-5,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +96410,Na13,EA073,Nonhereditary,EA073-5,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +96411,Na14,EA073,Absence of office,EA073-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +96412,Na15,EA073,Nonhereditary,EA073-5,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +96413,Na16,EA073,Nonhereditary,EA073-5,,osgood1931,,1860,EthnographicAtlas_1967_p105, +96414,Na17,EA073,Nonhereditary,EA073-5,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96415,Na19,EA073,Absence of office,EA073-9,"But 'hereditary by a sister's son' (code ""3"") for sib chiefs",jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +96416,Na2,EA073,Absence of office,EA073-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +96417,Na20,EA073,Son,EA073-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +96418,Na21,EA073,Nonhereditary,EA073-5,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +96419,Na22,EA073,Nonhereditary,EA073-5,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +96420,Na23,EA073,Son,EA073-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +96421,Na24,EA073,Absence of office,EA073-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +96422,Na25,EA073,?,EA073-NA,,,,,, +96423,Na26,EA073,Son,EA073-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +96424,Na27,EA073,Matrilineal heir,EA073-4,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +96425,Na28,EA073,Nonhereditary,EA073-5,,jenness1937,,1880,EthnographicAtlas_1967_p105, +96426,Na29,EA073,?,EA073-NA,,,,,, +96427,Na3,EA073,Absence of office,EA073-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +96428,Na30,EA073,Nonhereditary,EA073-5,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +96429,Na31,EA073,Nonhereditary,EA073-5,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +96430,Na32,EA073,Son,EA073-1,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +96431,Na33,EA073,Absence of office,EA073-9,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +96432,Na34,EA073,?,EA073-NA,,,,,, +96433,Na35,EA073,Son,EA073-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +96434,Na36,EA073,Son,EA073-1,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +96435,Na37,EA073,Absence of office,EA073-9,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +96436,Na38,EA073,Son,EA073-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +96437,Na39,EA073,Son,EA073-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +96438,Na4,EA073,Absence of office,EA073-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +96439,Na40,EA073,?,EA073-NA,,,,,, +96440,Na41,EA073,Son,EA073-1,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +96441,Na42,EA073,?,EA073-NA,,,,,, +96442,Na43,EA073,?,EA073-NA,,,,,, +96443,Na44,EA073,Nonhereditary,EA073-5,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +96444,Na45,EA073,Nonhereditary,EA073-5,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +96445,Na5,EA073,Nonhereditary,EA073-5,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +96446,Na6,EA073,Absence of office,EA073-9,,lantis1946,,1930,EthnographicAtlas_1967_p105, +96447,Na7,EA073,Nonhereditary,EA073-5,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +96448,Na8,EA073,Absence of office,EA073-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +96449,Na9,EA073,Son,EA073-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96450,Nb1,EA073,Matrilineal heir,EA073-4,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +96451,Nb10,EA073,Son,EA073-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +96452,Nb11,EA073,Son,EA073-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +96453,Nb12,EA073,Absence of office,EA073-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +96454,Nb13,EA073,Absence of office,EA073-9,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +96455,Nb14,EA073,Absence of office,EA073-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +96456,Nb15,EA073,?,EA073-NA,,,,,, +96457,Nb16,EA073,Son,EA073-1,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +96458,Nb17,EA073,Nonhereditary,EA073-5,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +96459,Nb18,EA073,Son,EA073-1,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +96460,Nb19,EA073,Son,EA073-1,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +96461,Nb2,EA073,Nonhereditary,EA073-5,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +96462,Nb20,EA073,Nonhereditary,EA073-5,"A ""chief"" names his own successor",barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +96463,Nb21,EA073,Nonhereditary,EA073-5,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +96464,Nb22,EA073,Sister's son,EA073-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +96465,Nb23,EA073,Matrilineal heir,EA073-4,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +96466,Nb24,EA073,Son,EA073-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +96467,Nb25,EA073,Nonhereditary,EA073-5,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +96468,Nb26,EA073,Absence of office,EA073-9,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +96469,Nb27,EA073,Nonhereditary,EA073-5,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +96470,Nb28,EA073,Nonhereditary,EA073-5,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +96471,Nb29,EA073,Nonhereditary,EA073-5,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +96472,Nb3,EA073,Son,EA073-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +96473,Nb30,EA073,Absence of office,EA073-9,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +96474,Nb31,EA073,Nonhereditary,EA073-5,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +96475,Nb32,EA073,Patrilineal heir,EA073-2,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +96476,Nb33,EA073,Son,EA073-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +96477,Nb34,EA073,Absence of office,EA073-9,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +96478,Nb35,EA073,Son,EA073-1,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +96479,Nb36,EA073,Absence of office,EA073-9,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +96480,Nb37,EA073,Nonhereditary,EA073-5,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +96481,Nb38,EA073,Son,EA073-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +96482,Nb39,EA073,Son,EA073-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +96483,Nb4,EA073,Nonhereditary,EA073-5,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +96484,Nb5,EA073,Matrilineal heir,EA073-4,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +96485,Nb6,EA073,Son,EA073-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +96486,Nb7,EA073,Matrilineal heir,EA073-4,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +96487,Nb8,EA073,Sister's son,EA073-3,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +96488,Nb9,EA073,Absence of office,EA073-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +96489,Nc1,EA073,Son,EA073-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +96490,Nc10,EA073,Son,EA073-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +96491,Nc11,EA073,Son,EA073-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +96492,Nc12,EA073,Nonhereditary,EA073-5,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +96493,Nc13,EA073,Son,EA073-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +96494,Nc14,EA073,Son,EA073-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +96495,Nc15,EA073,Nonhereditary,EA073-5,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +96496,Nc16,EA073,Son,EA073-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +96497,Nc17,EA073,Son,EA073-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +96498,Nc18,EA073,Nonhereditary,EA073-5,"But often hereditary by a sister's son' (code ""3"")",aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +96499,Nc19,EA073,Sister's son,EA073-3,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +96500,Nc2,EA073,Son,EA073-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +96501,Nc20,EA073,Nonhereditary,EA073-5,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +96502,Nc21,EA073,Nonhereditary,EA073-5,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +96503,Nc22,EA073,Son,EA073-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +96504,Nc23,EA073,Son,EA073-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +96505,Nc24,EA073,?,EA073-NA,,,,,, +96506,Nc25,EA073,Patrilineal heir,EA073-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +96507,Nc26,EA073,Son,EA073-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +96508,Nc27,EA073,Nonhereditary,EA073-5,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +96509,Nc28,EA073,Son,EA073-1,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +96510,Nc29,EA073,Son,EA073-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +96511,Nc3,EA073,Patrilineal heir,EA073-2,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +96512,Nc30,EA073,Son,EA073-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +96513,Nc31,EA073,Son,EA073-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +96514,Nc32,EA073,Son,EA073-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +96515,Nc33,EA073,Son,EA073-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +96516,Nc34,EA073,Son,EA073-1,,meigs1939,,1880,EthnographicAtlas_1967_p109, +96517,Nc4,EA073,Son,EA073-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +96518,Nc5,EA073,Son,EA073-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +96519,Nc6,EA073,Son,EA073-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +96520,Nc7,EA073,Son,EA073-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +96521,Nc8,EA073,Nonhereditary,EA073-5,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +96522,Nc9,EA073,Nonhereditary,EA073-5,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +96523,Nd1,EA073,Son,EA073-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +96524,Nd10,EA073,Nonhereditary,EA073-5,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +96525,Nd11,EA073,Son,EA073-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +96526,Nd12,EA073,Son,EA073-1,"Entry follows Turney-High; Ray reports 'nonhereditary' (code ""5"")",ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +96527,Nd13,EA073,?,EA073-NA,,,,,, +96528,Nd14,EA073,Nonhereditary,EA073-5,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +96529,Nd15,EA073,Son,EA073-1,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +96530,Nd16,EA073,?,EA073-NA,,,,,, +96531,Nd17,EA073,?,EA073-NA,,,,,, +96532,Nd18,EA073,Son,EA073-1,"Or alternatively 'patrilineal heir who takes precedence over a son' (code ""2"")",spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +96533,Nd19,EA073,Nonhereditary,EA073-5,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +96534,Nd2,EA073,Son,EA073-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +96535,Nd20,EA073,Nonhereditary,EA073-5,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +96536,Nd21,EA073,Nonhereditary,EA073-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +96537,Nd22,EA073,Nonhereditary,EA073-5,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +96538,Nd23,EA073,Nonhereditary,EA073-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +96539,Nd24,EA073,Nonhereditary,EA073-5,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +96540,Nd25,EA073,Nonhereditary,EA073-5,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +96541,Nd26,EA073,?,EA073-NA,,,,,, +96542,Nd27,EA073,Nonhereditary,EA073-5,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +96543,Nd28,EA073,Nonhereditary,EA073-5,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +96544,Nd29,EA073,Son,EA073-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +96545,Nd3,EA073,Patrilineal heir,EA073-2,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +96546,Nd30,EA073,Son,EA073-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +96547,Nd31,EA073,Son,EA073-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +96548,Nd32,EA073,Son,EA073-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +96549,Nd33,EA073,Son,EA073-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +96550,Nd34,EA073,Son,EA073-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +96551,Nd35,EA073,?,EA073-NA,Nonhereditary succession through appointment by predecessor,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +96552,Nd36,EA073,?,EA073-NA,,,,,, +96553,Nd37,EA073,?,EA073-NA,,,,,, +96554,Nd38,EA073,?,EA073-NA,,,,,, +96555,Nd39,EA073,?,EA073-NA,,,,,, +96556,Nd4,EA073,Son,EA073-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +96557,Nd40,EA073,?,EA073-NA,,,,,, +96558,Nd41,EA073,Son,EA073-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +96559,Nd42,EA073,Absence of office,EA073-9,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +96560,Nd43,EA073,Absence of office,EA073-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +96561,Nd44,EA073,Son,EA073-1,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +96562,Nd45,EA073,Nonhereditary,EA073-5,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +96563,Nd46,EA073,Nonhereditary,EA073-5,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +96564,Nd47,EA073,Absence of office,EA073-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +96565,Nd48,EA073,Absence of office,EA073-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +96566,Nd49,EA073,Nonhereditary,EA073-5,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +96567,Nd5,EA073,Son,EA073-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +96568,Nd50,EA073,?,EA073-NA,,,,,, +96569,Nd51,EA073,?,EA073-NA,,,,,, +96570,Nd52,EA073,Nonhereditary,EA073-5,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +96571,Nd53,EA073,Nonhereditary,EA073-5,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +96572,Nd54,EA073,Son,EA073-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96573,Nd55,EA073,?,EA073-NA,,,,,, +96574,Nd56,EA073,Nonhereditary,EA073-5,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +96575,Nd57,EA073,Nonhereditary,EA073-5,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +96576,Nd58,EA073,Son,EA073-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +96577,Nd59,EA073,Son,EA073-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +96578,Nd6,EA073,Son,EA073-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +96579,Nd60,EA073,Son,EA073-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +96580,Nd61,EA073,Son,EA073-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +96581,Nd62,EA073,?,EA073-NA,,,,,, +96582,Nd63,EA073,Nonhereditary,EA073-5,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +96583,Nd64,EA073,Nonhereditary,EA073-5,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +96584,Nd65,EA073,Son,EA073-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +96585,Nd66,EA073,Nonhereditary,EA073-5,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +96586,Nd67,EA073,Nonhereditary,EA073-5,,gifford1936,,1870,EthnographicAtlas_1967_p113, +96587,Nd7,EA073,Nonhereditary,EA073-5,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +96588,Nd8,EA073,Son,EA073-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +96589,Nd9,EA073,Son,EA073-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +96590,Ne1,EA073,Nonhereditary,EA073-5,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +96591,Ne10,EA073,Son,EA073-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +96592,Ne11,EA073,Nonhereditary,EA073-5,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +96593,Ne12,EA073,Nonhereditary,EA073-5,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +96594,Ne13,EA073,Nonhereditary,EA073-5,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +96595,Ne14,EA073,Son,EA073-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +96596,Ne15,EA073,Nonhereditary,EA073-5,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +96597,Ne16,EA073,Son,EA073-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +96598,Ne17,EA073,Nonhereditary,EA073-5,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +96599,Ne18,EA073,Nonhereditary,EA073-5,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +96600,Ne19,EA073,Son,EA073-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +96601,Ne2,EA073,?,EA073-NA,,,,,, +96602,Ne20,EA073,?,EA073-NA,,,,,, +96603,Ne21,EA073,?,EA073-NA,,,,,, +96604,Ne3,EA073,Nonhereditary,EA073-5,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +96605,Ne4,EA073,Nonhereditary,EA073-5,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +96606,Ne5,EA073,Absence of office,EA073-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +96607,Ne6,EA073,?,EA073-NA,,,,,, +96608,Ne7,EA073,Nonhereditary,EA073-5,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +96609,Ne8,EA073,Nonhereditary,EA073-5,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +96610,Ne9,EA073,Nonhereditary,EA073-5,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +96611,Nf10,EA073,Patrilineal heir,EA073-2,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +96612,Nf11,EA073,?,EA073-NA,,,,,, +96613,Nf12,EA073,Son,EA073-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +96614,Nf13,EA073,Son,EA073-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96615,Nf14,EA073,Son,EA073-1,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +96616,Nf15,EA073,?,EA073-NA,,,,,, +96617,Nf2,EA073,Son,EA073-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +96618,Nf3,EA073,Nonhereditary,EA073-5,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +96619,Nf4,EA073,Son,EA073-1,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +96620,Nf5,EA073,Son,EA073-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +96621,Nf6,EA073,Son,EA073-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +96622,Nf7,EA073,Son,EA073-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96623,Nf8,EA073,Son,EA073-1,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +96624,Nf9,EA073,?,EA073-NA,,,,,, +96625,Ng1,EA073,Matrilineal heir,EA073-4,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +96626,Ng10,EA073,Matrilineal heir,EA073-4,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +96627,Ng11,EA073,Nonhereditary,EA073-5,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +96628,Ng12,EA073,?,EA073-NA,,,,,, +96629,Ng13,EA073,?,EA073-NA,,,,,, +96630,Ng14,EA073,?,EA073-NA,,,,,, +96631,Ng15,EA073,?,EA073-NA,,,,,, +96632,Ng2,EA073,?,EA073-NA,,,,,, +96633,Ng3,EA073,Matrilineal heir,EA073-4,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +96634,Ng4,EA073,?,EA073-NA,,,,,, +96635,Ng5,EA073,?,EA073-NA,,,,,, +96636,Ng6,EA073,Matrilineal heir,EA073-4,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +96637,Ng7,EA073,Sister's son,EA073-3,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +96638,Ng8,EA073,Sister's son,EA073-3,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +96639,Ng9,EA073,?,EA073-NA,,,,,, +96640,Nh1,EA073,Nonhereditary,EA073-5,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +96641,Nh10,EA073,Nonhereditary,EA073-5,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +96642,Nh11,EA073,Nonhereditary,EA073-5,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +96643,Nh12,EA073,Nonhereditary,EA073-5,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +96644,Nh13,EA073,?,EA073-NA,,,,,, +96645,Nh14,EA073,?,EA073-NA,,,,,, +96646,Nh15,EA073,?,EA073-NA,,,,,, +96647,Nh16,EA073,Son,EA073-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96648,Nh17,EA073,Matrilineal heir,EA073-4,"But alternatively 'nonhereditary' (code ""5"")",gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +96649,Nh18,EA073,Matrilineal heir,EA073-4,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96650,Nh19,EA073,Nonhereditary,EA073-5,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +96651,Nh2,EA073,?,EA073-NA,,,,,, +96652,Nh20,EA073,Nonhereditary,EA073-5,,gifford1931,,1860,EthnographicAtlas_1967_p117, +96653,Nh21,EA073,Son,EA073-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96654,Nh22,EA073,Nonhereditary,EA073-5,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +96655,Nh23,EA073,Absence of office,EA073-9,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +96656,Nh24,EA073,Nonhereditary,EA073-5,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +96657,Nh25,EA073,Nonhereditary,EA073-5,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +96658,Nh26,EA073,?,EA073-NA,,,,,, +96659,Nh27,EA073,?,EA073-NA,,,,,, +96660,Nh3,EA073,Nonhereditary,EA073-5,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +96661,Nh4,EA073,Nonhereditary,EA073-5,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +96662,Nh5,EA073,?,EA073-NA,,,,,, +96663,Nh6,EA073,Nonhereditary,EA073-5,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +96664,Nh7,EA073,Nonhereditary,EA073-5,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +96665,Nh8,EA073,Nonhereditary,EA073-5,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +96666,Nh9,EA073,Nonhereditary,EA073-5,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +96667,Ni1,EA073,Nonhereditary,EA073-5,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +96668,Ni2,EA073,Absence of office,EA073-9,A council only,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +96669,Ni3,EA073,Nonhereditary,EA073-5,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +96670,Ni4,EA073,?,EA073-NA,,,,,, +96671,Ni5,EA073,Nonhereditary,EA073-5,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +96672,Ni6,EA073,Son,EA073-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +96673,Ni7,EA073,Nonhereditary,EA073-5,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +96674,Ni8,EA073,?,EA073-NA,,,,,, +96675,Ni9,EA073,?,EA073-NA,,,,,, +96676,Nj1,EA073,Nonhereditary,EA073-5,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96677,Nj10,EA073,Nonhereditary,EA073-5,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96678,Nj11,EA073,?,EA073-NA,,,,,, +96679,Nj12,EA073,?,EA073-NA,,,,,, +96680,Nj13,EA073,?,EA073-NA,,,,,, +96681,Nj14,EA073,?,EA073-NA,,,,,, +96682,Nj2,EA073,Son,EA073-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +96683,Nj3,EA073,Nonhereditary,EA073-5,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +96684,Nj4,EA073,?,EA073-NA,,,,,, +96685,Nj5,EA073,?,EA073-NA,,,,,, +96686,Nj6,EA073,?,EA073-NA,,,,,, +96687,Nj7,EA073,Nonhereditary,EA073-5,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96688,Nj8,EA073,Son,EA073-1,,foster1948,,1500,EthnographicAtlas_1967_p121, +96689,Nj9,EA073,Nonhereditary,EA073-5,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +96690,Sa1,EA073,Nonhereditary,EA073-5,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +96691,Sa10,EA073,?,EA073-NA,,,,,, +96692,Sa11,EA073,?,EA073-NA,,,,,, +96693,Sa12,EA073,Son,EA073-1,,stone1948,,1948,EthnographicAtlas_1967_p121, +96694,Sa13,EA073,Nonhereditary,EA073-5,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +96695,Sa14,EA073,?,EA073-NA,,,,,, +96696,Sa15,EA073,?,EA073-NA,,,,,, +96697,Sa16,EA073,?,EA073-NA,,,,,, +96698,Sa17,EA073,?,EA073-NA,,,,,, +96699,Sa2,EA073,?,EA073-NA,,,,,, +96700,Sa3,EA073,Nonhereditary,EA073-5,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +96701,Sa4,EA073,?,EA073-NA,,,,,, +96702,Sa5,EA073,?,EA073-NA,,,,,, +96703,Sa6,EA073,?,EA073-NA,,,,,, +96704,Sa7,EA073,Nonhereditary,EA073-5,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +96705,Sa8,EA073,Nonhereditary,EA073-5,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +96706,Sa9,EA073,?,EA073-NA,,,,,, +96707,Sb1,EA073,Nonhereditary,EA073-5,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +96708,Sb2,EA073,Son,EA073-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +96709,Sb3,EA073,?,EA073-NA,,,,,, +96710,Sb4,EA073,Nonhereditary,EA073-5,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +96711,Sb5,EA073,?,EA073-NA,,,,,, +96712,Sb6,EA073,Sister's son,EA073-3,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +96713,Sb7,EA073,Nonhereditary,EA073-5,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p121, +96714,Sb8,EA073,Sister's son,EA073-3,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +96715,Sb9,EA073,?,EA073-NA,,,,,, +96716,Sc1,EA073,Nonhereditary,EA073-5,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +96717,Sc10,EA073,?,EA073-NA,,,,,, +96718,Sc11,EA073,?,EA073-NA,,,,,, +96719,Sc12,EA073,Son,EA073-1,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +96720,Sc13,EA073,?,EA073-NA,,,,,, +96721,Sc14,EA073,?,EA073-NA,,,,,, +96722,Sc15,EA073,Son,EA073-1,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +96723,Sc16,EA073,?,EA073-NA,,,,,, +96724,Sc17,EA073,?,EA073-NA,,,,,, +96725,Sc18,EA073,Matrilineal heir,EA073-4,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +96726,Sc2,EA073,Patrilineal heir,EA073-2,,leedsnd,,1950,EthnographicAtlas_1967_p121, +96727,Sc3,EA073,Nonhereditary,EA073-5,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +96728,Sc4,EA073,Nonhereditary,EA073-5,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +96729,Sc5,EA073,?,EA073-NA,,,,,, +96730,Sc6,EA073,Matrilineal heir,EA073-4,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96731,Sc7,EA073,?,EA073-NA,,,,,, +96732,Sc8,EA073,?,EA073-NA,,,,,, +96733,Sc9,EA073,?,EA073-NA,,,,,, +96734,Sd1,EA073,Son,EA073-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96735,Sd2,EA073,?,EA073-NA,,,,,, +96736,Sd3,EA073,Nonhereditary,EA073-5,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +96737,Sd4,EA073,?,EA073-NA,,,,,, +96738,Sd5,EA073,Son,EA073-1,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +96739,Sd6,EA073,Nonhereditary,EA073-5,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +96740,Sd7,EA073,Son,EA073-1,,fock1963,,1950,EthnographicAtlas_1967_p121, +96741,Sd8,EA073,Patrilineal heir,EA073-2,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +96742,Sd9,EA073,Nonhereditary,EA073-5,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96743,Se1,EA073,Son,EA073-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +96744,Se10,EA073,?,EA073-NA,,,,,, +96745,Se11,EA073,?,EA073-NA,,,,,, +96746,Se12,EA073,?,EA073-NA,,,,,, +96747,Se2,EA073,?,EA073-NA,,,,,, +96748,Se3,EA073,Absence of office,EA073-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +96749,Se4,EA073,Nonhereditary,EA073-5,,fejos1943,,1940,EthnographicAtlas_1967_p121, +96750,Se5,EA073,Son,EA073-1,"Alternatively 'patrilineal heir who takes precedence over a son' (code ""2"")",goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +96751,Se6,EA073,Son,EA073-1,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +96752,Se7,EA073,Nonhereditary,EA073-5,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96753,Se8,EA073,Absence of office,EA073-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +96754,Se9,EA073,?,EA073-NA,,,,,, +96755,Sf1,EA073,?,EA073-NA,,,,,, +96756,Sf2,EA073,?,EA073-NA,,,,,, +96757,Sf3,EA073,Son,EA073-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +96758,Sf4,EA073,Nonhereditary,EA073-5,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +96759,Sf5,EA073,Nonhereditary,EA073-5,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +96760,Sf6,EA073,Sister's son,EA073-3,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +96761,Sf7,EA073,Son,EA073-1,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +96762,Sf8,EA073,?,EA073-NA,,,,,, +96763,Sf9,EA073,?,EA073-NA,,,,,, +96764,Sg1,EA073,Absence of office,EA073-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +96765,Sg2,EA073,Son,EA073-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96766,Sg3,EA073,Nonhereditary,EA073-5,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +96767,Sg4,EA073,Son,EA073-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +96768,Sg5,EA073,Absence of office,EA073-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96769,Sh1,EA073,?,EA073-NA,,,,,, +96770,Sh2,EA073,Son,EA073-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +96771,Sh3,EA073,Son,EA073-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +96772,Sh4,EA073,?,EA073-NA,,,,,, +96773,Sh5,EA073,?,EA073-NA,,,,,, +96774,Sh6,EA073,?,EA073-NA,,,,,, +96775,Sh7,EA073,Son,EA073-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +96776,Sh8,EA073,Son,EA073-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +96777,Sh9,EA073,Son,EA073-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +96778,Si1,EA073,Matrilineal heir,EA073-4,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96779,Si10,EA073,Son,EA073-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +96780,Si2,EA073,Son,EA073-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +96781,Si3,EA073,Nonhereditary,EA073-5,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96782,Si4,EA073,Nonhereditary,EA073-5,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +96783,Si5,EA073,Son,EA073-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +96784,Si6,EA073,Son,EA073-1,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +96785,Si7,EA073,Son,EA073-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +96786,Si8,EA073,Son,EA073-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +96787,Si9,EA073,?,EA073-NA,,,,,, +96788,Sj1,EA073,Patrilineal heir,EA073-2,The preferred successor is a grandson,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +96789,Sj10,EA073,?,EA073-NA,,,,,, +96790,Sj11,EA073,Nonhereditary,EA073-5,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +96791,Sj2,EA073,Son,EA073-1,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +96792,Sj3,EA073,Absence of office,EA073-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +96793,Sj4,EA073,?,EA073-NA,,,,,, +96794,Sj5,EA073,Nonhereditary,EA073-5,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +96795,Sj6,EA073,Nonhereditary,EA073-5,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +96796,Sj7,EA073,Matrilineal heir,EA073-4,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +96797,Sj8,EA073,Son,EA073-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +96798,Sj9,EA073,Sister's son,EA073-3,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +96799,ch12,EA073,Nonhereditary,EA073-5,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +96800,ch13,EA073,Nonhereditary,EA073-5,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +96801,ch14,EA073,Nonhereditary,EA073-5,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +96802,ch15,EA073,Nonhereditary,EA073-5,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +96803,ch16,EA073,Nonhereditary,EA073-5,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +96804,ch17,EA073,Nonhereditary,EA073-5,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +96805,ch18,EA073,Nonhereditary,EA073-5,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +96806,ch19,EA073,Nonhereditary,EA073-5,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +96807,ch20,EA073,Nonhereditary,EA073-5,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +96808,ch21,EA073,Nonhereditary,EA073-5,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +96809,ch22,EA073,Nonhereditary,EA073-5,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +96810,ch23,EA073,Nonhereditary,EA073-5,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +96811,ch24,EA073,Nonhereditary,EA073-5,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +96812,ch25,EA073,Nonhereditary,EA073-5,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +96813,ch26,EA073,Nonhereditary,EA073-5,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +96814,ch27,EA073,Nonhereditary,EA073-5,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +96815,ch28,EA073,Nonhereditary,EA073-5,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +96816,ec12,EA073,Absence of office,EA073-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +96817,ec13,EA073,Nonhereditary,EA073-5,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +96818,ec14,EA073,Nonhereditary,EA073-5,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +96819,ec15,EA073,Nonhereditary,EA073-5,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +96820,ec16,EA073,Absence of office,EA073-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +96821,ec17,EA073,Absence of office,EA073-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +96822,ec18,EA073,Absence of office,EA073-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +96823,ec19,EA073,Absence of office,EA073-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +96824,ec20,EA073,Absence of office,EA073-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +96825,ec21,EA073,Absence of office,EA073-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +96826,Aa1,EA074,No inher. of real property,EA074-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +96827,Aa2,EA074,Patrilineal by sons,EA074-7,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +96828,Aa3,EA074,No inher. of real property,EA074-1,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +96829,Aa4,EA074,No inher. of real property,EA074-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +96830,Aa5,EA074,No inher. of real property,EA074-1,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +96831,Aa6,EA074,?,EA074-NA,,,,,, +96832,Aa7,EA074,No inher. of real property,EA074-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +96833,Aa8,EA074,?,EA074-NA,,,,,, +96834,Aa9,EA074,No inher. of real property,EA074-1,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +96835,Ab1,EA074,No inher. of real property,EA074-1,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +96836,Ab10,EA074,Patrilineal by sons,EA074-7,,hunter1936,,1936,EthnographicAtlas_1967_p65, +96837,Ab11,EA074,Patrilineal by sons,EA074-7,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +96838,Ab12,EA074,Patrilineal by sons,EA074-7,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +96839,Ab13,EA074,Patrilineal by sons,EA074-7,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +96840,Ab14,EA074,?,EA074-NA,,,,,, +96841,Ab15,EA074,Patrilineal by sons,EA074-7,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +96842,Ab16,EA074,?,EA074-NA,,,,,, +96843,Ab17,EA074,Patrilineal by sons,EA074-7,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +96844,Ab18,EA074,Patrilineal by sons,EA074-7,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +96845,Ab19,EA074,No inher. of real property,EA074-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +96846,Ab2,EA074,Patrilineal by sons,EA074-7,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +96847,Ab20,EA074,Patrilineal by sons,EA074-7,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +96848,Ab21a,EA074,Patrilineal by heirs,EA074-6,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +96849,Ab21b,EA074,?,EA074-NA,,,,,, +96850,Ab22,EA074,?,EA074-NA,,,,,, +96851,Ab3,EA074,Patrilineal by sons,EA074-7,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +96852,Ab4,EA074,No inher. of real property,EA074-1,,junod1927,,1920,EthnographicAtlas_1967_p65, +96853,Ab5,EA074,Patrilineal by sons,EA074-7,Precise distribution unreported,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +96854,Ab6,EA074,No inher. of real property,EA074-1,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +96855,Ab7,EA074,Matrilineal by sister's sons,EA074-2,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +96856,Ab8,EA074,No inher. of real property,EA074-1,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +96857,Ab9,EA074,Patrilineal by sons,EA074-7,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +96858,Ac1,EA074,No inher. of real property,EA074-1,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +96859,Ac10,EA074,Matrilineal by heirs,EA074-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +96860,Ac11,EA074,?,EA074-NA,,,,,, +96861,Ac12,EA074,Matrilineal by sister's sons,EA074-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +96862,Ac13,EA074,Matrilineal by sister's sons,EA074-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +96863,Ac14,EA074,Matrilineal by heirs,EA074-3,"Entry follows Mertens and Van Wing; Ihle and Van de Velde report 'matrilineal by sister's son(s)' (EA074 code ""2"") and 'primogeniture' (EA075 code ""4"")",brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +96864,Ac15,EA074,Matrilineal by sister's sons,EA074-2,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +96865,Ac16,EA074,?,EA074-NA,Inheritance is matrilineal,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +96866,Ac17,EA074,Matrilineal by heirs,EA074-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +96867,Ac18,EA074,?,EA074-NA,,,,,, +96868,Ac19,EA074,Matrilineal by heirs,EA074-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +96869,Ac2,EA074,?,EA074-NA,,,,,, +96870,Ac20,EA074,Matrilineal by heirs,EA074-3,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +96871,Ac21,EA074,Matrilineal by sister's sons,EA074-2,"Entries follows Decker; Torday reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +96872,Ac22,EA074,Matrilineal by heirs,EA074-3,,mertens1935,,1930,EthnographicAtlas_1967_p65, +96873,Ac23,EA074,?,EA074-NA,Presumably matrilineal,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +96874,Ac24,EA074,?,EA074-NA,"Probably 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4""), despite report that inheritance is patrilineal",baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +96875,Ac25,EA074,Matrilineal by heirs,EA074-3,All property escheats to the head of the matrilineage,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +96876,Ac26,EA074,?,EA074-NA,,,,,, +96877,Ac27,EA074,Matrilineal by sister's sons,EA074-2,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +96878,Ac28,EA074,Matrilineal by heirs,EA074-3,"Alternatively 'patrilineal by heirs' (EA074 code ""6"") and 'primogeniture' (EA075 code ""4"")",baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +96879,Ac29,EA074,Matrilineal by heirs,EA074-3,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +96880,Ac3,EA074,Matrilineal by heirs,EA074-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +96881,Ac30,EA074,Matrilineal by heirs,EA074-3,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +96882,Ac31,EA074,Matrilineal by heirs,EA074-3,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +96883,Ac32,EA074,Matrilineal by heirs,EA074-3,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +96884,Ac33,EA074,Matrilineal by heirs,EA074-3,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +96885,Ac34,EA074,Matrilineal by heirs,EA074-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +96886,Ac35,EA074,Matrilineal by heirs,EA074-3,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +96887,Ac36,EA074,Patrilineal by sons,EA074-7,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +96888,Ac37,EA074,Matrilineal by heirs,EA074-3,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +96889,Ac38,EA074,Matrilineal by heirs,EA074-3,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +96890,Ac39,EA074,Matrilineal by sister's sons,EA074-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +96891,Ac4,EA074,No inher. of real property,EA074-1,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +96892,Ac40,EA074,Matrilineal by heirs,EA074-3,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +96893,Ac41,EA074,?,EA074-NA,Matrilineal,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +96894,Ac42,EA074,Matrilineal by sister's sons,EA074-2,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +96895,Ac43,EA074,?,EA074-NA,,,,,, +96896,Ac5,EA074,?,EA074-NA,,,,,, +96897,Ac6,EA074,?,EA074-NA,,,,,, +96898,Ac7,EA074,?,EA074-NA,,,,,, +96899,Ac8,EA074,Matrilineal by heirs,EA074-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +96900,Ac9,EA074,Patrilineal by sons,EA074-7,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +96901,Ad1,EA074,Children,EA074-5,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +96902,Ad10,EA074,Patrilineal by sons,EA074-7,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +96903,Ad11,EA074,Patrilineal by sons,EA074-7,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +96904,Ad12,EA074,Patrilineal by sons,EA074-7,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +96905,Ad13,EA074,Patrilineal by sons,EA074-7,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +96906,Ad14,EA074,Matrilineal by sister's sons,EA074-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +96907,Ad15,EA074,Patrilineal by heirs,EA074-6,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +96908,Ad16,EA074,Patrilineal by heirs,EA074-6,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +96909,Ad17,EA074,Patrilineal by heirs,EA074-6,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +96910,Ad18,EA074,Matrilineal by heirs,EA074-3,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +96911,Ad19,EA074,?,EA074-NA,"Matrilineal, but sources conflict as to preferred heirs",fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +96912,Ad2,EA074,Patrilineal by sons,EA074-7,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +96913,Ad20,EA074,Patrilineal by sons,EA074-7,But only by sons of wives obtained by a bride-price,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +96914,Ad21,EA074,?,EA074-NA,Matrilineal,maurice193538,,1930,EthnographicAtlas_1967_p69, +96915,Ad22,EA074,Patrilineal by sons,EA074-7,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +96916,Ad23,EA074,Patrilineal by sons,EA074-7,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +96917,Ad24,EA074,No inher. of real property,EA074-1,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +96918,Ad25,EA074,Matrilineal by heirs,EA074-3,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +96919,Ad26,EA074,Patrilineal by sons,EA074-7,,sick1916,,1910,EthnographicAtlas_1967_p69, +96920,Ad27,EA074,Matrilineal by sister's sons,EA074-2,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +96921,Ad28,EA074,Matrilineal by sister's sons,EA074-2,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +96922,Ad29,EA074,"Children, less for daughters",EA074-4,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +96923,Ad3,EA074,Patrilineal by sons,EA074-7,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +96924,Ad30,EA074,Matrilineal by heirs,EA074-3,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +96925,Ad31,EA074,Matrilineal by sister's sons,EA074-2,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +96926,Ad32,EA074,Patrilineal by sons,EA074-7,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +96927,Ad33,EA074,Patrilineal by sons,EA074-7,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +96928,Ad34,EA074,Patrilineal by sons,EA074-7,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +96929,Ad35,EA074,Patrilineal by sons,EA074-7,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +96930,Ad36,EA074,?,EA074-NA,"By brothers according one source, by eldest sons of each wife according to another",baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +96931,Ad37,EA074,Patrilineal by sons,EA074-7,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +96932,Ad38,EA074,Patrilineal by heirs,EA074-6,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +96933,Ad39,EA074,Patrilineal by sons,EA074-7,,gray1963,,1950,EthnographicAtlas_1967_p69, +96934,Ad4,EA074,Patrilineal by sons,EA074-7,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +96935,Ad40,EA074,Patrilineal by sons,EA074-7,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +96936,Ad41,EA074,Patrilineal by sons,EA074-7,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +96937,Ad42,EA074,Patrilineal by sons,EA074-7,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +96938,Ad43,EA074,?,EA074-NA,,,,,, +96939,Ad44,EA074,?,EA074-NA,,,,,, +96940,Ad45,EA074,Patrilineal by sons,EA074-7,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +96941,Ad46,EA074,Patrilineal by sons,EA074-7,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +96942,Ad47,EA074,Patrilineal by sons,EA074-7,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +96943,Ad48,EA074,?,EA074-NA,,,,,, +96944,Ad49,EA074,Patrilineal by sons,EA074-7,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +96945,Ad5,EA074,Patrilineal by sons,EA074-7,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +96946,Ad50,EA074,?,EA074-NA,,,,,, +96947,Ad51,EA074,?,EA074-NA,,,,,, +96948,Ad6,EA074,Patrilineal by heirs,EA074-6,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +96949,Ad7,EA074,Patrilineal by sons,EA074-7,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +96950,Ad8,EA074,?,EA074-NA,,,,,, +96951,Ad9,EA074,Patrilineal by sons,EA074-7,"In the north; 'patrilineal inheritance by heirs who take precedence over sons' (EA074 code ""6"") with 'equal distribution' (EA075 code ""1"") in the south",lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +96952,Ae1,EA074,Patrilineal by sons,EA074-7,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +96953,Ae10,EA074,Patrilineal by sons,EA074-7,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +96954,Ae11,EA074,?,EA074-NA,,,,,, +96955,Ae12,EA074,?,EA074-NA,,,,,, +96956,Ae13,EA074,?,EA074-NA,Patrilineal,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +96957,Ae14,EA074,Patrilineal by sons,EA074-7,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +96958,Ae15,EA074,Patrilineal by sons,EA074-7,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +96959,Ae16,EA074,Patrilineal by heirs,EA074-6,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +96960,Ae17,EA074,Patrilineal by heirs,EA074-6,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +96961,Ae18,EA074,Patrilineal by sons,EA074-7,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +96962,Ae19,EA074,?,EA074-NA,,,,,, +96963,Ae2,EA074,Patrilineal by sons,EA074-7,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +96964,Ae20,EA074,Patrilineal by heirs,EA074-6,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +96965,Ae21,EA074,Patrilineal by sons,EA074-7,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +96966,Ae22,EA074,Patrilineal by sons,EA074-7,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +96967,Ae23,EA074,?,EA074-NA,Mixed patrilineal and matrilineal,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +96968,Ae24,EA074,Patrilineal by heirs,EA074-6,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +96969,Ae25,EA074,Patrilineal by sons,EA074-7,"Entry follows Torday and Joyce; Heusch reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +96970,Ae26,EA074,Patrilineal by heirs,EA074-6,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +96971,Ae27,EA074,?,EA074-NA,,,,,, +96972,Ae28,EA074,Patrilineal by sons,EA074-7,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +96973,Ae29,EA074,Patrilineal by sons,EA074-7,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +96974,Ae3,EA074,No inher. of real property,EA074-1,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +96975,Ae30,EA074,Children,EA074-5,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +96976,Ae31,EA074,?,EA074-NA,,,,,, +96977,Ae32,EA074,Patrilineal by sons,EA074-7,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +96978,Ae33,EA074,Patrilineal by heirs,EA074-6,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +96979,Ae34,EA074,?,EA074-NA,Inheritance is patrilineal,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +96980,Ae35,EA074,Patrilineal by heirs,EA074-6,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +96981,Ae36,EA074,?,EA074-NA,Inheritance is patrilineal,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +96982,Ae37,EA074,Patrilineal by heirs,EA074-6,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +96983,Ae38,EA074,Matrilineal by heirs,EA074-3,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +96984,Ae39,EA074,Patrilineal by heirs,EA074-6,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +96985,Ae4,EA074,Patrilineal by heirs,EA074-6,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +96986,Ae40,EA074,Patrilineal by sons,EA074-7,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +96987,Ae41,EA074,Patrilineal by heirs,EA074-6,"Patrilineal, by brothers and sons",andersson1953,,1940,EthnographicAtlas_1967_p69, +96988,Ae42,EA074,Patrilineal by sons,EA074-7,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +96989,Ae43,EA074,Patrilineal by sons,EA074-7,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +96990,Ae44,EA074,Matrilineal by heirs,EA074-3,Entry follows Gil-Delgado; Tessmann reports patrilineal inheritance with matrilineal traces,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +96991,Ae45,EA074,Patrilineal by sons,EA074-7,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +96992,Ae46,EA074,Matrilineal by heirs,EA074-3,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +96993,Ae47,EA074,Patrilineal by sons,EA074-7,"But the source, Oertzen, elsewhere mentions inheritance by sisters' sons",oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +96994,Ae48,EA074,?,EA074-NA,,,,,, +96995,Ae49,EA074,Patrilineal by sons,EA074-7,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +96996,Ae5,EA074,Patrilineal by sons,EA074-7,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +96997,Ae50,EA074,Patrilineal by sons,EA074-7,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +96998,Ae51,EA074,Patrilineal by sons,EA074-7,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +96999,Ae52,EA074,Patrilineal by sons,EA074-7,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +97000,Ae53,EA074,Patrilineal by sons,EA074-7,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +97001,Ae54,EA074,Matrilineal by sister's sons,EA074-2,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +97002,Ae55,EA074,Patrilineal by sons,EA074-7,Patrilineal,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +97003,Ae56,EA074,?,EA074-NA,,,,,, +97004,Ae57,EA074,Patrilineal by sons,EA074-7,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +97005,Ae58,EA074,Patrilineal by heirs,EA074-6,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +97006,Ae59,EA074,Patrilineal by sons,EA074-7,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +97007,Ae6,EA074,Patrilineal by heirs,EA074-6,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +97008,Ae7,EA074,Patrilineal by sons,EA074-7,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +97009,Ae8,EA074,Patrilineal by sons,EA074-7,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +97010,Ae9,EA074,?,EA074-NA,,,,,, +97011,Af1,EA074,Patrilineal by sons,EA074-7,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +97012,Af10,EA074,Patrilineal by sons,EA074-7,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +97013,Af11,EA074,Patrilineal by heirs,EA074-6,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +97014,Af12,EA074,Matrilineal by heirs,EA074-3,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +97015,Af13,EA074,?,EA074-NA,,,,,, +97016,Af14,EA074,?,EA074-NA,"Formerly 'matrilineal by a sister's son(s)' (EA074 code ""2"")",hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +97017,Af15,EA074,Patrilineal by sons,EA074-7,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +97018,Af16,EA074,Patrilineal by heirs,EA074-6,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +97019,Af17,EA074,?,EA074-NA,,,,,, +97020,Af18,EA074,Patrilineal by sons,EA074-7,But formerly matrilineal in the Ekparabong subtribe,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +97021,Af19,EA074,Patrilineal by heirs,EA074-6,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +97022,Af2,EA074,Patrilineal by sons,EA074-7,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +97023,Af20,EA074,Patrilineal by sons,EA074-7,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +97024,Af21,EA074,?,EA074-NA,,,,,, +97025,Af22,EA074,?,EA074-NA,,,,,, +97026,Af23,EA074,?,EA074-NA,Mixed but with a matrilineal emphasis,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +97027,Af24,EA074,Patrilineal by sons,EA074-7,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +97028,Af25,EA074,Patrilineal by sons,EA074-7,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +97029,Af26,EA074,?,EA074-NA,Patrilineal or matrilineal depending on mode of marriage,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +97030,Af27,EA074,Patrilineal by heirs,EA074-6,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +97031,Af28,EA074,?,EA074-NA,Patrilineal with local variations regarding participation of brothers and sons,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +97032,Af29,EA074,Patrilineal by sons,EA074-7,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +97033,Af3,EA074,Matrilineal by heirs,EA074-3,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +97034,Af30,EA074,Patrilineal by heirs,EA074-6,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +97035,Af31,EA074,Patrilineal by sons,EA074-7,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +97036,Af32,EA074,Patrilineal by sons,EA074-7,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97037,Af33,EA074,Patrilineal by heirs,EA074-6,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97038,Af34,EA074,?,EA074-NA,,,,,, +97039,Af35,EA074,?,EA074-NA,Patrilineal,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +97040,Af36,EA074,Patrilineal by sons,EA074-7,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +97041,Af37,EA074,Patrilineal by heirs,EA074-6,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +97042,Af38,EA074,Matrilineal by heirs,EA074-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +97043,Af39,EA074,Matrilineal by sister's sons,EA074-2,"But Kobben, as opposed to the earlier sources, reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +97044,Af4,EA074,Patrilineal by sons,EA074-7,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +97045,Af40,EA074,Matrilineal by heirs,EA074-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +97046,Af41,EA074,Matrilineal by heirs,EA074-3,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +97047,Af42,EA074,Matrilineal by heirs,EA074-3,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +97048,Af43,EA074,Patrilineal by heirs,EA074-6,"But Daniell reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +97049,Af44,EA074,Matrilineal by heirs,EA074-3,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +97050,Af45,EA074,Matrilineal by heirs,EA074-3,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +97051,Af46,EA074,Patrilineal by heirs,EA074-6,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +97052,Af47,EA074,?,EA074-NA,,,,,, +97053,Af48,EA074,?,EA074-NA,,,,,, +97054,Af49,EA074,?,EA074-NA,,,,,, +97055,Af5,EA074,Patrilineal by heirs,EA074-6,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +97056,Af50,EA074,Patrilineal by heirs,EA074-6,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +97057,Af51,EA074,Patrilineal by sons,EA074-7,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +97058,Af52,EA074,Patrilineal by heirs,EA074-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +97059,Af53,EA074,Patrilineal by heirs,EA074-6,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +97060,Af54,EA074,Patrilineal by sons,EA074-7,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +97061,Af55,EA074,?,EA074-NA,,,,,, +97062,Af56,EA074,Patrilineal by sons,EA074-7,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +97063,Af57,EA074,Patrilineal by heirs,EA074-6,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +97064,Af58,EA074,Patrilineal by heirs,EA074-6,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +97065,Af6,EA074,Patrilineal by heirs,EA074-6,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +97066,Af7,EA074,No inher. of real property,EA074-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +97067,Af8,EA074,Patrilineal by heirs,EA074-6,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +97068,Af9,EA074,Matrilineal by heirs,EA074-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +97069,Ag1,EA074,Patrilineal by heirs,EA074-6,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +97070,Ag10,EA074,Patrilineal by heirs,EA074-6,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +97071,Ag11,EA074,Children,EA074-5,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +97072,Ag12,EA074,Patrilineal by heirs,EA074-6,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +97073,Ag13,EA074,Patrilineal by heirs,EA074-6,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +97074,Ag14,EA074,?,EA074-NA,,,,,, +97075,Ag15,EA074,Patrilineal by heirs,EA074-6,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +97076,Ag16,EA074,Patrilineal by sons,EA074-7,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +97077,Ag17,EA074,?,EA074-NA,,,,,, +97078,Ag18,EA074,Matrilineal by heirs,EA074-3,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +97079,Ag19,EA074,Patrilineal by heirs,EA074-6,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +97080,Ag2,EA074,Patrilineal by heirs,EA074-6,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +97081,Ag20,EA074,No inher. of real property,EA074-1,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +97082,Ag21,EA074,Matrilineal by heirs,EA074-3,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +97083,Ag22,EA074,Matrilineal by heirs,EA074-3,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +97084,Ag23,EA074,Patrilineal by heirs,EA074-6,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +97085,Ag24,EA074,Patrilineal by sons,EA074-7,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +97086,Ag25,EA074,Patrilineal by sons,EA074-7,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +97087,Ag26,EA074,Patrilineal by heirs,EA074-6,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +97088,Ag27,EA074,"Children, less for daughters",EA074-4,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +97089,Ag28,EA074,Patrilineal by heirs,EA074-6,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +97090,Ag29,EA074,Patrilineal by heirs,EA074-6,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +97091,Ag3,EA074,Patrilineal by heirs,EA074-6,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +97092,Ag30,EA074,Patrilineal by heirs,EA074-6,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +97093,Ag31,EA074,Patrilineal by heirs,EA074-6,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +97094,Ag32,EA074,Patrilineal by heirs,EA074-6,"Entry follows Vendeix; Delafosse reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +97095,Ag33,EA074,Patrilineal by sons,EA074-7,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +97096,Ag34,EA074,Patrilineal by sons,EA074-7,The sources are in some conflict on rules of inheritance,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +97097,Ag35,EA074,Matrilineal by heirs,EA074-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +97098,Ag36,EA074,Patrilineal by sons,EA074-7,The data on inheritance are cloudy and contradictory,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +97099,Ag37,EA074,Patrilineal by heirs,EA074-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +97100,Ag38,EA074,Patrilineal by heirs,EA074-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +97101,Ag39,EA074,Matrilineal by heirs,EA074-3,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +97102,Ag4,EA074,Patrilineal by heirs,EA074-6,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +97103,Ag40,EA074,Patrilineal by heirs,EA074-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +97104,Ag41,EA074,?,EA074-NA,Brothers and sons share in inheritance,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +97105,Ag42,EA074,Patrilineal by heirs,EA074-6,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +97106,Ag43,EA074,Matrilineal by heirs,EA074-3,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +97107,Ag44,EA074,?,EA074-NA,,,,,, +97108,Ag45,EA074,?,EA074-NA,,,,,, +97109,Ag46,EA074,?,EA074-NA,,,,,, +97110,Ag47,EA074,Patrilineal by sons,EA074-7,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +97111,Ag48,EA074,Patrilineal by sons,EA074-7,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +97112,Ag49,EA074,Patrilineal by heirs,EA074-6,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +97113,Ag5,EA074,Patrilineal by heirs,EA074-6,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +97114,Ag50,EA074,Patrilineal by heirs,EA074-6,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +97115,Ag51,EA074,Patrilineal by heirs,EA074-6,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +97116,Ag52,EA074,Patrilineal by heirs,EA074-6,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +97117,Ag53,EA074,Patrilineal by sons,EA074-7,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +97118,Ag54,EA074,No inher. of real property,EA074-1,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +97119,Ag6,EA074,Patrilineal by heirs,EA074-6,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +97120,Ag7,EA074,Patrilineal by heirs,EA074-6,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +97121,Ag8,EA074,Matrilineal by heirs,EA074-3,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +97122,Ag9,EA074,Patrilineal by heirs,EA074-6,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +97123,Ah1,EA074,Patrilineal by sons,EA074-7,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97124,Ah10,EA074,?,EA074-NA,,,,,, +97125,Ah11,EA074,Patrilineal by heirs,EA074-6,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +97126,Ah12,EA074,Patrilineal by sons,EA074-7,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +97127,Ah13,EA074,Patrilineal by sons,EA074-7,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +97128,Ah14,EA074,Patrilineal by heirs,EA074-6,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +97129,Ah15,EA074,Patrilineal by heirs,EA074-6,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +97130,Ah16,EA074,Patrilineal by sons,EA074-7,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +97131,Ah17,EA074,Patrilineal by sons,EA074-7,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +97132,Ah18,EA074,Patrilineal by sons,EA074-7,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +97133,Ah19,EA074,Patrilineal by sons,EA074-7,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +97134,Ah2,EA074,Patrilineal by sons,EA074-7,"Matrilineal by a sister's son(s)' (EA074 code ""2"") or 'patrilineal by son(s)' (EA074 code ""7""), both with 'equal distribution' (EA075 code ""1"") depending on residence",meek1931a,,1920,EthnographicAtlas_1967_p77, +97135,Ah20,EA074,Patrilineal by sons,EA074-7,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +97136,Ah21,EA074,?,EA074-NA,,,,,, +97137,Ah22,EA074,Patrilineal by sons,EA074-7,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +97138,Ah23,EA074,Matrilineal by sister's sons,EA074-2,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +97139,Ah24,EA074,Patrilineal by heirs,EA074-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +97140,Ah25,EA074,?,EA074-NA,,,,,, +97141,Ah26,EA074,Matrilineal by sister's sons,EA074-2,"Entry follows Meek; another source reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +97142,Ah27,EA074,Patrilineal by heirs,EA074-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +97143,Ah28,EA074,Patrilineal by sons,EA074-7,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +97144,Ah29,EA074,Matrilineal by heirs,EA074-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +97145,Ah3,EA074,No inher. of real property,EA074-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +97146,Ah30,EA074,Matrilineal by heirs,EA074-3,,meek1931b,,1920,EthnographicAtlas_1967_p77, +97147,Ah31,EA074,Patrilineal by sons,EA074-7,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +97148,Ah32,EA074,?,EA074-NA,Inheritance is mixed but more matrilineal than patrilineal,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +97149,Ah33,EA074,Patrilineal by heirs,EA074-6,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +97150,Ah34,EA074,Patrilineal by sons,EA074-7,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +97151,Ah35,EA074,Patrilineal by sons,EA074-7,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +97152,Ah36,EA074,Patrilineal by sons,EA074-7,"Formerly 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +97153,Ah37,EA074,Patrilineal by heirs,EA074-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +97154,Ah38,EA074,Patrilineal by heirs,EA074-6,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +97155,Ah39,EA074,Patrilineal by sons,EA074-7,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +97156,Ah4,EA074,?,EA074-NA,,,,,, +97157,Ah5,EA074,Patrilineal by sons,EA074-7,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +97158,Ah6,EA074,?,EA074-NA,"Matrilineal but not specified whether 'matrilineal by a sister's son(s)' (EA074 code ""2"") or 'matrilineal by heirs who take precedence over sister's son(s)' (EA074 code ""3"")",dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +97159,Ah7,EA074,Patrilineal by sons,EA074-7,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +97160,Ah8,EA074,Patrilineal by heirs,EA074-6,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +97161,Ah9,EA074,Patrilineal by sons,EA074-7,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +97162,Ai1,EA074,Patrilineal by sons,EA074-7,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +97163,Ai10,EA074,Patrilineal by sons,EA074-7,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +97164,Ai11,EA074,?,EA074-NA,,,,,, +97165,Ai12,EA074,Patrilineal by sons,EA074-7,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +97166,Ai13,EA074,Patrilineal by sons,EA074-7,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +97167,Ai14,EA074,?,EA074-NA,,,,,, +97168,Ai15,EA074,Patrilineal by sons,EA074-7,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +97169,Ai16,EA074,Patrilineal by sons,EA074-7,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +97170,Ai17,EA074,?,EA074-NA,,,,,, +97171,Ai18,EA074,?,EA074-NA,,,,,, +97172,Ai19,EA074,?,EA074-NA,,,,,, +97173,Ai2,EA074,Patrilineal by sons,EA074-7,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +97174,Ai20,EA074,Patrilineal by sons,EA074-7,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +97175,Ai21,EA074,?,EA074-NA,,,,,, +97176,Ai22,EA074,Patrilineal by heirs,EA074-6,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +97177,Ai23,EA074,Patrilineal by sons,EA074-7,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +97178,Ai24,EA074,Patrilineal by sons,EA074-7,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +97179,Ai25,EA074,?,EA074-NA,,,,,, +97180,Ai26,EA074,Patrilineal by sons,EA074-7,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +97181,Ai27,EA074,?,EA074-NA,,,,,, +97182,Ai28,EA074,Patrilineal by heirs,EA074-6,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +97183,Ai29,EA074,Patrilineal by sons,EA074-7,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +97184,Ai3,EA074,Patrilineal by heirs,EA074-6,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +97185,Ai30,EA074,Patrilineal by sons,EA074-7,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +97186,Ai31,EA074,?,EA074-NA,,,,,, +97187,Ai32,EA074,?,EA074-NA,,,,,, +97188,Ai33,EA074,Patrilineal by sons,EA074-7,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +97189,Ai34,EA074,Patrilineal by sons,EA074-7,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +97190,Ai35,EA074,?,EA074-NA,,,,,, +97191,Ai36,EA074,Patrilineal by heirs,EA074-6,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +97192,Ai37,EA074,Patrilineal by sons,EA074-7,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +97193,Ai38,EA074,?,EA074-NA,"Mixed 'matrilineal by a sister's son(s)' (EA074 code ""2"") and 'patrilineal by son(s)' (EA074 code ""7""), both with 'equal distribution' (EA075 code ""1"")",nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +97194,Ai39,EA074,?,EA074-NA,Mixed matrilineal and patrilineal,nadel1947,,1940,EthnographicAtlas_1967_p77, +97195,Ai4,EA074,?,EA074-NA,,,,,, +97196,Ai40,EA074,Patrilineal by sons,EA074-7,,nadel1947,,1940,EthnographicAtlas_1967_p77, +97197,Ai41,EA074,Patrilineal by sons,EA074-7,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +97198,Ai42,EA074,?,EA074-NA,Mixed matrilineal and patrilineal,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +97199,Ai43,EA074,Patrilineal by sons,EA074-7,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +97200,Ai44,EA074,?,EA074-NA,,,,,, +97201,Ai45,EA074,Patrilineal by sons,EA074-7,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +97202,Ai46,EA074,?,EA074-NA,,,,,, +97203,Ai47,EA074,Patrilineal by heirs,EA074-6,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +97204,Ai5,EA074,?,EA074-NA,,,,,, +97205,Ai6,EA074,Patrilineal by sons,EA074-7,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +97206,Ai7,EA074,Patrilineal by sons,EA074-7,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +97207,Ai8,EA074,Patrilineal by sons,EA074-7,But eldest son inherits distant fields,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +97208,Ai9,EA074,Patrilineal by sons,EA074-7,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +97209,Aj1,EA074,Patrilineal by sons,EA074-7,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +97210,Aj10,EA074,?,EA074-NA,,,,,, +97211,Aj11,EA074,?,EA074-NA,,,,,, +97212,Aj12,EA074,?,EA074-NA,,,,,, +97213,Aj13,EA074,Patrilineal by sons,EA074-7,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +97214,Aj14,EA074,?,EA074-NA,,,,,, +97215,Aj15,EA074,Patrilineal by sons,EA074-7,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +97216,Aj16,EA074,No inher. of real property,EA074-1,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +97217,Aj17,EA074,Patrilineal by sons,EA074-7,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +97218,Aj18,EA074,Patrilineal by sons,EA074-7,,jensen1959,,1950,EthnographicAtlas_1967_p81, +97219,Aj19,EA074,Patrilineal by sons,EA074-7,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +97220,Aj2,EA074,Patrilineal by sons,EA074-7,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +97221,Aj20,EA074,?,EA074-NA,,,,,, +97222,Aj21,EA074,?,EA074-NA,,,,,, +97223,Aj22,EA074,Patrilineal by sons,EA074-7,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +97224,Aj23,EA074,Patrilineal by sons,EA074-7,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +97225,Aj24,EA074,Patrilineal by sons,EA074-7,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +97226,Aj25,EA074,Patrilineal by sons,EA074-7,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +97227,Aj26,EA074,Patrilineal by heirs,EA074-6,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +97228,Aj27,EA074,?,EA074-NA,,,,,, +97229,Aj28,EA074,Patrilineal by sons,EA074-7,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +97230,Aj29,EA074,No inher. of real property,EA074-1,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +97231,Aj3,EA074,Patrilineal by sons,EA074-7,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +97232,Aj30,EA074,?,EA074-NA,,,,,, +97233,Aj31,EA074,?,EA074-NA,,,,,, +97234,Aj4,EA074,Patrilineal by sons,EA074-7,"But often 'matrilineal by heirs who take precedence over sister's son(s)' (EA074 code ""3"") for private hunting tracts",driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +97235,Aj5,EA074,Patrilineal by sons,EA074-7,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +97236,Aj6,EA074,Patrilineal by sons,EA074-7,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +97237,Aj7,EA074,Patrilineal by sons,EA074-7,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +97238,Aj8,EA074,Patrilineal by sons,EA074-7,"Entry follows Seligman; Beaton reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +97239,Aj9,EA074,Patrilineal by sons,EA074-7,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +97240,Ca1,EA074,Patrilineal by sons,EA074-7,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +97241,Ca10,EA074,"Children, less for daughters",EA074-4,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +97242,Ca11,EA074,Patrilineal by sons,EA074-7,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +97243,Ca12,EA074,Patrilineal by sons,EA074-7,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +97244,Ca13,EA074,Patrilineal by sons,EA074-7,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +97245,Ca14,EA074,?,EA074-NA,,,,,, +97246,Ca15,EA074,Patrilineal by sons,EA074-7,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +97247,Ca16,EA074,Patrilineal by sons,EA074-7,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +97248,Ca17,EA074,?,EA074-NA,,,,,, +97249,Ca18,EA074,Patrilineal by heirs,EA074-6,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +97250,Ca19,EA074,?,EA074-NA,,,,,, +97251,Ca2,EA074,"Children, less for daughters",EA074-4,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +97252,Ca20,EA074,?,EA074-NA,,,,,, +97253,Ca21,EA074,?,EA074-NA,,,,,, +97254,Ca22,EA074,?,EA074-NA,,,,,, +97255,Ca23,EA074,Patrilineal by sons,EA074-7,,jensen1959,,1950,EthnographicAtlas_1967_p81, +97256,Ca24,EA074,?,EA074-NA,,,,,, +97257,Ca25,EA074,Patrilineal by sons,EA074-7,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +97258,Ca26,EA074,?,EA074-NA,,,,,, +97259,Ca27,EA074,?,EA074-NA,,,,,, +97260,Ca28,EA074,Patrilineal by sons,EA074-7,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +97261,Ca29,EA074,Patrilineal by sons,EA074-7,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +97262,Ca3,EA074,Patrilineal by sons,EA074-7,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +97263,Ca30,EA074,Patrilineal by sons,EA074-7,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +97264,Ca31,EA074,?,EA074-NA,,,,,, +97265,Ca32,EA074,Matrilineal by sister's sons,EA074-2,"Entry follows Pollera; Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +97266,Ca33,EA074,Matrilineal by sister's sons,EA074-2,"But Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +97267,Ca34,EA074,?,EA074-NA,,,,,, +97268,Ca35,EA074,No inher. of real property,EA074-1,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +97269,Ca36,EA074,No inher. of real property,EA074-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +97270,Ca37,EA074,Patrilineal by sons,EA074-7,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +97271,Ca38,EA074,Patrilineal by sons,EA074-7,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +97272,Ca39,EA074,Patrilineal by sons,EA074-7,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +97273,Ca4,EA074,Patrilineal by sons,EA074-7,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +97274,Ca40,EA074,Patrilineal by sons,EA074-7,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +97275,Ca41,EA074,Patrilineal by sons,EA074-7,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +97276,Ca42,EA074,Patrilineal by heirs,EA074-6,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +97277,Ca43,EA074,?,EA074-NA,,,,,, +97278,Ca5,EA074,?,EA074-NA,,,,,, +97279,Ca6,EA074,?,EA074-NA,,,,,, +97280,Ca7,EA074,Patrilineal by sons,EA074-7,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +97281,Ca8,EA074,Patrilineal by sons,EA074-7,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +97282,Ca9,EA074,Patrilineal by sons,EA074-7,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +97283,Cb1,EA074,Patrilineal by heirs,EA074-6,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +97284,Cb10,EA074,Patrilineal by sons,EA074-7,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +97285,Cb11,EA074,?,EA074-NA,,,,,, +97286,Cb12,EA074,?,EA074-NA,,,,,, +97287,Cb13,EA074,?,EA074-NA,,,,,, +97288,Cb14,EA074,?,EA074-NA,,,,,, +97289,Cb15,EA074,Patrilineal by sons,EA074-7,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +97290,Cb16,EA074,?,EA074-NA,,,,,, +97291,Cb17,EA074,Patrilineal by sons,EA074-7,"Entry follows Felkin; Beaton reports 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +97292,Cb18,EA074,Patrilineal by sons,EA074-7,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +97293,Cb19,EA074,"Children, less for daughters",EA074-4,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +97294,Cb2,EA074,"Children, less for daughters",EA074-4,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +97295,Cb20,EA074,"Children, less for daughters",EA074-4,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +97296,Cb21,EA074,No inher. of real property,EA074-1,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +97297,Cb22,EA074,?,EA074-NA,,,,,, +97298,Cb23,EA074,Patrilineal by sons,EA074-7,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +97299,Cb24,EA074,No inher. of real property,EA074-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +97300,Cb25,EA074,Patrilineal by sons,EA074-7,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +97301,Cb26,EA074,"Children, less for daughters",EA074-4,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +97302,Cb27,EA074,Patrilineal by heirs,EA074-6,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +97303,Cb28,EA074,?,EA074-NA,,,,,, +97304,Cb29,EA074,?,EA074-NA,,,,,, +97305,Cb3,EA074,"Children, less for daughters",EA074-4,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +97306,Cb4,EA074,"Children, less for daughters",EA074-4,,reid1930,,1920,EthnographicAtlas_1967_p81, +97307,Cb5,EA074,Patrilineal by sons,EA074-7,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +97308,Cb6,EA074,"Children, less for daughters",EA074-4,,woodnd,,1920,EthnographicAtlas_1967_p81, +97309,Cb7,EA074,?,EA074-NA,,,,,, +97310,Cb8,EA074,No inher. of real property,EA074-1,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +97311,Cb9,EA074,Patrilineal by sons,EA074-7,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +97312,Cc1,EA074,"Children, less for daughters",EA074-4,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +97313,Cc10,EA074,Matrilineal by sister's sons,EA074-2,"Entry follows Rodd; Joubert reports 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +97314,Cc11,EA074,Matrilineal by sister's sons,EA074-2,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +97315,Cc12,EA074,?,EA074-NA,,,,,, +97316,Cc13,EA074,Matrilineal by sister's sons,EA074-2,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +97317,Cc14,EA074,?,EA074-NA,,,,,, +97318,Cc15,EA074,?,EA074-NA,,,,,, +97319,Cc16,EA074,?,EA074-NA,,,,,, +97320,Cc17,EA074,"Children, less for daughters",EA074-4,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +97321,Cc18,EA074,"Children, less for daughters",EA074-4,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +97322,Cc19,EA074,"Children, less for daughters",EA074-4,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +97323,Cc2,EA074,"Children, less for daughters",EA074-4,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +97324,Cc20,EA074,Patrilineal by sons,EA074-7,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +97325,Cc3,EA074,"Children, less for daughters",EA074-4,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +97326,Cc4,EA074,?,EA074-NA,,,,,, +97327,Cc5,EA074,?,EA074-NA,,,,,, +97328,Cc6,EA074,No inher. of real property,EA074-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +97329,Cc7,EA074,?,EA074-NA,,,,,, +97330,Cc8,EA074,?,EA074-NA,,,,,, +97331,Cc9,EA074,Matrilineal by sister's sons,EA074-2,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +97332,Cd1,EA074,"Children, less for daughters",EA074-4,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +97333,Cd10,EA074,Patrilineal by sons,EA074-7,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +97334,Cd11,EA074,Matrilineal by sister's sons,EA074-2,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +97335,Cd12,EA074,"Children, less for daughters",EA074-4,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +97336,Cd13,EA074,Patrilineal by sons,EA074-7,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +97337,Cd14,EA074,"Children, less for daughters",EA074-4,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +97338,Cd15,EA074,"Children, less for daughters",EA074-4,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +97339,Cd16,EA074,"Children, less for daughters",EA074-4,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +97340,Cd17,EA074,Patrilineal by sons,EA074-7,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +97341,Cd18,EA074,"Children, less for daughters",EA074-4,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +97342,Cd19,EA074,?,EA074-NA,,,,,, +97343,Cd2,EA074,"Children, less for daughters",EA074-4,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +97344,Cd20,EA074,"Children, less for daughters",EA074-4,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +97345,Cd21,EA074,?,EA074-NA,,,,,, +97346,Cd3,EA074,Patrilineal by sons,EA074-7,"But theoretically 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +97347,Cd4,EA074,Patrilineal by sons,EA074-7,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +97348,Cd5,EA074,"Children, less for daughters",EA074-4,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +97349,Cd6,EA074,Patrilineal by sons,EA074-7,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +97350,Cd7,EA074,Patrilineal by sons,EA074-7,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +97351,Cd8,EA074,Patrilineal by sons,EA074-7,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +97352,Cd9,EA074,"Children, less for daughters",EA074-4,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +97353,Ce1,EA074,Patrilineal by sons,EA074-7,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +97354,Ce2,EA074,?,EA074-NA,,,,,, +97355,Ce3,EA074,Children,EA074-5,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +97356,Ce4,EA074,Children,EA074-5,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97357,Ce5,EA074,"Children, less for daughters",EA074-4,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +97358,Ce6,EA074,Children,EA074-5,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +97359,Ce7,EA074,Children,EA074-5,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +97360,Ce8,EA074,"Children, less for daughters",EA074-4,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +97361,Cf1,EA074,Children,EA074-5,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +97362,Cf2,EA074,?,EA074-NA,,,,,, +97363,Cf3,EA074,Children,EA074-5,,munch1945,,1930,EthnographicAtlas_1967_p85, +97364,Cf4,EA074,Children,EA074-5,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +97365,Cf5,EA074,Patrilineal by sons,EA074-7,,miner1939,,1930,EthnographicAtlas_1967_p85, +97366,Cg1,EA074,Children,EA074-5,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +97367,Cg2,EA074,Patrilineal by sons,EA074-7,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +97368,Cg3,EA074,Patrilineal by sons,EA074-7,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +97369,Cg4,EA074,Patrilineal by sons,EA074-7,For tent or cottage and associated movables,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +97370,Cg5,EA074,?,EA074-NA,,,,,, +97371,Ch1,EA074,?,EA074-NA,,,,,, +97372,Ch10,EA074,?,EA074-NA,,,,,, +97373,Ch11,EA074,No inher. of real property,EA074-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +97374,Ch2,EA074,Patrilineal by sons,EA074-7,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +97375,Ch3,EA074,Patrilineal by sons,EA074-7,But the youngest son receives the largest share,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +97376,Ch4,EA074,Children,EA074-5,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +97377,Ch5,EA074,"Children, less for daughters",EA074-4,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +97378,Ch6,EA074,Patrilineal by sons,EA074-7,,ember1954,,1910,EthnographicAtlas_1967_p85, +97379,Ch7,EA074,Patrilineal by sons,EA074-7,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +97380,Ch8,EA074,?,EA074-NA,,,,,, +97381,Ch9,EA074,Patrilineal by sons,EA074-7,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +97382,Ci1,EA074,No inher. of real property,EA074-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +97383,Ci10,EA074,Patrilineal by sons,EA074-7,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +97384,Ci11,EA074,Patrilineal by sons,EA074-7,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +97385,Ci12,EA074,"Children, less for daughters",EA074-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +97386,Ci2,EA074,Patrilineal by sons,EA074-7,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +97387,Ci3,EA074,?,EA074-NA,,,,,, +97388,Ci4,EA074,"Children, less for daughters",EA074-4,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +97389,Ci5,EA074,Patrilineal by sons,EA074-7,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +97390,Ci6,EA074,Patrilineal by sons,EA074-7,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +97391,Ci7,EA074,?,EA074-NA,,,,,, +97392,Ci8,EA074,?,EA074-NA,,,,,, +97393,Ci9,EA074,Patrilineal by sons,EA074-7,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +97394,Cj1,EA074,?,EA074-NA,,,,,, +97395,Cj10,EA074,Patrilineal by sons,EA074-7,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +97396,Cj2,EA074,No inher. of real property,EA074-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +97397,Cj3,EA074,Patrilineal by sons,EA074-7,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +97398,Cj4,EA074,Patrilineal by sons,EA074-7,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +97399,Cj5,EA074,"Children, less for daughters",EA074-4,,dickson1949,,1930,EthnographicAtlas_1967_p89, +97400,Cj6,EA074,"Children, less for daughters",EA074-4,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +97401,Cj7,EA074,Patrilineal by sons,EA074-7,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +97402,Cj8,EA074,"Children, less for daughters",EA074-4,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +97403,Cj9,EA074,?,EA074-NA,,,,,, +97404,Ea1,EA074,Patrilineal by sons,EA074-7,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p89, +97405,Ea10,EA074,Patrilineal by sons,EA074-7,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +97406,Ea11,EA074,?,EA074-NA,,,,,, +97407,Ea12,EA074,?,EA074-NA,,,,,, +97408,Ea13,EA074,Patrilineal by sons,EA074-7,"Despite legal change in 1948 to 'inheritance by children of either sex' (EA074 code ""5"") with 'equal distribution' (EA075 code ""1"")",callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +97409,Ea2,EA074,"Children, less for daughters",EA074-4,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +97410,Ea3,EA074,Patrilineal by sons,EA074-7,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +97411,Ea4,EA074,"Children, less for daughters",EA074-4,,barth1956b,,1950,EthnographicAtlas_1967_p89, +97412,Ea5,EA074,Patrilineal by sons,EA074-7,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +97413,Ea6,EA074,No inher. of real property,EA074-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +97414,Ea7,EA074,Patrilineal by sons,EA074-7,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +97415,Ea8,EA074,?,EA074-NA,,,,,, +97416,Ea9,EA074,?,EA074-NA,,,,,, +97417,Eb1,EA074,No inher. of real property,EA074-1,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +97418,Eb2,EA074,Patrilineal by sons,EA074-7,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +97419,Eb3,EA074,Patrilineal by sons,EA074-7,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +97420,Eb4,EA074,Patrilineal by sons,EA074-7,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +97421,Eb5,EA074,?,EA074-NA,,,,,, +97422,Eb6,EA074,?,EA074-NA,,,,,, +97423,Eb7,EA074,No inher. of real property,EA074-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +97424,Eb8,EA074,?,EA074-NA,,,,,, +97425,Ec1,EA074,No inher. of real property,EA074-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +97426,Ec10,EA074,?,EA074-NA,,,,,, +97427,Ec11,EA074,?,EA074-NA,,,,,, +97428,Ec2,EA074,Patrilineal by heirs,EA074-6,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97429,Ec3,EA074,No inher. of real property,EA074-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +97430,Ec4,EA074,?,EA074-NA,,,,,, +97431,Ec5,EA074,Patrilineal by sons,EA074-7,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +97432,Ec6,EA074,No inher. of real property,EA074-1,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +97433,Ec7,EA074,?,EA074-NA,,,,,, +97434,Ec8,EA074,No inher. of real property,EA074-1,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +97435,Ec9,EA074,?,EA074-NA,,,,,, +97436,Ed1,EA074,Patrilineal by sons,EA074-7,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +97437,Ed10,EA074,Patrilineal by sons,EA074-7,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +97438,Ed13,EA074,?,EA074-NA,,,,,, +97439,Ed14,EA074,?,EA074-NA,,,,,, +97440,Ed15a,EA074,?,EA074-NA,,,,,, +97441,Ed15b,EA074,Patrilineal by sons,EA074-7,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +97442,Ed16,EA074,?,EA074-NA,,,,,, +97443,Ed2,EA074,Patrilineal by sons,EA074-7,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +97444,Ed3,EA074,Patrilineal by sons,EA074-7,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +97445,Ed4,EA074,Patrilineal by sons,EA074-7,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +97446,Ed5,EA074,Patrilineal by sons,EA074-7,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97447,Ed6,EA074,Patrilineal by sons,EA074-7,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +97448,Ed7,EA074,Patrilineal by sons,EA074-7,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +97449,Ed8,EA074,Patrilineal by sons,EA074-7,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +97450,Ed9,EA074,Patrilineal by sons,EA074-7,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +97451,Ee1,EA074,Patrilineal by sons,EA074-7,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +97452,Ee2,EA074,?,EA074-NA,,,,,, +97453,Ee3,EA074,Patrilineal by sons,EA074-7,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +97454,Ee4,EA074,Patrilineal by sons,EA074-7,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +97455,Ee5,EA074,Patrilineal by sons,EA074-7,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +97456,Ee6,EA074,Patrilineal by sons,EA074-7,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +97457,Ee7,EA074,?,EA074-NA,,,,,, +97458,Ee8,EA074,Children,EA074-5,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +97459,Ef1,EA074,Patrilineal by sons,EA074-7,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +97460,Ef10,EA074,?,EA074-NA,,,,,, +97461,Ef11,EA074,Patrilineal by sons,EA074-7,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +97462,Ef2,EA074,Patrilineal by sons,EA074-7,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +97463,Ef3,EA074,?,EA074-NA,,,,,, +97464,Ef4,EA074,Patrilineal by sons,EA074-7,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +97465,Ef5,EA074,Patrilineal by sons,EA074-7,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +97466,Ef6,EA074,Patrilineal by sons,EA074-7,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +97467,Ef7,EA074,Patrilineal by sons,EA074-7,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +97468,Ef8,EA074,Patrilineal by sons,EA074-7,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +97469,Ef9,EA074,Patrilineal by sons,EA074-7,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97470,Eg1,EA074,Patrilineal by sons,EA074-7,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97471,Eg10,EA074,Patrilineal by sons,EA074-7,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +97472,Eg11,EA074,Patrilineal by sons,EA074-7,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +97473,Eg12,EA074,?,EA074-NA,,,,,, +97474,Eg13,EA074,?,EA074-NA,,,,,, +97475,Eg14,EA074,?,EA074-NA,,,,,, +97476,Eg2,EA074,?,EA074-NA,,,,,, +97477,Eg3,EA074,No inher. of real property,EA074-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +97478,Eg4,EA074,No inher. of real property,EA074-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +97479,Eg5,EA074,Patrilineal by sons,EA074-7,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +97480,Eg6,EA074,?,EA074-NA,,,,,, +97481,Eg7,EA074,?,EA074-NA,,,,,, +97482,Eg8,EA074,Patrilineal by sons,EA074-7,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +97483,Eg9,EA074,?,EA074-NA,,,,,, +97484,Eh1,EA074,No inher. of real property,EA074-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +97485,Eh10,EA074,?,EA074-NA,,,,,, +97486,Eh2,EA074,Children,EA074-5,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +97487,Eh3,EA074,Patrilineal by sons,EA074-7,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +97488,Eh4,EA074,Patrilineal by sons,EA074-7,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97489,Eh5,EA074,No inher. of real property,EA074-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +97490,Eh6,EA074,Children,EA074-5,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +97491,Eh7,EA074,Patrilineal by sons,EA074-7,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +97492,Eh8,EA074,?,EA074-NA,,,,,, +97493,Eh9,EA074,Children,EA074-5,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +97494,Ei1,EA074,No inher. of real property,EA074-1,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97495,Ei10,EA074,Patrilineal by sons,EA074-7,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +97496,Ei11,EA074,Patrilineal by sons,EA074-7,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +97497,Ei12,EA074,?,EA074-NA,,,,,, +97498,Ei13,EA074,Patrilineal by sons,EA074-7,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +97499,Ei14,EA074,Patrilineal by heirs,EA074-6,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +97500,Ei15,EA074,?,EA074-NA,,,,,, +97501,Ei16,EA074,Patrilineal by sons,EA074-7,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +97502,Ei17,EA074,?,EA074-NA,,,,,, +97503,Ei18,EA074,?,EA074-NA,,,,,, +97504,Ei19,EA074,Patrilineal by sons,EA074-7,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"") in some localities",bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +97505,Ei2,EA074,Patrilineal by sons,EA074-7,,mills1922,,1920,EthnographicAtlas_1967_p93, +97506,Ei20,EA074,?,EA074-NA,,,,,, +97507,Ei3,EA074,Children,EA074-5,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +97508,Ei4,EA074,Patrilineal by sons,EA074-7,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +97509,Ei5,EA074,Patrilineal by sons,EA074-7,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +97510,Ei6,EA074,Patrilineal by sons,EA074-7,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +97511,Ei7,EA074,Children,EA074-5,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +97512,Ei8,EA074,Matrilineal by heirs,EA074-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +97513,Ei9,EA074,Patrilineal by sons,EA074-7,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p93, +97514,Ej1,EA074,No inher. of real property,EA074-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +97515,Ej10,EA074,?,EA074-NA,Matrilineal,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +97516,Ej11,EA074,Matrilineal by heirs,EA074-3,Mainly from mother to youngest daughter,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +97517,Ej12,EA074,?,EA074-NA,,,,,, +97518,Ej13,EA074,Patrilineal by sons,EA074-7,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +97519,Ej14,EA074,No inher. of real property,EA074-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97520,Ej15,EA074,?,EA074-NA,,,,,, +97521,Ej16,EA074,Matrilineal by heirs,EA074-3,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +97522,Ej2,EA074,?,EA074-NA,,,,,, +97523,Ej3,EA074,No inher. of real property,EA074-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +97524,Ej4,EA074,Children,EA074-5,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +97525,Ej5,EA074,Patrilineal by sons,EA074-7,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +97526,Ej6,EA074,?,EA074-NA,,,,,, +97527,Ej7,EA074,Patrilineal by sons,EA074-7,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +97528,Ej8,EA074,Patrilineal by sons,EA074-7,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +97529,Ej9,EA074,Children,EA074-5,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +97530,Ia1,EA074,Patrilineal by sons,EA074-7,"But Li reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +97531,Ia10,EA074,Patrilineal by sons,EA074-7,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +97532,Ia11,EA074,?,EA074-NA,,,,,, +97533,Ia12,EA074,Children,EA074-5,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +97534,Ia13,EA074,?,EA074-NA,,,,,, +97535,Ia14,EA074,Patrilineal by sons,EA074-7,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +97536,Ia15,EA074,?,EA074-NA,,,,,, +97537,Ia16,EA074,Children,EA074-5,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +97538,Ia17,EA074,?,EA074-NA,,,,,, +97539,Ia18,EA074,?,EA074-NA,,,,,, +97540,Ia2,EA074,Children,EA074-5,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +97541,Ia3,EA074,Children,EA074-5,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +97542,Ia4,EA074,No inher. of real property,EA074-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +97543,Ia5,EA074,No inher. of real property,EA074-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +97544,Ia6,EA074,Children,EA074-5,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97545,Ia7,EA074,Children,EA074-5,,fox1954,,1950,EthnographicAtlas_1967_p93, +97546,Ia8,EA074,Children,EA074-5,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +97547,Ia9,EA074,Matrilineal by sister's sons,EA074-2,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +97548,Ib1,EA074,Children,EA074-5,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97549,Ib2,EA074,Children,EA074-5,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97550,Ib3,EA074,Patrilineal by sons,EA074-7,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +97551,Ib4,EA074,Patrilineal by sons,EA074-7,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +97552,Ib5,EA074,Children,EA074-5,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +97553,Ib6,EA074,No inher. of real property,EA074-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +97554,Ib7,EA074,Matrilineal by heirs,EA074-3,Taro land is inherited from Mo to Da,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +97555,Ib8,EA074,?,EA074-NA,,,,,, +97556,Ib9,EA074,?,EA074-NA,,,,,, +97557,Ic1,EA074,?,EA074-NA,,,,,, +97558,Ic10,EA074,"Children, less for daughters",EA074-4,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +97559,Ic11,EA074,Patrilineal by sons,EA074-7,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97560,Ic12,EA074,?,EA074-NA,,,,,, +97561,Ic13,EA074,?,EA074-NA,,,,,, +97562,Ic2,EA074,?,EA074-NA,,,,,, +97563,Ic3,EA074,No inher. of real property,EA074-1,"Inheritance by widows, then daughters",vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +97564,Ic4,EA074,?,EA074-NA,,,,,, +97565,Ic5,EA074,Children,EA074-5,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +97566,Ic6,EA074,Patrilineal by sons,EA074-7,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +97567,Ic7,EA074,Patrilineal by sons,EA074-7,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +97568,Ic8,EA074,Patrilineal by sons,EA074-7,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +97569,Ic9,EA074,Patrilineal by sons,EA074-7,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +97570,Id1,EA074,No inher. of real property,EA074-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +97571,Id10,EA074,No inher. of real property,EA074-1,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +97572,Id11,EA074,No inher. of real property,EA074-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +97573,Id12,EA074,?,EA074-NA,,,,,, +97574,Id13,EA074,No inher. of real property,EA074-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +97575,Id2,EA074,No inher. of real property,EA074-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +97576,Id3,EA074,No inher. of real property,EA074-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +97577,Id4,EA074,No inher. of real property,EA074-1,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p97, +97578,Id5,EA074,No inher. of real property,EA074-1,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p97, +97579,Id6,EA074,No inher. of real property,EA074-1,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p97, +97580,Id7,EA074,?,EA074-NA,,,,,, +97581,Id8,EA074,No inher. of real property,EA074-1,,roth1890,,1830,EthnographicAtlas_1967_p97, +97582,Id9,EA074,No inher. of real property,EA074-1,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p97, +97583,Ie1,EA074,?,EA074-NA,,,,,, +97584,Ie10,EA074,"Children, less for daughters",EA074-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +97585,Ie11,EA074,Patrilineal by sons,EA074-7,,bowers1964,,1950,EthnographicAtlas_1967_p97, +97586,Ie12,EA074,Patrilineal by sons,EA074-7,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97587,Ie13,EA074,?,EA074-NA,,,,,, +97588,Ie14,EA074,?,EA074-NA,,,,,, +97589,Ie15,EA074,?,EA074-NA,,,,,, +97590,Ie16,EA074,Patrilineal by sons,EA074-7,,williams194041,,1940,EthnographicAtlas_1967_p97, +97591,Ie17,EA074,Patrilineal by sons,EA074-7,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +97592,Ie18,EA074,Patrilineal by sons,EA074-7,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +97593,Ie19,EA074,?,EA074-NA,,,,,, +97594,Ie2,EA074,Patrilineal by sons,EA074-7,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +97595,Ie20,EA074,Patrilineal by sons,EA074-7,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +97596,Ie21,EA074,Patrilineal by sons,EA074-7,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +97597,Ie22,EA074,Patrilineal by sons,EA074-7,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +97598,Ie23,EA074,Patrilineal by sons,EA074-7,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +97599,Ie24,EA074,Children,EA074-5,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +97600,Ie25,EA074,Patrilineal by sons,EA074-7,,williamson1912,,1920,EthnographicAtlas_1967_p97, +97601,Ie26,EA074,Patrilineal by sons,EA074-7,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +97602,Ie27,EA074,No inher. of real property,EA074-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +97603,Ie28,EA074,Matrilineal by sister's sons,EA074-2,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +97604,Ie29,EA074,Patrilineal by sons,EA074-7,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97605,Ie3,EA074,Patrilineal by sons,EA074-7,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97606,Ie30,EA074,?,EA074-NA,,,,,, +97607,Ie31,EA074,Patrilineal by sons,EA074-7,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +97608,Ie32,EA074,?,EA074-NA,,,,,, +97609,Ie33,EA074,?,EA074-NA,,,,,, +97610,Ie34,EA074,?,EA074-NA,,,,,, +97611,Ie35,EA074,?,EA074-NA,,,,,, +97612,Ie36,EA074,?,EA074-NA,,,,,, +97613,Ie37,EA074,?,EA074-NA,,,,,, +97614,Ie38,EA074,Children,EA074-5,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +97615,Ie39,EA074,?,EA074-NA,,,,,, +97616,Ie4,EA074,Patrilineal by sons,EA074-7,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97617,Ie5,EA074,No inher. of real property,EA074-1,,williams1936,,1930,EthnographicAtlas_1967_p97, +97618,Ie6,EA074,?,EA074-NA,,,,,, +97619,Ie7,EA074,Patrilineal by sons,EA074-7,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +97620,Ie8,EA074,Patrilineal by sons,EA074-7,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +97621,Ie9,EA074,?,EA074-NA,,,,,, +97622,If1,EA074,Matrilineal by heirs,EA074-3,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97623,If10,EA074,?,EA074-NA,,,,,, +97624,If11,EA074,?,EA074-NA,,,,,, +97625,If12,EA074,?,EA074-NA,,,,,, +97626,If13,EA074,?,EA074-NA,,,,,, +97627,If14,EA074,"Children, less for daughters",EA074-4,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +97628,If15,EA074,?,EA074-NA,,,,,, +97629,If16,EA074,?,EA074-NA,Predominantly matrilineal,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +97630,If17,EA074,Matrilineal by heirs,EA074-3,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +97631,If2,EA074,Patrilineal by sons,EA074-7,But provisional land rights revert to the matrilineage of the deceased,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +97632,If3,EA074,Matrilineal by heirs,EA074-3,"Mixed (A man may transmit certain land rights to a son, but others remain within his matrilineage)",spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +97633,If4,EA074,?,EA074-NA,Matrilineal but without information of the preferred heirs,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +97634,If5,EA074,Matrilineal by heirs,EA074-3,"But Bascom reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"") in most districts",bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +97635,If6,EA074,Matrilineal by heirs,EA074-3,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +97636,If7,EA074,"Children, less for daughters",EA074-4,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +97637,If8,EA074,Children,EA074-5,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +97638,If9,EA074,?,EA074-NA,Basically matrilineal,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +97639,Ig1,EA074,Matrilineal by heirs,EA074-3,Matrilineal within lineage,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +97640,Ig10,EA074,?,EA074-NA,,,,,, +97641,Ig11,EA074,?,EA074-NA,,,,,, +97642,Ig12,EA074,Patrilineal by sons,EA074-7,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +97643,Ig13,EA074,Matrilineal by sister's sons,EA074-2,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +97644,Ig14,EA074,Matrilineal by sister's sons,EA074-2,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +97645,Ig15,EA074,?,EA074-NA,,,,,, +97646,Ig16,EA074,?,EA074-NA,,,,,, +97647,Ig17,EA074,?,EA074-NA,,,,,, +97648,Ig18,EA074,?,EA074-NA,,,,,, +97649,Ig19,EA074,?,EA074-NA,,,,,, +97650,Ig2,EA074,Matrilineal by sister's sons,EA074-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +97651,Ig20,EA074,No inher. of real property,EA074-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +97652,Ig21,EA074,?,EA074-NA,,,,,, +97653,Ig3,EA074,?,EA074-NA,"A man may leave his property to his sons, his sister's sons, or both",blackwood1935,,1930,EthnographicAtlas_1967_p101, +97654,Ig4,EA074,?,EA074-NA,,,,,, +97655,Ig5,EA074,Matrilineal by sister's sons,EA074-2,"Matrilineal, but the exact distribution is not reported",fortune1932b,,1920,EthnographicAtlas_1967_p101, +97656,Ig6,EA074,Children,EA074-5,,ivens1927,,1900,EthnographicAtlas_1967_p101, +97657,Ig7,EA074,?,EA074-NA,,,,,, +97658,Ig8,EA074,?,EA074-NA,,,,,, +97659,Ig9,EA074,No inher. of real property,EA074-1,Most of a deceased man's property is plundered by the agnatic kinsmen of his MoBr,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +97660,Ih1,EA074,Matrilineal by sister's sons,EA074-2,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +97661,Ih10,EA074,Patrilineal by sons,EA074-7,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97662,Ih11,EA074,?,EA074-NA,,,,,, +97663,Ih12,EA074,?,EA074-NA,,,,,, +97664,Ih13,EA074,?,EA074-NA,,,,,, +97665,Ih14,EA074,?,EA074-NA,,,,,, +97666,Ih2,EA074,?,EA074-NA,,,,,, +97667,Ih3,EA074,No inher. of real property,EA074-1,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +97668,Ih4,EA074,?,EA074-NA,,,,,, +97669,Ih5,EA074,?,EA074-NA,,,,,, +97670,Ih6,EA074,?,EA074-NA,,,,,, +97671,Ih7,EA074,Patrilineal by sons,EA074-7,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +97672,Ih8,EA074,?,EA074-NA,Mixed but mainly patrilineal,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +97673,Ih9,EA074,?,EA074-NA,,,,,, +97674,Ii1,EA074,?,EA074-NA,,,,,, +97675,Ii10,EA074,Patrilineal by sons,EA074-7,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +97676,Ii12,EA074,Patrilineal by heirs,EA074-6,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97677,Ii13,EA074,?,EA074-NA,Land is collectively owned by ramages,burrows1937,,1830,EthnographicAtlas_1967_p101, +97678,Ii14,EA074,?,EA074-NA,,,,,, +97679,Ii2,EA074,Patrilineal by sons,EA074-7,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +97680,Ii3,EA074,?,EA074-NA,,,,,, +97681,Ii4,EA074,Patrilineal by heirs,EA074-6,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +97682,Ii5,EA074,?,EA074-NA,"Taro plots descend from Mo to Da, but other land is owned collectively by ramages",hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +97683,Ii6,EA074,?,EA074-NA,Land is collectively owned by ramages,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +97684,Ii7,EA074,Children,EA074-5,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +97685,Ii8,EA074,?,EA074-NA,"Land is owned by ramages; inheritance, though basically bilateral, is predominantly patrilineal",burrows1936,,1840,EthnographicAtlas_1967_p101, +97686,Ii9,EA074,?,EA074-NA,,,,,, +97687,Ij1,EA074,?,EA074-NA,,,,,, +97688,Ij10,EA074,Patrilineal by sons,EA074-7,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +97689,Ij2,EA074,Patrilineal by sons,EA074-7,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +97690,Ij3,EA074,"Children, less for daughters",EA074-4,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +97691,Ij4,EA074,?,EA074-NA,,,,,, +97692,Ij5,EA074,Children,EA074-5,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +97693,Ij6,EA074,Children,EA074-5,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +97694,Ij7,EA074,Patrilineal by sons,EA074-7,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +97695,Ij8,EA074,?,EA074-NA,,,,,, +97696,Ij9,EA074,?,EA074-NA,,,,,, +97697,Na1,EA074,No inher. of real property,EA074-1,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +97698,Na10,EA074,Children,EA074-5,"Houses were owned by females and inherited by the eldest child who, if a male, gave the house to his wife",birketsmith1953,,1930,EthnographicAtlas_1967_p105, +97699,Na11,EA074,?,EA074-NA,,,,,, +97700,Na12,EA074,No inher. of real property,EA074-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +97701,Na13,EA074,No inher. of real property,EA074-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +97702,Na14,EA074,No inher. of real property,EA074-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +97703,Na15,EA074,?,EA074-NA,,,,,, +97704,Na16,EA074,No inher. of real property,EA074-1,,osgood1931,,1860,EthnographicAtlas_1967_p105, +97705,Na17,EA074,No inher. of real property,EA074-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97706,Na19,EA074,No inher. of real property,EA074-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +97707,Na2,EA074,No inher. of real property,EA074-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +97708,Na20,EA074,Patrilineal by sons,EA074-7,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +97709,Na21,EA074,No inher. of real property,EA074-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +97710,Na22,EA074,No inher. of real property,EA074-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +97711,Na23,EA074,No inher. of real property,EA074-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +97712,Na24,EA074,No inher. of real property,EA074-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +97713,Na25,EA074,?,EA074-NA,,,,,, +97714,Na26,EA074,No inher. of real property,EA074-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +97715,Na27,EA074,?,EA074-NA,,,,,, +97716,Na28,EA074,No inher. of real property,EA074-1,,jenness1937,,1880,EthnographicAtlas_1967_p105, +97717,Na29,EA074,No inher. of real property,EA074-1,,goddard1916,,1850,EthnographicAtlas_1967_p105, +97718,Na3,EA074,No inher. of real property,EA074-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +97719,Na30,EA074,No inher. of real property,EA074-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +97720,Na31,EA074,?,EA074-NA,,,,,, +97721,Na32,EA074,Patrilineal by sons,EA074-7,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +97722,Na33,EA074,?,EA074-NA,,,,,, +97723,Na34,EA074,Patrilineal by sons,EA074-7,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +97724,Na35,EA074,?,EA074-NA,,,,,, +97725,Na36,EA074,?,EA074-NA,,,,,, +97726,Na37,EA074,"Children, less for daughters",EA074-4,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +97727,Na38,EA074,?,EA074-NA,,,,,, +97728,Na39,EA074,No inher. of real property,EA074-1,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +97729,Na4,EA074,?,EA074-NA,Trap lines are inherited by DaHu,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +97730,Na40,EA074,?,EA074-NA,,,,,, +97731,Na41,EA074,?,EA074-NA,,,,,, +97732,Na42,EA074,?,EA074-NA,,,,,, +97733,Na43,EA074,?,EA074-NA,,,,,, +97734,Na44,EA074,?,EA074-NA,,,,,, +97735,Na45,EA074,?,EA074-NA,,,,,, +97736,Na5,EA074,No inher. of real property,EA074-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +97737,Na6,EA074,No inher. of real property,EA074-1,,lantis1946,,1930,EthnographicAtlas_1967_p105, +97738,Na7,EA074,Patrilineal by sons,EA074-7,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +97739,Na8,EA074,No inher. of real property,EA074-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +97740,Na9,EA074,No inher. of real property,EA074-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97741,Nb1,EA074,Matrilineal by heirs,EA074-3,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +97742,Nb10,EA074,?,EA074-NA,,,,,, +97743,Nb11,EA074,?,EA074-NA,,,,,, +97744,Nb12,EA074,?,EA074-NA,,,,,, +97745,Nb13,EA074,?,EA074-NA,,,,,, +97746,Nb14,EA074,?,EA074-NA,,,,,, +97747,Nb15,EA074,?,EA074-NA,,,,,, +97748,Nb16,EA074,Patrilineal by sons,EA074-7,With reference to inheritance of dwellings,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +97749,Nb17,EA074,?,EA074-NA,,,,,, +97750,Nb18,EA074,?,EA074-NA,,,,,, +97751,Nb19,EA074,?,EA074-NA,,,,,, +97752,Nb2,EA074,No inher. of real property,EA074-1,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +97753,Nb20,EA074,?,EA074-NA,,,,,, +97754,Nb21,EA074,No inher. of real property,EA074-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +97755,Nb22,EA074,?,EA074-NA,Matrilineal inheritance with collective ownership,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +97756,Nb23,EA074,?,EA074-NA,,,,,, +97757,Nb24,EA074,No inher. of real property,EA074-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +97758,Nb25,EA074,No inher. of real property,EA074-1,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +97759,Nb26,EA074,?,EA074-NA,,,,,, +97760,Nb27,EA074,No inher. of real property,EA074-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +97761,Nb28,EA074,?,EA074-NA,,,,,, +97762,Nb29,EA074,?,EA074-NA,,,,,, +97763,Nb3,EA074,?,EA074-NA,,,,,, +97764,Nb30,EA074,?,EA074-NA,,,,,, +97765,Nb31,EA074,?,EA074-NA,,,,,, +97766,Nb32,EA074,Patrilineal by heirs,EA074-6,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +97767,Nb33,EA074,No inher. of real property,EA074-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +97768,Nb34,EA074,?,EA074-NA,,,,,, +97769,Nb35,EA074,?,EA074-NA,,,,,, +97770,Nb36,EA074,?,EA074-NA,,,,,, +97771,Nb37,EA074,No inher. of real property,EA074-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +97772,Nb38,EA074,?,EA074-NA,,,,,, +97773,Nb39,EA074,No inher. of real property,EA074-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +97774,Nb4,EA074,?,EA074-NA,,,,,, +97775,Nb5,EA074,?,EA074-NA,,,,,, +97776,Nb6,EA074,No inher. of real property,EA074-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +97777,Nb7,EA074,Matrilineal by heirs,EA074-3,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +97778,Nb8,EA074,No inher. of real property,EA074-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +97779,Nb9,EA074,No inher. of real property,EA074-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +97780,Nc1,EA074,?,EA074-NA,,,,,, +97781,Nc10,EA074,?,EA074-NA,,,,,, +97782,Nc11,EA074,Patrilineal by sons,EA074-7,"Entry pertains to northern Yana; 'no inheritance of real property' (code ""1"") for central Yana",gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +97783,Nc12,EA074,No inher. of real property,EA074-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +97784,Nc13,EA074,?,EA074-NA,,,,,, +97785,Nc14,EA074,No inher. of real property,EA074-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +97786,Nc15,EA074,No inher. of real property,EA074-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +97787,Nc16,EA074,?,EA074-NA,,,,,, +97788,Nc17,EA074,No inher. of real property,EA074-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +97789,Nc18,EA074,No inher. of real property,EA074-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +97790,Nc19,EA074,No inher. of real property,EA074-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +97791,Nc2,EA074,No inher. of real property,EA074-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +97792,Nc20,EA074,No inher. of real property,EA074-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +97793,Nc21,EA074,No inher. of real property,EA074-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +97794,Nc22,EA074,?,EA074-NA,,,,,, +97795,Nc23,EA074,No inher. of real property,EA074-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +97796,Nc24,EA074,No inher. of real property,EA074-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +97797,Nc25,EA074,?,EA074-NA,,,,,, +97798,Nc26,EA074,No inher. of real property,EA074-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +97799,Nc27,EA074,?,EA074-NA,,,,,, +97800,Nc28,EA074,?,EA074-NA,,,,,, +97801,Nc29,EA074,?,EA074-NA,,,,,, +97802,Nc3,EA074,No inher. of real property,EA074-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +97803,Nc30,EA074,?,EA074-NA,,,,,, +97804,Nc31,EA074,?,EA074-NA,,,,,, +97805,Nc32,EA074,?,EA074-NA,,,,,, +97806,Nc33,EA074,?,EA074-NA,,,,,, +97807,Nc34,EA074,?,EA074-NA,,,,,, +97808,Nc4,EA074,Patrilineal by sons,EA074-7,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +97809,Nc5,EA074,No inher. of real property,EA074-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +97810,Nc6,EA074,No inher. of real property,EA074-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +97811,Nc7,EA074,No inher. of real property,EA074-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +97812,Nc8,EA074,No inher. of real property,EA074-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +97813,Nc9,EA074,No inher. of real property,EA074-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +97814,Nd1,EA074,No inher. of real property,EA074-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +97815,Nd10,EA074,?,EA074-NA,,,,,, +97816,Nd11,EA074,No inher. of real property,EA074-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +97817,Nd12,EA074,No inher. of real property,EA074-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +97818,Nd13,EA074,?,EA074-NA,,,,,, +97819,Nd14,EA074,No inher. of real property,EA074-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +97820,Nd15,EA074,No inher. of real property,EA074-1,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +97821,Nd16,EA074,?,EA074-NA,,,,,, +97822,Nd17,EA074,?,EA074-NA,,,,,, +97823,Nd18,EA074,?,EA074-NA,,,,,, +97824,Nd19,EA074,?,EA074-NA,,,,,, +97825,Nd2,EA074,No inher. of real property,EA074-1,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +97826,Nd20,EA074,No inher. of real property,EA074-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +97827,Nd21,EA074,?,EA074-NA,,,,,, +97828,Nd22,EA074,No inher. of real property,EA074-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +97829,Nd23,EA074,?,EA074-NA,,,,,, +97830,Nd24,EA074,No inher. of real property,EA074-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +97831,Nd25,EA074,?,EA074-NA,,,,,, +97832,Nd26,EA074,No inher. of real property,EA074-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +97833,Nd27,EA074,No inher. of real property,EA074-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +97834,Nd28,EA074,?,EA074-NA,,,,,, +97835,Nd29,EA074,No inher. of real property,EA074-1,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +97836,Nd3,EA074,Patrilineal by sons,EA074-7,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +97837,Nd30,EA074,No inher. of real property,EA074-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +97838,Nd31,EA074,?,EA074-NA,,,,,, +97839,Nd32,EA074,No inher. of real property,EA074-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +97840,Nd33,EA074,No inher. of real property,EA074-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +97841,Nd34,EA074,?,EA074-NA,"Eagle nests were individually owned, but the mode of inheritance is not reported",steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +97842,Nd35,EA074,?,EA074-NA,,,,,, +97843,Nd36,EA074,?,EA074-NA,,,,,, +97844,Nd37,EA074,?,EA074-NA,,,,,, +97845,Nd38,EA074,?,EA074-NA,,,,,, +97846,Nd39,EA074,?,EA074-NA,"""Farmed plots were inherited by a man's wife or children""",steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +97847,Nd4,EA074,No inher. of real property,EA074-1,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +97848,Nd40,EA074,No inher. of real property,EA074-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +97849,Nd41,EA074,?,EA074-NA,,,,,, +97850,Nd42,EA074,?,EA074-NA,,,,,, +97851,Nd43,EA074,No inher. of real property,EA074-1,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +97852,Nd44,EA074,?,EA074-NA,,,,,, +97853,Nd45,EA074,No inher. of real property,EA074-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +97854,Nd46,EA074,No inher. of real property,EA074-1,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +97855,Nd47,EA074,No inher. of real property,EA074-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +97856,Nd48,EA074,No inher. of real property,EA074-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +97857,Nd49,EA074,No inher. of real property,EA074-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +97858,Nd5,EA074,No inher. of real property,EA074-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +97859,Nd50,EA074,?,EA074-NA,"Eagle nests were owned by men and inherited ""by a son""",kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +97860,Nd51,EA074,?,EA074-NA,,,,,, +97861,Nd52,EA074,Children,EA074-5,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +97862,Nd53,EA074,Patrilineal by sons,EA074-7,Springs and eagle nests were owned by males and inherited by the oldest son or nearest male relative,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +97863,Nd54,EA074,?,EA074-NA,,,,,, +97864,Nd55,EA074,Patrilineal by sons,EA074-7,Pine nut tracts were inherited by a man's sons,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +97865,Nd56,EA074,Children,EA074-5,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +97866,Nd57,EA074,No inher. of real property,EA074-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +97867,Nd58,EA074,No inher. of real property,EA074-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +97868,Nd59,EA074,No inher. of real property,EA074-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +97869,Nd6,EA074,No inher. of real property,EA074-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +97870,Nd60,EA074,No inher. of real property,EA074-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +97871,Nd61,EA074,No inher. of real property,EA074-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +97872,Nd62,EA074,No inher. of real property,EA074-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +97873,Nd63,EA074,No inher. of real property,EA074-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +97874,Nd64,EA074,No inher. of real property,EA074-1,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +97875,Nd65,EA074,?,EA074-NA,,,,,, +97876,Nd66,EA074,No inher. of real property,EA074-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +97877,Nd67,EA074,No inher. of real property,EA074-1,"But eagle nests were ""transmitted from father to son""",gifford1936,,1870,EthnographicAtlas_1967_p113, +97878,Nd7,EA074,No inher. of real property,EA074-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +97879,Nd8,EA074,Patrilineal by sons,EA074-7,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +97880,Nd9,EA074,No inher. of real property,EA074-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +97881,Ne1,EA074,No inher. of real property,EA074-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +97882,Ne10,EA074,?,EA074-NA,Possibly from Mo to Da,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +97883,Ne11,EA074,No inher. of real property,EA074-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +97884,Ne12,EA074,No inher. of real property,EA074-1,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +97885,Ne13,EA074,No inher. of real property,EA074-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +97886,Ne14,EA074,No inher. of real property,EA074-1,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +97887,Ne15,EA074,?,EA074-NA,Possibly from Mo to Da,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +97888,Ne16,EA074,No inher. of real property,EA074-1,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +97889,Ne17,EA074,No inher. of real property,EA074-1,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +97890,Ne18,EA074,No inher. of real property,EA074-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +97891,Ne19,EA074,No inher. of real property,EA074-1,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +97892,Ne2,EA074,No inher. of real property,EA074-1,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +97893,Ne20,EA074,?,EA074-NA,,,,,, +97894,Ne21,EA074,?,EA074-NA,,,,,, +97895,Ne3,EA074,No inher. of real property,EA074-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +97896,Ne4,EA074,No inher. of real property,EA074-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +97897,Ne5,EA074,No inher. of real property,EA074-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +97898,Ne6,EA074,?,EA074-NA,Land was owned by women and inherited from Mo to Da,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +97899,Ne7,EA074,No inher. of real property,EA074-1,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +97900,Ne8,EA074,No inher. of real property,EA074-1,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +97901,Ne9,EA074,No inher. of real property,EA074-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +97902,Nf10,EA074,?,EA074-NA,,,,,, +97903,Nf11,EA074,?,EA074-NA,,,,,, +97904,Nf12,EA074,?,EA074-NA,,,,,, +97905,Nf13,EA074,No inher. of real property,EA074-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97906,Nf14,EA074,?,EA074-NA,,,,,, +97907,Nf15,EA074,?,EA074-NA,,,,,, +97908,Nf2,EA074,?,EA074-NA,,,,,, +97909,Nf3,EA074,Patrilineal by sons,EA074-7,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +97910,Nf4,EA074,?,EA074-NA,,,,,, +97911,Nf5,EA074,?,EA074-NA,,,,,, +97912,Nf6,EA074,No inher. of real property,EA074-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +97913,Nf7,EA074,?,EA074-NA,,,,,, +97914,Nf8,EA074,?,EA074-NA,,,,,, +97915,Nf9,EA074,?,EA074-NA,,,,,, +97916,Ng1,EA074,?,EA074-NA,,,,,, +97917,Ng10,EA074,?,EA074-NA,,,,,, +97918,Ng11,EA074,?,EA074-NA,,,,,, +97919,Ng12,EA074,?,EA074-NA,,,,,, +97920,Ng13,EA074,?,EA074-NA,,,,,, +97921,Ng14,EA074,?,EA074-NA,,,,,, +97922,Ng15,EA074,?,EA074-NA,,,,,, +97923,Ng2,EA074,?,EA074-NA,,,,,, +97924,Ng3,EA074,?,EA074-NA,,,,,, +97925,Ng4,EA074,Patrilineal by sons,EA074-7,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +97926,Ng5,EA074,?,EA074-NA,,,,,, +97927,Ng6,EA074,Matrilineal by heirs,EA074-3,Land was probably owned collectively by matrilineages,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +97928,Ng7,EA074,?,EA074-NA,,,,,, +97929,Ng8,EA074,Matrilineal by sister's sons,EA074-2,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +97930,Ng9,EA074,Children,EA074-5,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +97931,Nh1,EA074,No inher. of real property,EA074-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +97932,Nh10,EA074,Children,EA074-5,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +97933,Nh11,EA074,Children,EA074-5,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +97934,Nh12,EA074,Children,EA074-5,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +97935,Nh13,EA074,Children,EA074-5,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +97936,Nh14,EA074,?,EA074-NA,Inheritance is mixed,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +97937,Nh15,EA074,?,EA074-NA,,,,,, +97938,Nh16,EA074,Children,EA074-5,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97939,Nh17,EA074,Children,EA074-5,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +97940,Nh18,EA074,Matrilineal by heirs,EA074-3,Matrilineal inheritance within the lineage,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97941,Nh19,EA074,No inher. of real property,EA074-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +97942,Nh2,EA074,Matrilineal by heirs,EA074-3,,dozier1954,,1950,EthnographicAtlas_1967_p117, +97943,Nh20,EA074,No inher. of real property,EA074-1,,gifford1931,,1860,EthnographicAtlas_1967_p117, +97944,Nh21,EA074,?,EA074-NA,,,,,, +97945,Nh22,EA074,No inher. of real property,EA074-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +97946,Nh23,EA074,No inher. of real property,EA074-1,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +97947,Nh24,EA074,No inher. of real property,EA074-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +97948,Nh25,EA074,Patrilineal by sons,EA074-7,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +97949,Nh26,EA074,?,EA074-NA,,,,,, +97950,Nh27,EA074,?,EA074-NA,,,,,, +97951,Nh3,EA074,?,EA074-NA,,,,,, +97952,Nh4,EA074,Matrilineal by heirs,EA074-3,A man's land is inherited by his daughters,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +97953,Nh5,EA074,Children,EA074-5,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +97954,Nh6,EA074,?,EA074-NA,,,,,, +97955,Nh7,EA074,?,EA074-NA,,,,,, +97956,Nh8,EA074,?,EA074-NA,,,,,, +97957,Nh9,EA074,?,EA074-NA,,,,,, +97958,Ni1,EA074,Children,EA074-5,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +97959,Ni2,EA074,Patrilineal by sons,EA074-7,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +97960,Ni3,EA074,Patrilineal by heirs,EA074-6,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +97961,Ni4,EA074,No inher. of real property,EA074-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +97962,Ni5,EA074,No inher. of real property,EA074-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +97963,Ni6,EA074,Patrilineal by sons,EA074-7,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +97964,Ni7,EA074,?,EA074-NA,,,,,, +97965,Ni8,EA074,?,EA074-NA,,,,,, +97966,Ni9,EA074,?,EA074-NA,,,,,, +97967,Nj1,EA074,Patrilineal by sons,EA074-7,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97968,Nj10,EA074,Children,EA074-5,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97969,Nj11,EA074,?,EA074-NA,,,,,, +97970,Nj12,EA074,?,EA074-NA,,,,,, +97971,Nj13,EA074,?,EA074-NA,,,,,, +97972,Nj14,EA074,?,EA074-NA,,,,,, +97973,Nj2,EA074,Patrilineal by sons,EA074-7,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +97974,Nj3,EA074,Patrilineal by sons,EA074-7,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +97975,Nj4,EA074,?,EA074-NA,,,,,, +97976,Nj5,EA074,?,EA074-NA,,,,,, +97977,Nj6,EA074,?,EA074-NA,,,,,, +97978,Nj7,EA074,Children,EA074-5,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +97979,Nj8,EA074,Patrilineal by sons,EA074-7,,foster1948,,1500,EthnographicAtlas_1967_p121, +97980,Nj9,EA074,Patrilineal by sons,EA074-7,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +97981,Sa1,EA074,?,EA074-NA,,,,,, +97982,Sa10,EA074,?,EA074-NA,,,,,, +97983,Sa11,EA074,?,EA074-NA,,,,,, +97984,Sa12,EA074,?,EA074-NA,,,,,, +97985,Sa13,EA074,Patrilineal by sons,EA074-7,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +97986,Sa14,EA074,?,EA074-NA,,,,,, +97987,Sa15,EA074,?,EA074-NA,,,,,, +97988,Sa16,EA074,?,EA074-NA,,,,,, +97989,Sa17,EA074,?,EA074-NA,,,,,, +97990,Sa2,EA074,?,EA074-NA,,,,,, +97991,Sa3,EA074,Children,EA074-5,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +97992,Sa4,EA074,Patrilineal by sons,EA074-7,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +97993,Sa5,EA074,No inher. of real property,EA074-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +97994,Sa6,EA074,Patrilineal by heirs,EA074-6,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +97995,Sa7,EA074,?,EA074-NA,,,,,, +97996,Sa8,EA074,Patrilineal by sons,EA074-7,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +97997,Sa9,EA074,?,EA074-NA,,,,,, +97998,Sb1,EA074,?,EA074-NA,Probably matrilineal,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +97999,Sb2,EA074,Patrilineal by sons,EA074-7,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +98000,Sb3,EA074,?,EA074-NA,,,,,, +98001,Sb4,EA074,No inher. of real property,EA074-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +98002,Sb5,EA074,?,EA074-NA,,,,,, +98003,Sb6,EA074,?,EA074-NA,,,,,, +98004,Sb7,EA074,?,EA074-NA,,,,,, +98005,Sb8,EA074,?,EA074-NA,,,,,, +98006,Sb9,EA074,Children,EA074-5,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +98007,Sc1,EA074,No inher. of real property,EA074-1,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +98008,Sc10,EA074,?,EA074-NA,,,,,, +98009,Sc11,EA074,?,EA074-NA,,,,,, +98010,Sc12,EA074,?,EA074-NA,,,,,, +98011,Sc13,EA074,?,EA074-NA,,,,,, +98012,Sc14,EA074,?,EA074-NA,,,,,, +98013,Sc15,EA074,?,EA074-NA,,,,,, +98014,Sc16,EA074,?,EA074-NA,,,,,, +98015,Sc17,EA074,?,EA074-NA,,,,,, +98016,Sc18,EA074,No inher. of real property,EA074-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +98017,Sc2,EA074,Children,EA074-5,,leedsnd,,1950,EthnographicAtlas_1967_p121, +98018,Sc3,EA074,?,EA074-NA,,,,,, +98019,Sc4,EA074,No inher. of real property,EA074-1,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +98020,Sc5,EA074,?,EA074-NA,,,,,, +98021,Sc6,EA074,?,EA074-NA,,,,,, +98022,Sc7,EA074,?,EA074-NA,,,,,, +98023,Sc8,EA074,?,EA074-NA,,,,,, +98024,Sc9,EA074,?,EA074-NA,,,,,, +98025,Sd1,EA074,No inher. of real property,EA074-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98026,Sd2,EA074,?,EA074-NA,,,,,, +98027,Sd3,EA074,?,EA074-NA,,,,,, +98028,Sd4,EA074,?,EA074-NA,,,,,, +98029,Sd5,EA074,?,EA074-NA,,,,,, +98030,Sd6,EA074,?,EA074-NA,,,,,, +98031,Sd7,EA074,?,EA074-NA,,,,,, +98032,Sd8,EA074,?,EA074-NA,,,,,, +98033,Sd9,EA074,No inher. of real property,EA074-1,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98034,Se1,EA074,No inher. of real property,EA074-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +98035,Se10,EA074,?,EA074-NA,,,,,, +98036,Se11,EA074,?,EA074-NA,,,,,, +98037,Se12,EA074,?,EA074-NA,,,,,, +98038,Se2,EA074,No inher. of real property,EA074-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +98039,Se3,EA074,No inher. of real property,EA074-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +98040,Se4,EA074,No inher. of real property,EA074-1,,fejos1943,,1940,EthnographicAtlas_1967_p121, +98041,Se5,EA074,No inher. of real property,EA074-1,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +98042,Se6,EA074,?,EA074-NA,,,,,, +98043,Se7,EA074,?,EA074-NA,,,,,, +98044,Se8,EA074,No inher. of real property,EA074-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +98045,Se9,EA074,No inher. of real property,EA074-1,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +98046,Sf1,EA074,No inher. of real property,EA074-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +98047,Sf2,EA074,Patrilineal by sons,EA074-7,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +98048,Sf3,EA074,?,EA074-NA,,,,,, +98049,Sf4,EA074,?,EA074-NA,,,,,, +98050,Sf5,EA074,No inher. of real property,EA074-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +98051,Sf6,EA074,Patrilineal by sons,EA074-7,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +98052,Sf7,EA074,?,EA074-NA,,,,,, +98053,Sf8,EA074,?,EA074-NA,,,,,, +98054,Sf9,EA074,?,EA074-NA,,,,,, +98055,Sg1,EA074,No inher. of real property,EA074-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +98056,Sg2,EA074,Patrilineal by sons,EA074-7,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98057,Sg3,EA074,No inher. of real property,EA074-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +98058,Sg4,EA074,No inher. of real property,EA074-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +98059,Sg5,EA074,No inher. of real property,EA074-1,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98060,Sh1,EA074,No inher. of real property,EA074-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +98061,Sh2,EA074,?,EA074-NA,,,,,, +98062,Sh3,EA074,No inher. of real property,EA074-1,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +98063,Sh4,EA074,?,EA074-NA,,,,,, +98064,Sh5,EA074,No inher. of real property,EA074-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +98065,Sh6,EA074,?,EA074-NA,,,,,, +98066,Sh7,EA074,Patrilineal by sons,EA074-7,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +98067,Sh8,EA074,No inher. of real property,EA074-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +98068,Sh9,EA074,No inher. of real property,EA074-1,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +98069,Si1,EA074,?,EA074-NA,,,,,, +98070,Si10,EA074,?,EA074-NA,,,,,, +98071,Si2,EA074,No inher. of real property,EA074-1,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +98072,Si3,EA074,?,EA074-NA,,,,,, +98073,Si4,EA074,No inher. of real property,EA074-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +98074,Si5,EA074,No inher. of real property,EA074-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +98075,Si6,EA074,?,EA074-NA,,,,,, +98076,Si7,EA074,?,EA074-NA,,,,,, +98077,Si8,EA074,?,EA074-NA,,,,,, +98078,Si9,EA074,?,EA074-NA,,,,,, +98079,Sj1,EA074,?,EA074-NA,,,,,, +98080,Sj10,EA074,?,EA074-NA,,,,,, +98081,Sj11,EA074,No inher. of real property,EA074-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +98082,Sj2,EA074,?,EA074-NA,,,,,, +98083,Sj3,EA074,No inher. of real property,EA074-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +98084,Sj4,EA074,No inher. of real property,EA074-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +98085,Sj5,EA074,No inher. of real property,EA074-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +98086,Sj6,EA074,No inher. of real property,EA074-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98087,Sj7,EA074,?,EA074-NA,,,,,, +98088,Sj8,EA074,?,EA074-NA,,,,,, +98089,Sj9,EA074,?,EA074-NA,,,,,, +98090,ch12,EA074,Patrilineal by sons,EA074-7,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +98091,ch13,EA074,Patrilineal by sons,EA074-7,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +98092,ch14,EA074,Patrilineal by sons,EA074-7,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +98093,ch15,EA074,Patrilineal by sons,EA074-7,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +98094,ch16,EA074,Patrilineal by sons,EA074-7,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +98095,ch17,EA074,Patrilineal by sons,EA074-7,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +98096,ch18,EA074,Patrilineal by sons,EA074-7,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +98097,ch19,EA074,Patrilineal by sons,EA074-7,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +98098,ch20,EA074,Patrilineal by sons,EA074-7,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +98099,ch21,EA074,Patrilineal by sons,EA074-7,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +98100,ch22,EA074,Patrilineal by sons,EA074-7,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +98101,ch23,EA074,Patrilineal by sons,EA074-7,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +98102,ch24,EA074,No inher. of real property,EA074-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +98103,ch25,EA074,Patrilineal by sons,EA074-7,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +98104,ch26,EA074,Patrilineal by sons,EA074-7,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +98105,ch27,EA074,Patrilineal by sons,EA074-7,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +98106,ch28,EA074,Patrilineal by sons,EA074-7,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +98107,ec12,EA074,No inher. of real property,EA074-1,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +98108,ec13,EA074,No inher. of real property,EA074-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +98109,ec14,EA074,No inher. of real property,EA074-1,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +98110,ec15,EA074,No inher. of real property,EA074-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +98111,ec16,EA074,No inher. of real property,EA074-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +98112,ec17,EA074,No inher. of real property,EA074-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +98113,ec18,EA074,No inher. of real property,EA074-1,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +98114,ec19,EA074,No inher. of real property,EA074-1,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +98115,ec20,EA074,No inher. of real property,EA074-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +98116,ec21,EA074,No inher. of real property,EA074-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +98117,Aa1,EA075,No inher. of real property,EA075-9,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +98118,Aa2,EA075,Primogeniture,EA075-4,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +98119,Aa3,EA075,No inher. of real property,EA075-9,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +98120,Aa4,EA075,No inher. of real property,EA075-9,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +98121,Aa5,EA075,No inher. of real property,EA075-9,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +98122,Aa6,EA075,?,EA075-NA,,,,,, +98123,Aa7,EA075,No inher. of real property,EA075-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +98124,Aa8,EA075,?,EA075-NA,,,,,, +98125,Aa9,EA075,No inher. of real property,EA075-9,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +98126,Ab1,EA075,No inher. of real property,EA075-9,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +98127,Ab10,EA075,Primogeniture,EA075-4,,hunter1936,,1936,EthnographicAtlas_1967_p65, +98128,Ab11,EA075,Primogeniture,EA075-4,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +98129,Ab12,EA075,Primogeniture,EA075-4,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +98130,Ab13,EA075,Primogeniture,EA075-4,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +98131,Ab14,EA075,?,EA075-NA,,,,,, +98132,Ab15,EA075,Primogeniture,EA075-4,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +98133,Ab16,EA075,?,EA075-NA,,,,,, +98134,Ab17,EA075,Equally distributed,EA075-1,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +98135,Ab18,EA075,Primogeniture,EA075-4,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +98136,Ab19,EA075,No inher. of real property,EA075-9,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +98137,Ab2,EA075,Primogeniture,EA075-4,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +98138,Ab20,EA075,?,EA075-NA,,,,,, +98139,Ab21a,EA075,Primogeniture,EA075-4,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +98140,Ab21b,EA075,?,EA075-NA,,,,,, +98141,Ab22,EA075,?,EA075-NA,,,,,, +98142,Ab3,EA075,Best qualified,EA075-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +98143,Ab4,EA075,No inher. of real property,EA075-9,,junod1927,,1920,EthnographicAtlas_1967_p65, +98144,Ab5,EA075,?,EA075-NA,Precise distribution unreported,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +98145,Ab6,EA075,No inher. of real property,EA075-9,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +98146,Ab7,EA075,Primogeniture,EA075-4,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +98147,Ab8,EA075,No inher. of real property,EA075-9,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +98148,Ab9,EA075,Primogeniture,EA075-4,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +98149,Ac1,EA075,No inher. of real property,EA075-9,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +98150,Ac10,EA075,?,EA075-NA,,,,,, +98151,Ac11,EA075,?,EA075-NA,,,,,, +98152,Ac12,EA075,Primogeniture,EA075-4,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +98153,Ac13,EA075,?,EA075-NA,,,,,, +98154,Ac14,EA075,Primogeniture,EA075-4,"Entry follows Mertens and Van Wing; Ihle and Van de Velde report 'matrilineal by sister's son(s)' (EA074 code ""2"") and 'primogeniture' (EA075 code ""4"")",brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +98155,Ac15,EA075,Primogeniture,EA075-4,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +98156,Ac16,EA075,?,EA075-NA,Inheritance is matrilineal,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +98157,Ac17,EA075,Primogeniture,EA075-4,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +98158,Ac18,EA075,?,EA075-NA,,,,,, +98159,Ac19,EA075,Primogeniture,EA075-4,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +98160,Ac2,EA075,?,EA075-NA,,,,,, +98161,Ac20,EA075,Primogeniture,EA075-4,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +98162,Ac21,EA075,Equally distributed,EA075-1,"Entries follows Decker; Torday reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +98163,Ac22,EA075,?,EA075-NA,,,,,, +98164,Ac23,EA075,?,EA075-NA,Presumably matrilineal,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +98165,Ac24,EA075,?,EA075-NA,"Probably 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4""), despite report that inheritance is patrilineal",baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +98166,Ac25,EA075,Primogeniture,EA075-4,All property escheats to the head of the matrilineage,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +98167,Ac26,EA075,?,EA075-NA,,,,,, +98168,Ac27,EA075,?,EA075-NA,,,,,, +98169,Ac28,EA075,Primogeniture,EA075-4,"Alternatively 'patrilineal by heirs' (EA074 code ""6"") and 'primogeniture' (EA075 code ""4"")",baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +98170,Ac29,EA075,Best qualified,EA075-2,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +98171,Ac3,EA075,Primogeniture,EA075-4,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +98172,Ac30,EA075,Best qualified,EA075-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +98173,Ac31,EA075,Primogeniture,EA075-4,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +98174,Ac32,EA075,Primogeniture,EA075-4,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +98175,Ac33,EA075,Primogeniture,EA075-4,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +98176,Ac34,EA075,Best qualified,EA075-2,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +98177,Ac35,EA075,Best qualified,EA075-2,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +98178,Ac36,EA075,Primogeniture,EA075-4,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +98179,Ac37,EA075,Best qualified,EA075-2,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +98180,Ac38,EA075,Primogeniture,EA075-4,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +98181,Ac39,EA075,?,EA075-NA,,,,,, +98182,Ac4,EA075,No inher. of real property,EA075-9,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +98183,Ac40,EA075,Primogeniture,EA075-4,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +98184,Ac41,EA075,?,EA075-NA,Matrilineal,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +98185,Ac42,EA075,Primogeniture,EA075-4,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +98186,Ac43,EA075,?,EA075-NA,,,,,, +98187,Ac5,EA075,?,EA075-NA,,,,,, +98188,Ac6,EA075,?,EA075-NA,,,,,, +98189,Ac7,EA075,?,EA075-NA,,,,,, +98190,Ac8,EA075,Primogeniture,EA075-4,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +98191,Ac9,EA075,?,EA075-NA,,,,,, +98192,Ad1,EA075,Equally distributed,EA075-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +98193,Ad10,EA075,Equally distributed,EA075-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +98194,Ad11,EA075,Equally distributed,EA075-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +98195,Ad12,EA075,Equally distributed,EA075-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +98196,Ad13,EA075,Equally distributed,EA075-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +98197,Ad14,EA075,Equally distributed,EA075-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +98198,Ad15,EA075,Primogeniture,EA075-4,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +98199,Ad16,EA075,Primogeniture,EA075-4,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +98200,Ad17,EA075,Equally distributed,EA075-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +98201,Ad18,EA075,Equally distributed,EA075-1,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +98202,Ad19,EA075,?,EA075-NA,"Matrilineal, but sources conflict as to preferred heirs",fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +98203,Ad2,EA075,Primogeniture,EA075-4,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +98204,Ad20,EA075,Equally distributed,EA075-1,But only by sons of wives obtained by a bride-price,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +98205,Ad21,EA075,?,EA075-NA,Matrilineal,maurice193538,,1930,EthnographicAtlas_1967_p69, +98206,Ad22,EA075,Primogeniture,EA075-4,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +98207,Ad23,EA075,?,EA075-NA,,,,,, +98208,Ad24,EA075,No inher. of real property,EA075-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +98209,Ad25,EA075,?,EA075-NA,,,,,, +98210,Ad26,EA075,Equally distributed,EA075-1,,sick1916,,1910,EthnographicAtlas_1967_p69, +98211,Ad27,EA075,Equally distributed,EA075-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +98212,Ad28,EA075,Equally distributed,EA075-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +98213,Ad29,EA075,Equally distributed,EA075-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +98214,Ad3,EA075,Primogeniture,EA075-4,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +98215,Ad30,EA075,Primogeniture,EA075-4,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +98216,Ad31,EA075,?,EA075-NA,,,,,, +98217,Ad32,EA075,Primogeniture,EA075-4,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +98218,Ad33,EA075,Primogeniture,EA075-4,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +98219,Ad34,EA075,Equally distributed,EA075-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +98220,Ad35,EA075,Equally distributed,EA075-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +98221,Ad36,EA075,?,EA075-NA,"By brothers according one source, by eldest sons of each wife according to another",baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +98222,Ad37,EA075,Equally distributed,EA075-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +98223,Ad38,EA075,Equally distributed,EA075-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +98224,Ad39,EA075,Equally distributed,EA075-1,,gray1963,,1950,EthnographicAtlas_1967_p69, +98225,Ad4,EA075,Primogeniture,EA075-4,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +98226,Ad40,EA075,Equally distributed,EA075-1,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +98227,Ad41,EA075,Equally distributed,EA075-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +98228,Ad42,EA075,Primogeniture,EA075-4,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +98229,Ad43,EA075,?,EA075-NA,,,,,, +98230,Ad44,EA075,?,EA075-NA,,,,,, +98231,Ad45,EA075,Primogeniture,EA075-4,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +98232,Ad46,EA075,Equally distributed,EA075-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +98233,Ad47,EA075,Equally distributed,EA075-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +98234,Ad48,EA075,?,EA075-NA,,,,,, +98235,Ad49,EA075,Primogeniture,EA075-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +98236,Ad5,EA075,Primogeniture,EA075-4,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +98237,Ad50,EA075,?,EA075-NA,,,,,, +98238,Ad51,EA075,?,EA075-NA,,,,,, +98239,Ad6,EA075,Primogeniture,EA075-4,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +98240,Ad7,EA075,Best qualified,EA075-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +98241,Ad8,EA075,?,EA075-NA,,,,,, +98242,Ad9,EA075,Equally distributed,EA075-1,"In the north; 'patrilineal inheritance by heirs who take precedence over sons' (EA074 code ""6"") with 'equal distribution' (EA075 code ""1"") in the south",lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +98243,Ae1,EA075,Primogeniture,EA075-4,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +98244,Ae10,EA075,Equally distributed,EA075-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +98245,Ae11,EA075,?,EA075-NA,,,,,, +98246,Ae12,EA075,?,EA075-NA,,,,,, +98247,Ae13,EA075,?,EA075-NA,Patrilineal,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +98248,Ae14,EA075,Primogeniture,EA075-4,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +98249,Ae15,EA075,Primogeniture,EA075-4,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +98250,Ae16,EA075,Primogeniture,EA075-4,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +98251,Ae17,EA075,Equally distributed,EA075-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +98252,Ae18,EA075,Primogeniture,EA075-4,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +98253,Ae19,EA075,?,EA075-NA,,,,,, +98254,Ae2,EA075,Primogeniture,EA075-4,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +98255,Ae20,EA075,Primogeniture,EA075-4,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +98256,Ae21,EA075,Primogeniture,EA075-4,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +98257,Ae22,EA075,Primogeniture,EA075-4,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +98258,Ae23,EA075,?,EA075-NA,Mixed patrilineal and matrilineal,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +98259,Ae24,EA075,Primogeniture,EA075-4,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +98260,Ae25,EA075,Primogeniture,EA075-4,"Entry follows Torday and Joyce; Heusch reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +98261,Ae26,EA075,Primogeniture,EA075-4,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +98262,Ae27,EA075,?,EA075-NA,,,,,, +98263,Ae28,EA075,Primogeniture,EA075-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +98264,Ae29,EA075,Equally distributed,EA075-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +98265,Ae3,EA075,No inher. of real property,EA075-9,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +98266,Ae30,EA075,Equally distributed,EA075-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +98267,Ae31,EA075,?,EA075-NA,,,,,, +98268,Ae32,EA075,Equally distributed,EA075-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +98269,Ae33,EA075,Equally distributed,EA075-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +98270,Ae34,EA075,?,EA075-NA,Inheritance is patrilineal,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +98271,Ae35,EA075,Equally distributed,EA075-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +98272,Ae36,EA075,?,EA075-NA,Inheritance is patrilineal,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +98273,Ae37,EA075,Primogeniture,EA075-4,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +98274,Ae38,EA075,Primogeniture,EA075-4,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +98275,Ae39,EA075,Best qualified,EA075-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +98276,Ae4,EA075,Primogeniture,EA075-4,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +98277,Ae40,EA075,Primogeniture,EA075-4,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +98278,Ae41,EA075,Equally distributed,EA075-1,"Patrilineal, by brothers and sons",andersson1953,,1940,EthnographicAtlas_1967_p69, +98279,Ae42,EA075,Equally distributed,EA075-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +98280,Ae43,EA075,Primogeniture,EA075-4,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +98281,Ae44,EA075,Primogeniture,EA075-4,Entry follows Gil-Delgado; Tessmann reports patrilineal inheritance with matrilineal traces,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +98282,Ae45,EA075,Primogeniture,EA075-4,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +98283,Ae46,EA075,Primogeniture,EA075-4,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +98284,Ae47,EA075,Equally distributed,EA075-1,"But the source, Oertzen, elsewhere mentions inheritance by sisters' sons",oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +98285,Ae48,EA075,?,EA075-NA,,,,,, +98286,Ae49,EA075,Primogeniture,EA075-4,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +98287,Ae5,EA075,Best qualified,EA075-2,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +98288,Ae50,EA075,Best qualified,EA075-2,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +98289,Ae51,EA075,Equally distributed,EA075-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +98290,Ae52,EA075,Equally distributed,EA075-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +98291,Ae53,EA075,Primogeniture,EA075-4,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +98292,Ae54,EA075,?,EA075-NA,,,,,, +98293,Ae55,EA075,?,EA075-NA,Patrilineal,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +98294,Ae56,EA075,?,EA075-NA,,,,,, +98295,Ae57,EA075,Equally distributed,EA075-1,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +98296,Ae58,EA075,Primogeniture,EA075-4,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +98297,Ae59,EA075,Primogeniture,EA075-4,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +98298,Ae6,EA075,Primogeniture,EA075-4,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +98299,Ae7,EA075,Primogeniture,EA075-4,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +98300,Ae8,EA075,Primogeniture,EA075-4,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +98301,Ae9,EA075,?,EA075-NA,,,,,, +98302,Af1,EA075,Primogeniture,EA075-4,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +98303,Af10,EA075,Equally distributed,EA075-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +98304,Af11,EA075,Primogeniture,EA075-4,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +98305,Af12,EA075,Best qualified,EA075-2,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +98306,Af13,EA075,?,EA075-NA,,,,,, +98307,Af14,EA075,?,EA075-NA,,,,,, +98308,Af15,EA075,Primogeniture,EA075-4,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +98309,Af16,EA075,Primogeniture,EA075-4,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +98310,Af17,EA075,?,EA075-NA,,,,,, +98311,Af18,EA075,Primogeniture,EA075-4,But formerly matrilineal in the Ekparabong subtribe,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +98312,Af19,EA075,Equally distributed,EA075-1,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +98313,Af2,EA075,Equally distributed,EA075-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +98314,Af20,EA075,Primogeniture,EA075-4,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +98315,Af21,EA075,?,EA075-NA,,,,,, +98316,Af22,EA075,?,EA075-NA,,,,,, +98317,Af23,EA075,?,EA075-NA,Mixed but with a matrilineal emphasis,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +98318,Af24,EA075,Primogeniture,EA075-4,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +98319,Af25,EA075,Primogeniture,EA075-4,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +98320,Af26,EA075,?,EA075-NA,Patrilineal or matrilineal depending on mode of marriage,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +98321,Af27,EA075,Primogeniture,EA075-4,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +98322,Af28,EA075,?,EA075-NA,Patrilineal with local variations regarding participation of brothers and sons,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +98323,Af29,EA075,Primogeniture,EA075-4,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +98324,Af3,EA075,Primogeniture,EA075-4,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +98325,Af30,EA075,Primogeniture,EA075-4,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +98326,Af31,EA075,Equally distributed,EA075-1,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +98327,Af32,EA075,Equally distributed,EA075-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98328,Af33,EA075,Equally distributed,EA075-1,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98329,Af34,EA075,?,EA075-NA,,,,,, +98330,Af35,EA075,?,EA075-NA,Patrilineal,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +98331,Af36,EA075,Primogeniture,EA075-4,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +98332,Af37,EA075,Primogeniture,EA075-4,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +98333,Af38,EA075,Primogeniture,EA075-4,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +98334,Af39,EA075,Primogeniture,EA075-4,"But Kobben, as opposed to the earlier sources, reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +98335,Af4,EA075,?,EA075-NA,,,,,, +98336,Af40,EA075,Primogeniture,EA075-4,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +98337,Af41,EA075,Primogeniture,EA075-4,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +98338,Af42,EA075,Primogeniture,EA075-4,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +98339,Af43,EA075,Primogeniture,EA075-4,"But Daniell reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +98340,Af44,EA075,Primogeniture,EA075-4,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +98341,Af45,EA075,Primogeniture,EA075-4,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +98342,Af46,EA075,Primogeniture,EA075-4,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +98343,Af47,EA075,?,EA075-NA,,,,,, +98344,Af48,EA075,?,EA075-NA,,,,,, +98345,Af49,EA075,?,EA075-NA,,,,,, +98346,Af5,EA075,Equally distributed,EA075-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +98347,Af50,EA075,Primogeniture,EA075-4,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +98348,Af51,EA075,Primogeniture,EA075-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +98349,Af52,EA075,Primogeniture,EA075-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +98350,Af53,EA075,Primogeniture,EA075-4,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +98351,Af54,EA075,?,EA075-NA,,,,,, +98352,Af55,EA075,?,EA075-NA,,,,,, +98353,Af56,EA075,Primogeniture,EA075-4,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +98354,Af57,EA075,Primogeniture,EA075-4,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +98355,Af58,EA075,Primogeniture,EA075-4,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +98356,Af6,EA075,Equally distributed,EA075-1,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +98357,Af7,EA075,No inher. of real property,EA075-9,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +98358,Af8,EA075,Primogeniture,EA075-4,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +98359,Af9,EA075,Primogeniture,EA075-4,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +98360,Ag1,EA075,Primogeniture,EA075-4,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +98361,Ag10,EA075,Primogeniture,EA075-4,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +98362,Ag11,EA075,Equally distributed,EA075-1,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +98363,Ag12,EA075,Primogeniture,EA075-4,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +98364,Ag13,EA075,Primogeniture,EA075-4,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +98365,Ag14,EA075,?,EA075-NA,,,,,, +98366,Ag15,EA075,Primogeniture,EA075-4,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +98367,Ag16,EA075,Equally distributed,EA075-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +98368,Ag17,EA075,?,EA075-NA,,,,,, +98369,Ag18,EA075,Primogeniture,EA075-4,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +98370,Ag19,EA075,Primogeniture,EA075-4,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +98371,Ag2,EA075,Primogeniture,EA075-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +98372,Ag20,EA075,No inher. of real property,EA075-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +98373,Ag21,EA075,Primogeniture,EA075-4,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +98374,Ag22,EA075,Primogeniture,EA075-4,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +98375,Ag23,EA075,Primogeniture,EA075-4,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +98376,Ag24,EA075,Primogeniture,EA075-4,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +98377,Ag25,EA075,Equally distributed,EA075-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +98378,Ag26,EA075,Primogeniture,EA075-4,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +98379,Ag27,EA075,Equally distributed,EA075-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +98380,Ag28,EA075,Primogeniture,EA075-4,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +98381,Ag29,EA075,Primogeniture,EA075-4,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +98382,Ag3,EA075,Primogeniture,EA075-4,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +98383,Ag30,EA075,Primogeniture,EA075-4,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +98384,Ag31,EA075,Primogeniture,EA075-4,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +98385,Ag32,EA075,Primogeniture,EA075-4,"Entry follows Vendeix; Delafosse reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +98386,Ag33,EA075,Equally distributed,EA075-1,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +98387,Ag34,EA075,Equally distributed,EA075-1,The sources are in some conflict on rules of inheritance,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +98388,Ag35,EA075,Primogeniture,EA075-4,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +98389,Ag36,EA075,Equally distributed,EA075-1,The data on inheritance are cloudy and contradictory,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +98390,Ag37,EA075,Primogeniture,EA075-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +98391,Ag38,EA075,Primogeniture,EA075-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +98392,Ag39,EA075,Primogeniture,EA075-4,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +98393,Ag4,EA075,Primogeniture,EA075-4,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +98394,Ag40,EA075,Primogeniture,EA075-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +98395,Ag41,EA075,?,EA075-NA,Brothers and sons share in inheritance,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +98396,Ag42,EA075,Primogeniture,EA075-4,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +98397,Ag43,EA075,Primogeniture,EA075-4,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +98398,Ag44,EA075,?,EA075-NA,,,,,, +98399,Ag45,EA075,?,EA075-NA,,,,,, +98400,Ag46,EA075,?,EA075-NA,,,,,, +98401,Ag47,EA075,Primogeniture,EA075-4,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +98402,Ag48,EA075,Equally distributed,EA075-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +98403,Ag49,EA075,Primogeniture,EA075-4,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +98404,Ag5,EA075,Primogeniture,EA075-4,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +98405,Ag50,EA075,Primogeniture,EA075-4,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +98406,Ag51,EA075,Primogeniture,EA075-4,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +98407,Ag52,EA075,Primogeniture,EA075-4,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +98408,Ag53,EA075,Primogeniture,EA075-4,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +98409,Ag54,EA075,No inher. of real property,EA075-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +98410,Ag6,EA075,Primogeniture,EA075-4,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +98411,Ag7,EA075,Primogeniture,EA075-4,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +98412,Ag8,EA075,Primogeniture,EA075-4,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +98413,Ag9,EA075,Primogeniture,EA075-4,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +98414,Ah1,EA075,Equally distributed,EA075-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98415,Ah10,EA075,?,EA075-NA,,,,,, +98416,Ah11,EA075,Equally distributed,EA075-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +98417,Ah12,EA075,Primogeniture,EA075-4,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +98418,Ah13,EA075,Equally distributed,EA075-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +98419,Ah14,EA075,Equally distributed,EA075-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +98420,Ah15,EA075,Primogeniture,EA075-4,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +98421,Ah16,EA075,Primogeniture,EA075-4,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +98422,Ah17,EA075,Equally distributed,EA075-1,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +98423,Ah18,EA075,Primogeniture,EA075-4,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +98424,Ah19,EA075,Equally distributed,EA075-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +98425,Ah2,EA075,Equally distributed,EA075-1,"Matrilineal by a sister's son(s)' (EA074 code ""2"") or 'patrilineal by son(s)' (EA074 code ""7""), both with 'equal distribution' (EA075 code ""1"") depending on residence",meek1931a,,1920,EthnographicAtlas_1967_p77, +98426,Ah20,EA075,Equally distributed,EA075-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +98427,Ah21,EA075,?,EA075-NA,,,,,, +98428,Ah22,EA075,Equally distributed,EA075-1,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +98429,Ah23,EA075,?,EA075-NA,,,,,, +98430,Ah24,EA075,Equally distributed,EA075-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +98431,Ah25,EA075,?,EA075-NA,,,,,, +98432,Ah26,EA075,Primogeniture,EA075-4,"Entry follows Meek; another source reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +98433,Ah27,EA075,Primogeniture,EA075-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +98434,Ah28,EA075,Equally distributed,EA075-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +98435,Ah29,EA075,Equally distributed,EA075-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +98436,Ah3,EA075,No inher. of real property,EA075-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +98437,Ah30,EA075,Primogeniture,EA075-4,,meek1931b,,1920,EthnographicAtlas_1967_p77, +98438,Ah31,EA075,Primogeniture,EA075-4,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +98439,Ah32,EA075,?,EA075-NA,Inheritance is mixed but more matrilineal than patrilineal,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +98440,Ah33,EA075,Primogeniture,EA075-4,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +98441,Ah34,EA075,Equally distributed,EA075-1,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +98442,Ah35,EA075,Primogeniture,EA075-4,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +98443,Ah36,EA075,Equally distributed,EA075-1,"Formerly 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +98444,Ah37,EA075,Primogeniture,EA075-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +98445,Ah38,EA075,Primogeniture,EA075-4,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +98446,Ah39,EA075,Equally distributed,EA075-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +98447,Ah4,EA075,?,EA075-NA,,,,,, +98448,Ah5,EA075,Primogeniture,EA075-4,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +98449,Ah6,EA075,?,EA075-NA,,,,,, +98450,Ah7,EA075,Equally distributed,EA075-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +98451,Ah8,EA075,Primogeniture,EA075-4,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +98452,Ah9,EA075,Equally distributed,EA075-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +98453,Ai1,EA075,Primogeniture,EA075-4,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +98454,Ai10,EA075,Equally distributed,EA075-1,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +98455,Ai11,EA075,?,EA075-NA,,,,,, +98456,Ai12,EA075,Ultimogeniture,EA075-3,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +98457,Ai13,EA075,Equally distributed,EA075-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +98458,Ai14,EA075,?,EA075-NA,,,,,, +98459,Ai15,EA075,?,EA075-NA,,,,,, +98460,Ai16,EA075,Equally distributed,EA075-1,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +98461,Ai17,EA075,?,EA075-NA,,,,,, +98462,Ai18,EA075,?,EA075-NA,,,,,, +98463,Ai19,EA075,?,EA075-NA,,,,,, +98464,Ai2,EA075,Equally distributed,EA075-1,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +98465,Ai20,EA075,Primogeniture,EA075-4,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +98466,Ai21,EA075,?,EA075-NA,,,,,, +98467,Ai22,EA075,?,EA075-NA,,,,,, +98468,Ai23,EA075,Equally distributed,EA075-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +98469,Ai24,EA075,Primogeniture,EA075-4,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +98470,Ai25,EA075,?,EA075-NA,,,,,, +98471,Ai26,EA075,Primogeniture,EA075-4,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +98472,Ai27,EA075,?,EA075-NA,,,,,, +98473,Ai28,EA075,Primogeniture,EA075-4,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +98474,Ai29,EA075,Primogeniture,EA075-4,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +98475,Ai3,EA075,Primogeniture,EA075-4,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +98476,Ai30,EA075,Equally distributed,EA075-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +98477,Ai31,EA075,?,EA075-NA,,,,,, +98478,Ai32,EA075,?,EA075-NA,,,,,, +98479,Ai33,EA075,Equally distributed,EA075-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +98480,Ai34,EA075,Primogeniture,EA075-4,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +98481,Ai35,EA075,?,EA075-NA,,,,,, +98482,Ai36,EA075,Primogeniture,EA075-4,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +98483,Ai37,EA075,Equally distributed,EA075-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +98484,Ai38,EA075,?,EA075-NA,"Mixed 'matrilineal by a sister's son(s)' (EA074 code ""2"") and 'patrilineal by son(s)' (EA074 code ""7""), both with 'equal distribution' (EA075 code ""1"")",nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +98485,Ai39,EA075,?,EA075-NA,Mixed matrilineal and patrilineal,nadel1947,,1940,EthnographicAtlas_1967_p77, +98486,Ai4,EA075,?,EA075-NA,,,,,, +98487,Ai40,EA075,Primogeniture,EA075-4,,nadel1947,,1940,EthnographicAtlas_1967_p77, +98488,Ai41,EA075,Equally distributed,EA075-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +98489,Ai42,EA075,?,EA075-NA,Mixed matrilineal and patrilineal,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +98490,Ai43,EA075,Primogeniture,EA075-4,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +98491,Ai44,EA075,?,EA075-NA,,,,,, +98492,Ai45,EA075,Equally distributed,EA075-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +98493,Ai46,EA075,?,EA075-NA,,,,,, +98494,Ai47,EA075,Primogeniture,EA075-4,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +98495,Ai5,EA075,?,EA075-NA,,,,,, +98496,Ai6,EA075,Primogeniture,EA075-4,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +98497,Ai7,EA075,Primogeniture,EA075-4,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +98498,Ai8,EA075,Ultimogeniture,EA075-3,But eldest son inherits distant fields,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +98499,Ai9,EA075,Primogeniture,EA075-4,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +98500,Aj1,EA075,Primogeniture,EA075-4,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +98501,Aj10,EA075,?,EA075-NA,,,,,, +98502,Aj11,EA075,?,EA075-NA,,,,,, +98503,Aj12,EA075,?,EA075-NA,,,,,, +98504,Aj13,EA075,Equally distributed,EA075-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +98505,Aj14,EA075,?,EA075-NA,,,,,, +98506,Aj15,EA075,Primogeniture,EA075-4,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +98507,Aj16,EA075,No inher. of real property,EA075-9,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +98508,Aj17,EA075,Primogeniture,EA075-4,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +98509,Aj18,EA075,Primogeniture,EA075-4,,jensen1959,,1950,EthnographicAtlas_1967_p81, +98510,Aj19,EA075,Primogeniture,EA075-4,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +98511,Aj2,EA075,Equally distributed,EA075-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +98512,Aj20,EA075,?,EA075-NA,,,,,, +98513,Aj21,EA075,?,EA075-NA,,,,,, +98514,Aj22,EA075,?,EA075-NA,,,,,, +98515,Aj23,EA075,Primogeniture,EA075-4,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +98516,Aj24,EA075,Equally distributed,EA075-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +98517,Aj25,EA075,Equally distributed,EA075-1,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +98518,Aj26,EA075,Primogeniture,EA075-4,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +98519,Aj27,EA075,?,EA075-NA,,,,,, +98520,Aj28,EA075,Primogeniture,EA075-4,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +98521,Aj29,EA075,No inher. of real property,EA075-9,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +98522,Aj3,EA075,Equally distributed,EA075-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +98523,Aj30,EA075,?,EA075-NA,,,,,, +98524,Aj31,EA075,?,EA075-NA,,,,,, +98525,Aj4,EA075,Primogeniture,EA075-4,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +98526,Aj5,EA075,Equally distributed,EA075-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +98527,Aj6,EA075,Primogeniture,EA075-4,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +98528,Aj7,EA075,Primogeniture,EA075-4,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +98529,Aj8,EA075,Equally distributed,EA075-1,"Entry follows Seligman; Beaton reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +98530,Aj9,EA075,Equally distributed,EA075-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +98531,Ca1,EA075,Primogeniture,EA075-4,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +98532,Ca10,EA075,Equally distributed,EA075-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +98533,Ca11,EA075,Primogeniture,EA075-4,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +98534,Ca12,EA075,Primogeniture,EA075-4,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +98535,Ca13,EA075,Primogeniture,EA075-4,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +98536,Ca14,EA075,?,EA075-NA,,,,,, +98537,Ca15,EA075,Equally distributed,EA075-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +98538,Ca16,EA075,Primogeniture,EA075-4,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +98539,Ca17,EA075,?,EA075-NA,,,,,, +98540,Ca18,EA075,Primogeniture,EA075-4,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +98541,Ca19,EA075,?,EA075-NA,,,,,, +98542,Ca2,EA075,Equally distributed,EA075-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +98543,Ca20,EA075,?,EA075-NA,,,,,, +98544,Ca21,EA075,?,EA075-NA,,,,,, +98545,Ca22,EA075,?,EA075-NA,,,,,, +98546,Ca23,EA075,Primogeniture,EA075-4,,jensen1959,,1950,EthnographicAtlas_1967_p81, +98547,Ca24,EA075,?,EA075-NA,,,,,, +98548,Ca25,EA075,Primogeniture,EA075-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +98549,Ca26,EA075,?,EA075-NA,,,,,, +98550,Ca27,EA075,?,EA075-NA,,,,,, +98551,Ca28,EA075,Primogeniture,EA075-4,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +98552,Ca29,EA075,Equally distributed,EA075-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +98553,Ca3,EA075,Equally distributed,EA075-1,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +98554,Ca30,EA075,Primogeniture,EA075-4,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +98555,Ca31,EA075,?,EA075-NA,,,,,, +98556,Ca32,EA075,Primogeniture,EA075-4,"Entry follows Pollera; Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +98557,Ca33,EA075,Primogeniture,EA075-4,"But Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +98558,Ca34,EA075,?,EA075-NA,,,,,, +98559,Ca35,EA075,No inher. of real property,EA075-9,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +98560,Ca36,EA075,No inher. of real property,EA075-9,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +98561,Ca37,EA075,Primogeniture,EA075-4,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +98562,Ca38,EA075,Primogeniture,EA075-4,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +98563,Ca39,EA075,Equally distributed,EA075-1,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +98564,Ca4,EA075,Equally distributed,EA075-1,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +98565,Ca40,EA075,Primogeniture,EA075-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +98566,Ca41,EA075,Primogeniture,EA075-4,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +98567,Ca42,EA075,Primogeniture,EA075-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +98568,Ca43,EA075,?,EA075-NA,,,,,, +98569,Ca5,EA075,?,EA075-NA,,,,,, +98570,Ca6,EA075,?,EA075-NA,,,,,, +98571,Ca7,EA075,Equally distributed,EA075-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +98572,Ca8,EA075,Primogeniture,EA075-4,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +98573,Ca9,EA075,Equally distributed,EA075-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +98574,Cb1,EA075,Equally distributed,EA075-1,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +98575,Cb10,EA075,Primogeniture,EA075-4,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +98576,Cb11,EA075,?,EA075-NA,,,,,, +98577,Cb12,EA075,?,EA075-NA,,,,,, +98578,Cb13,EA075,?,EA075-NA,,,,,, +98579,Cb14,EA075,?,EA075-NA,,,,,, +98580,Cb15,EA075,Equally distributed,EA075-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +98581,Cb16,EA075,?,EA075-NA,,,,,, +98582,Cb17,EA075,Ultimogeniture,EA075-3,"Entry follows Felkin; Beaton reports 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +98583,Cb18,EA075,Equally distributed,EA075-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +98584,Cb19,EA075,Equally distributed,EA075-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +98585,Cb2,EA075,Equally distributed,EA075-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +98586,Cb20,EA075,Equally distributed,EA075-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +98587,Cb21,EA075,No inher. of real property,EA075-9,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +98588,Cb22,EA075,?,EA075-NA,,,,,, +98589,Cb23,EA075,Primogeniture,EA075-4,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +98590,Cb24,EA075,No inher. of real property,EA075-9,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +98591,Cb25,EA075,Equally distributed,EA075-1,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +98592,Cb26,EA075,Equally distributed,EA075-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +98593,Cb27,EA075,Primogeniture,EA075-4,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +98594,Cb28,EA075,?,EA075-NA,,,,,, +98595,Cb29,EA075,?,EA075-NA,,,,,, +98596,Cb3,EA075,Equally distributed,EA075-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +98597,Cb4,EA075,Equally distributed,EA075-1,,reid1930,,1920,EthnographicAtlas_1967_p81, +98598,Cb5,EA075,Equally distributed,EA075-1,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +98599,Cb6,EA075,Equally distributed,EA075-1,,woodnd,,1920,EthnographicAtlas_1967_p81, +98600,Cb7,EA075,?,EA075-NA,,,,,, +98601,Cb8,EA075,No inher. of real property,EA075-9,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +98602,Cb9,EA075,Primogeniture,EA075-4,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +98603,Cc1,EA075,Equally distributed,EA075-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +98604,Cc10,EA075,Primogeniture,EA075-4,"Entry follows Rodd; Joubert reports 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +98605,Cc11,EA075,Primogeniture,EA075-4,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +98606,Cc12,EA075,?,EA075-NA,,,,,, +98607,Cc13,EA075,Equally distributed,EA075-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +98608,Cc14,EA075,?,EA075-NA,,,,,, +98609,Cc15,EA075,?,EA075-NA,,,,,, +98610,Cc16,EA075,?,EA075-NA,,,,,, +98611,Cc17,EA075,Equally distributed,EA075-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +98612,Cc18,EA075,Equally distributed,EA075-1,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +98613,Cc19,EA075,Equally distributed,EA075-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +98614,Cc2,EA075,Equally distributed,EA075-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +98615,Cc20,EA075,Primogeniture,EA075-4,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +98616,Cc3,EA075,Equally distributed,EA075-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +98617,Cc4,EA075,?,EA075-NA,,,,,, +98618,Cc5,EA075,?,EA075-NA,,,,,, +98619,Cc6,EA075,No inher. of real property,EA075-9,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +98620,Cc7,EA075,?,EA075-NA,,,,,, +98621,Cc8,EA075,?,EA075-NA,,,,,, +98622,Cc9,EA075,Primogeniture,EA075-4,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +98623,Cd1,EA075,Equally distributed,EA075-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +98624,Cd10,EA075,Equally distributed,EA075-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +98625,Cd11,EA075,Equally distributed,EA075-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +98626,Cd12,EA075,Equally distributed,EA075-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +98627,Cd13,EA075,Equally distributed,EA075-1,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +98628,Cd14,EA075,Equally distributed,EA075-1,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +98629,Cd15,EA075,Equally distributed,EA075-1,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +98630,Cd16,EA075,Equally distributed,EA075-1,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +98631,Cd17,EA075,Equally distributed,EA075-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +98632,Cd18,EA075,Equally distributed,EA075-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +98633,Cd19,EA075,?,EA075-NA,,,,,, +98634,Cd2,EA075,Equally distributed,EA075-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +98635,Cd20,EA075,Equally distributed,EA075-1,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +98636,Cd21,EA075,?,EA075-NA,,,,,, +98637,Cd3,EA075,Equally distributed,EA075-1,"But theoretically 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +98638,Cd4,EA075,Equally distributed,EA075-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +98639,Cd5,EA075,Equally distributed,EA075-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +98640,Cd6,EA075,Primogeniture,EA075-4,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +98641,Cd7,EA075,Equally distributed,EA075-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +98642,Cd8,EA075,Equally distributed,EA075-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +98643,Cd9,EA075,Equally distributed,EA075-1,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +98644,Ce1,EA075,Equally distributed,EA075-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +98645,Ce2,EA075,?,EA075-NA,,,,,, +98646,Ce3,EA075,Equally distributed,EA075-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +98647,Ce4,EA075,Primogeniture,EA075-4,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98648,Ce5,EA075,Equally distributed,EA075-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +98649,Ce6,EA075,Equally distributed,EA075-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +98650,Ce7,EA075,Equally distributed,EA075-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +98651,Ce8,EA075,Best qualified,EA075-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +98652,Cf1,EA075,Equally distributed,EA075-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +98653,Cf2,EA075,?,EA075-NA,,,,,, +98654,Cf3,EA075,Equally distributed,EA075-1,,munch1945,,1930,EthnographicAtlas_1967_p85, +98655,Cf4,EA075,Equally distributed,EA075-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +98656,Cf5,EA075,Best qualified,EA075-2,,miner1939,,1930,EthnographicAtlas_1967_p85, +98657,Cg1,EA075,Equally distributed,EA075-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +98658,Cg2,EA075,Equally distributed,EA075-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +98659,Cg3,EA075,Best qualified,EA075-2,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +98660,Cg4,EA075,Ultimogeniture,EA075-3,For tent or cottage and associated movables,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +98661,Cg5,EA075,?,EA075-NA,,,,,, +98662,Ch1,EA075,?,EA075-NA,,,,,, +98663,Ch10,EA075,?,EA075-NA,,,,,, +98664,Ch11,EA075,No inher. of real property,EA075-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +98665,Ch2,EA075,Equally distributed,EA075-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +98666,Ch3,EA075,Equally distributed,EA075-1,But the youngest son receives the largest share,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +98667,Ch4,EA075,Ultimogeniture,EA075-3,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +98668,Ch5,EA075,Equally distributed,EA075-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +98669,Ch6,EA075,Equally distributed,EA075-1,,ember1954,,1910,EthnographicAtlas_1967_p85, +98670,Ch7,EA075,Ultimogeniture,EA075-3,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +98671,Ch8,EA075,?,EA075-NA,,,,,, +98672,Ch9,EA075,Equally distributed,EA075-1,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +98673,Ci1,EA075,No inher. of real property,EA075-9,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +98674,Ci10,EA075,Equally distributed,EA075-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +98675,Ci11,EA075,Equally distributed,EA075-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +98676,Ci12,EA075,Equally distributed,EA075-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +98677,Ci2,EA075,Equally distributed,EA075-1,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +98678,Ci3,EA075,?,EA075-NA,,,,,, +98679,Ci4,EA075,Equally distributed,EA075-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +98680,Ci5,EA075,Equally distributed,EA075-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +98681,Ci6,EA075,Equally distributed,EA075-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +98682,Ci7,EA075,?,EA075-NA,,,,,, +98683,Ci8,EA075,?,EA075-NA,,,,,, +98684,Ci9,EA075,Equally distributed,EA075-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +98685,Cj1,EA075,?,EA075-NA,,,,,, +98686,Cj10,EA075,Equally distributed,EA075-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +98687,Cj2,EA075,No inher. of real property,EA075-9,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +98688,Cj3,EA075,Primogeniture,EA075-4,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +98689,Cj4,EA075,Equally distributed,EA075-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +98690,Cj5,EA075,Equally distributed,EA075-1,,dickson1949,,1930,EthnographicAtlas_1967_p89, +98691,Cj6,EA075,Equally distributed,EA075-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +98692,Cj7,EA075,Equally distributed,EA075-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +98693,Cj8,EA075,Equally distributed,EA075-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +98694,Cj9,EA075,?,EA075-NA,,,,,, +98695,Ea1,EA075,Equally distributed,EA075-1,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p89, +98696,Ea10,EA075,Equally distributed,EA075-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +98697,Ea11,EA075,?,EA075-NA,,,,,, +98698,Ea12,EA075,?,EA075-NA,,,,,, +98699,Ea13,EA075,Equally distributed,EA075-1,"Despite legal change in 1948 to 'inheritance by children of either sex' (EA074 code ""5"") with 'equal distribution' (EA075 code ""1"")",callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +98700,Ea2,EA075,Equally distributed,EA075-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +98701,Ea3,EA075,Primogeniture,EA075-4,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +98702,Ea4,EA075,Equally distributed,EA075-1,,barth1956b,,1950,EthnographicAtlas_1967_p89, +98703,Ea5,EA075,Equally distributed,EA075-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +98704,Ea6,EA075,No inher. of real property,EA075-9,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +98705,Ea7,EA075,Equally distributed,EA075-1,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +98706,Ea8,EA075,?,EA075-NA,,,,,, +98707,Ea9,EA075,?,EA075-NA,,,,,, +98708,Eb1,EA075,No inher. of real property,EA075-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +98709,Eb2,EA075,Equally distributed,EA075-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +98710,Eb3,EA075,Equally distributed,EA075-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +98711,Eb4,EA075,Equally distributed,EA075-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +98712,Eb5,EA075,?,EA075-NA,,,,,, +98713,Eb6,EA075,?,EA075-NA,,,,,, +98714,Eb7,EA075,No inher. of real property,EA075-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +98715,Eb8,EA075,?,EA075-NA,,,,,, +98716,Ec1,EA075,No inher. of real property,EA075-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +98717,Ec10,EA075,?,EA075-NA,,,,,, +98718,Ec11,EA075,?,EA075-NA,,,,,, +98719,Ec2,EA075,Primogeniture,EA075-4,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98720,Ec3,EA075,No inher. of real property,EA075-9,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +98721,Ec4,EA075,?,EA075-NA,,,,,, +98722,Ec5,EA075,?,EA075-NA,,,,,, +98723,Ec6,EA075,No inher. of real property,EA075-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +98724,Ec7,EA075,?,EA075-NA,,,,,, +98725,Ec8,EA075,No inher. of real property,EA075-9,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +98726,Ec9,EA075,?,EA075-NA,,,,,, +98727,Ed1,EA075,Primogeniture,EA075-4,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +98728,Ed10,EA075,Equally distributed,EA075-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +98729,Ed13,EA075,?,EA075-NA,,,,,, +98730,Ed14,EA075,?,EA075-NA,,,,,, +98731,Ed15a,EA075,?,EA075-NA,,,,,, +98732,Ed15b,EA075,Equally distributed,EA075-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +98733,Ed16,EA075,?,EA075-NA,,,,,, +98734,Ed2,EA075,Equally distributed,EA075-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +98735,Ed3,EA075,Ultimogeniture,EA075-3,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +98736,Ed4,EA075,Ultimogeniture,EA075-3,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +98737,Ed5,EA075,Primogeniture,EA075-4,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98738,Ed6,EA075,Equally distributed,EA075-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +98739,Ed7,EA075,Primogeniture,EA075-4,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +98740,Ed8,EA075,Equally distributed,EA075-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +98741,Ed9,EA075,Equally distributed,EA075-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +98742,Ee1,EA075,Ultimogeniture,EA075-3,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +98743,Ee2,EA075,?,EA075-NA,,,,,, +98744,Ee3,EA075,Equally distributed,EA075-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +98745,Ee4,EA075,Best qualified,EA075-2,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +98746,Ee5,EA075,Equally distributed,EA075-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +98747,Ee6,EA075,Equally distributed,EA075-1,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +98748,Ee7,EA075,?,EA075-NA,,,,,, +98749,Ee8,EA075,Equally distributed,EA075-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +98750,Ef1,EA075,Equally distributed,EA075-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +98751,Ef10,EA075,?,EA075-NA,,,,,, +98752,Ef11,EA075,Equally distributed,EA075-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +98753,Ef2,EA075,Equally distributed,EA075-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +98754,Ef3,EA075,?,EA075-NA,,,,,, +98755,Ef4,EA075,Equally distributed,EA075-1,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +98756,Ef5,EA075,Equally distributed,EA075-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +98757,Ef6,EA075,Equally distributed,EA075-1,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +98758,Ef7,EA075,Equally distributed,EA075-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +98759,Ef8,EA075,Equally distributed,EA075-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +98760,Ef9,EA075,Equally distributed,EA075-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98761,Eg1,EA075,Equally distributed,EA075-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98762,Eg10,EA075,Equally distributed,EA075-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +98763,Eg11,EA075,Equally distributed,EA075-1,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +98764,Eg12,EA075,?,EA075-NA,,,,,, +98765,Eg13,EA075,?,EA075-NA,,,,,, +98766,Eg14,EA075,?,EA075-NA,,,,,, +98767,Eg2,EA075,?,EA075-NA,,,,,, +98768,Eg3,EA075,No inher. of real property,EA075-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +98769,Eg4,EA075,No inher. of real property,EA075-9,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +98770,Eg5,EA075,Equally distributed,EA075-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +98771,Eg6,EA075,?,EA075-NA,,,,,, +98772,Eg7,EA075,?,EA075-NA,,,,,, +98773,Eg8,EA075,Equally distributed,EA075-1,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +98774,Eg9,EA075,?,EA075-NA,,,,,, +98775,Eh1,EA075,No inher. of real property,EA075-9,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +98776,Eh10,EA075,?,EA075-NA,,,,,, +98777,Eh2,EA075,Equally distributed,EA075-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +98778,Eh3,EA075,Equally distributed,EA075-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +98779,Eh4,EA075,Equally distributed,EA075-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98780,Eh5,EA075,No inher. of real property,EA075-9,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +98781,Eh6,EA075,Equally distributed,EA075-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +98782,Eh7,EA075,Primogeniture,EA075-4,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +98783,Eh8,EA075,?,EA075-NA,,,,,, +98784,Eh9,EA075,Equally distributed,EA075-1,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +98785,Ei1,EA075,No inher. of real property,EA075-9,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98786,Ei10,EA075,Equally distributed,EA075-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +98787,Ei11,EA075,Primogeniture,EA075-4,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +98788,Ei12,EA075,?,EA075-NA,,,,,, +98789,Ei13,EA075,Equally distributed,EA075-1,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +98790,Ei14,EA075,Equally distributed,EA075-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +98791,Ei15,EA075,?,EA075-NA,,,,,, +98792,Ei16,EA075,Equally distributed,EA075-1,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +98793,Ei17,EA075,?,EA075-NA,,,,,, +98794,Ei18,EA075,?,EA075-NA,,,,,, +98795,Ei19,EA075,Ultimogeniture,EA075-3,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"") in some localities",bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +98796,Ei2,EA075,Equally distributed,EA075-1,,mills1922,,1920,EthnographicAtlas_1967_p93, +98797,Ei20,EA075,?,EA075-NA,,,,,, +98798,Ei3,EA075,Equally distributed,EA075-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +98799,Ei4,EA075,Primogeniture,EA075-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +98800,Ei5,EA075,Ultimogeniture,EA075-3,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +98801,Ei6,EA075,Ultimogeniture,EA075-3,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +98802,Ei7,EA075,Equally distributed,EA075-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +98803,Ei8,EA075,Ultimogeniture,EA075-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +98804,Ei9,EA075,Primogeniture,EA075-4,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p93, +98805,Ej1,EA075,No inher. of real property,EA075-9,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +98806,Ej10,EA075,?,EA075-NA,Matrilineal,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +98807,Ej11,EA075,Ultimogeniture,EA075-3,Mainly from mother to youngest daughter,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +98808,Ej12,EA075,?,EA075-NA,,,,,, +98809,Ej13,EA075,Primogeniture,EA075-4,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +98810,Ej14,EA075,No inher. of real property,EA075-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98811,Ej15,EA075,?,EA075-NA,,,,,, +98812,Ej16,EA075,Best qualified,EA075-2,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +98813,Ej2,EA075,?,EA075-NA,,,,,, +98814,Ej3,EA075,No inher. of real property,EA075-9,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +98815,Ej4,EA075,Equally distributed,EA075-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +98816,Ej5,EA075,Equally distributed,EA075-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +98817,Ej6,EA075,?,EA075-NA,,,,,, +98818,Ej7,EA075,Primogeniture,EA075-4,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +98819,Ej8,EA075,Equally distributed,EA075-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +98820,Ej9,EA075,Equally distributed,EA075-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +98821,Ia1,EA075,Ultimogeniture,EA075-3,"But Li reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +98822,Ia10,EA075,?,EA075-NA,,,,,, +98823,Ia11,EA075,?,EA075-NA,,,,,, +98824,Ia12,EA075,Equally distributed,EA075-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +98825,Ia13,EA075,?,EA075-NA,,,,,, +98826,Ia14,EA075,Equally distributed,EA075-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +98827,Ia15,EA075,?,EA075-NA,,,,,, +98828,Ia16,EA075,Primogeniture,EA075-4,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +98829,Ia17,EA075,?,EA075-NA,,,,,, +98830,Ia18,EA075,?,EA075-NA,,,,,, +98831,Ia2,EA075,Equally distributed,EA075-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +98832,Ia3,EA075,Primogeniture,EA075-4,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +98833,Ia4,EA075,No inher. of real property,EA075-9,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +98834,Ia5,EA075,No inher. of real property,EA075-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +98835,Ia6,EA075,Primogeniture,EA075-4,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98836,Ia7,EA075,Equally distributed,EA075-1,,fox1954,,1950,EthnographicAtlas_1967_p93, +98837,Ia8,EA075,Equally distributed,EA075-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +98838,Ia9,EA075,?,EA075-NA,,,,,, +98839,Ib1,EA075,Equally distributed,EA075-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98840,Ib2,EA075,Best qualified,EA075-2,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98841,Ib3,EA075,Equally distributed,EA075-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +98842,Ib4,EA075,Equally distributed,EA075-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +98843,Ib5,EA075,Equally distributed,EA075-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +98844,Ib6,EA075,No inher. of real property,EA075-9,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +98845,Ib7,EA075,?,EA075-NA,Taro land is inherited from Mo to Da,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +98846,Ib8,EA075,?,EA075-NA,,,,,, +98847,Ib9,EA075,?,EA075-NA,,,,,, +98848,Ic1,EA075,?,EA075-NA,,,,,, +98849,Ic10,EA075,Equally distributed,EA075-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +98850,Ic11,EA075,Equally distributed,EA075-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98851,Ic12,EA075,?,EA075-NA,,,,,, +98852,Ic13,EA075,?,EA075-NA,,,,,, +98853,Ic2,EA075,?,EA075-NA,,,,,, +98854,Ic3,EA075,No inher. of real property,EA075-9,"Inheritance by widows, then daughters",vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +98855,Ic4,EA075,?,EA075-NA,,,,,, +98856,Ic5,EA075,Equally distributed,EA075-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +98857,Ic6,EA075,Equally distributed,EA075-1,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +98858,Ic7,EA075,Equally distributed,EA075-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +98859,Ic8,EA075,Primogeniture,EA075-4,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +98860,Ic9,EA075,Primogeniture,EA075-4,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +98861,Id1,EA075,No inher. of real property,EA075-9,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +98862,Id10,EA075,No inher. of real property,EA075-9,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +98863,Id11,EA075,No inher. of real property,EA075-9,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +98864,Id12,EA075,?,EA075-NA,,,,,, +98865,Id13,EA075,No inher. of real property,EA075-9,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +98866,Id2,EA075,No inher. of real property,EA075-9,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +98867,Id3,EA075,No inher. of real property,EA075-9,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +98868,Id4,EA075,No inher. of real property,EA075-9,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p97, +98869,Id5,EA075,No inher. of real property,EA075-9,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p97, +98870,Id6,EA075,No inher. of real property,EA075-9,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p97, +98871,Id7,EA075,?,EA075-NA,,,,,, +98872,Id8,EA075,No inher. of real property,EA075-9,,roth1890,,1830,EthnographicAtlas_1967_p97, +98873,Id9,EA075,No inher. of real property,EA075-9,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p97, +98874,Ie1,EA075,?,EA075-NA,,,,,, +98875,Ie10,EA075,Primogeniture,EA075-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +98876,Ie11,EA075,Equally distributed,EA075-1,,bowers1964,,1950,EthnographicAtlas_1967_p97, +98877,Ie12,EA075,Equally distributed,EA075-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98878,Ie13,EA075,?,EA075-NA,,,,,, +98879,Ie14,EA075,?,EA075-NA,,,,,, +98880,Ie15,EA075,?,EA075-NA,,,,,, +98881,Ie16,EA075,?,EA075-NA,,,,,, +98882,Ie17,EA075,Primogeniture,EA075-4,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +98883,Ie18,EA075,Equally distributed,EA075-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +98884,Ie19,EA075,?,EA075-NA,,,,,, +98885,Ie2,EA075,Equally distributed,EA075-1,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +98886,Ie20,EA075,Equally distributed,EA075-1,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +98887,Ie21,EA075,Equally distributed,EA075-1,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +98888,Ie22,EA075,Equally distributed,EA075-1,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +98889,Ie23,EA075,Equally distributed,EA075-1,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +98890,Ie24,EA075,Equally distributed,EA075-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +98891,Ie25,EA075,Equally distributed,EA075-1,,williamson1912,,1920,EthnographicAtlas_1967_p97, +98892,Ie26,EA075,Equally distributed,EA075-1,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +98893,Ie27,EA075,No inher. of real property,EA075-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +98894,Ie28,EA075,?,EA075-NA,,,,,, +98895,Ie29,EA075,Primogeniture,EA075-4,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98896,Ie3,EA075,Equally distributed,EA075-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98897,Ie30,EA075,?,EA075-NA,,,,,, +98898,Ie31,EA075,Primogeniture,EA075-4,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +98899,Ie32,EA075,?,EA075-NA,,,,,, +98900,Ie33,EA075,?,EA075-NA,,,,,, +98901,Ie34,EA075,?,EA075-NA,,,,,, +98902,Ie35,EA075,?,EA075-NA,,,,,, +98903,Ie36,EA075,?,EA075-NA,,,,,, +98904,Ie37,EA075,?,EA075-NA,,,,,, +98905,Ie38,EA075,Equally distributed,EA075-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +98906,Ie39,EA075,?,EA075-NA,,,,,, +98907,Ie4,EA075,Equally distributed,EA075-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98908,Ie5,EA075,No inher. of real property,EA075-9,,williams1936,,1930,EthnographicAtlas_1967_p97, +98909,Ie6,EA075,?,EA075-NA,,,,,, +98910,Ie7,EA075,Equally distributed,EA075-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +98911,Ie8,EA075,Equally distributed,EA075-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +98912,Ie9,EA075,?,EA075-NA,,,,,, +98913,If1,EA075,Primogeniture,EA075-4,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98914,If10,EA075,?,EA075-NA,,,,,, +98915,If11,EA075,?,EA075-NA,,,,,, +98916,If12,EA075,?,EA075-NA,,,,,, +98917,If13,EA075,?,EA075-NA,,,,,, +98918,If14,EA075,Equally distributed,EA075-1,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +98919,If15,EA075,?,EA075-NA,,,,,, +98920,If16,EA075,?,EA075-NA,Predominantly matrilineal,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +98921,If17,EA075,?,EA075-NA,,,,,, +98922,If2,EA075,Equally distributed,EA075-1,But provisional land rights revert to the matrilineage of the deceased,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +98923,If3,EA075,Best qualified,EA075-2,"Mixed (A man may transmit certain land rights to a son, but others remain within his matrilineage)",spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +98924,If4,EA075,?,EA075-NA,Matrilineal but without information of the preferred heirs,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +98925,If5,EA075,Equally distributed,EA075-1,"But Bascom reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"") in most districts",bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +98926,If6,EA075,Equally distributed,EA075-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +98927,If7,EA075,Equally distributed,EA075-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +98928,If8,EA075,Equally distributed,EA075-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +98929,If9,EA075,?,EA075-NA,Basically matrilineal,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +98930,Ig1,EA075,?,EA075-NA,Matrilineal within lineage,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +98931,Ig10,EA075,?,EA075-NA,,,,,, +98932,Ig11,EA075,?,EA075-NA,,,,,, +98933,Ig12,EA075,?,EA075-NA,,,,,, +98934,Ig13,EA075,?,EA075-NA,,,,,, +98935,Ig14,EA075,Equally distributed,EA075-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +98936,Ig15,EA075,?,EA075-NA,,,,,, +98937,Ig16,EA075,?,EA075-NA,,,,,, +98938,Ig17,EA075,?,EA075-NA,,,,,, +98939,Ig18,EA075,?,EA075-NA,,,,,, +98940,Ig19,EA075,?,EA075-NA,,,,,, +98941,Ig2,EA075,Equally distributed,EA075-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +98942,Ig20,EA075,No inher. of real property,EA075-9,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +98943,Ig21,EA075,?,EA075-NA,,,,,, +98944,Ig3,EA075,?,EA075-NA,"A man may leave his property to his sons, his sister's sons, or both",blackwood1935,,1930,EthnographicAtlas_1967_p101, +98945,Ig4,EA075,?,EA075-NA,,,,,, +98946,Ig5,EA075,?,EA075-NA,"Matrilineal, but the exact distribution is not reported",fortune1932b,,1920,EthnographicAtlas_1967_p101, +98947,Ig6,EA075,Equally distributed,EA075-1,,ivens1927,,1900,EthnographicAtlas_1967_p101, +98948,Ig7,EA075,?,EA075-NA,,,,,, +98949,Ig8,EA075,?,EA075-NA,,,,,, +98950,Ig9,EA075,No inher. of real property,EA075-9,Most of a deceased man's property is plundered by the agnatic kinsmen of his MoBr,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +98951,Ih1,EA075,Equally distributed,EA075-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +98952,Ih10,EA075,Equally distributed,EA075-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98953,Ih11,EA075,?,EA075-NA,,,,,, +98954,Ih12,EA075,?,EA075-NA,,,,,, +98955,Ih13,EA075,?,EA075-NA,,,,,, +98956,Ih14,EA075,?,EA075-NA,,,,,, +98957,Ih2,EA075,?,EA075-NA,,,,,, +98958,Ih3,EA075,No inher. of real property,EA075-9,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +98959,Ih4,EA075,?,EA075-NA,,,,,, +98960,Ih5,EA075,?,EA075-NA,,,,,, +98961,Ih6,EA075,?,EA075-NA,,,,,, +98962,Ih7,EA075,Equally distributed,EA075-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +98963,Ih8,EA075,?,EA075-NA,Mixed but mainly patrilineal,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +98964,Ih9,EA075,?,EA075-NA,,,,,, +98965,Ii1,EA075,?,EA075-NA,,,,,, +98966,Ii10,EA075,Equally distributed,EA075-1,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +98967,Ii12,EA075,?,EA075-NA,,,,,, +98968,Ii13,EA075,?,EA075-NA,Land is collectively owned by ramages,burrows1937,,1830,EthnographicAtlas_1967_p101, +98969,Ii14,EA075,?,EA075-NA,,,,,, +98970,Ii2,EA075,Equally distributed,EA075-1,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +98971,Ii3,EA075,?,EA075-NA,,,,,, +98972,Ii4,EA075,Primogeniture,EA075-4,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +98973,Ii5,EA075,?,EA075-NA,"Taro plots descend from Mo to Da, but other land is owned collectively by ramages",hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +98974,Ii6,EA075,?,EA075-NA,Land is collectively owned by ramages,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +98975,Ii7,EA075,Equally distributed,EA075-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +98976,Ii8,EA075,?,EA075-NA,"Land is owned by ramages; inheritance, though basically bilateral, is predominantly patrilineal",burrows1936,,1840,EthnographicAtlas_1967_p101, +98977,Ii9,EA075,?,EA075-NA,,,,,, +98978,Ij1,EA075,?,EA075-NA,,,,,, +98979,Ij10,EA075,Equally distributed,EA075-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +98980,Ij2,EA075,Equally distributed,EA075-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +98981,Ij3,EA075,Primogeniture,EA075-4,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +98982,Ij4,EA075,?,EA075-NA,,,,,, +98983,Ij5,EA075,Equally distributed,EA075-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +98984,Ij6,EA075,Primogeniture,EA075-4,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +98985,Ij7,EA075,Primogeniture,EA075-4,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +98986,Ij8,EA075,?,EA075-NA,,,,,, +98987,Ij9,EA075,?,EA075-NA,,,,,, +98988,Na1,EA075,No inher. of real property,EA075-9,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +98989,Na10,EA075,Primogeniture,EA075-4,"Houses were owned by females and inherited by the eldest child who, if a male, gave the house to his wife",birketsmith1953,,1930,EthnographicAtlas_1967_p105, +98990,Na11,EA075,?,EA075-NA,,,,,, +98991,Na12,EA075,No inher. of real property,EA075-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +98992,Na13,EA075,No inher. of real property,EA075-9,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +98993,Na14,EA075,No inher. of real property,EA075-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +98994,Na15,EA075,?,EA075-NA,,,,,, +98995,Na16,EA075,No inher. of real property,EA075-9,,osgood1931,,1860,EthnographicAtlas_1967_p105, +98996,Na17,EA075,No inher. of real property,EA075-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +98997,Na19,EA075,No inher. of real property,EA075-9,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +98998,Na2,EA075,No inher. of real property,EA075-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +98999,Na20,EA075,Primogeniture,EA075-4,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +99000,Na21,EA075,No inher. of real property,EA075-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +99001,Na22,EA075,No inher. of real property,EA075-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +99002,Na23,EA075,No inher. of real property,EA075-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +99003,Na24,EA075,No inher. of real property,EA075-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +99004,Na25,EA075,?,EA075-NA,,,,,, +99005,Na26,EA075,No inher. of real property,EA075-9,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +99006,Na27,EA075,?,EA075-NA,,,,,, +99007,Na28,EA075,No inher. of real property,EA075-9,,jenness1937,,1880,EthnographicAtlas_1967_p105, +99008,Na29,EA075,No inher. of real property,EA075-9,,goddard1916,,1850,EthnographicAtlas_1967_p105, +99009,Na3,EA075,No inher. of real property,EA075-9,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +99010,Na30,EA075,No inher. of real property,EA075-9,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +99011,Na31,EA075,?,EA075-NA,,,,,, +99012,Na32,EA075,Primogeniture,EA075-4,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +99013,Na33,EA075,?,EA075-NA,,,,,, +99014,Na34,EA075,Primogeniture,EA075-4,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +99015,Na35,EA075,?,EA075-NA,,,,,, +99016,Na36,EA075,?,EA075-NA,,,,,, +99017,Na37,EA075,Best qualified,EA075-2,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +99018,Na38,EA075,?,EA075-NA,,,,,, +99019,Na39,EA075,No inher. of real property,EA075-9,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +99020,Na4,EA075,?,EA075-NA,Trap lines are inherited by DaHu,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +99021,Na40,EA075,?,EA075-NA,,,,,, +99022,Na41,EA075,?,EA075-NA,,,,,, +99023,Na42,EA075,?,EA075-NA,,,,,, +99024,Na43,EA075,?,EA075-NA,,,,,, +99025,Na44,EA075,?,EA075-NA,,,,,, +99026,Na45,EA075,?,EA075-NA,,,,,, +99027,Na5,EA075,No inher. of real property,EA075-9,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +99028,Na6,EA075,No inher. of real property,EA075-9,,lantis1946,,1930,EthnographicAtlas_1967_p105, +99029,Na7,EA075,Equally distributed,EA075-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +99030,Na8,EA075,No inher. of real property,EA075-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +99031,Na9,EA075,No inher. of real property,EA075-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99032,Nb1,EA075,Primogeniture,EA075-4,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +99033,Nb10,EA075,?,EA075-NA,,,,,, +99034,Nb11,EA075,?,EA075-NA,,,,,, +99035,Nb12,EA075,?,EA075-NA,,,,,, +99036,Nb13,EA075,?,EA075-NA,,,,,, +99037,Nb14,EA075,?,EA075-NA,,,,,, +99038,Nb15,EA075,?,EA075-NA,,,,,, +99039,Nb16,EA075,Primogeniture,EA075-4,With reference to inheritance of dwellings,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +99040,Nb17,EA075,?,EA075-NA,,,,,, +99041,Nb18,EA075,?,EA075-NA,,,,,, +99042,Nb19,EA075,?,EA075-NA,,,,,, +99043,Nb2,EA075,No inher. of real property,EA075-9,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +99044,Nb20,EA075,?,EA075-NA,,,,,, +99045,Nb21,EA075,No inher. of real property,EA075-9,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +99046,Nb22,EA075,?,EA075-NA,Matrilineal inheritance with collective ownership,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +99047,Nb23,EA075,?,EA075-NA,,,,,, +99048,Nb24,EA075,No inher. of real property,EA075-9,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +99049,Nb25,EA075,No inher. of real property,EA075-9,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +99050,Nb26,EA075,?,EA075-NA,,,,,, +99051,Nb27,EA075,No inher. of real property,EA075-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +99052,Nb28,EA075,?,EA075-NA,,,,,, +99053,Nb29,EA075,?,EA075-NA,,,,,, +99054,Nb3,EA075,?,EA075-NA,,,,,, +99055,Nb30,EA075,?,EA075-NA,,,,,, +99056,Nb31,EA075,?,EA075-NA,,,,,, +99057,Nb32,EA075,Primogeniture,EA075-4,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +99058,Nb33,EA075,No inher. of real property,EA075-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +99059,Nb34,EA075,?,EA075-NA,,,,,, +99060,Nb35,EA075,?,EA075-NA,,,,,, +99061,Nb36,EA075,?,EA075-NA,,,,,, +99062,Nb37,EA075,No inher. of real property,EA075-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +99063,Nb38,EA075,?,EA075-NA,,,,,, +99064,Nb39,EA075,No inher. of real property,EA075-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +99065,Nb4,EA075,?,EA075-NA,,,,,, +99066,Nb5,EA075,?,EA075-NA,,,,,, +99067,Nb6,EA075,No inher. of real property,EA075-9,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +99068,Nb7,EA075,Primogeniture,EA075-4,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +99069,Nb8,EA075,No inher. of real property,EA075-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +99070,Nb9,EA075,No inher. of real property,EA075-9,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +99071,Nc1,EA075,?,EA075-NA,,,,,, +99072,Nc10,EA075,?,EA075-NA,,,,,, +99073,Nc11,EA075,Equally distributed,EA075-1,"Entry pertains to northern Yana; 'no inheritance of real property' (code ""9"") for central Yana",gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +99074,Nc12,EA075,No inher. of real property,EA075-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +99075,Nc13,EA075,?,EA075-NA,,,,,, +99076,Nc14,EA075,No inher. of real property,EA075-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +99077,Nc15,EA075,No inher. of real property,EA075-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +99078,Nc16,EA075,?,EA075-NA,,,,,, +99079,Nc17,EA075,No inher. of real property,EA075-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +99080,Nc18,EA075,No inher. of real property,EA075-9,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +99081,Nc19,EA075,No inher. of real property,EA075-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +99082,Nc2,EA075,No inher. of real property,EA075-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +99083,Nc20,EA075,No inher. of real property,EA075-9,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +99084,Nc21,EA075,No inher. of real property,EA075-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +99085,Nc22,EA075,?,EA075-NA,,,,,, +99086,Nc23,EA075,No inher. of real property,EA075-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +99087,Nc24,EA075,No inher. of real property,EA075-9,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +99088,Nc25,EA075,?,EA075-NA,,,,,, +99089,Nc26,EA075,No inher. of real property,EA075-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +99090,Nc27,EA075,?,EA075-NA,,,,,, +99091,Nc28,EA075,?,EA075-NA,,,,,, +99092,Nc29,EA075,?,EA075-NA,,,,,, +99093,Nc3,EA075,No inher. of real property,EA075-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +99094,Nc30,EA075,?,EA075-NA,,,,,, +99095,Nc31,EA075,?,EA075-NA,,,,,, +99096,Nc32,EA075,?,EA075-NA,,,,,, +99097,Nc33,EA075,?,EA075-NA,,,,,, +99098,Nc34,EA075,?,EA075-NA,,,,,, +99099,Nc4,EA075,Primogeniture,EA075-4,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +99100,Nc5,EA075,No inher. of real property,EA075-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +99101,Nc6,EA075,No inher. of real property,EA075-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +99102,Nc7,EA075,No inher. of real property,EA075-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +99103,Nc8,EA075,No inher. of real property,EA075-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +99104,Nc9,EA075,No inher. of real property,EA075-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +99105,Nd1,EA075,No inher. of real property,EA075-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +99106,Nd10,EA075,?,EA075-NA,,,,,, +99107,Nd11,EA075,No inher. of real property,EA075-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +99108,Nd12,EA075,No inher. of real property,EA075-9,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +99109,Nd13,EA075,?,EA075-NA,,,,,, +99110,Nd14,EA075,No inher. of real property,EA075-9,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +99111,Nd15,EA075,No inher. of real property,EA075-9,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +99112,Nd16,EA075,?,EA075-NA,,,,,, +99113,Nd17,EA075,?,EA075-NA,,,,,, +99114,Nd18,EA075,?,EA075-NA,,,,,, +99115,Nd19,EA075,?,EA075-NA,,,,,, +99116,Nd2,EA075,No inher. of real property,EA075-9,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +99117,Nd20,EA075,No inher. of real property,EA075-9,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +99118,Nd21,EA075,?,EA075-NA,,,,,, +99119,Nd22,EA075,No inher. of real property,EA075-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +99120,Nd23,EA075,?,EA075-NA,,,,,, +99121,Nd24,EA075,No inher. of real property,EA075-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +99122,Nd25,EA075,?,EA075-NA,,,,,, +99123,Nd26,EA075,No inher. of real property,EA075-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +99124,Nd27,EA075,No inher. of real property,EA075-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +99125,Nd28,EA075,?,EA075-NA,,,,,, +99126,Nd29,EA075,No inher. of real property,EA075-9,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +99127,Nd3,EA075,Equally distributed,EA075-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +99128,Nd30,EA075,No inher. of real property,EA075-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +99129,Nd31,EA075,?,EA075-NA,,,,,, +99130,Nd32,EA075,No inher. of real property,EA075-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +99131,Nd33,EA075,No inher. of real property,EA075-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +99132,Nd34,EA075,?,EA075-NA,"Eagle nests were individually owned, but the mode of inheritance is not reported",steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +99133,Nd35,EA075,?,EA075-NA,,,,,, +99134,Nd36,EA075,?,EA075-NA,,,,,, +99135,Nd37,EA075,?,EA075-NA,,,,,, +99136,Nd38,EA075,?,EA075-NA,,,,,, +99137,Nd39,EA075,?,EA075-NA,"""Farmed plots were inherited by a man's wife or children""",steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +99138,Nd4,EA075,No inher. of real property,EA075-9,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +99139,Nd40,EA075,No inher. of real property,EA075-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +99140,Nd41,EA075,?,EA075-NA,,,,,, +99141,Nd42,EA075,?,EA075-NA,,,,,, +99142,Nd43,EA075,No inher. of real property,EA075-9,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +99143,Nd44,EA075,?,EA075-NA,,,,,, +99144,Nd45,EA075,No inher. of real property,EA075-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +99145,Nd46,EA075,No inher. of real property,EA075-9,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +99146,Nd47,EA075,No inher. of real property,EA075-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +99147,Nd48,EA075,No inher. of real property,EA075-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +99148,Nd49,EA075,No inher. of real property,EA075-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +99149,Nd5,EA075,No inher. of real property,EA075-9,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +99150,Nd50,EA075,?,EA075-NA,"Eagle nests were owned by men and inherited ""by a son""",kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +99151,Nd51,EA075,?,EA075-NA,,,,,, +99152,Nd52,EA075,Equally distributed,EA075-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +99153,Nd53,EA075,Equally distributed,EA075-1,Springs and eagle nests were owned by males and inherited by the oldest son or nearest male relative,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +99154,Nd54,EA075,?,EA075-NA,,,,,, +99155,Nd55,EA075,Equally distributed,EA075-1,Pine nut tracts were inherited by a man's sons,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +99156,Nd56,EA075,Equally distributed,EA075-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +99157,Nd57,EA075,No inher. of real property,EA075-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +99158,Nd58,EA075,No inher. of real property,EA075-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +99159,Nd59,EA075,No inher. of real property,EA075-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +99160,Nd6,EA075,No inher. of real property,EA075-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +99161,Nd60,EA075,No inher. of real property,EA075-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +99162,Nd61,EA075,No inher. of real property,EA075-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +99163,Nd62,EA075,No inher. of real property,EA075-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +99164,Nd63,EA075,No inher. of real property,EA075-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +99165,Nd64,EA075,No inher. of real property,EA075-9,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +99166,Nd65,EA075,?,EA075-NA,,,,,, +99167,Nd66,EA075,No inher. of real property,EA075-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +99168,Nd67,EA075,No inher. of real property,EA075-9,"But eagle nests were ""transmitted from father to son""",gifford1936,,1870,EthnographicAtlas_1967_p113, +99169,Nd7,EA075,No inher. of real property,EA075-9,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +99170,Nd8,EA075,Equally distributed,EA075-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +99171,Nd9,EA075,No inher. of real property,EA075-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +99172,Ne1,EA075,No inher. of real property,EA075-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +99173,Ne10,EA075,?,EA075-NA,Possibly from Mo to Da,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +99174,Ne11,EA075,No inher. of real property,EA075-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +99175,Ne12,EA075,No inher. of real property,EA075-9,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +99176,Ne13,EA075,No inher. of real property,EA075-9,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +99177,Ne14,EA075,No inher. of real property,EA075-9,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +99178,Ne15,EA075,?,EA075-NA,Possibly from Mo to Da,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +99179,Ne16,EA075,No inher. of real property,EA075-9,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +99180,Ne17,EA075,No inher. of real property,EA075-9,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +99181,Ne18,EA075,No inher. of real property,EA075-9,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +99182,Ne19,EA075,No inher. of real property,EA075-9,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +99183,Ne2,EA075,No inher. of real property,EA075-9,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +99184,Ne20,EA075,?,EA075-NA,,,,,, +99185,Ne21,EA075,?,EA075-NA,,,,,, +99186,Ne3,EA075,No inher. of real property,EA075-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +99187,Ne4,EA075,No inher. of real property,EA075-9,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +99188,Ne5,EA075,No inher. of real property,EA075-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +99189,Ne6,EA075,?,EA075-NA,Land was owned by women and inherited from Mo to Da,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +99190,Ne7,EA075,No inher. of real property,EA075-9,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +99191,Ne8,EA075,No inher. of real property,EA075-9,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +99192,Ne9,EA075,No inher. of real property,EA075-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +99193,Nf10,EA075,?,EA075-NA,,,,,, +99194,Nf11,EA075,?,EA075-NA,,,,,, +99195,Nf12,EA075,?,EA075-NA,,,,,, +99196,Nf13,EA075,No inher. of real property,EA075-9,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99197,Nf14,EA075,?,EA075-NA,,,,,, +99198,Nf15,EA075,?,EA075-NA,,,,,, +99199,Nf2,EA075,?,EA075-NA,,,,,, +99200,Nf3,EA075,Equally distributed,EA075-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +99201,Nf4,EA075,?,EA075-NA,,,,,, +99202,Nf5,EA075,?,EA075-NA,,,,,, +99203,Nf6,EA075,No inher. of real property,EA075-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +99204,Nf7,EA075,?,EA075-NA,,,,,, +99205,Nf8,EA075,?,EA075-NA,,,,,, +99206,Nf9,EA075,?,EA075-NA,,,,,, +99207,Ng1,EA075,?,EA075-NA,,,,,, +99208,Ng10,EA075,?,EA075-NA,,,,,, +99209,Ng11,EA075,?,EA075-NA,,,,,, +99210,Ng12,EA075,?,EA075-NA,,,,,, +99211,Ng13,EA075,?,EA075-NA,,,,,, +99212,Ng14,EA075,?,EA075-NA,,,,,, +99213,Ng15,EA075,?,EA075-NA,,,,,, +99214,Ng2,EA075,?,EA075-NA,,,,,, +99215,Ng3,EA075,?,EA075-NA,,,,,, +99216,Ng4,EA075,Equally distributed,EA075-1,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +99217,Ng5,EA075,?,EA075-NA,,,,,, +99218,Ng6,EA075,?,EA075-NA,Land was probably owned collectively by matrilineages,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +99219,Ng7,EA075,?,EA075-NA,,,,,, +99220,Ng8,EA075,Equally distributed,EA075-1,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +99221,Ng9,EA075,Equally distributed,EA075-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +99222,Nh1,EA075,No inher. of real property,EA075-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +99223,Nh10,EA075,Equally distributed,EA075-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +99224,Nh11,EA075,Equally distributed,EA075-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +99225,Nh12,EA075,Equally distributed,EA075-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +99226,Nh13,EA075,Equally distributed,EA075-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +99227,Nh14,EA075,?,EA075-NA,Inheritance is mixed,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +99228,Nh15,EA075,?,EA075-NA,,,,,, +99229,Nh16,EA075,Equally distributed,EA075-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99230,Nh17,EA075,Equally distributed,EA075-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +99231,Nh18,EA075,?,EA075-NA,Matrilineal inheritance within the lineage,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99232,Nh19,EA075,No inher. of real property,EA075-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +99233,Nh2,EA075,?,EA075-NA,,,,,, +99234,Nh20,EA075,No inher. of real property,EA075-9,,gifford1931,,1860,EthnographicAtlas_1967_p117, +99235,Nh21,EA075,?,EA075-NA,,,,,, +99236,Nh22,EA075,No inher. of real property,EA075-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +99237,Nh23,EA075,No inher. of real property,EA075-9,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +99238,Nh24,EA075,No inher. of real property,EA075-9,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +99239,Nh25,EA075,Equally distributed,EA075-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +99240,Nh26,EA075,?,EA075-NA,,,,,, +99241,Nh27,EA075,?,EA075-NA,,,,,, +99242,Nh3,EA075,?,EA075-NA,,,,,, +99243,Nh4,EA075,?,EA075-NA,A man's land is inherited by his daughters,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +99244,Nh5,EA075,Equally distributed,EA075-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +99245,Nh6,EA075,?,EA075-NA,,,,,, +99246,Nh7,EA075,?,EA075-NA,,,,,, +99247,Nh8,EA075,?,EA075-NA,,,,,, +99248,Nh9,EA075,?,EA075-NA,,,,,, +99249,Ni1,EA075,Equally distributed,EA075-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +99250,Ni2,EA075,Equally distributed,EA075-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +99251,Ni3,EA075,Primogeniture,EA075-4,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +99252,Ni4,EA075,No inher. of real property,EA075-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +99253,Ni5,EA075,No inher. of real property,EA075-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +99254,Ni6,EA075,Equally distributed,EA075-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +99255,Ni7,EA075,?,EA075-NA,,,,,, +99256,Ni8,EA075,?,EA075-NA,,,,,, +99257,Ni9,EA075,?,EA075-NA,,,,,, +99258,Nj1,EA075,Ultimogeniture,EA075-3,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99259,Nj10,EA075,Equally distributed,EA075-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99260,Nj11,EA075,?,EA075-NA,,,,,, +99261,Nj12,EA075,?,EA075-NA,,,,,, +99262,Nj13,EA075,?,EA075-NA,,,,,, +99263,Nj14,EA075,?,EA075-NA,,,,,, +99264,Nj2,EA075,Primogeniture,EA075-4,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +99265,Nj3,EA075,Equally distributed,EA075-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +99266,Nj4,EA075,?,EA075-NA,,,,,, +99267,Nj5,EA075,?,EA075-NA,,,,,, +99268,Nj6,EA075,?,EA075-NA,,,,,, +99269,Nj7,EA075,Equally distributed,EA075-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99270,Nj8,EA075,?,EA075-NA,,,,,, +99271,Nj9,EA075,Equally distributed,EA075-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +99272,Sa1,EA075,?,EA075-NA,,,,,, +99273,Sa10,EA075,?,EA075-NA,,,,,, +99274,Sa11,EA075,?,EA075-NA,,,,,, +99275,Sa12,EA075,?,EA075-NA,,,,,, +99276,Sa13,EA075,Equally distributed,EA075-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +99277,Sa14,EA075,?,EA075-NA,,,,,, +99278,Sa15,EA075,?,EA075-NA,,,,,, +99279,Sa16,EA075,?,EA075-NA,,,,,, +99280,Sa17,EA075,?,EA075-NA,,,,,, +99281,Sa2,EA075,?,EA075-NA,,,,,, +99282,Sa3,EA075,Equally distributed,EA075-1,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +99283,Sa4,EA075,Primogeniture,EA075-4,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +99284,Sa5,EA075,No inher. of real property,EA075-9,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +99285,Sa6,EA075,Equally distributed,EA075-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +99286,Sa7,EA075,?,EA075-NA,,,,,, +99287,Sa8,EA075,Equally distributed,EA075-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +99288,Sa9,EA075,?,EA075-NA,,,,,, +99289,Sb1,EA075,?,EA075-NA,Probably matrilineal,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +99290,Sb2,EA075,Equally distributed,EA075-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +99291,Sb3,EA075,?,EA075-NA,,,,,, +99292,Sb4,EA075,No inher. of real property,EA075-9,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +99293,Sb5,EA075,?,EA075-NA,,,,,, +99294,Sb6,EA075,?,EA075-NA,,,,,, +99295,Sb7,EA075,?,EA075-NA,,,,,, +99296,Sb8,EA075,?,EA075-NA,,,,,, +99297,Sb9,EA075,Equally distributed,EA075-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +99298,Sc1,EA075,No inher. of real property,EA075-9,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +99299,Sc10,EA075,?,EA075-NA,,,,,, +99300,Sc11,EA075,?,EA075-NA,,,,,, +99301,Sc12,EA075,?,EA075-NA,,,,,, +99302,Sc13,EA075,?,EA075-NA,,,,,, +99303,Sc14,EA075,?,EA075-NA,,,,,, +99304,Sc15,EA075,?,EA075-NA,,,,,, +99305,Sc16,EA075,?,EA075-NA,,,,,, +99306,Sc17,EA075,?,EA075-NA,,,,,, +99307,Sc18,EA075,No inher. of real property,EA075-9,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +99308,Sc2,EA075,Equally distributed,EA075-1,,leedsnd,,1950,EthnographicAtlas_1967_p121, +99309,Sc3,EA075,?,EA075-NA,,,,,, +99310,Sc4,EA075,No inher. of real property,EA075-9,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +99311,Sc5,EA075,?,EA075-NA,,,,,, +99312,Sc6,EA075,?,EA075-NA,,,,,, +99313,Sc7,EA075,?,EA075-NA,,,,,, +99314,Sc8,EA075,?,EA075-NA,,,,,, +99315,Sc9,EA075,?,EA075-NA,,,,,, +99316,Sd1,EA075,No inher. of real property,EA075-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99317,Sd2,EA075,?,EA075-NA,,,,,, +99318,Sd3,EA075,?,EA075-NA,,,,,, +99319,Sd4,EA075,?,EA075-NA,,,,,, +99320,Sd5,EA075,?,EA075-NA,,,,,, +99321,Sd6,EA075,?,EA075-NA,,,,,, +99322,Sd7,EA075,?,EA075-NA,,,,,, +99323,Sd8,EA075,?,EA075-NA,,,,,, +99324,Sd9,EA075,No inher. of real property,EA075-9,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99325,Se1,EA075,No inher. of real property,EA075-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +99326,Se10,EA075,?,EA075-NA,,,,,, +99327,Se11,EA075,?,EA075-NA,,,,,, +99328,Se12,EA075,?,EA075-NA,,,,,, +99329,Se2,EA075,No inher. of real property,EA075-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +99330,Se3,EA075,No inher. of real property,EA075-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +99331,Se4,EA075,No inher. of real property,EA075-9,,fejos1943,,1940,EthnographicAtlas_1967_p121, +99332,Se5,EA075,No inher. of real property,EA075-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +99333,Se6,EA075,?,EA075-NA,,,,,, +99334,Se7,EA075,?,EA075-NA,,,,,, +99335,Se8,EA075,No inher. of real property,EA075-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +99336,Se9,EA075,No inher. of real property,EA075-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +99337,Sf1,EA075,No inher. of real property,EA075-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +99338,Sf2,EA075,Equally distributed,EA075-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +99339,Sf3,EA075,?,EA075-NA,,,,,, +99340,Sf4,EA075,?,EA075-NA,,,,,, +99341,Sf5,EA075,No inher. of real property,EA075-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +99342,Sf6,EA075,Equally distributed,EA075-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +99343,Sf7,EA075,?,EA075-NA,,,,,, +99344,Sf8,EA075,?,EA075-NA,,,,,, +99345,Sf9,EA075,?,EA075-NA,,,,,, +99346,Sg1,EA075,No inher. of real property,EA075-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +99347,Sg2,EA075,Equally distributed,EA075-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99348,Sg3,EA075,No inher. of real property,EA075-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +99349,Sg4,EA075,No inher. of real property,EA075-9,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +99350,Sg5,EA075,No inher. of real property,EA075-9,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99351,Sh1,EA075,No inher. of real property,EA075-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +99352,Sh2,EA075,?,EA075-NA,,,,,, +99353,Sh3,EA075,No inher. of real property,EA075-9,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +99354,Sh4,EA075,?,EA075-NA,,,,,, +99355,Sh5,EA075,No inher. of real property,EA075-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +99356,Sh6,EA075,?,EA075-NA,,,,,, +99357,Sh7,EA075,Equally distributed,EA075-1,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +99358,Sh8,EA075,No inher. of real property,EA075-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +99359,Sh9,EA075,No inher. of real property,EA075-9,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +99360,Si1,EA075,?,EA075-NA,,,,,, +99361,Si10,EA075,?,EA075-NA,,,,,, +99362,Si2,EA075,No inher. of real property,EA075-9,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +99363,Si3,EA075,?,EA075-NA,,,,,, +99364,Si4,EA075,No inher. of real property,EA075-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +99365,Si5,EA075,No inher. of real property,EA075-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +99366,Si6,EA075,?,EA075-NA,,,,,, +99367,Si7,EA075,?,EA075-NA,,,,,, +99368,Si8,EA075,?,EA075-NA,,,,,, +99369,Si9,EA075,?,EA075-NA,,,,,, +99370,Sj1,EA075,?,EA075-NA,,,,,, +99371,Sj10,EA075,?,EA075-NA,,,,,, +99372,Sj11,EA075,No inher. of real property,EA075-9,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +99373,Sj2,EA075,?,EA075-NA,,,,,, +99374,Sj3,EA075,No inher. of real property,EA075-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +99375,Sj4,EA075,No inher. of real property,EA075-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +99376,Sj5,EA075,No inher. of real property,EA075-9,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +99377,Sj6,EA075,No inher. of real property,EA075-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99378,Sj7,EA075,?,EA075-NA,,,,,, +99379,Sj8,EA075,?,EA075-NA,,,,,, +99380,Sj9,EA075,?,EA075-NA,,,,,, +99381,ch12,EA075,Ultimogeniture,EA075-3,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +99382,ch13,EA075,Equally distributed,EA075-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +99383,ch14,EA075,Ultimogeniture,EA075-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +99384,ch15,EA075,Equally distributed,EA075-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +99385,ch16,EA075,Primogeniture,EA075-4,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +99386,ch17,EA075,Ultimogeniture,EA075-3,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +99387,ch18,EA075,Equally distributed,EA075-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +99388,ch19,EA075,Equally distributed,EA075-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +99389,ch20,EA075,Ultimogeniture,EA075-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +99390,ch21,EA075,Primogeniture,EA075-4,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +99391,ch22,EA075,Equally distributed,EA075-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +99392,ch23,EA075,Equally distributed,EA075-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +99393,ch24,EA075,No inher. of real property,EA075-9,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +99394,ch25,EA075,Ultimogeniture,EA075-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +99395,ch26,EA075,Best qualified,EA075-2,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +99396,ch27,EA075,Ultimogeniture,EA075-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +99397,ch28,EA075,Equally distributed,EA075-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +99398,ec12,EA075,No inher. of real property,EA075-9,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +99399,ec13,EA075,No inher. of real property,EA075-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +99400,ec14,EA075,No inher. of real property,EA075-9,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +99401,ec15,EA075,No inher. of real property,EA075-9,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +99402,ec16,EA075,No inher. of real property,EA075-9,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +99403,ec17,EA075,No inher. of real property,EA075-9,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +99404,ec18,EA075,No inher. of real property,EA075-9,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +99405,ec19,EA075,No inher. of real property,EA075-9,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +99406,ec20,EA075,No inher. of real property,EA075-9,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +99407,ec21,EA075,No inher. of real property,EA075-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +99408,Aa1,EA076,No inher. of mov. property,EA076-1,"Murdock (1963a) coded this as 'inheritance by patrilineal heirs who take precedence over sons' (EA076 code ""7""), commenting: ""Entry follows Wilhelm; older sources report that most of a man's property was buried with him but that a brother inherited his bow and arrows."" In the EA the column is coded O, 'no inheritance of movable property' (EA076 code ""1"")",biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +99409,Aa2,EA076,Children,EA076-5,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +99410,Aa3,EA076,Patrilineal by sons,EA076-7,"For livestock; 'inheritance by children of either sex' (EA076 code ""5"") and 'equal distribution' (EA077 code ""1"") for other moveable property",hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +99411,Aa4,EA076,Patrilineal by sons,EA076-7,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +99412,Aa5,EA076,Patrilineal by sons,EA076-7,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +99413,Aa6,EA076,Patrilineal by sons,EA076-7,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +99414,Aa7,EA076,No inher. of mov. property,EA076-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +99415,Aa8,EA076,?,EA076-NA,,,,,, +99416,Aa9,EA076,Patrilineal by heirs,EA076-6,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +99417,Ab1,EA076,Matrilineal by heirs,EA076-3,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +99418,Ab10,EA076,Patrilineal by sons,EA076-7,,hunter1936,,1936,EthnographicAtlas_1967_p65, +99419,Ab11,EA076,Patrilineal by sons,EA076-7,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +99420,Ab12,EA076,Patrilineal by sons,EA076-7,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +99421,Ab13,EA076,Patrilineal by sons,EA076-7,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +99422,Ab14,EA076,Patrilineal by heirs,EA076-6,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +99423,Ab15,EA076,Patrilineal by sons,EA076-7,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +99424,Ab16,EA076,?,EA076-NA,,,,,, +99425,Ab17,EA076,Patrilineal by sons,EA076-7,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +99426,Ab18,EA076,Patrilineal by sons,EA076-7,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +99427,Ab19,EA076,Matrilineal by heirs,EA076-3,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +99428,Ab2,EA076,Patrilineal by sons,EA076-7,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +99429,Ab20,EA076,Matrilineal by sister's sons,EA076-2,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +99430,Ab21a,EA076,Patrilineal by heirs,EA076-6,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +99431,Ab21b,EA076,?,EA076-NA,,,,,, +99432,Ab22,EA076,?,EA076-NA,,,,,, +99433,Ab3,EA076,Patrilineal by sons,EA076-7,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +99434,Ab4,EA076,Patrilineal by sons,EA076-7,,junod1927,,1920,EthnographicAtlas_1967_p65, +99435,Ab5,EA076,Matrilineal by sister's sons,EA076-2,Precise distribution unreported,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +99436,Ab6,EA076,Patrilineal by sons,EA076-7,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +99437,Ab7,EA076,Matrilineal by sister's sons,EA076-2,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +99438,Ab8,EA076,Patrilineal by sons,EA076-7,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +99439,Ab9,EA076,Patrilineal by sons,EA076-7,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +99440,Ac1,EA076,Matrilineal by heirs,EA076-3,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +99441,Ac10,EA076,Matrilineal by heirs,EA076-3,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +99442,Ac11,EA076,Matrilineal by sister's sons,EA076-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +99443,Ac12,EA076,Matrilineal by sister's sons,EA076-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +99444,Ac13,EA076,Matrilineal by sister's sons,EA076-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +99445,Ac14,EA076,Matrilineal by heirs,EA076-3,"Entry follows Mertens and Van Wing; Ihle and Van de Velde report 'matrilineal by sister's son(s)' (EA076 code ""2"") and 'primogeniture' (EA077 code ""4"")",brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +99446,Ac15,EA076,Matrilineal by sister's sons,EA076-2,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +99447,Ac16,EA076,?,EA076-NA,Inheritance is matrilineal,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +99448,Ac17,EA076,Matrilineal by heirs,EA076-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +99449,Ac18,EA076,Matrilineal by heirs,EA076-3,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +99450,Ac19,EA076,Matrilineal by heirs,EA076-3,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +99451,Ac2,EA076,Matrilineal by sister's sons,EA076-2,"Entry follows Sousberge; Toirday and Joyce report 'matrilineal by heirs' (EA076 code ""3"") and 'primogeniture' (EA077 code ""4"")",sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +99452,Ac20,EA076,Matrilineal by heirs,EA076-3,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +99453,Ac21,EA076,Matrilineal by sister's sons,EA076-2,"Entries follows Decker; Torday reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +99454,Ac22,EA076,Matrilineal by heirs,EA076-3,,mertens1935,,1930,EthnographicAtlas_1967_p65, +99455,Ac23,EA076,Matrilineal by heirs,EA076-3,Presumably matrilineal,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +99456,Ac24,EA076,Patrilineal by sons,EA076-7,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +99457,Ac25,EA076,Matrilineal by heirs,EA076-3,All property escheats to the head of the matrilineage,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +99458,Ac26,EA076,?,EA076-NA,,,,,, +99459,Ac27,EA076,Matrilineal by sister's sons,EA076-2,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +99460,Ac28,EA076,Matrilineal by heirs,EA076-3,"Alternatively 'patrilineal by heirs' (EA076 code ""6"") and 'primogeniture' (EA077 code ""4"")",baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +99461,Ac29,EA076,Matrilineal by heirs,EA076-3,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +99462,Ac3,EA076,Matrilineal by heirs,EA076-3,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +99463,Ac30,EA076,Matrilineal by heirs,EA076-3,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +99464,Ac31,EA076,Matrilineal by heirs,EA076-3,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +99465,Ac32,EA076,Matrilineal by heirs,EA076-3,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +99466,Ac33,EA076,Matrilineal by heirs,EA076-3,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +99467,Ac34,EA076,Matrilineal by heirs,EA076-3,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +99468,Ac35,EA076,Matrilineal by heirs,EA076-3,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +99469,Ac36,EA076,Patrilineal by sons,EA076-7,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +99470,Ac37,EA076,Matrilineal by heirs,EA076-3,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +99471,Ac38,EA076,Matrilineal by heirs,EA076-3,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +99472,Ac39,EA076,Matrilineal by sister's sons,EA076-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +99473,Ac4,EA076,Matrilineal by heirs,EA076-3,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +99474,Ac40,EA076,Matrilineal by heirs,EA076-3,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +99475,Ac41,EA076,?,EA076-NA,Matrilineal,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +99476,Ac42,EA076,Matrilineal by sister's sons,EA076-2,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +99477,Ac43,EA076,?,EA076-NA,,,,,, +99478,Ac5,EA076,Matrilineal by heirs,EA076-3,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +99479,Ac6,EA076,Matrilineal by heirs,EA076-3,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +99480,Ac7,EA076,Matrilineal by heirs,EA076-3,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +99481,Ac8,EA076,Matrilineal by heirs,EA076-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +99482,Ac9,EA076,Patrilineal by sons,EA076-7,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +99483,Ad1,EA076,Children,EA076-5,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +99484,Ad10,EA076,Patrilineal by sons,EA076-7,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +99485,Ad11,EA076,Patrilineal by sons,EA076-7,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +99486,Ad12,EA076,Patrilineal by sons,EA076-7,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +99487,Ad13,EA076,Patrilineal by sons,EA076-7,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +99488,Ad14,EA076,Children,EA076-5,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +99489,Ad15,EA076,Patrilineal by heirs,EA076-6,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +99490,Ad16,EA076,Patrilineal by heirs,EA076-6,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +99491,Ad17,EA076,Patrilineal by heirs,EA076-6,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +99492,Ad18,EA076,Matrilineal by heirs,EA076-3,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +99493,Ad19,EA076,?,EA076-NA,"Matrilineal, but sources conflict as to preferred heirs",fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +99494,Ad2,EA076,Patrilineal by sons,EA076-7,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +99495,Ad20,EA076,Patrilineal by sons,EA076-7,But only by sons of wives obtained by a bride-price,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +99496,Ad21,EA076,?,EA076-NA,Matrilineal,maurice193538,,1930,EthnographicAtlas_1967_p69, +99497,Ad22,EA076,?,EA076-NA,"Patrilineal, but matrilineal if no bride-prices was paid for mother",abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +99498,Ad23,EA076,Patrilineal by sons,EA076-7,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +99499,Ad24,EA076,Patrilineal by sons,EA076-7,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +99500,Ad25,EA076,Matrilineal by heirs,EA076-3,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +99501,Ad26,EA076,Patrilineal by sons,EA076-7,,sick1916,,1910,EthnographicAtlas_1967_p69, +99502,Ad27,EA076,Matrilineal by sister's sons,EA076-2,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +99503,Ad28,EA076,Matrilineal by sister's sons,EA076-2,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +99504,Ad29,EA076,"Children, less for daughters",EA076-4,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +99505,Ad3,EA076,Patrilineal by sons,EA076-7,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +99506,Ad30,EA076,Matrilineal by heirs,EA076-3,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +99507,Ad31,EA076,Matrilineal by sister's sons,EA076-2,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +99508,Ad32,EA076,Patrilineal by sons,EA076-7,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +99509,Ad33,EA076,Patrilineal by sons,EA076-7,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +99510,Ad34,EA076,Patrilineal by sons,EA076-7,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +99511,Ad35,EA076,Patrilineal by sons,EA076-7,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +99512,Ad36,EA076,?,EA076-NA,"By brothers according one source, by eldest sons of each wife according to another",baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +99513,Ad37,EA076,Patrilineal by sons,EA076-7,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +99514,Ad38,EA076,Patrilineal by heirs,EA076-6,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +99515,Ad39,EA076,Patrilineal by sons,EA076-7,,gray1963,,1950,EthnographicAtlas_1967_p69, +99516,Ad4,EA076,Patrilineal by sons,EA076-7,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +99517,Ad40,EA076,Patrilineal by sons,EA076-7,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +99518,Ad41,EA076,Patrilineal by sons,EA076-7,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +99519,Ad42,EA076,Patrilineal by sons,EA076-7,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +99520,Ad43,EA076,?,EA076-NA,,,,,, +99521,Ad44,EA076,?,EA076-NA,,,,,, +99522,Ad45,EA076,Patrilineal by sons,EA076-7,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +99523,Ad46,EA076,Patrilineal by sons,EA076-7,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +99524,Ad47,EA076,Patrilineal by sons,EA076-7,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +99525,Ad48,EA076,?,EA076-NA,,,,,, +99526,Ad49,EA076,Patrilineal by sons,EA076-7,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +99527,Ad5,EA076,Patrilineal by sons,EA076-7,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +99528,Ad50,EA076,Matrilineal by sister's sons,EA076-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +99529,Ad51,EA076,?,EA076-NA,,,,,, +99530,Ad6,EA076,Patrilineal by heirs,EA076-6,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +99531,Ad7,EA076,Patrilineal by sons,EA076-7,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +99532,Ad8,EA076,"Children, less for daughters",EA076-4,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +99533,Ad9,EA076,Patrilineal by sons,EA076-7,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +99534,Ae1,EA076,Patrilineal by sons,EA076-7,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +99535,Ae10,EA076,Patrilineal by sons,EA076-7,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +99536,Ae11,EA076,?,EA076-NA,,,,,, +99537,Ae12,EA076,Patrilineal by sons,EA076-7,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +99538,Ae13,EA076,?,EA076-NA,Patrilineal,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +99539,Ae14,EA076,Patrilineal by sons,EA076-7,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +99540,Ae15,EA076,Patrilineal by sons,EA076-7,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +99541,Ae16,EA076,Patrilineal by heirs,EA076-6,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +99542,Ae17,EA076,Patrilineal by heirs,EA076-6,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +99543,Ae18,EA076,Patrilineal by sons,EA076-7,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +99544,Ae19,EA076,?,EA076-NA,,,,,, +99545,Ae2,EA076,?,EA076-NA,,,,,, +99546,Ae20,EA076,Patrilineal by heirs,EA076-6,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +99547,Ae21,EA076,Patrilineal by sons,EA076-7,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +99548,Ae22,EA076,Patrilineal by sons,EA076-7,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +99549,Ae23,EA076,?,EA076-NA,Mixed patrilineal and matrilineal,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +99550,Ae24,EA076,Patrilineal by heirs,EA076-6,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +99551,Ae25,EA076,Patrilineal by sons,EA076-7,"Entry follows Torday and Joyce; Heusch reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +99552,Ae26,EA076,Patrilineal by heirs,EA076-6,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +99553,Ae27,EA076,?,EA076-NA,,,,,, +99554,Ae28,EA076,Patrilineal by sons,EA076-7,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +99555,Ae29,EA076,Patrilineal by heirs,EA076-6,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +99556,Ae3,EA076,Patrilineal by sons,EA076-7,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +99557,Ae30,EA076,Children,EA076-5,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +99558,Ae31,EA076,?,EA076-NA,,,,,, +99559,Ae32,EA076,Patrilineal by sons,EA076-7,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +99560,Ae33,EA076,Patrilineal by heirs,EA076-6,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +99561,Ae34,EA076,?,EA076-NA,Inheritance is patrilineal,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +99562,Ae35,EA076,Patrilineal by heirs,EA076-6,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +99563,Ae36,EA076,?,EA076-NA,Inheritance is patrilineal,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +99564,Ae37,EA076,Patrilineal by heirs,EA076-6,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +99565,Ae38,EA076,Matrilineal by heirs,EA076-3,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +99566,Ae39,EA076,No inher. of mov. property,EA076-1,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +99567,Ae4,EA076,Patrilineal by heirs,EA076-6,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +99568,Ae40,EA076,Patrilineal by sons,EA076-7,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +99569,Ae41,EA076,Patrilineal by heirs,EA076-6,"Patrilineal, by brothers and sons",andersson1953,,1940,EthnographicAtlas_1967_p69, +99570,Ae42,EA076,Patrilineal by sons,EA076-7,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +99571,Ae43,EA076,Patrilineal by sons,EA076-7,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +99572,Ae44,EA076,Matrilineal by heirs,EA076-3,Entry follows Gil-Delgado; Tessmann reports patrilineal inheritance with matrilineal traces,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +99573,Ae45,EA076,Patrilineal by sons,EA076-7,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +99574,Ae46,EA076,Matrilineal by heirs,EA076-3,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +99575,Ae47,EA076,Patrilineal by sons,EA076-7,"But the source, Oertzen, elsewhere mentions inheritance by sisters' sons",oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +99576,Ae48,EA076,?,EA076-NA,,,,,, +99577,Ae49,EA076,Patrilineal by sons,EA076-7,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +99578,Ae5,EA076,Patrilineal by sons,EA076-7,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +99579,Ae50,EA076,Patrilineal by sons,EA076-7,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +99580,Ae51,EA076,Patrilineal by sons,EA076-7,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +99581,Ae52,EA076,Patrilineal by sons,EA076-7,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +99582,Ae53,EA076,Patrilineal by sons,EA076-7,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +99583,Ae54,EA076,Matrilineal by sister's sons,EA076-2,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +99584,Ae55,EA076,Patrilineal by sons,EA076-7,Patrilineal,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +99585,Ae56,EA076,?,EA076-NA,,,,,, +99586,Ae57,EA076,Patrilineal by heirs,EA076-6,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +99587,Ae58,EA076,?,EA076-NA,,,,,, +99588,Ae59,EA076,?,EA076-NA,,,,,, +99589,Ae6,EA076,Patrilineal by heirs,EA076-6,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +99590,Ae7,EA076,Patrilineal by sons,EA076-7,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +99591,Ae8,EA076,Patrilineal by sons,EA076-7,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +99592,Ae9,EA076,?,EA076-NA,,,,,, +99593,Af1,EA076,Patrilineal by sons,EA076-7,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +99594,Af10,EA076,Patrilineal by sons,EA076-7,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +99595,Af11,EA076,Patrilineal by heirs,EA076-6,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +99596,Af12,EA076,Matrilineal by heirs,EA076-3,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +99597,Af13,EA076,Patrilineal by heirs,EA076-6,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +99598,Af14,EA076,?,EA076-NA,"Formerly 'matrilineal by a sister's son(s)' (EA074 code ""2"")",hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +99599,Af15,EA076,Patrilineal by sons,EA076-7,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +99600,Af16,EA076,Patrilineal by heirs,EA076-6,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +99601,Af17,EA076,?,EA076-NA,,,,,, +99602,Af18,EA076,?,EA076-NA,,,,,, +99603,Af19,EA076,Children,EA076-5,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +99604,Af2,EA076,Patrilineal by sons,EA076-7,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +99605,Af20,EA076,Patrilineal by sons,EA076-7,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +99606,Af21,EA076,?,EA076-NA,,,,,, +99607,Af22,EA076,Patrilineal by sons,EA076-7,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +99608,Af23,EA076,?,EA076-NA,Mixed but with a matrilineal emphasis,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +99609,Af24,EA076,Patrilineal by sons,EA076-7,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +99610,Af25,EA076,?,EA076-NA,,,,,, +99611,Af26,EA076,?,EA076-NA,Patrilineal or matrilineal depending on mode of marriage,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +99612,Af27,EA076,Patrilineal by heirs,EA076-6,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +99613,Af28,EA076,?,EA076-NA,Patrilineal with local variations regarding participation of brothers and sons,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +99614,Af29,EA076,Patrilineal by sons,EA076-7,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +99615,Af3,EA076,Matrilineal by heirs,EA076-3,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +99616,Af30,EA076,Patrilineal by heirs,EA076-6,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +99617,Af31,EA076,Patrilineal by sons,EA076-7,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +99618,Af32,EA076,Patrilineal by heirs,EA076-6,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99619,Af33,EA076,Patrilineal by heirs,EA076-6,But Pe for property acquired rather than inherited by deceased,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99620,Af34,EA076,Patrilineal by sons,EA076-7,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99621,Af35,EA076,?,EA076-NA,,,,,, +99622,Af36,EA076,Matrilineal by heirs,EA076-3,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +99623,Af37,EA076,Patrilineal by heirs,EA076-6,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +99624,Af38,EA076,Matrilineal by heirs,EA076-3,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +99625,Af39,EA076,Matrilineal by sister's sons,EA076-2,"But Kobben, as opposed to the earlier sources, reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +99626,Af4,EA076,Matrilineal by heirs,EA076-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +99627,Af40,EA076,Matrilineal by heirs,EA076-3,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +99628,Af41,EA076,Matrilineal by heirs,EA076-3,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +99629,Af42,EA076,Matrilineal by heirs,EA076-3,But sons inherit some property,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +99630,Af43,EA076,Patrilineal by heirs,EA076-6,"But Daniell reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +99631,Af44,EA076,Matrilineal by heirs,EA076-3,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +99632,Af45,EA076,Matrilineal by heirs,EA076-3,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +99633,Af46,EA076,Patrilineal by heirs,EA076-6,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +99634,Af47,EA076,Patrilineal by sons,EA076-7,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +99635,Af48,EA076,?,EA076-NA,,,,,, +99636,Af49,EA076,Patrilineal by sons,EA076-7,,schwab1947,,1940,EthnographicAtlas_1967_p73, +99637,Af5,EA076,Patrilineal by heirs,EA076-6,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +99638,Af50,EA076,Patrilineal by heirs,EA076-6,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +99639,Af51,EA076,Patrilineal by sons,EA076-7,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +99640,Af52,EA076,Patrilineal by heirs,EA076-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +99641,Af53,EA076,Patrilineal by heirs,EA076-6,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +99642,Af54,EA076,Patrilineal by sons,EA076-7,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +99643,Af55,EA076,?,EA076-NA,,,,,, +99644,Af56,EA076,Patrilineal by sons,EA076-7,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +99645,Af57,EA076,Patrilineal by sons,EA076-7,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +99646,Af58,EA076,Patrilineal by heirs,EA076-6,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +99647,Af6,EA076,Patrilineal by heirs,EA076-6,But Pe for property acquired rather than inherited by deceased,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +99648,Af7,EA076,Patrilineal by heirs,EA076-6,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +99649,Af8,EA076,"Children, less for daughters",EA076-4,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +99650,Af9,EA076,Matrilineal by heirs,EA076-3,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +99651,Ag1,EA076,Patrilineal by heirs,EA076-6,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +99652,Ag10,EA076,Patrilineal by heirs,EA076-6,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +99653,Ag11,EA076,Matrilineal by sister's sons,EA076-2,"For livestock and money; 'inheritance by children of either sex' (EA076 code ""5"") and 'equal distribution' (EA077 code ""1"") for other moveable property",charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +99654,Ag12,EA076,Patrilineal by heirs,EA076-6,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +99655,Ag13,EA076,Patrilineal by sons,EA076-7,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +99656,Ag14,EA076,?,EA076-NA,,,,,, +99657,Ag15,EA076,Patrilineal by heirs,EA076-6,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +99658,Ag16,EA076,Patrilineal by sons,EA076-7,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +99659,Ag17,EA076,?,EA076-NA,,,,,, +99660,Ag18,EA076,Matrilineal by heirs,EA076-3,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +99661,Ag19,EA076,Patrilineal by heirs,EA076-6,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +99662,Ag2,EA076,Patrilineal by heirs,EA076-6,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +99663,Ag20,EA076,Patrilineal by heirs,EA076-6,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +99664,Ag21,EA076,Matrilineal by heirs,EA076-3,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +99665,Ag22,EA076,Patrilineal by sons,EA076-7,But matrilineal until recently,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +99666,Ag23,EA076,Patrilineal by sons,EA076-7,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +99667,Ag24,EA076,Patrilineal by sons,EA076-7,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +99668,Ag25,EA076,"Children, less for daughters",EA076-4,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +99669,Ag26,EA076,Patrilineal by sons,EA076-7,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +99670,Ag27,EA076,"Children, less for daughters",EA076-4,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +99671,Ag28,EA076,?,EA076-NA,,,,,, +99672,Ag29,EA076,Patrilineal by sons,EA076-7,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +99673,Ag3,EA076,Patrilineal by heirs,EA076-6,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +99674,Ag30,EA076,Patrilineal by heirs,EA076-6,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +99675,Ag31,EA076,Patrilineal by heirs,EA076-6,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +99676,Ag32,EA076,Patrilineal by heirs,EA076-6,"Entry follows Vendeix; Delafosse reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +99677,Ag33,EA076,Matrilineal by sister's sons,EA076-2,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +99678,Ag34,EA076,Matrilineal by heirs,EA076-3,The sources are in some conflict on rules of inheritance,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +99679,Ag35,EA076,Matrilineal by heirs,EA076-3,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +99680,Ag36,EA076,?,EA076-NA,,,,,, +99681,Ag37,EA076,Patrilineal by heirs,EA076-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +99682,Ag38,EA076,Patrilineal by heirs,EA076-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +99683,Ag39,EA076,Matrilineal by sister's sons,EA076-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +99684,Ag4,EA076,Patrilineal by heirs,EA076-6,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for property acquired rather than inherited by deceased",fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +99685,Ag40,EA076,Patrilineal by heirs,EA076-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +99686,Ag41,EA076,?,EA076-NA,Brothers and sons share in inheritance,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +99687,Ag42,EA076,Patrilineal by heirs,EA076-6,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +99688,Ag43,EA076,Matrilineal by heirs,EA076-3,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +99689,Ag44,EA076,?,EA076-NA,,,,,, +99690,Ag45,EA076,?,EA076-NA,,,,,, +99691,Ag46,EA076,?,EA076-NA,,,,,, +99692,Ag47,EA076,Patrilineal by sons,EA076-7,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +99693,Ag48,EA076,Patrilineal by sons,EA076-7,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +99694,Ag49,EA076,Patrilineal by heirs,EA076-6,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +99695,Ag5,EA076,Matrilineal by heirs,EA076-3,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +99696,Ag50,EA076,Patrilineal by heirs,EA076-6,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +99697,Ag51,EA076,Patrilineal by heirs,EA076-6,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +99698,Ag52,EA076,Patrilineal by heirs,EA076-6,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +99699,Ag53,EA076,Patrilineal by sons,EA076-7,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +99700,Ag54,EA076,Patrilineal by sons,EA076-7,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +99701,Ag6,EA076,Patrilineal by sons,EA076-7,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +99702,Ag7,EA076,"Children, less for daughters",EA076-4,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +99703,Ag8,EA076,Matrilineal by heirs,EA076-3,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +99704,Ag9,EA076,Patrilineal by heirs,EA076-6,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +99705,Ah1,EA076,Patrilineal by sons,EA076-7,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99706,Ah10,EA076,Patrilineal by sons,EA076-7,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +99707,Ah11,EA076,Patrilineal by heirs,EA076-6,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +99708,Ah12,EA076,Patrilineal by sons,EA076-7,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +99709,Ah13,EA076,Patrilineal by sons,EA076-7,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +99710,Ah14,EA076,Patrilineal by heirs,EA076-6,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +99711,Ah15,EA076,Patrilineal by heirs,EA076-6,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +99712,Ah16,EA076,Patrilineal by sons,EA076-7,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +99713,Ah17,EA076,Patrilineal by sons,EA076-7,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +99714,Ah18,EA076,Patrilineal by sons,EA076-7,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +99715,Ah19,EA076,Patrilineal by sons,EA076-7,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +99716,Ah2,EA076,Patrilineal by sons,EA076-7,"Matrilineal by a sister's son(s)' (EA076 code ""2"") or 'patrilineal by son(s)' (EA076 code ""7""), both with 'equal distribution' (EA077 code ""1""), depending on residence",meek1931a,,1920,EthnographicAtlas_1967_p77, +99717,Ah20,EA076,Patrilineal by sons,EA076-7,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +99718,Ah21,EA076,?,EA076-NA,,,,,, +99719,Ah22,EA076,Patrilineal by sons,EA076-7,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +99720,Ah23,EA076,Matrilineal by sister's sons,EA076-2,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +99721,Ah24,EA076,Patrilineal by heirs,EA076-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +99722,Ah25,EA076,?,EA076-NA,,,,,, +99723,Ah26,EA076,Matrilineal by sister's sons,EA076-2,"Entry follows Meek; another source reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +99724,Ah27,EA076,Patrilineal by heirs,EA076-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +99725,Ah28,EA076,Matrilineal by sister's sons,EA076-2,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +99726,Ah29,EA076,Matrilineal by heirs,EA076-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +99727,Ah3,EA076,Patrilineal by sons,EA076-7,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +99728,Ah30,EA076,Matrilineal by heirs,EA076-3,,meek1931b,,1920,EthnographicAtlas_1967_p77, +99729,Ah31,EA076,Patrilineal by heirs,EA076-6,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +99730,Ah32,EA076,?,EA076-NA,Inheritance is mixed but more matrilineal than patrilineal,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +99731,Ah33,EA076,Patrilineal by heirs,EA076-6,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +99732,Ah34,EA076,Patrilineal by sons,EA076-7,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +99733,Ah35,EA076,Patrilineal by sons,EA076-7,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +99734,Ah36,EA076,Patrilineal by sons,EA076-7,"Formerly 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +99735,Ah37,EA076,Patrilineal by heirs,EA076-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +99736,Ah38,EA076,Patrilineal by heirs,EA076-6,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +99737,Ah39,EA076,Patrilineal by sons,EA076-7,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +99738,Ah4,EA076,Patrilineal by sons,EA076-7,"But 'matrilineal by a sister's son(s)' (EA076 code ""2"") with 'equal distribution' (EA077 code ""1"") if deceased was married by a token bride-price rather than by an exchange of sisters",meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +99739,Ah5,EA076,Patrilineal by sons,EA076-7,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +99740,Ah6,EA076,?,EA076-NA,"Matrilineal but not specified whether 'matrilineal by a sister's son(s)' (EA076 code ""2"") or 'matrilineal by heirs who take precedence over sister's son(s)' (EA076 code ""3"")",dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +99741,Ah7,EA076,Patrilineal by sons,EA076-7,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +99742,Ah8,EA076,Patrilineal by heirs,EA076-6,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +99743,Ah9,EA076,Patrilineal by sons,EA076-7,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +99744,Ai1,EA076,Patrilineal by heirs,EA076-6,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +99745,Ai10,EA076,Patrilineal by sons,EA076-7,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +99746,Ai11,EA076,Patrilineal by sons,EA076-7,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +99747,Ai12,EA076,?,EA076-NA,,,,,, +99748,Ai13,EA076,Patrilineal by sons,EA076-7,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +99749,Ai14,EA076,?,EA076-NA,,,,,, +99750,Ai15,EA076,Patrilineal by sons,EA076-7,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +99751,Ai16,EA076,Patrilineal by sons,EA076-7,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +99752,Ai17,EA076,?,EA076-NA,,,,,, +99753,Ai18,EA076,?,EA076-NA,,,,,, +99754,Ai19,EA076,?,EA076-NA,,,,,, +99755,Ai2,EA076,Matrilineal by sister's sons,EA076-2,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for tools and weapons as opposed to livestock",nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +99756,Ai20,EA076,Patrilineal by sons,EA076-7,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +99757,Ai21,EA076,?,EA076-NA,,,,,, +99758,Ai22,EA076,Patrilineal by heirs,EA076-6,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +99759,Ai23,EA076,Patrilineal by sons,EA076-7,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +99760,Ai24,EA076,Patrilineal by sons,EA076-7,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +99761,Ai25,EA076,?,EA076-NA,,,,,, +99762,Ai26,EA076,Patrilineal by sons,EA076-7,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +99763,Ai27,EA076,?,EA076-NA,,,,,, +99764,Ai28,EA076,Patrilineal by sons,EA076-7,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +99765,Ai29,EA076,Patrilineal by sons,EA076-7,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +99766,Ai3,EA076,Patrilineal by heirs,EA076-6,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +99767,Ai30,EA076,Patrilineal by sons,EA076-7,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +99768,Ai31,EA076,?,EA076-NA,,,,,, +99769,Ai32,EA076,?,EA076-NA,,,,,, +99770,Ai33,EA076,Patrilineal by sons,EA076-7,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +99771,Ai34,EA076,?,EA076-NA,,,,,, +99772,Ai35,EA076,?,EA076-NA,,,,,, +99773,Ai36,EA076,Patrilineal by heirs,EA076-6,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for property acquired rather than inherited by deceased",bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +99774,Ai37,EA076,Patrilineal by sons,EA076-7,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +99775,Ai38,EA076,?,EA076-NA,"Mixed 'matrilineal by a sister's son(s)' (EA076 code ""2"") and 'patrilineal by son(s)' (EA076 code ""7""), both with 'equal distribution' (EA077 code ""1"")",nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +99776,Ai39,EA076,?,EA076-NA,Mixed matrilineal and patrilineal,nadel1947,,1940,EthnographicAtlas_1967_p77, +99777,Ai4,EA076,?,EA076-NA,,,,,, +99778,Ai40,EA076,Patrilineal by heirs,EA076-6,,nadel1947,,1940,EthnographicAtlas_1967_p77, +99779,Ai41,EA076,Patrilineal by sons,EA076-7,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +99780,Ai42,EA076,Patrilineal by heirs,EA076-6,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +99781,Ai43,EA076,Patrilineal by sons,EA076-7,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +99782,Ai44,EA076,?,EA076-NA,,,,,, +99783,Ai45,EA076,Patrilineal by sons,EA076-7,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +99784,Ai46,EA076,?,EA076-NA,,,,,, +99785,Ai47,EA076,Patrilineal by heirs,EA076-6,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +99786,Ai5,EA076,?,EA076-NA,,,,,, +99787,Ai6,EA076,Patrilineal by sons,EA076-7,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +99788,Ai7,EA076,Patrilineal by sons,EA076-7,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +99789,Ai8,EA076,Patrilineal by sons,EA076-7,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +99790,Ai9,EA076,Patrilineal by sons,EA076-7,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +99791,Aj1,EA076,Patrilineal by sons,EA076-7,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +99792,Aj10,EA076,Patrilineal by sons,EA076-7,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +99793,Aj11,EA076,Patrilineal by sons,EA076-7,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +99794,Aj12,EA076,?,EA076-NA,,,,,, +99795,Aj13,EA076,Patrilineal by sons,EA076-7,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +99796,Aj14,EA076,?,EA076-NA,,,,,, +99797,Aj15,EA076,Patrilineal by sons,EA076-7,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +99798,Aj16,EA076,?,EA076-NA,,,,,, +99799,Aj17,EA076,Patrilineal by sons,EA076-7,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +99800,Aj18,EA076,Patrilineal by sons,EA076-7,,jensen1959,,1950,EthnographicAtlas_1967_p81, +99801,Aj19,EA076,Patrilineal by sons,EA076-7,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +99802,Aj2,EA076,Patrilineal by sons,EA076-7,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +99803,Aj20,EA076,?,EA076-NA,,,,,, +99804,Aj21,EA076,Patrilineal by sons,EA076-7,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +99805,Aj22,EA076,Patrilineal by sons,EA076-7,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +99806,Aj23,EA076,Patrilineal by sons,EA076-7,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +99807,Aj24,EA076,Patrilineal by sons,EA076-7,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +99808,Aj25,EA076,Patrilineal by sons,EA076-7,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +99809,Aj26,EA076,Patrilineal by heirs,EA076-6,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +99810,Aj27,EA076,?,EA076-NA,,,,,, +99811,Aj28,EA076,Patrilineal by sons,EA076-7,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +99812,Aj29,EA076,Patrilineal by sons,EA076-7,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +99813,Aj3,EA076,Patrilineal by sons,EA076-7,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +99814,Aj30,EA076,?,EA076-NA,,,,,, +99815,Aj31,EA076,?,EA076-NA,,,,,, +99816,Aj4,EA076,Patrilineal by sons,EA076-7,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +99817,Aj5,EA076,Patrilineal by sons,EA076-7,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +99818,Aj6,EA076,Patrilineal by sons,EA076-7,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +99819,Aj7,EA076,Patrilineal by sons,EA076-7,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +99820,Aj8,EA076,Patrilineal by sons,EA076-7,"Entry follows Seligman; Beaton reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +99821,Aj9,EA076,Patrilineal by sons,EA076-7,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +99822,Ca1,EA076,Patrilineal by sons,EA076-7,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +99823,Ca10,EA076,"Children, less for daughters",EA076-4,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +99824,Ca11,EA076,Patrilineal by sons,EA076-7,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +99825,Ca12,EA076,Patrilineal by sons,EA076-7,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +99826,Ca13,EA076,Patrilineal by sons,EA076-7,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +99827,Ca14,EA076,?,EA076-NA,,,,,, +99828,Ca15,EA076,Patrilineal by sons,EA076-7,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +99829,Ca16,EA076,Patrilineal by sons,EA076-7,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +99830,Ca17,EA076,?,EA076-NA,,,,,, +99831,Ca18,EA076,Patrilineal by heirs,EA076-6,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +99832,Ca19,EA076,?,EA076-NA,,,,,, +99833,Ca2,EA076,"Children, less for daughters",EA076-4,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +99834,Ca20,EA076,?,EA076-NA,,,,,, +99835,Ca21,EA076,?,EA076-NA,,,,,, +99836,Ca22,EA076,?,EA076-NA,,,,,, +99837,Ca23,EA076,Patrilineal by sons,EA076-7,,jensen1959,,1950,EthnographicAtlas_1967_p81, +99838,Ca24,EA076,?,EA076-NA,,,,,, +99839,Ca25,EA076,Patrilineal by sons,EA076-7,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +99840,Ca26,EA076,?,EA076-NA,,,,,, +99841,Ca27,EA076,?,EA076-NA,,,,,, +99842,Ca28,EA076,Patrilineal by sons,EA076-7,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +99843,Ca29,EA076,Patrilineal by sons,EA076-7,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +99844,Ca3,EA076,Patrilineal by sons,EA076-7,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +99845,Ca30,EA076,Patrilineal by sons,EA076-7,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +99846,Ca31,EA076,?,EA076-NA,,,,,, +99847,Ca32,EA076,Matrilineal by sister's sons,EA076-2,"Entry follows Pollera; Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +99848,Ca33,EA076,Matrilineal by sister's sons,EA076-2,"But Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +99849,Ca34,EA076,?,EA076-NA,,,,,, +99850,Ca35,EA076,?,EA076-NA,"Patrilineal, though formerly matrilineal",clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +99851,Ca36,EA076,"Children, less for daughters",EA076-4,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +99852,Ca37,EA076,Patrilineal by sons,EA076-7,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +99853,Ca38,EA076,Patrilineal by sons,EA076-7,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +99854,Ca39,EA076,Patrilineal by sons,EA076-7,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +99855,Ca4,EA076,Patrilineal by sons,EA076-7,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +99856,Ca40,EA076,Patrilineal by sons,EA076-7,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +99857,Ca41,EA076,Patrilineal by sons,EA076-7,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +99858,Ca42,EA076,Patrilineal by heirs,EA076-6,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +99859,Ca43,EA076,?,EA076-NA,,,,,, +99860,Ca5,EA076,Patrilineal by sons,EA076-7,But Murray reports matrilineal inheritance,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +99861,Ca6,EA076,?,EA076-NA,,,,,, +99862,Ca7,EA076,Patrilineal by sons,EA076-7,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +99863,Ca8,EA076,Patrilineal by sons,EA076-7,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +99864,Ca9,EA076,Patrilineal by sons,EA076-7,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +99865,Cb1,EA076,Patrilineal by sons,EA076-7,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +99866,Cb10,EA076,Patrilineal by sons,EA076-7,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +99867,Cb11,EA076,Matrilineal by sister's sons,EA076-2,"In transition to 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"") in accordance with Islamic practice",lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +99868,Cb12,EA076,?,EA076-NA,,,,,, +99869,Cb13,EA076,?,EA076-NA,,,,,, +99870,Cb14,EA076,"Children, less for daughters",EA076-4,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +99871,Cb15,EA076,"Children, less for daughters",EA076-4,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +99872,Cb16,EA076,Patrilineal by sons,EA076-7,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +99873,Cb17,EA076,Patrilineal by sons,EA076-7,"Entry follows Felkin; Beaton reports 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"")",barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +99874,Cb18,EA076,"Children, less for daughters",EA076-4,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +99875,Cb19,EA076,"Children, less for daughters",EA076-4,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +99876,Cb2,EA076,"Children, less for daughters",EA076-4,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +99877,Cb20,EA076,"Children, less for daughters",EA076-4,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +99878,Cb21,EA076,Patrilineal by sons,EA076-7,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +99879,Cb22,EA076,"Children, less for daughters",EA076-4,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +99880,Cb23,EA076,"Children, less for daughters",EA076-4,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +99881,Cb24,EA076,Patrilineal by sons,EA076-7,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +99882,Cb25,EA076,Children,EA076-5,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +99883,Cb26,EA076,"Children, less for daughters",EA076-4,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +99884,Cb27,EA076,Matrilineal by heirs,EA076-3,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +99885,Cb28,EA076,?,EA076-NA,,,,,, +99886,Cb29,EA076,Patrilineal by sons,EA076-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +99887,Cb3,EA076,"Children, less for daughters",EA076-4,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +99888,Cb4,EA076,"Children, less for daughters",EA076-4,,reid1930,,1920,EthnographicAtlas_1967_p81, +99889,Cb5,EA076,Patrilineal by sons,EA076-7,"In Murdock (1963a) he codes this as 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") with the comment ""But Bouillie, contrary to all other sources, reports 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"")."" In the EA the code is Pe, 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"").",bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +99890,Cb6,EA076,"Children, less for daughters",EA076-4,,woodnd,,1920,EthnographicAtlas_1967_p81, +99891,Cb7,EA076,?,EA076-NA,,,,,, +99892,Cb8,EA076,Patrilineal by sons,EA076-7,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +99893,Cb9,EA076,"Children, less for daughters",EA076-4,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +99894,Cc1,EA076,"Children, less for daughters",EA076-4,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +99895,Cc10,EA076,"Children, less for daughters",EA076-4,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +99896,Cc11,EA076,Children,EA076-5,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +99897,Cc12,EA076,"Children, less for daughters",EA076-4,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +99898,Cc13,EA076,Matrilineal by sister's sons,EA076-2,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +99899,Cc14,EA076,"Children, less for daughters",EA076-4,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +99900,Cc15,EA076,?,EA076-NA,,,,,, +99901,Cc16,EA076,?,EA076-NA,,,,,, +99902,Cc17,EA076,"Children, less for daughters",EA076-4,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +99903,Cc18,EA076,"Children, less for daughters",EA076-4,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +99904,Cc19,EA076,"Children, less for daughters",EA076-4,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +99905,Cc2,EA076,"Children, less for daughters",EA076-4,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +99906,Cc20,EA076,"Children, less for daughters",EA076-4,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +99907,Cc3,EA076,"Children, less for daughters",EA076-4,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +99908,Cc4,EA076,?,EA076-NA,,,,,, +99909,Cc5,EA076,Patrilineal by sons,EA076-7,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +99910,Cc6,EA076,"Children, less for daughters",EA076-4,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +99911,Cc7,EA076,"Children, less for daughters",EA076-4,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99912,Cc8,EA076,?,EA076-NA,,,,,, +99913,Cc9,EA076,"Children, less for daughters",EA076-4,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +99914,Cd1,EA076,"Children, less for daughters",EA076-4,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +99915,Cd10,EA076,Patrilineal by sons,EA076-7,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +99916,Cd11,EA076,Matrilineal by sister's sons,EA076-2,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +99917,Cd12,EA076,"Children, less for daughters",EA076-4,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +99918,Cd13,EA076,Patrilineal by sons,EA076-7,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +99919,Cd14,EA076,"Children, less for daughters",EA076-4,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +99920,Cd15,EA076,"Children, less for daughters",EA076-4,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +99921,Cd16,EA076,"Children, less for daughters",EA076-4,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +99922,Cd17,EA076,"Children, less for daughters",EA076-4,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +99923,Cd18,EA076,"Children, less for daughters",EA076-4,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +99924,Cd19,EA076,?,EA076-NA,,,,,, +99925,Cd2,EA076,"Children, less for daughters",EA076-4,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +99926,Cd20,EA076,"Children, less for daughters",EA076-4,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +99927,Cd21,EA076,?,EA076-NA,,,,,, +99928,Cd3,EA076,Patrilineal by sons,EA076-7,"But theoretically 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"")",coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +99929,Cd4,EA076,"Children, less for daughters",EA076-4,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +99930,Cd5,EA076,"Children, less for daughters",EA076-4,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +99931,Cd6,EA076,Children,EA076-5,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +99932,Cd7,EA076,Patrilineal by sons,EA076-7,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +99933,Cd8,EA076,Patrilineal by sons,EA076-7,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +99934,Cd9,EA076,"Children, less for daughters",EA076-4,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +99935,Ce1,EA076,Patrilineal by sons,EA076-7,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +99936,Ce2,EA076,?,EA076-NA,,,,,, +99937,Ce3,EA076,Children,EA076-5,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +99938,Ce4,EA076,Children,EA076-5,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +99939,Ce5,EA076,Children,EA076-5,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +99940,Ce6,EA076,Children,EA076-5,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +99941,Ce7,EA076,Children,EA076-5,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +99942,Ce8,EA076,"Children, less for daughters",EA076-4,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +99943,Cf1,EA076,Children,EA076-5,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +99944,Cf2,EA076,?,EA076-NA,,,,,, +99945,Cf3,EA076,Children,EA076-5,,munch1945,,1930,EthnographicAtlas_1967_p85, +99946,Cf4,EA076,Children,EA076-5,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +99947,Cf5,EA076,?,EA076-NA,,,,,, +99948,Cg1,EA076,Children,EA076-5,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +99949,Cg2,EA076,Patrilineal by sons,EA076-7,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +99950,Cg3,EA076,Patrilineal by sons,EA076-7,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +99951,Cg4,EA076,Children,EA076-5,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +99952,Cg5,EA076,?,EA076-NA,,,,,, +99953,Ch1,EA076,?,EA076-NA,,,,,, +99954,Ch10,EA076,?,EA076-NA,,,,,, +99955,Ch11,EA076,?,EA076-NA,,,,,, +99956,Ch2,EA076,Patrilineal by sons,EA076-7,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +99957,Ch3,EA076,Patrilineal by sons,EA076-7,But the youngest son receives the largest share,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +99958,Ch4,EA076,Children,EA076-5,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +99959,Ch5,EA076,"Children, less for daughters",EA076-4,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +99960,Ch6,EA076,Patrilineal by sons,EA076-7,,ember1954,,1910,EthnographicAtlas_1967_p85, +99961,Ch7,EA076,Patrilineal by sons,EA076-7,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +99962,Ch8,EA076,?,EA076-NA,,,,,, +99963,Ch9,EA076,Patrilineal by sons,EA076-7,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +99964,Ci1,EA076,Patrilineal by sons,EA076-7,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +99965,Ci10,EA076,"Children, less for daughters",EA076-4,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +99966,Ci11,EA076,?,EA076-NA,,,,,, +99967,Ci12,EA076,"Children, less for daughters",EA076-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +99968,Ci2,EA076,Patrilineal by sons,EA076-7,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +99969,Ci3,EA076,?,EA076-NA,,,,,, +99970,Ci4,EA076,"Children, less for daughters",EA076-4,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +99971,Ci5,EA076,"Children, less for daughters",EA076-4,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +99972,Ci6,EA076,Patrilineal by sons,EA076-7,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +99973,Ci7,EA076,?,EA076-NA,,,,,, +99974,Ci8,EA076,?,EA076-NA,,,,,, +99975,Ci9,EA076,Patrilineal by sons,EA076-7,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +99976,Cj1,EA076,?,EA076-NA,,,,,, +99977,Cj10,EA076,?,EA076-NA,,,,,, +99978,Cj2,EA076,Patrilineal by sons,EA076-7,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +99979,Cj3,EA076,Patrilineal by sons,EA076-7,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +99980,Cj4,EA076,Patrilineal by sons,EA076-7,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +99981,Cj5,EA076,"Children, less for daughters",EA076-4,,dickson1949,,1930,EthnographicAtlas_1967_p89, +99982,Cj6,EA076,"Children, less for daughters",EA076-4,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +99983,Cj7,EA076,Patrilineal by sons,EA076-7,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +99984,Cj8,EA076,"Children, less for daughters",EA076-4,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +99985,Cj9,EA076,?,EA076-NA,,,,,, +99986,Ea1,EA076,?,EA076-NA,,,,,, +99987,Ea10,EA076,"Children, less for daughters",EA076-4,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +99988,Ea11,EA076,"Children, less for daughters",EA076-4,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +99989,Ea12,EA076,Patrilineal by sons,EA076-7,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +99990,Ea13,EA076,Patrilineal by sons,EA076-7,"Despite legal change in 1948 to 'inheritance by children of either sex' (EA076 code ""5"") with 'equal distribution' (EA077 code ""1"")",callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +99991,Ea2,EA076,"Children, less for daughters",EA076-4,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +99992,Ea3,EA076,Patrilineal by sons,EA076-7,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +99993,Ea4,EA076,"Children, less for daughters",EA076-4,,barth1956b,,1950,EthnographicAtlas_1967_p89, +99994,Ea5,EA076,Patrilineal by sons,EA076-7,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +99995,Ea6,EA076,Patrilineal by sons,EA076-7,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +99996,Ea7,EA076,"Children, less for daughters",EA076-4,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +99997,Ea8,EA076,?,EA076-NA,,,,,, +99998,Ea9,EA076,?,EA076-NA,,,,,, +99999,Eb1,EA076,Patrilineal by sons,EA076-7,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +100000,Eb2,EA076,Patrilineal by sons,EA076-7,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +100001,Eb3,EA076,Patrilineal by sons,EA076-7,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +100002,Eb4,EA076,Patrilineal by sons,EA076-7,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +100003,Eb5,EA076,?,EA076-NA,,,,,, +100004,Eb6,EA076,?,EA076-NA,,,,,, +100005,Eb7,EA076,?,EA076-NA,,,,,, +100006,Eb8,EA076,?,EA076-NA,,,,,, +100007,Ec1,EA076,Patrilineal by sons,EA076-7,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +100008,Ec10,EA076,"Children, less for daughters",EA076-4,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +100009,Ec11,EA076,?,EA076-NA,,,,,, +100010,Ec2,EA076,Patrilineal by sons,EA076-7,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100011,Ec3,EA076,Patrilineal by sons,EA076-7,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +100012,Ec4,EA076,?,EA076-NA,,,,,, +100013,Ec5,EA076,Patrilineal by sons,EA076-7,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +100014,Ec6,EA076,Patrilineal by sons,EA076-7,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +100015,Ec7,EA076,Patrilineal by sons,EA076-7,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +100016,Ec8,EA076,Patrilineal by sons,EA076-7,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +100017,Ec9,EA076,?,EA076-NA,,,,,, +100018,Ed1,EA076,Patrilineal by sons,EA076-7,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +100019,Ed10,EA076,Patrilineal by sons,EA076-7,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +100020,Ed13,EA076,?,EA076-NA,,,,,, +100021,Ed14,EA076,?,EA076-NA,,,,,, +100022,Ed15a,EA076,?,EA076-NA,,,,,, +100023,Ed15b,EA076,Patrilineal by sons,EA076-7,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +100024,Ed16,EA076,?,EA076-NA,,,,,, +100025,Ed2,EA076,Patrilineal by sons,EA076-7,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +100026,Ed3,EA076,Patrilineal by sons,EA076-7,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +100027,Ed4,EA076,Patrilineal by sons,EA076-7,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +100028,Ed5,EA076,Patrilineal by sons,EA076-7,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100029,Ed6,EA076,Patrilineal by sons,EA076-7,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +100030,Ed7,EA076,Patrilineal by sons,EA076-7,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +100031,Ed8,EA076,Patrilineal by sons,EA076-7,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +100032,Ed9,EA076,Patrilineal by sons,EA076-7,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +100033,Ee1,EA076,Patrilineal by sons,EA076-7,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +100034,Ee2,EA076,?,EA076-NA,,,,,, +100035,Ee3,EA076,Patrilineal by sons,EA076-7,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +100036,Ee4,EA076,Patrilineal by sons,EA076-7,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +100037,Ee5,EA076,Patrilineal by sons,EA076-7,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +100038,Ee6,EA076,Patrilineal by sons,EA076-7,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +100039,Ee7,EA076,?,EA076-NA,,,,,, +100040,Ee8,EA076,?,EA076-NA,,,,,, +100041,Ef1,EA076,Patrilineal by sons,EA076-7,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +100042,Ef10,EA076,?,EA076-NA,,,,,, +100043,Ef11,EA076,Patrilineal by sons,EA076-7,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +100044,Ef2,EA076,Patrilineal by sons,EA076-7,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +100045,Ef3,EA076,?,EA076-NA,,,,,, +100046,Ef4,EA076,Patrilineal by sons,EA076-7,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +100047,Ef5,EA076,Patrilineal by sons,EA076-7,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +100048,Ef6,EA076,Patrilineal by sons,EA076-7,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +100049,Ef7,EA076,Patrilineal by sons,EA076-7,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +100050,Ef8,EA076,Patrilineal by sons,EA076-7,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +100051,Ef9,EA076,Patrilineal by sons,EA076-7,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100052,Eg1,EA076,Patrilineal by sons,EA076-7,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100053,Eg10,EA076,Patrilineal by sons,EA076-7,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +100054,Eg11,EA076,Patrilineal by sons,EA076-7,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +100055,Eg12,EA076,?,EA076-NA,,,,,, +100056,Eg13,EA076,?,EA076-NA,,,,,, +100057,Eg14,EA076,?,EA076-NA,,,,,, +100058,Eg2,EA076,Patrilineal by sons,EA076-7,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +100059,Eg3,EA076,No inher. of mov. property,EA076-1,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +100060,Eg4,EA076,Patrilineal by sons,EA076-7,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +100061,Eg5,EA076,Patrilineal by sons,EA076-7,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +100062,Eg6,EA076,?,EA076-NA,,,,,, +100063,Eg7,EA076,Patrilineal by sons,EA076-7,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +100064,Eg8,EA076,Patrilineal by sons,EA076-7,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +100065,Eg9,EA076,Patrilineal by sons,EA076-7,,elwin1939,,1930,EthnographicAtlas_1967_p93, +100066,Eh1,EA076,?,EA076-NA,,,,,, +100067,Eh10,EA076,?,EA076-NA,,,,,, +100068,Eh2,EA076,Children,EA076-5,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +100069,Eh3,EA076,Children,EA076-5,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +100070,Eh4,EA076,Patrilineal by sons,EA076-7,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100071,Eh5,EA076,Children,EA076-5,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +100072,Eh6,EA076,Children,EA076-5,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +100073,Eh7,EA076,Patrilineal by sons,EA076-7,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +100074,Eh8,EA076,?,EA076-NA,,,,,, +100075,Eh9,EA076,Children,EA076-5,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +100076,Ei1,EA076,Matrilineal by sister's sons,EA076-2,The heir is a classificatory SiSo who is DaHu,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100077,Ei10,EA076,Patrilineal by sons,EA076-7,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +100078,Ei11,EA076,Patrilineal by sons,EA076-7,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +100079,Ei12,EA076,Patrilineal by sons,EA076-7,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +100080,Ei13,EA076,Patrilineal by sons,EA076-7,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +100081,Ei14,EA076,Patrilineal by heirs,EA076-6,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +100082,Ei15,EA076,?,EA076-NA,,,,,, +100083,Ei16,EA076,Patrilineal by sons,EA076-7,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +100084,Ei17,EA076,?,EA076-NA,,,,,, +100085,Ei18,EA076,?,EA076-NA,,,,,, +100086,Ei19,EA076,Patrilineal by sons,EA076-7,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") in some localities",bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +100087,Ei2,EA076,Patrilineal by sons,EA076-7,,mills1922,,1920,EthnographicAtlas_1967_p93, +100088,Ei20,EA076,?,EA076-NA,,,,,, +100089,Ei3,EA076,Children,EA076-5,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +100090,Ei4,EA076,Patrilineal by sons,EA076-7,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +100091,Ei5,EA076,Patrilineal by sons,EA076-7,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +100092,Ei6,EA076,Patrilineal by sons,EA076-7,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +100093,Ei7,EA076,Children,EA076-5,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +100094,Ei8,EA076,Matrilineal by heirs,EA076-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +100095,Ei9,EA076,Patrilineal by sons,EA076-7,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p93, +100096,Ej1,EA076,Patrilineal by sons,EA076-7,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +100097,Ej10,EA076,?,EA076-NA,,,,,, +100098,Ej11,EA076,Matrilineal by heirs,EA076-3,Mainly from mother to youngest daughter,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +100099,Ej12,EA076,?,EA076-NA,,,,,, +100100,Ej13,EA076,?,EA076-NA,,,,,, +100101,Ej14,EA076,No inher. of mov. property,EA076-1,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100102,Ej15,EA076,?,EA076-NA,,,,,, +100103,Ej16,EA076,Matrilineal by heirs,EA076-3,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +100104,Ej2,EA076,Children,EA076-5,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +100105,Ej3,EA076,Children,EA076-5,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +100106,Ej4,EA076,Children,EA076-5,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +100107,Ej5,EA076,Children,EA076-5,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +100108,Ej6,EA076,?,EA076-NA,,,,,, +100109,Ej7,EA076,Patrilineal by sons,EA076-7,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +100110,Ej8,EA076,Children,EA076-5,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +100111,Ej9,EA076,Children,EA076-5,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +100112,Ia1,EA076,Patrilineal by sons,EA076-7,"But Li reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +100113,Ia10,EA076,Patrilineal by sons,EA076-7,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +100114,Ia11,EA076,?,EA076-NA,,,,,, +100115,Ia12,EA076,Children,EA076-5,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +100116,Ia13,EA076,?,EA076-NA,,,,,, +100117,Ia14,EA076,Patrilineal by sons,EA076-7,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +100118,Ia15,EA076,?,EA076-NA,,,,,, +100119,Ia16,EA076,Children,EA076-5,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +100120,Ia17,EA076,?,EA076-NA,,,,,, +100121,Ia18,EA076,?,EA076-NA,,,,,, +100122,Ia2,EA076,Children,EA076-5,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +100123,Ia3,EA076,Children,EA076-5,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +100124,Ia4,EA076,Children,EA076-5,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +100125,Ia5,EA076,Children,EA076-5,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +100126,Ia6,EA076,Children,EA076-5,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100127,Ia7,EA076,Children,EA076-5,,fox1954,,1950,EthnographicAtlas_1967_p93, +100128,Ia8,EA076,Children,EA076-5,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +100129,Ia9,EA076,Matrilineal by sister's sons,EA076-2,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +100130,Ib1,EA076,Children,EA076-5,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100131,Ib2,EA076,Children,EA076-5,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100132,Ib3,EA076,Patrilineal by sons,EA076-7,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +100133,Ib4,EA076,Patrilineal by sons,EA076-7,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +100134,Ib5,EA076,Children,EA076-5,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +100135,Ib6,EA076,Matrilineal by heirs,EA076-3,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +100136,Ib7,EA076,?,EA076-NA,,,,,, +100137,Ib8,EA076,Children,EA076-5,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +100138,Ib9,EA076,?,EA076-NA,,,,,, +100139,Ic1,EA076,?,EA076-NA,,,,,, +100140,Ic10,EA076,"Children, less for daughters",EA076-4,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +100141,Ic11,EA076,Patrilineal by sons,EA076-7,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100142,Ic12,EA076,?,EA076-NA,,,,,, +100143,Ic13,EA076,?,EA076-NA,,,,,, +100144,Ic2,EA076,?,EA076-NA,,,,,, +100145,Ic3,EA076,?,EA076-NA,"Inheritance by widows, then daughters",vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +100146,Ic4,EA076,?,EA076-NA,,,,,, +100147,Ic5,EA076,Children,EA076-5,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +100148,Ic6,EA076,Patrilineal by sons,EA076-7,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +100149,Ic7,EA076,Patrilineal by sons,EA076-7,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +100150,Ic8,EA076,Patrilineal by sons,EA076-7,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +100151,Ic9,EA076,Patrilineal by sons,EA076-7,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +100152,Id1,EA076,Patrilineal by sons,EA076-7,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +100153,Id10,EA076,Matrilineal by heirs,EA076-3,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +100154,Id11,EA076,?,EA076-NA,,,,,, +100155,Id12,EA076,No inher. of mov. property,EA076-1,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +100156,Id13,EA076,?,EA076-NA,,,,,, +100157,Id2,EA076,?,EA076-NA,,,,,, +100158,Id3,EA076,?,EA076-NA,,,,,, +100159,Id4,EA076,?,EA076-NA,,,,,, +100160,Id5,EA076,?,EA076-NA,,,,,, +100161,Id6,EA076,?,EA076-NA,,,,,, +100162,Id7,EA076,?,EA076-NA,,,,,, +100163,Id8,EA076,?,EA076-NA,,,,,, +100164,Id9,EA076,?,EA076-NA,,,,,, +100165,Ie1,EA076,?,EA076-NA,,,,,, +100166,Ie10,EA076,"Children, less for daughters",EA076-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +100167,Ie11,EA076,Patrilineal by sons,EA076-7,,bowers1964,,1950,EthnographicAtlas_1967_p97, +100168,Ie12,EA076,Patrilineal by sons,EA076-7,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100169,Ie13,EA076,?,EA076-NA,,,,,, +100170,Ie14,EA076,?,EA076-NA,,,,,, +100171,Ie15,EA076,Patrilineal by sons,EA076-7,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100172,Ie16,EA076,Patrilineal by sons,EA076-7,,williams194041,,1940,EthnographicAtlas_1967_p97, +100173,Ie17,EA076,No inher. of mov. property,EA076-1,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +100174,Ie18,EA076,No inher. of mov. property,EA076-1,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +100175,Ie19,EA076,?,EA076-NA,,,,,, +100176,Ie2,EA076,Patrilineal by sons,EA076-7,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +100177,Ie20,EA076,Children,EA076-5,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +100178,Ie21,EA076,Patrilineal by sons,EA076-7,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +100179,Ie22,EA076,?,EA076-NA,,,,,, +100180,Ie23,EA076,Patrilineal by sons,EA076-7,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +100181,Ie24,EA076,No inher. of mov. property,EA076-1,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +100182,Ie25,EA076,Patrilineal by sons,EA076-7,,williamson1912,,1920,EthnographicAtlas_1967_p97, +100183,Ie26,EA076,?,EA076-NA,,,,,, +100184,Ie27,EA076,No inher. of mov. property,EA076-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +100185,Ie28,EA076,Patrilineal by sons,EA076-7,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +100186,Ie29,EA076,?,EA076-NA,,,,,, +100187,Ie3,EA076,Patrilineal by sons,EA076-7,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100188,Ie30,EA076,?,EA076-NA,,,,,, +100189,Ie31,EA076,?,EA076-NA,,,,,, +100190,Ie32,EA076,?,EA076-NA,,,,,, +100191,Ie33,EA076,?,EA076-NA,,,,,, +100192,Ie34,EA076,?,EA076-NA,,,,,, +100193,Ie35,EA076,?,EA076-NA,,,,,, +100194,Ie36,EA076,?,EA076-NA,,,,,, +100195,Ie37,EA076,?,EA076-NA,,,,,, +100196,Ie38,EA076,Children,EA076-5,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +100197,Ie39,EA076,?,EA076-NA,,,,,, +100198,Ie4,EA076,Patrilineal by sons,EA076-7,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100199,Ie5,EA076,Patrilineal by sons,EA076-7,,williams1936,,1930,EthnographicAtlas_1967_p97, +100200,Ie6,EA076,?,EA076-NA,,,,,, +100201,Ie7,EA076,Patrilineal by sons,EA076-7,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +100202,Ie8,EA076,Patrilineal by sons,EA076-7,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +100203,Ie9,EA076,?,EA076-NA,,,,,, +100204,If1,EA076,Patrilineal by sons,EA076-7,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100205,If10,EA076,?,EA076-NA,,,,,, +100206,If11,EA076,?,EA076-NA,,,,,, +100207,If12,EA076,?,EA076-NA,,,,,, +100208,If13,EA076,?,EA076-NA,,,,,, +100209,If14,EA076,Patrilineal by sons,EA076-7,But canoes were inherited by all children jointly,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +100210,If15,EA076,?,EA076-NA,,,,,, +100211,If16,EA076,?,EA076-NA,,,,,, +100212,If17,EA076,No inher. of mov. property,EA076-1,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +100213,If2,EA076,Patrilineal by sons,EA076-7,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +100214,If3,EA076,Matrilineal by heirs,EA076-3,But originally matrilineal,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +100215,If4,EA076,?,EA076-NA,Matrilineal but without information of the preferred heirs,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +100216,If5,EA076,Matrilineal by heirs,EA076-3,"But Bascom reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") in most districts",bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +100217,If6,EA076,Matrilineal by heirs,EA076-3,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +100218,If7,EA076,Children,EA076-5,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +100219,If8,EA076,Children,EA076-5,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +100220,If9,EA076,Children,EA076-5,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +100221,Ig1,EA076,Children,EA076-5,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +100222,Ig10,EA076,?,EA076-NA,,,,,, +100223,Ig11,EA076,?,EA076-NA,,,,,, +100224,Ig12,EA076,Patrilineal by sons,EA076-7,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +100225,Ig13,EA076,Matrilineal by sister's sons,EA076-2,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +100226,Ig14,EA076,No inher. of mov. property,EA076-1,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +100227,Ig15,EA076,?,EA076-NA,,,,,, +100228,Ig16,EA076,?,EA076-NA,,,,,, +100229,Ig17,EA076,?,EA076-NA,,,,,, +100230,Ig18,EA076,?,EA076-NA,,,,,, +100231,Ig19,EA076,?,EA076-NA,,,,,, +100232,Ig2,EA076,Matrilineal by sister's sons,EA076-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +100233,Ig20,EA076,Matrilineal by sister's sons,EA076-2,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +100234,Ig21,EA076,?,EA076-NA,,,,,, +100235,Ig3,EA076,?,EA076-NA,"A man may leave his property to his sons, his sister's sons, or both",blackwood1935,,1930,EthnographicAtlas_1967_p101, +100236,Ig4,EA076,Matrilineal by sister's sons,EA076-2,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +100237,Ig5,EA076,Matrilineal by sister's sons,EA076-2,"Matrilineal, but the exact distribution is not reported",fortune1932b,,1920,EthnographicAtlas_1967_p101, +100238,Ig6,EA076,Children,EA076-5,,ivens1927,,1900,EthnographicAtlas_1967_p101, +100239,Ig7,EA076,Children,EA076-5,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +100240,Ig8,EA076,?,EA076-NA,,,,,, +100241,Ig9,EA076,No inher. of mov. property,EA076-1,Most of a deceased man's property is plundered by the agnatic kinsmen of his MoBr,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +100242,Ih1,EA076,Matrilineal by sister's sons,EA076-2,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +100243,Ih10,EA076,Patrilineal by sons,EA076-7,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100244,Ih11,EA076,?,EA076-NA,,,,,, +100245,Ih12,EA076,?,EA076-NA,,,,,, +100246,Ih13,EA076,?,EA076-NA,,,,,, +100247,Ih14,EA076,Patrilineal by sons,EA076-7,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +100248,Ih2,EA076,?,EA076-NA,,,,,, +100249,Ih3,EA076,Patrilineal by heirs,EA076-6,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +100250,Ih4,EA076,Patrilineal by sons,EA076-7,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100251,Ih5,EA076,?,EA076-NA,,,,,, +100252,Ih6,EA076,?,EA076-NA,,,,,, +100253,Ih7,EA076,Patrilineal by sons,EA076-7,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +100254,Ih8,EA076,?,EA076-NA,,,,,, +100255,Ih9,EA076,?,EA076-NA,,,,,, +100256,Ii1,EA076,?,EA076-NA,,,,,, +100257,Ii10,EA076,?,EA076-NA,,,,,, +100258,Ii12,EA076,?,EA076-NA,"Mixed, with substantial shares to sisters' sons",beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100259,Ii13,EA076,?,EA076-NA,,,,,, +100260,Ii14,EA076,?,EA076-NA,,,,,, +100261,Ii2,EA076,?,EA076-NA,,,,,, +100262,Ii3,EA076,?,EA076-NA,,,,,, +100263,Ii4,EA076,Patrilineal by heirs,EA076-6,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +100264,Ii5,EA076,?,EA076-NA,,,,,, +100265,Ii6,EA076,Children,EA076-5,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +100266,Ii7,EA076,Children,EA076-5,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +100267,Ii8,EA076,?,EA076-NA,,,,,, +100268,Ii9,EA076,Patrilineal by sons,EA076-7,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +100269,Ij1,EA076,?,EA076-NA,,,,,, +100270,Ij10,EA076,Patrilineal by sons,EA076-7,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +100271,Ij2,EA076,Patrilineal by sons,EA076-7,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +100272,Ij3,EA076,"Children, less for daughters",EA076-4,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +100273,Ij4,EA076,?,EA076-NA,,,,,, +100274,Ij5,EA076,Children,EA076-5,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +100275,Ij6,EA076,Children,EA076-5,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +100276,Ij7,EA076,Patrilineal by sons,EA076-7,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +100277,Ij8,EA076,?,EA076-NA,,,,,, +100278,Ij9,EA076,?,EA076-NA,,,,,, +100279,Na1,EA076,No inher. of mov. property,EA076-1,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +100280,Na10,EA076,Patrilineal by sons,EA076-7,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +100281,Na11,EA076,?,EA076-NA,,,,,, +100282,Na12,EA076,Children,EA076-5,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +100283,Na13,EA076,Patrilineal by sons,EA076-7,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +100284,Na14,EA076,No inher. of mov. property,EA076-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +100285,Na15,EA076,?,EA076-NA,,,,,, +100286,Na16,EA076,?,EA076-NA,,,,,, +100287,Na17,EA076,No inher. of mov. property,EA076-1,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100288,Na19,EA076,?,EA076-NA,,,,,, +100289,Na2,EA076,Patrilineal by sons,EA076-7,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +100290,Na20,EA076,?,EA076-NA,,,,,, +100291,Na21,EA076,No inher. of mov. property,EA076-1,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +100292,Na22,EA076,No inher. of mov. property,EA076-1,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +100293,Na23,EA076,No inher. of mov. property,EA076-1,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +100294,Na24,EA076,Patrilineal by sons,EA076-7,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +100295,Na25,EA076,Patrilineal by sons,EA076-7,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +100296,Na26,EA076,No inher. of mov. property,EA076-1,Property is distributed in a potlatch except items previously promised to particular relatives,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +100297,Na27,EA076,Matrilineal by heirs,EA076-3,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +100298,Na28,EA076,?,EA076-NA,,,,,, +100299,Na29,EA076,No inher. of mov. property,EA076-1,,goddard1916,,1850,EthnographicAtlas_1967_p105, +100300,Na3,EA076,Children,EA076-5,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +100301,Na30,EA076,Patrilineal by heirs,EA076-6,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +100302,Na31,EA076,No inher. of mov. property,EA076-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +100303,Na32,EA076,Patrilineal by sons,EA076-7,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +100304,Na33,EA076,?,EA076-NA,,,,,, +100305,Na34,EA076,Patrilineal by sons,EA076-7,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +100306,Na35,EA076,No inher. of mov. property,EA076-1,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +100307,Na36,EA076,?,EA076-NA,,,,,, +100308,Na37,EA076,Children,EA076-5,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +100309,Na38,EA076,No inher. of mov. property,EA076-1,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +100310,Na39,EA076,?,EA076-NA,,,,,, +100311,Na4,EA076,Patrilineal by sons,EA076-7,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +100312,Na40,EA076,?,EA076-NA,,,,,, +100313,Na41,EA076,?,EA076-NA,,,,,, +100314,Na42,EA076,?,EA076-NA,,,,,, +100315,Na43,EA076,?,EA076-NA,,,,,, +100316,Na44,EA076,?,EA076-NA,,,,,, +100317,Na45,EA076,?,EA076-NA,,,,,, +100318,Na5,EA076,Patrilineal by sons,EA076-7,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +100319,Na6,EA076,Patrilineal by sons,EA076-7,,lantis1946,,1930,EthnographicAtlas_1967_p105, +100320,Na7,EA076,Patrilineal by sons,EA076-7,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +100321,Na8,EA076,Patrilineal by sons,EA076-7,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +100322,Na9,EA076,Children,EA076-5,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100323,Nb1,EA076,Matrilineal by heirs,EA076-3,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +100324,Nb10,EA076,?,EA076-NA,Inheritance reported as bilateral with a patrilineal bias,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +100325,Nb11,EA076,"Children, less for daughters",EA076-4,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +100326,Nb12,EA076,Patrilineal by sons,EA076-7,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +100327,Nb13,EA076,Patrilineal by sons,EA076-7,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +100328,Nb14,EA076,Patrilineal by sons,EA076-7,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +100329,Nb15,EA076,?,EA076-NA,,,,,, +100330,Nb16,EA076,No inher. of mov. property,EA076-1,Most of a man's property is given away or destroyed at his death,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +100331,Nb17,EA076,No inher. of mov. property,EA076-1,But originally property was given away to blood kin at a man's death,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +100332,Nb18,EA076,?,EA076-NA,,,,,, +100333,Nb19,EA076,?,EA076-NA,,,,,, +100334,Nb2,EA076,No inher. of mov. property,EA076-1,Distributed by siblings and children at a funeral potlatch,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +100335,Nb20,EA076,Patrilineal by sons,EA076-7,But brothers share with sons,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +100336,Nb21,EA076,Patrilineal by heirs,EA076-6,Brothers share with grown sons,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +100337,Nb22,EA076,Matrilineal by sister's sons,EA076-2,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +100338,Nb23,EA076,Matrilineal by heirs,EA076-3,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +100339,Nb24,EA076,Children,EA076-5,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +100340,Nb25,EA076,Patrilineal by sons,EA076-7,But most property is destroyed at death,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +100341,Nb26,EA076,Patrilineal by sons,EA076-7,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +100342,Nb27,EA076,No inher. of mov. property,EA076-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +100343,Nb28,EA076,?,EA076-NA,,,,,, +100344,Nb29,EA076,Patrilineal by sons,EA076-7,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +100345,Nb3,EA076,Patrilineal by sons,EA076-7,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +100346,Nb30,EA076,No inher. of mov. property,EA076-1,The property of a deceased man is distributed among all his near relatives,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +100347,Nb31,EA076,Patrilineal by sons,EA076-7,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +100348,Nb32,EA076,Patrilineal by sons,EA076-7,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +100349,Nb33,EA076,No inher. of mov. property,EA076-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +100350,Nb34,EA076,?,EA076-NA,,,,,, +100351,Nb35,EA076,?,EA076-NA,,,,,, +100352,Nb36,EA076,?,EA076-NA,,,,,, +100353,Nb37,EA076,No inher. of mov. property,EA076-1,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +100354,Nb38,EA076,Children,EA076-5,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +100355,Nb39,EA076,No inher. of mov. property,EA076-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +100356,Nb4,EA076,Children,EA076-5,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +100357,Nb5,EA076,Matrilineal by heirs,EA076-3,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +100358,Nb6,EA076,Patrilineal by sons,EA076-7,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +100359,Nb7,EA076,Matrilineal by heirs,EA076-3,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +100360,Nb8,EA076,No inher. of mov. property,EA076-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +100361,Nb9,EA076,Patrilineal by sons,EA076-7,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +100362,Nc1,EA076,No inher. of mov. property,EA076-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +100363,Nc10,EA076,No inher. of mov. property,EA076-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +100364,Nc11,EA076,Patrilineal by sons,EA076-7,But most property is destroyed at death,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +100365,Nc12,EA076,No inher. of mov. property,EA076-1,But eldest son inherited a few objects,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +100366,Nc13,EA076,No inher. of mov. property,EA076-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +100367,Nc14,EA076,No inher. of mov. property,EA076-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +100368,Nc15,EA076,No inher. of mov. property,EA076-1,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +100369,Nc16,EA076,?,EA076-NA,,,,,, +100370,Nc17,EA076,No inher. of mov. property,EA076-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +100371,Nc18,EA076,Patrilineal by sons,EA076-7,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +100372,Nc19,EA076,No inher. of mov. property,EA076-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +100373,Nc2,EA076,No inher. of mov. property,EA076-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +100374,Nc20,EA076,No inher. of mov. property,EA076-1,"But some valuables were inherited by sons, daughters, nephews, and nieces",driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +100375,Nc21,EA076,No inher. of mov. property,EA076-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +100376,Nc22,EA076,No inher. of mov. property,EA076-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +100377,Nc23,EA076,No inher. of mov. property,EA076-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +100378,Nc24,EA076,?,EA076-NA,,,,,, +100379,Nc25,EA076,?,EA076-NA,,,,,, +100380,Nc26,EA076,Children,EA076-5,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +100381,Nc27,EA076,No inher. of mov. property,EA076-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +100382,Nc28,EA076,Children,EA076-5,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +100383,Nc29,EA076,Patrilineal by sons,EA076-7,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +100384,Nc3,EA076,No inher. of mov. property,EA076-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +100385,Nc30,EA076,Patrilineal by sons,EA076-7,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +100386,Nc31,EA076,No inher. of mov. property,EA076-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +100387,Nc32,EA076,No inher. of mov. property,EA076-1,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +100388,Nc33,EA076,No inher. of mov. property,EA076-1,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +100389,Nc34,EA076,Patrilineal by sons,EA076-7,But the widow took precedence over the eldest son,meigs1939,,1880,EthnographicAtlas_1967_p109, +100390,Nc4,EA076,Patrilineal by sons,EA076-7,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +100391,Nc5,EA076,No inher. of mov. property,EA076-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +100392,Nc6,EA076,No inher. of mov. property,EA076-1,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +100393,Nc7,EA076,No inher. of mov. property,EA076-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +100394,Nc8,EA076,No inher. of mov. property,EA076-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +100395,Nc9,EA076,Patrilineal by sons,EA076-7,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +100396,Nd1,EA076,No inher. of mov. property,EA076-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +100397,Nd10,EA076,?,EA076-NA,,,,,, +100398,Nd11,EA076,?,EA076-NA,,,,,, +100399,Nd12,EA076,?,EA076-NA,,,,,, +100400,Nd13,EA076,?,EA076-NA,,,,,, +100401,Nd14,EA076,?,EA076-NA,Distributed among relatives,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +100402,Nd15,EA076,?,EA076-NA,"Given away to close relatives, especially siblings",clineetal1938,,1880,EthnographicAtlas_1967_p113, +100403,Nd16,EA076,?,EA076-NA,,,,,, +100404,Nd17,EA076,?,EA076-NA,,,,,, +100405,Nd18,EA076,?,EA076-NA,,,,,, +100406,Nd19,EA076,?,EA076-NA,,,,,, +100407,Nd2,EA076,No inher. of mov. property,EA076-1,Unless promised to a kinsman before death,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +100408,Nd20,EA076,No inher. of mov. property,EA076-1,"""Inheritance was in the male line. Much property was given away after the funeral feast, and the remainder was usually distributed according to the previously expressed wishes of the owner""",curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +100409,Nd21,EA076,?,EA076-NA,,,,,, +100410,Nd22,EA076,No inher. of mov. property,EA076-1,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +100411,Nd23,EA076,?,EA076-NA,,,,,, +100412,Nd24,EA076,No inher. of mov. property,EA076-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +100413,Nd25,EA076,?,EA076-NA,,,,,, +100414,Nd26,EA076,No inher. of mov. property,EA076-1,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +100415,Nd27,EA076,No inher. of mov. property,EA076-1,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +100416,Nd28,EA076,No inher. of mov. property,EA076-1,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +100417,Nd29,EA076,?,EA076-NA,,,,,, +100418,Nd3,EA076,No inher. of mov. property,EA076-1,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +100419,Nd30,EA076,No inher. of mov. property,EA076-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +100420,Nd31,EA076,No inher. of mov. property,EA076-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +100421,Nd32,EA076,No inher. of mov. property,EA076-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +100422,Nd33,EA076,No inher. of mov. property,EA076-1,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +100423,Nd34,EA076,No inher. of mov. property,EA076-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +100424,Nd35,EA076,No inher. of mov. property,EA076-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +100425,Nd36,EA076,No inher. of mov. property,EA076-1,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +100426,Nd37,EA076,?,EA076-NA,,,,,, +100427,Nd38,EA076,?,EA076-NA,,,,,, +100428,Nd39,EA076,?,EA076-NA,,,,,, +100429,Nd4,EA076,Patrilineal by heirs,EA076-6,Distributed among close male relatives,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +100430,Nd40,EA076,No inher. of mov. property,EA076-1,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +100431,Nd41,EA076,?,EA076-NA,,,,,, +100432,Nd42,EA076,?,EA076-NA,,,,,, +100433,Nd43,EA076,No inher. of mov. property,EA076-1,"But some property is distributed to ""relatives""",harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +100434,Nd44,EA076,No inher. of mov. property,EA076-1,"But some property is distributed to ""relatives""",steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +100435,Nd45,EA076,No inher. of mov. property,EA076-1,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +100436,Nd46,EA076,No inher. of mov. property,EA076-1,"But sometimes personal property was distributed among ""friends of the natural heirs""",lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +100437,Nd47,EA076,No inher. of mov. property,EA076-1,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +100438,Nd48,EA076,No inher. of mov. property,EA076-1,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +100439,Nd49,EA076,No inher. of mov. property,EA076-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +100440,Nd5,EA076,Patrilineal by sons,EA076-7,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +100441,Nd50,EA076,No inher. of mov. property,EA076-1,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +100442,Nd51,EA076,No inher. of mov. property,EA076-1,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +100443,Nd52,EA076,No inher. of mov. property,EA076-1,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +100444,Nd53,EA076,No inher. of mov. property,EA076-1,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +100445,Nd54,EA076,No inher. of mov. property,EA076-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100446,Nd55,EA076,No inher. of mov. property,EA076-1,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +100447,Nd56,EA076,No inher. of mov. property,EA076-1,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +100448,Nd57,EA076,No inher. of mov. property,EA076-1,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +100449,Nd58,EA076,No inher. of mov. property,EA076-1,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +100450,Nd59,EA076,No inher. of mov. property,EA076-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +100451,Nd6,EA076,No inher. of mov. property,EA076-1,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +100452,Nd60,EA076,No inher. of mov. property,EA076-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +100453,Nd61,EA076,No inher. of mov. property,EA076-1,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +100454,Nd62,EA076,No inher. of mov. property,EA076-1,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +100455,Nd63,EA076,No inher. of mov. property,EA076-1,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +100456,Nd64,EA076,No inher. of mov. property,EA076-1,But most property is destroyed or given away,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +100457,Nd65,EA076,No inher. of mov. property,EA076-1,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +100458,Nd66,EA076,No inher. of mov. property,EA076-1,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +100459,Nd67,EA076,No inher. of mov. property,EA076-1,,gifford1936,,1870,EthnographicAtlas_1967_p113, +100460,Nd7,EA076,Patrilineal by sons,EA076-7,But formerly seized by relatives,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +100461,Nd8,EA076,Patrilineal by sons,EA076-7,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +100462,Nd9,EA076,Patrilineal by sons,EA076-7,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +100463,Ne1,EA076,No inher. of mov. property,EA076-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +100464,Ne10,EA076,?,EA076-NA,But sacred bundles were inherited from Fa to So,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +100465,Ne11,EA076,No inher. of mov. property,EA076-1,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +100466,Ne12,EA076,"Children, less for daughters",EA076-4,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +100467,Ne13,EA076,Patrilineal by sons,EA076-7,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +100468,Ne14,EA076,?,EA076-NA,,,,,, +100469,Ne15,EA076,Patrilineal by sons,EA076-7,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +100470,Ne16,EA076,?,EA076-NA,,,,,, +100471,Ne17,EA076,?,EA076-NA,"Inheritance of horses said to follow ""no fixed rule"" but to exhibit a patrilineal tendency",lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +100472,Ne18,EA076,Patrilineal by sons,EA076-7,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +100473,Ne19,EA076,?,EA076-NA,,,,,, +100474,Ne2,EA076,No inher. of mov. property,EA076-1,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +100475,Ne20,EA076,No inher. of mov. property,EA076-1,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +100476,Ne21,EA076,?,EA076-NA,,,,,, +100477,Ne3,EA076,No inher. of mov. property,EA076-1,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +100478,Ne4,EA076,Matrilineal by heirs,EA076-3,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +100479,Ne5,EA076,No inher. of mov. property,EA076-1,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +100480,Ne6,EA076,Matrilineal by sister's sons,EA076-2,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +100481,Ne7,EA076,Children,EA076-5,Entry follows Honigmann; Jenness reports that property was destroyed or given away,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +100482,Ne8,EA076,?,EA076-NA,,,,,, +100483,Ne9,EA076,No inher. of mov. property,EA076-1,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +100484,Nf10,EA076,?,EA076-NA,,,,,, +100485,Nf11,EA076,Patrilineal by sons,EA076-7,,whitman1937,,1870,EthnographicAtlas_1967_p117, +100486,Nf12,EA076,No inher. of mov. property,EA076-1,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +100487,Nf13,EA076,Patrilineal by sons,EA076-7,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100488,Nf14,EA076,?,EA076-NA,,,,,, +100489,Nf15,EA076,?,EA076-NA,,,,,, +100490,Nf2,EA076,Patrilineal by sons,EA076-7,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +100491,Nf3,EA076,Patrilineal by sons,EA076-7,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +100492,Nf4,EA076,?,EA076-NA,,,,,, +100493,Nf5,EA076,No inher. of mov. property,EA076-1,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +100494,Nf6,EA076,Matrilineal by heirs,EA076-3,"Most property was inherited by brothers and sisters' sons, but the eldest son inherited medicine bundles",dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +100495,Nf7,EA076,No inher. of mov. property,EA076-1,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100496,Nf8,EA076,?,EA076-NA,,,,,, +100497,Nf9,EA076,?,EA076-NA,,,,,, +100498,Ng1,EA076,?,EA076-NA,,,,,, +100499,Ng10,EA076,Matrilineal by sister's sons,EA076-2,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +100500,Ng11,EA076,?,EA076-NA,In the late period a man's property was divided among his own and his sister's children,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +100501,Ng12,EA076,?,EA076-NA,,,,,, +100502,Ng13,EA076,?,EA076-NA,,,,,, +100503,Ng14,EA076,?,EA076-NA,,,,,, +100504,Ng15,EA076,?,EA076-NA,,,,,, +100505,Ng2,EA076,?,EA076-NA,,,,,, +100506,Ng3,EA076,Patrilineal by sons,EA076-7,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +100507,Ng4,EA076,Patrilineal by sons,EA076-7,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +100508,Ng5,EA076,?,EA076-NA,,,,,, +100509,Ng6,EA076,?,EA076-NA,,,,,, +100510,Ng7,EA076,?,EA076-NA,,,,,, +100511,Ng8,EA076,Matrilineal by sister's sons,EA076-2,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +100512,Ng9,EA076,Children,EA076-5,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +100513,Nh1,EA076,No inher. of mov. property,EA076-1,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +100514,Nh10,EA076,Children,EA076-5,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +100515,Nh11,EA076,Children,EA076-5,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +100516,Nh12,EA076,Children,EA076-5,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +100517,Nh13,EA076,Children,EA076-5,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +100518,Nh14,EA076,?,EA076-NA,,,,,, +100519,Nh15,EA076,No inher. of mov. property,EA076-1,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +100520,Nh16,EA076,Children,EA076-5,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100521,Nh17,EA076,Children,EA076-5,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +100522,Nh18,EA076,Patrilineal by sons,EA076-7,"But usually 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") today",beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100523,Nh19,EA076,No inher. of mov. property,EA076-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +100524,Nh2,EA076,?,EA076-NA,,,,,, +100525,Nh20,EA076,No inher. of mov. property,EA076-1,,gifford1931,,1860,EthnographicAtlas_1967_p117, +100526,Nh21,EA076,No inher. of mov. property,EA076-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100527,Nh22,EA076,No inher. of mov. property,EA076-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +100528,Nh23,EA076,Patrilineal by sons,EA076-7,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +100529,Nh24,EA076,?,EA076-NA,,,,,, +100530,Nh25,EA076,Children,EA076-5,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +100531,Nh26,EA076,?,EA076-NA,,,,,, +100532,Nh27,EA076,?,EA076-NA,,,,,, +100533,Nh3,EA076,Matrilineal by sister's sons,EA076-2,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") today",franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +100534,Nh4,EA076,Children,EA076-5,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +100535,Nh5,EA076,No inher. of mov. property,EA076-1,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +100536,Nh6,EA076,?,EA076-NA,,,,,, +100537,Nh7,EA076,Children,EA076-5,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +100538,Nh8,EA076,Patrilineal by heirs,EA076-6,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +100539,Nh9,EA076,?,EA076-NA,,,,,, +100540,Ni1,EA076,Children,EA076-5,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +100541,Ni2,EA076,No inher. of mov. property,EA076-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +100542,Ni3,EA076,Children,EA076-5,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +100543,Ni4,EA076,No inher. of mov. property,EA076-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +100544,Ni5,EA076,No inher. of mov. property,EA076-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +100545,Ni6,EA076,No inher. of mov. property,EA076-1,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +100546,Ni7,EA076,?,EA076-NA,,,,,, +100547,Ni8,EA076,?,EA076-NA,,,,,, +100548,Ni9,EA076,?,EA076-NA,,,,,, +100549,Nj1,EA076,Patrilineal by sons,EA076-7,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100550,Nj10,EA076,Children,EA076-5,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100551,Nj11,EA076,?,EA076-NA,,,,,, +100552,Nj12,EA076,?,EA076-NA,,,,,, +100553,Nj13,EA076,?,EA076-NA,,,,,, +100554,Nj14,EA076,?,EA076-NA,,,,,, +100555,Nj2,EA076,Patrilineal by sons,EA076-7,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +100556,Nj3,EA076,Patrilineal by sons,EA076-7,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +100557,Nj4,EA076,?,EA076-NA,,,,,, +100558,Nj5,EA076,?,EA076-NA,,,,,, +100559,Nj6,EA076,?,EA076-NA,,,,,, +100560,Nj7,EA076,Children,EA076-5,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100561,Nj8,EA076,Patrilineal by sons,EA076-7,,foster1948,,1500,EthnographicAtlas_1967_p121, +100562,Nj9,EA076,Patrilineal by sons,EA076-7,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +100563,Sa1,EA076,?,EA076-NA,,,,,, +100564,Sa10,EA076,?,EA076-NA,,,,,, +100565,Sa11,EA076,Patrilineal by sons,EA076-7,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +100566,Sa12,EA076,?,EA076-NA,,,,,, +100567,Sa13,EA076,Patrilineal by sons,EA076-7,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +100568,Sa14,EA076,?,EA076-NA,,,,,, +100569,Sa15,EA076,?,EA076-NA,,,,,, +100570,Sa16,EA076,?,EA076-NA,,,,,, +100571,Sa17,EA076,?,EA076-NA,,,,,, +100572,Sa2,EA076,?,EA076-NA,,,,,, +100573,Sa3,EA076,Children,EA076-5,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +100574,Sa4,EA076,?,EA076-NA,,,,,, +100575,Sa5,EA076,Children,EA076-5,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +100576,Sa6,EA076,Patrilineal by heirs,EA076-6,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +100577,Sa7,EA076,?,EA076-NA,,,,,, +100578,Sa8,EA076,Patrilineal by sons,EA076-7,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +100579,Sa9,EA076,?,EA076-NA,,,,,, +100580,Sb1,EA076,?,EA076-NA,Probably matrilineal,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +100581,Sb2,EA076,Patrilineal by sons,EA076-7,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +100582,Sb3,EA076,?,EA076-NA,,,,,, +100583,Sb4,EA076,Children,EA076-5,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +100584,Sb5,EA076,?,EA076-NA,,,,,, +100585,Sb6,EA076,Matrilineal by sister's sons,EA076-2,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +100586,Sb7,EA076,?,EA076-NA,,,,,, +100587,Sb8,EA076,Matrilineal by sister's sons,EA076-2,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +100588,Sb9,EA076,Children,EA076-5,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +100589,Sc1,EA076,?,EA076-NA,,,,,, +100590,Sc10,EA076,?,EA076-NA,,,,,, +100591,Sc11,EA076,?,EA076-NA,,,,,, +100592,Sc12,EA076,?,EA076-NA,,,,,, +100593,Sc13,EA076,?,EA076-NA,,,,,, +100594,Sc14,EA076,?,EA076-NA,,,,,, +100595,Sc15,EA076,?,EA076-NA,,,,,, +100596,Sc16,EA076,?,EA076-NA,,,,,, +100597,Sc17,EA076,Patrilineal by sons,EA076-7,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +100598,Sc18,EA076,Matrilineal by heirs,EA076-3,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +100599,Sc2,EA076,Patrilineal by sons,EA076-7,,leedsnd,,1950,EthnographicAtlas_1967_p121, +100600,Sc3,EA076,?,EA076-NA,,,,,, +100601,Sc4,EA076,Patrilineal by sons,EA076-7,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +100602,Sc5,EA076,?,EA076-NA,,,,,, +100603,Sc6,EA076,Matrilineal by heirs,EA076-3,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100604,Sc7,EA076,?,EA076-NA,,,,,, +100605,Sc8,EA076,?,EA076-NA,,,,,, +100606,Sc9,EA076,?,EA076-NA,,,,,, +100607,Sd1,EA076,No inher. of mov. property,EA076-1,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100608,Sd2,EA076,?,EA076-NA,,,,,, +100609,Sd3,EA076,?,EA076-NA,,,,,, +100610,Sd4,EA076,?,EA076-NA,,,,,, +100611,Sd5,EA076,?,EA076-NA,,,,,, +100612,Sd6,EA076,?,EA076-NA,,,,,, +100613,Sd7,EA076,Patrilineal by sons,EA076-7,,fock1963,,1950,EthnographicAtlas_1967_p121, +100614,Sd8,EA076,?,EA076-NA,,,,,, +100615,Sd9,EA076,?,EA076-NA,,,,,, +100616,Se1,EA076,No inher. of mov. property,EA076-1,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +100617,Se10,EA076,?,EA076-NA,,,,,, +100618,Se11,EA076,?,EA076-NA,,,,,, +100619,Se12,EA076,?,EA076-NA,,,,,, +100620,Se2,EA076,Patrilineal by sons,EA076-7,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +100621,Se3,EA076,Patrilineal by sons,EA076-7,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +100622,Se4,EA076,No inher. of mov. property,EA076-1,,fejos1943,,1940,EthnographicAtlas_1967_p121, +100623,Se5,EA076,Patrilineal by sons,EA076-7,"But 'no inheritance' (code ""1"") for clothing an ceremonial objects",goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +100624,Se6,EA076,?,EA076-NA,,,,,, +100625,Se7,EA076,Patrilineal by sons,EA076-7,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100626,Se8,EA076,No inher. of mov. property,EA076-1,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +100627,Se9,EA076,Patrilineal by sons,EA076-7,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +100628,Sf1,EA076,Patrilineal by sons,EA076-7,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +100629,Sf2,EA076,Patrilineal by sons,EA076-7,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +100630,Sf3,EA076,?,EA076-NA,,,,,, +100631,Sf4,EA076,Children,EA076-5,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +100632,Sf5,EA076,Patrilineal by sons,EA076-7,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +100633,Sf6,EA076,Patrilineal by sons,EA076-7,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +100634,Sf7,EA076,?,EA076-NA,,,,,, +100635,Sf8,EA076,?,EA076-NA,,,,,, +100636,Sf9,EA076,?,EA076-NA,,,,,, +100637,Sg1,EA076,No inher. of mov. property,EA076-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +100638,Sg2,EA076,Patrilineal by sons,EA076-7,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100639,Sg3,EA076,No inher. of mov. property,EA076-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +100640,Sg4,EA076,?,EA076-NA,,,,,, +100641,Sg5,EA076,?,EA076-NA,,,,,, +100642,Sh1,EA076,No inher. of mov. property,EA076-1,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +100643,Sh2,EA076,?,EA076-NA,,,,,, +100644,Sh3,EA076,?,EA076-NA,,,,,, +100645,Sh4,EA076,Patrilineal by sons,EA076-7,,oberg1949,,1940,EthnographicAtlas_1967_p125, +100646,Sh5,EA076,No inher. of mov. property,EA076-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +100647,Sh6,EA076,?,EA076-NA,,,,,, +100648,Sh7,EA076,?,EA076-NA,,,,,, +100649,Sh8,EA076,No inher. of mov. property,EA076-1,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +100650,Sh9,EA076,?,EA076-NA,,,,,, +100651,Si1,EA076,?,EA076-NA,,,,,, +100652,Si10,EA076,?,EA076-NA,,,,,, +100653,Si2,EA076,?,EA076-NA,,,,,, +100654,Si3,EA076,?,EA076-NA,,,,,, +100655,Si4,EA076,No inher. of mov. property,EA076-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +100656,Si5,EA076,No inher. of mov. property,EA076-1,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +100657,Si6,EA076,?,EA076-NA,,,,,, +100658,Si7,EA076,?,EA076-NA,,,,,, +100659,Si8,EA076,?,EA076-NA,,,,,, +100660,Si9,EA076,?,EA076-NA,,,,,, +100661,Sj1,EA076,?,EA076-NA,,,,,, +100662,Sj10,EA076,?,EA076-NA,,,,,, +100663,Sj11,EA076,No inher. of mov. property,EA076-1,"Aboriginally, but some objects are inherited today",mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +100664,Sj2,EA076,?,EA076-NA,,,,,, +100665,Sj3,EA076,No inher. of mov. property,EA076-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +100666,Sj4,EA076,Children,EA076-5,Distribution among matrilineal kinsmen of both sexes,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +100667,Sj5,EA076,?,EA076-NA,,,,,, +100668,Sj6,EA076,Patrilineal by sons,EA076-7,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100669,Sj7,EA076,?,EA076-NA,,,,,, +100670,Sj8,EA076,?,EA076-NA,,,,,, +100671,Sj9,EA076,?,EA076-NA,,,,,, +100672,ch12,EA076,Patrilineal by sons,EA076-7,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +100673,ch13,EA076,Patrilineal by sons,EA076-7,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +100674,ch14,EA076,Patrilineal by sons,EA076-7,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +100675,ch15,EA076,Patrilineal by sons,EA076-7,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +100676,ch16,EA076,Children,EA076-5,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +100677,ch17,EA076,Patrilineal by sons,EA076-7,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +100678,ch18,EA076,Patrilineal by sons,EA076-7,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +100679,ch19,EA076,Patrilineal by sons,EA076-7,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +100680,ch20,EA076,Patrilineal by sons,EA076-7,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +100681,ch21,EA076,"Children, less for daughters",EA076-4,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +100682,ch22,EA076,Patrilineal by sons,EA076-7,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +100683,ch23,EA076,Patrilineal by sons,EA076-7,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +100684,ch24,EA076,Patrilineal by sons,EA076-7,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +100685,ch25,EA076,Patrilineal by sons,EA076-7,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +100686,ch26,EA076,Patrilineal by sons,EA076-7,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +100687,ch27,EA076,Patrilineal by sons,EA076-7,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +100688,ch28,EA076,Patrilineal by sons,EA076-7,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +100689,ec12,EA076,Patrilineal by sons,EA076-7,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +100690,ec13,EA076,?,EA076-NA,,,,,, +100691,ec14,EA076,Patrilineal by sons,EA076-7,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +100692,ec15,EA076,Patrilineal by sons,EA076-7,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +100693,ec16,EA076,Patrilineal by sons,EA076-7,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +100694,ec17,EA076,Patrilineal by sons,EA076-7,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +100695,ec18,EA076,Patrilineal by sons,EA076-7,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +100696,ec19,EA076,Patrilineal by sons,EA076-7,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +100697,ec20,EA076,Patrilineal by sons,EA076-7,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +100698,ec21,EA076,Patrilineal by sons,EA076-7,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +100699,Aa1,EA077,No inher. of mov. property,EA077-9,"Murdock (1963a) coded this as 'inheritance by patrilineal heirs who take precedence over sons' (EA076 code ""7""), commenting: ""Entry follows Wilhelm; older sources report that most of a man's property was buried with him but that a brother inherited his bow and arrows."" In the EA the column is coded O, 'no inheritance of movable property' (EA076 code ""1"")",biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +100700,Aa2,EA077,Equally distributed,EA077-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +100701,Aa3,EA077,Primogeniture,EA077-4,"For livestock; 'inheritance by children of either sex' (EA076 code ""5"") and 'equal distribution' (EA077 code ""1"") for other moveable property",hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +100702,Aa4,EA077,Equally distributed,EA077-1,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +100703,Aa5,EA077,?,EA077-NA,,,,,, +100704,Aa6,EA077,Equally distributed,EA077-1,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +100705,Aa7,EA077,No inher. of mov. property,EA077-9,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +100706,Aa8,EA077,?,EA077-NA,,,,,, +100707,Aa9,EA077,?,EA077-NA,,,,,, +100708,Ab1,EA077,Primogeniture,EA077-4,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +100709,Ab10,EA077,Primogeniture,EA077-4,,hunter1936,,1936,EthnographicAtlas_1967_p65, +100710,Ab11,EA077,Primogeniture,EA077-4,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +100711,Ab12,EA077,Primogeniture,EA077-4,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +100712,Ab13,EA077,Primogeniture,EA077-4,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +100713,Ab14,EA077,?,EA077-NA,,,,,, +100714,Ab15,EA077,Primogeniture,EA077-4,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +100715,Ab16,EA077,?,EA077-NA,,,,,, +100716,Ab17,EA077,Equally distributed,EA077-1,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +100717,Ab18,EA077,Primogeniture,EA077-4,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +100718,Ab19,EA077,Equally distributed,EA077-1,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +100719,Ab2,EA077,Primogeniture,EA077-4,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +100720,Ab20,EA077,?,EA077-NA,,,,,, +100721,Ab21a,EA077,Primogeniture,EA077-4,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +100722,Ab21b,EA077,?,EA077-NA,,,,,, +100723,Ab22,EA077,?,EA077-NA,,,,,, +100724,Ab3,EA077,Best qualified,EA077-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +100725,Ab4,EA077,Equally distributed,EA077-1,,junod1927,,1920,EthnographicAtlas_1967_p65, +100726,Ab5,EA077,?,EA077-NA,Precise distribution unreported,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +100727,Ab6,EA077,Primogeniture,EA077-4,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +100728,Ab7,EA077,Primogeniture,EA077-4,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +100729,Ab8,EA077,Primogeniture,EA077-4,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +100730,Ab9,EA077,Primogeniture,EA077-4,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +100731,Ac1,EA077,Best qualified,EA077-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +100732,Ac10,EA077,?,EA077-NA,,,,,, +100733,Ac11,EA077,?,EA077-NA,,,,,, +100734,Ac12,EA077,Primogeniture,EA077-4,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +100735,Ac13,EA077,?,EA077-NA,,,,,, +100736,Ac14,EA077,Primogeniture,EA077-4,"Entry follows Mertens and Van Wing; Ihle and Van de Velde report 'matrilineal by sister's son(s)' (EA076 code ""2"") and 'primogeniture' (EA077 code ""4"")",brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +100737,Ac15,EA077,Primogeniture,EA077-4,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +100738,Ac16,EA077,?,EA077-NA,Inheritance is matrilineal,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +100739,Ac17,EA077,Primogeniture,EA077-4,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +100740,Ac18,EA077,Equally distributed,EA077-1,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +100741,Ac19,EA077,Primogeniture,EA077-4,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +100742,Ac2,EA077,Primogeniture,EA077-4,"Entry follows Sousberge; Toirday and Joyce report 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +100743,Ac20,EA077,Primogeniture,EA077-4,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +100744,Ac21,EA077,Equally distributed,EA077-1,"Entries follows Decker; Torday reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +100745,Ac22,EA077,?,EA077-NA,,,,,, +100746,Ac23,EA077,Equally distributed,EA077-1,Presumably matrilineal,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +100747,Ac24,EA077,Primogeniture,EA077-4,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +100748,Ac25,EA077,Primogeniture,EA077-4,All property escheats to the head of the matrilineage,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +100749,Ac26,EA077,?,EA077-NA,,,,,, +100750,Ac27,EA077,?,EA077-NA,,,,,, +100751,Ac28,EA077,Primogeniture,EA077-4,"Alternatively 'patrilineal by heirs' (EA076 code ""6"") and 'primogeniture' (EA077 code ""4"")",baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +100752,Ac29,EA077,Best qualified,EA077-2,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +100753,Ac3,EA077,Best qualified,EA077-2,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +100754,Ac30,EA077,Best qualified,EA077-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +100755,Ac31,EA077,Primogeniture,EA077-4,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +100756,Ac32,EA077,Primogeniture,EA077-4,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +100757,Ac33,EA077,Primogeniture,EA077-4,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +100758,Ac34,EA077,Best qualified,EA077-2,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +100759,Ac35,EA077,Best qualified,EA077-2,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +100760,Ac36,EA077,Primogeniture,EA077-4,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +100761,Ac37,EA077,Best qualified,EA077-2,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +100762,Ac38,EA077,Primogeniture,EA077-4,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +100763,Ac39,EA077,?,EA077-NA,,,,,, +100764,Ac4,EA077,Primogeniture,EA077-4,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +100765,Ac40,EA077,Primogeniture,EA077-4,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +100766,Ac41,EA077,?,EA077-NA,Matrilineal,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +100767,Ac42,EA077,Primogeniture,EA077-4,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +100768,Ac43,EA077,?,EA077-NA,,,,,, +100769,Ac5,EA077,Primogeniture,EA077-4,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +100770,Ac6,EA077,?,EA077-NA,,,,,, +100771,Ac7,EA077,Primogeniture,EA077-4,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +100772,Ac8,EA077,Primogeniture,EA077-4,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +100773,Ac9,EA077,Primogeniture,EA077-4,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +100774,Ad1,EA077,Equally distributed,EA077-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +100775,Ad10,EA077,Equally distributed,EA077-1,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +100776,Ad11,EA077,Equally distributed,EA077-1,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +100777,Ad12,EA077,Equally distributed,EA077-1,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +100778,Ad13,EA077,Equally distributed,EA077-1,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +100779,Ad14,EA077,Equally distributed,EA077-1,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +100780,Ad15,EA077,Primogeniture,EA077-4,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +100781,Ad16,EA077,Primogeniture,EA077-4,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +100782,Ad17,EA077,Equally distributed,EA077-1,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +100783,Ad18,EA077,Equally distributed,EA077-1,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +100784,Ad19,EA077,?,EA077-NA,"Matrilineal, but sources conflict as to preferred heirs",fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +100785,Ad2,EA077,Primogeniture,EA077-4,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +100786,Ad20,EA077,Equally distributed,EA077-1,But only by sons of wives obtained by a bride-price,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +100787,Ad21,EA077,?,EA077-NA,Matrilineal,maurice193538,,1930,EthnographicAtlas_1967_p69, +100788,Ad22,EA077,?,EA077-NA,"Patrilineal, but matrilineal if no bride-prices was paid for mother",abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +100789,Ad23,EA077,?,EA077-NA,,,,,, +100790,Ad24,EA077,Primogeniture,EA077-4,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +100791,Ad25,EA077,?,EA077-NA,,,,,, +100792,Ad26,EA077,Equally distributed,EA077-1,,sick1916,,1910,EthnographicAtlas_1967_p69, +100793,Ad27,EA077,Equally distributed,EA077-1,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +100794,Ad28,EA077,Equally distributed,EA077-1,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +100795,Ad29,EA077,Equally distributed,EA077-1,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +100796,Ad3,EA077,Primogeniture,EA077-4,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +100797,Ad30,EA077,Primogeniture,EA077-4,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +100798,Ad31,EA077,?,EA077-NA,,,,,, +100799,Ad32,EA077,Primogeniture,EA077-4,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +100800,Ad33,EA077,Primogeniture,EA077-4,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +100801,Ad34,EA077,Equally distributed,EA077-1,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +100802,Ad35,EA077,Equally distributed,EA077-1,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +100803,Ad36,EA077,?,EA077-NA,"By brothers according one source, by eldest sons of each wife according to another",baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +100804,Ad37,EA077,Equally distributed,EA077-1,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +100805,Ad38,EA077,Equally distributed,EA077-1,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +100806,Ad39,EA077,Equally distributed,EA077-1,,gray1963,,1950,EthnographicAtlas_1967_p69, +100807,Ad4,EA077,Primogeniture,EA077-4,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +100808,Ad40,EA077,Equally distributed,EA077-1,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +100809,Ad41,EA077,Equally distributed,EA077-1,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +100810,Ad42,EA077,Primogeniture,EA077-4,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +100811,Ad43,EA077,?,EA077-NA,,,,,, +100812,Ad44,EA077,?,EA077-NA,,,,,, +100813,Ad45,EA077,Primogeniture,EA077-4,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +100814,Ad46,EA077,Equally distributed,EA077-1,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +100815,Ad47,EA077,Equally distributed,EA077-1,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +100816,Ad48,EA077,?,EA077-NA,,,,,, +100817,Ad49,EA077,Primogeniture,EA077-4,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +100818,Ad5,EA077,Primogeniture,EA077-4,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +100819,Ad50,EA077,Equally distributed,EA077-1,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +100820,Ad51,EA077,?,EA077-NA,,,,,, +100821,Ad6,EA077,Primogeniture,EA077-4,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +100822,Ad7,EA077,Best qualified,EA077-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +100823,Ad8,EA077,Equally distributed,EA077-1,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +100824,Ad9,EA077,Equally distributed,EA077-1,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +100825,Ae1,EA077,Equally distributed,EA077-1,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +100826,Ae10,EA077,Equally distributed,EA077-1,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +100827,Ae11,EA077,?,EA077-NA,,,,,, +100828,Ae12,EA077,Primogeniture,EA077-4,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +100829,Ae13,EA077,?,EA077-NA,Patrilineal,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +100830,Ae14,EA077,Primogeniture,EA077-4,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +100831,Ae15,EA077,Primogeniture,EA077-4,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +100832,Ae16,EA077,Primogeniture,EA077-4,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +100833,Ae17,EA077,Equally distributed,EA077-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +100834,Ae18,EA077,Primogeniture,EA077-4,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +100835,Ae19,EA077,?,EA077-NA,,,,,, +100836,Ae2,EA077,?,EA077-NA,,,,,, +100837,Ae20,EA077,Primogeniture,EA077-4,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +100838,Ae21,EA077,Primogeniture,EA077-4,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +100839,Ae22,EA077,Primogeniture,EA077-4,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +100840,Ae23,EA077,?,EA077-NA,Mixed patrilineal and matrilineal,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +100841,Ae24,EA077,Primogeniture,EA077-4,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +100842,Ae25,EA077,Primogeniture,EA077-4,"Entry follows Torday and Joyce; Heusch reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +100843,Ae26,EA077,Primogeniture,EA077-4,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +100844,Ae27,EA077,?,EA077-NA,,,,,, +100845,Ae28,EA077,Primogeniture,EA077-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +100846,Ae29,EA077,Equally distributed,EA077-1,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +100847,Ae3,EA077,Primogeniture,EA077-4,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +100848,Ae30,EA077,Equally distributed,EA077-1,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +100849,Ae31,EA077,?,EA077-NA,,,,,, +100850,Ae32,EA077,Equally distributed,EA077-1,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +100851,Ae33,EA077,Equally distributed,EA077-1,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +100852,Ae34,EA077,?,EA077-NA,Inheritance is patrilineal,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +100853,Ae35,EA077,Equally distributed,EA077-1,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +100854,Ae36,EA077,?,EA077-NA,Inheritance is patrilineal,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +100855,Ae37,EA077,Primogeniture,EA077-4,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +100856,Ae38,EA077,Primogeniture,EA077-4,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +100857,Ae39,EA077,No inher. of mov. property,EA077-9,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +100858,Ae4,EA077,Primogeniture,EA077-4,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +100859,Ae40,EA077,Primogeniture,EA077-4,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +100860,Ae41,EA077,Equally distributed,EA077-1,"Patrilineal, by brothers and sons",andersson1953,,1940,EthnographicAtlas_1967_p69, +100861,Ae42,EA077,Equally distributed,EA077-1,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +100862,Ae43,EA077,Primogeniture,EA077-4,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +100863,Ae44,EA077,Primogeniture,EA077-4,Entry follows Gil-Delgado; Tessmann reports patrilineal inheritance with matrilineal traces,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +100864,Ae45,EA077,Primogeniture,EA077-4,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +100865,Ae46,EA077,Primogeniture,EA077-4,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +100866,Ae47,EA077,Equally distributed,EA077-1,"But the source, Oertzen, elsewhere mentions inheritance by sisters' sons",oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +100867,Ae48,EA077,?,EA077-NA,,,,,, +100868,Ae49,EA077,Primogeniture,EA077-4,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +100869,Ae5,EA077,Best qualified,EA077-2,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +100870,Ae50,EA077,Best qualified,EA077-2,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +100871,Ae51,EA077,Equally distributed,EA077-1,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +100872,Ae52,EA077,Equally distributed,EA077-1,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +100873,Ae53,EA077,Primogeniture,EA077-4,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +100874,Ae54,EA077,?,EA077-NA,,,,,, +100875,Ae55,EA077,?,EA077-NA,Patrilineal,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +100876,Ae56,EA077,?,EA077-NA,,,,,, +100877,Ae57,EA077,Primogeniture,EA077-4,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +100878,Ae58,EA077,?,EA077-NA,,,,,, +100879,Ae59,EA077,?,EA077-NA,,,,,, +100880,Ae6,EA077,Primogeniture,EA077-4,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +100881,Ae7,EA077,Primogeniture,EA077-4,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +100882,Ae8,EA077,Primogeniture,EA077-4,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +100883,Ae9,EA077,?,EA077-NA,,,,,, +100884,Af1,EA077,Primogeniture,EA077-4,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +100885,Af10,EA077,Equally distributed,EA077-1,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +100886,Af11,EA077,Primogeniture,EA077-4,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +100887,Af12,EA077,Equally distributed,EA077-1,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +100888,Af13,EA077,Primogeniture,EA077-4,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +100889,Af14,EA077,?,EA077-NA,,,,,, +100890,Af15,EA077,Primogeniture,EA077-4,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +100891,Af16,EA077,Primogeniture,EA077-4,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +100892,Af17,EA077,?,EA077-NA,,,,,, +100893,Af18,EA077,?,EA077-NA,,,,,, +100894,Af19,EA077,Primogeniture,EA077-4,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +100895,Af2,EA077,Equally distributed,EA077-1,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +100896,Af20,EA077,Primogeniture,EA077-4,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +100897,Af21,EA077,?,EA077-NA,,,,,, +100898,Af22,EA077,Equally distributed,EA077-1,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +100899,Af23,EA077,?,EA077-NA,Mixed but with a matrilineal emphasis,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +100900,Af24,EA077,Primogeniture,EA077-4,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +100901,Af25,EA077,?,EA077-NA,,,,,, +100902,Af26,EA077,?,EA077-NA,Patrilineal or matrilineal depending on mode of marriage,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +100903,Af27,EA077,Primogeniture,EA077-4,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +100904,Af28,EA077,?,EA077-NA,Patrilineal with local variations regarding participation of brothers and sons,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +100905,Af29,EA077,Primogeniture,EA077-4,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +100906,Af3,EA077,Primogeniture,EA077-4,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +100907,Af30,EA077,Primogeniture,EA077-4,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +100908,Af31,EA077,Equally distributed,EA077-1,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +100909,Af32,EA077,Equally distributed,EA077-1,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100910,Af33,EA077,Equally distributed,EA077-1,But Pe for property acquired rather than inherited by deceased,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100911,Af34,EA077,Equally distributed,EA077-1,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100912,Af35,EA077,?,EA077-NA,,,,,, +100913,Af36,EA077,Primogeniture,EA077-4,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +100914,Af37,EA077,Primogeniture,EA077-4,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +100915,Af38,EA077,Primogeniture,EA077-4,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +100916,Af39,EA077,Primogeniture,EA077-4,"But Kobben, as opposed to the earlier sources, reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +100917,Af4,EA077,Equally distributed,EA077-1,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +100918,Af40,EA077,Primogeniture,EA077-4,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +100919,Af41,EA077,Primogeniture,EA077-4,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +100920,Af42,EA077,Primogeniture,EA077-4,But sons inherit some property,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +100921,Af43,EA077,Primogeniture,EA077-4,"But Daniell reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +100922,Af44,EA077,Primogeniture,EA077-4,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +100923,Af45,EA077,Primogeniture,EA077-4,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +100924,Af46,EA077,Primogeniture,EA077-4,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +100925,Af47,EA077,Primogeniture,EA077-4,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +100926,Af48,EA077,?,EA077-NA,,,,,, +100927,Af49,EA077,Primogeniture,EA077-4,,schwab1947,,1940,EthnographicAtlas_1967_p73, +100928,Af5,EA077,Equally distributed,EA077-1,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +100929,Af50,EA077,Primogeniture,EA077-4,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +100930,Af51,EA077,Primogeniture,EA077-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +100931,Af52,EA077,Primogeniture,EA077-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +100932,Af53,EA077,Primogeniture,EA077-4,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +100933,Af54,EA077,?,EA077-NA,,,,,, +100934,Af55,EA077,?,EA077-NA,,,,,, +100935,Af56,EA077,Primogeniture,EA077-4,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +100936,Af57,EA077,Equally distributed,EA077-1,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +100937,Af58,EA077,Primogeniture,EA077-4,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +100938,Af6,EA077,Equally distributed,EA077-1,But Pe for property acquired rather than inherited by deceased,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +100939,Af7,EA077,Equally distributed,EA077-1,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +100940,Af8,EA077,Equally distributed,EA077-1,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +100941,Af9,EA077,Primogeniture,EA077-4,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +100942,Ag1,EA077,Primogeniture,EA077-4,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +100943,Ag10,EA077,Primogeniture,EA077-4,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +100944,Ag11,EA077,Primogeniture,EA077-4,"For livestock and money; 'inheritance by children of either sex' (EA076 code ""5"") and 'equal distribution' (EA077 code ""1"") for other moveable property",charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +100945,Ag12,EA077,Primogeniture,EA077-4,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +100946,Ag13,EA077,Primogeniture,EA077-4,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +100947,Ag14,EA077,?,EA077-NA,,,,,, +100948,Ag15,EA077,Primogeniture,EA077-4,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +100949,Ag16,EA077,Equally distributed,EA077-1,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +100950,Ag17,EA077,?,EA077-NA,,,,,, +100951,Ag18,EA077,Primogeniture,EA077-4,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +100952,Ag19,EA077,Primogeniture,EA077-4,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +100953,Ag2,EA077,Primogeniture,EA077-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +100954,Ag20,EA077,Primogeniture,EA077-4,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +100955,Ag21,EA077,Primogeniture,EA077-4,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +100956,Ag22,EA077,Equally distributed,EA077-1,But matrilineal until recently,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +100957,Ag23,EA077,Primogeniture,EA077-4,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +100958,Ag24,EA077,Primogeniture,EA077-4,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +100959,Ag25,EA077,Equally distributed,EA077-1,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +100960,Ag26,EA077,Equally distributed,EA077-1,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +100961,Ag27,EA077,Equally distributed,EA077-1,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +100962,Ag28,EA077,?,EA077-NA,,,,,, +100963,Ag29,EA077,Primogeniture,EA077-4,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +100964,Ag3,EA077,Primogeniture,EA077-4,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +100965,Ag30,EA077,Primogeniture,EA077-4,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +100966,Ag31,EA077,Primogeniture,EA077-4,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +100967,Ag32,EA077,Primogeniture,EA077-4,"Entry follows Vendeix; Delafosse reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +100968,Ag33,EA077,Primogeniture,EA077-4,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +100969,Ag34,EA077,Equally distributed,EA077-1,The sources are in some conflict on rules of inheritance,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +100970,Ag35,EA077,Primogeniture,EA077-4,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +100971,Ag36,EA077,?,EA077-NA,,,,,, +100972,Ag37,EA077,Primogeniture,EA077-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +100973,Ag38,EA077,Primogeniture,EA077-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +100974,Ag39,EA077,Primogeniture,EA077-4,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +100975,Ag4,EA077,Primogeniture,EA077-4,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for property acquired rather than inherited by deceased",fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +100976,Ag40,EA077,Primogeniture,EA077-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +100977,Ag41,EA077,?,EA077-NA,Brothers and sons share in inheritance,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +100978,Ag42,EA077,Primogeniture,EA077-4,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +100979,Ag43,EA077,Primogeniture,EA077-4,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +100980,Ag44,EA077,?,EA077-NA,,,,,, +100981,Ag45,EA077,?,EA077-NA,,,,,, +100982,Ag46,EA077,?,EA077-NA,,,,,, +100983,Ag47,EA077,Primogeniture,EA077-4,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +100984,Ag48,EA077,Equally distributed,EA077-1,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +100985,Ag49,EA077,Primogeniture,EA077-4,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +100986,Ag5,EA077,Primogeniture,EA077-4,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +100987,Ag50,EA077,Primogeniture,EA077-4,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +100988,Ag51,EA077,Primogeniture,EA077-4,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +100989,Ag52,EA077,Primogeniture,EA077-4,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +100990,Ag53,EA077,Primogeniture,EA077-4,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +100991,Ag54,EA077,Best qualified,EA077-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +100992,Ag6,EA077,Equally distributed,EA077-1,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +100993,Ag7,EA077,Equally distributed,EA077-1,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +100994,Ag8,EA077,Primogeniture,EA077-4,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +100995,Ag9,EA077,Primogeniture,EA077-4,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +100996,Ah1,EA077,Equally distributed,EA077-1,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +100997,Ah10,EA077,Primogeniture,EA077-4,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +100998,Ah11,EA077,Equally distributed,EA077-1,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +100999,Ah12,EA077,Primogeniture,EA077-4,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +101000,Ah13,EA077,Equally distributed,EA077-1,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +101001,Ah14,EA077,Equally distributed,EA077-1,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +101002,Ah15,EA077,Primogeniture,EA077-4,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +101003,Ah16,EA077,Primogeniture,EA077-4,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +101004,Ah17,EA077,Equally distributed,EA077-1,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +101005,Ah18,EA077,Primogeniture,EA077-4,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +101006,Ah19,EA077,Equally distributed,EA077-1,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +101007,Ah2,EA077,Equally distributed,EA077-1,"Matrilineal by a sister's son(s)' (EA076 code ""2"") or 'patrilineal by son(s)' (EA076 code ""7""), both with 'equal distribution' (EA077 code ""1""), depending on residence",meek1931a,,1920,EthnographicAtlas_1967_p77, +101008,Ah20,EA077,Equally distributed,EA077-1,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +101009,Ah21,EA077,?,EA077-NA,,,,,, +101010,Ah22,EA077,Equally distributed,EA077-1,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +101011,Ah23,EA077,?,EA077-NA,,,,,, +101012,Ah24,EA077,Equally distributed,EA077-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +101013,Ah25,EA077,?,EA077-NA,,,,,, +101014,Ah26,EA077,Primogeniture,EA077-4,"Entry follows Meek; another source reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +101015,Ah27,EA077,Primogeniture,EA077-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +101016,Ah28,EA077,Equally distributed,EA077-1,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +101017,Ah29,EA077,Equally distributed,EA077-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +101018,Ah3,EA077,Equally distributed,EA077-1,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +101019,Ah30,EA077,Primogeniture,EA077-4,,meek1931b,,1920,EthnographicAtlas_1967_p77, +101020,Ah31,EA077,Primogeniture,EA077-4,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +101021,Ah32,EA077,?,EA077-NA,Inheritance is mixed but more matrilineal than patrilineal,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +101022,Ah33,EA077,Primogeniture,EA077-4,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +101023,Ah34,EA077,Equally distributed,EA077-1,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +101024,Ah35,EA077,Primogeniture,EA077-4,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +101025,Ah36,EA077,Equally distributed,EA077-1,"Formerly 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +101026,Ah37,EA077,Primogeniture,EA077-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +101027,Ah38,EA077,Primogeniture,EA077-4,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +101028,Ah39,EA077,Equally distributed,EA077-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +101029,Ah4,EA077,Equally distributed,EA077-1,"But 'matrilineal by a sister's son(s)' (EA076 code ""2"") with 'equal distribution' (EA077 code ""1"") if deceased was married by a token bride-price rather than by an exchange of sisters",meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +101030,Ah5,EA077,Primogeniture,EA077-4,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +101031,Ah6,EA077,?,EA077-NA,,,,,, +101032,Ah7,EA077,Equally distributed,EA077-1,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +101033,Ah8,EA077,Primogeniture,EA077-4,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +101034,Ah9,EA077,Equally distributed,EA077-1,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +101035,Ai1,EA077,Equally distributed,EA077-1,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +101036,Ai10,EA077,Equally distributed,EA077-1,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +101037,Ai11,EA077,Primogeniture,EA077-4,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +101038,Ai12,EA077,?,EA077-NA,,,,,, +101039,Ai13,EA077,Equally distributed,EA077-1,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +101040,Ai14,EA077,?,EA077-NA,,,,,, +101041,Ai15,EA077,?,EA077-NA,,,,,, +101042,Ai16,EA077,Equally distributed,EA077-1,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +101043,Ai17,EA077,?,EA077-NA,,,,,, +101044,Ai18,EA077,?,EA077-NA,,,,,, +101045,Ai19,EA077,?,EA077-NA,,,,,, +101046,Ai2,EA077,Equally distributed,EA077-1,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for tools and weapons as opposed to livestock",nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +101047,Ai20,EA077,Primogeniture,EA077-4,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +101048,Ai21,EA077,?,EA077-NA,,,,,, +101049,Ai22,EA077,?,EA077-NA,,,,,, +101050,Ai23,EA077,Equally distributed,EA077-1,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +101051,Ai24,EA077,Primogeniture,EA077-4,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +101052,Ai25,EA077,?,EA077-NA,,,,,, +101053,Ai26,EA077,Primogeniture,EA077-4,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +101054,Ai27,EA077,?,EA077-NA,,,,,, +101055,Ai28,EA077,Equally distributed,EA077-1,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +101056,Ai29,EA077,Equally distributed,EA077-1,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +101057,Ai3,EA077,Primogeniture,EA077-4,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +101058,Ai30,EA077,Equally distributed,EA077-1,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +101059,Ai31,EA077,?,EA077-NA,,,,,, +101060,Ai32,EA077,?,EA077-NA,,,,,, +101061,Ai33,EA077,Equally distributed,EA077-1,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +101062,Ai34,EA077,?,EA077-NA,,,,,, +101063,Ai35,EA077,?,EA077-NA,,,,,, +101064,Ai36,EA077,Primogeniture,EA077-4,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for property acquired rather than inherited by deceased",bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +101065,Ai37,EA077,Equally distributed,EA077-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +101066,Ai38,EA077,?,EA077-NA,"Mixed 'matrilineal by a sister's son(s)' (EA076 code ""2"") and 'patrilineal by son(s)' (EA076 code ""7""), both with 'equal distribution' (EA077 code ""1"")",nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +101067,Ai39,EA077,?,EA077-NA,Mixed matrilineal and patrilineal,nadel1947,,1940,EthnographicAtlas_1967_p77, +101068,Ai4,EA077,?,EA077-NA,,,,,, +101069,Ai40,EA077,Primogeniture,EA077-4,,nadel1947,,1940,EthnographicAtlas_1967_p77, +101070,Ai41,EA077,Equally distributed,EA077-1,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +101071,Ai42,EA077,Primogeniture,EA077-4,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +101072,Ai43,EA077,Primogeniture,EA077-4,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +101073,Ai44,EA077,?,EA077-NA,,,,,, +101074,Ai45,EA077,Equally distributed,EA077-1,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +101075,Ai46,EA077,?,EA077-NA,,,,,, +101076,Ai47,EA077,Primogeniture,EA077-4,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +101077,Ai5,EA077,?,EA077-NA,,,,,, +101078,Ai6,EA077,Primogeniture,EA077-4,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +101079,Ai7,EA077,Primogeniture,EA077-4,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +101080,Ai8,EA077,Equally distributed,EA077-1,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +101081,Ai9,EA077,Primogeniture,EA077-4,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +101082,Aj1,EA077,Primogeniture,EA077-4,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +101083,Aj10,EA077,Equally distributed,EA077-1,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +101084,Aj11,EA077,Equally distributed,EA077-1,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +101085,Aj12,EA077,?,EA077-NA,,,,,, +101086,Aj13,EA077,Equally distributed,EA077-1,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +101087,Aj14,EA077,?,EA077-NA,,,,,, +101088,Aj15,EA077,Primogeniture,EA077-4,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +101089,Aj16,EA077,?,EA077-NA,,,,,, +101090,Aj17,EA077,Primogeniture,EA077-4,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +101091,Aj18,EA077,Primogeniture,EA077-4,,jensen1959,,1950,EthnographicAtlas_1967_p81, +101092,Aj19,EA077,Primogeniture,EA077-4,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +101093,Aj2,EA077,Equally distributed,EA077-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +101094,Aj20,EA077,?,EA077-NA,,,,,, +101095,Aj21,EA077,Equally distributed,EA077-1,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +101096,Aj22,EA077,?,EA077-NA,,,,,, +101097,Aj23,EA077,Primogeniture,EA077-4,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +101098,Aj24,EA077,Equally distributed,EA077-1,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +101099,Aj25,EA077,Primogeniture,EA077-4,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +101100,Aj26,EA077,Primogeniture,EA077-4,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +101101,Aj27,EA077,?,EA077-NA,,,,,, +101102,Aj28,EA077,Primogeniture,EA077-4,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +101103,Aj29,EA077,Primogeniture,EA077-4,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +101104,Aj3,EA077,Equally distributed,EA077-1,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +101105,Aj30,EA077,?,EA077-NA,,,,,, +101106,Aj31,EA077,?,EA077-NA,,,,,, +101107,Aj4,EA077,Primogeniture,EA077-4,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +101108,Aj5,EA077,Equally distributed,EA077-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +101109,Aj6,EA077,Primogeniture,EA077-4,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +101110,Aj7,EA077,Primogeniture,EA077-4,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +101111,Aj8,EA077,Equally distributed,EA077-1,"Entry follows Seligman; Beaton reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +101112,Aj9,EA077,Equally distributed,EA077-1,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +101113,Ca1,EA077,Primogeniture,EA077-4,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +101114,Ca10,EA077,Equally distributed,EA077-1,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +101115,Ca11,EA077,Primogeniture,EA077-4,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +101116,Ca12,EA077,Primogeniture,EA077-4,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +101117,Ca13,EA077,Primogeniture,EA077-4,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +101118,Ca14,EA077,?,EA077-NA,,,,,, +101119,Ca15,EA077,Equally distributed,EA077-1,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +101120,Ca16,EA077,Primogeniture,EA077-4,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +101121,Ca17,EA077,?,EA077-NA,,,,,, +101122,Ca18,EA077,Primogeniture,EA077-4,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +101123,Ca19,EA077,?,EA077-NA,,,,,, +101124,Ca2,EA077,Equally distributed,EA077-1,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +101125,Ca20,EA077,?,EA077-NA,,,,,, +101126,Ca21,EA077,?,EA077-NA,,,,,, +101127,Ca22,EA077,?,EA077-NA,,,,,, +101128,Ca23,EA077,Primogeniture,EA077-4,,jensen1959,,1950,EthnographicAtlas_1967_p81, +101129,Ca24,EA077,?,EA077-NA,,,,,, +101130,Ca25,EA077,Primogeniture,EA077-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +101131,Ca26,EA077,?,EA077-NA,,,,,, +101132,Ca27,EA077,?,EA077-NA,,,,,, +101133,Ca28,EA077,Primogeniture,EA077-4,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +101134,Ca29,EA077,Equally distributed,EA077-1,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +101135,Ca3,EA077,Equally distributed,EA077-1,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +101136,Ca30,EA077,Primogeniture,EA077-4,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +101137,Ca31,EA077,?,EA077-NA,,,,,, +101138,Ca32,EA077,Primogeniture,EA077-4,"Entry follows Pollera; Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +101139,Ca33,EA077,Primogeniture,EA077-4,"But Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +101140,Ca34,EA077,?,EA077-NA,,,,,, +101141,Ca35,EA077,?,EA077-NA,"Patrilineal, though formerly matrilineal",clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +101142,Ca36,EA077,Equally distributed,EA077-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +101143,Ca37,EA077,Primogeniture,EA077-4,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +101144,Ca38,EA077,Primogeniture,EA077-4,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +101145,Ca39,EA077,Equally distributed,EA077-1,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +101146,Ca4,EA077,Equally distributed,EA077-1,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +101147,Ca40,EA077,Primogeniture,EA077-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +101148,Ca41,EA077,Primogeniture,EA077-4,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +101149,Ca42,EA077,Primogeniture,EA077-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +101150,Ca43,EA077,?,EA077-NA,,,,,, +101151,Ca5,EA077,Equally distributed,EA077-1,But Murray reports matrilineal inheritance,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +101152,Ca6,EA077,?,EA077-NA,,,,,, +101153,Ca7,EA077,Equally distributed,EA077-1,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +101154,Ca8,EA077,Primogeniture,EA077-4,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +101155,Ca9,EA077,Equally distributed,EA077-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +101156,Cb1,EA077,Equally distributed,EA077-1,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +101157,Cb10,EA077,Primogeniture,EA077-4,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +101158,Cb11,EA077,Equally distributed,EA077-1,"In transition to 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"") in accordance with Islamic practice",lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +101159,Cb12,EA077,?,EA077-NA,,,,,, +101160,Cb13,EA077,?,EA077-NA,,,,,, +101161,Cb14,EA077,Equally distributed,EA077-1,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +101162,Cb15,EA077,Equally distributed,EA077-1,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +101163,Cb16,EA077,Equally distributed,EA077-1,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +101164,Cb17,EA077,Ultimogeniture,EA077-3,"Entry follows Felkin; Beaton reports 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"")",barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +101165,Cb18,EA077,Equally distributed,EA077-1,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +101166,Cb19,EA077,Equally distributed,EA077-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +101167,Cb2,EA077,Equally distributed,EA077-1,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +101168,Cb20,EA077,Equally distributed,EA077-1,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +101169,Cb21,EA077,Primogeniture,EA077-4,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +101170,Cb22,EA077,Equally distributed,EA077-1,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +101171,Cb23,EA077,Equally distributed,EA077-1,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +101172,Cb24,EA077,Equally distributed,EA077-1,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +101173,Cb25,EA077,Equally distributed,EA077-1,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +101174,Cb26,EA077,Equally distributed,EA077-1,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +101175,Cb27,EA077,Primogeniture,EA077-4,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +101176,Cb28,EA077,?,EA077-NA,,,,,, +101177,Cb29,EA077,Equally distributed,EA077-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +101178,Cb3,EA077,Equally distributed,EA077-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +101179,Cb4,EA077,Equally distributed,EA077-1,,reid1930,,1920,EthnographicAtlas_1967_p81, +101180,Cb5,EA077,Equally distributed,EA077-1,"In Murdock (1963a) he codes this as 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") with the comment ""But Bouillie, contrary to all other sources, reports 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"")."" In the EA the code is Pe, 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"").",bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +101181,Cb6,EA077,Equally distributed,EA077-1,,woodnd,,1920,EthnographicAtlas_1967_p81, +101182,Cb7,EA077,?,EA077-NA,,,,,, +101183,Cb8,EA077,Equally distributed,EA077-1,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +101184,Cb9,EA077,Equally distributed,EA077-1,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +101185,Cc1,EA077,Equally distributed,EA077-1,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +101186,Cc10,EA077,Equally distributed,EA077-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +101187,Cc11,EA077,Equally distributed,EA077-1,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +101188,Cc12,EA077,Equally distributed,EA077-1,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +101189,Cc13,EA077,Equally distributed,EA077-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +101190,Cc14,EA077,Equally distributed,EA077-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +101191,Cc15,EA077,?,EA077-NA,,,,,, +101192,Cc16,EA077,?,EA077-NA,,,,,, +101193,Cc17,EA077,Equally distributed,EA077-1,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +101194,Cc18,EA077,Equally distributed,EA077-1,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +101195,Cc19,EA077,Equally distributed,EA077-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +101196,Cc2,EA077,Equally distributed,EA077-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +101197,Cc20,EA077,Equally distributed,EA077-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +101198,Cc3,EA077,Equally distributed,EA077-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +101199,Cc4,EA077,?,EA077-NA,,,,,, +101200,Cc5,EA077,Equally distributed,EA077-1,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +101201,Cc6,EA077,Equally distributed,EA077-1,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +101202,Cc7,EA077,Equally distributed,EA077-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101203,Cc8,EA077,?,EA077-NA,,,,,, +101204,Cc9,EA077,Equally distributed,EA077-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +101205,Cd1,EA077,Equally distributed,EA077-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +101206,Cd10,EA077,Equally distributed,EA077-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +101207,Cd11,EA077,Equally distributed,EA077-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +101208,Cd12,EA077,Equally distributed,EA077-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +101209,Cd13,EA077,Equally distributed,EA077-1,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +101210,Cd14,EA077,Equally distributed,EA077-1,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +101211,Cd15,EA077,Equally distributed,EA077-1,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +101212,Cd16,EA077,Equally distributed,EA077-1,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +101213,Cd17,EA077,Equally distributed,EA077-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +101214,Cd18,EA077,Equally distributed,EA077-1,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +101215,Cd19,EA077,?,EA077-NA,,,,,, +101216,Cd2,EA077,Equally distributed,EA077-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +101217,Cd20,EA077,Equally distributed,EA077-1,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +101218,Cd21,EA077,?,EA077-NA,,,,,, +101219,Cd3,EA077,Equally distributed,EA077-1,"But theoretically 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"")",coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +101220,Cd4,EA077,Equally distributed,EA077-1,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +101221,Cd5,EA077,Equally distributed,EA077-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +101222,Cd6,EA077,Equally distributed,EA077-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +101223,Cd7,EA077,Equally distributed,EA077-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +101224,Cd8,EA077,Equally distributed,EA077-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +101225,Cd9,EA077,Equally distributed,EA077-1,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +101226,Ce1,EA077,Equally distributed,EA077-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +101227,Ce2,EA077,?,EA077-NA,,,,,, +101228,Ce3,EA077,Equally distributed,EA077-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +101229,Ce4,EA077,Equally distributed,EA077-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101230,Ce5,EA077,Equally distributed,EA077-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +101231,Ce6,EA077,Equally distributed,EA077-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +101232,Ce7,EA077,Equally distributed,EA077-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +101233,Ce8,EA077,Best qualified,EA077-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +101234,Cf1,EA077,Equally distributed,EA077-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +101235,Cf2,EA077,?,EA077-NA,,,,,, +101236,Cf3,EA077,Equally distributed,EA077-1,,munch1945,,1930,EthnographicAtlas_1967_p85, +101237,Cf4,EA077,Equally distributed,EA077-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +101238,Cf5,EA077,?,EA077-NA,,,,,, +101239,Cg1,EA077,Equally distributed,EA077-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +101240,Cg2,EA077,Equally distributed,EA077-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +101241,Cg3,EA077,Best qualified,EA077-2,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +101242,Cg4,EA077,Equally distributed,EA077-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +101243,Cg5,EA077,?,EA077-NA,,,,,, +101244,Ch1,EA077,?,EA077-NA,,,,,, +101245,Ch10,EA077,?,EA077-NA,,,,,, +101246,Ch11,EA077,?,EA077-NA,,,,,, +101247,Ch2,EA077,Equally distributed,EA077-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +101248,Ch3,EA077,Equally distributed,EA077-1,But the youngest son receives the largest share,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +101249,Ch4,EA077,Ultimogeniture,EA077-3,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +101250,Ch5,EA077,Equally distributed,EA077-1,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +101251,Ch6,EA077,Equally distributed,EA077-1,,ember1954,,1910,EthnographicAtlas_1967_p85, +101252,Ch7,EA077,Equally distributed,EA077-1,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +101253,Ch8,EA077,?,EA077-NA,,,,,, +101254,Ch9,EA077,Equally distributed,EA077-1,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +101255,Ci1,EA077,Equally distributed,EA077-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +101256,Ci10,EA077,Equally distributed,EA077-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +101257,Ci11,EA077,?,EA077-NA,,,,,, +101258,Ci12,EA077,Equally distributed,EA077-1,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +101259,Ci2,EA077,Equally distributed,EA077-1,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +101260,Ci3,EA077,?,EA077-NA,,,,,, +101261,Ci4,EA077,Equally distributed,EA077-1,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +101262,Ci5,EA077,Equally distributed,EA077-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +101263,Ci6,EA077,Equally distributed,EA077-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +101264,Ci7,EA077,?,EA077-NA,,,,,, +101265,Ci8,EA077,?,EA077-NA,,,,,, +101266,Ci9,EA077,Equally distributed,EA077-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +101267,Cj1,EA077,?,EA077-NA,,,,,, +101268,Cj10,EA077,?,EA077-NA,,,,,, +101269,Cj2,EA077,Equally distributed,EA077-1,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +101270,Cj3,EA077,Primogeniture,EA077-4,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +101271,Cj4,EA077,Equally distributed,EA077-1,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +101272,Cj5,EA077,Equally distributed,EA077-1,,dickson1949,,1930,EthnographicAtlas_1967_p89, +101273,Cj6,EA077,Equally distributed,EA077-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +101274,Cj7,EA077,Equally distributed,EA077-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +101275,Cj8,EA077,Equally distributed,EA077-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +101276,Cj9,EA077,?,EA077-NA,,,,,, +101277,Ea1,EA077,?,EA077-NA,,,,,, +101278,Ea10,EA077,Equally distributed,EA077-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +101279,Ea11,EA077,Equally distributed,EA077-1,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +101280,Ea12,EA077,Equally distributed,EA077-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +101281,Ea13,EA077,Equally distributed,EA077-1,"Despite legal change in 1948 to 'inheritance by children of either sex' (EA076 code ""5"") with 'equal distribution' (EA077 code ""1"")",callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +101282,Ea2,EA077,Equally distributed,EA077-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +101283,Ea3,EA077,Primogeniture,EA077-4,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +101284,Ea4,EA077,Equally distributed,EA077-1,,barth1956b,,1950,EthnographicAtlas_1967_p89, +101285,Ea5,EA077,Equally distributed,EA077-1,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +101286,Ea6,EA077,Equally distributed,EA077-1,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +101287,Ea7,EA077,Equally distributed,EA077-1,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +101288,Ea8,EA077,?,EA077-NA,,,,,, +101289,Ea9,EA077,?,EA077-NA,,,,,, +101290,Eb1,EA077,Ultimogeniture,EA077-3,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +101291,Eb2,EA077,Equally distributed,EA077-1,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +101292,Eb3,EA077,Equally distributed,EA077-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +101293,Eb4,EA077,Equally distributed,EA077-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +101294,Eb5,EA077,?,EA077-NA,,,,,, +101295,Eb6,EA077,?,EA077-NA,,,,,, +101296,Eb7,EA077,?,EA077-NA,,,,,, +101297,Eb8,EA077,?,EA077-NA,,,,,, +101298,Ec1,EA077,Equally distributed,EA077-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +101299,Ec10,EA077,Equally distributed,EA077-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +101300,Ec11,EA077,?,EA077-NA,,,,,, +101301,Ec2,EA077,Equally distributed,EA077-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101302,Ec3,EA077,Equally distributed,EA077-1,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +101303,Ec4,EA077,?,EA077-NA,,,,,, +101304,Ec5,EA077,Equally distributed,EA077-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +101305,Ec6,EA077,Ultimogeniture,EA077-3,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +101306,Ec7,EA077,Equally distributed,EA077-1,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +101307,Ec8,EA077,Ultimogeniture,EA077-3,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +101308,Ec9,EA077,?,EA077-NA,,,,,, +101309,Ed1,EA077,Primogeniture,EA077-4,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +101310,Ed10,EA077,Equally distributed,EA077-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +101311,Ed13,EA077,?,EA077-NA,,,,,, +101312,Ed14,EA077,?,EA077-NA,,,,,, +101313,Ed15a,EA077,?,EA077-NA,,,,,, +101314,Ed15b,EA077,Equally distributed,EA077-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +101315,Ed16,EA077,?,EA077-NA,,,,,, +101316,Ed2,EA077,Equally distributed,EA077-1,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +101317,Ed3,EA077,Ultimogeniture,EA077-3,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +101318,Ed4,EA077,Ultimogeniture,EA077-3,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +101319,Ed5,EA077,Primogeniture,EA077-4,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101320,Ed6,EA077,Equally distributed,EA077-1,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +101321,Ed7,EA077,Primogeniture,EA077-4,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +101322,Ed8,EA077,Equally distributed,EA077-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +101323,Ed9,EA077,Equally distributed,EA077-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +101324,Ee1,EA077,Equally distributed,EA077-1,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +101325,Ee2,EA077,?,EA077-NA,,,,,, +101326,Ee3,EA077,Equally distributed,EA077-1,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +101327,Ee4,EA077,Best qualified,EA077-2,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +101328,Ee5,EA077,Equally distributed,EA077-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +101329,Ee6,EA077,Equally distributed,EA077-1,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +101330,Ee7,EA077,?,EA077-NA,,,,,, +101331,Ee8,EA077,?,EA077-NA,,,,,, +101332,Ef1,EA077,Equally distributed,EA077-1,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +101333,Ef10,EA077,?,EA077-NA,,,,,, +101334,Ef11,EA077,Equally distributed,EA077-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +101335,Ef2,EA077,Equally distributed,EA077-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +101336,Ef3,EA077,?,EA077-NA,,,,,, +101337,Ef4,EA077,Equally distributed,EA077-1,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +101338,Ef5,EA077,Equally distributed,EA077-1,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +101339,Ef6,EA077,Equally distributed,EA077-1,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +101340,Ef7,EA077,Equally distributed,EA077-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +101341,Ef8,EA077,Equally distributed,EA077-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +101342,Ef9,EA077,Equally distributed,EA077-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101343,Eg1,EA077,Equally distributed,EA077-1,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101344,Eg10,EA077,Equally distributed,EA077-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +101345,Eg11,EA077,Equally distributed,EA077-1,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +101346,Eg12,EA077,?,EA077-NA,,,,,, +101347,Eg13,EA077,?,EA077-NA,,,,,, +101348,Eg14,EA077,?,EA077-NA,,,,,, +101349,Eg2,EA077,Equally distributed,EA077-1,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +101350,Eg3,EA077,No inher. of mov. property,EA077-9,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +101351,Eg4,EA077,Equally distributed,EA077-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +101352,Eg5,EA077,Equally distributed,EA077-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +101353,Eg6,EA077,?,EA077-NA,,,,,, +101354,Eg7,EA077,Equally distributed,EA077-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +101355,Eg8,EA077,Equally distributed,EA077-1,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +101356,Eg9,EA077,Equally distributed,EA077-1,,elwin1939,,1930,EthnographicAtlas_1967_p93, +101357,Eh1,EA077,?,EA077-NA,,,,,, +101358,Eh10,EA077,?,EA077-NA,,,,,, +101359,Eh2,EA077,Equally distributed,EA077-1,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +101360,Eh3,EA077,Equally distributed,EA077-1,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +101361,Eh4,EA077,Equally distributed,EA077-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101362,Eh5,EA077,Equally distributed,EA077-1,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +101363,Eh6,EA077,Equally distributed,EA077-1,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +101364,Eh7,EA077,Equally distributed,EA077-1,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +101365,Eh8,EA077,?,EA077-NA,,,,,, +101366,Eh9,EA077,Equally distributed,EA077-1,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +101367,Ei1,EA077,?,EA077-NA,The heir is a classificatory SiSo who is DaHu,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101368,Ei10,EA077,Equally distributed,EA077-1,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +101369,Ei11,EA077,Primogeniture,EA077-4,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +101370,Ei12,EA077,Primogeniture,EA077-4,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +101371,Ei13,EA077,Equally distributed,EA077-1,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +101372,Ei14,EA077,Equally distributed,EA077-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +101373,Ei15,EA077,?,EA077-NA,,,,,, +101374,Ei16,EA077,Equally distributed,EA077-1,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +101375,Ei17,EA077,?,EA077-NA,,,,,, +101376,Ei18,EA077,?,EA077-NA,,,,,, +101377,Ei19,EA077,Ultimogeniture,EA077-3,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") in some localities",bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +101378,Ei2,EA077,Equally distributed,EA077-1,,mills1922,,1920,EthnographicAtlas_1967_p93, +101379,Ei20,EA077,?,EA077-NA,,,,,, +101380,Ei3,EA077,Equally distributed,EA077-1,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +101381,Ei4,EA077,Primogeniture,EA077-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +101382,Ei5,EA077,Ultimogeniture,EA077-3,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +101383,Ei6,EA077,Ultimogeniture,EA077-3,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +101384,Ei7,EA077,Equally distributed,EA077-1,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +101385,Ei8,EA077,Ultimogeniture,EA077-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +101386,Ei9,EA077,Primogeniture,EA077-4,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p93, +101387,Ej1,EA077,Equally distributed,EA077-1,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +101388,Ej10,EA077,?,EA077-NA,,,,,, +101389,Ej11,EA077,Ultimogeniture,EA077-3,Mainly from mother to youngest daughter,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +101390,Ej12,EA077,?,EA077-NA,,,,,, +101391,Ej13,EA077,?,EA077-NA,,,,,, +101392,Ej14,EA077,No inher. of mov. property,EA077-9,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101393,Ej15,EA077,?,EA077-NA,,,,,, +101394,Ej16,EA077,Best qualified,EA077-2,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +101395,Ej2,EA077,Equally distributed,EA077-1,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +101396,Ej3,EA077,Equally distributed,EA077-1,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +101397,Ej4,EA077,Equally distributed,EA077-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +101398,Ej5,EA077,Equally distributed,EA077-1,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +101399,Ej6,EA077,?,EA077-NA,,,,,, +101400,Ej7,EA077,Equally distributed,EA077-1,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +101401,Ej8,EA077,Equally distributed,EA077-1,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +101402,Ej9,EA077,Equally distributed,EA077-1,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +101403,Ia1,EA077,Ultimogeniture,EA077-3,"But Li reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +101404,Ia10,EA077,?,EA077-NA,,,,,, +101405,Ia11,EA077,?,EA077-NA,,,,,, +101406,Ia12,EA077,Equally distributed,EA077-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +101407,Ia13,EA077,?,EA077-NA,,,,,, +101408,Ia14,EA077,Equally distributed,EA077-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +101409,Ia15,EA077,?,EA077-NA,,,,,, +101410,Ia16,EA077,Primogeniture,EA077-4,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +101411,Ia17,EA077,?,EA077-NA,,,,,, +101412,Ia18,EA077,?,EA077-NA,,,,,, +101413,Ia2,EA077,Equally distributed,EA077-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +101414,Ia3,EA077,Primogeniture,EA077-4,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +101415,Ia4,EA077,Equally distributed,EA077-1,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +101416,Ia5,EA077,Equally distributed,EA077-1,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +101417,Ia6,EA077,Primogeniture,EA077-4,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101418,Ia7,EA077,Equally distributed,EA077-1,,fox1954,,1950,EthnographicAtlas_1967_p93, +101419,Ia8,EA077,Equally distributed,EA077-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +101420,Ia9,EA077,?,EA077-NA,,,,,, +101421,Ib1,EA077,Equally distributed,EA077-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101422,Ib2,EA077,Equally distributed,EA077-1,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101423,Ib3,EA077,Equally distributed,EA077-1,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +101424,Ib4,EA077,Equally distributed,EA077-1,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +101425,Ib5,EA077,Equally distributed,EA077-1,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +101426,Ib6,EA077,Equally distributed,EA077-1,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +101427,Ib7,EA077,?,EA077-NA,,,,,, +101428,Ib8,EA077,Equally distributed,EA077-1,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +101429,Ib9,EA077,?,EA077-NA,,,,,, +101430,Ic1,EA077,?,EA077-NA,,,,,, +101431,Ic10,EA077,Equally distributed,EA077-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +101432,Ic11,EA077,Equally distributed,EA077-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101433,Ic12,EA077,?,EA077-NA,,,,,, +101434,Ic13,EA077,?,EA077-NA,,,,,, +101435,Ic2,EA077,?,EA077-NA,,,,,, +101436,Ic3,EA077,?,EA077-NA,"Inheritance by widows, then daughters",vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +101437,Ic4,EA077,?,EA077-NA,,,,,, +101438,Ic5,EA077,Equally distributed,EA077-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +101439,Ic6,EA077,Equally distributed,EA077-1,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +101440,Ic7,EA077,Equally distributed,EA077-1,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +101441,Ic8,EA077,Primogeniture,EA077-4,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +101442,Ic9,EA077,Primogeniture,EA077-4,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +101443,Id1,EA077,Primogeniture,EA077-4,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +101444,Id10,EA077,Equally distributed,EA077-1,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +101445,Id11,EA077,?,EA077-NA,,,,,, +101446,Id12,EA077,No inher. of mov. property,EA077-9,,sharp1934,,1930,Ethnology_Vol7_No2_Apr_1968, +101447,Id13,EA077,?,EA077-NA,,,,,, +101448,Id2,EA077,?,EA077-NA,,,,,, +101449,Id3,EA077,?,EA077-NA,,,,,, +101450,Id4,EA077,?,EA077-NA,,,,,, +101451,Id5,EA077,?,EA077-NA,,,,,, +101452,Id6,EA077,?,EA077-NA,,,,,, +101453,Id7,EA077,?,EA077-NA,,,,,, +101454,Id8,EA077,?,EA077-NA,,,,,, +101455,Id9,EA077,?,EA077-NA,,,,,, +101456,Ie1,EA077,?,EA077-NA,,,,,, +101457,Ie10,EA077,Primogeniture,EA077-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +101458,Ie11,EA077,Best qualified,EA077-2,,bowers1964,,1950,EthnographicAtlas_1967_p97, +101459,Ie12,EA077,Equally distributed,EA077-1,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101460,Ie13,EA077,?,EA077-NA,,,,,, +101461,Ie14,EA077,?,EA077-NA,,,,,, +101462,Ie15,EA077,Primogeniture,EA077-4,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101463,Ie16,EA077,?,EA077-NA,,,,,, +101464,Ie17,EA077,No inher. of mov. property,EA077-9,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +101465,Ie18,EA077,No inher. of mov. property,EA077-9,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +101466,Ie19,EA077,?,EA077-NA,,,,,, +101467,Ie2,EA077,Equally distributed,EA077-1,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +101468,Ie20,EA077,Equally distributed,EA077-1,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +101469,Ie21,EA077,Equally distributed,EA077-1,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +101470,Ie22,EA077,?,EA077-NA,,,,,, +101471,Ie23,EA077,Equally distributed,EA077-1,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +101472,Ie24,EA077,No inher. of mov. property,EA077-9,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +101473,Ie25,EA077,Equally distributed,EA077-1,,williamson1912,,1920,EthnographicAtlas_1967_p97, +101474,Ie26,EA077,?,EA077-NA,,,,,, +101475,Ie27,EA077,No inher. of mov. property,EA077-9,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +101476,Ie28,EA077,?,EA077-NA,,,,,, +101477,Ie29,EA077,?,EA077-NA,,,,,, +101478,Ie3,EA077,Equally distributed,EA077-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101479,Ie30,EA077,?,EA077-NA,,,,,, +101480,Ie31,EA077,?,EA077-NA,,,,,, +101481,Ie32,EA077,?,EA077-NA,,,,,, +101482,Ie33,EA077,?,EA077-NA,,,,,, +101483,Ie34,EA077,?,EA077-NA,,,,,, +101484,Ie35,EA077,?,EA077-NA,,,,,, +101485,Ie36,EA077,?,EA077-NA,,,,,, +101486,Ie37,EA077,?,EA077-NA,,,,,, +101487,Ie38,EA077,Equally distributed,EA077-1,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +101488,Ie39,EA077,?,EA077-NA,,,,,, +101489,Ie4,EA077,Equally distributed,EA077-1,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101490,Ie5,EA077,Equally distributed,EA077-1,,williams1936,,1930,EthnographicAtlas_1967_p97, +101491,Ie6,EA077,?,EA077-NA,,,,,, +101492,Ie7,EA077,Equally distributed,EA077-1,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +101493,Ie8,EA077,Equally distributed,EA077-1,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +101494,Ie9,EA077,?,EA077-NA,,,,,, +101495,If1,EA077,Equally distributed,EA077-1,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101496,If10,EA077,?,EA077-NA,,,,,, +101497,If11,EA077,?,EA077-NA,,,,,, +101498,If12,EA077,?,EA077-NA,,,,,, +101499,If13,EA077,?,EA077-NA,,,,,, +101500,If14,EA077,Equally distributed,EA077-1,But canoes were inherited by all children jointly,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +101501,If15,EA077,?,EA077-NA,,,,,, +101502,If16,EA077,?,EA077-NA,,,,,, +101503,If17,EA077,No inher. of mov. property,EA077-9,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +101504,If2,EA077,Equally distributed,EA077-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +101505,If3,EA077,Best qualified,EA077-2,But originally matrilineal,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +101506,If4,EA077,?,EA077-NA,Matrilineal but without information of the preferred heirs,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +101507,If5,EA077,Equally distributed,EA077-1,"But Bascom reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") in most districts",bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +101508,If6,EA077,Equally distributed,EA077-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +101509,If7,EA077,Equally distributed,EA077-1,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +101510,If8,EA077,Equally distributed,EA077-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +101511,If9,EA077,Equally distributed,EA077-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +101512,Ig1,EA077,Equally distributed,EA077-1,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +101513,Ig10,EA077,?,EA077-NA,,,,,, +101514,Ig11,EA077,?,EA077-NA,,,,,, +101515,Ig12,EA077,?,EA077-NA,,,,,, +101516,Ig13,EA077,?,EA077-NA,,,,,, +101517,Ig14,EA077,No inher. of mov. property,EA077-9,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +101518,Ig15,EA077,?,EA077-NA,,,,,, +101519,Ig16,EA077,?,EA077-NA,,,,,, +101520,Ig17,EA077,?,EA077-NA,,,,,, +101521,Ig18,EA077,?,EA077-NA,,,,,, +101522,Ig19,EA077,?,EA077-NA,,,,,, +101523,Ig2,EA077,Equally distributed,EA077-1,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +101524,Ig20,EA077,Equally distributed,EA077-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +101525,Ig21,EA077,?,EA077-NA,,,,,, +101526,Ig3,EA077,?,EA077-NA,"A man may leave his property to his sons, his sister's sons, or both",blackwood1935,,1930,EthnographicAtlas_1967_p101, +101527,Ig4,EA077,Equally distributed,EA077-1,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +101528,Ig5,EA077,?,EA077-NA,"Matrilineal, but the exact distribution is not reported",fortune1932b,,1920,EthnographicAtlas_1967_p101, +101529,Ig6,EA077,Equally distributed,EA077-1,,ivens1927,,1900,EthnographicAtlas_1967_p101, +101530,Ig7,EA077,Equally distributed,EA077-1,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +101531,Ig8,EA077,?,EA077-NA,,,,,, +101532,Ig9,EA077,No inher. of mov. property,EA077-9,Most of a deceased man's property is plundered by the agnatic kinsmen of his MoBr,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +101533,Ih1,EA077,Equally distributed,EA077-1,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +101534,Ih10,EA077,Equally distributed,EA077-1,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101535,Ih11,EA077,?,EA077-NA,,,,,, +101536,Ih12,EA077,?,EA077-NA,,,,,, +101537,Ih13,EA077,?,EA077-NA,,,,,, +101538,Ih14,EA077,Equally distributed,EA077-1,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +101539,Ih2,EA077,?,EA077-NA,,,,,, +101540,Ih3,EA077,Primogeniture,EA077-4,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +101541,Ih4,EA077,Equally distributed,EA077-1,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101542,Ih5,EA077,?,EA077-NA,,,,,, +101543,Ih6,EA077,?,EA077-NA,,,,,, +101544,Ih7,EA077,Equally distributed,EA077-1,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +101545,Ih8,EA077,?,EA077-NA,,,,,, +101546,Ih9,EA077,?,EA077-NA,,,,,, +101547,Ii1,EA077,?,EA077-NA,,,,,, +101548,Ii10,EA077,?,EA077-NA,,,,,, +101549,Ii12,EA077,?,EA077-NA,"Mixed, with substantial shares to sisters' sons",beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101550,Ii13,EA077,?,EA077-NA,,,,,, +101551,Ii14,EA077,?,EA077-NA,,,,,, +101552,Ii2,EA077,?,EA077-NA,,,,,, +101553,Ii3,EA077,?,EA077-NA,,,,,, +101554,Ii4,EA077,Primogeniture,EA077-4,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +101555,Ii5,EA077,?,EA077-NA,,,,,, +101556,Ii6,EA077,Equally distributed,EA077-1,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +101557,Ii7,EA077,Equally distributed,EA077-1,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +101558,Ii8,EA077,?,EA077-NA,,,,,, +101559,Ii9,EA077,Equally distributed,EA077-1,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +101560,Ij1,EA077,?,EA077-NA,,,,,, +101561,Ij10,EA077,Equally distributed,EA077-1,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +101562,Ij2,EA077,?,EA077-NA,,,,,, +101563,Ij3,EA077,?,EA077-NA,,,,,, +101564,Ij4,EA077,?,EA077-NA,,,,,, +101565,Ij5,EA077,Equally distributed,EA077-1,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +101566,Ij6,EA077,Primogeniture,EA077-4,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +101567,Ij7,EA077,Primogeniture,EA077-4,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +101568,Ij8,EA077,?,EA077-NA,,,,,, +101569,Ij9,EA077,?,EA077-NA,,,,,, +101570,Na1,EA077,No inher. of mov. property,EA077-9,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +101571,Na10,EA077,Equally distributed,EA077-1,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +101572,Na11,EA077,?,EA077-NA,,,,,, +101573,Na12,EA077,Equally distributed,EA077-1,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +101574,Na13,EA077,Primogeniture,EA077-4,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +101575,Na14,EA077,No inher. of mov. property,EA077-9,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +101576,Na15,EA077,?,EA077-NA,,,,,, +101577,Na16,EA077,?,EA077-NA,,,,,, +101578,Na17,EA077,No inher. of mov. property,EA077-9,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101579,Na19,EA077,?,EA077-NA,,,,,, +101580,Na2,EA077,Equally distributed,EA077-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +101581,Na20,EA077,?,EA077-NA,,,,,, +101582,Na21,EA077,No inher. of mov. property,EA077-9,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +101583,Na22,EA077,No inher. of mov. property,EA077-9,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +101584,Na23,EA077,No inher. of mov. property,EA077-9,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +101585,Na24,EA077,Primogeniture,EA077-4,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +101586,Na25,EA077,Primogeniture,EA077-4,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +101587,Na26,EA077,No inher. of mov. property,EA077-9,Property is distributed in a potlatch except items previously promised to particular relatives,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +101588,Na27,EA077,Equally distributed,EA077-1,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +101589,Na28,EA077,?,EA077-NA,,,,,, +101590,Na29,EA077,No inher. of mov. property,EA077-9,,goddard1916,,1850,EthnographicAtlas_1967_p105, +101591,Na3,EA077,Equally distributed,EA077-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +101592,Na30,EA077,Equally distributed,EA077-1,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +101593,Na31,EA077,No inher. of mov. property,EA077-9,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +101594,Na32,EA077,Primogeniture,EA077-4,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +101595,Na33,EA077,?,EA077-NA,,,,,, +101596,Na34,EA077,Equally distributed,EA077-1,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +101597,Na35,EA077,No inher. of mov. property,EA077-9,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +101598,Na36,EA077,?,EA077-NA,,,,,, +101599,Na37,EA077,Equally distributed,EA077-1,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +101600,Na38,EA077,No inher. of mov. property,EA077-9,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +101601,Na39,EA077,?,EA077-NA,,,,,, +101602,Na4,EA077,Equally distributed,EA077-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +101603,Na40,EA077,?,EA077-NA,,,,,, +101604,Na41,EA077,?,EA077-NA,,,,,, +101605,Na42,EA077,?,EA077-NA,,,,,, +101606,Na43,EA077,?,EA077-NA,,,,,, +101607,Na44,EA077,?,EA077-NA,,,,,, +101608,Na45,EA077,?,EA077-NA,,,,,, +101609,Na5,EA077,Equally distributed,EA077-1,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +101610,Na6,EA077,Equally distributed,EA077-1,,lantis1946,,1930,EthnographicAtlas_1967_p105, +101611,Na7,EA077,Equally distributed,EA077-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +101612,Na8,EA077,Equally distributed,EA077-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +101613,Na9,EA077,Equally distributed,EA077-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101614,Nb1,EA077,Primogeniture,EA077-4,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +101615,Nb10,EA077,?,EA077-NA,Inheritance reported as bilateral with a patrilineal bias,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +101616,Nb11,EA077,Equally distributed,EA077-1,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +101617,Nb12,EA077,Equally distributed,EA077-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +101618,Nb13,EA077,Equally distributed,EA077-1,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +101619,Nb14,EA077,Equally distributed,EA077-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +101620,Nb15,EA077,?,EA077-NA,,,,,, +101621,Nb16,EA077,No inher. of mov. property,EA077-9,Most of a man's property is given away or destroyed at his death,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +101622,Nb17,EA077,No inher. of mov. property,EA077-9,But originally property was given away to blood kin at a man's death,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +101623,Nb18,EA077,?,EA077-NA,,,,,, +101624,Nb19,EA077,?,EA077-NA,,,,,, +101625,Nb2,EA077,No inher. of mov. property,EA077-9,Distributed by siblings and children at a funeral potlatch,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +101626,Nb20,EA077,?,EA077-NA,But brothers share with sons,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +101627,Nb21,EA077,Equally distributed,EA077-1,Brothers share with grown sons,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +101628,Nb22,EA077,Primogeniture,EA077-4,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +101629,Nb23,EA077,Primogeniture,EA077-4,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +101630,Nb24,EA077,Equally distributed,EA077-1,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +101631,Nb25,EA077,Equally distributed,EA077-1,But most property is destroyed at death,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +101632,Nb26,EA077,Equally distributed,EA077-1,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +101633,Nb27,EA077,No inher. of mov. property,EA077-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +101634,Nb28,EA077,?,EA077-NA,,,,,, +101635,Nb29,EA077,Equally distributed,EA077-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +101636,Nb3,EA077,Primogeniture,EA077-4,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +101637,Nb30,EA077,?,EA077-NA,The property of a deceased man is distributed among all his near relatives,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +101638,Nb31,EA077,Equally distributed,EA077-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +101639,Nb32,EA077,Equally distributed,EA077-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +101640,Nb33,EA077,No inher. of mov. property,EA077-9,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +101641,Nb34,EA077,?,EA077-NA,,,,,, +101642,Nb35,EA077,?,EA077-NA,,,,,, +101643,Nb36,EA077,?,EA077-NA,,,,,, +101644,Nb37,EA077,No inher. of mov. property,EA077-9,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +101645,Nb38,EA077,Equally distributed,EA077-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +101646,Nb39,EA077,No inher. of mov. property,EA077-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +101647,Nb4,EA077,Equally distributed,EA077-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +101648,Nb5,EA077,Equally distributed,EA077-1,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +101649,Nb6,EA077,Equally distributed,EA077-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +101650,Nb7,EA077,Primogeniture,EA077-4,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +101651,Nb8,EA077,No inher. of mov. property,EA077-9,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +101652,Nb9,EA077,Equally distributed,EA077-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +101653,Nc1,EA077,No inher. of mov. property,EA077-9,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +101654,Nc10,EA077,No inher. of mov. property,EA077-9,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +101655,Nc11,EA077,Equally distributed,EA077-1,But most property is destroyed at death,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +101656,Nc12,EA077,No inher. of mov. property,EA077-9,But eldest son inherited a few objects,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +101657,Nc13,EA077,No inher. of mov. property,EA077-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +101658,Nc14,EA077,No inher. of mov. property,EA077-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +101659,Nc15,EA077,No inher. of mov. property,EA077-9,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +101660,Nc16,EA077,?,EA077-NA,,,,,, +101661,Nc17,EA077,No inher. of mov. property,EA077-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +101662,Nc18,EA077,Equally distributed,EA077-1,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +101663,Nc19,EA077,No inher. of mov. property,EA077-9,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +101664,Nc2,EA077,No inher. of mov. property,EA077-9,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +101665,Nc20,EA077,No inher. of mov. property,EA077-9,"But some valuables were inherited by sons, daughters, nephews, and nieces",driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +101666,Nc21,EA077,No inher. of mov. property,EA077-9,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +101667,Nc22,EA077,No inher. of mov. property,EA077-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +101668,Nc23,EA077,No inher. of mov. property,EA077-9,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +101669,Nc24,EA077,?,EA077-NA,,,,,, +101670,Nc25,EA077,?,EA077-NA,,,,,, +101671,Nc26,EA077,?,EA077-NA,,,,,, +101672,Nc27,EA077,No inher. of mov. property,EA077-9,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +101673,Nc28,EA077,?,EA077-NA,,,,,, +101674,Nc29,EA077,Equally distributed,EA077-1,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +101675,Nc3,EA077,No inher. of mov. property,EA077-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +101676,Nc30,EA077,Equally distributed,EA077-1,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +101677,Nc31,EA077,No inher. of mov. property,EA077-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +101678,Nc32,EA077,No inher. of mov. property,EA077-9,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +101679,Nc33,EA077,No inher. of mov. property,EA077-9,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +101680,Nc34,EA077,Primogeniture,EA077-4,But the widow took precedence over the eldest son,meigs1939,,1880,EthnographicAtlas_1967_p109, +101681,Nc4,EA077,Equally distributed,EA077-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +101682,Nc5,EA077,No inher. of mov. property,EA077-9,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +101683,Nc6,EA077,No inher. of mov. property,EA077-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +101684,Nc7,EA077,No inher. of mov. property,EA077-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +101685,Nc8,EA077,No inher. of mov. property,EA077-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +101686,Nc9,EA077,Primogeniture,EA077-4,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +101687,Nd1,EA077,No inher. of mov. property,EA077-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +101688,Nd10,EA077,?,EA077-NA,,,,,, +101689,Nd11,EA077,?,EA077-NA,,,,,, +101690,Nd12,EA077,?,EA077-NA,,,,,, +101691,Nd13,EA077,?,EA077-NA,,,,,, +101692,Nd14,EA077,?,EA077-NA,Distributed among relatives,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +101693,Nd15,EA077,?,EA077-NA,"Given away to close relatives, especially siblings",clineetal1938,,1880,EthnographicAtlas_1967_p113, +101694,Nd16,EA077,?,EA077-NA,,,,,, +101695,Nd17,EA077,?,EA077-NA,,,,,, +101696,Nd18,EA077,?,EA077-NA,,,,,, +101697,Nd19,EA077,?,EA077-NA,,,,,, +101698,Nd2,EA077,No inher. of mov. property,EA077-9,Unless promised to a kinsman before death,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +101699,Nd20,EA077,No inher. of mov. property,EA077-9,"""Inheritance was in the male line. Much property was given away after the funeral feast, and the remainder was usually distributed according to the previously expressed wishes of the owner""",curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +101700,Nd21,EA077,?,EA077-NA,,,,,, +101701,Nd22,EA077,No inher. of mov. property,EA077-9,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +101702,Nd23,EA077,?,EA077-NA,,,,,, +101703,Nd24,EA077,No inher. of mov. property,EA077-9,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +101704,Nd25,EA077,?,EA077-NA,,,,,, +101705,Nd26,EA077,No inher. of mov. property,EA077-9,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +101706,Nd27,EA077,No inher. of mov. property,EA077-9,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +101707,Nd28,EA077,?,EA077-NA,,,,,, +101708,Nd29,EA077,?,EA077-NA,,,,,, +101709,Nd3,EA077,No inher. of mov. property,EA077-9,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +101710,Nd30,EA077,No inher. of mov. property,EA077-9,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +101711,Nd31,EA077,No inher. of mov. property,EA077-9,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +101712,Nd32,EA077,No inher. of mov. property,EA077-9,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +101713,Nd33,EA077,No inher. of mov. property,EA077-9,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +101714,Nd34,EA077,No inher. of mov. property,EA077-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +101715,Nd35,EA077,No inher. of mov. property,EA077-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +101716,Nd36,EA077,No inher. of mov. property,EA077-9,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +101717,Nd37,EA077,?,EA077-NA,,,,,, +101718,Nd38,EA077,?,EA077-NA,,,,,, +101719,Nd39,EA077,?,EA077-NA,,,,,, +101720,Nd4,EA077,?,EA077-NA,Distributed among close male relatives,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +101721,Nd40,EA077,No inher. of mov. property,EA077-9,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +101722,Nd41,EA077,?,EA077-NA,,,,,, +101723,Nd42,EA077,?,EA077-NA,,,,,, +101724,Nd43,EA077,No inher. of mov. property,EA077-9,"But some property is distributed to ""relatives""",harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +101725,Nd44,EA077,No inher. of mov. property,EA077-9,"But some property is distributed to ""relatives""",steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +101726,Nd45,EA077,No inher. of mov. property,EA077-9,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +101727,Nd46,EA077,No inher. of mov. property,EA077-9,"But sometimes personal property was distributed among ""friends of the natural heirs""",lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +101728,Nd47,EA077,No inher. of mov. property,EA077-9,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +101729,Nd48,EA077,No inher. of mov. property,EA077-9,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +101730,Nd49,EA077,No inher. of mov. property,EA077-9,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +101731,Nd5,EA077,Equally distributed,EA077-1,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +101732,Nd50,EA077,No inher. of mov. property,EA077-9,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +101733,Nd51,EA077,No inher. of mov. property,EA077-9,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +101734,Nd52,EA077,No inher. of mov. property,EA077-9,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +101735,Nd53,EA077,No inher. of mov. property,EA077-9,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +101736,Nd54,EA077,No inher. of mov. property,EA077-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101737,Nd55,EA077,No inher. of mov. property,EA077-9,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +101738,Nd56,EA077,No inher. of mov. property,EA077-9,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +101739,Nd57,EA077,No inher. of mov. property,EA077-9,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +101740,Nd58,EA077,No inher. of mov. property,EA077-9,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +101741,Nd59,EA077,No inher. of mov. property,EA077-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +101742,Nd6,EA077,No inher. of mov. property,EA077-9,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +101743,Nd60,EA077,No inher. of mov. property,EA077-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +101744,Nd61,EA077,No inher. of mov. property,EA077-9,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +101745,Nd62,EA077,No inher. of mov. property,EA077-9,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +101746,Nd63,EA077,No inher. of mov. property,EA077-9,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +101747,Nd64,EA077,No inher. of mov. property,EA077-9,But most property is destroyed or given away,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +101748,Nd65,EA077,No inher. of mov. property,EA077-9,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +101749,Nd66,EA077,No inher. of mov. property,EA077-9,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +101750,Nd67,EA077,No inher. of mov. property,EA077-9,,gifford1936,,1870,EthnographicAtlas_1967_p113, +101751,Nd7,EA077,Equally distributed,EA077-1,But formerly seized by relatives,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +101752,Nd8,EA077,Equally distributed,EA077-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +101753,Nd9,EA077,Equally distributed,EA077-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +101754,Ne1,EA077,No inher. of mov. property,EA077-9,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +101755,Ne10,EA077,?,EA077-NA,But sacred bundles were inherited from Fa to So,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +101756,Ne11,EA077,No inher. of mov. property,EA077-9,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +101757,Ne12,EA077,?,EA077-NA,,,,,, +101758,Ne13,EA077,Equally distributed,EA077-1,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +101759,Ne14,EA077,?,EA077-NA,,,,,, +101760,Ne15,EA077,?,EA077-NA,,,,,, +101761,Ne16,EA077,?,EA077-NA,,,,,, +101762,Ne17,EA077,?,EA077-NA,"Inheritance of horses said to follow ""no fixed rule"" but to exhibit a patrilineal tendency",lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +101763,Ne18,EA077,Equally distributed,EA077-1,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +101764,Ne19,EA077,?,EA077-NA,,,,,, +101765,Ne2,EA077,No inher. of mov. property,EA077-9,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +101766,Ne20,EA077,No inher. of mov. property,EA077-9,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +101767,Ne21,EA077,?,EA077-NA,,,,,, +101768,Ne3,EA077,No inher. of mov. property,EA077-9,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +101769,Ne4,EA077,Equally distributed,EA077-1,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +101770,Ne5,EA077,No inher. of mov. property,EA077-9,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +101771,Ne6,EA077,?,EA077-NA,,,,,, +101772,Ne7,EA077,Equally distributed,EA077-1,Entry follows Honigmann; Jenness reports that property was destroyed or given away,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +101773,Ne8,EA077,?,EA077-NA,,,,,, +101774,Ne9,EA077,No inher. of mov. property,EA077-9,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +101775,Nf10,EA077,?,EA077-NA,,,,,, +101776,Nf11,EA077,Equally distributed,EA077-1,,whitman1937,,1870,EthnographicAtlas_1967_p117, +101777,Nf12,EA077,No inher. of mov. property,EA077-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +101778,Nf13,EA077,Equally distributed,EA077-1,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101779,Nf14,EA077,?,EA077-NA,,,,,, +101780,Nf15,EA077,?,EA077-NA,,,,,, +101781,Nf2,EA077,Equally distributed,EA077-1,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +101782,Nf3,EA077,Equally distributed,EA077-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +101783,Nf4,EA077,?,EA077-NA,,,,,, +101784,Nf5,EA077,No inher. of mov. property,EA077-9,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +101785,Nf6,EA077,Primogeniture,EA077-4,"Most property was inherited by brothers and sisters' sons, but the eldest son inherited medicine bundles",dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +101786,Nf7,EA077,No inher. of mov. property,EA077-9,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101787,Nf8,EA077,?,EA077-NA,,,,,, +101788,Nf9,EA077,?,EA077-NA,,,,,, +101789,Ng1,EA077,?,EA077-NA,,,,,, +101790,Ng10,EA077,Equally distributed,EA077-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +101791,Ng11,EA077,?,EA077-NA,In the late period a man's property was divided among his own and his sister's children,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +101792,Ng12,EA077,?,EA077-NA,,,,,, +101793,Ng13,EA077,?,EA077-NA,,,,,, +101794,Ng14,EA077,?,EA077-NA,,,,,, +101795,Ng15,EA077,?,EA077-NA,,,,,, +101796,Ng2,EA077,?,EA077-NA,,,,,, +101797,Ng3,EA077,Equally distributed,EA077-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +101798,Ng4,EA077,Equally distributed,EA077-1,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +101799,Ng5,EA077,?,EA077-NA,,,,,, +101800,Ng6,EA077,?,EA077-NA,,,,,, +101801,Ng7,EA077,?,EA077-NA,,,,,, +101802,Ng8,EA077,Equally distributed,EA077-1,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +101803,Ng9,EA077,Equally distributed,EA077-1,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No1_Jan_1965, +101804,Nh1,EA077,No inher. of mov. property,EA077-9,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +101805,Nh10,EA077,Equally distributed,EA077-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +101806,Nh11,EA077,Equally distributed,EA077-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +101807,Nh12,EA077,Equally distributed,EA077-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +101808,Nh13,EA077,Equally distributed,EA077-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +101809,Nh14,EA077,?,EA077-NA,,,,,, +101810,Nh15,EA077,No inher. of mov. property,EA077-9,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +101811,Nh16,EA077,Equally distributed,EA077-1,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101812,Nh17,EA077,Equally distributed,EA077-1,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +101813,Nh18,EA077,Equally distributed,EA077-1,"But usually 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") today",beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101814,Nh19,EA077,No inher. of mov. property,EA077-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +101815,Nh2,EA077,?,EA077-NA,,,,,, +101816,Nh20,EA077,No inher. of mov. property,EA077-9,,gifford1931,,1860,EthnographicAtlas_1967_p117, +101817,Nh21,EA077,No inher. of mov. property,EA077-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101818,Nh22,EA077,No inher. of mov. property,EA077-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +101819,Nh23,EA077,Equally distributed,EA077-1,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +101820,Nh24,EA077,?,EA077-NA,,,,,, +101821,Nh25,EA077,Equally distributed,EA077-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +101822,Nh26,EA077,?,EA077-NA,,,,,, +101823,Nh27,EA077,?,EA077-NA,,,,,, +101824,Nh3,EA077,Equally distributed,EA077-1,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") today",franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +101825,Nh4,EA077,Equally distributed,EA077-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +101826,Nh5,EA077,No inher. of mov. property,EA077-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +101827,Nh6,EA077,?,EA077-NA,,,,,, +101828,Nh7,EA077,Equally distributed,EA077-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +101829,Nh8,EA077,Equally distributed,EA077-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +101830,Nh9,EA077,?,EA077-NA,,,,,, +101831,Ni1,EA077,Equally distributed,EA077-1,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +101832,Ni2,EA077,No inher. of mov. property,EA077-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +101833,Ni3,EA077,Equally distributed,EA077-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +101834,Ni4,EA077,No inher. of mov. property,EA077-9,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +101835,Ni5,EA077,No inher. of mov. property,EA077-9,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +101836,Ni6,EA077,No inher. of mov. property,EA077-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +101837,Ni7,EA077,?,EA077-NA,,,,,, +101838,Ni8,EA077,?,EA077-NA,,,,,, +101839,Ni9,EA077,?,EA077-NA,,,,,, +101840,Nj1,EA077,Ultimogeniture,EA077-3,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101841,Nj10,EA077,Equally distributed,EA077-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101842,Nj11,EA077,?,EA077-NA,,,,,, +101843,Nj12,EA077,?,EA077-NA,,,,,, +101844,Nj13,EA077,?,EA077-NA,,,,,, +101845,Nj14,EA077,?,EA077-NA,,,,,, +101846,Nj2,EA077,Primogeniture,EA077-4,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +101847,Nj3,EA077,Equally distributed,EA077-1,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +101848,Nj4,EA077,?,EA077-NA,,,,,, +101849,Nj5,EA077,?,EA077-NA,,,,,, +101850,Nj6,EA077,?,EA077-NA,,,,,, +101851,Nj7,EA077,Equally distributed,EA077-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101852,Nj8,EA077,?,EA077-NA,,,,,, +101853,Nj9,EA077,Equally distributed,EA077-1,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +101854,Sa1,EA077,?,EA077-NA,,,,,, +101855,Sa10,EA077,?,EA077-NA,,,,,, +101856,Sa11,EA077,Equally distributed,EA077-1,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +101857,Sa12,EA077,?,EA077-NA,,,,,, +101858,Sa13,EA077,Equally distributed,EA077-1,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +101859,Sa14,EA077,?,EA077-NA,,,,,, +101860,Sa15,EA077,?,EA077-NA,,,,,, +101861,Sa16,EA077,?,EA077-NA,,,,,, +101862,Sa17,EA077,?,EA077-NA,,,,,, +101863,Sa2,EA077,?,EA077-NA,,,,,, +101864,Sa3,EA077,Equally distributed,EA077-1,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +101865,Sa4,EA077,?,EA077-NA,,,,,, +101866,Sa5,EA077,Equally distributed,EA077-1,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +101867,Sa6,EA077,Equally distributed,EA077-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +101868,Sa7,EA077,?,EA077-NA,,,,,, +101869,Sa8,EA077,Equally distributed,EA077-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +101870,Sa9,EA077,?,EA077-NA,,,,,, +101871,Sb1,EA077,?,EA077-NA,Probably matrilineal,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +101872,Sb2,EA077,Equally distributed,EA077-1,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +101873,Sb3,EA077,?,EA077-NA,,,,,, +101874,Sb4,EA077,Equally distributed,EA077-1,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +101875,Sb5,EA077,?,EA077-NA,,,,,, +101876,Sb6,EA077,Equally distributed,EA077-1,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +101877,Sb7,EA077,?,EA077-NA,,,,,, +101878,Sb8,EA077,?,EA077-NA,,,,,, +101879,Sb9,EA077,Equally distributed,EA077-1,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +101880,Sc1,EA077,?,EA077-NA,,,,,, +101881,Sc10,EA077,?,EA077-NA,,,,,, +101882,Sc11,EA077,?,EA077-NA,,,,,, +101883,Sc12,EA077,?,EA077-NA,,,,,, +101884,Sc13,EA077,?,EA077-NA,,,,,, +101885,Sc14,EA077,?,EA077-NA,,,,,, +101886,Sc15,EA077,?,EA077-NA,,,,,, +101887,Sc16,EA077,?,EA077-NA,,,,,, +101888,Sc17,EA077,?,EA077-NA,,,,,, +101889,Sc18,EA077,Equally distributed,EA077-1,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +101890,Sc2,EA077,Equally distributed,EA077-1,,leedsnd,,1950,EthnographicAtlas_1967_p121, +101891,Sc3,EA077,?,EA077-NA,,,,,, +101892,Sc4,EA077,Primogeniture,EA077-4,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +101893,Sc5,EA077,?,EA077-NA,,,,,, +101894,Sc6,EA077,Equally distributed,EA077-1,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101895,Sc7,EA077,?,EA077-NA,,,,,, +101896,Sc8,EA077,?,EA077-NA,,,,,, +101897,Sc9,EA077,?,EA077-NA,,,,,, +101898,Sd1,EA077,No inher. of mov. property,EA077-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101899,Sd2,EA077,?,EA077-NA,,,,,, +101900,Sd3,EA077,?,EA077-NA,,,,,, +101901,Sd4,EA077,?,EA077-NA,,,,,, +101902,Sd5,EA077,?,EA077-NA,,,,,, +101903,Sd6,EA077,?,EA077-NA,,,,,, +101904,Sd7,EA077,Equally distributed,EA077-1,,fock1963,,1950,EthnographicAtlas_1967_p121, +101905,Sd8,EA077,?,EA077-NA,,,,,, +101906,Sd9,EA077,?,EA077-NA,,,,,, +101907,Se1,EA077,No inher. of mov. property,EA077-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +101908,Se10,EA077,?,EA077-NA,,,,,, +101909,Se11,EA077,?,EA077-NA,,,,,, +101910,Se12,EA077,?,EA077-NA,,,,,, +101911,Se2,EA077,Equally distributed,EA077-1,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +101912,Se3,EA077,Equally distributed,EA077-1,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +101913,Se4,EA077,No inher. of mov. property,EA077-9,,fejos1943,,1940,EthnographicAtlas_1967_p121, +101914,Se5,EA077,Equally distributed,EA077-1,"But 'no inheritance ' (code ""9"") for clothing an ceremonial objects",goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +101915,Se6,EA077,?,EA077-NA,,,,,, +101916,Se7,EA077,Primogeniture,EA077-4,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101917,Se8,EA077,No inher. of mov. property,EA077-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +101918,Se9,EA077,?,EA077-NA,,,,,, +101919,Sf1,EA077,Equally distributed,EA077-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +101920,Sf2,EA077,Equally distributed,EA077-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +101921,Sf3,EA077,?,EA077-NA,,,,,, +101922,Sf4,EA077,Equally distributed,EA077-1,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +101923,Sf5,EA077,Equally distributed,EA077-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +101924,Sf6,EA077,Equally distributed,EA077-1,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +101925,Sf7,EA077,?,EA077-NA,,,,,, +101926,Sf8,EA077,?,EA077-NA,,,,,, +101927,Sf9,EA077,?,EA077-NA,,,,,, +101928,Sg1,EA077,No inher. of mov. property,EA077-9,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +101929,Sg2,EA077,Equally distributed,EA077-1,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101930,Sg3,EA077,No inher. of mov. property,EA077-9,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +101931,Sg4,EA077,?,EA077-NA,,,,,, +101932,Sg5,EA077,?,EA077-NA,,,,,, +101933,Sh1,EA077,No inher. of mov. property,EA077-9,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +101934,Sh2,EA077,?,EA077-NA,,,,,, +101935,Sh3,EA077,?,EA077-NA,,,,,, +101936,Sh4,EA077,Primogeniture,EA077-4,,oberg1949,,1940,EthnographicAtlas_1967_p125, +101937,Sh5,EA077,No inher. of mov. property,EA077-9,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +101938,Sh6,EA077,?,EA077-NA,,,,,, +101939,Sh7,EA077,?,EA077-NA,,,,,, +101940,Sh8,EA077,No inher. of mov. property,EA077-9,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +101941,Sh9,EA077,?,EA077-NA,,,,,, +101942,Si1,EA077,?,EA077-NA,,,,,, +101943,Si10,EA077,?,EA077-NA,,,,,, +101944,Si2,EA077,?,EA077-NA,,,,,, +101945,Si3,EA077,?,EA077-NA,,,,,, +101946,Si4,EA077,No inher. of mov. property,EA077-9,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +101947,Si5,EA077,No inher. of mov. property,EA077-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +101948,Si6,EA077,?,EA077-NA,,,,,, +101949,Si7,EA077,?,EA077-NA,,,,,, +101950,Si8,EA077,?,EA077-NA,,,,,, +101951,Si9,EA077,?,EA077-NA,,,,,, +101952,Sj1,EA077,?,EA077-NA,,,,,, +101953,Sj10,EA077,?,EA077-NA,,,,,, +101954,Sj11,EA077,No inher. of mov. property,EA077-9,"Aboriginally, but some objects are inherited today",mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +101955,Sj2,EA077,?,EA077-NA,,,,,, +101956,Sj3,EA077,No inher. of mov. property,EA077-9,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +101957,Sj4,EA077,Equally distributed,EA077-1,Distribution among matrilineal kinsmen of both sexes,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +101958,Sj5,EA077,?,EA077-NA,,,,,, +101959,Sj6,EA077,Equally distributed,EA077-1,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +101960,Sj7,EA077,?,EA077-NA,,,,,, +101961,Sj8,EA077,?,EA077-NA,,,,,, +101962,Sj9,EA077,?,EA077-NA,,,,,, +101963,ch12,EA077,Ultimogeniture,EA077-3,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +101964,ch13,EA077,Equally distributed,EA077-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +101965,ch14,EA077,Ultimogeniture,EA077-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +101966,ch15,EA077,Equally distributed,EA077-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +101967,ch16,EA077,Best qualified,EA077-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +101968,ch17,EA077,Equally distributed,EA077-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +101969,ch18,EA077,Equally distributed,EA077-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +101970,ch19,EA077,Equally distributed,EA077-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +101971,ch20,EA077,Ultimogeniture,EA077-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +101972,ch21,EA077,Equally distributed,EA077-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +101973,ch22,EA077,Equally distributed,EA077-1,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +101974,ch23,EA077,Equally distributed,EA077-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +101975,ch24,EA077,Equally distributed,EA077-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +101976,ch25,EA077,Equally distributed,EA077-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +101977,ch26,EA077,Best qualified,EA077-2,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +101978,ch27,EA077,Equally distributed,EA077-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +101979,ch28,EA077,Equally distributed,EA077-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +101980,ec12,EA077,?,EA077-NA,,,,,, +101981,ec13,EA077,?,EA077-NA,,,,,, +101982,ec14,EA077,?,EA077-NA,,,,,, +101983,ec15,EA077,?,EA077-NA,,,,,, +101984,ec16,EA077,?,EA077-NA,,,,,, +101985,ec17,EA077,?,EA077-NA,,,,,, +101986,ec18,EA077,?,EA077-NA,,,,,, +101987,ec19,EA077,?,EA077-NA,,,,,, +101988,ec20,EA077,?,EA077-NA,,,,,, +101989,ec21,EA077,?,EA077-NA,,,,,, +101990,Aa1,EA078,Precluded by early marriage,EA078-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +101991,Aa2,EA078,?,EA078-NA,,,,,, +101992,Aa3,EA078,"Permitted, sanction if pregnancy",EA078-4,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +101993,Aa4,EA078,?,EA078-NA,,,,,, +101994,Aa5,EA078,"Permitted, no sanctions",EA078-6,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +101995,Aa6,EA078,?,EA078-NA,,,,,, +101996,Aa7,EA078,?,EA078-NA,,,,,, +101997,Aa8,EA078,?,EA078-NA,,,,,, +101998,Aa9,EA078,?,EA078-NA,,,,,, +101999,Ab1,EA078,?,EA078-NA,,,,,, +102000,Ab10,EA078,"Permitted, no sanctions",EA078-6,But without penetration,hunter1936,,1936,EthnographicAtlas_1967_p65, +102001,Ab11,EA078,?,EA078-NA,,,,,, +102002,Ab12,EA078,?,EA078-NA,,,,,, +102003,Ab13,EA078,Prohibited but weakly sanctioned,EA078-3,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +102004,Ab14,EA078,"Permitted, sanction if pregnancy",EA078-4,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +102005,Ab15,EA078,"Prohibited, strongly sanctioned",EA078-2,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +102006,Ab16,EA078,?,EA078-NA,,,,,, +102007,Ab17,EA078,?,EA078-NA,,,,,, +102008,Ab18,EA078,?,EA078-NA,,,,,, +102009,Ab19,EA078,?,EA078-NA,,,,,, +102010,Ab2,EA078,?,EA078-NA,,,,,, +102011,Ab20,EA078,?,EA078-NA,,,,,, +102012,Ab21a,EA078,"Permitted, no sanctions",EA078-6,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +102013,Ab21b,EA078,?,EA078-NA,,,,,, +102014,Ab22,EA078,?,EA078-NA,,,,,, +102015,Ab3,EA078,?,EA078-NA,,,,,, +102016,Ab4,EA078,"Permitted, no sanctions",EA078-6,,junod1927,,1920,EthnographicAtlas_1967_p65, +102017,Ab5,EA078,?,EA078-NA,,,,,, +102018,Ab6,EA078,"Permitted, sanction if pregnancy",EA078-4,But without actual penetration,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +102019,Ab7,EA078,?,EA078-NA,,,,,, +102020,Ab8,EA078,?,EA078-NA,,,,,, +102021,Ab9,EA078,?,EA078-NA,,,,,, +102022,Ac1,EA078,"Permitted, no sanctions",EA078-6,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +102023,Ac10,EA078,Precluded by early marriage,EA078-1,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +102024,Ac11,EA078,"Permitted, no sanctions",EA078-6,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +102025,Ac12,EA078,?,EA078-NA,,,,,, +102026,Ac13,EA078,?,EA078-NA,,,,,, +102027,Ac14,EA078,"Permitted, no sanctions",EA078-6,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +102028,Ac15,EA078,?,EA078-NA,,,,,, +102029,Ac16,EA078,"Permitted, no sanctions",EA078-6,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +102030,Ac17,EA078,?,EA078-NA,,,,,, +102031,Ac18,EA078,?,EA078-NA,,,,,, +102032,Ac19,EA078,?,EA078-NA,,,,,, +102033,Ac2,EA078,?,EA078-NA,,,,,, +102034,Ac20,EA078,?,EA078-NA,,,,,, +102035,Ac21,EA078,?,EA078-NA,,,,,, +102036,Ac22,EA078,?,EA078-NA,,,,,, +102037,Ac23,EA078,?,EA078-NA,,,,,, +102038,Ac24,EA078,?,EA078-NA,,,,,, +102039,Ac25,EA078,?,EA078-NA,,,,,, +102040,Ac26,EA078,?,EA078-NA,,,,,, +102041,Ac27,EA078,?,EA078-NA,,,,,, +102042,Ac28,EA078,?,EA078-NA,,,,,, +102043,Ac29,EA078,?,EA078-NA,,,,,, +102044,Ac3,EA078,Precluded by early marriage,EA078-1,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +102045,Ac30,EA078,"Permitted, no sanctions",EA078-6,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +102046,Ac31,EA078,?,EA078-NA,,,,,, +102047,Ac32,EA078,?,EA078-NA,,,,,, +102048,Ac33,EA078,"Permitted, no sanctions",EA078-6,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +102049,Ac34,EA078,?,EA078-NA,,,,,, +102050,Ac35,EA078,?,EA078-NA,,,,,, +102051,Ac36,EA078,?,EA078-NA,,,,,, +102052,Ac37,EA078,?,EA078-NA,,,,,, +102053,Ac38,EA078,?,EA078-NA,,,,,, +102054,Ac39,EA078,?,EA078-NA,,,,,, +102055,Ac4,EA078,?,EA078-NA,,,,,, +102056,Ac40,EA078,"Permitted, no sanctions",EA078-6,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +102057,Ac41,EA078,?,EA078-NA,,,,,, +102058,Ac42,EA078,?,EA078-NA,,,,,, +102059,Ac43,EA078,?,EA078-NA,,,,,, +102060,Ac5,EA078,?,EA078-NA,,,,,, +102061,Ac6,EA078,?,EA078-NA,,,,,, +102062,Ac7,EA078,"Permitted, sanction if pregnancy",EA078-4,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +102063,Ac8,EA078,?,EA078-NA,,,,,, +102064,Ac9,EA078,?,EA078-NA,,,,,, +102065,Ad1,EA078,?,EA078-NA,,,,,, +102066,Ad10,EA078,?,EA078-NA,,,,,, +102067,Ad11,EA078,?,EA078-NA,,,,,, +102068,Ad12,EA078,"Prohibited, strongly sanctioned",EA078-2,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +102069,Ad13,EA078,"Prohibited, strongly sanctioned",EA078-2,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +102070,Ad14,EA078,"Permitted, no sanctions",EA078-6,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +102071,Ad15,EA078,?,EA078-NA,,,,,, +102072,Ad16,EA078,?,EA078-NA,,,,,, +102073,Ad17,EA078,"Permitted, sanction if pregnancy",EA078-4,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +102074,Ad18,EA078,?,EA078-NA,,,,,, +102075,Ad19,EA078,?,EA078-NA,,,,,, +102076,Ad2,EA078,?,EA078-NA,,,,,, +102077,Ad20,EA078,"Permitted, sanction if pregnancy",EA078-4,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +102078,Ad21,EA078,?,EA078-NA,,,,,, +102079,Ad22,EA078,"Permitted, no sanctions",EA078-6,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +102080,Ad23,EA078,?,EA078-NA,,,,,, +102081,Ad24,EA078,?,EA078-NA,,,,,, +102082,Ad25,EA078,?,EA078-NA,,,,,, +102083,Ad26,EA078,?,EA078-NA,,,,,, +102084,Ad27,EA078,?,EA078-NA,,,,,, +102085,Ad28,EA078,?,EA078-NA,,,,,, +102086,Ad29,EA078,?,EA078-NA,,,,,, +102087,Ad3,EA078,Prohibited but weakly sanctioned,EA078-3,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +102088,Ad30,EA078,?,EA078-NA,,,,,, +102089,Ad31,EA078,?,EA078-NA,,,,,, +102090,Ad32,EA078,?,EA078-NA,,,,,, +102091,Ad33,EA078,?,EA078-NA,,,,,, +102092,Ad34,EA078,"Permitted, sanction if pregnancy",EA078-4,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +102093,Ad35,EA078,?,EA078-NA,,,,,, +102094,Ad36,EA078,?,EA078-NA,,,,,, +102095,Ad37,EA078,?,EA078-NA,,,,,, +102096,Ad38,EA078,?,EA078-NA,,,,,, +102097,Ad39,EA078,"Prohibited, strongly sanctioned",EA078-2,,gray1963,,1950,EthnographicAtlas_1967_p69, +102098,Ad4,EA078,?,EA078-NA,,,,,, +102099,Ad40,EA078,?,EA078-NA,,,,,, +102100,Ad41,EA078,"Permitted, no sanctions",EA078-6,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +102101,Ad42,EA078,?,EA078-NA,,,,,, +102102,Ad43,EA078,?,EA078-NA,,,,,, +102103,Ad44,EA078,?,EA078-NA,,,,,, +102104,Ad45,EA078,?,EA078-NA,,,,,, +102105,Ad46,EA078,?,EA078-NA,,,,,, +102106,Ad47,EA078,"Permitted, sanction if pregnancy",EA078-4,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +102107,Ad48,EA078,?,EA078-NA,,,,,, +102108,Ad49,EA078,?,EA078-NA,,,,,, +102109,Ad5,EA078,?,EA078-NA,,,,,, +102110,Ad50,EA078,?,EA078-NA,,,,,, +102111,Ad51,EA078,?,EA078-NA,,,,,, +102112,Ad6,EA078,Precluded by early marriage,EA078-1,But intercourse without penetration is practiced,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +102113,Ad7,EA078,Prohibited but weakly sanctioned,EA078-3,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +102114,Ad8,EA078,?,EA078-NA,,,,,, +102115,Ad9,EA078,"Permitted, sanction if pregnancy",EA078-4,But without penetration,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +102116,Ae1,EA078,"Permitted, no sanctions",EA078-6,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +102117,Ae10,EA078,"Prohibited, strongly sanctioned",EA078-2,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +102118,Ae11,EA078,?,EA078-NA,,,,,, +102119,Ae12,EA078,?,EA078-NA,,,,,, +102120,Ae13,EA078,?,EA078-NA,,,,,, +102121,Ae14,EA078,?,EA078-NA,,,,,, +102122,Ae15,EA078,?,EA078-NA,,,,,, +102123,Ae16,EA078,?,EA078-NA,,,,,, +102124,Ae17,EA078,"Prohibited, strongly sanctioned",EA078-2,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +102125,Ae18,EA078,"Permitted, no sanctions",EA078-6,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +102126,Ae19,EA078,?,EA078-NA,,,,,, +102127,Ae2,EA078,?,EA078-NA,,,,,, +102128,Ae20,EA078,Trial marriage,EA078-5,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +102129,Ae21,EA078,?,EA078-NA,,,,,, +102130,Ae22,EA078,?,EA078-NA,,,,,, +102131,Ae23,EA078,?,EA078-NA,,,,,, +102132,Ae24,EA078,?,EA078-NA,,,,,, +102133,Ae25,EA078,?,EA078-NA,,,,,, +102134,Ae26,EA078,?,EA078-NA,,,,,, +102135,Ae27,EA078,?,EA078-NA,,,,,, +102136,Ae28,EA078,?,EA078-NA,,,,,, +102137,Ae29,EA078,"Permitted, no sanctions",EA078-6,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +102138,Ae3,EA078,"Permitted, no sanctions",EA078-6,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +102139,Ae30,EA078,?,EA078-NA,,,,,, +102140,Ae31,EA078,Trial marriage,EA078-5,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +102141,Ae32,EA078,?,EA078-NA,,,,,, +102142,Ae33,EA078,?,EA078-NA,,,,,, +102143,Ae34,EA078,"Prohibited, strongly sanctioned",EA078-2,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +102144,Ae35,EA078,?,EA078-NA,,,,,, +102145,Ae36,EA078,?,EA078-NA,,,,,, +102146,Ae37,EA078,?,EA078-NA,,,,,, +102147,Ae38,EA078,?,EA078-NA,,,,,, +102148,Ae39,EA078,"Permitted, no sanctions",EA078-6,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +102149,Ae4,EA078,"Permitted, no sanctions",EA078-6,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +102150,Ae40,EA078,?,EA078-NA,,,,,, +102151,Ae41,EA078,Precluded by early marriage,EA078-1,,andersson1953,,1940,EthnographicAtlas_1967_p69, +102152,Ae42,EA078,"Permitted, no sanctions",EA078-6,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +102153,Ae43,EA078,?,EA078-NA,,,,,, +102154,Ae44,EA078,"Prohibited, strongly sanctioned",EA078-2,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +102155,Ae45,EA078,?,EA078-NA,,,,,, +102156,Ae46,EA078,?,EA078-NA,,,,,, +102157,Ae47,EA078,?,EA078-NA,,,,,, +102158,Ae48,EA078,"Permitted, sanction if pregnancy",EA078-4,After a period of chastity and before marriage,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +102159,Ae49,EA078,?,EA078-NA,,,,,, +102160,Ae5,EA078,?,EA078-NA,,,,,, +102161,Ae50,EA078,Precluded by early marriage,EA078-1,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +102162,Ae51,EA078,?,EA078-NA,,,,,, +102163,Ae52,EA078,?,EA078-NA,,,,,, +102164,Ae53,EA078,Precluded by early marriage,EA078-1,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +102165,Ae54,EA078,?,EA078-NA,,,,,, +102166,Ae55,EA078,?,EA078-NA,,,,,, +102167,Ae56,EA078,?,EA078-NA,,,,,, +102168,Ae57,EA078,?,EA078-NA,,,,,, +102169,Ae58,EA078,"Permitted, no sanctions",EA078-6,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +102170,Ae59,EA078,"Permitted, no sanctions",EA078-6,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +102171,Ae6,EA078,Precluded by early marriage,EA078-1,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +102172,Ae7,EA078,"Permitted, no sanctions",EA078-6,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +102173,Ae8,EA078,"Prohibited, strongly sanctioned",EA078-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +102174,Ae9,EA078,?,EA078-NA,,,,,, +102175,Af1,EA078,"Prohibited, strongly sanctioned",EA078-2,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +102176,Af10,EA078,Prohibited but weakly sanctioned,EA078-3,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +102177,Af11,EA078,?,EA078-NA,,,,,, +102178,Af12,EA078,?,EA078-NA,,,,,, +102179,Af13,EA078,?,EA078-NA,,,,,, +102180,Af14,EA078,?,EA078-NA,,,,,, +102181,Af15,EA078,"Permitted, no sanctions",EA078-6,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +102182,Af16,EA078,"Permitted, no sanctions",EA078-6,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +102183,Af17,EA078,?,EA078-NA,,,,,, +102184,Af18,EA078,Prohibited but weakly sanctioned,EA078-3,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +102185,Af19,EA078,?,EA078-NA,,,,,, +102186,Af2,EA078,?,EA078-NA,,,,,, +102187,Af20,EA078,?,EA078-NA,,,,,, +102188,Af21,EA078,?,EA078-NA,,,,,, +102189,Af22,EA078,"Permitted, no sanctions",EA078-6,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +102190,Af23,EA078,"Prohibited, strongly sanctioned",EA078-2,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +102191,Af24,EA078,?,EA078-NA,,,,,, +102192,Af25,EA078,?,EA078-NA,,,,,, +102193,Af26,EA078,?,EA078-NA,,,,,, +102194,Af27,EA078,?,EA078-NA,,,,,, +102195,Af28,EA078,"Prohibited, strongly sanctioned",EA078-2,,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +102196,Af29,EA078,?,EA078-NA,,,,,, +102197,Af3,EA078,"Prohibited, strongly sanctioned",EA078-2,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +102198,Af30,EA078,Precluded by early marriage,EA078-1,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +102199,Af31,EA078,"Permitted, no sanctions",EA078-6,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +102200,Af32,EA078,?,EA078-NA,,,,,, +102201,Af33,EA078,?,EA078-NA,,,,,, +102202,Af34,EA078,?,EA078-NA,,,,,, +102203,Af35,EA078,Trial marriage,EA078-5,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +102204,Af36,EA078,"Permitted, no sanctions",EA078-6,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +102205,Af37,EA078,?,EA078-NA,,,,,, +102206,Af38,EA078,?,EA078-NA,,,,,, +102207,Af39,EA078,?,EA078-NA,,,,,, +102208,Af4,EA078,?,EA078-NA,,,,,, +102209,Af40,EA078,"Permitted, no sanctions",EA078-6,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +102210,Af41,EA078,?,EA078-NA,,,,,, +102211,Af42,EA078,?,EA078-NA,,,,,, +102212,Af43,EA078,?,EA078-NA,,,,,, +102213,Af44,EA078,?,EA078-NA,,,,,, +102214,Af45,EA078,"Permitted, no sanctions",EA078-6,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +102215,Af46,EA078,?,EA078-NA,,,,,, +102216,Af47,EA078,?,EA078-NA,,,,,, +102217,Af48,EA078,?,EA078-NA,,,,,, +102218,Af49,EA078,"Permitted, no sanctions",EA078-6,,schwab1947,,1940,EthnographicAtlas_1967_p73, +102219,Af5,EA078,?,EA078-NA,,,,,, +102220,Af50,EA078,?,EA078-NA,,,,,, +102221,Af51,EA078,?,EA078-NA,,,,,, +102222,Af52,EA078,"Permitted, no sanctions",EA078-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +102223,Af53,EA078,?,EA078-NA,,,,,, +102224,Af54,EA078,"Permitted, no sanctions",EA078-6,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +102225,Af55,EA078,?,EA078-NA,,,,,, +102226,Af56,EA078,"Permitted, no sanctions",EA078-6,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +102227,Af57,EA078,?,EA078-NA,,,,,, +102228,Af58,EA078,"Prohibited, strongly sanctioned",EA078-2,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +102229,Af6,EA078,Prohibited but weakly sanctioned,EA078-3,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +102230,Af7,EA078,"Permitted, no sanctions",EA078-6,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +102231,Af8,EA078,"Prohibited, strongly sanctioned",EA078-2,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +102232,Af9,EA078,"Permitted, no sanctions",EA078-6,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +102233,Ag1,EA078,?,EA078-NA,,,,,, +102234,Ag10,EA078,?,EA078-NA,,,,,, +102235,Ag11,EA078,?,EA078-NA,,,,,, +102236,Ag12,EA078,?,EA078-NA,,,,,, +102237,Ag13,EA078,?,EA078-NA,,,,,, +102238,Ag14,EA078,?,EA078-NA,,,,,, +102239,Ag15,EA078,?,EA078-NA,,,,,, +102240,Ag16,EA078,"Permitted, no sanctions",EA078-6,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +102241,Ag17,EA078,"Permitted, no sanctions",EA078-6,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +102242,Ag18,EA078,"Permitted, no sanctions",EA078-6,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +102243,Ag19,EA078,"Permitted, no sanctions",EA078-6,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +102244,Ag2,EA078,?,EA078-NA,,,,,, +102245,Ag20,EA078,"Permitted, no sanctions",EA078-6,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +102246,Ag21,EA078,"Permitted, no sanctions",EA078-6,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +102247,Ag22,EA078,"Permitted, no sanctions",EA078-6,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +102248,Ag23,EA078,?,EA078-NA,,,,,, +102249,Ag24,EA078,?,EA078-NA,,,,,, +102250,Ag25,EA078,"Prohibited, strongly sanctioned",EA078-2,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +102251,Ag26,EA078,?,EA078-NA,,,,,, +102252,Ag27,EA078,?,EA078-NA,,,,,, +102253,Ag28,EA078,?,EA078-NA,,,,,, +102254,Ag29,EA078,?,EA078-NA,,,,,, +102255,Ag3,EA078,?,EA078-NA,,,,,, +102256,Ag30,EA078,?,EA078-NA,,,,,, +102257,Ag31,EA078,"Prohibited, strongly sanctioned",EA078-2,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +102258,Ag32,EA078,"Permitted, no sanctions",EA078-6,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +102259,Ag33,EA078,?,EA078-NA,,,,,, +102260,Ag34,EA078,?,EA078-NA,,,,,, +102261,Ag35,EA078,?,EA078-NA,,,,,, +102262,Ag36,EA078,?,EA078-NA,,,,,, +102263,Ag37,EA078,?,EA078-NA,,,,,, +102264,Ag38,EA078,?,EA078-NA,,,,,, +102265,Ag39,EA078,"Permitted, no sanctions",EA078-6,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +102266,Ag4,EA078,"Permitted, sanction if pregnancy",EA078-4,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +102267,Ag40,EA078,?,EA078-NA,,,,,, +102268,Ag41,EA078,?,EA078-NA,,,,,, +102269,Ag42,EA078,?,EA078-NA,,,,,, +102270,Ag43,EA078,?,EA078-NA,,,,,, +102271,Ag44,EA078,?,EA078-NA,,,,,, +102272,Ag45,EA078,?,EA078-NA,,,,,, +102273,Ag46,EA078,?,EA078-NA,,,,,, +102274,Ag47,EA078,?,EA078-NA,,,,,, +102275,Ag48,EA078,"Permitted, no sanctions",EA078-6,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +102276,Ag49,EA078,?,EA078-NA,,,,,, +102277,Ag5,EA078,?,EA078-NA,,,,,, +102278,Ag50,EA078,?,EA078-NA,,,,,, +102279,Ag51,EA078,"Permitted, no sanctions",EA078-6,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +102280,Ag52,EA078,"Permitted, no sanctions",EA078-6,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +102281,Ag53,EA078,?,EA078-NA,,,,,, +102282,Ag54,EA078,"Prohibited, strongly sanctioned",EA078-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +102283,Ag6,EA078,"Permitted, no sanctions",EA078-6,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +102284,Ag7,EA078,?,EA078-NA,,,,,, +102285,Ag8,EA078,"Permitted, no sanctions",EA078-6,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +102286,Ag9,EA078,?,EA078-NA,,,,,, +102287,Ah1,EA078,?,EA078-NA,,,,,, +102288,Ah10,EA078,?,EA078-NA,,,,,, +102289,Ah11,EA078,?,EA078-NA,,,,,, +102290,Ah12,EA078,?,EA078-NA,,,,,, +102291,Ah13,EA078,"Permitted, no sanctions",EA078-6,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +102292,Ah14,EA078,"Prohibited, strongly sanctioned",EA078-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +102293,Ah15,EA078,"Permitted, no sanctions",EA078-6,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +102294,Ah16,EA078,?,EA078-NA,,,,,, +102295,Ah17,EA078,?,EA078-NA,,,,,, +102296,Ah18,EA078,?,EA078-NA,,,,,, +102297,Ah19,EA078,"Permitted, no sanctions",EA078-6,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +102298,Ah2,EA078,?,EA078-NA,,,,,, +102299,Ah20,EA078,Prohibited but weakly sanctioned,EA078-3,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +102300,Ah21,EA078,?,EA078-NA,,,,,, +102301,Ah22,EA078,?,EA078-NA,,,,,, +102302,Ah23,EA078,?,EA078-NA,,,,,, +102303,Ah24,EA078,?,EA078-NA,,,,,, +102304,Ah25,EA078,?,EA078-NA,,,,,, +102305,Ah26,EA078,?,EA078-NA,,,,,, +102306,Ah27,EA078,?,EA078-NA,,,,,, +102307,Ah28,EA078,?,EA078-NA,,,,,, +102308,Ah29,EA078,?,EA078-NA,,,,,, +102309,Ah3,EA078,"Permitted, sanction if pregnancy",EA078-4,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +102310,Ah30,EA078,?,EA078-NA,,,,,, +102311,Ah31,EA078,Precluded by early marriage,EA078-1,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +102312,Ah32,EA078,?,EA078-NA,,,,,, +102313,Ah33,EA078,?,EA078-NA,,,,,, +102314,Ah34,EA078,?,EA078-NA,,,,,, +102315,Ah35,EA078,"Prohibited, strongly sanctioned",EA078-2,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +102316,Ah36,EA078,?,EA078-NA,,,,,, +102317,Ah37,EA078,Precluded by early marriage,EA078-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +102318,Ah38,EA078,?,EA078-NA,,,,,, +102319,Ah39,EA078,"Prohibited, strongly sanctioned",EA078-2,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +102320,Ah4,EA078,"Permitted, sanction if pregnancy",EA078-4,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +102321,Ah5,EA078,?,EA078-NA,,,,,, +102322,Ah6,EA078,?,EA078-NA,,,,,, +102323,Ah7,EA078,?,EA078-NA,,,,,, +102324,Ah8,EA078,?,EA078-NA,,,,,, +102325,Ah9,EA078,"Permitted, no sanctions",EA078-6,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +102326,Ai1,EA078,?,EA078-NA,,,,,, +102327,Ai10,EA078,"Permitted, no sanctions",EA078-6,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +102328,Ai11,EA078,"Permitted, no sanctions",EA078-6,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +102329,Ai12,EA078,"Permitted, no sanctions",EA078-6,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +102330,Ai13,EA078,?,EA078-NA,,,,,, +102331,Ai14,EA078,"Prohibited, strongly sanctioned",EA078-2,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p77, +102332,Ai15,EA078,?,EA078-NA,,,,,, +102333,Ai16,EA078,Precluded by early marriage,EA078-1,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +102334,Ai17,EA078,?,EA078-NA,,,,,, +102335,Ai18,EA078,?,EA078-NA,,,,,, +102336,Ai19,EA078,?,EA078-NA,,,,,, +102337,Ai2,EA078,?,EA078-NA,,,,,, +102338,Ai20,EA078,?,EA078-NA,,,,,, +102339,Ai21,EA078,?,EA078-NA,,,,,, +102340,Ai22,EA078,?,EA078-NA,,,,,, +102341,Ai23,EA078,"Permitted, no sanctions",EA078-6,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +102342,Ai24,EA078,?,EA078-NA,,,,,, +102343,Ai25,EA078,?,EA078-NA,,,,,, +102344,Ai26,EA078,?,EA078-NA,,,,,, +102345,Ai27,EA078,Precluded by early marriage,EA078-1,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +102346,Ai28,EA078,"Permitted, no sanctions",EA078-6,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +102347,Ai29,EA078,"Prohibited, strongly sanctioned",EA078-2,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +102348,Ai3,EA078,"Permitted, sanction if pregnancy",EA078-4,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +102349,Ai30,EA078,Prohibited but weakly sanctioned,EA078-3,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +102350,Ai31,EA078,?,EA078-NA,,,,,, +102351,Ai32,EA078,?,EA078-NA,,,,,, +102352,Ai33,EA078,"Permitted, no sanctions",EA078-6,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +102353,Ai34,EA078,?,EA078-NA,,,,,, +102354,Ai35,EA078,"Prohibited, strongly sanctioned",EA078-2,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +102355,Ai36,EA078,?,EA078-NA,,,,,, +102356,Ai37,EA078,Precluded by early marriage,EA078-1,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +102357,Ai38,EA078,?,EA078-NA,,,,,, +102358,Ai39,EA078,?,EA078-NA,,,,,, +102359,Ai4,EA078,?,EA078-NA,,,,,, +102360,Ai40,EA078,?,EA078-NA,,,,,, +102361,Ai41,EA078,?,EA078-NA,,,,,, +102362,Ai42,EA078,?,EA078-NA,,,,,, +102363,Ai43,EA078,?,EA078-NA,,,,,, +102364,Ai44,EA078,?,EA078-NA,,,,,, +102365,Ai45,EA078,?,EA078-NA,,,,,, +102366,Ai46,EA078,?,EA078-NA,,,,,, +102367,Ai47,EA078,"Prohibited, strongly sanctioned",EA078-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +102368,Ai5,EA078,"Prohibited, strongly sanctioned",EA078-2,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +102369,Ai6,EA078,Prohibited but weakly sanctioned,EA078-3,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +102370,Ai7,EA078,Prohibited but weakly sanctioned,EA078-3,"Entry follows Tessmann; Harttmann reports 'permitted, sanction if pregnancy' (code ""4"")",clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +102371,Ai8,EA078,?,EA078-NA,,,,,, +102372,Ai9,EA078,?,EA078-NA,,,,,, +102373,Aj1,EA078,?,EA078-NA,,,,,, +102374,Aj10,EA078,"Permitted, sanction if pregnancy",EA078-4,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +102375,Aj11,EA078,?,EA078-NA,,,,,, +102376,Aj12,EA078,"Permitted, sanction if pregnancy",EA078-4,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +102377,Aj13,EA078,Prohibited but weakly sanctioned,EA078-3,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +102378,Aj14,EA078,?,EA078-NA,,,,,, +102379,Aj15,EA078,?,EA078-NA,,,,,, +102380,Aj16,EA078,?,EA078-NA,,,,,, +102381,Aj17,EA078,"Prohibited, strongly sanctioned",EA078-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +102382,Aj18,EA078,"Prohibited, strongly sanctioned",EA078-2,,jensen1959,,1950,EthnographicAtlas_1967_p81, +102383,Aj19,EA078,"Permitted, no sanctions",EA078-6,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +102384,Aj2,EA078,"Permitted, no sanctions",EA078-6,But without actual penetration,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +102385,Aj20,EA078,?,EA078-NA,,,,,, +102386,Aj21,EA078,Prohibited but weakly sanctioned,EA078-3,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +102387,Aj22,EA078,?,EA078-NA,,,,,, +102388,Aj23,EA078,Prohibited but weakly sanctioned,EA078-3,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +102389,Aj24,EA078,"Permitted, no sanctions",EA078-6,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +102390,Aj25,EA078,Trial marriage,EA078-5,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +102391,Aj26,EA078,?,EA078-NA,,,,,, +102392,Aj27,EA078,?,EA078-NA,,,,,, +102393,Aj28,EA078,"Prohibited, strongly sanctioned",EA078-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +102394,Aj29,EA078,"Permitted, no sanctions",EA078-6,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +102395,Aj3,EA078,?,EA078-NA,,,,,, +102396,Aj30,EA078,?,EA078-NA,,,,,, +102397,Aj31,EA078,?,EA078-NA,,,,,, +102398,Aj4,EA078,?,EA078-NA,,,,,, +102399,Aj5,EA078,?,EA078-NA,,,,,, +102400,Aj6,EA078,"Permitted, no sanctions",EA078-6,But without actual penetration,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +102401,Aj7,EA078,?,EA078-NA,,,,,, +102402,Aj8,EA078,Prohibited but weakly sanctioned,EA078-3,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +102403,Aj9,EA078,"Permitted, no sanctions",EA078-6,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +102404,Ca1,EA078,"Prohibited, strongly sanctioned",EA078-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +102405,Ca10,EA078,?,EA078-NA,,,,,, +102406,Ca11,EA078,"Prohibited, strongly sanctioned",EA078-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +102407,Ca12,EA078,"Prohibited, strongly sanctioned",EA078-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +102408,Ca13,EA078,?,EA078-NA,,,,,, +102409,Ca14,EA078,"Prohibited, strongly sanctioned",EA078-2,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +102410,Ca15,EA078,?,EA078-NA,,,,,, +102411,Ca16,EA078,"Prohibited, strongly sanctioned",EA078-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +102412,Ca17,EA078,Precluded by early marriage,EA078-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +102413,Ca18,EA078,"Prohibited, strongly sanctioned",EA078-2,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +102414,Ca19,EA078,Precluded by early marriage,EA078-1,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +102415,Ca2,EA078,Prohibited but weakly sanctioned,EA078-3,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +102416,Ca20,EA078,?,EA078-NA,,,,,, +102417,Ca21,EA078,?,EA078-NA,,,,,, +102418,Ca22,EA078,?,EA078-NA,,,,,, +102419,Ca23,EA078,?,EA078-NA,,,,,, +102420,Ca24,EA078,?,EA078-NA,,,,,, +102421,Ca25,EA078,?,EA078-NA,,,,,, +102422,Ca26,EA078,?,EA078-NA,,,,,, +102423,Ca27,EA078,"Prohibited, strongly sanctioned",EA078-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +102424,Ca28,EA078,?,EA078-NA,,,,,, +102425,Ca29,EA078,?,EA078-NA,,,,,, +102426,Ca3,EA078,?,EA078-NA,,,,,, +102427,Ca30,EA078,"Prohibited, strongly sanctioned",EA078-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +102428,Ca31,EA078,"Prohibited, strongly sanctioned",EA078-2,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +102429,Ca32,EA078,"Permitted, no sanctions",EA078-6,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +102430,Ca33,EA078,"Permitted, no sanctions",EA078-6,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +102431,Ca34,EA078,?,EA078-NA,,,,,, +102432,Ca35,EA078,"Permitted, no sanctions",EA078-6,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +102433,Ca36,EA078,?,EA078-NA,,,,,, +102434,Ca37,EA078,?,EA078-NA,,,,,, +102435,Ca38,EA078,?,EA078-NA,,,,,, +102436,Ca39,EA078,?,EA078-NA,,,,,, +102437,Ca4,EA078,?,EA078-NA,,,,,, +102438,Ca40,EA078,"Prohibited, strongly sanctioned",EA078-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +102439,Ca41,EA078,Prohibited but weakly sanctioned,EA078-3,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +102440,Ca42,EA078,"Permitted, sanction if pregnancy",EA078-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +102441,Ca43,EA078,?,EA078-NA,,,,,, +102442,Ca5,EA078,?,EA078-NA,,,,,, +102443,Ca6,EA078,"Prohibited, strongly sanctioned",EA078-2,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +102444,Ca7,EA078,"Prohibited, strongly sanctioned",EA078-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +102445,Ca8,EA078,?,EA078-NA,,,,,, +102446,Ca9,EA078,?,EA078-NA,,,,,, +102447,Cb1,EA078,"Permitted, no sanctions",EA078-6,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +102448,Cb10,EA078,"Permitted, no sanctions",EA078-6,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +102449,Cb11,EA078,?,EA078-NA,,,,,, +102450,Cb12,EA078,?,EA078-NA,,,,,, +102451,Cb13,EA078,?,EA078-NA,,,,,, +102452,Cb14,EA078,?,EA078-NA,,,,,, +102453,Cb15,EA078,?,EA078-NA,,,,,, +102454,Cb16,EA078,?,EA078-NA,,,,,, +102455,Cb17,EA078,"Permitted, no sanctions",EA078-6,"Entry follows Felkin, but Beaton reports 'prohibited, strongly sanctioned' (code ""2"")",barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +102456,Cb18,EA078,?,EA078-NA,,,,,, +102457,Cb19,EA078,Precluded by early marriage,EA078-1,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +102458,Cb2,EA078,Prohibited but weakly sanctioned,EA078-3,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +102459,Cb20,EA078,?,EA078-NA,,,,,, +102460,Cb21,EA078,?,EA078-NA,,,,,, +102461,Cb22,EA078,Prohibited but weakly sanctioned,EA078-3,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +102462,Cb23,EA078,"Permitted, no sanctions",EA078-6,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +102463,Cb24,EA078,"Permitted, no sanctions",EA078-6,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +102464,Cb25,EA078,"Prohibited, strongly sanctioned",EA078-2,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +102465,Cb26,EA078,Prohibited but weakly sanctioned,EA078-3,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +102466,Cb27,EA078,?,EA078-NA,,,,,, +102467,Cb28,EA078,?,EA078-NA,,,,,, +102468,Cb29,EA078,"Permitted, no sanctions",EA078-6,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +102469,Cb3,EA078,Prohibited but weakly sanctioned,EA078-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +102470,Cb4,EA078,?,EA078-NA,,,,,, +102471,Cb5,EA078,?,EA078-NA,,,,,, +102472,Cb6,EA078,?,EA078-NA,,,,,, +102473,Cb7,EA078,?,EA078-NA,,,,,, +102474,Cb8,EA078,"Permitted, no sanctions",EA078-6,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +102475,Cb9,EA078,?,EA078-NA,,,,,, +102476,Cc1,EA078,?,EA078-NA,,,,,, +102477,Cc10,EA078,?,EA078-NA,,,,,, +102478,Cc11,EA078,?,EA078-NA,,,,,, +102479,Cc12,EA078,?,EA078-NA,,,,,, +102480,Cc13,EA078,"Permitted, no sanctions",EA078-6,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +102481,Cc14,EA078,"Prohibited, strongly sanctioned",EA078-2,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +102482,Cc15,EA078,?,EA078-NA,,,,,, +102483,Cc16,EA078,?,EA078-NA,,,,,, +102484,Cc17,EA078,?,EA078-NA,,,,,, +102485,Cc18,EA078,?,EA078-NA,,,,,, +102486,Cc19,EA078,?,EA078-NA,,,,,, +102487,Cc2,EA078,"Prohibited, strongly sanctioned",EA078-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +102488,Cc20,EA078,?,EA078-NA,,,,,, +102489,Cc3,EA078,Precluded by early marriage,EA078-1,"Sexual morality is extremely lax, but girls marry so young that virginity at marriage is probably not uncommon",abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +102490,Cc4,EA078,"Prohibited, strongly sanctioned",EA078-2,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +102491,Cc5,EA078,"Permitted, no sanctions",EA078-6,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +102492,Cc6,EA078,?,EA078-NA,,,,,, +102493,Cc7,EA078,"Prohibited, strongly sanctioned",EA078-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102494,Cc8,EA078,?,EA078-NA,,,,,, +102495,Cc9,EA078,Prohibited but weakly sanctioned,EA078-3,"But Blanguernon reports 'prohibited, strongly sanctioned' (code ""2"")",benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +102496,Cd1,EA078,?,EA078-NA,,,,,, +102497,Cd10,EA078,?,EA078-NA,,,,,, +102498,Cd11,EA078,?,EA078-NA,,,,,, +102499,Cd12,EA078,"Prohibited, strongly sanctioned",EA078-2,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +102500,Cd13,EA078,"Prohibited, strongly sanctioned",EA078-2,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +102501,Cd14,EA078,?,EA078-NA,,,,,, +102502,Cd15,EA078,?,EA078-NA,,,,,, +102503,Cd16,EA078,?,EA078-NA,,,,,, +102504,Cd17,EA078,?,EA078-NA,,,,,, +102505,Cd18,EA078,?,EA078-NA,,,,,, +102506,Cd19,EA078,"Prohibited, strongly sanctioned",EA078-2,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +102507,Cd2,EA078,"Prohibited, strongly sanctioned",EA078-2,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +102508,Cd20,EA078,?,EA078-NA,,,,,, +102509,Cd21,EA078,?,EA078-NA,,,,,, +102510,Cd3,EA078,Prohibited but weakly sanctioned,EA078-3,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +102511,Cd4,EA078,?,EA078-NA,,,,,, +102512,Cd5,EA078,"Prohibited, strongly sanctioned",EA078-2,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +102513,Cd6,EA078,"Permitted, no sanctions",EA078-6,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +102514,Cd7,EA078,"Prohibited, strongly sanctioned",EA078-2,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +102515,Cd8,EA078,?,EA078-NA,,,,,, +102516,Cd9,EA078,?,EA078-NA,,,,,, +102517,Ce1,EA078,"Prohibited, strongly sanctioned",EA078-2,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +102518,Ce2,EA078,?,EA078-NA,,,,,, +102519,Ce3,EA078,?,EA078-NA,,,,,, +102520,Ce4,EA078,?,EA078-NA,,,,,, +102521,Ce5,EA078,Prohibited but weakly sanctioned,EA078-3,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +102522,Ce6,EA078,"Prohibited, strongly sanctioned",EA078-2,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +102523,Ce7,EA078,?,EA078-NA,,,,,, +102524,Ce8,EA078,Prohibited but weakly sanctioned,EA078-3,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +102525,Cf1,EA078,Prohibited but weakly sanctioned,EA078-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +102526,Cf2,EA078,?,EA078-NA,,,,,, +102527,Cf3,EA078,Prohibited but weakly sanctioned,EA078-3,,munch1945,,1930,EthnographicAtlas_1967_p85, +102528,Cf4,EA078,Prohibited but weakly sanctioned,EA078-3,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +102529,Cf5,EA078,"Prohibited, strongly sanctioned",EA078-2,,miner1939,,1930,EthnographicAtlas_1967_p85, +102530,Cg1,EA078,Trial marriage,EA078-5,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +102531,Cg2,EA078,?,EA078-NA,,,,,, +102532,Cg3,EA078,"Prohibited, strongly sanctioned",EA078-2,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +102533,Cg4,EA078,"Permitted, sanction if pregnancy",EA078-4,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +102534,Cg5,EA078,?,EA078-NA,,,,,, +102535,Ch1,EA078,"Prohibited, strongly sanctioned",EA078-2,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +102536,Ch10,EA078,?,EA078-NA,,,,,, +102537,Ch11,EA078,Prohibited but weakly sanctioned,EA078-3,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +102538,Ch2,EA078,"Permitted, no sanctions",EA078-6,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +102539,Ch3,EA078,?,EA078-NA,,,,,, +102540,Ch4,EA078,?,EA078-NA,,,,,, +102541,Ch5,EA078,?,EA078-NA,,,,,, +102542,Ch6,EA078,?,EA078-NA,,,,,, +102543,Ch7,EA078,?,EA078-NA,,,,,, +102544,Ch8,EA078,"Prohibited, strongly sanctioned",EA078-2,,hanzeli1955,,1940,EthnographicAtlas_1967_p85, +102545,Ch9,EA078,?,EA078-NA,,,,,, +102546,Ci1,EA078,?,EA078-NA,,,,,, +102547,Ci10,EA078,"Permitted, no sanctions",EA078-6,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +102548,Ci11,EA078,"Prohibited, strongly sanctioned",EA078-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +102549,Ci12,EA078,"Prohibited, strongly sanctioned",EA078-2,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +102550,Ci2,EA078,?,EA078-NA,,,,,, +102551,Ci3,EA078,?,EA078-NA,,,,,, +102552,Ci4,EA078,?,EA078-NA,,,,,, +102553,Ci5,EA078,"Prohibited, strongly sanctioned",EA078-2,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +102554,Ci6,EA078,?,EA078-NA,,,,,, +102555,Ci7,EA078,?,EA078-NA,,,,,, +102556,Ci8,EA078,?,EA078-NA,,,,,, +102557,Ci9,EA078,?,EA078-NA,,,,,, +102558,Cj1,EA078,?,EA078-NA,,,,,, +102559,Cj10,EA078,?,EA078-NA,,,,,, +102560,Cj2,EA078,"Prohibited, strongly sanctioned",EA078-2,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +102561,Cj3,EA078,"Prohibited, strongly sanctioned",EA078-2,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +102562,Cj4,EA078,"Prohibited, strongly sanctioned",EA078-2,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +102563,Cj5,EA078,"Prohibited, strongly sanctioned",EA078-2,,dickson1949,,1930,EthnographicAtlas_1967_p89, +102564,Cj6,EA078,?,EA078-NA,,,,,, +102565,Cj7,EA078,?,EA078-NA,,,,,, +102566,Cj8,EA078,"Prohibited, strongly sanctioned",EA078-2,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +102567,Cj9,EA078,"Prohibited, strongly sanctioned",EA078-2,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +102568,Ea1,EA078,"Prohibited, strongly sanctioned",EA078-2,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p89, +102569,Ea10,EA078,"Prohibited, strongly sanctioned",EA078-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +102570,Ea11,EA078,"Prohibited, strongly sanctioned",EA078-2,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +102571,Ea12,EA078,?,EA078-NA,,,,,, +102572,Ea13,EA078,"Prohibited, strongly sanctioned",EA078-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +102573,Ea2,EA078,?,EA078-NA,,,,,, +102574,Ea3,EA078,"Prohibited, strongly sanctioned",EA078-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +102575,Ea4,EA078,?,EA078-NA,,,,,, +102576,Ea5,EA078,?,EA078-NA,,,,,, +102577,Ea6,EA078,"Prohibited, strongly sanctioned",EA078-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +102578,Ea7,EA078,"Prohibited, strongly sanctioned",EA078-2,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +102579,Ea8,EA078,?,EA078-NA,,,,,, +102580,Ea9,EA078,"Prohibited, strongly sanctioned",EA078-2,,vreeland1957,,1950,EthnographicAtlas_1967_p89, +102581,Eb1,EA078,Prohibited but weakly sanctioned,EA078-3,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +102582,Eb2,EA078,"Permitted, sanction if pregnancy",EA078-4,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +102583,Eb3,EA078,?,EA078-NA,,,,,, +102584,Eb4,EA078,?,EA078-NA,,,,,, +102585,Eb5,EA078,?,EA078-NA,,,,,, +102586,Eb6,EA078,?,EA078-NA,,,,,, +102587,Eb7,EA078,?,EA078-NA,,,,,, +102588,Eb8,EA078,?,EA078-NA,,,,,, +102589,Ec1,EA078,Prohibited but weakly sanctioned,EA078-3,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +102590,Ec10,EA078,?,EA078-NA,,,,,, +102591,Ec11,EA078,?,EA078-NA,,,,,, +102592,Ec2,EA078,"Permitted, no sanctions",EA078-6,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102593,Ec3,EA078,"Permitted, no sanctions",EA078-6,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +102594,Ec4,EA078,Precluded by early marriage,EA078-1,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +102595,Ec5,EA078,"Prohibited, strongly sanctioned",EA078-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +102596,Ec6,EA078,?,EA078-NA,,,,,, +102597,Ec7,EA078,"Permitted, no sanctions",EA078-6,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +102598,Ec8,EA078,?,EA078-NA,,,,,, +102599,Ec9,EA078,?,EA078-NA,,,,,, +102600,Ed1,EA078,Prohibited but weakly sanctioned,EA078-3,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +102601,Ed10,EA078,?,EA078-NA,,,,,, +102602,Ed13,EA078,?,EA078-NA,,,,,, +102603,Ed14,EA078,?,EA078-NA,,,,,, +102604,Ed15a,EA078,?,EA078-NA,,,,,, +102605,Ed15b,EA078,Precluded by early marriage,EA078-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +102606,Ed16,EA078,?,EA078-NA,,,,,, +102607,Ed2,EA078,"Permitted, no sanctions",EA078-6,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +102608,Ed3,EA078,?,EA078-NA,,,,,, +102609,Ed4,EA078,"Permitted, no sanctions",EA078-6,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +102610,Ed5,EA078,"Prohibited, strongly sanctioned",EA078-2,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102611,Ed6,EA078,?,EA078-NA,,,,,, +102612,Ed7,EA078,Prohibited but weakly sanctioned,EA078-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +102613,Ed8,EA078,"Prohibited, strongly sanctioned",EA078-2,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +102614,Ed9,EA078,"Permitted, no sanctions",EA078-6,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +102615,Ee1,EA078,"Permitted, no sanctions",EA078-6,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +102616,Ee2,EA078,"Prohibited, strongly sanctioned",EA078-2,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p89, +102617,Ee3,EA078,"Permitted, no sanctions",EA078-6,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +102618,Ee4,EA078,?,EA078-NA,,,,,, +102619,Ee5,EA078,?,EA078-NA,,,,,, +102620,Ee6,EA078,"Permitted, no sanctions",EA078-6,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +102621,Ee7,EA078,?,EA078-NA,,,,,, +102622,Ee8,EA078,"Prohibited, strongly sanctioned",EA078-2,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +102623,Ef1,EA078,"Prohibited, strongly sanctioned",EA078-2,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +102624,Ef10,EA078,?,EA078-NA,,,,,, +102625,Ef11,EA078,"Prohibited, strongly sanctioned",EA078-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +102626,Ef2,EA078,Precluded by early marriage,EA078-1,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +102627,Ef3,EA078,?,EA078-NA,,,,,, +102628,Ef4,EA078,?,EA078-NA,,,,,, +102629,Ef5,EA078,"Prohibited, strongly sanctioned",EA078-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +102630,Ef6,EA078,?,EA078-NA,,,,,, +102631,Ef7,EA078,Precluded by early marriage,EA078-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +102632,Ef8,EA078,Precluded by early marriage,EA078-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +102633,Ef9,EA078,Precluded by early marriage,EA078-1,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102634,Eg1,EA078,"Permitted, no sanctions",EA078-6,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102635,Eg10,EA078,Prohibited but weakly sanctioned,EA078-3,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +102636,Eg11,EA078,?,EA078-NA,,,,,, +102637,Eg12,EA078,?,EA078-NA,,,,,, +102638,Eg13,EA078,"Permitted, no sanctions",EA078-6,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102639,Eg14,EA078,"Permitted, no sanctions",EA078-6,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +102640,Eg2,EA078,?,EA078-NA,,,,,, +102641,Eg3,EA078,"Permitted, no sanctions",EA078-6,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +102642,Eg4,EA078,"Permitted, no sanctions",EA078-6,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +102643,Eg5,EA078,"Prohibited, strongly sanctioned",EA078-2,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +102644,Eg6,EA078,?,EA078-NA,,,,,, +102645,Eg7,EA078,"Permitted, no sanctions",EA078-6,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +102646,Eg8,EA078,?,EA078-NA,,,,,, +102647,Eg9,EA078,"Permitted, no sanctions",EA078-6,,elwin1939,,1930,EthnographicAtlas_1967_p93, +102648,Eh1,EA078,"Permitted, no sanctions",EA078-6,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +102649,Eh10,EA078,?,EA078-NA,,,,,, +102650,Eh2,EA078,"Permitted, no sanctions",EA078-6,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +102651,Eh3,EA078,"Permitted, no sanctions",EA078-6,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +102652,Eh4,EA078,Prohibited but weakly sanctioned,EA078-3,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102653,Eh5,EA078,"Permitted, no sanctions",EA078-6,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +102654,Eh6,EA078,"Permitted, no sanctions",EA078-6,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +102655,Eh7,EA078,"Permitted, no sanctions",EA078-6,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +102656,Eh8,EA078,"Permitted, no sanctions",EA078-6,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +102657,Eh9,EA078,"Permitted, no sanctions",EA078-6,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +102658,Ei1,EA078,"Permitted, sanction if pregnancy",EA078-4,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102659,Ei10,EA078,?,EA078-NA,,,,,, +102660,Ei11,EA078,"Permitted, sanction if pregnancy",EA078-4,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +102661,Ei12,EA078,?,EA078-NA,,,,,, +102662,Ei13,EA078,Prohibited but weakly sanctioned,EA078-3,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +102663,Ei14,EA078,"Permitted, no sanctions",EA078-6,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +102664,Ei15,EA078,?,EA078-NA,,,,,, +102665,Ei16,EA078,"Prohibited, strongly sanctioned",EA078-2,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +102666,Ei17,EA078,?,EA078-NA,,,,,, +102667,Ei18,EA078,"Permitted, no sanctions",EA078-6,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +102668,Ei19,EA078,?,EA078-NA,,,,,, +102669,Ei2,EA078,?,EA078-NA,,,,,, +102670,Ei20,EA078,?,EA078-NA,,,,,, +102671,Ei3,EA078,Prohibited but weakly sanctioned,EA078-3,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +102672,Ei4,EA078,"Permitted, sanction if pregnancy",EA078-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +102673,Ei5,EA078,"Permitted, sanction if pregnancy",EA078-4,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +102674,Ei6,EA078,"Prohibited, strongly sanctioned",EA078-2,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +102675,Ei7,EA078,?,EA078-NA,,,,,, +102676,Ei8,EA078,?,EA078-NA,,,,,, +102677,Ei9,EA078,?,EA078-NA,,,,,, +102678,Ej1,EA078,"Permitted, no sanctions",EA078-6,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +102679,Ej10,EA078,?,EA078-NA,,,,,, +102680,Ej11,EA078,?,EA078-NA,,,,,, +102681,Ej12,EA078,Prohibited but weakly sanctioned,EA078-3,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +102682,Ej13,EA078,?,EA078-NA,,,,,, +102683,Ej14,EA078,"Permitted, no sanctions",EA078-6,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102684,Ej15,EA078,"Permitted, no sanctions",EA078-6,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +102685,Ej16,EA078,"Prohibited, strongly sanctioned",EA078-2,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +102686,Ej2,EA078,?,EA078-NA,,,,,, +102687,Ej3,EA078,Prohibited but weakly sanctioned,EA078-3,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +102688,Ej4,EA078,"Prohibited, strongly sanctioned",EA078-2,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +102689,Ej5,EA078,"Prohibited, strongly sanctioned",EA078-2,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +102690,Ej6,EA078,?,EA078-NA,,,,,, +102691,Ej7,EA078,"Permitted, no sanctions",EA078-6,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +102692,Ej8,EA078,"Prohibited, strongly sanctioned",EA078-2,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +102693,Ej9,EA078,Prohibited but weakly sanctioned,EA078-3,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +102694,Ia1,EA078,"Prohibited, strongly sanctioned",EA078-2,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +102695,Ia10,EA078,?,EA078-NA,,,,,, +102696,Ia11,EA078,?,EA078-NA,,,,,, +102697,Ia12,EA078,?,EA078-NA,,,,,, +102698,Ia13,EA078,?,EA078-NA,,,,,, +102699,Ia14,EA078,?,EA078-NA,,,,,, +102700,Ia15,EA078,?,EA078-NA,,,,,, +102701,Ia16,EA078,Prohibited but weakly sanctioned,EA078-3,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +102702,Ia17,EA078,?,EA078-NA,,,,,, +102703,Ia18,EA078,?,EA078-NA,,,,,, +102704,Ia2,EA078,"Permitted, no sanctions",EA078-6,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +102705,Ia3,EA078,"Permitted, no sanctions",EA078-6,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +102706,Ia4,EA078,?,EA078-NA,,,,,, +102707,Ia5,EA078,?,EA078-NA,,,,,, +102708,Ia6,EA078,?,EA078-NA,,,,,, +102709,Ia7,EA078,?,EA078-NA,,,,,, +102710,Ia8,EA078,"Permitted, no sanctions",EA078-6,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +102711,Ia9,EA078,?,EA078-NA,,,,,, +102712,Ib1,EA078,Prohibited but weakly sanctioned,EA078-3,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102713,Ib2,EA078,"Prohibited, strongly sanctioned",EA078-2,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102714,Ib3,EA078,Trial marriage,EA078-5,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +102715,Ib4,EA078,"Permitted, no sanctions",EA078-6,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +102716,Ib5,EA078,"Permitted, no sanctions",EA078-6,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +102717,Ib6,EA078,?,EA078-NA,,,,,, +102718,Ib7,EA078,"Permitted, no sanctions",EA078-6,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +102719,Ib8,EA078,"Permitted, no sanctions",EA078-6,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +102720,Ib9,EA078,?,EA078-NA,,,,,, +102721,Ic1,EA078,Prohibited but weakly sanctioned,EA078-3,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102722,Ic10,EA078,?,EA078-NA,,,,,, +102723,Ic11,EA078,?,EA078-NA,,,,,, +102724,Ic12,EA078,?,EA078-NA,,,,,, +102725,Ic13,EA078,?,EA078-NA,,,,,, +102726,Ic2,EA078,Prohibited but weakly sanctioned,EA078-3,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p97, +102727,Ic3,EA078,?,EA078-NA,,,,,, +102728,Ic4,EA078,?,EA078-NA,,,,,, +102729,Ic5,EA078,?,EA078-NA,,,,,, +102730,Ic6,EA078,?,EA078-NA,,,,,, +102731,Ic7,EA078,?,EA078-NA,,,,,, +102732,Ic8,EA078,?,EA078-NA,,,,,, +102733,Ic9,EA078,?,EA078-NA,,,,,, +102734,Id1,EA078,Precluded by early marriage,EA078-1,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +102735,Id10,EA078,Precluded by early marriage,EA078-1,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +102736,Id11,EA078,Precluded by early marriage,EA078-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +102737,Id12,EA078,?,EA078-NA,,,,,, +102738,Id13,EA078,Precluded by early marriage,EA078-1,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +102739,Id2,EA078,Precluded by early marriage,EA078-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +102740,Id3,EA078,Precluded by early marriage,EA078-1,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +102741,Id4,EA078,?,EA078-NA,,,,,, +102742,Id5,EA078,?,EA078-NA,,,,,, +102743,Id6,EA078,?,EA078-NA,,,,,, +102744,Id7,EA078,?,EA078-NA,,,,,, +102745,Id8,EA078,?,EA078-NA,,,,,, +102746,Id9,EA078,?,EA078-NA,,,,,, +102747,Ie1,EA078,"Permitted, sanction if pregnancy",EA078-4,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102748,Ie10,EA078,"Permitted, sanction if pregnancy",EA078-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +102749,Ie11,EA078,"Permitted, sanction if pregnancy",EA078-4,,bowers1964,,1950,EthnographicAtlas_1967_p97, +102750,Ie12,EA078,"Permitted, sanction if pregnancy",EA078-4,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102751,Ie13,EA078,?,EA078-NA,,,,,, +102752,Ie14,EA078,?,EA078-NA,,,,,, +102753,Ie15,EA078,?,EA078-NA,,,,,, +102754,Ie16,EA078,"Prohibited, strongly sanctioned",EA078-2,,williams194041,,1940,EthnographicAtlas_1967_p97, +102755,Ie17,EA078,"Permitted, no sanctions",EA078-6,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +102756,Ie18,EA078,Prohibited but weakly sanctioned,EA078-3,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +102757,Ie19,EA078,"Prohibited, strongly sanctioned",EA078-2,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +102758,Ie2,EA078,?,EA078-NA,,,,,, +102759,Ie20,EA078,"Permitted, no sanctions",EA078-6,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +102760,Ie21,EA078,?,EA078-NA,,,,,, +102761,Ie22,EA078,?,EA078-NA,,,,,, +102762,Ie23,EA078,?,EA078-NA,,,,,, +102763,Ie24,EA078,"Prohibited, strongly sanctioned",EA078-2,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +102764,Ie25,EA078,"Permitted, no sanctions",EA078-6,,williamson1912,,1920,EthnographicAtlas_1967_p97, +102765,Ie26,EA078,?,EA078-NA,,,,,, +102766,Ie27,EA078,?,EA078-NA,,,,,, +102767,Ie28,EA078,"Prohibited, strongly sanctioned",EA078-2,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +102768,Ie29,EA078,?,EA078-NA,,,,,, +102769,Ie3,EA078,Precluded by early marriage,EA078-1,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102770,Ie30,EA078,?,EA078-NA,,,,,, +102771,Ie31,EA078,"Permitted, no sanctions",EA078-6,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +102772,Ie32,EA078,?,EA078-NA,,,,,, +102773,Ie33,EA078,?,EA078-NA,,,,,, +102774,Ie34,EA078,?,EA078-NA,,,,,, +102775,Ie35,EA078,?,EA078-NA,,,,,, +102776,Ie36,EA078,?,EA078-NA,,,,,, +102777,Ie37,EA078,?,EA078-NA,,,,,, +102778,Ie38,EA078,Prohibited but weakly sanctioned,EA078-3,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +102779,Ie39,EA078,Prohibited but weakly sanctioned,EA078-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +102780,Ie4,EA078,"Permitted, sanction if pregnancy",EA078-4,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102781,Ie5,EA078,Precluded by early marriage,EA078-1,,williams1936,,1930,EthnographicAtlas_1967_p97, +102782,Ie6,EA078,?,EA078-NA,,,,,, +102783,Ie7,EA078,"Prohibited, strongly sanctioned",EA078-2,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +102784,Ie8,EA078,?,EA078-NA,,,,,, +102785,Ie9,EA078,"Permitted, sanction if pregnancy",EA078-4,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +102786,If1,EA078,"Permitted, no sanctions",EA078-6,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102787,If10,EA078,?,EA078-NA,,,,,, +102788,If11,EA078,"Permitted, no sanctions",EA078-6,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +102789,If12,EA078,?,EA078-NA,,,,,, +102790,If13,EA078,?,EA078-NA,,,,,, +102791,If14,EA078,"Prohibited, strongly sanctioned",EA078-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +102792,If15,EA078,"Permitted, no sanctions",EA078-6,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +102793,If16,EA078,?,EA078-NA,,,,,, +102794,If17,EA078,"Permitted, no sanctions",EA078-6,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +102795,If2,EA078,"Permitted, no sanctions",EA078-6,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +102796,If3,EA078,"Permitted, no sanctions",EA078-6,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +102797,If4,EA078,"Permitted, no sanctions",EA078-6,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +102798,If5,EA078,"Permitted, no sanctions",EA078-6,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +102799,If6,EA078,"Permitted, no sanctions",EA078-6,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +102800,If7,EA078,"Prohibited, strongly sanctioned",EA078-2,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +102801,If8,EA078,"Prohibited, strongly sanctioned",EA078-2,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +102802,If9,EA078,?,EA078-NA,,,,,, +102803,Ig1,EA078,Prohibited but weakly sanctioned,EA078-3,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +102804,Ig10,EA078,?,EA078-NA,,,,,, +102805,Ig11,EA078,?,EA078-NA,,,,,, +102806,Ig12,EA078,Prohibited but weakly sanctioned,EA078-3,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p101, +102807,Ig13,EA078,"Permitted, no sanctions",EA078-6,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +102808,Ig14,EA078,?,EA078-NA,,,,,, +102809,Ig15,EA078,?,EA078-NA,,,,,, +102810,Ig16,EA078,?,EA078-NA,,,,,, +102811,Ig17,EA078,?,EA078-NA,,,,,, +102812,Ig18,EA078,?,EA078-NA,,,,,, +102813,Ig19,EA078,?,EA078-NA,,,,,, +102814,Ig2,EA078,"Permitted, no sanctions",EA078-6,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +102815,Ig20,EA078,"Prohibited, strongly sanctioned",EA078-2,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +102816,Ig21,EA078,?,EA078-NA,,,,,, +102817,Ig3,EA078,"Permitted, sanction if pregnancy",EA078-4,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +102818,Ig4,EA078,?,EA078-NA,,,,,, +102819,Ig5,EA078,"Permitted, no sanctions",EA078-6,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +102820,Ig6,EA078,"Prohibited, strongly sanctioned",EA078-2,,ivens1927,,1900,EthnographicAtlas_1967_p101, +102821,Ig7,EA078,?,EA078-NA,,,,,, +102822,Ig8,EA078,?,EA078-NA,,,,,, +102823,Ig9,EA078,"Prohibited, strongly sanctioned",EA078-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +102824,Ih1,EA078,?,EA078-NA,,,,,, +102825,Ih10,EA078,?,EA078-NA,,,,,, +102826,Ih11,EA078,?,EA078-NA,,,,,, +102827,Ih12,EA078,?,EA078-NA,,,,,, +102828,Ih13,EA078,?,EA078-NA,,,,,, +102829,Ih14,EA078,?,EA078-NA,,,,,, +102830,Ih2,EA078,?,EA078-NA,,,,,, +102831,Ih3,EA078,"Prohibited, strongly sanctioned",EA078-2,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +102832,Ih4,EA078,"Permitted, sanction if pregnancy",EA078-4,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102833,Ih5,EA078,?,EA078-NA,,,,,, +102834,Ih6,EA078,Prohibited but weakly sanctioned,EA078-3,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p101, +102835,Ih7,EA078,?,EA078-NA,,,,,, +102836,Ih8,EA078,Prohibited but weakly sanctioned,EA078-3,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +102837,Ih9,EA078,"Prohibited, strongly sanctioned",EA078-2,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102838,Ii1,EA078,"Permitted, no sanctions",EA078-6,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +102839,Ii10,EA078,"Permitted, no sanctions",EA078-6,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +102840,Ii12,EA078,Prohibited but weakly sanctioned,EA078-3,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102841,Ii13,EA078,"Permitted, no sanctions",EA078-6,,burrows1937,,1830,EthnographicAtlas_1967_p101, +102842,Ii14,EA078,Prohibited but weakly sanctioned,EA078-3,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +102843,Ii2,EA078,"Permitted, sanction if pregnancy",EA078-4,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +102844,Ii3,EA078,"Permitted, no sanctions",EA078-6,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +102845,Ii4,EA078,"Permitted, no sanctions",EA078-6,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +102846,Ii5,EA078,?,EA078-NA,,,,,, +102847,Ii6,EA078,"Permitted, no sanctions",EA078-6,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +102848,Ii7,EA078,"Permitted, no sanctions",EA078-6,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +102849,Ii8,EA078,"Permitted, no sanctions",EA078-6,,burrows1936,,1840,EthnographicAtlas_1967_p101, +102850,Ii9,EA078,"Permitted, no sanctions",EA078-6,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +102851,Ij1,EA078,Prohibited but weakly sanctioned,EA078-3,,buck1934,,1820,EthnographicAtlas_1967_p101, +102852,Ij10,EA078,?,EA078-NA,,,,,, +102853,Ij2,EA078,"Permitted, no sanctions",EA078-6,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +102854,Ij3,EA078,"Permitted, no sanctions",EA078-6,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +102855,Ij4,EA078,"Permitted, no sanctions",EA078-6,,buck1932a,,1850,EthnographicAtlas_1967_p105, +102856,Ij5,EA078,"Permitted, no sanctions",EA078-6,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +102857,Ij6,EA078,"Permitted, no sanctions",EA078-6,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +102858,Ij7,EA078,"Permitted, no sanctions",EA078-6,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +102859,Ij8,EA078,"Permitted, no sanctions",EA078-6,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +102860,Ij9,EA078,"Permitted, no sanctions",EA078-6,,metraux1940,,1860,EthnographicAtlas_1967_p105, +102861,Na1,EA078,Precluded by early marriage,EA078-1,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +102862,Na10,EA078,Prohibited but weakly sanctioned,EA078-3,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +102863,Na11,EA078,?,EA078-NA,,,,,, +102864,Na12,EA078,"Permitted, no sanctions",EA078-6,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +102865,Na13,EA078,?,EA078-NA,,,,,, +102866,Na14,EA078,"Permitted, no sanctions",EA078-6,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +102867,Na15,EA078,?,EA078-NA,,,,,, +102868,Na16,EA078,"Permitted, no sanctions",EA078-6,,osgood1931,,1860,EthnographicAtlas_1967_p105, +102869,Na17,EA078,"Permitted, sanction if pregnancy",EA078-4,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102870,Na19,EA078,?,EA078-NA,,,,,, +102871,Na2,EA078,"Permitted, no sanctions",EA078-6,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +102872,Na20,EA078,"Permitted, sanction if pregnancy",EA078-4,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +102873,Na21,EA078,Prohibited but weakly sanctioned,EA078-3,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +102874,Na22,EA078,Prohibited but weakly sanctioned,EA078-3,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +102875,Na23,EA078,"Permitted, no sanctions",EA078-6,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +102876,Na24,EA078,"Permitted, no sanctions",EA078-6,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +102877,Na25,EA078,"Permitted, no sanctions",EA078-6,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +102878,Na26,EA078,"Prohibited, strongly sanctioned",EA078-2,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +102879,Na27,EA078,"Permitted, sanction if pregnancy",EA078-4,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +102880,Na28,EA078,?,EA078-NA,,,,,, +102881,Na29,EA078,Precluded by early marriage,EA078-1,,goddard1916,,1850,EthnographicAtlas_1967_p105, +102882,Na3,EA078,Trial marriage,EA078-5,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +102883,Na30,EA078,"Permitted, no sanctions",EA078-6,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +102884,Na31,EA078,"Permitted, sanction if pregnancy",EA078-4,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +102885,Na32,EA078,"Prohibited, strongly sanctioned",EA078-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +102886,Na33,EA078,?,EA078-NA,,,,,, +102887,Na34,EA078,"Permitted, no sanctions",EA078-6,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +102888,Na35,EA078,?,EA078-NA,,,,,, +102889,Na36,EA078,"Prohibited, strongly sanctioned",EA078-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +102890,Na37,EA078,"Permitted, sanction if pregnancy",EA078-4,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +102891,Na38,EA078,"Prohibited, strongly sanctioned",EA078-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +102892,Na39,EA078,"Prohibited, strongly sanctioned",EA078-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +102893,Na4,EA078,"Permitted, no sanctions",EA078-6,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +102894,Na40,EA078,"Permitted, no sanctions",EA078-6,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +102895,Na41,EA078,"Prohibited, strongly sanctioned",EA078-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +102896,Na42,EA078,?,EA078-NA,,,,,, +102897,Na43,EA078,?,EA078-NA,,,,,, +102898,Na44,EA078,"Permitted, no sanctions",EA078-6,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +102899,Na45,EA078,Prohibited but weakly sanctioned,EA078-3,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +102900,Na5,EA078,"Permitted, no sanctions",EA078-6,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +102901,Na6,EA078,?,EA078-NA,,,,,, +102902,Na7,EA078,?,EA078-NA,,,,,, +102903,Na8,EA078,Prohibited but weakly sanctioned,EA078-3,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +102904,Na9,EA078,Prohibited but weakly sanctioned,EA078-3,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +102905,Nb1,EA078,"Permitted, sanction if pregnancy",EA078-4,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +102906,Nb10,EA078,Prohibited but weakly sanctioned,EA078-3,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +102907,Nb11,EA078,"Prohibited, strongly sanctioned",EA078-2,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +102908,Nb12,EA078,"Prohibited, strongly sanctioned",EA078-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +102909,Nb13,EA078,"Prohibited, strongly sanctioned",EA078-2,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +102910,Nb14,EA078,"Prohibited, strongly sanctioned",EA078-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +102911,Nb15,EA078,"Prohibited, strongly sanctioned",EA078-2,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +102912,Nb16,EA078,"Prohibited, strongly sanctioned",EA078-2,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +102913,Nb17,EA078,Prohibited but weakly sanctioned,EA078-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +102914,Nb18,EA078,?,EA078-NA,,,,,, +102915,Nb19,EA078,?,EA078-NA,,,,,, +102916,Nb2,EA078,"Prohibited, strongly sanctioned",EA078-2,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +102917,Nb20,EA078,Prohibited but weakly sanctioned,EA078-3,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +102918,Nb21,EA078,?,EA078-NA,,,,,, +102919,Nb22,EA078,Prohibited but weakly sanctioned,EA078-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +102920,Nb23,EA078,?,EA078-NA,,,,,, +102921,Nb24,EA078,?,EA078-NA,,,,,, +102922,Nb25,EA078,"Permitted, sanction if pregnancy",EA078-4,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +102923,Nb26,EA078,"Prohibited, strongly sanctioned",EA078-2,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +102924,Nb27,EA078,"Prohibited, strongly sanctioned",EA078-2,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +102925,Nb28,EA078,?,EA078-NA,,,,,, +102926,Nb29,EA078,?,EA078-NA,,,,,, +102927,Nb3,EA078,"Prohibited, strongly sanctioned",EA078-2,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +102928,Nb30,EA078,Precluded by early marriage,EA078-1,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +102929,Nb31,EA078,Prohibited but weakly sanctioned,EA078-3,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +102930,Nb32,EA078,?,EA078-NA,,,,,, +102931,Nb33,EA078,Prohibited but weakly sanctioned,EA078-3,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +102932,Nb34,EA078,Prohibited but weakly sanctioned,EA078-3,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +102933,Nb35,EA078,Prohibited but weakly sanctioned,EA078-3,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +102934,Nb36,EA078,"Prohibited, strongly sanctioned",EA078-2,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +102935,Nb37,EA078,?,EA078-NA,,,,,, +102936,Nb38,EA078,"Prohibited, strongly sanctioned",EA078-2,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +102937,Nb39,EA078,"Permitted, sanction if pregnancy",EA078-4,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +102938,Nb4,EA078,?,EA078-NA,,,,,, +102939,Nb5,EA078,?,EA078-NA,,,,,, +102940,Nb6,EA078,"Prohibited, strongly sanctioned",EA078-2,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +102941,Nb7,EA078,?,EA078-NA,,,,,, +102942,Nb8,EA078,Precluded by early marriage,EA078-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +102943,Nb9,EA078,Prohibited but weakly sanctioned,EA078-3,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +102944,Nc1,EA078,Prohibited but weakly sanctioned,EA078-3,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +102945,Nc10,EA078,"Permitted, sanction if pregnancy",EA078-4,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +102946,Nc11,EA078,"Prohibited, strongly sanctioned",EA078-2,"Or possibly 'prohibited, but weakly sanctioned' (code ""3""); data insufficient",gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +102947,Nc12,EA078,?,EA078-NA,,,,,, +102948,Nc13,EA078,"Prohibited, strongly sanctioned",EA078-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +102949,Nc14,EA078,?,EA078-NA,,,,,, +102950,Nc15,EA078,Prohibited but weakly sanctioned,EA078-3,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +102951,Nc16,EA078,?,EA078-NA,,,,,, +102952,Nc17,EA078,Prohibited but weakly sanctioned,EA078-3,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +102953,Nc18,EA078,?,EA078-NA,,,,,, +102954,Nc19,EA078,?,EA078-NA,,,,,, +102955,Nc2,EA078,Prohibited but weakly sanctioned,EA078-3,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +102956,Nc20,EA078,"Permitted, no sanctions",EA078-6,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +102957,Nc21,EA078,?,EA078-NA,,,,,, +102958,Nc22,EA078,?,EA078-NA,,,,,, +102959,Nc23,EA078,?,EA078-NA,,,,,, +102960,Nc24,EA078,?,EA078-NA,,,,,, +102961,Nc25,EA078,?,EA078-NA,,,,,, +102962,Nc26,EA078,?,EA078-NA,,,,,, +102963,Nc27,EA078,?,EA078-NA,,,,,, +102964,Nc28,EA078,?,EA078-NA,,,,,, +102965,Nc29,EA078,?,EA078-NA,,,,,, +102966,Nc3,EA078,?,EA078-NA,,,,,, +102967,Nc30,EA078,?,EA078-NA,,,,,, +102968,Nc31,EA078,?,EA078-NA,,,,,, +102969,Nc32,EA078,?,EA078-NA,,,,,, +102970,Nc33,EA078,?,EA078-NA,,,,,, +102971,Nc34,EA078,?,EA078-NA,,,,,, +102972,Nc4,EA078,"Prohibited, strongly sanctioned",EA078-2,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +102973,Nc5,EA078,?,EA078-NA,,,,,, +102974,Nc6,EA078,?,EA078-NA,,,,,, +102975,Nc7,EA078,Prohibited but weakly sanctioned,EA078-3,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +102976,Nc8,EA078,"Prohibited, strongly sanctioned",EA078-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +102977,Nc9,EA078,Prohibited but weakly sanctioned,EA078-3,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +102978,Nd1,EA078,"Prohibited, strongly sanctioned",EA078-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +102979,Nd10,EA078,Prohibited but weakly sanctioned,EA078-3,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +102980,Nd11,EA078,"Prohibited, strongly sanctioned",EA078-2,"Division among close relatives, including cousins",ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +102981,Nd12,EA078,Prohibited but weakly sanctioned,EA078-3,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +102982,Nd13,EA078,Prohibited but weakly sanctioned,EA078-3,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +102983,Nd14,EA078,"Prohibited, strongly sanctioned",EA078-2,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +102984,Nd15,EA078,Prohibited but weakly sanctioned,EA078-3,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +102985,Nd16,EA078,?,EA078-NA,,,,,, +102986,Nd17,EA078,?,EA078-NA,,,,,, +102987,Nd18,EA078,?,EA078-NA,,,,,, +102988,Nd19,EA078,"Prohibited, strongly sanctioned",EA078-2,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +102989,Nd2,EA078,"Permitted, no sanctions",EA078-6,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +102990,Nd20,EA078,"Permitted, sanction if pregnancy",EA078-4,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +102991,Nd21,EA078,?,EA078-NA,,,,,, +102992,Nd22,EA078,Prohibited but weakly sanctioned,EA078-3,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +102993,Nd23,EA078,?,EA078-NA,,,,,, +102994,Nd24,EA078,Precluded by early marriage,EA078-1,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +102995,Nd25,EA078,?,EA078-NA,,,,,, +102996,Nd26,EA078,?,EA078-NA,,,,,, +102997,Nd27,EA078,?,EA078-NA,,,,,, +102998,Nd28,EA078,?,EA078-NA,,,,,, +102999,Nd29,EA078,?,EA078-NA,,,,,, +103000,Nd3,EA078,?,EA078-NA,,,,,, +103001,Nd30,EA078,Prohibited but weakly sanctioned,EA078-3,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +103002,Nd31,EA078,?,EA078-NA,,,,,, +103003,Nd32,EA078,?,EA078-NA,,,,,, +103004,Nd33,EA078,?,EA078-NA,,,,,, +103005,Nd34,EA078,?,EA078-NA,,,,,, +103006,Nd35,EA078,?,EA078-NA,,,,,, +103007,Nd36,EA078,?,EA078-NA,,,,,, +103008,Nd37,EA078,?,EA078-NA,,,,,, +103009,Nd38,EA078,?,EA078-NA,,,,,, +103010,Nd39,EA078,?,EA078-NA,,,,,, +103011,Nd4,EA078,Prohibited but weakly sanctioned,EA078-3,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +103012,Nd40,EA078,?,EA078-NA,,,,,, +103013,Nd41,EA078,?,EA078-NA,,,,,, +103014,Nd42,EA078,?,EA078-NA,,,,,, +103015,Nd43,EA078,"Permitted, no sanctions",EA078-6,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +103016,Nd44,EA078,?,EA078-NA,,,,,, +103017,Nd45,EA078,"Permitted, sanction if pregnancy",EA078-4,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +103018,Nd46,EA078,Prohibited but weakly sanctioned,EA078-3,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +103019,Nd47,EA078,?,EA078-NA,,,,,, +103020,Nd48,EA078,Prohibited but weakly sanctioned,EA078-3,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +103021,Nd49,EA078,Prohibited but weakly sanctioned,EA078-3,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +103022,Nd5,EA078,?,EA078-NA,,,,,, +103023,Nd50,EA078,?,EA078-NA,,,,,, +103024,Nd51,EA078,?,EA078-NA,,,,,, +103025,Nd52,EA078,?,EA078-NA,,,,,, +103026,Nd53,EA078,"Permitted, no sanctions",EA078-6,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +103027,Nd54,EA078,?,EA078-NA,,,,,, +103028,Nd55,EA078,?,EA078-NA,,,,,, +103029,Nd56,EA078,Prohibited but weakly sanctioned,EA078-3,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +103030,Nd57,EA078,?,EA078-NA,,,,,, +103031,Nd58,EA078,?,EA078-NA,,,,,, +103032,Nd59,EA078,?,EA078-NA,,,,,, +103033,Nd6,EA078,?,EA078-NA,,,,,, +103034,Nd60,EA078,?,EA078-NA,,,,,, +103035,Nd61,EA078,?,EA078-NA,,,,,, +103036,Nd62,EA078,?,EA078-NA,,,,,, +103037,Nd63,EA078,Prohibited but weakly sanctioned,EA078-3,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +103038,Nd64,EA078,"Permitted, no sanctions",EA078-6,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +103039,Nd65,EA078,Prohibited but weakly sanctioned,EA078-3,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +103040,Nd66,EA078,?,EA078-NA,,,,,, +103041,Nd67,EA078,Prohibited but weakly sanctioned,EA078-3,,gifford1936,,1870,EthnographicAtlas_1967_p113, +103042,Nd7,EA078,Prohibited but weakly sanctioned,EA078-3,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +103043,Nd8,EA078,"Permitted, no sanctions",EA078-6,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +103044,Nd9,EA078,"Prohibited, strongly sanctioned",EA078-2,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +103045,Ne1,EA078,Precluded by early marriage,EA078-1,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +103046,Ne10,EA078,?,EA078-NA,,,,,, +103047,Ne11,EA078,Prohibited but weakly sanctioned,EA078-3,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +103048,Ne12,EA078,"Prohibited, strongly sanctioned",EA078-2,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +103049,Ne13,EA078,"Permitted, sanction if pregnancy",EA078-4,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +103050,Ne14,EA078,Prohibited but weakly sanctioned,EA078-3,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +103051,Ne15,EA078,?,EA078-NA,,,,,, +103052,Ne16,EA078,?,EA078-NA,,,,,, +103053,Ne17,EA078,?,EA078-NA,,,,,, +103054,Ne18,EA078,"Permitted, sanction if pregnancy",EA078-4,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +103055,Ne19,EA078,"Permitted, no sanctions",EA078-6,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +103056,Ne2,EA078,Prohibited but weakly sanctioned,EA078-3,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +103057,Ne20,EA078,?,EA078-NA,,,,,, +103058,Ne21,EA078,?,EA078-NA,,,,,, +103059,Ne3,EA078,?,EA078-NA,,,,,, +103060,Ne4,EA078,?,EA078-NA,,,,,, +103061,Ne5,EA078,"Prohibited, strongly sanctioned",EA078-2,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +103062,Ne6,EA078,?,EA078-NA,,,,,, +103063,Ne7,EA078,"Prohibited, strongly sanctioned",EA078-2,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +103064,Ne8,EA078,Prohibited but weakly sanctioned,EA078-3,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +103065,Ne9,EA078,"Prohibited, strongly sanctioned",EA078-2,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +103066,Nf10,EA078,?,EA078-NA,,,,,, +103067,Nf11,EA078,?,EA078-NA,,,,,, +103068,Nf12,EA078,"Permitted, no sanctions",EA078-6,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +103069,Nf13,EA078,"Permitted, no sanctions",EA078-6,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103070,Nf14,EA078,?,EA078-NA,,,,,, +103071,Nf15,EA078,?,EA078-NA,,,,,, +103072,Nf2,EA078,?,EA078-NA,,,,,, +103073,Nf3,EA078,Prohibited but weakly sanctioned,EA078-3,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +103074,Nf4,EA078,?,EA078-NA,,,,,, +103075,Nf5,EA078,?,EA078-NA,,,,,, +103076,Nf6,EA078,?,EA078-NA,,,,,, +103077,Nf7,EA078,?,EA078-NA,,,,,, +103078,Nf8,EA078,?,EA078-NA,,,,,, +103079,Nf9,EA078,?,EA078-NA,,,,,, +103080,Ng1,EA078,"Permitted, no sanctions",EA078-6,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +103081,Ng10,EA078,"Permitted, no sanctions",EA078-6,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +103082,Ng11,EA078,?,EA078-NA,,,,,, +103083,Ng12,EA078,?,EA078-NA,,,,,, +103084,Ng13,EA078,?,EA078-NA,,,,,, +103085,Ng14,EA078,?,EA078-NA,,,,,, +103086,Ng15,EA078,?,EA078-NA,,,,,, +103087,Ng2,EA078,?,EA078-NA,,,,,, +103088,Ng3,EA078,Precluded by early marriage,EA078-1,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +103089,Ng4,EA078,?,EA078-NA,,,,,, +103090,Ng5,EA078,?,EA078-NA,,,,,, +103091,Ng6,EA078,"Permitted, no sanctions",EA078-6,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +103092,Ng7,EA078,"Permitted, no sanctions",EA078-6,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +103093,Ng8,EA078,?,EA078-NA,,,,,, +103094,Ng9,EA078,?,EA078-NA,,,,,, +103095,Nh1,EA078,"Prohibited, strongly sanctioned",EA078-2,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +103096,Nh10,EA078,?,EA078-NA,,,,,, +103097,Nh11,EA078,"Permitted, no sanctions",EA078-6,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +103098,Nh12,EA078,"Permitted, no sanctions",EA078-6,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +103099,Nh13,EA078,?,EA078-NA,,,,,, +103100,Nh14,EA078,?,EA078-NA,,,,,, +103101,Nh15,EA078,?,EA078-NA,,,,,, +103102,Nh16,EA078,Prohibited but weakly sanctioned,EA078-3,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103103,Nh17,EA078,"Permitted, sanction if pregnancy",EA078-4,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +103104,Nh18,EA078,"Permitted, no sanctions",EA078-6,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103105,Nh19,EA078,Prohibited but weakly sanctioned,EA078-3,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +103106,Nh2,EA078,"Permitted, sanction if pregnancy",EA078-4,,dozier1954,,1950,EthnographicAtlas_1967_p117, +103107,Nh20,EA078,?,EA078-NA,,,,,, +103108,Nh21,EA078,"Permitted, no sanctions",EA078-6,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103109,Nh22,EA078,?,EA078-NA,,,,,, +103110,Nh23,EA078,Prohibited but weakly sanctioned,EA078-3,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +103111,Nh24,EA078,?,EA078-NA,,,,,, +103112,Nh25,EA078,?,EA078-NA,,,,,, +103113,Nh26,EA078,?,EA078-NA,,,,,, +103114,Nh27,EA078,?,EA078-NA,,,,,, +103115,Nh3,EA078,Prohibited but weakly sanctioned,EA078-3,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +103116,Nh4,EA078,?,EA078-NA,,,,,, +103117,Nh5,EA078,?,EA078-NA,,,,,, +103118,Nh6,EA078,"Permitted, sanction if pregnancy",EA078-4,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +103119,Nh7,EA078,?,EA078-NA,,,,,, +103120,Nh8,EA078,?,EA078-NA,,,,,, +103121,Nh9,EA078,?,EA078-NA,,,,,, +103122,Ni1,EA078,"Permitted, no sanctions",EA078-6,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +103123,Ni2,EA078,?,EA078-NA,,,,,, +103124,Ni3,EA078,?,EA078-NA,,,,,, +103125,Ni4,EA078,?,EA078-NA,,,,,, +103126,Ni5,EA078,"Prohibited, strongly sanctioned",EA078-2,,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +103127,Ni6,EA078,?,EA078-NA,,,,,, +103128,Ni7,EA078,?,EA078-NA,,,,,, +103129,Ni8,EA078,?,EA078-NA,,,,,, +103130,Ni9,EA078,?,EA078-NA,,,,,, +103131,Nj1,EA078,?,EA078-NA,,,,,, +103132,Nj10,EA078,?,EA078-NA,,,,,, +103133,Nj11,EA078,?,EA078-NA,,,,,, +103134,Nj12,EA078,?,EA078-NA,,,,,, +103135,Nj13,EA078,?,EA078-NA,,,,,, +103136,Nj14,EA078,?,EA078-NA,,,,,, +103137,Nj2,EA078,Prohibited but weakly sanctioned,EA078-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +103138,Nj3,EA078,?,EA078-NA,,,,,, +103139,Nj4,EA078,?,EA078-NA,,,,,, +103140,Nj5,EA078,?,EA078-NA,,,,,, +103141,Nj6,EA078,?,EA078-NA,,,,,, +103142,Nj7,EA078,Prohibited but weakly sanctioned,EA078-3,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103143,Nj8,EA078,?,EA078-NA,,,,,, +103144,Nj9,EA078,Prohibited but weakly sanctioned,EA078-3,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +103145,Sa1,EA078,"Prohibited, strongly sanctioned",EA078-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +103146,Sa10,EA078,"Prohibited, strongly sanctioned",EA078-2,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +103147,Sa11,EA078,?,EA078-NA,,,,,, +103148,Sa12,EA078,?,EA078-NA,,,,,, +103149,Sa13,EA078,"Prohibited, strongly sanctioned",EA078-2,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +103150,Sa14,EA078,?,EA078-NA,,,,,, +103151,Sa15,EA078,?,EA078-NA,,,,,, +103152,Sa16,EA078,?,EA078-NA,,,,,, +103153,Sa17,EA078,?,EA078-NA,,,,,, +103154,Sa2,EA078,?,EA078-NA,,,,,, +103155,Sa3,EA078,?,EA078-NA,,,,,, +103156,Sa4,EA078,?,EA078-NA,,,,,, +103157,Sa5,EA078,"Permitted, sanction if pregnancy",EA078-4,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +103158,Sa6,EA078,?,EA078-NA,,,,,, +103159,Sa7,EA078,?,EA078-NA,,,,,, +103160,Sa8,EA078,"Prohibited, strongly sanctioned",EA078-2,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +103161,Sa9,EA078,Precluded by early marriage,EA078-1,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +103162,Sb1,EA078,Trial marriage,EA078-5,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +103163,Sb2,EA078,?,EA078-NA,,,,,, +103164,Sb3,EA078,?,EA078-NA,,,,,, +103165,Sb4,EA078,"Permitted, sanction if pregnancy",EA078-4,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +103166,Sb5,EA078,"Permitted, no sanctions",EA078-6,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +103167,Sb6,EA078,Prohibited but weakly sanctioned,EA078-3,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +103168,Sb7,EA078,?,EA078-NA,,,,,, +103169,Sb8,EA078,"Permitted, no sanctions",EA078-6,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +103170,Sb9,EA078,Prohibited but weakly sanctioned,EA078-3,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +103171,Sc1,EA078,?,EA078-NA,,,,,, +103172,Sc10,EA078,?,EA078-NA,,,,,, +103173,Sc11,EA078,?,EA078-NA,,,,,, +103174,Sc12,EA078,?,EA078-NA,,,,,, +103175,Sc13,EA078,?,EA078-NA,,,,,, +103176,Sc14,EA078,?,EA078-NA,,,,,, +103177,Sc15,EA078,?,EA078-NA,,,,,, +103178,Sc16,EA078,?,EA078-NA,,,,,, +103179,Sc17,EA078,Prohibited but weakly sanctioned,EA078-3,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +103180,Sc18,EA078,Prohibited but weakly sanctioned,EA078-3,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +103181,Sc2,EA078,?,EA078-NA,,,,,, +103182,Sc3,EA078,"Permitted, no sanctions",EA078-6,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +103183,Sc4,EA078,Prohibited but weakly sanctioned,EA078-3,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +103184,Sc5,EA078,?,EA078-NA,,,,,, +103185,Sc6,EA078,?,EA078-NA,,,,,, +103186,Sc7,EA078,"Permitted, no sanctions",EA078-6,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +103187,Sc8,EA078,?,EA078-NA,,,,,, +103188,Sc9,EA078,?,EA078-NA,,,,,, +103189,Sd1,EA078,Trial marriage,EA078-5,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103190,Sd2,EA078,Precluded by early marriage,EA078-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +103191,Sd3,EA078,?,EA078-NA,,,,,, +103192,Sd4,EA078,?,EA078-NA,,,,,, +103193,Sd5,EA078,?,EA078-NA,,,,,, +103194,Sd6,EA078,?,EA078-NA,,,,,, +103195,Sd7,EA078,"Permitted, no sanctions",EA078-6,,fock1963,,1950,EthnographicAtlas_1967_p121, +103196,Sd8,EA078,"Permitted, no sanctions",EA078-6,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +103197,Sd9,EA078,Prohibited but weakly sanctioned,EA078-3,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103198,Se1,EA078,"Permitted, no sanctions",EA078-6,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +103199,Se10,EA078,?,EA078-NA,,,,,, +103200,Se11,EA078,Prohibited but weakly sanctioned,EA078-3,,prost1965,,1960,EthnographicAtlas_1967_p125, +103201,Se12,EA078,?,EA078-NA,,,,,, +103202,Se2,EA078,Prohibited but weakly sanctioned,EA078-3,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +103203,Se3,EA078,Prohibited but weakly sanctioned,EA078-3,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +103204,Se4,EA078,"Permitted, no sanctions",EA078-6,,fejos1943,,1940,EthnographicAtlas_1967_p121, +103205,Se5,EA078,Trial marriage,EA078-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +103206,Se6,EA078,Prohibited but weakly sanctioned,EA078-3,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +103207,Se7,EA078,?,EA078-NA,,,,,, +103208,Se8,EA078,"Permitted, no sanctions",EA078-6,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +103209,Se9,EA078,"Permitted, no sanctions",EA078-6,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +103210,Sf1,EA078,"Prohibited, strongly sanctioned",EA078-2,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +103211,Sf2,EA078,"Permitted, sanction if pregnancy",EA078-4,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +103212,Sf3,EA078,?,EA078-NA,,,,,, +103213,Sf4,EA078,?,EA078-NA,,,,,, +103214,Sf5,EA078,?,EA078-NA,,,,,, +103215,Sf6,EA078,"Permitted, no sanctions",EA078-6,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +103216,Sf7,EA078,?,EA078-NA,,,,,, +103217,Sf8,EA078,?,EA078-NA,,,,,, +103218,Sf9,EA078,?,EA078-NA,,,,,, +103219,Sg1,EA078,Prohibited but weakly sanctioned,EA078-3,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +103220,Sg2,EA078,"Permitted, sanction if pregnancy",EA078-4,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103221,Sg3,EA078,"Prohibited, strongly sanctioned",EA078-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +103222,Sg4,EA078,Prohibited but weakly sanctioned,EA078-3,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +103223,Sg5,EA078,?,EA078-NA,,,,,, +103224,Sh1,EA078,"Permitted, no sanctions",EA078-6,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +103225,Sh2,EA078,Precluded by early marriage,EA078-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +103226,Sh3,EA078,"Prohibited, strongly sanctioned",EA078-2,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +103227,Sh4,EA078,"Permitted, no sanctions",EA078-6,,oberg1949,,1940,EthnographicAtlas_1967_p125, +103228,Sh5,EA078,"Permitted, no sanctions",EA078-6,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +103229,Sh6,EA078,?,EA078-NA,,,,,, +103230,Sh7,EA078,?,EA078-NA,,,,,, +103231,Sh8,EA078,"Permitted, no sanctions",EA078-6,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +103232,Sh9,EA078,?,EA078-NA,,,,,, +103233,Si1,EA078,"Permitted, no sanctions",EA078-6,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103234,Si10,EA078,?,EA078-NA,,,,,, +103235,Si2,EA078,"Permitted, no sanctions",EA078-6,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +103236,Si3,EA078,?,EA078-NA,,,,,, +103237,Si4,EA078,Precluded by early marriage,EA078-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +103238,Si5,EA078,?,EA078-NA,,,,,, +103239,Si6,EA078,?,EA078-NA,,,,,, +103240,Si7,EA078,?,EA078-NA,,,,,, +103241,Si8,EA078,?,EA078-NA,,,,,, +103242,Si9,EA078,?,EA078-NA,,,,,, +103243,Sj1,EA078,?,EA078-NA,,,,,, +103244,Sj10,EA078,?,EA078-NA,,,,,, +103245,Sj11,EA078,Precluded by early marriage,EA078-1,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +103246,Sj2,EA078,?,EA078-NA,,,,,, +103247,Sj3,EA078,"Permitted, no sanctions",EA078-6,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +103248,Sj4,EA078,Prohibited but weakly sanctioned,EA078-3,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +103249,Sj5,EA078,Precluded by early marriage,EA078-1,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +103250,Sj6,EA078,?,EA078-NA,,,,,, +103251,Sj7,EA078,Precluded by early marriage,EA078-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +103252,Sj8,EA078,"Permitted, no sanctions",EA078-6,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +103253,Sj9,EA078,Precluded by early marriage,EA078-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +103254,ch12,EA078,"Prohibited, strongly sanctioned",EA078-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +103255,ch13,EA078,"Permitted, sanction if pregnancy",EA078-4,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +103256,ch14,EA078,Prohibited but weakly sanctioned,EA078-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +103257,ch15,EA078,"Permitted, sanction if pregnancy",EA078-4,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +103258,ch16,EA078,"Prohibited, strongly sanctioned",EA078-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +103259,ch17,EA078,Trial marriage,EA078-5,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +103260,ch18,EA078,Prohibited but weakly sanctioned,EA078-3,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +103261,ch19,EA078,Prohibited but weakly sanctioned,EA078-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +103262,ch20,EA078,"Prohibited, strongly sanctioned",EA078-2,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +103263,ch21,EA078,"Prohibited, strongly sanctioned",EA078-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +103264,ch22,EA078,"Prohibited, strongly sanctioned",EA078-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +103265,ch23,EA078,"Prohibited, strongly sanctioned",EA078-2,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +103266,ch24,EA078,"Prohibited, strongly sanctioned",EA078-2,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +103267,ch25,EA078,Prohibited but weakly sanctioned,EA078-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +103268,ch26,EA078,"Permitted, no sanctions",EA078-6,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +103269,ch27,EA078,"Permitted, sanction if pregnancy",EA078-4,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +103270,ch28,EA078,Prohibited but weakly sanctioned,EA078-3,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +103271,ec12,EA078,"Permitted, no sanctions",EA078-6,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +103272,ec13,EA078,"Permitted, no sanctions",EA078-6,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +103273,ec14,EA078,"Permitted, no sanctions",EA078-6,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +103274,ec15,EA078,Prohibited but weakly sanctioned,EA078-3,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +103275,ec16,EA078,"Permitted, no sanctions",EA078-6,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +103276,ec17,EA078,"Permitted, sanction if pregnancy",EA078-4,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +103277,ec18,EA078,Prohibited but weakly sanctioned,EA078-3,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +103278,ec19,EA078,"Permitted, sanction if pregnancy",EA078-4,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +103279,ec20,EA078,"Permitted, no sanctions",EA078-6,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +103280,ec21,EA078,"Permitted, sanction if pregnancy",EA078-4,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +103281,Aa1,EA079,Circular,EA079-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +103282,Aa2,EA079,Circular,EA079-2,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +103283,Aa3,EA079,Circular,EA079-2,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +103284,Aa4,EA079,Circular,EA079-2,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +103285,Aa5,EA079,Circular,EA079-2,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +103286,Aa6,EA079,Circular,EA079-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +103287,Aa7,EA079,Semicircular,EA079-1,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +103288,Aa8,EA079,Semicircular,EA079-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +103289,Aa9,EA079,Circular,EA079-2,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +103290,Ab1,EA079,Circular,EA079-2,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +103291,Ab10,EA079,Circular,EA079-2,,hunter1936,,1936,EthnographicAtlas_1967_p65, +103292,Ab11,EA079,Circular,EA079-2,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +103293,Ab12,EA079,Circular,EA079-2,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +103294,Ab13,EA079,Circular,EA079-2,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +103295,Ab14,EA079,Circular,EA079-2,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +103296,Ab15,EA079,Circular,EA079-2,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +103297,Ab16,EA079,Circular,EA079-2,,earthy1933,,1930,EthnographicAtlas_1967_p65, +103298,Ab17,EA079,Circular,EA079-2,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +103299,Ab18,EA079,Circular,EA079-2,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +103300,Ab19,EA079,Circular,EA079-2,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +103301,Ab2,EA079,Circular,EA079-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +103302,Ab20,EA079,Circular,EA079-2,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +103303,Ab21a,EA079,Rectangular,EA079-5,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +103304,Ab21b,EA079,?,EA079-NA,,,,,, +103305,Ab22,EA079,?,EA079-NA,,,,,, +103306,Ab3,EA079,Circular,EA079-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +103307,Ab4,EA079,Circular,EA079-2,,junod1927,,1920,EthnographicAtlas_1967_p65, +103308,Ab5,EA079,Circular,EA079-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +103309,Ab6,EA079,Circular,EA079-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +103310,Ab7,EA079,Circular,EA079-2,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +103311,Ab8,EA079,Circular,EA079-2,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +103312,Ab9,EA079,Circular,EA079-2,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +103313,Ac1,EA079,Circular,EA079-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +103314,Ac10,EA079,Circular,EA079-2,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +103315,Ac11,EA079,Rectangular,EA079-5,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +103316,Ac12,EA079,Circular,EA079-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +103317,Ac13,EA079,Circular,EA079-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +103318,Ac14,EA079,Rectangular,EA079-5,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +103319,Ac15,EA079,Rectangular,EA079-5,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +103320,Ac16,EA079,Rectangular,EA079-5,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +103321,Ac17,EA079,Rectangular,EA079-5,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +103322,Ac18,EA079,Rectangular,EA079-5,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +103323,Ac19,EA079,Rectangular,EA079-5,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +103324,Ac2,EA079,Rectangular,EA079-5,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +103325,Ac20,EA079,Rectangular,EA079-5,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +103326,Ac21,EA079,Rectangular,EA079-5,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +103327,Ac22,EA079,Rectangular,EA079-5,,mertens1935,,1930,EthnographicAtlas_1967_p65, +103328,Ac23,EA079,Rectangular,EA079-5,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +103329,Ac24,EA079,Rectangular,EA079-5,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +103330,Ac25,EA079,Rectangular,EA079-5,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +103331,Ac26,EA079,Rectangular,EA079-5,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +103332,Ac27,EA079,Rectangular,EA079-5,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +103333,Ac28,EA079,Rectangular,EA079-5,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +103334,Ac29,EA079,Rectangular,EA079-5,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +103335,Ac3,EA079,Circular,EA079-2,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +103336,Ac30,EA079,Circular,EA079-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +103337,Ac31,EA079,Rectangular,EA079-5,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +103338,Ac32,EA079,Rectangular,EA079-5,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +103339,Ac33,EA079,Circular,EA079-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +103340,Ac34,EA079,Circular,EA079-2,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +103341,Ac35,EA079,?,EA079-NA,,,,,, +103342,Ac36,EA079,Circular,EA079-2,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +103343,Ac37,EA079,Circular,EA079-2,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +103344,Ac38,EA079,Circular,EA079-2,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +103345,Ac39,EA079,Circular,EA079-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +103346,Ac4,EA079,Rectangular,EA079-5,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +103347,Ac40,EA079,Rectangular,EA079-5,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +103348,Ac41,EA079,Circular,EA079-2,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +103349,Ac42,EA079,Circular,EA079-2,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +103350,Ac43,EA079,?,EA079-NA,,,,,, +103351,Ac5,EA079,Circular,EA079-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +103352,Ac6,EA079,Rectangular,EA079-5,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +103353,Ac7,EA079,Circular,EA079-2,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +103354,Ac8,EA079,Rectangular,EA079-5,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +103355,Ac9,EA079,Circular,EA079-2,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +103356,Ad1,EA079,Rectangular,EA079-5,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +103357,Ad10,EA079,Circular,EA079-2,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +103358,Ad11,EA079,Rectangular,EA079-5,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +103359,Ad12,EA079,Circular,EA079-2,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +103360,Ad13,EA079,Rectangular,EA079-5,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +103361,Ad14,EA079,Rectangular,EA079-5,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +103362,Ad15,EA079,Circular,EA079-2,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +103363,Ad16,EA079,Circular,EA079-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +103364,Ad17,EA079,Circular,EA079-2,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +103365,Ad18,EA079,Circular,EA079-2,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +103366,Ad19,EA079,Rectangular,EA079-5,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +103367,Ad2,EA079,Circular,EA079-2,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +103368,Ad20,EA079,Circular,EA079-2,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +103369,Ad21,EA079,Circular,EA079-2,,maurice193538,,1930,EthnographicAtlas_1967_p69, +103370,Ad22,EA079,Circular,EA079-2,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +103371,Ad23,EA079,Rectangular,EA079-5,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +103372,Ad24,EA079,Quadrangular around interior,EA079-6,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +103373,Ad25,EA079,Rectangular,EA079-5,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +103374,Ad26,EA079,Quadrangular around interior,EA079-6,,sick1916,,1910,EthnographicAtlas_1967_p69, +103375,Ad27,EA079,Circular,EA079-2,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +103376,Ad28,EA079,Circular,EA079-2,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +103377,Ad29,EA079,Rectangular,EA079-5,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +103378,Ad3,EA079,Circular,EA079-2,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +103379,Ad30,EA079,Rectangular,EA079-5,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +103380,Ad31,EA079,Rectangular,EA079-5,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +103381,Ad32,EA079,Rectangular,EA079-5,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +103382,Ad33,EA079,Circular,EA079-2,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +103383,Ad34,EA079,Circular,EA079-2,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +103384,Ad35,EA079,Circular,EA079-2,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +103385,Ad36,EA079,Circular,EA079-2,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +103386,Ad37,EA079,Circular,EA079-2,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +103387,Ad38,EA079,Circular,EA079-2,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +103388,Ad39,EA079,Circular,EA079-2,,gray1963,,1950,EthnographicAtlas_1967_p69, +103389,Ad4,EA079,Rectangular,EA079-5,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +103390,Ad40,EA079,Rectangular,EA079-5,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +103391,Ad41,EA079,Circular,EA079-2,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +103392,Ad42,EA079,Circular,EA079-2,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +103393,Ad43,EA079,Circular,EA079-2,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +103394,Ad44,EA079,Circular,EA079-2,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +103395,Ad45,EA079,Circular,EA079-2,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +103396,Ad46,EA079,Circular,EA079-2,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +103397,Ad47,EA079,Circular,EA079-2,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +103398,Ad48,EA079,Circular,EA079-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +103399,Ad49,EA079,Circular,EA079-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +103400,Ad5,EA079,Rectangular,EA079-5,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +103401,Ad50,EA079,Rectangular,EA079-5,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +103402,Ad51,EA079,Circular,EA079-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +103403,Ad6,EA079,Circular,EA079-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +103404,Ad7,EA079,Circular,EA079-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +103405,Ad8,EA079,Rectangular,EA079-5,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +103406,Ad9,EA079,Circular,EA079-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +103407,Ae1,EA079,Circular,EA079-2,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +103408,Ae10,EA079,Circular,EA079-2,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +103409,Ae11,EA079,Rectangular,EA079-5,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +103410,Ae12,EA079,Rectangular,EA079-5,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +103411,Ae13,EA079,Circular,EA079-2,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +103412,Ae14,EA079,Circular,EA079-2,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +103413,Ae15,EA079,Circular,EA079-2,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +103414,Ae16,EA079,Rectangular,EA079-5,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +103415,Ae17,EA079,Rectangular,EA079-5,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +103416,Ae18,EA079,Circular,EA079-2,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +103417,Ae19,EA079,Rectangular,EA079-5,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +103418,Ae2,EA079,Rectangular,EA079-5,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +103419,Ae20,EA079,Rectangular,EA079-5,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +103420,Ae21,EA079,Rectangular,EA079-5,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +103421,Ae22,EA079,Rectangular,EA079-5,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +103422,Ae23,EA079,Rectangular,EA079-5,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +103423,Ae24,EA079,Rectangular,EA079-5,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +103424,Ae25,EA079,Rectangular,EA079-5,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +103425,Ae26,EA079,Rectangular,EA079-5,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +103426,Ae27,EA079,Rectangular,EA079-5,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +103427,Ae28,EA079,Rectangular,EA079-5,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +103428,Ae29,EA079,Rectangular,EA079-5,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +103429,Ae3,EA079,Rectangular,EA079-5,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +103430,Ae30,EA079,Rectangular,EA079-5,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +103431,Ae31,EA079,Rectangular,EA079-5,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +103432,Ae32,EA079,Rectangular,EA079-5,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +103433,Ae33,EA079,Rectangular,EA079-5,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +103434,Ae34,EA079,Circular,EA079-2,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +103435,Ae35,EA079,Rectangular,EA079-5,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +103436,Ae36,EA079,Rectangular,EA079-5,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +103437,Ae37,EA079,Rectangular,EA079-5,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +103438,Ae38,EA079,Rectangular,EA079-5,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +103439,Ae39,EA079,Rectangular,EA079-5,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +103440,Ae4,EA079,Rectangular,EA079-5,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +103441,Ae40,EA079,Rectangular,EA079-5,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +103442,Ae41,EA079,Rectangular,EA079-5,,andersson1953,,1940,EthnographicAtlas_1967_p69, +103443,Ae42,EA079,Rectangular,EA079-5,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +103444,Ae43,EA079,Rectangular,EA079-5,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +103445,Ae44,EA079,Rectangular,EA079-5,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +103446,Ae45,EA079,Rectangular,EA079-5,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +103447,Ae46,EA079,Rectangular,EA079-5,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +103448,Ae47,EA079,Rectangular,EA079-5,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +103449,Ae48,EA079,Rectangular,EA079-5,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +103450,Ae49,EA079,Quadrangular around interior,EA079-6,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +103451,Ae5,EA079,Rectangular,EA079-5,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +103452,Ae50,EA079,Rectangular,EA079-5,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +103453,Ae51,EA079,Quadrangular around interior,EA079-6,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +103454,Ae52,EA079,Rectangular,EA079-5,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +103455,Ae53,EA079,Rectangular,EA079-5,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +103456,Ae54,EA079,Rectangular,EA079-5,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +103457,Ae55,EA079,Rectangular,EA079-5,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +103458,Ae56,EA079,Quadrangular around interior,EA079-6,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +103459,Ae57,EA079,Rectangular,EA079-5,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +103460,Ae58,EA079,Circular,EA079-2,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +103461,Ae59,EA079,Circular,EA079-2,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +103462,Ae6,EA079,Rectangular,EA079-5,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +103463,Ae7,EA079,Circular,EA079-2,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +103464,Ae8,EA079,Circular,EA079-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +103465,Ae9,EA079,Rectangular,EA079-5,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +103466,Af1,EA079,Rectangular,EA079-5,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +103467,Af10,EA079,Rectangular,EA079-5,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +103468,Af11,EA079,Circular,EA079-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +103469,Af12,EA079,Rectangular,EA079-5,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +103470,Af13,EA079,Circular,EA079-2,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +103471,Af14,EA079,Circular,EA079-2,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +103472,Af15,EA079,Circular,EA079-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +103473,Af16,EA079,Rectangular,EA079-5,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +103474,Af17,EA079,Circular,EA079-2,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +103475,Af18,EA079,Quadrangular around interior,EA079-6,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +103476,Af19,EA079,Quadrangular around interior,EA079-6,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +103477,Af2,EA079,Circular,EA079-2,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +103478,Af20,EA079,Quadrangular around interior,EA079-6,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +103479,Af21,EA079,Rectangular,EA079-5,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +103480,Af22,EA079,Quadrangular around interior,EA079-6,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +103481,Af23,EA079,Rectangular,EA079-5,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +103482,Af24,EA079,Quadrangular around interior,EA079-6,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +103483,Af25,EA079,Quadrangular around interior,EA079-6,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +103484,Af26,EA079,Quadrangular around interior,EA079-6,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +103485,Af27,EA079,?,EA079-NA,,,,,, +103486,Af28,EA079,Circular,EA079-2,,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +103487,Af29,EA079,Circular,EA079-2,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +103488,Af3,EA079,Quadrangular around interior,EA079-6,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +103489,Af30,EA079,Circular,EA079-2,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +103490,Af31,EA079,Circular,EA079-2,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +103491,Af32,EA079,Rectangular,EA079-5,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103492,Af33,EA079,Quadrangular around interior,EA079-6,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103493,Af34,EA079,Quadrangular around interior,EA079-6,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103494,Af35,EA079,Rectangular,EA079-5,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +103495,Af36,EA079,Rectangular,EA079-5,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +103496,Af37,EA079,Rectangular,EA079-5,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +103497,Af38,EA079,Rectangular,EA079-5,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +103498,Af39,EA079,Rectangular,EA079-5,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +103499,Af4,EA079,Rectangular,EA079-5,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +103500,Af40,EA079,Rectangular,EA079-5,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +103501,Af41,EA079,Rectangular,EA079-5,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +103502,Af42,EA079,Quadrangular around interior,EA079-6,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +103503,Af43,EA079,Rectangular,EA079-5,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +103504,Af44,EA079,Rectangular,EA079-5,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +103505,Af45,EA079,Rectangular,EA079-5,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +103506,Af46,EA079,Rectangular,EA079-5,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +103507,Af47,EA079,Circular,EA079-2,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +103508,Af48,EA079,Circular,EA079-2,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +103509,Af49,EA079,Rectangular,EA079-5,,schwab1947,,1940,EthnographicAtlas_1967_p73, +103510,Af5,EA079,Circular,EA079-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +103511,Af50,EA079,Circular,EA079-2,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +103512,Af51,EA079,Circular,EA079-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +103513,Af52,EA079,Rectangular,EA079-5,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +103514,Af53,EA079,Circular,EA079-2,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +103515,Af54,EA079,Circular,EA079-2,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +103516,Af55,EA079,?,EA079-NA,,,,,, +103517,Af56,EA079,Circular,EA079-2,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +103518,Af57,EA079,Circular,EA079-2,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +103519,Af58,EA079,Circular,EA079-2,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +103520,Af6,EA079,Quadrangular around interior,EA079-6,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +103521,Af7,EA079,Rectangular,EA079-5,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +103522,Af8,EA079,Circular,EA079-2,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +103523,Af9,EA079,Rectangular,EA079-5,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +103524,Ag1,EA079,Quadrangular around interior,EA079-6,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +103525,Ag10,EA079,Circular,EA079-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +103526,Ag11,EA079,Rectangular,EA079-5,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +103527,Ag12,EA079,Circular,EA079-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +103528,Ag13,EA079,Circular,EA079-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +103529,Ag14,EA079,Circular,EA079-2,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +103530,Ag15,EA079,Circular,EA079-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +103531,Ag16,EA079,Circular,EA079-2,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +103532,Ag17,EA079,Circular,EA079-2,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +103533,Ag18,EA079,Circular,EA079-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +103534,Ag19,EA079,Elliptical,EA079-3,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +103535,Ag2,EA079,Circular,EA079-2,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +103536,Ag20,EA079,Circular,EA079-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +103537,Ag21,EA079,Circular,EA079-2,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +103538,Ag22,EA079,Circular,EA079-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +103539,Ag23,EA079,Circular,EA079-2,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +103540,Ag24,EA079,Circular,EA079-2,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +103541,Ag25,EA079,Quadrangular around interior,EA079-6,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +103542,Ag26,EA079,Circular,EA079-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +103543,Ag27,EA079,Quadrangular around interior,EA079-6,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +103544,Ag28,EA079,Quadrangular around interior,EA079-6,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +103545,Ag29,EA079,Quadrangular around interior,EA079-6,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +103546,Ag3,EA079,Quadrangular around interior,EA079-6,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +103547,Ag30,EA079,Rectangular,EA079-5,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +103548,Ag31,EA079,Rectangular,EA079-5,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +103549,Ag32,EA079,Circular,EA079-2,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +103550,Ag33,EA079,Quadrangular around interior,EA079-6,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +103551,Ag34,EA079,Rectangular,EA079-5,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +103552,Ag35,EA079,Circular,EA079-2,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +103553,Ag36,EA079,Rectangular,EA079-5,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +103554,Ag37,EA079,Circular,EA079-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +103555,Ag38,EA079,Circular,EA079-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +103556,Ag39,EA079,Rectangular,EA079-5,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +103557,Ag4,EA079,Circular,EA079-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +103558,Ag40,EA079,Rectangular,EA079-5,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +103559,Ag41,EA079,Circular,EA079-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +103560,Ag42,EA079,Quadrangular around interior,EA079-6,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +103561,Ag43,EA079,Rectangular,EA079-5,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +103562,Ag44,EA079,Circular,EA079-2,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +103563,Ag45,EA079,Circular,EA079-2,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +103564,Ag46,EA079,Circular,EA079-2,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +103565,Ag47,EA079,Circular,EA079-2,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +103566,Ag48,EA079,Circular,EA079-2,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +103567,Ag49,EA079,Circular,EA079-2,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +103568,Ag5,EA079,Quadrangular around interior,EA079-6,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +103569,Ag50,EA079,Circular,EA079-2,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +103570,Ag51,EA079,Circular,EA079-2,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +103571,Ag52,EA079,Circular,EA079-2,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +103572,Ag53,EA079,Circular,EA079-2,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +103573,Ag54,EA079,Circular,EA079-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +103574,Ag6,EA079,Circular,EA079-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +103575,Ag7,EA079,Quadrangular around interior,EA079-6,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +103576,Ag8,EA079,Circular,EA079-2,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +103577,Ag9,EA079,Circular,EA079-2,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +103578,Ah1,EA079,Circular,EA079-2,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103579,Ah10,EA079,Circular,EA079-2,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +103580,Ah11,EA079,Circular,EA079-2,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +103581,Ah12,EA079,Circular,EA079-2,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +103582,Ah13,EA079,Circular,EA079-2,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +103583,Ah14,EA079,Circular,EA079-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +103584,Ah15,EA079,Circular,EA079-2,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +103585,Ah16,EA079,Circular,EA079-2,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +103586,Ah17,EA079,Circular,EA079-2,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +103587,Ah18,EA079,Circular,EA079-2,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +103588,Ah19,EA079,Elliptical,EA079-3,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +103589,Ah2,EA079,Circular,EA079-2,,meek1931a,,1920,EthnographicAtlas_1967_p77, +103590,Ah20,EA079,Elliptical,EA079-3,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +103591,Ah21,EA079,Circular,EA079-2,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103592,Ah22,EA079,Circular,EA079-2,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +103593,Ah23,EA079,Circular,EA079-2,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103594,Ah24,EA079,Circular,EA079-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103595,Ah25,EA079,Circular,EA079-2,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103596,Ah26,EA079,Circular,EA079-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103597,Ah27,EA079,?,EA079-NA,,,,,, +103598,Ah28,EA079,Circular,EA079-2,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +103599,Ah29,EA079,Circular,EA079-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103600,Ah3,EA079,Circular,EA079-2,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +103601,Ah30,EA079,Circular,EA079-2,,meek1931b,,1920,EthnographicAtlas_1967_p77, +103602,Ah31,EA079,Circular,EA079-2,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +103603,Ah32,EA079,Circular,EA079-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103604,Ah33,EA079,Circular,EA079-2,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +103605,Ah34,EA079,Circular,EA079-2,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +103606,Ah35,EA079,Circular,EA079-2,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103607,Ah36,EA079,Circular,EA079-2,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +103608,Ah37,EA079,Circular,EA079-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103609,Ah38,EA079,Circular,EA079-2,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +103610,Ah39,EA079,Circular,EA079-2,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +103611,Ah4,EA079,Circular,EA079-2,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +103612,Ah5,EA079,Circular,EA079-2,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +103613,Ah6,EA079,Circular,EA079-2,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +103614,Ah7,EA079,Circular,EA079-2,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +103615,Ah8,EA079,Circular,EA079-2,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +103616,Ah9,EA079,Circular,EA079-2,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +103617,Ai1,EA079,Circular,EA079-2,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +103618,Ai10,EA079,Circular,EA079-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +103619,Ai11,EA079,Rectangular,EA079-5,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +103620,Ai12,EA079,Circular,EA079-2,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +103621,Ai13,EA079,Circular,EA079-2,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +103622,Ai14,EA079,Circular,EA079-2,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p77, +103623,Ai15,EA079,Circular,EA079-2,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +103624,Ai16,EA079,Circular,EA079-2,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +103625,Ai17,EA079,Circular,EA079-2,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +103626,Ai18,EA079,Circular,EA079-2,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +103627,Ai19,EA079,Circular,EA079-2,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +103628,Ai2,EA079,Circular,EA079-2,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +103629,Ai20,EA079,Circular,EA079-2,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +103630,Ai21,EA079,Circular,EA079-2,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +103631,Ai22,EA079,Circular,EA079-2,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +103632,Ai23,EA079,Rectangular,EA079-5,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +103633,Ai24,EA079,Circular,EA079-2,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +103634,Ai25,EA079,Circular,EA079-2,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +103635,Ai26,EA079,Circular,EA079-2,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +103636,Ai27,EA079,Circular,EA079-2,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +103637,Ai28,EA079,Circular,EA079-2,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +103638,Ai29,EA079,Circular,EA079-2,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +103639,Ai3,EA079,Circular,EA079-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +103640,Ai30,EA079,Circular,EA079-2,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +103641,Ai31,EA079,Circular,EA079-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +103642,Ai32,EA079,Circular,EA079-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +103643,Ai33,EA079,Circular,EA079-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +103644,Ai34,EA079,Circular,EA079-2,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +103645,Ai35,EA079,Circular,EA079-2,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +103646,Ai36,EA079,Circular,EA079-2,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +103647,Ai37,EA079,Circular,EA079-2,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +103648,Ai38,EA079,Circular,EA079-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +103649,Ai39,EA079,Circular,EA079-2,,nadel1947,,1940,EthnographicAtlas_1967_p77, +103650,Ai4,EA079,?,EA079-NA,,,,,, +103651,Ai40,EA079,Circular,EA079-2,,nadel1947,,1940,EthnographicAtlas_1967_p77, +103652,Ai41,EA079,Circular,EA079-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +103653,Ai42,EA079,Circular,EA079-2,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +103654,Ai43,EA079,Circular,EA079-2,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +103655,Ai44,EA079,Circular,EA079-2,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p77, +103656,Ai45,EA079,Circular,EA079-2,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +103657,Ai46,EA079,Circular,EA079-2,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +103658,Ai47,EA079,Circular,EA079-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +103659,Ai5,EA079,Circular,EA079-2,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +103660,Ai6,EA079,Circular,EA079-2,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +103661,Ai7,EA079,Circular,EA079-2,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +103662,Ai8,EA079,Circular,EA079-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +103663,Ai9,EA079,Circular,EA079-2,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +103664,Aj1,EA079,Circular,EA079-2,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +103665,Aj10,EA079,Rectangular,EA079-5,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +103666,Aj11,EA079,Circular,EA079-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +103667,Aj12,EA079,Circular,EA079-2,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +103668,Aj13,EA079,Circular,EA079-2,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +103669,Aj14,EA079,Circular,EA079-2,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +103670,Aj15,EA079,Circular,EA079-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +103671,Aj16,EA079,Circular,EA079-2,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +103672,Aj17,EA079,Circular,EA079-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +103673,Aj18,EA079,Circular,EA079-2,,jensen1959,,1950,EthnographicAtlas_1967_p81, +103674,Aj19,EA079,Circular,EA079-2,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +103675,Aj2,EA079,Elliptical,EA079-3,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +103676,Aj20,EA079,Circular,EA079-2,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +103677,Aj21,EA079,Circular,EA079-2,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +103678,Aj22,EA079,Circular,EA079-2,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +103679,Aj23,EA079,Circular,EA079-2,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +103680,Aj24,EA079,Circular,EA079-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +103681,Aj25,EA079,Circular,EA079-2,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +103682,Aj26,EA079,Circular,EA079-2,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +103683,Aj27,EA079,Circular,EA079-2,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +103684,Aj28,EA079,Circular,EA079-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +103685,Aj29,EA079,Circular,EA079-2,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +103686,Aj3,EA079,Circular,EA079-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +103687,Aj30,EA079,?,EA079-NA,,,,,, +103688,Aj31,EA079,?,EA079-NA,,,,,, +103689,Aj4,EA079,Circular,EA079-2,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +103690,Aj5,EA079,Circular,EA079-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +103691,Aj6,EA079,Circular,EA079-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +103692,Aj7,EA079,Circular,EA079-2,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +103693,Aj8,EA079,Circular,EA079-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +103694,Aj9,EA079,Circular,EA079-2,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +103695,Ca1,EA079,Circular,EA079-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +103696,Ca10,EA079,Circular,EA079-2,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +103697,Ca11,EA079,Circular,EA079-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +103698,Ca12,EA079,Circular,EA079-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +103699,Ca13,EA079,Circular,EA079-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +103700,Ca14,EA079,Circular,EA079-2,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +103701,Ca15,EA079,Circular,EA079-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +103702,Ca16,EA079,Circular,EA079-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +103703,Ca17,EA079,Circular,EA079-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +103704,Ca18,EA079,Circular,EA079-2,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +103705,Ca19,EA079,Circular,EA079-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +103706,Ca2,EA079,Circular,EA079-2,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +103707,Ca20,EA079,Circular,EA079-2,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +103708,Ca21,EA079,Circular,EA079-2,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +103709,Ca22,EA079,Circular,EA079-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +103710,Ca23,EA079,Circular,EA079-2,,jensen1959,,1950,EthnographicAtlas_1967_p81, +103711,Ca24,EA079,Circular,EA079-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +103712,Ca25,EA079,Circular,EA079-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +103713,Ca26,EA079,Circular,EA079-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +103714,Ca27,EA079,Circular,EA079-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +103715,Ca28,EA079,Circular,EA079-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +103716,Ca29,EA079,Circular,EA079-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +103717,Ca3,EA079,Circular,EA079-2,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +103718,Ca30,EA079,Circular,EA079-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +103719,Ca31,EA079,Circular,EA079-2,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +103720,Ca32,EA079,Circular,EA079-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +103721,Ca33,EA079,Circular,EA079-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +103722,Ca34,EA079,Rectangular,EA079-5,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +103723,Ca35,EA079,Rectangular,EA079-5,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +103724,Ca36,EA079,Rectangular,EA079-5,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +103725,Ca37,EA079,Circular,EA079-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +103726,Ca38,EA079,Circular,EA079-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +103727,Ca39,EA079,Circular,EA079-2,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +103728,Ca4,EA079,Circular,EA079-2,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +103729,Ca40,EA079,Circular,EA079-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +103730,Ca41,EA079,Circular,EA079-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +103731,Ca42,EA079,Circular,EA079-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +103732,Ca43,EA079,?,EA079-NA,,,,,, +103733,Ca5,EA079,Circular,EA079-2,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +103734,Ca6,EA079,Circular,EA079-2,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +103735,Ca7,EA079,Circular,EA079-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +103736,Ca8,EA079,Circular,EA079-2,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +103737,Ca9,EA079,Rectangular,EA079-5,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +103738,Cb1,EA079,Circular,EA079-2,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +103739,Cb10,EA079,Circular,EA079-2,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +103740,Cb11,EA079,Circular,EA079-2,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +103741,Cb12,EA079,Circular,EA079-2,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +103742,Cb13,EA079,Elliptical,EA079-3,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +103743,Cb14,EA079,Circular,EA079-2,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +103744,Cb15,EA079,Circular,EA079-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +103745,Cb16,EA079,Circular,EA079-2,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +103746,Cb17,EA079,Circular,EA079-2,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +103747,Cb18,EA079,Circular,EA079-2,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +103748,Cb19,EA079,Circular,EA079-2,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +103749,Cb2,EA079,Circular,EA079-2,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +103750,Cb20,EA079,Circular,EA079-2,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +103751,Cb21,EA079,Circular,EA079-2,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +103752,Cb22,EA079,Quadrangular around interior,EA079-6,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +103753,Cb23,EA079,Circular,EA079-2,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +103754,Cb24,EA079,Circular,EA079-2,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +103755,Cb25,EA079,Circular,EA079-2,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +103756,Cb26,EA079,Circular,EA079-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +103757,Cb27,EA079,Circular,EA079-2,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103758,Cb28,EA079,Circular,EA079-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103759,Cb29,EA079,Circular,EA079-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +103760,Cb3,EA079,Elliptical,EA079-3,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +103761,Cb4,EA079,Rectangular,EA079-5,,reid1930,,1920,EthnographicAtlas_1967_p81, +103762,Cb5,EA079,Circular,EA079-2,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +103763,Cb6,EA079,Circular,EA079-2,,woodnd,,1920,EthnographicAtlas_1967_p81, +103764,Cb7,EA079,Circular,EA079-2,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +103765,Cb8,EA079,Circular,EA079-2,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +103766,Cb9,EA079,Circular,EA079-2,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +103767,Cc1,EA079,Rectangular,EA079-5,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +103768,Cc10,EA079,Rectangular,EA079-5,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +103769,Cc11,EA079,Rectangular,EA079-5,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +103770,Cc12,EA079,Circular,EA079-2,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +103771,Cc13,EA079,Rectangular,EA079-5,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +103772,Cc14,EA079,Circular,EA079-2,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +103773,Cc15,EA079,Quadrangular around interior,EA079-6,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +103774,Cc16,EA079,Elliptical,EA079-3,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +103775,Cc17,EA079,Rectangular,EA079-5,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +103776,Cc18,EA079,Elliptical,EA079-3,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +103777,Cc19,EA079,Rectangular,EA079-5,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +103778,Cc2,EA079,Rectangular,EA079-5,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +103779,Cc20,EA079,?,EA079-NA,Tents,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p85, +103780,Cc3,EA079,Rectangular,EA079-5,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +103781,Cc4,EA079,Quadrangular around interior,EA079-6,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +103782,Cc5,EA079,Rectangular,EA079-5,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +103783,Cc6,EA079,Rectangular,EA079-5,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +103784,Cc7,EA079,Rectangular,EA079-5,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103785,Cc8,EA079,Rectangular,EA079-5,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +103786,Cc9,EA079,Rectangular,EA079-5,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +103787,Cd1,EA079,Quadrangular around interior,EA079-6,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +103788,Cd10,EA079,Quadrangular around interior,EA079-6,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +103789,Cd11,EA079,Rectangular,EA079-5,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +103790,Cd12,EA079,Quadrangular around interior,EA079-6,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +103791,Cd13,EA079,Rectangular,EA079-5,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +103792,Cd14,EA079,Rectangular,EA079-5,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +103793,Cd15,EA079,Rectangular,EA079-5,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +103794,Cd16,EA079,Quadrangular around interior,EA079-6,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +103795,Cd17,EA079,Rectangular,EA079-5,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +103796,Cd18,EA079,Rectangular,EA079-5,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +103797,Cd19,EA079,Quadrangular around interior,EA079-6,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +103798,Cd2,EA079,Rectangular,EA079-5,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +103799,Cd20,EA079,Rectangular,EA079-5,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +103800,Cd21,EA079,Quadrangular around interior,EA079-6,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +103801,Cd3,EA079,Quadrangular around interior,EA079-6,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +103802,Cd4,EA079,Rectangular,EA079-5,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +103803,Cd5,EA079,Rectangular,EA079-5,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +103804,Cd6,EA079,Quadrangular around interior,EA079-6,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +103805,Cd7,EA079,Rectangular,EA079-5,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +103806,Cd8,EA079,Rectangular,EA079-5,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +103807,Cd9,EA079,Rectangular,EA079-5,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +103808,Ce1,EA079,Rectangular,EA079-5,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +103809,Ce2,EA079,Rectangular,EA079-5,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +103810,Ce3,EA079,Rectangular,EA079-5,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +103811,Ce4,EA079,Rectangular,EA079-5,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103812,Ce5,EA079,Rectangular,EA079-5,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +103813,Ce6,EA079,Rectangular,EA079-5,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +103814,Ce7,EA079,Rectangular,EA079-5,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +103815,Ce8,EA079,Rectangular,EA079-5,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +103816,Cf1,EA079,Rectangular,EA079-5,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +103817,Cf2,EA079,Rectangular,EA079-5,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +103818,Cf3,EA079,Rectangular,EA079-5,,munch1945,,1930,EthnographicAtlas_1967_p85, +103819,Cf4,EA079,Rectangular,EA079-5,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +103820,Cf5,EA079,Rectangular,EA079-5,,miner1939,,1930,EthnographicAtlas_1967_p85, +103821,Cg1,EA079,Rectangular,EA079-5,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +103822,Cg2,EA079,Rectangular,EA079-5,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +103823,Cg3,EA079,Rectangular,EA079-5,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +103824,Cg4,EA079,Rectangular,EA079-5,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +103825,Cg5,EA079,Rectangular,EA079-5,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +103826,Ch1,EA079,Quadrangular around interior,EA079-6,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +103827,Ch10,EA079,?,EA079-NA,,,,,, +103828,Ch11,EA079,Rectangular,EA079-5,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +103829,Ch2,EA079,Rectangular,EA079-5,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +103830,Ch3,EA079,Rectangular,EA079-5,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +103831,Ch4,EA079,Rectangular,EA079-5,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +103832,Ch5,EA079,Rectangular,EA079-5,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +103833,Ch6,EA079,Rectangular,EA079-5,,ember1954,,1910,EthnographicAtlas_1967_p85, +103834,Ch7,EA079,Rectangular,EA079-5,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +103835,Ch8,EA079,Rectangular,EA079-5,,hanzeli1955,,1940,EthnographicAtlas_1967_p85, +103836,Ch9,EA079,Rectangular,EA079-5,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +103837,Ci1,EA079,Circular,EA079-2,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +103838,Ci10,EA079,Rectangular,EA079-5,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +103839,Ci11,EA079,Rectangular,EA079-5,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +103840,Ci12,EA079,Rectangular,EA079-5,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +103841,Ci2,EA079,Rectangular,EA079-5,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +103842,Ci3,EA079,Rectangular,EA079-5,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p85, +103843,Ci4,EA079,Rectangular,EA079-5,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +103844,Ci5,EA079,Rectangular,EA079-5,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +103845,Ci6,EA079,Quadrangular around interior,EA079-6,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +103846,Ci7,EA079,Rectangular,EA079-5,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p85, +103847,Ci8,EA079,Rectangular,EA079-5,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +103848,Ci9,EA079,Rectangular,EA079-5,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +103849,Cj1,EA079,Quadrangular around interior,EA079-6,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +103850,Cj10,EA079,Rectangular,EA079-5,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +103851,Cj2,EA079,Rectangular,EA079-5,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +103852,Cj3,EA079,Rectangular,EA079-5,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +103853,Cj4,EA079,Rectangular,EA079-5,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +103854,Cj5,EA079,Rectangular,EA079-5,,dickson1949,,1930,EthnographicAtlas_1967_p89, +103855,Cj6,EA079,Rectangular,EA079-5,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +103856,Cj7,EA079,Rectangular,EA079-5,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +103857,Cj8,EA079,Rectangular,EA079-5,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +103858,Cj9,EA079,Rectangular,EA079-5,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +103859,Ea1,EA079,Rectangular,EA079-5,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p89, +103860,Ea10,EA079,?,EA079-NA,Tents,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +103861,Ea11,EA079,Quadrangular around interior,EA079-6,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +103862,Ea12,EA079,Rectangular,EA079-5,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +103863,Ea13,EA079,Quadrangular around interior,EA079-6,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +103864,Ea2,EA079,Rectangular,EA079-5,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +103865,Ea3,EA079,Quadrangular around interior,EA079-6,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +103866,Ea4,EA079,Rectangular,EA079-5,,barth1956b,,1950,EthnographicAtlas_1967_p89, +103867,Ea5,EA079,Quadrangular around interior,EA079-6,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +103868,Ea6,EA079,Rectangular,EA079-5,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +103869,Ea7,EA079,Rectangular,EA079-5,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +103870,Ea8,EA079,Rectangular,EA079-5,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +103871,Ea9,EA079,Rectangular,EA079-5,,vreeland1957,,1950,EthnographicAtlas_1967_p89, +103872,Eb1,EA079,Circular,EA079-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +103873,Eb2,EA079,Rectangular,EA079-5,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +103874,Eb3,EA079,Circular,EA079-2,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +103875,Eb4,EA079,Rectangular,EA079-5,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +103876,Eb5,EA079,Rectangular,EA079-5,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +103877,Eb6,EA079,Circular,EA079-2,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +103878,Eb7,EA079,Rectangular,EA079-5,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +103879,Eb8,EA079,?,EA079-NA,,,,,, +103880,Ec1,EA079,Rectangular,EA079-5,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +103881,Ec10,EA079,Circular,EA079-2,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +103882,Ec11,EA079,Circular,EA079-2,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +103883,Ec2,EA079,Rectangular,EA079-5,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103884,Ec3,EA079,Circular,EA079-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +103885,Ec4,EA079,Circular,EA079-2,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +103886,Ec5,EA079,Polygonal,EA079-4,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +103887,Ec6,EA079,Circular,EA079-2,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +103888,Ec7,EA079,Rectangular,EA079-5,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +103889,Ec8,EA079,Rectangular,EA079-5,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +103890,Ec9,EA079,Circular,EA079-2,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +103891,Ed1,EA079,Rectangular,EA079-5,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +103892,Ed10,EA079,Rectangular,EA079-5,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +103893,Ed13,EA079,?,EA079-NA,,,,,, +103894,Ed14,EA079,?,EA079-NA,,,,,, +103895,Ed15a,EA079,?,EA079-NA,,,,,, +103896,Ed15b,EA079,Rectangular,EA079-5,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +103897,Ed16,EA079,?,EA079-NA,,,,,, +103898,Ed2,EA079,Rectangular,EA079-5,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +103899,Ed3,EA079,Rectangular,EA079-5,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +103900,Ed4,EA079,Rectangular,EA079-5,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +103901,Ed5,EA079,Rectangular,EA079-5,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103902,Ed6,EA079,Rectangular,EA079-5,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p89, +103903,Ed7,EA079,Rectangular,EA079-5,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +103904,Ed8,EA079,Quadrangular around interior,EA079-6,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +103905,Ed9,EA079,Rectangular,EA079-5,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +103906,Ee1,EA079,Rectangular,EA079-5,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +103907,Ee2,EA079,Rectangular,EA079-5,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p89, +103908,Ee3,EA079,Rectangular,EA079-5,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +103909,Ee4,EA079,Rectangular,EA079-5,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +103910,Ee5,EA079,Rectangular,EA079-5,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +103911,Ee6,EA079,Rectangular,EA079-5,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +103912,Ee7,EA079,?,EA079-NA,,,,,, +103913,Ee8,EA079,Rectangular,EA079-5,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +103914,Ef1,EA079,Quadrangular around interior,EA079-6,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +103915,Ef10,EA079,?,EA079-NA,,,,,, +103916,Ef11,EA079,Rectangular,EA079-5,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +103917,Ef2,EA079,Quadrangular around interior,EA079-6,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +103918,Ef3,EA079,?,EA079-NA,,,,,, +103919,Ef4,EA079,Rectangular,EA079-5,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +103920,Ef5,EA079,Rectangular,EA079-5,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +103921,Ef6,EA079,Rectangular,EA079-5,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +103922,Ef7,EA079,Rectangular,EA079-5,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +103923,Ef8,EA079,Rectangular,EA079-5,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +103924,Ef9,EA079,Rectangular,EA079-5,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103925,Eg1,EA079,Circular,EA079-2,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103926,Eg10,EA079,Rectangular,EA079-5,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +103927,Eg11,EA079,?,EA079-NA,,,,,, +103928,Eg12,EA079,?,EA079-NA,,,,,, +103929,Eg13,EA079,Rectangular,EA079-5,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103930,Eg14,EA079,Rectangular,EA079-5,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +103931,Eg2,EA079,Rectangular,EA079-5,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +103932,Eg3,EA079,Rectangular,EA079-5,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +103933,Eg4,EA079,Rectangular,EA079-5,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +103934,Eg5,EA079,Rectangular,EA079-5,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +103935,Eg6,EA079,Quadrangular around interior,EA079-6,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +103936,Eg7,EA079,Rectangular,EA079-5,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +103937,Eg8,EA079,Rectangular,EA079-5,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +103938,Eg9,EA079,Rectangular,EA079-5,,elwin1939,,1930,EthnographicAtlas_1967_p93, +103939,Eh1,EA079,Rectangular,EA079-5,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +103940,Eh10,EA079,?,EA079-NA,,,,,, +103941,Eh2,EA079,Rectangular,EA079-5,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +103942,Eh3,EA079,Rectangular,EA079-5,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +103943,Eh4,EA079,?,EA079-NA,Preferably caves and rock shelters,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103944,Eh5,EA079,Circular,EA079-2,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +103945,Eh6,EA079,Rectangular,EA079-5,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +103946,Eh7,EA079,Rectangular,EA079-5,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +103947,Eh8,EA079,Rectangular,EA079-5,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +103948,Eh9,EA079,Rectangular,EA079-5,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +103949,Ei1,EA079,Rectangular,EA079-5,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103950,Ei10,EA079,Rectangular,EA079-5,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +103951,Ei11,EA079,Rectangular,EA079-5,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +103952,Ei12,EA079,Rectangular,EA079-5,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +103953,Ei13,EA079,Rectangular,EA079-5,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +103954,Ei14,EA079,Rectangular,EA079-5,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +103955,Ei15,EA079,?,EA079-NA,,,,,, +103956,Ei16,EA079,Rectangular,EA079-5,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +103957,Ei17,EA079,?,EA079-NA,,,,,, +103958,Ei18,EA079,Rectangular,EA079-5,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +103959,Ei19,EA079,Rectangular,EA079-5,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +103960,Ei2,EA079,Rectangular,EA079-5,,mills1922,,1920,EthnographicAtlas_1967_p93, +103961,Ei20,EA079,?,EA079-NA,,,,,, +103962,Ei3,EA079,Rectangular,EA079-5,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +103963,Ei4,EA079,Rectangular,EA079-5,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +103964,Ei5,EA079,Rectangular,EA079-5,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +103965,Ei6,EA079,Rectangular,EA079-5,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +103966,Ei7,EA079,Rectangular,EA079-5,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +103967,Ei8,EA079,Elliptical,EA079-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +103968,Ei9,EA079,Rectangular,EA079-5,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p93, +103969,Ej1,EA079,Rectangular,EA079-5,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +103970,Ej10,EA079,Rectangular,EA079-5,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +103971,Ej11,EA079,Rectangular,EA079-5,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +103972,Ej12,EA079,Rectangular,EA079-5,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +103973,Ej13,EA079,Rectangular,EA079-5,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +103974,Ej14,EA079,Rectangular,EA079-5,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +103975,Ej15,EA079,Rectangular,EA079-5,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +103976,Ej16,EA079,Rectangular,EA079-5,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +103977,Ej2,EA079,Elliptical,EA079-3,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +103978,Ej3,EA079,Rectangular,EA079-5,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +103979,Ej4,EA079,Quadrangular around interior,EA079-6,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +103980,Ej5,EA079,Rectangular,EA079-5,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +103981,Ej6,EA079,?,EA079-NA,Houseboats,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p93, +103982,Ej7,EA079,Rectangular,EA079-5,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +103983,Ej8,EA079,Rectangular,EA079-5,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +103984,Ej9,EA079,Rectangular,EA079-5,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +103985,Ia1,EA079,Rectangular,EA079-5,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +103986,Ia10,EA079,Rectangular,EA079-5,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +103987,Ia11,EA079,Rectangular,EA079-5,,mabuchi1960,,1930,EthnographicAtlas_1967_p93, +103988,Ia12,EA079,Rectangular,EA079-5,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +103989,Ia13,EA079,?,EA079-NA,Houseboats,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +103990,Ia14,EA079,Rectangular,EA079-5,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +103991,Ia15,EA079,?,EA079-NA,,,,,, +103992,Ia16,EA079,Rectangular,EA079-5,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +103993,Ia17,EA079,?,EA079-NA,,,,,, +103994,Ia18,EA079,?,EA079-NA,,,,,, +103995,Ia2,EA079,Rectangular,EA079-5,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +103996,Ia3,EA079,Rectangular,EA079-5,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +103997,Ia4,EA079,Rectangular,EA079-5,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +103998,Ia5,EA079,Rectangular,EA079-5,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +103999,Ia6,EA079,Rectangular,EA079-5,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104000,Ia7,EA079,Rectangular,EA079-5,,fox1954,,1950,EthnographicAtlas_1967_p93, +104001,Ia8,EA079,Rectangular,EA079-5,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +104002,Ia9,EA079,Rectangular,EA079-5,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +104003,Ib1,EA079,Rectangular,EA079-5,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104004,Ib2,EA079,Rectangular,EA079-5,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104005,Ib3,EA079,Quadrangular around interior,EA079-6,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +104006,Ib4,EA079,Rectangular,EA079-5,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +104007,Ib5,EA079,Rectangular,EA079-5,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +104008,Ib6,EA079,Rectangular,EA079-5,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +104009,Ib7,EA079,Rectangular,EA079-5,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +104010,Ib8,EA079,Rectangular,EA079-5,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +104011,Ib9,EA079,?,EA079-NA,,,,,, +104012,Ic1,EA079,Rectangular,EA079-5,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104013,Ic10,EA079,Rectangular,EA079-5,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +104014,Ic11,EA079,Rectangular,EA079-5,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104015,Ic12,EA079,Rectangular,EA079-5,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +104016,Ic13,EA079,?,EA079-NA,,,,,, +104017,Ic2,EA079,Rectangular,EA079-5,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p97, +104018,Ic3,EA079,Rectangular,EA079-5,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +104019,Ic4,EA079,Rectangular,EA079-5,,kruyt1921;wetering1925,,1920,Ethnology_Vol2_No1_Jan_1963, +104020,Ic5,EA079,Rectangular,EA079-5,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +104021,Ic6,EA079,Rectangular,EA079-5,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +104022,Ic7,EA079,Rectangular,EA079-5,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +104023,Ic8,EA079,Rectangular,EA079-5,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +104024,Ic9,EA079,Rectangular,EA079-5,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +104025,Id1,EA079,Rectangular,EA079-5,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +104026,Id10,EA079,Semicircular,EA079-1,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +104027,Id11,EA079,Rectangular,EA079-5,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +104028,Id12,EA079,?,EA079-NA,,,,,, +104029,Id13,EA079,?,EA079-NA,,,,,, +104030,Id2,EA079,Rectangular,EA079-5,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +104031,Id3,EA079,?,EA079-NA,"The dwelling is ""nothing more than a few piled-up tree branches"" or a crude bark shelter",basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p97, +104032,Id4,EA079,?,EA079-NA,,,,,, +104033,Id5,EA079,?,EA079-NA,,,,,, +104034,Id6,EA079,?,EA079-NA,,,,,, +104035,Id7,EA079,?,EA079-NA,,,,,, +104036,Id8,EA079,Semicircular,EA079-1,,roth1890,,1830,EthnographicAtlas_1967_p97, +104037,Id9,EA079,?,EA079-NA,,,,,, +104038,Ie1,EA079,Rectangular,EA079-5,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104039,Ie10,EA079,Rectangular,EA079-5,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +104040,Ie11,EA079,Elliptical,EA079-3,,bowers1964,,1950,EthnographicAtlas_1967_p97, +104041,Ie12,EA079,Rectangular,EA079-5,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104042,Ie13,EA079,Rectangular,EA079-5,,landtman1927,,1920,EthnographicAtlas_1967_p97, +104043,Ie14,EA079,?,EA079-NA,,,,,, +104044,Ie15,EA079,Rectangular,EA079-5,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104045,Ie16,EA079,Rectangular,EA079-5,,williams194041,,1940,EthnographicAtlas_1967_p97, +104046,Ie17,EA079,Circular,EA079-2,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +104047,Ie18,EA079,Circular,EA079-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +104048,Ie19,EA079,Rectangular,EA079-5,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +104049,Ie2,EA079,Rectangular,EA079-5,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +104050,Ie20,EA079,Rectangular,EA079-5,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +104051,Ie21,EA079,Rectangular,EA079-5,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +104052,Ie22,EA079,Rectangular,EA079-5,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +104053,Ie23,EA079,Rectangular,EA079-5,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +104054,Ie24,EA079,Rectangular,EA079-5,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +104055,Ie25,EA079,Rectangular,EA079-5,,williamson1912,,1920,EthnographicAtlas_1967_p97, +104056,Ie26,EA079,Circular,EA079-2,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +104057,Ie27,EA079,Rectangular,EA079-5,,thurnwald1916,,1910,EthnographicAtlas_1967_p101, +104058,Ie28,EA079,Rectangular,EA079-5,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +104059,Ie29,EA079,Rectangular,EA079-5,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104060,Ie3,EA079,Rectangular,EA079-5,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104061,Ie30,EA079,Rectangular,EA079-5,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +104062,Ie31,EA079,Circular,EA079-2,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +104063,Ie32,EA079,Rectangular,EA079-5,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +104064,Ie33,EA079,Rectangular,EA079-5,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +104065,Ie34,EA079,?,EA079-NA,,,,,, +104066,Ie35,EA079,Rectangular,EA079-5,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +104067,Ie36,EA079,?,EA079-NA,,,,,, +104068,Ie37,EA079,?,EA079-NA,,,,,, +104069,Ie38,EA079,Circular,EA079-2,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +104070,Ie39,EA079,Rectangular,EA079-5,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +104071,Ie4,EA079,Rectangular,EA079-5,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104072,Ie5,EA079,Elliptical,EA079-3,,williams1936,,1930,EthnographicAtlas_1967_p97, +104073,Ie6,EA079,Rectangular,EA079-5,,held1947,,1930,EthnographicAtlas_1967_p97, +104074,Ie7,EA079,Rectangular,EA079-5,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +104075,Ie8,EA079,Rectangular,EA079-5,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +104076,Ie9,EA079,Rectangular,EA079-5,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +104077,If1,EA079,Rectangular,EA079-5,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104078,If10,EA079,?,EA079-NA,,,,,, +104079,If11,EA079,Rectangular,EA079-5,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +104080,If12,EA079,Rectangular,EA079-5,,mason1954,,1940,EthnographicAtlas_1967_p101, +104081,If13,EA079,?,EA079-NA,,,,,, +104082,If14,EA079,Rectangular,EA079-5,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +104083,If15,EA079,Rectangular,EA079-5,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +104084,If16,EA079,Rectangular,EA079-5,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +104085,If17,EA079,Rectangular,EA079-5,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +104086,If2,EA079,Rectangular,EA079-5,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +104087,If3,EA079,Rectangular,EA079-5,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +104088,If4,EA079,Rectangular,EA079-5,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +104089,If5,EA079,Rectangular,EA079-5,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +104090,If6,EA079,Rectangular,EA079-5,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +104091,If7,EA079,Rectangular,EA079-5,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +104092,If8,EA079,Rectangular,EA079-5,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +104093,If9,EA079,Rectangular,EA079-5,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +104094,Ig1,EA079,Rectangular,EA079-5,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +104095,Ig10,EA079,Rectangular,EA079-5,,schwartz1964,,1950,EthnographicAtlas_1967_p101, +104096,Ig11,EA079,Rectangular,EA079-5,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +104097,Ig12,EA079,?,EA079-NA,,,,,, +104098,Ig13,EA079,Rectangular,EA079-5,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +104099,Ig14,EA079,Rectangular,EA079-5,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +104100,Ig15,EA079,?,EA079-NA,,,,,, +104101,Ig16,EA079,?,EA079-NA,,,,,, +104102,Ig17,EA079,?,EA079-NA,,,,,, +104103,Ig18,EA079,?,EA079-NA,,,,,, +104104,Ig19,EA079,?,EA079-NA,,,,,, +104105,Ig2,EA079,Rectangular,EA079-5,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +104106,Ig20,EA079,Rectangular,EA079-5,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +104107,Ig21,EA079,Rectangular,EA079-5,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +104108,Ig3,EA079,Rectangular,EA079-5,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +104109,Ig4,EA079,Rectangular,EA079-5,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +104110,Ig5,EA079,Rectangular,EA079-5,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +104111,Ig6,EA079,Rectangular,EA079-5,,ivens1927,,1900,EthnographicAtlas_1967_p101, +104112,Ig7,EA079,Rectangular,EA079-5,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p101, +104113,Ig8,EA079,?,EA079-NA,,,,,, +104114,Ig9,EA079,Rectangular,EA079-5,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +104115,Ih1,EA079,Rectangular,EA079-5,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +104116,Ih10,EA079,?,EA079-NA,,,,,, +104117,Ih11,EA079,?,EA079-NA,,,,,, +104118,Ih12,EA079,?,EA079-NA,,,,,, +104119,Ih13,EA079,?,EA079-NA,,,,,, +104120,Ih14,EA079,Rectangular,EA079-5,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +104121,Ih2,EA079,Rectangular,EA079-5,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104122,Ih3,EA079,Rectangular,EA079-5,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +104123,Ih4,EA079,Rectangular,EA079-5,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104124,Ih5,EA079,Circular,EA079-2,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +104125,Ih6,EA079,Rectangular,EA079-5,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p101, +104126,Ih7,EA079,Circular,EA079-2,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +104127,Ih8,EA079,Rectangular,EA079-5,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +104128,Ih9,EA079,?,EA079-NA,,,,,, +104129,Ii1,EA079,Elliptical,EA079-3,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +104130,Ii10,EA079,Rectangular,EA079-5,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +104131,Ii12,EA079,Elliptical,EA079-3,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104132,Ii13,EA079,Elliptical,EA079-3,,burrows1937,,1830,EthnographicAtlas_1967_p101, +104133,Ii14,EA079,Elliptical,EA079-3,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +104134,Ii2,EA079,Rectangular,EA079-5,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +104135,Ii3,EA079,Rectangular,EA079-5,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +104136,Ii4,EA079,Rectangular,EA079-5,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +104137,Ii5,EA079,Rectangular,EA079-5,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +104138,Ii6,EA079,Rectangular,EA079-5,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +104139,Ii7,EA079,Rectangular,EA079-5,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +104140,Ii8,EA079,Elliptical,EA079-3,,burrows1936,,1840,EthnographicAtlas_1967_p101, +104141,Ii9,EA079,Rectangular,EA079-5,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +104142,Ij1,EA079,Rectangular,EA079-5,,buck1934,,1820,EthnographicAtlas_1967_p101, +104143,Ij10,EA079,?,EA079-NA,,,,,, +104144,Ij2,EA079,Rectangular,EA079-5,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +104145,Ij3,EA079,Rectangular,EA079-5,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +104146,Ij4,EA079,Rectangular,EA079-5,,buck1932a,,1850,EthnographicAtlas_1967_p105, +104147,Ij5,EA079,Rectangular,EA079-5,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +104148,Ij6,EA079,Rectangular,EA079-5,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +104149,Ij7,EA079,Rectangular,EA079-5,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +104150,Ij8,EA079,Rectangular,EA079-5,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +104151,Ij9,EA079,Elliptical,EA079-3,,metraux1940,,1860,EthnographicAtlas_1967_p105, +104152,Na1,EA079,Circular,EA079-2,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +104153,Na10,EA079,Rectangular,EA079-5,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +104154,Na11,EA079,Polygonal,EA079-4,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +104155,Na12,EA079,Circular,EA079-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +104156,Na13,EA079,Circular,EA079-2,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +104157,Na14,EA079,Elliptical,EA079-3,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +104158,Na15,EA079,Circular,EA079-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +104159,Na16,EA079,Circular,EA079-2,,osgood1931,,1860,EthnographicAtlas_1967_p105, +104160,Na17,EA079,Circular,EA079-2,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104161,Na19,EA079,Rectangular,EA079-5,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +104162,Na2,EA079,Circular,EA079-2,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +104163,Na20,EA079,Circular,EA079-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +104164,Na21,EA079,Elliptical,EA079-3,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +104165,Na22,EA079,Elliptical,EA079-3,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +104166,Na23,EA079,Circular,EA079-2,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +104167,Na24,EA079,Rectangular,EA079-5,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +104168,Na25,EA079,Rectangular,EA079-5,But winter houses were formerly dome-shaped with sod roofs,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +104169,Na26,EA079,Rectangular,EA079-5,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +104170,Na27,EA079,Rectangular,EA079-5,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +104171,Na28,EA079,Circular,EA079-2,,jenness1937,,1880,EthnographicAtlas_1967_p105, +104172,Na29,EA079,Circular,EA079-2,,goddard1916,,1850,EthnographicAtlas_1967_p105, +104173,Na3,EA079,Circular,EA079-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +104174,Na30,EA079,Circular,EA079-2,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +104175,Na31,EA079,Circular,EA079-2,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +104176,Na32,EA079,Circular,EA079-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +104177,Na33,EA079,Circular,EA079-2,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +104178,Na34,EA079,Rectangular,EA079-5,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +104179,Na35,EA079,Circular,EA079-2,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +104180,Na36,EA079,Elliptical,EA079-3,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +104181,Na37,EA079,Circular,EA079-2,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +104182,Na38,EA079,Circular,EA079-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +104183,Na39,EA079,Rectangular,EA079-5,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +104184,Na4,EA079,Circular,EA079-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +104185,Na40,EA079,Rectangular,EA079-5,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +104186,Na41,EA079,Circular,EA079-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +104187,Na42,EA079,Circular,EA079-2,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p105, +104188,Na43,EA079,Circular,EA079-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +104189,Na44,EA079,Circular,EA079-2,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +104190,Na45,EA079,?,EA079-NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +104191,Na5,EA079,Circular,EA079-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +104192,Na6,EA079,Rectangular,EA079-5,,lantis1946,,1930,EthnographicAtlas_1967_p105, +104193,Na7,EA079,Circular,EA079-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +104194,Na8,EA079,Rectangular,EA079-5,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +104195,Na9,EA079,Rectangular,EA079-5,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104196,Nb1,EA079,Rectangular,EA079-5,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +104197,Nb10,EA079,Circular,EA079-2,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +104198,Nb11,EA079,Rectangular,EA079-5,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +104199,Nb12,EA079,Rectangular,EA079-5,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +104200,Nb13,EA079,Rectangular,EA079-5,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +104201,Nb14,EA079,Rectangular,EA079-5,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +104202,Nb15,EA079,Rectangular,EA079-5,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +104203,Nb16,EA079,Rectangular,EA079-5,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +104204,Nb17,EA079,Rectangular,EA079-5,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +104205,Nb18,EA079,Rectangular,EA079-5,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +104206,Nb19,EA079,Rectangular,EA079-5,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +104207,Nb2,EA079,Rectangular,EA079-5,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +104208,Nb20,EA079,Rectangular,EA079-5,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +104209,Nb21,EA079,Rectangular,EA079-5,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +104210,Nb22,EA079,Rectangular,EA079-5,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +104211,Nb23,EA079,Rectangular,EA079-5,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +104212,Nb24,EA079,Rectangular,EA079-5,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +104213,Nb25,EA079,Rectangular,EA079-5,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +104214,Nb26,EA079,Rectangular,EA079-5,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +104215,Nb27,EA079,Circular,EA079-2,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +104216,Nb28,EA079,Rectangular,EA079-5,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +104217,Nb29,EA079,Rectangular,EA079-5,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +104218,Nb3,EA079,Rectangular,EA079-5,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +104219,Nb30,EA079,Rectangular,EA079-5,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +104220,Nb31,EA079,Rectangular,EA079-5,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +104221,Nb32,EA079,Rectangular,EA079-5,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +104222,Nb33,EA079,Circular,EA079-2,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +104223,Nb34,EA079,Rectangular,EA079-5,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +104224,Nb35,EA079,Rectangular,EA079-5,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +104225,Nb36,EA079,Rectangular,EA079-5,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +104226,Nb37,EA079,Circular,EA079-2,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +104227,Nb38,EA079,Rectangular,EA079-5,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +104228,Nb39,EA079,Circular,EA079-2,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +104229,Nb4,EA079,Rectangular,EA079-5,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +104230,Nb5,EA079,Rectangular,EA079-5,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +104231,Nb6,EA079,Rectangular,EA079-5,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +104232,Nb7,EA079,Rectangular,EA079-5,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +104233,Nb8,EA079,Rectangular,EA079-5,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +104234,Nb9,EA079,Rectangular,EA079-5,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +104235,Nc1,EA079,Circular,EA079-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +104236,Nc10,EA079,Rectangular,EA079-5,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +104237,Nc11,EA079,Circular,EA079-2,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +104238,Nc12,EA079,Circular,EA079-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +104239,Nc13,EA079,Circular,EA079-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +104240,Nc14,EA079,Circular,EA079-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +104241,Nc15,EA079,Circular,EA079-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +104242,Nc16,EA079,Circular,EA079-2,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +104243,Nc17,EA079,Circular,EA079-2,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +104244,Nc18,EA079,Circular,EA079-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +104245,Nc19,EA079,Circular,EA079-2,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +104246,Nc2,EA079,Circular,EA079-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +104247,Nc20,EA079,Circular,EA079-2,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +104248,Nc21,EA079,Circular,EA079-2,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +104249,Nc22,EA079,Circular,EA079-2,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +104250,Nc23,EA079,Circular,EA079-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +104251,Nc24,EA079,Elliptical,EA079-3,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +104252,Nc25,EA079,Circular,EA079-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +104253,Nc26,EA079,Circular,EA079-2,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +104254,Nc27,EA079,Circular,EA079-2,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +104255,Nc28,EA079,Circular,EA079-2,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +104256,Nc29,EA079,Circular,EA079-2,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +104257,Nc3,EA079,Circular,EA079-2,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +104258,Nc30,EA079,Circular,EA079-2,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +104259,Nc31,EA079,Rectangular,EA079-5,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +104260,Nc32,EA079,Circular,EA079-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +104261,Nc33,EA079,Circular,EA079-2,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +104262,Nc34,EA079,Elliptical,EA079-3,,meigs1939,,1880,EthnographicAtlas_1967_p109, +104263,Nc4,EA079,Rectangular,EA079-5,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +104264,Nc5,EA079,Circular,EA079-2,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +104265,Nc6,EA079,Circular,EA079-2,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +104266,Nc7,EA079,Circular,EA079-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +104267,Nc8,EA079,Circular,EA079-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +104268,Nc9,EA079,Circular,EA079-2,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +104269,Nd1,EA079,Elliptical,EA079-3,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +104270,Nd10,EA079,Circular,EA079-2,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +104271,Nd11,EA079,Circular,EA079-2,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +104272,Nd12,EA079,Elliptical,EA079-3,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +104273,Nd13,EA079,Elliptical,EA079-3,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +104274,Nd14,EA079,Circular,EA079-2,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +104275,Nd15,EA079,Elliptical,EA079-3,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +104276,Nd16,EA079,Circular,EA079-2,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +104277,Nd17,EA079,Circular,EA079-2,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +104278,Nd18,EA079,Circular,EA079-2,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +104279,Nd19,EA079,Elliptical,EA079-3,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +104280,Nd2,EA079,Circular,EA079-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +104281,Nd20,EA079,Elliptical,EA079-3,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +104282,Nd21,EA079,Circular,EA079-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +104283,Nd22,EA079,Circular,EA079-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +104284,Nd23,EA079,Circular,EA079-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +104285,Nd24,EA079,Circular,EA079-2,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +104286,Nd25,EA079,Circular,EA079-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +104287,Nd26,EA079,Circular,EA079-2,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +104288,Nd27,EA079,Circular,EA079-2,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +104289,Nd28,EA079,Circular,EA079-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +104290,Nd29,EA079,Circular,EA079-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +104291,Nd3,EA079,Circular,EA079-2,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +104292,Nd30,EA079,Rectangular,EA079-5,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +104293,Nd31,EA079,Circular,EA079-2,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +104294,Nd32,EA079,Circular,EA079-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +104295,Nd33,EA079,Circular,EA079-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +104296,Nd34,EA079,Circular,EA079-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +104297,Nd35,EA079,Circular,EA079-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +104298,Nd36,EA079,Circular,EA079-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +104299,Nd37,EA079,Circular,EA079-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +104300,Nd38,EA079,Circular,EA079-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +104301,Nd39,EA079,Circular,EA079-2,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +104302,Nd4,EA079,Elliptical,EA079-3,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +104303,Nd40,EA079,Circular,EA079-2,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +104304,Nd41,EA079,Circular,EA079-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +104305,Nd42,EA079,Circular,EA079-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +104306,Nd43,EA079,Circular,EA079-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +104307,Nd44,EA079,Circular,EA079-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +104308,Nd45,EA079,Circular,EA079-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +104309,Nd46,EA079,Circular,EA079-2,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +104310,Nd47,EA079,Circular,EA079-2,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +104311,Nd48,EA079,?,EA079-NA,"Caves or circular windbreaks of brush, but no houses",malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p113, +104312,Nd49,EA079,Circular,EA079-2,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +104313,Nd5,EA079,Circular,EA079-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +104314,Nd50,EA079,Circular,EA079-2,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +104315,Nd51,EA079,Circular,EA079-2,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +104316,Nd52,EA079,Circular,EA079-2,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +104317,Nd53,EA079,Circular,EA079-2,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +104318,Nd54,EA079,Circular,EA079-2,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104319,Nd55,EA079,Circular,EA079-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +104320,Nd56,EA079,Rectangular,EA079-5,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +104321,Nd57,EA079,Circular,EA079-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +104322,Nd58,EA079,Circular,EA079-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +104323,Nd59,EA079,Circular,EA079-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +104324,Nd6,EA079,Circular,EA079-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +104325,Nd60,EA079,Circular,EA079-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +104326,Nd61,EA079,Circular,EA079-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +104327,Nd62,EA079,Circular,EA079-2,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +104328,Nd63,EA079,Circular,EA079-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +104329,Nd64,EA079,Circular,EA079-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +104330,Nd65,EA079,Circular,EA079-2,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +104331,Nd66,EA079,Circular,EA079-2,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +104332,Nd67,EA079,Circular,EA079-2,,gifford1936,,1870,EthnographicAtlas_1967_p113, +104333,Nd7,EA079,Rectangular,EA079-5,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +104334,Nd8,EA079,Rectangular,EA079-5,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +104335,Nd9,EA079,Circular,EA079-2,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +104336,Ne1,EA079,Circular,EA079-2,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +104337,Ne10,EA079,Circular,EA079-2,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +104338,Ne11,EA079,Circular,EA079-2,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +104339,Ne12,EA079,Circular,EA079-2,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +104340,Ne13,EA079,Circular,EA079-2,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +104341,Ne14,EA079,Circular,EA079-2,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +104342,Ne15,EA079,Circular,EA079-2,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +104343,Ne16,EA079,Circular,EA079-2,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +104344,Ne17,EA079,Circular,EA079-2,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +104345,Ne18,EA079,Circular,EA079-2,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +104346,Ne19,EA079,Circular,EA079-2,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +104347,Ne2,EA079,Circular,EA079-2,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +104348,Ne20,EA079,Circular,EA079-2,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +104349,Ne21,EA079,?,EA079-NA,,,,,, +104350,Ne3,EA079,Circular,EA079-2,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +104351,Ne4,EA079,Circular,EA079-2,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +104352,Ne5,EA079,Circular,EA079-2,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +104353,Ne6,EA079,Circular,EA079-2,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +104354,Ne7,EA079,Circular,EA079-2,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +104355,Ne8,EA079,Circular,EA079-2,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +104356,Ne9,EA079,Circular,EA079-2,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +104357,Nf10,EA079,Circular,EA079-2,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +104358,Nf11,EA079,Circular,EA079-2,,whitman1937,,1870,EthnographicAtlas_1967_p117, +104359,Nf12,EA079,Circular,EA079-2,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +104360,Nf13,EA079,Circular,EA079-2,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104361,Nf14,EA079,Circular,EA079-2,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +104362,Nf15,EA079,?,EA079-NA,,,,,, +104363,Nf2,EA079,Rectangular,EA079-5,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +104364,Nf3,EA079,Circular,EA079-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +104365,Nf4,EA079,Rectangular,EA079-5,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +104366,Nf5,EA079,Circular,EA079-2,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +104367,Nf6,EA079,Circular,EA079-2,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +104368,Nf7,EA079,Rectangular,EA079-5,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104369,Nf8,EA079,Circular,EA079-2,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +104370,Nf9,EA079,Rectangular,EA079-5,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p117, +104371,Ng1,EA079,Rectangular,EA079-5,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +104372,Ng10,EA079,Rectangular,EA079-5,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +104373,Ng11,EA079,Rectangular,EA079-5,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +104374,Ng12,EA079,Circular,EA079-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +104375,Ng13,EA079,?,EA079-NA,,,,,, +104376,Ng14,EA079,?,EA079-NA,,,,,, +104377,Ng15,EA079,?,EA079-NA,,,,,, +104378,Ng2,EA079,Rectangular,EA079-5,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +104379,Ng3,EA079,Rectangular,EA079-5,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +104380,Ng4,EA079,Rectangular,EA079-5,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +104381,Ng5,EA079,Rectangular,EA079-5,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +104382,Ng6,EA079,Circular,EA079-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +104383,Ng7,EA079,Rectangular,EA079-5,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +104384,Ng8,EA079,Circular,EA079-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +104385,Ng9,EA079,?,EA079-NA,,,,,, +104386,Nh1,EA079,Circular,EA079-2,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +104387,Nh10,EA079,Rectangular,EA079-5,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +104388,Nh11,EA079,Rectangular,EA079-5,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +104389,Nh12,EA079,Rectangular,EA079-5,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +104390,Nh13,EA079,Rectangular,EA079-5,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +104391,Nh14,EA079,Rectangular,EA079-5,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +104392,Nh15,EA079,Circular,EA079-2,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +104393,Nh16,EA079,Circular,EA079-2,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104394,Nh17,EA079,Rectangular,EA079-5,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +104395,Nh18,EA079,Rectangular,EA079-5,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104396,Nh19,EA079,Rectangular,EA079-5,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +104397,Nh2,EA079,Rectangular,EA079-5,,dozier1954,,1950,EthnographicAtlas_1967_p117, +104398,Nh20,EA079,Rectangular,EA079-5,,gifford1931,,1860,EthnographicAtlas_1967_p117, +104399,Nh21,EA079,Rectangular,EA079-5,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104400,Nh22,EA079,Circular,EA079-2,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +104401,Nh23,EA079,Elliptical,EA079-3,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +104402,Nh24,EA079,Circular,EA079-2,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +104403,Nh25,EA079,Rectangular,EA079-5,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +104404,Nh26,EA079,?,EA079-NA,,,,,, +104405,Nh27,EA079,?,EA079-NA,,,,,, +104406,Nh3,EA079,Circular,EA079-2,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +104407,Nh4,EA079,Rectangular,EA079-5,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +104408,Nh5,EA079,Circular,EA079-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +104409,Nh6,EA079,Rectangular,EA079-5,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +104410,Nh7,EA079,Rectangular,EA079-5,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +104411,Nh8,EA079,Rectangular,EA079-5,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +104412,Nh9,EA079,Rectangular,EA079-5,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +104413,Ni1,EA079,Rectangular,EA079-5,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +104414,Ni2,EA079,Circular,EA079-2,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +104415,Ni3,EA079,Rectangular,EA079-5,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +104416,Ni4,EA079,Rectangular,EA079-5,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +104417,Ni5,EA079,Rectangular,EA079-5,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +104418,Ni6,EA079,Circular,EA079-2,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +104419,Ni7,EA079,Rectangular,EA079-5,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +104420,Ni8,EA079,?,EA079-NA,,,,,, +104421,Ni9,EA079,?,EA079-NA,,,,,, +104422,Nj1,EA079,Rectangular,EA079-5,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104423,Nj10,EA079,Rectangular,EA079-5,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104424,Nj11,EA079,?,EA079-NA,,,,,, +104425,Nj12,EA079,?,EA079-NA,,,,,, +104426,Nj13,EA079,?,EA079-NA,,,,,, +104427,Nj14,EA079,?,EA079-NA,,,,,, +104428,Nj2,EA079,Rectangular,EA079-5,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +104429,Nj3,EA079,Rectangular,EA079-5,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +104430,Nj4,EA079,Rectangular,EA079-5,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p121, +104431,Nj5,EA079,?,EA079-NA,,,,,, +104432,Nj6,EA079,Rectangular,EA079-5,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +104433,Nj7,EA079,Rectangular,EA079-5,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104434,Nj8,EA079,Rectangular,EA079-5,,foster1948,,1500,EthnographicAtlas_1967_p121, +104435,Nj9,EA079,Rectangular,EA079-5,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +104436,Sa1,EA079,Rectangular,EA079-5,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +104437,Sa10,EA079,Rectangular,EA079-5,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +104438,Sa11,EA079,?,EA079-NA,,,,,, +104439,Sa12,EA079,Rectangular,EA079-5,,stone1948,,1948,EthnographicAtlas_1967_p121, +104440,Sa13,EA079,Rectangular,EA079-5,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +104441,Sa14,EA079,?,EA079-NA,,,,,, +104442,Sa15,EA079,?,EA079-NA,,,,,, +104443,Sa16,EA079,?,EA079-NA,,,,,, +104444,Sa17,EA079,?,EA079-NA,,,,,, +104445,Sa2,EA079,?,EA079-NA,,,,,, +104446,Sa3,EA079,Rectangular,EA079-5,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +104447,Sa4,EA079,Circular,EA079-2,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +104448,Sa5,EA079,Circular,EA079-2,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +104449,Sa6,EA079,Rectangular,EA079-5,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +104450,Sa7,EA079,Rectangular,EA079-5,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +104451,Sa8,EA079,Rectangular,EA079-5,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +104452,Sa9,EA079,Rectangular,EA079-5,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +104453,Sb1,EA079,Rectangular,EA079-5,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +104454,Sb2,EA079,Circular,EA079-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +104455,Sb3,EA079,?,EA079-NA,,,,,, +104456,Sb4,EA079,Rectangular,EA079-5,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +104457,Sb5,EA079,Rectangular,EA079-5,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +104458,Sb6,EA079,Rectangular,EA079-5,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +104459,Sb7,EA079,Rectangular,EA079-5,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p121, +104460,Sb8,EA079,Circular,EA079-2,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +104461,Sb9,EA079,Rectangular,EA079-5,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +104462,Sc1,EA079,Rectangular,EA079-5,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +104463,Sc10,EA079,?,EA079-NA,,,,,, +104464,Sc11,EA079,Rectangular,EA079-5,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p121, +104465,Sc12,EA079,Rectangular,EA079-5,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +104466,Sc13,EA079,Circular,EA079-2,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +104467,Sc14,EA079,?,EA079-NA,,,,,, +104468,Sc15,EA079,Circular,EA079-2,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +104469,Sc16,EA079,Circular,EA079-2,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +104470,Sc17,EA079,Rectangular,EA079-5,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +104471,Sc18,EA079,Rectangular,EA079-5,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +104472,Sc2,EA079,Circular,EA079-2,,leedsnd,,1950,EthnographicAtlas_1967_p121, +104473,Sc3,EA079,Rectangular,EA079-5,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +104474,Sc4,EA079,Rectangular,EA079-5,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +104475,Sc5,EA079,Elliptical,EA079-3,,farabee1918,,1900,EthnographicAtlas_1967_p121, +104476,Sc6,EA079,Rectangular,EA079-5,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104477,Sc7,EA079,Rectangular,EA079-5,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +104478,Sc8,EA079,Circular,EA079-2,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +104479,Sc9,EA079,Rectangular,EA079-5,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +104480,Sd1,EA079,Rectangular,EA079-5,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104481,Sd2,EA079,Rectangular,EA079-5,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +104482,Sd3,EA079,Circular,EA079-2,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +104483,Sd4,EA079,Rectangular,EA079-5,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +104484,Sd5,EA079,Rectangular,EA079-5,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +104485,Sd6,EA079,Rectangular,EA079-5,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +104486,Sd7,EA079,Circular,EA079-2,,fock1963,,1950,EthnographicAtlas_1967_p121, +104487,Sd8,EA079,Rectangular,EA079-5,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +104488,Sd9,EA079,Circular,EA079-2,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104489,Se1,EA079,Rectangular,EA079-5,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +104490,Se10,EA079,Rectangular,EA079-5,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +104491,Se11,EA079,Rectangular,EA079-5,,prost1965,,1960,EthnographicAtlas_1967_p125, +104492,Se12,EA079,?,EA079-NA,,,,,, +104493,Se2,EA079,Elliptical,EA079-3,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +104494,Se3,EA079,Elliptical,EA079-3,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +104495,Se4,EA079,Elliptical,EA079-3,,fejos1943,,1940,EthnographicAtlas_1967_p121, +104496,Se5,EA079,Rectangular,EA079-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +104497,Se6,EA079,Rectangular,EA079-5,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +104498,Se7,EA079,Rectangular,EA079-5,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104499,Se8,EA079,Rectangular,EA079-5,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +104500,Se9,EA079,Elliptical,EA079-3,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +104501,Sf1,EA079,Rectangular,EA079-5,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +104502,Sf2,EA079,Rectangular,EA079-5,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +104503,Sf3,EA079,Rectangular,EA079-5,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +104504,Sf4,EA079,Rectangular,EA079-5,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +104505,Sf5,EA079,Rectangular,EA079-5,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +104506,Sf6,EA079,Rectangular,EA079-5,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +104507,Sf7,EA079,Rectangular,EA079-5,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +104508,Sf8,EA079,?,EA079-NA,,,,,, +104509,Sf9,EA079,?,EA079-NA,,,,,, +104510,Sg1,EA079,Circular,EA079-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +104511,Sg2,EA079,Rectangular,EA079-5,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104512,Sg3,EA079,Semicircular,EA079-1,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +104513,Sg4,EA079,Semicircular,EA079-1,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +104514,Sg5,EA079,Circular,EA079-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104515,Sh1,EA079,Circular,EA079-2,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +104516,Sh2,EA079,Rectangular,EA079-5,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +104517,Sh3,EA079,Rectangular,EA079-5,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +104518,Sh4,EA079,Rectangular,EA079-5,,oberg1949,,1940,EthnographicAtlas_1967_p125, +104519,Sh5,EA079,Circular,EA079-2,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +104520,Sh6,EA079,Rectangular,EA079-5,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +104521,Sh7,EA079,Rectangular,EA079-5,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +104522,Sh8,EA079,Rectangular,EA079-5,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +104523,Sh9,EA079,?,EA079-NA,Windbreaks of mats supported by sticks,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p125, +104524,Si1,EA079,Rectangular,EA079-5,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104525,Si10,EA079,Elliptical,EA079-3,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +104526,Si2,EA079,Elliptical,EA079-3,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +104527,Si3,EA079,Elliptical,EA079-3,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104528,Si4,EA079,Circular,EA079-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +104529,Si5,EA079,Rectangular,EA079-5,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +104530,Si6,EA079,Rectangular,EA079-5,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +104531,Si7,EA079,Elliptical,EA079-3,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +104532,Si8,EA079,Rectangular,EA079-5,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +104533,Si9,EA079,?,EA079-NA,,,,,, +104534,Sj1,EA079,Rectangular,EA079-5,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +104535,Sj10,EA079,Rectangular,EA079-5,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104536,Sj11,EA079,Circular,EA079-2,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +104537,Sj2,EA079,Rectangular,EA079-5,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +104538,Sj3,EA079,Rectangular,EA079-5,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +104539,Sj4,EA079,Rectangular,EA079-5,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +104540,Sj5,EA079,Circular,EA079-2,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +104541,Sj6,EA079,Rectangular,EA079-5,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104542,Sj7,EA079,Rectangular,EA079-5,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +104543,Sj8,EA079,Rectangular,EA079-5,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +104544,Sj9,EA079,Elliptical,EA079-3,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +104545,ch12,EA079,Rectangular,EA079-5,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +104546,ch13,EA079,Rectangular,EA079-5,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +104547,ch14,EA079,Rectangular,EA079-5,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +104548,ch15,EA079,Rectangular,EA079-5,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +104549,ch16,EA079,Rectangular,EA079-5,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +104550,ch17,EA079,Rectangular,EA079-5,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +104551,ch18,EA079,Rectangular,EA079-5,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +104552,ch19,EA079,Rectangular,EA079-5,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +104553,ch20,EA079,Rectangular,EA079-5,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +104554,ch21,EA079,Rectangular,EA079-5,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +104555,ch22,EA079,Rectangular,EA079-5,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +104556,ch23,EA079,Rectangular,EA079-5,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +104557,ch24,EA079,Rectangular,EA079-5,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +104558,ch25,EA079,Rectangular,EA079-5,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +104559,ch26,EA079,Rectangular,EA079-5,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +104560,ch27,EA079,Rectangular,EA079-5,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +104561,ch28,EA079,Rectangular,EA079-5,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +104562,ec12,EA079,Circular,EA079-2,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +104563,ec13,EA079,Rectangular,EA079-5,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +104564,ec14,EA079,Elliptical,EA079-3,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +104565,ec15,EA079,Rectangular,EA079-5,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +104566,ec16,EA079,Circular,EA079-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +104567,ec17,EA079,Rectangular,EA079-5,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +104568,ec18,EA079,Rectangular,EA079-5,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +104569,ec19,EA079,Circular,EA079-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +104570,ec20,EA079,Rectangular,EA079-5,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +104571,ec21,EA079,Rectangular,EA079-5,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +104572,Aa1,EA008,Small extended,EA008-7,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +104573,Aa2,EA008,"Nuclear, monogamous",EA008-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +104574,Aa3,EA008,"Nuclear, limited polygyny",EA008-2,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +104575,Aa4,EA008,"Polygyny, atypical cowives pattern",EA008-4,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +104576,Aa5,EA008,"Nuclear, limited polygyny",EA008-2,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +104577,Aa6,EA008,"Nuclear, limited polygyny",EA008-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +104578,Aa7,EA008,"Nuclear, limited polygyny",EA008-2,Polygyny is preferably sororal,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +104579,Aa8,EA008,"Nuclear, limited polygyny",EA008-2,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +104580,Aa9,EA008,Small extended,EA008-7,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +104581,Ab1,EA008,Small extended,EA008-7,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +104582,Ab10,EA008,Small extended,EA008-7,,hunter1936,,1936,EthnographicAtlas_1967_p62, +104583,Ab11,EA008,"Polygyny, typical cowives pattern",EA008-5,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +104584,Ab12,EA008,Small extended,EA008-7,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +104585,Ab13,EA008,"Polygyny, atypical cowives pattern",EA008-4,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +104586,Ab14,EA008,"Polygyny, typical cowives pattern",EA008-5,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +104587,Ab15,EA008,"Polygyny, typical cowives pattern",EA008-5,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +104588,Ab16,EA008,Small extended,EA008-7,,earthy1933,,1930,EthnographicAtlas_1967_p62, +104589,Ab17,EA008,"Polygyny, typical cowives pattern",EA008-5,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +104590,Ab18,EA008,"Polygyny, atypical cowives pattern",EA008-4,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +104591,Ab19,EA008,"Polygyny, typical cowives pattern",EA008-5,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +104592,Ab2,EA008,Large extended,EA008-8,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +104593,Ab20,EA008,"Polygyny, typical cowives pattern",EA008-5,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +104594,Ab21a,EA008,Small extended,EA008-7,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +104595,Ab21b,EA008,Small extended,EA008-7,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +104596,Ab22,EA008,?,EA008-NA,,,,,, +104597,Ab3,EA008,"Polygyny, typical cowives pattern",EA008-5,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +104598,Ab4,EA008,Large extended,EA008-8,,junod1927,,1920,EthnographicAtlas_1967_p62, +104599,Ab5,EA008,"Polygyny, typical cowives pattern",EA008-5,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +104600,Ab6,EA008,Large extended,EA008-8,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +104601,Ab7,EA008,Small extended,EA008-7,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +104602,Ab8,EA008,"Polygyny, typical cowives pattern",EA008-5,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +104603,Ab9,EA008,"Polygyny, typical cowives pattern",EA008-5,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +104604,Ac1,EA008,Small extended,EA008-7,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +104605,Ac10,EA008,"Polygyny, typical cowives pattern",EA008-5,"But families are reported to be loosely aggregated around ""a sororal extended family core""",bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +104606,Ac11,EA008,Small extended,EA008-7,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +104607,Ac12,EA008,"Nuclear, limited polygyny",EA008-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +104608,Ac13,EA008,"Nuclear, limited polygyny",EA008-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +104609,Ac14,EA008,"Nuclear, limited polygyny",EA008-2,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +104610,Ac15,EA008,"Polygyny, typical cowives pattern",EA008-5,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +104611,Ac16,EA008,"Polygyny, typical cowives pattern",EA008-5,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +104612,Ac17,EA008,"Polygyny, typical cowives pattern",EA008-5,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +104613,Ac18,EA008,Small extended,EA008-7,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +104614,Ac19,EA008,?,EA008-NA,,,,,, +104615,Ac2,EA008,"Polygyny, typical cowives pattern",EA008-5,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +104616,Ac20,EA008,"Polygyny, typical cowives pattern",EA008-5,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +104617,Ac21,EA008,"Polygyny, typical cowives pattern",EA008-5,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +104618,Ac22,EA008,"Polygyny, typical cowives pattern",EA008-5,,mertens1935,,1930,EthnographicAtlas_1967_p62, +104619,Ac23,EA008,"Polygyny, typical cowives pattern",EA008-5,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +104620,Ac24,EA008,"Polygyny, typical cowives pattern",EA008-5,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +104621,Ac25,EA008,"Polygyny, typical cowives pattern",EA008-5,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +104622,Ac26,EA008,"Polygyny, typical cowives pattern",EA008-5,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +104623,Ac27,EA008,"Polygyny, typical cowives pattern",EA008-5,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +104624,Ac28,EA008,"Polygyny, typical cowives pattern",EA008-5,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +104625,Ac29,EA008,Small extended,EA008-7,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +104626,Ac3,EA008,"Polygyny, atypical cowives pattern",EA008-4,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +104627,Ac30,EA008,Small extended,EA008-7,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +104628,Ac31,EA008,"Polygyny, typical cowives pattern",EA008-5,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +104629,Ac32,EA008,"Polygyny, typical cowives pattern",EA008-5,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +104630,Ac33,EA008,"Nuclear, limited polygyny",EA008-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +104631,Ac34,EA008,"Nuclear, limited polygyny",EA008-2,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +104632,Ac35,EA008,"Nuclear, limited polygyny",EA008-2,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +104633,Ac36,EA008,"Polygyny, atypical cowives pattern",EA008-4,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +104634,Ac37,EA008,"Polygyny, typical cowives pattern",EA008-5,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +104635,Ac38,EA008,"Polygyny, typical cowives pattern",EA008-5,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +104636,Ac39,EA008,Small extended,EA008-7,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +104637,Ac4,EA008,Small extended,EA008-7,"As an alternative to a high bride-price and avunculocal residence, a very small bride-price may be paid; in which case residence is usually alternately uxorilocal and avunculocal for periods of 5-6 years each",tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +104638,Ac40,EA008,"Polygyny, typical cowives pattern",EA008-5,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +104639,Ac41,EA008,Small extended,EA008-7,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +104640,Ac42,EA008,Small extended,EA008-7,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +104641,Ac43,EA008,"Polygyny, typical cowives pattern",EA008-5,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +104642,Ac5,EA008,"Nuclear, limited polygyny",EA008-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +104643,Ac6,EA008,"Polygyny, typical cowives pattern",EA008-5,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +104644,Ac7,EA008,Large extended,EA008-8,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +104645,Ac8,EA008,"Polygyny, typical cowives pattern",EA008-5,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +104646,Ac9,EA008,"Polygyny, typical cowives pattern",EA008-5,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +104647,Ad1,EA008,"Nuclear, monogamous",EA008-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +104648,Ad10,EA008,"Polygyny, typical cowives pattern",EA008-5,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +104649,Ad11,EA008,"Polygyny, typical cowives pattern",EA008-5,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +104650,Ad12,EA008,"Polygyny, typical cowives pattern",EA008-5,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +104651,Ad13,EA008,Large extended,EA008-8,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +104652,Ad14,EA008,"Nuclear, limited polygyny",EA008-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +104653,Ad15,EA008,"Polygyny, typical cowives pattern",EA008-5,"Or perhaps code ""7"", i.e., small extended families (made up of polygynous units with same co-wives pattern)",chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +104654,Ad16,EA008,"Polygyny, atypical cowives pattern",EA008-4,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +104655,Ad17,EA008,"Polygyny, typical cowives pattern",EA008-5,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +104656,Ad18,EA008,"Polygyny, typical cowives pattern",EA008-5,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +104657,Ad19,EA008,"Polygyny, typical cowives pattern",EA008-5,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +104658,Ad2,EA008,"Polygyny, typical cowives pattern",EA008-5,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +104659,Ad20,EA008,"Polygyny, typical cowives pattern",EA008-5,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +104660,Ad21,EA008,"Polygyny, typical cowives pattern",EA008-5,,maurice193538,,1930,EthnographicAtlas_1967_p66, +104661,Ad22,EA008,"Polygyny, typical cowives pattern",EA008-5,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +104662,Ad23,EA008,Small extended,EA008-7,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +104663,Ad24,EA008,Small extended,EA008-7,Extended families are inferred from the large tembe dwellings,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +104664,Ad25,EA008,Minimal extended,EA008-6,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +104665,Ad26,EA008,Small extended,EA008-7,,sick1916,,1910,EthnographicAtlas_1967_p66, +104666,Ad27,EA008,"Polygyny, typical cowives pattern",EA008-5,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +104667,Ad28,EA008,"Polygyny, typical cowives pattern",EA008-5,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +104668,Ad29,EA008,"Polygyny, typical cowives pattern",EA008-5,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +104669,Ad3,EA008,"Polygyny, typical cowives pattern",EA008-5,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +104670,Ad30,EA008,"Polygyny, typical cowives pattern",EA008-5,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +104671,Ad31,EA008,Large extended,EA008-8,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +104672,Ad32,EA008,Large extended,EA008-8,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +104673,Ad33,EA008,"Nuclear, limited polygyny",EA008-2,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +104674,Ad34,EA008,Large extended,EA008-8,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +104675,Ad35,EA008,"Polygyny, typical cowives pattern",EA008-5,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +104676,Ad36,EA008,"Polygyny, typical cowives pattern",EA008-5,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +104677,Ad37,EA008,Small extended,EA008-7,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +104678,Ad38,EA008,"Nuclear, limited polygyny",EA008-2,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +104679,Ad39,EA008,"Nuclear, limited polygyny",EA008-2,,gray1963,,1950,EthnographicAtlas_1967_p66, +104680,Ad4,EA008,"Polygyny, typical cowives pattern",EA008-5,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +104681,Ad40,EA008,Small extended,EA008-7,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +104682,Ad41,EA008,"Nuclear, limited polygyny",EA008-2,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +104683,Ad42,EA008,"Polygyny, typical cowives pattern",EA008-5,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +104684,Ad43,EA008,"Polygyny, typical cowives pattern",EA008-5,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +104685,Ad44,EA008,"Polygyny, typical cowives pattern",EA008-5,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +104686,Ad45,EA008,"Polygyny, typical cowives pattern",EA008-5,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +104687,Ad46,EA008,"Polygyny, typical cowives pattern",EA008-5,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +104688,Ad47,EA008,"Polygyny, typical cowives pattern",EA008-5,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +104689,Ad48,EA008,Small extended,EA008-7,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +104690,Ad49,EA008,"Polygyny, typical cowives pattern",EA008-5,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +104691,Ad5,EA008,Small extended,EA008-7,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +104692,Ad50,EA008,"Nuclear, limited polygyny",EA008-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +104693,Ad51,EA008,"Nuclear, limited polygyny",EA008-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +104694,Ad6,EA008,"Polygyny, typical cowives pattern",EA008-5,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +104695,Ad7,EA008,"Polygyny, typical cowives pattern",EA008-5,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +104696,Ad8,EA008,Small extended,EA008-7,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +104697,Ad9,EA008,"Polygyny, typical cowives pattern",EA008-5,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +104698,Ae1,EA008,"Polygyny, typical cowives pattern",EA008-5,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +104699,Ae10,EA008,"Polygyny, typical cowives pattern",EA008-5,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +104700,Ae11,EA008,"Polygyny, typical cowives pattern",EA008-5,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +104701,Ae12,EA008,"Polygyny, typical cowives pattern",EA008-5,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +104702,Ae13,EA008,"Polygyny, typical cowives pattern",EA008-5,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +104703,Ae14,EA008,Small extended,EA008-7,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +104704,Ae15,EA008,"Polygyny, typical cowives pattern",EA008-5,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +104705,Ae16,EA008,"Polygyny, typical cowives pattern",EA008-5,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +104706,Ae17,EA008,"Polygyny, typical cowives pattern",EA008-5,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +104707,Ae18,EA008,"Polygyny, typical cowives pattern",EA008-5,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +104708,Ae19,EA008,"Polygyny, typical cowives pattern",EA008-5,"Extended families are possibly present, though not specifically reported",grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +104709,Ae2,EA008,"Polygyny, typical cowives pattern",EA008-5,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +104710,Ae20,EA008,Small extended,EA008-7,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +104711,Ae21,EA008,Small extended,EA008-7,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +104712,Ae22,EA008,Small extended,EA008-7,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +104713,Ae23,EA008,Large extended,EA008-8,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +104714,Ae24,EA008,Large extended,EA008-8,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +104715,Ae25,EA008,"Polygyny, typical cowives pattern",EA008-5,"Extended families may be present, though not specifically reported",heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +104716,Ae26,EA008,"Polygyny, typical cowives pattern",EA008-5,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +104717,Ae27,EA008,"Polygyny, typical cowives pattern",EA008-5,Entry follows Smith; Bertrand implies extended families,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +104718,Ae28,EA008,Large extended,EA008-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +104719,Ae29,EA008,Large extended,EA008-8,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +104720,Ae3,EA008,Small extended,EA008-7,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +104721,Ae30,EA008,"Polygyny, typical cowives pattern",EA008-5,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +104722,Ae31,EA008,"Polygyny, typical cowives pattern",EA008-5,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +104723,Ae32,EA008,"Polygyny, typical cowives pattern",EA008-5,But extended families possibly occur,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +104724,Ae33,EA008,Large extended,EA008-8,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +104725,Ae34,EA008,"Polygyny, typical cowives pattern",EA008-5,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +104726,Ae35,EA008,"Nuclear, limited polygyny",EA008-2,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +104727,Ae36,EA008,Large extended,EA008-8,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +104728,Ae37,EA008,"Polygyny, typical cowives pattern",EA008-5,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +104729,Ae38,EA008,Large extended,EA008-8,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +104730,Ae39,EA008,Large extended,EA008-8,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +104731,Ae4,EA008,Large extended,EA008-8,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +104732,Ae40,EA008,Small extended,EA008-7,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +104733,Ae41,EA008,"Nuclear, limited polygyny",EA008-2,,andersson1953,,1940,EthnographicAtlas_1967_p66, +104734,Ae42,EA008,"Polygyny, typical cowives pattern",EA008-5,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +104735,Ae43,EA008,"Polygyny, typical cowives pattern",EA008-5,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +104736,Ae44,EA008,Large extended,EA008-8,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +104737,Ae45,EA008,"Polygyny, typical cowives pattern",EA008-5,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +104738,Ae46,EA008,Large extended,EA008-8,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +104739,Ae47,EA008,"Polygyny, typical cowives pattern",EA008-5,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +104740,Ae48,EA008,"Polygyny, typical cowives pattern",EA008-5,"Sometimes code ""7"", i.e., small extended families (made up of polygynous units with same co-wives pattern)",mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +104741,Ae49,EA008,Small extended,EA008-7,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +104742,Ae5,EA008,"Polygyny, typical cowives pattern",EA008-5,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +104743,Ae50,EA008,Small extended,EA008-7,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +104744,Ae51,EA008,"Polygyny, typical cowives pattern",EA008-5,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +104745,Ae52,EA008,Small extended,EA008-7,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +104746,Ae53,EA008,"Polygyny, typical cowives pattern",EA008-5,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +104747,Ae54,EA008,Small extended,EA008-7,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +104748,Ae55,EA008,Small extended,EA008-7,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +104749,Ae56,EA008,Small extended,EA008-7,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +104750,Ae57,EA008,Small extended,EA008-7,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +104751,Ae58,EA008,"Polygyny, typical cowives pattern",EA008-5,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +104752,Ae59,EA008,"Polygyny, typical cowives pattern",EA008-5,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +104753,Ae6,EA008,"Polygyny, typical cowives pattern",EA008-5,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +104754,Ae7,EA008,Small extended,EA008-7,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +104755,Ae8,EA008,"Polygyny, typical cowives pattern",EA008-5,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +104756,Ae9,EA008,Small extended,EA008-7,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +104757,Af1,EA008,"Polygyny, typical cowives pattern",EA008-5,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +104758,Af10,EA008,Large extended,EA008-8,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +104759,Af11,EA008,"Polygyny, typical cowives pattern",EA008-5,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +104760,Af12,EA008,Large extended,EA008-8,But the group occupying a compound is a nuclear or polygynous family,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +104761,Af13,EA008,Large extended,EA008-8,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +104762,Af14,EA008,Small extended,EA008-7,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +104763,Af15,EA008,"Polygyny, atypical cowives pattern",EA008-4,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +104764,Af16,EA008,Large extended,EA008-8,"Entry follows Ruel and Schuster; Staschewski reports code ""5"", indendent polygynous units (with non-sororal co-wives in separate dwellings)",ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +104765,Af17,EA008,Large extended,EA008-8,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +104766,Af18,EA008,"Polygyny, typical cowives pattern",EA008-5,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +104767,Af19,EA008,Large extended,EA008-8,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +104768,Af2,EA008,Large extended,EA008-8,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +104769,Af20,EA008,Small extended,EA008-7,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +104770,Af21,EA008,Large extended,EA008-8,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +104771,Af22,EA008,"Polygyny, atypical cowives pattern",EA008-4,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +104772,Af23,EA008,Small extended,EA008-7,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +104773,Af24,EA008,Minimal extended,EA008-6,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +104774,Af25,EA008,Large extended,EA008-8,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +104775,Af26,EA008,Large extended,EA008-8,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +104776,Af27,EA008,"Polygyny, typical cowives pattern",EA008-5,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +104777,Af28,EA008,Large extended,EA008-8,"In Murdock (1966a) this was coded this as ""polygynous, usual co-wives pattern"" (code ""5""), with the comment ""Entry follows an earlier report by Temple; Gunn and Conant report extended families (code ""8"") made up of polygynous units of non-sororal co-wives in separate dwellings (EA009 code ""5"")"". In the EA (Murdock 1967), the codes for EA008 and EA009 changed to the present codes.",gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +104778,Af29,EA008,Small extended,EA008-7,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +104779,Af3,EA008,Small extended,EA008-7,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +104780,Af30,EA008,Large extended,EA008-8,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +104781,Af31,EA008,Small extended,EA008-7,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +104782,Af32,EA008,Large extended,EA008-8,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104783,Af33,EA008,Large extended,EA008-8,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104784,Af34,EA008,Large extended,EA008-8,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104785,Af35,EA008,"Polygyny, atypical cowives pattern",EA008-4,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +104786,Af36,EA008,Large extended,EA008-8,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +104787,Af37,EA008,Small extended,EA008-7,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +104788,Af38,EA008,Large extended,EA008-8,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +104789,Af39,EA008,Small extended,EA008-7,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +104790,Af4,EA008,Small extended,EA008-7,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +104791,Af40,EA008,"Polygyny, atypical cowives pattern",EA008-4,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +104792,Af41,EA008,"Polygyny, atypical cowives pattern",EA008-4,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +104793,Af42,EA008,Small extended,EA008-7,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +104794,Af43,EA008,Large extended,EA008-8,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +104795,Af44,EA008,Small extended,EA008-7,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +104796,Af45,EA008,Large extended,EA008-8,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +104797,Af46,EA008,Small extended,EA008-7,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +104798,Af47,EA008,"Polygyny, typical cowives pattern",EA008-5,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +104799,Af48,EA008,"Polygyny, typical cowives pattern",EA008-5,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +104800,Af49,EA008,"Polygyny, typical cowives pattern",EA008-5,,schwab1947,,1940,EthnographicAtlas_1967_p70, +104801,Af5,EA008,Small extended,EA008-7,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +104802,Af50,EA008,Large extended,EA008-8,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +104803,Af51,EA008,Small extended,EA008-7,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +104804,Af52,EA008,Large extended,EA008-8,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +104805,Af53,EA008,Large extended,EA008-8,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +104806,Af54,EA008,"Polygyny, typical cowives pattern",EA008-5,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +104807,Af55,EA008,Small extended,EA008-7,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +104808,Af56,EA008,"Polygyny, typical cowives pattern",EA008-5,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +104809,Af57,EA008,Small extended,EA008-7,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +104810,Af58,EA008,Large extended,EA008-8,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +104811,Af6,EA008,Large extended,EA008-8,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +104812,Af7,EA008,Small extended,EA008-7,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +104813,Af8,EA008,Large extended,EA008-8,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +104814,Af9,EA008,Large extended,EA008-8,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +104815,Ag1,EA008,Large extended,EA008-8,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +104816,Ag10,EA008,"Polygyny, typical cowives pattern",EA008-5,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +104817,Ag11,EA008,"Polygyny, typical cowives pattern",EA008-5,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +104818,Ag12,EA008,Small extended,EA008-7,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +104819,Ag13,EA008,Small extended,EA008-7,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +104820,Ag14,EA008,Small extended,EA008-7,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +104821,Ag15,EA008,Large extended,EA008-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +104822,Ag16,EA008,Small extended,EA008-7,"Entry follows Nogueira; Bernatzik reports code ""1"", independent nuclear families, monogamous",bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +104823,Ag17,EA008,"Polygyny, atypical cowives pattern",EA008-4,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +104824,Ag18,EA008,"Nuclear, limited polygyny",EA008-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +104825,Ag19,EA008,Large extended,EA008-8,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +104826,Ag2,EA008,Large extended,EA008-8,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +104827,Ag20,EA008,Large extended,EA008-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +104828,Ag21,EA008,"Nuclear, limited polygyny",EA008-2,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +104829,Ag22,EA008,Large extended,EA008-8,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +104830,Ag23,EA008,Large extended,EA008-8,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +104831,Ag24,EA008,Large extended,EA008-8,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +104832,Ag25,EA008,Small extended,EA008-7,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +104833,Ag26,EA008,Large extended,EA008-8,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +104834,Ag27,EA008,Large extended,EA008-8,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +104835,Ag28,EA008,Large extended,EA008-8,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +104836,Ag29,EA008,Large extended,EA008-8,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +104837,Ag3,EA008,Large extended,EA008-8,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +104838,Ag30,EA008,Large extended,EA008-8,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +104839,Ag31,EA008,Large extended,EA008-8,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +104840,Ag32,EA008,Large extended,EA008-8,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +104841,Ag33,EA008,Small extended,EA008-7,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +104842,Ag34,EA008,Large extended,EA008-8,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +104843,Ag35,EA008,Large extended,EA008-8,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +104844,Ag36,EA008,Large extended,EA008-8,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +104845,Ag37,EA008,Large extended,EA008-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +104846,Ag38,EA008,Large extended,EA008-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +104847,Ag39,EA008,Large extended,EA008-8,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +104848,Ag4,EA008,Small extended,EA008-7,Or fraternal joint families,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +104849,Ag40,EA008,Large extended,EA008-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +104850,Ag41,EA008,Large extended,EA008-8,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +104851,Ag42,EA008,Large extended,EA008-8,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +104852,Ag43,EA008,Large extended,EA008-8,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +104853,Ag44,EA008,"Polygyny, atypical cowives pattern",EA008-4,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +104854,Ag45,EA008,Small extended,EA008-7,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +104855,Ag46,EA008,Large extended,EA008-8,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +104856,Ag47,EA008,"Polygyny, typical cowives pattern",EA008-5,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +104857,Ag48,EA008,Large extended,EA008-8,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +104858,Ag49,EA008,"Polygyny, typical cowives pattern",EA008-5,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +104859,Ag5,EA008,Large extended,EA008-8,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +104860,Ag50,EA008,Large extended,EA008-8,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +104861,Ag51,EA008,Small extended,EA008-7,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +104862,Ag52,EA008,Large extended,EA008-8,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +104863,Ag53,EA008,"Polygyny, atypical cowives pattern",EA008-4,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +104864,Ag54,EA008,Small extended,EA008-7,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +104865,Ag6,EA008,"Polygyny, typical cowives pattern",EA008-5,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +104866,Ag7,EA008,Large extended,EA008-8,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +104867,Ag8,EA008,"Nuclear, limited polygyny",EA008-2,But earlier sources report extended families,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +104868,Ag9,EA008,Large extended,EA008-8,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +104869,Ah1,EA008,Small extended,EA008-7,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +104870,Ah10,EA008,Large extended,EA008-8,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +104871,Ah11,EA008,Large extended,EA008-8,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +104872,Ah12,EA008,Large extended,EA008-8,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +104873,Ah13,EA008,Small extended,EA008-7,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +104874,Ah14,EA008,"Polygyny, typical cowives pattern",EA008-5,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +104875,Ah15,EA008,Small extended,EA008-7,"Entry follows Harris; Gunn and Conant report code ""5"", indendent polygynous units (with non-sororal co-wives in separate dwellings)",gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +104876,Ah16,EA008,"Polygyny, typical cowives pattern",EA008-5,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +104877,Ah17,EA008,Small extended,EA008-7,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +104878,Ah18,EA008,"Polygyny, typical cowives pattern",EA008-5,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +104879,Ah19,EA008,Small extended,EA008-7,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +104880,Ah2,EA008,Large extended,EA008-8,,meek1931a,,1920,EthnographicAtlas_1967_p74, +104881,Ah20,EA008,Small extended,EA008-7,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +104882,Ah21,EA008,Large extended,EA008-8,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +104883,Ah22,EA008,"Polygyny, typical cowives pattern",EA008-5,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +104884,Ah23,EA008,Large extended,EA008-8,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +104885,Ah24,EA008,?,EA008-NA,,,,,, +104886,Ah25,EA008,Large extended,EA008-8,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +104887,Ah26,EA008,Large extended,EA008-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +104888,Ah27,EA008,?,EA008-NA,,,,,, +104889,Ah28,EA008,Large extended,EA008-8,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +104890,Ah29,EA008,Large extended,EA008-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +104891,Ah3,EA008,Large extended,EA008-8,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +104892,Ah30,EA008,Large extended,EA008-8,,meek1931b,,1920,EthnographicAtlas_1967_p74, +104893,Ah31,EA008,Large extended,EA008-8,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +104894,Ah32,EA008,"Polygyny, typical cowives pattern",EA008-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +104895,Ah33,EA008,Small extended,EA008-7,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +104896,Ah34,EA008,"Polygyny, typical cowives pattern",EA008-5,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +104897,Ah35,EA008,"Polygyny, typical cowives pattern",EA008-5,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +104898,Ah36,EA008,Small extended,EA008-7,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +104899,Ah37,EA008,Large extended,EA008-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +104900,Ah38,EA008,"Polygyny, typical cowives pattern",EA008-5,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +104901,Ah39,EA008,"Polygyny, typical cowives pattern",EA008-5,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +104902,Ah4,EA008,Large extended,EA008-8,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74,"Assume Murdock comment refers to Col 12, not Col 14 as stated in Gray (1999)" +104903,Ah5,EA008,Small extended,EA008-7,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +104904,Ah6,EA008,Large extended,EA008-8,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +104905,Ah7,EA008,Small extended,EA008-7,"Or alternatively code ""6"", minimal (stem) extended families with occasional polygyny",hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +104906,Ah8,EA008,Small extended,EA008-7,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +104907,Ah9,EA008,Large extended,EA008-8,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +104908,Ai1,EA008,"Polygyny, atypical cowives pattern",EA008-4,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +104909,Ai10,EA008,"Polygyny, typical cowives pattern",EA008-5,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +104910,Ai11,EA008,"Polygyny, typical cowives pattern",EA008-5,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +104911,Ai12,EA008,"Polygyny, typical cowives pattern",EA008-5,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +104912,Ai13,EA008,Large extended,EA008-8,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +104913,Ai14,EA008,Small extended,EA008-7,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +104914,Ai15,EA008,"Polygyny, typical cowives pattern",EA008-5,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +104915,Ai16,EA008,"Polygyny, typical cowives pattern",EA008-5,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +104916,Ai17,EA008,"Polygyny, typical cowives pattern",EA008-5,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +104917,Ai18,EA008,Small extended,EA008-7,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +104918,Ai19,EA008,"Polygyny, typical cowives pattern",EA008-5,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +104919,Ai2,EA008,"Nuclear, limited polygyny",EA008-2,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +104920,Ai20,EA008,Minimal extended,EA008-6,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +104921,Ai21,EA008,"Polygyny, typical cowives pattern",EA008-5,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +104922,Ai22,EA008,"Polygyny, typical cowives pattern",EA008-5,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +104923,Ai23,EA008,"Polygyny, typical cowives pattern",EA008-5,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +104924,Ai24,EA008,"Polygyny, typical cowives pattern",EA008-5,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +104925,Ai25,EA008,"Polygyny, typical cowives pattern",EA008-5,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +104926,Ai26,EA008,"Polygyny, typical cowives pattern",EA008-5,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +104927,Ai27,EA008,"Polygyny, typical cowives pattern",EA008-5,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +104928,Ai28,EA008,"Polygyny, typical cowives pattern",EA008-5,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +104929,Ai29,EA008,"Nuclear, limited polygyny",EA008-2,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +104930,Ai3,EA008,"Polygyny, typical cowives pattern",EA008-5,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +104931,Ai30,EA008,"Polygyny, typical cowives pattern",EA008-5,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +104932,Ai31,EA008,"Nuclear, limited polygyny",EA008-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +104933,Ai32,EA008,Large extended,EA008-8,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +104934,Ai33,EA008,Large extended,EA008-8,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +104935,Ai34,EA008,"Polygyny, typical cowives pattern",EA008-5,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +104936,Ai35,EA008,"Polygyny, typical cowives pattern",EA008-5,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +104937,Ai36,EA008,"Polygyny, typical cowives pattern",EA008-5,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +104938,Ai37,EA008,Large extended,EA008-8,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +104939,Ai38,EA008,"Nuclear, limited polygyny",EA008-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +104940,Ai39,EA008,"Nuclear, limited polygyny",EA008-2,,nadel1947,,1940,EthnographicAtlas_1967_p74, +104941,Ai4,EA008,Small extended,EA008-7,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +104942,Ai40,EA008,Large extended,EA008-8,,nadel1947,,1940,EthnographicAtlas_1967_p74, +104943,Ai41,EA008,"Polygyny, typical cowives pattern",EA008-5,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +104944,Ai42,EA008,"Nuclear, limited polygyny",EA008-2,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +104945,Ai43,EA008,"Polygyny, typical cowives pattern",EA008-5,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +104946,Ai44,EA008,"Polygyny, typical cowives pattern",EA008-5,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +104947,Ai45,EA008,"Polygyny, typical cowives pattern",EA008-5,But a group of brothers with their families form a hamlet,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +104948,Ai46,EA008,"Nuclear, limited polygyny",EA008-2,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +104949,Ai47,EA008,"Polygyny, typical cowives pattern",EA008-5,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +104950,Ai5,EA008,"Polygyny, typical cowives pattern",EA008-5,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +104951,Ai6,EA008,"Polygyny, typical cowives pattern",EA008-5,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +104952,Ai7,EA008,"Polygyny, typical cowives pattern",EA008-5,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +104953,Ai8,EA008,"Polygyny, typical cowives pattern",EA008-5,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +104954,Ai9,EA008,Small extended,EA008-7,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +104955,Aj1,EA008,"Polygyny, typical cowives pattern",EA008-5,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +104956,Aj10,EA008,"Polygyny, typical cowives pattern",EA008-5,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +104957,Aj11,EA008,Large extended,EA008-8,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +104958,Aj12,EA008,"Polygyny, typical cowives pattern",EA008-5,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +104959,Aj13,EA008,"Polygyny, typical cowives pattern",EA008-5,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +104960,Aj14,EA008,"Polygyny, typical cowives pattern",EA008-5,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +104961,Aj15,EA008,"Polygyny, typical cowives pattern",EA008-5,"Or possibly code ""7"", i.e., small extended families (made up of polygynous units with same co-wives pattern)",huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +104962,Aj16,EA008,"Nuclear, limited polygyny",EA008-2,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +104963,Aj17,EA008,Small extended,EA008-7,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +104964,Aj18,EA008,Minimal extended,EA008-6,,jensen1959,,1950,EthnographicAtlas_1967_p78, +104965,Aj19,EA008,"Polygyny, typical cowives pattern",EA008-5,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +104966,Aj2,EA008,"Polygyny, typical cowives pattern",EA008-5,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +104967,Aj20,EA008,"Polygyny, typical cowives pattern",EA008-5,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +104968,Aj21,EA008,Large extended,EA008-8,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +104969,Aj22,EA008,?,EA008-NA,,,,,, +104970,Aj23,EA008,"Polygyny, typical cowives pattern",EA008-5,But the band is essentially an extended family,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +104971,Aj24,EA008,"Polygyny, typical cowives pattern",EA008-5,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +104972,Aj25,EA008,"Polygyny, typical cowives pattern",EA008-5,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +104973,Aj26,EA008,"Polygyny, typical cowives pattern",EA008-5,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +104974,Aj27,EA008,"Polygyny, typical cowives pattern",EA008-5,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +104975,Aj28,EA008,"Polygyny, typical cowives pattern",EA008-5,But extended families tend to form units within a camp,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +104976,Aj29,EA008,"Polygyny, typical cowives pattern",EA008-5,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +104977,Aj3,EA008,Small extended,EA008-7,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +104978,Aj30,EA008,Small extended,EA008-7,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +104979,Aj31,EA008,?,EA008-NA,,,,,, +104980,Aj4,EA008,Minimal extended,EA008-6,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +104981,Aj5,EA008,Small extended,EA008-7,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +104982,Aj6,EA008,Small extended,EA008-7,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +104983,Aj7,EA008,"Nuclear, limited polygyny",EA008-2,"Formerly code ""5"", indendent polygynous units (with non-sororal co-wives in separate dwellings)",hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +104984,Aj8,EA008,"Polygyny, typical cowives pattern",EA008-5,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +104985,Aj9,EA008,"Polygyny, typical cowives pattern",EA008-5,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +104986,Ca1,EA008,Minimal extended,EA008-6,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +104987,Ca10,EA008,Small extended,EA008-7,"Entry follows Lewis; Paulitschke reports code ""5"", indendent polygynous units (with non-sororal co-wives in separate dwellings)",hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +104988,Ca11,EA008,"Polygyny, typical cowives pattern",EA008-5,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +104989,Ca12,EA008,"Nuclear, limited polygyny",EA008-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +104990,Ca13,EA008,"Nuclear, limited polygyny",EA008-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +104991,Ca14,EA008,"Polygyny, typical cowives pattern",EA008-5,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +104992,Ca15,EA008,"Polygyny, typical cowives pattern",EA008-5,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +104993,Ca16,EA008,"Polygyny, typical cowives pattern",EA008-5,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +104994,Ca17,EA008,"Polygyny, typical cowives pattern",EA008-5,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +104995,Ca18,EA008,"Polygyny, typical cowives pattern",EA008-5,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +104996,Ca19,EA008,Large extended,EA008-8,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +104997,Ca2,EA008,Small extended,EA008-7,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +104998,Ca20,EA008,"Polygyny, typical cowives pattern",EA008-5,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +104999,Ca21,EA008,Large extended,EA008-8,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +105000,Ca22,EA008,"Polygyny, typical cowives pattern",EA008-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +105001,Ca23,EA008,"Polygyny, typical cowives pattern",EA008-5,,jensen1959,,1950,EthnographicAtlas_1967_p78, +105002,Ca24,EA008,"Polygyny, typical cowives pattern",EA008-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +105003,Ca25,EA008,"Polygyny, typical cowives pattern",EA008-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +105004,Ca26,EA008,?,EA008-NA,,,,,, +105005,Ca27,EA008,"Nuclear, limited polygyny",EA008-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +105006,Ca28,EA008,"Nuclear, limited polygyny",EA008-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +105007,Ca29,EA008,"Nuclear, limited polygyny",EA008-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +105008,Ca3,EA008,"Nuclear, monogamous",EA008-1,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +105009,Ca30,EA008,"Polygyny, atypical cowives pattern",EA008-4,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +105010,Ca31,EA008,"Nuclear, monogamous",EA008-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +105011,Ca32,EA008,"Polygyny, typical cowives pattern",EA008-5,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +105012,Ca33,EA008,"Nuclear, limited polygyny",EA008-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +105013,Ca34,EA008,"Nuclear, limited polygyny",EA008-2,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +105014,Ca35,EA008,"Nuclear, limited polygyny",EA008-2,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +105015,Ca36,EA008,Small extended,EA008-7,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +105016,Ca37,EA008,"Nuclear, limited polygyny",EA008-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +105017,Ca38,EA008,"Nuclear, limited polygyny",EA008-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +105018,Ca39,EA008,Small extended,EA008-7,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +105019,Ca4,EA008,"Nuclear, limited polygyny",EA008-2,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +105020,Ca40,EA008,"Polygyny, atypical cowives pattern",EA008-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +105021,Ca41,EA008,"Nuclear, limited polygyny",EA008-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +105022,Ca42,EA008,"Polygyny, atypical cowives pattern",EA008-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +105023,Ca43,EA008,?,EA008-NA,,,,,, +105024,Ca5,EA008,"Nuclear, limited polygyny",EA008-2,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +105025,Ca6,EA008,Small extended,EA008-7,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +105026,Ca7,EA008,Large extended,EA008-8,The extended family occupies a hamlet,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +105027,Ca8,EA008,Small extended,EA008-7,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p78, +105028,Ca9,EA008,"Polygyny, typical cowives pattern",EA008-5,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +105029,Cb1,EA008,Large extended,EA008-8,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +105030,Cb10,EA008,Small extended,EA008-7,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +105031,Cb11,EA008,"Polygyny, typical cowives pattern",EA008-5,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +105032,Cb12,EA008,?,EA008-NA,,,,,, +105033,Cb13,EA008,"Polygyny, atypical cowives pattern",EA008-4,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +105034,Cb14,EA008,"Polygyny, atypical cowives pattern",EA008-4,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +105035,Cb15,EA008,Small extended,EA008-7,The extended family is the camp group,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +105036,Cb16,EA008,"Polygyny, atypical cowives pattern",EA008-4,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +105037,Cb17,EA008,Large extended,EA008-8,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +105038,Cb18,EA008,Large extended,EA008-8,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +105039,Cb19,EA008,"Polygyny, typical cowives pattern",EA008-5,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +105040,Cb2,EA008,Small extended,EA008-7,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +105041,Cb20,EA008,"Polygyny, atypical cowives pattern",EA008-4,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +105042,Cb21,EA008,"Polygyny, typical cowives pattern",EA008-5,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +105043,Cb22,EA008,Large extended,EA008-8,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +105044,Cb23,EA008,Large extended,EA008-8,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +105045,Cb24,EA008,"Polygyny, typical cowives pattern",EA008-5,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +105046,Cb25,EA008,Large extended,EA008-8,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +105047,Cb26,EA008,Small extended,EA008-7,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +105048,Cb27,EA008,Large extended,EA008-8,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +105049,Cb28,EA008,Large extended,EA008-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +105050,Cb29,EA008,Small extended,EA008-7,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +105051,Cb3,EA008,"Nuclear, limited polygyny",EA008-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +105052,Cb4,EA008,"Polygyny, atypical cowives pattern",EA008-4,"Extended families are quite possible, though unreported",reid1930,,1920,EthnographicAtlas_1967_p78, +105053,Cb5,EA008,"Polygyny, atypical cowives pattern",EA008-4,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +105054,Cb6,EA008,Large extended,EA008-8,,woodnd,,1920,EthnographicAtlas_1967_p78, +105055,Cb7,EA008,"Polygyny, typical cowives pattern",EA008-5,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +105056,Cb8,EA008,"Polygyny, typical cowives pattern",EA008-5,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +105057,Cb9,EA008,Small extended,EA008-7,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +105058,Cc1,EA008,Small extended,EA008-7,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +105059,Cc10,EA008,"Nuclear, limited polygyny",EA008-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +105060,Cc11,EA008,"Nuclear, monogamous",EA008-1,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +105061,Cc12,EA008,"Nuclear, monogamous",EA008-1,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +105062,Cc13,EA008,"Nuclear, monogamous",EA008-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +105063,Cc14,EA008,"Nuclear, limited polygyny",EA008-2,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +105064,Cc15,EA008,?,EA008-NA,,,,,, +105065,Cc16,EA008,"Polygyny, atypical cowives pattern",EA008-4,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +105066,Cc17,EA008,Small extended,EA008-7,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +105067,Cc18,EA008,"Nuclear, monogamous",EA008-1,But the camp group is an extended family,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +105068,Cc19,EA008,"Nuclear, monogamous",EA008-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +105069,Cc2,EA008,"Polygyny, typical cowives pattern",EA008-5,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +105070,Cc20,EA008,"Nuclear, monogamous",EA008-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +105071,Cc3,EA008,Small extended,EA008-7,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +105072,Cc4,EA008,"Nuclear, monogamous",EA008-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +105073,Cc5,EA008,"Nuclear, monogamous",EA008-1,But polygyny is practiced by the Bella serfs,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +105074,Cc6,EA008,Large extended,EA008-8,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +105075,Cc7,EA008,"Nuclear, limited polygyny",EA008-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105076,Cc8,EA008,"Nuclear, monogamous",EA008-1,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +105077,Cc9,EA008,"Nuclear, monogamous",EA008-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +105078,Cd1,EA008,"Nuclear, limited polygyny",EA008-2,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +105079,Cd10,EA008,Large extended,EA008-8,Extended families are suggested rather than attested,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +105080,Cd11,EA008,Large extended,EA008-8,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +105081,Cd12,EA008,Small extended,EA008-7,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +105082,Cd13,EA008,Large extended,EA008-8,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +105083,Cd14,EA008,Large extended,EA008-8,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +105084,Cd15,EA008,Small extended,EA008-7,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +105085,Cd16,EA008,"Nuclear, limited polygyny",EA008-2,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +105086,Cd17,EA008,"Nuclear, limited polygyny",EA008-2,But the band is a patrilocal extended family,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +105087,Cd18,EA008,"Nuclear, limited polygyny",EA008-2,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +105088,Cd19,EA008,Small extended,EA008-7,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +105089,Cd2,EA008,Small extended,EA008-7,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +105090,Cd20,EA008,"Polygyny, atypical cowives pattern",EA008-4,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +105091,Cd21,EA008,Large extended,EA008-8,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +105092,Cd3,EA008,Large extended,EA008-8,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +105093,Cd4,EA008,Small extended,EA008-7,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +105094,Cd5,EA008,Small extended,EA008-7,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +105095,Cd6,EA008,"Nuclear, monogamous",EA008-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +105096,Cd7,EA008,"Nuclear, limited polygyny",EA008-2,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +105097,Cd8,EA008,Large extended,EA008-8,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +105098,Cd9,EA008,"Nuclear, monogamous",EA008-1,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +105099,Ce1,EA008,Small extended,EA008-7,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +105100,Ce2,EA008,Minimal extended,EA008-6,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +105101,Ce3,EA008,"Nuclear, monogamous",EA008-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +105102,Ce4,EA008,Minimal extended,EA008-6,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105103,Ce5,EA008,"Nuclear, monogamous",EA008-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +105104,Ce6,EA008,"Nuclear, monogamous",EA008-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +105105,Ce7,EA008,"Nuclear, monogamous",EA008-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +105106,Ce8,EA008,"Nuclear, monogamous",EA008-1,"But code ""6"", minimal (stem) extended families is ideal, though having an actual incidence of only 30 per cent",carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +105107,Cf1,EA008,"Nuclear, monogamous",EA008-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +105108,Cf2,EA008,Small extended,EA008-7,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +105109,Cf3,EA008,"Nuclear, monogamous",EA008-1,,munch1945,,1930,EthnographicAtlas_1967_p82, +105110,Cf4,EA008,"Nuclear, monogamous",EA008-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +105111,Cf5,EA008,"Nuclear, monogamous",EA008-1,,miner1939,,1930,EthnographicAtlas_1967_p82, +105112,Cg1,EA008,Small extended,EA008-7,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +105113,Cg2,EA008,Small extended,EA008-7,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +105114,Cg3,EA008,Minimal extended,EA008-6,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +105115,Cg4,EA008,"Nuclear, monogamous",EA008-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +105116,Cg5,EA008,"Nuclear, monogamous",EA008-1,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +105117,Ch1,EA008,Small extended,EA008-7,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +105118,Ch10,EA008,"Nuclear, monogamous",EA008-1,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +105119,Ch11,EA008,"Nuclear, monogamous",EA008-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +105120,Ch2,EA008,"Nuclear, monogamous",EA008-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +105121,Ch3,EA008,Minimal extended,EA008-6,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +105122,Ch4,EA008,"Nuclear, monogamous",EA008-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +105123,Ch5,EA008,Small extended,EA008-7,"Formerly code ""8"", large extended families",sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +105124,Ch6,EA008,Minimal extended,EA008-6,,ember1954,,1910,EthnographicAtlas_1967_p82, +105125,Ch7,EA008,Minimal extended,EA008-6,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +105126,Ch8,EA008,Large extended,EA008-8,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +105127,Ch9,EA008,Small extended,EA008-7,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +105128,Ci1,EA008,Large extended,EA008-8,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +105129,Ci10,EA008,Large extended,EA008-8,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +105130,Ci11,EA008,"Nuclear, limited polygyny",EA008-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +105131,Ci12,EA008,Large extended,EA008-8,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +105132,Ci2,EA008,"Nuclear, limited polygyny",EA008-2,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +105133,Ci3,EA008,"Nuclear, limited polygyny",EA008-2,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +105134,Ci4,EA008,Small extended,EA008-7,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +105135,Ci5,EA008,Small extended,EA008-7,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +105136,Ci6,EA008,Large extended,EA008-8,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +105137,Ci7,EA008,Small extended,EA008-7,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +105138,Ci8,EA008,Large extended,EA008-8,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +105139,Ci9,EA008,Large extended,EA008-8,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +105140,Cj1,EA008,Small extended,EA008-7,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +105141,Cj10,EA008,Small extended,EA008-7,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +105142,Cj2,EA008,"Polygyny, typical cowives pattern",EA008-5,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +105143,Cj3,EA008,Small extended,EA008-7,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +105144,Cj4,EA008,"Nuclear, limited polygyny",EA008-2,But concubinage occurred,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +105145,Cj5,EA008,"Nuclear, limited polygyny",EA008-2,,dickson1949,,1930,EthnographicAtlas_1967_p86, +105146,Cj6,EA008,"Nuclear, limited polygyny",EA008-2,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +105147,Cj7,EA008,"Nuclear, monogamous",EA008-1,But commonly Fm elsewhere in Lebanon,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +105148,Cj8,EA008,Small extended,EA008-7,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +105149,Cj9,EA008,Small extended,EA008-7,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +105150,Ea1,EA008,Small extended,EA008-7,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +105151,Ea10,EA008,Small extended,EA008-7,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +105152,Ea11,EA008,Small extended,EA008-7,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +105153,Ea12,EA008,"Nuclear, monogamous",EA008-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +105154,Ea13,EA008,Small extended,EA008-7,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +105155,Ea2,EA008,"Nuclear, limited polygyny",EA008-2,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +105156,Ea3,EA008,Small extended,EA008-7,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +105157,Ea4,EA008,"Nuclear, limited polygyny",EA008-2,,barth1956b,,1950,EthnographicAtlas_1967_p86, +105158,Ea5,EA008,Small extended,EA008-7,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +105159,Ea6,EA008,"Nuclear, limited polygyny",EA008-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +105160,Ea7,EA008,Small extended,EA008-7,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +105161,Ea8,EA008,?,EA008-NA,,,,,, +105162,Ea9,EA008,Large extended,EA008-8,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +105163,Eb1,EA008,Small extended,EA008-7,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +105164,Eb2,EA008,Small extended,EA008-7,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +105165,Eb3,EA008,Minimal extended,EA008-6,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +105166,Eb4,EA008,Small extended,EA008-7,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +105167,Eb5,EA008,Small extended,EA008-7,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +105168,Eb6,EA008,Large extended,EA008-8,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +105169,Eb7,EA008,Large extended,EA008-8,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +105170,Eb8,EA008,Small extended,EA008-7,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +105171,Ec1,EA008,"Nuclear, limited polygyny",EA008-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +105172,Ec10,EA008,"Nuclear, limited polygyny",EA008-2,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +105173,Ec11,EA008,"Nuclear, limited polygyny",EA008-2,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +105174,Ec2,EA008,Small extended,EA008-7,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105175,Ec3,EA008,Minimal extended,EA008-6,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +105176,Ec4,EA008,Small extended,EA008-7,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +105177,Ec5,EA008,Large extended,EA008-8,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +105178,Ec6,EA008,Minimal extended,EA008-6,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +105179,Ec7,EA008,"Nuclear, limited polygyny",EA008-2,"Formerly code ""2"", independent nuclear families, occasional polygyny",batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +105180,Ec8,EA008,"Nuclear, monogamous",EA008-1,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +105181,Ec9,EA008,Small extended,EA008-7,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +105182,Ed1,EA008,Minimal extended,EA008-6,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +105183,Ed10,EA008,Small extended,EA008-7,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +105184,Ed13,EA008,Minimal extended,EA008-6,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +105185,Ed14,EA008,Small extended,EA008-7,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +105186,Ed15a,EA008,Minimal extended,EA008-6,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +105187,Ed15b,EA008,"Nuclear, monogamous",EA008-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +105188,Ed16,EA008,Small extended,EA008-7,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +105189,Ed2,EA008,"Nuclear, limited polygyny",EA008-2,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +105190,Ed3,EA008,Large extended,EA008-8,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +105191,Ed4,EA008,"Nuclear, limited polygyny",EA008-2,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +105192,Ed5,EA008,Minimal extended,EA008-6,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105193,Ed6,EA008,Small extended,EA008-7,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +105194,Ed7,EA008,Minimal extended,EA008-6,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +105195,Ed8,EA008,Small extended,EA008-7,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +105196,Ed9,EA008,Minimal extended,EA008-6,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +105197,Ee1,EA008,"Nuclear, limited polygyny",EA008-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +105198,Ee2,EA008,Small extended,EA008-7,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +105199,Ee3,EA008,Small extended,EA008-7,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +105200,Ee4,EA008,Minimal extended,EA008-6,Polygyny is also practiced to some extent,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +105201,Ee5,EA008,Large extended,EA008-8,"General nonsororal polygyny prevails, but information is lacking on family organization",biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +105202,Ee6,EA008,Polyandrous,EA008-3,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +105203,Ee7,EA008,Small extended,EA008-7,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +105204,Ee8,EA008,"Nuclear, limited polygyny",EA008-2,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +105205,Ef1,EA008,Small extended,EA008-7,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +105206,Ef10,EA008,?,EA008-NA,,,,,, +105207,Ef11,EA008,Minimal extended,EA008-6,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +105208,Ef2,EA008,Large extended,EA008-8,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +105209,Ef3,EA008,Large extended,EA008-8,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +105210,Ef4,EA008,"Polygyny, atypical cowives pattern",EA008-4,But extended families are land-holding units and sometimes residential units as well,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +105211,Ef5,EA008,Small extended,EA008-7,General nonsororal polygyny but insufficient data on family organization,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +105212,Ef6,EA008,Small extended,EA008-7,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +105213,Ef7,EA008,Small extended,EA008-7,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +105214,Ef8,EA008,Small extended,EA008-7,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +105215,Ef9,EA008,"Nuclear, limited polygyny",EA008-2,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105216,Eg1,EA008,"Nuclear, monogamous",EA008-1,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105217,Eg10,EA008,Small extended,EA008-7,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +105218,Eg11,EA008,Large extended,EA008-8,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +105219,Eg12,EA008,"Nuclear, limited polygyny",EA008-2,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +105220,Eg13,EA008,Small extended,EA008-7,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105221,Eg14,EA008,"Nuclear, limited polygyny",EA008-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +105222,Eg2,EA008,Small extended,EA008-7,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +105223,Eg3,EA008,Large extended,EA008-8,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +105224,Eg4,EA008,Polyandrous,EA008-3,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +105225,Eg5,EA008,Small extended,EA008-7,"But formerly large extended families (code ""8"") made up of independent polyandrous units (EA009=code ""7"")",emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +105226,Eg6,EA008,Large extended,EA008-8,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +105227,Eg7,EA008,"Nuclear, monogamous",EA008-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +105228,Eg8,EA008,Small extended,EA008-7,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +105229,Eg9,EA008,"Polygyny, atypical cowives pattern",EA008-4,,elwin1939,,1930,EthnographicAtlas_1967_p90, +105230,Eh1,EA008,"Nuclear, monogamous",EA008-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +105231,Eh10,EA008,Small extended,EA008-7,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +105232,Eh2,EA008,"Nuclear, limited polygyny",EA008-2,Polygyny was general before its abolition in 1878,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +105233,Eh3,EA008,Small extended,EA008-7,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +105234,Eh4,EA008,Small extended,EA008-7,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105235,Eh5,EA008,"Nuclear, limited polygyny",EA008-2,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +105236,Eh6,EA008,"Nuclear, monogamous",EA008-1,But extended families are often found in well-to-do families,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +105237,Eh7,EA008,"Polygyny, typical cowives pattern",EA008-5,"But McLeod reports large extended families (code ""8"") made up of polygynous units of non-sororal co-wives in separate dwellings (EA009=code ""5"")",decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +105238,Eh8,EA008,Large extended,EA008-8,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +105239,Eh9,EA008,Small extended,EA008-7,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +105240,Ei1,EA008,Minimal extended,EA008-6,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105241,Ei10,EA008,"Nuclear, limited polygyny",EA008-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +105242,Ei11,EA008,"Nuclear, limited polygyny",EA008-2,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +105243,Ei12,EA008,"Polygyny, atypical cowives pattern",EA008-4,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +105244,Ei13,EA008,"Nuclear, monogamous",EA008-1,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +105245,Ei14,EA008,"Nuclear, monogamous",EA008-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +105246,Ei15,EA008,"Nuclear, limited polygyny",EA008-2,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +105247,Ei16,EA008,"Nuclear, limited polygyny",EA008-2,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +105248,Ei17,EA008,Small extended,EA008-7,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +105249,Ei18,EA008,"Nuclear, limited polygyny",EA008-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +105250,Ei19,EA008,"Nuclear, limited polygyny",EA008-2,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +105251,Ei2,EA008,"Polygyny, atypical cowives pattern",EA008-4,,mills1922,,1920,EthnographicAtlas_1967_p90, +105252,Ei20,EA008,Minimal extended,EA008-6,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +105253,Ei3,EA008,"Nuclear, monogamous",EA008-1,"Or often organized as minimal (stem) extended families (code ""6"")",brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +105254,Ei4,EA008,"Nuclear, limited polygyny",EA008-2,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +105255,Ei5,EA008,Small extended,EA008-7,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +105256,Ei6,EA008,Minimal extended,EA008-6,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +105257,Ei7,EA008,"Nuclear, monogamous",EA008-1,But large communal dwellings in many hill sections,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +105258,Ei8,EA008,Large extended,EA008-8,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +105259,Ei9,EA008,"Nuclear, limited polygyny",EA008-2,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +105260,Ej1,EA008,"Nuclear, limited polygyny",EA008-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +105261,Ej10,EA008,Large extended,EA008-8,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +105262,Ej11,EA008,Minimal extended,EA008-6,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +105263,Ej12,EA008,Minimal extended,EA008-6,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +105264,Ej13,EA008,Small extended,EA008-7,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +105265,Ej14,EA008,Large extended,EA008-8,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105266,Ej15,EA008,"Nuclear, limited polygyny",EA008-2,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +105267,Ej16,EA008,"Nuclear, limited polygyny",EA008-2,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +105268,Ej2,EA008,"Nuclear, limited polygyny",EA008-2,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +105269,Ej3,EA008,"Nuclear, limited polygyny",EA008-2,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +105270,Ej4,EA008,Small extended,EA008-7,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +105271,Ej5,EA008,"Nuclear, limited polygyny",EA008-2,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +105272,Ej6,EA008,"Nuclear, limited polygyny",EA008-2,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +105273,Ej7,EA008,"Nuclear, limited polygyny",EA008-2,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +105274,Ej8,EA008,Small extended,EA008-7,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +105275,Ej9,EA008,"Nuclear, limited polygyny",EA008-2,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +105276,Ia1,EA008,Minimal extended,EA008-6,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +105277,Ia10,EA008,Small extended,EA008-7,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +105278,Ia11,EA008,"Nuclear, monogamous",EA008-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +105279,Ia12,EA008,"Nuclear, monogamous",EA008-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +105280,Ia13,EA008,"Nuclear, monogamous",EA008-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +105281,Ia14,EA008,"Nuclear, monogamous",EA008-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +105282,Ia15,EA008,"Nuclear, limited polygyny",EA008-2,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +105283,Ia16,EA008,Small extended,EA008-7,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +105284,Ia17,EA008,"Nuclear, limited polygyny",EA008-2,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +105285,Ia18,EA008,"Nuclear, monogamous",EA008-1,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +105286,Ia2,EA008,"Nuclear, monogamous",EA008-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +105287,Ia3,EA008,"Nuclear, monogamous",EA008-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +105288,Ia4,EA008,"Nuclear, limited polygyny",EA008-2,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +105289,Ia5,EA008,"Nuclear, limited polygyny",EA008-2,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +105290,Ia6,EA008,Minimal extended,EA008-6,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105291,Ia7,EA008,"Nuclear, limited polygyny",EA008-2,,fox1954,,1950,EthnographicAtlas_1967_p90, +105292,Ia8,EA008,"Nuclear, monogamous",EA008-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +105293,Ia9,EA008,Small extended,EA008-7,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +105294,Ib1,EA008,Minimal extended,EA008-6,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105295,Ib2,EA008,"Nuclear, limited polygyny",EA008-2,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105296,Ib3,EA008,Small extended,EA008-7,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +105297,Ib4,EA008,Small extended,EA008-7,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +105298,Ib5,EA008,"Nuclear, limited polygyny",EA008-2,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +105299,Ib6,EA008,Large extended,EA008-8,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +105300,Ib7,EA008,"Nuclear, monogamous",EA008-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +105301,Ib8,EA008,"Nuclear, limited polygyny",EA008-2,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +105302,Ib9,EA008,"Nuclear, limited polygyny",EA008-2,But families are grouped in communal dwellings,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +105303,Ic1,EA008,"Nuclear, limited polygyny",EA008-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105304,Ic10,EA008,Large extended,EA008-8,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +105305,Ic11,EA008,"Nuclear, monogamous",EA008-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105306,Ic12,EA008,"Nuclear, monogamous",EA008-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +105307,Ic13,EA008,?,EA008-NA,,,,,, +105308,Ic2,EA008,"Nuclear, limited polygyny",EA008-2,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +105309,Ic3,EA008,Large extended,EA008-8,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +105310,Ic4,EA008,"Polygyny, atypical cowives pattern",EA008-4,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +105311,Ic5,EA008,Large extended,EA008-8,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +105312,Ic6,EA008,Small extended,EA008-7,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +105313,Ic7,EA008,Small extended,EA008-7,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +105314,Ic8,EA008,Large extended,EA008-8,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +105315,Ic9,EA008,Minimal extended,EA008-6,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +105316,Id1,EA008,"Polygyny, typical cowives pattern",EA008-5,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +105317,Id10,EA008,"Polygyny, typical cowives pattern",EA008-5,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +105318,Id11,EA008,"Polygyny, atypical cowives pattern",EA008-4,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +105319,Id12,EA008,"Nuclear, limited polygyny",EA008-2,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +105320,Id13,EA008,"Polygyny, typical cowives pattern",EA008-5,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +105321,Id2,EA008,"Polygyny, typical cowives pattern",EA008-5,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +105322,Id3,EA008,Small extended,EA008-7,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +105323,Id4,EA008,"Polygyny, typical cowives pattern",EA008-5,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +105324,Id5,EA008,"Polygyny, typical cowives pattern",EA008-5,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +105325,Id6,EA008,"Polygyny, typical cowives pattern",EA008-5,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +105326,Id7,EA008,"Polygyny, atypical cowives pattern",EA008-4,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +105327,Id8,EA008,"Nuclear, limited polygyny",EA008-2,,roth1890,,1830,EthnographicAtlas_1967_p94, +105328,Id9,EA008,"Nuclear, limited polygyny",EA008-2,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +105329,Ie1,EA008,Small extended,EA008-7,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105330,Ie10,EA008,Small extended,EA008-7,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p94, +105331,Ie11,EA008,Minimal extended,EA008-6,,bowers1964,,1950,EthnographicAtlas_1967_p94, +105332,Ie12,EA008,"Polygyny, atypical cowives pattern",EA008-4,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105333,Ie13,EA008,Large extended,EA008-8,A localized lineage occupies a communal dwelling,landtman1927,,1920,EthnographicAtlas_1967_p94, +105334,Ie14,EA008,"Nuclear, limited polygyny",EA008-2,,haddon1908,,1900,EthnographicAtlas_1967_p94, +105335,Ie15,EA008,"Nuclear, limited polygyny",EA008-2,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105336,Ie16,EA008,Large extended,EA008-8,,williams194041,,1940,EthnographicAtlas_1967_p94, +105337,Ie17,EA008,?,EA008-NA,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +105338,Ie18,EA008,Small extended,EA008-7,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +105339,Ie19,EA008,"Nuclear, monogamous",EA008-1,But the sexes live segregated in men's and women's houses,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +105340,Ie2,EA008,"Polygyny, typical cowives pattern",EA008-5,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +105341,Ie20,EA008,"Nuclear, limited polygyny",EA008-2,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +105342,Ie21,EA008,Small extended,EA008-7,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +105343,Ie22,EA008,Small extended,EA008-7,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +105344,Ie23,EA008,Small extended,EA008-7,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +105345,Ie24,EA008,"Polygyny, atypical cowives pattern",EA008-4,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +105346,Ie25,EA008,"Polygyny, atypical cowives pattern",EA008-4,,williamson1912,,1920,EthnographicAtlas_1967_p94, +105347,Ie26,EA008,"Nuclear, limited polygyny",EA008-2,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +105348,Ie27,EA008,"Nuclear, monogamous",EA008-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +105349,Ie28,EA008,"Nuclear, limited polygyny",EA008-2,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +105350,Ie29,EA008,"Nuclear, limited polygyny",EA008-2,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105351,Ie3,EA008,"Polygyny, atypical cowives pattern",EA008-4,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105352,Ie30,EA008,Small extended,EA008-7,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +105353,Ie31,EA008,"Polygyny, typical cowives pattern",EA008-5,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +105354,Ie32,EA008,"Nuclear, monogamous",EA008-1,"But aboriginally code ""4"" (polygynous, with non-sororal co-wives in same dwelling)",groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +105355,Ie33,EA008,"Nuclear, limited polygyny",EA008-2,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +105356,Ie34,EA008,"Nuclear, limited polygyny",EA008-2,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +105357,Ie35,EA008,Large extended,EA008-8,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +105358,Ie36,EA008,"Nuclear, limited polygyny",EA008-2,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +105359,Ie37,EA008,"Nuclear, limited polygyny",EA008-2,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +105360,Ie38,EA008,"Polygyny, typical cowives pattern",EA008-5,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +105361,Ie39,EA008,"Nuclear, limited polygyny",EA008-2,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +105362,Ie4,EA008,"Polygyny, atypical cowives pattern",EA008-4,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105363,Ie5,EA008,"Polygyny, atypical cowives pattern",EA008-4,,williams1936,,1930,EthnographicAtlas_1967_p94, +105364,Ie6,EA008,Large extended,EA008-8,,held1947,,1930,EthnographicAtlas_1967_p94, +105365,Ie7,EA008,"Nuclear, limited polygyny",EA008-2,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +105366,Ie8,EA008,"Polygyny, atypical cowives pattern",EA008-4,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +105367,Ie9,EA008,"Nuclear, limited polygyny",EA008-2,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +105368,If1,EA008,"Nuclear, limited polygyny",EA008-2,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105369,If10,EA008,Large extended,EA008-8,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +105370,If11,EA008,"Nuclear, limited polygyny",EA008-2,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +105371,If12,EA008,Small extended,EA008-7,,mason1954,,1940,EthnographicAtlas_1967_p98, +105372,If13,EA008,Small extended,EA008-7,"Previously organized as small extended families (code ""7"")",hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +105373,If14,EA008,"Nuclear, limited polygyny",EA008-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +105374,If15,EA008,Large extended,EA008-8,"But code ""1"" today (independent nuclear family, monogamous)",josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +105375,If16,EA008,Small extended,EA008-7,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +105376,If17,EA008,Large extended,EA008-8,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +105377,If2,EA008,Large extended,EA008-8,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +105378,If3,EA008,Large extended,EA008-8,Polygyny was formerly common among chiefs,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +105379,If4,EA008,Large extended,EA008-8,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +105380,If5,EA008,"Nuclear, limited polygyny",EA008-2,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +105381,If6,EA008,Small extended,EA008-7,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +105382,If7,EA008,"Nuclear, limited polygyny",EA008-2,"Formerly code ""8"", large extended families, with polygyny common and preferentially sororal, and with co-wives living in same dwelling (related EA009 variable would also have been code ""3"")",goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +105383,If8,EA008,"Nuclear, monogamous",EA008-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +105384,If9,EA008,"Nuclear, monogamous",EA008-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +105385,Ig1,EA008,"Nuclear, limited polygyny",EA008-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +105386,Ig10,EA008,"Polygyny, typical cowives pattern",EA008-5,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +105387,Ig11,EA008,"Nuclear, limited polygyny",EA008-2,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +105388,Ig12,EA008,"Nuclear, limited polygyny",EA008-2,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +105389,Ig13,EA008,"Polygyny, typical cowives pattern",EA008-5,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +105390,Ig14,EA008,Large extended,EA008-8,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +105391,Ig15,EA008,Small extended,EA008-7,,goodenough1954a,,1950,Ethnology_Vol7_No1_Jan_1968, +105392,Ig16,EA008,Large extended,EA008-8,,goodenough1951a,,1950,Ethnology_Vol7_No1_Jan_1968, +105393,Ig17,EA008,Small extended,EA008-7,,goodenough1954b,,1950,Ethnology_Vol7_No1_Jan_1968, +105394,Ig18,EA008,"Nuclear, limited polygyny",EA008-2,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +105395,Ig19,EA008,?,EA008-NA,,,,,, +105396,Ig2,EA008,"Nuclear, limited polygyny",EA008-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +105397,Ig20,EA008,"Nuclear, monogamous",EA008-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +105398,Ig21,EA008,"Nuclear, limited polygyny",EA008-2,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +105399,Ig3,EA008,"Polygyny, atypical cowives pattern",EA008-4,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +105400,Ig4,EA008,"Nuclear, limited polygyny",EA008-2,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +105401,Ig5,EA008,"Nuclear, monogamous",EA008-1,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +105402,Ig6,EA008,"Nuclear, limited polygyny",EA008-2,,ivens1927,,1900,EthnographicAtlas_1967_p98, +105403,Ig7,EA008,Small extended,EA008-7,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +105404,Ig8,EA008,"Nuclear, limited polygyny",EA008-2,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +105405,Ig9,EA008,"Nuclear, limited polygyny",EA008-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +105406,Ih1,EA008,"Polygyny, typical cowives pattern",EA008-5,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +105407,Ih10,EA008,"Nuclear, limited polygyny",EA008-2,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105408,Ih11,EA008,?,EA008-NA,,,,,, +105409,Ih12,EA008,"Nuclear, limited polygyny",EA008-2,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +105410,Ih13,EA008,"Nuclear, limited polygyny",EA008-2,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +105411,Ih14,EA008,"Nuclear, limited polygyny",EA008-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +105412,Ih2,EA008,"Polygyny, typical cowives pattern",EA008-5,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105413,Ih3,EA008,"Nuclear, limited polygyny",EA008-2,"Formerly code ""4"", polygyny common and preferentially sororal, with co-wives in separate dwellings (related EA009 variable would also have been code ""4"")",lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +105414,Ih4,EA008,Small extended,EA008-7,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105415,Ih5,EA008,?,EA008-NA,,,,,, +105416,Ih6,EA008,"Nuclear, monogamous",EA008-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +105417,Ih7,EA008,Large extended,EA008-8,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +105418,Ih8,EA008,Small extended,EA008-7,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +105419,Ih9,EA008,Small extended,EA008-7,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105420,Ii1,EA008,Large extended,EA008-8,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +105421,Ii10,EA008,Small extended,EA008-7,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +105422,Ii12,EA008,"Nuclear, limited polygyny",EA008-2,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105423,Ii13,EA008,"Nuclear, limited polygyny",EA008-2,,burrows1937,,1830,EthnographicAtlas_1967_p98, +105424,Ii14,EA008,Large extended,EA008-8,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +105425,Ii2,EA008,"Polygyny, typical cowives pattern",EA008-5,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +105426,Ii3,EA008,"Nuclear, monogamous",EA008-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +105427,Ii4,EA008,Small extended,EA008-7,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +105428,Ii5,EA008,Large extended,EA008-8,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +105429,Ii6,EA008,Large extended,EA008-8,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +105430,Ii7,EA008,Small extended,EA008-7,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +105431,Ii8,EA008,Small extended,EA008-7,,burrows1936,,1840,EthnographicAtlas_1967_p98, +105432,Ii9,EA008,"Nuclear, limited polygyny",EA008-2,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +105433,Ij1,EA008,Small extended,EA008-7,,buck1934,,1820,EthnographicAtlas_1967_p98, +105434,Ij10,EA008,Small extended,EA008-7,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +105435,Ij2,EA008,Small extended,EA008-7,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +105436,Ij3,EA008,Polyandrous,EA008-3,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +105437,Ij4,EA008,Small extended,EA008-7,,buck1932a,,1850,EthnographicAtlas_1967_p102, +105438,Ij5,EA008,Large extended,EA008-8,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +105439,Ij6,EA008,Large extended,EA008-8,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +105440,Ij7,EA008,"Nuclear, limited polygyny",EA008-2,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +105441,Ij8,EA008,"Nuclear, limited polygyny",EA008-2,But large communal dwelling originally,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +105442,Ij9,EA008,Small extended,EA008-7,,metraux1940,,1860,EthnographicAtlas_1967_p102, +105443,Na1,EA008,"Nuclear, monogamous",EA008-1,But polygyny was formerly common,mckennan1959,,1930,EthnographicAtlas_1967_p102, +105444,Na10,EA008,?,EA008-NA,,,,,, +105445,Na11,EA008,Minimal extended,EA008-6,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +105446,Na12,EA008,Minimal extended,EA008-6,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +105447,Na13,EA008,Minimal extended,EA008-6,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +105448,Na14,EA008,"Nuclear, limited polygyny",EA008-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +105449,Na15,EA008,"Nuclear, limited polygyny",EA008-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +105450,Na16,EA008,"Nuclear, limited polygyny",EA008-2,,osgood1931,,1860,EthnographicAtlas_1967_p102, +105451,Na17,EA008,"Polygyny, typical cowives pattern",EA008-5,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105452,Na19,EA008,Small extended,EA008-7,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +105453,Na2,EA008,Small extended,EA008-7,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +105454,Na20,EA008,"Nuclear, limited polygyny",EA008-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +105455,Na21,EA008,Minimal extended,EA008-6,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +105456,Na22,EA008,Small extended,EA008-7,"But nearly as frequently code ""2"", independent nuclear families (with occasional polygyny)",birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +105457,Na23,EA008,Small extended,EA008-7,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +105458,Na24,EA008,Large extended,EA008-8,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +105459,Na25,EA008,"Nuclear, monogamous",EA008-1,"Formerly small extended families (code ""7"") with occasional polygyny (related variable EA009 code ""2"")",birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +105460,Na26,EA008,Small extended,EA008-7,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +105461,Na27,EA008,"Nuclear, limited polygyny",EA008-2,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +105462,Na28,EA008,"Polygyny, typical cowives pattern",EA008-5,,jenness1937,,1880,EthnographicAtlas_1967_p102, +105463,Na29,EA008,"Nuclear, limited polygyny",EA008-2,,goddard1916,,1850,EthnographicAtlas_1967_p102, +105464,Na3,EA008,"Nuclear, monogamous",EA008-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +105465,Na30,EA008,"Nuclear, limited polygyny",EA008-2,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +105466,Na31,EA008,Small extended,EA008-7,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +105467,Na32,EA008,Large extended,EA008-8,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +105468,Na33,EA008,Small extended,EA008-7,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +105469,Na34,EA008,Minimal extended,EA008-6,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +105470,Na35,EA008,Small extended,EA008-7,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +105471,Na36,EA008,Small extended,EA008-7,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +105472,Na37,EA008,Small extended,EA008-7,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +105473,Na38,EA008,Small extended,EA008-7,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +105474,Na39,EA008,"Nuclear, limited polygyny",EA008-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +105475,Na4,EA008,Large extended,EA008-8,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +105476,Na40,EA008,Small extended,EA008-7,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +105477,Na41,EA008,"Nuclear, limited polygyny",EA008-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +105478,Na42,EA008,"Polygyny, atypical cowives pattern",EA008-4,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +105479,Na43,EA008,Small extended,EA008-7,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +105480,Na44,EA008,"Nuclear, limited polygyny",EA008-2,"But code ""1"" today (independent nuclear family, monogamous)",graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +105481,Na45,EA008,"Nuclear, limited polygyny",EA008-2,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +105482,Na5,EA008,Small extended,EA008-7,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +105483,Na6,EA008,Small extended,EA008-7,,lantis1946,,1930,EthnographicAtlas_1967_p102, +105484,Na7,EA008,"Nuclear, limited polygyny",EA008-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +105485,Na8,EA008,"Nuclear, limited polygyny",EA008-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +105486,Na9,EA008,Large extended,EA008-8,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105487,Nb1,EA008,Large extended,EA008-8,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +105488,Nb10,EA008,Small extended,EA008-7,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +105489,Nb11,EA008,Small extended,EA008-7,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +105490,Nb12,EA008,Large extended,EA008-8,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +105491,Nb13,EA008,Large extended,EA008-8,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +105492,Nb14,EA008,Large extended,EA008-8,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +105493,Nb15,EA008,Large extended,EA008-8,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +105494,Nb16,EA008,Small extended,EA008-7,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +105495,Nb17,EA008,Large extended,EA008-8,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +105496,Nb18,EA008,Large extended,EA008-8,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +105497,Nb19,EA008,Small extended,EA008-7,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +105498,Nb2,EA008,Large extended,EA008-8,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +105499,Nb20,EA008,Small extended,EA008-7,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +105500,Nb21,EA008,Large extended,EA008-8,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +105501,Nb22,EA008,Small extended,EA008-7,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +105502,Nb23,EA008,Small extended,EA008-7,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +105503,Nb24,EA008,Small extended,EA008-7,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +105504,Nb25,EA008,Small extended,EA008-7,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +105505,Nb26,EA008,Large extended,EA008-8,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +105506,Nb27,EA008,Small extended,EA008-7,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +105507,Nb28,EA008,Small extended,EA008-7,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +105508,Nb29,EA008,Small extended,EA008-7,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +105509,Nb3,EA008,Small extended,EA008-7,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +105510,Nb30,EA008,Small extended,EA008-7,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +105511,Nb31,EA008,"Polygyny, atypical cowives pattern",EA008-4,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +105512,Nb32,EA008,Small extended,EA008-7,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +105513,Nb33,EA008,Small extended,EA008-7,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +105514,Nb34,EA008,Small extended,EA008-7,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +105515,Nb35,EA008,Small extended,EA008-7,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +105516,Nb36,EA008,Small extended,EA008-7,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +105517,Nb37,EA008,"Nuclear, limited polygyny",EA008-2,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +105518,Nb38,EA008,"Nuclear, limited polygyny",EA008-2,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +105519,Nb39,EA008,Small extended,EA008-7,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +105520,Nb4,EA008,Small extended,EA008-7,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +105521,Nb5,EA008,"Polygyny, atypical cowives pattern",EA008-4,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +105522,Nb6,EA008,"Polygyny, atypical cowives pattern",EA008-4,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +105523,Nb7,EA008,Large extended,EA008-8,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +105524,Nb8,EA008,?,EA008-NA,,,,,, +105525,Nb9,EA008,Small extended,EA008-7,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +105526,Nc1,EA008,"Nuclear, limited polygyny",EA008-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +105527,Nc10,EA008,Small extended,EA008-7,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +105528,Nc11,EA008,Small extended,EA008-7,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +105529,Nc12,EA008,Small extended,EA008-7,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +105530,Nc13,EA008,"Nuclear, limited polygyny",EA008-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +105531,Nc14,EA008,"Nuclear, limited polygyny",EA008-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +105532,Nc15,EA008,"Polygyny, typical cowives pattern",EA008-5,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +105533,Nc16,EA008,Small extended,EA008-7,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +105534,Nc17,EA008,Small extended,EA008-7,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +105535,Nc18,EA008,Small extended,EA008-7,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +105536,Nc19,EA008,Small extended,EA008-7,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +105537,Nc2,EA008,"Nuclear, monogamous",EA008-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +105538,Nc20,EA008,Small extended,EA008-7,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +105539,Nc21,EA008,Small extended,EA008-7,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +105540,Nc22,EA008,Small extended,EA008-7,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +105541,Nc23,EA008,"Nuclear, limited polygyny",EA008-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +105542,Nc24,EA008,Large extended,EA008-8,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +105543,Nc25,EA008,Small extended,EA008-7,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +105544,Nc26,EA008,Large extended,EA008-8,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +105545,Nc27,EA008,"Nuclear, monogamous",EA008-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +105546,Nc28,EA008,Large extended,EA008-8,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +105547,Nc29,EA008,"Nuclear, limited polygyny",EA008-2,Extended families are inferential,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +105548,Nc3,EA008,Large extended,EA008-8,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +105549,Nc30,EA008,Small extended,EA008-7,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +105550,Nc31,EA008,Small extended,EA008-7,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +105551,Nc32,EA008,"Nuclear, limited polygyny",EA008-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +105552,Nc33,EA008,"Polygyny, typical cowives pattern",EA008-5,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +105553,Nc34,EA008,"Nuclear, limited polygyny",EA008-2,,meigs1939,,1880,EthnographicAtlas_1967_p106, +105554,Nc4,EA008,Small extended,EA008-7,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +105555,Nc5,EA008,"Polygyny, typical cowives pattern",EA008-5,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +105556,Nc6,EA008,Small extended,EA008-7,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +105557,Nc7,EA008,"Nuclear, limited polygyny",EA008-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +105558,Nc8,EA008,Small extended,EA008-7,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +105559,Nc9,EA008,Small extended,EA008-7,But a nuclear family usually established an independent household after the birth of one to three children,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +105560,Nd1,EA008,Minimal extended,EA008-6,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +105561,Nd10,EA008,Small extended,EA008-7,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +105562,Nd11,EA008,Small extended,EA008-7,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +105563,Nd12,EA008,"Polygyny, typical cowives pattern",EA008-5,"In summer, but in winter, code ""8"", large extended families. Families are made up of polygynous units where co-wives are preferentially sororal, and share a dwelling",ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +105564,Nd13,EA008,Small extended,EA008-7,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +105565,Nd14,EA008,Small extended,EA008-7,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +105566,Nd15,EA008,"Polygyny, typical cowives pattern",EA008-5,But large communal dwellings in the winter,clineetal1938,,1880,EthnographicAtlas_1967_p110, +105567,Nd16,EA008,"Nuclear, limited polygyny",EA008-2,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +105568,Nd17,EA008,"Nuclear, limited polygyny",EA008-2,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +105569,Nd18,EA008,Small extended,EA008-7,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +105570,Nd19,EA008,"Nuclear, limited polygyny",EA008-2,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +105571,Nd2,EA008,"Nuclear, limited polygyny",EA008-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +105572,Nd20,EA008,Large extended,EA008-8,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +105573,Nd21,EA008,"Nuclear, limited polygyny",EA008-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +105574,Nd22,EA008,"Nuclear, limited polygyny",EA008-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +105575,Nd23,EA008,"Nuclear, limited polygyny",EA008-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +105576,Nd24,EA008,"Polygyny, typical cowives pattern",EA008-5,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +105577,Nd25,EA008,"Nuclear, limited polygyny",EA008-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +105578,Nd26,EA008,"Nuclear, monogamous",EA008-1,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +105579,Nd27,EA008,"Nuclear, limited polygyny",EA008-2,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +105580,Nd28,EA008,"Nuclear, limited polygyny",EA008-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +105581,Nd29,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +105582,Nd3,EA008,Large extended,EA008-8,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +105583,Nd30,EA008,Small extended,EA008-7,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +105584,Nd31,EA008,"Nuclear, limited polygyny",EA008-2,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +105585,Nd32,EA008,"Nuclear, limited polygyny",EA008-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +105586,Nd33,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +105587,Nd34,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +105588,Nd35,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +105589,Nd36,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +105590,Nd37,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +105591,Nd38,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +105592,Nd39,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +105593,Nd4,EA008,Minimal extended,EA008-6,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +105594,Nd40,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +105595,Nd41,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +105596,Nd42,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +105597,Nd43,EA008,"Nuclear, limited polygyny",EA008-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +105598,Nd44,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +105599,Nd45,EA008,"Nuclear, limited polygyny",EA008-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +105600,Nd46,EA008,"Nuclear, limited polygyny",EA008-2,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +105601,Nd47,EA008,"Nuclear, limited polygyny",EA008-2,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +105602,Nd48,EA008,"Nuclear, limited polygyny",EA008-2,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +105603,Nd49,EA008,"Nuclear, limited polygyny",EA008-2,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +105604,Nd5,EA008,Small extended,EA008-7,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +105605,Nd50,EA008,"Nuclear, limited polygyny",EA008-2,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +105606,Nd51,EA008,"Nuclear, limited polygyny",EA008-2,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +105607,Nd52,EA008,"Nuclear, limited polygyny",EA008-2,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +105608,Nd53,EA008,"Nuclear, limited polygyny",EA008-2,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +105609,Nd54,EA008,"Nuclear, monogamous",EA008-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105610,Nd55,EA008,"Nuclear, limited polygyny",EA008-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +105611,Nd56,EA008,"Nuclear, limited polygyny",EA008-2,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +105612,Nd57,EA008,"Nuclear, limited polygyny",EA008-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +105613,Nd58,EA008,"Nuclear, limited polygyny",EA008-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +105614,Nd59,EA008,"Nuclear, limited polygyny",EA008-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +105615,Nd6,EA008,"Nuclear, limited polygyny",EA008-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +105616,Nd60,EA008,"Nuclear, limited polygyny",EA008-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +105617,Nd61,EA008,"Nuclear, limited polygyny",EA008-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +105618,Nd62,EA008,"Nuclear, limited polygyny",EA008-2,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +105619,Nd63,EA008,"Nuclear, limited polygyny",EA008-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +105620,Nd64,EA008,Small extended,EA008-7,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +105621,Nd65,EA008,Small extended,EA008-7,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +105622,Nd66,EA008,"Nuclear, limited polygyny",EA008-2,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +105623,Nd67,EA008,"Polygyny, typical cowives pattern",EA008-5,,gifford1936,,1870,EthnographicAtlas_1967_p110, +105624,Nd7,EA008,"Nuclear, limited polygyny",EA008-2,But communal dwellings in winter,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +105625,Nd8,EA008,Small extended,EA008-7,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +105626,Nd9,EA008,Small extended,EA008-7,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +105627,Ne1,EA008,"Polygyny, typical cowives pattern",EA008-5,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +105628,Ne10,EA008,Small extended,EA008-7,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +105629,Ne11,EA008,"Polygyny, typical cowives pattern",EA008-5,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +105630,Ne12,EA008,Large extended,EA008-8,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +105631,Ne13,EA008,"Polygyny, typical cowives pattern",EA008-5,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +105632,Ne14,EA008,"Nuclear, limited polygyny",EA008-2,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +105633,Ne15,EA008,Small extended,EA008-7,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +105634,Ne16,EA008,"Nuclear, limited polygyny",EA008-2,But a shelter often accompanied two families,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +105635,Ne17,EA008,"Polygyny, typical cowives pattern",EA008-5,"""The basic economic and social group . . . was a group of brothers and their wives and children""",lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +105636,Ne18,EA008,"Polygyny, typical cowives pattern",EA008-5,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +105637,Ne19,EA008,"Nuclear, limited polygyny",EA008-2,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +105638,Ne2,EA008,Large extended,EA008-8,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +105639,Ne20,EA008,"Polygyny, atypical cowives pattern",EA008-4,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +105640,Ne21,EA008,?,EA008-NA,,,,,, +105641,Ne3,EA008,Large extended,EA008-8,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +105642,Ne4,EA008,"Polygyny, typical cowives pattern",EA008-5,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +105643,Ne5,EA008,Large extended,EA008-8,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +105644,Ne6,EA008,Small extended,EA008-7,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +105645,Ne7,EA008,"Polygyny, typical cowives pattern",EA008-5,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +105646,Ne8,EA008,Small extended,EA008-7,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +105647,Ne9,EA008,Large extended,EA008-8,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +105648,Nf10,EA008,"Nuclear, limited polygyny",EA008-2,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +105649,Nf11,EA008,"Nuclear, limited polygyny",EA008-2,,whitman1937,,1870,EthnographicAtlas_1967_p114, +105650,Nf12,EA008,"Nuclear, limited polygyny",EA008-2,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +105651,Nf13,EA008,Small extended,EA008-7,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105652,Nf14,EA008,Small extended,EA008-7,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +105653,Nf15,EA008,"Polygyny, atypical cowives pattern",EA008-4,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +105654,Nf2,EA008,Small extended,EA008-7,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +105655,Nf3,EA008,"Nuclear, limited polygyny",EA008-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +105656,Nf4,EA008,"Polygyny, typical cowives pattern",EA008-5,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +105657,Nf5,EA008,Small extended,EA008-7,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +105658,Nf6,EA008,Large extended,EA008-8,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +105659,Nf7,EA008,Large extended,EA008-8,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105660,Nf8,EA008,Large extended,EA008-8,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +105661,Nf9,EA008,Small extended,EA008-7,"In Murdock (1965a) he codes this as 'Polygyny, atypical cowives pattern' (code ""4"") with the comment ""Entry follows Keesing; Spindler reports patrilocal extended family hunting groups."" In EA coded as it is here.",hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +105662,Ng1,EA008,Large extended,EA008-8,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +105663,Ng10,EA008,Large extended,EA008-8,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +105664,Ng11,EA008,"Nuclear, limited polygyny",EA008-2,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +105665,Ng12,EA008,"Nuclear, limited polygyny",EA008-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +105666,Ng13,EA008,?,EA008-NA,,,,,, +105667,Ng14,EA008,"Nuclear, limited polygyny",EA008-2,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +105668,Ng15,EA008,"Nuclear, limited polygyny",EA008-2,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +105669,Ng2,EA008,"Nuclear, monogamous",EA008-1,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +105670,Ng3,EA008,Large extended,EA008-8,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +105671,Ng4,EA008,"Nuclear, limited polygyny",EA008-2,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +105672,Ng5,EA008,Small extended,EA008-7,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +105673,Ng6,EA008,Large extended,EA008-8,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +105674,Ng7,EA008,Small extended,EA008-7,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +105675,Ng8,EA008,Large extended,EA008-8,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +105676,Ng9,EA008,"Nuclear, limited polygyny",EA008-2,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +105677,Nh1,EA008,Small extended,EA008-7,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +105678,Nh10,EA008,"Nuclear, monogamous",EA008-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +105679,Nh11,EA008,"Nuclear, monogamous",EA008-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +105680,Nh12,EA008,Small extended,EA008-7,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +105681,Nh13,EA008,Large extended,EA008-8,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +105682,Nh14,EA008,Large extended,EA008-8,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +105683,Nh15,EA008,Small extended,EA008-7,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +105684,Nh16,EA008,Small extended,EA008-7,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105685,Nh17,EA008,Small extended,EA008-7,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +105686,Nh18,EA008,Large extended,EA008-8,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105687,Nh19,EA008,"Nuclear, limited polygyny",EA008-2,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +105688,Nh2,EA008,Small extended,EA008-7,,dozier1954,,1950,EthnographicAtlas_1967_p114, +105689,Nh20,EA008,"Nuclear, limited polygyny",EA008-2,,gifford1931,,1860,EthnographicAtlas_1967_p114, +105690,Nh21,EA008,"Nuclear, limited polygyny",EA008-2,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105691,Nh22,EA008,"Nuclear, monogamous",EA008-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +105692,Nh23,EA008,"Nuclear, limited polygyny",EA008-2,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +105693,Nh24,EA008,Large extended,EA008-8,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +105694,Nh25,EA008,"Nuclear, monogamous",EA008-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +105695,Nh26,EA008,"Nuclear, monogamous",EA008-1,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +105696,Nh27,EA008,Small extended,EA008-7,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +105697,Nh3,EA008,Small extended,EA008-7,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +105698,Nh4,EA008,Large extended,EA008-8,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +105699,Nh5,EA008,"Nuclear, limited polygyny",EA008-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +105700,Nh6,EA008,"Nuclear, monogamous",EA008-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +105701,Nh7,EA008,Small extended,EA008-7,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +105702,Nh8,EA008,"Nuclear, monogamous",EA008-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +105703,Nh9,EA008,"Nuclear, monogamous",EA008-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +105704,Ni1,EA008,"Nuclear, limited polygyny",EA008-2,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +105705,Ni2,EA008,Small extended,EA008-7,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +105706,Ni3,EA008,Small extended,EA008-7,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +105707,Ni4,EA008,Small extended,EA008-7,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +105708,Ni5,EA008,"Nuclear, monogamous",EA008-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +105709,Ni6,EA008,Small extended,EA008-7,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +105710,Ni7,EA008,Small extended,EA008-7,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +105711,Ni8,EA008,"Nuclear, monogamous",EA008-1,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +105712,Ni9,EA008,?,EA008-NA,,,,,, +105713,Nj1,EA008,Minimal extended,EA008-6,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105714,Nj10,EA008,"Nuclear, monogamous",EA008-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105715,Nj11,EA008,"Nuclear, monogamous",EA008-1,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +105716,Nj12,EA008,?,EA008-NA,,,,,, +105717,Nj13,EA008,?,EA008-NA,,,,,, +105718,Nj14,EA008,?,EA008-NA,,,,,, +105719,Nj2,EA008,"Nuclear, limited polygyny",EA008-2,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +105720,Nj3,EA008,"Polygyny, typical cowives pattern",EA008-5,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +105721,Nj4,EA008,?,EA008-NA,,,,,, +105722,Nj5,EA008,"Nuclear, limited polygyny",EA008-2,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +105723,Nj6,EA008,Small extended,EA008-7,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +105724,Nj7,EA008,Small extended,EA008-7,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105725,Nj8,EA008,Small extended,EA008-7,,foster1948,,1500,EthnographicAtlas_1967_p118, +105726,Nj9,EA008,Small extended,EA008-7,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +105727,Sa1,EA008,Large extended,EA008-8,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +105728,Sa10,EA008,Small extended,EA008-7,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +105729,Sa11,EA008,"Nuclear, monogamous",EA008-1,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +105730,Sa12,EA008,"Polygyny, atypical cowives pattern",EA008-4,,stone1948,,1948,EthnographicAtlas_1967_p118, +105731,Sa13,EA008,"Nuclear, limited polygyny",EA008-2,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +105732,Sa14,EA008,Large extended,EA008-8,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +105733,Sa15,EA008,"Nuclear, monogamous",EA008-1,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +105734,Sa16,EA008,"Polygyny, atypical cowives pattern",EA008-4,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +105735,Sa17,EA008,"Nuclear, monogamous",EA008-1,"Extended families, though considered the ideal, constitute only 35 per cent of all households",gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +105736,Sa2,EA008,Small extended,EA008-7,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105737,Sa3,EA008,Small extended,EA008-7,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +105738,Sa4,EA008,"Nuclear, monogamous",EA008-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +105739,Sa5,EA008,"Nuclear, monogamous",EA008-1,"But today code ""2"", independent nuclear families with occasional polygyny",gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +105740,Sa6,EA008,"Nuclear, monogamous",EA008-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +105741,Sa7,EA008,"Nuclear, limited polygyny",EA008-2,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +105742,Sa8,EA008,Small extended,EA008-7,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +105743,Sa9,EA008,Large extended,EA008-8,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +105744,Sb1,EA008,Large extended,EA008-8,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +105745,Sb2,EA008,"Nuclear, limited polygyny",EA008-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +105746,Sb3,EA008,Small extended,EA008-7,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +105747,Sb4,EA008,Small extended,EA008-7,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +105748,Sb5,EA008,"Nuclear, limited polygyny",EA008-2,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +105749,Sb6,EA008,Small extended,EA008-7,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +105750,Sb7,EA008,"Nuclear, limited polygyny",EA008-2,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +105751,Sb8,EA008,Small extended,EA008-7,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +105752,Sb9,EA008,"Nuclear, limited polygyny",EA008-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +105753,Sc1,EA008,Large extended,EA008-8,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +105754,Sc10,EA008,"Nuclear, limited polygyny",EA008-2,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +105755,Sc11,EA008,"Polygyny, atypical cowives pattern",EA008-4,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +105756,Sc12,EA008,"Nuclear, limited polygyny",EA008-2,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +105757,Sc13,EA008,"Polygyny, typical cowives pattern",EA008-5,But the inhabitants of a communal dwelling approximate an extended family,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +105758,Sc14,EA008,"Polygyny, typical cowives pattern",EA008-5,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +105759,Sc15,EA008,"Nuclear, limited polygyny",EA008-2,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +105760,Sc16,EA008,Small extended,EA008-7,"Each nuclear family occupies a separate apartment in a communal dwelling, but a married man is subject to the authority of his father-in-law",barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +105761,Sc17,EA008,Small extended,EA008-7,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +105762,Sc18,EA008,Large extended,EA008-8,But co-wives commonly live in different villages,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +105763,Sc2,EA008,Minimal extended,EA008-6,,leedsnd,,1950,EthnographicAtlas_1967_p118, +105764,Sc3,EA008,"Nuclear, limited polygyny",EA008-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +105765,Sc4,EA008,Small extended,EA008-7,"Nuclear families households, however, are normally grouped into larger extended families, of which there are usually two or three in a band",wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +105766,Sc5,EA008,"Polygyny, atypical cowives pattern",EA008-4,Each polygynous family has its own section in a communal house,farabee1918,,1900,EthnographicAtlas_1967_p118, +105767,Sc6,EA008,"Polygyny, typical cowives pattern",EA008-5,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105768,Sc7,EA008,"Nuclear, limited polygyny",EA008-2,There were formerly communal dwellings,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +105769,Sc8,EA008,"Nuclear, limited polygyny",EA008-2,But the inhabitants of the communal dwelling may constitute a matrilocal extended family,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +105770,Sc9,EA008,"Nuclear, monogamous",EA008-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +105771,Sd1,EA008,Large extended,EA008-8,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105772,Sd2,EA008,Large extended,EA008-8,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +105773,Sd3,EA008,"Nuclear, monogamous",EA008-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +105774,Sd4,EA008,"Nuclear, limited polygyny",EA008-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +105775,Sd5,EA008,Small extended,EA008-7,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +105776,Sd6,EA008,Large extended,EA008-8,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +105777,Sd7,EA008,"Nuclear, limited polygyny",EA008-2,But an entire village occupies a communal dwelling,fock1963,,1950,EthnographicAtlas_1967_p118, +105778,Sd8,EA008,Large extended,EA008-8,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +105779,Sd9,EA008,Large extended,EA008-8,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105780,Se1,EA008,Large extended,EA008-8,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +105781,Se10,EA008,Large extended,EA008-8,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +105782,Se11,EA008,"Nuclear, limited polygyny",EA008-2,,prost1965,,1960,EthnographicAtlas_1967_p122, +105783,Se12,EA008,"Polygyny, atypical cowives pattern",EA008-4,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +105784,Se2,EA008,"Nuclear, limited polygyny",EA008-2,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +105785,Se3,EA008,"Polygyny, atypical cowives pattern",EA008-4,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +105786,Se4,EA008,"Nuclear, monogamous",EA008-1,But an entire settlement occupies a communal dwelling,fejos1943,,1940,EthnographicAtlas_1967_p118, +105787,Se5,EA008,"Nuclear, limited polygyny",EA008-2,But each family has a separate apartment in a communal dwelling,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +105788,Se6,EA008,"Nuclear, limited polygyny",EA008-2,Each family has a separate apartment in a communal dwelling,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +105789,Se7,EA008,"Nuclear, monogamous",EA008-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105790,Se8,EA008,Minimal extended,EA008-6,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +105791,Se9,EA008,Small extended,EA008-7,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +105792,Sf1,EA008,"Nuclear, monogamous",EA008-1,Only the higher social strata practiced polygyny,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +105793,Sf2,EA008,Large extended,EA008-8,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +105794,Sf3,EA008,Small extended,EA008-7,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +105795,Sf4,EA008,"Polygyny, atypical cowives pattern",EA008-4,Entry follows Wilbert; Rochereau reports monogamy,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +105796,Sf5,EA008,"Polygyny, atypical cowives pattern",EA008-4,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +105797,Sf6,EA008,"Polygyny, atypical cowives pattern",EA008-4,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +105798,Sf7,EA008,"Polygyny, atypical cowives pattern",EA008-4,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +105799,Sf8,EA008,"Nuclear, limited polygyny",EA008-2,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +105800,Sf9,EA008,"Nuclear, limited polygyny",EA008-2,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +105801,Sg1,EA008,"Nuclear, limited polygyny",EA008-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +105802,Sg2,EA008,Small extended,EA008-7,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105803,Sg3,EA008,"Nuclear, limited polygyny",EA008-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +105804,Sg4,EA008,Small extended,EA008-7,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +105805,Sg5,EA008,"Nuclear, limited polygyny",EA008-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105806,Sh1,EA008,Small extended,EA008-7,"But today code ""2"", independent nuclear families with occasional polygyny",karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +105807,Sh2,EA008,Large extended,EA008-8,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +105808,Sh3,EA008,"Nuclear, limited polygyny",EA008-2,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +105809,Sh4,EA008,Small extended,EA008-7,,oberg1949,,1940,EthnographicAtlas_1967_p122, +105810,Sh5,EA008,"Nuclear, monogamous",EA008-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +105811,Sh6,EA008,"Nuclear, monogamous",EA008-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +105812,Sh7,EA008,Small extended,EA008-7,There were formerly communal dwellings,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +105813,Sh8,EA008,Small extended,EA008-7,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +105814,Sh9,EA008,Large extended,EA008-8,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +105815,Si1,EA008,Small extended,EA008-7,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105816,Si10,EA008,"Nuclear, limited polygyny",EA008-2,But there are communal dwellings; each occupied by about four nuclear families on the average,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +105817,Si2,EA008,Large extended,EA008-8,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +105818,Si3,EA008,Small extended,EA008-7,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105819,Si4,EA008,"Nuclear, limited polygyny",EA008-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +105820,Si5,EA008,Large extended,EA008-8,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +105821,Si6,EA008,"Polygyny, typical cowives pattern",EA008-5,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +105822,Si7,EA008,Large extended,EA008-8,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +105823,Si8,EA008,?,EA008-NA,,,,,, +105824,Si9,EA008,?,EA008-NA,"Communal dwellings, each occupied by several families",levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +105825,Sj1,EA008,Small extended,EA008-7,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +105826,Sj10,EA008,"Nuclear, monogamous",EA008-1,"Marital composition of family units within large extended families is now monogamous, but formerly ""occasional polygyny"" was practiced (formerly, related variable EA009 = code ""2"")",ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105827,Sj11,EA008,Small extended,EA008-7,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +105828,Sj2,EA008,"Nuclear, limited polygyny",EA008-2,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +105829,Sj3,EA008,"Polygyny, atypical cowives pattern",EA008-4,"Henry reports an incidence of 60 percent for monogamy, 18 per cent for polygyny, and 8 per cent for group marriage",henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +105830,Sj4,EA008,Small extended,EA008-7,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +105831,Sj5,EA008,Large extended,EA008-8,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +105832,Sj6,EA008,Large extended,EA008-8,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +105833,Sj7,EA008,Large extended,EA008-8,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +105834,Sj8,EA008,Large extended,EA008-8,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +105835,Sj9,EA008,"Nuclear, monogamous",EA008-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +105836,ch12,EA008,"Nuclear, limited polygyny",EA008-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +105837,ch13,EA008,Large extended,EA008-8,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +105838,ch14,EA008,"Nuclear, monogamous",EA008-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +105839,ch15,EA008,"Nuclear, monogamous",EA008-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +105840,ch16,EA008,"Nuclear, monogamous",EA008-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +105841,ch17,EA008,Small extended,EA008-7,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +105842,ch18,EA008,"Nuclear, monogamous",EA008-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +105843,ch19,EA008,Large extended,EA008-8,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +105844,ch20,EA008,"Nuclear, limited polygyny",EA008-2,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +105845,ch21,EA008,"Nuclear, monogamous",EA008-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +105846,ch22,EA008,"Nuclear, limited polygyny",EA008-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +105847,ch23,EA008,"Nuclear, monogamous",EA008-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +105848,ch24,EA008,"Nuclear, monogamous",EA008-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +105849,ch25,EA008,"Nuclear, monogamous",EA008-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +105850,ch26,EA008,"Nuclear, monogamous",EA008-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +105851,ch27,EA008,"Nuclear, monogamous",EA008-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +105852,ch28,EA008,"Nuclear, monogamous",EA008-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +105853,ec12,EA008,Large extended,EA008-8,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +105854,ec13,EA008,Small extended,EA008-7,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +105855,ec14,EA008,Large extended,EA008-8,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +105856,ec15,EA008,"Nuclear, monogamous",EA008-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +105857,ec16,EA008,"Nuclear, monogamous",EA008-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +105858,ec17,EA008,"Nuclear, limited polygyny",EA008-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +105859,ec18,EA008,"Nuclear, limited polygyny",EA008-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +105860,ec19,EA008,"Nuclear, limited polygyny",EA008-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +105861,ec20,EA008,"Nuclear, limited polygyny",EA008-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +105862,ec21,EA008,"Nuclear, limited polygyny",EA008-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +105863,Aa1,EA080,Floor level with ground,EA080-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +105864,Aa2,EA080,Floor level with ground,EA080-2,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +105865,Aa3,EA080,Floor level with ground,EA080-2,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +105866,Aa4,EA080,Floor level with ground,EA080-2,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +105867,Aa5,EA080,Floor level with ground,EA080-2,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +105868,Aa6,EA080,Floor level with ground,EA080-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +105869,Aa7,EA080,Floor level with ground,EA080-2,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +105870,Aa8,EA080,Floor level with ground,EA080-2,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +105871,Aa9,EA080,Floor level with ground,EA080-2,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +105872,Ab1,EA080,Floor level with ground,EA080-2,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +105873,Ab10,EA080,Floor level with ground,EA080-2,,hunter1936,,1936,EthnographicAtlas_1967_p65, +105874,Ab11,EA080,Floor level with ground,EA080-2,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +105875,Ab12,EA080,Floor level with ground,EA080-2,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +105876,Ab13,EA080,Floor level with ground,EA080-2,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +105877,Ab14,EA080,Floor level with ground,EA080-2,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +105878,Ab15,EA080,Floor level with ground,EA080-2,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +105879,Ab16,EA080,Floor level with ground,EA080-2,,earthy1933,,1930,EthnographicAtlas_1967_p65, +105880,Ab17,EA080,Floor level with ground,EA080-2,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +105881,Ab18,EA080,Floor level with ground,EA080-2,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +105882,Ab19,EA080,Floor level with ground,EA080-2,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +105883,Ab2,EA080,Floor level with ground,EA080-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +105884,Ab20,EA080,Floor level with ground,EA080-2,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +105885,Ab21a,EA080,Floor level with ground,EA080-2,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +105886,Ab21b,EA080,?,EA080-NA,,,,,, +105887,Ab22,EA080,?,EA080-NA,,,,,, +105888,Ab3,EA080,Floor level with ground,EA080-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +105889,Ab4,EA080,Floor level with ground,EA080-2,,junod1927,,1920,EthnographicAtlas_1967_p65, +105890,Ab5,EA080,Floor level with ground,EA080-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +105891,Ab6,EA080,Floor level with ground,EA080-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +105892,Ab7,EA080,Floor level with ground,EA080-2,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +105893,Ab8,EA080,Floor level with ground,EA080-2,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +105894,Ab9,EA080,Floor level with ground,EA080-2,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +105895,Ac1,EA080,Floor level with ground,EA080-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +105896,Ac10,EA080,Floor level with ground,EA080-2,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +105897,Ac11,EA080,Floor level with ground,EA080-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +105898,Ac12,EA080,Floor level with ground,EA080-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +105899,Ac13,EA080,Floor level with ground,EA080-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +105900,Ac14,EA080,Floor level with ground,EA080-2,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +105901,Ac15,EA080,Floor level with ground,EA080-2,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +105902,Ac16,EA080,Floor level with ground,EA080-2,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +105903,Ac17,EA080,Floor level with ground,EA080-2,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +105904,Ac18,EA080,Floor level with ground,EA080-2,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +105905,Ac19,EA080,Floor level with ground,EA080-2,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +105906,Ac2,EA080,Floor level with ground,EA080-2,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +105907,Ac20,EA080,Floor level with ground,EA080-2,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +105908,Ac21,EA080,Floor level with ground,EA080-2,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +105909,Ac22,EA080,Floor level with ground,EA080-2,,mertens1935,,1930,EthnographicAtlas_1967_p65, +105910,Ac23,EA080,Floor level with ground,EA080-2,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +105911,Ac24,EA080,Floor level with ground,EA080-2,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +105912,Ac25,EA080,Floor level with ground,EA080-2,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +105913,Ac26,EA080,Floor level with ground,EA080-2,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +105914,Ac27,EA080,Floor level with ground,EA080-2,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +105915,Ac28,EA080,Floor level with ground,EA080-2,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +105916,Ac29,EA080,Floor level with ground,EA080-2,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +105917,Ac3,EA080,Floor level with ground,EA080-2,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +105918,Ac30,EA080,Floor level with ground,EA080-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +105919,Ac31,EA080,Floor level with ground,EA080-2,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +105920,Ac32,EA080,Floor level with ground,EA080-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +105921,Ac33,EA080,Floor level with ground,EA080-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +105922,Ac34,EA080,Floor level with ground,EA080-2,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +105923,Ac35,EA080,?,EA080-NA,,,,,, +105924,Ac36,EA080,Floor level with ground,EA080-2,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +105925,Ac37,EA080,Floor level with ground,EA080-2,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +105926,Ac38,EA080,Floor level with ground,EA080-2,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +105927,Ac39,EA080,Floor level with ground,EA080-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +105928,Ac4,EA080,Floor level with ground,EA080-2,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +105929,Ac40,EA080,Floor level with ground,EA080-2,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +105930,Ac41,EA080,Floor level with ground,EA080-2,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +105931,Ac42,EA080,Floor level with ground,EA080-2,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +105932,Ac43,EA080,?,EA080-NA,,,,,, +105933,Ac5,EA080,Floor level with ground,EA080-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +105934,Ac6,EA080,Floor level with ground,EA080-2,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +105935,Ac7,EA080,Floor level with ground,EA080-2,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +105936,Ac8,EA080,Floor level with ground,EA080-2,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +105937,Ac9,EA080,Floor level with ground,EA080-2,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +105938,Ad1,EA080,Floor level with ground,EA080-2,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +105939,Ad10,EA080,Floor level with ground,EA080-2,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +105940,Ad11,EA080,Floor level with ground,EA080-2,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +105941,Ad12,EA080,Floor level with ground,EA080-2,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +105942,Ad13,EA080,Floor level with ground,EA080-2,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +105943,Ad14,EA080,Floor level with ground,EA080-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +105944,Ad15,EA080,Floor level with ground,EA080-2,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +105945,Ad16,EA080,Floor level with ground,EA080-2,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +105946,Ad17,EA080,Floor level with ground,EA080-2,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +105947,Ad18,EA080,Floor level with ground,EA080-2,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +105948,Ad19,EA080,Floor level with ground,EA080-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +105949,Ad2,EA080,Floor level with ground,EA080-2,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +105950,Ad20,EA080,Floor level with ground,EA080-2,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +105951,Ad21,EA080,Floor level with ground,EA080-2,,maurice193538,,1930,EthnographicAtlas_1967_p69, +105952,Ad22,EA080,Floor level with ground,EA080-2,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +105953,Ad23,EA080,Floor level with ground,EA080-2,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +105954,Ad24,EA080,Floor level with ground,EA080-2,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +105955,Ad25,EA080,Floor level with ground,EA080-2,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +105956,Ad26,EA080,Subterranean,EA080-1,,sick1916,,1910,EthnographicAtlas_1967_p69, +105957,Ad27,EA080,Floor level with ground,EA080-2,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +105958,Ad28,EA080,Floor level with ground,EA080-2,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +105959,Ad29,EA080,Floor level with ground,EA080-2,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +105960,Ad3,EA080,Floor level with ground,EA080-2,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +105961,Ad30,EA080,Floor level with ground,EA080-2,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +105962,Ad31,EA080,Floor level with ground,EA080-2,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +105963,Ad32,EA080,Floor level with ground,EA080-2,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +105964,Ad33,EA080,Floor level with ground,EA080-2,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +105965,Ad34,EA080,Floor level with ground,EA080-2,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +105966,Ad35,EA080,Floor level with ground,EA080-2,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +105967,Ad36,EA080,Floor level with ground,EA080-2,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +105968,Ad37,EA080,Floor level with ground,EA080-2,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +105969,Ad38,EA080,Floor level with ground,EA080-2,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +105970,Ad39,EA080,Floor level with ground,EA080-2,,gray1963,,1950,EthnographicAtlas_1967_p69, +105971,Ad4,EA080,Floor level with ground,EA080-2,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +105972,Ad40,EA080,Floor level with ground,EA080-2,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +105973,Ad41,EA080,Floor level with ground,EA080-2,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +105974,Ad42,EA080,Floor level with ground,EA080-2,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +105975,Ad43,EA080,Floor level with ground,EA080-2,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +105976,Ad44,EA080,Floor level with ground,EA080-2,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +105977,Ad45,EA080,Floor level with ground,EA080-2,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +105978,Ad46,EA080,Floor level with ground,EA080-2,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +105979,Ad47,EA080,Floor level with ground,EA080-2,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +105980,Ad48,EA080,Floor level with ground,EA080-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +105981,Ad49,EA080,Floor level with ground,EA080-2,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +105982,Ad5,EA080,Floor level with ground,EA080-2,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +105983,Ad50,EA080,Floor level with ground,EA080-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +105984,Ad51,EA080,Floor level with ground,EA080-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +105985,Ad6,EA080,Floor level with ground,EA080-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +105986,Ad7,EA080,Floor level with ground,EA080-2,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +105987,Ad8,EA080,Floor level with ground,EA080-2,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +105988,Ad9,EA080,Floor level with ground,EA080-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +105989,Ae1,EA080,Floor level with ground,EA080-2,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +105990,Ae10,EA080,Floor level with ground,EA080-2,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +105991,Ae11,EA080,Floor level with ground,EA080-2,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +105992,Ae12,EA080,Elevated slightly,EA080-3,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +105993,Ae13,EA080,Floor level with ground,EA080-2,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +105994,Ae14,EA080,Floor level with ground,EA080-2,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +105995,Ae15,EA080,Floor level with ground,EA080-2,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +105996,Ae16,EA080,Floor level with ground,EA080-2,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +105997,Ae17,EA080,Floor level with ground,EA080-2,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +105998,Ae18,EA080,Floor level with ground,EA080-2,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +105999,Ae19,EA080,Floor level with ground,EA080-2,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +106000,Ae2,EA080,Floor level with ground,EA080-2,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +106001,Ae20,EA080,Floor level with ground,EA080-2,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +106002,Ae21,EA080,Floor level with ground,EA080-2,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +106003,Ae22,EA080,Floor level with ground,EA080-2,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +106004,Ae23,EA080,Floor level with ground,EA080-2,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +106005,Ae24,EA080,Floor level with ground,EA080-2,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +106006,Ae25,EA080,Floor level with ground,EA080-2,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +106007,Ae26,EA080,Floor level with ground,EA080-2,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +106008,Ae27,EA080,Floor level with ground,EA080-2,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +106009,Ae28,EA080,Floor level with ground,EA080-2,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +106010,Ae29,EA080,Floor level with ground,EA080-2,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +106011,Ae3,EA080,Floor level with ground,EA080-2,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +106012,Ae30,EA080,Floor level with ground,EA080-2,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +106013,Ae31,EA080,Floor level with ground,EA080-2,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +106014,Ae32,EA080,Floor level with ground,EA080-2,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +106015,Ae33,EA080,Floor level with ground,EA080-2,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +106016,Ae34,EA080,Floor level with ground,EA080-2,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +106017,Ae35,EA080,Floor level with ground,EA080-2,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +106018,Ae36,EA080,Floor level with ground,EA080-2,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +106019,Ae37,EA080,Floor level with ground,EA080-2,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +106020,Ae38,EA080,Floor level with ground,EA080-2,,wijnant192526,,1920,EthnographicAtlas_1967_p69, +106021,Ae39,EA080,Floor level with ground,EA080-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +106022,Ae4,EA080,Floor level with ground,EA080-2,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +106023,Ae40,EA080,Floor level with ground,EA080-2,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +106024,Ae41,EA080,Floor level with ground,EA080-2,,andersson1953,,1940,EthnographicAtlas_1967_p69, +106025,Ae42,EA080,Floor level with ground,EA080-2,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +106026,Ae43,EA080,Floor level with ground,EA080-2,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +106027,Ae44,EA080,?,EA080-NA,,,,,, +106028,Ae45,EA080,Floor level with ground,EA080-2,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +106029,Ae46,EA080,Raised substantially,EA080-4,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +106030,Ae47,EA080,Floor level with ground,EA080-2,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +106031,Ae48,EA080,Floor level with ground,EA080-2,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +106032,Ae49,EA080,Floor level with ground,EA080-2,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +106033,Ae5,EA080,Floor level with ground,EA080-2,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +106034,Ae50,EA080,Floor level with ground,EA080-2,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +106035,Ae51,EA080,Floor level with ground,EA080-2,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +106036,Ae52,EA080,Floor level with ground,EA080-2,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +106037,Ae53,EA080,Floor level with ground,EA080-2,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +106038,Ae54,EA080,Floor level with ground,EA080-2,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +106039,Ae55,EA080,Floor level with ground,EA080-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +106040,Ae56,EA080,Floor level with ground,EA080-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +106041,Ae57,EA080,Floor level with ground,EA080-2,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +106042,Ae58,EA080,Floor level with ground,EA080-2,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +106043,Ae59,EA080,Floor level with ground,EA080-2,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +106044,Ae6,EA080,Floor level with ground,EA080-2,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +106045,Ae7,EA080,Floor level with ground,EA080-2,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +106046,Ae8,EA080,Floor level with ground,EA080-2,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +106047,Ae9,EA080,Floor level with ground,EA080-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +106048,Af1,EA080,Floor level with ground,EA080-2,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +106049,Af10,EA080,Floor level with ground,EA080-2,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +106050,Af11,EA080,Elevated slightly,EA080-3,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +106051,Af12,EA080,Floor level with ground,EA080-2,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +106052,Af13,EA080,Floor level with ground,EA080-2,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +106053,Af14,EA080,Floor level with ground,EA080-2,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +106054,Af15,EA080,Floor level with ground,EA080-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +106055,Af16,EA080,Floor level with ground,EA080-2,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +106056,Af17,EA080,Floor level with ground,EA080-2,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +106057,Af18,EA080,Floor level with ground,EA080-2,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +106058,Af19,EA080,Floor level with ground,EA080-2,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +106059,Af2,EA080,Elevated slightly,EA080-3,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +106060,Af20,EA080,Floor level with ground,EA080-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +106061,Af21,EA080,Floor level with ground,EA080-2,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +106062,Af22,EA080,Elevated slightly,EA080-3,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +106063,Af23,EA080,Elevated slightly,EA080-3,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +106064,Af24,EA080,Floor level with ground,EA080-2,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +106065,Af25,EA080,Floor level with ground,EA080-2,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +106066,Af26,EA080,Floor level with ground,EA080-2,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +106067,Af27,EA080,?,EA080-NA,,,,,, +106068,Af28,EA080,Floor level with ground,EA080-2,,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +106069,Af29,EA080,Floor level with ground,EA080-2,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +106070,Af3,EA080,Floor level with ground,EA080-2,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +106071,Af30,EA080,Floor level with ground,EA080-2,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +106072,Af31,EA080,Floor level with ground,EA080-2,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +106073,Af32,EA080,Floor level with ground,EA080-2,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106074,Af33,EA080,Floor level with ground,EA080-2,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106075,Af34,EA080,Floor level with ground,EA080-2,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106076,Af35,EA080,?,EA080-NA,,,,,, +106077,Af36,EA080,Floor level with ground,EA080-2,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +106078,Af37,EA080,?,EA080-NA,,,,,, +106079,Af38,EA080,Floor level with ground,EA080-2,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +106080,Af39,EA080,Floor level with ground,EA080-2,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +106081,Af4,EA080,Floor level with ground,EA080-2,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +106082,Af40,EA080,Floor level with ground,EA080-2,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +106083,Af41,EA080,Floor level with ground,EA080-2,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +106084,Af42,EA080,Floor level with ground,EA080-2,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +106085,Af43,EA080,Floor level with ground,EA080-2,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +106086,Af44,EA080,?,EA080-NA,,,,,, +106087,Af45,EA080,Floor level with ground,EA080-2,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +106088,Af46,EA080,Floor level with ground,EA080-2,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +106089,Af47,EA080,Raised substantially,EA080-4,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +106090,Af48,EA080,Floor level with ground,EA080-2,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +106091,Af49,EA080,Elevated slightly,EA080-3,,schwab1947,,1940,EthnographicAtlas_1967_p73, +106092,Af5,EA080,Floor level with ground,EA080-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +106093,Af50,EA080,Floor level with ground,EA080-2,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +106094,Af51,EA080,Floor level with ground,EA080-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +106095,Af52,EA080,Floor level with ground,EA080-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +106096,Af53,EA080,Floor level with ground,EA080-2,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +106097,Af54,EA080,Floor level with ground,EA080-2,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +106098,Af55,EA080,?,EA080-NA,,,,,, +106099,Af56,EA080,Floor level with ground,EA080-2,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +106100,Af57,EA080,Floor level with ground,EA080-2,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +106101,Af58,EA080,Elevated slightly,EA080-3,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +106102,Af6,EA080,Floor level with ground,EA080-2,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +106103,Af7,EA080,Floor level with ground,EA080-2,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +106104,Af8,EA080,Floor level with ground,EA080-2,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +106105,Af9,EA080,Floor level with ground,EA080-2,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +106106,Ag1,EA080,Floor level with ground,EA080-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +106107,Ag10,EA080,Floor level with ground,EA080-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +106108,Ag11,EA080,Floor level with ground,EA080-2,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +106109,Ag12,EA080,Floor level with ground,EA080-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +106110,Ag13,EA080,Floor level with ground,EA080-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +106111,Ag14,EA080,Floor level with ground,EA080-2,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +106112,Ag15,EA080,Floor level with ground,EA080-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +106113,Ag16,EA080,Floor level with ground,EA080-2,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +106114,Ag17,EA080,Floor level with ground,EA080-2,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +106115,Ag18,EA080,Floor level with ground,EA080-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +106116,Ag19,EA080,Floor level with ground,EA080-2,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +106117,Ag2,EA080,Floor level with ground,EA080-2,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +106118,Ag20,EA080,Floor level with ground,EA080-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +106119,Ag21,EA080,Floor level with ground,EA080-2,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +106120,Ag22,EA080,Floor level with ground,EA080-2,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +106121,Ag23,EA080,Floor level with ground,EA080-2,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +106122,Ag24,EA080,Floor level with ground,EA080-2,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +106123,Ag25,EA080,Floor level with ground,EA080-2,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +106124,Ag26,EA080,Floor level with ground,EA080-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +106125,Ag27,EA080,Floor level with ground,EA080-2,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +106126,Ag28,EA080,Floor level with ground,EA080-2,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +106127,Ag29,EA080,Floor level with ground,EA080-2,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +106128,Ag3,EA080,Floor level with ground,EA080-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +106129,Ag30,EA080,Floor level with ground,EA080-2,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +106130,Ag31,EA080,Floor level with ground,EA080-2,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +106131,Ag32,EA080,Floor level with ground,EA080-2,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +106132,Ag33,EA080,Floor level with ground,EA080-2,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +106133,Ag34,EA080,Floor level with ground,EA080-2,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +106134,Ag35,EA080,Floor level with ground,EA080-2,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +106135,Ag36,EA080,Floor level with ground,EA080-2,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +106136,Ag37,EA080,Floor level with ground,EA080-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +106137,Ag38,EA080,Floor level with ground,EA080-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +106138,Ag39,EA080,Floor level with ground,EA080-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +106139,Ag4,EA080,Floor level with ground,EA080-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +106140,Ag40,EA080,Floor level with ground,EA080-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +106141,Ag41,EA080,Floor level with ground,EA080-2,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +106142,Ag42,EA080,Floor level with ground,EA080-2,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +106143,Ag43,EA080,Floor level with ground,EA080-2,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +106144,Ag44,EA080,Floor level with ground,EA080-2,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +106145,Ag45,EA080,Floor level with ground,EA080-2,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +106146,Ag46,EA080,Floor level with ground,EA080-2,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +106147,Ag47,EA080,Floor level with ground,EA080-2,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +106148,Ag48,EA080,Floor level with ground,EA080-2,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +106149,Ag49,EA080,Floor level with ground,EA080-2,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +106150,Ag5,EA080,Floor level with ground,EA080-2,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +106151,Ag50,EA080,Floor level with ground,EA080-2,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +106152,Ag51,EA080,Floor level with ground,EA080-2,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +106153,Ag52,EA080,Floor level with ground,EA080-2,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +106154,Ag53,EA080,Floor level with ground,EA080-2,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +106155,Ag54,EA080,Floor level with ground,EA080-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +106156,Ag6,EA080,Floor level with ground,EA080-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +106157,Ag7,EA080,Floor level with ground,EA080-2,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +106158,Ag8,EA080,Floor level with ground,EA080-2,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +106159,Ag9,EA080,Floor level with ground,EA080-2,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +106160,Ah1,EA080,Floor level with ground,EA080-2,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106161,Ah10,EA080,Floor level with ground,EA080-2,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +106162,Ah11,EA080,Floor level with ground,EA080-2,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +106163,Ah12,EA080,Floor level with ground,EA080-2,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +106164,Ah13,EA080,Floor level with ground,EA080-2,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +106165,Ah14,EA080,Floor level with ground,EA080-2,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +106166,Ah15,EA080,Floor level with ground,EA080-2,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +106167,Ah16,EA080,Floor level with ground,EA080-2,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +106168,Ah17,EA080,Floor level with ground,EA080-2,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +106169,Ah18,EA080,Floor level with ground,EA080-2,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +106170,Ah19,EA080,Floor level with ground,EA080-2,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +106171,Ah2,EA080,Floor level with ground,EA080-2,,meek1931a,,1920,EthnographicAtlas_1967_p77, +106172,Ah20,EA080,Floor level with ground,EA080-2,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +106173,Ah21,EA080,Floor level with ground,EA080-2,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106174,Ah22,EA080,Floor level with ground,EA080-2,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +106175,Ah23,EA080,Floor level with ground,EA080-2,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106176,Ah24,EA080,Floor level with ground,EA080-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106177,Ah25,EA080,Floor level with ground,EA080-2,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106178,Ah26,EA080,Floor level with ground,EA080-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106179,Ah27,EA080,?,EA080-NA,,,,,, +106180,Ah28,EA080,Floor level with ground,EA080-2,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +106181,Ah29,EA080,Floor level with ground,EA080-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106182,Ah3,EA080,Floor level with ground,EA080-2,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +106183,Ah30,EA080,Floor level with ground,EA080-2,,meek1931b,,1920,EthnographicAtlas_1967_p77, +106184,Ah31,EA080,Floor level with ground,EA080-2,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +106185,Ah32,EA080,Floor level with ground,EA080-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106186,Ah33,EA080,Floor level with ground,EA080-2,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +106187,Ah34,EA080,Floor level with ground,EA080-2,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +106188,Ah35,EA080,Floor level with ground,EA080-2,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106189,Ah36,EA080,Floor level with ground,EA080-2,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +106190,Ah37,EA080,Floor level with ground,EA080-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106191,Ah38,EA080,Floor level with ground,EA080-2,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +106192,Ah39,EA080,Floor level with ground,EA080-2,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +106193,Ah4,EA080,Floor level with ground,EA080-2,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +106194,Ah5,EA080,Floor level with ground,EA080-2,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +106195,Ah6,EA080,Floor level with ground,EA080-2,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +106196,Ah7,EA080,Floor level with ground,EA080-2,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +106197,Ah8,EA080,Floor level with ground,EA080-2,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +106198,Ah9,EA080,Floor level with ground,EA080-2,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +106199,Ai1,EA080,Floor level with ground,EA080-2,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +106200,Ai10,EA080,Floor level with ground,EA080-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +106201,Ai11,EA080,Floor level with ground,EA080-2,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +106202,Ai12,EA080,Floor level with ground,EA080-2,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +106203,Ai13,EA080,Floor level with ground,EA080-2,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +106204,Ai14,EA080,Floor level with ground,EA080-2,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p77, +106205,Ai15,EA080,Floor level with ground,EA080-2,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +106206,Ai16,EA080,Elevated slightly,EA080-3,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +106207,Ai17,EA080,Floor level with ground,EA080-2,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +106208,Ai18,EA080,Floor level with ground,EA080-2,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +106209,Ai19,EA080,Floor level with ground,EA080-2,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +106210,Ai2,EA080,Floor level with ground,EA080-2,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +106211,Ai20,EA080,Floor level with ground,EA080-2,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +106212,Ai21,EA080,Floor level with ground,EA080-2,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +106213,Ai22,EA080,Floor level with ground,EA080-2,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +106214,Ai23,EA080,Floor level with ground,EA080-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +106215,Ai24,EA080,Floor level with ground,EA080-2,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +106216,Ai25,EA080,Floor level with ground,EA080-2,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +106217,Ai26,EA080,Floor level with ground,EA080-2,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +106218,Ai27,EA080,Floor level with ground,EA080-2,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +106219,Ai28,EA080,Floor level with ground,EA080-2,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +106220,Ai29,EA080,Floor level with ground,EA080-2,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +106221,Ai3,EA080,Floor level with ground,EA080-2,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +106222,Ai30,EA080,Floor level with ground,EA080-2,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +106223,Ai31,EA080,Floor level with ground,EA080-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +106224,Ai32,EA080,Floor level with ground,EA080-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +106225,Ai33,EA080,Floor level with ground,EA080-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +106226,Ai34,EA080,Floor level with ground,EA080-2,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +106227,Ai35,EA080,Floor level with ground,EA080-2,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +106228,Ai36,EA080,Raised substantially,EA080-4,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +106229,Ai37,EA080,Floor level with ground,EA080-2,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +106230,Ai38,EA080,Floor level with ground,EA080-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +106231,Ai39,EA080,Floor level with ground,EA080-2,,nadel1947,,1940,EthnographicAtlas_1967_p77, +106232,Ai4,EA080,?,EA080-NA,,,,,, +106233,Ai40,EA080,Elevated slightly,EA080-3,,nadel1947,,1940,EthnographicAtlas_1967_p77, +106234,Ai41,EA080,Floor level with ground,EA080-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +106235,Ai42,EA080,Floor level with ground,EA080-2,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +106236,Ai43,EA080,Floor level with ground,EA080-2,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +106237,Ai44,EA080,Floor level with ground,EA080-2,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p77, +106238,Ai45,EA080,Floor level with ground,EA080-2,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +106239,Ai46,EA080,Floor level with ground,EA080-2,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +106240,Ai47,EA080,Floor level with ground,EA080-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +106241,Ai5,EA080,Floor level with ground,EA080-2,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +106242,Ai6,EA080,?,EA080-NA,,,,,, +106243,Ai7,EA080,Floor level with ground,EA080-2,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +106244,Ai8,EA080,Floor level with ground,EA080-2,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +106245,Ai9,EA080,Floor level with ground,EA080-2,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +106246,Aj1,EA080,Floor level with ground,EA080-2,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +106247,Aj10,EA080,?,EA080-NA,,,,,, +106248,Aj11,EA080,Raised substantially,EA080-4,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +106249,Aj12,EA080,Floor level with ground,EA080-2,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +106250,Aj13,EA080,Floor level with ground,EA080-2,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +106251,Aj14,EA080,Floor level with ground,EA080-2,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +106252,Aj15,EA080,Floor level with ground,EA080-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +106253,Aj16,EA080,Raised substantially,EA080-4,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +106254,Aj17,EA080,Floor level with ground,EA080-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +106255,Aj18,EA080,Floor level with ground,EA080-2,,jensen1959,,1950,EthnographicAtlas_1967_p81, +106256,Aj19,EA080,Floor level with ground,EA080-2,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +106257,Aj2,EA080,Floor level with ground,EA080-2,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +106258,Aj20,EA080,Floor level with ground,EA080-2,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +106259,Aj21,EA080,Floor level with ground,EA080-2,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +106260,Aj22,EA080,Floor level with ground,EA080-2,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +106261,Aj23,EA080,Floor level with ground,EA080-2,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +106262,Aj24,EA080,Floor level with ground,EA080-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +106263,Aj25,EA080,Floor level with ground,EA080-2,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +106264,Aj26,EA080,Floor level with ground,EA080-2,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +106265,Aj27,EA080,Floor level with ground,EA080-2,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +106266,Aj28,EA080,Floor level with ground,EA080-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +106267,Aj29,EA080,Floor level with ground,EA080-2,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +106268,Aj3,EA080,Floor level with ground,EA080-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +106269,Aj30,EA080,?,EA080-NA,,,,,, +106270,Aj31,EA080,?,EA080-NA,,,,,, +106271,Aj4,EA080,Floor level with ground,EA080-2,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +106272,Aj5,EA080,Floor level with ground,EA080-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +106273,Aj6,EA080,Subterranean,EA080-1,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +106274,Aj7,EA080,Floor level with ground,EA080-2,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +106275,Aj8,EA080,Floor level with ground,EA080-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +106276,Aj9,EA080,Floor level with ground,EA080-2,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +106277,Ca1,EA080,Floor level with ground,EA080-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +106278,Ca10,EA080,Floor level with ground,EA080-2,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +106279,Ca11,EA080,Floor level with ground,EA080-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +106280,Ca12,EA080,Floor level with ground,EA080-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +106281,Ca13,EA080,Floor level with ground,EA080-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +106282,Ca14,EA080,Floor level with ground,EA080-2,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +106283,Ca15,EA080,Floor level with ground,EA080-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +106284,Ca16,EA080,Floor level with ground,EA080-2,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +106285,Ca17,EA080,Floor level with ground,EA080-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +106286,Ca18,EA080,Floor level with ground,EA080-2,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +106287,Ca19,EA080,Floor level with ground,EA080-2,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +106288,Ca2,EA080,Floor level with ground,EA080-2,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +106289,Ca20,EA080,Floor level with ground,EA080-2,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +106290,Ca21,EA080,Floor level with ground,EA080-2,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +106291,Ca22,EA080,Floor level with ground,EA080-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +106292,Ca23,EA080,Floor level with ground,EA080-2,,jensen1959,,1950,EthnographicAtlas_1967_p81, +106293,Ca24,EA080,Floor level with ground,EA080-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +106294,Ca25,EA080,Floor level with ground,EA080-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +106295,Ca26,EA080,Floor level with ground,EA080-2,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +106296,Ca27,EA080,Floor level with ground,EA080-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +106297,Ca28,EA080,Floor level with ground,EA080-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +106298,Ca29,EA080,Floor level with ground,EA080-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +106299,Ca3,EA080,Floor level with ground,EA080-2,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +106300,Ca30,EA080,Floor level with ground,EA080-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +106301,Ca31,EA080,Floor level with ground,EA080-2,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +106302,Ca32,EA080,Floor level with ground,EA080-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +106303,Ca33,EA080,Floor level with ground,EA080-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +106304,Ca34,EA080,Floor level with ground,EA080-2,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +106305,Ca35,EA080,Floor level with ground,EA080-2,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +106306,Ca36,EA080,Floor level with ground,EA080-2,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +106307,Ca37,EA080,Floor level with ground,EA080-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +106308,Ca38,EA080,Floor level with ground,EA080-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +106309,Ca39,EA080,Floor level with ground,EA080-2,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +106310,Ca4,EA080,Floor level with ground,EA080-2,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +106311,Ca40,EA080,Elevated slightly,EA080-3,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +106312,Ca41,EA080,Floor level with ground,EA080-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +106313,Ca42,EA080,Floor level with ground,EA080-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +106314,Ca43,EA080,?,EA080-NA,,,,,, +106315,Ca5,EA080,Floor level with ground,EA080-2,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +106316,Ca6,EA080,Floor level with ground,EA080-2,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +106317,Ca7,EA080,Floor level with ground,EA080-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +106318,Ca8,EA080,Floor level with ground,EA080-2,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +106319,Ca9,EA080,Subterranean,EA080-1,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +106320,Cb1,EA080,Floor level with ground,EA080-2,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +106321,Cb10,EA080,?,EA080-NA,,,,,, +106322,Cb11,EA080,Floor level with ground,EA080-2,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +106323,Cb12,EA080,Floor level with ground,EA080-2,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +106324,Cb13,EA080,Elevated slightly,EA080-3,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +106325,Cb14,EA080,Floor level with ground,EA080-2,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +106326,Cb15,EA080,Floor level with ground,EA080-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +106327,Cb16,EA080,Floor level with ground,EA080-2,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +106328,Cb17,EA080,Floor level with ground,EA080-2,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +106329,Cb18,EA080,Floor level with ground,EA080-2,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +106330,Cb19,EA080,Floor level with ground,EA080-2,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +106331,Cb2,EA080,Floor level with ground,EA080-2,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +106332,Cb20,EA080,Floor level with ground,EA080-2,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +106333,Cb21,EA080,Floor level with ground,EA080-2,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +106334,Cb22,EA080,Floor level with ground,EA080-2,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +106335,Cb23,EA080,Floor level with ground,EA080-2,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +106336,Cb24,EA080,Floor level with ground,EA080-2,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +106337,Cb25,EA080,Floor level with ground,EA080-2,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +106338,Cb26,EA080,Floor level with ground,EA080-2,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +106339,Cb27,EA080,Floor level with ground,EA080-2,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106340,Cb28,EA080,Floor level with ground,EA080-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106341,Cb29,EA080,Floor level with ground,EA080-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +106342,Cb3,EA080,Floor level with ground,EA080-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +106343,Cb4,EA080,Floor level with ground,EA080-2,,reid1930,,1920,EthnographicAtlas_1967_p81, +106344,Cb5,EA080,Floor level with ground,EA080-2,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +106345,Cb6,EA080,Floor level with ground,EA080-2,,woodnd,,1920,EthnographicAtlas_1967_p81, +106346,Cb7,EA080,Floor level with ground,EA080-2,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +106347,Cb8,EA080,Floor level with ground,EA080-2,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +106348,Cb9,EA080,Floor level with ground,EA080-2,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +106349,Cc1,EA080,Floor level with ground,EA080-2,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +106350,Cc10,EA080,Floor level with ground,EA080-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +106351,Cc11,EA080,Floor level with ground,EA080-2,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +106352,Cc12,EA080,Floor level with ground,EA080-2,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +106353,Cc13,EA080,Floor level with ground,EA080-2,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +106354,Cc14,EA080,Floor level with ground,EA080-2,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +106355,Cc15,EA080,Floor level with ground,EA080-2,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +106356,Cc16,EA080,Floor level with ground,EA080-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +106357,Cc17,EA080,Floor level with ground,EA080-2,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +106358,Cc18,EA080,Floor level with ground,EA080-2,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +106359,Cc19,EA080,Floor level with ground,EA080-2,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +106360,Cc2,EA080,Floor level with ground,EA080-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +106361,Cc20,EA080,?,EA080-NA,,,,,, +106362,Cc3,EA080,Floor level with ground,EA080-2,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +106363,Cc4,EA080,Floor level with ground,EA080-2,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +106364,Cc5,EA080,Floor level with ground,EA080-2,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +106365,Cc6,EA080,Floor level with ground,EA080-2,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +106366,Cc7,EA080,Floor level with ground,EA080-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106367,Cc8,EA080,Floor level with ground,EA080-2,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +106368,Cc9,EA080,Floor level with ground,EA080-2,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +106369,Cd1,EA080,Floor level with ground,EA080-2,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +106370,Cd10,EA080,?,EA080-NA,,,,,, +106371,Cd11,EA080,Floor level with ground,EA080-2,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +106372,Cd12,EA080,Floor level with ground,EA080-2,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +106373,Cd13,EA080,Floor level with ground,EA080-2,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +106374,Cd14,EA080,Floor level with ground,EA080-2,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +106375,Cd15,EA080,Floor level with ground,EA080-2,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +106376,Cd16,EA080,Floor level with ground,EA080-2,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +106377,Cd17,EA080,Floor level with ground,EA080-2,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +106378,Cd18,EA080,Floor level with ground,EA080-2,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +106379,Cd19,EA080,Floor level with ground,EA080-2,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +106380,Cd2,EA080,Floor level with ground,EA080-2,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +106381,Cd20,EA080,Floor level with ground,EA080-2,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +106382,Cd21,EA080,Floor level with ground,EA080-2,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +106383,Cd3,EA080,Floor level with ground,EA080-2,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +106384,Cd4,EA080,Floor level with ground,EA080-2,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +106385,Cd5,EA080,Elevated slightly,EA080-3,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +106386,Cd6,EA080,Floor level with ground,EA080-2,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +106387,Cd7,EA080,Floor level with ground,EA080-2,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +106388,Cd8,EA080,Floor level with ground,EA080-2,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +106389,Cd9,EA080,Floor level with ground,EA080-2,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +106390,Ce1,EA080,Elevated slightly,EA080-3,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +106391,Ce2,EA080,Elevated slightly,EA080-3,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +106392,Ce3,EA080,Elevated slightly,EA080-3,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +106393,Ce4,EA080,?,EA080-NA,,,,,, +106394,Ce5,EA080,Elevated slightly,EA080-3,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +106395,Ce6,EA080,Elevated slightly,EA080-3,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +106396,Ce7,EA080,Floor level with ground,EA080-2,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +106397,Ce8,EA080,Floor level with ground,EA080-2,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +106398,Cf1,EA080,Elevated slightly,EA080-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +106399,Cf2,EA080,Floor level with ground,EA080-2,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +106400,Cf3,EA080,Elevated slightly,EA080-3,,munch1945,,1930,EthnographicAtlas_1967_p85, +106401,Cf4,EA080,Floor level with ground,EA080-2,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +106402,Cf5,EA080,Elevated slightly,EA080-3,,miner1939,,1930,EthnographicAtlas_1967_p85, +106403,Cg1,EA080,Elevated slightly,EA080-3,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +106404,Cg2,EA080,Elevated slightly,EA080-3,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +106405,Cg3,EA080,Floor level with ground,EA080-2,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +106406,Cg4,EA080,Floor level with ground,EA080-2,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +106407,Cg5,EA080,Elevated slightly,EA080-3,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +106408,Ch1,EA080,Elevated slightly,EA080-3,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +106409,Ch10,EA080,?,EA080-NA,,,,,, +106410,Ch11,EA080,Floor level with ground,EA080-2,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +106411,Ch2,EA080,Floor level with ground,EA080-2,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +106412,Ch3,EA080,Floor level with ground,EA080-2,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p85, +106413,Ch4,EA080,Floor level with ground,EA080-2,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +106414,Ch5,EA080,Floor level with ground,EA080-2,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +106415,Ch6,EA080,Floor level with ground,EA080-2,,ember1954,,1910,EthnographicAtlas_1967_p85, +106416,Ch7,EA080,Floor level with ground,EA080-2,,friedrich1954,,1930,EthnographicAtlas_1967_p85, +106417,Ch8,EA080,Floor level with ground,EA080-2,,hanzeli1955,,1940,EthnographicAtlas_1967_p85, +106418,Ch9,EA080,Floor level with ground,EA080-2,,maciuika1955,,1930,EthnographicAtlas_1967_p85, +106419,Ci1,EA080,Floor level with ground,EA080-2,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +106420,Ci10,EA080,Floor level with ground,EA080-2,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +106421,Ci11,EA080,Floor level with ground,EA080-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +106422,Ci12,EA080,Floor level with ground,EA080-2,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +106423,Ci2,EA080,Elevated slightly,EA080-3,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +106424,Ci3,EA080,Elevated slightly,EA080-3,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p85, +106425,Ci4,EA080,Floor level with ground,EA080-2,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +106426,Ci5,EA080,Floor level with ground,EA080-2,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +106427,Ci6,EA080,Floor level with ground,EA080-2,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +106428,Ci7,EA080,Floor level with ground,EA080-2,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p85, +106429,Ci8,EA080,Floor level with ground,EA080-2,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +106430,Ci9,EA080,Floor level with ground,EA080-2,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +106431,Cj1,EA080,Elevated slightly,EA080-3,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +106432,Cj10,EA080,Floor level with ground,EA080-2,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +106433,Cj2,EA080,Floor level with ground,EA080-2,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +106434,Cj3,EA080,Floor level with ground,EA080-2,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +106435,Cj4,EA080,Floor level with ground,EA080-2,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +106436,Cj5,EA080,Floor level with ground,EA080-2,,dickson1949,,1930,EthnographicAtlas_1967_p89, +106437,Cj6,EA080,Floor level with ground,EA080-2,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +106438,Cj7,EA080,Floor level with ground,EA080-2,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +106439,Cj8,EA080,Floor level with ground,EA080-2,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +106440,Cj9,EA080,Floor level with ground,EA080-2,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +106441,Ea1,EA080,Floor level with ground,EA080-2,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p89, +106442,Ea10,EA080,?,EA080-NA,,,,,, +106443,Ea11,EA080,Floor level with ground,EA080-2,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +106444,Ea12,EA080,Floor level with ground,EA080-2,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +106445,Ea13,EA080,Floor level with ground,EA080-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +106446,Ea2,EA080,Floor level with ground,EA080-2,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +106447,Ea3,EA080,Elevated slightly,EA080-3,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +106448,Ea4,EA080,Floor level with ground,EA080-2,,barth1956b,,1950,EthnographicAtlas_1967_p89, +106449,Ea5,EA080,Floor level with ground,EA080-2,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +106450,Ea6,EA080,Floor level with ground,EA080-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +106451,Ea7,EA080,Floor level with ground,EA080-2,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +106452,Ea8,EA080,Floor level with ground,EA080-2,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +106453,Ea9,EA080,Floor level with ground,EA080-2,,vreeland1957,,1950,EthnographicAtlas_1967_p89, +106454,Eb1,EA080,Floor level with ground,EA080-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +106455,Eb2,EA080,Floor level with ground,EA080-2,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +106456,Eb3,EA080,Floor level with ground,EA080-2,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +106457,Eb4,EA080,Elevated slightly,EA080-3,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +106458,Eb5,EA080,Floor level with ground,EA080-2,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +106459,Eb6,EA080,Floor level with ground,EA080-2,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +106460,Eb7,EA080,Floor level with ground,EA080-2,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +106461,Eb8,EA080,?,EA080-NA,,,,,, +106462,Ec1,EA080,Subterranean,EA080-1,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +106463,Ec10,EA080,Floor level with ground,EA080-2,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +106464,Ec11,EA080,Floor level with ground,EA080-2,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +106465,Ec2,EA080,Subterranean,EA080-1,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106466,Ec3,EA080,Floor level with ground,EA080-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +106467,Ec4,EA080,Floor level with ground,EA080-2,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +106468,Ec5,EA080,Subterranean,EA080-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +106469,Ec6,EA080,Floor level with ground,EA080-2,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +106470,Ec7,EA080,Floor level with ground,EA080-2,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +106471,Ec8,EA080,Subterranean,EA080-1,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +106472,Ec9,EA080,Floor level with ground,EA080-2,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +106473,Ed1,EA080,Elevated slightly,EA080-3,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +106474,Ed10,EA080,Floor level with ground,EA080-2,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p89, +106475,Ed13,EA080,?,EA080-NA,,,,,, +106476,Ed14,EA080,?,EA080-NA,,,,,, +106477,Ed15a,EA080,?,EA080-NA,,,,,, +106478,Ed15b,EA080,Floor level with ground,EA080-2,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +106479,Ed16,EA080,?,EA080-NA,,,,,, +106480,Ed2,EA080,Floor level with ground,EA080-2,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +106481,Ed3,EA080,Floor level with ground,EA080-2,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +106482,Ed4,EA080,Elevated slightly,EA080-3,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +106483,Ed5,EA080,Floor level with ground,EA080-2,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106484,Ed6,EA080,?,EA080-NA,,,,,, +106485,Ed7,EA080,Elevated slightly,EA080-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +106486,Ed8,EA080,Elevated slightly,EA080-3,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +106487,Ed9,EA080,Raised substantially,EA080-4,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +106488,Ee1,EA080,Raised substantially,EA080-4,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +106489,Ee2,EA080,Floor level with ground,EA080-2,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p89, +106490,Ee3,EA080,Floor level with ground,EA080-2,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +106491,Ee4,EA080,Floor level with ground,EA080-2,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +106492,Ee5,EA080,Floor level with ground,EA080-2,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +106493,Ee6,EA080,Floor level with ground,EA080-2,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +106494,Ee7,EA080,?,EA080-NA,,,,,, +106495,Ee8,EA080,Floor level with ground,EA080-2,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +106496,Ef1,EA080,Floor level with ground,EA080-2,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +106497,Ef10,EA080,?,EA080-NA,,,,,, +106498,Ef11,EA080,Floor level with ground,EA080-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +106499,Ef2,EA080,Elevated slightly,EA080-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +106500,Ef3,EA080,?,EA080-NA,,,,,, +106501,Ef4,EA080,Floor level with ground,EA080-2,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +106502,Ef5,EA080,Floor level with ground,EA080-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +106503,Ef6,EA080,Floor level with ground,EA080-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +106504,Ef7,EA080,Floor level with ground,EA080-2,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +106505,Ef8,EA080,Elevated slightly,EA080-3,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +106506,Ef9,EA080,Floor level with ground,EA080-2,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106507,Eg1,EA080,Floor level with ground,EA080-2,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106508,Eg10,EA080,Floor level with ground,EA080-2,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +106509,Eg11,EA080,?,EA080-NA,,,,,, +106510,Eg12,EA080,?,EA080-NA,,,,,, +106511,Eg13,EA080,Floor level with ground,EA080-2,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106512,Eg14,EA080,Elevated slightly,EA080-3,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +106513,Eg2,EA080,Floor level with ground,EA080-2,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +106514,Eg3,EA080,Floor level with ground,EA080-2,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +106515,Eg4,EA080,Floor level with ground,EA080-2,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +106516,Eg5,EA080,Floor level with ground,EA080-2,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +106517,Eg6,EA080,Elevated slightly,EA080-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +106518,Eg7,EA080,Floor level with ground,EA080-2,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +106519,Eg8,EA080,Floor level with ground,EA080-2,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +106520,Eg9,EA080,Floor level with ground,EA080-2,,elwin1939,,1930,EthnographicAtlas_1967_p93, +106521,Eh1,EA080,Floor level with ground,EA080-2,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +106522,Eh10,EA080,?,EA080-NA,,,,,, +106523,Eh2,EA080,Floor level with ground,EA080-2,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +106524,Eh3,EA080,Elevated slightly,EA080-3,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +106525,Eh4,EA080,?,EA080-NA,,,,,, +106526,Eh5,EA080,Raised substantially,EA080-4,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +106527,Eh6,EA080,Floor level with ground,EA080-2,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +106528,Eh7,EA080,Floor level with ground,EA080-2,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +106529,Eh8,EA080,Floor level with ground,EA080-2,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +106530,Eh9,EA080,Raised substantially,EA080-4,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +106531,Ei1,EA080,Elevated slightly,EA080-3,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106532,Ei10,EA080,Raised substantially,EA080-4,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +106533,Ei11,EA080,Raised substantially,EA080-4,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +106534,Ei12,EA080,Raised substantially,EA080-4,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +106535,Ei13,EA080,Floor level with ground,EA080-2,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +106536,Ei14,EA080,Raised substantially,EA080-4,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +106537,Ei15,EA080,?,EA080-NA,,,,,, +106538,Ei16,EA080,Raised substantially,EA080-4,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +106539,Ei17,EA080,?,EA080-NA,,,,,, +106540,Ei18,EA080,Raised substantially,EA080-4,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +106541,Ei19,EA080,Raised substantially,EA080-4,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +106542,Ei2,EA080,Elevated slightly,EA080-3,,mills1922,,1920,EthnographicAtlas_1967_p93, +106543,Ei20,EA080,?,EA080-NA,,,,,, +106544,Ei3,EA080,Raised substantially,EA080-4,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +106545,Ei4,EA080,Raised substantially,EA080-4,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +106546,Ei5,EA080,Elevated slightly,EA080-3,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +106547,Ei6,EA080,Raised substantially,EA080-4,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +106548,Ei7,EA080,Raised substantially,EA080-4,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +106549,Ei8,EA080,Elevated slightly,EA080-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +106550,Ei9,EA080,Raised substantially,EA080-4,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p93, +106551,Ej1,EA080,Raised substantially,EA080-4,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +106552,Ej10,EA080,Raised substantially,EA080-4,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +106553,Ej11,EA080,Raised substantially,EA080-4,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +106554,Ej12,EA080,Raised substantially,EA080-4,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +106555,Ej13,EA080,Raised substantially,EA080-4,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +106556,Ej14,EA080,Raised substantially,EA080-4,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106557,Ej15,EA080,Raised substantially,EA080-4,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +106558,Ej16,EA080,Raised substantially,EA080-4,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +106559,Ej2,EA080,Floor level with ground,EA080-2,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +106560,Ej3,EA080,Floor level with ground,EA080-2,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +106561,Ej4,EA080,Elevated slightly,EA080-3,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +106562,Ej5,EA080,Raised substantially,EA080-4,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +106563,Ej6,EA080,?,EA080-NA,,,,,, +106564,Ej7,EA080,Raised substantially,EA080-4,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +106565,Ej8,EA080,Raised substantially,EA080-4,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +106566,Ej9,EA080,Elevated slightly,EA080-3,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +106567,Ia1,EA080,Floor level with ground,EA080-2,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +106568,Ia10,EA080,Floor level with ground,EA080-2,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +106569,Ia11,EA080,Floor level with ground,EA080-2,,mabuchi1960,,1930,EthnographicAtlas_1967_p93, +106570,Ia12,EA080,Raised substantially,EA080-4,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +106571,Ia13,EA080,?,EA080-NA,,,,,, +106572,Ia14,EA080,Floor level with ground,EA080-2,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +106573,Ia15,EA080,?,EA080-NA,,,,,, +106574,Ia16,EA080,Raised substantially,EA080-4,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +106575,Ia17,EA080,?,EA080-NA,,,,,, +106576,Ia18,EA080,?,EA080-NA,,,,,, +106577,Ia2,EA080,Elevated slightly,EA080-3,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +106578,Ia3,EA080,Raised substantially,EA080-4,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +106579,Ia4,EA080,Raised substantially,EA080-4,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +106580,Ia5,EA080,Elevated slightly,EA080-3,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +106581,Ia6,EA080,Floor level with ground,EA080-2,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106582,Ia7,EA080,?,EA080-NA,,,,,, +106583,Ia8,EA080,Elevated slightly,EA080-3,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +106584,Ia9,EA080,Raised substantially,EA080-4,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +106585,Ib1,EA080,Raised substantially,EA080-4,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106586,Ib2,EA080,Floor level with ground,EA080-2,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106587,Ib3,EA080,Floor level with ground,EA080-2,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +106588,Ib4,EA080,Raised substantially,EA080-4,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +106589,Ib5,EA080,Raised substantially,EA080-4,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +106590,Ib6,EA080,Raised substantially,EA080-4,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +106591,Ib7,EA080,Raised substantially,EA080-4,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +106592,Ib8,EA080,Elevated slightly,EA080-3,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +106593,Ib9,EA080,?,EA080-NA,,,,,, +106594,Ic1,EA080,Raised substantially,EA080-4,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106595,Ic10,EA080,Raised substantially,EA080-4,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p97, +106596,Ic11,EA080,Elevated slightly,EA080-3,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106597,Ic12,EA080,Raised substantially,EA080-4,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +106598,Ic13,EA080,?,EA080-NA,,,,,, +106599,Ic2,EA080,Raised substantially,EA080-4,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p97, +106600,Ic3,EA080,Floor level with ground,EA080-2,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +106601,Ic4,EA080,?,EA080-NA,,,,,, +106602,Ic5,EA080,Floor level with ground,EA080-2,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +106603,Ic6,EA080,Raised substantially,EA080-4,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +106604,Ic7,EA080,Floor level with ground,EA080-2,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +106605,Ic8,EA080,Raised substantially,EA080-4,,pleyte1893,,1890,EthnographicAtlas_1967_p97, +106606,Ic9,EA080,Raised substantially,EA080-4,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +106607,Id1,EA080,Floor level with ground,EA080-2,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +106608,Id10,EA080,Floor level with ground,EA080-2,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +106609,Id11,EA080,Floor level with ground,EA080-2,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +106610,Id12,EA080,?,EA080-NA,,,,,, +106611,Id13,EA080,?,EA080-NA,,,,,, +106612,Id2,EA080,Floor level with ground,EA080-2,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +106613,Id3,EA080,?,EA080-NA,,,,,, +106614,Id4,EA080,?,EA080-NA,,,,,, +106615,Id5,EA080,?,EA080-NA,,,,,, +106616,Id6,EA080,?,EA080-NA,,,,,, +106617,Id7,EA080,?,EA080-NA,,,,,, +106618,Id8,EA080,Floor level with ground,EA080-2,,roth1890,,1830,EthnographicAtlas_1967_p97, +106619,Id9,EA080,?,EA080-NA,,,,,, +106620,Ie1,EA080,Floor level with ground,EA080-2,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106621,Ie10,EA080,Raised substantially,EA080-4,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +106622,Ie11,EA080,Floor level with ground,EA080-2,,bowers1964,,1950,EthnographicAtlas_1967_p97, +106623,Ie12,EA080,Floor level with ground,EA080-2,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106624,Ie13,EA080,?,EA080-NA,,,,,, +106625,Ie14,EA080,?,EA080-NA,,,,,, +106626,Ie15,EA080,Floor level with ground,EA080-2,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106627,Ie16,EA080,Floor level with ground,EA080-2,,williams194041,,1940,EthnographicAtlas_1967_p97, +106628,Ie17,EA080,Floor level with ground,EA080-2,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +106629,Ie18,EA080,Floor level with ground,EA080-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +106630,Ie19,EA080,Floor level with ground,EA080-2,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +106631,Ie2,EA080,Floor level with ground,EA080-2,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +106632,Ie20,EA080,Raised substantially,EA080-4,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +106633,Ie21,EA080,Raised substantially,EA080-4,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +106634,Ie22,EA080,Raised substantially,EA080-4,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +106635,Ie23,EA080,Raised substantially,EA080-4,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +106636,Ie24,EA080,Raised substantially,EA080-4,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +106637,Ie25,EA080,Raised substantially,EA080-4,,williamson1912,,1920,EthnographicAtlas_1967_p97, +106638,Ie26,EA080,Floor level with ground,EA080-2,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +106639,Ie27,EA080,?,EA080-NA,,,,,, +106640,Ie28,EA080,Raised substantially,EA080-4,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +106641,Ie29,EA080,Raised substantially,EA080-4,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106642,Ie3,EA080,Elevated slightly,EA080-3,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106643,Ie30,EA080,Floor level with ground,EA080-2,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +106644,Ie31,EA080,Floor level with ground,EA080-2,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +106645,Ie32,EA080,Raised substantially,EA080-4,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +106646,Ie33,EA080,Raised substantially,EA080-4,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +106647,Ie34,EA080,?,EA080-NA,,,,,, +106648,Ie35,EA080,Raised substantially,EA080-4,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +106649,Ie36,EA080,?,EA080-NA,,,,,, +106650,Ie37,EA080,?,EA080-NA,,,,,, +106651,Ie38,EA080,Floor level with ground,EA080-2,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +106652,Ie39,EA080,Raised substantially,EA080-4,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +106653,Ie4,EA080,Floor level with ground,EA080-2,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106654,Ie5,EA080,Floor level with ground,EA080-2,,williams1936,,1930,EthnographicAtlas_1967_p97, +106655,Ie6,EA080,Raised substantially,EA080-4,,held1947,,1930,EthnographicAtlas_1967_p97, +106656,Ie7,EA080,Floor level with ground,EA080-2,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +106657,Ie8,EA080,Raised substantially,EA080-4,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +106658,Ie9,EA080,Raised substantially,EA080-4,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +106659,If1,EA080,Raised substantially,EA080-4,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106660,If10,EA080,?,EA080-NA,,,,,, +106661,If11,EA080,Elevated slightly,EA080-3,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +106662,If12,EA080,Floor level with ground,EA080-2,,mason1954,,1940,EthnographicAtlas_1967_p101, +106663,If13,EA080,?,EA080-NA,,,,,, +106664,If14,EA080,Floor level with ground,EA080-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +106665,If15,EA080,Floor level with ground,EA080-2,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +106666,If16,EA080,Floor level with ground,EA080-2,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +106667,If17,EA080,Floor level with ground,EA080-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +106668,If2,EA080,Floor level with ground,EA080-2,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +106669,If3,EA080,Floor level with ground,EA080-2,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +106670,If4,EA080,Floor level with ground,EA080-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +106671,If5,EA080,Elevated slightly,EA080-3,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +106672,If6,EA080,Elevated slightly,EA080-3,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +106673,If7,EA080,Elevated slightly,EA080-3,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +106674,If8,EA080,Raised substantially,EA080-4,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +106675,If9,EA080,Floor level with ground,EA080-2,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +106676,Ig1,EA080,Raised substantially,EA080-4,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +106677,Ig10,EA080,?,EA080-NA,,,,,, +106678,Ig11,EA080,Floor level with ground,EA080-2,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +106679,Ig12,EA080,?,EA080-NA,,,,,, +106680,Ig13,EA080,Raised substantially,EA080-4,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +106681,Ig14,EA080,Raised substantially,EA080-4,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +106682,Ig15,EA080,?,EA080-NA,,,,,, +106683,Ig16,EA080,?,EA080-NA,,,,,, +106684,Ig17,EA080,?,EA080-NA,,,,,, +106685,Ig18,EA080,?,EA080-NA,,,,,, +106686,Ig19,EA080,?,EA080-NA,,,,,, +106687,Ig2,EA080,Floor level with ground,EA080-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +106688,Ig20,EA080,Floor level with ground,EA080-2,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +106689,Ig21,EA080,Floor level with ground,EA080-2,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +106690,Ig3,EA080,Floor level with ground,EA080-2,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +106691,Ig4,EA080,Floor level with ground,EA080-2,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +106692,Ig5,EA080,Raised substantially,EA080-4,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +106693,Ig6,EA080,Floor level with ground,EA080-2,,ivens1927,,1900,EthnographicAtlas_1967_p101, +106694,Ig7,EA080,?,EA080-NA,,,,,, +106695,Ig8,EA080,?,EA080-NA,,,,,, +106696,Ig9,EA080,Raised substantially,EA080-4,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +106697,Ih1,EA080,Floor level with ground,EA080-2,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +106698,Ih10,EA080,?,EA080-NA,,,,,, +106699,Ih11,EA080,?,EA080-NA,,,,,, +106700,Ih12,EA080,?,EA080-NA,,,,,, +106701,Ih13,EA080,?,EA080-NA,,,,,, +106702,Ih14,EA080,Floor level with ground,EA080-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +106703,Ih2,EA080,Floor level with ground,EA080-2,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106704,Ih3,EA080,Floor level with ground,EA080-2,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +106705,Ih4,EA080,Floor level with ground,EA080-2,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106706,Ih5,EA080,Elevated slightly,EA080-3,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +106707,Ih6,EA080,?,EA080-NA,,,,,, +106708,Ih7,EA080,Floor level with ground,EA080-2,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +106709,Ih8,EA080,Floor level with ground,EA080-2,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +106710,Ih9,EA080,?,EA080-NA,,,,,, +106711,Ii1,EA080,Elevated slightly,EA080-3,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +106712,Ii10,EA080,Floor level with ground,EA080-2,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +106713,Ii12,EA080,Elevated slightly,EA080-3,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106714,Ii13,EA080,Elevated slightly,EA080-3,,burrows1937,,1830,EthnographicAtlas_1967_p101, +106715,Ii14,EA080,Elevated slightly,EA080-3,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +106716,Ii2,EA080,Floor level with ground,EA080-2,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +106717,Ii3,EA080,Floor level with ground,EA080-2,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +106718,Ii4,EA080,Elevated slightly,EA080-3,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +106719,Ii5,EA080,Floor level with ground,EA080-2,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +106720,Ii6,EA080,Floor level with ground,EA080-2,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +106721,Ii7,EA080,Floor level with ground,EA080-2,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +106722,Ii8,EA080,Floor level with ground,EA080-2,,burrows1936,,1840,EthnographicAtlas_1967_p101, +106723,Ii9,EA080,Floor level with ground,EA080-2,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +106724,Ij1,EA080,Floor level with ground,EA080-2,,buck1934,,1820,EthnographicAtlas_1967_p101, +106725,Ij10,EA080,?,EA080-NA,,,,,, +106726,Ij2,EA080,Floor level with ground,EA080-2,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +106727,Ij3,EA080,Elevated slightly,EA080-3,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +106728,Ij4,EA080,Floor level with ground,EA080-2,,buck1932a,,1850,EthnographicAtlas_1967_p105, +106729,Ij5,EA080,Floor level with ground,EA080-2,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +106730,Ij6,EA080,Elevated slightly,EA080-3,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +106731,Ij7,EA080,Floor level with ground,EA080-2,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +106732,Ij8,EA080,Floor level with ground,EA080-2,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +106733,Ij9,EA080,Floor level with ground,EA080-2,,metraux1940,,1860,EthnographicAtlas_1967_p105, +106734,Na1,EA080,Floor level with ground,EA080-2,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +106735,Na10,EA080,Floor level with ground,EA080-2,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +106736,Na11,EA080,Floor level with ground,EA080-2,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +106737,Na12,EA080,Floor level with ground,EA080-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +106738,Na13,EA080,Floor level with ground,EA080-2,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +106739,Na14,EA080,Subterranean,EA080-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +106740,Na15,EA080,Floor level with ground,EA080-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +106741,Na16,EA080,Floor level with ground,EA080-2,,osgood1931,,1860,EthnographicAtlas_1967_p105, +106742,Na17,EA080,Floor level with ground,EA080-2,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106743,Na19,EA080,Floor level with ground,EA080-2,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +106744,Na2,EA080,Subterranean,EA080-1,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +106745,Na20,EA080,Floor level with ground,EA080-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +106746,Na21,EA080,Floor level with ground,EA080-2,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +106747,Na22,EA080,Floor level with ground,EA080-2,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +106748,Na23,EA080,Floor level with ground,EA080-2,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +106749,Na24,EA080,Subterranean,EA080-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +106750,Na25,EA080,Floor level with ground,EA080-2,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +106751,Na26,EA080,Subterranean,EA080-1,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +106752,Na27,EA080,Floor level with ground,EA080-2,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +106753,Na28,EA080,Floor level with ground,EA080-2,,jenness1937,,1880,EthnographicAtlas_1967_p105, +106754,Na29,EA080,Floor level with ground,EA080-2,,goddard1916,,1850,EthnographicAtlas_1967_p105, +106755,Na3,EA080,Floor level with ground,EA080-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +106756,Na30,EA080,Floor level with ground,EA080-2,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +106757,Na31,EA080,Floor level with ground,EA080-2,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +106758,Na32,EA080,Floor level with ground,EA080-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +106759,Na33,EA080,Floor level with ground,EA080-2,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +106760,Na34,EA080,Floor level with ground,EA080-2,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +106761,Na35,EA080,Floor level with ground,EA080-2,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +106762,Na36,EA080,Floor level with ground,EA080-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +106763,Na37,EA080,Floor level with ground,EA080-2,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +106764,Na38,EA080,Floor level with ground,EA080-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +106765,Na39,EA080,Floor level with ground,EA080-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +106766,Na4,EA080,Floor level with ground,EA080-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +106767,Na40,EA080,Floor level with ground,EA080-2,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +106768,Na41,EA080,Floor level with ground,EA080-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +106769,Na42,EA080,Floor level with ground,EA080-2,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p105, +106770,Na43,EA080,Floor level with ground,EA080-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +106771,Na44,EA080,Floor level with ground,EA080-2,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +106772,Na45,EA080,?,EA080-NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +106773,Na5,EA080,Floor level with ground,EA080-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +106774,Na6,EA080,Subterranean,EA080-1,,lantis1946,,1930,EthnographicAtlas_1967_p105, +106775,Na7,EA080,Subterranean,EA080-1,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +106776,Na8,EA080,Subterranean,EA080-1,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +106777,Na9,EA080,Subterranean,EA080-1,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106778,Nb1,EA080,Subterranean,EA080-1,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +106779,Nb10,EA080,Subterranean,EA080-1,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +106780,Nb11,EA080,Floor level with ground,EA080-2,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +106781,Nb12,EA080,Floor level with ground,EA080-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +106782,Nb13,EA080,Floor level with ground,EA080-2,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +106783,Nb14,EA080,Subterranean,EA080-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +106784,Nb15,EA080,Floor level with ground,EA080-2,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +106785,Nb16,EA080,Floor level with ground,EA080-2,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +106786,Nb17,EA080,Floor level with ground,EA080-2,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +106787,Nb18,EA080,Subterranean,EA080-1,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +106788,Nb19,EA080,Floor level with ground,EA080-2,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +106789,Nb2,EA080,Floor level with ground,EA080-2,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +106790,Nb20,EA080,Subterranean,EA080-1,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +106791,Nb21,EA080,Subterranean,EA080-1,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +106792,Nb22,EA080,Subterranean,EA080-1,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +106793,Nb23,EA080,Floor level with ground,EA080-2,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +106794,Nb24,EA080,Floor level with ground,EA080-2,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +106795,Nb25,EA080,Floor level with ground,EA080-2,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +106796,Nb26,EA080,Floor level with ground,EA080-2,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +106797,Nb27,EA080,Subterranean,EA080-1,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +106798,Nb28,EA080,Subterranean,EA080-1,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +106799,Nb29,EA080,Subterranean,EA080-1,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +106800,Nb3,EA080,Subterranean,EA080-1,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +106801,Nb30,EA080,Floor level with ground,EA080-2,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +106802,Nb31,EA080,Subterranean,EA080-1,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +106803,Nb32,EA080,Subterranean,EA080-1,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +106804,Nb33,EA080,Subterranean,EA080-1,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +106805,Nb34,EA080,Floor level with ground,EA080-2,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +106806,Nb35,EA080,Floor level with ground,EA080-2,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +106807,Nb36,EA080,Floor level with ground,EA080-2,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +106808,Nb37,EA080,Floor level with ground,EA080-2,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +106809,Nb38,EA080,Subterranean,EA080-1,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +106810,Nb39,EA080,Subterranean,EA080-1,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +106811,Nb4,EA080,Subterranean,EA080-1,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +106812,Nb5,EA080,Floor level with ground,EA080-2,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +106813,Nb6,EA080,Subterranean,EA080-1,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +106814,Nb7,EA080,Subterranean,EA080-1,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +106815,Nb8,EA080,Subterranean,EA080-1,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +106816,Nb9,EA080,Subterranean,EA080-1,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +106817,Nc1,EA080,Floor level with ground,EA080-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +106818,Nc10,EA080,Subterranean,EA080-1,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +106819,Nc11,EA080,Subterranean,EA080-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +106820,Nc12,EA080,Subterranean,EA080-1,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +106821,Nc13,EA080,Subterranean,EA080-1,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +106822,Nc14,EA080,Subterranean,EA080-1,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +106823,Nc15,EA080,Floor level with ground,EA080-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +106824,Nc16,EA080,Subterranean,EA080-1,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +106825,Nc17,EA080,Subterranean,EA080-1,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +106826,Nc18,EA080,Floor level with ground,EA080-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +106827,Nc19,EA080,Floor level with ground,EA080-2,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +106828,Nc2,EA080,Subterranean,EA080-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +106829,Nc20,EA080,Floor level with ground,EA080-2,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +106830,Nc21,EA080,Floor level with ground,EA080-2,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +106831,Nc22,EA080,Subterranean,EA080-1,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +106832,Nc23,EA080,Subterranean,EA080-1,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +106833,Nc24,EA080,Floor level with ground,EA080-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +106834,Nc25,EA080,Subterranean,EA080-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +106835,Nc26,EA080,Floor level with ground,EA080-2,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +106836,Nc27,EA080,Floor level with ground,EA080-2,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +106837,Nc28,EA080,Floor level with ground,EA080-2,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +106838,Nc29,EA080,Floor level with ground,EA080-2,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +106839,Nc3,EA080,Floor level with ground,EA080-2,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +106840,Nc30,EA080,Floor level with ground,EA080-2,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +106841,Nc31,EA080,Floor level with ground,EA080-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +106842,Nc32,EA080,Floor level with ground,EA080-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +106843,Nc33,EA080,Floor level with ground,EA080-2,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +106844,Nc34,EA080,Floor level with ground,EA080-2,,meigs1939,,1880,EthnographicAtlas_1967_p109, +106845,Nc4,EA080,Subterranean,EA080-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +106846,Nc5,EA080,Subterranean,EA080-1,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +106847,Nc6,EA080,Floor level with ground,EA080-2,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +106848,Nc7,EA080,Subterranean,EA080-1,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +106849,Nc8,EA080,Subterranean,EA080-1,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +106850,Nc9,EA080,Subterranean,EA080-1,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +106851,Nd1,EA080,Subterranean,EA080-1,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +106852,Nd10,EA080,Subterranean,EA080-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +106853,Nd11,EA080,Subterranean,EA080-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +106854,Nd12,EA080,Subterranean,EA080-1,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +106855,Nd13,EA080,Subterranean,EA080-1,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +106856,Nd14,EA080,Subterranean,EA080-1,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +106857,Nd15,EA080,Floor level with ground,EA080-2,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +106858,Nd16,EA080,Subterranean,EA080-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +106859,Nd17,EA080,Subterranean,EA080-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +106860,Nd18,EA080,Subterranean,EA080-1,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +106861,Nd19,EA080,Subterranean,EA080-1,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +106862,Nd2,EA080,Floor level with ground,EA080-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +106863,Nd20,EA080,Subterranean,EA080-1,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +106864,Nd21,EA080,Floor level with ground,EA080-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +106865,Nd22,EA080,Floor level with ground,EA080-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +106866,Nd23,EA080,Floor level with ground,EA080-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +106867,Nd24,EA080,Floor level with ground,EA080-2,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +106868,Nd25,EA080,Floor level with ground,EA080-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +106869,Nd26,EA080,Floor level with ground,EA080-2,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +106870,Nd27,EA080,Floor level with ground,EA080-2,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +106871,Nd28,EA080,Floor level with ground,EA080-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +106872,Nd29,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +106873,Nd3,EA080,Floor level with ground,EA080-2,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +106874,Nd30,EA080,Floor level with ground,EA080-2,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +106875,Nd31,EA080,Subterranean,EA080-1,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +106876,Nd32,EA080,Subterranean,EA080-1,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +106877,Nd33,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +106878,Nd34,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +106879,Nd35,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +106880,Nd36,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +106881,Nd37,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +106882,Nd38,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +106883,Nd39,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +106884,Nd4,EA080,Floor level with ground,EA080-2,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +106885,Nd40,EA080,Floor level with ground,EA080-2,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +106886,Nd41,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +106887,Nd42,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +106888,Nd43,EA080,Floor level with ground,EA080-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +106889,Nd44,EA080,Floor level with ground,EA080-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +106890,Nd45,EA080,Floor level with ground,EA080-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +106891,Nd46,EA080,Floor level with ground,EA080-2,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +106892,Nd47,EA080,Floor level with ground,EA080-2,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +106893,Nd48,EA080,?,EA080-NA,,,,,, +106894,Nd49,EA080,Subterranean,EA080-1,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +106895,Nd5,EA080,Floor level with ground,EA080-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +106896,Nd50,EA080,Floor level with ground,EA080-2,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +106897,Nd51,EA080,Floor level with ground,EA080-2,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +106898,Nd52,EA080,Floor level with ground,EA080-2,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +106899,Nd53,EA080,Floor level with ground,EA080-2,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +106900,Nd54,EA080,Subterranean,EA080-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106901,Nd55,EA080,Floor level with ground,EA080-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +106902,Nd56,EA080,Floor level with ground,EA080-2,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +106903,Nd57,EA080,Floor level with ground,EA080-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +106904,Nd58,EA080,Floor level with ground,EA080-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +106905,Nd59,EA080,Floor level with ground,EA080-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +106906,Nd6,EA080,Floor level with ground,EA080-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +106907,Nd60,EA080,Floor level with ground,EA080-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +106908,Nd61,EA080,Floor level with ground,EA080-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +106909,Nd62,EA080,Floor level with ground,EA080-2,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +106910,Nd63,EA080,Floor level with ground,EA080-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +106911,Nd64,EA080,Floor level with ground,EA080-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +106912,Nd65,EA080,Floor level with ground,EA080-2,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +106913,Nd66,EA080,Floor level with ground,EA080-2,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +106914,Nd67,EA080,Floor level with ground,EA080-2,,gifford1936,,1870,EthnographicAtlas_1967_p113, +106915,Nd7,EA080,Subterranean,EA080-1,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +106916,Nd8,EA080,Subterranean,EA080-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +106917,Nd9,EA080,Subterranean,EA080-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +106918,Ne1,EA080,Floor level with ground,EA080-2,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +106919,Ne10,EA080,Subterranean,EA080-1,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +106920,Ne11,EA080,Floor level with ground,EA080-2,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +106921,Ne12,EA080,Floor level with ground,EA080-2,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +106922,Ne13,EA080,Floor level with ground,EA080-2,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +106923,Ne14,EA080,Floor level with ground,EA080-2,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +106924,Ne15,EA080,Subterranean,EA080-1,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +106925,Ne16,EA080,Floor level with ground,EA080-2,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +106926,Ne17,EA080,Floor level with ground,EA080-2,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +106927,Ne18,EA080,Floor level with ground,EA080-2,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +106928,Ne19,EA080,Floor level with ground,EA080-2,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +106929,Ne2,EA080,Floor level with ground,EA080-2,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +106930,Ne20,EA080,Floor level with ground,EA080-2,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +106931,Ne21,EA080,?,EA080-NA,,,,,, +106932,Ne3,EA080,Floor level with ground,EA080-2,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +106933,Ne4,EA080,Floor level with ground,EA080-2,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +106934,Ne5,EA080,Floor level with ground,EA080-2,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +106935,Ne6,EA080,Subterranean,EA080-1,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +106936,Ne7,EA080,Floor level with ground,EA080-2,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +106937,Ne8,EA080,Floor level with ground,EA080-2,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +106938,Ne9,EA080,Floor level with ground,EA080-2,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +106939,Nf10,EA080,Subterranean,EA080-1,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +106940,Nf11,EA080,Subterranean,EA080-1,,whitman1937,,1870,EthnographicAtlas_1967_p117, +106941,Nf12,EA080,Floor level with ground,EA080-2,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +106942,Nf13,EA080,Floor level with ground,EA080-2,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106943,Nf14,EA080,Floor level with ground,EA080-2,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +106944,Nf15,EA080,?,EA080-NA,,,,,, +106945,Nf2,EA080,Floor level with ground,EA080-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +106946,Nf3,EA080,Subterranean,EA080-1,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +106947,Nf4,EA080,Floor level with ground,EA080-2,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +106948,Nf5,EA080,Floor level with ground,EA080-2,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +106949,Nf6,EA080,Subterranean,EA080-1,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +106950,Nf7,EA080,Floor level with ground,EA080-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106951,Nf8,EA080,Floor level with ground,EA080-2,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +106952,Nf9,EA080,Floor level with ground,EA080-2,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p117, +106953,Ng1,EA080,Floor level with ground,EA080-2,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +106954,Ng10,EA080,Floor level with ground,EA080-2,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +106955,Ng11,EA080,Floor level with ground,EA080-2,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +106956,Ng12,EA080,Floor level with ground,EA080-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +106957,Ng13,EA080,?,EA080-NA,,,,,, +106958,Ng14,EA080,?,EA080-NA,,,,,, +106959,Ng15,EA080,?,EA080-NA,,,,,, +106960,Ng2,EA080,Elevated slightly,EA080-3,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +106961,Ng3,EA080,Floor level with ground,EA080-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +106962,Ng4,EA080,Floor level with ground,EA080-2,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +106963,Ng5,EA080,Floor level with ground,EA080-2,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +106964,Ng6,EA080,Floor level with ground,EA080-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +106965,Ng7,EA080,Floor level with ground,EA080-2,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +106966,Ng8,EA080,Floor level with ground,EA080-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +106967,Ng9,EA080,?,EA080-NA,,,,,, +106968,Nh1,EA080,Floor level with ground,EA080-2,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +106969,Nh10,EA080,Floor level with ground,EA080-2,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +106970,Nh11,EA080,Floor level with ground,EA080-2,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +106971,Nh12,EA080,Floor level with ground,EA080-2,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +106972,Nh13,EA080,Floor level with ground,EA080-2,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +106973,Nh14,EA080,Floor level with ground,EA080-2,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +106974,Nh15,EA080,Floor level with ground,EA080-2,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +106975,Nh16,EA080,Floor level with ground,EA080-2,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106976,Nh17,EA080,Floor level with ground,EA080-2,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +106977,Nh18,EA080,Floor level with ground,EA080-2,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106978,Nh19,EA080,Subterranean,EA080-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +106979,Nh2,EA080,Floor level with ground,EA080-2,,dozier1954,,1950,EthnographicAtlas_1967_p117, +106980,Nh20,EA080,Floor level with ground,EA080-2,,gifford1931,,1860,EthnographicAtlas_1967_p117, +106981,Nh21,EA080,Subterranean,EA080-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +106982,Nh22,EA080,Subterranean,EA080-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +106983,Nh23,EA080,Floor level with ground,EA080-2,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +106984,Nh24,EA080,Floor level with ground,EA080-2,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +106985,Nh25,EA080,Floor level with ground,EA080-2,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +106986,Nh26,EA080,?,EA080-NA,,,,,, +106987,Nh27,EA080,?,EA080-NA,,,,,, +106988,Nh3,EA080,Floor level with ground,EA080-2,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +106989,Nh4,EA080,Floor level with ground,EA080-2,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +106990,Nh5,EA080,Floor level with ground,EA080-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +106991,Nh6,EA080,Floor level with ground,EA080-2,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +106992,Nh7,EA080,Floor level with ground,EA080-2,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +106993,Nh8,EA080,Floor level with ground,EA080-2,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +106994,Nh9,EA080,Floor level with ground,EA080-2,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +106995,Ni1,EA080,Floor level with ground,EA080-2,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +106996,Ni2,EA080,Subterranean,EA080-1,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +106997,Ni3,EA080,Floor level with ground,EA080-2,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +106998,Ni4,EA080,Floor level with ground,EA080-2,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +106999,Ni5,EA080,Floor level with ground,EA080-2,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +107000,Ni6,EA080,Floor level with ground,EA080-2,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +107001,Ni7,EA080,Floor level with ground,EA080-2,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +107002,Ni8,EA080,?,EA080-NA,,,,,, +107003,Ni9,EA080,?,EA080-NA,,,,,, +107004,Nj1,EA080,Floor level with ground,EA080-2,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107005,Nj10,EA080,Floor level with ground,EA080-2,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107006,Nj11,EA080,?,EA080-NA,,,,,, +107007,Nj12,EA080,?,EA080-NA,,,,,, +107008,Nj13,EA080,?,EA080-NA,,,,,, +107009,Nj14,EA080,?,EA080-NA,,,,,, +107010,Nj2,EA080,Elevated slightly,EA080-3,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +107011,Nj3,EA080,Floor level with ground,EA080-2,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +107012,Nj4,EA080,Floor level with ground,EA080-2,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p121, +107013,Nj5,EA080,?,EA080-NA,,,,,, +107014,Nj6,EA080,Floor level with ground,EA080-2,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +107015,Nj7,EA080,Floor level with ground,EA080-2,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107016,Nj8,EA080,Elevated slightly,EA080-3,,foster1948,,1500,EthnographicAtlas_1967_p121, +107017,Nj9,EA080,Floor level with ground,EA080-2,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +107018,Sa1,EA080,Floor level with ground,EA080-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +107019,Sa10,EA080,Floor level with ground,EA080-2,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +107020,Sa11,EA080,?,EA080-NA,,,,,, +107021,Sa12,EA080,Floor level with ground,EA080-2,,stone1948,,1948,EthnographicAtlas_1967_p121, +107022,Sa13,EA080,Floor level with ground,EA080-2,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +107023,Sa14,EA080,?,EA080-NA,,,,,, +107024,Sa15,EA080,?,EA080-NA,,,,,, +107025,Sa16,EA080,?,EA080-NA,,,,,, +107026,Sa17,EA080,?,EA080-NA,,,,,, +107027,Sa2,EA080,?,EA080-NA,,,,,, +107028,Sa3,EA080,Elevated slightly,EA080-3,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +107029,Sa4,EA080,Raised substantially,EA080-4,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +107030,Sa5,EA080,Floor level with ground,EA080-2,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +107031,Sa6,EA080,Floor level with ground,EA080-2,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +107032,Sa7,EA080,Floor level with ground,EA080-2,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +107033,Sa8,EA080,Floor level with ground,EA080-2,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +107034,Sa9,EA080,Raised substantially,EA080-4,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +107035,Sb1,EA080,Floor level with ground,EA080-2,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +107036,Sb2,EA080,Floor level with ground,EA080-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +107037,Sb3,EA080,?,EA080-NA,,,,,, +107038,Sb4,EA080,Floor level with ground,EA080-2,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +107039,Sb5,EA080,Raised substantially,EA080-4,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +107040,Sb6,EA080,Floor level with ground,EA080-2,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +107041,Sb7,EA080,?,EA080-NA,,,,,, +107042,Sb8,EA080,Floor level with ground,EA080-2,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +107043,Sb9,EA080,Floor level with ground,EA080-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +107044,Sc1,EA080,Raised substantially,EA080-4,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +107045,Sc10,EA080,?,EA080-NA,,,,,, +107046,Sc11,EA080,Floor level with ground,EA080-2,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p121, +107047,Sc12,EA080,Floor level with ground,EA080-2,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +107048,Sc13,EA080,Floor level with ground,EA080-2,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +107049,Sc14,EA080,?,EA080-NA,,,,,, +107050,Sc15,EA080,Floor level with ground,EA080-2,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +107051,Sc16,EA080,Floor level with ground,EA080-2,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +107052,Sc17,EA080,Floor level with ground,EA080-2,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +107053,Sc18,EA080,Floor level with ground,EA080-2,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +107054,Sc2,EA080,Floor level with ground,EA080-2,,leedsnd,,1950,EthnographicAtlas_1967_p121, +107055,Sc3,EA080,Floor level with ground,EA080-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +107056,Sc4,EA080,Floor level with ground,EA080-2,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +107057,Sc5,EA080,Floor level with ground,EA080-2,,farabee1918,,1900,EthnographicAtlas_1967_p121, +107058,Sc6,EA080,Floor level with ground,EA080-2,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107059,Sc7,EA080,Floor level with ground,EA080-2,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +107060,Sc8,EA080,Floor level with ground,EA080-2,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +107061,Sc9,EA080,Floor level with ground,EA080-2,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +107062,Sd1,EA080,Floor level with ground,EA080-2,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107063,Sd2,EA080,Floor level with ground,EA080-2,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +107064,Sd3,EA080,Raised substantially,EA080-4,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +107065,Sd4,EA080,Floor level with ground,EA080-2,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +107066,Sd5,EA080,Floor level with ground,EA080-2,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +107067,Sd6,EA080,Floor level with ground,EA080-2,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +107068,Sd7,EA080,Floor level with ground,EA080-2,,fock1963,,1950,EthnographicAtlas_1967_p121, +107069,Sd8,EA080,Floor level with ground,EA080-2,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +107070,Sd9,EA080,Floor level with ground,EA080-2,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107071,Se1,EA080,Floor level with ground,EA080-2,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +107072,Se10,EA080,Floor level with ground,EA080-2,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +107073,Se11,EA080,Floor level with ground,EA080-2,,prost1965,,1960,EthnographicAtlas_1967_p125, +107074,Se12,EA080,?,EA080-NA,,,,,, +107075,Se2,EA080,Floor level with ground,EA080-2,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +107076,Se3,EA080,Floor level with ground,EA080-2,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +107077,Se4,EA080,Floor level with ground,EA080-2,,fejos1943,,1940,EthnographicAtlas_1967_p121, +107078,Se5,EA080,Floor level with ground,EA080-2,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +107079,Se6,EA080,Floor level with ground,EA080-2,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +107080,Se7,EA080,Floor level with ground,EA080-2,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107081,Se8,EA080,Floor level with ground,EA080-2,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +107082,Se9,EA080,Floor level with ground,EA080-2,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +107083,Sf1,EA080,Floor level with ground,EA080-2,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +107084,Sf2,EA080,Floor level with ground,EA080-2,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +107085,Sf3,EA080,Raised substantially,EA080-4,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +107086,Sf4,EA080,Floor level with ground,EA080-2,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +107087,Sf5,EA080,Floor level with ground,EA080-2,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +107088,Sf6,EA080,Raised substantially,EA080-4,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +107089,Sf7,EA080,Floor level with ground,EA080-2,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +107090,Sf8,EA080,?,EA080-NA,,,,,, +107091,Sf9,EA080,?,EA080-NA,,,,,, +107092,Sg1,EA080,Subterranean,EA080-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +107093,Sg2,EA080,Floor level with ground,EA080-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107094,Sg3,EA080,Floor level with ground,EA080-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +107095,Sg4,EA080,Floor level with ground,EA080-2,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +107096,Sg5,EA080,Floor level with ground,EA080-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107097,Sh1,EA080,Floor level with ground,EA080-2,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +107098,Sh2,EA080,Floor level with ground,EA080-2,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +107099,Sh3,EA080,Floor level with ground,EA080-2,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +107100,Sh4,EA080,Floor level with ground,EA080-2,,oberg1949,,1940,EthnographicAtlas_1967_p125, +107101,Sh5,EA080,Floor level with ground,EA080-2,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +107102,Sh6,EA080,Floor level with ground,EA080-2,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +107103,Sh7,EA080,Floor level with ground,EA080-2,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +107104,Sh8,EA080,Floor level with ground,EA080-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +107105,Sh9,EA080,?,EA080-NA,,,,,, +107106,Si1,EA080,Floor level with ground,EA080-2,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107107,Si10,EA080,Floor level with ground,EA080-2,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +107108,Si2,EA080,Floor level with ground,EA080-2,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +107109,Si3,EA080,Floor level with ground,EA080-2,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107110,Si4,EA080,Floor level with ground,EA080-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +107111,Si5,EA080,Floor level with ground,EA080-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +107112,Si6,EA080,Floor level with ground,EA080-2,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +107113,Si7,EA080,Floor level with ground,EA080-2,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +107114,Si8,EA080,Floor level with ground,EA080-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +107115,Si9,EA080,?,EA080-NA,,,,,, +107116,Sj1,EA080,Floor level with ground,EA080-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +107117,Sj10,EA080,Floor level with ground,EA080-2,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107118,Sj11,EA080,Floor level with ground,EA080-2,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +107119,Sj2,EA080,Floor level with ground,EA080-2,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +107120,Sj3,EA080,Floor level with ground,EA080-2,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +107121,Sj4,EA080,Floor level with ground,EA080-2,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +107122,Sj5,EA080,Floor level with ground,EA080-2,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +107123,Sj6,EA080,Floor level with ground,EA080-2,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107124,Sj7,EA080,Floor level with ground,EA080-2,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +107125,Sj8,EA080,Floor level with ground,EA080-2,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +107126,Sj9,EA080,Floor level with ground,EA080-2,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +107127,ch12,EA080,Floor level with ground,EA080-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +107128,ch13,EA080,Elevated slightly,EA080-3,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +107129,ch14,EA080,Floor level with ground,EA080-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +107130,ch15,EA080,Elevated slightly,EA080-3,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +107131,ch16,EA080,Floor level with ground,EA080-2,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +107132,ch17,EA080,Floor level with ground,EA080-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +107133,ch18,EA080,Elevated slightly,EA080-3,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +107134,ch19,EA080,Elevated slightly,EA080-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +107135,ch20,EA080,Floor level with ground,EA080-2,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +107136,ch21,EA080,Floor level with ground,EA080-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +107137,ch22,EA080,Floor level with ground,EA080-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +107138,ch23,EA080,Floor level with ground,EA080-2,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +107139,ch24,EA080,Floor level with ground,EA080-2,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +107140,ch25,EA080,Floor level with ground,EA080-2,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +107141,ch26,EA080,Elevated slightly,EA080-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +107142,ch27,EA080,Elevated slightly,EA080-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +107143,ch28,EA080,Elevated slightly,EA080-3,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +107144,ec12,EA080,Floor level with ground,EA080-2,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +107145,ec13,EA080,Subterranean,EA080-1,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +107146,ec14,EA080,Floor level with ground,EA080-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +107147,ec15,EA080,Floor level with ground,EA080-2,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +107148,ec16,EA080,Floor level with ground,EA080-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +107149,ec17,EA080,Subterranean,EA080-1,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +107150,ec18,EA080,Floor level with ground,EA080-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +107151,ec19,EA080,Floor level with ground,EA080-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +107152,ec20,EA080,Subterranean,EA080-1,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +107153,ec21,EA080,Subterranean,EA080-1,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +107154,Aa1,EA081,Walls not diff. from roof,EA081-11,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +107155,Aa2,EA081,Walls not diff. from roof,EA081-11,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +107156,Aa3,EA081,Walls not diff. from roof,EA081-11,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +107157,Aa4,EA081,Walls not diff. from roof,EA081-11,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +107158,Aa5,EA081,Walls not diff. from roof,EA081-11,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +107159,Aa6,EA081,Walls not diff. from roof,EA081-11,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +107160,Aa7,EA081,Walls not diff. from roof,EA081-11,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +107161,Aa8,EA081,Walls not diff. from roof,EA081-11,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +107162,Aa9,EA081,Walls not diff. from roof,EA081-11,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +107163,Ab1,EA081,Walls not diff. from roof,EA081-11,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +107164,Ab10,EA081,Walls not diff. from roof,EA081-11,,hunter1936,,1936,EthnographicAtlas_1967_p65, +107165,Ab11,EA081,Walls not diff. from roof,EA081-11,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +107166,Ab12,EA081,Walls not diff. from roof,EA081-11,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +107167,Ab13,EA081,"Adobe, clay or brick",EA081-9,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +107168,Ab14,EA081,?,EA081-NA,,,,,, +107169,Ab15,EA081,"Adobe, clay or brick",EA081-9,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +107170,Ab16,EA081,"Plaster, clay or similar",EA081-2,,earthy1933,,1930,EthnographicAtlas_1967_p65, +107171,Ab17,EA081,"Plaster, clay or similar",EA081-2,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +107172,Ab18,EA081,?,EA081-NA,,,,,, +107173,Ab19,EA081,"Wood, incl. bamboo",EA081-3,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +107174,Ab2,EA081,Walls not diff. from roof,EA081-11,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +107175,Ab20,EA081,"Wood, incl. bamboo",EA081-3,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +107176,Ab21a,EA081,Walls not diff. from roof,EA081-11,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +107177,Ab21b,EA081,?,EA081-NA,,,,,, +107178,Ab22,EA081,?,EA081-NA,,,,,, +107179,Ab3,EA081,"Plaster, clay or similar",EA081-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +107180,Ab4,EA081,"Plaster, clay or similar",EA081-2,,junod1927,,1920,EthnographicAtlas_1967_p65, +107181,Ab5,EA081,"Plaster, clay or similar",EA081-2,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +107182,Ab6,EA081,"Plaster, clay or similar",EA081-2,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +107183,Ab7,EA081,Mats,EA081-7,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +107184,Ab8,EA081,"Plaster, clay or similar",EA081-2,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +107185,Ab9,EA081,Walls not diff. from roof,EA081-11,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +107186,Ac1,EA081,"Plaster, clay or similar",EA081-2,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +107187,Ac10,EA081,"Grass, leaves or thatch",EA081-8,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +107188,Ac11,EA081,"Plaster, clay or similar",EA081-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +107189,Ac12,EA081,Walls not diff. from roof,EA081-11,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +107190,Ac13,EA081,?,EA081-NA,,,,,, +107191,Ac14,EA081,Mats,EA081-7,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +107192,Ac15,EA081,?,EA081-NA,,,,,, +107193,Ac16,EA081,?,EA081-NA,,,,,, +107194,Ac17,EA081,"Wood, incl. bamboo",EA081-3,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +107195,Ac18,EA081,"Wood, incl. bamboo",EA081-3,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +107196,Ac19,EA081,?,EA081-NA,,,,,, +107197,Ac2,EA081,?,EA081-NA,,,,,, +107198,Ac20,EA081,?,EA081-NA,,,,,, +107199,Ac21,EA081,"Grass, leaves or thatch",EA081-8,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +107200,Ac22,EA081,Mats,EA081-7,,mertens1935,,1930,EthnographicAtlas_1967_p65, +107201,Ac23,EA081,"Wood, incl. bamboo",EA081-3,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +107202,Ac24,EA081,?,EA081-NA,,,,,, +107203,Ac25,EA081,"Plaster, clay or similar",EA081-2,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +107204,Ac26,EA081,?,EA081-NA,,,,,, +107205,Ac27,EA081,"Plaster, clay or similar",EA081-2,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +107206,Ac28,EA081,"Grass, leaves or thatch",EA081-8,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +107207,Ac29,EA081,?,EA081-NA,,,,,, +107208,Ac3,EA081,"Plaster, clay or similar",EA081-2,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +107209,Ac30,EA081,"Plaster, clay or similar",EA081-2,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +107210,Ac31,EA081,?,EA081-NA,,,,,, +107211,Ac32,EA081,"Plaster, clay or similar",EA081-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +107212,Ac33,EA081,"Plaster, clay or similar",EA081-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +107213,Ac34,EA081,Mats,EA081-7,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +107214,Ac35,EA081,?,EA081-NA,,,,,, +107215,Ac36,EA081,?,EA081-NA,,,,,, +107216,Ac37,EA081,"Plaster, clay or similar",EA081-2,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +107217,Ac38,EA081,"Plaster, clay or similar",EA081-2,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +107218,Ac39,EA081,"Plaster, clay or similar",EA081-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +107219,Ac4,EA081,"Grass, leaves or thatch",EA081-8,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +107220,Ac40,EA081,?,EA081-NA,,,,,, +107221,Ac41,EA081,?,EA081-NA,,,,,, +107222,Ac42,EA081,?,EA081-NA,,,,,, +107223,Ac43,EA081,?,EA081-NA,,,,,, +107224,Ac5,EA081,"Plaster, clay or similar",EA081-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +107225,Ac6,EA081,"Plaster, clay or similar",EA081-2,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +107226,Ac7,EA081,?,EA081-NA,,,,,, +107227,Ac8,EA081,"Wood, incl. bamboo",EA081-3,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +107228,Ac9,EA081,?,EA081-NA,,,,,, +107229,Ad1,EA081,"Wood, incl. bamboo",EA081-3,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +107230,Ad10,EA081,Walls not diff. from roof,EA081-11,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +107231,Ad11,EA081,Mats,EA081-7,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +107232,Ad12,EA081,"Plaster, clay or similar",EA081-2,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +107233,Ad13,EA081,Mats,EA081-7,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +107234,Ad14,EA081,"Wood, incl. bamboo",EA081-3,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +107235,Ad15,EA081,?,EA081-NA,,,,,, +107236,Ad16,EA081,?,EA081-NA,,,,,, +107237,Ad17,EA081,"Adobe, clay or brick",EA081-9,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +107238,Ad18,EA081,?,EA081-NA,,,,,, +107239,Ad19,EA081,"Adobe, clay or brick",EA081-9,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +107240,Ad2,EA081,Walls not diff. from roof,EA081-11,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +107241,Ad20,EA081,"Plaster, clay or similar",EA081-2,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +107242,Ad21,EA081,"Plaster, clay or similar",EA081-2,,maurice193538,,1930,EthnographicAtlas_1967_p69, +107243,Ad22,EA081,"Adobe, clay or brick",EA081-9,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +107244,Ad23,EA081,"Plaster, clay or similar",EA081-2,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +107245,Ad24,EA081,"Adobe, clay or brick",EA081-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +107246,Ad25,EA081,"Plaster, clay or similar",EA081-2,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +107247,Ad26,EA081,?,EA081-NA,,,,,, +107248,Ad27,EA081,?,EA081-NA,,,,,, +107249,Ad28,EA081,?,EA081-NA,,,,,, +107250,Ad29,EA081,"Grass, leaves or thatch",EA081-8,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +107251,Ad3,EA081,Mats,EA081-7,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +107252,Ad30,EA081,?,EA081-NA,,,,,, +107253,Ad31,EA081,Mats,EA081-7,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +107254,Ad32,EA081,?,EA081-NA,,,,,, +107255,Ad33,EA081,"Plaster, clay or similar",EA081-2,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +107256,Ad34,EA081,"Plaster, clay or similar",EA081-2,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +107257,Ad35,EA081,"Plaster, clay or similar",EA081-2,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +107258,Ad36,EA081,?,EA081-NA,,,,,, +107259,Ad37,EA081,?,EA081-NA,,,,,, +107260,Ad38,EA081,Walls not diff. from roof,EA081-11,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +107261,Ad39,EA081,"Wood, incl. bamboo",EA081-3,,gray1963,,1950,EthnographicAtlas_1967_p69, +107262,Ad4,EA081,?,EA081-NA,,,,,, +107263,Ad40,EA081,"Plaster, clay or similar",EA081-2,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +107264,Ad41,EA081,"Plaster, clay or similar",EA081-2,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +107265,Ad42,EA081,Walls not diff. from roof,EA081-11,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +107266,Ad43,EA081,?,EA081-NA,,,,,, +107267,Ad44,EA081,Walls not diff. from roof,EA081-11,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +107268,Ad45,EA081,Walls not diff. from roof,EA081-11,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +107269,Ad46,EA081,"Adobe, clay or brick",EA081-9,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +107270,Ad47,EA081,Walls not diff. from roof,EA081-11,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +107271,Ad48,EA081,Walls not diff. from roof,EA081-11,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +107272,Ad49,EA081,Walls not diff. from roof,EA081-11,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +107273,Ad5,EA081,?,EA081-NA,,,,,, +107274,Ad50,EA081,?,EA081-NA,,,,,, +107275,Ad51,EA081,?,EA081-NA,,,,,, +107276,Ad6,EA081,"Adobe, clay or brick",EA081-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +107277,Ad7,EA081,Walls not diff. from roof,EA081-11,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +107278,Ad8,EA081,?,EA081-NA,,,,,, +107279,Ad9,EA081,"Plaster, clay or similar",EA081-2,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +107280,Ae1,EA081,Walls not diff. from roof,EA081-11,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +107281,Ae10,EA081,Walls not diff. from roof,EA081-11,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +107282,Ae11,EA081,?,EA081-NA,,,,,, +107283,Ae12,EA081,Mats,EA081-7,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +107284,Ae13,EA081,Walls not diff. from roof,EA081-11,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +107285,Ae14,EA081,Walls not diff. from roof,EA081-11,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +107286,Ae15,EA081,"Wood, incl. bamboo",EA081-3,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +107287,Ae16,EA081,"Plaster, clay or similar",EA081-2,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +107288,Ae17,EA081,Bark,EA081-4,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +107289,Ae18,EA081,"Plaster, clay or similar",EA081-2,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +107290,Ae19,EA081,"Adobe, clay or brick",EA081-9,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +107291,Ae2,EA081,Mats,EA081-7,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +107292,Ae20,EA081,?,EA081-NA,,,,,, +107293,Ae21,EA081,?,EA081-NA,,,,,, +107294,Ae22,EA081,?,EA081-NA,,,,,, +107295,Ae23,EA081,?,EA081-NA,,,,,, +107296,Ae24,EA081,?,EA081-NA,,,,,, +107297,Ae25,EA081,?,EA081-NA,,,,,, +107298,Ae26,EA081,?,EA081-NA,,,,,, +107299,Ae27,EA081,?,EA081-NA,,,,,, +107300,Ae28,EA081,Mats,EA081-7,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +107301,Ae29,EA081,"Grass, leaves or thatch",EA081-8,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +107302,Ae3,EA081,Bark,EA081-4,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +107303,Ae30,EA081,"Wood, incl. bamboo",EA081-3,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +107304,Ae31,EA081,?,EA081-NA,,,,,, +107305,Ae32,EA081,Bark,EA081-4,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +107306,Ae33,EA081,"Grass, leaves or thatch",EA081-8,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +107307,Ae34,EA081,Walls not diff. from roof,EA081-11,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +107308,Ae35,EA081,"Plaster, clay or similar",EA081-2,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +107309,Ae36,EA081,"Grass, leaves or thatch",EA081-8,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +107310,Ae37,EA081,Bark,EA081-4,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +107311,Ae38,EA081,?,EA081-NA,,,,,, +107312,Ae39,EA081,"Plaster, clay or similar",EA081-2,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +107313,Ae4,EA081,"Wood, incl. bamboo",EA081-3,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +107314,Ae40,EA081,Bark,EA081-4,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +107315,Ae41,EA081,Bark,EA081-4,,andersson1953,,1940,EthnographicAtlas_1967_p69, +107316,Ae42,EA081,Bark,EA081-4,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +107317,Ae43,EA081,Bark,EA081-4,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +107318,Ae44,EA081,"Wood, incl. bamboo",EA081-3,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +107319,Ae45,EA081,"Plaster, clay or similar",EA081-2,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +107320,Ae46,EA081,"Wood, incl. bamboo",EA081-3,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +107321,Ae47,EA081,?,EA081-NA,,,,,, +107322,Ae48,EA081,"Plaster, clay or similar",EA081-2,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +107323,Ae49,EA081,"Plaster, clay or similar",EA081-2,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +107324,Ae5,EA081,"Adobe, clay or brick",EA081-9,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +107325,Ae50,EA081,"Plaster, clay or similar",EA081-2,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +107326,Ae51,EA081,"Plaster, clay or similar",EA081-2,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +107327,Ae52,EA081,"Plaster, clay or similar",EA081-2,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +107328,Ae53,EA081,"Plaster, clay or similar",EA081-2,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +107329,Ae54,EA081,"Plaster, clay or similar",EA081-2,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +107330,Ae55,EA081,"Plaster, clay or similar",EA081-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +107331,Ae56,EA081,"Plaster, clay or similar",EA081-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +107332,Ae57,EA081,"Plaster, clay or similar",EA081-2,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +107333,Ae58,EA081,?,EA081-NA,,,,,, +107334,Ae59,EA081,"Plaster, clay or similar",EA081-2,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +107335,Ae6,EA081,?,EA081-NA,,,,,, +107336,Ae7,EA081,?,EA081-NA,,,,,, +107337,Ae8,EA081,Walls not diff. from roof,EA081-11,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +107338,Ae9,EA081,"Plaster, clay or similar",EA081-2,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +107339,Af1,EA081,"Adobe, clay or brick",EA081-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +107340,Af10,EA081,"Plaster, clay or similar",EA081-2,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +107341,Af11,EA081,"Plaster, clay or similar",EA081-2,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +107342,Af12,EA081,"Plaster, clay or similar",EA081-2,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +107343,Af13,EA081,"Adobe, clay or brick",EA081-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +107344,Af14,EA081,"Plaster, clay or similar",EA081-2,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +107345,Af15,EA081,"Plaster, clay or similar",EA081-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +107346,Af16,EA081,"Plaster, clay or similar",EA081-2,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +107347,Af17,EA081,?,EA081-NA,,,,,, +107348,Af18,EA081,"Plaster, clay or similar",EA081-2,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +107349,Af19,EA081,"Plaster, clay or similar",EA081-2,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +107350,Af2,EA081,"Adobe, clay or brick",EA081-9,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +107351,Af20,EA081,"Plaster, clay or similar",EA081-2,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +107352,Af21,EA081,Mats,EA081-7,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +107353,Af22,EA081,"Adobe, clay or brick",EA081-9,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +107354,Af23,EA081,"Adobe, clay or brick",EA081-9,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +107355,Af24,EA081,"Adobe, clay or brick",EA081-9,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +107356,Af25,EA081,"Plaster, clay or similar",EA081-2,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +107357,Af26,EA081,"Adobe, clay or brick",EA081-9,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +107358,Af27,EA081,?,EA081-NA,,,,,, +107359,Af28,EA081,"Adobe, clay or brick",EA081-9,,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +107360,Af29,EA081,"Adobe, clay or brick",EA081-9,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +107361,Af3,EA081,"Adobe, clay or brick",EA081-9,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +107362,Af30,EA081,"Adobe, clay or brick",EA081-9,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +107363,Af31,EA081,"Adobe, clay or brick",EA081-9,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +107364,Af32,EA081,"Adobe, clay or brick",EA081-9,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107365,Af33,EA081,"Adobe, clay or brick",EA081-9,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107366,Af34,EA081,"Adobe, clay or brick",EA081-9,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107367,Af35,EA081,?,EA081-NA,,,,,, +107368,Af36,EA081,"Plaster, clay or similar",EA081-2,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +107369,Af37,EA081,"Adobe, clay or brick",EA081-9,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +107370,Af38,EA081,?,EA081-NA,,,,,, +107371,Af39,EA081,"Plaster, clay or similar",EA081-2,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +107372,Af4,EA081,"Wood, incl. bamboo",EA081-3,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +107373,Af40,EA081,Mats,EA081-7,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +107374,Af41,EA081,"Plaster, clay or similar",EA081-2,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +107375,Af42,EA081,"Plaster, clay or similar",EA081-2,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +107376,Af43,EA081,"Adobe, clay or brick",EA081-9,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +107377,Af44,EA081,?,EA081-NA,,,,,, +107378,Af45,EA081,?,EA081-NA,,,,,, +107379,Af46,EA081,"Plaster, clay or similar",EA081-2,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +107380,Af47,EA081,Mats,EA081-7,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +107381,Af48,EA081,"Plaster, clay or similar",EA081-2,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +107382,Af49,EA081,Mats,EA081-7,,schwab1947,,1940,EthnographicAtlas_1967_p73, +107383,Af5,EA081,"Plaster, clay or similar",EA081-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +107384,Af50,EA081,"Adobe, clay or brick",EA081-9,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +107385,Af51,EA081,"Adobe, clay or brick",EA081-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +107386,Af52,EA081,"Plaster, clay or similar",EA081-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +107387,Af53,EA081,"Adobe, clay or brick",EA081-9,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +107388,Af54,EA081,"Plaster, clay or similar",EA081-2,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +107389,Af55,EA081,?,EA081-NA,,,,,, +107390,Af56,EA081,Mats,EA081-7,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +107391,Af57,EA081,"Plaster, clay or similar",EA081-2,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +107392,Af58,EA081,"Plaster, clay or similar",EA081-2,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +107393,Af6,EA081,"Adobe, clay or brick",EA081-9,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +107394,Af7,EA081,"Plaster, clay or similar",EA081-2,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +107395,Af8,EA081,"Adobe, clay or brick",EA081-9,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +107396,Af9,EA081,"Plaster, clay or similar",EA081-2,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +107397,Ag1,EA081,"Adobe, clay or brick",EA081-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +107398,Ag10,EA081,"Plaster, clay or similar",EA081-2,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +107399,Ag11,EA081,"Adobe, clay or brick",EA081-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +107400,Ag12,EA081,"Adobe, clay or brick",EA081-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +107401,Ag13,EA081,"Plaster, clay or similar",EA081-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +107402,Ag14,EA081,"Adobe, clay or brick",EA081-9,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +107403,Ag15,EA081,Mats,EA081-7,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +107404,Ag16,EA081,Mats,EA081-7,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +107405,Ag17,EA081,Mats,EA081-7,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +107406,Ag18,EA081,"Plaster, clay or similar",EA081-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +107407,Ag19,EA081,"Plaster, clay or similar",EA081-2,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +107408,Ag2,EA081,"Adobe, clay or brick",EA081-9,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +107409,Ag20,EA081,"Adobe, clay or brick",EA081-9,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +107410,Ag21,EA081,"Stone, stucco or brick",EA081-1,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +107411,Ag22,EA081,Mats,EA081-7,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +107412,Ag23,EA081,"Adobe, clay or brick",EA081-9,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +107413,Ag24,EA081,"Adobe, clay or brick",EA081-9,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +107414,Ag25,EA081,"Adobe, clay or brick",EA081-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +107415,Ag26,EA081,"Adobe, clay or brick",EA081-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +107416,Ag27,EA081,"Adobe, clay or brick",EA081-9,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +107417,Ag28,EA081,"Adobe, clay or brick",EA081-9,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +107418,Ag29,EA081,"Adobe, clay or brick",EA081-9,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +107419,Ag3,EA081,"Adobe, clay or brick",EA081-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +107420,Ag30,EA081,"Adobe, clay or brick",EA081-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +107421,Ag31,EA081,"Adobe, clay or brick",EA081-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +107422,Ag32,EA081,"Adobe, clay or brick",EA081-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +107423,Ag33,EA081,"Adobe, clay or brick",EA081-9,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +107424,Ag34,EA081,"Adobe, clay or brick",EA081-9,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +107425,Ag35,EA081,"Adobe, clay or brick",EA081-9,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +107426,Ag36,EA081,"Adobe, clay or brick",EA081-9,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +107427,Ag37,EA081,"Adobe, clay or brick",EA081-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +107428,Ag38,EA081,"Adobe, clay or brick",EA081-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +107429,Ag39,EA081,"Adobe, clay or brick",EA081-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +107430,Ag4,EA081,"Adobe, clay or brick",EA081-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +107431,Ag40,EA081,"Adobe, clay or brick",EA081-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +107432,Ag41,EA081,"Adobe, clay or brick",EA081-9,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +107433,Ag42,EA081,"Stone, stucco or brick",EA081-1,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +107434,Ag43,EA081,"Adobe, clay or brick",EA081-9,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +107435,Ag44,EA081,"Adobe, clay or brick",EA081-9,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +107436,Ag45,EA081,"Adobe, clay or brick",EA081-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +107437,Ag46,EA081,"Adobe, clay or brick",EA081-9,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +107438,Ag47,EA081,"Adobe, clay or brick",EA081-9,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +107439,Ag48,EA081,"Adobe, clay or brick",EA081-9,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +107440,Ag49,EA081,"Adobe, clay or brick",EA081-9,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +107441,Ag5,EA081,"Adobe, clay or brick",EA081-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +107442,Ag50,EA081,"Adobe, clay or brick",EA081-9,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +107443,Ag51,EA081,"Adobe, clay or brick",EA081-9,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +107444,Ag52,EA081,"Adobe, clay or brick",EA081-9,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +107445,Ag53,EA081,"Adobe, clay or brick",EA081-9,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +107446,Ag54,EA081,"Plaster, clay or similar",EA081-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +107447,Ag6,EA081,"Adobe, clay or brick",EA081-9,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +107448,Ag7,EA081,"Adobe, clay or brick",EA081-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +107449,Ag8,EA081,Mats,EA081-7,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +107450,Ag9,EA081,"Adobe, clay or brick",EA081-9,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +107451,Ah1,EA081,"Adobe, clay or brick",EA081-9,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107452,Ah10,EA081,"Plaster, clay or similar",EA081-2,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +107453,Ah11,EA081,"Adobe, clay or brick",EA081-9,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +107454,Ah12,EA081,"Adobe, clay or brick",EA081-9,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +107455,Ah13,EA081,"Adobe, clay or brick",EA081-9,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +107456,Ah14,EA081,Mats,EA081-7,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +107457,Ah15,EA081,"Adobe, clay or brick",EA081-9,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +107458,Ah16,EA081,"Adobe, clay or brick",EA081-9,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +107459,Ah17,EA081,"Adobe, clay or brick",EA081-9,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +107460,Ah18,EA081,"Adobe, clay or brick",EA081-9,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +107461,Ah19,EA081,"Adobe, clay or brick",EA081-9,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +107462,Ah2,EA081,"Adobe, clay or brick",EA081-9,,meek1931a,,1920,EthnographicAtlas_1967_p77, +107463,Ah20,EA081,"Adobe, clay or brick",EA081-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +107464,Ah21,EA081,"Adobe, clay or brick",EA081-9,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107465,Ah22,EA081,"Stone, stucco or brick",EA081-1,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +107466,Ah23,EA081,"Adobe, clay or brick",EA081-9,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107467,Ah24,EA081,"Adobe, clay or brick",EA081-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107468,Ah25,EA081,"Adobe, clay or brick",EA081-9,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107469,Ah26,EA081,"Adobe, clay or brick",EA081-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107470,Ah27,EA081,?,EA081-NA,,,,,, +107471,Ah28,EA081,?,EA081-NA,,,,,, +107472,Ah29,EA081,?,EA081-NA,,,,,, +107473,Ah3,EA081,"Adobe, clay or brick",EA081-9,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +107474,Ah30,EA081,"Adobe, clay or brick",EA081-9,,meek1931b,,1920,EthnographicAtlas_1967_p77, +107475,Ah31,EA081,Mats,EA081-7,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +107476,Ah32,EA081,"Adobe, clay or brick",EA081-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107477,Ah33,EA081,Mats,EA081-7,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +107478,Ah34,EA081,"Adobe, clay or brick",EA081-9,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +107479,Ah35,EA081,"Adobe, clay or brick",EA081-9,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107480,Ah36,EA081,"Adobe, clay or brick",EA081-9,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +107481,Ah37,EA081,"Adobe, clay or brick",EA081-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107482,Ah38,EA081,"Adobe, clay or brick",EA081-9,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +107483,Ah39,EA081,"Stone, stucco or brick",EA081-1,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +107484,Ah4,EA081,Mats,EA081-7,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +107485,Ah5,EA081,"Adobe, clay or brick",EA081-9,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +107486,Ah6,EA081,"Adobe, clay or brick",EA081-9,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +107487,Ah7,EA081,"Adobe, clay or brick",EA081-9,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +107488,Ah8,EA081,"Plaster, clay or similar",EA081-2,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +107489,Ah9,EA081,"Adobe, clay or brick",EA081-9,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +107490,Ai1,EA081,"Adobe, clay or brick",EA081-9,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +107491,Ai10,EA081,"Plaster, clay or similar",EA081-2,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +107492,Ai11,EA081,"Grass, leaves or thatch",EA081-8,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +107493,Ai12,EA081,"Adobe, clay or brick",EA081-9,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +107494,Ai13,EA081,Mats,EA081-7,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +107495,Ai14,EA081,Mats,EA081-7,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p77, +107496,Ai15,EA081,"Adobe, clay or brick",EA081-9,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +107497,Ai16,EA081,"Adobe, clay or brick",EA081-9,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +107498,Ai17,EA081,?,EA081-NA,,,,,, +107499,Ai18,EA081,?,EA081-NA,,,,,, +107500,Ai19,EA081,Walls not diff. from roof,EA081-11,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +107501,Ai2,EA081,"Adobe, clay or brick",EA081-9,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +107502,Ai20,EA081,"Adobe, clay or brick",EA081-9,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +107503,Ai21,EA081,"Adobe, clay or brick",EA081-9,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +107504,Ai22,EA081,Mats,EA081-7,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +107505,Ai23,EA081,"Wood, incl. bamboo",EA081-3,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +107506,Ai24,EA081,"Adobe, clay or brick",EA081-9,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +107507,Ai25,EA081,"Plaster, clay or similar",EA081-2,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +107508,Ai26,EA081,"Plaster, clay or similar",EA081-2,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +107509,Ai27,EA081,"Adobe, clay or brick",EA081-9,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +107510,Ai28,EA081,"Wood, incl. bamboo",EA081-3,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +107511,Ai29,EA081,Walls not diff. from roof,EA081-11,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +107512,Ai3,EA081,"Adobe, clay or brick",EA081-9,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +107513,Ai30,EA081,"Wood, incl. bamboo",EA081-3,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +107514,Ai31,EA081,"Plaster, clay or similar",EA081-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +107515,Ai32,EA081,"Plaster, clay or similar",EA081-2,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +107516,Ai33,EA081,"Plaster, clay or similar",EA081-2,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +107517,Ai34,EA081,Mats,EA081-7,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +107518,Ai35,EA081,Mats,EA081-7,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +107519,Ai36,EA081,"Plaster, clay or similar",EA081-2,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +107520,Ai37,EA081,"Plaster, clay or similar",EA081-2,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +107521,Ai38,EA081,"Adobe, clay or brick",EA081-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +107522,Ai39,EA081,"Adobe, clay or brick",EA081-9,,nadel1947,,1940,EthnographicAtlas_1967_p77, +107523,Ai4,EA081,?,EA081-NA,,,,,, +107524,Ai40,EA081,"Adobe, clay or brick",EA081-9,,nadel1947,,1940,EthnographicAtlas_1967_p77, +107525,Ai41,EA081,"Adobe, clay or brick",EA081-9,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +107526,Ai42,EA081,"Adobe, clay or brick",EA081-9,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +107527,Ai43,EA081,"Wood, incl. bamboo",EA081-3,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +107528,Ai44,EA081,"Plaster, clay or similar",EA081-2,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p77, +107529,Ai45,EA081,"Plaster, clay or similar",EA081-2,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +107530,Ai46,EA081,"Plaster, clay or similar",EA081-2,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +107531,Ai47,EA081,Walls not diff. from roof,EA081-11,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +107532,Ai5,EA081,"Grass, leaves or thatch",EA081-8,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +107533,Ai6,EA081,"Adobe, clay or brick",EA081-9,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +107534,Ai7,EA081,"Adobe, clay or brick",EA081-9,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +107535,Ai8,EA081,"Adobe, clay or brick",EA081-9,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +107536,Ai9,EA081,"Plaster, clay or similar",EA081-2,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +107537,Aj1,EA081,Walls not diff. from roof,EA081-11,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +107538,Aj10,EA081,"Wood, incl. bamboo",EA081-3,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +107539,Aj11,EA081,"Plaster, clay or similar",EA081-2,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +107540,Aj12,EA081,?,EA081-NA,,,,,, +107541,Aj13,EA081,?,EA081-NA,,,,,, +107542,Aj14,EA081,?,EA081-NA,,,,,, +107543,Aj15,EA081,Mats,EA081-7,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +107544,Aj16,EA081,?,EA081-NA,,,,,, +107545,Aj17,EA081,"Plaster, clay or similar",EA081-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +107546,Aj18,EA081,Walls not diff. from roof,EA081-11,,jensen1959,,1950,EthnographicAtlas_1967_p81, +107547,Aj19,EA081,?,EA081-NA,,,,,, +107548,Aj2,EA081,Walls not diff. from roof,EA081-11,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +107549,Aj20,EA081,Walls not diff. from roof,EA081-11,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +107550,Aj21,EA081,"Plaster, clay or similar",EA081-2,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +107551,Aj22,EA081,"Plaster, clay or similar",EA081-2,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +107552,Aj23,EA081,Walls not diff. from roof,EA081-11,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +107553,Aj24,EA081,Walls not diff. from roof,EA081-11,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +107554,Aj25,EA081,"Plaster, clay or similar",EA081-2,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +107555,Aj26,EA081,"Wood, incl. bamboo",EA081-3,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +107556,Aj27,EA081,Walls not diff. from roof,EA081-11,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +107557,Aj28,EA081,"Plaster, clay or similar",EA081-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +107558,Aj29,EA081,Walls not diff. from roof,EA081-11,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +107559,Aj3,EA081,"Plaster, clay or similar",EA081-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +107560,Aj30,EA081,?,EA081-NA,,,,,, +107561,Aj31,EA081,?,EA081-NA,,,,,, +107562,Aj4,EA081,"Plaster, clay or similar",EA081-2,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +107563,Aj5,EA081,Walls not diff. from roof,EA081-11,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +107564,Aj6,EA081,"Plaster, clay or similar",EA081-2,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +107565,Aj7,EA081,"Plaster, clay or similar",EA081-2,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +107566,Aj8,EA081,"Plaster, clay or similar",EA081-2,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +107567,Aj9,EA081,"Plaster, clay or similar",EA081-2,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +107568,Ca1,EA081,"Wood, incl. bamboo",EA081-3,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +107569,Ca10,EA081,Walls not diff. from roof,EA081-11,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +107570,Ca11,EA081,Walls not diff. from roof,EA081-11,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +107571,Ca12,EA081,"Plaster, clay or similar",EA081-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +107572,Ca13,EA081,"Plaster, clay or similar",EA081-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +107573,Ca14,EA081,?,EA081-NA,,,,,, +107574,Ca15,EA081,"Wood, incl. bamboo",EA081-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +107575,Ca16,EA081,Walls not diff. from roof,EA081-11,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +107576,Ca17,EA081,"Wood, incl. bamboo",EA081-3,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +107577,Ca18,EA081,Walls not diff. from roof,EA081-11,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +107578,Ca19,EA081,"Wood, incl. bamboo",EA081-3,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +107579,Ca2,EA081,Walls not diff. from roof,EA081-11,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +107580,Ca20,EA081,Walls not diff. from roof,EA081-11,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +107581,Ca21,EA081,"Wood, incl. bamboo",EA081-3,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +107582,Ca22,EA081,Mats,EA081-7,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +107583,Ca23,EA081,"Plaster, clay or similar",EA081-2,,jensen1959,,1950,EthnographicAtlas_1967_p81, +107584,Ca24,EA081,"Stone, stucco or brick",EA081-1,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +107585,Ca25,EA081,Mats,EA081-7,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +107586,Ca26,EA081,?,EA081-NA,,,,,, +107587,Ca27,EA081,Mats,EA081-7,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +107588,Ca28,EA081,"Plaster, clay or similar",EA081-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +107589,Ca29,EA081,"Plaster, clay or similar",EA081-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +107590,Ca3,EA081,"Adobe, clay or brick",EA081-9,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +107591,Ca30,EA081,"Plaster, clay or similar",EA081-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +107592,Ca31,EA081,"Plaster, clay or similar",EA081-2,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +107593,Ca32,EA081,Walls not diff. from roof,EA081-11,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +107594,Ca33,EA081,Walls not diff. from roof,EA081-11,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +107595,Ca34,EA081,Mats,EA081-7,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +107596,Ca35,EA081,Fabric,EA081-6,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +107597,Ca36,EA081,Mats,EA081-7,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +107598,Ca37,EA081,Walls not diff. from roof,EA081-11,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +107599,Ca38,EA081,Walls not diff. from roof,EA081-11,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +107600,Ca39,EA081,"Adobe, clay or brick",EA081-9,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +107601,Ca4,EA081,"Plaster, clay or similar",EA081-2,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +107602,Ca40,EA081,Walls not diff. from roof,EA081-11,"In shape, but 'wood or poles' (code ""3"") in construction",straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +107603,Ca41,EA081,Walls not diff. from roof,EA081-11,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +107604,Ca42,EA081,"Plaster, clay or similar",EA081-2,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +107605,Ca43,EA081,?,EA081-NA,,,,,, +107606,Ca5,EA081,"Adobe, clay or brick",EA081-9,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +107607,Ca6,EA081,Walls not diff. from roof,EA081-11,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +107608,Ca7,EA081,"Plaster, clay or similar",EA081-2,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +107609,Ca8,EA081,"Wood, incl. bamboo",EA081-3,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +107610,Ca9,EA081,?,EA081-NA,,,,,, +107611,Cb1,EA081,"Adobe, clay or brick",EA081-9,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +107612,Cb10,EA081,"Adobe, clay or brick",EA081-9,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +107613,Cb11,EA081,Walls not diff. from roof,EA081-11,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +107614,Cb12,EA081,Mats,EA081-7,,reid1930,,1920,Ethnology_Vol5_No2_Apr_1966, +107615,Cb13,EA081,Walls not diff. from roof,EA081-11,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +107616,Cb14,EA081,Walls not diff. from roof,EA081-11,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +107617,Cb15,EA081,Walls not diff. from roof,EA081-11,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +107618,Cb16,EA081,Walls not diff. from roof,EA081-11,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +107619,Cb17,EA081,Mats,EA081-7,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +107620,Cb18,EA081,Walls not diff. from roof,EA081-11,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +107621,Cb19,EA081,"Adobe, clay or brick",EA081-9,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +107622,Cb2,EA081,Mats,EA081-7,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +107623,Cb20,EA081,Mats,EA081-7,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +107624,Cb21,EA081,Walls not diff. from roof,EA081-11,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +107625,Cb22,EA081,"Adobe, clay or brick",EA081-9,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +107626,Cb23,EA081,"Adobe, clay or brick",EA081-9,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +107627,Cb24,EA081,Walls not diff. from roof,EA081-11,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +107628,Cb25,EA081,"Adobe, clay or brick",EA081-9,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +107629,Cb26,EA081,"Adobe, clay or brick",EA081-9,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +107630,Cb27,EA081,"Adobe, clay or brick",EA081-9,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107631,Cb28,EA081,"Adobe, clay or brick",EA081-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107632,Cb29,EA081,"Adobe, clay or brick",EA081-9,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +107633,Cb3,EA081,Walls not diff. from roof,EA081-11,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +107634,Cb4,EA081,Fabric,EA081-6,,reid1930,,1920,EthnographicAtlas_1967_p81, +107635,Cb5,EA081,Walls not diff. from roof,EA081-11,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +107636,Cb6,EA081,"Adobe, clay or brick",EA081-9,,woodnd,,1920,EthnographicAtlas_1967_p81, +107637,Cb7,EA081,"Adobe, clay or brick",EA081-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +107638,Cb8,EA081,Walls not diff. from roof,EA081-11,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +107639,Cb9,EA081,"Adobe, clay or brick",EA081-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +107640,Cc1,EA081,Fabric,EA081-6,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +107641,Cc10,EA081,Mats,EA081-7,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +107642,Cc11,EA081,Mats,EA081-7,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +107643,Cc12,EA081,Mats,EA081-7,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +107644,Cc13,EA081,Hides or skins,EA081-5,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +107645,Cc14,EA081,"Stone, stucco or brick",EA081-1,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +107646,Cc15,EA081,"Adobe, clay or brick",EA081-9,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +107647,Cc16,EA081,Fabric,EA081-6,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +107648,Cc17,EA081,Fabric,EA081-6,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +107649,Cc18,EA081,Hides or skins,EA081-5,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +107650,Cc19,EA081,Fabric,EA081-6,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +107651,Cc2,EA081,Mats,EA081-7,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +107652,Cc20,EA081,?,EA081-NA,,,,,, +107653,Cc3,EA081,"Stone, stucco or brick",EA081-1,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +107654,Cc4,EA081,"Stone, stucco or brick",EA081-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +107655,Cc5,EA081,Hides or skins,EA081-5,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +107656,Cc6,EA081,Fabric,EA081-6,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +107657,Cc7,EA081,Fabric,EA081-6,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107658,Cc8,EA081,Hides or skins,EA081-5,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +107659,Cc9,EA081,Mats,EA081-7,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +107660,Cd1,EA081,"Adobe, clay or brick",EA081-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +107661,Cd10,EA081,"Stone, stucco or brick",EA081-1,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +107662,Cd11,EA081,"Stone, stucco or brick",EA081-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +107663,Cd12,EA081,"Stone, stucco or brick",EA081-1,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +107664,Cd13,EA081,Fabric,EA081-6,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +107665,Cd14,EA081,Fabric,EA081-6,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +107666,Cd15,EA081,"Stone, stucco or brick",EA081-1,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +107667,Cd16,EA081,"Adobe, clay or brick",EA081-9,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +107668,Cd17,EA081,Fabric,EA081-6,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +107669,Cd18,EA081,Fabric,EA081-6,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +107670,Cd19,EA081,"Stone, stucco or brick",EA081-1,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +107671,Cd2,EA081,"Stone, stucco or brick",EA081-1,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +107672,Cd20,EA081,Fabric,EA081-6,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +107673,Cd21,EA081,"Stone, stucco or brick",EA081-1,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +107674,Cd3,EA081,"Stone, stucco or brick",EA081-1,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +107675,Cd4,EA081,"Plaster, clay or similar",EA081-2,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +107676,Cd5,EA081,"Stone, stucco or brick",EA081-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +107677,Cd6,EA081,"Stone, stucco or brick",EA081-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +107678,Cd7,EA081,Fabric,EA081-6,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +107679,Cd8,EA081,"Stone, stucco or brick",EA081-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +107680,Cd9,EA081,Bark,EA081-4,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +107681,Ce1,EA081,"Wood, incl. bamboo",EA081-3,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +107682,Ce2,EA081,"Stone, stucco or brick",EA081-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +107683,Ce3,EA081,"Stone, stucco or brick",EA081-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +107684,Ce4,EA081,?,EA081-NA,,,,,, +107685,Ce5,EA081,"Stone, stucco or brick",EA081-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +107686,Ce6,EA081,"Stone, stucco or brick",EA081-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +107687,Ce7,EA081,"Stone, stucco or brick",EA081-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +107688,Ce8,EA081,"Stone, stucco or brick",EA081-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +107689,Cf1,EA081,"Wood, incl. bamboo",EA081-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +107690,Cf2,EA081,"Adobe, clay or brick",EA081-9,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +107691,Cf3,EA081,"Stone, stucco or brick",EA081-1,,munch1945,,1930,EthnographicAtlas_1967_p85, +107692,Cf4,EA081,"Adobe, clay or brick",EA081-9,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +107693,Cf5,EA081,"Wood, incl. bamboo",EA081-3,,miner1939,,1930,EthnographicAtlas_1967_p85, +107694,Cg1,EA081,"Stone, stucco or brick",EA081-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +107695,Cg2,EA081,"Stone, stucco or brick",EA081-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +107696,Cg3,EA081,"Stone, stucco or brick",EA081-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +107697,Cg4,EA081,Fabric,EA081-6,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +107698,Cg5,EA081,"Stone, stucco or brick",EA081-1,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +107699,Ch1,EA081,"Plaster, clay or similar",EA081-2,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +107700,Ch10,EA081,?,EA081-NA,,,,,, +107701,Ch11,EA081,"Wood, incl. bamboo",EA081-3,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +107702,Ch2,EA081,"Plaster, clay or similar",EA081-2,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +107703,Ch3,EA081,?,EA081-NA,,,,,, +107704,Ch4,EA081,"Wood, incl. bamboo",EA081-3,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +107705,Ch5,EA081,"Adobe, clay or brick",EA081-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +107706,Ch6,EA081,"Wood, incl. bamboo",EA081-3,,ember1954,,1910,EthnographicAtlas_1967_p85, +107707,Ch7,EA081,?,EA081-NA,,,,,, +107708,Ch8,EA081,?,EA081-NA,,,,,, +107709,Ch9,EA081,?,EA081-NA,,,,,, +107710,Ci1,EA081,Fabric,EA081-6,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +107711,Ci10,EA081,"Stone, stucco or brick",EA081-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +107712,Ci11,EA081,"Stone, stucco or brick",EA081-1,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +107713,Ci12,EA081,Mats,EA081-7,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +107714,Ci2,EA081,"Stone, stucco or brick",EA081-1,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +107715,Ci3,EA081,"Stone, stucco or brick",EA081-1,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p85, +107716,Ci4,EA081,"Plaster, clay or similar",EA081-2,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +107717,Ci5,EA081,"Stone, stucco or brick",EA081-1,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +107718,Ci6,EA081,"Stone, stucco or brick",EA081-1,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +107719,Ci7,EA081,"Stone, stucco or brick",EA081-1,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p85, +107720,Ci8,EA081,"Stone, stucco or brick",EA081-1,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +107721,Ci9,EA081,"Stone, stucco or brick",EA081-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +107722,Cj1,EA081,"Adobe, clay or brick",EA081-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +107723,Cj10,EA081,Mats,EA081-7,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +107724,Cj2,EA081,Fabric,EA081-6,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +107725,Cj3,EA081,"Stone, stucco or brick",EA081-1,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +107726,Cj4,EA081,"Adobe, clay or brick",EA081-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +107727,Cj5,EA081,Fabric,EA081-6,,dickson1949,,1930,EthnographicAtlas_1967_p89, +107728,Cj6,EA081,"Stone, stucco or brick",EA081-1,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +107729,Cj7,EA081,"Stone, stucco or brick",EA081-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +107730,Cj8,EA081,"Stone, stucco or brick",EA081-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +107731,Cj9,EA081,"Stone, stucco or brick",EA081-1,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +107732,Ea1,EA081,"Adobe, clay or brick",EA081-9,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p89, +107733,Ea10,EA081,?,EA081-NA,,,,,, +107734,Ea11,EA081,"Adobe, clay or brick",EA081-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +107735,Ea12,EA081,Fabric,EA081-6,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +107736,Ea13,EA081,"Plaster, clay or similar",EA081-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +107737,Ea2,EA081,"Stone, stucco or brick",EA081-1,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +107738,Ea3,EA081,"Adobe, clay or brick",EA081-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +107739,Ea4,EA081,"Stone, stucco or brick",EA081-1,,barth1956b,,1950,EthnographicAtlas_1967_p89, +107740,Ea5,EA081,"Adobe, clay or brick",EA081-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +107741,Ea6,EA081,Fabric,EA081-6,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +107742,Ea7,EA081,"Adobe, clay or brick",EA081-9,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +107743,Ea8,EA081,Fabric,EA081-6,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +107744,Ea9,EA081,"Adobe, clay or brick",EA081-9,,vreeland1957,,1950,EthnographicAtlas_1967_p89, +107745,Eb1,EA081,Fabric,EA081-6,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +107746,Eb2,EA081,"Adobe, clay or brick",EA081-9,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +107747,Eb3,EA081,Fabric,EA081-6,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +107748,Eb4,EA081,"Adobe, clay or brick",EA081-9,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +107749,Eb5,EA081,"Adobe, clay or brick",EA081-9,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +107750,Eb6,EA081,Fabric,EA081-6,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +107751,Eb7,EA081,"Adobe, clay or brick",EA081-9,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +107752,Eb8,EA081,?,EA081-NA,,,,,, +107753,Ec1,EA081,"Wood, incl. bamboo",EA081-3,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +107754,Ec10,EA081,Walls not diff. from roof,EA081-11,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +107755,Ec11,EA081,Walls not diff. from roof,EA081-11,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +107756,Ec2,EA081,Walls not diff. from roof,EA081-11,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107757,Ec3,EA081,Hides or skins,EA081-5,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +107758,Ec4,EA081,Walls not diff. from roof,EA081-11,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +107759,Ec5,EA081,"Wood, incl. bamboo",EA081-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +107760,Ec6,EA081,Walls not diff. from roof,EA081-11,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +107761,Ec7,EA081,"Grass, leaves or thatch",EA081-8,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +107762,Ec8,EA081,"Wood, incl. bamboo",EA081-3,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +107763,Ec9,EA081,Bark,EA081-4,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +107764,Ed1,EA081,"Wood, incl. bamboo",EA081-3,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +107765,Ed10,EA081,?,EA081-NA,,,,,, +107766,Ed13,EA081,?,EA081-NA,,,,,, +107767,Ed14,EA081,?,EA081-NA,,,,,, +107768,Ed15a,EA081,?,EA081-NA,,,,,, +107769,Ed15b,EA081,"Wood, incl. bamboo",EA081-3,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +107770,Ed16,EA081,?,EA081-NA,,,,,, +107771,Ed2,EA081,?,EA081-NA,,,,,, +107772,Ed3,EA081,"Adobe, clay or brick",EA081-9,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +107773,Ed4,EA081,"Wood, incl. bamboo",EA081-3,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +107774,Ed5,EA081,"Wood, incl. bamboo",EA081-3,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107775,Ed6,EA081,?,EA081-NA,,,,,, +107776,Ed7,EA081,"Wood, incl. bamboo",EA081-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +107777,Ed8,EA081,"Stone, stucco or brick",EA081-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +107778,Ed9,EA081,"Wood, incl. bamboo",EA081-3,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +107779,Ee1,EA081,"Wood, incl. bamboo",EA081-3,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +107780,Ee2,EA081,Fabric,EA081-6,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p89, +107781,Ee3,EA081,Mats,EA081-7,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +107782,Ee4,EA081,"Stone, stucco or brick",EA081-1,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +107783,Ee5,EA081,"Stone, stucco or brick",EA081-1,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +107784,Ee6,EA081,"Stone, stucco or brick",EA081-1,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +107785,Ee7,EA081,?,EA081-NA,,,,,, +107786,Ee8,EA081,"Stone, stucco or brick",EA081-1,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +107787,Ef1,EA081,"Adobe, clay or brick",EA081-9,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +107788,Ef10,EA081,?,EA081-NA,,,,,, +107789,Ef11,EA081,"Plaster, clay or similar",EA081-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +107790,Ef2,EA081,"Adobe, clay or brick",EA081-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +107791,Ef3,EA081,?,EA081-NA,,,,,, +107792,Ef4,EA081,"Adobe, clay or brick",EA081-9,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +107793,Ef5,EA081,"Plaster, clay or similar",EA081-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +107794,Ef6,EA081,"Plaster, clay or similar",EA081-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +107795,Ef7,EA081,"Stone, stucco or brick",EA081-1,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +107796,Ef8,EA081,"Stone, stucco or brick",EA081-1,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +107797,Ef9,EA081,?,EA081-NA,,,,,, +107798,Eg1,EA081,Mats,EA081-7,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107799,Eg10,EA081,"Plaster, clay or similar",EA081-2,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +107800,Eg11,EA081,?,EA081-NA,,,,,, +107801,Eg12,EA081,?,EA081-NA,,,,,, +107802,Eg13,EA081,"Plaster, clay or similar",EA081-2,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107803,Eg14,EA081,Mats,EA081-7,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +107804,Eg2,EA081,"Plaster, clay or similar",EA081-2,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +107805,Eg3,EA081,"Plaster, clay or similar",EA081-2,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +107806,Eg4,EA081,Walls not diff. from roof,EA081-11,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +107807,Eg5,EA081,"Stone, stucco or brick",EA081-1,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +107808,Eg6,EA081,"Adobe, clay or brick",EA081-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +107809,Eg7,EA081,"Wood, incl. bamboo",EA081-3,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +107810,Eg8,EA081,"Adobe, clay or brick",EA081-9,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +107811,Eg9,EA081,"Wood, incl. bamboo",EA081-3,,elwin1939,,1930,EthnographicAtlas_1967_p93, +107812,Eh1,EA081,Open walls,EA081-10,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +107813,Eh10,EA081,?,EA081-NA,,,,,, +107814,Eh2,EA081,Mats,EA081-7,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +107815,Eh3,EA081,Mats,EA081-7,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +107816,Eh4,EA081,?,EA081-NA,,,,,, +107817,Eh5,EA081,Walls not diff. from roof,EA081-11,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +107818,Eh6,EA081,"Plaster, clay or similar",EA081-2,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +107819,Eh7,EA081,"Wood, incl. bamboo",EA081-3,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +107820,Eh8,EA081,Mats,EA081-7,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +107821,Eh9,EA081,?,EA081-NA,,,,,, +107822,Ei1,EA081,Mats,EA081-7,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107823,Ei10,EA081,"Wood, incl. bamboo",EA081-3,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +107824,Ei11,EA081,"Wood, incl. bamboo",EA081-3,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +107825,Ei12,EA081,"Wood, incl. bamboo",EA081-3,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +107826,Ei13,EA081,"Wood, incl. bamboo",EA081-3,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +107827,Ei14,EA081,Mats,EA081-7,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +107828,Ei15,EA081,?,EA081-NA,,,,,, +107829,Ei16,EA081,"Wood, incl. bamboo",EA081-3,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +107830,Ei17,EA081,?,EA081-NA,,,,,, +107831,Ei18,EA081,"Wood, incl. bamboo",EA081-3,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +107832,Ei19,EA081,"Wood, incl. bamboo",EA081-3,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +107833,Ei2,EA081,"Wood, incl. bamboo",EA081-3,,mills1922,,1920,EthnographicAtlas_1967_p93, +107834,Ei20,EA081,?,EA081-NA,,,,,, +107835,Ei3,EA081,"Wood, incl. bamboo",EA081-3,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +107836,Ei4,EA081,Mats,EA081-7,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +107837,Ei5,EA081,Mats,EA081-7,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +107838,Ei6,EA081,"Wood, incl. bamboo",EA081-3,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +107839,Ei7,EA081,"Wood, incl. bamboo",EA081-3,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +107840,Ei8,EA081,"Wood, incl. bamboo",EA081-3,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +107841,Ei9,EA081,"Wood, incl. bamboo",EA081-3,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p93, +107842,Ej1,EA081,"Wood, incl. bamboo",EA081-3,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +107843,Ej10,EA081,"Wood, incl. bamboo",EA081-3,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +107844,Ej11,EA081,"Wood, incl. bamboo",EA081-3,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +107845,Ej12,EA081,"Wood, incl. bamboo",EA081-3,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +107846,Ej13,EA081,"Wood, incl. bamboo",EA081-3,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +107847,Ej14,EA081,"Wood, incl. bamboo",EA081-3,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107848,Ej15,EA081,Mats,EA081-7,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +107849,Ej16,EA081,"Wood, incl. bamboo",EA081-3,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +107850,Ej2,EA081,"Wood, incl. bamboo",EA081-3,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +107851,Ej3,EA081,Walls not diff. from roof,EA081-11,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +107852,Ej4,EA081,"Plaster, clay or similar",EA081-2,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +107853,Ej5,EA081,"Wood, incl. bamboo",EA081-3,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +107854,Ej6,EA081,?,EA081-NA,,,,,, +107855,Ej7,EA081,"Wood, incl. bamboo",EA081-3,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +107856,Ej8,EA081,Mats,EA081-7,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +107857,Ej9,EA081,"Wood, incl. bamboo",EA081-3,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +107858,Ia1,EA081,"Wood, incl. bamboo",EA081-3,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +107859,Ia10,EA081,"Wood, incl. bamboo",EA081-3,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +107860,Ia11,EA081,?,EA081-NA,,,,,, +107861,Ia12,EA081,"Wood, incl. bamboo",EA081-3,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +107862,Ia13,EA081,?,EA081-NA,,,,,, +107863,Ia14,EA081,"Wood, incl. bamboo",EA081-3,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +107864,Ia15,EA081,?,EA081-NA,,,,,, +107865,Ia16,EA081,"Wood, incl. bamboo",EA081-3,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +107866,Ia17,EA081,?,EA081-NA,,,,,, +107867,Ia18,EA081,?,EA081-NA,,,,,, +107868,Ia2,EA081,"Wood, incl. bamboo",EA081-3,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +107869,Ia3,EA081,Mats,EA081-7,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +107870,Ia4,EA081,"Grass, leaves or thatch",EA081-8,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +107871,Ia5,EA081,"Wood, incl. bamboo",EA081-3,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +107872,Ia6,EA081,"Stone, stucco or brick",EA081-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107873,Ia7,EA081,?,EA081-NA,,,,,, +107874,Ia8,EA081,"Wood, incl. bamboo",EA081-3,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +107875,Ia9,EA081,?,EA081-NA,,,,,, +107876,Ib1,EA081,"Grass, leaves or thatch",EA081-8,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107877,Ib2,EA081,Mats,EA081-7,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107878,Ib3,EA081,"Wood, incl. bamboo",EA081-3,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +107879,Ib4,EA081,?,EA081-NA,,,,,, +107880,Ib5,EA081,"Wood, incl. bamboo",EA081-3,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +107881,Ib6,EA081,"Wood, incl. bamboo",EA081-3,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +107882,Ib7,EA081,?,EA081-NA,,,,,, +107883,Ib8,EA081,"Wood, incl. bamboo",EA081-3,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +107884,Ib9,EA081,?,EA081-NA,,,,,, +107885,Ic1,EA081,"Grass, leaves or thatch",EA081-8,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107886,Ic10,EA081,?,EA081-NA,,,,,, +107887,Ic11,EA081,Mats,EA081-7,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107888,Ic12,EA081,?,EA081-NA,,,,,, +107889,Ic13,EA081,?,EA081-NA,,,,,, +107890,Ic2,EA081,?,EA081-NA,,,,,, +107891,Ic3,EA081,"Wood, incl. bamboo",EA081-3,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +107892,Ic4,EA081,?,EA081-NA,,,,,, +107893,Ic5,EA081,?,EA081-NA,,,,,, +107894,Ic6,EA081,Open walls,EA081-10,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +107895,Ic7,EA081,"Wood, incl. bamboo",EA081-3,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +107896,Ic8,EA081,?,EA081-NA,,,,,, +107897,Ic9,EA081,?,EA081-NA,,,,,, +107898,Id1,EA081,Walls not diff. from roof,EA081-11,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +107899,Id10,EA081,Walls not diff. from roof,EA081-11,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +107900,Id11,EA081,Walls not diff. from roof,EA081-11,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +107901,Id12,EA081,?,EA081-NA,,,,,, +107902,Id13,EA081,?,EA081-NA,,,,,, +107903,Id2,EA081,Walls not diff. from roof,EA081-11,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +107904,Id3,EA081,?,EA081-NA,,,,,, +107905,Id4,EA081,?,EA081-NA,,,,,, +107906,Id5,EA081,?,EA081-NA,,,,,, +107907,Id6,EA081,?,EA081-NA,,,,,, +107908,Id7,EA081,?,EA081-NA,,,,,, +107909,Id8,EA081,Walls not diff. from roof,EA081-11,,roth1890,,1830,EthnographicAtlas_1967_p97, +107910,Id9,EA081,?,EA081-NA,,,,,, +107911,Ie1,EA081,"Wood, incl. bamboo",EA081-3,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107912,Ie10,EA081,"Grass, leaves or thatch",EA081-8,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +107913,Ie11,EA081,Bark,EA081-4,,bowers1964,,1950,EthnographicAtlas_1967_p97, +107914,Ie12,EA081,"Wood, incl. bamboo",EA081-3,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107915,Ie13,EA081,?,EA081-NA,,,,,, +107916,Ie14,EA081,?,EA081-NA,,,,,, +107917,Ie15,EA081,Walls not diff. from roof,EA081-11,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107918,Ie16,EA081,?,EA081-NA,,,,,, +107919,Ie17,EA081,"Wood, incl. bamboo",EA081-3,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +107920,Ie18,EA081,Walls not diff. from roof,EA081-11,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +107921,Ie19,EA081,"Wood, incl. bamboo",EA081-3,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +107922,Ie2,EA081,"Wood, incl. bamboo",EA081-3,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +107923,Ie20,EA081,"Grass, leaves or thatch",EA081-8,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +107924,Ie21,EA081,"Grass, leaves or thatch",EA081-8,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +107925,Ie22,EA081,"Grass, leaves or thatch",EA081-8,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +107926,Ie23,EA081,"Wood, incl. bamboo",EA081-3,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +107927,Ie24,EA081,"Wood, incl. bamboo",EA081-3,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +107928,Ie25,EA081,"Wood, incl. bamboo",EA081-3,,williamson1912,,1920,EthnographicAtlas_1967_p97, +107929,Ie26,EA081,Walls not diff. from roof,EA081-11,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +107930,Ie27,EA081,?,EA081-NA,,,,,, +107931,Ie28,EA081,Mats,EA081-7,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +107932,Ie29,EA081,?,EA081-NA,,,,,, +107933,Ie3,EA081,?,EA081-NA,,,,,, +107934,Ie30,EA081,Mats,EA081-7,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +107935,Ie31,EA081,"Wood, incl. bamboo",EA081-3,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +107936,Ie32,EA081,Mats,EA081-7,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +107937,Ie33,EA081,Open walls,EA081-10,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +107938,Ie34,EA081,?,EA081-NA,,,,,, +107939,Ie35,EA081,"Grass, leaves or thatch",EA081-8,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +107940,Ie36,EA081,?,EA081-NA,,,,,, +107941,Ie37,EA081,?,EA081-NA,,,,,, +107942,Ie38,EA081,"Wood, incl. bamboo",EA081-3,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +107943,Ie39,EA081,"Wood, incl. bamboo",EA081-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +107944,Ie4,EA081,"Grass, leaves or thatch",EA081-8,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107945,Ie5,EA081,Bark,EA081-4,,williams1936,,1930,EthnographicAtlas_1967_p97, +107946,Ie6,EA081,?,EA081-NA,,,,,, +107947,Ie7,EA081,"Wood, incl. bamboo",EA081-3,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +107948,Ie8,EA081,"Wood, incl. bamboo",EA081-3,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +107949,Ie9,EA081,"Wood, incl. bamboo",EA081-3,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +107950,If1,EA081,"Grass, leaves or thatch",EA081-8,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107951,If10,EA081,?,EA081-NA,,,,,, +107952,If11,EA081,?,EA081-NA,,,,,, +107953,If12,EA081,?,EA081-NA,,,,,, +107954,If13,EA081,?,EA081-NA,,,,,, +107955,If14,EA081,Open walls,EA081-10,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +107956,If15,EA081,"Grass, leaves or thatch",EA081-8,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +107957,If16,EA081,?,EA081-NA,,,,,, +107958,If17,EA081,"Grass, leaves or thatch",EA081-8,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +107959,If2,EA081,"Grass, leaves or thatch",EA081-8,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +107960,If3,EA081,"Grass, leaves or thatch",EA081-8,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +107961,If4,EA081,"Wood, incl. bamboo",EA081-3,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +107962,If5,EA081,Mats,EA081-7,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +107963,If6,EA081,Mats,EA081-7,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +107964,If7,EA081,Mats,EA081-7,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +107965,If8,EA081,"Wood, incl. bamboo",EA081-3,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +107966,If9,EA081,?,EA081-NA,,,,,, +107967,Ig1,EA081,"Grass, leaves or thatch",EA081-8,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +107968,Ig10,EA081,?,EA081-NA,,,,,, +107969,Ig11,EA081,Walls not diff. from roof,EA081-11,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +107970,Ig12,EA081,?,EA081-NA,,,,,, +107971,Ig13,EA081,"Wood, incl. bamboo",EA081-3,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +107972,Ig14,EA081,"Wood, incl. bamboo",EA081-3,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +107973,Ig15,EA081,?,EA081-NA,,,,,, +107974,Ig16,EA081,?,EA081-NA,,,,,, +107975,Ig17,EA081,?,EA081-NA,,,,,, +107976,Ig18,EA081,?,EA081-NA,,,,,, +107977,Ig19,EA081,?,EA081-NA,,,,,, +107978,Ig2,EA081,"Wood, incl. bamboo",EA081-3,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +107979,Ig20,EA081,"Wood, incl. bamboo",EA081-3,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +107980,Ig21,EA081,"Wood, incl. bamboo",EA081-3,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +107981,Ig3,EA081,Walls not diff. from roof,EA081-11,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +107982,Ig4,EA081,"Wood, incl. bamboo",EA081-3,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +107983,Ig5,EA081,Mats,EA081-7,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +107984,Ig6,EA081,"Wood, incl. bamboo",EA081-3,,ivens1927,,1900,EthnographicAtlas_1967_p101, +107985,Ig7,EA081,?,EA081-NA,,,,,, +107986,Ig8,EA081,?,EA081-NA,,,,,, +107987,Ig9,EA081,?,EA081-NA,,,,,, +107988,Ih1,EA081,"Wood, incl. bamboo",EA081-3,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +107989,Ih10,EA081,?,EA081-NA,,,,,, +107990,Ih11,EA081,?,EA081-NA,,,,,, +107991,Ih12,EA081,?,EA081-NA,,,,,, +107992,Ih13,EA081,?,EA081-NA,,,,,, +107993,Ih14,EA081,"Grass, leaves or thatch",EA081-8,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +107994,Ih2,EA081,"Wood, incl. bamboo",EA081-3,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107995,Ih3,EA081,"Wood, incl. bamboo",EA081-3,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +107996,Ih4,EA081,"Grass, leaves or thatch",EA081-8,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +107997,Ih5,EA081,Bark,EA081-4,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +107998,Ih6,EA081,?,EA081-NA,,,,,, +107999,Ih7,EA081,Walls not diff. from roof,EA081-11,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +108000,Ih8,EA081,"Plaster, clay or similar",EA081-2,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +108001,Ih9,EA081,?,EA081-NA,,,,,, +108002,Ii1,EA081,Mats,EA081-7,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +108003,Ii10,EA081,Open walls,EA081-10,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +108004,Ii12,EA081,Mats,EA081-7,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108005,Ii13,EA081,"Wood, incl. bamboo",EA081-3,,burrows1937,,1830,EthnographicAtlas_1967_p101, +108006,Ii14,EA081,Mats,EA081-7,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +108007,Ii2,EA081,Walls not diff. from roof,EA081-11,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +108008,Ii3,EA081,?,EA081-NA,,,,,, +108009,Ii4,EA081,Mats,EA081-7,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +108010,Ii5,EA081,Mats,EA081-7,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +108011,Ii6,EA081,?,EA081-NA,,,,,, +108012,Ii7,EA081,Mats,EA081-7,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +108013,Ii8,EA081,"Wood, incl. bamboo",EA081-3,,burrows1936,,1840,EthnographicAtlas_1967_p101, +108014,Ii9,EA081,Mats,EA081-7,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +108015,Ij1,EA081,"Wood, incl. bamboo",EA081-3,,buck1934,,1820,EthnographicAtlas_1967_p101, +108016,Ij10,EA081,?,EA081-NA,,,,,, +108017,Ij2,EA081,"Grass, leaves or thatch",EA081-8,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +108018,Ij3,EA081,"Grass, leaves or thatch",EA081-8,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +108019,Ij4,EA081,Mats,EA081-7,,buck1932a,,1850,EthnographicAtlas_1967_p105, +108020,Ij5,EA081,Open walls,EA081-10,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +108021,Ij6,EA081,"Grass, leaves or thatch",EA081-8,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +108022,Ij7,EA081,"Grass, leaves or thatch",EA081-8,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +108023,Ij8,EA081,Open walls,EA081-10,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +108024,Ij9,EA081,Walls not diff. from roof,EA081-11,,metraux1940,,1860,EthnographicAtlas_1967_p105, +108025,Na1,EA081,Walls not diff. from roof,EA081-11,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +108026,Na10,EA081,"Wood, incl. bamboo",EA081-3,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +108027,Na11,EA081,"Wood, incl. bamboo",EA081-3,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +108028,Na12,EA081,Hides or skins,EA081-5,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +108029,Na13,EA081,Walls not diff. from roof,EA081-11,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +108030,Na14,EA081,"Stone, stucco or brick",EA081-1,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +108031,Na15,EA081,Walls not diff. from roof,EA081-11,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +108032,Na16,EA081,Walls not diff. from roof,EA081-11,,osgood1931,,1860,EthnographicAtlas_1967_p105, +108033,Na17,EA081,Walls not diff. from roof,EA081-11,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108034,Na19,EA081,Walls not diff. from roof,EA081-11,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +108035,Na2,EA081,Walls not diff. from roof,EA081-11,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +108036,Na20,EA081,Walls not diff. from roof,EA081-11,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +108037,Na21,EA081,Walls not diff. from roof,EA081-11,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +108038,Na22,EA081,Walls not diff. from roof,EA081-11,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +108039,Na23,EA081,Walls not diff. from roof,EA081-11,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +108040,Na24,EA081,"Stone, stucco or brick",EA081-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +108041,Na25,EA081,"Wood, incl. bamboo",EA081-3,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +108042,Na26,EA081,"Wood, incl. bamboo",EA081-3,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +108043,Na27,EA081,"Wood, incl. bamboo",EA081-3,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +108044,Na28,EA081,Walls not diff. from roof,EA081-11,,jenness1937,,1880,EthnographicAtlas_1967_p105, +108045,Na29,EA081,Walls not diff. from roof,EA081-11,,goddard1916,,1850,EthnographicAtlas_1967_p105, +108046,Na3,EA081,Walls not diff. from roof,EA081-11,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +108047,Na30,EA081,Walls not diff. from roof,EA081-11,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +108048,Na31,EA081,Walls not diff. from roof,EA081-11,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +108049,Na32,EA081,Walls not diff. from roof,EA081-11,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +108050,Na33,EA081,Walls not diff. from roof,EA081-11,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +108051,Na34,EA081,"Wood, incl. bamboo",EA081-3,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +108052,Na35,EA081,Walls not diff. from roof,EA081-11,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +108053,Na36,EA081,Mats,EA081-7,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +108054,Na37,EA081,Walls not diff. from roof,EA081-11,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +108055,Na38,EA081,Walls not diff. from roof,EA081-11,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +108056,Na39,EA081,Walls not diff. from roof,EA081-11,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +108057,Na4,EA081,Walls not diff. from roof,EA081-11,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +108058,Na40,EA081,Walls not diff. from roof,EA081-11,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +108059,Na41,EA081,Walls not diff. from roof,EA081-11,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +108060,Na42,EA081,Walls not diff. from roof,EA081-11,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p105, +108061,Na43,EA081,Walls not diff. from roof,EA081-11,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +108062,Na44,EA081,Walls not diff. from roof,EA081-11,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +108063,Na45,EA081,?,EA081-NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +108064,Na5,EA081,Walls not diff. from roof,EA081-11,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +108065,Na6,EA081,"Wood, incl. bamboo",EA081-3,,lantis1946,,1930,EthnographicAtlas_1967_p105, +108066,Na7,EA081,Walls not diff. from roof,EA081-11,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +108067,Na8,EA081,"Wood, incl. bamboo",EA081-3,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +108068,Na9,EA081,Walls not diff. from roof,EA081-11,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108069,Nb1,EA081,"Wood, incl. bamboo",EA081-3,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +108070,Nb10,EA081,Walls not diff. from roof,EA081-11,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +108071,Nb11,EA081,"Wood, incl. bamboo",EA081-3,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +108072,Nb12,EA081,"Wood, incl. bamboo",EA081-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +108073,Nb13,EA081,"Wood, incl. bamboo",EA081-3,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +108074,Nb14,EA081,"Wood, incl. bamboo",EA081-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +108075,Nb15,EA081,"Wood, incl. bamboo",EA081-3,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +108076,Nb16,EA081,"Wood, incl. bamboo",EA081-3,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +108077,Nb17,EA081,"Wood, incl. bamboo",EA081-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +108078,Nb18,EA081,"Wood, incl. bamboo",EA081-3,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +108079,Nb19,EA081,"Wood, incl. bamboo",EA081-3,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +108080,Nb2,EA081,"Wood, incl. bamboo",EA081-3,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +108081,Nb20,EA081,Mats,EA081-7,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +108082,Nb21,EA081,"Wood, incl. bamboo",EA081-3,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +108083,Nb22,EA081,"Wood, incl. bamboo",EA081-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +108084,Nb23,EA081,"Wood, incl. bamboo",EA081-3,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +108085,Nb24,EA081,"Wood, incl. bamboo",EA081-3,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +108086,Nb25,EA081,"Wood, incl. bamboo",EA081-3,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +108087,Nb26,EA081,Walls not diff. from roof,EA081-11,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +108088,Nb27,EA081,Walls not diff. from roof,EA081-11,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +108089,Nb28,EA081,"Wood, incl. bamboo",EA081-3,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +108090,Nb29,EA081,"Wood, incl. bamboo",EA081-3,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +108091,Nb3,EA081,"Wood, incl. bamboo",EA081-3,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +108092,Nb30,EA081,"Wood, incl. bamboo",EA081-3,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +108093,Nb31,EA081,"Wood, incl. bamboo",EA081-3,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +108094,Nb32,EA081,"Wood, incl. bamboo",EA081-3,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +108095,Nb33,EA081,Bark,EA081-4,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +108096,Nb34,EA081,"Wood, incl. bamboo",EA081-3,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +108097,Nb35,EA081,"Wood, incl. bamboo",EA081-3,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +108098,Nb36,EA081,"Wood, incl. bamboo",EA081-3,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +108099,Nb37,EA081,Walls not diff. from roof,EA081-11,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +108100,Nb38,EA081,"Wood, incl. bamboo",EA081-3,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +108101,Nb39,EA081,Bark,EA081-4,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +108102,Nb4,EA081,"Wood, incl. bamboo",EA081-3,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +108103,Nb5,EA081,"Wood, incl. bamboo",EA081-3,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +108104,Nb6,EA081,"Wood, incl. bamboo",EA081-3,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +108105,Nb7,EA081,"Wood, incl. bamboo",EA081-3,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +108106,Nb8,EA081,"Wood, incl. bamboo",EA081-3,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +108107,Nb9,EA081,"Wood, incl. bamboo",EA081-3,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +108108,Nc1,EA081,Walls not diff. from roof,EA081-11,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +108109,Nc10,EA081,Walls not diff. from roof,EA081-11,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +108110,Nc11,EA081,Walls not diff. from roof,EA081-11,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +108111,Nc12,EA081,Walls not diff. from roof,EA081-11,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +108112,Nc13,EA081,Walls not diff. from roof,EA081-11,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +108113,Nc14,EA081,Walls not diff. from roof,EA081-11,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +108114,Nc15,EA081,Walls not diff. from roof,EA081-11,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +108115,Nc16,EA081,Walls not diff. from roof,EA081-11,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +108116,Nc17,EA081,Walls not diff. from roof,EA081-11,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +108117,Nc18,EA081,Walls not diff. from roof,EA081-11,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +108118,Nc19,EA081,Walls not diff. from roof,EA081-11,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +108119,Nc2,EA081,Walls not diff. from roof,EA081-11,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +108120,Nc20,EA081,Walls not diff. from roof,EA081-11,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +108121,Nc21,EA081,Walls not diff. from roof,EA081-11,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +108122,Nc22,EA081,Walls not diff. from roof,EA081-11,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +108123,Nc23,EA081,Walls not diff. from roof,EA081-11,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +108124,Nc24,EA081,Walls not diff. from roof,EA081-11,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +108125,Nc25,EA081,Walls not diff. from roof,EA081-11,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +108126,Nc26,EA081,Walls not diff. from roof,EA081-11,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +108127,Nc27,EA081,Walls not diff. from roof,EA081-11,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +108128,Nc28,EA081,Walls not diff. from roof,EA081-11,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +108129,Nc29,EA081,Walls not diff. from roof,EA081-11,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +108130,Nc3,EA081,Walls not diff. from roof,EA081-11,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +108131,Nc30,EA081,Walls not diff. from roof,EA081-11,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +108132,Nc31,EA081,"Grass, leaves or thatch",EA081-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +108133,Nc32,EA081,Walls not diff. from roof,EA081-11,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +108134,Nc33,EA081,Walls not diff. from roof,EA081-11,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +108135,Nc34,EA081,Walls not diff. from roof,EA081-11,,meigs1939,,1880,EthnographicAtlas_1967_p109, +108136,Nc4,EA081,Walls not diff. from roof,EA081-11,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +108137,Nc5,EA081,Walls not diff. from roof,EA081-11,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +108138,Nc6,EA081,Walls not diff. from roof,EA081-11,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +108139,Nc7,EA081,Walls not diff. from roof,EA081-11,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +108140,Nc8,EA081,Walls not diff. from roof,EA081-11,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +108141,Nc9,EA081,Walls not diff. from roof,EA081-11,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +108142,Nd1,EA081,Walls not diff. from roof,EA081-11,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +108143,Nd10,EA081,Walls not diff. from roof,EA081-11,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +108144,Nd11,EA081,Walls not diff. from roof,EA081-11,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +108145,Nd12,EA081,Walls not diff. from roof,EA081-11,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +108146,Nd13,EA081,Walls not diff. from roof,EA081-11,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +108147,Nd14,EA081,Walls not diff. from roof,EA081-11,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +108148,Nd15,EA081,Walls not diff. from roof,EA081-11,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +108149,Nd16,EA081,Walls not diff. from roof,EA081-11,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +108150,Nd17,EA081,Walls not diff. from roof,EA081-11,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +108151,Nd18,EA081,?,EA081-NA,,,,,, +108152,Nd19,EA081,Walls not diff. from roof,EA081-11,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +108153,Nd2,EA081,Walls not diff. from roof,EA081-11,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +108154,Nd20,EA081,Walls not diff. from roof,EA081-11,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +108155,Nd21,EA081,Walls not diff. from roof,EA081-11,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +108156,Nd22,EA081,Walls not diff. from roof,EA081-11,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +108157,Nd23,EA081,Walls not diff. from roof,EA081-11,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +108158,Nd24,EA081,Walls not diff. from roof,EA081-11,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +108159,Nd25,EA081,Walls not diff. from roof,EA081-11,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +108160,Nd26,EA081,Walls not diff. from roof,EA081-11,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +108161,Nd27,EA081,Walls not diff. from roof,EA081-11,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +108162,Nd28,EA081,Walls not diff. from roof,EA081-11,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +108163,Nd29,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +108164,Nd3,EA081,Walls not diff. from roof,EA081-11,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +108165,Nd30,EA081,Walls not diff. from roof,EA081-11,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +108166,Nd31,EA081,Walls not diff. from roof,EA081-11,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +108167,Nd32,EA081,Walls not diff. from roof,EA081-11,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +108168,Nd33,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +108169,Nd34,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +108170,Nd35,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +108171,Nd36,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +108172,Nd37,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +108173,Nd38,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +108174,Nd39,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +108175,Nd4,EA081,Walls not diff. from roof,EA081-11,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +108176,Nd40,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +108177,Nd41,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +108178,Nd42,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +108179,Nd43,EA081,Walls not diff. from roof,EA081-11,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +108180,Nd44,EA081,Walls not diff. from roof,EA081-11,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +108181,Nd45,EA081,Walls not diff. from roof,EA081-11,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +108182,Nd46,EA081,Walls not diff. from roof,EA081-11,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +108183,Nd47,EA081,Walls not diff. from roof,EA081-11,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +108184,Nd48,EA081,?,EA081-NA,,,,,, +108185,Nd49,EA081,Walls not diff. from roof,EA081-11,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +108186,Nd5,EA081,Walls not diff. from roof,EA081-11,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +108187,Nd50,EA081,Walls not diff. from roof,EA081-11,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +108188,Nd51,EA081,Walls not diff. from roof,EA081-11,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +108189,Nd52,EA081,Walls not diff. from roof,EA081-11,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +108190,Nd53,EA081,Walls not diff. from roof,EA081-11,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +108191,Nd54,EA081,Walls not diff. from roof,EA081-11,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108192,Nd55,EA081,Walls not diff. from roof,EA081-11,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +108193,Nd56,EA081,"Grass, leaves or thatch",EA081-8,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +108194,Nd57,EA081,Walls not diff. from roof,EA081-11,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +108195,Nd58,EA081,Walls not diff. from roof,EA081-11,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +108196,Nd59,EA081,Walls not diff. from roof,EA081-11,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +108197,Nd6,EA081,Walls not diff. from roof,EA081-11,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +108198,Nd60,EA081,Walls not diff. from roof,EA081-11,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +108199,Nd61,EA081,Walls not diff. from roof,EA081-11,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +108200,Nd62,EA081,Walls not diff. from roof,EA081-11,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +108201,Nd63,EA081,Walls not diff. from roof,EA081-11,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +108202,Nd64,EA081,Walls not diff. from roof,EA081-11,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +108203,Nd65,EA081,Walls not diff. from roof,EA081-11,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +108204,Nd66,EA081,Walls not diff. from roof,EA081-11,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +108205,Nd67,EA081,Walls not diff. from roof,EA081-11,,gifford1936,,1870,EthnographicAtlas_1967_p113, +108206,Nd7,EA081,Walls not diff. from roof,EA081-11,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +108207,Nd8,EA081,Walls not diff. from roof,EA081-11,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +108208,Nd9,EA081,Walls not diff. from roof,EA081-11,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +108209,Ne1,EA081,Walls not diff. from roof,EA081-11,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +108210,Ne10,EA081,"Wood, incl. bamboo",EA081-3,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +108211,Ne11,EA081,Walls not diff. from roof,EA081-11,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +108212,Ne12,EA081,Walls not diff. from roof,EA081-11,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +108213,Ne13,EA081,Walls not diff. from roof,EA081-11,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +108214,Ne14,EA081,Walls not diff. from roof,EA081-11,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +108215,Ne15,EA081,"Wood, incl. bamboo",EA081-3,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +108216,Ne16,EA081,Walls not diff. from roof,EA081-11,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +108217,Ne17,EA081,Walls not diff. from roof,EA081-11,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +108218,Ne18,EA081,Walls not diff. from roof,EA081-11,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +108219,Ne19,EA081,Walls not diff. from roof,EA081-11,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +108220,Ne2,EA081,Walls not diff. from roof,EA081-11,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +108221,Ne20,EA081,Walls not diff. from roof,EA081-11,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +108222,Ne21,EA081,?,EA081-NA,,,,,, +108223,Ne3,EA081,Walls not diff. from roof,EA081-11,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +108224,Ne4,EA081,Walls not diff. from roof,EA081-11,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +108225,Ne5,EA081,Walls not diff. from roof,EA081-11,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +108226,Ne6,EA081,Walls not diff. from roof,EA081-11,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +108227,Ne7,EA081,Walls not diff. from roof,EA081-11,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +108228,Ne8,EA081,Walls not diff. from roof,EA081-11,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +108229,Ne9,EA081,Walls not diff. from roof,EA081-11,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +108230,Nf10,EA081,"Wood, incl. bamboo",EA081-3,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +108231,Nf11,EA081,"Wood, incl. bamboo",EA081-3,,whitman1937,,1870,EthnographicAtlas_1967_p117, +108232,Nf12,EA081,Walls not diff. from roof,EA081-11,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +108233,Nf13,EA081,Walls not diff. from roof,EA081-11,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108234,Nf14,EA081,Walls not diff. from roof,EA081-11,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +108235,Nf15,EA081,?,EA081-NA,,,,,, +108236,Nf2,EA081,Bark,EA081-4,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +108237,Nf3,EA081,"Wood, incl. bamboo",EA081-3,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +108238,Nf4,EA081,Mats,EA081-7,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +108239,Nf5,EA081,Walls not diff. from roof,EA081-11,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +108240,Nf6,EA081,Walls not diff. from roof,EA081-11,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +108241,Nf7,EA081,Bark,EA081-4,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108242,Nf8,EA081,Walls not diff. from roof,EA081-11,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +108243,Nf9,EA081,?,EA081-NA,,,,,, +108244,Ng1,EA081,"Stone, stucco or brick",EA081-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +108245,Ng10,EA081,Bark,EA081-4,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +108246,Ng11,EA081,"Plaster, clay or similar",EA081-2,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +108247,Ng12,EA081,"Plaster, clay or similar",EA081-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +108248,Ng13,EA081,?,EA081-NA,,,,,, +108249,Ng14,EA081,?,EA081-NA,,,,,, +108250,Ng15,EA081,?,EA081-NA,,,,,, +108251,Ng2,EA081,Open walls,EA081-10,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +108252,Ng3,EA081,"Plaster, clay or similar",EA081-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +108253,Ng4,EA081,?,EA081-NA,,,,,, +108254,Ng5,EA081,"Plaster, clay or similar",EA081-2,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +108255,Ng6,EA081,Walls not diff. from roof,EA081-11,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +108256,Ng7,EA081,"Plaster, clay or similar",EA081-2,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +108257,Ng8,EA081,"Plaster, clay or similar",EA081-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +108258,Ng9,EA081,?,EA081-NA,,,,,, +108259,Nh1,EA081,Walls not diff. from roof,EA081-11,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +108260,Nh10,EA081,"Adobe, clay or brick",EA081-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +108261,Nh11,EA081,"Adobe, clay or brick",EA081-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +108262,Nh12,EA081,"Adobe, clay or brick",EA081-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +108263,Nh13,EA081,"Adobe, clay or brick",EA081-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +108264,Nh14,EA081,"Adobe, clay or brick",EA081-9,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +108265,Nh15,EA081,Walls not diff. from roof,EA081-11,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +108266,Nh16,EA081,Walls not diff. from roof,EA081-11,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108267,Nh17,EA081,"Adobe, clay or brick",EA081-9,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +108268,Nh18,EA081,"Adobe, clay or brick",EA081-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108269,Nh19,EA081,Walls not diff. from roof,EA081-11,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +108270,Nh2,EA081,"Adobe, clay or brick",EA081-9,,dozier1954,,1950,EthnographicAtlas_1967_p117, +108271,Nh20,EA081,Walls not diff. from roof,EA081-11,,gifford1931,,1860,EthnographicAtlas_1967_p117, +108272,Nh21,EA081,Walls not diff. from roof,EA081-11,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108273,Nh22,EA081,Walls not diff. from roof,EA081-11,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +108274,Nh23,EA081,"Wood, incl. bamboo",EA081-3,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +108275,Nh24,EA081,Walls not diff. from roof,EA081-11,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +108276,Nh25,EA081,"Adobe, clay or brick",EA081-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +108277,Nh26,EA081,?,EA081-NA,,,,,, +108278,Nh27,EA081,?,EA081-NA,,,,,, +108279,Nh3,EA081,Walls not diff. from roof,EA081-11,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +108280,Nh4,EA081,"Adobe, clay or brick",EA081-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +108281,Nh5,EA081,Walls not diff. from roof,EA081-11,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +108282,Nh6,EA081,"Adobe, clay or brick",EA081-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +108283,Nh7,EA081,"Adobe, clay or brick",EA081-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +108284,Nh8,EA081,"Adobe, clay or brick",EA081-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +108285,Nh9,EA081,"Stone, stucco or brick",EA081-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +108286,Ni1,EA081,"Wood, incl. bamboo",EA081-3,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +108287,Ni2,EA081,"Grass, leaves or thatch",EA081-8,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +108288,Ni3,EA081,"Stone, stucco or brick",EA081-1,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +108289,Ni4,EA081,Walls not diff. from roof,EA081-11,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +108290,Ni5,EA081,?,EA081-NA,,,,,, +108291,Ni6,EA081,Walls not diff. from roof,EA081-11,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +108292,Ni7,EA081,"Grass, leaves or thatch",EA081-8,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +108293,Ni8,EA081,?,EA081-NA,,,,,, +108294,Ni9,EA081,?,EA081-NA,,,,,, +108295,Nj1,EA081,"Adobe, clay or brick",EA081-9,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108296,Nj10,EA081,"Adobe, clay or brick",EA081-9,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108297,Nj11,EA081,?,EA081-NA,,,,,, +108298,Nj12,EA081,?,EA081-NA,,,,,, +108299,Nj13,EA081,?,EA081-NA,,,,,, +108300,Nj14,EA081,?,EA081-NA,,,,,, +108301,Nj2,EA081,"Adobe, clay or brick",EA081-9,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +108302,Nj3,EA081,"Wood, incl. bamboo",EA081-3,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +108303,Nj4,EA081,"Wood, incl. bamboo",EA081-3,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p121, +108304,Nj5,EA081,?,EA081-NA,,,,,, +108305,Nj6,EA081,?,EA081-NA,,,,,, +108306,Nj7,EA081,"Adobe, clay or brick",EA081-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108307,Nj8,EA081,"Wood, incl. bamboo",EA081-3,,foster1948,,1500,EthnographicAtlas_1967_p121, +108308,Nj9,EA081,"Adobe, clay or brick",EA081-9,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +108309,Sa1,EA081,"Wood, incl. bamboo",EA081-3,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +108310,Sa10,EA081,?,EA081-NA,,,,,, +108311,Sa11,EA081,?,EA081-NA,,,,,, +108312,Sa12,EA081,"Adobe, clay or brick",EA081-9,,stone1948,,1948,EthnographicAtlas_1967_p121, +108313,Sa13,EA081,"Adobe, clay or brick",EA081-9,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +108314,Sa14,EA081,?,EA081-NA,,,,,, +108315,Sa15,EA081,?,EA081-NA,,,,,, +108316,Sa16,EA081,?,EA081-NA,,,,,, +108317,Sa17,EA081,?,EA081-NA,,,,,, +108318,Sa2,EA081,?,EA081-NA,,,,,, +108319,Sa3,EA081,"Grass, leaves or thatch",EA081-8,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +108320,Sa4,EA081,Open walls,EA081-10,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +108321,Sa5,EA081,Walls not diff. from roof,EA081-11,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +108322,Sa6,EA081,?,EA081-NA,,,,,, +108323,Sa7,EA081,"Grass, leaves or thatch",EA081-8,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +108324,Sa8,EA081,"Adobe, clay or brick",EA081-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +108325,Sa9,EA081,Mats,EA081-7,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +108326,Sb1,EA081,"Wood, incl. bamboo",EA081-3,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +108327,Sb2,EA081,Mats,EA081-7,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +108328,Sb3,EA081,?,EA081-NA,,,,,, +108329,Sb4,EA081,"Plaster, clay or similar",EA081-2,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +108330,Sb5,EA081,Mats,EA081-7,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +108331,Sb6,EA081,Walls not diff. from roof,EA081-11,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +108332,Sb7,EA081,?,EA081-NA,,,,,, +108333,Sb8,EA081,"Wood, incl. bamboo",EA081-3,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +108334,Sb9,EA081,"Plaster, clay or similar",EA081-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +108335,Sc1,EA081,Open walls,EA081-10,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +108336,Sc10,EA081,?,EA081-NA,,,,,, +108337,Sc11,EA081,?,EA081-NA,,,,,, +108338,Sc12,EA081,"Plaster, clay or similar",EA081-2,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +108339,Sc13,EA081,Walls not diff. from roof,EA081-11,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +108340,Sc14,EA081,?,EA081-NA,,,,,, +108341,Sc15,EA081,"Plaster, clay or similar",EA081-2,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +108342,Sc16,EA081,"Adobe, clay or brick",EA081-9,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +108343,Sc17,EA081,"Wood, incl. bamboo",EA081-3,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +108344,Sc18,EA081,"Wood, incl. bamboo",EA081-3,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +108345,Sc2,EA081,Walls not diff. from roof,EA081-11,,leedsnd,,1950,EthnographicAtlas_1967_p121, +108346,Sc3,EA081,Open walls,EA081-10,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +108347,Sc4,EA081,"Grass, leaves or thatch",EA081-8,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +108348,Sc5,EA081,"Grass, leaves or thatch",EA081-8,,farabee1918,,1900,EthnographicAtlas_1967_p121, +108349,Sc6,EA081,Mats,EA081-7,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108350,Sc7,EA081,Open walls,EA081-10,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +108351,Sc8,EA081,Walls not diff. from roof,EA081-11,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +108352,Sc9,EA081,"Adobe, clay or brick",EA081-9,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +108353,Sd1,EA081,"Plaster, clay or similar",EA081-2,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108354,Sd2,EA081,Walls not diff. from roof,EA081-11,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +108355,Sd3,EA081,?,EA081-NA,,,,,, +108356,Sd4,EA081,Walls not diff. from roof,EA081-11,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +108357,Sd5,EA081,Open walls,EA081-10,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +108358,Sd6,EA081,Walls not diff. from roof,EA081-11,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +108359,Sd7,EA081,"Grass, leaves or thatch",EA081-8,,fock1963,,1950,EthnographicAtlas_1967_p121, +108360,Sd8,EA081,"Wood, incl. bamboo",EA081-3,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +108361,Sd9,EA081,"Grass, leaves or thatch",EA081-8,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108362,Se1,EA081,Walls not diff. from roof,EA081-11,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +108363,Se10,EA081,"Wood, incl. bamboo",EA081-3,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +108364,Se11,EA081,Bark,EA081-4,,prost1965,,1960,EthnographicAtlas_1967_p125, +108365,Se12,EA081,?,EA081-NA,,,,,, +108366,Se2,EA081,"Grass, leaves or thatch",EA081-8,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +108367,Se3,EA081,"Wood, incl. bamboo",EA081-3,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +108368,Se4,EA081,Walls not diff. from roof,EA081-11,,fejos1943,,1940,EthnographicAtlas_1967_p121, +108369,Se5,EA081,"Grass, leaves or thatch",EA081-8,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +108370,Se6,EA081,"Grass, leaves or thatch",EA081-8,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +108371,Se7,EA081,"Adobe, clay or brick",EA081-9,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108372,Se8,EA081,Open walls,EA081-10,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +108373,Se9,EA081,Open walls,EA081-10,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +108374,Sf1,EA081,"Stone, stucco or brick",EA081-1,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +108375,Sf2,EA081,"Adobe, clay or brick",EA081-9,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +108376,Sf3,EA081,Open walls,EA081-10,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +108377,Sf4,EA081,"Wood, incl. bamboo",EA081-3,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +108378,Sf5,EA081,Mats,EA081-7,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +108379,Sf6,EA081,"Plaster, clay or similar",EA081-2,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +108380,Sf7,EA081,Open walls,EA081-10,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +108381,Sf8,EA081,?,EA081-NA,,,,,, +108382,Sf9,EA081,?,EA081-NA,,,,,, +108383,Sg1,EA081,Walls not diff. from roof,EA081-11,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +108384,Sg2,EA081,Mats,EA081-7,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108385,Sg3,EA081,Walls not diff. from roof,EA081-11,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +108386,Sg4,EA081,Walls not diff. from roof,EA081-11,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +108387,Sg5,EA081,Walls not diff. from roof,EA081-11,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108388,Sh1,EA081,Walls not diff. from roof,EA081-11,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +108389,Sh2,EA081,Walls not diff. from roof,EA081-11,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +108390,Sh3,EA081,Walls not diff. from roof,EA081-11,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +108391,Sh4,EA081,"Plaster, clay or similar",EA081-2,,oberg1949,,1940,EthnographicAtlas_1967_p125, +108392,Sh5,EA081,Walls not diff. from roof,EA081-11,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +108393,Sh6,EA081,Walls not diff. from roof,EA081-11,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +108394,Sh7,EA081,"Plaster, clay or similar",EA081-2,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +108395,Sh8,EA081,"Plaster, clay or similar",EA081-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +108396,Sh9,EA081,?,EA081-NA,,,,,, +108397,Si1,EA081,"Grass, leaves or thatch",EA081-8,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108398,Si10,EA081,Walls not diff. from roof,EA081-11,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +108399,Si2,EA081,"Grass, leaves or thatch",EA081-8,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +108400,Si3,EA081,Walls not diff. from roof,EA081-11,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108401,Si4,EA081,Walls not diff. from roof,EA081-11,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +108402,Si5,EA081,Walls not diff. from roof,EA081-11,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +108403,Si6,EA081,Walls not diff. from roof,EA081-11,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +108404,Si7,EA081,Walls not diff. from roof,EA081-11,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +108405,Si8,EA081,Walls not diff. from roof,EA081-11,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +108406,Si9,EA081,?,EA081-NA,,,,,, +108407,Sj1,EA081,Walls not diff. from roof,EA081-11,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +108408,Sj10,EA081,Walls not diff. from roof,EA081-11,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108409,Sj11,EA081,Walls not diff. from roof,EA081-11,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +108410,Sj2,EA081,?,EA081-NA,,,,,, +108411,Sj3,EA081,Walls not diff. from roof,EA081-11,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +108412,Sj4,EA081,"Grass, leaves or thatch",EA081-8,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +108413,Sj5,EA081,Walls not diff. from roof,EA081-11,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +108414,Sj6,EA081,"Grass, leaves or thatch",EA081-8,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108415,Sj7,EA081,"Grass, leaves or thatch",EA081-8,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +108416,Sj8,EA081,Walls not diff. from roof,EA081-11,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +108417,Sj9,EA081,Walls not diff. from roof,EA081-11,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +108418,ch12,EA081,"Wood, incl. bamboo",EA081-3,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +108419,ch13,EA081,"Wood, incl. bamboo",EA081-3,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +108420,ch14,EA081,"Wood, incl. bamboo",EA081-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +108421,ch15,EA081,"Wood, incl. bamboo",EA081-3,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +108422,ch16,EA081,"Wood, incl. bamboo",EA081-3,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +108423,ch17,EA081,"Plaster, clay or similar",EA081-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +108424,ch18,EA081,"Wood, incl. bamboo",EA081-3,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +108425,ch19,EA081,"Wood, incl. bamboo",EA081-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +108426,ch20,EA081,"Wood, incl. bamboo",EA081-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +108427,ch21,EA081,"Wood, incl. bamboo",EA081-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +108428,ch22,EA081,"Wood, incl. bamboo",EA081-3,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +108429,ch23,EA081,"Wood, incl. bamboo",EA081-3,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +108430,ch24,EA081,"Wood, incl. bamboo",EA081-3,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +108431,ch25,EA081,"Wood, incl. bamboo",EA081-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +108432,ch26,EA081,"Wood, incl. bamboo",EA081-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +108433,ch27,EA081,"Wood, incl. bamboo",EA081-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +108434,ch28,EA081,"Wood, incl. bamboo",EA081-3,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +108435,ec12,EA081,Hides or skins,EA081-5,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +108436,ec13,EA081,"Wood, incl. bamboo",EA081-3,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +108437,ec14,EA081,Hides or skins,EA081-5,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +108438,ec15,EA081,"Wood, incl. bamboo",EA081-3,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +108439,ec16,EA081,Hides or skins,EA081-5,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +108440,ec17,EA081,"Wood, incl. bamboo",EA081-3,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +108441,ec18,EA081,"Wood, incl. bamboo",EA081-3,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +108442,ec19,EA081,Hides or skins,EA081-5,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +108443,ec20,EA081,"Wood, incl. bamboo",EA081-3,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +108444,ec21,EA081,"Wood, incl. bamboo",EA081-3,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +108445,Aa1,EA082,Hemispherical,EA082-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +108446,Aa2,EA082,Hemispherical,EA082-2,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +108447,Aa3,EA082,Hemispherical,EA082-2,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +108448,Aa4,EA082,Beehive shaped,EA082-3,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +108449,Aa5,EA082,Hemispherical,EA082-2,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +108450,Aa6,EA082,Hemispherical,EA082-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +108451,Aa7,EA082,Semi-hemispherical,EA082-5,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +108452,Aa8,EA082,Semi-hemispherical,EA082-5,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +108453,Aa9,EA082,Hemispherical,EA082-2,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +108454,Ab1,EA082,Beehive shaped,EA082-3,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +108455,Ab10,EA082,Beehive shaped,EA082-3,,hunter1936,,1936,EthnographicAtlas_1967_p65, +108456,Ab11,EA082,Beehive shaped,EA082-3,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +108457,Ab12,EA082,Beehive shaped,EA082-3,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +108458,Ab13,EA082,Conical,EA082-4,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +108459,Ab14,EA082,Conical,EA082-4,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +108460,Ab15,EA082,Conical,EA082-4,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +108461,Ab16,EA082,Conical,EA082-4,,earthy1933,,1930,EthnographicAtlas_1967_p65, +108462,Ab17,EA082,Conical,EA082-4,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +108463,Ab18,EA082,Conical,EA082-4,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +108464,Ab19,EA082,Conical,EA082-4,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +108465,Ab2,EA082,Beehive shaped,EA082-3,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +108466,Ab20,EA082,Conical,EA082-4,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +108467,Ab21a,EA082,Beehive shaped,EA082-3,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +108468,Ab21b,EA082,?,EA082-NA,,,,,, +108469,Ab22,EA082,?,EA082-NA,,,,,, +108470,Ab3,EA082,Conical,EA082-4,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +108471,Ab4,EA082,Conical,EA082-4,,junod1927,,1920,EthnographicAtlas_1967_p65, +108472,Ab5,EA082,Conical,EA082-4,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +108473,Ab6,EA082,Conical,EA082-4,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +108474,Ab7,EA082,Conical,EA082-4,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +108475,Ab8,EA082,Conical,EA082-4,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +108476,Ab9,EA082,Beehive shaped,EA082-3,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +108477,Ac1,EA082,Conical,EA082-4,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +108478,Ac10,EA082,Conical,EA082-4,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +108479,Ac11,EA082,Two slopes,EA082-8,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +108480,Ac12,EA082,Beehive shaped,EA082-3,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +108481,Ac13,EA082,Conical,EA082-4,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +108482,Ac14,EA082,Two slopes,EA082-8,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +108483,Ac15,EA082,?,EA082-NA,,,,,, +108484,Ac16,EA082,Two slopes,EA082-8,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +108485,Ac17,EA082,Two slopes,EA082-8,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +108486,Ac18,EA082,Two slopes,EA082-8,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +108487,Ac19,EA082,Two slopes,EA082-8,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +108488,Ac2,EA082,Four slopes,EA082-9,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +108489,Ac20,EA082,Two slopes,EA082-8,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +108490,Ac21,EA082,Four slopes,EA082-9,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +108491,Ac22,EA082,Two slopes,EA082-8,,mertens1935,,1930,EthnographicAtlas_1967_p65, +108492,Ac23,EA082,Two slopes,EA082-8,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +108493,Ac24,EA082,Two slopes,EA082-8,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +108494,Ac25,EA082,Four slopes,EA082-9,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +108495,Ac26,EA082,Two slopes,EA082-8,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +108496,Ac27,EA082,Two slopes,EA082-8,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +108497,Ac28,EA082,Four slopes,EA082-9,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +108498,Ac29,EA082,?,EA082-NA,,,,,, +108499,Ac3,EA082,Conical,EA082-4,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +108500,Ac30,EA082,Conical,EA082-4,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +108501,Ac31,EA082,Four slopes,EA082-9,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +108502,Ac32,EA082,Four slopes,EA082-9,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +108503,Ac33,EA082,Conical,EA082-4,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +108504,Ac34,EA082,Conical,EA082-4,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +108505,Ac35,EA082,?,EA082-NA,,,,,, +108506,Ac36,EA082,Conical,EA082-4,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +108507,Ac37,EA082,Conical,EA082-4,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +108508,Ac38,EA082,Conical,EA082-4,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +108509,Ac39,EA082,Conical,EA082-4,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +108510,Ac4,EA082,Two slopes,EA082-8,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +108511,Ac40,EA082,Four slopes,EA082-9,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +108512,Ac41,EA082,Conical,EA082-4,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +108513,Ac42,EA082,Conical,EA082-4,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +108514,Ac43,EA082,?,EA082-NA,,,,,, +108515,Ac5,EA082,Conical,EA082-4,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +108516,Ac6,EA082,?,EA082-NA,,,,,, +108517,Ac7,EA082,Conical,EA082-4,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +108518,Ac8,EA082,Two slopes,EA082-8,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +108519,Ac9,EA082,Conical,EA082-4,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +108520,Ad1,EA082,Two slopes,EA082-8,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +108521,Ad10,EA082,Conical,EA082-4,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +108522,Ad11,EA082,Two slopes,EA082-8,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +108523,Ad12,EA082,Conical,EA082-4,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +108524,Ad13,EA082,Two slopes,EA082-8,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +108525,Ad14,EA082,Two slopes,EA082-8,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +108526,Ad15,EA082,Conical,EA082-4,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +108527,Ad16,EA082,Conical,EA082-4,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +108528,Ad17,EA082,Conical,EA082-4,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +108529,Ad18,EA082,Conical,EA082-4,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +108530,Ad19,EA082,Two slopes,EA082-8,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +108531,Ad2,EA082,Beehive shaped,EA082-3,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +108532,Ad20,EA082,Conical,EA082-4,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +108533,Ad21,EA082,Conical,EA082-4,,maurice193538,,1930,EthnographicAtlas_1967_p69, +108534,Ad22,EA082,Conical,EA082-4,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +108535,Ad23,EA082,Flat,EA082-7,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +108536,Ad24,EA082,Flat,EA082-7,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +108537,Ad25,EA082,Flat,EA082-7,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +108538,Ad26,EA082,Flat,EA082-7,,sick1916,,1910,EthnographicAtlas_1967_p69, +108539,Ad27,EA082,Conical,EA082-4,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +108540,Ad28,EA082,Conical,EA082-4,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +108541,Ad29,EA082,Four slopes,EA082-9,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +108542,Ad3,EA082,Conical,EA082-4,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +108543,Ad30,EA082,Rounded or semi-cylindrical,EA082-1,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +108544,Ad31,EA082,Two slopes,EA082-8,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +108545,Ad32,EA082,Two slopes,EA082-8,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +108546,Ad33,EA082,Hemispherical,EA082-2,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +108547,Ad34,EA082,Conical,EA082-4,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +108548,Ad35,EA082,Conical,EA082-4,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +108549,Ad36,EA082,?,EA082-NA,,,,,, +108550,Ad37,EA082,Conical,EA082-4,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +108551,Ad38,EA082,Beehive shaped,EA082-3,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +108552,Ad39,EA082,Conical,EA082-4,,gray1963,,1950,EthnographicAtlas_1967_p69, +108553,Ad4,EA082,Flat,EA082-7,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +108554,Ad40,EA082,Conical,EA082-4,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +108555,Ad41,EA082,Conical,EA082-4,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +108556,Ad42,EA082,Beehive shaped,EA082-3,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +108557,Ad43,EA082,Conical,EA082-4,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +108558,Ad44,EA082,Beehive shaped,EA082-3,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +108559,Ad45,EA082,Beehive shaped,EA082-3,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +108560,Ad46,EA082,Conical,EA082-4,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +108561,Ad47,EA082,Beehive shaped,EA082-3,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +108562,Ad48,EA082,Beehive shaped,EA082-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +108563,Ad49,EA082,Beehive shaped,EA082-3,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +108564,Ad5,EA082,Flat,EA082-7,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +108565,Ad50,EA082,Flat,EA082-7,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +108566,Ad51,EA082,Conical,EA082-4,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +108567,Ad6,EA082,Conical,EA082-4,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +108568,Ad7,EA082,Beehive shaped,EA082-3,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +108569,Ad8,EA082,Flat,EA082-7,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +108570,Ad9,EA082,Conical,EA082-4,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +108571,Ae1,EA082,Beehive shaped,EA082-3,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +108572,Ae10,EA082,Beehive shaped,EA082-3,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +108573,Ae11,EA082,Two slopes,EA082-8,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +108574,Ae12,EA082,Two slopes,EA082-8,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +108575,Ae13,EA082,Beehive shaped,EA082-3,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +108576,Ae14,EA082,Beehive shaped,EA082-3,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +108577,Ae15,EA082,Conical,EA082-4,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +108578,Ae16,EA082,Two slopes,EA082-8,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +108579,Ae17,EA082,Rounded or semi-cylindrical,EA082-1,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +108580,Ae18,EA082,Conical,EA082-4,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +108581,Ae19,EA082,Two slopes,EA082-8,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +108582,Ae2,EA082,Two slopes,EA082-8,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +108583,Ae20,EA082,Two slopes,EA082-8,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +108584,Ae21,EA082,Two slopes,EA082-8,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +108585,Ae22,EA082,Two slopes,EA082-8,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +108586,Ae23,EA082,Two slopes,EA082-8,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +108587,Ae24,EA082,Two slopes,EA082-8,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +108588,Ae25,EA082,Two slopes,EA082-8,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +108589,Ae26,EA082,Two slopes,EA082-8,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +108590,Ae27,EA082,Two slopes,EA082-8,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +108591,Ae28,EA082,Two slopes,EA082-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +108592,Ae29,EA082,Four slopes,EA082-9,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +108593,Ae3,EA082,Two slopes,EA082-8,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +108594,Ae30,EA082,Two slopes,EA082-8,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +108595,Ae31,EA082,Two slopes,EA082-8,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +108596,Ae32,EA082,Two slopes,EA082-8,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +108597,Ae33,EA082,Two slopes,EA082-8,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +108598,Ae34,EA082,Beehive shaped,EA082-3,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +108599,Ae35,EA082,Two slopes,EA082-8,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +108600,Ae36,EA082,Two slopes,EA082-8,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +108601,Ae37,EA082,Two slopes,EA082-8,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +108602,Ae38,EA082,?,EA082-NA,,,,,, +108603,Ae39,EA082,Two slopes,EA082-8,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +108604,Ae4,EA082,Two slopes,EA082-8,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +108605,Ae40,EA082,Two slopes,EA082-8,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +108606,Ae41,EA082,Two slopes,EA082-8,,andersson1953,,1940,EthnographicAtlas_1967_p69, +108607,Ae42,EA082,Two slopes,EA082-8,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +108608,Ae43,EA082,Two slopes,EA082-8,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +108609,Ae44,EA082,Two slopes,EA082-8,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +108610,Ae45,EA082,Two slopes,EA082-8,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +108611,Ae46,EA082,Two slopes,EA082-8,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +108612,Ae47,EA082,Two slopes,EA082-8,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +108613,Ae48,EA082,Two slopes,EA082-8,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +108614,Ae49,EA082,Four slopes,EA082-9,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +108615,Ae5,EA082,Conical,EA082-4,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +108616,Ae50,EA082,Hemispherical,EA082-2,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +108617,Ae51,EA082,Two slopes,EA082-8,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +108618,Ae52,EA082,Four slopes,EA082-9,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +108619,Ae53,EA082,Two slopes,EA082-8,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +108620,Ae54,EA082,Four slopes,EA082-9,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +108621,Ae55,EA082,Four slopes,EA082-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +108622,Ae56,EA082,Four slopes,EA082-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +108623,Ae57,EA082,Four slopes,EA082-9,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +108624,Ae58,EA082,Conical,EA082-4,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +108625,Ae59,EA082,Conical,EA082-4,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +108626,Ae6,EA082,?,EA082-NA,,,,,, +108627,Ae7,EA082,Conical,EA082-4,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +108628,Ae8,EA082,Beehive shaped,EA082-3,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +108629,Ae9,EA082,Four slopes,EA082-9,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +108630,Af1,EA082,Four slopes,EA082-9,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +108631,Af10,EA082,Two slopes,EA082-8,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +108632,Af11,EA082,Conical,EA082-4,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +108633,Af12,EA082,?,EA082-NA,,,,,, +108634,Af13,EA082,Conical,EA082-4,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +108635,Af14,EA082,Conical,EA082-4,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +108636,Af15,EA082,Conical,EA082-4,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +108637,Af16,EA082,Two slopes,EA082-8,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +108638,Af17,EA082,Conical,EA082-4,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +108639,Af18,EA082,Two slopes,EA082-8,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +108640,Af19,EA082,Two slopes,EA082-8,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +108641,Af2,EA082,Conical,EA082-4,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +108642,Af20,EA082,Two slopes,EA082-8,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +108643,Af21,EA082,Two slopes,EA082-8,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +108644,Af22,EA082,Two slopes,EA082-8,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +108645,Af23,EA082,Two slopes,EA082-8,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +108646,Af24,EA082,Two slopes,EA082-8,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +108647,Af25,EA082,Two slopes,EA082-8,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +108648,Af26,EA082,Two slopes,EA082-8,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +108649,Af27,EA082,?,EA082-NA,,,,,, +108650,Af28,EA082,Conical,EA082-4,,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +108651,Af29,EA082,Conical,EA082-4,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +108652,Af3,EA082,Two slopes,EA082-8,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +108653,Af30,EA082,Conical,EA082-4,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +108654,Af31,EA082,Conical,EA082-4,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +108655,Af32,EA082,Two slopes,EA082-8,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108656,Af33,EA082,Two slopes,EA082-8,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108657,Af34,EA082,Two slopes,EA082-8,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108658,Af35,EA082,?,EA082-NA,,,,,, +108659,Af36,EA082,Two slopes,EA082-8,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +108660,Af37,EA082,Flat,EA082-7,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +108661,Af38,EA082,Two slopes,EA082-8,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +108662,Af39,EA082,Two slopes,EA082-8,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +108663,Af4,EA082,Two slopes,EA082-8,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +108664,Af40,EA082,Two slopes,EA082-8,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +108665,Af41,EA082,One slope,EA082-6,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +108666,Af42,EA082,?,EA082-NA,,,,,, +108667,Af43,EA082,Two slopes,EA082-8,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +108668,Af44,EA082,?,EA082-NA,,,,,, +108669,Af45,EA082,Two slopes,EA082-8,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +108670,Af46,EA082,Two slopes,EA082-8,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +108671,Af47,EA082,Conical,EA082-4,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +108672,Af48,EA082,Conical,EA082-4,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +108673,Af49,EA082,Two slopes,EA082-8,,schwab1947,,1940,EthnographicAtlas_1967_p73, +108674,Af5,EA082,Conical,EA082-4,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +108675,Af50,EA082,Conical,EA082-4,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +108676,Af51,EA082,Conical,EA082-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +108677,Af52,EA082,Four slopes,EA082-9,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +108678,Af53,EA082,Conical,EA082-4,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +108679,Af54,EA082,Conical,EA082-4,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +108680,Af55,EA082,?,EA082-NA,,,,,, +108681,Af56,EA082,Conical,EA082-4,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +108682,Af57,EA082,Conical,EA082-4,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +108683,Af58,EA082,Conical,EA082-4,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +108684,Af6,EA082,Two slopes,EA082-8,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +108685,Af7,EA082,Two slopes,EA082-8,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +108686,Af8,EA082,Conical,EA082-4,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +108687,Af9,EA082,Two slopes,EA082-8,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +108688,Ag1,EA082,Flat,EA082-7,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +108689,Ag10,EA082,Conical,EA082-4,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +108690,Ag11,EA082,Flat,EA082-7,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +108691,Ag12,EA082,Conical,EA082-4,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +108692,Ag13,EA082,Flat,EA082-7,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +108693,Ag14,EA082,Conical,EA082-4,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +108694,Ag15,EA082,Conical,EA082-4,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +108695,Ag16,EA082,Conical,EA082-4,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +108696,Ag17,EA082,Conical,EA082-4,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +108697,Ag18,EA082,Conical,EA082-4,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +108698,Ag19,EA082,Four slopes,EA082-9,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +108699,Ag2,EA082,Conical,EA082-4,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +108700,Ag20,EA082,Conical,EA082-4,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +108701,Ag21,EA082,Conical,EA082-4,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +108702,Ag22,EA082,Conical,EA082-4,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +108703,Ag23,EA082,Conical,EA082-4,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +108704,Ag24,EA082,Conical,EA082-4,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +108705,Ag25,EA082,Flat,EA082-7,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +108706,Ag26,EA082,Conical,EA082-4,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +108707,Ag27,EA082,Flat,EA082-7,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +108708,Ag28,EA082,Flat,EA082-7,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +108709,Ag29,EA082,Flat,EA082-7,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +108710,Ag3,EA082,Flat,EA082-7,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +108711,Ag30,EA082,Flat,EA082-7,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +108712,Ag31,EA082,Flat,EA082-7,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +108713,Ag32,EA082,Conical,EA082-4,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +108714,Ag33,EA082,Flat,EA082-7,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +108715,Ag34,EA082,Flat,EA082-7,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +108716,Ag35,EA082,Conical,EA082-4,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +108717,Ag36,EA082,Flat,EA082-7,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +108718,Ag37,EA082,Flat,EA082-7,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +108719,Ag38,EA082,?,EA082-NA,,,,,, +108720,Ag39,EA082,Flat,EA082-7,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +108721,Ag4,EA082,Conical,EA082-4,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +108722,Ag40,EA082,Flat,EA082-7,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +108723,Ag41,EA082,Conical,EA082-4,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +108724,Ag42,EA082,Flat,EA082-7,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +108725,Ag43,EA082,Flat,EA082-7,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +108726,Ag44,EA082,Conical,EA082-4,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +108727,Ag45,EA082,Conical,EA082-4,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +108728,Ag46,EA082,Conical,EA082-4,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +108729,Ag47,EA082,Conical,EA082-4,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +108730,Ag48,EA082,Conical,EA082-4,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +108731,Ag49,EA082,Conical,EA082-4,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +108732,Ag5,EA082,Flat,EA082-7,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +108733,Ag50,EA082,Conical,EA082-4,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +108734,Ag51,EA082,Conical,EA082-4,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +108735,Ag52,EA082,Conical,EA082-4,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +108736,Ag53,EA082,Conical,EA082-4,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +108737,Ag54,EA082,Semi-hemispherical,EA082-5,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +108738,Ag6,EA082,Conical,EA082-4,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +108739,Ag7,EA082,Flat,EA082-7,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +108740,Ag8,EA082,Conical,EA082-4,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +108741,Ag9,EA082,Conical,EA082-4,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +108742,Ah1,EA082,Conical,EA082-4,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108743,Ah10,EA082,Conical,EA082-4,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +108744,Ah11,EA082,Conical,EA082-4,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +108745,Ah12,EA082,Conical,EA082-4,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +108746,Ah13,EA082,Conical,EA082-4,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +108747,Ah14,EA082,Conical,EA082-4,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +108748,Ah15,EA082,Conical,EA082-4,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +108749,Ah16,EA082,Hemispherical,EA082-2,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +108750,Ah17,EA082,Conical,EA082-4,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +108751,Ah18,EA082,Hemispherical,EA082-2,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +108752,Ah19,EA082,Conical,EA082-4,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +108753,Ah2,EA082,Conical,EA082-4,,meek1931a,,1920,EthnographicAtlas_1967_p77, +108754,Ah20,EA082,Conical,EA082-4,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +108755,Ah21,EA082,Conical,EA082-4,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108756,Ah22,EA082,Conical,EA082-4,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +108757,Ah23,EA082,Conical,EA082-4,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108758,Ah24,EA082,Conical,EA082-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108759,Ah25,EA082,Conical,EA082-4,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108760,Ah26,EA082,Conical,EA082-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108761,Ah27,EA082,?,EA082-NA,,,,,, +108762,Ah28,EA082,Conical,EA082-4,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +108763,Ah29,EA082,Conical,EA082-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108764,Ah3,EA082,Conical,EA082-4,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +108765,Ah30,EA082,Conical,EA082-4,,meek1931b,,1920,EthnographicAtlas_1967_p77, +108766,Ah31,EA082,Conical,EA082-4,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +108767,Ah32,EA082,Conical,EA082-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108768,Ah33,EA082,Conical,EA082-4,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +108769,Ah34,EA082,Conical,EA082-4,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +108770,Ah35,EA082,Conical,EA082-4,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108771,Ah36,EA082,Conical,EA082-4,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +108772,Ah37,EA082,Conical,EA082-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108773,Ah38,EA082,Conical,EA082-4,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +108774,Ah39,EA082,Conical,EA082-4,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +108775,Ah4,EA082,Conical,EA082-4,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +108776,Ah5,EA082,Conical,EA082-4,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +108777,Ah6,EA082,Conical,EA082-4,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +108778,Ah7,EA082,Conical,EA082-4,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +108779,Ah8,EA082,Conical,EA082-4,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +108780,Ah9,EA082,Beehive shaped,EA082-3,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +108781,Ai1,EA082,Conical,EA082-4,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +108782,Ai10,EA082,Conical,EA082-4,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +108783,Ai11,EA082,Two slopes,EA082-8,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +108784,Ai12,EA082,Conical,EA082-4,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +108785,Ai13,EA082,Conical,EA082-4,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +108786,Ai14,EA082,Conical,EA082-4,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p77, +108787,Ai15,EA082,Conical,EA082-4,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +108788,Ai16,EA082,Conical,EA082-4,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +108789,Ai17,EA082,Hemispherical,EA082-2,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +108790,Ai18,EA082,Conical,EA082-4,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +108791,Ai19,EA082,Beehive shaped,EA082-3,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +108792,Ai2,EA082,Conical,EA082-4,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +108793,Ai20,EA082,Conical,EA082-4,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +108794,Ai21,EA082,Conical,EA082-4,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +108795,Ai22,EA082,Conical,EA082-4,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +108796,Ai23,EA082,Two slopes,EA082-8,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +108797,Ai24,EA082,Beehive shaped,EA082-3,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +108798,Ai25,EA082,Conical,EA082-4,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +108799,Ai26,EA082,Conical,EA082-4,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +108800,Ai27,EA082,Conical,EA082-4,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +108801,Ai28,EA082,Conical,EA082-4,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +108802,Ai29,EA082,Beehive shaped,EA082-3,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +108803,Ai3,EA082,Conical,EA082-4,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +108804,Ai30,EA082,Conical,EA082-4,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +108805,Ai31,EA082,Conical,EA082-4,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +108806,Ai32,EA082,Conical,EA082-4,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +108807,Ai33,EA082,Conical,EA082-4,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +108808,Ai34,EA082,Conical,EA082-4,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +108809,Ai35,EA082,Conical,EA082-4,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +108810,Ai36,EA082,Conical,EA082-4,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +108811,Ai37,EA082,Conical,EA082-4,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +108812,Ai38,EA082,Conical,EA082-4,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +108813,Ai39,EA082,Conical,EA082-4,,nadel1947,,1940,EthnographicAtlas_1967_p77, +108814,Ai4,EA082,?,EA082-NA,,,,,, +108815,Ai40,EA082,Conical,EA082-4,,nadel1947,,1940,EthnographicAtlas_1967_p77, +108816,Ai41,EA082,Conical,EA082-4,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +108817,Ai42,EA082,Conical,EA082-4,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +108818,Ai43,EA082,Conical,EA082-4,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +108819,Ai44,EA082,Conical,EA082-4,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p77, +108820,Ai45,EA082,Conical,EA082-4,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +108821,Ai46,EA082,Conical,EA082-4,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +108822,Ai47,EA082,Beehive shaped,EA082-3,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +108823,Ai5,EA082,Conical,EA082-4,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +108824,Ai6,EA082,Conical,EA082-4,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +108825,Ai7,EA082,Conical,EA082-4,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +108826,Ai8,EA082,Conical,EA082-4,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +108827,Ai9,EA082,Conical,EA082-4,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +108828,Aj1,EA082,Beehive shaped,EA082-3,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +108829,Aj10,EA082,?,EA082-NA,,,,,, +108830,Aj11,EA082,Conical,EA082-4,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +108831,Aj12,EA082,Conical,EA082-4,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +108832,Aj13,EA082,Conical,EA082-4,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +108833,Aj14,EA082,Conical,EA082-4,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +108834,Aj15,EA082,Hemispherical,EA082-2,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +108835,Aj16,EA082,Conical,EA082-4,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +108836,Aj17,EA082,Conical,EA082-4,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +108837,Aj18,EA082,Beehive shaped,EA082-3,,jensen1959,,1950,EthnographicAtlas_1967_p81, +108838,Aj19,EA082,Conical,EA082-4,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +108839,Aj2,EA082,Rounded or semi-cylindrical,EA082-1,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +108840,Aj20,EA082,Beehive shaped,EA082-3,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +108841,Aj21,EA082,Conical,EA082-4,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +108842,Aj22,EA082,?,EA082-NA,,,,,, +108843,Aj23,EA082,Hemispherical,EA082-2,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +108844,Aj24,EA082,Beehive shaped,EA082-3,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +108845,Aj25,EA082,Conical,EA082-4,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +108846,Aj26,EA082,Conical,EA082-4,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +108847,Aj27,EA082,Beehive shaped,EA082-3,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +108848,Aj28,EA082,Flat,EA082-7,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +108849,Aj29,EA082,Hemispherical,EA082-2,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +108850,Aj3,EA082,Conical,EA082-4,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +108851,Aj30,EA082,?,EA082-NA,,,,,, +108852,Aj31,EA082,?,EA082-NA,,,,,, +108853,Aj4,EA082,Hemispherical,EA082-2,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +108854,Aj5,EA082,Hemispherical,EA082-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +108855,Aj6,EA082,Conical,EA082-4,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +108856,Aj7,EA082,Conical,EA082-4,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +108857,Aj8,EA082,Conical,EA082-4,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +108858,Aj9,EA082,Conical,EA082-4,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +108859,Ca1,EA082,Conical,EA082-4,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +108860,Ca10,EA082,Hemispherical,EA082-2,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +108861,Ca11,EA082,Hemispherical,EA082-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +108862,Ca12,EA082,Conical,EA082-4,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +108863,Ca13,EA082,Conical,EA082-4,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +108864,Ca14,EA082,Conical,EA082-4,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +108865,Ca15,EA082,Conical,EA082-4,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +108866,Ca16,EA082,Beehive shaped,EA082-3,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +108867,Ca17,EA082,Conical,EA082-4,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +108868,Ca18,EA082,Hemispherical,EA082-2,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +108869,Ca19,EA082,Conical,EA082-4,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +108870,Ca2,EA082,Hemispherical,EA082-2,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +108871,Ca20,EA082,Beehive shaped,EA082-3,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +108872,Ca21,EA082,Conical,EA082-4,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +108873,Ca22,EA082,Conical,EA082-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +108874,Ca23,EA082,Conical,EA082-4,,jensen1959,,1950,EthnographicAtlas_1967_p81, +108875,Ca24,EA082,Conical,EA082-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +108876,Ca25,EA082,Conical,EA082-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +108877,Ca26,EA082,Conical,EA082-4,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +108878,Ca27,EA082,Conical,EA082-4,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +108879,Ca28,EA082,Conical,EA082-4,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +108880,Ca29,EA082,Conical,EA082-4,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +108881,Ca3,EA082,Conical,EA082-4,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +108882,Ca30,EA082,Conical,EA082-4,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +108883,Ca31,EA082,Conical,EA082-4,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +108884,Ca32,EA082,Beehive shaped,EA082-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +108885,Ca33,EA082,Beehive shaped,EA082-3,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +108886,Ca34,EA082,Two slopes,EA082-8,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +108887,Ca35,EA082,Two slopes,EA082-8,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +108888,Ca36,EA082,Rounded or semi-cylindrical,EA082-1,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +108889,Ca37,EA082,Hemispherical,EA082-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +108890,Ca38,EA082,Hemispherical,EA082-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +108891,Ca39,EA082,Conical,EA082-4,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +108892,Ca4,EA082,Conical,EA082-4,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +108893,Ca40,EA082,Beehive shaped,EA082-3,"In shape, but roof 'conical' (code ""4"") in construction",straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +108894,Ca41,EA082,Beehive shaped,EA082-3,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +108895,Ca42,EA082,Conical,EA082-4,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +108896,Ca43,EA082,?,EA082-NA,,,,,, +108897,Ca5,EA082,Conical,EA082-4,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +108898,Ca6,EA082,Hemispherical,EA082-2,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +108899,Ca7,EA082,Conical,EA082-4,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +108900,Ca8,EA082,Conical,EA082-4,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +108901,Ca9,EA082,Flat,EA082-7,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +108902,Cb1,EA082,Conical,EA082-4,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +108903,Cb10,EA082,Conical,EA082-4,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +108904,Cb11,EA082,Hemispherical,EA082-2,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +108905,Cb12,EA082,?,EA082-NA,,,,,, +108906,Cb13,EA082,Rounded or semi-cylindrical,EA082-1,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +108907,Cb14,EA082,Hemispherical,EA082-2,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +108908,Cb15,EA082,Hemispherical,EA082-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +108909,Cb16,EA082,Beehive shaped,EA082-3,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +108910,Cb17,EA082,Conical,EA082-4,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +108911,Cb18,EA082,Beehive shaped,EA082-3,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +108912,Cb19,EA082,Conical,EA082-4,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +108913,Cb2,EA082,Conical,EA082-4,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +108914,Cb20,EA082,Conical,EA082-4,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +108915,Cb21,EA082,Beehive shaped,EA082-3,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +108916,Cb22,EA082,Flat,EA082-7,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +108917,Cb23,EA082,Conical,EA082-4,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +108918,Cb24,EA082,Hemispherical,EA082-2,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +108919,Cb25,EA082,Conical,EA082-4,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +108920,Cb26,EA082,Conical,EA082-4,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +108921,Cb27,EA082,Conical,EA082-4,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108922,Cb28,EA082,Conical,EA082-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108923,Cb29,EA082,Conical,EA082-4,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +108924,Cb3,EA082,Rounded or semi-cylindrical,EA082-1,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +108925,Cb4,EA082,Two slopes,EA082-8,,reid1930,,1920,EthnographicAtlas_1967_p81, +108926,Cb5,EA082,Beehive shaped,EA082-3,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +108927,Cb6,EA082,Conical,EA082-4,,woodnd,,1920,EthnographicAtlas_1967_p81, +108928,Cb7,EA082,Conical,EA082-4,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +108929,Cb8,EA082,Beehive shaped,EA082-3,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +108930,Cb9,EA082,Conical,EA082-4,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +108931,Cc1,EA082,?,EA082-NA,,,,,, +108932,Cc10,EA082,Rounded or semi-cylindrical,EA082-1,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +108933,Cc11,EA082,Two slopes,EA082-8,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +108934,Cc12,EA082,Hemispherical,EA082-2,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +108935,Cc13,EA082,?,EA082-NA,,,,,, +108936,Cc14,EA082,Conical,EA082-4,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +108937,Cc15,EA082,Flat,EA082-7,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +108938,Cc16,EA082,Rounded or semi-cylindrical,EA082-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +108939,Cc17,EA082,?,EA082-NA,,,,,, +108940,Cc18,EA082,Two slopes,EA082-8,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +108941,Cc19,EA082,Four slopes,EA082-9,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +108942,Cc2,EA082,Rounded or semi-cylindrical,EA082-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +108943,Cc20,EA082,?,EA082-NA,,,,,, +108944,Cc3,EA082,Flat,EA082-7,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +108945,Cc4,EA082,Flat,EA082-7,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +108946,Cc5,EA082,Four slopes,EA082-9,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +108947,Cc6,EA082,Four slopes,EA082-9,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +108948,Cc7,EA082,Rounded or semi-cylindrical,EA082-1,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +108949,Cc8,EA082,Flat,EA082-7,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +108950,Cc9,EA082,Rounded or semi-cylindrical,EA082-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +108951,Cd1,EA082,Flat,EA082-7,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +108952,Cd10,EA082,Flat,EA082-7,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +108953,Cd11,EA082,Flat,EA082-7,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +108954,Cd12,EA082,Flat,EA082-7,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +108955,Cd13,EA082,Rounded or semi-cylindrical,EA082-1,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +108956,Cd14,EA082,Rounded or semi-cylindrical,EA082-1,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +108957,Cd15,EA082,Four slopes,EA082-9,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +108958,Cd16,EA082,Flat,EA082-7,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +108959,Cd17,EA082,Rounded or semi-cylindrical,EA082-1,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +108960,Cd18,EA082,Two slopes,EA082-8,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +108961,Cd19,EA082,Flat,EA082-7,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +108962,Cd2,EA082,Flat,EA082-7,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +108963,Cd20,EA082,Two slopes,EA082-8,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +108964,Cd21,EA082,Flat,EA082-7,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +108965,Cd3,EA082,Flat,EA082-7,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +108966,Cd4,EA082,Two slopes,EA082-8,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +108967,Cd5,EA082,Flat,EA082-7,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +108968,Cd6,EA082,Flat,EA082-7,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +108969,Cd7,EA082,Rounded or semi-cylindrical,EA082-1,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +108970,Cd8,EA082,Flat,EA082-7,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +108971,Cd9,EA082,Flat,EA082-7,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +108972,Ce1,EA082,Two slopes,EA082-8,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +108973,Ce2,EA082,Two slopes,EA082-8,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +108974,Ce3,EA082,?,EA082-NA,,,,,, +108975,Ce4,EA082,?,EA082-NA,,,,,, +108976,Ce5,EA082,Flat,EA082-7,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +108977,Ce6,EA082,Two slopes,EA082-8,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +108978,Ce7,EA082,Four slopes,EA082-9,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +108979,Ce8,EA082,Two slopes,EA082-8,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +108980,Cf1,EA082,Two slopes,EA082-8,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +108981,Cf2,EA082,Two slopes,EA082-8,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +108982,Cf3,EA082,Two slopes,EA082-8,,munch1945,,1930,EthnographicAtlas_1967_p85, +108983,Cf4,EA082,Two slopes,EA082-8,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +108984,Cf5,EA082,Two slopes,EA082-8,,miner1939,,1930,EthnographicAtlas_1967_p85, +108985,Cg1,EA082,Two slopes,EA082-8,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +108986,Cg2,EA082,Two slopes,EA082-8,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +108987,Cg3,EA082,Two slopes,EA082-8,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +108988,Cg4,EA082,Two slopes,EA082-8,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +108989,Cg5,EA082,Two slopes,EA082-8,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +108990,Ch1,EA082,Four slopes,EA082-9,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +108991,Ch10,EA082,?,EA082-NA,,,,,, +108992,Ch11,EA082,Four slopes,EA082-9,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +108993,Ch2,EA082,Four slopes,EA082-9,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +108994,Ch3,EA082,?,EA082-NA,,,,,, +108995,Ch4,EA082,Two slopes,EA082-8,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +108996,Ch5,EA082,Four slopes,EA082-9,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +108997,Ch6,EA082,Two slopes,EA082-8,,ember1954,,1910,EthnographicAtlas_1967_p85, +108998,Ch7,EA082,?,EA082-NA,,,,,, +108999,Ch8,EA082,?,EA082-NA,,,,,, +109000,Ch9,EA082,?,EA082-NA,,,,,, +109001,Ci1,EA082,Hemispherical,EA082-2,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +109002,Ci10,EA082,Flat,EA082-7,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,Ethnology_Vol10_No1_Jan_1971, +109003,Ci11,EA082,Flat,EA082-7,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +109004,Ci12,EA082,Conical,EA082-4,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +109005,Ci2,EA082,Flat,EA082-7,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +109006,Ci3,EA082,Flat,EA082-7,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p85, +109007,Ci4,EA082,?,EA082-NA,,,,,, +109008,Ci5,EA082,Two slopes,EA082-8,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +109009,Ci6,EA082,Flat,EA082-7,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +109010,Ci7,EA082,Flat,EA082-7,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p85, +109011,Ci8,EA082,Flat,EA082-7,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +109012,Ci9,EA082,Flat,EA082-7,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +109013,Cj1,EA082,Hemispherical,EA082-2,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +109014,Cj10,EA082,Rounded or semi-cylindrical,EA082-1,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +109015,Cj2,EA082,Two slopes,EA082-8,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +109016,Cj3,EA082,Flat,EA082-7,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +109017,Cj4,EA082,Flat,EA082-7,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +109018,Cj5,EA082,Flat,EA082-7,,dickson1949,,1930,EthnographicAtlas_1967_p89, +109019,Cj6,EA082,Flat,EA082-7,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +109020,Cj7,EA082,Flat,EA082-7,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +109021,Cj8,EA082,Flat,EA082-7,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +109022,Cj9,EA082,Flat,EA082-7,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +109023,Ea1,EA082,?,EA082-NA,,,,,, +109024,Ea10,EA082,?,EA082-NA,,,,,, +109025,Ea11,EA082,Flat,EA082-7,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +109026,Ea12,EA082,Flat,EA082-7,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +109027,Ea13,EA082,Flat,EA082-7,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +109028,Ea2,EA082,Flat,EA082-7,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +109029,Ea3,EA082,Flat,EA082-7,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +109030,Ea4,EA082,Flat,EA082-7,,barth1956b,,1950,EthnographicAtlas_1967_p89, +109031,Ea5,EA082,Flat,EA082-7,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +109032,Ea6,EA082,Flat,EA082-7,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +109033,Ea7,EA082,Two slopes,EA082-8,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +109034,Ea8,EA082,Flat,EA082-7,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +109035,Ea9,EA082,?,EA082-NA,,,,,, +109036,Eb1,EA082,Hemispherical,EA082-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +109037,Eb2,EA082,?,EA082-NA,,,,,, +109038,Eb3,EA082,Conical,EA082-4,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +109039,Eb4,EA082,?,EA082-NA,,,,,, +109040,Eb5,EA082,?,EA082-NA,,,,,, +109041,Eb6,EA082,Conical,EA082-4,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +109042,Eb7,EA082,?,EA082-NA,,,,,, +109043,Eb8,EA082,?,EA082-NA,,,,,, +109044,Ec1,EA082,Flat,EA082-7,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +109045,Ec10,EA082,Conical,EA082-4,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +109046,Ec11,EA082,Conical,EA082-4,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +109047,Ec2,EA082,Four slopes,EA082-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109048,Ec3,EA082,Conical,EA082-4,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +109049,Ec4,EA082,Conical,EA082-4,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +109050,Ec5,EA082,Flat,EA082-7,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +109051,Ec6,EA082,Conical,EA082-4,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +109052,Ec7,EA082,Two slopes,EA082-8,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +109053,Ec8,EA082,Flat,EA082-7,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +109054,Ec9,EA082,Conical,EA082-4,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +109055,Ed1,EA082,Four slopes,EA082-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +109056,Ed10,EA082,?,EA082-NA,,,,,, +109057,Ed13,EA082,?,EA082-NA,,,,,, +109058,Ed14,EA082,?,EA082-NA,,,,,, +109059,Ed15a,EA082,?,EA082-NA,,,,,, +109060,Ed15b,EA082,Two slopes,EA082-8,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +109061,Ed16,EA082,?,EA082-NA,,,,,, +109062,Ed2,EA082,?,EA082-NA,,,,,, +109063,Ed3,EA082,?,EA082-NA,,,,,, +109064,Ed4,EA082,Two slopes,EA082-8,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +109065,Ed5,EA082,Four slopes,EA082-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109066,Ed6,EA082,?,EA082-NA,,,,,, +109067,Ed7,EA082,Four slopes,EA082-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +109068,Ed8,EA082,Two slopes,EA082-8,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +109069,Ed9,EA082,Rounded or semi-cylindrical,EA082-1,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +109070,Ee1,EA082,Two slopes,EA082-8,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +109071,Ee2,EA082,One slope,EA082-6,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p89, +109072,Ee3,EA082,Two slopes,EA082-8,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +109073,Ee4,EA082,Flat,EA082-7,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +109074,Ee5,EA082,Flat,EA082-7,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +109075,Ee6,EA082,Two slopes,EA082-8,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +109076,Ee7,EA082,?,EA082-NA,,,,,, +109077,Ee8,EA082,Two slopes,EA082-8,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +109078,Ef1,EA082,Two slopes,EA082-8,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +109079,Ef10,EA082,?,EA082-NA,,,,,, +109080,Ef11,EA082,Two slopes,EA082-8,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +109081,Ef2,EA082,Two slopes,EA082-8,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +109082,Ef3,EA082,?,EA082-NA,,,,,, +109083,Ef4,EA082,Two slopes,EA082-8,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +109084,Ef5,EA082,Two slopes,EA082-8,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +109085,Ef6,EA082,Two slopes,EA082-8,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +109086,Ef7,EA082,Two slopes,EA082-8,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +109087,Ef8,EA082,Two slopes,EA082-8,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +109088,Ef9,EA082,?,EA082-NA,,,,,, +109089,Eg1,EA082,Conical,EA082-4,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109090,Eg10,EA082,Two slopes,EA082-8,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +109091,Eg11,EA082,?,EA082-NA,,,,,, +109092,Eg12,EA082,?,EA082-NA,,,,,, +109093,Eg13,EA082,Two slopes,EA082-8,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109094,Eg14,EA082,Four slopes,EA082-9,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +109095,Eg2,EA082,Two slopes,EA082-8,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +109096,Eg3,EA082,Two slopes,EA082-8,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +109097,Eg4,EA082,Rounded or semi-cylindrical,EA082-1,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +109098,Eg5,EA082,Four slopes,EA082-9,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +109099,Eg6,EA082,Two slopes,EA082-8,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +109100,Eg7,EA082,Two slopes,EA082-8,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +109101,Eg8,EA082,Two slopes,EA082-8,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +109102,Eg9,EA082,Two slopes,EA082-8,,elwin1939,,1930,EthnographicAtlas_1967_p93, +109103,Eh1,EA082,One slope,EA082-6,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +109104,Eh10,EA082,?,EA082-NA,,,,,, +109105,Eh2,EA082,Two slopes,EA082-8,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +109106,Eh3,EA082,Two slopes,EA082-8,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +109107,Eh4,EA082,?,EA082-NA,,,,,, +109108,Eh5,EA082,Beehive shaped,EA082-3,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +109109,Eh6,EA082,Two slopes,EA082-8,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +109110,Eh7,EA082,Two slopes,EA082-8,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +109111,Eh8,EA082,Two slopes,EA082-8,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +109112,Eh9,EA082,Conical,EA082-4,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +109113,Ei1,EA082,Two slopes,EA082-8,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109114,Ei10,EA082,Two slopes,EA082-8,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +109115,Ei11,EA082,Two slopes,EA082-8,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +109116,Ei12,EA082,Four slopes,EA082-9,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +109117,Ei13,EA082,Two slopes,EA082-8,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +109118,Ei14,EA082,Two slopes,EA082-8,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +109119,Ei15,EA082,?,EA082-NA,,,,,, +109120,Ei16,EA082,Two slopes,EA082-8,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +109121,Ei17,EA082,?,EA082-NA,,,,,, +109122,Ei18,EA082,Two slopes,EA082-8,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +109123,Ei19,EA082,Two slopes,EA082-8,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +109124,Ei2,EA082,Two slopes,EA082-8,,mills1922,,1920,EthnographicAtlas_1967_p93, +109125,Ei20,EA082,?,EA082-NA,,,,,, +109126,Ei3,EA082,Two slopes,EA082-8,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +109127,Ei4,EA082,Two slopes,EA082-8,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +109128,Ei5,EA082,Two slopes,EA082-8,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +109129,Ei6,EA082,Two slopes,EA082-8,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +109130,Ei7,EA082,Two slopes,EA082-8,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +109131,Ei8,EA082,Two slopes,EA082-8,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +109132,Ei9,EA082,Two slopes,EA082-8,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p93, +109133,Ej1,EA082,One slope,EA082-6,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +109134,Ej10,EA082,Two slopes,EA082-8,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +109135,Ej11,EA082,Two slopes,EA082-8,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +109136,Ej12,EA082,Two slopes,EA082-8,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +109137,Ej13,EA082,Two slopes,EA082-8,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +109138,Ej14,EA082,Two slopes,EA082-8,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109139,Ej15,EA082,Two slopes,EA082-8,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +109140,Ej16,EA082,Two slopes,EA082-8,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +109141,Ej2,EA082,Two slopes,EA082-8,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +109142,Ej3,EA082,One slope,EA082-6,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +109143,Ej4,EA082,Two slopes,EA082-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +109144,Ej5,EA082,Two slopes,EA082-8,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +109145,Ej6,EA082,?,EA082-NA,,,,,, +109146,Ej7,EA082,Four slopes,EA082-9,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +109147,Ej8,EA082,Two slopes,EA082-8,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +109148,Ej9,EA082,Two slopes,EA082-8,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +109149,Ia1,EA082,Two slopes,EA082-8,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +109150,Ia10,EA082,Two slopes,EA082-8,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +109151,Ia11,EA082,Two slopes,EA082-8,,mabuchi1960,,1930,EthnographicAtlas_1967_p93, +109152,Ia12,EA082,Two slopes,EA082-8,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +109153,Ia13,EA082,?,EA082-NA,,,,,, +109154,Ia14,EA082,Two slopes,EA082-8,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +109155,Ia15,EA082,?,EA082-NA,,,,,, +109156,Ia16,EA082,Four slopes,EA082-9,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +109157,Ia17,EA082,?,EA082-NA,,,,,, +109158,Ia18,EA082,?,EA082-NA,,,,,, +109159,Ia2,EA082,Four slopes,EA082-9,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +109160,Ia3,EA082,Four slopes,EA082-9,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +109161,Ia4,EA082,Two slopes,EA082-8,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +109162,Ia5,EA082,Four slopes,EA082-9,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +109163,Ia6,EA082,?,EA082-NA,,,,,, +109164,Ia7,EA082,?,EA082-NA,,,,,, +109165,Ia8,EA082,Four slopes,EA082-9,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +109166,Ia9,EA082,Two slopes,EA082-8,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +109167,Ib1,EA082,Two slopes,EA082-8,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109168,Ib2,EA082,Two slopes,EA082-8,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109169,Ib3,EA082,Two slopes,EA082-8,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +109170,Ib4,EA082,Two slopes,EA082-8,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +109171,Ib5,EA082,Two slopes,EA082-8,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +109172,Ib6,EA082,Two slopes,EA082-8,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +109173,Ib7,EA082,?,EA082-NA,,,,,, +109174,Ib8,EA082,Flat,EA082-7,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +109175,Ib9,EA082,?,EA082-NA,,,,,, +109176,Ic1,EA082,?,EA082-NA,,,,,, +109177,Ic10,EA082,?,EA082-NA,,,,,, +109178,Ic11,EA082,Two slopes,EA082-8,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109179,Ic12,EA082,?,EA082-NA,,,,,, +109180,Ic13,EA082,?,EA082-NA,,,,,, +109181,Ic2,EA082,?,EA082-NA,,,,,, +109182,Ic3,EA082,Two slopes,EA082-8,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +109183,Ic4,EA082,?,EA082-NA,,,,,, +109184,Ic5,EA082,Two slopes,EA082-8,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +109185,Ic6,EA082,Two slopes,EA082-8,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +109186,Ic7,EA082,Four slopes,EA082-9,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +109187,Ic8,EA082,?,EA082-NA,,,,,, +109188,Ic9,EA082,Four slopes,EA082-9,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +109189,Id1,EA082,One slope,EA082-6,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +109190,Id10,EA082,One slope,EA082-6,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +109191,Id11,EA082,Rounded or semi-cylindrical,EA082-1,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +109192,Id12,EA082,?,EA082-NA,,,,,, +109193,Id13,EA082,?,EA082-NA,,,,,, +109194,Id2,EA082,Rounded or semi-cylindrical,EA082-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +109195,Id3,EA082,?,EA082-NA,,,,,, +109196,Id4,EA082,?,EA082-NA,,,,,, +109197,Id5,EA082,?,EA082-NA,,,,,, +109198,Id6,EA082,?,EA082-NA,,,,,, +109199,Id7,EA082,?,EA082-NA,,,,,, +109200,Id8,EA082,Semi-hemispherical,EA082-5,,roth1890,,1830,EthnographicAtlas_1967_p97, +109201,Id9,EA082,?,EA082-NA,,,,,, +109202,Ie1,EA082,Two slopes,EA082-8,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109203,Ie10,EA082,Four slopes,EA082-9,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +109204,Ie11,EA082,Rounded or semi-cylindrical,EA082-1,,bowers1964,,1950,EthnographicAtlas_1967_p97, +109205,Ie12,EA082,Two slopes,EA082-8,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109206,Ie13,EA082,?,EA082-NA,,,,,, +109207,Ie14,EA082,?,EA082-NA,,,,,, +109208,Ie15,EA082,Two slopes,EA082-8,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109209,Ie16,EA082,?,EA082-NA,,,,,, +109210,Ie17,EA082,Conical,EA082-4,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +109211,Ie18,EA082,Beehive shaped,EA082-3,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +109212,Ie19,EA082,Two slopes,EA082-8,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +109213,Ie2,EA082,Two slopes,EA082-8,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +109214,Ie20,EA082,Two slopes,EA082-8,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +109215,Ie21,EA082,Two slopes,EA082-8,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +109216,Ie22,EA082,Two slopes,EA082-8,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +109217,Ie23,EA082,Two slopes,EA082-8,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +109218,Ie24,EA082,Two slopes,EA082-8,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +109219,Ie25,EA082,Two slopes,EA082-8,,williamson1912,,1920,EthnographicAtlas_1967_p97, +109220,Ie26,EA082,Beehive shaped,EA082-3,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +109221,Ie27,EA082,?,EA082-NA,,,,,, +109222,Ie28,EA082,Two slopes,EA082-8,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +109223,Ie29,EA082,?,EA082-NA,,,,,, +109224,Ie3,EA082,Two slopes,EA082-8,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109225,Ie30,EA082,Two slopes,EA082-8,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +109226,Ie31,EA082,Conical,EA082-4,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +109227,Ie32,EA082,Two slopes,EA082-8,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +109228,Ie33,EA082,Two slopes,EA082-8,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +109229,Ie34,EA082,?,EA082-NA,,,,,, +109230,Ie35,EA082,Two slopes,EA082-8,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +109231,Ie36,EA082,?,EA082-NA,,,,,, +109232,Ie37,EA082,?,EA082-NA,,,,,, +109233,Ie38,EA082,Hemispherical,EA082-2,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +109234,Ie39,EA082,Two slopes,EA082-8,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +109235,Ie4,EA082,Two slopes,EA082-8,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109236,Ie5,EA082,Two slopes,EA082-8,,williams1936,,1930,EthnographicAtlas_1967_p97, +109237,Ie6,EA082,Four slopes,EA082-9,,held1947,,1930,EthnographicAtlas_1967_p97, +109238,Ie7,EA082,Two slopes,EA082-8,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +109239,Ie8,EA082,Two slopes,EA082-8,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +109240,Ie9,EA082,Four slopes,EA082-9,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +109241,If1,EA082,Two slopes,EA082-8,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109242,If10,EA082,?,EA082-NA,,,,,, +109243,If11,EA082,Two slopes,EA082-8,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +109244,If12,EA082,?,EA082-NA,,,,,, +109245,If13,EA082,?,EA082-NA,,,,,, +109246,If14,EA082,Two slopes,EA082-8,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +109247,If15,EA082,Two slopes,EA082-8,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +109248,If16,EA082,Two slopes,EA082-8,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +109249,If17,EA082,Two slopes,EA082-8,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +109250,If2,EA082,Four slopes,EA082-9,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +109251,If3,EA082,Four slopes,EA082-9,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +109252,If4,EA082,Two slopes,EA082-8,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +109253,If5,EA082,Two slopes,EA082-8,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +109254,If6,EA082,Two slopes,EA082-8,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +109255,If7,EA082,Two slopes,EA082-8,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +109256,If8,EA082,Two slopes,EA082-8,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +109257,If9,EA082,?,EA082-NA,,,,,, +109258,Ig1,EA082,Two slopes,EA082-8,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +109259,Ig10,EA082,?,EA082-NA,,,,,, +109260,Ig11,EA082,Rounded or semi-cylindrical,EA082-1,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +109261,Ig12,EA082,?,EA082-NA,,,,,, +109262,Ig13,EA082,Two slopes,EA082-8,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +109263,Ig14,EA082,Two slopes,EA082-8,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +109264,Ig15,EA082,?,EA082-NA,,,,,, +109265,Ig16,EA082,?,EA082-NA,,,,,, +109266,Ig17,EA082,?,EA082-NA,,,,,, +109267,Ig18,EA082,?,EA082-NA,,,,,, +109268,Ig19,EA082,?,EA082-NA,,,,,, +109269,Ig2,EA082,Two slopes,EA082-8,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +109270,Ig20,EA082,Two slopes,EA082-8,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +109271,Ig21,EA082,Two slopes,EA082-8,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +109272,Ig3,EA082,Rounded or semi-cylindrical,EA082-1,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +109273,Ig4,EA082,Two slopes,EA082-8,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +109274,Ig5,EA082,Two slopes,EA082-8,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +109275,Ig6,EA082,Two slopes,EA082-8,,ivens1927,,1900,EthnographicAtlas_1967_p101, +109276,Ig7,EA082,?,EA082-NA,,,,,, +109277,Ig8,EA082,?,EA082-NA,,,,,, +109278,Ig9,EA082,Two slopes,EA082-8,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +109279,Ih1,EA082,Two slopes,EA082-8,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +109280,Ih10,EA082,?,EA082-NA,,,,,, +109281,Ih11,EA082,?,EA082-NA,,,,,, +109282,Ih12,EA082,?,EA082-NA,,,,,, +109283,Ih13,EA082,?,EA082-NA,,,,,, +109284,Ih14,EA082,Two slopes,EA082-8,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +109285,Ih2,EA082,Two slopes,EA082-8,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109286,Ih3,EA082,Two slopes,EA082-8,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +109287,Ih4,EA082,Two slopes,EA082-8,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109288,Ih5,EA082,Conical,EA082-4,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +109289,Ih6,EA082,?,EA082-NA,,,,,, +109290,Ih7,EA082,Beehive shaped,EA082-3,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +109291,Ih8,EA082,Four slopes,EA082-9,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +109292,Ih9,EA082,?,EA082-NA,,,,,, +109293,Ii1,EA082,Two slopes,EA082-8,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +109294,Ii10,EA082,Two slopes,EA082-8,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +109295,Ii12,EA082,Two slopes,EA082-8,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109296,Ii13,EA082,Two slopes,EA082-8,,burrows1937,,1830,EthnographicAtlas_1967_p101, +109297,Ii14,EA082,Beehive shaped,EA082-3,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +109298,Ii2,EA082,Two slopes,EA082-8,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +109299,Ii3,EA082,Two slopes,EA082-8,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +109300,Ii4,EA082,Two slopes,EA082-8,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +109301,Ii5,EA082,Two slopes,EA082-8,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +109302,Ii6,EA082,Two slopes,EA082-8,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +109303,Ii7,EA082,Two slopes,EA082-8,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +109304,Ii8,EA082,Two slopes,EA082-8,,burrows1936,,1840,EthnographicAtlas_1967_p101, +109305,Ii9,EA082,Two slopes,EA082-8,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +109306,Ij1,EA082,Two slopes,EA082-8,,buck1934,,1820,EthnographicAtlas_1967_p101, +109307,Ij10,EA082,?,EA082-NA,,,,,, +109308,Ij2,EA082,Rounded or semi-cylindrical,EA082-1,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +109309,Ij3,EA082,Two slopes,EA082-8,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +109310,Ij4,EA082,Two slopes,EA082-8,,buck1932a,,1850,EthnographicAtlas_1967_p105, +109311,Ij5,EA082,Two slopes,EA082-8,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +109312,Ij6,EA082,Two slopes,EA082-8,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +109313,Ij7,EA082,Two slopes,EA082-8,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +109314,Ij8,EA082,Two slopes,EA082-8,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +109315,Ij9,EA082,Two slopes,EA082-8,,metraux1940,,1860,EthnographicAtlas_1967_p105, +109316,Na1,EA082,Hemispherical,EA082-2,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +109317,Na10,EA082,Flat,EA082-7,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +109318,Na11,EA082,Conical,EA082-4,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +109319,Na12,EA082,Semi-hemispherical,EA082-5,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +109320,Na13,EA082,Hemispherical,EA082-2,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +109321,Na14,EA082,Hemispherical,EA082-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +109322,Na15,EA082,Conical,EA082-4,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +109323,Na16,EA082,Conical,EA082-4,,osgood1931,,1860,EthnographicAtlas_1967_p105, +109324,Na17,EA082,Conical,EA082-4,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109325,Na19,EA082,Two slopes,EA082-8,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +109326,Na2,EA082,Hemispherical,EA082-2,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +109327,Na20,EA082,Hemispherical,EA082-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +109328,Na21,EA082,Hemispherical,EA082-2,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +109329,Na22,EA082,Hemispherical,EA082-2,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +109330,Na23,EA082,Hemispherical,EA082-2,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +109331,Na24,EA082,Two slopes,EA082-8,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +109332,Na25,EA082,Two slopes,EA082-8,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +109333,Na26,EA082,Two slopes,EA082-8,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +109334,Na27,EA082,Two slopes,EA082-8,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +109335,Na28,EA082,Conical,EA082-4,,jenness1937,,1880,EthnographicAtlas_1967_p105, +109336,Na29,EA082,Conical,EA082-4,,goddard1916,,1850,EthnographicAtlas_1967_p105, +109337,Na3,EA082,Hemispherical,EA082-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +109338,Na30,EA082,Conical,EA082-4,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +109339,Na31,EA082,Conical,EA082-4,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +109340,Na32,EA082,Conical,EA082-4,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +109341,Na33,EA082,Conical,EA082-4,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +109342,Na34,EA082,Two slopes,EA082-8,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +109343,Na35,EA082,Conical,EA082-4,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +109344,Na36,EA082,Hemispherical,EA082-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +109345,Na37,EA082,Conical,EA082-4,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +109346,Na38,EA082,Conical,EA082-4,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +109347,Na39,EA082,Two slopes,EA082-8,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +109348,Na4,EA082,Conical,EA082-4,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +109349,Na40,EA082,Rounded or semi-cylindrical,EA082-1,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +109350,Na41,EA082,Conical,EA082-4,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +109351,Na42,EA082,Hemispherical,EA082-2,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p105, +109352,Na43,EA082,Hemispherical,EA082-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +109353,Na44,EA082,Hemispherical,EA082-2,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +109354,Na45,EA082,?,EA082-NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +109355,Na5,EA082,Conical,EA082-4,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +109356,Na6,EA082,Four slopes,EA082-9,,lantis1946,,1930,EthnographicAtlas_1967_p105, +109357,Na7,EA082,Conical,EA082-4,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +109358,Na8,EA082,Hemispherical,EA082-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +109359,Na9,EA082,Semi-hemispherical,EA082-5,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109360,Nb1,EA082,Two slopes,EA082-8,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +109361,Nb10,EA082,Conical,EA082-4,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +109362,Nb11,EA082,Two slopes,EA082-8,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +109363,Nb12,EA082,One slope,EA082-6,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +109364,Nb13,EA082,One slope,EA082-6,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +109365,Nb14,EA082,Two slopes,EA082-8,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +109366,Nb15,EA082,Two slopes,EA082-8,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +109367,Nb16,EA082,Two slopes,EA082-8,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +109368,Nb17,EA082,Two slopes,EA082-8,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +109369,Nb18,EA082,Two slopes,EA082-8,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +109370,Nb19,EA082,Two slopes,EA082-8,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +109371,Nb2,EA082,Two slopes,EA082-8,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +109372,Nb20,EA082,Two slopes,EA082-8,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +109373,Nb21,EA082,Two slopes,EA082-8,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +109374,Nb22,EA082,Two slopes,EA082-8,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +109375,Nb23,EA082,Two slopes,EA082-8,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +109376,Nb24,EA082,One slope,EA082-6,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +109377,Nb25,EA082,Two slopes,EA082-8,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +109378,Nb26,EA082,One slope,EA082-6,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +109379,Nb27,EA082,Four slopes,EA082-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +109380,Nb28,EA082,Two slopes,EA082-8,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +109381,Nb29,EA082,Two slopes,EA082-8,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +109382,Nb3,EA082,Two slopes,EA082-8,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +109383,Nb30,EA082,Two slopes,EA082-8,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +109384,Nb31,EA082,Two slopes,EA082-8,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +109385,Nb32,EA082,Two slopes,EA082-8,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +109386,Nb33,EA082,Two slopes,EA082-8,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +109387,Nb34,EA082,Two slopes,EA082-8,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +109388,Nb35,EA082,Two slopes,EA082-8,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +109389,Nb36,EA082,Two slopes,EA082-8,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +109390,Nb37,EA082,Conical,EA082-4,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +109391,Nb38,EA082,Two slopes,EA082-8,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +109392,Nb39,EA082,Four slopes,EA082-9,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +109393,Nb4,EA082,Two slopes,EA082-8,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +109394,Nb5,EA082,Two slopes,EA082-8,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +109395,Nb6,EA082,Two slopes,EA082-8,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +109396,Nb7,EA082,Two slopes,EA082-8,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +109397,Nb8,EA082,Two slopes,EA082-8,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +109398,Nb9,EA082,Two slopes,EA082-8,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +109399,Nc1,EA082,Conical,EA082-4,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +109400,Nc10,EA082,Conical,EA082-4,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +109401,Nc11,EA082,Conical,EA082-4,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +109402,Nc12,EA082,Conical,EA082-4,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +109403,Nc13,EA082,Conical,EA082-4,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +109404,Nc14,EA082,Conical,EA082-4,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +109405,Nc15,EA082,Conical,EA082-4,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +109406,Nc16,EA082,Conical,EA082-4,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +109407,Nc17,EA082,Conical,EA082-4,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +109408,Nc18,EA082,Hemispherical,EA082-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +109409,Nc19,EA082,Hemispherical,EA082-2,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +109410,Nc2,EA082,Hemispherical,EA082-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +109411,Nc20,EA082,Hemispherical,EA082-2,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +109412,Nc21,EA082,Hemispherical,EA082-2,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +109413,Nc22,EA082,Hemispherical,EA082-2,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +109414,Nc23,EA082,Conical,EA082-4,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +109415,Nc24,EA082,Rounded or semi-cylindrical,EA082-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +109416,Nc25,EA082,Conical,EA082-4,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +109417,Nc26,EA082,Hemispherical,EA082-2,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +109418,Nc27,EA082,Hemispherical,EA082-2,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +109419,Nc28,EA082,Hemispherical,EA082-2,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +109420,Nc29,EA082,Hemispherical,EA082-2,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +109421,Nc3,EA082,Hemispherical,EA082-2,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +109422,Nc30,EA082,Conical,EA082-4,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +109423,Nc31,EA082,Two slopes,EA082-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +109424,Nc32,EA082,Conical,EA082-4,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +109425,Nc33,EA082,Conical,EA082-4,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +109426,Nc34,EA082,Two slopes,EA082-8,,meigs1939,,1880,EthnographicAtlas_1967_p109, +109427,Nc4,EA082,Four slopes,EA082-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +109428,Nc5,EA082,Hemispherical,EA082-2,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +109429,Nc6,EA082,Hemispherical,EA082-2,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +109430,Nc7,EA082,Conical,EA082-4,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +109431,Nc8,EA082,Four slopes,EA082-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +109432,Nc9,EA082,Four slopes,EA082-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +109433,Nd1,EA082,Four slopes,EA082-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +109434,Nd10,EA082,Four slopes,EA082-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +109435,Nd11,EA082,Four slopes,EA082-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +109436,Nd12,EA082,Two slopes,EA082-8,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +109437,Nd13,EA082,Two slopes,EA082-8,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +109438,Nd14,EA082,Conical,EA082-4,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +109439,Nd15,EA082,Conical,EA082-4,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +109440,Nd16,EA082,Conical,EA082-4,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +109441,Nd17,EA082,Conical,EA082-4,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +109442,Nd18,EA082,Hemispherical,EA082-2,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +109443,Nd19,EA082,Two slopes,EA082-8,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +109444,Nd2,EA082,Conical,EA082-4,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +109445,Nd20,EA082,Two slopes,EA082-8,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +109446,Nd21,EA082,Conical,EA082-4,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +109447,Nd22,EA082,Hemispherical,EA082-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +109448,Nd23,EA082,Hemispherical,EA082-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +109449,Nd24,EA082,Conical,EA082-4,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +109450,Nd25,EA082,Hemispherical,EA082-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +109451,Nd26,EA082,Hemispherical,EA082-2,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +109452,Nd27,EA082,Hemispherical,EA082-2,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +109453,Nd28,EA082,Hemispherical,EA082-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +109454,Nd29,EA082,Hemispherical,EA082-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +109455,Nd3,EA082,Hemispherical,EA082-2,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +109456,Nd30,EA082,Two slopes,EA082-8,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +109457,Nd31,EA082,Conical,EA082-4,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +109458,Nd32,EA082,Conical,EA082-4,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +109459,Nd33,EA082,Conical,EA082-4,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +109460,Nd34,EA082,Conical,EA082-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +109461,Nd35,EA082,Conical,EA082-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +109462,Nd36,EA082,Conical,EA082-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +109463,Nd37,EA082,Conical,EA082-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +109464,Nd38,EA082,Conical,EA082-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +109465,Nd39,EA082,Conical,EA082-4,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +109466,Nd4,EA082,Two slopes,EA082-8,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +109467,Nd40,EA082,Conical,EA082-4,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +109468,Nd41,EA082,Conical,EA082-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +109469,Nd42,EA082,Conical,EA082-4,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +109470,Nd43,EA082,Hemispherical,EA082-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +109471,Nd44,EA082,Hemispherical,EA082-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +109472,Nd45,EA082,Conical,EA082-4,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +109473,Nd46,EA082,Conical,EA082-4,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +109474,Nd47,EA082,Two slopes,EA082-8,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +109475,Nd48,EA082,?,EA082-NA,,,,,, +109476,Nd49,EA082,Two slopes,EA082-8,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +109477,Nd5,EA082,Conical,EA082-4,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +109478,Nd50,EA082,Conical,EA082-4,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +109479,Nd51,EA082,Conical,EA082-4,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +109480,Nd52,EA082,Conical,EA082-4,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +109481,Nd53,EA082,Conical,EA082-4,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +109482,Nd54,EA082,Four slopes,EA082-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109483,Nd55,EA082,Hemispherical,EA082-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +109484,Nd56,EA082,Two slopes,EA082-8,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +109485,Nd57,EA082,Hemispherical,EA082-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +109486,Nd58,EA082,Hemispherical,EA082-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +109487,Nd59,EA082,Hemispherical,EA082-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +109488,Nd6,EA082,Conical,EA082-4,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +109489,Nd60,EA082,Conical,EA082-4,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +109490,Nd61,EA082,Conical,EA082-4,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +109491,Nd62,EA082,Conical,EA082-4,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +109492,Nd63,EA082,Conical,EA082-4,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +109493,Nd64,EA082,Conical,EA082-4,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +109494,Nd65,EA082,Hemispherical,EA082-2,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +109495,Nd66,EA082,Hemispherical,EA082-2,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +109496,Nd67,EA082,Hemispherical,EA082-2,,gifford1936,,1870,EthnographicAtlas_1967_p113, +109497,Nd7,EA082,Two slopes,EA082-8,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +109498,Nd8,EA082,Two slopes,EA082-8,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +109499,Nd9,EA082,Four slopes,EA082-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +109500,Ne1,EA082,Conical,EA082-4,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +109501,Ne10,EA082,Hemispherical,EA082-2,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +109502,Ne11,EA082,Conical,EA082-4,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +109503,Ne12,EA082,Conical,EA082-4,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +109504,Ne13,EA082,Conical,EA082-4,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +109505,Ne14,EA082,Conical,EA082-4,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +109506,Ne15,EA082,Hemispherical,EA082-2,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +109507,Ne16,EA082,Hemispherical,EA082-2,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +109508,Ne17,EA082,Conical,EA082-4,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +109509,Ne18,EA082,Conical,EA082-4,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +109510,Ne19,EA082,Conical,EA082-4,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +109511,Ne2,EA082,Conical,EA082-4,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +109512,Ne20,EA082,Conical,EA082-4,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +109513,Ne21,EA082,?,EA082-NA,,,,,, +109514,Ne3,EA082,Conical,EA082-4,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +109515,Ne4,EA082,Conical,EA082-4,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +109516,Ne5,EA082,Conical,EA082-4,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +109517,Ne6,EA082,Hemispherical,EA082-2,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +109518,Ne7,EA082,Conical,EA082-4,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +109519,Ne8,EA082,Conical,EA082-4,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +109520,Ne9,EA082,Conical,EA082-4,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +109521,Nf10,EA082,Hemispherical,EA082-2,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +109522,Nf11,EA082,Hemispherical,EA082-2,,whitman1937,,1870,EthnographicAtlas_1967_p117, +109523,Nf12,EA082,Hemispherical,EA082-2,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +109524,Nf13,EA082,Hemispherical,EA082-2,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109525,Nf14,EA082,Beehive shaped,EA082-3,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +109526,Nf15,EA082,?,EA082-NA,,,,,, +109527,Nf2,EA082,Two slopes,EA082-8,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +109528,Nf3,EA082,Hemispherical,EA082-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +109529,Nf4,EA082,?,EA082-NA,,,,,, +109530,Nf5,EA082,Beehive shaped,EA082-3,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +109531,Nf6,EA082,Hemispherical,EA082-2,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +109532,Nf7,EA082,?,EA082-NA,,,,,, +109533,Nf8,EA082,Beehive shaped,EA082-3,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +109534,Nf9,EA082,?,EA082-NA,,,,,, +109535,Ng1,EA082,Rounded or semi-cylindrical,EA082-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +109536,Ng10,EA082,Rounded or semi-cylindrical,EA082-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +109537,Ng11,EA082,Two slopes,EA082-8,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +109538,Ng12,EA082,Conical,EA082-4,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +109539,Ng13,EA082,?,EA082-NA,,,,,, +109540,Ng14,EA082,?,EA082-NA,,,,,, +109541,Ng15,EA082,?,EA082-NA,,,,,, +109542,Ng2,EA082,Two slopes,EA082-8,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +109543,Ng3,EA082,Two slopes,EA082-8,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +109544,Ng4,EA082,?,EA082-NA,,,,,, +109545,Ng5,EA082,Two slopes,EA082-8,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +109546,Ng6,EA082,Hemispherical,EA082-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +109547,Ng7,EA082,Hemispherical,EA082-2,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +109548,Ng8,EA082,Conical,EA082-4,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +109549,Ng9,EA082,?,EA082-NA,,,,,, +109550,Nh1,EA082,Hemispherical,EA082-2,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +109551,Nh10,EA082,Flat,EA082-7,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +109552,Nh11,EA082,Flat,EA082-7,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +109553,Nh12,EA082,Flat,EA082-7,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +109554,Nh13,EA082,Flat,EA082-7,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +109555,Nh14,EA082,Flat,EA082-7,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +109556,Nh15,EA082,Hemispherical,EA082-2,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +109557,Nh16,EA082,Hemispherical,EA082-2,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109558,Nh17,EA082,Two slopes,EA082-8,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +109559,Nh18,EA082,Flat,EA082-7,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109560,Nh19,EA082,Rounded or semi-cylindrical,EA082-1,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +109561,Nh2,EA082,Flat,EA082-7,,dozier1954,,1950,EthnographicAtlas_1967_p117, +109562,Nh20,EA082,Hemispherical,EA082-2,,gifford1931,,1860,EthnographicAtlas_1967_p117, +109563,Nh21,EA082,Rounded or semi-cylindrical,EA082-1,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109564,Nh22,EA082,Hemispherical,EA082-2,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +109565,Nh23,EA082,Four slopes,EA082-9,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +109566,Nh24,EA082,Hemispherical,EA082-2,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +109567,Nh25,EA082,Flat,EA082-7,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +109568,Nh26,EA082,?,EA082-NA,,,,,, +109569,Nh27,EA082,?,EA082-NA,,,,,, +109570,Nh3,EA082,Hemispherical,EA082-2,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +109571,Nh4,EA082,Flat,EA082-7,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +109572,Nh5,EA082,Hemispherical,EA082-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +109573,Nh6,EA082,Flat,EA082-7,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +109574,Nh7,EA082,Flat,EA082-7,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +109575,Nh8,EA082,Flat,EA082-7,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +109576,Nh9,EA082,Flat,EA082-7,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +109577,Ni1,EA082,Four slopes,EA082-9,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +109578,Ni2,EA082,?,EA082-NA,,,,,, +109579,Ni3,EA082,Four slopes,EA082-9,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +109580,Ni4,EA082,Rounded or semi-cylindrical,EA082-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +109581,Ni5,EA082,Two slopes,EA082-8,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +109582,Ni6,EA082,Hemispherical,EA082-2,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +109583,Ni7,EA082,Two slopes,EA082-8,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +109584,Ni8,EA082,?,EA082-NA,,,,,, +109585,Ni9,EA082,?,EA082-NA,,,,,, +109586,Nj1,EA082,Two slopes,EA082-8,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109587,Nj10,EA082,Two slopes,EA082-8,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109588,Nj11,EA082,?,EA082-NA,,,,,, +109589,Nj12,EA082,?,EA082-NA,,,,,, +109590,Nj13,EA082,?,EA082-NA,,,,,, +109591,Nj14,EA082,?,EA082-NA,,,,,, +109592,Nj2,EA082,Flat,EA082-7,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +109593,Nj3,EA082,Four slopes,EA082-9,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +109594,Nj4,EA082,Four slopes,EA082-9,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p121, +109595,Nj5,EA082,?,EA082-NA,,,,,, +109596,Nj6,EA082,Two slopes,EA082-8,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +109597,Nj7,EA082,Four slopes,EA082-9,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109598,Nj8,EA082,Four slopes,EA082-9,,foster1948,,1500,EthnographicAtlas_1967_p121, +109599,Nj9,EA082,Two slopes,EA082-8,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +109600,Sa1,EA082,Two slopes,EA082-8,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +109601,Sa10,EA082,Two slopes,EA082-8,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +109602,Sa11,EA082,?,EA082-NA,,,,,, +109603,Sa12,EA082,Four slopes,EA082-9,,stone1948,,1948,EthnographicAtlas_1967_p121, +109604,Sa13,EA082,Two slopes,EA082-8,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +109605,Sa14,EA082,?,EA082-NA,,,,,, +109606,Sa15,EA082,?,EA082-NA,,,,,, +109607,Sa16,EA082,?,EA082-NA,,,,,, +109608,Sa17,EA082,?,EA082-NA,,,,,, +109609,Sa2,EA082,?,EA082-NA,,,,,, +109610,Sa3,EA082,Two slopes,EA082-8,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +109611,Sa4,EA082,Conical,EA082-4,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +109612,Sa5,EA082,Conical,EA082-4,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +109613,Sa6,EA082,Two slopes,EA082-8,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +109614,Sa7,EA082,Two slopes,EA082-8,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +109615,Sa8,EA082,Two slopes,EA082-8,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +109616,Sa9,EA082,Two slopes,EA082-8,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +109617,Sb1,EA082,Two slopes,EA082-8,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +109618,Sb2,EA082,Conical,EA082-4,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +109619,Sb3,EA082,?,EA082-NA,,,,,, +109620,Sb4,EA082,Two slopes,EA082-8,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +109621,Sb5,EA082,Two slopes,EA082-8,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +109622,Sb6,EA082,Two slopes,EA082-8,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +109623,Sb7,EA082,?,EA082-NA,,,,,, +109624,Sb8,EA082,Conical,EA082-4,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +109625,Sb9,EA082,Two slopes,EA082-8,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +109626,Sc1,EA082,Two slopes,EA082-8,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +109627,Sc10,EA082,?,EA082-NA,,,,,, +109628,Sc11,EA082,Conical,EA082-4,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p121, +109629,Sc12,EA082,Four slopes,EA082-9,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +109630,Sc13,EA082,Beehive shaped,EA082-3,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +109631,Sc14,EA082,?,EA082-NA,,,,,, +109632,Sc15,EA082,Conical,EA082-4,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +109633,Sc16,EA082,Conical,EA082-4,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +109634,Sc17,EA082,Four slopes,EA082-9,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +109635,Sc18,EA082,Two slopes,EA082-8,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +109636,Sc2,EA082,Hemispherical,EA082-2,,leedsnd,,1950,EthnographicAtlas_1967_p121, +109637,Sc3,EA082,Two slopes,EA082-8,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +109638,Sc4,EA082,Two slopes,EA082-8,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +109639,Sc5,EA082,Four slopes,EA082-9,,farabee1918,,1900,EthnographicAtlas_1967_p121, +109640,Sc6,EA082,Two slopes,EA082-8,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109641,Sc7,EA082,Two slopes,EA082-8,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +109642,Sc8,EA082,Beehive shaped,EA082-3,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +109643,Sc9,EA082,?,EA082-NA,,,,,, +109644,Sd1,EA082,Two slopes,EA082-8,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109645,Sd2,EA082,Rounded or semi-cylindrical,EA082-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +109646,Sd3,EA082,?,EA082-NA,,,,,, +109647,Sd4,EA082,One slope,EA082-6,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +109648,Sd5,EA082,Two slopes,EA082-8,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +109649,Sd6,EA082,One slope,EA082-6,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +109650,Sd7,EA082,Conical,EA082-4,,fock1963,,1950,EthnographicAtlas_1967_p121, +109651,Sd8,EA082,Four slopes,EA082-9,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +109652,Sd9,EA082,Conical,EA082-4,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109653,Se1,EA082,Four slopes,EA082-9,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +109654,Se10,EA082,Two slopes,EA082-8,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +109655,Se11,EA082,Two slopes,EA082-8,,prost1965,,1960,EthnographicAtlas_1967_p125, +109656,Se12,EA082,?,EA082-NA,,,,,, +109657,Se2,EA082,Four slopes,EA082-9,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +109658,Se3,EA082,Four slopes,EA082-9,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +109659,Se4,EA082,Four slopes,EA082-9,,fejos1943,,1940,EthnographicAtlas_1967_p121, +109660,Se5,EA082,Two slopes,EA082-8,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +109661,Se6,EA082,Two slopes,EA082-8,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +109662,Se7,EA082,Two slopes,EA082-8,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109663,Se8,EA082,Two slopes,EA082-8,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +109664,Se9,EA082,Four slopes,EA082-9,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +109665,Sf1,EA082,Two slopes,EA082-8,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +109666,Sf2,EA082,Two slopes,EA082-8,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +109667,Sf3,EA082,Four slopes,EA082-9,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +109668,Sf4,EA082,Conical,EA082-4,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +109669,Sf5,EA082,Four slopes,EA082-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +109670,Sf6,EA082,Two slopes,EA082-8,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +109671,Sf7,EA082,?,EA082-NA,,,,,, +109672,Sf8,EA082,?,EA082-NA,,,,,, +109673,Sf9,EA082,?,EA082-NA,,,,,, +109674,Sg1,EA082,Hemispherical,EA082-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +109675,Sg2,EA082,Four slopes,EA082-9,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109676,Sg3,EA082,Semi-hemispherical,EA082-5,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +109677,Sg4,EA082,Semi-hemispherical,EA082-5,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +109678,Sg5,EA082,Hemispherical,EA082-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109679,Sh1,EA082,Beehive shaped,EA082-3,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +109680,Sh2,EA082,Rounded or semi-cylindrical,EA082-1,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +109681,Sh3,EA082,One slope,EA082-6,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +109682,Sh4,EA082,Two slopes,EA082-8,,oberg1949,,1940,EthnographicAtlas_1967_p125, +109683,Sh5,EA082,Conical,EA082-4,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +109684,Sh6,EA082,One slope,EA082-6,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +109685,Sh7,EA082,Two slopes,EA082-8,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +109686,Sh8,EA082,Two slopes,EA082-8,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +109687,Sh9,EA082,?,EA082-NA,,,,,, +109688,Si1,EA082,Two slopes,EA082-8,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109689,Si10,EA082,Rounded or semi-cylindrical,EA082-1,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +109690,Si2,EA082,Two slopes,EA082-8,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +109691,Si3,EA082,Four slopes,EA082-9,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109692,Si4,EA082,Beehive shaped,EA082-3,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +109693,Si5,EA082,Four slopes,EA082-9,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +109694,Si6,EA082,Two slopes,EA082-8,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +109695,Si7,EA082,Rounded or semi-cylindrical,EA082-1,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +109696,Si8,EA082,Two slopes,EA082-8,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +109697,Si9,EA082,?,EA082-NA,,,,,, +109698,Sj1,EA082,Four slopes,EA082-9,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +109699,Sj10,EA082,Two slopes,EA082-8,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109700,Sj11,EA082,Beehive shaped,EA082-3,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +109701,Sj2,EA082,Two slopes,EA082-8,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +109702,Sj3,EA082,Rounded or semi-cylindrical,EA082-1,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +109703,Sj4,EA082,Four slopes,EA082-9,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +109704,Sj5,EA082,Hemispherical,EA082-2,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +109705,Sj6,EA082,Four slopes,EA082-9,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109706,Sj7,EA082,Two slopes,EA082-8,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +109707,Sj8,EA082,Rounded or semi-cylindrical,EA082-1,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +109708,Sj9,EA082,Rounded or semi-cylindrical,EA082-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +109709,ch12,EA082,Two slopes,EA082-8,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +109710,ch13,EA082,Two slopes,EA082-8,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +109711,ch14,EA082,Two slopes,EA082-8,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +109712,ch15,EA082,Two slopes,EA082-8,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +109713,ch16,EA082,Four slopes,EA082-9,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +109714,ch17,EA082,Four slopes,EA082-9,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +109715,ch18,EA082,Two slopes,EA082-8,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +109716,ch19,EA082,Two slopes,EA082-8,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +109717,ch20,EA082,Two slopes,EA082-8,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +109718,ch21,EA082,Two slopes,EA082-8,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +109719,ch22,EA082,Two slopes,EA082-8,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +109720,ch23,EA082,Two slopes,EA082-8,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +109721,ch24,EA082,Two slopes,EA082-8,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +109722,ch25,EA082,Four slopes,EA082-9,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +109723,ch26,EA082,Two slopes,EA082-8,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +109724,ch27,EA082,Two slopes,EA082-8,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +109725,ch28,EA082,Two slopes,EA082-8,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +109726,ec12,EA082,Conical,EA082-4,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +109727,ec13,EA082,Two slopes,EA082-8,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +109728,ec14,EA082,Hemispherical,EA082-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +109729,ec15,EA082,Two slopes,EA082-8,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +109730,ec16,EA082,Conical,EA082-4,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +109731,ec17,EA082,Two slopes,EA082-8,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +109732,ec18,EA082,Two slopes,EA082-8,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +109733,ec19,EA082,Conical,EA082-4,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +109734,ec20,EA082,Two slopes,EA082-8,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +109735,ec21,EA082,Two slopes,EA082-8,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +109736,Aa1,EA083,"Grass, leaves or thatch",EA083-8,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +109737,Aa2,EA083,"Grass, leaves or thatch",EA083-8,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p65, +109738,Aa3,EA083,Mats,EA083-7,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p65, +109739,Aa4,EA083,"Grass, leaves or thatch",EA083-8,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol2_No1_Jan_1963, +109740,Aa5,EA083,"Grass, leaves or thatch",EA083-8,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p65, +109741,Aa6,EA083,"Grass, leaves or thatch",EA083-8,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +109742,Aa7,EA083,"Grass, leaves or thatch",EA083-8,,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p65, +109743,Aa8,EA083,Mats,EA083-7,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +109744,Aa9,EA083,"Grass, leaves or thatch",EA083-8,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p65, +109745,Ab1,EA083,"Plaster, clay or similar",EA083-2,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p65, +109746,Ab10,EA083,"Grass, leaves or thatch",EA083-8,,hunter1936,,1936,EthnographicAtlas_1967_p65, +109747,Ab11,EA083,"Grass, leaves or thatch",EA083-8,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +109748,Ab12,EA083,"Grass, leaves or thatch",EA083-8,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p65, +109749,Ab13,EA083,"Grass, leaves or thatch",EA083-8,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p65, +109750,Ab14,EA083,"Grass, leaves or thatch",EA083-8,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p65, +109751,Ab15,EA083,"Grass, leaves or thatch",EA083-8,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No3_Jul_1963, +109752,Ab16,EA083,"Grass, leaves or thatch",EA083-8,,earthy1933,,1930,EthnographicAtlas_1967_p65, +109753,Ab17,EA083,"Grass, leaves or thatch",EA083-8,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No3_Jul_1963, +109754,Ab18,EA083,"Grass, leaves or thatch",EA083-8,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p65, +109755,Ab19,EA083,"Grass, leaves or thatch",EA083-8,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p65, +109756,Ab2,EA083,"Grass, leaves or thatch",EA083-8,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +109757,Ab20,EA083,"Grass, leaves or thatch",EA083-8,,wunenberger1888,,1880,Ethnology_Vol2_No3_Jul_1963, +109758,Ab21a,EA083,"Grass, leaves or thatch",EA083-8,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +109759,Ab21b,EA083,?,EA083-NA,,,,,, +109760,Ab22,EA083,?,EA083-NA,,,,,, +109761,Ab3,EA083,"Grass, leaves or thatch",EA083-8,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +109762,Ab4,EA083,"Grass, leaves or thatch",EA083-8,,junod1927,,1920,EthnographicAtlas_1967_p65, +109763,Ab5,EA083,"Grass, leaves or thatch",EA083-8,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p65, +109764,Ab6,EA083,"Grass, leaves or thatch",EA083-8,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p65, +109765,Ab7,EA083,"Grass, leaves or thatch",EA083-8,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p65, +109766,Ab8,EA083,"Grass, leaves or thatch",EA083-8,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p65, +109767,Ab9,EA083,"Grass, leaves or thatch",EA083-8,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +109768,Ac1,EA083,"Grass, leaves or thatch",EA083-8,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p65, +109769,Ac10,EA083,"Grass, leaves or thatch",EA083-8,,bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p65, +109770,Ac11,EA083,"Grass, leaves or thatch",EA083-8,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +109771,Ac12,EA083,"Grass, leaves or thatch",EA083-8,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p65, +109772,Ac13,EA083,"Grass, leaves or thatch",EA083-8,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p65, +109773,Ac14,EA083,"Grass, leaves or thatch",EA083-8,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +109774,Ac15,EA083,?,EA083-NA,,,,,, +109775,Ac16,EA083,"Grass, leaves or thatch",EA083-8,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +109776,Ac17,EA083,"Grass, leaves or thatch",EA083-8,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p65, +109777,Ac18,EA083,"Grass, leaves or thatch",EA083-8,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p65, +109778,Ac19,EA083,"Grass, leaves or thatch",EA083-8,,badier1929;descazes1885;guiral1886;trezenem1940,,1880,Ethnology_Vol5_No1_Jan_1966, +109779,Ac2,EA083,"Grass, leaves or thatch",EA083-8,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p65, +109780,Ac20,EA083,"Grass, leaves or thatch",EA083-8,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +109781,Ac21,EA083,"Grass, leaves or thatch",EA083-8,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p65, +109782,Ac22,EA083,"Grass, leaves or thatch",EA083-8,,mertens1935,,1930,EthnographicAtlas_1967_p65, +109783,Ac23,EA083,"Grass, leaves or thatch",EA083-8,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p65, +109784,Ac24,EA083,"Grass, leaves or thatch",EA083-8,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +109785,Ac25,EA083,"Grass, leaves or thatch",EA083-8,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p65, +109786,Ac26,EA083,"Grass, leaves or thatch",EA083-8,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +109787,Ac27,EA083,"Grass, leaves or thatch",EA083-8,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +109788,Ac28,EA083,"Grass, leaves or thatch",EA083-8,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p65, +109789,Ac29,EA083,?,EA083-NA,,,,,, +109790,Ac3,EA083,"Grass, leaves or thatch",EA083-8,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p65, +109791,Ac30,EA083,"Grass, leaves or thatch",EA083-8,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p65, +109792,Ac31,EA083,"Grass, leaves or thatch",EA083-8,,colle1913,,1910,Ethnology_Vol5_No1_Jan_1966, +109793,Ac32,EA083,"Grass, leaves or thatch",EA083-8,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +109794,Ac33,EA083,"Grass, leaves or thatch",EA083-8,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p65, +109795,Ac34,EA083,"Grass, leaves or thatch",EA083-8,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p65, +109796,Ac35,EA083,?,EA083-NA,,,,,, +109797,Ac36,EA083,"Grass, leaves or thatch",EA083-8,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p65, +109798,Ac37,EA083,"Grass, leaves or thatch",EA083-8,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +109799,Ac38,EA083,"Grass, leaves or thatch",EA083-8,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p65, +109800,Ac39,EA083,"Grass, leaves or thatch",EA083-8,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +109801,Ac4,EA083,"Grass, leaves or thatch",EA083-8,,tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p65, +109802,Ac40,EA083,"Grass, leaves or thatch",EA083-8,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +109803,Ac41,EA083,"Grass, leaves or thatch",EA083-8,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +109804,Ac42,EA083,"Grass, leaves or thatch",EA083-8,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +109805,Ac43,EA083,?,EA083-NA,,,,,, +109806,Ac5,EA083,"Grass, leaves or thatch",EA083-8,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p65, +109807,Ac6,EA083,"Grass, leaves or thatch",EA083-8,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p65, +109808,Ac7,EA083,"Grass, leaves or thatch",EA083-8,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +109809,Ac8,EA083,"Grass, leaves or thatch",EA083-8,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p65, +109810,Ac9,EA083,"Grass, leaves or thatch",EA083-8,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p65, +109811,Ad1,EA083,"Grass, leaves or thatch",EA083-8,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +109812,Ad10,EA083,"Grass, leaves or thatch",EA083-8,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +109813,Ad11,EA083,"Grass, leaves or thatch",EA083-8,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +109814,Ad12,EA083,"Grass, leaves or thatch",EA083-8,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +109815,Ad13,EA083,"Grass, leaves or thatch",EA083-8,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +109816,Ad14,EA083,"Grass, leaves or thatch",EA083-8,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +109817,Ad15,EA083,"Grass, leaves or thatch",EA083-8,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +109818,Ad16,EA083,"Grass, leaves or thatch",EA083-8,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p69, +109819,Ad17,EA083,"Grass, leaves or thatch",EA083-8,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p69, +109820,Ad18,EA083,"Grass, leaves or thatch",EA083-8,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +109821,Ad19,EA083,"Grass, leaves or thatch",EA083-8,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +109822,Ad2,EA083,"Grass, leaves or thatch",EA083-8,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p65, +109823,Ad20,EA083,"Grass, leaves or thatch",EA083-8,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +109824,Ad21,EA083,"Grass, leaves or thatch",EA083-8,,maurice193538,,1930,EthnographicAtlas_1967_p69, +109825,Ad22,EA083,"Grass, leaves or thatch",EA083-8,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p69, +109826,Ad23,EA083,Earth or turf,EA083-9,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +109827,Ad24,EA083,Earth or turf,EA083-9,,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p69, +109828,Ad25,EA083,Earth or turf,EA083-9,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +109829,Ad26,EA083,Earth or turf,EA083-9,,sick1916,,1910,EthnographicAtlas_1967_p69, +109830,Ad27,EA083,"Grass, leaves or thatch",EA083-8,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +109831,Ad28,EA083,"Grass, leaves or thatch",EA083-8,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +109832,Ad29,EA083,"Grass, leaves or thatch",EA083-8,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p69, +109833,Ad3,EA083,"Grass, leaves or thatch",EA083-8,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p65, +109834,Ad30,EA083,"Grass, leaves or thatch",EA083-8,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p69, +109835,Ad31,EA083,Mats,EA083-7,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +109836,Ad32,EA083,"Grass, leaves or thatch",EA083-8,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p69, +109837,Ad33,EA083,"Grass, leaves or thatch",EA083-8,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p69, +109838,Ad34,EA083,"Grass, leaves or thatch",EA083-8,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +109839,Ad35,EA083,"Grass, leaves or thatch",EA083-8,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p69, +109840,Ad36,EA083,"Grass, leaves or thatch",EA083-8,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +109841,Ad37,EA083,"Grass, leaves or thatch",EA083-8,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +109842,Ad38,EA083,"Grass, leaves or thatch",EA083-8,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +109843,Ad39,EA083,"Grass, leaves or thatch",EA083-8,,gray1963,,1950,EthnographicAtlas_1967_p69, +109844,Ad4,EA083,Earth or turf,EA083-9,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +109845,Ad40,EA083,"Grass, leaves or thatch",EA083-8,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +109846,Ad41,EA083,"Grass, leaves or thatch",EA083-8,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p69, +109847,Ad42,EA083,"Grass, leaves or thatch",EA083-8,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p69, +109848,Ad43,EA083,"Grass, leaves or thatch",EA083-8,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +109849,Ad44,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p69, +109850,Ad45,EA083,"Grass, leaves or thatch",EA083-8,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p69, +109851,Ad46,EA083,"Grass, leaves or thatch",EA083-8,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +109852,Ad47,EA083,"Grass, leaves or thatch",EA083-8,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +109853,Ad48,EA083,"Grass, leaves or thatch",EA083-8,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +109854,Ad49,EA083,"Grass, leaves or thatch",EA083-8,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +109855,Ad5,EA083,Earth or turf,EA083-9,,graynd,,1940,Ethnology_Vol2_No1_Jan_1963, +109856,Ad50,EA083,Earth or turf,EA083-9,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +109857,Ad51,EA083,"Grass, leaves or thatch",EA083-8,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +109858,Ad6,EA083,"Grass, leaves or thatch",EA083-8,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +109859,Ad7,EA083,"Grass, leaves or thatch",EA083-8,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p65, +109860,Ad8,EA083,Earth or turf,EA083-9,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p69, +109861,Ad9,EA083,"Grass, leaves or thatch",EA083-8,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p69, +109862,Ae1,EA083,"Grass, leaves or thatch",EA083-8,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +109863,Ae10,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,EthnographicAtlas_1967_p69, +109864,Ae11,EA083,"Grass, leaves or thatch",EA083-8,,delhaise1909a,,1900,EthnographicAtlas_1967_p69, +109865,Ae12,EA083,Mats,EA083-7,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p69, +109866,Ae13,EA083,"Grass, leaves or thatch",EA083-8,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +109867,Ae14,EA083,"Grass, leaves or thatch",EA083-8,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p69, +109868,Ae15,EA083,"Grass, leaves or thatch",EA083-8,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p69, +109869,Ae16,EA083,"Grass, leaves or thatch",EA083-8,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +109870,Ae17,EA083,"Grass, leaves or thatch",EA083-8,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p69, +109871,Ae18,EA083,"Grass, leaves or thatch",EA083-8,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +109872,Ae19,EA083,"Grass, leaves or thatch",EA083-8,,grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +109873,Ae2,EA083,"Grass, leaves or thatch",EA083-8,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p69, +109874,Ae20,EA083,"Grass, leaves or thatch",EA083-8,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +109875,Ae21,EA083,"Grass, leaves or thatch",EA083-8,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +109876,Ae22,EA083,"Grass, leaves or thatch",EA083-8,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p69, +109877,Ae23,EA083,"Grass, leaves or thatch",EA083-8,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +109878,Ae24,EA083,"Grass, leaves or thatch",EA083-8,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +109879,Ae25,EA083,"Grass, leaves or thatch",EA083-8,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +109880,Ae26,EA083,"Grass, leaves or thatch",EA083-8,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +109881,Ae27,EA083,"Grass, leaves or thatch",EA083-8,,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +109882,Ae28,EA083,"Grass, leaves or thatch",EA083-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +109883,Ae29,EA083,"Grass, leaves or thatch",EA083-8,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p69, +109884,Ae3,EA083,"Grass, leaves or thatch",EA083-8,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p69, +109885,Ae30,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +109886,Ae31,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +109887,Ae32,EA083,"Grass, leaves or thatch",EA083-8,,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +109888,Ae33,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +109889,Ae34,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +109890,Ae35,EA083,"Grass, leaves or thatch",EA083-8,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +109891,Ae36,EA083,"Grass, leaves or thatch",EA083-8,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +109892,Ae37,EA083,"Grass, leaves or thatch",EA083-8,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +109893,Ae38,EA083,?,EA083-NA,,,,,, +109894,Ae39,EA083,"Grass, leaves or thatch",EA083-8,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p69, +109895,Ae4,EA083,"Grass, leaves or thatch",EA083-8,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p69, +109896,Ae40,EA083,Mats,EA083-7,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +109897,Ae41,EA083,"Grass, leaves or thatch",EA083-8,,andersson1953,,1940,EthnographicAtlas_1967_p69, +109898,Ae42,EA083,Mats,EA083-7,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +109899,Ae43,EA083,Mats,EA083-7,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +109900,Ae44,EA083,"Grass, leaves or thatch",EA083-8,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +109901,Ae45,EA083,Mats,EA083-7,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +109902,Ae46,EA083,"Grass, leaves or thatch",EA083-8,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +109903,Ae47,EA083,"Grass, leaves or thatch",EA083-8,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +109904,Ae48,EA083,"Grass, leaves or thatch",EA083-8,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +109905,Ae49,EA083,"Grass, leaves or thatch",EA083-8,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +109906,Ae5,EA083,"Grass, leaves or thatch",EA083-8,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p69, +109907,Ae50,EA083,"Grass, leaves or thatch",EA083-8,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +109908,Ae51,EA083,Mats,EA083-7,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p69, +109909,Ae52,EA083,"Grass, leaves or thatch",EA083-8,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +109910,Ae53,EA083,"Grass, leaves or thatch",EA083-8,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +109911,Ae54,EA083,"Grass, leaves or thatch",EA083-8,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +109912,Ae55,EA083,"Grass, leaves or thatch",EA083-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +109913,Ae56,EA083,"Grass, leaves or thatch",EA083-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +109914,Ae57,EA083,"Grass, leaves or thatch",EA083-8,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +109915,Ae58,EA083,"Grass, leaves or thatch",EA083-8,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +109916,Ae59,EA083,Mats,EA083-7,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +109917,Ae6,EA083,"Grass, leaves or thatch",EA083-8,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p69, +109918,Ae7,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +109919,Ae8,EA083,"Grass, leaves or thatch",EA083-8,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p69, +109920,Ae9,EA083,"Grass, leaves or thatch",EA083-8,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p69, +109921,Af1,EA083,"Grass, leaves or thatch",EA083-8,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p69, +109922,Af10,EA083,"Grass, leaves or thatch",EA083-8,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p73, +109923,Af11,EA083,"Grass, leaves or thatch",EA083-8,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p73, +109924,Af12,EA083,"Grass, leaves or thatch",EA083-8,,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No3_Jul_1965, +109925,Af13,EA083,"Grass, leaves or thatch",EA083-8,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +109926,Af14,EA083,"Grass, leaves or thatch",EA083-8,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +109927,Af15,EA083,"Grass, leaves or thatch",EA083-8,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +109928,Af16,EA083,"Grass, leaves or thatch",EA083-8,,ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +109929,Af17,EA083,"Grass, leaves or thatch",EA083-8,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +109930,Af18,EA083,"Grass, leaves or thatch",EA083-8,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +109931,Af19,EA083,"Grass, leaves or thatch",EA083-8,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p73, +109932,Af2,EA083,"Grass, leaves or thatch",EA083-8,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p69, +109933,Af20,EA083,"Grass, leaves or thatch",EA083-8,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p73, +109934,Af21,EA083,"Grass, leaves or thatch",EA083-8,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +109935,Af22,EA083,"Grass, leaves or thatch",EA083-8,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p73, +109936,Af23,EA083,"Grass, leaves or thatch",EA083-8,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p73, +109937,Af24,EA083,"Grass, leaves or thatch",EA083-8,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p73, +109938,Af25,EA083,"Grass, leaves or thatch",EA083-8,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p73, +109939,Af26,EA083,"Grass, leaves or thatch",EA083-8,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +109940,Af27,EA083,?,EA083-NA,,,,,, +109941,Af28,EA083,"Grass, leaves or thatch",EA083-8,,gunnandconant1960,,1910,EthnographicAtlas_1967_p73, +109942,Af29,EA083,"Grass, leaves or thatch",EA083-8,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +109943,Af3,EA083,"Grass, leaves or thatch",EA083-8,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p69, +109944,Af30,EA083,"Grass, leaves or thatch",EA083-8,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +109945,Af31,EA083,"Grass, leaves or thatch",EA083-8,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +109946,Af32,EA083,"Grass, leaves or thatch",EA083-8,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109947,Af33,EA083,"Grass, leaves or thatch",EA083-8,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109948,Af34,EA083,"Grass, leaves or thatch",EA083-8,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +109949,Af35,EA083,?,EA083-NA,,,,,, +109950,Af36,EA083,"Grass, leaves or thatch",EA083-8,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p73, +109951,Af37,EA083,Earth or turf,EA083-9,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +109952,Af38,EA083,"Grass, leaves or thatch",EA083-8,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +109953,Af39,EA083,"Grass, leaves or thatch",EA083-8,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +109954,Af4,EA083,"Grass, leaves or thatch",EA083-8,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p73, +109955,Af40,EA083,"Grass, leaves or thatch",EA083-8,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +109956,Af41,EA083,"Grass, leaves or thatch",EA083-8,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +109957,Af42,EA083,"Grass, leaves or thatch",EA083-8,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p73, +109958,Af43,EA083,"Grass, leaves or thatch",EA083-8,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p73, +109959,Af44,EA083,?,EA083-NA,,,,,, +109960,Af45,EA083,"Grass, leaves or thatch",EA083-8,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +109961,Af46,EA083,"Plaster, clay or similar",EA083-2,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +109962,Af47,EA083,"Grass, leaves or thatch",EA083-8,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +109963,Af48,EA083,"Grass, leaves or thatch",EA083-8,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +109964,Af49,EA083,Mats,EA083-7,,schwab1947,,1940,EthnographicAtlas_1967_p73, +109965,Af5,EA083,"Grass, leaves or thatch",EA083-8,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +109966,Af50,EA083,"Grass, leaves or thatch",EA083-8,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +109967,Af51,EA083,"Grass, leaves or thatch",EA083-8,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +109968,Af52,EA083,"Grass, leaves or thatch",EA083-8,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +109969,Af53,EA083,"Grass, leaves or thatch",EA083-8,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +109970,Af54,EA083,"Grass, leaves or thatch",EA083-8,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p73, +109971,Af55,EA083,?,EA083-NA,,,,,, +109972,Af56,EA083,"Grass, leaves or thatch",EA083-8,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p73, +109973,Af57,EA083,"Grass, leaves or thatch",EA083-8,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p73, +109974,Af58,EA083,"Grass, leaves or thatch",EA083-8,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +109975,Af6,EA083,"Grass, leaves or thatch",EA083-8,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p73, +109976,Af7,EA083,"Grass, leaves or thatch",EA083-8,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p73, +109977,Af8,EA083,"Grass, leaves or thatch",EA083-8,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p73, +109978,Af9,EA083,"Grass, leaves or thatch",EA083-8,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p73, +109979,Ag1,EA083,Earth or turf,EA083-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +109980,Ag10,EA083,"Grass, leaves or thatch",EA083-8,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p73, +109981,Ag11,EA083,Earth or turf,EA083-9,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p73, +109982,Ag12,EA083,"Grass, leaves or thatch",EA083-8,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +109983,Ag13,EA083,"Plaster, clay or similar",EA083-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +109984,Ag14,EA083,"Grass, leaves or thatch",EA083-8,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +109985,Ag15,EA083,"Grass, leaves or thatch",EA083-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +109986,Ag16,EA083,"Grass, leaves or thatch",EA083-8,,bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p73, +109987,Ag17,EA083,"Grass, leaves or thatch",EA083-8,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +109988,Ag18,EA083,"Grass, leaves or thatch",EA083-8,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p73, +109989,Ag19,EA083,"Grass, leaves or thatch",EA083-8,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p73, +109990,Ag2,EA083,"Grass, leaves or thatch",EA083-8,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p73, +109991,Ag20,EA083,"Grass, leaves or thatch",EA083-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +109992,Ag21,EA083,"Grass, leaves or thatch",EA083-8,,lestrange1950,,1910,EthnographicAtlas_1967_p73, +109993,Ag22,EA083,"Grass, leaves or thatch",EA083-8,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p73, +109994,Ag23,EA083,"Grass, leaves or thatch",EA083-8,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +109995,Ag24,EA083,"Grass, leaves or thatch",EA083-8,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +109996,Ag25,EA083,Earth or turf,EA083-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +109997,Ag26,EA083,"Grass, leaves or thatch",EA083-8,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +109998,Ag27,EA083,Earth or turf,EA083-9,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p73, +109999,Ag28,EA083,Earth or turf,EA083-9,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +110000,Ag29,EA083,Earth or turf,EA083-9,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +110001,Ag3,EA083,Earth or turf,EA083-9,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p73, +110002,Ag30,EA083,Earth or turf,EA083-9,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p73, +110003,Ag31,EA083,Earth or turf,EA083-9,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p73, +110004,Ag32,EA083,"Grass, leaves or thatch",EA083-8,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +110005,Ag33,EA083,Earth or turf,EA083-9,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +110006,Ag34,EA083,Earth or turf,EA083-9,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +110007,Ag35,EA083,"Grass, leaves or thatch",EA083-8,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +110008,Ag36,EA083,Earth or turf,EA083-9,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +110009,Ag37,EA083,Earth or turf,EA083-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +110010,Ag38,EA083,?,EA083-NA,,,,,, +110011,Ag39,EA083,Earth or turf,EA083-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +110012,Ag4,EA083,"Grass, leaves or thatch",EA083-8,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +110013,Ag40,EA083,Earth or turf,EA083-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +110014,Ag41,EA083,"Grass, leaves or thatch",EA083-8,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p73, +110015,Ag42,EA083,Earth or turf,EA083-9,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +110016,Ag43,EA083,Earth or turf,EA083-9,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +110017,Ag44,EA083,"Grass, leaves or thatch",EA083-8,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +110018,Ag45,EA083,"Grass, leaves or thatch",EA083-8,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +110019,Ag46,EA083,"Grass, leaves or thatch",EA083-8,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +110020,Ag47,EA083,"Grass, leaves or thatch",EA083-8,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p77, +110021,Ag48,EA083,"Grass, leaves or thatch",EA083-8,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p77, +110022,Ag49,EA083,"Grass, leaves or thatch",EA083-8,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p77, +110023,Ag5,EA083,Earth or turf,EA083-9,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p73, +110024,Ag50,EA083,"Grass, leaves or thatch",EA083-8,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +110025,Ag51,EA083,"Grass, leaves or thatch",EA083-8,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +110026,Ag52,EA083,"Grass, leaves or thatch",EA083-8,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +110027,Ag53,EA083,"Grass, leaves or thatch",EA083-8,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +110028,Ag54,EA083,"Grass, leaves or thatch",EA083-8,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +110029,Ag6,EA083,"Grass, leaves or thatch",EA083-8,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +110030,Ag7,EA083,Earth or turf,EA083-9,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +110031,Ag8,EA083,"Grass, leaves or thatch",EA083-8,,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p73, +110032,Ag9,EA083,"Grass, leaves or thatch",EA083-8,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p73, +110033,Ah1,EA083,"Grass, leaves or thatch",EA083-8,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110034,Ah10,EA083,Tile or fired brick,EA083-11,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +110035,Ah11,EA083,"Grass, leaves or thatch",EA083-8,,gunnandconant1960,,1950,EthnographicAtlas_1967_p77, +110036,Ah12,EA083,"Grass, leaves or thatch",EA083-8,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +110037,Ah13,EA083,"Grass, leaves or thatch",EA083-8,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +110038,Ah14,EA083,"Grass, leaves or thatch",EA083-8,,gunnandconant1960,,1920,EthnographicAtlas_1967_p77, +110039,Ah15,EA083,"Grass, leaves or thatch",EA083-8,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +110040,Ah16,EA083,"Grass, leaves or thatch",EA083-8,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +110041,Ah17,EA083,"Grass, leaves or thatch",EA083-8,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +110042,Ah18,EA083,"Grass, leaves or thatch",EA083-8,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +110043,Ah19,EA083,"Grass, leaves or thatch",EA083-8,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p77, +110044,Ah2,EA083,"Grass, leaves or thatch",EA083-8,,meek1931a,,1920,EthnographicAtlas_1967_p77, +110045,Ah20,EA083,"Grass, leaves or thatch",EA083-8,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +110046,Ah21,EA083,"Grass, leaves or thatch",EA083-8,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110047,Ah22,EA083,"Grass, leaves or thatch",EA083-8,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +110048,Ah23,EA083,"Grass, leaves or thatch",EA083-8,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110049,Ah24,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110050,Ah25,EA083,"Grass, leaves or thatch",EA083-8,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110051,Ah26,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110052,Ah27,EA083,?,EA083-NA,,,,,, +110053,Ah28,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +110054,Ah29,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110055,Ah3,EA083,"Grass, leaves or thatch",EA083-8,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p77, +110056,Ah30,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,,1920,EthnographicAtlas_1967_p77, +110057,Ah31,EA083,"Grass, leaves or thatch",EA083-8,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p77, +110058,Ah32,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110059,Ah33,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +110060,Ah34,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +110061,Ah35,EA083,"Grass, leaves or thatch",EA083-8,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110062,Ah36,EA083,"Grass, leaves or thatch",EA083-8,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p77, +110063,Ah37,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110064,Ah38,EA083,"Grass, leaves or thatch",EA083-8,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p77, +110065,Ah39,EA083,"Grass, leaves or thatch",EA083-8,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p77, +110066,Ah4,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p77, +110067,Ah5,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b;rowling1930,,1930,Ethnology_Vol2_No1_Jan_1963, +110068,Ah6,EA083,"Grass, leaves or thatch",EA083-8,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol2_No1_Jan_1963, +110069,Ah7,EA083,"Grass, leaves or thatch",EA083-8,,hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p77, +110070,Ah8,EA083,"Grass, leaves or thatch",EA083-8,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p77, +110071,Ah9,EA083,"Grass, leaves or thatch",EA083-8,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p77, +110072,Ai1,EA083,"Grass, leaves or thatch",EA083-8,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p77, +110073,Ai10,EA083,"Grass, leaves or thatch",EA083-8,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p77, +110074,Ai11,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p77, +110075,Ai12,EA083,"Grass, leaves or thatch",EA083-8,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p77, +110076,Ai13,EA083,"Grass, leaves or thatch",EA083-8,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +110077,Ai14,EA083,"Grass, leaves or thatch",EA083-8,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p77, +110078,Ai15,EA083,"Grass, leaves or thatch",EA083-8,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p77, +110079,Ai16,EA083,"Grass, leaves or thatch",EA083-8,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +110080,Ai17,EA083,"Grass, leaves or thatch",EA083-8,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +110081,Ai18,EA083,"Grass, leaves or thatch",EA083-8,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +110082,Ai19,EA083,"Plaster, clay or similar",EA083-2,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +110083,Ai2,EA083,"Grass, leaves or thatch",EA083-8,,nadel1950,,1940,Ethnology_Vol2_No1_Jan_1963, +110084,Ai20,EA083,"Grass, leaves or thatch",EA083-8,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +110085,Ai21,EA083,"Grass, leaves or thatch",EA083-8,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +110086,Ai22,EA083,"Grass, leaves or thatch",EA083-8,,delafosse1897,,1890,EthnographicAtlas_1967_p77, +110087,Ai23,EA083,"Grass, leaves or thatch",EA083-8,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +110088,Ai24,EA083,"Grass, leaves or thatch",EA083-8,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +110089,Ai25,EA083,"Grass, leaves or thatch",EA083-8,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +110090,Ai26,EA083,"Grass, leaves or thatch",EA083-8,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +110091,Ai27,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +110092,Ai28,EA083,"Grass, leaves or thatch",EA083-8,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +110093,Ai29,EA083,"Grass, leaves or thatch",EA083-8,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p77, +110094,Ai3,EA083,"Grass, leaves or thatch",EA083-8,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p77, +110095,Ai30,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +110096,Ai31,EA083,"Grass, leaves or thatch",EA083-8,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +110097,Ai32,EA083,"Grass, leaves or thatch",EA083-8,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p77, +110098,Ai33,EA083,"Grass, leaves or thatch",EA083-8,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p77, +110099,Ai34,EA083,"Grass, leaves or thatch",EA083-8,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +110100,Ai35,EA083,"Grass, leaves or thatch",EA083-8,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p77, +110101,Ai36,EA083,"Grass, leaves or thatch",EA083-8,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p77, +110102,Ai37,EA083,"Grass, leaves or thatch",EA083-8,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +110103,Ai38,EA083,"Grass, leaves or thatch",EA083-8,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +110104,Ai39,EA083,"Grass, leaves or thatch",EA083-8,,nadel1947,,1940,EthnographicAtlas_1967_p77, +110105,Ai4,EA083,?,EA083-NA,,,,,, +110106,Ai40,EA083,"Grass, leaves or thatch",EA083-8,,nadel1947,,1940,EthnographicAtlas_1967_p77, +110107,Ai41,EA083,"Grass, leaves or thatch",EA083-8,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p77, +110108,Ai42,EA083,"Grass, leaves or thatch",EA083-8,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p77, +110109,Ai43,EA083,"Grass, leaves or thatch",EA083-8,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p77, +110110,Ai44,EA083,"Grass, leaves or thatch",EA083-8,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p77, +110111,Ai45,EA083,"Grass, leaves or thatch",EA083-8,,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +110112,Ai46,EA083,"Grass, leaves or thatch",EA083-8,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p77, +110113,Ai47,EA083,"Grass, leaves or thatch",EA083-8,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +110114,Ai5,EA083,"Grass, leaves or thatch",EA083-8,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p77, +110115,Ai6,EA083,"Grass, leaves or thatch",EA083-8,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p77, +110116,Ai7,EA083,"Grass, leaves or thatch",EA083-8,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +110117,Ai8,EA083,"Grass, leaves or thatch",EA083-8,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p77, +110118,Ai9,EA083,"Grass, leaves or thatch",EA083-8,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p77, +110119,Aj1,EA083,"Grass, leaves or thatch",EA083-8,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +110120,Aj10,EA083,"Grass, leaves or thatch",EA083-8,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No3_Jul_1965, +110121,Aj11,EA083,"Grass, leaves or thatch",EA083-8,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p81, +110122,Aj12,EA083,"Grass, leaves or thatch",EA083-8,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +110123,Aj13,EA083,"Grass, leaves or thatch",EA083-8,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +110124,Aj14,EA083,"Grass, leaves or thatch",EA083-8,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +110125,Aj15,EA083,"Grass, leaves or thatch",EA083-8,,huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p81, +110126,Aj16,EA083,"Grass, leaves or thatch",EA083-8,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p81, +110127,Aj17,EA083,"Grass, leaves or thatch",EA083-8,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +110128,Aj18,EA083,"Grass, leaves or thatch",EA083-8,,jensen1959,,1950,EthnographicAtlas_1967_p81, +110129,Aj19,EA083,"Grass, leaves or thatch",EA083-8,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p81, +110130,Aj2,EA083,"Plaster, clay or similar",EA083-2,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p81, +110131,Aj20,EA083,"Grass, leaves or thatch",EA083-8,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p81, +110132,Aj21,EA083,"Grass, leaves or thatch",EA083-8,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p81, +110133,Aj22,EA083,"Grass, leaves or thatch",EA083-8,,gulliverandgulliver1953;wayland1931,,1930,Ethnology_Vol5_No3_Jul_1966, +110134,Aj23,EA083,"Grass, leaves or thatch",EA083-8,,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p81, +110135,Aj24,EA083,"Grass, leaves or thatch",EA083-8,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +110136,Aj25,EA083,"Grass, leaves or thatch",EA083-8,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +110137,Aj26,EA083,"Grass, leaves or thatch",EA083-8,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p81, +110138,Aj27,EA083,"Grass, leaves or thatch",EA083-8,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +110139,Aj28,EA083,"Plaster, clay or similar",EA083-2,,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +110140,Aj29,EA083,Hides or skins,EA083-5,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +110141,Aj3,EA083,"Grass, leaves or thatch",EA083-8,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +110142,Aj30,EA083,?,EA083-NA,,,,,, +110143,Aj31,EA083,?,EA083-NA,,,,,, +110144,Aj4,EA083,"Grass, leaves or thatch",EA083-8,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +110145,Aj5,EA083,Hides or skins,EA083-5,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +110146,Aj6,EA083,"Grass, leaves or thatch",EA083-8,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p81, +110147,Aj7,EA083,"Grass, leaves or thatch",EA083-8,,hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p81, +110148,Aj8,EA083,"Grass, leaves or thatch",EA083-8,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p81, +110149,Aj9,EA083,"Grass, leaves or thatch",EA083-8,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p81, +110150,Ca1,EA083,"Grass, leaves or thatch",EA083-8,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,EthnographicAtlas_1967_p81, +110151,Ca10,EA083,Mats,EA083-7,,hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +110152,Ca11,EA083,"Grass, leaves or thatch",EA083-8,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +110153,Ca12,EA083,"Grass, leaves or thatch",EA083-8,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p81, +110154,Ca13,EA083,"Grass, leaves or thatch",EA083-8,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p81, +110155,Ca14,EA083,"Grass, leaves or thatch",EA083-8,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p81, +110156,Ca15,EA083,"Grass, leaves or thatch",EA083-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +110157,Ca16,EA083,"Grass, leaves or thatch",EA083-8,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p81, +110158,Ca17,EA083,"Grass, leaves or thatch",EA083-8,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +110159,Ca18,EA083,"Grass, leaves or thatch",EA083-8,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +110160,Ca19,EA083,"Grass, leaves or thatch",EA083-8,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p81, +110161,Ca2,EA083,Mats,EA083-7,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +110162,Ca20,EA083,Hides or skins,EA083-5,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +110163,Ca21,EA083,"Grass, leaves or thatch",EA083-8,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +110164,Ca22,EA083,"Grass, leaves or thatch",EA083-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +110165,Ca23,EA083,"Grass, leaves or thatch",EA083-8,,jensen1959,,1950,EthnographicAtlas_1967_p81, +110166,Ca24,EA083,"Grass, leaves or thatch",EA083-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +110167,Ca25,EA083,"Grass, leaves or thatch",EA083-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +110168,Ca26,EA083,"Grass, leaves or thatch",EA083-8,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +110169,Ca27,EA083,"Grass, leaves or thatch",EA083-8,But Cerulli reports rectangular huts,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +110170,Ca28,EA083,"Grass, leaves or thatch",EA083-8,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p81, +110171,Ca29,EA083,"Grass, leaves or thatch",EA083-8,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p81, +110172,Ca3,EA083,"Grass, leaves or thatch",EA083-8,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p81, +110173,Ca30,EA083,"Grass, leaves or thatch",EA083-8,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +110174,Ca31,EA083,"Grass, leaves or thatch",EA083-8,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p81, +110175,Ca32,EA083,"Grass, leaves or thatch",EA083-8,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +110176,Ca33,EA083,"Grass, leaves or thatch",EA083-8,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +110177,Ca34,EA083,Mats,EA083-7,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +110178,Ca35,EA083,Fabric,EA083-6,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +110179,Ca36,EA083,Mats,EA083-7,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +110180,Ca37,EA083,"Grass, leaves or thatch",EA083-8,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +110181,Ca38,EA083,Mats,EA083-7,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +110182,Ca39,EA083,"Grass, leaves or thatch",EA083-8,,lewis1965b,,1930,EthnographicAtlas_1967_p81, +110183,Ca4,EA083,"Grass, leaves or thatch",EA083-8,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +110184,Ca40,EA083,"Grass, leaves or thatch",EA083-8,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +110185,Ca41,EA083,"Grass, leaves or thatch",EA083-8,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +110186,Ca42,EA083,"Grass, leaves or thatch",EA083-8,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +110187,Ca43,EA083,?,EA083-NA,,,,,, +110188,Ca5,EA083,"Grass, leaves or thatch",EA083-8,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p81, +110189,Ca6,EA083,Mats,EA083-7,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +110190,Ca7,EA083,"Grass, leaves or thatch",EA083-8,,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p81, +110191,Ca8,EA083,"Grass, leaves or thatch",EA083-8,,leslau1950;shack1963,,1940,EthnographicAtlas_1967_p81, +110192,Ca9,EA083,Earth or turf,EA083-9,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +110193,Cb1,EA083,"Grass, leaves or thatch",EA083-8,,greenberg1946;greenberg1947,,1940,Ethnology_Vol2_No1_Jan_1963, +110194,Cb10,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +110195,Cb11,EA083,"Grass, leaves or thatch",EA083-8,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +110196,Cb12,EA083,?,EA083-NA,,,,,, +110197,Cb13,EA083,Mats,EA083-7,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +110198,Cb14,EA083,Fabric,EA083-6,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +110199,Cb15,EA083,Bark,EA083-4,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +110200,Cb16,EA083,"Grass, leaves or thatch",EA083-8,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +110201,Cb17,EA083,"Grass, leaves or thatch",EA083-8,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +110202,Cb18,EA083,"Grass, leaves or thatch",EA083-8,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p81, +110203,Cb19,EA083,"Grass, leaves or thatch",EA083-8,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +110204,Cb2,EA083,"Grass, leaves or thatch",EA083-8,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p81, +110205,Cb20,EA083,"Grass, leaves or thatch",EA083-8,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +110206,Cb21,EA083,"Grass, leaves or thatch",EA083-8,,pfeffer1936,,1930,EthnographicAtlas_1967_p85, +110207,Cb22,EA083,Earth or turf,EA083-9,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +110208,Cb23,EA083,"Grass, leaves or thatch",EA083-8,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p85, +110209,Cb24,EA083,"Grass, leaves or thatch",EA083-8,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p85, +110210,Cb25,EA083,"Grass, leaves or thatch",EA083-8,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +110211,Cb26,EA083,"Grass, leaves or thatch",EA083-8,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p85, +110212,Cb27,EA083,"Grass, leaves or thatch",EA083-8,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110213,Cb28,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110214,Cb29,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +110215,Cb3,EA083,Mats,EA083-7,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +110216,Cb4,EA083,Fabric,EA083-6,,reid1930,,1920,EthnographicAtlas_1967_p81, +110217,Cb5,EA083,"Grass, leaves or thatch",EA083-8,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p81, +110218,Cb6,EA083,"Grass, leaves or thatch",EA083-8,,woodnd,,1920,EthnographicAtlas_1967_p81, +110219,Cb7,EA083,"Grass, leaves or thatch",EA083-8,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +110220,Cb8,EA083,"Grass, leaves or thatch",EA083-8,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p81, +110221,Cb9,EA083,"Plaster, clay or similar",EA083-2,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +110222,Cc1,EA083,Fabric,EA083-6,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p85, +110223,Cc10,EA083,Mats,EA083-7,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +110224,Cc11,EA083,Hides or skins,EA083-5,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +110225,Cc12,EA083,Hides or skins,EA083-5,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +110226,Cc13,EA083,Hides or skins,EA083-5,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +110227,Cc14,EA083,"Grass, leaves or thatch",EA083-8,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +110228,Cc15,EA083,Earth or turf,EA083-9,,chapelle1929;meunie1947;spillmann1931,,1920,Ethnology_Vol5_No2_Apr_1966, +110229,Cc16,EA083,Fabric,EA083-6,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +110230,Cc17,EA083,Fabric,EA083-6,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p85, +110231,Cc18,EA083,Hides or skins,EA083-5,,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +110232,Cc19,EA083,Fabric,EA083-6,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +110233,Cc2,EA083,Mats,EA083-7,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +110234,Cc20,EA083,?,EA083-NA,,,,,, +110235,Cc3,EA083,Earth or turf,EA083-9,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p85, +110236,Cc4,EA083,Earth or turf,EA083-9,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p85, +110237,Cc5,EA083,Hides or skins,EA083-5,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +110238,Cc6,EA083,Fabric,EA083-6,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +110239,Cc7,EA083,Fabric,EA083-6,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110240,Cc8,EA083,Hides or skins,EA083-5,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +110241,Cc9,EA083,Hides or skins,EA083-5,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +110242,Cd1,EA083,Earth or turf,EA083-9,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +110243,Cd10,EA083,Earth or turf,EA083-9,,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +110244,Cd11,EA083,Earth or turf,EA083-9,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p85, +110245,Cd12,EA083,Earth or turf,EA083-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +110246,Cd13,EA083,Fabric,EA083-6,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +110247,Cd14,EA083,Fabric,EA083-6,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +110248,Cd15,EA083,"Grass, leaves or thatch",EA083-8,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +110249,Cd16,EA083,Earth or turf,EA083-9,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +110250,Cd17,EA083,"Grass, leaves or thatch",EA083-8,,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +110251,Cd18,EA083,Fabric,EA083-6,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +110252,Cd19,EA083,Earth or turf,EA083-9,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +110253,Cd2,EA083,Earth or turf,EA083-9,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p85, +110254,Cd20,EA083,Fabric,EA083-6,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +110255,Cd21,EA083,Earth or turf,EA083-9,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +110256,Cd3,EA083,Earth or turf,EA083-9,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p85, +110257,Cd4,EA083,Tile or fired brick,EA083-11,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p85, +110258,Cd5,EA083,Earth or turf,EA083-9,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p85, +110259,Cd6,EA083,Earth or turf,EA083-9,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p85, +110260,Cd7,EA083,Fabric,EA083-6,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +110261,Cd8,EA083,Earth or turf,EA083-9,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +110262,Cd9,EA083,Earth or turf,EA083-9,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +110263,Ce1,EA083,"Wood, incl. bamboo",EA083-3,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +110264,Ce2,EA083,Tile or fired brick,EA083-11,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol2_No1_Jan_1963, +110265,Ce3,EA083,?,EA083-NA,,,,,, +110266,Ce4,EA083,?,EA083-NA,,,,,, +110267,Ce5,EA083,Stone or slate,EA083-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +110268,Ce6,EA083,Tile or fired brick,EA083-11,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p85, +110269,Ce7,EA083,Tile or fired brick,EA083-11,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p85, +110270,Ce8,EA083,"Wood, incl. bamboo",EA083-3,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +110271,Cf1,EA083,"Wood, incl. bamboo",EA083-3,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p85, +110272,Cf2,EA083,"Grass, leaves or thatch",EA083-8,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol2_No1_Jan_1963, +110273,Cf3,EA083,"Grass, leaves or thatch",EA083-8,,munch1945,,1930,EthnographicAtlas_1967_p85, +110274,Cf4,EA083,Tile or fired brick,EA083-11,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p85, +110275,Cf5,EA083,"Wood, incl. bamboo",EA083-3,,miner1939,,1930,EthnographicAtlas_1967_p85, +110276,Cg1,EA083,Tile or fired brick,EA083-11,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p85, +110277,Cg2,EA083,"Wood, incl. bamboo",EA083-3,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p85, +110278,Cg3,EA083,"Grass, leaves or thatch",EA083-8,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p85, +110279,Cg4,EA083,Fabric,EA083-6,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p85, +110280,Cg5,EA083,Tile or fired brick,EA083-11,,turneyhigh1953,,1950,Ethnology_Vol2_No1_Jan_1963, +110281,Ch1,EA083,Tile or fired brick,EA083-11,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p85, +110282,Ch10,EA083,?,EA083-NA,,,,,, +110283,Ch11,EA083,"Grass, leaves or thatch",EA083-8,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +110284,Ch2,EA083,"Grass, leaves or thatch",EA083-8,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p85, +110285,Ch3,EA083,?,EA083-NA,,,,,, +110286,Ch4,EA083,"Grass, leaves or thatch",EA083-8,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p85, +110287,Ch5,EA083,Tile or fired brick,EA083-11,,sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p85, +110288,Ch6,EA083,"Grass, leaves or thatch",EA083-8,,ember1954,,1910,EthnographicAtlas_1967_p85, +110289,Ch7,EA083,?,EA083-NA,,,,,, +110290,Ch8,EA083,?,EA083-NA,,,,,, +110291,Ch9,EA083,?,EA083-NA,,,,,, +110292,Ci1,EA083,Fabric,EA083-6,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p85, +110293,Ci10,EA083,?,EA083-NA,,,,,, +110294,Ci11,EA083,Earth or turf,EA083-9,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +110295,Ci12,EA083,"Grass, leaves or thatch",EA083-8,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +110296,Ci2,EA083,Earth or turf,EA083-9,,grigolia1939,,1930,EthnographicAtlas_1967_p85, +110297,Ci3,EA083,Earth or turf,EA083-9,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p85, +110298,Ci4,EA083,"Grass, leaves or thatch",EA083-8,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p85, +110299,Ci5,EA083,?,EA083-NA,,,,,, +110300,Ci6,EA083,Earth or turf,EA083-9,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p85, +110301,Ci7,EA083,Earth or turf,EA083-9,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p85, +110302,Ci8,EA083,Earth or turf,EA083-9,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +110303,Ci9,EA083,Earth or turf,EA083-9,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +110304,Cj1,EA083,"Plaster, clay or similar",EA083-2,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +110305,Cj10,EA083,Mats,EA083-7,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p89, +110306,Cj2,EA083,Fabric,EA083-6,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p85, +110307,Cj3,EA083,"Plaster, clay or similar",EA083-2,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p89, +110308,Cj4,EA083,Earth or turf,EA083-9,,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p89, +110309,Cj5,EA083,Fabric,EA083-6,,dickson1949,,1930,EthnographicAtlas_1967_p89, +110310,Cj6,EA083,Earth or turf,EA083-9,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No3_Jul_1963, +110311,Cj7,EA083,Earth or turf,EA083-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +110312,Cj8,EA083,Earth or turf,EA083-9,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p89, +110313,Cj9,EA083,Earth or turf,EA083-9,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +110314,Ea1,EA083,?,EA083-NA,,,,,, +110315,Ea10,EA083,?,EA083-NA,,,,,, +110316,Ea11,EA083,Earth or turf,EA083-9,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +110317,Ea12,EA083,Fabric,EA083-6,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +110318,Ea13,EA083,"Plaster, clay or similar",EA083-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +110319,Ea2,EA083,Earth or turf,EA083-9,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p89, +110320,Ea3,EA083,Earth or turf,EA083-9,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +110321,Ea4,EA083,Earth or turf,EA083-9,,barth1956b,,1950,EthnographicAtlas_1967_p89, +110322,Ea5,EA083,Earth or turf,EA083-9,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p89, +110323,Ea6,EA083,Fabric,EA083-6,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +110324,Ea7,EA083,"Plaster, clay or similar",EA083-2,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +110325,Ea8,EA083,Fabric,EA083-6,,feilberg1952;wilson1926,,1920,EthnographicAtlas_1967_p89, +110326,Ea9,EA083,?,EA083-NA,,,,,, +110327,Eb1,EA083,Fabric,EA083-6,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +110328,Eb2,EA083,"Grass, leaves or thatch",EA083-8,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p89, +110329,Eb3,EA083,Fabric,EA083-6,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p89, +110330,Eb4,EA083,"Grass, leaves or thatch",EA083-8,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol2_No1_Jan_1963, +110331,Eb5,EA083,?,EA083-NA,,,,,, +110332,Eb6,EA083,Fabric,EA083-6,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +110333,Eb7,EA083,Tile or fired brick,EA083-11,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p89, +110334,Eb8,EA083,?,EA083-NA,,,,,, +110335,Ec1,EA083,Earth or turf,EA083-9,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +110336,Ec10,EA083,Bark,EA083-4,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +110337,Ec11,EA083,Hides or skins,EA083-5,,donner1932;donner1954,,1900,Ethnology_Vol7_No3_Jul_1968, +110338,Ec2,EA083,Earth or turf,EA083-9,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110339,Ec3,EA083,Hides or skins,EA083-5,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +110340,Ec4,EA083,"Grass, leaves or thatch",EA083-8,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p89, +110341,Ec5,EA083,Earth or turf,EA083-9,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +110342,Ec6,EA083,"Grass, leaves or thatch",EA083-8,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +110343,Ec7,EA083,"Grass, leaves or thatch",EA083-8,,batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p89, +110344,Ec8,EA083,Earth or turf,EA083-9,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +110345,Ec9,EA083,Hides or skins,EA083-5,,lattimore1933,,1920,EthnographicAtlas_1967_p89, +110346,Ed1,EA083,"Grass, leaves or thatch",EA083-8,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +110347,Ed10,EA083,?,EA083-NA,,,,,, +110348,Ed13,EA083,?,EA083-NA,,,,,, +110349,Ed14,EA083,?,EA083-NA,,,,,, +110350,Ed15a,EA083,?,EA083-NA,,,,,, +110351,Ed15b,EA083,Tile or fired brick,EA083-11,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +110352,Ed16,EA083,?,EA083-NA,,,,,, +110353,Ed2,EA083,"Wood, incl. bamboo",EA083-3,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p89, +110354,Ed3,EA083,"Wood, incl. bamboo",EA083-3,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p89, +110355,Ed4,EA083,Tile or fired brick,EA083-11,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p89, +110356,Ed5,EA083,"Grass, leaves or thatch",EA083-8,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110357,Ed6,EA083,?,EA083-NA,,,,,, +110358,Ed7,EA083,"Grass, leaves or thatch",EA083-8,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +110359,Ed8,EA083,Tile or fired brick,EA083-11,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +110360,Ed9,EA083,"Grass, leaves or thatch",EA083-8,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p89, +110361,Ee1,EA083,"Grass, leaves or thatch",EA083-8,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p89, +110362,Ee2,EA083,Earth or turf,EA083-9,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p89, +110363,Ee3,EA083,"Grass, leaves or thatch",EA083-8,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +110364,Ee4,EA083,Earth or turf,EA083-9,,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p89, +110365,Ee5,EA083,Earth or turf,EA083-9,,biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p89, +110366,Ee6,EA083,"Wood, incl. bamboo",EA083-3,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +110367,Ee7,EA083,?,EA083-NA,,,,,, +110368,Ee8,EA083,"Grass, leaves or thatch",EA083-8,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +110369,Ef1,EA083,"Grass, leaves or thatch",EA083-8,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p89, +110370,Ef10,EA083,?,EA083-NA,,,,,, +110371,Ef11,EA083,"Grass, leaves or thatch",EA083-8,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +110372,Ef2,EA083,Tile or fired brick,EA083-11,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +110373,Ef3,EA083,?,EA083-NA,,,,,, +110374,Ef4,EA083,"Grass, leaves or thatch",EA083-8,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +110375,Ef5,EA083,"Wood, incl. bamboo",EA083-3,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +110376,Ef6,EA083,"Grass, leaves or thatch",EA083-8,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p89, +110377,Ef7,EA083,"Grass, leaves or thatch",EA083-8,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p89, +110378,Ef8,EA083,"Grass, leaves or thatch",EA083-8,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p89, +110379,Ef9,EA083,?,EA083-NA,,,,,, +110380,Eg1,EA083,"Grass, leaves or thatch",EA083-8,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110381,Eg10,EA083,"Grass, leaves or thatch",EA083-8,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +110382,Eg11,EA083,?,EA083-NA,,,,,, +110383,Eg12,EA083,?,EA083-NA,,,,,, +110384,Eg13,EA083,"Grass, leaves or thatch",EA083-8,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110385,Eg14,EA083,"Grass, leaves or thatch",EA083-8,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No2_Apr_1968, +110386,Eg2,EA083,"Grass, leaves or thatch",EA083-8,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p89, +110387,Eg3,EA083,"Grass, leaves or thatch",EA083-8,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p89, +110388,Eg4,EA083,"Grass, leaves or thatch",EA083-8,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p89, +110389,Eg5,EA083,"Grass, leaves or thatch",EA083-8,,emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p93, +110390,Eg6,EA083,Tile or fired brick,EA083-11,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +110391,Eg7,EA083,"Grass, leaves or thatch",EA083-8,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p93, +110392,Eg8,EA083,"Grass, leaves or thatch",EA083-8,,griffiths1946,,1940,EthnographicAtlas_1967_p93, +110393,Eg9,EA083,"Grass, leaves or thatch",EA083-8,,elwin1939,,1930,EthnographicAtlas_1967_p93, +110394,Eh1,EA083,"Grass, leaves or thatch",EA083-8,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p93, +110395,Eh10,EA083,?,EA083-NA,,,,,, +110396,Eh2,EA083,"Grass, leaves or thatch",EA083-8,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +110397,Eh3,EA083,"Grass, leaves or thatch",EA083-8,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p93, +110398,Eh4,EA083,?,EA083-NA,,,,,, +110399,Eh5,EA083,"Grass, leaves or thatch",EA083-8,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +110400,Eh6,EA083,"Grass, leaves or thatch",EA083-8,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +110401,Eh7,EA083,"Grass, leaves or thatch",EA083-8,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +110402,Eh8,EA083,"Grass, leaves or thatch",EA083-8,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p93, +110403,Eh9,EA083,"Grass, leaves or thatch",EA083-8,,deschamps1936,,1930,Ethnology_Vol7_No3_Jul_1968, +110404,Ei1,EA083,"Grass, leaves or thatch",EA083-8,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110405,Ei10,EA083,"Grass, leaves or thatch",EA083-8,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p93, +110406,Ei11,EA083,"Grass, leaves or thatch",EA083-8,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p93, +110407,Ei12,EA083,"Grass, leaves or thatch",EA083-8,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No3_Jul_1963, +110408,Ei13,EA083,"Grass, leaves or thatch",EA083-8,,hutton1921a,,1910,EthnographicAtlas_1967_p93, +110409,Ei14,EA083,"Grass, leaves or thatch",EA083-8,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p93, +110410,Ei15,EA083,?,EA083-NA,,,,,, +110411,Ei16,EA083,"Grass, leaves or thatch",EA083-8,,hutton1921b,,1910,EthnographicAtlas_1967_p93, +110412,Ei17,EA083,?,EA083-NA,,,,,, +110413,Ei18,EA083,"Grass, leaves or thatch",EA083-8,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p93, +110414,Ei19,EA083,"Grass, leaves or thatch",EA083-8,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p93, +110415,Ei2,EA083,"Grass, leaves or thatch",EA083-8,,mills1922,,1920,EthnographicAtlas_1967_p93, +110416,Ei20,EA083,?,EA083-NA,,,,,, +110417,Ei3,EA083,"Grass, leaves or thatch",EA083-8,,brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p93, +110418,Ei4,EA083,"Grass, leaves or thatch",EA083-8,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p93, +110419,Ei5,EA083,"Grass, leaves or thatch",EA083-8,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p93, +110420,Ei6,EA083,"Grass, leaves or thatch",EA083-8,,das1945;needham1958,,1930,EthnographicAtlas_1967_p93, +110421,Ei7,EA083,"Grass, leaves or thatch",EA083-8,,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p93, +110422,Ei8,EA083,"Grass, leaves or thatch",EA083-8,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p93, +110423,Ei9,EA083,"Grass, leaves or thatch",EA083-8,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p93, +110424,Ej1,EA083,"Wood, incl. bamboo",EA083-3,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p93, +110425,Ej10,EA083,"Grass, leaves or thatch",EA083-8,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p93, +110426,Ej11,EA083,"Grass, leaves or thatch",EA083-8,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p93, +110427,Ej12,EA083,"Grass, leaves or thatch",EA083-8,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p93, +110428,Ej13,EA083,"Grass, leaves or thatch",EA083-8,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p93, +110429,Ej14,EA083,"Grass, leaves or thatch",EA083-8,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110430,Ej15,EA083,"Grass, leaves or thatch",EA083-8,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +110431,Ej16,EA083,"Grass, leaves or thatch",EA083-8,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +110432,Ej2,EA083,"Grass, leaves or thatch",EA083-8,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p93, +110433,Ej3,EA083,"Grass, leaves or thatch",EA083-8,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p93, +110434,Ej4,EA083,"Grass, leaves or thatch",EA083-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +110435,Ej5,EA083,"Grass, leaves or thatch",EA083-8,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p93, +110436,Ej6,EA083,?,EA083-NA,,,,,, +110437,Ej7,EA083,"Grass, leaves or thatch",EA083-8,,bernatzik1947,,1950,EthnographicAtlas_1967_p93, +110438,Ej8,EA083,"Grass, leaves or thatch",EA083-8,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p93, +110439,Ej9,EA083,"Grass, leaves or thatch",EA083-8,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +110440,Ia1,EA083,"Grass, leaves or thatch",EA083-8,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p93, +110441,Ia10,EA083,"Grass, leaves or thatch",EA083-8,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p93, +110442,Ia11,EA083,"Grass, leaves or thatch",EA083-8,,mabuchi1960,,1930,EthnographicAtlas_1967_p93, +110443,Ia12,EA083,"Grass, leaves or thatch",EA083-8,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p97, +110444,Ia13,EA083,?,EA083-NA,,,,,, +110445,Ia14,EA083,"Grass, leaves or thatch",EA083-8,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +110446,Ia15,EA083,?,EA083-NA,,,,,, +110447,Ia16,EA083,"Grass, leaves or thatch",EA083-8,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,Ethnology_Vol6_No4_Oct_1967, +110448,Ia17,EA083,?,EA083-NA,,,,,, +110449,Ia18,EA083,?,EA083-NA,,,,,, +110450,Ia2,EA083,"Grass, leaves or thatch",EA083-8,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p93, +110451,Ia3,EA083,"Grass, leaves or thatch",EA083-8,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p93, +110452,Ia4,EA083,"Grass, leaves or thatch",EA083-8,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p93, +110453,Ia5,EA083,"Grass, leaves or thatch",EA083-8,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p93, +110454,Ia6,EA083,Stone or slate,EA083-1,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110455,Ia7,EA083,?,EA083-NA,,,,,, +110456,Ia8,EA083,"Grass, leaves or thatch",EA083-8,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No3_Jul_1965, +110457,Ia9,EA083,"Grass, leaves or thatch",EA083-8,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p93, +110458,Ib1,EA083,"Grass, leaves or thatch",EA083-8,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110459,Ib2,EA083,"Grass, leaves or thatch",EA083-8,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110460,Ib3,EA083,"Grass, leaves or thatch",EA083-8,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p97, +110461,Ib4,EA083,"Grass, leaves or thatch",EA083-8,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p97, +110462,Ib5,EA083,"Grass, leaves or thatch",EA083-8,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p97, +110463,Ib6,EA083,"Grass, leaves or thatch",EA083-8,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p97, +110464,Ib7,EA083,"Grass, leaves or thatch",EA083-8,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p97, +110465,Ib8,EA083,"Grass, leaves or thatch",EA083-8,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p97, +110466,Ib9,EA083,?,EA083-NA,,,,,, +110467,Ic1,EA083,"Grass, leaves or thatch",EA083-8,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110468,Ic10,EA083,?,EA083-NA,,,,,, +110469,Ic11,EA083,"Grass, leaves or thatch",EA083-8,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110470,Ic12,EA083,Tile or fired brick,EA083-11,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +110471,Ic13,EA083,?,EA083-NA,,,,,, +110472,Ic2,EA083,?,EA083-NA,,,,,, +110473,Ic3,EA083,"Grass, leaves or thatch",EA083-8,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p97, +110474,Ic4,EA083,?,EA083-NA,,,,,, +110475,Ic5,EA083,"Grass, leaves or thatch",EA083-8,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +110476,Ic6,EA083,"Grass, leaves or thatch",EA083-8,,drabbe1940,,1930,EthnographicAtlas_1967_p97, +110477,Ic7,EA083,"Grass, leaves or thatch",EA083-8,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p97, +110478,Ic8,EA083,?,EA083-NA,,,,,, +110479,Ic9,EA083,"Grass, leaves or thatch",EA083-8,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p97, +110480,Id1,EA083,"Grass, leaves or thatch",EA083-8,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p97, +110481,Id10,EA083,"Grass, leaves or thatch",EA083-8,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +110482,Id11,EA083,Bark,EA083-4,,hiatt1965,,1950,Ethnology_Vol7_No2_Apr_1968, +110483,Id12,EA083,?,EA083-NA,,,,,, +110484,Id13,EA083,?,EA083-NA,,,,,, +110485,Id2,EA083,Bark,EA083-4,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +110486,Id3,EA083,?,EA083-NA,,,,,, +110487,Id4,EA083,?,EA083-NA,,,,,, +110488,Id5,EA083,?,EA083-NA,,,,,, +110489,Id6,EA083,?,EA083-NA,,,,,, +110490,Id7,EA083,?,EA083-NA,,,,,, +110491,Id8,EA083,Bark,EA083-4,,roth1890,,1830,EthnographicAtlas_1967_p97, +110492,Id9,EA083,?,EA083-NA,,,,,, +110493,Ie1,EA083,"Grass, leaves or thatch",EA083-8,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110494,Ie10,EA083,"Grass, leaves or thatch",EA083-8,,belshaw1957;groves1963;groves1964,with special reference to the Western Motu,1950,EthnographicAtlas_1967_p97, +110495,Ie11,EA083,"Grass, leaves or thatch",EA083-8,,bowers1964,,1950,EthnographicAtlas_1967_p97, +110496,Ie12,EA083,"Grass, leaves or thatch",EA083-8,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110497,Ie13,EA083,?,EA083-NA,,,,,, +110498,Ie14,EA083,?,EA083-NA,,,,,, +110499,Ie15,EA083,"Grass, leaves or thatch",EA083-8,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110500,Ie16,EA083,"Grass, leaves or thatch",EA083-8,,williams194041,,1940,EthnographicAtlas_1967_p97, +110501,Ie17,EA083,"Grass, leaves or thatch",EA083-8,,salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p97, +110502,Ie18,EA083,"Grass, leaves or thatch",EA083-8,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +110503,Ie19,EA083,"Grass, leaves or thatch",EA083-8,,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p97, +110504,Ie2,EA083,"Grass, leaves or thatch",EA083-8,,schmitz1960,,1920,EthnographicAtlas_1967_p97, +110505,Ie20,EA083,"Grass, leaves or thatch",EA083-8,,seligmann1910,,1900,EthnographicAtlas_1967_p97, +110506,Ie21,EA083,"Grass, leaves or thatch",EA083-8,,malinowski1916,,1900,EthnographicAtlas_1967_p97, +110507,Ie22,EA083,"Grass, leaves or thatch",EA083-8,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p97, +110508,Ie23,EA083,"Grass, leaves or thatch",EA083-8,,schoorl1957,,1950,EthnographicAtlas_1967_p97, +110509,Ie24,EA083,"Grass, leaves or thatch",EA083-8,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p97, +110510,Ie25,EA083,"Grass, leaves or thatch",EA083-8,,williamson1912,,1920,EthnographicAtlas_1967_p97, +110511,Ie26,EA083,"Grass, leaves or thatch",EA083-8,,read1946;read1950,,1940,EthnographicAtlas_1967_p101, +110512,Ie27,EA083,?,EA083-NA,,,,,, +110513,Ie28,EA083,"Grass, leaves or thatch",EA083-8,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p101, +110514,Ie29,EA083,?,EA083-NA,,,,,, +110515,Ie3,EA083,"Grass, leaves or thatch",EA083-8,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110516,Ie30,EA083,"Grass, leaves or thatch",EA083-8,,pouwer1955,,1950,EthnographicAtlas_1967_p101, +110517,Ie31,EA083,"Grass, leaves or thatch",EA083-8,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +110518,Ie32,EA083,"Grass, leaves or thatch",EA083-8,,groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +110519,Ie33,EA083,"Grass, leaves or thatch",EA083-8,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol6_No4_Oct_1967, +110520,Ie34,EA083,?,EA083-NA,,,,,, +110521,Ie35,EA083,"Grass, leaves or thatch",EA083-8,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No2_Apr_1968, +110522,Ie36,EA083,?,EA083-NA,,,,,, +110523,Ie37,EA083,?,EA083-NA,,,,,, +110524,Ie38,EA083,"Grass, leaves or thatch",EA083-8,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +110525,Ie39,EA083,"Grass, leaves or thatch",EA083-8,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +110526,Ie4,EA083,"Grass, leaves or thatch",EA083-8,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110527,Ie5,EA083,Bark,EA083-4,,williams1936,,1930,EthnographicAtlas_1967_p97, +110528,Ie6,EA083,"Grass, leaves or thatch",EA083-8,,held1947,,1930,EthnographicAtlas_1967_p97, +110529,Ie7,EA083,"Grass, leaves or thatch",EA083-8,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p97, +110530,Ie8,EA083,"Grass, leaves or thatch",EA083-8,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p97, +110531,Ie9,EA083,"Grass, leaves or thatch",EA083-8,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p97, +110532,If1,EA083,"Grass, leaves or thatch",EA083-8,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110533,If10,EA083,?,EA083-NA,,,,,, +110534,If11,EA083,"Grass, leaves or thatch",EA083-8,,sarfert1919,,1860,EthnographicAtlas_1967_p101, +110535,If12,EA083,?,EA083-NA,,,,,, +110536,If13,EA083,?,EA083-NA,,,,,, +110537,If14,EA083,"Grass, leaves or thatch",EA083-8,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +110538,If15,EA083,"Grass, leaves or thatch",EA083-8,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +110539,If16,EA083,"Grass, leaves or thatch",EA083-8,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +110540,If17,EA083,"Grass, leaves or thatch",EA083-8,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +110541,If2,EA083,"Grass, leaves or thatch",EA083-8,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,EthnographicAtlas_1967_p101, +110542,If3,EA083,"Grass, leaves or thatch",EA083-8,,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p101, +110543,If4,EA083,"Grass, leaves or thatch",EA083-8,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +110544,If5,EA083,"Grass, leaves or thatch",EA083-8,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p101, +110545,If6,EA083,"Grass, leaves or thatch",EA083-8,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,Ethnology_Vol10_No1_Jan_1971, +110546,If7,EA083,"Grass, leaves or thatch",EA083-8,,goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p101, +110547,If8,EA083,"Grass, leaves or thatch",EA083-8,Roofs are of corrugated iron today,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p101, +110548,If9,EA083,"Grass, leaves or thatch",EA083-8,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p101, +110549,Ig1,EA083,"Grass, leaves or thatch",EA083-8,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +110550,Ig10,EA083,?,EA083-NA,,,,,, +110551,Ig11,EA083,"Grass, leaves or thatch",EA083-8,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +110552,Ig12,EA083,?,EA083-NA,,,,,, +110553,Ig13,EA083,"Grass, leaves or thatch",EA083-8,,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p101, +110554,Ig14,EA083,"Grass, leaves or thatch",EA083-8,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p101, +110555,Ig15,EA083,?,EA083-NA,,,,,, +110556,Ig16,EA083,?,EA083-NA,,,,,, +110557,Ig17,EA083,?,EA083-NA,,,,,, +110558,Ig18,EA083,?,EA083-NA,,,,,, +110559,Ig19,EA083,?,EA083-NA,,,,,, +110560,Ig2,EA083,"Grass, leaves or thatch",EA083-8,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p101, +110561,Ig20,EA083,"Grass, leaves or thatch",EA083-8,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +110562,Ig21,EA083,"Grass, leaves or thatch",EA083-8,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +110563,Ig3,EA083,"Grass, leaves or thatch",EA083-8,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +110564,Ig4,EA083,"Grass, leaves or thatch",EA083-8,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p101, +110565,Ig5,EA083,"Grass, leaves or thatch",EA083-8,,fortune1932b,,1920,EthnographicAtlas_1967_p101, +110566,Ig6,EA083,"Grass, leaves or thatch",EA083-8,,ivens1927,,1900,EthnographicAtlas_1967_p101, +110567,Ig7,EA083,?,EA083-NA,,,,,, +110568,Ig8,EA083,?,EA083-NA,,,,,, +110569,Ig9,EA083,"Grass, leaves or thatch",EA083-8,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p101, +110570,Ih1,EA083,"Grass, leaves or thatch",EA083-8,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p101, +110571,Ih10,EA083,?,EA083-NA,,,,,, +110572,Ih11,EA083,?,EA083-NA,,,,,, +110573,Ih12,EA083,?,EA083-NA,,,,,, +110574,Ih13,EA083,?,EA083-NA,,,,,, +110575,Ih14,EA083,"Grass, leaves or thatch",EA083-8,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +110576,Ih2,EA083,"Grass, leaves or thatch",EA083-8,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110577,Ih3,EA083,"Grass, leaves or thatch",EA083-8,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +110578,Ih4,EA083,"Grass, leaves or thatch",EA083-8,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110579,Ih5,EA083,"Grass, leaves or thatch",EA083-8,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +110580,Ih6,EA083,?,EA083-NA,,,,,, +110581,Ih7,EA083,"Grass, leaves or thatch",EA083-8,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p101, +110582,Ih8,EA083,"Grass, leaves or thatch",EA083-8,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p101, +110583,Ih9,EA083,?,EA083-NA,,,,,, +110584,Ii1,EA083,"Grass, leaves or thatch",EA083-8,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p101, +110585,Ii10,EA083,"Grass, leaves or thatch",EA083-8,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +110586,Ii12,EA083,"Grass, leaves or thatch",EA083-8,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110587,Ii13,EA083,"Grass, leaves or thatch",EA083-8,,burrows1937,,1830,EthnographicAtlas_1967_p101, +110588,Ii14,EA083,"Grass, leaves or thatch",EA083-8,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +110589,Ii2,EA083,"Grass, leaves or thatch",EA083-8,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p101, +110590,Ii3,EA083,"Grass, leaves or thatch",EA083-8,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p101, +110591,Ii4,EA083,"Grass, leaves or thatch",EA083-8,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p101, +110592,Ii5,EA083,"Grass, leaves or thatch",EA083-8,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p101, +110593,Ii6,EA083,"Grass, leaves or thatch",EA083-8,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p101, +110594,Ii7,EA083,"Grass, leaves or thatch",EA083-8,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p101, +110595,Ii8,EA083,"Grass, leaves or thatch",EA083-8,,burrows1936,,1840,EthnographicAtlas_1967_p101, +110596,Ii9,EA083,"Grass, leaves or thatch",EA083-8,,loeb1926a,,1840,EthnographicAtlas_1967_p101, +110597,Ij1,EA083,"Grass, leaves or thatch",EA083-8,,buck1934,,1820,EthnographicAtlas_1967_p101, +110598,Ij10,EA083,?,EA083-NA,,,,,, +110599,Ij2,EA083,"Grass, leaves or thatch",EA083-8,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,EthnographicAtlas_1967_p101, +110600,Ij3,EA083,"Grass, leaves or thatch",EA083-8,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p105, +110601,Ij4,EA083,"Grass, leaves or thatch",EA083-8,,buck1932a,,1850,EthnographicAtlas_1967_p105, +110602,Ij5,EA083,"Grass, leaves or thatch",EA083-8,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p105, +110603,Ij6,EA083,"Grass, leaves or thatch",EA083-8,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +110604,Ij7,EA083,"Grass, leaves or thatch",EA083-8,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p105, +110605,Ij8,EA083,"Grass, leaves or thatch",EA083-8,,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p105, +110606,Ij9,EA083,"Grass, leaves or thatch",EA083-8,,metraux1940,,1860,EthnographicAtlas_1967_p105, +110607,Na1,EA083,Hides or skins,EA083-5,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +110608,Na10,EA083,Bark,EA083-4,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +110609,Na11,EA083,"Grass, leaves or thatch",EA083-8,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +110610,Na12,EA083,Hides or skins,EA083-5,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +110611,Na13,EA083,Ice or snow,EA083-10,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +110612,Na14,EA083,Stone or slate,EA083-1,"The roof, of stone covered with earth, slopes gradually toward the rear and more steeply toward the sides; the front wall, with a window, is vertical",birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +110613,Na15,EA083,Hides or skins,EA083-5,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +110614,Na16,EA083,"Grass, leaves or thatch",EA083-8,,osgood1931,,1860,EthnographicAtlas_1967_p105, +110615,Na17,EA083,"Wood, incl. bamboo",EA083-3,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110616,Na19,EA083,Mats,EA083-7,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +110617,Na2,EA083,Earth or turf,EA083-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +110618,Na20,EA083,Hides or skins,EA083-5,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +110619,Na21,EA083,Ice or snow,EA083-10,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +110620,Na22,EA083,Ice or snow,EA083-10,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +110621,Na23,EA083,Ice or snow,EA083-10,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +110622,Na24,EA083,Earth or turf,EA083-9,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +110623,Na25,EA083,"Wood, incl. bamboo",EA083-3,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +110624,Na26,EA083,Bark,EA083-4,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p105, +110625,Na27,EA083,Bark,EA083-4,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p105, +110626,Na28,EA083,"Grass, leaves or thatch",EA083-8,,jenness1937,,1880,EthnographicAtlas_1967_p105, +110627,Na29,EA083,"Grass, leaves or thatch",EA083-8,,goddard1916,,1850,EthnographicAtlas_1967_p105, +110628,Na3,EA083,Ice or snow,EA083-10,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +110629,Na30,EA083,"Grass, leaves or thatch",EA083-8,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p105, +110630,Na31,EA083,Hides or skins,EA083-5,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +110631,Na32,EA083,Bark,EA083-4,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +110632,Na33,EA083,Bark,EA083-4,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p105, +110633,Na34,EA083,Bark,EA083-4,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +110634,Na35,EA083,"Grass, leaves or thatch",EA083-8,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +110635,Na36,EA083,Bark,EA083-4,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +110636,Na37,EA083,Hides or skins,EA083-5,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p105, +110637,Na38,EA083,Bark,EA083-4,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +110638,Na39,EA083,Mats,EA083-7,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +110639,Na4,EA083,Earth or turf,EA083-9,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +110640,Na40,EA083,Bark,EA083-4,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +110641,Na41,EA083,Bark,EA083-4,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p105, +110642,Na42,EA083,Mats,EA083-7,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p105, +110643,Na43,EA083,Ice or snow,EA083-10,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +110644,Na44,EA083,Ice or snow,EA083-10,,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +110645,Na45,EA083,?,EA083-NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +110646,Na5,EA083,Hides or skins,EA083-5,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p105, +110647,Na6,EA083,Earth or turf,EA083-9,,lantis1946,,1930,EthnographicAtlas_1967_p105, +110648,Na7,EA083,Earth or turf,EA083-9,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +110649,Na8,EA083,Earth or turf,EA083-9,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +110650,Na9,EA083,Earth or turf,EA083-9,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110651,Nb1,EA083,"Wood, incl. bamboo",EA083-3,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p105, +110652,Nb10,EA083,Mats,EA083-7,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +110653,Nb11,EA083,"Wood, incl. bamboo",EA083-3,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p109, +110654,Nb12,EA083,"Wood, incl. bamboo",EA083-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +110655,Nb13,EA083,"Wood, incl. bamboo",EA083-3,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p109, +110656,Nb14,EA083,"Wood, incl. bamboo",EA083-3,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +110657,Nb15,EA083,"Wood, incl. bamboo",EA083-3,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +110658,Nb16,EA083,"Wood, incl. bamboo",EA083-3,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +110659,Nb17,EA083,"Wood, incl. bamboo",EA083-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +110660,Nb18,EA083,Mats,EA083-7,,pettitt1950,,1880,EthnographicAtlas_1967_p109, +110661,Nb19,EA083,"Wood, incl. bamboo",EA083-3,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p109, +110662,Nb2,EA083,"Wood, incl. bamboo",EA083-3,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +110663,Nb20,EA083,"Grass, leaves or thatch",EA083-8,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +110664,Nb21,EA083,"Wood, incl. bamboo",EA083-3,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +110665,Nb22,EA083,"Wood, incl. bamboo",EA083-3,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +110666,Nb23,EA083,"Wood, incl. bamboo",EA083-3,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +110667,Nb24,EA083,"Wood, incl. bamboo",EA083-3,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p109, +110668,Nb25,EA083,"Wood, incl. bamboo",EA083-3,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +110669,Nb26,EA083,"Wood, incl. bamboo",EA083-3,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p109, +110670,Nb27,EA083,Earth or turf,EA083-9,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +110671,Nb28,EA083,"Wood, incl. bamboo",EA083-3,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +110672,Nb29,EA083,"Wood, incl. bamboo",EA083-3,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1966, +110673,Nb3,EA083,"Wood, incl. bamboo",EA083-3,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p105, +110674,Nb30,EA083,"Wood, incl. bamboo",EA083-3,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1967, +110675,Nb31,EA083,"Wood, incl. bamboo",EA083-3,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p109, +110676,Nb32,EA083,"Wood, incl. bamboo",EA083-3,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +110677,Nb33,EA083,Bark,EA083-4,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p109, +110678,Nb34,EA083,"Wood, incl. bamboo",EA083-3,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p109, +110679,Nb35,EA083,"Wood, incl. bamboo",EA083-3,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p109, +110680,Nb36,EA083,"Wood, incl. bamboo",EA083-3,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p109, +110681,Nb37,EA083,"Grass, leaves or thatch",EA083-8,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1968, +110682,Nb38,EA083,"Wood, incl. bamboo",EA083-3,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1969, +110683,Nb39,EA083,Bark,EA083-4,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p109, +110684,Nb4,EA083,"Wood, incl. bamboo",EA083-3,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p105, +110685,Nb5,EA083,Bark,EA083-4,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p105, +110686,Nb6,EA083,"Wood, incl. bamboo",EA083-3,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p105, +110687,Nb7,EA083,"Wood, incl. bamboo",EA083-3,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p105, +110688,Nb8,EA083,"Wood, incl. bamboo",EA083-3,,lopatin1945;olson1940,,1880,EthnographicAtlas_1967_p105, +110689,Nb9,EA083,"Wood, incl. bamboo",EA083-3,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p105, +110690,Nc1,EA083,"Grass, leaves or thatch",EA083-8,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +110691,Nc10,EA083,Bark,EA083-4,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +110692,Nc11,EA083,Bark,EA083-4,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +110693,Nc12,EA083,Earth or turf,EA083-9,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +110694,Nc13,EA083,Earth or turf,EA083-9,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +110695,Nc14,EA083,Earth or turf,EA083-9,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +110696,Nc15,EA083,Bark,EA083-4,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +110697,Nc16,EA083,Bark,EA083-4,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +110698,Nc17,EA083,Earth or turf,EA083-9,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p109, +110699,Nc18,EA083,"Grass, leaves or thatch",EA083-8,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p109, +110700,Nc19,EA083,"Grass, leaves or thatch",EA083-8,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p109, +110701,Nc2,EA083,Mats,EA083-7,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +110702,Nc20,EA083,"Grass, leaves or thatch",EA083-8,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p109, +110703,Nc21,EA083,"Grass, leaves or thatch",EA083-8,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +110704,Nc22,EA083,Earth or turf,EA083-9,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +110705,Nc23,EA083,"Grass, leaves or thatch",EA083-8,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +110706,Nc24,EA083,Mats,EA083-7,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p109, +110707,Nc25,EA083,"Grass, leaves or thatch",EA083-8,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +110708,Nc26,EA083,"Grass, leaves or thatch",EA083-8,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +110709,Nc27,EA083,Mats,EA083-7,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p109, +110710,Nc28,EA083,"Grass, leaves or thatch",EA083-8,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +110711,Nc29,EA083,"Grass, leaves or thatch",EA083-8,,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p109, +110712,Nc3,EA083,"Grass, leaves or thatch",EA083-8,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +110713,Nc30,EA083,"Grass, leaves or thatch",EA083-8,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +110714,Nc31,EA083,"Grass, leaves or thatch",EA083-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p109, +110715,Nc32,EA083,"Grass, leaves or thatch",EA083-8,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p109, +110716,Nc33,EA083,"Grass, leaves or thatch",EA083-8,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +110717,Nc34,EA083,"Grass, leaves or thatch",EA083-8,,meigs1939,,1880,EthnographicAtlas_1967_p109, +110718,Nc4,EA083,Earth or turf,EA083-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +110719,Nc5,EA083,Bark,EA083-4,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p109, +110720,Nc6,EA083,Earth or turf,EA083-9,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p109, +110721,Nc7,EA083,Earth or turf,EA083-9,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +110722,Nc8,EA083,Earth or turf,EA083-9,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +110723,Nc9,EA083,Earth or turf,EA083-9,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +110724,Nd1,EA083,Earth or turf,EA083-9,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +110725,Nd10,EA083,Earth or turf,EA083-9,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +110726,Nd11,EA083,Earth or turf,EA083-9,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +110727,Nd12,EA083,Mats,EA083-7,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +110728,Nd13,EA083,Mats,EA083-7,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +110729,Nd14,EA083,Mats,EA083-7,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +110730,Nd15,EA083,Mats,EA083-7,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +110731,Nd16,EA083,Earth or turf,EA083-9,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +110732,Nd17,EA083,Earth or turf,EA083-9,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +110733,Nd18,EA083,Earth or turf,EA083-9,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +110734,Nd19,EA083,Mats,EA083-7,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p113, +110735,Nd2,EA083,Bark,EA083-4,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +110736,Nd20,EA083,Mats,EA083-7,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +110737,Nd21,EA083,"Grass, leaves or thatch",EA083-8,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +110738,Nd22,EA083,Mats,EA083-7,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +110739,Nd23,EA083,"Grass, leaves or thatch",EA083-8,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +110740,Nd24,EA083,"Grass, leaves or thatch",EA083-8,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p113, +110741,Nd25,EA083,"Grass, leaves or thatch",EA083-8,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +110742,Nd26,EA083,"Grass, leaves or thatch",EA083-8,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +110743,Nd27,EA083,Mats,EA083-7,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p113, +110744,Nd28,EA083,Mats,EA083-7,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +110745,Nd29,EA083,"Grass, leaves or thatch",EA083-8,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +110746,Nd3,EA083,"Grass, leaves or thatch",EA083-8,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p113, +110747,Nd30,EA083,"Grass, leaves or thatch",EA083-8,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +110748,Nd31,EA083,"Grass, leaves or thatch",EA083-8,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +110749,Nd32,EA083,"Grass, leaves or thatch",EA083-8,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +110750,Nd33,EA083,"Grass, leaves or thatch",EA083-8,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +110751,Nd34,EA083,"Grass, leaves or thatch",EA083-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +110752,Nd35,EA083,Bark,EA083-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +110753,Nd36,EA083,"Grass, leaves or thatch",EA083-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +110754,Nd37,EA083,Bark,EA083-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +110755,Nd38,EA083,"Grass, leaves or thatch",EA083-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +110756,Nd39,EA083,Bark,EA083-4,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +110757,Nd4,EA083,Mats,EA083-7,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +110758,Nd40,EA083,"Grass, leaves or thatch",EA083-8,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +110759,Nd41,EA083,"Grass, leaves or thatch",EA083-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +110760,Nd42,EA083,"Grass, leaves or thatch",EA083-8,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +110761,Nd43,EA083,"Grass, leaves or thatch",EA083-8,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +110762,Nd44,EA083,"Grass, leaves or thatch",EA083-8,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +110763,Nd45,EA083,"Grass, leaves or thatch",EA083-8,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +110764,Nd46,EA083,"Grass, leaves or thatch",EA083-8,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +110765,Nd47,EA083,"Grass, leaves or thatch",EA083-8,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +110766,Nd48,EA083,?,EA083-NA,,,,,, +110767,Nd49,EA083,"Grass, leaves or thatch",EA083-8,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p113, +110768,Nd5,EA083,"Grass, leaves or thatch",EA083-8,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +110769,Nd50,EA083,Bark,EA083-4,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +110770,Nd51,EA083,"Grass, leaves or thatch",EA083-8,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +110771,Nd52,EA083,"Grass, leaves or thatch",EA083-8,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p113, +110772,Nd53,EA083,"Grass, leaves or thatch",EA083-8,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +110773,Nd54,EA083,Earth or turf,EA083-9,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110774,Nd55,EA083,"Grass, leaves or thatch",EA083-8,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +110775,Nd56,EA083,"Grass, leaves or thatch",EA083-8,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +110776,Nd57,EA083,"Grass, leaves or thatch",EA083-8,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +110777,Nd58,EA083,"Grass, leaves or thatch",EA083-8,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +110778,Nd59,EA083,"Grass, leaves or thatch",EA083-8,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +110779,Nd6,EA083,"Wood, incl. bamboo",EA083-3,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +110780,Nd60,EA083,"Grass, leaves or thatch",EA083-8,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +110781,Nd61,EA083,"Grass, leaves or thatch",EA083-8,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +110782,Nd62,EA083,Hides or skins,EA083-5,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +110783,Nd63,EA083,Hides or skins,EA083-5,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +110784,Nd64,EA083,"Grass, leaves or thatch",EA083-8,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +110785,Nd65,EA083,"Grass, leaves or thatch",EA083-8,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p113, +110786,Nd66,EA083,"Grass, leaves or thatch",EA083-8,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p113, +110787,Nd67,EA083,"Grass, leaves or thatch",EA083-8,,gifford1936,,1870,EthnographicAtlas_1967_p113, +110788,Nd7,EA083,Mats,EA083-7,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +110789,Nd8,EA083,"Wood, incl. bamboo",EA083-3,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +110790,Nd9,EA083,Earth or turf,EA083-9,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +110791,Ne1,EA083,Hides or skins,EA083-5,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p113, +110792,Ne10,EA083,Earth or turf,EA083-9,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +110793,Ne11,EA083,Hides or skins,EA083-5,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p113, +110794,Ne12,EA083,Hides or skins,EA083-5,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +110795,Ne13,EA083,Hides or skins,EA083-5,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p113, +110796,Ne14,EA083,Hides or skins,EA083-5,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +110797,Ne15,EA083,Earth or turf,EA083-9,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +110798,Ne16,EA083,Hides or skins,EA083-5,,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p113, +110799,Ne17,EA083,Hides or skins,EA083-5,,lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p113, +110800,Ne18,EA083,Hides or skins,EA083-5,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p113, +110801,Ne19,EA083,Hides or skins,EA083-5,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p113, +110802,Ne2,EA083,Hides or skins,EA083-5,,mcallister1937,,1870,EthnographicAtlas_1967_p113, +110803,Ne20,EA083,Hides or skins,EA083-5,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p117, +110804,Ne21,EA083,?,EA083-NA,,,,,, +110805,Ne3,EA083,Hides or skins,EA083-5,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p113, +110806,Ne4,EA083,Hides or skins,EA083-5,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p113, +110807,Ne5,EA083,Hides or skins,EA083-5,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p113, +110808,Ne6,EA083,Earth or turf,EA083-9,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +110809,Ne7,EA083,Hides or skins,EA083-5,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p113, +110810,Ne8,EA083,Hides or skins,EA083-5,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p113, +110811,Ne9,EA083,Hides or skins,EA083-5,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p113, +110812,Nf10,EA083,Earth or turf,EA083-9,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +110813,Nf11,EA083,Earth or turf,EA083-9,,whitman1937,,1870,EthnographicAtlas_1967_p117, +110814,Nf12,EA083,Earth or turf,EA083-9,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +110815,Nf13,EA083,Bark,EA083-4,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110816,Nf14,EA083,"Grass, leaves or thatch",EA083-8,,parsons1941;swanton1942b,,,Ethnology_Vol7_No3_Jul_1968, +110817,Nf15,EA083,?,EA083-NA,,,,,, +110818,Nf2,EA083,Bark,EA083-4,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +110819,Nf3,EA083,Earth or turf,EA083-9,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +110820,Nf4,EA083,Mats,EA083-7,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p117, +110821,Nf5,EA083,"Grass, leaves or thatch",EA083-8,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p117, +110822,Nf6,EA083,Earth or turf,EA083-9,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +110823,Nf7,EA083,Bark,EA083-4,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110824,Nf8,EA083,"Grass, leaves or thatch",EA083-8,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p117, +110825,Nf9,EA083,?,EA083-NA,,,,,, +110826,Ng1,EA083,Bark,EA083-4,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p117, +110827,Ng10,EA083,Bark,EA083-4,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p117, +110828,Ng11,EA083,Earth or turf,EA083-9,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p117, +110829,Ng12,EA083,Bark,EA083-4,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +110830,Ng13,EA083,?,EA083-NA,,,,,, +110831,Ng14,EA083,?,EA083-NA,,,,,, +110832,Ng15,EA083,?,EA083-NA,,,,,, +110833,Ng2,EA083,"Grass, leaves or thatch",EA083-8,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol2_No1_Jan_1963, +110834,Ng3,EA083,Bark,EA083-4,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +110835,Ng4,EA083,?,EA083-NA,,,,,, +110836,Ng5,EA083,"Wood, incl. bamboo",EA083-3,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +110837,Ng6,EA083,Bark,EA083-4,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +110838,Ng7,EA083,"Grass, leaves or thatch",EA083-8,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p117, +110839,Ng8,EA083,"Grass, leaves or thatch",EA083-8,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +110840,Ng9,EA083,?,EA083-NA,,,,,, +110841,Nh1,EA083,"Grass, leaves or thatch",EA083-8,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p117, +110842,Nh10,EA083,Earth or turf,EA083-9,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p117, +110843,Nh11,EA083,Earth or turf,EA083-9,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p117, +110844,Nh12,EA083,Earth or turf,EA083-9,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p117, +110845,Nh13,EA083,Earth or turf,EA083-9,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p117, +110846,Nh14,EA083,Earth or turf,EA083-9,,eggan1950;parson1923,,1920,Ethnology_Vol2_No3_Jul_1963, +110847,Nh15,EA083,"Grass, leaves or thatch",EA083-8,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p117, +110848,Nh16,EA083,"Grass, leaves or thatch",EA083-8,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110849,Nh17,EA083,"Grass, leaves or thatch",EA083-8,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p117, +110850,Nh18,EA083,Earth or turf,EA083-9,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110851,Nh19,EA083,Earth or turf,EA083-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +110852,Nh2,EA083,Earth or turf,EA083-9,,dozier1954,,1950,EthnographicAtlas_1967_p117, +110853,Nh20,EA083,Earth or turf,EA083-9,,gifford1931,,1860,EthnographicAtlas_1967_p117, +110854,Nh21,EA083,Earth or turf,EA083-9,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110855,Nh22,EA083,Earth or turf,EA083-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +110856,Nh23,EA083,"Grass, leaves or thatch",EA083-8,,gifford1932a,,1870,EthnographicAtlas_1967_p117, +110857,Nh24,EA083,"Grass, leaves or thatch",EA083-8,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p117, +110858,Nh25,EA083,Earth or turf,EA083-9,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p117, +110859,Nh26,EA083,?,EA083-NA,,,,,, +110860,Nh27,EA083,?,EA083-NA,,,,,, +110861,Nh3,EA083,Earth or turf,EA083-9,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p117, +110862,Nh4,EA083,Earth or turf,EA083-9,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p117, +110863,Nh5,EA083,"Grass, leaves or thatch",EA083-8,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +110864,Nh6,EA083,Earth or turf,EA083-9,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p117, +110865,Nh7,EA083,Earth or turf,EA083-9,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p117, +110866,Nh8,EA083,Earth or turf,EA083-9,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p117, +110867,Nh9,EA083,Earth or turf,EA083-9,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p117, +110868,Ni1,EA083,"Wood, incl. bamboo",EA083-3,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p117, +110869,Ni2,EA083,Earth or turf,EA083-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +110870,Ni3,EA083,"Grass, leaves or thatch",EA083-8,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p117, +110871,Ni4,EA083,"Grass, leaves or thatch",EA083-8,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p117, +110872,Ni5,EA083,"Grass, leaves or thatch",EA083-8,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,,1570,EthnographicAtlas_1967_p117, +110873,Ni6,EA083,Earth or turf,EA083-9,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p117, +110874,Ni7,EA083,"Grass, leaves or thatch",EA083-8,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p117, +110875,Ni8,EA083,?,EA083-NA,,,,,, +110876,Ni9,EA083,?,EA083-NA,,,,,, +110877,Nj1,EA083,"Grass, leaves or thatch",EA083-8,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110878,Nj10,EA083,"Grass, leaves or thatch",EA083-8,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110879,Nj11,EA083,?,EA083-NA,,,,,, +110880,Nj12,EA083,?,EA083-NA,,,,,, +110881,Nj13,EA083,?,EA083-NA,,,,,, +110882,Nj14,EA083,?,EA083-NA,,,,,, +110883,Nj2,EA083,"Grass, leaves or thatch",EA083-8,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +110884,Nj3,EA083,"Grass, leaves or thatch",EA083-8,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p121, +110885,Nj4,EA083,"Grass, leaves or thatch",EA083-8,,kellyandpalerm1952;kriekenberg1918;palerm195253,,1940,EthnographicAtlas_1967_p121, +110886,Nj5,EA083,?,EA083-NA,,,,,, +110887,Nj6,EA083,"Grass, leaves or thatch",EA083-8,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +110888,Nj7,EA083,"Grass, leaves or thatch",EA083-8,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110889,Nj8,EA083,"Wood, incl. bamboo",EA083-3,,foster1948,,1500,EthnographicAtlas_1967_p121, +110890,Nj9,EA083,Tile or fired brick,EA083-11,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p121, +110891,Sa1,EA083,"Grass, leaves or thatch",EA083-8,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p121, +110892,Sa10,EA083,"Grass, leaves or thatch",EA083-8,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p121, +110893,Sa11,EA083,?,EA083-NA,,,,,, +110894,Sa12,EA083,"Grass, leaves or thatch",EA083-8,,stone1948,,1948,EthnographicAtlas_1967_p121, +110895,Sa13,EA083,Tile or fired brick,EA083-11,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p121, +110896,Sa14,EA083,?,EA083-NA,,,,,, +110897,Sa15,EA083,?,EA083-NA,,,,,, +110898,Sa16,EA083,?,EA083-NA,,,,,, +110899,Sa17,EA083,?,EA083-NA,,,,,, +110900,Sa2,EA083,?,EA083-NA,,,,,, +110901,Sa3,EA083,"Grass, leaves or thatch",EA083-8,,wisdom1940,,1930,EthnographicAtlas_1967_p121, +110902,Sa4,EA083,"Grass, leaves or thatch",EA083-8,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p121, +110903,Sa5,EA083,"Grass, leaves or thatch",EA083-8,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +110904,Sa6,EA083,"Grass, leaves or thatch",EA083-8,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p121, +110905,Sa7,EA083,"Grass, leaves or thatch",EA083-8,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p121, +110906,Sa8,EA083,"Grass, leaves or thatch",EA083-8,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +110907,Sa9,EA083,"Grass, leaves or thatch",EA083-8,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +110908,Sb1,EA083,"Grass, leaves or thatch",EA083-8,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p121, +110909,Sb2,EA083,"Grass, leaves or thatch",EA083-8,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +110910,Sb3,EA083,?,EA083-NA,,,,,, +110911,Sb4,EA083,"Grass, leaves or thatch",EA083-8,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +110912,Sb5,EA083,"Grass, leaves or thatch",EA083-8,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p121, +110913,Sb6,EA083,"Grass, leaves or thatch",EA083-8,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p121, +110914,Sb7,EA083,?,EA083-NA,,,,,, +110915,Sb8,EA083,"Grass, leaves or thatch",EA083-8,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +110916,Sb9,EA083,"Grass, leaves or thatch",EA083-8,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +110917,Sc1,EA083,"Grass, leaves or thatch",EA083-8,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p121, +110918,Sc10,EA083,?,EA083-NA,,,,,, +110919,Sc11,EA083,"Grass, leaves or thatch",EA083-8,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p121, +110920,Sc12,EA083,"Grass, leaves or thatch",EA083-8,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p121, +110921,Sc13,EA083,"Grass, leaves or thatch",EA083-8,,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +110922,Sc14,EA083,?,EA083-NA,,,,,, +110923,Sc15,EA083,"Grass, leaves or thatch",EA083-8,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p121, +110924,Sc16,EA083,"Grass, leaves or thatch",EA083-8,,barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p121, +110925,Sc17,EA083,"Grass, leaves or thatch",EA083-8,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +110926,Sc18,EA083,"Grass, leaves or thatch",EA083-8,,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +110927,Sc2,EA083,"Grass, leaves or thatch",EA083-8,,leedsnd,,1950,EthnographicAtlas_1967_p121, +110928,Sc3,EA083,"Grass, leaves or thatch",EA083-8,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p121, +110929,Sc4,EA083,"Grass, leaves or thatch",EA083-8,,wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p121, +110930,Sc5,EA083,"Grass, leaves or thatch",EA083-8,,farabee1918,,1900,EthnographicAtlas_1967_p121, +110931,Sc6,EA083,"Grass, leaves or thatch",EA083-8,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110932,Sc7,EA083,"Grass, leaves or thatch",EA083-8,,wilbert1959b,,1950,EthnographicAtlas_1967_p121, +110933,Sc8,EA083,"Grass, leaves or thatch",EA083-8,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +110934,Sc9,EA083,?,EA083-NA,,,,,, +110935,Sd1,EA083,"Grass, leaves or thatch",EA083-8,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110936,Sd2,EA083,"Grass, leaves or thatch",EA083-8,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p121, +110937,Sd3,EA083,"Grass, leaves or thatch",EA083-8,,nimuendaju1926,,1920,EthnographicAtlas_1967_p121, +110938,Sd4,EA083,"Grass, leaves or thatch",EA083-8,,barker1953;zerries1954,,1950,Ethnology_Vol2_No1_Jan_1963, +110939,Sd5,EA083,"Grass, leaves or thatch",EA083-8,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p121, +110940,Sd6,EA083,"Grass, leaves or thatch",EA083-8,,migliazza1964,,1960,EthnographicAtlas_1967_p121, +110941,Sd7,EA083,"Grass, leaves or thatch",EA083-8,,fock1963,,1950,EthnographicAtlas_1967_p121, +110942,Sd8,EA083,"Grass, leaves or thatch",EA083-8,,wilbert1963,,1950,EthnographicAtlas_1967_p121, +110943,Sd9,EA083,"Grass, leaves or thatch",EA083-8,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110944,Se1,EA083,"Grass, leaves or thatch",EA083-8,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +110945,Se10,EA083,"Grass, leaves or thatch",EA083-8,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p121, +110946,Se11,EA083,"Grass, leaves or thatch",EA083-8,,prost1965,,1960,EthnographicAtlas_1967_p125, +110947,Se12,EA083,?,EA083-NA,,,,,, +110948,Se2,EA083,"Grass, leaves or thatch",EA083-8,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +110949,Se3,EA083,"Grass, leaves or thatch",EA083-8,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p121, +110950,Se4,EA083,"Grass, leaves or thatch",EA083-8,,fejos1943,,1940,EthnographicAtlas_1967_p121, +110951,Se5,EA083,"Grass, leaves or thatch",EA083-8,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +110952,Se6,EA083,"Grass, leaves or thatch",EA083-8,,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p121, +110953,Se7,EA083,"Grass, leaves or thatch",EA083-8,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110954,Se8,EA083,"Grass, leaves or thatch",EA083-8,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +110955,Se9,EA083,"Grass, leaves or thatch",EA083-8,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p121, +110956,Sf1,EA083,"Grass, leaves or thatch",EA083-8,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +110957,Sf2,EA083,"Grass, leaves or thatch",EA083-8,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p125, +110958,Sf3,EA083,"Grass, leaves or thatch",EA083-8,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p125, +110959,Sf4,EA083,"Grass, leaves or thatch",EA083-8,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +110960,Sf5,EA083,"Grass, leaves or thatch",EA083-8,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +110961,Sf6,EA083,"Grass, leaves or thatch",EA083-8,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +110962,Sf7,EA083,"Grass, leaves or thatch",EA083-8,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +110963,Sf8,EA083,?,EA083-NA,,,,,, +110964,Sf9,EA083,?,EA083-NA,,,,,, +110965,Sg1,EA083,"Grass, leaves or thatch",EA083-8,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +110966,Sg2,EA083,"Grass, leaves or thatch",EA083-8,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110967,Sg3,EA083,Hides or skins,EA083-5,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +110968,Sg4,EA083,Hides or skins,EA083-5,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p125, +110969,Sg5,EA083,Hides or skins,EA083-5,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110970,Sh1,EA083,"Grass, leaves or thatch",EA083-8,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p125, +110971,Sh2,EA083,"Grass, leaves or thatch",EA083-8,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p125, +110972,Sh3,EA083,Mats,EA083-7,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p125, +110973,Sh4,EA083,"Grass, leaves or thatch",EA083-8,,oberg1949,,1940,EthnographicAtlas_1967_p125, +110974,Sh5,EA083,"Grass, leaves or thatch",EA083-8,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p125, +110975,Sh6,EA083,Mats,EA083-7,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p125, +110976,Sh7,EA083,"Grass, leaves or thatch",EA083-8,,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p125, +110977,Sh8,EA083,"Plaster, clay or similar",EA083-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +110978,Sh9,EA083,?,EA083-NA,,,,,, +110979,Si1,EA083,"Grass, leaves or thatch",EA083-8,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110980,Si10,EA083,"Grass, leaves or thatch",EA083-8,,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +110981,Si2,EA083,"Grass, leaves or thatch",EA083-8,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p125, +110982,Si3,EA083,"Grass, leaves or thatch",EA083-8,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110983,Si4,EA083,"Grass, leaves or thatch",EA083-8,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +110984,Si5,EA083,"Grass, leaves or thatch",EA083-8,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +110985,Si6,EA083,"Grass, leaves or thatch",EA083-8,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p125, +110986,Si7,EA083,"Grass, leaves or thatch",EA083-8,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p125, +110987,Si8,EA083,"Grass, leaves or thatch",EA083-8,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p125, +110988,Si9,EA083,?,EA083-NA,,,,,, +110989,Sj1,EA083,"Grass, leaves or thatch",EA083-8,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p125, +110990,Sj10,EA083,"Grass, leaves or thatch",EA083-8,,ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110991,Sj11,EA083,"Grass, leaves or thatch",EA083-8,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +110992,Sj2,EA083,"Grass, leaves or thatch",EA083-8,,nimuendaju1942,,1850,EthnographicAtlas_1967_p125, +110993,Sj3,EA083,"Grass, leaves or thatch",EA083-8,,henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p125, +110994,Sj4,EA083,"Grass, leaves or thatch",EA083-8,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p125, +110995,Sj5,EA083,"Grass, leaves or thatch",EA083-8,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +110996,Sj6,EA083,"Grass, leaves or thatch",EA083-8,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +110997,Sj7,EA083,"Grass, leaves or thatch",EA083-8,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p125, +110998,Sj8,EA083,"Grass, leaves or thatch",EA083-8,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p125, +110999,Sj9,EA083,"Grass, leaves or thatch",EA083-8,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +111000,ch12,EA083,"Wood, incl. bamboo",EA083-3,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +111001,ch13,EA083,"Wood, incl. bamboo",EA083-3,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +111002,ch14,EA083,"Grass, leaves or thatch",EA083-8,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +111003,ch15,EA083,"Wood, incl. bamboo",EA083-3,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +111004,ch16,EA083,"Grass, leaves or thatch",EA083-8,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +111005,ch17,EA083,"Grass, leaves or thatch",EA083-8,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +111006,ch18,EA083,"Grass, leaves or thatch",EA083-8,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +111007,ch19,EA083,"Wood, incl. bamboo",EA083-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +111008,ch20,EA083,"Grass, leaves or thatch",EA083-8,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +111009,ch21,EA083,"Wood, incl. bamboo",EA083-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +111010,ch22,EA083,"Wood, incl. bamboo",EA083-3,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +111011,ch23,EA083,"Wood, incl. bamboo",EA083-3,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +111012,ch24,EA083,"Wood, incl. bamboo",EA083-3,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +111013,ch25,EA083,"Grass, leaves or thatch",EA083-8,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +111014,ch26,EA083,"Wood, incl. bamboo",EA083-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +111015,ch27,EA083,"Wood, incl. bamboo",EA083-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +111016,ch28,EA083,"Grass, leaves or thatch",EA083-8,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +111017,ec12,EA083,Hides or skins,EA083-5,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +111018,ec13,EA083,Earth or turf,EA083-9,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +111019,ec14,EA083,Hides or skins,EA083-5,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +111020,ec15,EA083,"Wood, incl. bamboo",EA083-3,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +111021,ec16,EA083,Hides or skins,EA083-5,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +111022,ec17,EA083,Bark,EA083-4,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +111023,ec18,EA083,"Grass, leaves or thatch",EA083-8,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +111024,ec19,EA083,Hides or skins,EA083-5,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +111025,ec20,EA083,Bark,EA083-4,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +111026,ec21,EA083,Earth or turf,EA083-9,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +111027,Aa1,EA084,Semicircular,EA084-1,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +111028,Aa2,EA084,?,EA084-NA,,,,,, +111029,Aa3,EA084,?,EA084-NA,,,,,, +111030,Aa4,EA084,?,EA084-NA,,,,,, +111031,Aa5,EA084,?,EA084-NA,,,,,, +111032,Aa6,EA084,Rectangular,EA084-5,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +111033,Aa7,EA084,?,EA084-NA,,,,,, +111034,Aa8,EA084,Semicircular,EA084-1,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +111035,Aa9,EA084,?,EA084-NA,,,,,, +111036,Ab1,EA084,?,EA084-NA,,,,,, +111037,Ab10,EA084,Circular,EA084-2,,hunter1936,,1936,EthnographicAtlas_1967_p65, +111038,Ab11,EA084,?,EA084-NA,,,,,, +111039,Ab12,EA084,?,EA084-NA,,,,,, +111040,Ab13,EA084,?,EA084-NA,,,,,, +111041,Ab14,EA084,?,EA084-NA,,,,,, +111042,Ab15,EA084,?,EA084-NA,,,,,, +111043,Ab16,EA084,?,EA084-NA,,,,,, +111044,Ab17,EA084,?,EA084-NA,,,,,, +111045,Ab18,EA084,?,EA084-NA,,,,,, +111046,Ab19,EA084,?,EA084-NA,,,,,, +111047,Ab2,EA084,Circular,EA084-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +111048,Ab20,EA084,?,EA084-NA,,,,,, +111049,Ab21a,EA084,?,EA084-NA,,,,,, +111050,Ab21b,EA084,?,EA084-NA,,,,,, +111051,Ab22,EA084,?,EA084-NA,,,,,, +111052,Ab3,EA084,Rectangular,EA084-5,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +111053,Ab4,EA084,?,EA084-NA,,,,,, +111054,Ab5,EA084,?,EA084-NA,,,,,, +111055,Ab6,EA084,?,EA084-NA,,,,,, +111056,Ab7,EA084,?,EA084-NA,,,,,, +111057,Ab8,EA084,?,EA084-NA,,,,,, +111058,Ab9,EA084,Circular,EA084-2,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +111059,Ac1,EA084,?,EA084-NA,,,,,, +111060,Ac10,EA084,?,EA084-NA,,,,,, +111061,Ac11,EA084,Circular,EA084-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +111062,Ac12,EA084,?,EA084-NA,,,,,, +111063,Ac13,EA084,?,EA084-NA,,,,,, +111064,Ac14,EA084,Rectangular,EA084-5,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +111065,Ac15,EA084,?,EA084-NA,,,,,, +111066,Ac16,EA084,?,EA084-NA,,,,,, +111067,Ac17,EA084,?,EA084-NA,,,,,, +111068,Ac18,EA084,?,EA084-NA,,,,,, +111069,Ac19,EA084,?,EA084-NA,,,,,, +111070,Ac2,EA084,?,EA084-NA,,,,,, +111071,Ac20,EA084,?,EA084-NA,,,,,, +111072,Ac21,EA084,?,EA084-NA,,,,,, +111073,Ac22,EA084,?,EA084-NA,,,,,, +111074,Ac23,EA084,?,EA084-NA,,,,,, +111075,Ac24,EA084,?,EA084-NA,,,,,, +111076,Ac25,EA084,?,EA084-NA,,,,,, +111077,Ac26,EA084,?,EA084-NA,,,,,, +111078,Ac27,EA084,?,EA084-NA,,,,,, +111079,Ac28,EA084,?,EA084-NA,,,,,, +111080,Ac29,EA084,?,EA084-NA,,,,,, +111081,Ac3,EA084,?,EA084-NA,,,,,, +111082,Ac30,EA084,?,EA084-NA,,,,,, +111083,Ac31,EA084,?,EA084-NA,,,,,, +111084,Ac32,EA084,Circular,EA084-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +111085,Ac33,EA084,?,EA084-NA,,,,,, +111086,Ac34,EA084,?,EA084-NA,,,,,, +111087,Ac35,EA084,?,EA084-NA,,,,,, +111088,Ac36,EA084,?,EA084-NA,,,,,, +111089,Ac37,EA084,?,EA084-NA,,,,,, +111090,Ac38,EA084,?,EA084-NA,,,,,, +111091,Ac39,EA084,Rectangular,EA084-5,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +111092,Ac4,EA084,?,EA084-NA,,,,,, +111093,Ac40,EA084,Rectangular,EA084-5,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +111094,Ac41,EA084,?,EA084-NA,,,,,, +111095,Ac42,EA084,?,EA084-NA,,,,,, +111096,Ac43,EA084,?,EA084-NA,,,,,, +111097,Ac5,EA084,?,EA084-NA,,,,,, +111098,Ac6,EA084,?,EA084-NA,,,,,, +111099,Ac7,EA084,Rectangular,EA084-5,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +111100,Ac8,EA084,?,EA084-NA,,,,,, +111101,Ac9,EA084,?,EA084-NA,,,,,, +111102,Ad1,EA084,Circular,EA084-2,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +111103,Ad10,EA084,Rectangular,EA084-5,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +111104,Ad11,EA084,Rectangular,EA084-5,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +111105,Ad12,EA084,?,EA084-NA,,,,,, +111106,Ad13,EA084,Rectangular,EA084-5,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +111107,Ad14,EA084,Rectangular,EA084-5,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +111108,Ad15,EA084,Rectangular,EA084-5,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +111109,Ad16,EA084,?,EA084-NA,,,,,, +111110,Ad17,EA084,?,EA084-NA,,,,,, +111111,Ad18,EA084,?,EA084-NA,,,,,, +111112,Ad19,EA084,Circular,EA084-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +111113,Ad2,EA084,?,EA084-NA,,,,,, +111114,Ad20,EA084,Rectangular,EA084-5,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +111115,Ad21,EA084,?,EA084-NA,,,,,, +111116,Ad22,EA084,?,EA084-NA,,,,,, +111117,Ad23,EA084,?,EA084-NA,,,,,, +111118,Ad24,EA084,?,EA084-NA,,,,,, +111119,Ad25,EA084,?,EA084-NA,,,,,, +111120,Ad26,EA084,?,EA084-NA,,,,,, +111121,Ad27,EA084,Rectangular,EA084-5,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +111122,Ad28,EA084,Rectangular,EA084-5,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +111123,Ad29,EA084,?,EA084-NA,,,,,, +111124,Ad3,EA084,?,EA084-NA,,,,,, +111125,Ad30,EA084,?,EA084-NA,,,,,, +111126,Ad31,EA084,?,EA084-NA,,,,,, +111127,Ad32,EA084,?,EA084-NA,,,,,, +111128,Ad33,EA084,?,EA084-NA,,,,,, +111129,Ad34,EA084,?,EA084-NA,,,,,, +111130,Ad35,EA084,?,EA084-NA,,,,,, +111131,Ad36,EA084,?,EA084-NA,,,,,, +111132,Ad37,EA084,?,EA084-NA,,,,,, +111133,Ad38,EA084,?,EA084-NA,,,,,, +111134,Ad39,EA084,?,EA084-NA,,,,,, +111135,Ad4,EA084,Circular,EA084-2,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +111136,Ad40,EA084,?,EA084-NA,,,,,, +111137,Ad41,EA084,?,EA084-NA,,,,,, +111138,Ad42,EA084,?,EA084-NA,,,,,, +111139,Ad43,EA084,?,EA084-NA,,,,,, +111140,Ad44,EA084,?,EA084-NA,,,,,, +111141,Ad45,EA084,?,EA084-NA,,,,,, +111142,Ad46,EA084,Circular,EA084-2,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +111143,Ad47,EA084,?,EA084-NA,,,,,, +111144,Ad48,EA084,?,EA084-NA,,,,,, +111145,Ad49,EA084,?,EA084-NA,,,,,, +111146,Ad5,EA084,?,EA084-NA,,,,,, +111147,Ad50,EA084,Circular,EA084-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +111148,Ad51,EA084,Rectangular,EA084-5,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +111149,Ad6,EA084,Rectangular,EA084-5,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +111150,Ad7,EA084,?,EA084-NA,,,,,, +111151,Ad8,EA084,?,EA084-NA,,,,,, +111152,Ad9,EA084,?,EA084-NA,,,,,, +111153,Ae1,EA084,Rectangular,EA084-5,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +111154,Ae10,EA084,?,EA084-NA,,,,,, +111155,Ae11,EA084,?,EA084-NA,,,,,, +111156,Ae12,EA084,?,EA084-NA,,,,,, +111157,Ae13,EA084,?,EA084-NA,,,,,, +111158,Ae14,EA084,?,EA084-NA,,,,,, +111159,Ae15,EA084,?,EA084-NA,,,,,, +111160,Ae16,EA084,?,EA084-NA,,,,,, +111161,Ae17,EA084,?,EA084-NA,,,,,, +111162,Ae18,EA084,Rectangular,EA084-5,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +111163,Ae19,EA084,?,EA084-NA,,,,,, +111164,Ae2,EA084,?,EA084-NA,,,,,, +111165,Ae20,EA084,?,EA084-NA,,,,,, +111166,Ae21,EA084,?,EA084-NA,,,,,, +111167,Ae22,EA084,?,EA084-NA,,,,,, +111168,Ae23,EA084,?,EA084-NA,,,,,, +111169,Ae24,EA084,?,EA084-NA,,,,,, +111170,Ae25,EA084,Circular,EA084-2,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +111171,Ae26,EA084,?,EA084-NA,,,,,, +111172,Ae27,EA084,?,EA084-NA,,,,,, +111173,Ae28,EA084,Rectangular,EA084-5,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +111174,Ae29,EA084,?,EA084-NA,,,,,, +111175,Ae3,EA084,?,EA084-NA,,,,,, +111176,Ae30,EA084,?,EA084-NA,,,,,, +111177,Ae31,EA084,?,EA084-NA,,,,,, +111178,Ae32,EA084,?,EA084-NA,,,,,, +111179,Ae33,EA084,Rectangular,EA084-5,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +111180,Ae34,EA084,?,EA084-NA,,,,,, +111181,Ae35,EA084,Rectangular,EA084-5,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +111182,Ae36,EA084,?,EA084-NA,,,,,, +111183,Ae37,EA084,?,EA084-NA,,,,,, +111184,Ae38,EA084,?,EA084-NA,,,,,, +111185,Ae39,EA084,?,EA084-NA,,,,,, +111186,Ae4,EA084,?,EA084-NA,,,,,, +111187,Ae40,EA084,?,EA084-NA,,,,,, +111188,Ae41,EA084,?,EA084-NA,,,,,, +111189,Ae42,EA084,?,EA084-NA,,,,,, +111190,Ae43,EA084,?,EA084-NA,,,,,, +111191,Ae44,EA084,?,EA084-NA,,,,,, +111192,Ae45,EA084,?,EA084-NA,,,,,, +111193,Ae46,EA084,?,EA084-NA,,,,,, +111194,Ae47,EA084,?,EA084-NA,,,,,, +111195,Ae48,EA084,Rectangular,EA084-5,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +111196,Ae49,EA084,?,EA084-NA,,,,,, +111197,Ae5,EA084,?,EA084-NA,,,,,, +111198,Ae50,EA084,Circular,EA084-2,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +111199,Ae51,EA084,?,EA084-NA,,,,,, +111200,Ae52,EA084,?,EA084-NA,,,,,, +111201,Ae53,EA084,?,EA084-NA,,,,,, +111202,Ae54,EA084,?,EA084-NA,,,,,, +111203,Ae55,EA084,?,EA084-NA,,,,,, +111204,Ae56,EA084,?,EA084-NA,,,,,, +111205,Ae57,EA084,?,EA084-NA,,,,,, +111206,Ae58,EA084,?,EA084-NA,,,,,, +111207,Ae59,EA084,?,EA084-NA,,,,,, +111208,Ae6,EA084,?,EA084-NA,,,,,, +111209,Ae7,EA084,Rectangular,EA084-5,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +111210,Ae8,EA084,?,EA084-NA,,,,,, +111211,Ae9,EA084,?,EA084-NA,,,,,, +111212,Af1,EA084,?,EA084-NA,,,,,, +111213,Af10,EA084,?,EA084-NA,,,,,, +111214,Af11,EA084,?,EA084-NA,,,,,, +111215,Af12,EA084,?,EA084-NA,,,,,, +111216,Af13,EA084,Rectangular,EA084-5,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +111217,Af14,EA084,Rectangular,EA084-5,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +111218,Af15,EA084,Rectangular,EA084-5,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +111219,Af16,EA084,?,EA084-NA,,,,,, +111220,Af17,EA084,?,EA084-NA,,,,,, +111221,Af18,EA084,?,EA084-NA,,,,,, +111222,Af19,EA084,?,EA084-NA,,,,,, +111223,Af2,EA084,?,EA084-NA,,,,,, +111224,Af20,EA084,?,EA084-NA,,,,,, +111225,Af21,EA084,?,EA084-NA,,,,,, +111226,Af22,EA084,?,EA084-NA,,,,,, +111227,Af23,EA084,?,EA084-NA,,,,,, +111228,Af24,EA084,?,EA084-NA,,,,,, +111229,Af25,EA084,?,EA084-NA,,,,,, +111230,Af26,EA084,?,EA084-NA,,,,,, +111231,Af27,EA084,?,EA084-NA,,,,,, +111232,Af28,EA084,?,EA084-NA,,,,,, +111233,Af29,EA084,?,EA084-NA,,,,,, +111234,Af3,EA084,?,EA084-NA,,,,,, +111235,Af30,EA084,?,EA084-NA,,,,,, +111236,Af31,EA084,?,EA084-NA,,,,,, +111237,Af32,EA084,?,EA084-NA,,,,,, +111238,Af33,EA084,?,EA084-NA,,,,,, +111239,Af34,EA084,?,EA084-NA,,,,,, +111240,Af35,EA084,?,EA084-NA,,,,,, +111241,Af36,EA084,?,EA084-NA,,,,,, +111242,Af37,EA084,Rectangular,EA084-5,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +111243,Af38,EA084,?,EA084-NA,,,,,, +111244,Af39,EA084,?,EA084-NA,,,,,, +111245,Af4,EA084,?,EA084-NA,,,,,, +111246,Af40,EA084,?,EA084-NA,,,,,, +111247,Af41,EA084,?,EA084-NA,,,,,, +111248,Af42,EA084,?,EA084-NA,,,,,, +111249,Af43,EA084,?,EA084-NA,,,,,, +111250,Af44,EA084,?,EA084-NA,,,,,, +111251,Af45,EA084,?,EA084-NA,,,,,, +111252,Af46,EA084,?,EA084-NA,,,,,, +111253,Af47,EA084,?,EA084-NA,,,,,, +111254,Af48,EA084,Rectangular,EA084-5,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +111255,Af49,EA084,?,EA084-NA,,,,,, +111256,Af5,EA084,Rectangular,EA084-5,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +111257,Af50,EA084,?,EA084-NA,,,,,, +111258,Af51,EA084,?,EA084-NA,,,,,, +111259,Af52,EA084,Circular,EA084-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +111260,Af53,EA084,?,EA084-NA,,,,,, +111261,Af54,EA084,?,EA084-NA,,,,,, +111262,Af55,EA084,?,EA084-NA,,,,,, +111263,Af56,EA084,?,EA084-NA,,,,,, +111264,Af57,EA084,?,EA084-NA,,,,,, +111265,Af58,EA084,?,EA084-NA,,,,,, +111266,Af6,EA084,?,EA084-NA,,,,,, +111267,Af7,EA084,?,EA084-NA,,,,,, +111268,Af8,EA084,?,EA084-NA,,,,,, +111269,Af9,EA084,?,EA084-NA,,,,,, +111270,Ag1,EA084,Circular,EA084-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +111271,Ag10,EA084,?,EA084-NA,,,,,, +111272,Ag11,EA084,?,EA084-NA,,,,,, +111273,Ag12,EA084,Circular,EA084-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +111274,Ag13,EA084,Circular,EA084-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +111275,Ag14,EA084,Rectangular,EA084-5,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +111276,Ag15,EA084,Circular,EA084-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +111277,Ag16,EA084,?,EA084-NA,,,,,, +111278,Ag17,EA084,?,EA084-NA,,,,,, +111279,Ag18,EA084,?,EA084-NA,,,,,, +111280,Ag19,EA084,?,EA084-NA,,,,,, +111281,Ag2,EA084,?,EA084-NA,,,,,, +111282,Ag20,EA084,?,EA084-NA,,,,,, +111283,Ag21,EA084,?,EA084-NA,,,,,, +111284,Ag22,EA084,?,EA084-NA,,,,,, +111285,Ag23,EA084,?,EA084-NA,,,,,, +111286,Ag24,EA084,?,EA084-NA,,,,,, +111287,Ag25,EA084,Circular,EA084-2,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +111288,Ag26,EA084,Rectangular,EA084-5,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +111289,Ag27,EA084,?,EA084-NA,,,,,, +111290,Ag28,EA084,?,EA084-NA,,,,,, +111291,Ag29,EA084,?,EA084-NA,,,,,, +111292,Ag3,EA084,?,EA084-NA,,,,,, +111293,Ag30,EA084,?,EA084-NA,,,,,, +111294,Ag31,EA084,?,EA084-NA,,,,,, +111295,Ag32,EA084,Rectangular,EA084-5,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +111296,Ag33,EA084,?,EA084-NA,,,,,, +111297,Ag34,EA084,Circular,EA084-2,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +111298,Ag35,EA084,Rectangular,EA084-5,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +111299,Ag36,EA084,?,EA084-NA,,,,,, +111300,Ag37,EA084,?,EA084-NA,,,,,, +111301,Ag38,EA084,?,EA084-NA,,,,,, +111302,Ag39,EA084,Circular,EA084-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +111303,Ag4,EA084,Circular,EA084-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +111304,Ag40,EA084,Circular,EA084-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +111305,Ag41,EA084,?,EA084-NA,,,,,, +111306,Ag42,EA084,?,EA084-NA,,,,,, +111307,Ag43,EA084,?,EA084-NA,,,,,, +111308,Ag44,EA084,?,EA084-NA,,,,,, +111309,Ag45,EA084,Rectangular,EA084-5,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +111310,Ag46,EA084,?,EA084-NA,,,,,, +111311,Ag47,EA084,?,EA084-NA,,,,,, +111312,Ag48,EA084,?,EA084-NA,,,,,, +111313,Ag49,EA084,?,EA084-NA,,,,,, +111314,Ag5,EA084,?,EA084-NA,,,,,, +111315,Ag50,EA084,?,EA084-NA,,,,,, +111316,Ag51,EA084,?,EA084-NA,,,,,, +111317,Ag52,EA084,?,EA084-NA,,,,,, +111318,Ag53,EA084,?,EA084-NA,,,,,, +111319,Ag54,EA084,Rectangular,EA084-5,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +111320,Ag6,EA084,Circular,EA084-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +111321,Ag7,EA084,Circular,EA084-2,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +111322,Ag8,EA084,?,EA084-NA,,,,,, +111323,Ag9,EA084,?,EA084-NA,,,,,, +111324,Ah1,EA084,?,EA084-NA,,,,,, +111325,Ah10,EA084,?,EA084-NA,,,,,, +111326,Ah11,EA084,?,EA084-NA,,,,,, +111327,Ah12,EA084,?,EA084-NA,,,,,, +111328,Ah13,EA084,?,EA084-NA,,,,,, +111329,Ah14,EA084,?,EA084-NA,,,,,, +111330,Ah15,EA084,Rectangular,EA084-5,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +111331,Ah16,EA084,?,EA084-NA,,,,,, +111332,Ah17,EA084,?,EA084-NA,,,,,, +111333,Ah18,EA084,?,EA084-NA,,,,,, +111334,Ah19,EA084,?,EA084-NA,,,,,, +111335,Ah2,EA084,?,EA084-NA,,,,,, +111336,Ah20,EA084,Circular,EA084-2,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +111337,Ah21,EA084,?,EA084-NA,,,,,, +111338,Ah22,EA084,?,EA084-NA,,,,,, +111339,Ah23,EA084,?,EA084-NA,,,,,, +111340,Ah24,EA084,?,EA084-NA,,,,,, +111341,Ah25,EA084,Rectangular,EA084-5,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +111342,Ah26,EA084,?,EA084-NA,,,,,, +111343,Ah27,EA084,?,EA084-NA,,,,,, +111344,Ah28,EA084,?,EA084-NA,,,,,, +111345,Ah29,EA084,?,EA084-NA,,,,,, +111346,Ah3,EA084,?,EA084-NA,,,,,, +111347,Ah30,EA084,?,EA084-NA,,,,,, +111348,Ah31,EA084,?,EA084-NA,,,,,, +111349,Ah32,EA084,?,EA084-NA,,,,,, +111350,Ah33,EA084,Circular,EA084-2,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +111351,Ah34,EA084,?,EA084-NA,,,,,, +111352,Ah35,EA084,?,EA084-NA,,,,,, +111353,Ah36,EA084,?,EA084-NA,,,,,, +111354,Ah37,EA084,Circular,EA084-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +111355,Ah38,EA084,?,EA084-NA,,,,,, +111356,Ah39,EA084,?,EA084-NA,,,,,, +111357,Ah4,EA084,?,EA084-NA,,,,,, +111358,Ah5,EA084,?,EA084-NA,,,,,, +111359,Ah6,EA084,?,EA084-NA,,,,,, +111360,Ah7,EA084,?,EA084-NA,,,,,, +111361,Ah8,EA084,?,EA084-NA,,,,,, +111362,Ah9,EA084,?,EA084-NA,,,,,, +111363,Ai1,EA084,?,EA084-NA,,,,,, +111364,Ai10,EA084,?,EA084-NA,,,,,, +111365,Ai11,EA084,?,EA084-NA,,,,,, +111366,Ai12,EA084,?,EA084-NA,,,,,, +111367,Ai13,EA084,?,EA084-NA,,,,,, +111368,Ai14,EA084,?,EA084-NA,,,,,, +111369,Ai15,EA084,?,EA084-NA,,,,,, +111370,Ai16,EA084,?,EA084-NA,,,,,, +111371,Ai17,EA084,?,EA084-NA,,,,,, +111372,Ai18,EA084,Rectangular,EA084-5,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +111373,Ai19,EA084,Circular,EA084-2,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +111374,Ai2,EA084,?,EA084-NA,,,,,, +111375,Ai20,EA084,?,EA084-NA,,,,,, +111376,Ai21,EA084,Rectangular,EA084-5,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +111377,Ai22,EA084,?,EA084-NA,,,,,, +111378,Ai23,EA084,Circular,EA084-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +111379,Ai24,EA084,?,EA084-NA,,,,,, +111380,Ai25,EA084,Circular,EA084-2,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +111381,Ai26,EA084,Circular,EA084-2,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +111382,Ai27,EA084,?,EA084-NA,,,,,, +111383,Ai28,EA084,Rectangular,EA084-5,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +111384,Ai29,EA084,?,EA084-NA,,,,,, +111385,Ai3,EA084,?,EA084-NA,,,,,, +111386,Ai30,EA084,?,EA084-NA,,,,,, +111387,Ai31,EA084,?,EA084-NA,,,,,, +111388,Ai32,EA084,?,EA084-NA,,,,,, +111389,Ai33,EA084,?,EA084-NA,,,,,, +111390,Ai34,EA084,?,EA084-NA,,,,,, +111391,Ai35,EA084,?,EA084-NA,,,,,, +111392,Ai36,EA084,?,EA084-NA,,,,,, +111393,Ai37,EA084,?,EA084-NA,,,,,, +111394,Ai38,EA084,?,EA084-NA,,,,,, +111395,Ai39,EA084,?,EA084-NA,,,,,, +111396,Ai4,EA084,?,EA084-NA,,,,,, +111397,Ai40,EA084,?,EA084-NA,,,,,, +111398,Ai41,EA084,?,EA084-NA,,,,,, +111399,Ai42,EA084,?,EA084-NA,,,,,, +111400,Ai43,EA084,?,EA084-NA,,,,,, +111401,Ai44,EA084,?,EA084-NA,,,,,, +111402,Ai45,EA084,?,EA084-NA,,,,,, +111403,Ai46,EA084,?,EA084-NA,,,,,, +111404,Ai47,EA084,Circular,EA084-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +111405,Ai5,EA084,?,EA084-NA,,,,,, +111406,Ai6,EA084,?,EA084-NA,,,,,, +111407,Ai7,EA084,Circular,EA084-2,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +111408,Ai8,EA084,?,EA084-NA,,,,,, +111409,Ai9,EA084,?,EA084-NA,,,,,, +111410,Aj1,EA084,Circular,EA084-2,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +111411,Aj10,EA084,?,EA084-NA,,,,,, +111412,Aj11,EA084,?,EA084-NA,,,,,, +111413,Aj12,EA084,?,EA084-NA,,,,,, +111414,Aj13,EA084,?,EA084-NA,,,,,, +111415,Aj14,EA084,?,EA084-NA,,,,,, +111416,Aj15,EA084,?,EA084-NA,,,,,, +111417,Aj16,EA084,?,EA084-NA,,,,,, +111418,Aj17,EA084,Circular,EA084-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +111419,Aj18,EA084,?,EA084-NA,,,,,, +111420,Aj19,EA084,?,EA084-NA,,,,,, +111421,Aj2,EA084,?,EA084-NA,,,,,, +111422,Aj20,EA084,?,EA084-NA,,,,,, +111423,Aj21,EA084,?,EA084-NA,,,,,, +111424,Aj22,EA084,?,EA084-NA,,,,,, +111425,Aj23,EA084,?,EA084-NA,,,,,, +111426,Aj24,EA084,Circular,EA084-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +111427,Aj25,EA084,?,EA084-NA,,,,,, +111428,Aj26,EA084,?,EA084-NA,,,,,, +111429,Aj27,EA084,Rectangular,EA084-5,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +111430,Aj28,EA084,?,EA084-NA,,,,,, +111431,Aj29,EA084,?,EA084-NA,,,,,, +111432,Aj3,EA084,Circular,EA084-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +111433,Aj30,EA084,?,EA084-NA,,,,,, +111434,Aj31,EA084,?,EA084-NA,,,,,, +111435,Aj4,EA084,Circular,EA084-2,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +111436,Aj5,EA084,Semicircular,EA084-1,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +111437,Aj6,EA084,?,EA084-NA,,,,,, +111438,Aj7,EA084,?,EA084-NA,,,,,, +111439,Aj8,EA084,?,EA084-NA,,,,,, +111440,Aj9,EA084,?,EA084-NA,,,,,, +111441,Ca1,EA084,?,EA084-NA,,,,,, +111442,Ca10,EA084,?,EA084-NA,,,,,, +111443,Ca11,EA084,Circular,EA084-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +111444,Ca12,EA084,?,EA084-NA,,,,,, +111445,Ca13,EA084,?,EA084-NA,,,,,, +111446,Ca14,EA084,?,EA084-NA,,,,,, +111447,Ca15,EA084,?,EA084-NA,,,,,, +111448,Ca16,EA084,?,EA084-NA,,,,,, +111449,Ca17,EA084,?,EA084-NA,,,,,, +111450,Ca18,EA084,?,EA084-NA,,,,,, +111451,Ca19,EA084,?,EA084-NA,,,,,, +111452,Ca2,EA084,Circular,EA084-2,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +111453,Ca20,EA084,Circular,EA084-2,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +111454,Ca21,EA084,?,EA084-NA,,,,,, +111455,Ca22,EA084,?,EA084-NA,,,,,, +111456,Ca23,EA084,Circular,EA084-2,,jensen1959,,1950,EthnographicAtlas_1967_p81, +111457,Ca24,EA084,?,EA084-NA,,,,,, +111458,Ca25,EA084,?,EA084-NA,,,,,, +111459,Ca26,EA084,?,EA084-NA,,,,,, +111460,Ca27,EA084,Circular,EA084-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +111461,Ca28,EA084,?,EA084-NA,,,,,, +111462,Ca29,EA084,?,EA084-NA,,,,,, +111463,Ca3,EA084,?,EA084-NA,,,,,, +111464,Ca30,EA084,Elliptical,EA084-3,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +111465,Ca31,EA084,?,EA084-NA,,,,,, +111466,Ca32,EA084,?,EA084-NA,,,,,, +111467,Ca33,EA084,Circular,EA084-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +111468,Ca34,EA084,Circular,EA084-2,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +111469,Ca35,EA084,?,EA084-NA,,,,,, +111470,Ca36,EA084,?,EA084-NA,,,,,, +111471,Ca37,EA084,?,EA084-NA,Mat-covered tents used during nomadic seasons,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +111472,Ca38,EA084,?,EA084-NA,,,,,, +111473,Ca39,EA084,?,EA084-NA,,,,,, +111474,Ca4,EA084,Rectangular,EA084-5,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +111475,Ca40,EA084,?,EA084-NA,,,,,, +111476,Ca41,EA084,?,EA084-NA,,,,,, +111477,Ca42,EA084,?,EA084-NA,,,,,, +111478,Ca43,EA084,?,EA084-NA,,,,,, +111479,Ca5,EA084,?,EA084-NA,,,,,, +111480,Ca6,EA084,Rectangular,EA084-5,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +111481,Ca7,EA084,?,EA084-NA,,,,,, +111482,Ca8,EA084,?,EA084-NA,,,,,, +111483,Ca9,EA084,?,EA084-NA,,,,,, +111484,Cb1,EA084,?,EA084-NA,,,,,, +111485,Cb10,EA084,?,EA084-NA,,,,,, +111486,Cb11,EA084,?,EA084-NA,,,,,, +111487,Cb12,EA084,?,EA084-NA,,,,,, +111488,Cb13,EA084,?,EA084-NA,,,,,, +111489,Cb14,EA084,?,EA084-NA,,,,,, +111490,Cb15,EA084,Circular,EA084-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +111491,Cb16,EA084,Circular,EA084-2,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +111492,Cb17,EA084,Circular,EA084-2,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +111493,Cb18,EA084,?,EA084-NA,,,,,, +111494,Cb19,EA084,Circular,EA084-2,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +111495,Cb2,EA084,?,EA084-NA,,,,,, +111496,Cb20,EA084,?,EA084-NA,,,,,, +111497,Cb21,EA084,?,EA084-NA,,,,,, +111498,Cb22,EA084,Circular,EA084-2,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +111499,Cb23,EA084,?,EA084-NA,,,,,, +111500,Cb24,EA084,?,EA084-NA,,,,,, +111501,Cb25,EA084,?,EA084-NA,,,,,, +111502,Cb26,EA084,?,EA084-NA,,,,,, +111503,Cb27,EA084,?,EA084-NA,,,,,, +111504,Cb28,EA084,?,EA084-NA,,,,,, +111505,Cb29,EA084,?,EA084-NA,,,,,, +111506,Cb3,EA084,Quadrangular around interior,EA084-6,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +111507,Cb4,EA084,?,EA084-NA,,,,,, +111508,Cb5,EA084,?,EA084-NA,,,,,, +111509,Cb6,EA084,?,EA084-NA,,,,,, +111510,Cb7,EA084,Rectangular,EA084-5,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +111511,Cb8,EA084,?,EA084-NA,,,,,, +111512,Cb9,EA084,Rectangular,EA084-5,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +111513,Cc1,EA084,?,EA084-NA,,,,,, +111514,Cc10,EA084,Circular,EA084-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +111515,Cc11,EA084,Circular,EA084-2,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +111516,Cc12,EA084,?,EA084-NA,,,,,, +111517,Cc13,EA084,Elliptical,EA084-3,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +111518,Cc14,EA084,Rectangular,EA084-5,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +111519,Cc15,EA084,?,EA084-NA,,,,,, +111520,Cc16,EA084,Rectangular,EA084-5,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +111521,Cc17,EA084,?,EA084-NA,,,,,, +111522,Cc18,EA084,?,EA084-NA,,,,,, +111523,Cc19,EA084,?,EA084-NA,,,,,, +111524,Cc2,EA084,Circular,EA084-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +111525,Cc20,EA084,?,EA084-NA,,,,,, +111526,Cc3,EA084,?,EA084-NA,,,,,, +111527,Cc4,EA084,?,EA084-NA,,,,,, +111528,Cc5,EA084,Circular,EA084-2,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +111529,Cc6,EA084,?,EA084-NA,,,,,, +111530,Cc7,EA084,Rectangular,EA084-5,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +111531,Cc8,EA084,Circular,EA084-2,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +111532,Cc9,EA084,Rectangular,EA084-5,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +111533,Cd1,EA084,Circular,EA084-2,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +111534,Cd10,EA084,?,EA084-NA,Tents are used during transhumance,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +111535,Cd11,EA084,?,EA084-NA,,,,,, +111536,Cd12,EA084,Rectangular,EA084-5,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +111537,Cd13,EA084,?,EA084-NA,,,,,, +111538,Cd14,EA084,?,EA084-NA,,,,,, +111539,Cd15,EA084,Rectangular,EA084-5,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +111540,Cd16,EA084,?,EA084-NA,,,,,, +111541,Cd17,EA084,?,EA084-NA,,,,,, +111542,Cd18,EA084,?,EA084-NA,,,,,, +111543,Cd19,EA084,Rectangular,EA084-5,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +111544,Cd2,EA084,?,EA084-NA,,,,,, +111545,Cd20,EA084,?,EA084-NA,,,,,, +111546,Cd21,EA084,Rectangular,EA084-5,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +111547,Cd3,EA084,?,EA084-NA,,,,,, +111548,Cd4,EA084,?,EA084-NA,,,,,, +111549,Cd5,EA084,?,EA084-NA,,,,,, +111550,Cd6,EA084,?,EA084-NA,,,,,, +111551,Cd7,EA084,?,EA084-NA,,,,,, +111552,Cd8,EA084,?,EA084-NA,Skin tents are used during transhumance,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +111553,Cd9,EA084,?,EA084-NA,Skin tents are used during transhumance,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +111554,Ce1,EA084,Rectangular,EA084-5,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +111555,Ce2,EA084,?,EA084-NA,,,,,, +111556,Ce3,EA084,Quadrangular around interior,EA084-6,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +111557,Ce4,EA084,?,EA084-NA,,,,,, +111558,Ce5,EA084,Rectangular,EA084-5,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +111559,Ce6,EA084,?,EA084-NA,,,,,, +111560,Ce7,EA084,?,EA084-NA,,,,,, +111561,Ce8,EA084,?,EA084-NA,,,,,, +111562,Cf1,EA084,?,EA084-NA,,,,,, +111563,Cf2,EA084,?,EA084-NA,,,,,, +111564,Cf3,EA084,?,EA084-NA,,,,,, +111565,Cf4,EA084,?,EA084-NA,,,,,, +111566,Cf5,EA084,?,EA084-NA,,,,,, +111567,Cg1,EA084,?,EA084-NA,,,,,, +111568,Cg2,EA084,?,EA084-NA,,,,,, +111569,Cg3,EA084,?,EA084-NA,,,,,, +111570,Cg4,EA084,?,EA084-NA,,,,,, +111571,Cg5,EA084,?,EA084-NA,,,,,, +111572,Ch1,EA084,?,EA084-NA,,,,,, +111573,Ch10,EA084,?,EA084-NA,,,,,, +111574,Ch11,EA084,Rectangular,EA084-5,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +111575,Ch2,EA084,?,EA084-NA,,,,,, +111576,Ch3,EA084,?,EA084-NA,,,,,, +111577,Ch4,EA084,?,EA084-NA,,,,,, +111578,Ch5,EA084,?,EA084-NA,,,,,, +111579,Ch6,EA084,?,EA084-NA,,,,,, +111580,Ch7,EA084,?,EA084-NA,,,,,, +111581,Ch8,EA084,?,EA084-NA,,,,,, +111582,Ch9,EA084,?,EA084-NA,,,,,, +111583,Ci1,EA084,?,EA084-NA,,,,,, +111584,Ci10,EA084,?,EA084-NA,,,,,, +111585,Ci11,EA084,Rectangular,EA084-5,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +111586,Ci12,EA084,?,EA084-NA,,,,,, +111587,Ci2,EA084,?,EA084-NA,,,,,, +111588,Ci3,EA084,?,EA084-NA,,,,,, +111589,Ci4,EA084,?,EA084-NA,,,,,, +111590,Ci5,EA084,?,EA084-NA,,,,,, +111591,Ci6,EA084,?,EA084-NA,,,,,, +111592,Ci7,EA084,?,EA084-NA,,,,,, +111593,Ci8,EA084,?,EA084-NA,,,,,, +111594,Ci9,EA084,?,EA084-NA,,,,,, +111595,Cj1,EA084,Quadrangular around interior,EA084-6,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +111596,Cj10,EA084,?,EA084-NA,,,,,, +111597,Cj2,EA084,?,EA084-NA,,,,,, +111598,Cj3,EA084,?,EA084-NA,,,,,, +111599,Cj4,EA084,?,EA084-NA,,,,,, +111600,Cj5,EA084,?,EA084-NA,,,,,, +111601,Cj6,EA084,?,EA084-NA,,,,,, +111602,Cj7,EA084,Rectangular,EA084-5,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +111603,Cj8,EA084,?,EA084-NA,,,,,, +111604,Cj9,EA084,?,EA084-NA,,,,,, +111605,Ea1,EA084,?,EA084-NA,,,,,, +111606,Ea10,EA084,Circular,EA084-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +111607,Ea11,EA084,?,EA084-NA,,,,,, +111608,Ea12,EA084,?,EA084-NA,,,,,, +111609,Ea13,EA084,Quadrangular around interior,EA084-6,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +111610,Ea2,EA084,?,EA084-NA,,,,,, +111611,Ea3,EA084,Circular,EA084-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +111612,Ea4,EA084,?,EA084-NA,,,,,, +111613,Ea5,EA084,?,EA084-NA,,,,,, +111614,Ea6,EA084,Rectangular,EA084-5,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +111615,Ea7,EA084,Rectangular,EA084-5,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +111616,Ea8,EA084,?,EA084-NA,,,,,, +111617,Ea9,EA084,?,EA084-NA,,,,,, +111618,Eb1,EA084,Quadrangular around interior,EA084-6,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +111619,Eb2,EA084,?,EA084-NA,,,,,, +111620,Eb3,EA084,?,EA084-NA,,,,,, +111621,Eb4,EA084,?,EA084-NA,,,,,, +111622,Eb5,EA084,Quadrangular around interior,EA084-6,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +111623,Eb6,EA084,Rectangular,EA084-5,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +111624,Eb7,EA084,?,EA084-NA,,,,,, +111625,Eb8,EA084,?,EA084-NA,,,,,, +111626,Ec1,EA084,Rectangular,EA084-5,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +111627,Ec10,EA084,Rectangular,EA084-5,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +111628,Ec11,EA084,?,EA084-NA,,,,,, +111629,Ec2,EA084,Circular,EA084-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +111630,Ec3,EA084,Circular,EA084-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +111631,Ec4,EA084,?,EA084-NA,,,,,, +111632,Ec5,EA084,Circular,EA084-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +111633,Ec6,EA084,Rectangular,EA084-5,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +111634,Ec7,EA084,?,EA084-NA,,,,,, +111635,Ec8,EA084,Circular,EA084-2,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +111636,Ec9,EA084,?,EA084-NA,,,,,, +111637,Ed1,EA084,Quadrangular around interior,EA084-6,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +111638,Ed10,EA084,?,EA084-NA,,,,,, +111639,Ed13,EA084,?,EA084-NA,,,,,, +111640,Ed14,EA084,?,EA084-NA,,,,,, +111641,Ed15a,EA084,?,EA084-NA,,,,,, +111642,Ed15b,EA084,?,EA084-NA,,,,,, +111643,Ed16,EA084,?,EA084-NA,,,,,, +111644,Ed2,EA084,?,EA084-NA,,,,,, +111645,Ed3,EA084,?,EA084-NA,,,,,, +111646,Ed4,EA084,?,EA084-NA,,,,,, +111647,Ed5,EA084,Rectangular,EA084-5,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +111648,Ed6,EA084,?,EA084-NA,,,,,, +111649,Ed7,EA084,Rectangular,EA084-5,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +111650,Ed8,EA084,Rectangular,EA084-5,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +111651,Ed9,EA084,?,EA084-NA,,,,,, +111652,Ee1,EA084,?,EA084-NA,,,,,, +111653,Ee2,EA084,?,EA084-NA,,,,,, +111654,Ee3,EA084,Rectangular,EA084-5,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +111655,Ee4,EA084,?,EA084-NA,,,,,, +111656,Ee5,EA084,?,EA084-NA,,,,,, +111657,Ee6,EA084,?,EA084-NA,Tents of undescribed type are used during transhumance,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p89, +111658,Ee7,EA084,?,EA084-NA,,,,,, +111659,Ee8,EA084,?,EA084-NA,,,,,, +111660,Ef1,EA084,?,EA084-NA,,,,,, +111661,Ef10,EA084,?,EA084-NA,,,,,, +111662,Ef11,EA084,Rectangular,EA084-5,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +111663,Ef2,EA084,Rectangular,EA084-5,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +111664,Ef3,EA084,?,EA084-NA,,,,,, +111665,Ef4,EA084,Rectangular,EA084-5,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +111666,Ef5,EA084,Circular,EA084-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +111667,Ef6,EA084,?,EA084-NA,,,,,, +111668,Ef7,EA084,?,EA084-NA,,,,,, +111669,Ef8,EA084,?,EA084-NA,,,,,, +111670,Ef9,EA084,?,EA084-NA,,,,,, +111671,Eg1,EA084,Circular,EA084-2,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +111672,Eg10,EA084,Rectangular,EA084-5,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +111673,Eg11,EA084,?,EA084-NA,,,,,, +111674,Eg12,EA084,?,EA084-NA,,,,,, +111675,Eg13,EA084,?,EA084-NA,,,,,, +111676,Eg14,EA084,?,EA084-NA,,,,,, +111677,Eg2,EA084,?,EA084-NA,,,,,, +111678,Eg3,EA084,?,EA084-NA,,,,,, +111679,Eg4,EA084,?,EA084-NA,,,,,, +111680,Eg5,EA084,?,EA084-NA,,,,,, +111681,Eg6,EA084,Rectangular,EA084-5,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +111682,Eg7,EA084,?,EA084-NA,,,,,, +111683,Eg8,EA084,?,EA084-NA,,,,,, +111684,Eg9,EA084,?,EA084-NA,,,,,, +111685,Eh1,EA084,?,EA084-NA,,,,,, +111686,Eh10,EA084,?,EA084-NA,,,,,, +111687,Eh2,EA084,Rectangular,EA084-5,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +111688,Eh3,EA084,?,EA084-NA,,,,,, +111689,Eh4,EA084,Rectangular,EA084-5,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +111690,Eh5,EA084,Rectangular,EA084-5,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +111691,Eh6,EA084,Rectangular,EA084-5,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +111692,Eh7,EA084,Rectangular,EA084-5,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +111693,Eh8,EA084,?,EA084-NA,,,,,, +111694,Eh9,EA084,?,EA084-NA,,,,,, +111695,Ei1,EA084,?,EA084-NA,,,,,, +111696,Ei10,EA084,?,EA084-NA,,,,,, +111697,Ei11,EA084,?,EA084-NA,,,,,, +111698,Ei12,EA084,?,EA084-NA,,,,,, +111699,Ei13,EA084,?,EA084-NA,,,,,, +111700,Ei14,EA084,?,EA084-NA,,,,,, +111701,Ei15,EA084,?,EA084-NA,,,,,, +111702,Ei16,EA084,?,EA084-NA,,,,,, +111703,Ei17,EA084,?,EA084-NA,,,,,, +111704,Ei18,EA084,?,EA084-NA,,,,,, +111705,Ei19,EA084,?,EA084-NA,,,,,, +111706,Ei2,EA084,?,EA084-NA,,,,,, +111707,Ei20,EA084,?,EA084-NA,,,,,, +111708,Ei3,EA084,?,EA084-NA,,,,,, +111709,Ei4,EA084,?,EA084-NA,,,,,, +111710,Ei5,EA084,?,EA084-NA,,,,,, +111711,Ei6,EA084,?,EA084-NA,,,,,, +111712,Ei7,EA084,?,EA084-NA,,,,,, +111713,Ei8,EA084,?,EA084-NA,,,,,, +111714,Ei9,EA084,?,EA084-NA,,,,,, +111715,Ej1,EA084,?,EA084-NA,,,,,, +111716,Ej10,EA084,?,EA084-NA,,,,,, +111717,Ej11,EA084,?,EA084-NA,,,,,, +111718,Ej12,EA084,?,EA084-NA,,,,,, +111719,Ej13,EA084,?,EA084-NA,,,,,, +111720,Ej14,EA084,?,EA084-NA,,,,,, +111721,Ej15,EA084,?,EA084-NA,,,,,, +111722,Ej16,EA084,?,EA084-NA,,,,,, +111723,Ej2,EA084,?,EA084-NA,,,,,, +111724,Ej3,EA084,?,EA084-NA,,,,,, +111725,Ej4,EA084,Quadrangular around interior,EA084-6,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +111726,Ej5,EA084,?,EA084-NA,,,,,, +111727,Ej6,EA084,?,EA084-NA,,,,,, +111728,Ej7,EA084,?,EA084-NA,,,,,, +111729,Ej8,EA084,?,EA084-NA,,,,,, +111730,Ej9,EA084,Rectangular,EA084-5,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +111731,Ia1,EA084,?,EA084-NA,,,,,, +111732,Ia10,EA084,?,EA084-NA,,,,,, +111733,Ia11,EA084,?,EA084-NA,,,,,, +111734,Ia12,EA084,?,EA084-NA,,,,,, +111735,Ia13,EA084,Rectangular,EA084-5,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +111736,Ia14,EA084,Rectangular,EA084-5,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +111737,Ia15,EA084,?,EA084-NA,,,,,, +111738,Ia16,EA084,?,EA084-NA,,,,,, +111739,Ia17,EA084,?,EA084-NA,,,,,, +111740,Ia18,EA084,?,EA084-NA,,,,,, +111741,Ia2,EA084,?,EA084-NA,,,,,, +111742,Ia3,EA084,?,EA084-NA,,,,,, +111743,Ia4,EA084,?,EA084-NA,,,,,, +111744,Ia5,EA084,?,EA084-NA,,,,,, +111745,Ia6,EA084,?,EA084-NA,,,,,, +111746,Ia7,EA084,?,EA084-NA,,,,,, +111747,Ia8,EA084,?,EA084-NA,,,,,, +111748,Ia9,EA084,?,EA084-NA,,,,,, +111749,Ib1,EA084,?,EA084-NA,,,,,, +111750,Ib2,EA084,?,EA084-NA,,,,,, +111751,Ib3,EA084,?,EA084-NA,,,,,, +111752,Ib4,EA084,?,EA084-NA,,,,,, +111753,Ib5,EA084,?,EA084-NA,,,,,, +111754,Ib6,EA084,?,EA084-NA,,,,,, +111755,Ib7,EA084,?,EA084-NA,,,,,, +111756,Ib8,EA084,?,EA084-NA,,,,,, +111757,Ib9,EA084,?,EA084-NA,,,,,, +111758,Ic1,EA084,?,EA084-NA,,,,,, +111759,Ic10,EA084,?,EA084-NA,,,,,, +111760,Ic11,EA084,Rectangular,EA084-5,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +111761,Ic12,EA084,Rectangular,EA084-5,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +111762,Ic13,EA084,?,EA084-NA,,,,,, +111763,Ic2,EA084,?,EA084-NA,,,,,, +111764,Ic3,EA084,?,EA084-NA,,,,,, +111765,Ic4,EA084,?,EA084-NA,,,,,, +111766,Ic5,EA084,Rectangular,EA084-5,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +111767,Ic6,EA084,?,EA084-NA,,,,,, +111768,Ic7,EA084,?,EA084-NA,,,,,, +111769,Ic8,EA084,?,EA084-NA,,,,,, +111770,Ic9,EA084,?,EA084-NA,,,,,, +111771,Id1,EA084,?,EA084-NA,,,,,, +111772,Id10,EA084,Rectangular,EA084-5,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +111773,Id11,EA084,?,EA084-NA,,,,,, +111774,Id12,EA084,?,EA084-NA,,,,,, +111775,Id13,EA084,?,EA084-NA,,,,,, +111776,Id2,EA084,Semicircular,EA084-1,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +111777,Id3,EA084,?,EA084-NA,,,,,, +111778,Id4,EA084,?,EA084-NA,,,,,, +111779,Id5,EA084,?,EA084-NA,,,,,, +111780,Id6,EA084,?,EA084-NA,,,,,, +111781,Id7,EA084,?,EA084-NA,,,,,, +111782,Id8,EA084,Circular,EA084-2,,roth1890,,1830,EthnographicAtlas_1967_p97, +111783,Id9,EA084,?,EA084-NA,,,,,, +111784,Ie1,EA084,?,EA084-NA,,,,,, +111785,Ie10,EA084,?,EA084-NA,,,,,, +111786,Ie11,EA084,?,EA084-NA,,,,,, +111787,Ie12,EA084,?,EA084-NA,,,,,, +111788,Ie13,EA084,?,EA084-NA,,,,,, +111789,Ie14,EA084,?,EA084-NA,,,,,, +111790,Ie15,EA084,?,EA084-NA,,,,,, +111791,Ie16,EA084,Rectangular,EA084-5,,williams194041,,1940,EthnographicAtlas_1967_p97, +111792,Ie17,EA084,?,EA084-NA,,,,,, +111793,Ie18,EA084,Rectangular,EA084-5,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +111794,Ie19,EA084,?,EA084-NA,,,,,, +111795,Ie2,EA084,?,EA084-NA,,,,,, +111796,Ie20,EA084,?,EA084-NA,,,,,, +111797,Ie21,EA084,?,EA084-NA,,,,,, +111798,Ie22,EA084,?,EA084-NA,,,,,, +111799,Ie23,EA084,?,EA084-NA,,,,,, +111800,Ie24,EA084,?,EA084-NA,,,,,, +111801,Ie25,EA084,?,EA084-NA,,,,,, +111802,Ie26,EA084,?,EA084-NA,,,,,, +111803,Ie27,EA084,?,EA084-NA,,,,,, +111804,Ie28,EA084,?,EA084-NA,,,,,, +111805,Ie29,EA084,?,EA084-NA,,,,,, +111806,Ie3,EA084,?,EA084-NA,,,,,, +111807,Ie30,EA084,?,EA084-NA,,,,,, +111808,Ie31,EA084,?,EA084-NA,,,,,, +111809,Ie32,EA084,?,EA084-NA,,,,,, +111810,Ie33,EA084,?,EA084-NA,,,,,, +111811,Ie34,EA084,?,EA084-NA,,,,,, +111812,Ie35,EA084,?,EA084-NA,,,,,, +111813,Ie36,EA084,?,EA084-NA,,,,,, +111814,Ie37,EA084,?,EA084-NA,,,,,, +111815,Ie38,EA084,Rectangular,EA084-5,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +111816,Ie39,EA084,Rectangular,EA084-5,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +111817,Ie4,EA084,?,EA084-NA,,,,,, +111818,Ie5,EA084,Rectangular,EA084-5,,williams1936,,1930,EthnographicAtlas_1967_p97, +111819,Ie6,EA084,?,EA084-NA,,,,,, +111820,Ie7,EA084,?,EA084-NA,,,,,, +111821,Ie8,EA084,?,EA084-NA,,,,,, +111822,Ie9,EA084,?,EA084-NA,,,,,, +111823,If1,EA084,Rectangular,EA084-5,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +111824,If10,EA084,?,EA084-NA,,,,,, +111825,If11,EA084,?,EA084-NA,,,,,, +111826,If12,EA084,?,EA084-NA,,,,,, +111827,If13,EA084,?,EA084-NA,,,,,, +111828,If14,EA084,Rectangular,EA084-5,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +111829,If15,EA084,Rectangular,EA084-5,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +111830,If16,EA084,?,EA084-NA,,,,,, +111831,If17,EA084,?,EA084-NA,,,,,, +111832,If2,EA084,?,EA084-NA,,,,,, +111833,If3,EA084,?,EA084-NA,,,,,, +111834,If4,EA084,Rectangular,EA084-5,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +111835,If5,EA084,?,EA084-NA,,,,,, +111836,If6,EA084,?,EA084-NA,,,,,, +111837,If7,EA084,?,EA084-NA,,,,,, +111838,If8,EA084,?,EA084-NA,,,,,, +111839,If9,EA084,?,EA084-NA,,,,,, +111840,Ig1,EA084,Rectangular,EA084-5,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +111841,Ig10,EA084,?,EA084-NA,,,,,, +111842,Ig11,EA084,Rectangular,EA084-5,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +111843,Ig12,EA084,?,EA084-NA,,,,,, +111844,Ig13,EA084,?,EA084-NA,,,,,, +111845,Ig14,EA084,?,EA084-NA,,,,,, +111846,Ig15,EA084,?,EA084-NA,,,,,, +111847,Ig16,EA084,?,EA084-NA,,,,,, +111848,Ig17,EA084,?,EA084-NA,,,,,, +111849,Ig18,EA084,?,EA084-NA,,,,,, +111850,Ig19,EA084,?,EA084-NA,,,,,, +111851,Ig2,EA084,?,EA084-NA,,,,,, +111852,Ig20,EA084,?,EA084-NA,,,,,, +111853,Ig21,EA084,?,EA084-NA,,,,,, +111854,Ig3,EA084,Rectangular,EA084-5,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +111855,Ig4,EA084,?,EA084-NA,,,,,, +111856,Ig5,EA084,?,EA084-NA,,,,,, +111857,Ig6,EA084,?,EA084-NA,,,,,, +111858,Ig7,EA084,?,EA084-NA,,,,,, +111859,Ig8,EA084,?,EA084-NA,,,,,, +111860,Ig9,EA084,?,EA084-NA,,,,,, +111861,Ih1,EA084,?,EA084-NA,,,,,, +111862,Ih10,EA084,?,EA084-NA,,,,,, +111863,Ih11,EA084,?,EA084-NA,,,,,, +111864,Ih12,EA084,?,EA084-NA,,,,,, +111865,Ih13,EA084,?,EA084-NA,,,,,, +111866,Ih14,EA084,?,EA084-NA,,,,,, +111867,Ih2,EA084,?,EA084-NA,,,,,, +111868,Ih3,EA084,Rectangular,EA084-5,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +111869,Ih4,EA084,?,EA084-NA,,,,,, +111870,Ih5,EA084,Rectangular,EA084-5,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +111871,Ih6,EA084,?,EA084-NA,,,,,, +111872,Ih7,EA084,?,EA084-NA,,,,,, +111873,Ih8,EA084,?,EA084-NA,,,,,, +111874,Ih9,EA084,?,EA084-NA,,,,,, +111875,Ii1,EA084,?,EA084-NA,,,,,, +111876,Ii10,EA084,?,EA084-NA,,,,,, +111877,Ii12,EA084,?,EA084-NA,,,,,, +111878,Ii13,EA084,?,EA084-NA,,,,,, +111879,Ii14,EA084,?,EA084-NA,,,,,, +111880,Ii2,EA084,?,EA084-NA,,,,,, +111881,Ii3,EA084,?,EA084-NA,,,,,, +111882,Ii4,EA084,?,EA084-NA,,,,,, +111883,Ii5,EA084,?,EA084-NA,,,,,, +111884,Ii6,EA084,?,EA084-NA,,,,,, +111885,Ii7,EA084,?,EA084-NA,,,,,, +111886,Ii8,EA084,?,EA084-NA,,,,,, +111887,Ii9,EA084,?,EA084-NA,,,,,, +111888,Ij1,EA084,?,EA084-NA,,,,,, +111889,Ij10,EA084,?,EA084-NA,,,,,, +111890,Ij2,EA084,?,EA084-NA,,,,,, +111891,Ij3,EA084,?,EA084-NA,,,,,, +111892,Ij4,EA084,?,EA084-NA,,,,,, +111893,Ij5,EA084,?,EA084-NA,,,,,, +111894,Ij6,EA084,Rectangular,EA084-5,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +111895,Ij7,EA084,?,EA084-NA,,,,,, +111896,Ij8,EA084,?,EA084-NA,,,,,, +111897,Ij9,EA084,Elliptical,EA084-3,,metraux1940,,1860,EthnographicAtlas_1967_p105, +111898,Na1,EA084,Rectangular,EA084-5,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +111899,Na10,EA084,Rectangular,EA084-5,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +111900,Na11,EA084,Polygonal,EA084-4,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +111901,Na12,EA084,Circular,EA084-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +111902,Na13,EA084,Elliptical,EA084-3,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +111903,Na14,EA084,Elliptical,EA084-3,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +111904,Na15,EA084,Rectangular,EA084-5,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +111905,Na16,EA084,Rectangular,EA084-5,,osgood1931,,1860,EthnographicAtlas_1967_p105, +111906,Na17,EA084,Rectangular,EA084-5,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +111907,Na19,EA084,Circular,EA084-2,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +111908,Na2,EA084,Circular,EA084-2,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +111909,Na20,EA084,Rectangular,EA084-5,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +111910,Na21,EA084,Rectangular,EA084-5,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +111911,Na22,EA084,Rectangular,EA084-5,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +111912,Na23,EA084,Rectangular,EA084-5,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +111913,Na24,EA084,Semicircular,EA084-1,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +111914,Na25,EA084,Rectangular,EA084-5,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +111915,Na26,EA084,?,EA084-NA,,,,,, +111916,Na27,EA084,?,EA084-NA,,,,,, +111917,Na28,EA084,?,EA084-NA,,,,,, +111918,Na29,EA084,?,EA084-NA,,,,,, +111919,Na3,EA084,Elliptical,EA084-3,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +111920,Na30,EA084,?,EA084-NA,,,,,, +111921,Na31,EA084,Elliptical,EA084-3,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +111922,Na32,EA084,Circular,EA084-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +111923,Na33,EA084,?,EA084-NA,,,,,, +111924,Na34,EA084,Circular,EA084-2,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +111925,Na35,EA084,Rectangular,EA084-5,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +111926,Na36,EA084,Rectangular,EA084-5,"Also a conical bark tipi, circular in shape (code ""2"")",barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +111927,Na37,EA084,?,EA084-NA,,,,,, +111928,Na38,EA084,Elliptical,EA084-3,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +111929,Na39,EA084,Circular,EA084-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +111930,Na4,EA084,Rectangular,EA084-5,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +111931,Na40,EA084,Circular,EA084-2,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +111932,Na41,EA084,?,EA084-NA,,,,,, +111933,Na42,EA084,?,EA084-NA,,,,,, +111934,Na43,EA084,Rectangular,EA084-5,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +111935,Na44,EA084,?,EA084-NA,Tents of undescribed type are used in summer camps,graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +111936,Na45,EA084,?,EA084-NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +111937,Na5,EA084,?,EA084-NA,,,,,, +111938,Na6,EA084,?,EA084-NA,,,,,, +111939,Na7,EA084,Circular,EA084-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +111940,Na8,EA084,Rectangular,EA084-5,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +111941,Na9,EA084,?,EA084-NA,,,,,, +111942,Nb1,EA084,?,EA084-NA,,,,,, +111943,Nb10,EA084,Rectangular,EA084-5,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +111944,Nb11,EA084,?,EA084-NA,,,,,, +111945,Nb12,EA084,Circular,EA084-2,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +111946,Nb13,EA084,?,EA084-NA,,,,,, +111947,Nb14,EA084,?,EA084-NA,,,,,, +111948,Nb15,EA084,Rectangular,EA084-5,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +111949,Nb16,EA084,Rectangular,EA084-5,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +111950,Nb17,EA084,Rectangular,EA084-5,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +111951,Nb18,EA084,?,EA084-NA,,,,,, +111952,Nb19,EA084,?,EA084-NA,,,,,, +111953,Nb2,EA084,Rectangular,EA084-5,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +111954,Nb20,EA084,?,EA084-NA,,,,,, +111955,Nb21,EA084,Rectangular,EA084-5,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +111956,Nb22,EA084,Circular,EA084-2,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +111957,Nb23,EA084,Rectangular,EA084-5,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +111958,Nb24,EA084,?,EA084-NA,,,,,, +111959,Nb25,EA084,Rectangular,EA084-5,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +111960,Nb26,EA084,?,EA084-NA,,,,,, +111961,Nb27,EA084,Rectangular,EA084-5,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +111962,Nb28,EA084,Rectangular,EA084-5,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +111963,Nb29,EA084,?,EA084-NA,,,,,, +111964,Nb3,EA084,?,EA084-NA,,,,,, +111965,Nb30,EA084,?,EA084-NA,,,,,, +111966,Nb31,EA084,?,EA084-NA,,,,,, +111967,Nb32,EA084,?,EA084-NA,A windbreak of brush was used in the summer,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p109, +111968,Nb33,EA084,?,EA084-NA,,,,,, +111969,Nb34,EA084,?,EA084-NA,,,,,, +111970,Nb35,EA084,?,EA084-NA,,,,,, +111971,Nb36,EA084,?,EA084-NA,,,,,, +111972,Nb37,EA084,?,EA084-NA,,,,,, +111973,Nb38,EA084,?,EA084-NA,,,,,, +111974,Nb39,EA084,?,EA084-NA,,,,,, +111975,Nb4,EA084,?,EA084-NA,,,,,, +111976,Nb5,EA084,?,EA084-NA,,,,,, +111977,Nb6,EA084,?,EA084-NA,,,,,, +111978,Nb7,EA084,?,EA084-NA,,,,,, +111979,Nb8,EA084,?,EA084-NA,,,,,, +111980,Nb9,EA084,?,EA084-NA,,,,,, +111981,Nc1,EA084,Circular,EA084-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +111982,Nc10,EA084,Circular,EA084-2,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +111983,Nc11,EA084,Circular,EA084-2,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +111984,Nc12,EA084,Circular,EA084-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +111985,Nc13,EA084,Circular,EA084-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +111986,Nc14,EA084,Circular,EA084-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +111987,Nc15,EA084,Circular,EA084-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +111988,Nc16,EA084,?,EA084-NA,,,,,, +111989,Nc17,EA084,?,EA084-NA,,,,,, +111990,Nc18,EA084,?,EA084-NA,,,,,, +111991,Nc19,EA084,?,EA084-NA,,,,,, +111992,Nc2,EA084,Rectangular,EA084-5,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +111993,Nc20,EA084,?,EA084-NA,,,,,, +111994,Nc21,EA084,?,EA084-NA,,,,,, +111995,Nc22,EA084,Rectangular,EA084-5,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +111996,Nc23,EA084,Circular,EA084-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +111997,Nc24,EA084,?,EA084-NA,,,,,, +111998,Nc25,EA084,Semicircular,EA084-1,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +111999,Nc26,EA084,Rectangular,EA084-5,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +112000,Nc27,EA084,?,EA084-NA,,,,,, +112001,Nc28,EA084,?,EA084-NA,,,,,, +112002,Nc29,EA084,?,EA084-NA,,,,,, +112003,Nc3,EA084,Circular,EA084-2,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +112004,Nc30,EA084,?,EA084-NA,,,,,, +112005,Nc31,EA084,?,EA084-NA,,,,,, +112006,Nc32,EA084,?,EA084-NA,,,,,, +112007,Nc33,EA084,Rectangular,EA084-5,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +112008,Nc34,EA084,?,EA084-NA,,,,,, +112009,Nc4,EA084,Circular,EA084-2,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +112010,Nc5,EA084,?,EA084-NA,,,,,, +112011,Nc6,EA084,?,EA084-NA,,,,,, +112012,Nc7,EA084,Circular,EA084-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +112013,Nc8,EA084,Circular,EA084-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +112014,Nc9,EA084,Rectangular,EA084-5,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +112015,Nd1,EA084,Circular,EA084-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +112016,Nd10,EA084,Rectangular,EA084-5,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +112017,Nd11,EA084,Circular,EA084-2,"Also rectangular (code ""5""), subterranean houses where walls are indistinguishable from gabled roof, made of mats/latticework",ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +112018,Nd12,EA084,Circular,EA084-2,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +112019,Nd13,EA084,Circular,EA084-2,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +112020,Nd14,EA084,Elliptical,EA084-3,"Also circular houses (code ""2"") with ground-level floors, walls indistinguishable from conical-shaped roof made of grass/thatch or hides/skins",ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +112021,Nd15,EA084,Circular,EA084-2,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +112022,Nd16,EA084,Elliptical,EA084-3,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +112023,Nd17,EA084,Rectangular,EA084-5,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +112024,Nd18,EA084,Rectangular,EA084-5,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +112025,Nd19,EA084,?,EA084-NA,,,,,, +112026,Nd2,EA084,Circular,EA084-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +112027,Nd20,EA084,Circular,EA084-2,But buffalo-skin tipi covers came into wide use after 1805,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +112028,Nd21,EA084,?,EA084-NA,,,,,, +112029,Nd22,EA084,Circular,EA084-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +112030,Nd23,EA084,?,EA084-NA,,,,,, +112031,Nd24,EA084,?,EA084-NA,,,,,, +112032,Nd25,EA084,?,EA084-NA,,,,,, +112033,Nd26,EA084,Rectangular,EA084-5,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +112034,Nd27,EA084,?,EA084-NA,,,,,, +112035,Nd28,EA084,Circular,EA084-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +112036,Nd29,EA084,Circular,EA084-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +112037,Nd3,EA084,?,EA084-NA,,,,,, +112038,Nd30,EA084,Circular,EA084-2,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +112039,Nd31,EA084,?,EA084-NA,,,,,, +112040,Nd32,EA084,Circular,EA084-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +112041,Nd33,EA084,Circular,EA084-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +112042,Nd34,EA084,Circular,EA084-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +112043,Nd35,EA084,?,EA084-NA,,,,,, +112044,Nd36,EA084,Circular,EA084-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +112045,Nd37,EA084,?,EA084-NA,,,,,, +112046,Nd38,EA084,Circular,EA084-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +112047,Nd39,EA084,?,EA084-NA,,,,,, +112048,Nd4,EA084,Circular,EA084-2,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +112049,Nd40,EA084,?,EA084-NA,,,,,, +112050,Nd41,EA084,Circular,EA084-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +112051,Nd42,EA084,?,EA084-NA,,,,,, +112052,Nd43,EA084,Circular,EA084-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +112053,Nd44,EA084,Circular,EA084-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +112054,Nd45,EA084,Circular,EA084-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +112055,Nd46,EA084,Circular,EA084-2,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +112056,Nd47,EA084,?,EA084-NA,,,,,, +112057,Nd48,EA084,?,EA084-NA,,,,,, +112058,Nd49,EA084,?,EA084-NA,,,,,, +112059,Nd5,EA084,Circular,EA084-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +112060,Nd50,EA084,?,EA084-NA,,,,,, +112061,Nd51,EA084,?,EA084-NA,,,,,, +112062,Nd52,EA084,?,EA084-NA,,,,,, +112063,Nd53,EA084,?,EA084-NA,,,,,, +112064,Nd54,EA084,?,EA084-NA,,,,,, +112065,Nd55,EA084,?,EA084-NA,,,,,, +112066,Nd56,EA084,Circular,EA084-2,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +112067,Nd57,EA084,?,EA084-NA,,,,,, +112068,Nd58,EA084,Circular,EA084-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +112069,Nd59,EA084,Circular,EA084-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +112070,Nd6,EA084,Circular,EA084-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +112071,Nd60,EA084,?,EA084-NA,,,,,, +112072,Nd61,EA084,Circular,EA084-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +112073,Nd62,EA084,Circular,EA084-2,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +112074,Nd63,EA084,Circular,EA084-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +112075,Nd64,EA084,Circular,EA084-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +112076,Nd65,EA084,?,EA084-NA,,,,,, +112077,Nd66,EA084,?,EA084-NA,,,,,, +112078,Nd67,EA084,Rectangular,EA084-5,,gifford1936,,1870,EthnographicAtlas_1967_p113, +112079,Nd7,EA084,Circular,EA084-2,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +112080,Nd8,EA084,Circular,EA084-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +112081,Nd9,EA084,Rectangular,EA084-5,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +112082,Ne1,EA084,?,EA084-NA,,,,,, +112083,Ne10,EA084,Circular,EA084-2,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +112084,Ne11,EA084,?,EA084-NA,,,,,, +112085,Ne12,EA084,?,EA084-NA,,,,,, +112086,Ne13,EA084,?,EA084-NA,,,,,, +112087,Ne14,EA084,Circular,EA084-2,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +112088,Ne15,EA084,Circular,EA084-2,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +112089,Ne16,EA084,?,EA084-NA,,,,,, +112090,Ne17,EA084,?,EA084-NA,,,,,, +112091,Ne18,EA084,?,EA084-NA,,,,,, +112092,Ne19,EA084,?,EA084-NA,,,,,, +112093,Ne2,EA084,?,EA084-NA,,,,,, +112094,Ne20,EA084,?,EA084-NA,,,,,, +112095,Ne21,EA084,?,EA084-NA,,,,,, +112096,Ne3,EA084,?,EA084-NA,,,,,, +112097,Ne4,EA084,?,EA084-NA,,,,,, +112098,Ne5,EA084,?,EA084-NA,,,,,, +112099,Ne6,EA084,Circular,EA084-2,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +112100,Ne7,EA084,?,EA084-NA,,,,,, +112101,Ne8,EA084,?,EA084-NA,,,,,, +112102,Ne9,EA084,?,EA084-NA,,,,,, +112103,Nf10,EA084,Circular,EA084-2,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +112104,Nf11,EA084,Circular,EA084-2,,whitman1937,,1870,EthnographicAtlas_1967_p117, +112105,Nf12,EA084,Circular,EA084-2,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +112106,Nf13,EA084,Rectangular,EA084-5,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112107,Nf14,EA084,?,EA084-NA,,,,,, +112108,Nf15,EA084,?,EA084-NA,,,,,, +112109,Nf2,EA084,Circular,EA084-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +112110,Nf3,EA084,Circular,EA084-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +112111,Nf4,EA084,?,EA084-NA,,,,,, +112112,Nf5,EA084,?,EA084-NA,,,,,, +112113,Nf6,EA084,Circular,EA084-2,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +112114,Nf7,EA084,Circular,EA084-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112115,Nf8,EA084,?,EA084-NA,,,,,, +112116,Nf9,EA084,?,EA084-NA,,,,,, +112117,Ng1,EA084,?,EA084-NA,,,,,, +112118,Ng10,EA084,?,EA084-NA,,,,,, +112119,Ng11,EA084,?,EA084-NA,,,,,, +112120,Ng12,EA084,Rectangular,EA084-5,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +112121,Ng13,EA084,?,EA084-NA,,,,,, +112122,Ng14,EA084,?,EA084-NA,,,,,, +112123,Ng15,EA084,?,EA084-NA,,,,,, +112124,Ng2,EA084,?,EA084-NA,,,,,, +112125,Ng3,EA084,Circular,EA084-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +112126,Ng4,EA084,Circular,EA084-2,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +112127,Ng5,EA084,Circular,EA084-2,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +112128,Ng6,EA084,Rectangular,EA084-5,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +112129,Ng7,EA084,?,EA084-NA,,,,,, +112130,Ng8,EA084,Rectangular,EA084-5,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +112131,Ng9,EA084,?,EA084-NA,,,,,, +112132,Nh1,EA084,?,EA084-NA,,,,,, +112133,Nh10,EA084,?,EA084-NA,,,,,, +112134,Nh11,EA084,?,EA084-NA,,,,,, +112135,Nh12,EA084,?,EA084-NA,,,,,, +112136,Nh13,EA084,?,EA084-NA,,,,,, +112137,Nh14,EA084,?,EA084-NA,,,,,, +112138,Nh15,EA084,?,EA084-NA,,,,,, +112139,Nh16,EA084,Circular,EA084-2,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112140,Nh17,EA084,?,EA084-NA,,,,,, +112141,Nh18,EA084,?,EA084-NA,,,,,, +112142,Nh19,EA084,Rectangular,EA084-5,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +112143,Nh2,EA084,?,EA084-NA,,,,,, +112144,Nh20,EA084,?,EA084-NA,,,,,, +112145,Nh21,EA084,?,EA084-NA,,,,,, +112146,Nh22,EA084,Rectangular,EA084-5,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +112147,Nh23,EA084,?,EA084-NA,,,,,, +112148,Nh24,EA084,?,EA084-NA,,,,,, +112149,Nh25,EA084,?,EA084-NA,,,,,, +112150,Nh26,EA084,?,EA084-NA,,,,,, +112151,Nh27,EA084,?,EA084-NA,,,,,, +112152,Nh3,EA084,?,EA084-NA,,,,,, +112153,Nh4,EA084,?,EA084-NA,,,,,, +112154,Nh5,EA084,Rectangular,EA084-5,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +112155,Nh6,EA084,?,EA084-NA,,,,,, +112156,Nh7,EA084,?,EA084-NA,,,,,, +112157,Nh8,EA084,?,EA084-NA,,,,,, +112158,Nh9,EA084,?,EA084-NA,,,,,, +112159,Ni1,EA084,?,EA084-NA,,,,,, +112160,Ni2,EA084,Rectangular,EA084-5,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +112161,Ni3,EA084,?,EA084-NA,,,,,, +112162,Ni4,EA084,?,EA084-NA,,,,,, +112163,Ni5,EA084,?,EA084-NA,,,,,, +112164,Ni6,EA084,?,EA084-NA,,,,,, +112165,Ni7,EA084,?,EA084-NA,,,,,, +112166,Ni8,EA084,?,EA084-NA,,,,,, +112167,Ni9,EA084,?,EA084-NA,,,,,, +112168,Nj1,EA084,?,EA084-NA,,,,,, +112169,Nj10,EA084,?,EA084-NA,,,,,, +112170,Nj11,EA084,?,EA084-NA,,,,,, +112171,Nj12,EA084,?,EA084-NA,,,,,, +112172,Nj13,EA084,?,EA084-NA,,,,,, +112173,Nj14,EA084,?,EA084-NA,,,,,, +112174,Nj2,EA084,Quadrangular around interior,EA084-6,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +112175,Nj3,EA084,?,EA084-NA,,,,,, +112176,Nj4,EA084,?,EA084-NA,,,,,, +112177,Nj5,EA084,?,EA084-NA,,,,,, +112178,Nj6,EA084,?,EA084-NA,,,,,, +112179,Nj7,EA084,?,EA084-NA,,,,,, +112180,Nj8,EA084,Rectangular,EA084-5,,foster1948,,1500,EthnographicAtlas_1967_p121, +112181,Nj9,EA084,?,EA084-NA,,,,,, +112182,Sa1,EA084,?,EA084-NA,,,,,, +112183,Sa10,EA084,?,EA084-NA,,,,,, +112184,Sa11,EA084,?,EA084-NA,,,,,, +112185,Sa12,EA084,?,EA084-NA,,,,,, +112186,Sa13,EA084,?,EA084-NA,,,,,, +112187,Sa14,EA084,?,EA084-NA,,,,,, +112188,Sa15,EA084,?,EA084-NA,,,,,, +112189,Sa16,EA084,?,EA084-NA,,,,,, +112190,Sa17,EA084,?,EA084-NA,,,,,, +112191,Sa2,EA084,?,EA084-NA,,,,,, +112192,Sa3,EA084,?,EA084-NA,,,,,, +112193,Sa4,EA084,?,EA084-NA,,,,,, +112194,Sa5,EA084,Rectangular,EA084-5,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +112195,Sa6,EA084,?,EA084-NA,,,,,, +112196,Sa7,EA084,?,EA084-NA,,,,,, +112197,Sa8,EA084,Rectangular,EA084-5,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +112198,Sa9,EA084,Rectangular,EA084-5,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +112199,Sb1,EA084,?,EA084-NA,,,,,, +112200,Sb2,EA084,Circular,EA084-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +112201,Sb3,EA084,?,EA084-NA,,,,,, +112202,Sb4,EA084,?,EA084-NA,,,,,, +112203,Sb5,EA084,?,EA084-NA,,,,,, +112204,Sb6,EA084,?,EA084-NA,,,,,, +112205,Sb7,EA084,?,EA084-NA,,,,,, +112206,Sb8,EA084,Rectangular,EA084-5,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +112207,Sb9,EA084,?,EA084-NA,,,,,, +112208,Sc1,EA084,?,EA084-NA,,,,,, +112209,Sc10,EA084,?,EA084-NA,,,,,, +112210,Sc11,EA084,?,EA084-NA,,,,,, +112211,Sc12,EA084,?,EA084-NA,,,,,, +112212,Sc13,EA084,?,EA084-NA,,,,,, +112213,Sc14,EA084,?,EA084-NA,,,,,, +112214,Sc15,EA084,?,EA084-NA,,,,,, +112215,Sc16,EA084,?,EA084-NA,,,,,, +112216,Sc17,EA084,?,EA084-NA,,,,,, +112217,Sc18,EA084,?,EA084-NA,,,,,, +112218,Sc2,EA084,?,EA084-NA,,,,,, +112219,Sc3,EA084,?,EA084-NA,,,,,, +112220,Sc4,EA084,?,EA084-NA,,,,,, +112221,Sc5,EA084,Rectangular,EA084-5,,farabee1918,,1900,EthnographicAtlas_1967_p121, +112222,Sc6,EA084,?,EA084-NA,,,,,, +112223,Sc7,EA084,?,EA084-NA,,,,,, +112224,Sc8,EA084,Rectangular,EA084-5,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +112225,Sc9,EA084,?,EA084-NA,,,,,, +112226,Sd1,EA084,Rectangular,EA084-5,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112227,Sd2,EA084,?,EA084-NA,,,,,, +112228,Sd3,EA084,?,EA084-NA,,,,,, +112229,Sd4,EA084,?,EA084-NA,,,,,, +112230,Sd5,EA084,?,EA084-NA,,,,,, +112231,Sd6,EA084,?,EA084-NA,,,,,, +112232,Sd7,EA084,Rectangular,EA084-5,,fock1963,,1950,EthnographicAtlas_1967_p121, +112233,Sd8,EA084,?,EA084-NA,,,,,, +112234,Sd9,EA084,?,EA084-NA,,,,,, +112235,Se1,EA084,Rectangular,EA084-5,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +112236,Se10,EA084,?,EA084-NA,,,,,, +112237,Se11,EA084,?,EA084-NA,,,,,, +112238,Se12,EA084,?,EA084-NA,,,,,, +112239,Se2,EA084,Rectangular,EA084-5,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +112240,Se3,EA084,?,EA084-NA,,,,,, +112241,Se4,EA084,?,EA084-NA,,,,,, +112242,Se5,EA084,Rectangular,EA084-5,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +112243,Se6,EA084,?,EA084-NA,,,,,, +112244,Se7,EA084,?,EA084-NA,,,,,, +112245,Se8,EA084,Elliptical,EA084-3,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +112246,Se9,EA084,?,EA084-NA,,,,,, +112247,Sf1,EA084,Rectangular,EA084-5,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +112248,Sf2,EA084,?,EA084-NA,,,,,, +112249,Sf3,EA084,?,EA084-NA,,,,,, +112250,Sf4,EA084,Rectangular,EA084-5,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +112251,Sf5,EA084,Rectangular,EA084-5,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +112252,Sf6,EA084,Circular,EA084-2,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +112253,Sf7,EA084,Circular,EA084-2,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +112254,Sf8,EA084,?,EA084-NA,,,,,, +112255,Sf9,EA084,?,EA084-NA,,,,,, +112256,Sg1,EA084,Circular,EA084-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +112257,Sg2,EA084,Rectangular,EA084-5,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112258,Sg3,EA084,Circular,EA084-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +112259,Sg4,EA084,?,EA084-NA,,,,,, +112260,Sg5,EA084,?,EA084-NA,,,,,, +112261,Sh1,EA084,?,EA084-NA,,,,,, +112262,Sh2,EA084,?,EA084-NA,,,,,, +112263,Sh3,EA084,?,EA084-NA,,,,,, +112264,Sh4,EA084,?,EA084-NA,,,,,, +112265,Sh5,EA084,?,EA084-NA,,,,,, +112266,Sh6,EA084,?,EA084-NA,,,,,, +112267,Sh7,EA084,?,EA084-NA,,,,,, +112268,Sh8,EA084,Rectangular,EA084-5,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +112269,Sh9,EA084,?,EA084-NA,,,,,, +112270,Si1,EA084,Circular,EA084-2,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112271,Si10,EA084,?,EA084-NA,,,,,, +112272,Si2,EA084,?,EA084-NA,,,,,, +112273,Si3,EA084,?,EA084-NA,,,,,, +112274,Si4,EA084,Semicircular,EA084-1,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +112275,Si5,EA084,?,EA084-NA,,,,,, +112276,Si6,EA084,?,EA084-NA,,,,,, +112277,Si7,EA084,?,EA084-NA,,,,,, +112278,Si8,EA084,?,EA084-NA,,,,,, +112279,Si9,EA084,?,EA084-NA,,,,,, +112280,Sj1,EA084,?,EA084-NA,,,,,, +112281,Sj10,EA084,?,EA084-NA,,,,,, +112282,Sj11,EA084,?,EA084-NA,,,,,, +112283,Sj2,EA084,?,EA084-NA,,,,,, +112284,Sj3,EA084,?,EA084-NA,,,,,, +112285,Sj4,EA084,?,EA084-NA,,,,,, +112286,Sj5,EA084,Rectangular,EA084-5,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +112287,Sj6,EA084,?,EA084-NA,,,,,, +112288,Sj7,EA084,?,EA084-NA,,,,,, +112289,Sj8,EA084,?,EA084-NA,,,,,, +112290,Sj9,EA084,Rectangular,EA084-5,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +112291,ch12,EA084,Circular,EA084-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +112292,ch13,EA084,Rectangular,EA084-5,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +112293,ch14,EA084,Rectangular,EA084-5,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +112294,ch15,EA084,Rectangular,EA084-5,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +112295,ch16,EA084,?,EA084-NA,,,,,, +112296,ch17,EA084,Rectangular,EA084-5,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +112297,ch18,EA084,?,EA084-NA,,,,,, +112298,ch19,EA084,Elliptical,EA084-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +112299,ch20,EA084,Rectangular,EA084-5,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +112300,ch21,EA084,Rectangular,EA084-5,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +112301,ch22,EA084,?,EA084-NA,,,,,, +112302,ch23,EA084,?,EA084-NA,,,,,, +112303,ch24,EA084,?,EA084-NA,,,,,, +112304,ch25,EA084,Rectangular,EA084-5,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +112305,ch26,EA084,Rectangular,EA084-5,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +112306,ch27,EA084,Rectangular,EA084-5,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +112307,ch28,EA084,?,EA084-NA,,,,,, +112308,ec12,EA084,Circular,EA084-2,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +112309,ec13,EA084,Rectangular,EA084-5,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +112310,ec14,EA084,Elliptical,EA084-3,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +112311,ec15,EA084,Circular,EA084-2,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +112312,ec16,EA084,Circular,EA084-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +112313,ec17,EA084,Rectangular,EA084-5,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +112314,ec18,EA084,Rectangular,EA084-5,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +112315,ec19,EA084,Rectangular,EA084-5,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +112316,ec20,EA084,Rectangular,EA084-5,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +112317,ec21,EA084,Rectangular,EA084-5,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +112318,Aa1,EA085,Floor level with ground,EA085-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +112319,Aa2,EA085,?,EA085-NA,,,,,, +112320,Aa3,EA085,?,EA085-NA,,,,,, +112321,Aa4,EA085,?,EA085-NA,,,,,, +112322,Aa5,EA085,?,EA085-NA,,,,,, +112323,Aa6,EA085,Floor level with ground,EA085-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +112324,Aa7,EA085,?,EA085-NA,,,,,, +112325,Aa8,EA085,Floor level with ground,EA085-2,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +112326,Aa9,EA085,?,EA085-NA,,,,,, +112327,Ab1,EA085,?,EA085-NA,,,,,, +112328,Ab10,EA085,Floor level with ground,EA085-2,,hunter1936,,1936,EthnographicAtlas_1967_p65, +112329,Ab11,EA085,?,EA085-NA,,,,,, +112330,Ab12,EA085,?,EA085-NA,,,,,, +112331,Ab13,EA085,?,EA085-NA,,,,,, +112332,Ab14,EA085,?,EA085-NA,,,,,, +112333,Ab15,EA085,?,EA085-NA,,,,,, +112334,Ab16,EA085,?,EA085-NA,,,,,, +112335,Ab17,EA085,?,EA085-NA,,,,,, +112336,Ab18,EA085,?,EA085-NA,,,,,, +112337,Ab19,EA085,?,EA085-NA,,,,,, +112338,Ab2,EA085,Floor level with ground,EA085-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +112339,Ab20,EA085,?,EA085-NA,,,,,, +112340,Ab21a,EA085,?,EA085-NA,,,,,, +112341,Ab21b,EA085,?,EA085-NA,,,,,, +112342,Ab22,EA085,?,EA085-NA,,,,,, +112343,Ab3,EA085,Floor level with ground,EA085-2,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +112344,Ab4,EA085,?,EA085-NA,,,,,, +112345,Ab5,EA085,?,EA085-NA,,,,,, +112346,Ab6,EA085,?,EA085-NA,,,,,, +112347,Ab7,EA085,?,EA085-NA,,,,,, +112348,Ab8,EA085,?,EA085-NA,,,,,, +112349,Ab9,EA085,Floor level with ground,EA085-2,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +112350,Ac1,EA085,?,EA085-NA,,,,,, +112351,Ac10,EA085,?,EA085-NA,,,,,, +112352,Ac11,EA085,Floor level with ground,EA085-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +112353,Ac12,EA085,?,EA085-NA,,,,,, +112354,Ac13,EA085,?,EA085-NA,,,,,, +112355,Ac14,EA085,Raised substantially,EA085-4,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +112356,Ac15,EA085,?,EA085-NA,,,,,, +112357,Ac16,EA085,?,EA085-NA,,,,,, +112358,Ac17,EA085,?,EA085-NA,,,,,, +112359,Ac18,EA085,?,EA085-NA,,,,,, +112360,Ac19,EA085,?,EA085-NA,,,,,, +112361,Ac2,EA085,?,EA085-NA,,,,,, +112362,Ac20,EA085,?,EA085-NA,,,,,, +112363,Ac21,EA085,?,EA085-NA,,,,,, +112364,Ac22,EA085,?,EA085-NA,,,,,, +112365,Ac23,EA085,?,EA085-NA,,,,,, +112366,Ac24,EA085,?,EA085-NA,,,,,, +112367,Ac25,EA085,?,EA085-NA,,,,,, +112368,Ac26,EA085,?,EA085-NA,,,,,, +112369,Ac27,EA085,?,EA085-NA,,,,,, +112370,Ac28,EA085,?,EA085-NA,,,,,, +112371,Ac29,EA085,?,EA085-NA,,,,,, +112372,Ac3,EA085,?,EA085-NA,,,,,, +112373,Ac30,EA085,?,EA085-NA,,,,,, +112374,Ac31,EA085,?,EA085-NA,,,,,, +112375,Ac32,EA085,Floor level with ground,EA085-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +112376,Ac33,EA085,?,EA085-NA,,,,,, +112377,Ac34,EA085,?,EA085-NA,,,,,, +112378,Ac35,EA085,?,EA085-NA,,,,,, +112379,Ac36,EA085,?,EA085-NA,,,,,, +112380,Ac37,EA085,?,EA085-NA,,,,,, +112381,Ac38,EA085,?,EA085-NA,,,,,, +112382,Ac39,EA085,Floor level with ground,EA085-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +112383,Ac4,EA085,?,EA085-NA,,,,,, +112384,Ac40,EA085,Raised substantially,EA085-4,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +112385,Ac41,EA085,?,EA085-NA,,,,,, +112386,Ac42,EA085,?,EA085-NA,,,,,, +112387,Ac43,EA085,?,EA085-NA,,,,,, +112388,Ac5,EA085,?,EA085-NA,,,,,, +112389,Ac6,EA085,?,EA085-NA,,,,,, +112390,Ac7,EA085,Floor level with ground,EA085-2,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +112391,Ac8,EA085,?,EA085-NA,,,,,, +112392,Ac9,EA085,?,EA085-NA,,,,,, +112393,Ad1,EA085,Floor level with ground,EA085-2,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +112394,Ad10,EA085,Floor level with ground,EA085-2,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +112395,Ad11,EA085,Floor level with ground,EA085-2,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +112396,Ad12,EA085,?,EA085-NA,,,,,, +112397,Ad13,EA085,Floor level with ground,EA085-2,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +112398,Ad14,EA085,Floor level with ground,EA085-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +112399,Ad15,EA085,Floor level with ground,EA085-2,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +112400,Ad16,EA085,?,EA085-NA,,,,,, +112401,Ad17,EA085,?,EA085-NA,,,,,, +112402,Ad18,EA085,?,EA085-NA,,,,,, +112403,Ad19,EA085,Floor level with ground,EA085-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +112404,Ad2,EA085,?,EA085-NA,,,,,, +112405,Ad20,EA085,Floor level with ground,EA085-2,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +112406,Ad21,EA085,?,EA085-NA,,,,,, +112407,Ad22,EA085,?,EA085-NA,,,,,, +112408,Ad23,EA085,?,EA085-NA,,,,,, +112409,Ad24,EA085,?,EA085-NA,,,,,, +112410,Ad25,EA085,?,EA085-NA,,,,,, +112411,Ad26,EA085,?,EA085-NA,,,,,, +112412,Ad27,EA085,Floor level with ground,EA085-2,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +112413,Ad28,EA085,Floor level with ground,EA085-2,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +112414,Ad29,EA085,?,EA085-NA,,,,,, +112415,Ad3,EA085,?,EA085-NA,,,,,, +112416,Ad30,EA085,?,EA085-NA,,,,,, +112417,Ad31,EA085,?,EA085-NA,,,,,, +112418,Ad32,EA085,?,EA085-NA,,,,,, +112419,Ad33,EA085,?,EA085-NA,,,,,, +112420,Ad34,EA085,?,EA085-NA,,,,,, +112421,Ad35,EA085,?,EA085-NA,,,,,, +112422,Ad36,EA085,?,EA085-NA,,,,,, +112423,Ad37,EA085,?,EA085-NA,,,,,, +112424,Ad38,EA085,?,EA085-NA,,,,,, +112425,Ad39,EA085,?,EA085-NA,,,,,, +112426,Ad4,EA085,Floor level with ground,EA085-2,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +112427,Ad40,EA085,?,EA085-NA,,,,,, +112428,Ad41,EA085,?,EA085-NA,,,,,, +112429,Ad42,EA085,?,EA085-NA,,,,,, +112430,Ad43,EA085,?,EA085-NA,,,,,, +112431,Ad44,EA085,?,EA085-NA,,,,,, +112432,Ad45,EA085,?,EA085-NA,,,,,, +112433,Ad46,EA085,Floor level with ground,EA085-2,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +112434,Ad47,EA085,?,EA085-NA,,,,,, +112435,Ad48,EA085,?,EA085-NA,,,,,, +112436,Ad49,EA085,?,EA085-NA,,,,,, +112437,Ad5,EA085,?,EA085-NA,,,,,, +112438,Ad50,EA085,Floor level with ground,EA085-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +112439,Ad51,EA085,Floor level with ground,EA085-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +112440,Ad6,EA085,Floor level with ground,EA085-2,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +112441,Ad7,EA085,?,EA085-NA,,,,,, +112442,Ad8,EA085,?,EA085-NA,,,,,, +112443,Ad9,EA085,?,EA085-NA,,,,,, +112444,Ae1,EA085,Floor level with ground,EA085-2,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +112445,Ae10,EA085,?,EA085-NA,,,,,, +112446,Ae11,EA085,?,EA085-NA,,,,,, +112447,Ae12,EA085,?,EA085-NA,,,,,, +112448,Ae13,EA085,?,EA085-NA,,,,,, +112449,Ae14,EA085,?,EA085-NA,,,,,, +112450,Ae15,EA085,?,EA085-NA,,,,,, +112451,Ae16,EA085,?,EA085-NA,,,,,, +112452,Ae17,EA085,?,EA085-NA,,,,,, +112453,Ae18,EA085,Floor level with ground,EA085-2,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +112454,Ae19,EA085,?,EA085-NA,,,,,, +112455,Ae2,EA085,?,EA085-NA,,,,,, +112456,Ae20,EA085,?,EA085-NA,,,,,, +112457,Ae21,EA085,?,EA085-NA,,,,,, +112458,Ae22,EA085,?,EA085-NA,,,,,, +112459,Ae23,EA085,?,EA085-NA,,,,,, +112460,Ae24,EA085,?,EA085-NA,,,,,, +112461,Ae25,EA085,Floor level with ground,EA085-2,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +112462,Ae26,EA085,?,EA085-NA,,,,,, +112463,Ae27,EA085,?,EA085-NA,,,,,, +112464,Ae28,EA085,Raised substantially,EA085-4,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +112465,Ae29,EA085,?,EA085-NA,,,,,, +112466,Ae3,EA085,?,EA085-NA,,,,,, +112467,Ae30,EA085,?,EA085-NA,,,,,, +112468,Ae31,EA085,?,EA085-NA,,,,,, +112469,Ae32,EA085,?,EA085-NA,,,,,, +112470,Ae33,EA085,Floor level with ground,EA085-2,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +112471,Ae34,EA085,?,EA085-NA,,,,,, +112472,Ae35,EA085,Floor level with ground,EA085-2,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +112473,Ae36,EA085,?,EA085-NA,,,,,, +112474,Ae37,EA085,?,EA085-NA,,,,,, +112475,Ae38,EA085,?,EA085-NA,,,,,, +112476,Ae39,EA085,?,EA085-NA,,,,,, +112477,Ae4,EA085,?,EA085-NA,,,,,, +112478,Ae40,EA085,?,EA085-NA,,,,,, +112479,Ae41,EA085,?,EA085-NA,,,,,, +112480,Ae42,EA085,?,EA085-NA,,,,,, +112481,Ae43,EA085,?,EA085-NA,,,,,, +112482,Ae44,EA085,?,EA085-NA,,,,,, +112483,Ae45,EA085,?,EA085-NA,,,,,, +112484,Ae46,EA085,?,EA085-NA,,,,,, +112485,Ae47,EA085,?,EA085-NA,,,,,, +112486,Ae48,EA085,Floor level with ground,EA085-2,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +112487,Ae49,EA085,?,EA085-NA,,,,,, +112488,Ae5,EA085,?,EA085-NA,,,,,, +112489,Ae50,EA085,Floor level with ground,EA085-2,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +112490,Ae51,EA085,?,EA085-NA,,,,,, +112491,Ae52,EA085,?,EA085-NA,,,,,, +112492,Ae53,EA085,?,EA085-NA,,,,,, +112493,Ae54,EA085,?,EA085-NA,,,,,, +112494,Ae55,EA085,?,EA085-NA,,,,,, +112495,Ae56,EA085,?,EA085-NA,,,,,, +112496,Ae57,EA085,?,EA085-NA,,,,,, +112497,Ae58,EA085,?,EA085-NA,,,,,, +112498,Ae59,EA085,?,EA085-NA,,,,,, +112499,Ae6,EA085,?,EA085-NA,,,,,, +112500,Ae7,EA085,Floor level with ground,EA085-2,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +112501,Ae8,EA085,?,EA085-NA,,,,,, +112502,Ae9,EA085,?,EA085-NA,,,,,, +112503,Af1,EA085,?,EA085-NA,,,,,, +112504,Af10,EA085,?,EA085-NA,,,,,, +112505,Af11,EA085,?,EA085-NA,,,,,, +112506,Af12,EA085,?,EA085-NA,,,,,, +112507,Af13,EA085,Floor level with ground,EA085-2,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +112508,Af14,EA085,Floor level with ground,EA085-2,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +112509,Af15,EA085,Floor level with ground,EA085-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +112510,Af16,EA085,?,EA085-NA,,,,,, +112511,Af17,EA085,?,EA085-NA,,,,,, +112512,Af18,EA085,?,EA085-NA,,,,,, +112513,Af19,EA085,?,EA085-NA,,,,,, +112514,Af2,EA085,?,EA085-NA,,,,,, +112515,Af20,EA085,?,EA085-NA,,,,,, +112516,Af21,EA085,?,EA085-NA,,,,,, +112517,Af22,EA085,?,EA085-NA,,,,,, +112518,Af23,EA085,?,EA085-NA,,,,,, +112519,Af24,EA085,?,EA085-NA,,,,,, +112520,Af25,EA085,?,EA085-NA,,,,,, +112521,Af26,EA085,?,EA085-NA,,,,,, +112522,Af27,EA085,?,EA085-NA,,,,,, +112523,Af28,EA085,?,EA085-NA,,,,,, +112524,Af29,EA085,?,EA085-NA,,,,,, +112525,Af3,EA085,?,EA085-NA,,,,,, +112526,Af30,EA085,?,EA085-NA,,,,,, +112527,Af31,EA085,?,EA085-NA,,,,,, +112528,Af32,EA085,?,EA085-NA,,,,,, +112529,Af33,EA085,?,EA085-NA,,,,,, +112530,Af34,EA085,?,EA085-NA,,,,,, +112531,Af35,EA085,?,EA085-NA,,,,,, +112532,Af36,EA085,?,EA085-NA,,,,,, +112533,Af37,EA085,Floor level with ground,EA085-2,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +112534,Af38,EA085,?,EA085-NA,,,,,, +112535,Af39,EA085,?,EA085-NA,,,,,, +112536,Af4,EA085,?,EA085-NA,,,,,, +112537,Af40,EA085,?,EA085-NA,,,,,, +112538,Af41,EA085,?,EA085-NA,,,,,, +112539,Af42,EA085,?,EA085-NA,,,,,, +112540,Af43,EA085,?,EA085-NA,,,,,, +112541,Af44,EA085,?,EA085-NA,,,,,, +112542,Af45,EA085,?,EA085-NA,,,,,, +112543,Af46,EA085,?,EA085-NA,,,,,, +112544,Af47,EA085,?,EA085-NA,,,,,, +112545,Af48,EA085,Raised substantially,EA085-4,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +112546,Af49,EA085,?,EA085-NA,,,,,, +112547,Af5,EA085,Floor level with ground,EA085-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +112548,Af50,EA085,?,EA085-NA,,,,,, +112549,Af51,EA085,?,EA085-NA,,,,,, +112550,Af52,EA085,Floor level with ground,EA085-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +112551,Af53,EA085,?,EA085-NA,,,,,, +112552,Af54,EA085,?,EA085-NA,,,,,, +112553,Af55,EA085,?,EA085-NA,,,,,, +112554,Af56,EA085,?,EA085-NA,,,,,, +112555,Af57,EA085,?,EA085-NA,,,,,, +112556,Af58,EA085,?,EA085-NA,,,,,, +112557,Af6,EA085,?,EA085-NA,,,,,, +112558,Af7,EA085,?,EA085-NA,,,,,, +112559,Af8,EA085,?,EA085-NA,,,,,, +112560,Af9,EA085,?,EA085-NA,,,,,, +112561,Ag1,EA085,Floor level with ground,EA085-2,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +112562,Ag10,EA085,?,EA085-NA,,,,,, +112563,Ag11,EA085,?,EA085-NA,,,,,, +112564,Ag12,EA085,Floor level with ground,EA085-2,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +112565,Ag13,EA085,Floor level with ground,EA085-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +112566,Ag14,EA085,Floor level with ground,EA085-2,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +112567,Ag15,EA085,Floor level with ground,EA085-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +112568,Ag16,EA085,?,EA085-NA,,,,,, +112569,Ag17,EA085,?,EA085-NA,,,,,, +112570,Ag18,EA085,?,EA085-NA,,,,,, +112571,Ag19,EA085,?,EA085-NA,,,,,, +112572,Ag2,EA085,?,EA085-NA,,,,,, +112573,Ag20,EA085,?,EA085-NA,,,,,, +112574,Ag21,EA085,?,EA085-NA,,,,,, +112575,Ag22,EA085,?,EA085-NA,,,,,, +112576,Ag23,EA085,?,EA085-NA,,,,,, +112577,Ag24,EA085,?,EA085-NA,,,,,, +112578,Ag25,EA085,Floor level with ground,EA085-2,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +112579,Ag26,EA085,Floor level with ground,EA085-2,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +112580,Ag27,EA085,?,EA085-NA,,,,,, +112581,Ag28,EA085,?,EA085-NA,,,,,, +112582,Ag29,EA085,?,EA085-NA,,,,,, +112583,Ag3,EA085,?,EA085-NA,,,,,, +112584,Ag30,EA085,?,EA085-NA,,,,,, +112585,Ag31,EA085,?,EA085-NA,,,,,, +112586,Ag32,EA085,Floor level with ground,EA085-2,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +112587,Ag33,EA085,?,EA085-NA,,,,,, +112588,Ag34,EA085,Floor level with ground,EA085-2,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +112589,Ag35,EA085,Floor level with ground,EA085-2,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +112590,Ag36,EA085,?,EA085-NA,,,,,, +112591,Ag37,EA085,?,EA085-NA,,,,,, +112592,Ag38,EA085,?,EA085-NA,,,,,, +112593,Ag39,EA085,Floor level with ground,EA085-2,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +112594,Ag4,EA085,Floor level with ground,EA085-2,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +112595,Ag40,EA085,Floor level with ground,EA085-2,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +112596,Ag41,EA085,?,EA085-NA,,,,,, +112597,Ag42,EA085,?,EA085-NA,,,,,, +112598,Ag43,EA085,?,EA085-NA,,,,,, +112599,Ag44,EA085,?,EA085-NA,,,,,, +112600,Ag45,EA085,Floor level with ground,EA085-2,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +112601,Ag46,EA085,?,EA085-NA,,,,,, +112602,Ag47,EA085,?,EA085-NA,,,,,, +112603,Ag48,EA085,?,EA085-NA,,,,,, +112604,Ag49,EA085,?,EA085-NA,,,,,, +112605,Ag5,EA085,?,EA085-NA,,,,,, +112606,Ag50,EA085,?,EA085-NA,,,,,, +112607,Ag51,EA085,?,EA085-NA,,,,,, +112608,Ag52,EA085,?,EA085-NA,,,,,, +112609,Ag53,EA085,?,EA085-NA,,,,,, +112610,Ag54,EA085,Floor level with ground,EA085-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +112611,Ag6,EA085,Floor level with ground,EA085-2,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +112612,Ag7,EA085,Floor level with ground,EA085-2,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +112613,Ag8,EA085,?,EA085-NA,,,,,, +112614,Ag9,EA085,?,EA085-NA,,,,,, +112615,Ah1,EA085,?,EA085-NA,,,,,, +112616,Ah10,EA085,?,EA085-NA,,,,,, +112617,Ah11,EA085,?,EA085-NA,,,,,, +112618,Ah12,EA085,?,EA085-NA,,,,,, +112619,Ah13,EA085,?,EA085-NA,,,,,, +112620,Ah14,EA085,?,EA085-NA,,,,,, +112621,Ah15,EA085,Raised substantially,EA085-4,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +112622,Ah16,EA085,?,EA085-NA,,,,,, +112623,Ah17,EA085,?,EA085-NA,,,,,, +112624,Ah18,EA085,?,EA085-NA,,,,,, +112625,Ah19,EA085,?,EA085-NA,,,,,, +112626,Ah2,EA085,?,EA085-NA,,,,,, +112627,Ah20,EA085,Floor level with ground,EA085-2,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +112628,Ah21,EA085,?,EA085-NA,,,,,, +112629,Ah22,EA085,?,EA085-NA,,,,,, +112630,Ah23,EA085,?,EA085-NA,,,,,, +112631,Ah24,EA085,?,EA085-NA,,,,,, +112632,Ah25,EA085,Floor level with ground,EA085-2,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +112633,Ah26,EA085,?,EA085-NA,,,,,, +112634,Ah27,EA085,?,EA085-NA,,,,,, +112635,Ah28,EA085,?,EA085-NA,,,,,, +112636,Ah29,EA085,?,EA085-NA,,,,,, +112637,Ah3,EA085,?,EA085-NA,,,,,, +112638,Ah30,EA085,?,EA085-NA,,,,,, +112639,Ah31,EA085,?,EA085-NA,,,,,, +112640,Ah32,EA085,?,EA085-NA,,,,,, +112641,Ah33,EA085,Floor level with ground,EA085-2,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +112642,Ah34,EA085,?,EA085-NA,,,,,, +112643,Ah35,EA085,?,EA085-NA,,,,,, +112644,Ah36,EA085,?,EA085-NA,,,,,, +112645,Ah37,EA085,Floor level with ground,EA085-2,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +112646,Ah38,EA085,?,EA085-NA,,,,,, +112647,Ah39,EA085,?,EA085-NA,,,,,, +112648,Ah4,EA085,?,EA085-NA,,,,,, +112649,Ah5,EA085,?,EA085-NA,,,,,, +112650,Ah6,EA085,?,EA085-NA,,,,,, +112651,Ah7,EA085,?,EA085-NA,,,,,, +112652,Ah8,EA085,?,EA085-NA,,,,,, +112653,Ah9,EA085,?,EA085-NA,,,,,, +112654,Ai1,EA085,?,EA085-NA,,,,,, +112655,Ai10,EA085,?,EA085-NA,,,,,, +112656,Ai11,EA085,?,EA085-NA,,,,,, +112657,Ai12,EA085,?,EA085-NA,,,,,, +112658,Ai13,EA085,?,EA085-NA,,,,,, +112659,Ai14,EA085,?,EA085-NA,,,,,, +112660,Ai15,EA085,?,EA085-NA,,,,,, +112661,Ai16,EA085,?,EA085-NA,,,,,, +112662,Ai17,EA085,?,EA085-NA,,,,,, +112663,Ai18,EA085,Floor level with ground,EA085-2,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +112664,Ai19,EA085,Floor level with ground,EA085-2,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +112665,Ai2,EA085,?,EA085-NA,,,,,, +112666,Ai20,EA085,?,EA085-NA,,,,,, +112667,Ai21,EA085,Floor level with ground,EA085-2,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +112668,Ai22,EA085,?,EA085-NA,,,,,, +112669,Ai23,EA085,Floor level with ground,EA085-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +112670,Ai24,EA085,?,EA085-NA,,,,,, +112671,Ai25,EA085,Floor level with ground,EA085-2,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +112672,Ai26,EA085,Floor level with ground,EA085-2,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +112673,Ai27,EA085,?,EA085-NA,,,,,, +112674,Ai28,EA085,Floor level with ground,EA085-2,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +112675,Ai29,EA085,?,EA085-NA,,,,,, +112676,Ai3,EA085,?,EA085-NA,,,,,, +112677,Ai30,EA085,?,EA085-NA,,,,,, +112678,Ai31,EA085,?,EA085-NA,,,,,, +112679,Ai32,EA085,?,EA085-NA,,,,,, +112680,Ai33,EA085,?,EA085-NA,,,,,, +112681,Ai34,EA085,?,EA085-NA,,,,,, +112682,Ai35,EA085,?,EA085-NA,,,,,, +112683,Ai36,EA085,?,EA085-NA,,,,,, +112684,Ai37,EA085,?,EA085-NA,,,,,, +112685,Ai38,EA085,?,EA085-NA,,,,,, +112686,Ai39,EA085,?,EA085-NA,,,,,, +112687,Ai4,EA085,?,EA085-NA,,,,,, +112688,Ai40,EA085,?,EA085-NA,,,,,, +112689,Ai41,EA085,?,EA085-NA,,,,,, +112690,Ai42,EA085,?,EA085-NA,,,,,, +112691,Ai43,EA085,?,EA085-NA,,,,,, +112692,Ai44,EA085,?,EA085-NA,,,,,, +112693,Ai45,EA085,?,EA085-NA,,,,,, +112694,Ai46,EA085,?,EA085-NA,,,,,, +112695,Ai47,EA085,Floor level with ground,EA085-2,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +112696,Ai5,EA085,?,EA085-NA,,,,,, +112697,Ai6,EA085,?,EA085-NA,,,,,, +112698,Ai7,EA085,Floor level with ground,EA085-2,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +112699,Ai8,EA085,?,EA085-NA,,,,,, +112700,Ai9,EA085,?,EA085-NA,,,,,, +112701,Aj1,EA085,Floor level with ground,EA085-2,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +112702,Aj10,EA085,?,EA085-NA,,,,,, +112703,Aj11,EA085,?,EA085-NA,,,,,, +112704,Aj12,EA085,?,EA085-NA,,,,,, +112705,Aj13,EA085,?,EA085-NA,,,,,, +112706,Aj14,EA085,?,EA085-NA,,,,,, +112707,Aj15,EA085,?,EA085-NA,,,,,, +112708,Aj16,EA085,?,EA085-NA,,,,,, +112709,Aj17,EA085,Floor level with ground,EA085-2,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +112710,Aj18,EA085,?,EA085-NA,,,,,, +112711,Aj19,EA085,?,EA085-NA,,,,,, +112712,Aj2,EA085,?,EA085-NA,,,,,, +112713,Aj20,EA085,?,EA085-NA,,,,,, +112714,Aj21,EA085,?,EA085-NA,,,,,, +112715,Aj22,EA085,?,EA085-NA,,,,,, +112716,Aj23,EA085,?,EA085-NA,,,,,, +112717,Aj24,EA085,Floor level with ground,EA085-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +112718,Aj25,EA085,?,EA085-NA,,,,,, +112719,Aj26,EA085,?,EA085-NA,,,,,, +112720,Aj27,EA085,Floor level with ground,EA085-2,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +112721,Aj28,EA085,?,EA085-NA,,,,,, +112722,Aj29,EA085,?,EA085-NA,,,,,, +112723,Aj3,EA085,Floor level with ground,EA085-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +112724,Aj30,EA085,?,EA085-NA,,,,,, +112725,Aj31,EA085,?,EA085-NA,,,,,, +112726,Aj4,EA085,Raised substantially,EA085-4,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +112727,Aj5,EA085,Floor level with ground,EA085-2,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +112728,Aj6,EA085,?,EA085-NA,,,,,, +112729,Aj7,EA085,?,EA085-NA,,,,,, +112730,Aj8,EA085,?,EA085-NA,,,,,, +112731,Aj9,EA085,?,EA085-NA,,,,,, +112732,Ca1,EA085,?,EA085-NA,,,,,, +112733,Ca10,EA085,?,EA085-NA,,,,,, +112734,Ca11,EA085,Floor level with ground,EA085-2,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +112735,Ca12,EA085,?,EA085-NA,,,,,, +112736,Ca13,EA085,?,EA085-NA,,,,,, +112737,Ca14,EA085,?,EA085-NA,,,,,, +112738,Ca15,EA085,?,EA085-NA,,,,,, +112739,Ca16,EA085,?,EA085-NA,,,,,, +112740,Ca17,EA085,?,EA085-NA,,,,,, +112741,Ca18,EA085,?,EA085-NA,,,,,, +112742,Ca19,EA085,?,EA085-NA,,,,,, +112743,Ca2,EA085,Floor level with ground,EA085-2,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +112744,Ca20,EA085,Floor level with ground,EA085-2,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +112745,Ca21,EA085,?,EA085-NA,,,,,, +112746,Ca22,EA085,?,EA085-NA,,,,,, +112747,Ca23,EA085,Floor level with ground,EA085-2,,jensen1959,,1950,EthnographicAtlas_1967_p81, +112748,Ca24,EA085,?,EA085-NA,,,,,, +112749,Ca25,EA085,?,EA085-NA,,,,,, +112750,Ca26,EA085,?,EA085-NA,,,,,, +112751,Ca27,EA085,Floor level with ground,EA085-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +112752,Ca28,EA085,?,EA085-NA,,,,,, +112753,Ca29,EA085,?,EA085-NA,,,,,, +112754,Ca3,EA085,?,EA085-NA,,,,,, +112755,Ca30,EA085,Floor level with ground,EA085-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +112756,Ca31,EA085,?,EA085-NA,,,,,, +112757,Ca32,EA085,?,EA085-NA,,,,,, +112758,Ca33,EA085,Floor level with ground,EA085-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +112759,Ca34,EA085,Floor level with ground,EA085-2,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +112760,Ca35,EA085,?,EA085-NA,,,,,, +112761,Ca36,EA085,?,EA085-NA,,,,,, +112762,Ca37,EA085,?,EA085-NA,,,,,, +112763,Ca38,EA085,?,EA085-NA,,,,,, +112764,Ca39,EA085,?,EA085-NA,,,,,, +112765,Ca4,EA085,Subterranean,EA085-1,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +112766,Ca40,EA085,?,EA085-NA,,,,,, +112767,Ca41,EA085,?,EA085-NA,,,,,, +112768,Ca42,EA085,?,EA085-NA,,,,,, +112769,Ca43,EA085,?,EA085-NA,,,,,, +112770,Ca5,EA085,?,EA085-NA,,,,,, +112771,Ca6,EA085,Floor level with ground,EA085-2,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +112772,Ca7,EA085,?,EA085-NA,,,,,, +112773,Ca8,EA085,?,EA085-NA,,,,,, +112774,Ca9,EA085,?,EA085-NA,,,,,, +112775,Cb1,EA085,?,EA085-NA,,,,,, +112776,Cb10,EA085,?,EA085-NA,,,,,, +112777,Cb11,EA085,?,EA085-NA,,,,,, +112778,Cb12,EA085,?,EA085-NA,,,,,, +112779,Cb13,EA085,?,EA085-NA,,,,,, +112780,Cb14,EA085,?,EA085-NA,,,,,, +112781,Cb15,EA085,Floor level with ground,EA085-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +112782,Cb16,EA085,Floor level with ground,EA085-2,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +112783,Cb17,EA085,Floor level with ground,EA085-2,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +112784,Cb18,EA085,?,EA085-NA,,,,,, +112785,Cb19,EA085,Floor level with ground,EA085-2,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +112786,Cb2,EA085,?,EA085-NA,,,,,, +112787,Cb20,EA085,?,EA085-NA,,,,,, +112788,Cb21,EA085,?,EA085-NA,,,,,, +112789,Cb22,EA085,Floor level with ground,EA085-2,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +112790,Cb23,EA085,?,EA085-NA,,,,,, +112791,Cb24,EA085,?,EA085-NA,,,,,, +112792,Cb25,EA085,?,EA085-NA,,,,,, +112793,Cb26,EA085,?,EA085-NA,,,,,, +112794,Cb27,EA085,?,EA085-NA,,,,,, +112795,Cb28,EA085,?,EA085-NA,,,,,, +112796,Cb29,EA085,?,EA085-NA,,,,,, +112797,Cb3,EA085,Floor level with ground,EA085-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +112798,Cb4,EA085,?,EA085-NA,,,,,, +112799,Cb5,EA085,?,EA085-NA,,,,,, +112800,Cb6,EA085,?,EA085-NA,,,,,, +112801,Cb7,EA085,Floor level with ground,EA085-2,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +112802,Cb8,EA085,?,EA085-NA,,,,,, +112803,Cb9,EA085,Floor level with ground,EA085-2,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +112804,Cc1,EA085,?,EA085-NA,,,,,, +112805,Cc10,EA085,Floor level with ground,EA085-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +112806,Cc11,EA085,Floor level with ground,EA085-2,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +112807,Cc12,EA085,?,EA085-NA,,,,,, +112808,Cc13,EA085,Floor level with ground,EA085-2,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +112809,Cc14,EA085,Floor level with ground,EA085-2,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +112810,Cc15,EA085,?,EA085-NA,,,,,, +112811,Cc16,EA085,Floor level with ground,EA085-2,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +112812,Cc17,EA085,?,EA085-NA,,,,,, +112813,Cc18,EA085,?,EA085-NA,,,,,, +112814,Cc19,EA085,?,EA085-NA,,,,,, +112815,Cc2,EA085,Floor level with ground,EA085-2,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +112816,Cc20,EA085,?,EA085-NA,,,,,, +112817,Cc3,EA085,?,EA085-NA,,,,,, +112818,Cc4,EA085,?,EA085-NA,,,,,, +112819,Cc5,EA085,Floor level with ground,EA085-2,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +112820,Cc6,EA085,?,EA085-NA,,,,,, +112821,Cc7,EA085,Floor level with ground,EA085-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112822,Cc8,EA085,Floor level with ground,EA085-2,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +112823,Cc9,EA085,Floor level with ground,EA085-2,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +112824,Cd1,EA085,Floor level with ground,EA085-2,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +112825,Cd10,EA085,?,EA085-NA,,,,,, +112826,Cd11,EA085,?,EA085-NA,,,,,, +112827,Cd12,EA085,Floor level with ground,EA085-2,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +112828,Cd13,EA085,?,EA085-NA,,,,,, +112829,Cd14,EA085,?,EA085-NA,,,,,, +112830,Cd15,EA085,Floor level with ground,EA085-2,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +112831,Cd16,EA085,?,EA085-NA,,,,,, +112832,Cd17,EA085,?,EA085-NA,,,,,, +112833,Cd18,EA085,?,EA085-NA,,,,,, +112834,Cd19,EA085,Floor level with ground,EA085-2,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +112835,Cd2,EA085,?,EA085-NA,,,,,, +112836,Cd20,EA085,?,EA085-NA,,,,,, +112837,Cd21,EA085,Floor level with ground,EA085-2,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +112838,Cd3,EA085,?,EA085-NA,,,,,, +112839,Cd4,EA085,?,EA085-NA,,,,,, +112840,Cd5,EA085,?,EA085-NA,,,,,, +112841,Cd6,EA085,?,EA085-NA,,,,,, +112842,Cd7,EA085,?,EA085-NA,,,,,, +112843,Cd8,EA085,?,EA085-NA,,,,,, +112844,Cd9,EA085,?,EA085-NA,,,,,, +112845,Ce1,EA085,Elevated slightly,EA085-3,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +112846,Ce2,EA085,?,EA085-NA,,,,,, +112847,Ce3,EA085,?,EA085-NA,,,,,, +112848,Ce4,EA085,?,EA085-NA,,,,,, +112849,Ce5,EA085,Floor level with ground,EA085-2,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +112850,Ce6,EA085,?,EA085-NA,,,,,, +112851,Ce7,EA085,?,EA085-NA,,,,,, +112852,Ce8,EA085,?,EA085-NA,,,,,, +112853,Cf1,EA085,?,EA085-NA,,,,,, +112854,Cf2,EA085,?,EA085-NA,,,,,, +112855,Cf3,EA085,?,EA085-NA,,,,,, +112856,Cf4,EA085,?,EA085-NA,,,,,, +112857,Cf5,EA085,?,EA085-NA,,,,,, +112858,Cg1,EA085,?,EA085-NA,,,,,, +112859,Cg2,EA085,?,EA085-NA,,,,,, +112860,Cg3,EA085,?,EA085-NA,,,,,, +112861,Cg4,EA085,?,EA085-NA,,,,,, +112862,Cg5,EA085,?,EA085-NA,,,,,, +112863,Ch1,EA085,?,EA085-NA,,,,,, +112864,Ch10,EA085,?,EA085-NA,,,,,, +112865,Ch11,EA085,Elevated slightly,EA085-3,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +112866,Ch2,EA085,?,EA085-NA,,,,,, +112867,Ch3,EA085,?,EA085-NA,,,,,, +112868,Ch4,EA085,?,EA085-NA,,,,,, +112869,Ch5,EA085,?,EA085-NA,,,,,, +112870,Ch6,EA085,?,EA085-NA,,,,,, +112871,Ch7,EA085,?,EA085-NA,,,,,, +112872,Ch8,EA085,?,EA085-NA,,,,,, +112873,Ch9,EA085,?,EA085-NA,,,,,, +112874,Ci1,EA085,?,EA085-NA,,,,,, +112875,Ci10,EA085,?,EA085-NA,,,,,, +112876,Ci11,EA085,Floor level with ground,EA085-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +112877,Ci12,EA085,?,EA085-NA,,,,,, +112878,Ci2,EA085,?,EA085-NA,,,,,, +112879,Ci3,EA085,?,EA085-NA,,,,,, +112880,Ci4,EA085,?,EA085-NA,,,,,, +112881,Ci5,EA085,?,EA085-NA,,,,,, +112882,Ci6,EA085,?,EA085-NA,,,,,, +112883,Ci7,EA085,?,EA085-NA,,,,,, +112884,Ci8,EA085,?,EA085-NA,,,,,, +112885,Ci9,EA085,?,EA085-NA,,,,,, +112886,Cj1,EA085,Elevated slightly,EA085-3,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +112887,Cj10,EA085,?,EA085-NA,,,,,, +112888,Cj2,EA085,?,EA085-NA,,,,,, +112889,Cj3,EA085,?,EA085-NA,,,,,, +112890,Cj4,EA085,?,EA085-NA,,,,,, +112891,Cj5,EA085,?,EA085-NA,,,,,, +112892,Cj6,EA085,?,EA085-NA,,,,,, +112893,Cj7,EA085,Floor level with ground,EA085-2,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +112894,Cj8,EA085,?,EA085-NA,,,,,, +112895,Cj9,EA085,?,EA085-NA,,,,,, +112896,Ea1,EA085,?,EA085-NA,,,,,, +112897,Ea10,EA085,Floor level with ground,EA085-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +112898,Ea11,EA085,?,EA085-NA,,,,,, +112899,Ea12,EA085,?,EA085-NA,,,,,, +112900,Ea13,EA085,Floor level with ground,EA085-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +112901,Ea2,EA085,?,EA085-NA,,,,,, +112902,Ea3,EA085,Elevated slightly,EA085-3,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +112903,Ea4,EA085,?,EA085-NA,,,,,, +112904,Ea5,EA085,?,EA085-NA,,,,,, +112905,Ea6,EA085,Floor level with ground,EA085-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +112906,Ea7,EA085,Floor level with ground,EA085-2,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +112907,Ea8,EA085,?,EA085-NA,,,,,, +112908,Ea9,EA085,?,EA085-NA,,,,,, +112909,Eb1,EA085,Floor level with ground,EA085-2,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +112910,Eb2,EA085,?,EA085-NA,,,,,, +112911,Eb3,EA085,?,EA085-NA,,,,,, +112912,Eb4,EA085,?,EA085-NA,,,,,, +112913,Eb5,EA085,Floor level with ground,EA085-2,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +112914,Eb6,EA085,Floor level with ground,EA085-2,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +112915,Eb7,EA085,?,EA085-NA,,,,,, +112916,Eb8,EA085,?,EA085-NA,,,,,, +112917,Ec1,EA085,Raised substantially,EA085-4,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +112918,Ec10,EA085,Subterranean,EA085-1,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +112919,Ec11,EA085,?,EA085-NA,,,,,, +112920,Ec2,EA085,Floor level with ground,EA085-2,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112921,Ec3,EA085,Floor level with ground,EA085-2,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +112922,Ec4,EA085,?,EA085-NA,,,,,, +112923,Ec5,EA085,Subterranean,EA085-1,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +112924,Ec6,EA085,Floor level with ground,EA085-2,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +112925,Ec7,EA085,?,EA085-NA,,,,,, +112926,Ec8,EA085,Floor level with ground,EA085-2,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +112927,Ec9,EA085,?,EA085-NA,,,,,, +112928,Ed1,EA085,Elevated slightly,EA085-3,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +112929,Ed10,EA085,?,EA085-NA,,,,,, +112930,Ed13,EA085,?,EA085-NA,,,,,, +112931,Ed14,EA085,?,EA085-NA,,,,,, +112932,Ed15a,EA085,?,EA085-NA,,,,,, +112933,Ed15b,EA085,?,EA085-NA,,,,,, +112934,Ed16,EA085,?,EA085-NA,,,,,, +112935,Ed2,EA085,?,EA085-NA,,,,,, +112936,Ed3,EA085,?,EA085-NA,,,,,, +112937,Ed4,EA085,?,EA085-NA,,,,,, +112938,Ed5,EA085,Elevated slightly,EA085-3,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112939,Ed6,EA085,?,EA085-NA,,,,,, +112940,Ed7,EA085,Elevated slightly,EA085-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +112941,Ed8,EA085,Floor level with ground,EA085-2,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +112942,Ed9,EA085,?,EA085-NA,,,,,, +112943,Ee1,EA085,?,EA085-NA,,,,,, +112944,Ee2,EA085,?,EA085-NA,,,,,, +112945,Ee3,EA085,Raised substantially,EA085-4,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +112946,Ee4,EA085,?,EA085-NA,,,,,, +112947,Ee5,EA085,?,EA085-NA,,,,,, +112948,Ee6,EA085,?,EA085-NA,,,,,, +112949,Ee7,EA085,?,EA085-NA,,,,,, +112950,Ee8,EA085,?,EA085-NA,,,,,, +112951,Ef1,EA085,?,EA085-NA,,,,,, +112952,Ef10,EA085,?,EA085-NA,,,,,, +112953,Ef11,EA085,Floor level with ground,EA085-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +112954,Ef2,EA085,Elevated slightly,EA085-3,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +112955,Ef3,EA085,?,EA085-NA,,,,,, +112956,Ef4,EA085,Elevated slightly,EA085-3,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +112957,Ef5,EA085,Floor level with ground,EA085-2,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +112958,Ef6,EA085,?,EA085-NA,,,,,, +112959,Ef7,EA085,?,EA085-NA,,,,,, +112960,Ef8,EA085,?,EA085-NA,,,,,, +112961,Ef9,EA085,?,EA085-NA,,,,,, +112962,Eg1,EA085,Floor level with ground,EA085-2,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112963,Eg10,EA085,Floor level with ground,EA085-2,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +112964,Eg11,EA085,?,EA085-NA,,,,,, +112965,Eg12,EA085,?,EA085-NA,,,,,, +112966,Eg13,EA085,?,EA085-NA,,,,,, +112967,Eg14,EA085,?,EA085-NA,,,,,, +112968,Eg2,EA085,?,EA085-NA,,,,,, +112969,Eg3,EA085,?,EA085-NA,,,,,, +112970,Eg4,EA085,?,EA085-NA,,,,,, +112971,Eg5,EA085,?,EA085-NA,,,,,, +112972,Eg6,EA085,Elevated slightly,EA085-3,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +112973,Eg7,EA085,?,EA085-NA,,,,,, +112974,Eg8,EA085,?,EA085-NA,,,,,, +112975,Eg9,EA085,?,EA085-NA,,,,,, +112976,Eh1,EA085,?,EA085-NA,,,,,, +112977,Eh10,EA085,?,EA085-NA,,,,,, +112978,Eh2,EA085,Floor level with ground,EA085-2,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +112979,Eh3,EA085,?,EA085-NA,,,,,, +112980,Eh4,EA085,Floor level with ground,EA085-2,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +112981,Eh5,EA085,Raised substantially,EA085-4,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +112982,Eh6,EA085,Floor level with ground,EA085-2,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +112983,Eh7,EA085,Floor level with ground,EA085-2,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +112984,Eh8,EA085,?,EA085-NA,,,,,, +112985,Eh9,EA085,?,EA085-NA,,,,,, +112986,Ei1,EA085,?,EA085-NA,,,,,, +112987,Ei10,EA085,?,EA085-NA,,,,,, +112988,Ei11,EA085,?,EA085-NA,,,,,, +112989,Ei12,EA085,?,EA085-NA,,,,,, +112990,Ei13,EA085,?,EA085-NA,,,,,, +112991,Ei14,EA085,?,EA085-NA,,,,,, +112992,Ei15,EA085,?,EA085-NA,,,,,, +112993,Ei16,EA085,?,EA085-NA,,,,,, +112994,Ei17,EA085,?,EA085-NA,,,,,, +112995,Ei18,EA085,?,EA085-NA,,,,,, +112996,Ei19,EA085,?,EA085-NA,,,,,, +112997,Ei2,EA085,?,EA085-NA,,,,,, +112998,Ei20,EA085,?,EA085-NA,,,,,, +112999,Ei3,EA085,?,EA085-NA,,,,,, +113000,Ei4,EA085,?,EA085-NA,,,,,, +113001,Ei5,EA085,?,EA085-NA,,,,,, +113002,Ei6,EA085,?,EA085-NA,,,,,, +113003,Ei7,EA085,?,EA085-NA,,,,,, +113004,Ei8,EA085,?,EA085-NA,,,,,, +113005,Ei9,EA085,?,EA085-NA,,,,,, +113006,Ej1,EA085,?,EA085-NA,,,,,, +113007,Ej10,EA085,?,EA085-NA,,,,,, +113008,Ej11,EA085,?,EA085-NA,,,,,, +113009,Ej12,EA085,?,EA085-NA,,,,,, +113010,Ej13,EA085,?,EA085-NA,,,,,, +113011,Ej14,EA085,?,EA085-NA,,,,,, +113012,Ej15,EA085,?,EA085-NA,,,,,, +113013,Ej16,EA085,?,EA085-NA,,,,,, +113014,Ej2,EA085,?,EA085-NA,,,,,, +113015,Ej3,EA085,?,EA085-NA,,,,,, +113016,Ej4,EA085,Elevated slightly,EA085-3,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +113017,Ej5,EA085,?,EA085-NA,,,,,, +113018,Ej6,EA085,?,EA085-NA,,,,,, +113019,Ej7,EA085,?,EA085-NA,,,,,, +113020,Ej8,EA085,?,EA085-NA,,,,,, +113021,Ej9,EA085,Raised substantially,EA085-4,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +113022,Ia1,EA085,?,EA085-NA,,,,,, +113023,Ia10,EA085,?,EA085-NA,,,,,, +113024,Ia11,EA085,?,EA085-NA,,,,,, +113025,Ia12,EA085,?,EA085-NA,,,,,, +113026,Ia13,EA085,Raised substantially,EA085-4,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +113027,Ia14,EA085,Subterranean,EA085-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +113028,Ia15,EA085,?,EA085-NA,,,,,, +113029,Ia16,EA085,?,EA085-NA,,,,,, +113030,Ia17,EA085,?,EA085-NA,,,,,, +113031,Ia18,EA085,?,EA085-NA,,,,,, +113032,Ia2,EA085,?,EA085-NA,,,,,, +113033,Ia3,EA085,?,EA085-NA,,,,,, +113034,Ia4,EA085,?,EA085-NA,,,,,, +113035,Ia5,EA085,?,EA085-NA,,,,,, +113036,Ia6,EA085,?,EA085-NA,,,,,, +113037,Ia7,EA085,?,EA085-NA,,,,,, +113038,Ia8,EA085,?,EA085-NA,,,,,, +113039,Ia9,EA085,?,EA085-NA,,,,,, +113040,Ib1,EA085,?,EA085-NA,,,,,, +113041,Ib2,EA085,?,EA085-NA,,,,,, +113042,Ib3,EA085,?,EA085-NA,,,,,, +113043,Ib4,EA085,?,EA085-NA,,,,,, +113044,Ib5,EA085,?,EA085-NA,,,,,, +113045,Ib6,EA085,?,EA085-NA,,,,,, +113046,Ib7,EA085,?,EA085-NA,,,,,, +113047,Ib8,EA085,?,EA085-NA,,,,,, +113048,Ib9,EA085,?,EA085-NA,,,,,, +113049,Ic1,EA085,?,EA085-NA,,,,,, +113050,Ic10,EA085,?,EA085-NA,,,,,, +113051,Ic11,EA085,Floor level with ground,EA085-2,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +113052,Ic12,EA085,Raised substantially,EA085-4,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +113053,Ic13,EA085,?,EA085-NA,,,,,, +113054,Ic2,EA085,?,EA085-NA,,,,,, +113055,Ic3,EA085,?,EA085-NA,,,,,, +113056,Ic4,EA085,?,EA085-NA,,,,,, +113057,Ic5,EA085,Raised substantially,EA085-4,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +113058,Ic6,EA085,?,EA085-NA,,,,,, +113059,Ic7,EA085,?,EA085-NA,,,,,, +113060,Ic8,EA085,?,EA085-NA,,,,,, +113061,Ic9,EA085,?,EA085-NA,,,,,, +113062,Id1,EA085,?,EA085-NA,,,,,, +113063,Id10,EA085,Floor level with ground,EA085-2,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +113064,Id11,EA085,?,EA085-NA,,,,,, +113065,Id12,EA085,?,EA085-NA,,,,,, +113066,Id13,EA085,?,EA085-NA,,,,,, +113067,Id2,EA085,Floor level with ground,EA085-2,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +113068,Id3,EA085,?,EA085-NA,,,,,, +113069,Id4,EA085,?,EA085-NA,,,,,, +113070,Id5,EA085,?,EA085-NA,,,,,, +113071,Id6,EA085,?,EA085-NA,,,,,, +113072,Id7,EA085,?,EA085-NA,,,,,, +113073,Id8,EA085,Floor level with ground,EA085-2,,roth1890,,1830,EthnographicAtlas_1967_p97, +113074,Id9,EA085,?,EA085-NA,,,,,, +113075,Ie1,EA085,?,EA085-NA,,,,,, +113076,Ie10,EA085,?,EA085-NA,,,,,, +113077,Ie11,EA085,?,EA085-NA,,,,,, +113078,Ie12,EA085,?,EA085-NA,,,,,, +113079,Ie13,EA085,?,EA085-NA,,,,,, +113080,Ie14,EA085,?,EA085-NA,,,,,, +113081,Ie15,EA085,?,EA085-NA,,,,,, +113082,Ie16,EA085,Raised substantially,EA085-4,,williams194041,,1940,EthnographicAtlas_1967_p97, +113083,Ie17,EA085,?,EA085-NA,,,,,, +113084,Ie18,EA085,Floor level with ground,EA085-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +113085,Ie19,EA085,?,EA085-NA,,,,,, +113086,Ie2,EA085,?,EA085-NA,,,,,, +113087,Ie20,EA085,?,EA085-NA,,,,,, +113088,Ie21,EA085,?,EA085-NA,,,,,, +113089,Ie22,EA085,?,EA085-NA,,,,,, +113090,Ie23,EA085,?,EA085-NA,,,,,, +113091,Ie24,EA085,?,EA085-NA,,,,,, +113092,Ie25,EA085,?,EA085-NA,,,,,, +113093,Ie26,EA085,?,EA085-NA,,,,,, +113094,Ie27,EA085,?,EA085-NA,,,,,, +113095,Ie28,EA085,?,EA085-NA,,,,,, +113096,Ie29,EA085,?,EA085-NA,,,,,, +113097,Ie3,EA085,?,EA085-NA,,,,,, +113098,Ie30,EA085,?,EA085-NA,,,,,, +113099,Ie31,EA085,?,EA085-NA,,,,,, +113100,Ie32,EA085,?,EA085-NA,,,,,, +113101,Ie33,EA085,?,EA085-NA,,,,,, +113102,Ie34,EA085,?,EA085-NA,,,,,, +113103,Ie35,EA085,?,EA085-NA,,,,,, +113104,Ie36,EA085,?,EA085-NA,,,,,, +113105,Ie37,EA085,?,EA085-NA,,,,,, +113106,Ie38,EA085,Floor level with ground,EA085-2,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +113107,Ie39,EA085,Raised substantially,EA085-4,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +113108,Ie4,EA085,?,EA085-NA,,,,,, +113109,Ie5,EA085,Floor level with ground,EA085-2,,williams1936,,1930,EthnographicAtlas_1967_p97, +113110,Ie6,EA085,?,EA085-NA,,,,,, +113111,Ie7,EA085,?,EA085-NA,,,,,, +113112,Ie8,EA085,?,EA085-NA,,,,,, +113113,Ie9,EA085,?,EA085-NA,,,,,, +113114,If1,EA085,Elevated slightly,EA085-3,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +113115,If10,EA085,?,EA085-NA,,,,,, +113116,If11,EA085,?,EA085-NA,,,,,, +113117,If12,EA085,?,EA085-NA,,,,,, +113118,If13,EA085,?,EA085-NA,,,,,, +113119,If14,EA085,Elevated slightly,EA085-3,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +113120,If15,EA085,Raised substantially,EA085-4,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +113121,If16,EA085,?,EA085-NA,,,,,, +113122,If17,EA085,?,EA085-NA,,,,,, +113123,If2,EA085,?,EA085-NA,,,,,, +113124,If3,EA085,?,EA085-NA,,,,,, +113125,If4,EA085,Floor level with ground,EA085-2,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +113126,If5,EA085,?,EA085-NA,,,,,, +113127,If6,EA085,?,EA085-NA,,,,,, +113128,If7,EA085,?,EA085-NA,,,,,, +113129,If8,EA085,?,EA085-NA,,,,,, +113130,If9,EA085,?,EA085-NA,,,,,, +113131,Ig1,EA085,Floor level with ground,EA085-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +113132,Ig10,EA085,?,EA085-NA,,,,,, +113133,Ig11,EA085,Floor level with ground,EA085-2,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +113134,Ig12,EA085,?,EA085-NA,,,,,, +113135,Ig13,EA085,?,EA085-NA,,,,,, +113136,Ig14,EA085,?,EA085-NA,,,,,, +113137,Ig15,EA085,?,EA085-NA,,,,,, +113138,Ig16,EA085,?,EA085-NA,,,,,, +113139,Ig17,EA085,?,EA085-NA,,,,,, +113140,Ig18,EA085,?,EA085-NA,,,,,, +113141,Ig19,EA085,?,EA085-NA,,,,,, +113142,Ig2,EA085,?,EA085-NA,,,,,, +113143,Ig20,EA085,?,EA085-NA,,,,,, +113144,Ig21,EA085,?,EA085-NA,,,,,, +113145,Ig3,EA085,Raised substantially,EA085-4,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +113146,Ig4,EA085,?,EA085-NA,,,,,, +113147,Ig5,EA085,?,EA085-NA,,,,,, +113148,Ig6,EA085,?,EA085-NA,,,,,, +113149,Ig7,EA085,?,EA085-NA,,,,,, +113150,Ig8,EA085,?,EA085-NA,,,,,, +113151,Ig9,EA085,?,EA085-NA,,,,,, +113152,Ih1,EA085,?,EA085-NA,,,,,, +113153,Ih10,EA085,?,EA085-NA,,,,,, +113154,Ih11,EA085,?,EA085-NA,,,,,, +113155,Ih12,EA085,?,EA085-NA,,,,,, +113156,Ih13,EA085,?,EA085-NA,,,,,, +113157,Ih14,EA085,?,EA085-NA,,,,,, +113158,Ih2,EA085,?,EA085-NA,,,,,, +113159,Ih3,EA085,Elevated slightly,EA085-3,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +113160,Ih4,EA085,?,EA085-NA,,,,,, +113161,Ih5,EA085,Floor level with ground,EA085-2,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +113162,Ih6,EA085,?,EA085-NA,,,,,, +113163,Ih7,EA085,?,EA085-NA,,,,,, +113164,Ih8,EA085,?,EA085-NA,,,,,, +113165,Ih9,EA085,?,EA085-NA,,,,,, +113166,Ii1,EA085,?,EA085-NA,,,,,, +113167,Ii10,EA085,?,EA085-NA,,,,,, +113168,Ii12,EA085,?,EA085-NA,,,,,, +113169,Ii13,EA085,?,EA085-NA,,,,,, +113170,Ii14,EA085,?,EA085-NA,,,,,, +113171,Ii2,EA085,?,EA085-NA,,,,,, +113172,Ii3,EA085,?,EA085-NA,,,,,, +113173,Ii4,EA085,?,EA085-NA,,,,,, +113174,Ii5,EA085,?,EA085-NA,,,,,, +113175,Ii6,EA085,?,EA085-NA,,,,,, +113176,Ii7,EA085,?,EA085-NA,,,,,, +113177,Ii8,EA085,?,EA085-NA,,,,,, +113178,Ii9,EA085,?,EA085-NA,,,,,, +113179,Ij1,EA085,?,EA085-NA,,,,,, +113180,Ij10,EA085,?,EA085-NA,,,,,, +113181,Ij2,EA085,?,EA085-NA,,,,,, +113182,Ij3,EA085,?,EA085-NA,,,,,, +113183,Ij4,EA085,?,EA085-NA,,,,,, +113184,Ij5,EA085,?,EA085-NA,,,,,, +113185,Ij6,EA085,Elevated slightly,EA085-3,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +113186,Ij7,EA085,?,EA085-NA,,,,,, +113187,Ij8,EA085,?,EA085-NA,,,,,, +113188,Ij9,EA085,Floor level with ground,EA085-2,,metraux1940,,1860,EthnographicAtlas_1967_p105, +113189,Na1,EA085,Floor level with ground,EA085-2,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +113190,Na10,EA085,Floor level with ground,EA085-2,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +113191,Na11,EA085,Floor level with ground,EA085-2,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +113192,Na12,EA085,Floor level with ground,EA085-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +113193,Na13,EA085,Subterranean,EA085-1,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +113194,Na14,EA085,Floor level with ground,EA085-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +113195,Na15,EA085,Floor level with ground,EA085-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +113196,Na16,EA085,Floor level with ground,EA085-2,,osgood1931,,1860,EthnographicAtlas_1967_p105, +113197,Na17,EA085,Floor level with ground,EA085-2,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +113198,Na19,EA085,Subterranean,EA085-1,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +113199,Na2,EA085,Floor level with ground,EA085-2,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +113200,Na20,EA085,Subterranean,EA085-1,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +113201,Na21,EA085,Floor level with ground,EA085-2,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +113202,Na22,EA085,Floor level with ground,EA085-2,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +113203,Na23,EA085,Floor level with ground,EA085-2,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +113204,Na24,EA085,Floor level with ground,EA085-2,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +113205,Na25,EA085,Floor level with ground,EA085-2,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +113206,Na26,EA085,?,EA085-NA,,,,,, +113207,Na27,EA085,?,EA085-NA,,,,,, +113208,Na28,EA085,?,EA085-NA,,,,,, +113209,Na29,EA085,?,EA085-NA,,,,,, +113210,Na3,EA085,Floor level with ground,EA085-2,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +113211,Na30,EA085,?,EA085-NA,,,,,, +113212,Na31,EA085,Subterranean,EA085-1,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +113213,Na32,EA085,Floor level with ground,EA085-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +113214,Na33,EA085,?,EA085-NA,,,,,, +113215,Na34,EA085,Floor level with ground,EA085-2,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +113216,Na35,EA085,Floor level with ground,EA085-2,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +113217,Na36,EA085,Floor level with ground,EA085-2,Also a conical bark tipi,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +113218,Na37,EA085,?,EA085-NA,,,,,, +113219,Na38,EA085,Floor level with ground,EA085-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +113220,Na39,EA085,Floor level with ground,EA085-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +113221,Na4,EA085,Floor level with ground,EA085-2,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +113222,Na40,EA085,Floor level with ground,EA085-2,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +113223,Na41,EA085,?,EA085-NA,,,,,, +113224,Na42,EA085,?,EA085-NA,,,,,, +113225,Na43,EA085,Floor level with ground,EA085-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +113226,Na44,EA085,?,EA085-NA,,,,,, +113227,Na45,EA085,?,EA085-NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +113228,Na5,EA085,?,EA085-NA,,,,,, +113229,Na6,EA085,?,EA085-NA,,,,,, +113230,Na7,EA085,Floor level with ground,EA085-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +113231,Na8,EA085,Floor level with ground,EA085-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +113232,Na9,EA085,?,EA085-NA,,,,,, +113233,Nb1,EA085,?,EA085-NA,,,,,, +113234,Nb10,EA085,?,EA085-NA,,,,,, +113235,Nb11,EA085,?,EA085-NA,,,,,, +113236,Nb12,EA085,Subterranean,EA085-1,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +113237,Nb13,EA085,?,EA085-NA,,,,,, +113238,Nb14,EA085,?,EA085-NA,,,,,, +113239,Nb15,EA085,Floor level with ground,EA085-2,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +113240,Nb16,EA085,Floor level with ground,EA085-2,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +113241,Nb17,EA085,Floor level with ground,EA085-2,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +113242,Nb18,EA085,?,EA085-NA,,,,,, +113243,Nb19,EA085,?,EA085-NA,,,,,, +113244,Nb2,EA085,Floor level with ground,EA085-2,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +113245,Nb20,EA085,?,EA085-NA,,,,,, +113246,Nb21,EA085,Floor level with ground,EA085-2,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +113247,Nb22,EA085,Floor level with ground,EA085-2,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +113248,Nb23,EA085,Floor level with ground,EA085-2,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +113249,Nb24,EA085,?,EA085-NA,,,,,, +113250,Nb25,EA085,Floor level with ground,EA085-2,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +113251,Nb26,EA085,?,EA085-NA,,,,,, +113252,Nb27,EA085,Floor level with ground,EA085-2,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +113253,Nb28,EA085,Floor level with ground,EA085-2,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +113254,Nb29,EA085,?,EA085-NA,,,,,, +113255,Nb3,EA085,?,EA085-NA,,,,,, +113256,Nb30,EA085,?,EA085-NA,,,,,, +113257,Nb31,EA085,?,EA085-NA,,,,,, +113258,Nb32,EA085,?,EA085-NA,,,,,, +113259,Nb33,EA085,?,EA085-NA,,,,,, +113260,Nb34,EA085,?,EA085-NA,,,,,, +113261,Nb35,EA085,?,EA085-NA,,,,,, +113262,Nb36,EA085,?,EA085-NA,,,,,, +113263,Nb37,EA085,?,EA085-NA,,,,,, +113264,Nb38,EA085,?,EA085-NA,,,,,, +113265,Nb39,EA085,?,EA085-NA,,,,,, +113266,Nb4,EA085,?,EA085-NA,,,,,, +113267,Nb5,EA085,?,EA085-NA,,,,,, +113268,Nb6,EA085,?,EA085-NA,,,,,, +113269,Nb7,EA085,?,EA085-NA,,,,,, +113270,Nb8,EA085,?,EA085-NA,,,,,, +113271,Nb9,EA085,?,EA085-NA,,,,,, +113272,Nc1,EA085,Subterranean,EA085-1,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +113273,Nc10,EA085,Floor level with ground,EA085-2,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +113274,Nc11,EA085,Subterranean,EA085-1,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +113275,Nc12,EA085,Floor level with ground,EA085-2,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +113276,Nc13,EA085,Floor level with ground,EA085-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +113277,Nc14,EA085,Floor level with ground,EA085-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +113278,Nc15,EA085,Floor level with ground,EA085-2,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +113279,Nc16,EA085,?,EA085-NA,,,,,, +113280,Nc17,EA085,?,EA085-NA,,,,,, +113281,Nc18,EA085,?,EA085-NA,,,,,, +113282,Nc19,EA085,?,EA085-NA,,,,,, +113283,Nc2,EA085,Floor level with ground,EA085-2,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +113284,Nc20,EA085,?,EA085-NA,,,,,, +113285,Nc21,EA085,?,EA085-NA,,,,,, +113286,Nc22,EA085,Floor level with ground,EA085-2,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +113287,Nc23,EA085,Floor level with ground,EA085-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +113288,Nc24,EA085,?,EA085-NA,,,,,, +113289,Nc25,EA085,Floor level with ground,EA085-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +113290,Nc26,EA085,Subterranean,EA085-1,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +113291,Nc27,EA085,?,EA085-NA,,,,,, +113292,Nc28,EA085,?,EA085-NA,,,,,, +113293,Nc29,EA085,?,EA085-NA,,,,,, +113294,Nc3,EA085,Subterranean,EA085-1,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +113295,Nc30,EA085,?,EA085-NA,,,,,, +113296,Nc31,EA085,?,EA085-NA,,,,,, +113297,Nc32,EA085,?,EA085-NA,,,,,, +113298,Nc33,EA085,Floor level with ground,EA085-2,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +113299,Nc34,EA085,?,EA085-NA,,,,,, +113300,Nc4,EA085,Subterranean,EA085-1,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +113301,Nc5,EA085,?,EA085-NA,,,,,, +113302,Nc6,EA085,?,EA085-NA,,,,,, +113303,Nc7,EA085,Floor level with ground,EA085-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +113304,Nc8,EA085,Floor level with ground,EA085-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +113305,Nc9,EA085,Floor level with ground,EA085-2,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +113306,Nd1,EA085,Floor level with ground,EA085-2,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +113307,Nd10,EA085,Subterranean,EA085-1,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +113308,Nd11,EA085,Subterranean,EA085-1,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +113309,Nd12,EA085,Floor level with ground,EA085-2,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +113310,Nd13,EA085,Floor level with ground,EA085-2,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +113311,Nd14,EA085,Subterranean,EA085-1,"Also ground-level dwellings, eliptical or circular in shape",ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +113312,Nd15,EA085,Floor level with ground,EA085-2,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +113313,Nd16,EA085,Subterranean,EA085-1,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +113314,Nd17,EA085,Subterranean,EA085-1,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +113315,Nd18,EA085,Floor level with ground,EA085-2,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +113316,Nd19,EA085,?,EA085-NA,,,,,, +113317,Nd2,EA085,Floor level with ground,EA085-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +113318,Nd20,EA085,Floor level with ground,EA085-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +113319,Nd21,EA085,?,EA085-NA,,,,,, +113320,Nd22,EA085,Floor level with ground,EA085-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +113321,Nd23,EA085,?,EA085-NA,,,,,, +113322,Nd24,EA085,?,EA085-NA,,,,,, +113323,Nd25,EA085,?,EA085-NA,,,,,, +113324,Nd26,EA085,Floor level with ground,EA085-2,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +113325,Nd27,EA085,?,EA085-NA,,,,,, +113326,Nd28,EA085,Floor level with ground,EA085-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +113327,Nd29,EA085,Floor level with ground,EA085-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +113328,Nd3,EA085,?,EA085-NA,,,,,, +113329,Nd30,EA085,Subterranean,EA085-1,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +113330,Nd31,EA085,?,EA085-NA,,,,,, +113331,Nd32,EA085,Floor level with ground,EA085-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +113332,Nd33,EA085,Floor level with ground,EA085-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +113333,Nd34,EA085,Floor level with ground,EA085-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +113334,Nd35,EA085,?,EA085-NA,,,,,, +113335,Nd36,EA085,Floor level with ground,EA085-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +113336,Nd37,EA085,?,EA085-NA,,,,,, +113337,Nd38,EA085,Floor level with ground,EA085-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +113338,Nd39,EA085,?,EA085-NA,,,,,, +113339,Nd4,EA085,Floor level with ground,EA085-2,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +113340,Nd40,EA085,?,EA085-NA,,,,,, +113341,Nd41,EA085,Floor level with ground,EA085-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +113342,Nd42,EA085,?,EA085-NA,,,,,, +113343,Nd43,EA085,Floor level with ground,EA085-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +113344,Nd44,EA085,Floor level with ground,EA085-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +113345,Nd45,EA085,Floor level with ground,EA085-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +113346,Nd46,EA085,Floor level with ground,EA085-2,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +113347,Nd47,EA085,?,EA085-NA,,,,,, +113348,Nd48,EA085,?,EA085-NA,,,,,, +113349,Nd49,EA085,?,EA085-NA,,,,,, +113350,Nd5,EA085,Floor level with ground,EA085-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +113351,Nd50,EA085,?,EA085-NA,,,,,, +113352,Nd51,EA085,?,EA085-NA,,,,,, +113353,Nd52,EA085,?,EA085-NA,,,,,, +113354,Nd53,EA085,?,EA085-NA,,,,,, +113355,Nd54,EA085,?,EA085-NA,,,,,, +113356,Nd55,EA085,?,EA085-NA,,,,,, +113357,Nd56,EA085,Floor level with ground,EA085-2,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +113358,Nd57,EA085,?,EA085-NA,,,,,, +113359,Nd58,EA085,Floor level with ground,EA085-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +113360,Nd59,EA085,Floor level with ground,EA085-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +113361,Nd6,EA085,Floor level with ground,EA085-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +113362,Nd60,EA085,?,EA085-NA,,,,,, +113363,Nd61,EA085,Floor level with ground,EA085-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +113364,Nd62,EA085,Floor level with ground,EA085-2,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +113365,Nd63,EA085,Floor level with ground,EA085-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +113366,Nd64,EA085,Floor level with ground,EA085-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +113367,Nd65,EA085,?,EA085-NA,,,,,, +113368,Nd66,EA085,?,EA085-NA,,,,,, +113369,Nd67,EA085,Subterranean,EA085-1,,gifford1936,,1870,EthnographicAtlas_1967_p113, +113370,Nd7,EA085,Floor level with ground,EA085-2,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +113371,Nd8,EA085,Subterranean,EA085-1,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +113372,Nd9,EA085,Subterranean,EA085-1,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +113373,Ne1,EA085,?,EA085-NA,,,,,, +113374,Ne10,EA085,Floor level with ground,EA085-2,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +113375,Ne11,EA085,?,EA085-NA,,,,,, +113376,Ne12,EA085,?,EA085-NA,,,,,, +113377,Ne13,EA085,?,EA085-NA,,,,,, +113378,Ne14,EA085,Floor level with ground,EA085-2,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +113379,Ne15,EA085,Floor level with ground,EA085-2,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +113380,Ne16,EA085,?,EA085-NA,,,,,, +113381,Ne17,EA085,?,EA085-NA,,,,,, +113382,Ne18,EA085,?,EA085-NA,,,,,, +113383,Ne19,EA085,?,EA085-NA,,,,,, +113384,Ne2,EA085,?,EA085-NA,,,,,, +113385,Ne20,EA085,?,EA085-NA,,,,,, +113386,Ne21,EA085,?,EA085-NA,,,,,, +113387,Ne3,EA085,?,EA085-NA,,,,,, +113388,Ne4,EA085,?,EA085-NA,,,,,, +113389,Ne5,EA085,?,EA085-NA,,,,,, +113390,Ne6,EA085,Floor level with ground,EA085-2,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +113391,Ne7,EA085,?,EA085-NA,,,,,, +113392,Ne8,EA085,?,EA085-NA,,,,,, +113393,Ne9,EA085,?,EA085-NA,,,,,, +113394,Nf10,EA085,Floor level with ground,EA085-2,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +113395,Nf11,EA085,Floor level with ground,EA085-2,,whitman1937,,1870,EthnographicAtlas_1967_p117, +113396,Nf12,EA085,Floor level with ground,EA085-2,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +113397,Nf13,EA085,Floor level with ground,EA085-2,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +113398,Nf14,EA085,?,EA085-NA,,,,,, +113399,Nf15,EA085,?,EA085-NA,,,,,, +113400,Nf2,EA085,Floor level with ground,EA085-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +113401,Nf3,EA085,Floor level with ground,EA085-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +113402,Nf4,EA085,?,EA085-NA,,,,,, +113403,Nf5,EA085,?,EA085-NA,,,,,, +113404,Nf6,EA085,Floor level with ground,EA085-2,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +113405,Nf7,EA085,Floor level with ground,EA085-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +113406,Nf8,EA085,?,EA085-NA,,,,,, +113407,Nf9,EA085,?,EA085-NA,,,,,, +113408,Ng1,EA085,?,EA085-NA,,,,,, +113409,Ng10,EA085,?,EA085-NA,,,,,, +113410,Ng11,EA085,?,EA085-NA,,,,,, +113411,Ng12,EA085,Floor level with ground,EA085-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +113412,Ng13,EA085,?,EA085-NA,,,,,, +113413,Ng14,EA085,?,EA085-NA,,,,,, +113414,Ng15,EA085,?,EA085-NA,,,,,, +113415,Ng2,EA085,?,EA085-NA,,,,,, +113416,Ng3,EA085,Floor level with ground,EA085-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +113417,Ng4,EA085,Floor level with ground,EA085-2,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +113418,Ng5,EA085,Floor level with ground,EA085-2,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +113419,Ng6,EA085,Floor level with ground,EA085-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +113420,Ng7,EA085,?,EA085-NA,,,,,, +113421,Ng8,EA085,Floor level with ground,EA085-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +113422,Ng9,EA085,?,EA085-NA,,,,,, +113423,Nh1,EA085,?,EA085-NA,,,,,, +113424,Nh10,EA085,?,EA085-NA,,,,,, +113425,Nh11,EA085,?,EA085-NA,,,,,, +113426,Nh12,EA085,?,EA085-NA,,,,,, +113427,Nh13,EA085,?,EA085-NA,,,,,, +113428,Nh14,EA085,?,EA085-NA,,,,,, +113429,Nh15,EA085,?,EA085-NA,,,,,, +113430,Nh16,EA085,Floor level with ground,EA085-2,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +113431,Nh17,EA085,?,EA085-NA,,,,,, +113432,Nh18,EA085,?,EA085-NA,,,,,, +113433,Nh19,EA085,Floor level with ground,EA085-2,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +113434,Nh2,EA085,?,EA085-NA,,,,,, +113435,Nh20,EA085,?,EA085-NA,,,,,, +113436,Nh21,EA085,?,EA085-NA,,,,,, +113437,Nh22,EA085,Floor level with ground,EA085-2,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +113438,Nh23,EA085,?,EA085-NA,,,,,, +113439,Nh24,EA085,?,EA085-NA,,,,,, +113440,Nh25,EA085,?,EA085-NA,,,,,, +113441,Nh26,EA085,?,EA085-NA,,,,,, +113442,Nh27,EA085,?,EA085-NA,,,,,, +113443,Nh3,EA085,?,EA085-NA,,,,,, +113444,Nh4,EA085,?,EA085-NA,,,,,, +113445,Nh5,EA085,Floor level with ground,EA085-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +113446,Nh6,EA085,?,EA085-NA,,,,,, +113447,Nh7,EA085,?,EA085-NA,,,,,, +113448,Nh8,EA085,?,EA085-NA,,,,,, +113449,Nh9,EA085,?,EA085-NA,,,,,, +113450,Ni1,EA085,?,EA085-NA,,,,,, +113451,Ni2,EA085,Floor level with ground,EA085-2,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +113452,Ni3,EA085,?,EA085-NA,,,,,, +113453,Ni4,EA085,?,EA085-NA,,,,,, +113454,Ni5,EA085,?,EA085-NA,,,,,, +113455,Ni6,EA085,?,EA085-NA,,,,,, +113456,Ni7,EA085,?,EA085-NA,,,,,, +113457,Ni8,EA085,?,EA085-NA,,,,,, +113458,Ni9,EA085,?,EA085-NA,,,,,, +113459,Nj1,EA085,?,EA085-NA,,,,,, +113460,Nj10,EA085,?,EA085-NA,,,,,, +113461,Nj11,EA085,?,EA085-NA,,,,,, +113462,Nj12,EA085,?,EA085-NA,,,,,, +113463,Nj13,EA085,?,EA085-NA,,,,,, +113464,Nj14,EA085,?,EA085-NA,,,,,, +113465,Nj2,EA085,Floor level with ground,EA085-2,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +113466,Nj3,EA085,?,EA085-NA,,,,,, +113467,Nj4,EA085,?,EA085-NA,,,,,, +113468,Nj5,EA085,?,EA085-NA,,,,,, +113469,Nj6,EA085,?,EA085-NA,,,,,, +113470,Nj7,EA085,?,EA085-NA,,,,,, +113471,Nj8,EA085,Floor level with ground,EA085-2,,foster1948,,1500,EthnographicAtlas_1967_p121, +113472,Nj9,EA085,?,EA085-NA,,,,,, +113473,Sa1,EA085,?,EA085-NA,,,,,, +113474,Sa10,EA085,?,EA085-NA,,,,,, +113475,Sa11,EA085,?,EA085-NA,,,,,, +113476,Sa12,EA085,?,EA085-NA,,,,,, +113477,Sa13,EA085,?,EA085-NA,,,,,, +113478,Sa14,EA085,?,EA085-NA,,,,,, +113479,Sa15,EA085,?,EA085-NA,,,,,, +113480,Sa16,EA085,?,EA085-NA,,,,,, +113481,Sa17,EA085,?,EA085-NA,,,,,, +113482,Sa2,EA085,?,EA085-NA,,,,,, +113483,Sa3,EA085,?,EA085-NA,,,,,, +113484,Sa4,EA085,?,EA085-NA,,,,,, +113485,Sa5,EA085,Raised substantially,EA085-4,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +113486,Sa6,EA085,?,EA085-NA,,,,,, +113487,Sa7,EA085,?,EA085-NA,,,,,, +113488,Sa8,EA085,Floor level with ground,EA085-2,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +113489,Sa9,EA085,Floor level with ground,EA085-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +113490,Sb1,EA085,?,EA085-NA,,,,,, +113491,Sb2,EA085,Floor level with ground,EA085-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +113492,Sb3,EA085,?,EA085-NA,,,,,, +113493,Sb4,EA085,?,EA085-NA,,,,,, +113494,Sb5,EA085,?,EA085-NA,,,,,, +113495,Sb6,EA085,?,EA085-NA,,,,,, +113496,Sb7,EA085,?,EA085-NA,,,,,, +113497,Sb8,EA085,Floor level with ground,EA085-2,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +113498,Sb9,EA085,?,EA085-NA,,,,,, +113499,Sc1,EA085,?,EA085-NA,,,,,, +113500,Sc10,EA085,?,EA085-NA,,,,,, +113501,Sc11,EA085,?,EA085-NA,,,,,, +113502,Sc12,EA085,?,EA085-NA,,,,,, +113503,Sc13,EA085,?,EA085-NA,,,,,, +113504,Sc14,EA085,?,EA085-NA,,,,,, +113505,Sc15,EA085,?,EA085-NA,,,,,, +113506,Sc16,EA085,?,EA085-NA,,,,,, +113507,Sc17,EA085,?,EA085-NA,,,,,, +113508,Sc18,EA085,?,EA085-NA,,,,,, +113509,Sc2,EA085,?,EA085-NA,,,,,, +113510,Sc3,EA085,?,EA085-NA,,,,,, +113511,Sc4,EA085,?,EA085-NA,,,,,, +113512,Sc5,EA085,Floor level with ground,EA085-2,,farabee1918,,1900,EthnographicAtlas_1967_p121, +113513,Sc6,EA085,?,EA085-NA,,,,,, +113514,Sc7,EA085,?,EA085-NA,,,,,, +113515,Sc8,EA085,Floor level with ground,EA085-2,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +113516,Sc9,EA085,?,EA085-NA,,,,,, +113517,Sd1,EA085,Floor level with ground,EA085-2,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +113518,Sd2,EA085,?,EA085-NA,,,,,, +113519,Sd3,EA085,?,EA085-NA,,,,,, +113520,Sd4,EA085,?,EA085-NA,,,,,, +113521,Sd5,EA085,?,EA085-NA,,,,,, +113522,Sd6,EA085,?,EA085-NA,,,,,, +113523,Sd7,EA085,Floor level with ground,EA085-2,,fock1963,,1950,EthnographicAtlas_1967_p121, +113524,Sd8,EA085,?,EA085-NA,,,,,, +113525,Sd9,EA085,?,EA085-NA,,,,,, +113526,Se1,EA085,Floor level with ground,EA085-2,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +113527,Se10,EA085,?,EA085-NA,,,,,, +113528,Se11,EA085,?,EA085-NA,,,,,, +113529,Se12,EA085,?,EA085-NA,,,,,, +113530,Se2,EA085,Raised substantially,EA085-4,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +113531,Se3,EA085,?,EA085-NA,,,,,, +113532,Se4,EA085,?,EA085-NA,,,,,, +113533,Se5,EA085,Raised substantially,EA085-4,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +113534,Se6,EA085,?,EA085-NA,,,,,, +113535,Se7,EA085,?,EA085-NA,,,,,, +113536,Se8,EA085,Floor level with ground,EA085-2,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +113537,Se9,EA085,?,EA085-NA,,,,,, +113538,Sf1,EA085,Floor level with ground,EA085-2,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +113539,Sf2,EA085,?,EA085-NA,,,,,, +113540,Sf3,EA085,?,EA085-NA,,,,,, +113541,Sf4,EA085,Floor level with ground,EA085-2,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +113542,Sf5,EA085,Floor level with ground,EA085-2,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +113543,Sf6,EA085,Raised substantially,EA085-4,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +113544,Sf7,EA085,Floor level with ground,EA085-2,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +113545,Sf8,EA085,?,EA085-NA,,,,,, +113546,Sf9,EA085,?,EA085-NA,,,,,, +113547,Sg1,EA085,Subterranean,EA085-1,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +113548,Sg2,EA085,Floor level with ground,EA085-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +113549,Sg3,EA085,Floor level with ground,EA085-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +113550,Sg4,EA085,?,EA085-NA,,,,,, +113551,Sg5,EA085,?,EA085-NA,,,,,, +113552,Sh1,EA085,?,EA085-NA,,,,,, +113553,Sh2,EA085,?,EA085-NA,,,,,, +113554,Sh3,EA085,?,EA085-NA,,,,,, +113555,Sh4,EA085,?,EA085-NA,,,,,, +113556,Sh5,EA085,?,EA085-NA,,,,,, +113557,Sh6,EA085,?,EA085-NA,,,,,, +113558,Sh7,EA085,?,EA085-NA,,,,,, +113559,Sh8,EA085,Floor level with ground,EA085-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +113560,Sh9,EA085,?,EA085-NA,,,,,, +113561,Si1,EA085,Floor level with ground,EA085-2,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +113562,Si10,EA085,?,EA085-NA,,,,,, +113563,Si2,EA085,?,EA085-NA,,,,,, +113564,Si3,EA085,?,EA085-NA,,,,,, +113565,Si4,EA085,Floor level with ground,EA085-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +113566,Si5,EA085,?,EA085-NA,,,,,, +113567,Si6,EA085,?,EA085-NA,,,,,, +113568,Si7,EA085,?,EA085-NA,,,,,, +113569,Si8,EA085,?,EA085-NA,,,,,, +113570,Si9,EA085,?,EA085-NA,,,,,, +113571,Sj1,EA085,?,EA085-NA,,,,,, +113572,Sj10,EA085,?,EA085-NA,,,,,, +113573,Sj11,EA085,?,EA085-NA,,,,,, +113574,Sj2,EA085,?,EA085-NA,,,,,, +113575,Sj3,EA085,?,EA085-NA,,,,,, +113576,Sj4,EA085,?,EA085-NA,,,,,, +113577,Sj5,EA085,Floor level with ground,EA085-2,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +113578,Sj6,EA085,?,EA085-NA,,,,,, +113579,Sj7,EA085,?,EA085-NA,,,,,, +113580,Sj8,EA085,?,EA085-NA,,,,,, +113581,Sj9,EA085,Floor level with ground,EA085-2,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +113582,ch12,EA085,Floor level with ground,EA085-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +113583,ch13,EA085,Elevated slightly,EA085-3,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +113584,ch14,EA085,Floor level with ground,EA085-2,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +113585,ch15,EA085,Floor level with ground,EA085-2,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +113586,ch16,EA085,?,EA085-NA,,,,,, +113587,ch17,EA085,Subterranean,EA085-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +113588,ch18,EA085,?,EA085-NA,,,,,, +113589,ch19,EA085,Elevated slightly,EA085-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +113590,ch20,EA085,Elevated slightly,EA085-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +113591,ch21,EA085,Floor level with ground,EA085-2,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +113592,ch22,EA085,?,EA085-NA,,,,,, +113593,ch23,EA085,?,EA085-NA,,,,,, +113594,ch24,EA085,?,EA085-NA,,,,,, +113595,ch25,EA085,Elevated slightly,EA085-3,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +113596,ch26,EA085,Elevated slightly,EA085-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +113597,ch27,EA085,Floor level with ground,EA085-2,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +113598,ch28,EA085,?,EA085-NA,,,,,, +113599,ec12,EA085,Floor level with ground,EA085-2,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +113600,ec13,EA085,Elevated slightly,EA085-3,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +113601,ec14,EA085,Floor level with ground,EA085-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +113602,ec15,EA085,Floor level with ground,EA085-2,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +113603,ec16,EA085,Floor level with ground,EA085-2,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +113604,ec17,EA085,Floor level with ground,EA085-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +113605,ec18,EA085,Floor level with ground,EA085-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +113606,ec19,EA085,Floor level with ground,EA085-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +113607,ec20,EA085,Floor level with ground,EA085-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +113608,ec21,EA085,Floor level with ground,EA085-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +113609,Aa1,EA086,Walls not diff. from roof,EA086-11,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +113610,Aa2,EA086,?,EA086-NA,,,,,, +113611,Aa3,EA086,?,EA086-NA,,,,,, +113612,Aa4,EA086,?,EA086-NA,,,,,, +113613,Aa5,EA086,?,EA086-NA,,,,,, +113614,Aa6,EA086,"Plaster, clay or similar",EA086-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +113615,Aa7,EA086,?,EA086-NA,,,,,, +113616,Aa8,EA086,Walls not diff. from roof,EA086-11,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +113617,Aa9,EA086,?,EA086-NA,,,,,, +113618,Ab1,EA086,?,EA086-NA,,,,,, +113619,Ab10,EA086,"Plaster, clay or similar",EA086-2,,hunter1936,,1936,EthnographicAtlas_1967_p65, +113620,Ab11,EA086,?,EA086-NA,,,,,, +113621,Ab12,EA086,?,EA086-NA,,,,,, +113622,Ab13,EA086,?,EA086-NA,,,,,, +113623,Ab14,EA086,?,EA086-NA,,,,,, +113624,Ab15,EA086,?,EA086-NA,,,,,, +113625,Ab16,EA086,?,EA086-NA,,,,,, +113626,Ab17,EA086,?,EA086-NA,,,,,, +113627,Ab18,EA086,?,EA086-NA,,,,,, +113628,Ab19,EA086,?,EA086-NA,,,,,, +113629,Ab2,EA086,"Plaster, clay or similar",EA086-2,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +113630,Ab20,EA086,?,EA086-NA,,,,,, +113631,Ab21a,EA086,?,EA086-NA,,,,,, +113632,Ab21b,EA086,?,EA086-NA,,,,,, +113633,Ab22,EA086,?,EA086-NA,,,,,, +113634,Ab3,EA086,?,EA086-NA,,,,,, +113635,Ab4,EA086,?,EA086-NA,,,,,, +113636,Ab5,EA086,?,EA086-NA,,,,,, +113637,Ab6,EA086,?,EA086-NA,,,,,, +113638,Ab7,EA086,?,EA086-NA,,,,,, +113639,Ab8,EA086,?,EA086-NA,,,,,, +113640,Ab9,EA086,"Plaster, clay or similar",EA086-2,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +113641,Ac1,EA086,?,EA086-NA,,,,,, +113642,Ac10,EA086,?,EA086-NA,,,,,, +113643,Ac11,EA086,"Plaster, clay or similar",EA086-2,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +113644,Ac12,EA086,?,EA086-NA,,,,,, +113645,Ac13,EA086,?,EA086-NA,,,,,, +113646,Ac14,EA086,"Grass, leaves or thatch",EA086-8,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +113647,Ac15,EA086,?,EA086-NA,,,,,, +113648,Ac16,EA086,?,EA086-NA,,,,,, +113649,Ac17,EA086,?,EA086-NA,,,,,, +113650,Ac18,EA086,?,EA086-NA,,,,,, +113651,Ac19,EA086,?,EA086-NA,,,,,, +113652,Ac2,EA086,?,EA086-NA,,,,,, +113653,Ac20,EA086,?,EA086-NA,,,,,, +113654,Ac21,EA086,?,EA086-NA,,,,,, +113655,Ac22,EA086,?,EA086-NA,,,,,, +113656,Ac23,EA086,?,EA086-NA,,,,,, +113657,Ac24,EA086,?,EA086-NA,,,,,, +113658,Ac25,EA086,?,EA086-NA,,,,,, +113659,Ac26,EA086,?,EA086-NA,,,,,, +113660,Ac27,EA086,?,EA086-NA,,,,,, +113661,Ac28,EA086,?,EA086-NA,,,,,, +113662,Ac29,EA086,?,EA086-NA,,,,,, +113663,Ac3,EA086,?,EA086-NA,,,,,, +113664,Ac30,EA086,?,EA086-NA,,,,,, +113665,Ac31,EA086,?,EA086-NA,,,,,, +113666,Ac32,EA086,"Plaster, clay or similar",EA086-2,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +113667,Ac33,EA086,?,EA086-NA,,,,,, +113668,Ac34,EA086,?,EA086-NA,,,,,, +113669,Ac35,EA086,?,EA086-NA,,,,,, +113670,Ac36,EA086,?,EA086-NA,,,,,, +113671,Ac37,EA086,?,EA086-NA,,,,,, +113672,Ac38,EA086,?,EA086-NA,,,,,, +113673,Ac39,EA086,"Plaster, clay or similar",EA086-2,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +113674,Ac4,EA086,?,EA086-NA,,,,,, +113675,Ac40,EA086,?,EA086-NA,,,,,, +113676,Ac41,EA086,?,EA086-NA,,,,,, +113677,Ac42,EA086,?,EA086-NA,,,,,, +113678,Ac43,EA086,?,EA086-NA,,,,,, +113679,Ac5,EA086,?,EA086-NA,,,,,, +113680,Ac6,EA086,?,EA086-NA,,,,,, +113681,Ac7,EA086,?,EA086-NA,,,,,, +113682,Ac8,EA086,?,EA086-NA,,,,,, +113683,Ac9,EA086,?,EA086-NA,,,,,, +113684,Ad1,EA086,?,EA086-NA,,,,,, +113685,Ad10,EA086,"Plaster, clay or similar",EA086-2,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +113686,Ad11,EA086,?,EA086-NA,,,,,, +113687,Ad12,EA086,?,EA086-NA,,,,,, +113688,Ad13,EA086,?,EA086-NA,,,,,, +113689,Ad14,EA086,?,EA086-NA,,,,,, +113690,Ad15,EA086,"Adobe, clay or brick",EA086-9,,chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p69, +113691,Ad16,EA086,?,EA086-NA,,,,,, +113692,Ad17,EA086,?,EA086-NA,,,,,, +113693,Ad18,EA086,?,EA086-NA,,,,,, +113694,Ad19,EA086,"Plaster, clay or similar",EA086-2,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +113695,Ad2,EA086,?,EA086-NA,,,,,, +113696,Ad20,EA086,"Plaster, clay or similar",EA086-2,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +113697,Ad21,EA086,?,EA086-NA,,,,,, +113698,Ad22,EA086,?,EA086-NA,,,,,, +113699,Ad23,EA086,?,EA086-NA,,,,,, +113700,Ad24,EA086,?,EA086-NA,,,,,, +113701,Ad25,EA086,?,EA086-NA,,,,,, +113702,Ad26,EA086,?,EA086-NA,,,,,, +113703,Ad27,EA086,?,EA086-NA,,,,,, +113704,Ad28,EA086,?,EA086-NA,,,,,, +113705,Ad29,EA086,?,EA086-NA,,,,,, +113706,Ad3,EA086,?,EA086-NA,,,,,, +113707,Ad30,EA086,?,EA086-NA,,,,,, +113708,Ad31,EA086,?,EA086-NA,,,,,, +113709,Ad32,EA086,?,EA086-NA,,,,,, +113710,Ad33,EA086,?,EA086-NA,,,,,, +113711,Ad34,EA086,?,EA086-NA,,,,,, +113712,Ad35,EA086,?,EA086-NA,,,,,, +113713,Ad36,EA086,?,EA086-NA,,,,,, +113714,Ad37,EA086,?,EA086-NA,,,,,, +113715,Ad38,EA086,?,EA086-NA,,,,,, +113716,Ad39,EA086,?,EA086-NA,,,,,, +113717,Ad4,EA086,"Plaster, clay or similar",EA086-2,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +113718,Ad40,EA086,?,EA086-NA,,,,,, +113719,Ad41,EA086,?,EA086-NA,,,,,, +113720,Ad42,EA086,?,EA086-NA,,,,,, +113721,Ad43,EA086,?,EA086-NA,,,,,, +113722,Ad44,EA086,?,EA086-NA,,,,,, +113723,Ad45,EA086,?,EA086-NA,,,,,, +113724,Ad46,EA086,Walls not diff. from roof,EA086-11,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +113725,Ad47,EA086,?,EA086-NA,,,,,, +113726,Ad48,EA086,?,EA086-NA,,,,,, +113727,Ad49,EA086,?,EA086-NA,,,,,, +113728,Ad5,EA086,?,EA086-NA,,,,,, +113729,Ad50,EA086,"Plaster, clay or similar",EA086-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +113730,Ad51,EA086,?,EA086-NA,,,,,, +113731,Ad6,EA086,"Adobe, clay or brick",EA086-9,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +113732,Ad7,EA086,?,EA086-NA,,,,,, +113733,Ad8,EA086,?,EA086-NA,,,,,, +113734,Ad9,EA086,?,EA086-NA,,,,,, +113735,Ae1,EA086,"Plaster, clay or similar",EA086-2,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +113736,Ae10,EA086,?,EA086-NA,,,,,, +113737,Ae11,EA086,?,EA086-NA,,,,,, +113738,Ae12,EA086,?,EA086-NA,,,,,, +113739,Ae13,EA086,?,EA086-NA,,,,,, +113740,Ae14,EA086,?,EA086-NA,,,,,, +113741,Ae15,EA086,?,EA086-NA,,,,,, +113742,Ae16,EA086,?,EA086-NA,,,,,, +113743,Ae17,EA086,?,EA086-NA,,,,,, +113744,Ae18,EA086,"Grass, leaves or thatch",EA086-8,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +113745,Ae19,EA086,?,EA086-NA,,,,,, +113746,Ae2,EA086,?,EA086-NA,,,,,, +113747,Ae20,EA086,?,EA086-NA,,,,,, +113748,Ae21,EA086,?,EA086-NA,,,,,, +113749,Ae22,EA086,?,EA086-NA,,,,,, +113750,Ae23,EA086,?,EA086-NA,,,,,, +113751,Ae24,EA086,?,EA086-NA,,,,,, +113752,Ae25,EA086,?,EA086-NA,,,,,, +113753,Ae26,EA086,?,EA086-NA,,,,,, +113754,Ae27,EA086,?,EA086-NA,,,,,, +113755,Ae28,EA086,Mats,EA086-7,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +113756,Ae29,EA086,?,EA086-NA,,,,,, +113757,Ae3,EA086,?,EA086-NA,,,,,, +113758,Ae30,EA086,?,EA086-NA,,,,,, +113759,Ae31,EA086,?,EA086-NA,,,,,, +113760,Ae32,EA086,?,EA086-NA,,,,,, +113761,Ae33,EA086,"Plaster, clay or similar",EA086-2,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +113762,Ae34,EA086,?,EA086-NA,,,,,, +113763,Ae35,EA086,"Grass, leaves or thatch",EA086-8,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +113764,Ae36,EA086,?,EA086-NA,,,,,, +113765,Ae37,EA086,?,EA086-NA,,,,,, +113766,Ae38,EA086,?,EA086-NA,,,,,, +113767,Ae39,EA086,?,EA086-NA,,,,,, +113768,Ae4,EA086,?,EA086-NA,,,,,, +113769,Ae40,EA086,?,EA086-NA,,,,,, +113770,Ae41,EA086,?,EA086-NA,,,,,, +113771,Ae42,EA086,?,EA086-NA,,,,,, +113772,Ae43,EA086,?,EA086-NA,,,,,, +113773,Ae44,EA086,?,EA086-NA,,,,,, +113774,Ae45,EA086,?,EA086-NA,,,,,, +113775,Ae46,EA086,?,EA086-NA,,,,,, +113776,Ae47,EA086,?,EA086-NA,,,,,, +113777,Ae48,EA086,Bark,EA086-4,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +113778,Ae49,EA086,?,EA086-NA,,,,,, +113779,Ae5,EA086,?,EA086-NA,,,,,, +113780,Ae50,EA086,"Plaster, clay or similar",EA086-2,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +113781,Ae51,EA086,?,EA086-NA,,,,,, +113782,Ae52,EA086,?,EA086-NA,,,,,, +113783,Ae53,EA086,?,EA086-NA,,,,,, +113784,Ae54,EA086,?,EA086-NA,,,,,, +113785,Ae55,EA086,?,EA086-NA,,,,,, +113786,Ae56,EA086,?,EA086-NA,,,,,, +113787,Ae57,EA086,?,EA086-NA,,,,,, +113788,Ae58,EA086,?,EA086-NA,,,,,, +113789,Ae59,EA086,?,EA086-NA,,,,,, +113790,Ae6,EA086,?,EA086-NA,,,,,, +113791,Ae7,EA086,?,EA086-NA,,,,,, +113792,Ae8,EA086,?,EA086-NA,,,,,, +113793,Ae9,EA086,?,EA086-NA,,,,,, +113794,Af1,EA086,?,EA086-NA,,,,,, +113795,Af10,EA086,?,EA086-NA,,,,,, +113796,Af11,EA086,?,EA086-NA,,,,,, +113797,Af12,EA086,?,EA086-NA,,,,,, +113798,Af13,EA086,?,EA086-NA,,,,,, +113799,Af14,EA086,Mats,EA086-7,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +113800,Af15,EA086,"Plaster, clay or similar",EA086-2,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +113801,Af16,EA086,?,EA086-NA,,,,,, +113802,Af17,EA086,?,EA086-NA,,,,,, +113803,Af18,EA086,?,EA086-NA,,,,,, +113804,Af19,EA086,?,EA086-NA,,,,,, +113805,Af2,EA086,?,EA086-NA,,,,,, +113806,Af20,EA086,?,EA086-NA,,,,,, +113807,Af21,EA086,?,EA086-NA,,,,,, +113808,Af22,EA086,?,EA086-NA,,,,,, +113809,Af23,EA086,?,EA086-NA,,,,,, +113810,Af24,EA086,?,EA086-NA,,,,,, +113811,Af25,EA086,?,EA086-NA,,,,,, +113812,Af26,EA086,?,EA086-NA,,,,,, +113813,Af27,EA086,?,EA086-NA,,,,,, +113814,Af28,EA086,?,EA086-NA,,,,,, +113815,Af29,EA086,?,EA086-NA,,,,,, +113816,Af3,EA086,?,EA086-NA,,,,,, +113817,Af30,EA086,?,EA086-NA,,,,,, +113818,Af31,EA086,?,EA086-NA,,,,,, +113819,Af32,EA086,?,EA086-NA,,,,,, +113820,Af33,EA086,?,EA086-NA,,,,,, +113821,Af34,EA086,?,EA086-NA,,,,,, +113822,Af35,EA086,?,EA086-NA,,,,,, +113823,Af36,EA086,?,EA086-NA,,,,,, +113824,Af37,EA086,"Adobe, clay or brick",EA086-9,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +113825,Af38,EA086,?,EA086-NA,,,,,, +113826,Af39,EA086,?,EA086-NA,,,,,, +113827,Af4,EA086,?,EA086-NA,,,,,, +113828,Af40,EA086,?,EA086-NA,,,,,, +113829,Af41,EA086,?,EA086-NA,,,,,, +113830,Af42,EA086,?,EA086-NA,,,,,, +113831,Af43,EA086,?,EA086-NA,,,,,, +113832,Af44,EA086,?,EA086-NA,,,,,, +113833,Af45,EA086,?,EA086-NA,,,,,, +113834,Af46,EA086,?,EA086-NA,,,,,, +113835,Af47,EA086,?,EA086-NA,,,,,, +113836,Af48,EA086,Mats,EA086-7,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +113837,Af49,EA086,?,EA086-NA,,,,,, +113838,Af5,EA086,"Plaster, clay or similar",EA086-2,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +113839,Af50,EA086,?,EA086-NA,,,,,, +113840,Af51,EA086,?,EA086-NA,,,,,, +113841,Af52,EA086,"Plaster, clay or similar",EA086-2,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +113842,Af53,EA086,?,EA086-NA,,,,,, +113843,Af54,EA086,?,EA086-NA,,,,,, +113844,Af55,EA086,?,EA086-NA,,,,,, +113845,Af56,EA086,?,EA086-NA,,,,,, +113846,Af57,EA086,?,EA086-NA,,,,,, +113847,Af58,EA086,?,EA086-NA,,,,,, +113848,Af6,EA086,?,EA086-NA,,,,,, +113849,Af7,EA086,?,EA086-NA,,,,,, +113850,Af8,EA086,?,EA086-NA,,,,,, +113851,Af9,EA086,?,EA086-NA,,,,,, +113852,Ag1,EA086,"Adobe, clay or brick",EA086-9,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +113853,Ag10,EA086,?,EA086-NA,,,,,, +113854,Ag11,EA086,?,EA086-NA,,,,,, +113855,Ag12,EA086,"Adobe, clay or brick",EA086-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +113856,Ag13,EA086,"Plaster, clay or similar",EA086-2,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +113857,Ag14,EA086,?,EA086-NA,,,,,, +113858,Ag15,EA086,"Plaster, clay or similar",EA086-2,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +113859,Ag16,EA086,?,EA086-NA,,,,,, +113860,Ag17,EA086,?,EA086-NA,,,,,, +113861,Ag18,EA086,?,EA086-NA,,,,,, +113862,Ag19,EA086,?,EA086-NA,,,,,, +113863,Ag2,EA086,?,EA086-NA,,,,,, +113864,Ag20,EA086,?,EA086-NA,,,,,, +113865,Ag21,EA086,?,EA086-NA,,,,,, +113866,Ag22,EA086,?,EA086-NA,,,,,, +113867,Ag23,EA086,?,EA086-NA,,,,,, +113868,Ag24,EA086,?,EA086-NA,,,,,, +113869,Ag25,EA086,"Adobe, clay or brick",EA086-9,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +113870,Ag26,EA086,"Adobe, clay or brick",EA086-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +113871,Ag27,EA086,?,EA086-NA,,,,,, +113872,Ag28,EA086,?,EA086-NA,,,,,, +113873,Ag29,EA086,?,EA086-NA,,,,,, +113874,Ag3,EA086,?,EA086-NA,,,,,, +113875,Ag30,EA086,?,EA086-NA,,,,,, +113876,Ag31,EA086,?,EA086-NA,,,,,, +113877,Ag32,EA086,"Adobe, clay or brick",EA086-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +113878,Ag33,EA086,?,EA086-NA,,,,,, +113879,Ag34,EA086,"Adobe, clay or brick",EA086-9,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +113880,Ag35,EA086,"Adobe, clay or brick",EA086-9,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +113881,Ag36,EA086,?,EA086-NA,,,,,, +113882,Ag37,EA086,?,EA086-NA,,,,,, +113883,Ag38,EA086,?,EA086-NA,,,,,, +113884,Ag39,EA086,"Adobe, clay or brick",EA086-9,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +113885,Ag4,EA086,"Adobe, clay or brick",EA086-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +113886,Ag40,EA086,"Adobe, clay or brick",EA086-9,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +113887,Ag41,EA086,?,EA086-NA,,,,,, +113888,Ag42,EA086,?,EA086-NA,,,,,, +113889,Ag43,EA086,?,EA086-NA,,,,,, +113890,Ag44,EA086,?,EA086-NA,,,,,, +113891,Ag45,EA086,"Adobe, clay or brick",EA086-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +113892,Ag46,EA086,?,EA086-NA,,,,,, +113893,Ag47,EA086,?,EA086-NA,,,,,, +113894,Ag48,EA086,?,EA086-NA,,,,,, +113895,Ag49,EA086,?,EA086-NA,,,,,, +113896,Ag5,EA086,?,EA086-NA,,,,,, +113897,Ag50,EA086,?,EA086-NA,,,,,, +113898,Ag51,EA086,?,EA086-NA,,,,,, +113899,Ag52,EA086,?,EA086-NA,,,,,, +113900,Ag53,EA086,?,EA086-NA,,,,,, +113901,Ag54,EA086,"Plaster, clay or similar",EA086-2,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +113902,Ag6,EA086,Walls not diff. from roof,EA086-11,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +113903,Ag7,EA086,Walls not diff. from roof,EA086-11,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +113904,Ag8,EA086,?,EA086-NA,,,,,, +113905,Ag9,EA086,?,EA086-NA,,,,,, +113906,Ah1,EA086,?,EA086-NA,,,,,, +113907,Ah10,EA086,?,EA086-NA,,,,,, +113908,Ah11,EA086,?,EA086-NA,,,,,, +113909,Ah12,EA086,?,EA086-NA,,,,,, +113910,Ah13,EA086,?,EA086-NA,,,,,, +113911,Ah14,EA086,?,EA086-NA,,,,,, +113912,Ah15,EA086,"Plaster, clay or similar",EA086-2,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +113913,Ah16,EA086,?,EA086-NA,,,,,, +113914,Ah17,EA086,?,EA086-NA,,,,,, +113915,Ah18,EA086,?,EA086-NA,,,,,, +113916,Ah19,EA086,?,EA086-NA,,,,,, +113917,Ah2,EA086,?,EA086-NA,,,,,, +113918,Ah20,EA086,"Adobe, clay or brick",EA086-9,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +113919,Ah21,EA086,?,EA086-NA,,,,,, +113920,Ah22,EA086,?,EA086-NA,,,,,, +113921,Ah23,EA086,?,EA086-NA,,,,,, +113922,Ah24,EA086,?,EA086-NA,,,,,, +113923,Ah25,EA086,"Adobe, clay or brick",EA086-9,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +113924,Ah26,EA086,?,EA086-NA,,,,,, +113925,Ah27,EA086,?,EA086-NA,,,,,, +113926,Ah28,EA086,?,EA086-NA,,,,,, +113927,Ah29,EA086,?,EA086-NA,,,,,, +113928,Ah3,EA086,?,EA086-NA,,,,,, +113929,Ah30,EA086,?,EA086-NA,,,,,, +113930,Ah31,EA086,?,EA086-NA,,,,,, +113931,Ah32,EA086,?,EA086-NA,,,,,, +113932,Ah33,EA086,"Adobe, clay or brick",EA086-9,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +113933,Ah34,EA086,?,EA086-NA,,,,,, +113934,Ah35,EA086,?,EA086-NA,,,,,, +113935,Ah36,EA086,?,EA086-NA,,,,,, +113936,Ah37,EA086,Walls not diff. from roof,EA086-11,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +113937,Ah38,EA086,?,EA086-NA,,,,,, +113938,Ah39,EA086,?,EA086-NA,,,,,, +113939,Ah4,EA086,?,EA086-NA,,,,,, +113940,Ah5,EA086,?,EA086-NA,,,,,, +113941,Ah6,EA086,?,EA086-NA,,,,,, +113942,Ah7,EA086,?,EA086-NA,,,,,, +113943,Ah8,EA086,?,EA086-NA,,,,,, +113944,Ah9,EA086,?,EA086-NA,,,,,, +113945,Ai1,EA086,?,EA086-NA,,,,,, +113946,Ai10,EA086,?,EA086-NA,,,,,, +113947,Ai11,EA086,?,EA086-NA,,,,,, +113948,Ai12,EA086,?,EA086-NA,,,,,, +113949,Ai13,EA086,?,EA086-NA,,,,,, +113950,Ai14,EA086,?,EA086-NA,,,,,, +113951,Ai15,EA086,?,EA086-NA,,,,,, +113952,Ai16,EA086,?,EA086-NA,,,,,, +113953,Ai17,EA086,?,EA086-NA,,,,,, +113954,Ai18,EA086,"Adobe, clay or brick",EA086-9,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +113955,Ai19,EA086,"Adobe, clay or brick",EA086-9,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +113956,Ai2,EA086,?,EA086-NA,,,,,, +113957,Ai20,EA086,?,EA086-NA,,,,,, +113958,Ai21,EA086,"Adobe, clay or brick",EA086-9,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +113959,Ai22,EA086,?,EA086-NA,,,,,, +113960,Ai23,EA086,"Plaster, clay or similar",EA086-2,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +113961,Ai24,EA086,?,EA086-NA,,,,,, +113962,Ai25,EA086,"Plaster, clay or similar",EA086-2,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +113963,Ai26,EA086,Bark,EA086-4,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +113964,Ai27,EA086,?,EA086-NA,,,,,, +113965,Ai28,EA086,"Wood, incl. bamboo",EA086-3,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +113966,Ai29,EA086,?,EA086-NA,,,,,, +113967,Ai3,EA086,?,EA086-NA,,,,,, +113968,Ai30,EA086,?,EA086-NA,,,,,, +113969,Ai31,EA086,?,EA086-NA,,,,,, +113970,Ai32,EA086,?,EA086-NA,,,,,, +113971,Ai33,EA086,?,EA086-NA,,,,,, +113972,Ai34,EA086,?,EA086-NA,,,,,, +113973,Ai35,EA086,?,EA086-NA,,,,,, +113974,Ai36,EA086,?,EA086-NA,,,,,, +113975,Ai37,EA086,?,EA086-NA,,,,,, +113976,Ai38,EA086,?,EA086-NA,,,,,, +113977,Ai39,EA086,?,EA086-NA,,,,,, +113978,Ai4,EA086,?,EA086-NA,,,,,, +113979,Ai40,EA086,?,EA086-NA,,,,,, +113980,Ai41,EA086,?,EA086-NA,,,,,, +113981,Ai42,EA086,?,EA086-NA,,,,,, +113982,Ai43,EA086,?,EA086-NA,,,,,, +113983,Ai44,EA086,?,EA086-NA,,,,,, +113984,Ai45,EA086,?,EA086-NA,,,,,, +113985,Ai46,EA086,?,EA086-NA,,,,,, +113986,Ai47,EA086,Mats,EA086-7,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +113987,Ai5,EA086,?,EA086-NA,,,,,, +113988,Ai6,EA086,?,EA086-NA,,,,,, +113989,Ai7,EA086,Walls not diff. from roof,EA086-11,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +113990,Ai8,EA086,?,EA086-NA,,,,,, +113991,Ai9,EA086,?,EA086-NA,,,,,, +113992,Aj1,EA086,?,EA086-NA,,,,,, +113993,Aj10,EA086,?,EA086-NA,,,,,, +113994,Aj11,EA086,?,EA086-NA,,,,,, +113995,Aj12,EA086,?,EA086-NA,,,,,, +113996,Aj13,EA086,?,EA086-NA,,,,,, +113997,Aj14,EA086,?,EA086-NA,,,,,, +113998,Aj15,EA086,?,EA086-NA,,,,,, +113999,Aj16,EA086,?,EA086-NA,,,,,, +114000,Aj17,EA086,Walls not diff. from roof,EA086-11,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +114001,Aj18,EA086,?,EA086-NA,,,,,, +114002,Aj19,EA086,?,EA086-NA,,,,,, +114003,Aj2,EA086,?,EA086-NA,,,,,, +114004,Aj20,EA086,?,EA086-NA,,,,,, +114005,Aj21,EA086,?,EA086-NA,,,,,, +114006,Aj22,EA086,?,EA086-NA,,,,,, +114007,Aj23,EA086,?,EA086-NA,,,,,, +114008,Aj24,EA086,Walls not diff. from roof,EA086-11,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +114009,Aj25,EA086,?,EA086-NA,,,,,, +114010,Aj26,EA086,?,EA086-NA,,,,,, +114011,Aj27,EA086,"Plaster, clay or similar",EA086-2,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +114012,Aj28,EA086,?,EA086-NA,,,,,, +114013,Aj29,EA086,?,EA086-NA,,,,,, +114014,Aj3,EA086,Walls not diff. from roof,EA086-11,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +114015,Aj30,EA086,?,EA086-NA,,,,,, +114016,Aj31,EA086,?,EA086-NA,,,,,, +114017,Aj4,EA086,?,EA086-NA,,,,,, +114018,Aj5,EA086,Walls not diff. from roof,EA086-11,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +114019,Aj6,EA086,?,EA086-NA,,,,,, +114020,Aj7,EA086,?,EA086-NA,,,,,, +114021,Aj8,EA086,?,EA086-NA,,,,,, +114022,Aj9,EA086,?,EA086-NA,,,,,, +114023,Ca1,EA086,?,EA086-NA,,,,,, +114024,Ca10,EA086,?,EA086-NA,,,,,, +114025,Ca11,EA086,Open walls,EA086-10,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +114026,Ca12,EA086,?,EA086-NA,,,,,, +114027,Ca13,EA086,?,EA086-NA,,,,,, +114028,Ca14,EA086,?,EA086-NA,,,,,, +114029,Ca15,EA086,?,EA086-NA,,,,,, +114030,Ca16,EA086,?,EA086-NA,,,,,, +114031,Ca17,EA086,?,EA086-NA,,,,,, +114032,Ca18,EA086,?,EA086-NA,,,,,, +114033,Ca19,EA086,?,EA086-NA,,,,,, +114034,Ca2,EA086,"Adobe, clay or brick",EA086-9,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +114035,Ca20,EA086,Walls not diff. from roof,EA086-11,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +114036,Ca21,EA086,?,EA086-NA,,,,,, +114037,Ca22,EA086,?,EA086-NA,,,,,, +114038,Ca23,EA086,Mats,EA086-7,,jensen1959,,1950,EthnographicAtlas_1967_p81, +114039,Ca24,EA086,?,EA086-NA,,,,,, +114040,Ca25,EA086,?,EA086-NA,,,,,, +114041,Ca26,EA086,?,EA086-NA,,,,,, +114042,Ca27,EA086,Walls not diff. from roof,EA086-11,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +114043,Ca28,EA086,?,EA086-NA,,,,,, +114044,Ca29,EA086,?,EA086-NA,,,,,, +114045,Ca3,EA086,?,EA086-NA,,,,,, +114046,Ca30,EA086,"Plaster, clay or similar",EA086-2,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +114047,Ca31,EA086,?,EA086-NA,,,,,, +114048,Ca32,EA086,?,EA086-NA,,,,,, +114049,Ca33,EA086,"Grass, leaves or thatch",EA086-8,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +114050,Ca34,EA086,Walls not diff. from roof,EA086-11,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +114051,Ca35,EA086,?,EA086-NA,,,,,, +114052,Ca36,EA086,?,EA086-NA,,,,,, +114053,Ca37,EA086,?,EA086-NA,,,,,, +114054,Ca38,EA086,?,EA086-NA,,,,,, +114055,Ca39,EA086,?,EA086-NA,,,,,, +114056,Ca4,EA086,"Wood, incl. bamboo",EA086-3,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +114057,Ca40,EA086,?,EA086-NA,,,,,, +114058,Ca41,EA086,?,EA086-NA,,,,,, +114059,Ca42,EA086,?,EA086-NA,,,,,, +114060,Ca43,EA086,?,EA086-NA,,,,,, +114061,Ca5,EA086,?,EA086-NA,,,,,, +114062,Ca6,EA086,"Adobe, clay or brick",EA086-9,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +114063,Ca7,EA086,?,EA086-NA,,,,,, +114064,Ca8,EA086,?,EA086-NA,,,,,, +114065,Ca9,EA086,?,EA086-NA,,,,,, +114066,Cb1,EA086,?,EA086-NA,,,,,, +114067,Cb10,EA086,?,EA086-NA,,,,,, +114068,Cb11,EA086,?,EA086-NA,,,,,, +114069,Cb12,EA086,?,EA086-NA,,,,,, +114070,Cb13,EA086,?,EA086-NA,,,,,, +114071,Cb14,EA086,?,EA086-NA,,,,,, +114072,Cb15,EA086,Walls not diff. from roof,EA086-11,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +114073,Cb16,EA086,Mats,EA086-7,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +114074,Cb17,EA086,"Stone, stucco or brick",EA086-1,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +114075,Cb18,EA086,?,EA086-NA,,,,,, +114076,Cb19,EA086,Mats,EA086-7,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +114077,Cb2,EA086,?,EA086-NA,,,,,, +114078,Cb20,EA086,?,EA086-NA,,,,,, +114079,Cb21,EA086,?,EA086-NA,,,,,, +114080,Cb22,EA086,"Adobe, clay or brick",EA086-9,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +114081,Cb23,EA086,?,EA086-NA,,,,,, +114082,Cb24,EA086,?,EA086-NA,,,,,, +114083,Cb25,EA086,?,EA086-NA,,,,,, +114084,Cb26,EA086,?,EA086-NA,,,,,, +114085,Cb27,EA086,?,EA086-NA,,,,,, +114086,Cb28,EA086,?,EA086-NA,,,,,, +114087,Cb29,EA086,?,EA086-NA,,,,,, +114088,Cb3,EA086,"Adobe, clay or brick",EA086-9,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +114089,Cb4,EA086,?,EA086-NA,,,,,, +114090,Cb5,EA086,?,EA086-NA,,,,,, +114091,Cb6,EA086,?,EA086-NA,,,,,, +114092,Cb7,EA086,"Adobe, clay or brick",EA086-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +114093,Cb8,EA086,?,EA086-NA,,,,,, +114094,Cb9,EA086,"Adobe, clay or brick",EA086-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +114095,Cc1,EA086,?,EA086-NA,,,,,, +114096,Cc10,EA086,Walls not diff. from roof,EA086-11,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +114097,Cc11,EA086,Walls not diff. from roof,EA086-11,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +114098,Cc12,EA086,?,EA086-NA,,,,,, +114099,Cc13,EA086,Mats,EA086-7,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +114100,Cc14,EA086,Mats,EA086-7,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +114101,Cc15,EA086,?,EA086-NA,,,,,, +114102,Cc16,EA086,"Stone, stucco or brick",EA086-1,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +114103,Cc17,EA086,?,EA086-NA,,,,,, +114104,Cc18,EA086,?,EA086-NA,,,,,, +114105,Cc19,EA086,?,EA086-NA,,,,,, +114106,Cc2,EA086,"Stone, stucco or brick",EA086-1,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +114107,Cc20,EA086,?,EA086-NA,,,,,, +114108,Cc3,EA086,?,EA086-NA,,,,,, +114109,Cc4,EA086,?,EA086-NA,,,,,, +114110,Cc5,EA086,Walls not diff. from roof,EA086-11,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +114111,Cc6,EA086,?,EA086-NA,,,,,, +114112,Cc7,EA086,"Adobe, clay or brick",EA086-9,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114113,Cc8,EA086,Walls not diff. from roof,EA086-11,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +114114,Cc9,EA086,"Adobe, clay or brick",EA086-9,"Also similarly shaped houses with conical roofs and walls of grass/thatch (code ""8"") OR with rounded roofs and walls of mats/latticework (code ""7"")",benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +114115,Cd1,EA086,"Stone, stucco or brick",EA086-1,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +114116,Cd10,EA086,?,EA086-NA,,,,,, +114117,Cd11,EA086,?,EA086-NA,,,,,, +114118,Cd12,EA086,"Adobe, clay or brick",EA086-9,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +114119,Cd13,EA086,?,EA086-NA,,,,,, +114120,Cd14,EA086,?,EA086-NA,,,,,, +114121,Cd15,EA086,"Stone, stucco or brick",EA086-1,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +114122,Cd16,EA086,?,EA086-NA,,,,,, +114123,Cd17,EA086,?,EA086-NA,,,,,, +114124,Cd18,EA086,?,EA086-NA,,,,,, +114125,Cd19,EA086,"Stone, stucco or brick",EA086-1,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +114126,Cd2,EA086,?,EA086-NA,,,,,, +114127,Cd20,EA086,?,EA086-NA,,,,,, +114128,Cd21,EA086,"Plaster, clay or similar",EA086-2,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +114129,Cd3,EA086,?,EA086-NA,,,,,, +114130,Cd4,EA086,?,EA086-NA,,,,,, +114131,Cd5,EA086,?,EA086-NA,,,,,, +114132,Cd6,EA086,?,EA086-NA,,,,,, +114133,Cd7,EA086,?,EA086-NA,,,,,, +114134,Cd8,EA086,?,EA086-NA,,,,,, +114135,Cd9,EA086,?,EA086-NA,,,,,, +114136,Ce1,EA086,"Stone, stucco or brick",EA086-1,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +114137,Ce2,EA086,?,EA086-NA,,,,,, +114138,Ce3,EA086,?,EA086-NA,,,,,, +114139,Ce4,EA086,?,EA086-NA,,,,,, +114140,Ce5,EA086,"Stone, stucco or brick",EA086-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +114141,Ce6,EA086,?,EA086-NA,,,,,, +114142,Ce7,EA086,?,EA086-NA,,,,,, +114143,Ce8,EA086,?,EA086-NA,,,,,, +114144,Cf1,EA086,?,EA086-NA,,,,,, +114145,Cf2,EA086,?,EA086-NA,,,,,, +114146,Cf3,EA086,?,EA086-NA,,,,,, +114147,Cf4,EA086,?,EA086-NA,,,,,, +114148,Cf5,EA086,?,EA086-NA,,,,,, +114149,Cg1,EA086,?,EA086-NA,,,,,, +114150,Cg2,EA086,?,EA086-NA,,,,,, +114151,Cg3,EA086,?,EA086-NA,,,,,, +114152,Cg4,EA086,?,EA086-NA,,,,,, +114153,Cg5,EA086,?,EA086-NA,,,,,, +114154,Ch1,EA086,?,EA086-NA,,,,,, +114155,Ch10,EA086,?,EA086-NA,,,,,, +114156,Ch11,EA086,"Wood, incl. bamboo",EA086-3,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +114157,Ch2,EA086,?,EA086-NA,,,,,, +114158,Ch3,EA086,?,EA086-NA,,,,,, +114159,Ch4,EA086,?,EA086-NA,,,,,, +114160,Ch5,EA086,?,EA086-NA,,,,,, +114161,Ch6,EA086,?,EA086-NA,,,,,, +114162,Ch7,EA086,?,EA086-NA,,,,,, +114163,Ch8,EA086,?,EA086-NA,,,,,, +114164,Ch9,EA086,?,EA086-NA,,,,,, +114165,Ci1,EA086,?,EA086-NA,,,,,, +114166,Ci10,EA086,?,EA086-NA,,,,,, +114167,Ci11,EA086,Fabric,EA086-6,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +114168,Ci12,EA086,?,EA086-NA,,,,,, +114169,Ci2,EA086,?,EA086-NA,,,,,, +114170,Ci3,EA086,?,EA086-NA,,,,,, +114171,Ci4,EA086,?,EA086-NA,,,,,, +114172,Ci5,EA086,?,EA086-NA,,,,,, +114173,Ci6,EA086,?,EA086-NA,,,,,, +114174,Ci7,EA086,?,EA086-NA,,,,,, +114175,Ci8,EA086,?,EA086-NA,,,,,, +114176,Ci9,EA086,?,EA086-NA,,,,,, +114177,Cj1,EA086,"Adobe, clay or brick",EA086-9,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +114178,Cj10,EA086,?,EA086-NA,,,,,, +114179,Cj2,EA086,?,EA086-NA,,,,,, +114180,Cj3,EA086,?,EA086-NA,,,,,, +114181,Cj4,EA086,?,EA086-NA,,,,,, +114182,Cj5,EA086,?,EA086-NA,,,,,, +114183,Cj6,EA086,?,EA086-NA,,,,,, +114184,Cj7,EA086,"Stone, stucco or brick",EA086-1,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +114185,Cj8,EA086,?,EA086-NA,,,,,, +114186,Cj9,EA086,?,EA086-NA,,,,,, +114187,Ea1,EA086,?,EA086-NA,,,,,, +114188,Ea10,EA086,"Stone, stucco or brick",EA086-1,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +114189,Ea11,EA086,?,EA086-NA,,,,,, +114190,Ea12,EA086,?,EA086-NA,,,,,, +114191,Ea13,EA086,"Stone, stucco or brick",EA086-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +114192,Ea2,EA086,?,EA086-NA,,,,,, +114193,Ea3,EA086,"Stone, stucco or brick",EA086-1,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +114194,Ea4,EA086,?,EA086-NA,,,,,, +114195,Ea5,EA086,?,EA086-NA,,,,,, +114196,Ea6,EA086,Fabric,EA086-6,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +114197,Ea7,EA086,Fabric,EA086-6,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +114198,Ea8,EA086,?,EA086-NA,,,,,, +114199,Ea9,EA086,?,EA086-NA,,,,,, +114200,Eb1,EA086,"Adobe, clay or brick",EA086-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +114201,Eb2,EA086,?,EA086-NA,,,,,, +114202,Eb3,EA086,?,EA086-NA,,,,,, +114203,Eb4,EA086,?,EA086-NA,,,,,, +114204,Eb5,EA086,"Adobe, clay or brick",EA086-9,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +114205,Eb6,EA086,"Wood, incl. bamboo",EA086-3,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +114206,Eb7,EA086,?,EA086-NA,,,,,, +114207,Eb8,EA086,?,EA086-NA,,,,,, +114208,Ec1,EA086,"Wood, incl. bamboo",EA086-3,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +114209,Ec10,EA086,"Wood, incl. bamboo",EA086-3,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +114210,Ec11,EA086,?,EA086-NA,,,,,, +114211,Ec2,EA086,Walls not diff. from roof,EA086-11,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114212,Ec3,EA086,Walls not diff. from roof,EA086-11,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +114213,Ec4,EA086,?,EA086-NA,,,,,, +114214,Ec5,EA086,Walls not diff. from roof,EA086-11,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +114215,Ec6,EA086,"Wood, incl. bamboo",EA086-3,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +114216,Ec7,EA086,?,EA086-NA,,,,,, +114217,Ec8,EA086,Walls not diff. from roof,EA086-11,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +114218,Ec9,EA086,?,EA086-NA,,,,,, +114219,Ed1,EA086,"Wood, incl. bamboo",EA086-3,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +114220,Ed10,EA086,?,EA086-NA,,,,,, +114221,Ed13,EA086,?,EA086-NA,,,,,, +114222,Ed14,EA086,?,EA086-NA,,,,,, +114223,Ed15a,EA086,?,EA086-NA,,,,,, +114224,Ed15b,EA086,?,EA086-NA,,,,,, +114225,Ed16,EA086,?,EA086-NA,,,,,, +114226,Ed2,EA086,?,EA086-NA,,,,,, +114227,Ed3,EA086,?,EA086-NA,,,,,, +114228,Ed4,EA086,?,EA086-NA,,,,,, +114229,Ed5,EA086,"Wood, incl. bamboo",EA086-3,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114230,Ed6,EA086,?,EA086-NA,,,,,, +114231,Ed7,EA086,"Wood, incl. bamboo",EA086-3,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +114232,Ed8,EA086,"Stone, stucco or brick",EA086-1,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +114233,Ed9,EA086,?,EA086-NA,,,,,, +114234,Ee1,EA086,?,EA086-NA,,,,,, +114235,Ee2,EA086,?,EA086-NA,,,,,, +114236,Ee3,EA086,Mats,EA086-7,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +114237,Ee4,EA086,?,EA086-NA,,,,,, +114238,Ee5,EA086,?,EA086-NA,,,,,, +114239,Ee6,EA086,?,EA086-NA,,,,,, +114240,Ee7,EA086,?,EA086-NA,,,,,, +114241,Ee8,EA086,?,EA086-NA,,,,,, +114242,Ef1,EA086,?,EA086-NA,,,,,, +114243,Ef10,EA086,?,EA086-NA,,,,,, +114244,Ef11,EA086,"Stone, stucco or brick",EA086-1,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +114245,Ef2,EA086,"Adobe, clay or brick",EA086-9,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +114246,Ef3,EA086,?,EA086-NA,,,,,, +114247,Ef4,EA086,"Adobe, clay or brick",EA086-9,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +114248,Ef5,EA086,Walls not diff. from roof,EA086-11,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +114249,Ef6,EA086,?,EA086-NA,,,,,, +114250,Ef7,EA086,?,EA086-NA,,,,,, +114251,Ef8,EA086,?,EA086-NA,,,,,, +114252,Ef9,EA086,?,EA086-NA,,,,,, +114253,Eg1,EA086,Walls not diff. from roof,EA086-11,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114254,Eg10,EA086,"Stone, stucco or brick",EA086-1,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +114255,Eg11,EA086,?,EA086-NA,,,,,, +114256,Eg12,EA086,?,EA086-NA,,,,,, +114257,Eg13,EA086,?,EA086-NA,,,,,, +114258,Eg14,EA086,?,EA086-NA,,,,,, +114259,Eg2,EA086,?,EA086-NA,,,,,, +114260,Eg3,EA086,?,EA086-NA,,,,,, +114261,Eg4,EA086,?,EA086-NA,,,,,, +114262,Eg5,EA086,?,EA086-NA,,,,,, +114263,Eg6,EA086,"Adobe, clay or brick",EA086-9,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +114264,Eg7,EA086,?,EA086-NA,,,,,, +114265,Eg8,EA086,?,EA086-NA,,,,,, +114266,Eg9,EA086,?,EA086-NA,,,,,, +114267,Eh1,EA086,?,EA086-NA,,,,,, +114268,Eh10,EA086,?,EA086-NA,,,,,, +114269,Eh2,EA086,"Adobe, clay or brick",EA086-9,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +114270,Eh3,EA086,?,EA086-NA,,,,,, +114271,Eh4,EA086,?,EA086-NA,,,,,, +114272,Eh5,EA086,?,EA086-NA,,,,,, +114273,Eh6,EA086,"Adobe, clay or brick",EA086-9,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +114274,Eh7,EA086,"Grass, leaves or thatch",EA086-8,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +114275,Eh8,EA086,?,EA086-NA,,,,,, +114276,Eh9,EA086,?,EA086-NA,,,,,, +114277,Ei1,EA086,?,EA086-NA,,,,,, +114278,Ei10,EA086,?,EA086-NA,,,,,, +114279,Ei11,EA086,?,EA086-NA,,,,,, +114280,Ei12,EA086,?,EA086-NA,,,,,, +114281,Ei13,EA086,?,EA086-NA,,,,,, +114282,Ei14,EA086,?,EA086-NA,,,,,, +114283,Ei15,EA086,?,EA086-NA,,,,,, +114284,Ei16,EA086,?,EA086-NA,,,,,, +114285,Ei17,EA086,?,EA086-NA,,,,,, +114286,Ei18,EA086,?,EA086-NA,,,,,, +114287,Ei19,EA086,?,EA086-NA,,,,,, +114288,Ei2,EA086,?,EA086-NA,,,,,, +114289,Ei20,EA086,?,EA086-NA,,,,,, +114290,Ei3,EA086,?,EA086-NA,,,,,, +114291,Ei4,EA086,?,EA086-NA,,,,,, +114292,Ei5,EA086,?,EA086-NA,,,,,, +114293,Ei6,EA086,?,EA086-NA,,,,,, +114294,Ei7,EA086,?,EA086-NA,,,,,, +114295,Ei8,EA086,?,EA086-NA,,,,,, +114296,Ei9,EA086,?,EA086-NA,,,,,, +114297,Ej1,EA086,?,EA086-NA,,,,,, +114298,Ej10,EA086,?,EA086-NA,,,,,, +114299,Ej11,EA086,?,EA086-NA,,,,,, +114300,Ej12,EA086,?,EA086-NA,,,,,, +114301,Ej13,EA086,?,EA086-NA,,,,,, +114302,Ej14,EA086,?,EA086-NA,,,,,, +114303,Ej15,EA086,?,EA086-NA,,,,,, +114304,Ej16,EA086,?,EA086-NA,,,,,, +114305,Ej2,EA086,?,EA086-NA,,,,,, +114306,Ej3,EA086,?,EA086-NA,,,,,, +114307,Ej4,EA086,"Stone, stucco or brick",EA086-1,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +114308,Ej5,EA086,?,EA086-NA,,,,,, +114309,Ej6,EA086,?,EA086-NA,,,,,, +114310,Ej7,EA086,?,EA086-NA,,,,,, +114311,Ej8,EA086,?,EA086-NA,,,,,, +114312,Ej9,EA086,"Wood, incl. bamboo",EA086-3,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +114313,Ia1,EA086,?,EA086-NA,,,,,, +114314,Ia10,EA086,?,EA086-NA,,,,,, +114315,Ia11,EA086,?,EA086-NA,,,,,, +114316,Ia12,EA086,?,EA086-NA,,,,,, +114317,Ia13,EA086,?,EA086-NA,,,,,, +114318,Ia14,EA086,"Grass, leaves or thatch",EA086-8,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +114319,Ia15,EA086,?,EA086-NA,,,,,, +114320,Ia16,EA086,?,EA086-NA,,,,,, +114321,Ia17,EA086,?,EA086-NA,,,,,, +114322,Ia18,EA086,?,EA086-NA,,,,,, +114323,Ia2,EA086,?,EA086-NA,,,,,, +114324,Ia3,EA086,?,EA086-NA,,,,,, +114325,Ia4,EA086,?,EA086-NA,,,,,, +114326,Ia5,EA086,?,EA086-NA,,,,,, +114327,Ia6,EA086,?,EA086-NA,,,,,, +114328,Ia7,EA086,?,EA086-NA,,,,,, +114329,Ia8,EA086,?,EA086-NA,,,,,, +114330,Ia9,EA086,?,EA086-NA,,,,,, +114331,Ib1,EA086,?,EA086-NA,,,,,, +114332,Ib2,EA086,?,EA086-NA,,,,,, +114333,Ib3,EA086,?,EA086-NA,,,,,, +114334,Ib4,EA086,?,EA086-NA,,,,,, +114335,Ib5,EA086,?,EA086-NA,,,,,, +114336,Ib6,EA086,?,EA086-NA,,,,,, +114337,Ib7,EA086,?,EA086-NA,,,,,, +114338,Ib8,EA086,?,EA086-NA,,,,,, +114339,Ib9,EA086,?,EA086-NA,,,,,, +114340,Ic1,EA086,?,EA086-NA,,,,,, +114341,Ic10,EA086,?,EA086-NA,,,,,, +114342,Ic11,EA086,"Plaster, clay or similar",EA086-2,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114343,Ic12,EA086,?,EA086-NA,,,,,, +114344,Ic13,EA086,?,EA086-NA,,,,,, +114345,Ic2,EA086,?,EA086-NA,,,,,, +114346,Ic3,EA086,?,EA086-NA,,,,,, +114347,Ic4,EA086,?,EA086-NA,,,,,, +114348,Ic5,EA086,?,EA086-NA,,,,,, +114349,Ic6,EA086,?,EA086-NA,,,,,, +114350,Ic7,EA086,?,EA086-NA,,,,,, +114351,Ic8,EA086,?,EA086-NA,,,,,, +114352,Ic9,EA086,?,EA086-NA,,,,,, +114353,Id1,EA086,?,EA086-NA,,,,,, +114354,Id10,EA086,"Grass, leaves or thatch",EA086-8,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +114355,Id11,EA086,?,EA086-NA,,,,,, +114356,Id12,EA086,?,EA086-NA,,,,,, +114357,Id13,EA086,?,EA086-NA,,,,,, +114358,Id2,EA086,Walls not diff. from roof,EA086-11,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +114359,Id3,EA086,?,EA086-NA,,,,,, +114360,Id4,EA086,?,EA086-NA,,,,,, +114361,Id5,EA086,?,EA086-NA,,,,,, +114362,Id6,EA086,?,EA086-NA,,,,,, +114363,Id7,EA086,?,EA086-NA,,,,,, +114364,Id8,EA086,Walls not diff. from roof,EA086-11,,roth1890,,1830,EthnographicAtlas_1967_p97, +114365,Id9,EA086,?,EA086-NA,,,,,, +114366,Ie1,EA086,?,EA086-NA,,,,,, +114367,Ie10,EA086,?,EA086-NA,,,,,, +114368,Ie11,EA086,?,EA086-NA,,,,,, +114369,Ie12,EA086,?,EA086-NA,,,,,, +114370,Ie13,EA086,?,EA086-NA,,,,,, +114371,Ie14,EA086,?,EA086-NA,,,,,, +114372,Ie15,EA086,?,EA086-NA,,,,,, +114373,Ie16,EA086,?,EA086-NA,,,,,, +114374,Ie17,EA086,?,EA086-NA,,,,,, +114375,Ie18,EA086,"Grass, leaves or thatch",EA086-8,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +114376,Ie19,EA086,?,EA086-NA,,,,,, +114377,Ie2,EA086,?,EA086-NA,,,,,, +114378,Ie20,EA086,?,EA086-NA,,,,,, +114379,Ie21,EA086,?,EA086-NA,,,,,, +114380,Ie22,EA086,?,EA086-NA,,,,,, +114381,Ie23,EA086,?,EA086-NA,,,,,, +114382,Ie24,EA086,?,EA086-NA,,,,,, +114383,Ie25,EA086,?,EA086-NA,,,,,, +114384,Ie26,EA086,?,EA086-NA,,,,,, +114385,Ie27,EA086,?,EA086-NA,,,,,, +114386,Ie28,EA086,?,EA086-NA,,,,,, +114387,Ie29,EA086,?,EA086-NA,,,,,, +114388,Ie3,EA086,?,EA086-NA,,,,,, +114389,Ie30,EA086,?,EA086-NA,,,,,, +114390,Ie31,EA086,?,EA086-NA,,,,,, +114391,Ie32,EA086,?,EA086-NA,,,,,, +114392,Ie33,EA086,?,EA086-NA,,,,,, +114393,Ie34,EA086,?,EA086-NA,,,,,, +114394,Ie35,EA086,?,EA086-NA,,,,,, +114395,Ie36,EA086,?,EA086-NA,,,,,, +114396,Ie37,EA086,?,EA086-NA,,,,,, +114397,Ie38,EA086,"Wood, incl. bamboo",EA086-3,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +114398,Ie39,EA086,"Wood, incl. bamboo",EA086-3,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +114399,Ie4,EA086,?,EA086-NA,,,,,, +114400,Ie5,EA086,Open walls,EA086-10,,williams1936,,1930,EthnographicAtlas_1967_p97, +114401,Ie6,EA086,?,EA086-NA,,,,,, +114402,Ie7,EA086,?,EA086-NA,,,,,, +114403,Ie8,EA086,?,EA086-NA,,,,,, +114404,Ie9,EA086,?,EA086-NA,,,,,, +114405,If1,EA086,"Wood, incl. bamboo",EA086-3,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114406,If10,EA086,?,EA086-NA,,,,,, +114407,If11,EA086,?,EA086-NA,,,,,, +114408,If12,EA086,?,EA086-NA,,,,,, +114409,If13,EA086,?,EA086-NA,,,,,, +114410,If14,EA086,Open walls,EA086-10,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +114411,If15,EA086,"Wood, incl. bamboo",EA086-3,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +114412,If16,EA086,?,EA086-NA,,,,,, +114413,If17,EA086,?,EA086-NA,,,,,, +114414,If2,EA086,?,EA086-NA,,,,,, +114415,If3,EA086,?,EA086-NA,,,,,, +114416,If4,EA086,Mats,EA086-7,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +114417,If5,EA086,?,EA086-NA,,,,,, +114418,If6,EA086,?,EA086-NA,,,,,, +114419,If7,EA086,?,EA086-NA,,,,,, +114420,If8,EA086,?,EA086-NA,,,,,, +114421,If9,EA086,?,EA086-NA,,,,,, +114422,Ig1,EA086,"Grass, leaves or thatch",EA086-8,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +114423,Ig10,EA086,?,EA086-NA,,,,,, +114424,Ig11,EA086,Open walls,EA086-10,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +114425,Ig12,EA086,?,EA086-NA,,,,,, +114426,Ig13,EA086,?,EA086-NA,,,,,, +114427,Ig14,EA086,?,EA086-NA,,,,,, +114428,Ig15,EA086,?,EA086-NA,,,,,, +114429,Ig16,EA086,?,EA086-NA,,,,,, +114430,Ig17,EA086,?,EA086-NA,,,,,, +114431,Ig18,EA086,?,EA086-NA,,,,,, +114432,Ig19,EA086,?,EA086-NA,,,,,, +114433,Ig2,EA086,?,EA086-NA,,,,,, +114434,Ig20,EA086,?,EA086-NA,,,,,, +114435,Ig21,EA086,?,EA086-NA,,,,,, +114436,Ig3,EA086,"Wood, incl. bamboo",EA086-3,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +114437,Ig4,EA086,?,EA086-NA,,,,,, +114438,Ig5,EA086,?,EA086-NA,,,,,, +114439,Ig6,EA086,?,EA086-NA,,,,,, +114440,Ig7,EA086,?,EA086-NA,,,,,, +114441,Ig8,EA086,?,EA086-NA,,,,,, +114442,Ig9,EA086,?,EA086-NA,,,,,, +114443,Ih1,EA086,?,EA086-NA,,,,,, +114444,Ih10,EA086,?,EA086-NA,,,,,, +114445,Ih11,EA086,?,EA086-NA,,,,,, +114446,Ih12,EA086,?,EA086-NA,,,,,, +114447,Ih13,EA086,?,EA086-NA,,,,,, +114448,Ih14,EA086,?,EA086-NA,,,,,, +114449,Ih2,EA086,?,EA086-NA,,,,,, +114450,Ih3,EA086,"Wood, incl. bamboo",EA086-3,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +114451,Ih4,EA086,?,EA086-NA,,,,,, +114452,Ih5,EA086,"Grass, leaves or thatch",EA086-8,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +114453,Ih6,EA086,?,EA086-NA,,,,,, +114454,Ih7,EA086,?,EA086-NA,,,,,, +114455,Ih8,EA086,?,EA086-NA,,,,,, +114456,Ih9,EA086,?,EA086-NA,,,,,, +114457,Ii1,EA086,?,EA086-NA,,,,,, +114458,Ii10,EA086,?,EA086-NA,,,,,, +114459,Ii12,EA086,?,EA086-NA,,,,,, +114460,Ii13,EA086,?,EA086-NA,,,,,, +114461,Ii14,EA086,?,EA086-NA,,,,,, +114462,Ii2,EA086,?,EA086-NA,,,,,, +114463,Ii3,EA086,?,EA086-NA,,,,,, +114464,Ii4,EA086,?,EA086-NA,,,,,, +114465,Ii5,EA086,?,EA086-NA,,,,,, +114466,Ii6,EA086,?,EA086-NA,,,,,, +114467,Ii7,EA086,?,EA086-NA,,,,,, +114468,Ii8,EA086,?,EA086-NA,,,,,, +114469,Ii9,EA086,?,EA086-NA,,,,,, +114470,Ij1,EA086,?,EA086-NA,,,,,, +114471,Ij10,EA086,?,EA086-NA,,,,,, +114472,Ij2,EA086,?,EA086-NA,,,,,, +114473,Ij3,EA086,?,EA086-NA,,,,,, +114474,Ij4,EA086,?,EA086-NA,,,,,, +114475,Ij5,EA086,?,EA086-NA,,,,,, +114476,Ij6,EA086,"Stone, stucco or brick",EA086-1,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +114477,Ij7,EA086,?,EA086-NA,,,,,, +114478,Ij8,EA086,?,EA086-NA,,,,,, +114479,Ij9,EA086,"Stone, stucco or brick",EA086-1,,metraux1940,,1860,EthnographicAtlas_1967_p105, +114480,Na1,EA086,Bark,EA086-4,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +114481,Na10,EA086,"Wood, incl. bamboo",EA086-3,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +114482,Na11,EA086,Hides or skins,EA086-5,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +114483,Na12,EA086,Walls not diff. from roof,EA086-11,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +114484,Na13,EA086,Walls not diff. from roof,EA086-11,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +114485,Na14,EA086,Walls not diff. from roof,EA086-11,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +114486,Na15,EA086,"Wood, incl. bamboo",EA086-3,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +114487,Na16,EA086,"Wood, incl. bamboo",EA086-3,,osgood1931,,1860,EthnographicAtlas_1967_p105, +114488,Na17,EA086,Walls not diff. from roof,EA086-11,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114489,Na19,EA086,Walls not diff. from roof,EA086-11,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +114490,Na2,EA086,Walls not diff. from roof,EA086-11,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +114491,Na20,EA086,"Wood, incl. bamboo",EA086-3,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +114492,Na21,EA086,Walls not diff. from roof,EA086-11,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +114493,Na22,EA086,Walls not diff. from roof,EA086-11,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +114494,Na23,EA086,Walls not diff. from roof,EA086-11,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +114495,Na24,EA086,Walls not diff. from roof,EA086-11,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +114496,Na25,EA086,Walls not diff. from roof,EA086-11,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +114497,Na26,EA086,?,EA086-NA,,,,,, +114498,Na27,EA086,?,EA086-NA,,,,,, +114499,Na28,EA086,?,EA086-NA,,,,,, +114500,Na29,EA086,?,EA086-NA,,,,,, +114501,Na3,EA086,Walls not diff. from roof,EA086-11,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +114502,Na30,EA086,?,EA086-NA,,,,,, +114503,Na31,EA086,Walls not diff. from roof,EA086-11,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +114504,Na32,EA086,Walls not diff. from roof,EA086-11,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +114505,Na33,EA086,?,EA086-NA,,,,,, +114506,Na34,EA086,Walls not diff. from roof,EA086-11,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +114507,Na35,EA086,Walls not diff. from roof,EA086-11,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +114508,Na36,EA086,Walls not diff. from roof,EA086-11,"Also a conical bark tipi, which also has 'walls indistinguishable from roof' (code ""11"")",barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +114509,Na37,EA086,?,EA086-NA,,,,,, +114510,Na38,EA086,Walls not diff. from roof,EA086-11,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +114511,Na39,EA086,Walls not diff. from roof,EA086-11,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +114512,Na4,EA086,Walls not diff. from roof,EA086-11,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +114513,Na40,EA086,Walls not diff. from roof,EA086-11,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +114514,Na41,EA086,?,EA086-NA,,,,,, +114515,Na42,EA086,?,EA086-NA,,,,,, +114516,Na43,EA086,Walls not diff. from roof,EA086-11,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +114517,Na44,EA086,?,EA086-NA,,,,,, +114518,Na45,EA086,?,EA086-NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +114519,Na5,EA086,?,EA086-NA,,,,,, +114520,Na6,EA086,?,EA086-NA,,,,,, +114521,Na7,EA086,Walls not diff. from roof,EA086-11,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +114522,Na8,EA086,Bark,EA086-4,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +114523,Na9,EA086,?,EA086-NA,,,,,, +114524,Nb1,EA086,?,EA086-NA,,,,,, +114525,Nb10,EA086,"Wood, incl. bamboo",EA086-3,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +114526,Nb11,EA086,?,EA086-NA,,,,,, +114527,Nb12,EA086,Walls not diff. from roof,EA086-11,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +114528,Nb13,EA086,?,EA086-NA,,,,,, +114529,Nb14,EA086,?,EA086-NA,,,,,, +114530,Nb15,EA086,Mats,EA086-7,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +114531,Nb16,EA086,Walls not diff. from roof,EA086-11,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +114532,Nb17,EA086,Mats,EA086-7,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +114533,Nb18,EA086,?,EA086-NA,,,,,, +114534,Nb19,EA086,?,EA086-NA,,,,,, +114535,Nb2,EA086,Mats,EA086-7,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +114536,Nb20,EA086,?,EA086-NA,,,,,, +114537,Nb21,EA086,"Grass, leaves or thatch",EA086-8,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +114538,Nb22,EA086,Walls not diff. from roof,EA086-11,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +114539,Nb23,EA086,Walls not diff. from roof,EA086-11,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +114540,Nb24,EA086,?,EA086-NA,,,,,, +114541,Nb25,EA086,Bark,EA086-4,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +114542,Nb26,EA086,?,EA086-NA,,,,,, +114543,Nb27,EA086,"Wood, incl. bamboo",EA086-3,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +114544,Nb28,EA086,"Grass, leaves or thatch",EA086-8,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +114545,Nb29,EA086,?,EA086-NA,,,,,, +114546,Nb3,EA086,?,EA086-NA,,,,,, +114547,Nb30,EA086,?,EA086-NA,,,,,, +114548,Nb31,EA086,?,EA086-NA,,,,,, +114549,Nb32,EA086,?,EA086-NA,,,,,, +114550,Nb33,EA086,?,EA086-NA,,,,,, +114551,Nb34,EA086,?,EA086-NA,,,,,, +114552,Nb35,EA086,?,EA086-NA,,,,,, +114553,Nb36,EA086,?,EA086-NA,,,,,, +114554,Nb37,EA086,?,EA086-NA,,,,,, +114555,Nb38,EA086,?,EA086-NA,,,,,, +114556,Nb39,EA086,?,EA086-NA,,,,,, +114557,Nb4,EA086,?,EA086-NA,,,,,, +114558,Nb5,EA086,?,EA086-NA,,,,,, +114559,Nb6,EA086,?,EA086-NA,,,,,, +114560,Nb7,EA086,?,EA086-NA,,,,,, +114561,Nb8,EA086,?,EA086-NA,,,,,, +114562,Nb9,EA086,?,EA086-NA,,,,,, +114563,Nc1,EA086,?,EA086-NA,,,,,, +114564,Nc10,EA086,Walls not diff. from roof,EA086-11,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +114565,Nc11,EA086,Walls not diff. from roof,EA086-11,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +114566,Nc12,EA086,Walls not diff. from roof,EA086-11,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +114567,Nc13,EA086,Walls not diff. from roof,EA086-11,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +114568,Nc14,EA086,Walls not diff. from roof,EA086-11,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +114569,Nc15,EA086,Walls not diff. from roof,EA086-11,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +114570,Nc16,EA086,?,EA086-NA,,,,,, +114571,Nc17,EA086,?,EA086-NA,,,,,, +114572,Nc18,EA086,?,EA086-NA,,,,,, +114573,Nc19,EA086,?,EA086-NA,,,,,, +114574,Nc2,EA086,"Grass, leaves or thatch",EA086-8,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +114575,Nc20,EA086,?,EA086-NA,,,,,, +114576,Nc21,EA086,?,EA086-NA,,,,,, +114577,Nc22,EA086,Open walls,EA086-10,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +114578,Nc23,EA086,Walls not diff. from roof,EA086-11,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +114579,Nc24,EA086,?,EA086-NA,,,,,, +114580,Nc25,EA086,Walls not diff. from roof,EA086-11,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +114581,Nc26,EA086,"Grass, leaves or thatch",EA086-8,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +114582,Nc27,EA086,?,EA086-NA,,,,,, +114583,Nc28,EA086,?,EA086-NA,,,,,, +114584,Nc29,EA086,?,EA086-NA,,,,,, +114585,Nc3,EA086,Walls not diff. from roof,EA086-11,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +114586,Nc30,EA086,?,EA086-NA,,,,,, +114587,Nc31,EA086,?,EA086-NA,,,,,, +114588,Nc32,EA086,?,EA086-NA,,,,,, +114589,Nc33,EA086,"Grass, leaves or thatch",EA086-8,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +114590,Nc34,EA086,?,EA086-NA,,,,,, +114591,Nc4,EA086,Walls not diff. from roof,EA086-11,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +114592,Nc5,EA086,?,EA086-NA,,,,,, +114593,Nc6,EA086,?,EA086-NA,,,,,, +114594,Nc7,EA086,Walls not diff. from roof,EA086-11,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +114595,Nc8,EA086,Walls not diff. from roof,EA086-11,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +114596,Nc9,EA086,Mats,EA086-7,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +114597,Nd1,EA086,Walls not diff. from roof,EA086-11,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +114598,Nd10,EA086,Mats,EA086-7,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +114599,Nd11,EA086,Walls not diff. from roof,EA086-11,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +114600,Nd12,EA086,Walls not diff. from roof,EA086-11,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +114601,Nd13,EA086,Walls not diff. from roof,EA086-11,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +114602,Nd14,EA086,Walls not diff. from roof,EA086-11,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +114603,Nd15,EA086,Walls not diff. from roof,EA086-11,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +114604,Nd16,EA086,Walls not diff. from roof,EA086-11,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +114605,Nd17,EA086,Mats,EA086-7,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +114606,Nd18,EA086,Mats,EA086-7,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +114607,Nd19,EA086,?,EA086-NA,,,,,, +114608,Nd2,EA086,Walls not diff. from roof,EA086-11,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +114609,Nd20,EA086,Walls not diff. from roof,EA086-11,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +114610,Nd21,EA086,?,EA086-NA,,,,,, +114611,Nd22,EA086,Walls not diff. from roof,EA086-11,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +114612,Nd23,EA086,?,EA086-NA,,,,,, +114613,Nd24,EA086,?,EA086-NA,,,,,, +114614,Nd25,EA086,?,EA086-NA,,,,,, +114615,Nd26,EA086,"Grass, leaves or thatch",EA086-8,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +114616,Nd27,EA086,?,EA086-NA,,,,,, +114617,Nd28,EA086,Walls not diff. from roof,EA086-11,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +114618,Nd29,EA086,Walls not diff. from roof,EA086-11,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +114619,Nd3,EA086,?,EA086-NA,,,,,, +114620,Nd30,EA086,Walls not diff. from roof,EA086-11,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +114621,Nd31,EA086,?,EA086-NA,,,,,, +114622,Nd32,EA086,Walls not diff. from roof,EA086-11,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +114623,Nd33,EA086,Walls not diff. from roof,EA086-11,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +114624,Nd34,EA086,Walls not diff. from roof,EA086-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +114625,Nd35,EA086,?,EA086-NA,,,,,, +114626,Nd36,EA086,Walls not diff. from roof,EA086-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +114627,Nd37,EA086,?,EA086-NA,,,,,, +114628,Nd38,EA086,Walls not diff. from roof,EA086-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +114629,Nd39,EA086,?,EA086-NA,,,,,, +114630,Nd4,EA086,Walls not diff. from roof,EA086-11,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +114631,Nd40,EA086,?,EA086-NA,,,,,, +114632,Nd41,EA086,Walls not diff. from roof,EA086-11,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +114633,Nd42,EA086,?,EA086-NA,,,,,, +114634,Nd43,EA086,Walls not diff. from roof,EA086-11,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +114635,Nd44,EA086,Walls not diff. from roof,EA086-11,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +114636,Nd45,EA086,Walls not diff. from roof,EA086-11,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +114637,Nd46,EA086,Walls not diff. from roof,EA086-11,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +114638,Nd47,EA086,?,EA086-NA,,,,,, +114639,Nd48,EA086,?,EA086-NA,,,,,, +114640,Nd49,EA086,?,EA086-NA,,,,,, +114641,Nd5,EA086,Walls not diff. from roof,EA086-11,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +114642,Nd50,EA086,?,EA086-NA,,,,,, +114643,Nd51,EA086,?,EA086-NA,,,,,, +114644,Nd52,EA086,?,EA086-NA,,,,,, +114645,Nd53,EA086,?,EA086-NA,,,,,, +114646,Nd54,EA086,?,EA086-NA,,,,,, +114647,Nd55,EA086,?,EA086-NA,,,,,, +114648,Nd56,EA086,Walls not diff. from roof,EA086-11,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +114649,Nd57,EA086,?,EA086-NA,,,,,, +114650,Nd58,EA086,Walls not diff. from roof,EA086-11,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +114651,Nd59,EA086,Walls not diff. from roof,EA086-11,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +114652,Nd6,EA086,Walls not diff. from roof,EA086-11,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +114653,Nd60,EA086,?,EA086-NA,,,,,, +114654,Nd61,EA086,Walls not diff. from roof,EA086-11,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +114655,Nd62,EA086,Walls not diff. from roof,EA086-11,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +114656,Nd63,EA086,Walls not diff. from roof,EA086-11,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +114657,Nd64,EA086,Walls not diff. from roof,EA086-11,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +114658,Nd65,EA086,?,EA086-NA,,,,,, +114659,Nd66,EA086,?,EA086-NA,,,,,, +114660,Nd67,EA086,"Grass, leaves or thatch",EA086-8,,gifford1936,,1870,EthnographicAtlas_1967_p113, +114661,Nd7,EA086,Walls not diff. from roof,EA086-11,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +114662,Nd8,EA086,Walls not diff. from roof,EA086-11,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +114663,Nd9,EA086,Walls not diff. from roof,EA086-11,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +114664,Ne1,EA086,?,EA086-NA,,,,,, +114665,Ne10,EA086,Walls not diff. from roof,EA086-11,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +114666,Ne11,EA086,?,EA086-NA,,,,,, +114667,Ne12,EA086,?,EA086-NA,,,,,, +114668,Ne13,EA086,?,EA086-NA,,,,,, +114669,Ne14,EA086,Walls not diff. from roof,EA086-11,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +114670,Ne15,EA086,Walls not diff. from roof,EA086-11,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +114671,Ne16,EA086,?,EA086-NA,,,,,, +114672,Ne17,EA086,?,EA086-NA,,,,,, +114673,Ne18,EA086,?,EA086-NA,,,,,, +114674,Ne19,EA086,?,EA086-NA,,,,,, +114675,Ne2,EA086,?,EA086-NA,,,,,, +114676,Ne20,EA086,?,EA086-NA,,,,,, +114677,Ne21,EA086,?,EA086-NA,,,,,, +114678,Ne3,EA086,?,EA086-NA,,,,,, +114679,Ne4,EA086,?,EA086-NA,,,,,, +114680,Ne5,EA086,?,EA086-NA,,,,,, +114681,Ne6,EA086,Walls not diff. from roof,EA086-11,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +114682,Ne7,EA086,?,EA086-NA,,,,,, +114683,Ne8,EA086,?,EA086-NA,,,,,, +114684,Ne9,EA086,?,EA086-NA,,,,,, +114685,Nf10,EA086,Walls not diff. from roof,EA086-11,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +114686,Nf11,EA086,Walls not diff. from roof,EA086-11,,whitman1937,,1870,EthnographicAtlas_1967_p117, +114687,Nf12,EA086,Walls not diff. from roof,EA086-11,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +114688,Nf13,EA086,?,EA086-NA,,,,,, +114689,Nf14,EA086,?,EA086-NA,,,,,, +114690,Nf15,EA086,?,EA086-NA,,,,,, +114691,Nf2,EA086,Walls not diff. from roof,EA086-11,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +114692,Nf3,EA086,Walls not diff. from roof,EA086-11,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +114693,Nf4,EA086,?,EA086-NA,,,,,, +114694,Nf5,EA086,?,EA086-NA,,,,,, +114695,Nf6,EA086,Walls not diff. from roof,EA086-11,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +114696,Nf7,EA086,Walls not diff. from roof,EA086-11,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114697,Nf8,EA086,?,EA086-NA,,,,,, +114698,Nf9,EA086,?,EA086-NA,,,,,, +114699,Ng1,EA086,?,EA086-NA,,,,,, +114700,Ng10,EA086,?,EA086-NA,,,,,, +114701,Ng11,EA086,?,EA086-NA,,,,,, +114702,Ng12,EA086,?,EA086-NA,,,,,, +114703,Ng13,EA086,?,EA086-NA,,,,,, +114704,Ng14,EA086,?,EA086-NA,,,,,, +114705,Ng15,EA086,?,EA086-NA,,,,,, +114706,Ng2,EA086,?,EA086-NA,,,,,, +114707,Ng3,EA086,"Plaster, clay or similar",EA086-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +114708,Ng4,EA086,Walls not diff. from roof,EA086-11,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +114709,Ng5,EA086,Walls not diff. from roof,EA086-11,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +114710,Ng6,EA086,Bark,EA086-4,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +114711,Ng7,EA086,?,EA086-NA,,,,,, +114712,Ng8,EA086,"Plaster, clay or similar",EA086-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +114713,Ng9,EA086,?,EA086-NA,,,,,, +114714,Nh1,EA086,?,EA086-NA,,,,,, +114715,Nh10,EA086,?,EA086-NA,,,,,, +114716,Nh11,EA086,?,EA086-NA,,,,,, +114717,Nh12,EA086,?,EA086-NA,,,,,, +114718,Nh13,EA086,?,EA086-NA,,,,,, +114719,Nh14,EA086,?,EA086-NA,,,,,, +114720,Nh15,EA086,?,EA086-NA,,,,,, +114721,Nh16,EA086,Walls not diff. from roof,EA086-11,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114722,Nh17,EA086,?,EA086-NA,,,,,, +114723,Nh18,EA086,?,EA086-NA,,,,,, +114724,Nh19,EA086,"Adobe, clay or brick",EA086-9,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +114725,Nh2,EA086,?,EA086-NA,,,,,, +114726,Nh20,EA086,?,EA086-NA,,,,,, +114727,Nh21,EA086,?,EA086-NA,,,,,, +114728,Nh22,EA086,"Adobe, clay or brick",EA086-9,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +114729,Nh23,EA086,?,EA086-NA,,,,,, +114730,Nh24,EA086,?,EA086-NA,,,,,, +114731,Nh25,EA086,?,EA086-NA,,,,,, +114732,Nh26,EA086,?,EA086-NA,,,,,, +114733,Nh27,EA086,?,EA086-NA,,,,,, +114734,Nh3,EA086,?,EA086-NA,,,,,, +114735,Nh4,EA086,?,EA086-NA,,,,,, +114736,Nh5,EA086,"Adobe, clay or brick",EA086-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +114737,Nh6,EA086,?,EA086-NA,,,,,, +114738,Nh7,EA086,?,EA086-NA,,,,,, +114739,Nh8,EA086,?,EA086-NA,,,,,, +114740,Nh9,EA086,?,EA086-NA,,,,,, +114741,Ni1,EA086,?,EA086-NA,,,,,, +114742,Ni2,EA086,Open walls,EA086-10,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +114743,Ni3,EA086,?,EA086-NA,,,,,, +114744,Ni4,EA086,?,EA086-NA,,,,,, +114745,Ni5,EA086,?,EA086-NA,,,,,, +114746,Ni6,EA086,?,EA086-NA,,,,,, +114747,Ni7,EA086,?,EA086-NA,,,,,, +114748,Ni8,EA086,?,EA086-NA,,,,,, +114749,Ni9,EA086,?,EA086-NA,,,,,, +114750,Nj1,EA086,?,EA086-NA,,,,,, +114751,Nj10,EA086,?,EA086-NA,,,,,, +114752,Nj11,EA086,?,EA086-NA,,,,,, +114753,Nj12,EA086,?,EA086-NA,,,,,, +114754,Nj13,EA086,?,EA086-NA,,,,,, +114755,Nj14,EA086,?,EA086-NA,,,,,, +114756,Nj2,EA086,"Stone, stucco or brick",EA086-1,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +114757,Nj3,EA086,?,EA086-NA,,,,,, +114758,Nj4,EA086,?,EA086-NA,,,,,, +114759,Nj5,EA086,?,EA086-NA,,,,,, +114760,Nj6,EA086,?,EA086-NA,,,,,, +114761,Nj7,EA086,?,EA086-NA,,,,,, +114762,Nj8,EA086,"Adobe, clay or brick",EA086-9,,foster1948,,1500,EthnographicAtlas_1967_p121, +114763,Nj9,EA086,?,EA086-NA,,,,,, +114764,Sa1,EA086,?,EA086-NA,,,,,, +114765,Sa10,EA086,?,EA086-NA,,,,,, +114766,Sa11,EA086,?,EA086-NA,,,,,, +114767,Sa12,EA086,?,EA086-NA,,,,,, +114768,Sa13,EA086,?,EA086-NA,,,,,, +114769,Sa14,EA086,?,EA086-NA,,,,,, +114770,Sa15,EA086,?,EA086-NA,,,,,, +114771,Sa16,EA086,?,EA086-NA,,,,,, +114772,Sa17,EA086,?,EA086-NA,,,,,, +114773,Sa2,EA086,?,EA086-NA,,,,,, +114774,Sa3,EA086,?,EA086-NA,,,,,, +114775,Sa4,EA086,?,EA086-NA,,,,,, +114776,Sa5,EA086,Bark,EA086-4,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +114777,Sa6,EA086,?,EA086-NA,,,,,, +114778,Sa7,EA086,?,EA086-NA,,,,,, +114779,Sa8,EA086,"Adobe, clay or brick",EA086-9,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +114780,Sa9,EA086,"Wood, incl. bamboo",EA086-3,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +114781,Sb1,EA086,?,EA086-NA,,,,,, +114782,Sb2,EA086,"Adobe, clay or brick",EA086-9,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +114783,Sb3,EA086,?,EA086-NA,,,,,, +114784,Sb4,EA086,?,EA086-NA,,,,,, +114785,Sb5,EA086,?,EA086-NA,,,,,, +114786,Sb6,EA086,?,EA086-NA,,,,,, +114787,Sb7,EA086,?,EA086-NA,,,,,, +114788,Sb8,EA086,"Wood, incl. bamboo",EA086-3,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +114789,Sb9,EA086,?,EA086-NA,,,,,, +114790,Sc1,EA086,?,EA086-NA,,,,,, +114791,Sc10,EA086,?,EA086-NA,,,,,, +114792,Sc11,EA086,?,EA086-NA,,,,,, +114793,Sc12,EA086,?,EA086-NA,,,,,, +114794,Sc13,EA086,?,EA086-NA,,,,,, +114795,Sc14,EA086,?,EA086-NA,,,,,, +114796,Sc15,EA086,?,EA086-NA,,,,,, +114797,Sc16,EA086,?,EA086-NA,,,,,, +114798,Sc17,EA086,?,EA086-NA,,,,,, +114799,Sc18,EA086,?,EA086-NA,,,,,, +114800,Sc2,EA086,?,EA086-NA,,,,,, +114801,Sc3,EA086,?,EA086-NA,,,,,, +114802,Sc4,EA086,?,EA086-NA,,,,,, +114803,Sc5,EA086,"Plaster, clay or similar",EA086-2,,farabee1918,,1900,EthnographicAtlas_1967_p121, +114804,Sc6,EA086,?,EA086-NA,,,,,, +114805,Sc7,EA086,?,EA086-NA,,,,,, +114806,Sc8,EA086,Walls not diff. from roof,EA086-11,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +114807,Sc9,EA086,?,EA086-NA,,,,,, +114808,Sd1,EA086,Open walls,EA086-10,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114809,Sd2,EA086,?,EA086-NA,,,,,, +114810,Sd3,EA086,?,EA086-NA,,,,,, +114811,Sd4,EA086,?,EA086-NA,,,,,, +114812,Sd5,EA086,?,EA086-NA,,,,,, +114813,Sd6,EA086,?,EA086-NA,,,,,, +114814,Sd7,EA086,"Grass, leaves or thatch",EA086-8,,fock1963,,1950,EthnographicAtlas_1967_p121, +114815,Sd8,EA086,?,EA086-NA,,,,,, +114816,Sd9,EA086,?,EA086-NA,,,,,, +114817,Se1,EA086,Walls not diff. from roof,EA086-11,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +114818,Se10,EA086,?,EA086-NA,,,,,, +114819,Se11,EA086,?,EA086-NA,,,,,, +114820,Se12,EA086,?,EA086-NA,,,,,, +114821,Se2,EA086,"Grass, leaves or thatch",EA086-8,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +114822,Se3,EA086,?,EA086-NA,,,,,, +114823,Se4,EA086,?,EA086-NA,,,,,, +114824,Se5,EA086,Bark,EA086-4,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +114825,Se6,EA086,?,EA086-NA,,,,,, +114826,Se7,EA086,?,EA086-NA,,,,,, +114827,Se8,EA086,"Wood, incl. bamboo",EA086-3,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +114828,Se9,EA086,?,EA086-NA,,,,,, +114829,Sf1,EA086,"Adobe, clay or brick",EA086-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +114830,Sf2,EA086,?,EA086-NA,,,,,, +114831,Sf3,EA086,?,EA086-NA,,,,,, +114832,Sf4,EA086,"Wood, incl. bamboo",EA086-3,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +114833,Sf5,EA086,"Stone, stucco or brick",EA086-1,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +114834,Sf6,EA086,"Plaster, clay or similar",EA086-2,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +114835,Sf7,EA086,Walls not diff. from roof,EA086-11,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +114836,Sf8,EA086,?,EA086-NA,,,,,, +114837,Sf9,EA086,?,EA086-NA,,,,,, +114838,Sg1,EA086,Walls not diff. from roof,EA086-11,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +114839,Sg2,EA086,"Plaster, clay or similar",EA086-2,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114840,Sg3,EA086,Walls not diff. from roof,EA086-11,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +114841,Sg4,EA086,?,EA086-NA,,,,,, +114842,Sg5,EA086,?,EA086-NA,,,,,, +114843,Sh1,EA086,?,EA086-NA,,,,,, +114844,Sh2,EA086,?,EA086-NA,,,,,, +114845,Sh3,EA086,?,EA086-NA,,,,,, +114846,Sh4,EA086,?,EA086-NA,,,,,, +114847,Sh5,EA086,?,EA086-NA,,,,,, +114848,Sh6,EA086,?,EA086-NA,,,,,, +114849,Sh7,EA086,?,EA086-NA,,,,,, +114850,Sh8,EA086,"Plaster, clay or similar",EA086-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +114851,Sh9,EA086,?,EA086-NA,,,,,, +114852,Si1,EA086,Walls not diff. from roof,EA086-11,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +114853,Si10,EA086,?,EA086-NA,,,,,, +114854,Si2,EA086,?,EA086-NA,,,,,, +114855,Si3,EA086,?,EA086-NA,,,,,, +114856,Si4,EA086,Walls not diff. from roof,EA086-11,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +114857,Si5,EA086,?,EA086-NA,,,,,, +114858,Si6,EA086,?,EA086-NA,,,,,, +114859,Si7,EA086,?,EA086-NA,,,,,, +114860,Si8,EA086,?,EA086-NA,,,,,, +114861,Si9,EA086,?,EA086-NA,,,,,, +114862,Sj1,EA086,?,EA086-NA,,,,,, +114863,Sj10,EA086,?,EA086-NA,,,,,, +114864,Sj11,EA086,?,EA086-NA,,,,,, +114865,Sj2,EA086,?,EA086-NA,,,,,, +114866,Sj3,EA086,?,EA086-NA,,,,,, +114867,Sj4,EA086,?,EA086-NA,,,,,, +114868,Sj5,EA086,Walls not diff. from roof,EA086-11,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +114869,Sj6,EA086,?,EA086-NA,,,,,, +114870,Sj7,EA086,?,EA086-NA,,,,,, +114871,Sj8,EA086,?,EA086-NA,,,,,, +114872,Sj9,EA086,"Adobe, clay or brick",EA086-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +114873,ch12,EA086,Fabric,EA086-6,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +114874,ch13,EA086,"Wood, incl. bamboo",EA086-3,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +114875,ch14,EA086,"Wood, incl. bamboo",EA086-3,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +114876,ch15,EA086,"Adobe, clay or brick",EA086-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +114877,ch16,EA086,?,EA086-NA,,,,,, +114878,ch17,EA086,"Plaster, clay or similar",EA086-2,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +114879,ch18,EA086,?,EA086-NA,,,,,, +114880,ch19,EA086,"Grass, leaves or thatch",EA086-8,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +114881,ch20,EA086,"Wood, incl. bamboo",EA086-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +114882,ch21,EA086,"Wood, incl. bamboo",EA086-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +114883,ch22,EA086,?,EA086-NA,,,,,, +114884,ch23,EA086,?,EA086-NA,,,,,, +114885,ch24,EA086,?,EA086-NA,,,,,, +114886,ch25,EA086,"Stone, stucco or brick",EA086-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +114887,ch26,EA086,"Wood, incl. bamboo",EA086-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +114888,ch27,EA086,"Wood, incl. bamboo",EA086-3,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +114889,ch28,EA086,?,EA086-NA,,,,,, +114890,ec12,EA086,Hides or skins,EA086-5,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +114891,ec13,EA086,"Grass, leaves or thatch",EA086-8,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +114892,ec14,EA086,Hides or skins,EA086-5,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +114893,ec15,EA086,Bark,EA086-4,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +114894,ec16,EA086,Bark,EA086-4,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +114895,ec17,EA086,"Wood, incl. bamboo",EA086-3,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +114896,ec18,EA086,"Wood, incl. bamboo",EA086-3,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +114897,ec19,EA086,"Wood, incl. bamboo",EA086-3,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +114898,ec20,EA086,"Wood, incl. bamboo",EA086-3,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +114899,ec21,EA086,"Wood, incl. bamboo",EA086-3,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +114900,Aa1,EA087,Semi-hemispherical,EA087-5,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +114901,Aa2,EA087,?,EA087-NA,,,,,, +114902,Aa3,EA087,?,EA087-NA,,,,,, +114903,Aa4,EA087,?,EA087-NA,,,,,, +114904,Aa5,EA087,?,EA087-NA,,,,,, +114905,Aa6,EA087,Flat,EA087-7,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +114906,Aa7,EA087,?,EA087-NA,,,,,, +114907,Aa8,EA087,Semi-hemispherical,EA087-5,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +114908,Aa9,EA087,?,EA087-NA,,,,,, +114909,Ab1,EA087,?,EA087-NA,,,,,, +114910,Ab10,EA087,Conical,EA087-4,,hunter1936,,1936,EthnographicAtlas_1967_p65, +114911,Ab11,EA087,?,EA087-NA,,,,,, +114912,Ab12,EA087,?,EA087-NA,,,,,, +114913,Ab13,EA087,?,EA087-NA,,,,,, +114914,Ab14,EA087,?,EA087-NA,,,,,, +114915,Ab15,EA087,?,EA087-NA,,,,,, +114916,Ab16,EA087,?,EA087-NA,,,,,, +114917,Ab17,EA087,?,EA087-NA,,,,,, +114918,Ab18,EA087,?,EA087-NA,,,,,, +114919,Ab19,EA087,?,EA087-NA,,,,,, +114920,Ab2,EA087,Conical,EA087-4,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +114921,Ab20,EA087,?,EA087-NA,,,,,, +114922,Ab21a,EA087,?,EA087-NA,,,,,, +114923,Ab21b,EA087,?,EA087-NA,,,,,, +114924,Ab22,EA087,?,EA087-NA,,,,,, +114925,Ab3,EA087,Two slopes,EA087-8,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +114926,Ab4,EA087,?,EA087-NA,,,,,, +114927,Ab5,EA087,?,EA087-NA,,,,,, +114928,Ab6,EA087,?,EA087-NA,,,,,, +114929,Ab7,EA087,?,EA087-NA,,,,,, +114930,Ab8,EA087,?,EA087-NA,,,,,, +114931,Ab9,EA087,Conical,EA087-4,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +114932,Ac1,EA087,?,EA087-NA,,,,,, +114933,Ac10,EA087,?,EA087-NA,,,,,, +114934,Ac11,EA087,Conical,EA087-4,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +114935,Ac12,EA087,?,EA087-NA,,,,,, +114936,Ac13,EA087,?,EA087-NA,,,,,, +114937,Ac14,EA087,Two slopes,EA087-8,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +114938,Ac15,EA087,?,EA087-NA,,,,,, +114939,Ac16,EA087,?,EA087-NA,,,,,, +114940,Ac17,EA087,?,EA087-NA,,,,,, +114941,Ac18,EA087,?,EA087-NA,,,,,, +114942,Ac19,EA087,?,EA087-NA,,,,,, +114943,Ac2,EA087,?,EA087-NA,,,,,, +114944,Ac20,EA087,?,EA087-NA,,,,,, +114945,Ac21,EA087,?,EA087-NA,,,,,, +114946,Ac22,EA087,?,EA087-NA,,,,,, +114947,Ac23,EA087,?,EA087-NA,,,,,, +114948,Ac24,EA087,?,EA087-NA,,,,,, +114949,Ac25,EA087,?,EA087-NA,,,,,, +114950,Ac26,EA087,?,EA087-NA,,,,,, +114951,Ac27,EA087,?,EA087-NA,,,,,, +114952,Ac28,EA087,?,EA087-NA,,,,,, +114953,Ac29,EA087,?,EA087-NA,,,,,, +114954,Ac3,EA087,?,EA087-NA,,,,,, +114955,Ac30,EA087,?,EA087-NA,,,,,, +114956,Ac31,EA087,?,EA087-NA,,,,,, +114957,Ac32,EA087,Four slopes,EA087-9,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +114958,Ac33,EA087,?,EA087-NA,,,,,, +114959,Ac34,EA087,?,EA087-NA,,,,,, +114960,Ac35,EA087,?,EA087-NA,,,,,, +114961,Ac36,EA087,?,EA087-NA,,,,,, +114962,Ac37,EA087,?,EA087-NA,,,,,, +114963,Ac38,EA087,?,EA087-NA,,,,,, +114964,Ac39,EA087,?,EA087-NA,,,,,, +114965,Ac4,EA087,?,EA087-NA,,,,,, +114966,Ac40,EA087,Four slopes,EA087-9,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +114967,Ac41,EA087,?,EA087-NA,,,,,, +114968,Ac42,EA087,?,EA087-NA,,,,,, +114969,Ac43,EA087,?,EA087-NA,,,,,, +114970,Ac5,EA087,?,EA087-NA,,,,,, +114971,Ac6,EA087,?,EA087-NA,,,,,, +114972,Ac7,EA087,?,EA087-NA,,,,,, +114973,Ac8,EA087,?,EA087-NA,,,,,, +114974,Ac9,EA087,?,EA087-NA,,,,,, +114975,Ad1,EA087,Conical,EA087-4,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +114976,Ad10,EA087,Four slopes,EA087-9,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +114977,Ad11,EA087,Flat,EA087-7,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +114978,Ad12,EA087,?,EA087-NA,,,,,, +114979,Ad13,EA087,Flat,EA087-7,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +114980,Ad14,EA087,Two slopes,EA087-8,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +114981,Ad15,EA087,?,EA087-NA,,,,,, +114982,Ad16,EA087,?,EA087-NA,,,,,, +114983,Ad17,EA087,?,EA087-NA,,,,,, +114984,Ad18,EA087,?,EA087-NA,,,,,, +114985,Ad19,EA087,Conical,EA087-4,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +114986,Ad2,EA087,?,EA087-NA,,,,,, +114987,Ad20,EA087,Flat,EA087-7,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +114988,Ad21,EA087,?,EA087-NA,,,,,, +114989,Ad22,EA087,?,EA087-NA,,,,,, +114990,Ad23,EA087,?,EA087-NA,,,,,, +114991,Ad24,EA087,?,EA087-NA,,,,,, +114992,Ad25,EA087,?,EA087-NA,,,,,, +114993,Ad26,EA087,?,EA087-NA,,,,,, +114994,Ad27,EA087,Two slopes,EA087-8,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +114995,Ad28,EA087,Two slopes,EA087-8,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +114996,Ad29,EA087,?,EA087-NA,,,,,, +114997,Ad3,EA087,?,EA087-NA,,,,,, +114998,Ad30,EA087,?,EA087-NA,,,,,, +114999,Ad31,EA087,?,EA087-NA,,,,,, +115000,Ad32,EA087,?,EA087-NA,,,,,, +115001,Ad33,EA087,?,EA087-NA,,,,,, +115002,Ad34,EA087,?,EA087-NA,,,,,, +115003,Ad35,EA087,?,EA087-NA,,,,,, +115004,Ad36,EA087,?,EA087-NA,,,,,, +115005,Ad37,EA087,?,EA087-NA,,,,,, +115006,Ad38,EA087,?,EA087-NA,,,,,, +115007,Ad39,EA087,?,EA087-NA,,,,,, +115008,Ad4,EA087,Conical,EA087-4,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +115009,Ad40,EA087,?,EA087-NA,,,,,, +115010,Ad41,EA087,?,EA087-NA,,,,,, +115011,Ad42,EA087,?,EA087-NA,,,,,, +115012,Ad43,EA087,?,EA087-NA,,,,,, +115013,Ad44,EA087,?,EA087-NA,,,,,, +115014,Ad45,EA087,?,EA087-NA,,,,,, +115015,Ad46,EA087,Beehive shaped,EA087-3,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +115016,Ad47,EA087,?,EA087-NA,,,,,, +115017,Ad48,EA087,?,EA087-NA,,,,,, +115018,Ad49,EA087,?,EA087-NA,,,,,, +115019,Ad5,EA087,?,EA087-NA,,,,,, +115020,Ad50,EA087,Conical,EA087-4,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +115021,Ad51,EA087,Flat,EA087-7,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +115022,Ad6,EA087,Two slopes,EA087-8,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +115023,Ad7,EA087,?,EA087-NA,,,,,, +115024,Ad8,EA087,?,EA087-NA,,,,,, +115025,Ad9,EA087,?,EA087-NA,,,,,, +115026,Ae1,EA087,?,EA087-NA,,,,,, +115027,Ae10,EA087,?,EA087-NA,,,,,, +115028,Ae11,EA087,?,EA087-NA,,,,,, +115029,Ae12,EA087,?,EA087-NA,,,,,, +115030,Ae13,EA087,?,EA087-NA,,,,,, +115031,Ae14,EA087,?,EA087-NA,,,,,, +115032,Ae15,EA087,?,EA087-NA,,,,,, +115033,Ae16,EA087,?,EA087-NA,,,,,, +115034,Ae17,EA087,?,EA087-NA,,,,,, +115035,Ae18,EA087,Four slopes,EA087-9,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +115036,Ae19,EA087,?,EA087-NA,,,,,, +115037,Ae2,EA087,?,EA087-NA,,,,,, +115038,Ae20,EA087,?,EA087-NA,,,,,, +115039,Ae21,EA087,?,EA087-NA,,,,,, +115040,Ae22,EA087,?,EA087-NA,,,,,, +115041,Ae23,EA087,?,EA087-NA,,,,,, +115042,Ae24,EA087,?,EA087-NA,,,,,, +115043,Ae25,EA087,Conical,EA087-4,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +115044,Ae26,EA087,?,EA087-NA,,,,,, +115045,Ae27,EA087,?,EA087-NA,,,,,, +115046,Ae28,EA087,Two slopes,EA087-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +115047,Ae29,EA087,?,EA087-NA,,,,,, +115048,Ae3,EA087,?,EA087-NA,,,,,, +115049,Ae30,EA087,?,EA087-NA,,,,,, +115050,Ae31,EA087,?,EA087-NA,,,,,, +115051,Ae32,EA087,?,EA087-NA,,,,,, +115052,Ae33,EA087,Four slopes,EA087-9,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +115053,Ae34,EA087,?,EA087-NA,,,,,, +115054,Ae35,EA087,Two slopes,EA087-8,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +115055,Ae36,EA087,?,EA087-NA,,,,,, +115056,Ae37,EA087,?,EA087-NA,,,,,, +115057,Ae38,EA087,?,EA087-NA,,,,,, +115058,Ae39,EA087,?,EA087-NA,,,,,, +115059,Ae4,EA087,?,EA087-NA,,,,,, +115060,Ae40,EA087,?,EA087-NA,,,,,, +115061,Ae41,EA087,?,EA087-NA,,,,,, +115062,Ae42,EA087,?,EA087-NA,,,,,, +115063,Ae43,EA087,?,EA087-NA,,,,,, +115064,Ae44,EA087,?,EA087-NA,,,,,, +115065,Ae45,EA087,?,EA087-NA,,,,,, +115066,Ae46,EA087,?,EA087-NA,,,,,, +115067,Ae47,EA087,?,EA087-NA,,,,,, +115068,Ae48,EA087,Two slopes,EA087-8,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +115069,Ae49,EA087,?,EA087-NA,,,,,, +115070,Ae5,EA087,?,EA087-NA,,,,,, +115071,Ae50,EA087,Conical,EA087-4,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +115072,Ae51,EA087,?,EA087-NA,,,,,, +115073,Ae52,EA087,?,EA087-NA,,,,,, +115074,Ae53,EA087,?,EA087-NA,,,,,, +115075,Ae54,EA087,?,EA087-NA,,,,,, +115076,Ae55,EA087,?,EA087-NA,,,,,, +115077,Ae56,EA087,?,EA087-NA,,,,,, +115078,Ae57,EA087,?,EA087-NA,,,,,, +115079,Ae58,EA087,?,EA087-NA,,,,,, +115080,Ae59,EA087,?,EA087-NA,,,,,, +115081,Ae6,EA087,?,EA087-NA,,,,,, +115082,Ae7,EA087,Two slopes,EA087-8,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +115083,Ae8,EA087,?,EA087-NA,,,,,, +115084,Ae9,EA087,?,EA087-NA,,,,,, +115085,Af1,EA087,?,EA087-NA,,,,,, +115086,Af10,EA087,?,EA087-NA,,,,,, +115087,Af11,EA087,?,EA087-NA,,,,,, +115088,Af12,EA087,?,EA087-NA,,,,,, +115089,Af13,EA087,Four slopes,EA087-9,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +115090,Af14,EA087,Four slopes,EA087-9,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +115091,Af15,EA087,Two slopes,EA087-8,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +115092,Af16,EA087,?,EA087-NA,,,,,, +115093,Af17,EA087,?,EA087-NA,,,,,, +115094,Af18,EA087,?,EA087-NA,,,,,, +115095,Af19,EA087,?,EA087-NA,,,,,, +115096,Af2,EA087,?,EA087-NA,,,,,, +115097,Af20,EA087,?,EA087-NA,,,,,, +115098,Af21,EA087,?,EA087-NA,,,,,, +115099,Af22,EA087,?,EA087-NA,,,,,, +115100,Af23,EA087,?,EA087-NA,,,,,, +115101,Af24,EA087,?,EA087-NA,,,,,, +115102,Af25,EA087,?,EA087-NA,,,,,, +115103,Af26,EA087,?,EA087-NA,,,,,, +115104,Af27,EA087,?,EA087-NA,,,,,, +115105,Af28,EA087,?,EA087-NA,,,,,, +115106,Af29,EA087,?,EA087-NA,,,,,, +115107,Af3,EA087,?,EA087-NA,,,,,, +115108,Af30,EA087,?,EA087-NA,,,,,, +115109,Af31,EA087,?,EA087-NA,,,,,, +115110,Af32,EA087,?,EA087-NA,,,,,, +115111,Af33,EA087,?,EA087-NA,,,,,, +115112,Af34,EA087,?,EA087-NA,,,,,, +115113,Af35,EA087,?,EA087-NA,,,,,, +115114,Af36,EA087,?,EA087-NA,,,,,, +115115,Af37,EA087,Conical,EA087-4,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +115116,Af38,EA087,?,EA087-NA,,,,,, +115117,Af39,EA087,?,EA087-NA,,,,,, +115118,Af4,EA087,?,EA087-NA,,,,,, +115119,Af40,EA087,?,EA087-NA,,,,,, +115120,Af41,EA087,?,EA087-NA,,,,,, +115121,Af42,EA087,?,EA087-NA,,,,,, +115122,Af43,EA087,?,EA087-NA,,,,,, +115123,Af44,EA087,?,EA087-NA,,,,,, +115124,Af45,EA087,?,EA087-NA,,,,,, +115125,Af46,EA087,?,EA087-NA,,,,,, +115126,Af47,EA087,?,EA087-NA,,,,,, +115127,Af48,EA087,Two slopes,EA087-8,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +115128,Af49,EA087,?,EA087-NA,,,,,, +115129,Af5,EA087,Two slopes,EA087-8,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +115130,Af50,EA087,?,EA087-NA,,,,,, +115131,Af51,EA087,?,EA087-NA,,,,,, +115132,Af52,EA087,Conical,EA087-4,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +115133,Af53,EA087,?,EA087-NA,,,,,, +115134,Af54,EA087,?,EA087-NA,,,,,, +115135,Af55,EA087,?,EA087-NA,,,,,, +115136,Af56,EA087,?,EA087-NA,,,,,, +115137,Af57,EA087,?,EA087-NA,,,,,, +115138,Af58,EA087,?,EA087-NA,,,,,, +115139,Af6,EA087,?,EA087-NA,,,,,, +115140,Af7,EA087,?,EA087-NA,,,,,, +115141,Af8,EA087,?,EA087-NA,,,,,, +115142,Af9,EA087,?,EA087-NA,,,,,, +115143,Ag1,EA087,Conical,EA087-4,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +115144,Ag10,EA087,?,EA087-NA,,,,,, +115145,Ag11,EA087,?,EA087-NA,,,,,, +115146,Ag12,EA087,Flat,EA087-7,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +115147,Ag13,EA087,Conical,EA087-4,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +115148,Ag14,EA087,?,EA087-NA,,,,,, +115149,Ag15,EA087,Conical,EA087-4,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +115150,Ag16,EA087,?,EA087-NA,,,,,, +115151,Ag17,EA087,?,EA087-NA,,,,,, +115152,Ag18,EA087,?,EA087-NA,,,,,, +115153,Ag19,EA087,?,EA087-NA,,,,,, +115154,Ag2,EA087,?,EA087-NA,,,,,, +115155,Ag20,EA087,?,EA087-NA,,,,,, +115156,Ag21,EA087,?,EA087-NA,,,,,, +115157,Ag22,EA087,?,EA087-NA,,,,,, +115158,Ag23,EA087,?,EA087-NA,,,,,, +115159,Ag24,EA087,?,EA087-NA,,,,,, +115160,Ag25,EA087,Conical,EA087-4,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +115161,Ag26,EA087,Flat,EA087-7,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +115162,Ag27,EA087,?,EA087-NA,,,,,, +115163,Ag28,EA087,?,EA087-NA,,,,,, +115164,Ag29,EA087,?,EA087-NA,,,,,, +115165,Ag3,EA087,?,EA087-NA,,,,,, +115166,Ag30,EA087,?,EA087-NA,,,,,, +115167,Ag31,EA087,?,EA087-NA,,,,,, +115168,Ag32,EA087,Flat,EA087-7,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +115169,Ag33,EA087,?,EA087-NA,,,,,, +115170,Ag34,EA087,Conical,EA087-4,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +115171,Ag35,EA087,?,EA087-NA,,,,,, +115172,Ag36,EA087,?,EA087-NA,,,,,, +115173,Ag37,EA087,?,EA087-NA,,,,,, +115174,Ag38,EA087,?,EA087-NA,,,,,, +115175,Ag39,EA087,Conical,EA087-4,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +115176,Ag4,EA087,Flat,EA087-7,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +115177,Ag40,EA087,Conical,EA087-4,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +115178,Ag41,EA087,?,EA087-NA,,,,,, +115179,Ag42,EA087,?,EA087-NA,,,,,, +115180,Ag43,EA087,?,EA087-NA,,,,,, +115181,Ag44,EA087,?,EA087-NA,,,,,, +115182,Ag45,EA087,Flat,EA087-7,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +115183,Ag46,EA087,?,EA087-NA,,,,,, +115184,Ag47,EA087,?,EA087-NA,,,,,, +115185,Ag48,EA087,?,EA087-NA,,,,,, +115186,Ag49,EA087,?,EA087-NA,,,,,, +115187,Ag5,EA087,?,EA087-NA,,,,,, +115188,Ag50,EA087,?,EA087-NA,,,,,, +115189,Ag51,EA087,?,EA087-NA,,,,,, +115190,Ag52,EA087,?,EA087-NA,,,,,, +115191,Ag53,EA087,?,EA087-NA,,,,,, +115192,Ag54,EA087,Four slopes,EA087-9,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +115193,Ag6,EA087,Beehive shaped,EA087-3,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +115194,Ag7,EA087,Hemispherical,EA087-2,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +115195,Ag8,EA087,?,EA087-NA,,,,,, +115196,Ag9,EA087,?,EA087-NA,,,,,, +115197,Ah1,EA087,?,EA087-NA,,,,,, +115198,Ah10,EA087,?,EA087-NA,,,,,, +115199,Ah11,EA087,?,EA087-NA,,,,,, +115200,Ah12,EA087,?,EA087-NA,,,,,, +115201,Ah13,EA087,?,EA087-NA,,,,,, +115202,Ah14,EA087,?,EA087-NA,,,,,, +115203,Ah15,EA087,?,EA087-NA,,,,,, +115204,Ah16,EA087,?,EA087-NA,,,,,, +115205,Ah17,EA087,?,EA087-NA,,,,,, +115206,Ah18,EA087,?,EA087-NA,,,,,, +115207,Ah19,EA087,?,EA087-NA,,,,,, +115208,Ah2,EA087,?,EA087-NA,,,,,, +115209,Ah20,EA087,Conical,EA087-4,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +115210,Ah21,EA087,?,EA087-NA,,,,,, +115211,Ah22,EA087,?,EA087-NA,,,,,, +115212,Ah23,EA087,?,EA087-NA,,,,,, +115213,Ah24,EA087,?,EA087-NA,,,,,, +115214,Ah25,EA087,Four slopes,EA087-9,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +115215,Ah26,EA087,?,EA087-NA,,,,,, +115216,Ah27,EA087,?,EA087-NA,,,,,, +115217,Ah28,EA087,?,EA087-NA,,,,,, +115218,Ah29,EA087,?,EA087-NA,,,,,, +115219,Ah3,EA087,?,EA087-NA,,,,,, +115220,Ah30,EA087,?,EA087-NA,,,,,, +115221,Ah31,EA087,?,EA087-NA,,,,,, +115222,Ah32,EA087,?,EA087-NA,,,,,, +115223,Ah33,EA087,Conical,EA087-4,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +115224,Ah34,EA087,?,EA087-NA,,,,,, +115225,Ah35,EA087,?,EA087-NA,,,,,, +115226,Ah36,EA087,?,EA087-NA,,,,,, +115227,Ah37,EA087,Beehive shaped,EA087-3,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +115228,Ah38,EA087,?,EA087-NA,,,,,, +115229,Ah39,EA087,?,EA087-NA,,,,,, +115230,Ah4,EA087,?,EA087-NA,,,,,, +115231,Ah5,EA087,?,EA087-NA,,,,,, +115232,Ah6,EA087,?,EA087-NA,,,,,, +115233,Ah7,EA087,?,EA087-NA,,,,,, +115234,Ah8,EA087,?,EA087-NA,,,,,, +115235,Ah9,EA087,?,EA087-NA,,,,,, +115236,Ai1,EA087,?,EA087-NA,,,,,, +115237,Ai10,EA087,?,EA087-NA,,,,,, +115238,Ai11,EA087,?,EA087-NA,,,,,, +115239,Ai12,EA087,?,EA087-NA,,,,,, +115240,Ai13,EA087,?,EA087-NA,,,,,, +115241,Ai14,EA087,?,EA087-NA,,,,,, +115242,Ai15,EA087,?,EA087-NA,,,,,, +115243,Ai16,EA087,?,EA087-NA,,,,,, +115244,Ai17,EA087,?,EA087-NA,,,,,, +115245,Ai18,EA087,Flat,EA087-7,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +115246,Ai19,EA087,Conical,EA087-4,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +115247,Ai2,EA087,?,EA087-NA,,,,,, +115248,Ai20,EA087,?,EA087-NA,,,,,, +115249,Ai21,EA087,Flat,EA087-7,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +115250,Ai22,EA087,?,EA087-NA,,,,,, +115251,Ai23,EA087,Conical,EA087-4,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +115252,Ai24,EA087,?,EA087-NA,,,,,, +115253,Ai25,EA087,Hemispherical,EA087-2,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +115254,Ai26,EA087,Conical,EA087-4,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +115255,Ai27,EA087,?,EA087-NA,,,,,, +115256,Ai28,EA087,Two slopes,EA087-8,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +115257,Ai29,EA087,?,EA087-NA,,,,,, +115258,Ai3,EA087,?,EA087-NA,,,,,, +115259,Ai30,EA087,?,EA087-NA,,,,,, +115260,Ai31,EA087,?,EA087-NA,,,,,, +115261,Ai32,EA087,?,EA087-NA,,,,,, +115262,Ai33,EA087,?,EA087-NA,,,,,, +115263,Ai34,EA087,?,EA087-NA,,,,,, +115264,Ai35,EA087,?,EA087-NA,,,,,, +115265,Ai36,EA087,?,EA087-NA,,,,,, +115266,Ai37,EA087,?,EA087-NA,,,,,, +115267,Ai38,EA087,?,EA087-NA,,,,,, +115268,Ai39,EA087,?,EA087-NA,,,,,, +115269,Ai4,EA087,?,EA087-NA,,,,,, +115270,Ai40,EA087,?,EA087-NA,,,,,, +115271,Ai41,EA087,?,EA087-NA,,,,,, +115272,Ai42,EA087,?,EA087-NA,,,,,, +115273,Ai43,EA087,?,EA087-NA,,,,,, +115274,Ai44,EA087,?,EA087-NA,,,,,, +115275,Ai45,EA087,?,EA087-NA,,,,,, +115276,Ai46,EA087,?,EA087-NA,,,,,, +115277,Ai47,EA087,Conical,EA087-4,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +115278,Ai5,EA087,?,EA087-NA,,,,,, +115279,Ai6,EA087,?,EA087-NA,,,,,, +115280,Ai7,EA087,Hemispherical,EA087-2,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +115281,Ai8,EA087,?,EA087-NA,,,,,, +115282,Ai9,EA087,?,EA087-NA,,,,,, +115283,Aj1,EA087,Conical,EA087-4,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +115284,Aj10,EA087,?,EA087-NA,,,,,, +115285,Aj11,EA087,?,EA087-NA,,,,,, +115286,Aj12,EA087,?,EA087-NA,,,,,, +115287,Aj13,EA087,?,EA087-NA,,,,,, +115288,Aj14,EA087,?,EA087-NA,,,,,, +115289,Aj15,EA087,?,EA087-NA,,,,,, +115290,Aj16,EA087,?,EA087-NA,,,,,, +115291,Aj17,EA087,Beehive shaped,EA087-3,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +115292,Aj18,EA087,?,EA087-NA,,,,,, +115293,Aj19,EA087,?,EA087-NA,,,,,, +115294,Aj2,EA087,?,EA087-NA,,,,,, +115295,Aj20,EA087,?,EA087-NA,,,,,, +115296,Aj21,EA087,?,EA087-NA,,,,,, +115297,Aj22,EA087,?,EA087-NA,,,,,, +115298,Aj23,EA087,?,EA087-NA,,,,,, +115299,Aj24,EA087,Hemispherical,EA087-2,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +115300,Aj25,EA087,?,EA087-NA,,,,,, +115301,Aj26,EA087,?,EA087-NA,,,,,, +115302,Aj27,EA087,Flat,EA087-7,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +115303,Aj28,EA087,?,EA087-NA,,,,,, +115304,Aj29,EA087,?,EA087-NA,,,,,, +115305,Aj3,EA087,Hemispherical,EA087-2,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +115306,Aj30,EA087,?,EA087-NA,,,,,, +115307,Aj31,EA087,?,EA087-NA,,,,,, +115308,Aj4,EA087,?,EA087-NA,,,,,, +115309,Aj5,EA087,Semi-hemispherical,EA087-5,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +115310,Aj6,EA087,?,EA087-NA,,,,,, +115311,Aj7,EA087,?,EA087-NA,,,,,, +115312,Aj8,EA087,?,EA087-NA,,,,,, +115313,Aj9,EA087,?,EA087-NA,,,,,, +115314,Ca1,EA087,?,EA087-NA,,,,,, +115315,Ca10,EA087,?,EA087-NA,,,,,, +115316,Ca11,EA087,Conical,EA087-4,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +115317,Ca12,EA087,?,EA087-NA,,,,,, +115318,Ca13,EA087,?,EA087-NA,,,,,, +115319,Ca14,EA087,?,EA087-NA,,,,,, +115320,Ca15,EA087,?,EA087-NA,,,,,, +115321,Ca16,EA087,?,EA087-NA,,,,,, +115322,Ca17,EA087,?,EA087-NA,,,,,, +115323,Ca18,EA087,?,EA087-NA,,,,,, +115324,Ca19,EA087,?,EA087-NA,,,,,, +115325,Ca2,EA087,Conical,EA087-4,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +115326,Ca20,EA087,Beehive shaped,EA087-3,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +115327,Ca21,EA087,?,EA087-NA,,,,,, +115328,Ca22,EA087,?,EA087-NA,,,,,, +115329,Ca23,EA087,Conical,EA087-4,,jensen1959,,1950,EthnographicAtlas_1967_p81, +115330,Ca24,EA087,?,EA087-NA,,,,,, +115331,Ca25,EA087,?,EA087-NA,,,,,, +115332,Ca26,EA087,?,EA087-NA,,,,,, +115333,Ca27,EA087,Beehive shaped,EA087-3,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +115334,Ca28,EA087,?,EA087-NA,,,,,, +115335,Ca29,EA087,?,EA087-NA,,,,,, +115336,Ca3,EA087,?,EA087-NA,,,,,, +115337,Ca30,EA087,Four slopes,EA087-9,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +115338,Ca31,EA087,?,EA087-NA,,,,,, +115339,Ca32,EA087,?,EA087-NA,,,,,, +115340,Ca33,EA087,Conical,EA087-4,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +115341,Ca34,EA087,Hemispherical,EA087-2,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +115342,Ca35,EA087,?,EA087-NA,,,,,, +115343,Ca36,EA087,?,EA087-NA,,,,,, +115344,Ca37,EA087,?,EA087-NA,,,,,, +115345,Ca38,EA087,?,EA087-NA,,,,,, +115346,Ca39,EA087,?,EA087-NA,,,,,, +115347,Ca4,EA087,Flat,EA087-7,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +115348,Ca40,EA087,?,EA087-NA,,,,,, +115349,Ca41,EA087,?,EA087-NA,,,,,, +115350,Ca42,EA087,?,EA087-NA,,,,,, +115351,Ca43,EA087,?,EA087-NA,,,,,, +115352,Ca5,EA087,?,EA087-NA,,,,,, +115353,Ca6,EA087,Conical,EA087-4,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +115354,Ca7,EA087,?,EA087-NA,,,,,, +115355,Ca8,EA087,?,EA087-NA,,,,,, +115356,Ca9,EA087,?,EA087-NA,,,,,, +115357,Cb1,EA087,?,EA087-NA,,,,,, +115358,Cb10,EA087,?,EA087-NA,,,,,, +115359,Cb11,EA087,?,EA087-NA,,,,,, +115360,Cb12,EA087,?,EA087-NA,,,,,, +115361,Cb13,EA087,?,EA087-NA,,,,,, +115362,Cb14,EA087,?,EA087-NA,,,,,, +115363,Cb15,EA087,Hemispherical,EA087-2,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +115364,Cb16,EA087,Conical,EA087-4,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +115365,Cb17,EA087,Conical,EA087-4,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +115366,Cb18,EA087,?,EA087-NA,,,,,, +115367,Cb19,EA087,Conical,EA087-4,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +115368,Cb2,EA087,?,EA087-NA,,,,,, +115369,Cb20,EA087,?,EA087-NA,,,,,, +115370,Cb21,EA087,?,EA087-NA,,,,,, +115371,Cb22,EA087,Conical,EA087-4,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +115372,Cb23,EA087,?,EA087-NA,,,,,, +115373,Cb24,EA087,?,EA087-NA,,,,,, +115374,Cb25,EA087,?,EA087-NA,,,,,, +115375,Cb26,EA087,?,EA087-NA,,,,,, +115376,Cb27,EA087,?,EA087-NA,,,,,, +115377,Cb28,EA087,?,EA087-NA,,,,,, +115378,Cb29,EA087,?,EA087-NA,,,,,, +115379,Cb3,EA087,Flat,EA087-7,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +115380,Cb4,EA087,?,EA087-NA,,,,,, +115381,Cb5,EA087,?,EA087-NA,,,,,, +115382,Cb6,EA087,?,EA087-NA,,,,,, +115383,Cb7,EA087,Flat,EA087-7,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +115384,Cb8,EA087,?,EA087-NA,,,,,, +115385,Cb9,EA087,Flat,EA087-7,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +115386,Cc1,EA087,?,EA087-NA,,,,,, +115387,Cc10,EA087,Beehive shaped,EA087-3,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +115388,Cc11,EA087,?,EA087-NA,,,,,, +115389,Cc12,EA087,?,EA087-NA,,,,,, +115390,Cc13,EA087,?,EA087-NA,,,,,, +115391,Cc14,EA087,Two slopes,EA087-8,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +115392,Cc15,EA087,?,EA087-NA,,,,,, +115393,Cc16,EA087,Flat,EA087-7,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +115394,Cc17,EA087,?,EA087-NA,,,,,, +115395,Cc18,EA087,?,EA087-NA,,,,,, +115396,Cc19,EA087,?,EA087-NA,,,,,, +115397,Cc2,EA087,Conical,EA087-4,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +115398,Cc20,EA087,?,EA087-NA,,,,,, +115399,Cc3,EA087,?,EA087-NA,,,,,, +115400,Cc4,EA087,?,EA087-NA,,,,,, +115401,Cc5,EA087,Beehive shaped,EA087-3,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +115402,Cc6,EA087,?,EA087-NA,,,,,, +115403,Cc7,EA087,Flat,EA087-7,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +115404,Cc8,EA087,Hemispherical,EA087-2,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +115405,Cc9,EA087,Flat,EA087-7,"Also similarly shaped houses with conical roofs (code ""4"") and walls (and roofs) of grass/thatch OR rounded roofs (code ""1"") with walls (and roofs) of mats/latticework",benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +115406,Cd1,EA087,Conical,EA087-4,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +115407,Cd10,EA087,?,EA087-NA,,,,,, +115408,Cd11,EA087,?,EA087-NA,,,,,, +115409,Cd12,EA087,?,EA087-NA,,,,,, +115410,Cd13,EA087,?,EA087-NA,,,,,, +115411,Cd14,EA087,?,EA087-NA,,,,,, +115412,Cd15,EA087,Two slopes,EA087-8,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +115413,Cd16,EA087,?,EA087-NA,,,,,, +115414,Cd17,EA087,?,EA087-NA,,,,,, +115415,Cd18,EA087,?,EA087-NA,,,,,, +115416,Cd19,EA087,Two slopes,EA087-8,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +115417,Cd2,EA087,?,EA087-NA,,,,,, +115418,Cd20,EA087,?,EA087-NA,,,,,, +115419,Cd21,EA087,?,EA087-NA,,,,,, +115420,Cd3,EA087,?,EA087-NA,,,,,, +115421,Cd4,EA087,?,EA087-NA,,,,,, +115422,Cd5,EA087,?,EA087-NA,,,,,, +115423,Cd6,EA087,?,EA087-NA,,,,,, +115424,Cd7,EA087,?,EA087-NA,,,,,, +115425,Cd8,EA087,?,EA087-NA,,,,,, +115426,Cd9,EA087,?,EA087-NA,,,,,, +115427,Ce1,EA087,Two slopes,EA087-8,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +115428,Ce2,EA087,?,EA087-NA,,,,,, +115429,Ce3,EA087,?,EA087-NA,,,,,, +115430,Ce4,EA087,?,EA087-NA,,,,,, +115431,Ce5,EA087,Flat,EA087-7,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +115432,Ce6,EA087,?,EA087-NA,,,,,, +115433,Ce7,EA087,?,EA087-NA,,,,,, +115434,Ce8,EA087,?,EA087-NA,,,,,, +115435,Cf1,EA087,?,EA087-NA,,,,,, +115436,Cf2,EA087,?,EA087-NA,,,,,, +115437,Cf3,EA087,?,EA087-NA,,,,,, +115438,Cf4,EA087,?,EA087-NA,,,,,, +115439,Cf5,EA087,?,EA087-NA,,,,,, +115440,Cg1,EA087,?,EA087-NA,,,,,, +115441,Cg2,EA087,?,EA087-NA,,,,,, +115442,Cg3,EA087,?,EA087-NA,,,,,, +115443,Cg4,EA087,?,EA087-NA,,,,,, +115444,Cg5,EA087,?,EA087-NA,,,,,, +115445,Ch1,EA087,?,EA087-NA,,,,,, +115446,Ch10,EA087,?,EA087-NA,,,,,, +115447,Ch11,EA087,Two slopes,EA087-8,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +115448,Ch2,EA087,?,EA087-NA,,,,,, +115449,Ch3,EA087,?,EA087-NA,,,,,, +115450,Ch4,EA087,?,EA087-NA,,,,,, +115451,Ch5,EA087,?,EA087-NA,,,,,, +115452,Ch6,EA087,?,EA087-NA,,,,,, +115453,Ch7,EA087,?,EA087-NA,,,,,, +115454,Ch8,EA087,?,EA087-NA,,,,,, +115455,Ch9,EA087,?,EA087-NA,,,,,, +115456,Ci1,EA087,?,EA087-NA,,,,,, +115457,Ci10,EA087,?,EA087-NA,,,,,, +115458,Ci11,EA087,Two slopes,EA087-8,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +115459,Ci12,EA087,?,EA087-NA,,,,,, +115460,Ci2,EA087,?,EA087-NA,,,,,, +115461,Ci3,EA087,?,EA087-NA,,,,,, +115462,Ci4,EA087,?,EA087-NA,,,,,, +115463,Ci5,EA087,?,EA087-NA,,,,,, +115464,Ci6,EA087,?,EA087-NA,,,,,, +115465,Ci7,EA087,?,EA087-NA,,,,,, +115466,Ci8,EA087,?,EA087-NA,,,,,, +115467,Ci9,EA087,?,EA087-NA,,,,,, +115468,Cj1,EA087,Two slopes,EA087-8,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +115469,Cj10,EA087,?,EA087-NA,,,,,, +115470,Cj2,EA087,?,EA087-NA,,,,,, +115471,Cj3,EA087,?,EA087-NA,,,,,, +115472,Cj4,EA087,?,EA087-NA,,,,,, +115473,Cj5,EA087,?,EA087-NA,,,,,, +115474,Cj6,EA087,?,EA087-NA,,,,,, +115475,Cj7,EA087,Four slopes,EA087-9,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +115476,Cj8,EA087,?,EA087-NA,,,,,, +115477,Cj9,EA087,?,EA087-NA,,,,,, +115478,Ea1,EA087,?,EA087-NA,,,,,, +115479,Ea10,EA087,Hemispherical,EA087-2,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +115480,Ea11,EA087,?,EA087-NA,,,,,, +115481,Ea12,EA087,?,EA087-NA,,,,,, +115482,Ea13,EA087,Flat,EA087-7,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +115483,Ea2,EA087,?,EA087-NA,,,,,, +115484,Ea3,EA087,Flat,EA087-7,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +115485,Ea4,EA087,?,EA087-NA,,,,,, +115486,Ea5,EA087,?,EA087-NA,,,,,, +115487,Ea6,EA087,Two slopes,EA087-8,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +115488,Ea7,EA087,Rounded or semi-cylindrical,EA087-1,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +115489,Ea8,EA087,?,EA087-NA,,,,,, +115490,Ea9,EA087,?,EA087-NA,,,,,, +115491,Eb1,EA087,Flat,EA087-7,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +115492,Eb2,EA087,?,EA087-NA,,,,,, +115493,Eb3,EA087,?,EA087-NA,,,,,, +115494,Eb4,EA087,?,EA087-NA,,,,,, +115495,Eb5,EA087,Flat,EA087-7,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +115496,Eb6,EA087,Flat,EA087-7,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +115497,Eb7,EA087,?,EA087-NA,,,,,, +115498,Eb8,EA087,?,EA087-NA,,,,,, +115499,Ec1,EA087,Two slopes,EA087-8,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +115500,Ec10,EA087,?,EA087-NA,,,,,, +115501,Ec11,EA087,?,EA087-NA,,,,,, +115502,Ec2,EA087,Conical,EA087-4,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +115503,Ec3,EA087,Conical,EA087-4,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +115504,Ec4,EA087,?,EA087-NA,,,,,, +115505,Ec5,EA087,Conical,EA087-4,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +115506,Ec6,EA087,Four slopes,EA087-9,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +115507,Ec7,EA087,?,EA087-NA,,,,,, +115508,Ec8,EA087,Conical,EA087-4,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +115509,Ec9,EA087,?,EA087-NA,,,,,, +115510,Ed1,EA087,Four slopes,EA087-9,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +115511,Ed10,EA087,?,EA087-NA,,,,,, +115512,Ed13,EA087,?,EA087-NA,,,,,, +115513,Ed14,EA087,?,EA087-NA,,,,,, +115514,Ed15a,EA087,?,EA087-NA,,,,,, +115515,Ed15b,EA087,?,EA087-NA,,,,,, +115516,Ed16,EA087,?,EA087-NA,,,,,, +115517,Ed2,EA087,?,EA087-NA,,,,,, +115518,Ed3,EA087,?,EA087-NA,,,,,, +115519,Ed4,EA087,?,EA087-NA,,,,,, +115520,Ed5,EA087,Four slopes,EA087-9,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +115521,Ed6,EA087,?,EA087-NA,,,,,, +115522,Ed7,EA087,Four slopes,EA087-9,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +115523,Ed8,EA087,Two slopes,EA087-8,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +115524,Ed9,EA087,?,EA087-NA,,,,,, +115525,Ee1,EA087,?,EA087-NA,,,,,, +115526,Ee2,EA087,?,EA087-NA,,,,,, +115527,Ee3,EA087,Two slopes,EA087-8,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +115528,Ee4,EA087,?,EA087-NA,,,,,, +115529,Ee5,EA087,?,EA087-NA,,,,,, +115530,Ee6,EA087,?,EA087-NA,,,,,, +115531,Ee7,EA087,?,EA087-NA,,,,,, +115532,Ee8,EA087,?,EA087-NA,,,,,, +115533,Ef1,EA087,?,EA087-NA,,,,,, +115534,Ef10,EA087,?,EA087-NA,,,,,, +115535,Ef11,EA087,Two slopes,EA087-8,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +115536,Ef2,EA087,Two slopes,EA087-8,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +115537,Ef3,EA087,?,EA087-NA,,,,,, +115538,Ef4,EA087,Two slopes,EA087-8,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +115539,Ef5,EA087,Beehive shaped,EA087-3,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +115540,Ef6,EA087,?,EA087-NA,,,,,, +115541,Ef7,EA087,?,EA087-NA,,,,,, +115542,Ef8,EA087,?,EA087-NA,,,,,, +115543,Ef9,EA087,?,EA087-NA,,,,,, +115544,Eg1,EA087,Conical,EA087-4,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +115545,Eg10,EA087,Two slopes,EA087-8,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +115546,Eg11,EA087,?,EA087-NA,,,,,, +115547,Eg12,EA087,?,EA087-NA,,,,,, +115548,Eg13,EA087,?,EA087-NA,,,,,, +115549,Eg14,EA087,?,EA087-NA,,,,,, +115550,Eg2,EA087,?,EA087-NA,,,,,, +115551,Eg3,EA087,?,EA087-NA,,,,,, +115552,Eg4,EA087,?,EA087-NA,,,,,, +115553,Eg5,EA087,?,EA087-NA,,,,,, +115554,Eg6,EA087,Two slopes,EA087-8,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +115555,Eg7,EA087,?,EA087-NA,,,,,, +115556,Eg8,EA087,?,EA087-NA,,,,,, +115557,Eg9,EA087,?,EA087-NA,,,,,, +115558,Eh1,EA087,?,EA087-NA,,,,,, +115559,Eh10,EA087,?,EA087-NA,,,,,, +115560,Eh2,EA087,Two slopes,EA087-8,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +115561,Eh3,EA087,?,EA087-NA,,,,,, +115562,Eh4,EA087,Two slopes,EA087-8,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +115563,Eh5,EA087,Two slopes,EA087-8,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +115564,Eh6,EA087,Two slopes,EA087-8,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +115565,Eh7,EA087,One slope,EA087-6,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +115566,Eh8,EA087,?,EA087-NA,,,,,, +115567,Eh9,EA087,?,EA087-NA,,,,,, +115568,Ei1,EA087,?,EA087-NA,,,,,, +115569,Ei10,EA087,?,EA087-NA,,,,,, +115570,Ei11,EA087,?,EA087-NA,,,,,, +115571,Ei12,EA087,?,EA087-NA,,,,,, +115572,Ei13,EA087,?,EA087-NA,,,,,, +115573,Ei14,EA087,?,EA087-NA,,,,,, +115574,Ei15,EA087,?,EA087-NA,,,,,, +115575,Ei16,EA087,?,EA087-NA,,,,,, +115576,Ei17,EA087,?,EA087-NA,,,,,, +115577,Ei18,EA087,?,EA087-NA,,,,,, +115578,Ei19,EA087,?,EA087-NA,,,,,, +115579,Ei2,EA087,?,EA087-NA,,,,,, +115580,Ei20,EA087,?,EA087-NA,,,,,, +115581,Ei3,EA087,?,EA087-NA,,,,,, +115582,Ei4,EA087,?,EA087-NA,,,,,, +115583,Ei5,EA087,?,EA087-NA,,,,,, +115584,Ei6,EA087,?,EA087-NA,,,,,, +115585,Ei7,EA087,?,EA087-NA,,,,,, +115586,Ei8,EA087,?,EA087-NA,,,,,, +115587,Ei9,EA087,?,EA087-NA,,,,,, +115588,Ej1,EA087,?,EA087-NA,,,,,, +115589,Ej10,EA087,?,EA087-NA,,,,,, +115590,Ej11,EA087,?,EA087-NA,,,,,, +115591,Ej12,EA087,?,EA087-NA,,,,,, +115592,Ej13,EA087,?,EA087-NA,,,,,, +115593,Ej14,EA087,?,EA087-NA,,,,,, +115594,Ej15,EA087,?,EA087-NA,,,,,, +115595,Ej16,EA087,?,EA087-NA,,,,,, +115596,Ej2,EA087,?,EA087-NA,,,,,, +115597,Ej3,EA087,?,EA087-NA,,,,,, +115598,Ej4,EA087,Two slopes,EA087-8,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +115599,Ej5,EA087,?,EA087-NA,,,,,, +115600,Ej6,EA087,?,EA087-NA,,,,,, +115601,Ej7,EA087,?,EA087-NA,,,,,, +115602,Ej8,EA087,?,EA087-NA,,,,,, +115603,Ej9,EA087,Two slopes,EA087-8,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +115604,Ia1,EA087,?,EA087-NA,,,,,, +115605,Ia10,EA087,?,EA087-NA,,,,,, +115606,Ia11,EA087,?,EA087-NA,,,,,, +115607,Ia12,EA087,?,EA087-NA,,,,,, +115608,Ia13,EA087,Two slopes,EA087-8,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +115609,Ia14,EA087,Two slopes,EA087-8,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +115610,Ia15,EA087,?,EA087-NA,,,,,, +115611,Ia16,EA087,?,EA087-NA,,,,,, +115612,Ia17,EA087,?,EA087-NA,,,,,, +115613,Ia18,EA087,?,EA087-NA,,,,,, +115614,Ia2,EA087,?,EA087-NA,,,,,, +115615,Ia3,EA087,?,EA087-NA,,,,,, +115616,Ia4,EA087,?,EA087-NA,,,,,, +115617,Ia5,EA087,?,EA087-NA,,,,,, +115618,Ia6,EA087,?,EA087-NA,,,,,, +115619,Ia7,EA087,?,EA087-NA,,,,,, +115620,Ia8,EA087,?,EA087-NA,,,,,, +115621,Ia9,EA087,?,EA087-NA,,,,,, +115622,Ib1,EA087,?,EA087-NA,,,,,, +115623,Ib2,EA087,?,EA087-NA,,,,,, +115624,Ib3,EA087,?,EA087-NA,,,,,, +115625,Ib4,EA087,?,EA087-NA,,,,,, +115626,Ib5,EA087,?,EA087-NA,,,,,, +115627,Ib6,EA087,?,EA087-NA,,,,,, +115628,Ib7,EA087,?,EA087-NA,,,,,, +115629,Ib8,EA087,?,EA087-NA,,,,,, +115630,Ib9,EA087,?,EA087-NA,,,,,, +115631,Ic1,EA087,?,EA087-NA,,,,,, +115632,Ic10,EA087,?,EA087-NA,,,,,, +115633,Ic11,EA087,Two slopes,EA087-8,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +115634,Ic12,EA087,?,EA087-NA,,,,,, +115635,Ic13,EA087,?,EA087-NA,,,,,, +115636,Ic2,EA087,?,EA087-NA,,,,,, +115637,Ic3,EA087,?,EA087-NA,,,,,, +115638,Ic4,EA087,?,EA087-NA,,,,,, +115639,Ic5,EA087,Two slopes,EA087-8,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +115640,Ic6,EA087,?,EA087-NA,,,,,, +115641,Ic7,EA087,?,EA087-NA,,,,,, +115642,Ic8,EA087,?,EA087-NA,,,,,, +115643,Ic9,EA087,?,EA087-NA,,,,,, +115644,Id1,EA087,?,EA087-NA,,,,,, +115645,Id10,EA087,Flat,EA087-7,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +115646,Id11,EA087,?,EA087-NA,,,,,, +115647,Id12,EA087,?,EA087-NA,,,,,, +115648,Id13,EA087,?,EA087-NA,,,,,, +115649,Id2,EA087,Semi-hemispherical,EA087-5,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +115650,Id3,EA087,?,EA087-NA,,,,,, +115651,Id4,EA087,?,EA087-NA,,,,,, +115652,Id5,EA087,?,EA087-NA,,,,,, +115653,Id6,EA087,?,EA087-NA,,,,,, +115654,Id7,EA087,?,EA087-NA,,,,,, +115655,Id8,EA087,Beehive shaped,EA087-3,,roth1890,,1830,EthnographicAtlas_1967_p97, +115656,Id9,EA087,?,EA087-NA,,,,,, +115657,Ie1,EA087,?,EA087-NA,,,,,, +115658,Ie10,EA087,?,EA087-NA,,,,,, +115659,Ie11,EA087,?,EA087-NA,,,,,, +115660,Ie12,EA087,?,EA087-NA,,,,,, +115661,Ie13,EA087,?,EA087-NA,,,,,, +115662,Ie14,EA087,?,EA087-NA,,,,,, +115663,Ie15,EA087,?,EA087-NA,,,,,, +115664,Ie16,EA087,?,EA087-NA,,,,,, +115665,Ie17,EA087,?,EA087-NA,,,,,, +115666,Ie18,EA087,Two slopes,EA087-8,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +115667,Ie19,EA087,?,EA087-NA,,,,,, +115668,Ie2,EA087,?,EA087-NA,,,,,, +115669,Ie20,EA087,?,EA087-NA,,,,,, +115670,Ie21,EA087,?,EA087-NA,,,,,, +115671,Ie22,EA087,?,EA087-NA,,,,,, +115672,Ie23,EA087,?,EA087-NA,,,,,, +115673,Ie24,EA087,?,EA087-NA,,,,,, +115674,Ie25,EA087,?,EA087-NA,,,,,, +115675,Ie26,EA087,?,EA087-NA,,,,,, +115676,Ie27,EA087,?,EA087-NA,,,,,, +115677,Ie28,EA087,?,EA087-NA,,,,,, +115678,Ie29,EA087,?,EA087-NA,,,,,, +115679,Ie3,EA087,?,EA087-NA,,,,,, +115680,Ie30,EA087,?,EA087-NA,,,,,, +115681,Ie31,EA087,?,EA087-NA,,,,,, +115682,Ie32,EA087,?,EA087-NA,,,,,, +115683,Ie33,EA087,?,EA087-NA,,,,,, +115684,Ie34,EA087,?,EA087-NA,,,,,, +115685,Ie35,EA087,?,EA087-NA,,,,,, +115686,Ie36,EA087,?,EA087-NA,,,,,, +115687,Ie37,EA087,?,EA087-NA,,,,,, +115688,Ie38,EA087,Two slopes,EA087-8,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +115689,Ie39,EA087,Four slopes,EA087-9,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +115690,Ie4,EA087,?,EA087-NA,,,,,, +115691,Ie5,EA087,Two slopes,EA087-8,,williams1936,,1930,EthnographicAtlas_1967_p97, +115692,Ie6,EA087,?,EA087-NA,,,,,, +115693,Ie7,EA087,?,EA087-NA,,,,,, +115694,Ie8,EA087,?,EA087-NA,,,,,, +115695,Ie9,EA087,?,EA087-NA,,,,,, +115696,If1,EA087,Two slopes,EA087-8,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +115697,If10,EA087,?,EA087-NA,,,,,, +115698,If11,EA087,?,EA087-NA,,,,,, +115699,If12,EA087,?,EA087-NA,,,,,, +115700,If13,EA087,?,EA087-NA,,,,,, +115701,If14,EA087,Two slopes,EA087-8,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +115702,If15,EA087,Two slopes,EA087-8,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +115703,If16,EA087,?,EA087-NA,,,,,, +115704,If17,EA087,?,EA087-NA,,,,,, +115705,If2,EA087,?,EA087-NA,,,,,, +115706,If3,EA087,?,EA087-NA,,,,,, +115707,If4,EA087,Two slopes,EA087-8,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +115708,If5,EA087,?,EA087-NA,,,,,, +115709,If6,EA087,?,EA087-NA,,,,,, +115710,If7,EA087,?,EA087-NA,,,,,, +115711,If8,EA087,?,EA087-NA,,,,,, +115712,If9,EA087,?,EA087-NA,,,,,, +115713,Ig1,EA087,Two slopes,EA087-8,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +115714,Ig10,EA087,?,EA087-NA,,,,,, +115715,Ig11,EA087,Two slopes,EA087-8,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +115716,Ig12,EA087,?,EA087-NA,,,,,, +115717,Ig13,EA087,?,EA087-NA,,,,,, +115718,Ig14,EA087,?,EA087-NA,,,,,, +115719,Ig15,EA087,?,EA087-NA,,,,,, +115720,Ig16,EA087,?,EA087-NA,,,,,, +115721,Ig17,EA087,?,EA087-NA,,,,,, +115722,Ig18,EA087,?,EA087-NA,,,,,, +115723,Ig19,EA087,?,EA087-NA,,,,,, +115724,Ig2,EA087,?,EA087-NA,,,,,, +115725,Ig20,EA087,?,EA087-NA,,,,,, +115726,Ig21,EA087,?,EA087-NA,,,,,, +115727,Ig3,EA087,Two slopes,EA087-8,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +115728,Ig4,EA087,?,EA087-NA,,,,,, +115729,Ig5,EA087,?,EA087-NA,,,,,, +115730,Ig6,EA087,?,EA087-NA,,,,,, +115731,Ig7,EA087,?,EA087-NA,,,,,, +115732,Ig8,EA087,?,EA087-NA,,,,,, +115733,Ig9,EA087,?,EA087-NA,,,,,, +115734,Ih1,EA087,?,EA087-NA,,,,,, +115735,Ih10,EA087,?,EA087-NA,,,,,, +115736,Ih11,EA087,?,EA087-NA,,,,,, +115737,Ih12,EA087,?,EA087-NA,,,,,, +115738,Ih13,EA087,?,EA087-NA,,,,,, +115739,Ih14,EA087,?,EA087-NA,,,,,, +115740,Ih2,EA087,?,EA087-NA,,,,,, +115741,Ih3,EA087,Two slopes,EA087-8,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +115742,Ih4,EA087,?,EA087-NA,,,,,, +115743,Ih5,EA087,Two slopes,EA087-8,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +115744,Ih6,EA087,?,EA087-NA,,,,,, +115745,Ih7,EA087,?,EA087-NA,,,,,, +115746,Ih8,EA087,?,EA087-NA,,,,,, +115747,Ih9,EA087,?,EA087-NA,,,,,, +115748,Ii1,EA087,?,EA087-NA,,,,,, +115749,Ii10,EA087,?,EA087-NA,,,,,, +115750,Ii12,EA087,?,EA087-NA,,,,,, +115751,Ii13,EA087,?,EA087-NA,,,,,, +115752,Ii14,EA087,?,EA087-NA,,,,,, +115753,Ii2,EA087,?,EA087-NA,,,,,, +115754,Ii3,EA087,?,EA087-NA,,,,,, +115755,Ii4,EA087,?,EA087-NA,,,,,, +115756,Ii5,EA087,?,EA087-NA,,,,,, +115757,Ii6,EA087,?,EA087-NA,,,,,, +115758,Ii7,EA087,?,EA087-NA,,,,,, +115759,Ii8,EA087,?,EA087-NA,,,,,, +115760,Ii9,EA087,?,EA087-NA,,,,,, +115761,Ij1,EA087,?,EA087-NA,,,,,, +115762,Ij10,EA087,?,EA087-NA,,,,,, +115763,Ij2,EA087,?,EA087-NA,,,,,, +115764,Ij3,EA087,?,EA087-NA,,,,,, +115765,Ij4,EA087,?,EA087-NA,,,,,, +115766,Ij5,EA087,?,EA087-NA,,,,,, +115767,Ij6,EA087,Four slopes,EA087-9,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +115768,Ij7,EA087,?,EA087-NA,,,,,, +115769,Ij8,EA087,?,EA087-NA,,,,,, +115770,Ij9,EA087,Flat,EA087-7,,metraux1940,,1860,EthnographicAtlas_1967_p105, +115771,Na1,EA087,Flat,EA087-7,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +115772,Na10,EA087,Two slopes,EA087-8,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +115773,Na11,EA087,Flat,EA087-7,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +115774,Na12,EA087,Hemispherical,EA087-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +115775,Na13,EA087,Hemispherical,EA087-2,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +115776,Na14,EA087,Conical,EA087-4,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +115777,Na15,EA087,Two slopes,EA087-8,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +115778,Na16,EA087,?,EA087-NA,,,,,, +115779,Na17,EA087,Two slopes,EA087-8,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +115780,Na19,EA087,Conical,EA087-4,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +115781,Na2,EA087,Four slopes,EA087-9,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +115782,Na20,EA087,Two slopes,EA087-8,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +115783,Na21,EA087,Two slopes,EA087-8,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +115784,Na22,EA087,Two slopes,EA087-8,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +115785,Na23,EA087,Two slopes,EA087-8,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +115786,Na24,EA087,One slope,EA087-6,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +115787,Na25,EA087,Two slopes,EA087-8,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +115788,Na26,EA087,?,EA087-NA,,,,,, +115789,Na27,EA087,?,EA087-NA,,,,,, +115790,Na28,EA087,?,EA087-NA,,,,,, +115791,Na29,EA087,?,EA087-NA,,,,,, +115792,Na3,EA087,Two slopes,EA087-8,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +115793,Na30,EA087,?,EA087-NA,,,,,, +115794,Na31,EA087,Hemispherical,EA087-2,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +115795,Na32,EA087,Conical,EA087-4,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +115796,Na33,EA087,?,EA087-NA,,,,,, +115797,Na34,EA087,Hemispherical,EA087-2,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +115798,Na35,EA087,Semi-hemispherical,EA087-5,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +115799,Na36,EA087,Two slopes,EA087-8,"Also a conical bark tipi, where roof shape would be conical (code ""4"")",barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +115800,Na37,EA087,?,EA087-NA,,,,,, +115801,Na38,EA087,Semi-hemispherical,EA087-5,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +115802,Na39,EA087,Conical,EA087-4,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +115803,Na4,EA087,Two slopes,EA087-8,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +115804,Na40,EA087,Conical,EA087-4,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +115805,Na41,EA087,?,EA087-NA,,,,,, +115806,Na42,EA087,?,EA087-NA,,,,,, +115807,Na43,EA087,?,EA087-NA,,,,,, +115808,Na44,EA087,?,EA087-NA,,,,,, +115809,Na45,EA087,?,EA087-NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +115810,Na5,EA087,?,EA087-NA,,,,,, +115811,Na6,EA087,?,EA087-NA,,,,,, +115812,Na7,EA087,Conical,EA087-4,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +115813,Na8,EA087,Two slopes,EA087-8,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +115814,Na9,EA087,?,EA087-NA,,,,,, +115815,Nb1,EA087,?,EA087-NA,,,,,, +115816,Nb10,EA087,Two slopes,EA087-8,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +115817,Nb11,EA087,?,EA087-NA,,,,,, +115818,Nb12,EA087,Two slopes,EA087-8,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +115819,Nb13,EA087,?,EA087-NA,,,,,, +115820,Nb14,EA087,?,EA087-NA,,,,,, +115821,Nb15,EA087,One slope,EA087-6,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +115822,Nb16,EA087,Two slopes,EA087-8,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +115823,Nb17,EA087,One slope,EA087-6,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +115824,Nb18,EA087,?,EA087-NA,,,,,, +115825,Nb19,EA087,?,EA087-NA,,,,,, +115826,Nb2,EA087,Two slopes,EA087-8,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +115827,Nb20,EA087,?,EA087-NA,,,,,, +115828,Nb21,EA087,Two slopes,EA087-8,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +115829,Nb22,EA087,Conical,EA087-4,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +115830,Nb23,EA087,Conical,EA087-4,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +115831,Nb24,EA087,?,EA087-NA,,,,,, +115832,Nb25,EA087,Two slopes,EA087-8,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +115833,Nb26,EA087,?,EA087-NA,,,,,, +115834,Nb27,EA087,One slope,EA087-6,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +115835,Nb28,EA087,Two slopes,EA087-8,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +115836,Nb29,EA087,?,EA087-NA,,,,,, +115837,Nb3,EA087,?,EA087-NA,,,,,, +115838,Nb30,EA087,?,EA087-NA,,,,,, +115839,Nb31,EA087,?,EA087-NA,,,,,, +115840,Nb32,EA087,?,EA087-NA,,,,,, +115841,Nb33,EA087,?,EA087-NA,,,,,, +115842,Nb34,EA087,?,EA087-NA,,,,,, +115843,Nb35,EA087,?,EA087-NA,,,,,, +115844,Nb36,EA087,?,EA087-NA,,,,,, +115845,Nb37,EA087,?,EA087-NA,,,,,, +115846,Nb38,EA087,?,EA087-NA,,,,,, +115847,Nb39,EA087,?,EA087-NA,,,,,, +115848,Nb4,EA087,?,EA087-NA,,,,,, +115849,Nb5,EA087,?,EA087-NA,,,,,, +115850,Nb6,EA087,?,EA087-NA,,,,,, +115851,Nb7,EA087,?,EA087-NA,,,,,, +115852,Nb8,EA087,?,EA087-NA,,,,,, +115853,Nb9,EA087,?,EA087-NA,,,,,, +115854,Nc1,EA087,Conical,EA087-4,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +115855,Nc10,EA087,Hemispherical,EA087-2,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +115856,Nc11,EA087,Conical,EA087-4,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +115857,Nc12,EA087,Conical,EA087-4,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +115858,Nc13,EA087,Conical,EA087-4,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +115859,Nc14,EA087,Conical,EA087-4,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +115860,Nc15,EA087,Conical,EA087-4,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +115861,Nc16,EA087,?,EA087-NA,,,,,, +115862,Nc17,EA087,?,EA087-NA,,,,,, +115863,Nc18,EA087,?,EA087-NA,,,,,, +115864,Nc19,EA087,?,EA087-NA,,,,,, +115865,Nc2,EA087,Flat,EA087-7,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +115866,Nc20,EA087,?,EA087-NA,,,,,, +115867,Nc21,EA087,?,EA087-NA,,,,,, +115868,Nc22,EA087,Flat,EA087-7,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +115869,Nc23,EA087,Conical,EA087-4,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +115870,Nc24,EA087,?,EA087-NA,,,,,, +115871,Nc25,EA087,Semi-hemispherical,EA087-5,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +115872,Nc26,EA087,Four slopes,EA087-9,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +115873,Nc27,EA087,?,EA087-NA,,,,,, +115874,Nc28,EA087,?,EA087-NA,,,,,, +115875,Nc29,EA087,?,EA087-NA,,,,,, +115876,Nc3,EA087,Hemispherical,EA087-2,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +115877,Nc30,EA087,?,EA087-NA,,,,,, +115878,Nc31,EA087,?,EA087-NA,,,,,, +115879,Nc32,EA087,?,EA087-NA,,,,,, +115880,Nc33,EA087,Two slopes,EA087-8,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +115881,Nc34,EA087,?,EA087-NA,,,,,, +115882,Nc4,EA087,Conical,EA087-4,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +115883,Nc5,EA087,?,EA087-NA,,,,,, +115884,Nc6,EA087,?,EA087-NA,,,,,, +115885,Nc7,EA087,Conical,EA087-4,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +115886,Nc8,EA087,Hemispherical,EA087-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +115887,Nc9,EA087,Flat,EA087-7,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +115888,Nd1,EA087,Conical,EA087-4,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +115889,Nd10,EA087,Two slopes,EA087-8,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +115890,Nd11,EA087,Conical,EA087-4,"Also rectangular subterranean houses where walls are indistinguishable from gabled roof (code ""8""), made of mats/latticework",ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +115891,Nd12,EA087,Conical,EA087-4,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +115892,Nd13,EA087,Conical,EA087-4,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +115893,Nd14,EA087,Two slopes,EA087-8,"Also circular houses with ground-level floors, walls indistinguishable from conical-shaped (code ""4"") roofs made of grass/thatch or hides/skins",ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +115894,Nd15,EA087,Conical,EA087-4,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +115895,Nd16,EA087,Two slopes,EA087-8,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +115896,Nd17,EA087,Two slopes,EA087-8,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +115897,Nd18,EA087,Two slopes,EA087-8,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +115898,Nd19,EA087,?,EA087-NA,,,,,, +115899,Nd2,EA087,Hemispherical,EA087-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +115900,Nd20,EA087,Conical,EA087-4,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +115901,Nd21,EA087,?,EA087-NA,,,,,, +115902,Nd22,EA087,Conical,EA087-4,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +115903,Nd23,EA087,?,EA087-NA,,,,,, +115904,Nd24,EA087,?,EA087-NA,,,,,, +115905,Nd25,EA087,?,EA087-NA,,,,,, +115906,Nd26,EA087,Flat,EA087-7,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +115907,Nd27,EA087,?,EA087-NA,,,,,, +115908,Nd28,EA087,Conical,EA087-4,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +115909,Nd29,EA087,Conical,EA087-4,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +115910,Nd3,EA087,?,EA087-NA,,,,,, +115911,Nd30,EA087,Conical,EA087-4,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +115912,Nd31,EA087,?,EA087-NA,,,,,, +115913,Nd32,EA087,Hemispherical,EA087-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +115914,Nd33,EA087,Hemispherical,EA087-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +115915,Nd34,EA087,Hemispherical,EA087-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +115916,Nd35,EA087,?,EA087-NA,,,,,, +115917,Nd36,EA087,Hemispherical,EA087-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +115918,Nd37,EA087,?,EA087-NA,,,,,, +115919,Nd38,EA087,Conical,EA087-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +115920,Nd39,EA087,?,EA087-NA,,,,,, +115921,Nd4,EA087,Conical,EA087-4,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +115922,Nd40,EA087,?,EA087-NA,,,,,, +115923,Nd41,EA087,Conical,EA087-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +115924,Nd42,EA087,?,EA087-NA,,,,,, +115925,Nd43,EA087,Conical,EA087-4,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +115926,Nd44,EA087,Conical,EA087-4,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +115927,Nd45,EA087,Hemispherical,EA087-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +115928,Nd46,EA087,Conical,EA087-4,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +115929,Nd47,EA087,?,EA087-NA,,,,,, +115930,Nd48,EA087,?,EA087-NA,,,,,, +115931,Nd49,EA087,?,EA087-NA,,,,,, +115932,Nd5,EA087,Hemispherical,EA087-2,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +115933,Nd50,EA087,?,EA087-NA,,,,,, +115934,Nd51,EA087,?,EA087-NA,,,,,, +115935,Nd52,EA087,?,EA087-NA,,,,,, +115936,Nd53,EA087,?,EA087-NA,,,,,, +115937,Nd54,EA087,?,EA087-NA,,,,,, +115938,Nd55,EA087,?,EA087-NA,,,,,, +115939,Nd56,EA087,Conical,EA087-4,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +115940,Nd57,EA087,?,EA087-NA,,,,,, +115941,Nd58,EA087,Conical,EA087-4,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +115942,Nd59,EA087,Conical,EA087-4,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +115943,Nd6,EA087,Hemispherical,EA087-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +115944,Nd60,EA087,?,EA087-NA,,,,,, +115945,Nd61,EA087,Conical,EA087-4,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +115946,Nd62,EA087,Conical,EA087-4,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +115947,Nd63,EA087,Conical,EA087-4,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +115948,Nd64,EA087,Conical,EA087-4,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +115949,Nd65,EA087,?,EA087-NA,,,,,, +115950,Nd66,EA087,?,EA087-NA,,,,,, +115951,Nd67,EA087,Flat,EA087-7,,gifford1936,,1870,EthnographicAtlas_1967_p113, +115952,Nd7,EA087,Conical,EA087-4,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +115953,Nd8,EA087,Conical,EA087-4,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +115954,Nd9,EA087,Two slopes,EA087-8,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +115955,Ne1,EA087,?,EA087-NA,,,,,, +115956,Ne10,EA087,Conical,EA087-4,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +115957,Ne11,EA087,?,EA087-NA,,,,,, +115958,Ne12,EA087,?,EA087-NA,,,,,, +115959,Ne13,EA087,?,EA087-NA,,,,,, +115960,Ne14,EA087,Conical,EA087-4,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +115961,Ne15,EA087,Conical,EA087-4,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +115962,Ne16,EA087,?,EA087-NA,,,,,, +115963,Ne17,EA087,?,EA087-NA,,,,,, +115964,Ne18,EA087,?,EA087-NA,,,,,, +115965,Ne19,EA087,?,EA087-NA,,,,,, +115966,Ne2,EA087,?,EA087-NA,,,,,, +115967,Ne20,EA087,?,EA087-NA,,,,,, +115968,Ne21,EA087,?,EA087-NA,,,,,, +115969,Ne3,EA087,?,EA087-NA,,,,,, +115970,Ne4,EA087,?,EA087-NA,,,,,, +115971,Ne5,EA087,?,EA087-NA,,,,,, +115972,Ne6,EA087,Conical,EA087-4,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +115973,Ne7,EA087,?,EA087-NA,,,,,, +115974,Ne8,EA087,?,EA087-NA,,,,,, +115975,Ne9,EA087,?,EA087-NA,,,,,, +115976,Nf10,EA087,Conical,EA087-4,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +115977,Nf11,EA087,Conical,EA087-4,,whitman1937,,1870,EthnographicAtlas_1967_p117, +115978,Nf12,EA087,Conical,EA087-4,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +115979,Nf13,EA087,?,EA087-NA,,,,,, +115980,Nf14,EA087,?,EA087-NA,,,,,, +115981,Nf15,EA087,?,EA087-NA,,,,,, +115982,Nf2,EA087,Hemispherical,EA087-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +115983,Nf3,EA087,Conical,EA087-4,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +115984,Nf4,EA087,?,EA087-NA,,,,,, +115985,Nf5,EA087,?,EA087-NA,,,,,, +115986,Nf6,EA087,Conical,EA087-4,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +115987,Nf7,EA087,Hemispherical,EA087-2,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +115988,Nf8,EA087,?,EA087-NA,,,,,, +115989,Nf9,EA087,?,EA087-NA,,,,,, +115990,Ng1,EA087,?,EA087-NA,,,,,, +115991,Ng10,EA087,?,EA087-NA,,,,,, +115992,Ng11,EA087,?,EA087-NA,,,,,, +115993,Ng12,EA087,Two slopes,EA087-8,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +115994,Ng13,EA087,?,EA087-NA,,,,,, +115995,Ng14,EA087,?,EA087-NA,,,,,, +115996,Ng15,EA087,?,EA087-NA,,,,,, +115997,Ng2,EA087,?,EA087-NA,,,,,, +115998,Ng3,EA087,Conical,EA087-4,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +115999,Ng4,EA087,Conical,EA087-4,,speck1918;speck1940,,1900,Ethnology_Vol2_No1_Jan_1963, +116000,Ng5,EA087,Conical,EA087-4,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +116001,Ng6,EA087,?,EA087-NA,,,,,, +116002,Ng7,EA087,?,EA087-NA,,,,,, +116003,Ng8,EA087,?,EA087-NA,,,,,, +116004,Ng9,EA087,?,EA087-NA,,,,,, +116005,Nh1,EA087,?,EA087-NA,,,,,, +116006,Nh10,EA087,?,EA087-NA,,,,,, +116007,Nh11,EA087,?,EA087-NA,,,,,, +116008,Nh12,EA087,?,EA087-NA,,,,,, +116009,Nh13,EA087,?,EA087-NA,,,,,, +116010,Nh14,EA087,?,EA087-NA,,,,,, +116011,Nh15,EA087,?,EA087-NA,,,,,, +116012,Nh16,EA087,Conical,EA087-4,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116013,Nh17,EA087,?,EA087-NA,,,,,, +116014,Nh18,EA087,?,EA087-NA,,,,,, +116015,Nh19,EA087,Flat,EA087-7,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +116016,Nh2,EA087,?,EA087-NA,,,,,, +116017,Nh20,EA087,?,EA087-NA,,,,,, +116018,Nh21,EA087,?,EA087-NA,,,,,, +116019,Nh22,EA087,Two slopes,EA087-8,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +116020,Nh23,EA087,?,EA087-NA,,,,,, +116021,Nh24,EA087,?,EA087-NA,,,,,, +116022,Nh25,EA087,?,EA087-NA,,,,,, +116023,Nh26,EA087,?,EA087-NA,,,,,, +116024,Nh27,EA087,?,EA087-NA,,,,,, +116025,Nh3,EA087,?,EA087-NA,,,,,, +116026,Nh4,EA087,?,EA087-NA,,,,,, +116027,Nh5,EA087,Flat,EA087-7,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +116028,Nh6,EA087,?,EA087-NA,,,,,, +116029,Nh7,EA087,?,EA087-NA,,,,,, +116030,Nh8,EA087,?,EA087-NA,,,,,, +116031,Nh9,EA087,?,EA087-NA,,,,,, +116032,Ni1,EA087,?,EA087-NA,,,,,, +116033,Ni2,EA087,Flat,EA087-7,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +116034,Ni3,EA087,?,EA087-NA,,,,,, +116035,Ni4,EA087,?,EA087-NA,,,,,, +116036,Ni5,EA087,?,EA087-NA,,,,,, +116037,Ni6,EA087,?,EA087-NA,,,,,, +116038,Ni7,EA087,?,EA087-NA,,,,,, +116039,Ni8,EA087,?,EA087-NA,,,,,, +116040,Ni9,EA087,?,EA087-NA,,,,,, +116041,Nj1,EA087,?,EA087-NA,,,,,, +116042,Nj10,EA087,?,EA087-NA,,,,,, +116043,Nj11,EA087,?,EA087-NA,,,,,, +116044,Nj12,EA087,?,EA087-NA,,,,,, +116045,Nj13,EA087,?,EA087-NA,,,,,, +116046,Nj14,EA087,?,EA087-NA,,,,,, +116047,Nj2,EA087,Flat,EA087-7,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p117, +116048,Nj3,EA087,?,EA087-NA,,,,,, +116049,Nj4,EA087,?,EA087-NA,,,,,, +116050,Nj5,EA087,?,EA087-NA,,,,,, +116051,Nj6,EA087,?,EA087-NA,,,,,, +116052,Nj7,EA087,?,EA087-NA,,,,,, +116053,Nj8,EA087,Two slopes,EA087-8,,foster1948,,1500,EthnographicAtlas_1967_p121, +116054,Nj9,EA087,?,EA087-NA,,,,,, +116055,Sa1,EA087,?,EA087-NA,,,,,, +116056,Sa10,EA087,?,EA087-NA,,,,,, +116057,Sa11,EA087,?,EA087-NA,,,,,, +116058,Sa12,EA087,?,EA087-NA,,,,,, +116059,Sa13,EA087,?,EA087-NA,,,,,, +116060,Sa14,EA087,?,EA087-NA,,,,,, +116061,Sa15,EA087,?,EA087-NA,,,,,, +116062,Sa16,EA087,?,EA087-NA,,,,,, +116063,Sa17,EA087,?,EA087-NA,,,,,, +116064,Sa2,EA087,?,EA087-NA,,,,,, +116065,Sa3,EA087,?,EA087-NA,,,,,, +116066,Sa4,EA087,?,EA087-NA,,,,,, +116067,Sa5,EA087,Two slopes,EA087-8,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +116068,Sa6,EA087,?,EA087-NA,,,,,, +116069,Sa7,EA087,?,EA087-NA,,,,,, +116070,Sa8,EA087,Two slopes,EA087-8,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +116071,Sa9,EA087,Two slopes,EA087-8,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +116072,Sb1,EA087,?,EA087-NA,,,,,, +116073,Sb2,EA087,Conical,EA087-4,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +116074,Sb3,EA087,?,EA087-NA,,,,,, +116075,Sb4,EA087,?,EA087-NA,,,,,, +116076,Sb5,EA087,?,EA087-NA,,,,,, +116077,Sb6,EA087,?,EA087-NA,,,,,, +116078,Sb7,EA087,?,EA087-NA,,,,,, +116079,Sb8,EA087,Two slopes,EA087-8,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +116080,Sb9,EA087,?,EA087-NA,,,,,, +116081,Sc1,EA087,?,EA087-NA,,,,,, +116082,Sc10,EA087,?,EA087-NA,,,,,, +116083,Sc11,EA087,?,EA087-NA,,,,,, +116084,Sc12,EA087,?,EA087-NA,,,,,, +116085,Sc13,EA087,?,EA087-NA,,,,,, +116086,Sc14,EA087,?,EA087-NA,,,,,, +116087,Sc15,EA087,?,EA087-NA,,,,,, +116088,Sc16,EA087,?,EA087-NA,,,,,, +116089,Sc17,EA087,?,EA087-NA,,,,,, +116090,Sc18,EA087,?,EA087-NA,,,,,, +116091,Sc2,EA087,?,EA087-NA,,,,,, +116092,Sc3,EA087,?,EA087-NA,,,,,, +116093,Sc4,EA087,?,EA087-NA,,,,,, +116094,Sc5,EA087,Two slopes,EA087-8,,farabee1918,,1900,EthnographicAtlas_1967_p121, +116095,Sc6,EA087,?,EA087-NA,,,,,, +116096,Sc7,EA087,?,EA087-NA,,,,,, +116097,Sc8,EA087,Two slopes,EA087-8,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +116098,Sc9,EA087,?,EA087-NA,,,,,, +116099,Sd1,EA087,Four slopes,EA087-9,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116100,Sd2,EA087,?,EA087-NA,,,,,, +116101,Sd3,EA087,?,EA087-NA,,,,,, +116102,Sd4,EA087,?,EA087-NA,,,,,, +116103,Sd5,EA087,?,EA087-NA,,,,,, +116104,Sd6,EA087,?,EA087-NA,,,,,, +116105,Sd7,EA087,Two slopes,EA087-8,,fock1963,,1950,EthnographicAtlas_1967_p121, +116106,Sd8,EA087,?,EA087-NA,,,,,, +116107,Sd9,EA087,?,EA087-NA,,,,,, +116108,Se1,EA087,One slope,EA087-6,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +116109,Se10,EA087,?,EA087-NA,,,,,, +116110,Se11,EA087,?,EA087-NA,,,,,, +116111,Se12,EA087,?,EA087-NA,,,,,, +116112,Se2,EA087,Two slopes,EA087-8,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +116113,Se3,EA087,?,EA087-NA,,,,,, +116114,Se4,EA087,?,EA087-NA,,,,,, +116115,Se5,EA087,Four slopes,EA087-9,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +116116,Se6,EA087,?,EA087-NA,,,,,, +116117,Se7,EA087,?,EA087-NA,,,,,, +116118,Se8,EA087,Four slopes,EA087-9,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +116119,Se9,EA087,?,EA087-NA,,,,,, +116120,Sf1,EA087,Four slopes,EA087-9,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +116121,Sf2,EA087,?,EA087-NA,,,,,, +116122,Sf3,EA087,?,EA087-NA,,,,,, +116123,Sf4,EA087,Two slopes,EA087-8,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +116124,Sf5,EA087,Four slopes,EA087-9,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +116125,Sf6,EA087,Conical,EA087-4,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +116126,Sf7,EA087,Hemispherical,EA087-2,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +116127,Sf8,EA087,?,EA087-NA,,,,,, +116128,Sf9,EA087,?,EA087-NA,,,,,, +116129,Sg1,EA087,Conical,EA087-4,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +116130,Sg2,EA087,Two slopes,EA087-8,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116131,Sg3,EA087,Conical,EA087-4,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +116132,Sg4,EA087,?,EA087-NA,,,,,, +116133,Sg5,EA087,?,EA087-NA,,,,,, +116134,Sh1,EA087,?,EA087-NA,,,,,, +116135,Sh2,EA087,?,EA087-NA,,,,,, +116136,Sh3,EA087,?,EA087-NA,,,,,, +116137,Sh4,EA087,?,EA087-NA,,,,,, +116138,Sh5,EA087,?,EA087-NA,,,,,, +116139,Sh6,EA087,?,EA087-NA,,,,,, +116140,Sh7,EA087,?,EA087-NA,,,,,, +116141,Sh8,EA087,One slope,EA087-6,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +116142,Sh9,EA087,?,EA087-NA,,,,,, +116143,Si1,EA087,Conical,EA087-4,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116144,Si10,EA087,?,EA087-NA,,,,,, +116145,Si2,EA087,?,EA087-NA,,,,,, +116146,Si3,EA087,?,EA087-NA,,,,,, +116147,Si4,EA087,Semi-hemispherical,EA087-5,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +116148,Si5,EA087,?,EA087-NA,,,,,, +116149,Si6,EA087,?,EA087-NA,,,,,, +116150,Si7,EA087,?,EA087-NA,,,,,, +116151,Si8,EA087,?,EA087-NA,,,,,, +116152,Si9,EA087,?,EA087-NA,,,,,, +116153,Sj1,EA087,?,EA087-NA,,,,,, +116154,Sj10,EA087,?,EA087-NA,,,,,, +116155,Sj11,EA087,?,EA087-NA,,,,,, +116156,Sj2,EA087,?,EA087-NA,,,,,, +116157,Sj3,EA087,?,EA087-NA,,,,,, +116158,Sj4,EA087,?,EA087-NA,,,,,, +116159,Sj5,EA087,One slope,EA087-6,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +116160,Sj6,EA087,?,EA087-NA,,,,,, +116161,Sj7,EA087,?,EA087-NA,,,,,, +116162,Sj8,EA087,?,EA087-NA,,,,,, +116163,Sj9,EA087,Four slopes,EA087-9,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +116164,ch12,EA087,Hemispherical,EA087-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +116165,ch13,EA087,Two slopes,EA087-8,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +116166,ch14,EA087,Four slopes,EA087-9,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +116167,ch15,EA087,Four slopes,EA087-9,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +116168,ch16,EA087,?,EA087-NA,,,,,, +116169,ch17,EA087,Flat,EA087-7,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +116170,ch18,EA087,?,EA087-NA,,,,,, +116171,ch19,EA087,Two slopes,EA087-8,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +116172,ch20,EA087,Four slopes,EA087-9,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +116173,ch21,EA087,Four slopes,EA087-9,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +116174,ch22,EA087,?,EA087-NA,,,,,, +116175,ch23,EA087,?,EA087-NA,,,,,, +116176,ch24,EA087,?,EA087-NA,,,,,, +116177,ch25,EA087,Two slopes,EA087-8,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +116178,ch26,EA087,Two slopes,EA087-8,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +116179,ch27,EA087,Two slopes,EA087-8,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +116180,ch28,EA087,?,EA087-NA,,,,,, +116181,ec12,EA087,Conical,EA087-4,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +116182,ec13,EA087,Conical,EA087-4,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +116183,ec14,EA087,Hemispherical,EA087-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +116184,ec15,EA087,Conical,EA087-4,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +116185,ec16,EA087,Conical,EA087-4,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +116186,ec17,EA087,Two slopes,EA087-8,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +116187,ec18,EA087,Two slopes,EA087-8,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +116188,ec19,EA087,Two slopes,EA087-8,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +116189,ec20,EA087,Two slopes,EA087-8,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +116190,ec21,EA087,Two slopes,EA087-8,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +116191,Aa1,EA088,"Grass, leaves or thatch",EA088-8,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p65, +116192,Aa2,EA088,?,EA088-NA,,,,,, +116193,Aa3,EA088,?,EA088-NA,,,,,, +116194,Aa4,EA088,?,EA088-NA,,,,,, +116195,Aa5,EA088,?,EA088-NA,,,,,, +116196,Aa6,EA088,Earth or turf,EA088-9,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p65, +116197,Aa7,EA088,?,EA088-NA,,,,,, +116198,Aa8,EA088,"Grass, leaves or thatch",EA088-8,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +116199,Aa9,EA088,?,EA088-NA,,,,,, +116200,Ab1,EA088,?,EA088-NA,,,,,, +116201,Ab10,EA088,"Grass, leaves or thatch",EA088-8,,hunter1936,,1936,EthnographicAtlas_1967_p65, +116202,Ab11,EA088,?,EA088-NA,,,,,, +116203,Ab12,EA088,?,EA088-NA,,,,,, +116204,Ab13,EA088,?,EA088-NA,,,,,, +116205,Ab14,EA088,?,EA088-NA,,,,,, +116206,Ab15,EA088,?,EA088-NA,,,,,, +116207,Ab16,EA088,?,EA088-NA,,,,,, +116208,Ab17,EA088,?,EA088-NA,,,,,, +116209,Ab18,EA088,?,EA088-NA,,,,,, +116210,Ab19,EA088,?,EA088-NA,,,,,, +116211,Ab2,EA088,"Grass, leaves or thatch",EA088-8,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p65, +116212,Ab20,EA088,?,EA088-NA,,,,,, +116213,Ab21a,EA088,?,EA088-NA,,,,,, +116214,Ab21b,EA088,?,EA088-NA,,,,,, +116215,Ab22,EA088,?,EA088-NA,,,,,, +116216,Ab3,EA088,"Grass, leaves or thatch",EA088-8,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p65, +116217,Ab4,EA088,?,EA088-NA,,,,,, +116218,Ab5,EA088,?,EA088-NA,,,,,, +116219,Ab6,EA088,?,EA088-NA,,,,,, +116220,Ab7,EA088,?,EA088-NA,,,,,, +116221,Ab8,EA088,?,EA088-NA,,,,,, +116222,Ab9,EA088,"Grass, leaves or thatch",EA088-8,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p65, +116223,Ac1,EA088,?,EA088-NA,,,,,, +116224,Ac10,EA088,?,EA088-NA,,,,,, +116225,Ac11,EA088,"Grass, leaves or thatch",EA088-8,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p65, +116226,Ac12,EA088,?,EA088-NA,,,,,, +116227,Ac13,EA088,?,EA088-NA,,,,,, +116228,Ac14,EA088,"Grass, leaves or thatch",EA088-8,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p65, +116229,Ac15,EA088,?,EA088-NA,,,,,, +116230,Ac16,EA088,?,EA088-NA,,,,,, +116231,Ac17,EA088,?,EA088-NA,,,,,, +116232,Ac18,EA088,?,EA088-NA,,,,,, +116233,Ac19,EA088,?,EA088-NA,,,,,, +116234,Ac2,EA088,?,EA088-NA,,,,,, +116235,Ac20,EA088,?,EA088-NA,,,,,, +116236,Ac21,EA088,?,EA088-NA,,,,,, +116237,Ac22,EA088,?,EA088-NA,,,,,, +116238,Ac23,EA088,?,EA088-NA,,,,,, +116239,Ac24,EA088,?,EA088-NA,,,,,, +116240,Ac25,EA088,?,EA088-NA,,,,,, +116241,Ac26,EA088,?,EA088-NA,,,,,, +116242,Ac27,EA088,?,EA088-NA,,,,,, +116243,Ac28,EA088,?,EA088-NA,,,,,, +116244,Ac29,EA088,?,EA088-NA,,,,,, +116245,Ac3,EA088,?,EA088-NA,,,,,, +116246,Ac30,EA088,?,EA088-NA,,,,,, +116247,Ac31,EA088,?,EA088-NA,,,,,, +116248,Ac32,EA088,"Grass, leaves or thatch",EA088-8,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +116249,Ac33,EA088,?,EA088-NA,,,,,, +116250,Ac34,EA088,?,EA088-NA,,,,,, +116251,Ac35,EA088,?,EA088-NA,,,,,, +116252,Ac36,EA088,?,EA088-NA,,,,,, +116253,Ac37,EA088,?,EA088-NA,,,,,, +116254,Ac38,EA088,?,EA088-NA,,,,,, +116255,Ac39,EA088,"Grass, leaves or thatch",EA088-8,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +116256,Ac4,EA088,?,EA088-NA,,,,,, +116257,Ac40,EA088,"Grass, leaves or thatch",EA088-8,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +116258,Ac41,EA088,?,EA088-NA,,,,,, +116259,Ac42,EA088,?,EA088-NA,,,,,, +116260,Ac43,EA088,?,EA088-NA,,,,,, +116261,Ac5,EA088,?,EA088-NA,,,,,, +116262,Ac6,EA088,?,EA088-NA,,,,,, +116263,Ac7,EA088,"Grass, leaves or thatch",EA088-8,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p65, +116264,Ac8,EA088,?,EA088-NA,,,,,, +116265,Ac9,EA088,?,EA088-NA,,,,,, +116266,Ad1,EA088,"Grass, leaves or thatch",EA088-8,,grottanelli1955,,1950,EthnographicAtlas_1967_p65, +116267,Ad10,EA088,"Grass, leaves or thatch",EA088-8,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p69, +116268,Ad11,EA088,Earth or turf,EA088-9,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p69, +116269,Ad12,EA088,?,EA088-NA,,,,,, +116270,Ad13,EA088,Earth or turf,EA088-9,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p69, +116271,Ad14,EA088,"Grass, leaves or thatch",EA088-8,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p69, +116272,Ad15,EA088,?,EA088-NA,,,,,, +116273,Ad16,EA088,?,EA088-NA,,,,,, +116274,Ad17,EA088,?,EA088-NA,,,,,, +116275,Ad18,EA088,?,EA088-NA,,,,,, +116276,Ad19,EA088,"Grass, leaves or thatch",EA088-8,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p69, +116277,Ad2,EA088,?,EA088-NA,,,,,, +116278,Ad20,EA088,Earth or turf,EA088-9,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p69, +116279,Ad21,EA088,?,EA088-NA,,,,,, +116280,Ad22,EA088,?,EA088-NA,,,,,, +116281,Ad23,EA088,?,EA088-NA,,,,,, +116282,Ad24,EA088,?,EA088-NA,,,,,, +116283,Ad25,EA088,?,EA088-NA,,,,,, +116284,Ad26,EA088,?,EA088-NA,,,,,, +116285,Ad27,EA088,"Grass, leaves or thatch",EA088-8,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +116286,Ad28,EA088,"Grass, leaves or thatch",EA088-8,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +116287,Ad29,EA088,?,EA088-NA,,,,,, +116288,Ad3,EA088,?,EA088-NA,,,,,, +116289,Ad30,EA088,?,EA088-NA,,,,,, +116290,Ad31,EA088,?,EA088-NA,,,,,, +116291,Ad32,EA088,?,EA088-NA,,,,,, +116292,Ad33,EA088,?,EA088-NA,,,,,, +116293,Ad34,EA088,?,EA088-NA,,,,,, +116294,Ad35,EA088,?,EA088-NA,,,,,, +116295,Ad36,EA088,?,EA088-NA,,,,,, +116296,Ad37,EA088,?,EA088-NA,,,,,, +116297,Ad38,EA088,?,EA088-NA,,,,,, +116298,Ad39,EA088,?,EA088-NA,,,,,, +116299,Ad4,EA088,"Grass, leaves or thatch",EA088-8,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p65, +116300,Ad40,EA088,?,EA088-NA,,,,,, +116301,Ad41,EA088,?,EA088-NA,,,,,, +116302,Ad42,EA088,?,EA088-NA,,,,,, +116303,Ad43,EA088,?,EA088-NA,,,,,, +116304,Ad44,EA088,?,EA088-NA,,,,,, +116305,Ad45,EA088,?,EA088-NA,,,,,, +116306,Ad46,EA088,"Grass, leaves or thatch",EA088-8,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p69, +116307,Ad47,EA088,?,EA088-NA,,,,,, +116308,Ad48,EA088,?,EA088-NA,,,,,, +116309,Ad49,EA088,?,EA088-NA,,,,,, +116310,Ad5,EA088,?,EA088-NA,,,,,, +116311,Ad50,EA088,"Grass, leaves or thatch",EA088-8,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +116312,Ad51,EA088,Earth or turf,EA088-9,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +116313,Ad6,EA088,"Grass, leaves or thatch",EA088-8,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p65, +116314,Ad7,EA088,?,EA088-NA,,,,,, +116315,Ad8,EA088,?,EA088-NA,,,,,, +116316,Ad9,EA088,?,EA088-NA,,,,,, +116317,Ae1,EA088,"Grass, leaves or thatch",EA088-8,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p69, +116318,Ae10,EA088,?,EA088-NA,,,,,, +116319,Ae11,EA088,?,EA088-NA,,,,,, +116320,Ae12,EA088,?,EA088-NA,,,,,, +116321,Ae13,EA088,?,EA088-NA,,,,,, +116322,Ae14,EA088,?,EA088-NA,,,,,, +116323,Ae15,EA088,?,EA088-NA,,,,,, +116324,Ae16,EA088,?,EA088-NA,,,,,, +116325,Ae17,EA088,?,EA088-NA,,,,,, +116326,Ae18,EA088,"Grass, leaves or thatch",EA088-8,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +116327,Ae19,EA088,?,EA088-NA,,,,,, +116328,Ae2,EA088,?,EA088-NA,,,,,, +116329,Ae20,EA088,?,EA088-NA,,,,,, +116330,Ae21,EA088,?,EA088-NA,,,,,, +116331,Ae22,EA088,?,EA088-NA,,,,,, +116332,Ae23,EA088,?,EA088-NA,,,,,, +116333,Ae24,EA088,?,EA088-NA,,,,,, +116334,Ae25,EA088,"Grass, leaves or thatch",EA088-8,,heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +116335,Ae26,EA088,?,EA088-NA,,,,,, +116336,Ae27,EA088,?,EA088-NA,,,,,, +116337,Ae28,EA088,"Grass, leaves or thatch",EA088-8,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p69, +116338,Ae29,EA088,?,EA088-NA,,,,,, +116339,Ae3,EA088,?,EA088-NA,,,,,, +116340,Ae30,EA088,?,EA088-NA,,,,,, +116341,Ae31,EA088,?,EA088-NA,,,,,, +116342,Ae32,EA088,?,EA088-NA,,,,,, +116343,Ae33,EA088,"Grass, leaves or thatch",EA088-8,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +116344,Ae34,EA088,?,EA088-NA,,,,,, +116345,Ae35,EA088,"Grass, leaves or thatch",EA088-8,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +116346,Ae36,EA088,?,EA088-NA,,,,,, +116347,Ae37,EA088,?,EA088-NA,,,,,, +116348,Ae38,EA088,?,EA088-NA,,,,,, +116349,Ae39,EA088,?,EA088-NA,,,,,, +116350,Ae4,EA088,?,EA088-NA,,,,,, +116351,Ae40,EA088,?,EA088-NA,,,,,, +116352,Ae41,EA088,?,EA088-NA,,,,,, +116353,Ae42,EA088,?,EA088-NA,,,,,, +116354,Ae43,EA088,?,EA088-NA,,,,,, +116355,Ae44,EA088,?,EA088-NA,,,,,, +116356,Ae45,EA088,?,EA088-NA,,,,,, +116357,Ae46,EA088,?,EA088-NA,,,,,, +116358,Ae47,EA088,?,EA088-NA,,,,,, +116359,Ae48,EA088,"Grass, leaves or thatch",EA088-8,,mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p69, +116360,Ae49,EA088,?,EA088-NA,,,,,, +116361,Ae5,EA088,?,EA088-NA,,,,,, +116362,Ae50,EA088,"Grass, leaves or thatch",EA088-8,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p69, +116363,Ae51,EA088,?,EA088-NA,,,,,, +116364,Ae52,EA088,?,EA088-NA,,,,,, +116365,Ae53,EA088,?,EA088-NA,,,,,, +116366,Ae54,EA088,?,EA088-NA,,,,,, +116367,Ae55,EA088,?,EA088-NA,,,,,, +116368,Ae56,EA088,?,EA088-NA,,,,,, +116369,Ae57,EA088,?,EA088-NA,,,,,, +116370,Ae58,EA088,?,EA088-NA,,,,,, +116371,Ae59,EA088,?,EA088-NA,,,,,, +116372,Ae6,EA088,?,EA088-NA,,,,,, +116373,Ae7,EA088,"Grass, leaves or thatch",EA088-8,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p69, +116374,Ae8,EA088,?,EA088-NA,,,,,, +116375,Ae9,EA088,?,EA088-NA,,,,,, +116376,Af1,EA088,?,EA088-NA,,,,,, +116377,Af10,EA088,?,EA088-NA,,,,,, +116378,Af11,EA088,?,EA088-NA,,,,,, +116379,Af12,EA088,?,EA088-NA,,,,,, +116380,Af13,EA088,"Grass, leaves or thatch",EA088-8,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p73, +116381,Af14,EA088,"Grass, leaves or thatch",EA088-8,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p73, +116382,Af15,EA088,"Grass, leaves or thatch",EA088-8,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p73, +116383,Af16,EA088,?,EA088-NA,,,,,, +116384,Af17,EA088,?,EA088-NA,,,,,, +116385,Af18,EA088,?,EA088-NA,,,,,, +116386,Af19,EA088,?,EA088-NA,,,,,, +116387,Af2,EA088,?,EA088-NA,,,,,, +116388,Af20,EA088,?,EA088-NA,,,,,, +116389,Af21,EA088,?,EA088-NA,,,,,, +116390,Af22,EA088,?,EA088-NA,,,,,, +116391,Af23,EA088,?,EA088-NA,,,,,, +116392,Af24,EA088,?,EA088-NA,,,,,, +116393,Af25,EA088,?,EA088-NA,,,,,, +116394,Af26,EA088,?,EA088-NA,,,,,, +116395,Af27,EA088,?,EA088-NA,,,,,, +116396,Af28,EA088,?,EA088-NA,,,,,, +116397,Af29,EA088,?,EA088-NA,,,,,, +116398,Af3,EA088,?,EA088-NA,,,,,, +116399,Af30,EA088,?,EA088-NA,,,,,, +116400,Af31,EA088,?,EA088-NA,,,,,, +116401,Af32,EA088,?,EA088-NA,,,,,, +116402,Af33,EA088,?,EA088-NA,,,,,, +116403,Af34,EA088,?,EA088-NA,,,,,, +116404,Af35,EA088,?,EA088-NA,,,,,, +116405,Af36,EA088,?,EA088-NA,,,,,, +116406,Af37,EA088,"Grass, leaves or thatch",EA088-8,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +116407,Af38,EA088,?,EA088-NA,,,,,, +116408,Af39,EA088,?,EA088-NA,,,,,, +116409,Af4,EA088,?,EA088-NA,,,,,, +116410,Af40,EA088,?,EA088-NA,,,,,, +116411,Af41,EA088,?,EA088-NA,,,,,, +116412,Af42,EA088,?,EA088-NA,,,,,, +116413,Af43,EA088,?,EA088-NA,,,,,, +116414,Af44,EA088,?,EA088-NA,,,,,, +116415,Af45,EA088,?,EA088-NA,,,,,, +116416,Af46,EA088,?,EA088-NA,,,,,, +116417,Af47,EA088,?,EA088-NA,,,,,, +116418,Af48,EA088,Mats,EA088-7,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +116419,Af49,EA088,?,EA088-NA,,,,,, +116420,Af5,EA088,"Grass, leaves or thatch",EA088-8,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p73, +116421,Af50,EA088,?,EA088-NA,,,,,, +116422,Af51,EA088,?,EA088-NA,,,,,, +116423,Af52,EA088,"Grass, leaves or thatch",EA088-8,,tauxier1924a,,1920,EthnographicAtlas_1967_p73, +116424,Af53,EA088,?,EA088-NA,,,,,, +116425,Af54,EA088,?,EA088-NA,,,,,, +116426,Af55,EA088,?,EA088-NA,,,,,, +116427,Af56,EA088,?,EA088-NA,,,,,, +116428,Af57,EA088,?,EA088-NA,,,,,, +116429,Af58,EA088,?,EA088-NA,,,,,, +116430,Af6,EA088,?,EA088-NA,,,,,, +116431,Af7,EA088,?,EA088-NA,,,,,, +116432,Af8,EA088,?,EA088-NA,,,,,, +116433,Af9,EA088,?,EA088-NA,,,,,, +116434,Ag1,EA088,"Grass, leaves or thatch",EA088-8,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p73, +116435,Ag10,EA088,?,EA088-NA,,,,,, +116436,Ag11,EA088,?,EA088-NA,,,,,, +116437,Ag12,EA088,Earth or turf,EA088-9,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p73, +116438,Ag13,EA088,"Grass, leaves or thatch",EA088-8,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p73, +116439,Ag14,EA088,"Grass, leaves or thatch",EA088-8,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +116440,Ag15,EA088,"Grass, leaves or thatch",EA088-8,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +116441,Ag16,EA088,?,EA088-NA,,,,,, +116442,Ag17,EA088,?,EA088-NA,,,,,, +116443,Ag18,EA088,?,EA088-NA,,,,,, +116444,Ag19,EA088,?,EA088-NA,,,,,, +116445,Ag2,EA088,?,EA088-NA,,,,,, +116446,Ag20,EA088,?,EA088-NA,,,,,, +116447,Ag21,EA088,?,EA088-NA,,,,,, +116448,Ag22,EA088,?,EA088-NA,,,,,, +116449,Ag23,EA088,?,EA088-NA,,,,,, +116450,Ag24,EA088,?,EA088-NA,,,,,, +116451,Ag25,EA088,"Grass, leaves or thatch",EA088-8,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p73, +116452,Ag26,EA088,Earth or turf,EA088-9,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p73, +116453,Ag27,EA088,?,EA088-NA,,,,,, +116454,Ag28,EA088,?,EA088-NA,,,,,, +116455,Ag29,EA088,?,EA088-NA,,,,,, +116456,Ag3,EA088,?,EA088-NA,,,,,, +116457,Ag30,EA088,?,EA088-NA,,,,,, +116458,Ag31,EA088,?,EA088-NA,,,,,, +116459,Ag32,EA088,Earth or turf,EA088-9,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p73, +116460,Ag33,EA088,?,EA088-NA,,,,,, +116461,Ag34,EA088,"Grass, leaves or thatch",EA088-8,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +116462,Ag35,EA088,"Grass, leaves or thatch",EA088-8,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +116463,Ag36,EA088,?,EA088-NA,,,,,, +116464,Ag37,EA088,?,EA088-NA,,,,,, +116465,Ag38,EA088,?,EA088-NA,,,,,, +116466,Ag39,EA088,"Grass, leaves or thatch",EA088-8,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +116467,Ag4,EA088,Earth or turf,EA088-9,,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p73, +116468,Ag40,EA088,"Grass, leaves or thatch",EA088-8,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +116469,Ag41,EA088,?,EA088-NA,,,,,, +116470,Ag42,EA088,?,EA088-NA,,,,,, +116471,Ag43,EA088,?,EA088-NA,,,,,, +116472,Ag44,EA088,?,EA088-NA,,,,,, +116473,Ag45,EA088,Earth or turf,EA088-9,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +116474,Ag46,EA088,?,EA088-NA,,,,,, +116475,Ag47,EA088,?,EA088-NA,,,,,, +116476,Ag48,EA088,?,EA088-NA,,,,,, +116477,Ag49,EA088,?,EA088-NA,,,,,, +116478,Ag5,EA088,?,EA088-NA,,,,,, +116479,Ag50,EA088,?,EA088-NA,,,,,, +116480,Ag51,EA088,?,EA088-NA,,,,,, +116481,Ag52,EA088,?,EA088-NA,,,,,, +116482,Ag53,EA088,?,EA088-NA,,,,,, +116483,Ag54,EA088,?,EA088-NA,,,,,, +116484,Ag6,EA088,"Grass, leaves or thatch",EA088-8,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p73, +116485,Ag7,EA088,"Grass, leaves or thatch",EA088-8,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p73, +116486,Ag8,EA088,?,EA088-NA,,,,,, +116487,Ag9,EA088,?,EA088-NA,,,,,, +116488,Ah1,EA088,?,EA088-NA,,,,,, +116489,Ah10,EA088,?,EA088-NA,,,,,, +116490,Ah11,EA088,?,EA088-NA,,,,,, +116491,Ah12,EA088,?,EA088-NA,,,,,, +116492,Ah13,EA088,?,EA088-NA,,,,,, +116493,Ah14,EA088,?,EA088-NA,,,,,, +116494,Ah15,EA088,"Grass, leaves or thatch",EA088-8,,gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p77, +116495,Ah16,EA088,?,EA088-NA,,,,,, +116496,Ah17,EA088,?,EA088-NA,,,,,, +116497,Ah18,EA088,?,EA088-NA,,,,,, +116498,Ah19,EA088,?,EA088-NA,,,,,, +116499,Ah2,EA088,?,EA088-NA,,,,,, +116500,Ah20,EA088,"Grass, leaves or thatch",EA088-8,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p77, +116501,Ah21,EA088,?,EA088-NA,,,,,, +116502,Ah22,EA088,?,EA088-NA,,,,,, +116503,Ah23,EA088,?,EA088-NA,,,,,, +116504,Ah24,EA088,?,EA088-NA,,,,,, +116505,Ah25,EA088,"Grass, leaves or thatch",EA088-8,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +116506,Ah26,EA088,?,EA088-NA,,,,,, +116507,Ah27,EA088,?,EA088-NA,,,,,, +116508,Ah28,EA088,?,EA088-NA,,,,,, +116509,Ah29,EA088,?,EA088-NA,,,,,, +116510,Ah3,EA088,?,EA088-NA,,,,,, +116511,Ah30,EA088,?,EA088-NA,,,,,, +116512,Ah31,EA088,?,EA088-NA,,,,,, +116513,Ah32,EA088,?,EA088-NA,,,,,, +116514,Ah33,EA088,"Grass, leaves or thatch",EA088-8,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p77, +116515,Ah34,EA088,?,EA088-NA,,,,,, +116516,Ah35,EA088,?,EA088-NA,,,,,, +116517,Ah36,EA088,?,EA088-NA,,,,,, +116518,Ah37,EA088,"Grass, leaves or thatch",EA088-8,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +116519,Ah38,EA088,?,EA088-NA,,,,,, +116520,Ah39,EA088,?,EA088-NA,,,,,, +116521,Ah4,EA088,?,EA088-NA,,,,,, +116522,Ah5,EA088,?,EA088-NA,,,,,, +116523,Ah6,EA088,?,EA088-NA,,,,,, +116524,Ah7,EA088,?,EA088-NA,,,,,, +116525,Ah8,EA088,?,EA088-NA,,,,,, +116526,Ah9,EA088,?,EA088-NA,,,,,, +116527,Ai1,EA088,?,EA088-NA,,,,,, +116528,Ai10,EA088,?,EA088-NA,,,,,, +116529,Ai11,EA088,?,EA088-NA,,,,,, +116530,Ai12,EA088,?,EA088-NA,,,,,, +116531,Ai13,EA088,?,EA088-NA,,,,,, +116532,Ai14,EA088,?,EA088-NA,,,,,, +116533,Ai15,EA088,?,EA088-NA,,,,,, +116534,Ai16,EA088,?,EA088-NA,,,,,, +116535,Ai17,EA088,?,EA088-NA,,,,,, +116536,Ai18,EA088,Earth or turf,EA088-9,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +116537,Ai19,EA088,"Grass, leaves or thatch",EA088-8,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +116538,Ai2,EA088,?,EA088-NA,,,,,, +116539,Ai20,EA088,?,EA088-NA,,,,,, +116540,Ai21,EA088,Earth or turf,EA088-9,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p77, +116541,Ai22,EA088,?,EA088-NA,,,,,, +116542,Ai23,EA088,"Grass, leaves or thatch",EA088-8,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p77, +116543,Ai24,EA088,?,EA088-NA,,,,,, +116544,Ai25,EA088,"Grass, leaves or thatch",EA088-8,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +116545,Ai26,EA088,"Grass, leaves or thatch",EA088-8,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p77, +116546,Ai27,EA088,?,EA088-NA,,,,,, +116547,Ai28,EA088,"Grass, leaves or thatch",EA088-8,,delhaise1912,,1910,EthnographicAtlas_1967_p77, +116548,Ai29,EA088,?,EA088-NA,,,,,, +116549,Ai3,EA088,?,EA088-NA,,,,,, +116550,Ai30,EA088,?,EA088-NA,,,,,, +116551,Ai31,EA088,?,EA088-NA,,,,,, +116552,Ai32,EA088,?,EA088-NA,,,,,, +116553,Ai33,EA088,?,EA088-NA,,,,,, +116554,Ai34,EA088,?,EA088-NA,,,,,, +116555,Ai35,EA088,?,EA088-NA,,,,,, +116556,Ai36,EA088,?,EA088-NA,,,,,, +116557,Ai37,EA088,?,EA088-NA,,,,,, +116558,Ai38,EA088,?,EA088-NA,,,,,, +116559,Ai39,EA088,?,EA088-NA,,,,,, +116560,Ai4,EA088,?,EA088-NA,,,,,, +116561,Ai40,EA088,?,EA088-NA,,,,,, +116562,Ai41,EA088,?,EA088-NA,,,,,, +116563,Ai42,EA088,?,EA088-NA,,,,,, +116564,Ai43,EA088,?,EA088-NA,,,,,, +116565,Ai44,EA088,?,EA088-NA,,,,,, +116566,Ai45,EA088,?,EA088-NA,,,,,, +116567,Ai46,EA088,?,EA088-NA,,,,,, +116568,Ai47,EA088,"Grass, leaves or thatch",EA088-8,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p77, +116569,Ai5,EA088,?,EA088-NA,,,,,, +116570,Ai6,EA088,?,EA088-NA,,,,,, +116571,Ai7,EA088,"Grass, leaves or thatch",EA088-8,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p77, +116572,Ai8,EA088,?,EA088-NA,,,,,, +116573,Ai9,EA088,?,EA088-NA,,,,,, +116574,Aj1,EA088,"Grass, leaves or thatch",EA088-8,,lawrance1957,,1950,EthnographicAtlas_1967_p77, +116575,Aj10,EA088,?,EA088-NA,,,,,, +116576,Aj11,EA088,?,EA088-NA,,,,,, +116577,Aj12,EA088,?,EA088-NA,,,,,, +116578,Aj13,EA088,?,EA088-NA,,,,,, +116579,Aj14,EA088,?,EA088-NA,,,,,, +116580,Aj15,EA088,?,EA088-NA,,,,,, +116581,Aj16,EA088,?,EA088-NA,,,,,, +116582,Aj17,EA088,"Grass, leaves or thatch",EA088-8,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p81, +116583,Aj18,EA088,?,EA088-NA,,,,,, +116584,Aj19,EA088,?,EA088-NA,,,,,, +116585,Aj2,EA088,?,EA088-NA,,,,,, +116586,Aj20,EA088,?,EA088-NA,,,,,, +116587,Aj21,EA088,?,EA088-NA,,,,,, +116588,Aj22,EA088,?,EA088-NA,,,,,, +116589,Aj23,EA088,?,EA088-NA,,,,,, +116590,Aj24,EA088,"Grass, leaves or thatch",EA088-8,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p81, +116591,Aj25,EA088,?,EA088-NA,,,,,, +116592,Aj26,EA088,?,EA088-NA,,,,,, +116593,Aj27,EA088,Earth or turf,EA088-9,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +116594,Aj28,EA088,?,EA088-NA,,,,,, +116595,Aj29,EA088,?,EA088-NA,,,,,, +116596,Aj3,EA088,"Grass, leaves or thatch",EA088-8,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p81, +116597,Aj30,EA088,?,EA088-NA,,,,,, +116598,Aj31,EA088,?,EA088-NA,,,,,, +116599,Aj4,EA088,"Grass, leaves or thatch",EA088-8,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p81, +116600,Aj5,EA088,"Grass, leaves or thatch",EA088-8,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p81, +116601,Aj6,EA088,?,EA088-NA,,,,,, +116602,Aj7,EA088,?,EA088-NA,,,,,, +116603,Aj8,EA088,?,EA088-NA,,,,,, +116604,Aj9,EA088,?,EA088-NA,,,,,, +116605,Ca1,EA088,?,EA088-NA,,,,,, +116606,Ca10,EA088,?,EA088-NA,,,,,, +116607,Ca11,EA088,"Grass, leaves or thatch",EA088-8,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p81, +116608,Ca12,EA088,?,EA088-NA,,,,,, +116609,Ca13,EA088,?,EA088-NA,,,,,, +116610,Ca14,EA088,?,EA088-NA,,,,,, +116611,Ca15,EA088,?,EA088-NA,,,,,, +116612,Ca16,EA088,?,EA088-NA,,,,,, +116613,Ca17,EA088,?,EA088-NA,,,,,, +116614,Ca18,EA088,?,EA088-NA,,,,,, +116615,Ca19,EA088,?,EA088-NA,,,,,, +116616,Ca2,EA088,"Grass, leaves or thatch",EA088-8,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p81, +116617,Ca20,EA088,Mats,EA088-7,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +116618,Ca21,EA088,?,EA088-NA,,,,,, +116619,Ca22,EA088,?,EA088-NA,,,,,, +116620,Ca23,EA088,"Grass, leaves or thatch",EA088-8,,jensen1959,,1950,EthnographicAtlas_1967_p81, +116621,Ca24,EA088,?,EA088-NA,,,,,, +116622,Ca25,EA088,?,EA088-NA,,,,,, +116623,Ca26,EA088,?,EA088-NA,,,,,, +116624,Ca27,EA088,"Grass, leaves or thatch",EA088-8,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +116625,Ca28,EA088,?,EA088-NA,,,,,, +116626,Ca29,EA088,?,EA088-NA,,,,,, +116627,Ca3,EA088,?,EA088-NA,,,,,, +116628,Ca30,EA088,"Grass, leaves or thatch",EA088-8,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p81, +116629,Ca31,EA088,?,EA088-NA,,,,,, +116630,Ca32,EA088,?,EA088-NA,,,,,, +116631,Ca33,EA088,"Grass, leaves or thatch",EA088-8,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p81, +116632,Ca34,EA088,Mats,EA088-7,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +116633,Ca35,EA088,?,EA088-NA,,,,,, +116634,Ca36,EA088,?,EA088-NA,,,,,, +116635,Ca37,EA088,?,EA088-NA,,,,,, +116636,Ca38,EA088,?,EA088-NA,,,,,, +116637,Ca39,EA088,?,EA088-NA,,,,,, +116638,Ca4,EA088,Earth or turf,EA088-9,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p81, +116639,Ca40,EA088,?,EA088-NA,,,,,, +116640,Ca41,EA088,?,EA088-NA,,,,,, +116641,Ca42,EA088,?,EA088-NA,,,,,, +116642,Ca43,EA088,?,EA088-NA,,,,,, +116643,Ca5,EA088,?,EA088-NA,,,,,, +116644,Ca6,EA088,"Grass, leaves or thatch",EA088-8,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p81, +116645,Ca7,EA088,?,EA088-NA,,,,,, +116646,Ca8,EA088,?,EA088-NA,,,,,, +116647,Ca9,EA088,?,EA088-NA,,,,,, +116648,Cb1,EA088,?,EA088-NA,,,,,, +116649,Cb10,EA088,?,EA088-NA,,,,,, +116650,Cb11,EA088,?,EA088-NA,,,,,, +116651,Cb12,EA088,?,EA088-NA,,,,,, +116652,Cb13,EA088,?,EA088-NA,,,,,, +116653,Cb14,EA088,?,EA088-NA,,,,,, +116654,Cb15,EA088,Mats,EA088-7,,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +116655,Cb16,EA088,"Grass, leaves or thatch",EA088-8,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +116656,Cb17,EA088,"Grass, leaves or thatch",EA088-8,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p81, +116657,Cb18,EA088,?,EA088-NA,,,,,, +116658,Cb19,EA088,"Grass, leaves or thatch",EA088-8,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p81, +116659,Cb2,EA088,?,EA088-NA,,,,,, +116660,Cb20,EA088,?,EA088-NA,,,,,, +116661,Cb21,EA088,?,EA088-NA,,,,,, +116662,Cb22,EA088,"Grass, leaves or thatch",EA088-8,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +116663,Cb23,EA088,?,EA088-NA,,,,,, +116664,Cb24,EA088,?,EA088-NA,,,,,, +116665,Cb25,EA088,?,EA088-NA,,,,,, +116666,Cb26,EA088,?,EA088-NA,,,,,, +116667,Cb27,EA088,?,EA088-NA,,,,,, +116668,Cb28,EA088,?,EA088-NA,,,,,, +116669,Cb29,EA088,?,EA088-NA,,,,,, +116670,Cb3,EA088,Earth or turf,EA088-9,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p81, +116671,Cb4,EA088,?,EA088-NA,,,,,, +116672,Cb5,EA088,?,EA088-NA,,,,,, +116673,Cb6,EA088,?,EA088-NA,,,,,, +116674,Cb7,EA088,Earth or turf,EA088-9,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p81, +116675,Cb8,EA088,?,EA088-NA,,,,,, +116676,Cb9,EA088,Earth or turf,EA088-9,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p81, +116677,Cc1,EA088,?,EA088-NA,,,,,, +116678,Cc10,EA088,Mats,EA088-7,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p85, +116679,Cc11,EA088,"Grass, leaves or thatch",EA088-8,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +116680,Cc12,EA088,?,EA088-NA,,,,,, +116681,Cc13,EA088,Mats,EA088-7,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +116682,Cc14,EA088,Mats,EA088-7,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +116683,Cc15,EA088,?,EA088-NA,,,,,, +116684,Cc16,EA088,Earth or turf,EA088-9,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p85, +116685,Cc17,EA088,?,EA088-NA,,,,,, +116686,Cc18,EA088,?,EA088-NA,,,,,, +116687,Cc19,EA088,?,EA088-NA,,,,,, +116688,Cc2,EA088,"Grass, leaves or thatch",EA088-8,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p85, +116689,Cc20,EA088,?,EA088-NA,,,,,, +116690,Cc3,EA088,?,EA088-NA,,,,,, +116691,Cc4,EA088,?,EA088-NA,,,,,, +116692,Cc5,EA088,"Grass, leaves or thatch",EA088-8,,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p85, +116693,Cc6,EA088,?,EA088-NA,,,,,, +116694,Cc7,EA088,Earth or turf,EA088-9,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116695,Cc8,EA088,Mats,EA088-7,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +116696,Cc9,EA088,Earth or turf,EA088-9,"Also similarly shaped houses with conical roofs of grass/thatch (code ""8"") (walls also of grass/thatch) OR rounded roofs of mats/latticework (code ""7"") (walls also of mats/latticework)",benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p85, +116697,Cd1,EA088,Mats,EA088-7,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p85, +116698,Cd10,EA088,?,EA088-NA,,,,,, +116699,Cd11,EA088,?,EA088-NA,,,,,, +116700,Cd12,EA088,"Grass, leaves or thatch",EA088-8,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p85, +116701,Cd13,EA088,?,EA088-NA,,,,,, +116702,Cd14,EA088,?,EA088-NA,,,,,, +116703,Cd15,EA088,"Grass, leaves or thatch",EA088-8,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +116704,Cd16,EA088,?,EA088-NA,,,,,, +116705,Cd17,EA088,?,EA088-NA,,,,,, +116706,Cd18,EA088,?,EA088-NA,,,,,, +116707,Cd19,EA088,"Grass, leaves or thatch",EA088-8,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +116708,Cd2,EA088,?,EA088-NA,,,,,, +116709,Cd20,EA088,?,EA088-NA,,,,,, +116710,Cd21,EA088,?,EA088-NA,,,,,, +116711,Cd3,EA088,?,EA088-NA,,,,,, +116712,Cd4,EA088,?,EA088-NA,,,,,, +116713,Cd5,EA088,?,EA088-NA,,,,,, +116714,Cd6,EA088,?,EA088-NA,,,,,, +116715,Cd7,EA088,?,EA088-NA,,,,,, +116716,Cd8,EA088,?,EA088-NA,,,,,, +116717,Cd9,EA088,?,EA088-NA,,,,,, +116718,Ce1,EA088,Tile or fired brick,EA088-11,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p85, +116719,Ce2,EA088,?,EA088-NA,,,,,, +116720,Ce3,EA088,?,EA088-NA,,,,,, +116721,Ce4,EA088,?,EA088-NA,,,,,, +116722,Ce5,EA088,Stone or slate,EA088-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p85, +116723,Ce6,EA088,?,EA088-NA,,,,,, +116724,Ce7,EA088,?,EA088-NA,,,,,, +116725,Ce8,EA088,?,EA088-NA,,,,,, +116726,Cf1,EA088,?,EA088-NA,,,,,, +116727,Cf2,EA088,?,EA088-NA,,,,,, +116728,Cf3,EA088,?,EA088-NA,,,,,, +116729,Cf4,EA088,?,EA088-NA,,,,,, +116730,Cf5,EA088,?,EA088-NA,,,,,, +116731,Cg1,EA088,?,EA088-NA,,,,,, +116732,Cg2,EA088,?,EA088-NA,,,,,, +116733,Cg3,EA088,?,EA088-NA,,,,,, +116734,Cg4,EA088,?,EA088-NA,,,,,, +116735,Cg5,EA088,?,EA088-NA,,,,,, +116736,Ch1,EA088,?,EA088-NA,,,,,, +116737,Ch10,EA088,?,EA088-NA,,,,,, +116738,Ch11,EA088,"Wood, incl. bamboo",EA088-3,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +116739,Ch2,EA088,?,EA088-NA,,,,,, +116740,Ch3,EA088,?,EA088-NA,,,,,, +116741,Ch4,EA088,?,EA088-NA,,,,,, +116742,Ch5,EA088,?,EA088-NA,,,,,, +116743,Ch6,EA088,?,EA088-NA,,,,,, +116744,Ch7,EA088,?,EA088-NA,,,,,, +116745,Ch8,EA088,?,EA088-NA,,,,,, +116746,Ch9,EA088,?,EA088-NA,,,,,, +116747,Ci1,EA088,?,EA088-NA,,,,,, +116748,Ci10,EA088,?,EA088-NA,,,,,, +116749,Ci11,EA088,Fabric,EA088-6,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p85, +116750,Ci12,EA088,?,EA088-NA,,,,,, +116751,Ci2,EA088,?,EA088-NA,,,,,, +116752,Ci3,EA088,?,EA088-NA,,,,,, +116753,Ci4,EA088,?,EA088-NA,,,,,, +116754,Ci5,EA088,?,EA088-NA,,,,,, +116755,Ci6,EA088,?,EA088-NA,,,,,, +116756,Ci7,EA088,?,EA088-NA,,,,,, +116757,Ci8,EA088,?,EA088-NA,,,,,, +116758,Ci9,EA088,?,EA088-NA,,,,,, +116759,Cj1,EA088,"Grass, leaves or thatch",EA088-8,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p85, +116760,Cj10,EA088,?,EA088-NA,,,,,, +116761,Cj2,EA088,?,EA088-NA,,,,,, +116762,Cj3,EA088,?,EA088-NA,,,,,, +116763,Cj4,EA088,?,EA088-NA,,,,,, +116764,Cj5,EA088,?,EA088-NA,,,,,, +116765,Cj6,EA088,?,EA088-NA,,,,,, +116766,Cj7,EA088,Tile or fired brick,EA088-11,,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p89, +116767,Cj8,EA088,?,EA088-NA,,,,,, +116768,Cj9,EA088,?,EA088-NA,,,,,, +116769,Ea1,EA088,?,EA088-NA,,,,,, +116770,Ea10,EA088,"Grass, leaves or thatch",EA088-8,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +116771,Ea11,EA088,?,EA088-NA,,,,,, +116772,Ea12,EA088,?,EA088-NA,,,,,, +116773,Ea13,EA088,"Plaster, clay or similar",EA088-2,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +116774,Ea2,EA088,?,EA088-NA,,,,,, +116775,Ea3,EA088,"Grass, leaves or thatch",EA088-8,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p89, +116776,Ea4,EA088,?,EA088-NA,,,,,, +116777,Ea5,EA088,?,EA088-NA,,,,,, +116778,Ea6,EA088,Fabric,EA088-6,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p89, +116779,Ea7,EA088,Fabric,EA088-6,,schurmann1962,,1950,EthnographicAtlas_1967_p89, +116780,Ea8,EA088,?,EA088-NA,,,,,, +116781,Ea9,EA088,?,EA088-NA,,,,,, +116782,Eb1,EA088,Earth or turf,EA088-9,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p89, +116783,Eb2,EA088,?,EA088-NA,,,,,, +116784,Eb3,EA088,?,EA088-NA,,,,,, +116785,Eb4,EA088,?,EA088-NA,,,,,, +116786,Eb5,EA088,Earth or turf,EA088-9,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol2_No1_Jan_1963, +116787,Eb6,EA088,Earth or turf,EA088-9,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +116788,Eb7,EA088,?,EA088-NA,,,,,, +116789,Eb8,EA088,?,EA088-NA,,,,,, +116790,Ec1,EA088,"Grass, leaves or thatch",EA088-8,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p89, +116791,Ec10,EA088,Earth or turf,EA088-9,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p89, +116792,Ec11,EA088,?,EA088-NA,,,,,, +116793,Ec2,EA088,Bark,EA088-4,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116794,Ec3,EA088,"Grass, leaves or thatch",EA088-8,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p89, +116795,Ec4,EA088,?,EA088-NA,,,,,, +116796,Ec5,EA088,"Wood, incl. bamboo",EA088-3,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p89, +116797,Ec6,EA088,"Wood, incl. bamboo",EA088-3,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p89, +116798,Ec7,EA088,?,EA088-NA,,,,,, +116799,Ec8,EA088,Bark,EA088-4,,shimkin1939,,1900,EthnographicAtlas_1967_p89, +116800,Ec9,EA088,?,EA088-NA,,,,,, +116801,Ed1,EA088,"Grass, leaves or thatch",EA088-8,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p89, +116802,Ed10,EA088,?,EA088-NA,,,,,, +116803,Ed13,EA088,?,EA088-NA,,,,,, +116804,Ed14,EA088,?,EA088-NA,,,,,, +116805,Ed15a,EA088,?,EA088-NA,,,,,, +116806,Ed15b,EA088,?,EA088-NA,,,,,, +116807,Ed16,EA088,?,EA088-NA,,,,,, +116808,Ed2,EA088,?,EA088-NA,,,,,, +116809,Ed3,EA088,?,EA088-NA,,,,,, +116810,Ed4,EA088,?,EA088-NA,,,,,, +116811,Ed5,EA088,"Grass, leaves or thatch",EA088-8,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116812,Ed6,EA088,?,EA088-NA,,,,,, +116813,Ed7,EA088,Tile or fired brick,EA088-11,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p89, +116814,Ed8,EA088,"Grass, leaves or thatch",EA088-8,,fitzgerald1941,,1930,EthnographicAtlas_1967_p89, +116815,Ed9,EA088,?,EA088-NA,,,,,, +116816,Ee1,EA088,?,EA088-NA,,,,,, +116817,Ee2,EA088,?,EA088-NA,,,,,, +116818,Ee3,EA088,"Grass, leaves or thatch",EA088-8,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p89, +116819,Ee4,EA088,?,EA088-NA,,,,,, +116820,Ee5,EA088,?,EA088-NA,,,,,, +116821,Ee6,EA088,?,EA088-NA,,,,,, +116822,Ee7,EA088,?,EA088-NA,,,,,, +116823,Ee8,EA088,?,EA088-NA,,,,,, +116824,Ef1,EA088,?,EA088-NA,,,,,, +116825,Ef10,EA088,?,EA088-NA,,,,,, +116826,Ef11,EA088,Tile or fired brick,EA088-11,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +116827,Ef2,EA088,"Grass, leaves or thatch",EA088-8,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +116828,Ef3,EA088,?,EA088-NA,,,,,, +116829,Ef4,EA088,Tile or fired brick,EA088-11,,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol2_No1_Jan_1963, +116830,Ef5,EA088,"Grass, leaves or thatch",EA088-8,,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p89, +116831,Ef6,EA088,?,EA088-NA,,,,,, +116832,Ef7,EA088,?,EA088-NA,,,,,, +116833,Ef8,EA088,?,EA088-NA,,,,,, +116834,Ef9,EA088,?,EA088-NA,,,,,, +116835,Eg1,EA088,"Grass, leaves or thatch",EA088-8,,furerhaimendorf1943b,with special reference to the forest group,1940,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116836,Eg10,EA088,Tile or fired brick,EA088-11,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p93, +116837,Eg11,EA088,?,EA088-NA,,,,,, +116838,Eg12,EA088,?,EA088-NA,,,,,, +116839,Eg13,EA088,?,EA088-NA,,,,,, +116840,Eg14,EA088,?,EA088-NA,,,,,, +116841,Eg2,EA088,?,EA088-NA,,,,,, +116842,Eg3,EA088,?,EA088-NA,,,,,, +116843,Eg4,EA088,?,EA088-NA,,,,,, +116844,Eg5,EA088,?,EA088-NA,,,,,, +116845,Eg6,EA088,"Grass, leaves or thatch",EA088-8,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p93, +116846,Eg7,EA088,?,EA088-NA,,,,,, +116847,Eg8,EA088,?,EA088-NA,,,,,, +116848,Eg9,EA088,?,EA088-NA,,,,,, +116849,Eh1,EA088,?,EA088-NA,,,,,, +116850,Eh10,EA088,?,EA088-NA,,,,,, +116851,Eh2,EA088,"Grass, leaves or thatch",EA088-8,,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p93, +116852,Eh3,EA088,?,EA088-NA,,,,,, +116853,Eh4,EA088,"Grass, leaves or thatch",EA088-8,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116854,Eh5,EA088,"Grass, leaves or thatch",EA088-8,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p93, +116855,Eh6,EA088,Tile or fired brick,EA088-11,,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p93, +116856,Eh7,EA088,"Grass, leaves or thatch",EA088-8,,decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p93, +116857,Eh8,EA088,?,EA088-NA,,,,,, +116858,Eh9,EA088,?,EA088-NA,,,,,, +116859,Ei1,EA088,?,EA088-NA,,,,,, +116860,Ei10,EA088,?,EA088-NA,,,,,, +116861,Ei11,EA088,?,EA088-NA,,,,,, +116862,Ei12,EA088,?,EA088-NA,,,,,, +116863,Ei13,EA088,?,EA088-NA,,,,,, +116864,Ei14,EA088,?,EA088-NA,,,,,, +116865,Ei15,EA088,?,EA088-NA,,,,,, +116866,Ei16,EA088,?,EA088-NA,,,,,, +116867,Ei17,EA088,?,EA088-NA,,,,,, +116868,Ei18,EA088,?,EA088-NA,,,,,, +116869,Ei19,EA088,?,EA088-NA,,,,,, +116870,Ei2,EA088,?,EA088-NA,,,,,, +116871,Ei20,EA088,?,EA088-NA,,,,,, +116872,Ei3,EA088,?,EA088-NA,,,,,, +116873,Ei4,EA088,?,EA088-NA,,,,,, +116874,Ei5,EA088,?,EA088-NA,,,,,, +116875,Ei6,EA088,?,EA088-NA,,,,,, +116876,Ei7,EA088,?,EA088-NA,,,,,, +116877,Ei8,EA088,?,EA088-NA,,,,,, +116878,Ei9,EA088,?,EA088-NA,,,,,, +116879,Ej1,EA088,?,EA088-NA,,,,,, +116880,Ej10,EA088,?,EA088-NA,,,,,, +116881,Ej11,EA088,?,EA088-NA,,,,,, +116882,Ej12,EA088,?,EA088-NA,,,,,, +116883,Ej13,EA088,?,EA088-NA,,,,,, +116884,Ej14,EA088,?,EA088-NA,,,,,, +116885,Ej15,EA088,?,EA088-NA,,,,,, +116886,Ej16,EA088,?,EA088-NA,,,,,, +116887,Ej2,EA088,?,EA088-NA,,,,,, +116888,Ej3,EA088,?,EA088-NA,,,,,, +116889,Ej4,EA088,Tile or fired brick,EA088-11,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p93, +116890,Ej5,EA088,?,EA088-NA,,,,,, +116891,Ej6,EA088,?,EA088-NA,,,,,, +116892,Ej7,EA088,?,EA088-NA,,,,,, +116893,Ej8,EA088,?,EA088-NA,,,,,, +116894,Ej9,EA088,"Grass, leaves or thatch",EA088-8,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +116895,Ia1,EA088,?,EA088-NA,,,,,, +116896,Ia10,EA088,?,EA088-NA,,,,,, +116897,Ia11,EA088,?,EA088-NA,,,,,, +116898,Ia12,EA088,?,EA088-NA,,,,,, +116899,Ia13,EA088,"Grass, leaves or thatch",EA088-8,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p97, +116900,Ia14,EA088,"Grass, leaves or thatch",EA088-8,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p97, +116901,Ia15,EA088,?,EA088-NA,,,,,, +116902,Ia16,EA088,?,EA088-NA,,,,,, +116903,Ia17,EA088,?,EA088-NA,,,,,, +116904,Ia18,EA088,?,EA088-NA,,,,,, +116905,Ia2,EA088,?,EA088-NA,,,,,, +116906,Ia3,EA088,?,EA088-NA,,,,,, +116907,Ia4,EA088,?,EA088-NA,,,,,, +116908,Ia5,EA088,?,EA088-NA,,,,,, +116909,Ia6,EA088,?,EA088-NA,,,,,, +116910,Ia7,EA088,?,EA088-NA,,,,,, +116911,Ia8,EA088,?,EA088-NA,,,,,, +116912,Ia9,EA088,?,EA088-NA,,,,,, +116913,Ib1,EA088,?,EA088-NA,,,,,, +116914,Ib2,EA088,?,EA088-NA,,,,,, +116915,Ib3,EA088,?,EA088-NA,,,,,, +116916,Ib4,EA088,?,EA088-NA,,,,,, +116917,Ib5,EA088,?,EA088-NA,,,,,, +116918,Ib6,EA088,?,EA088-NA,,,,,, +116919,Ib7,EA088,?,EA088-NA,,,,,, +116920,Ib8,EA088,?,EA088-NA,,,,,, +116921,Ib9,EA088,?,EA088-NA,,,,,, +116922,Ic1,EA088,?,EA088-NA,,,,,, +116923,Ic10,EA088,?,EA088-NA,,,,,, +116924,Ic11,EA088,"Grass, leaves or thatch",EA088-8,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116925,Ic12,EA088,"Grass, leaves or thatch",EA088-8,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +116926,Ic13,EA088,?,EA088-NA,,,,,, +116927,Ic2,EA088,?,EA088-NA,,,,,, +116928,Ic3,EA088,?,EA088-NA,,,,,, +116929,Ic4,EA088,?,EA088-NA,,,,,, +116930,Ic5,EA088,"Grass, leaves or thatch",EA088-8,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p97, +116931,Ic6,EA088,?,EA088-NA,,,,,, +116932,Ic7,EA088,?,EA088-NA,,,,,, +116933,Ic8,EA088,?,EA088-NA,,,,,, +116934,Ic9,EA088,?,EA088-NA,,,,,, +116935,Id1,EA088,?,EA088-NA,,,,,, +116936,Id10,EA088,"Grass, leaves or thatch",EA088-8,,meggitt1962a,,1930,Ethnology_Vol6_No4_Oct_1967, +116937,Id11,EA088,?,EA088-NA,,,,,, +116938,Id12,EA088,?,EA088-NA,,,,,, +116939,Id13,EA088,?,EA088-NA,,,,,, +116940,Id2,EA088,Bark,EA088-4,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p97, +116941,Id3,EA088,?,EA088-NA,,,,,, +116942,Id4,EA088,?,EA088-NA,,,,,, +116943,Id5,EA088,?,EA088-NA,,,,,, +116944,Id6,EA088,?,EA088-NA,,,,,, +116945,Id7,EA088,?,EA088-NA,,,,,, +116946,Id8,EA088,"Grass, leaves or thatch",EA088-8,,roth1890,,1830,EthnographicAtlas_1967_p97, +116947,Id9,EA088,?,EA088-NA,,,,,, +116948,Ie1,EA088,?,EA088-NA,,,,,, +116949,Ie10,EA088,?,EA088-NA,,,,,, +116950,Ie11,EA088,?,EA088-NA,,,,,, +116951,Ie12,EA088,?,EA088-NA,,,,,, +116952,Ie13,EA088,?,EA088-NA,,,,,, +116953,Ie14,EA088,?,EA088-NA,,,,,, +116954,Ie15,EA088,?,EA088-NA,,,,,, +116955,Ie16,EA088,"Grass, leaves or thatch",EA088-8,,williams194041,,1940,EthnographicAtlas_1967_p97, +116956,Ie17,EA088,?,EA088-NA,,,,,, +116957,Ie18,EA088,"Grass, leaves or thatch",EA088-8,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p97, +116958,Ie19,EA088,?,EA088-NA,,,,,, +116959,Ie2,EA088,?,EA088-NA,,,,,, +116960,Ie20,EA088,?,EA088-NA,,,,,, +116961,Ie21,EA088,?,EA088-NA,,,,,, +116962,Ie22,EA088,?,EA088-NA,,,,,, +116963,Ie23,EA088,?,EA088-NA,,,,,, +116964,Ie24,EA088,?,EA088-NA,,,,,, +116965,Ie25,EA088,?,EA088-NA,,,,,, +116966,Ie26,EA088,?,EA088-NA,,,,,, +116967,Ie27,EA088,?,EA088-NA,,,,,, +116968,Ie28,EA088,?,EA088-NA,,,,,, +116969,Ie29,EA088,?,EA088-NA,,,,,, +116970,Ie3,EA088,?,EA088-NA,,,,,, +116971,Ie30,EA088,?,EA088-NA,,,,,, +116972,Ie31,EA088,?,EA088-NA,,,,,, +116973,Ie32,EA088,?,EA088-NA,,,,,, +116974,Ie33,EA088,?,EA088-NA,,,,,, +116975,Ie34,EA088,?,EA088-NA,,,,,, +116976,Ie35,EA088,?,EA088-NA,,,,,, +116977,Ie36,EA088,?,EA088-NA,,,,,, +116978,Ie37,EA088,?,EA088-NA,,,,,, +116979,Ie38,EA088,"Grass, leaves or thatch",EA088-8,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +116980,Ie39,EA088,"Grass, leaves or thatch",EA088-8,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +116981,Ie4,EA088,?,EA088-NA,,,,,, +116982,Ie5,EA088,Bark,EA088-4,,williams1936,,1930,EthnographicAtlas_1967_p97, +116983,Ie6,EA088,?,EA088-NA,,,,,, +116984,Ie7,EA088,?,EA088-NA,,,,,, +116985,Ie8,EA088,?,EA088-NA,,,,,, +116986,Ie9,EA088,?,EA088-NA,,,,,, +116987,If1,EA088,"Grass, leaves or thatch",EA088-8,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +116988,If10,EA088,?,EA088-NA,,,,,, +116989,If11,EA088,?,EA088-NA,,,,,, +116990,If12,EA088,?,EA088-NA,,,,,, +116991,If13,EA088,?,EA088-NA,,,,,, +116992,If14,EA088,"Grass, leaves or thatch",EA088-8,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p101, +116993,If15,EA088,"Grass, leaves or thatch",EA088-8,,josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p101, +116994,If16,EA088,?,EA088-NA,,,,,, +116995,If17,EA088,?,EA088-NA,,,,,, +116996,If2,EA088,?,EA088-NA,,,,,, +116997,If3,EA088,?,EA088-NA,,,,,, +116998,If4,EA088,"Grass, leaves or thatch",EA088-8,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p101, +116999,If5,EA088,?,EA088-NA,,,,,, +117000,If6,EA088,?,EA088-NA,,,,,, +117001,If7,EA088,?,EA088-NA,,,,,, +117002,If8,EA088,?,EA088-NA,,,,,, +117003,If9,EA088,?,EA088-NA,,,,,, +117004,Ig1,EA088,"Grass, leaves or thatch",EA088-8,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p101, +117005,Ig10,EA088,?,EA088-NA,,,,,, +117006,Ig11,EA088,"Grass, leaves or thatch",EA088-8,,armstrong1928,,1920,EthnographicAtlas_1967_p101, +117007,Ig12,EA088,?,EA088-NA,,,,,, +117008,Ig13,EA088,?,EA088-NA,,,,,, +117009,Ig14,EA088,?,EA088-NA,,,,,, +117010,Ig15,EA088,?,EA088-NA,,,,,, +117011,Ig16,EA088,?,EA088-NA,,,,,, +117012,Ig17,EA088,?,EA088-NA,,,,,, +117013,Ig18,EA088,?,EA088-NA,,,,,, +117014,Ig19,EA088,?,EA088-NA,,,,,, +117015,Ig2,EA088,?,EA088-NA,,,,,, +117016,Ig20,EA088,?,EA088-NA,,,,,, +117017,Ig21,EA088,?,EA088-NA,,,,,, +117018,Ig3,EA088,"Grass, leaves or thatch",EA088-8,,blackwood1935,,1930,EthnographicAtlas_1967_p101, +117019,Ig4,EA088,?,EA088-NA,,,,,, +117020,Ig5,EA088,?,EA088-NA,,,,,, +117021,Ig6,EA088,?,EA088-NA,,,,,, +117022,Ig7,EA088,?,EA088-NA,,,,,, +117023,Ig8,EA088,?,EA088-NA,,,,,, +117024,Ig9,EA088,?,EA088-NA,,,,,, +117025,Ih1,EA088,?,EA088-NA,,,,,, +117026,Ih10,EA088,?,EA088-NA,,,,,, +117027,Ih11,EA088,?,EA088-NA,,,,,, +117028,Ih12,EA088,?,EA088-NA,,,,,, +117029,Ih13,EA088,?,EA088-NA,,,,,, +117030,Ih14,EA088,?,EA088-NA,,,,,, +117031,Ih2,EA088,?,EA088-NA,,,,,, +117032,Ih3,EA088,"Grass, leaves or thatch",EA088-8,,lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p101, +117033,Ih4,EA088,?,EA088-NA,,,,,, +117034,Ih5,EA088,"Grass, leaves or thatch",EA088-8,,barrau1956;guiart1956b;guiart1963;leenhardt1930;leenhardt1937,Neje Chiefdom,1860,EthnographicAtlas_1967_p101, +117035,Ih6,EA088,?,EA088-NA,,,,,, +117036,Ih7,EA088,?,EA088-NA,,,,,, +117037,Ih8,EA088,?,EA088-NA,,,,,, +117038,Ih9,EA088,?,EA088-NA,,,,,, +117039,Ii1,EA088,?,EA088-NA,,,,,, +117040,Ii10,EA088,?,EA088-NA,,,,,, +117041,Ii12,EA088,?,EA088-NA,,,,,, +117042,Ii13,EA088,?,EA088-NA,,,,,, +117043,Ii14,EA088,?,EA088-NA,,,,,, +117044,Ii2,EA088,?,EA088-NA,,,,,, +117045,Ii3,EA088,?,EA088-NA,,,,,, +117046,Ii4,EA088,?,EA088-NA,,,,,, +117047,Ii5,EA088,?,EA088-NA,,,,,, +117048,Ii6,EA088,?,EA088-NA,,,,,, +117049,Ii7,EA088,?,EA088-NA,,,,,, +117050,Ii8,EA088,?,EA088-NA,,,,,, +117051,Ii9,EA088,?,EA088-NA,,,,,, +117052,Ij1,EA088,?,EA088-NA,,,,,, +117053,Ij10,EA088,?,EA088-NA,,,,,, +117054,Ij2,EA088,?,EA088-NA,,,,,, +117055,Ij3,EA088,?,EA088-NA,,,,,, +117056,Ij4,EA088,?,EA088-NA,,,,,, +117057,Ij5,EA088,?,EA088-NA,,,,,, +117058,Ij6,EA088,"Grass, leaves or thatch",EA088-8,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p105, +117059,Ij7,EA088,?,EA088-NA,,,,,, +117060,Ij8,EA088,?,EA088-NA,,,,,, +117061,Ij9,EA088,Earth or turf,EA088-9,,metraux1940,,1860,EthnographicAtlas_1967_p105, +117062,Na1,EA088,Bark,EA088-4,,mckennan1959,,1930,EthnographicAtlas_1967_p105, +117063,Na10,EA088,"Wood, incl. bamboo",EA088-3,,birketsmith1953,,1930,EthnographicAtlas_1967_p105, +117064,Na11,EA088,Hides or skins,EA088-5,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p105, +117065,Na12,EA088,Earth or turf,EA088-9,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p105, +117066,Na13,EA088,Hides or skins,EA088-5,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p105, +117067,Na14,EA088,Hides or skins,EA088-5,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p105, +117068,Na15,EA088,"Wood, incl. bamboo",EA088-3,,helmandlurie1961,,1860,EthnographicAtlas_1967_p105, +117069,Na16,EA088,Earth or turf,EA088-9,,osgood1931,,1860,EthnographicAtlas_1967_p105, +117070,Na17,EA088,"Wood, incl. bamboo",EA088-3,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117071,Na19,EA088,Mats,EA088-7,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p105, +117072,Na2,EA088,Hides or skins,EA088-5,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p105, +117073,Na20,EA088,Earth or turf,EA088-9,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p105, +117074,Na21,EA088,Hides or skins,EA088-5,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p105, +117075,Na22,EA088,Hides or skins,EA088-5,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p105, +117076,Na23,EA088,Hides or skins,EA088-5,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p105, +117077,Na24,EA088,Hides or skins,EA088-5,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p105, +117078,Na25,EA088,Hides or skins,EA088-5,,birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +117079,Na26,EA088,?,EA088-NA,,,,,, +117080,Na27,EA088,?,EA088-NA,,,,,, +117081,Na28,EA088,?,EA088-NA,,,,,, +117082,Na29,EA088,?,EA088-NA,,,,,, +117083,Na3,EA088,Hides or skins,EA088-5,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p105, +117084,Na30,EA088,?,EA088-NA,,,,,, +117085,Na31,EA088,Bark,EA088-4,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p105, +117086,Na32,EA088,Hides or skins,EA088-5,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p105, +117087,Na33,EA088,?,EA088-NA,,,,,, +117088,Na34,EA088,Bark,EA088-4,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p105, +117089,Na35,EA088,Bark,EA088-4,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p105, +117090,Na36,EA088,Bark,EA088-4,"Also a conical bark tipi, also with walls/roof of 'bark' (code ""4"")",barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p105, +117091,Na37,EA088,?,EA088-NA,,,,,, +117092,Na38,EA088,Bark,EA088-4,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p105, +117093,Na39,EA088,Bark,EA088-4,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p105, +117094,Na4,EA088,"Grass, leaves or thatch",EA088-8,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p105, +117095,Na40,EA088,Mats,EA088-7,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1965, +117096,Na41,EA088,?,EA088-NA,,,,,, +117097,Na42,EA088,?,EA088-NA,,,,,, +117098,Na43,EA088,Hides or skins,EA088-5,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +117099,Na44,EA088,?,EA088-NA,,,,,, +117100,Na45,EA088,?,EA088-NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +117101,Na5,EA088,?,EA088-NA,,,,,, +117102,Na6,EA088,?,EA088-NA,,,,,, +117103,Na7,EA088,Bark,EA088-4,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p105, +117104,Na8,EA088,Bark,EA088-4,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p105, +117105,Na9,EA088,?,EA088-NA,,,,,, +117106,Nb1,EA088,?,EA088-NA,,,,,, +117107,Nb10,EA088,Earth or turf,EA088-9,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p109, +117108,Nb11,EA088,?,EA088-NA,,,,,, +117109,Nb12,EA088,Earth or turf,EA088-9,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +117110,Nb13,EA088,?,EA088-NA,,,,,, +117111,Nb14,EA088,?,EA088-NA,,,,,, +117112,Nb15,EA088,Mats,EA088-7,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p109, +117113,Nb16,EA088,Mats,EA088-7,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p109, +117114,Nb17,EA088,"Wood, incl. bamboo",EA088-3,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p109, +117115,Nb18,EA088,?,EA088-NA,,,,,, +117116,Nb19,EA088,?,EA088-NA,,,,,, +117117,Nb2,EA088,Mats,EA088-7,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p105, +117118,Nb20,EA088,?,EA088-NA,,,,,, +117119,Nb21,EA088,"Grass, leaves or thatch",EA088-8,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p109, +117120,Nb22,EA088,Bark,EA088-4,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p109, +117121,Nb23,EA088,Bark,EA088-4,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p109, +117122,Nb24,EA088,?,EA088-NA,,,,,, +117123,Nb25,EA088,Bark,EA088-4,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p109, +117124,Nb26,EA088,?,EA088-NA,,,,,, +117125,Nb27,EA088,"Wood, incl. bamboo",EA088-3,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p109, +117126,Nb28,EA088,"Grass, leaves or thatch",EA088-8,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p109, +117127,Nb29,EA088,?,EA088-NA,,,,,, +117128,Nb3,EA088,?,EA088-NA,,,,,, +117129,Nb30,EA088,?,EA088-NA,,,,,, +117130,Nb31,EA088,?,EA088-NA,,,,,, +117131,Nb32,EA088,?,EA088-NA,,,,,, +117132,Nb33,EA088,?,EA088-NA,,,,,, +117133,Nb34,EA088,?,EA088-NA,,,,,, +117134,Nb35,EA088,?,EA088-NA,,,,,, +117135,Nb36,EA088,?,EA088-NA,,,,,, +117136,Nb37,EA088,?,EA088-NA,,,,,, +117137,Nb38,EA088,?,EA088-NA,,,,,, +117138,Nb39,EA088,?,EA088-NA,,,,,, +117139,Nb4,EA088,?,EA088-NA,,,,,, +117140,Nb5,EA088,?,EA088-NA,,,,,, +117141,Nb6,EA088,?,EA088-NA,,,,,, +117142,Nb7,EA088,?,EA088-NA,,,,,, +117143,Nb8,EA088,?,EA088-NA,,,,,, +117144,Nb9,EA088,?,EA088-NA,,,,,, +117145,Nc1,EA088,"Grass, leaves or thatch",EA088-8,,goldschmidt1951,,1850,EthnographicAtlas_1967_p109, +117146,Nc10,EA088,Mats,EA088-7,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p109, +117147,Nc11,EA088,Earth or turf,EA088-9,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p109, +117148,Nc12,EA088,Bark,EA088-4,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p109, +117149,Nc13,EA088,Bark,EA088-4,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p109, +117150,Nc14,EA088,Bark,EA088-4,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p109, +117151,Nc15,EA088,"Grass, leaves or thatch",EA088-8,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p109, +117152,Nc16,EA088,?,EA088-NA,,,,,, +117153,Nc17,EA088,?,EA088-NA,,,,,, +117154,Nc18,EA088,?,EA088-NA,,,,,, +117155,Nc19,EA088,?,EA088-NA,,,,,, +117156,Nc2,EA088,"Grass, leaves or thatch",EA088-8,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p109, +117157,Nc20,EA088,?,EA088-NA,,,,,, +117158,Nc21,EA088,?,EA088-NA,,,,,, +117159,Nc22,EA088,"Grass, leaves or thatch",EA088-8,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p109, +117160,Nc23,EA088,Bark,EA088-4,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p109, +117161,Nc24,EA088,?,EA088-NA,,,,,, +117162,Nc25,EA088,Bark,EA088-4,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p109, +117163,Nc26,EA088,"Grass, leaves or thatch",EA088-8,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +117164,Nc27,EA088,?,EA088-NA,,,,,, +117165,Nc28,EA088,?,EA088-NA,,,,,, +117166,Nc29,EA088,?,EA088-NA,,,,,, +117167,Nc3,EA088,Earth or turf,EA088-9,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p109, +117168,Nc30,EA088,?,EA088-NA,,,,,, +117169,Nc31,EA088,?,EA088-NA,,,,,, +117170,Nc32,EA088,?,EA088-NA,,,,,, +117171,Nc33,EA088,"Grass, leaves or thatch",EA088-8,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p109, +117172,Nc34,EA088,?,EA088-NA,,,,,, +117173,Nc4,EA088,Earth or turf,EA088-9,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p109, +117174,Nc5,EA088,?,EA088-NA,,,,,, +117175,Nc6,EA088,?,EA088-NA,,,,,, +117176,Nc7,EA088,"Grass, leaves or thatch",EA088-8,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p109, +117177,Nc8,EA088,Mats,EA088-7,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p109, +117178,Nc9,EA088,Mats,EA088-7,,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p109, +117179,Nd1,EA088,Mats,EA088-7,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p109, +117180,Nd10,EA088,Mats,EA088-7,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p113, +117181,Nd11,EA088,"Wood, incl. bamboo",EA088-3,"Also rectangular subterranean houses where walls are indistinguishable from gabled roof, made of mats/latticework (code ""7"")",ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p113, +117182,Nd12,EA088,Hides or skins,EA088-5,,ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p113, +117183,Nd13,EA088,Mats,EA088-7,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +117184,Nd14,EA088,Mats,EA088-7,"Also eliptical-shaped houses with ground-level floors and gabled roofs/walls made of hides (code ""5"") AND circular houses with conical roofs/walls made of grass/thatch (code ""8"") or bark (code ""4"").",ray1942;teit1930,,1860,EthnographicAtlas_1967_p113, +117185,Nd15,EA088,Mats,EA088-7,,clineetal1938,,1880,EthnographicAtlas_1967_p113, +117186,Nd16,EA088,Mats,EA088-7,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +117187,Nd17,EA088,Mats,EA088-7,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +117188,Nd18,EA088,Mats,EA088-7,,spierandsapir1930,,1860,EthnographicAtlas_1967_p113, +117189,Nd19,EA088,?,EA088-NA,,,,,, +117190,Nd2,EA088,"Grass, leaves or thatch",EA088-8,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p109, +117191,Nd20,EA088,Hides or skins,EA088-5,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p113, +117192,Nd21,EA088,?,EA088-NA,,,,,, +117193,Nd22,EA088,"Grass, leaves or thatch",EA088-8,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p113, +117194,Nd23,EA088,?,EA088-NA,,,,,, +117195,Nd24,EA088,?,EA088-NA,,,,,, +117196,Nd25,EA088,?,EA088-NA,,,,,, +117197,Nd26,EA088,"Grass, leaves or thatch",EA088-8,,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +117198,Nd27,EA088,?,EA088-NA,,,,,, +117199,Nd28,EA088,Bark,EA088-4,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +117200,Nd29,EA088,"Grass, leaves or thatch",EA088-8,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +117201,Nd3,EA088,?,EA088-NA,,,,,, +117202,Nd30,EA088,Mats,EA088-7,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p113, +117203,Nd31,EA088,?,EA088-NA,,,,,, +117204,Nd32,EA088,"Grass, leaves or thatch",EA088-8,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p113, +117205,Nd33,EA088,"Grass, leaves or thatch",EA088-8,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +117206,Nd34,EA088,"Grass, leaves or thatch",EA088-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +117207,Nd35,EA088,?,EA088-NA,,,,,, +117208,Nd36,EA088,"Grass, leaves or thatch",EA088-8,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +117209,Nd37,EA088,?,EA088-NA,,,,,, +117210,Nd38,EA088,Bark,EA088-4,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +117211,Nd39,EA088,?,EA088-NA,,,,,, +117212,Nd4,EA088,Mats,EA088-7,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p113, +117213,Nd40,EA088,?,EA088-NA,,,,,, +117214,Nd41,EA088,Mats,EA088-7,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +117215,Nd42,EA088,?,EA088-NA,,,,,, +117216,Nd43,EA088,"Grass, leaves or thatch",EA088-8,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p113, +117217,Nd44,EA088,"Grass, leaves or thatch",EA088-8,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +117218,Nd45,EA088,"Grass, leaves or thatch",EA088-8,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +117219,Nd46,EA088,Mats,EA088-7,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p113, +117220,Nd47,EA088,?,EA088-NA,,,,,, +117221,Nd48,EA088,?,EA088-NA,,,,,, +117222,Nd49,EA088,?,EA088-NA,,,,,, +117223,Nd5,EA088,"Grass, leaves or thatch",EA088-8,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p113, +117224,Nd50,EA088,?,EA088-NA,,,,,, +117225,Nd51,EA088,?,EA088-NA,,,,,, +117226,Nd52,EA088,?,EA088-NA,,,,,, +117227,Nd53,EA088,?,EA088-NA,,,,,, +117228,Nd54,EA088,?,EA088-NA,,,,,, +117229,Nd55,EA088,?,EA088-NA,,,,,, +117230,Nd56,EA088,Bark,EA088-4,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p113, +117231,Nd57,EA088,?,EA088-NA,,,,,, +117232,Nd58,EA088,"Grass, leaves or thatch",EA088-8,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +117233,Nd59,EA088,Hides or skins,EA088-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +117234,Nd6,EA088,"Grass, leaves or thatch",EA088-8,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p113, +117235,Nd60,EA088,?,EA088-NA,,,,,, +117236,Nd61,EA088,Hides or skins,EA088-5,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +117237,Nd62,EA088,"Grass, leaves or thatch",EA088-8,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p113, +117238,Nd63,EA088,"Grass, leaves or thatch",EA088-8,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p113, +117239,Nd64,EA088,Hides or skins,EA088-5,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p113, +117240,Nd65,EA088,?,EA088-NA,,,,,, +117241,Nd66,EA088,?,EA088-NA,,,,,, +117242,Nd67,EA088,Earth or turf,EA088-9,,gifford1936,,1870,EthnographicAtlas_1967_p113, +117243,Nd7,EA088,Mats,EA088-7,,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p113, +117244,Nd8,EA088,"Wood, incl. bamboo",EA088-3,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p113, +117245,Nd9,EA088,Mats,EA088-7,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p113, +117246,Ne1,EA088,?,EA088-NA,,,,,, +117247,Ne10,EA088,Hides or skins,EA088-5,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p113, +117248,Ne11,EA088,?,EA088-NA,,,,,, +117249,Ne12,EA088,?,EA088-NA,,,,,, +117250,Ne13,EA088,?,EA088-NA,,,,,, +117251,Ne14,EA088,Bark,EA088-4,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p113, +117252,Ne15,EA088,Hides or skins,EA088-5,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p113, +117253,Ne16,EA088,?,EA088-NA,,,,,, +117254,Ne17,EA088,?,EA088-NA,,,,,, +117255,Ne18,EA088,?,EA088-NA,,,,,, +117256,Ne19,EA088,?,EA088-NA,,,,,, +117257,Ne2,EA088,?,EA088-NA,,,,,, +117258,Ne20,EA088,?,EA088-NA,,,,,, +117259,Ne21,EA088,?,EA088-NA,,,,,, +117260,Ne3,EA088,?,EA088-NA,,,,,, +117261,Ne4,EA088,?,EA088-NA,,,,,, +117262,Ne5,EA088,?,EA088-NA,,,,,, +117263,Ne6,EA088,Hides or skins,EA088-5,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p113, +117264,Ne7,EA088,?,EA088-NA,,,,,, +117265,Ne8,EA088,?,EA088-NA,,,,,, +117266,Ne9,EA088,?,EA088-NA,,,,,, +117267,Nf10,EA088,Hides or skins,EA088-5,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p117, +117268,Nf11,EA088,Hides or skins,EA088-5,,whitman1937,,1870,EthnographicAtlas_1967_p117, +117269,Nf12,EA088,Hides or skins,EA088-5,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p117, +117270,Nf13,EA088,?,EA088-NA,,,,,, +117271,Nf14,EA088,?,EA088-NA,,,,,, +117272,Nf15,EA088,?,EA088-NA,,,,,, +117273,Nf2,EA088,Mats,EA088-7,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p117, +117274,Nf3,EA088,Hides or skins,EA088-5,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p117, +117275,Nf4,EA088,?,EA088-NA,,,,,, +117276,Nf5,EA088,?,EA088-NA,,,,,, +117277,Nf6,EA088,Hides or skins,EA088-5,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p117, +117278,Nf7,EA088,Mats,EA088-7,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117279,Nf8,EA088,?,EA088-NA,,,,,, +117280,Nf9,EA088,?,EA088-NA,,,,,, +117281,Ng1,EA088,?,EA088-NA,,,,,, +117282,Ng10,EA088,?,EA088-NA,,,,,, +117283,Ng11,EA088,?,EA088-NA,,,,,, +117284,Ng12,EA088,"Grass, leaves or thatch",EA088-8,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p117, +117285,Ng13,EA088,?,EA088-NA,,,,,, +117286,Ng14,EA088,?,EA088-NA,,,,,, +117287,Ng15,EA088,?,EA088-NA,,,,,, +117288,Ng2,EA088,?,EA088-NA,,,,,, +117289,Ng3,EA088,"Grass, leaves or thatch",EA088-8,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p117, +117290,Ng4,EA088,?,EA088-NA,,,,,, +117291,Ng5,EA088,Earth or turf,EA088-9,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p117, +117292,Ng6,EA088,Bark,EA088-4,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p117, +117293,Ng7,EA088,?,EA088-NA,,,,,, +117294,Ng8,EA088,"Grass, leaves or thatch",EA088-8,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p117, +117295,Ng9,EA088,?,EA088-NA,,,,,, +117296,Nh1,EA088,?,EA088-NA,,,,,, +117297,Nh10,EA088,?,EA088-NA,,,,,, +117298,Nh11,EA088,?,EA088-NA,,,,,, +117299,Nh12,EA088,?,EA088-NA,,,,,, +117300,Nh13,EA088,?,EA088-NA,,,,,, +117301,Nh14,EA088,?,EA088-NA,,,,,, +117302,Nh15,EA088,?,EA088-NA,,,,,, +117303,Nh16,EA088,Hides or skins,EA088-5,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117304,Nh17,EA088,?,EA088-NA,,,,,, +117305,Nh18,EA088,?,EA088-NA,,,,,, +117306,Nh19,EA088,"Grass, leaves or thatch",EA088-8,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p117, +117307,Nh2,EA088,?,EA088-NA,,,,,, +117308,Nh20,EA088,?,EA088-NA,,,,,, +117309,Nh21,EA088,?,EA088-NA,,,,,, +117310,Nh22,EA088,"Grass, leaves or thatch",EA088-8,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p117, +117311,Nh23,EA088,?,EA088-NA,,,,,, +117312,Nh24,EA088,?,EA088-NA,,,,,, +117313,Nh25,EA088,?,EA088-NA,,,,,, +117314,Nh26,EA088,?,EA088-NA,,,,,, +117315,Nh27,EA088,?,EA088-NA,,,,,, +117316,Nh3,EA088,?,EA088-NA,,,,,, +117317,Nh4,EA088,?,EA088-NA,,,,,, +117318,Nh5,EA088,Earth or turf,EA088-9,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p117, +117319,Nh6,EA088,?,EA088-NA,,,,,, +117320,Nh7,EA088,?,EA088-NA,,,,,, +117321,Nh8,EA088,?,EA088-NA,,,,,, +117322,Nh9,EA088,?,EA088-NA,,,,,, +117323,Ni1,EA088,?,EA088-NA,,,,,, +117324,Ni2,EA088,Earth or turf,EA088-9,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p117, +117325,Ni3,EA088,?,EA088-NA,,,,,, +117326,Ni4,EA088,?,EA088-NA,,,,,, +117327,Ni5,EA088,?,EA088-NA,,,,,, +117328,Ni6,EA088,?,EA088-NA,,,,,, +117329,Ni7,EA088,?,EA088-NA,,,,,, +117330,Ni8,EA088,?,EA088-NA,,,,,, +117331,Ni9,EA088,?,EA088-NA,,,,,, +117332,Nj1,EA088,?,EA088-NA,,,,,, +117333,Nj10,EA088,?,EA088-NA,,,,,, +117334,Nj11,EA088,?,EA088-NA,,,,,, +117335,Nj12,EA088,?,EA088-NA,,,,,, +117336,Nj13,EA088,?,EA088-NA,,,,,, +117337,Nj14,EA088,?,EA088-NA,,,,,, +117338,Nj2,EA088,?,EA088-NA,,,,,, +117339,Nj3,EA088,?,EA088-NA,,,,,, +117340,Nj4,EA088,?,EA088-NA,,,,,, +117341,Nj5,EA088,?,EA088-NA,,,,,, +117342,Nj6,EA088,?,EA088-NA,,,,,, +117343,Nj7,EA088,?,EA088-NA,,,,,, +117344,Nj8,EA088,"Grass, leaves or thatch",EA088-8,,foster1948,,1500,EthnographicAtlas_1967_p121, +117345,Nj9,EA088,?,EA088-NA,,,,,, +117346,Sa1,EA088,?,EA088-NA,,,,,, +117347,Sa10,EA088,?,EA088-NA,,,,,, +117348,Sa11,EA088,?,EA088-NA,,,,,, +117349,Sa12,EA088,?,EA088-NA,,,,,, +117350,Sa13,EA088,?,EA088-NA,,,,,, +117351,Sa14,EA088,?,EA088-NA,,,,,, +117352,Sa15,EA088,?,EA088-NA,,,,,, +117353,Sa16,EA088,?,EA088-NA,,,,,, +117354,Sa17,EA088,?,EA088-NA,,,,,, +117355,Sa2,EA088,?,EA088-NA,,,,,, +117356,Sa3,EA088,?,EA088-NA,,,,,, +117357,Sa4,EA088,?,EA088-NA,,,,,, +117358,Sa5,EA088,"Grass, leaves or thatch",EA088-8,,gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,EthnographicAtlas_1967_p121, +117359,Sa6,EA088,?,EA088-NA,,,,,, +117360,Sa7,EA088,?,EA088-NA,,,,,, +117361,Sa8,EA088,Tile or fired brick,EA088-11,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p121, +117362,Sa9,EA088,"Grass, leaves or thatch",EA088-8,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p121, +117363,Sb1,EA088,?,EA088-NA,,,,,, +117364,Sb2,EA088,"Grass, leaves or thatch",EA088-8,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p121, +117365,Sb3,EA088,?,EA088-NA,,,,,, +117366,Sb4,EA088,?,EA088-NA,,,,,, +117367,Sb5,EA088,?,EA088-NA,,,,,, +117368,Sb6,EA088,?,EA088-NA,,,,,, +117369,Sb7,EA088,?,EA088-NA,,,,,, +117370,Sb8,EA088,"Grass, leaves or thatch",EA088-8,,rouse1948a,,1520,EthnographicAtlas_1967_p121, +117371,Sb9,EA088,?,EA088-NA,,,,,, +117372,Sc1,EA088,?,EA088-NA,,,,,, +117373,Sc10,EA088,?,EA088-NA,,,,,, +117374,Sc11,EA088,?,EA088-NA,,,,,, +117375,Sc12,EA088,?,EA088-NA,,,,,, +117376,Sc13,EA088,?,EA088-NA,,,,,, +117377,Sc14,EA088,?,EA088-NA,,,,,, +117378,Sc15,EA088,?,EA088-NA,,,,,, +117379,Sc16,EA088,?,EA088-NA,,,,,, +117380,Sc17,EA088,?,EA088-NA,,,,,, +117381,Sc18,EA088,?,EA088-NA,,,,,, +117382,Sc2,EA088,?,EA088-NA,,,,,, +117383,Sc3,EA088,?,EA088-NA,,,,,, +117384,Sc4,EA088,?,EA088-NA,,,,,, +117385,Sc5,EA088,"Grass, leaves or thatch",EA088-8,,farabee1918,,1900,EthnographicAtlas_1967_p121, +117386,Sc6,EA088,?,EA088-NA,,,,,, +117387,Sc7,EA088,?,EA088-NA,,,,,, +117388,Sc8,EA088,"Grass, leaves or thatch",EA088-8,,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p121, +117389,Sc9,EA088,?,EA088-NA,,,,,, +117390,Sd1,EA088,"Grass, leaves or thatch",EA088-8,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117391,Sd2,EA088,?,EA088-NA,,,,,, +117392,Sd3,EA088,?,EA088-NA,,,,,, +117393,Sd4,EA088,?,EA088-NA,,,,,, +117394,Sd5,EA088,?,EA088-NA,,,,,, +117395,Sd6,EA088,?,EA088-NA,,,,,, +117396,Sd7,EA088,"Grass, leaves or thatch",EA088-8,,fock1963,,1950,EthnographicAtlas_1967_p121, +117397,Sd8,EA088,?,EA088-NA,,,,,, +117398,Sd9,EA088,?,EA088-NA,,,,,, +117399,Se1,EA088,"Grass, leaves or thatch",EA088-8,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p121, +117400,Se10,EA088,?,EA088-NA,,,,,, +117401,Se11,EA088,?,EA088-NA,,,,,, +117402,Se12,EA088,?,EA088-NA,,,,,, +117403,Se2,EA088,"Grass, leaves or thatch",EA088-8,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p121, +117404,Se3,EA088,?,EA088-NA,,,,,, +117405,Se4,EA088,?,EA088-NA,,,,,, +117406,Se5,EA088,"Grass, leaves or thatch",EA088-8,,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p121, +117407,Se6,EA088,?,EA088-NA,,,,,, +117408,Se7,EA088,?,EA088-NA,,,,,, +117409,Se8,EA088,"Grass, leaves or thatch",EA088-8,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p121, +117410,Se9,EA088,?,EA088-NA,,,,,, +117411,Sf1,EA088,"Grass, leaves or thatch",EA088-8,,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p125, +117412,Sf2,EA088,?,EA088-NA,,,,,, +117413,Sf3,EA088,?,EA088-NA,,,,,, +117414,Sf4,EA088,"Grass, leaves or thatch",EA088-8,,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p125, +117415,Sf5,EA088,"Grass, leaves or thatch",EA088-8,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p125, +117416,Sf6,EA088,"Grass, leaves or thatch",EA088-8,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p125, +117417,Sf7,EA088,"Grass, leaves or thatch",EA088-8,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p125, +117418,Sf8,EA088,?,EA088-NA,,,,,, +117419,Sf9,EA088,?,EA088-NA,,,,,, +117420,Sg1,EA088,"Grass, leaves or thatch",EA088-8,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p125, +117421,Sg2,EA088,"Grass, leaves or thatch",EA088-8,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117422,Sg3,EA088,"Grass, leaves or thatch",EA088-8,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p125, +117423,Sg4,EA088,?,EA088-NA,,,,,, +117424,Sg5,EA088,?,EA088-NA,,,,,, +117425,Sh1,EA088,?,EA088-NA,,,,,, +117426,Sh2,EA088,?,EA088-NA,,,,,, +117427,Sh3,EA088,?,EA088-NA,,,,,, +117428,Sh4,EA088,?,EA088-NA,,,,,, +117429,Sh5,EA088,?,EA088-NA,,,,,, +117430,Sh6,EA088,?,EA088-NA,,,,,, +117431,Sh7,EA088,?,EA088-NA,,,,,, +117432,Sh8,EA088,"Grass, leaves or thatch",EA088-8,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p125, +117433,Sh9,EA088,?,EA088-NA,,,,,, +117434,Si1,EA088,"Grass, leaves or thatch",EA088-8,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117435,Si10,EA088,?,EA088-NA,,,,,, +117436,Si2,EA088,?,EA088-NA,,,,,, +117437,Si3,EA088,?,EA088-NA,,,,,, +117438,Si4,EA088,"Grass, leaves or thatch",EA088-8,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p125, +117439,Si5,EA088,?,EA088-NA,,,,,, +117440,Si6,EA088,?,EA088-NA,,,,,, +117441,Si7,EA088,?,EA088-NA,,,,,, +117442,Si8,EA088,?,EA088-NA,,,,,, +117443,Si9,EA088,?,EA088-NA,,,,,, +117444,Sj1,EA088,?,EA088-NA,,,,,, +117445,Sj10,EA088,?,EA088-NA,,,,,, +117446,Sj11,EA088,?,EA088-NA,,,,,, +117447,Sj2,EA088,?,EA088-NA,,,,,, +117448,Sj3,EA088,?,EA088-NA,,,,,, +117449,Sj4,EA088,?,EA088-NA,,,,,, +117450,Sj5,EA088,"Grass, leaves or thatch",EA088-8,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p125, +117451,Sj6,EA088,?,EA088-NA,,,,,, +117452,Sj7,EA088,?,EA088-NA,,,,,, +117453,Sj8,EA088,?,EA088-NA,,,,,, +117454,Sj9,EA088,"Grass, leaves or thatch",EA088-8,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p125, +117455,ch12,EA088,Fabric,EA088-6,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +117456,ch13,EA088,"Grass, leaves or thatch",EA088-8,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +117457,ch14,EA088,"Grass, leaves or thatch",EA088-8,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +117458,ch15,EA088,"Grass, leaves or thatch",EA088-8,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +117459,ch16,EA088,?,EA088-NA,,,,,, +117460,ch17,EA088,"Wood, incl. bamboo",EA088-3,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +117461,ch18,EA088,?,EA088-NA,,,,,, +117462,ch19,EA088,"Wood, incl. bamboo",EA088-3,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +117463,ch20,EA088,"Wood, incl. bamboo",EA088-3,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +117464,ch21,EA088,"Wood, incl. bamboo",EA088-3,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +117465,ch22,EA088,?,EA088-NA,,,,,, +117466,ch23,EA088,?,EA088-NA,,,,,, +117467,ch24,EA088,?,EA088-NA,,,,,, +117468,ch25,EA088,"Grass, leaves or thatch",EA088-8,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +117469,ch26,EA088,"Wood, incl. bamboo",EA088-3,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +117470,ch27,EA088,"Grass, leaves or thatch",EA088-8,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +117471,ch28,EA088,?,EA088-NA,,,,,, +117472,ec12,EA088,Hides or skins,EA088-5,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +117473,ec13,EA088,"Grass, leaves or thatch",EA088-8,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +117474,ec14,EA088,Hides or skins,EA088-5,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +117475,ec15,EA088,Bark,EA088-4,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +117476,ec16,EA088,Bark,EA088-4,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +117477,ec17,EA088,Bark,EA088-4,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +117478,ec18,EA088,Bark,EA088-4,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +117479,ec19,EA088,Bark,EA088-4,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +117480,ec20,EA088,Bark,EA088-4,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +117481,ec21,EA088,Bark,EA088-4,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +117482,Aa1,EA009,Limited polygyny,EA009-2,,biesele1972;biesele1975;biesele1976;draper1972;draper1975;drapernd;hansenetal1969;harpending1971;howell1979;howellnd;konner1971;konner1972;konner1973;konner1977;lee1966;lee1968;lee1972a;lee1974;lee1979;leeanddevore1976;marshall1956;marshall1957;marshall1957a;marshall1957b;marshall1958;marshall1959;marshall1960;marshall1961;marshall1962;marshall1965;marshall1976;marshallandmarshall1956;schapera1930;shostak1981;thomas1959;tobias1978,Nyai Nyae region,1950,EthnographicAtlas_1967_p62, +117483,Aa2,EA009,Monogamous,EA009-1,,huntingford1929;huntingford1942;huntingford1951;huntingford1953b;huntingford1954;huntingford1955a,with special reference to Central Dorobo,1920,EthnographicAtlas_1967_p62, +117484,Aa3,EA009,Limited polygyny,EA009-2,,hoernl1918;hoernl1925;kohler1970;murdock1934b[475-507];schapera1930;schultze1907,Gei/Khauan tribe,1840,EthnographicAtlas_1967_p62, +117485,Aa4,EA009,"Polygyny, sororal separate quarters",EA009-4,,lebzelter1934;schmidt1930;vedder1923,,1920,Ethnology_Vol1_No3_Jul_1962, +117486,Aa5,EA009,Limited polygyny,EA009-2,,deleeuwe1966;hart1978;putnam1948;turnbull1961;turnbull1965a;turnbull1965b;turnbull1965c;turnbull1983,"Epulu net-hunters, Ituri forest",1930,EthnographicAtlas_1967_p62, +117487,Aa6,EA009,Limited polygyny,EA009-2,,dempwolff1916;huntingford1953b;kimmenade1936,,1920,EthnographicAtlas_1967_p62, +117488,Aa7,EA009,Limited polygyny,EA009-2,Polygyny is preferably sororal,bleek1924b;bleek1928;passarge1907;schapera1930,,1910,EthnographicAtlas_1967_p62, +117489,Aa8,EA009,Limited polygyny,EA009-2,,barrow180104;bleek1924b;fritsch1872,,1850,Ethnology_Vol4_No3_Jul_1965, +117490,Aa9,EA009,Limited polygyny,EA009-2,,bleek1931b;kohllarsen1958;woodburn1964;woodburn1968a;woodburn1968b;woodburn1970,Hatsa Kindiga Tribe,1910,EthnographicAtlas_1967_p62, +117491,Ab1,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,irle1906;vedder1928,,1900,EthnographicAtlas_1967_p62, +117492,Ab10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,hunter1936,,1936,EthnographicAtlas_1967_p62, +117493,Ab11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,borwnlee1927;kropf1889;soga1932,,1850,Ethnology_Vol7_No2_Apr_1968, +117494,Ab12,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bryant1949;gluckman1940;gluckman1950;krige1936;mahloboandkrige1934;schapera1937;vilakazi1962,,1830,EthnographicAtlas_1967_p62, +117495,Ab13,EA009,"Polygyny, sororal separate quarters",EA009-4,,brown1926;dorman1935;duggancronin1929;livingstone1858;schapera1938;schapera1941;schapera1950;schapera1953;schpera1941,with special reference to the Kgatla (Bakxatla),1880,EthnographicAtlas_1967_p62, +117496,Ab14,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,krigeandkrige1943,,1930,EthnographicAtlas_1967_p62, +117497,Ab15,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,duggancronin1931;franz1931;harries1939;harris1929;pitje1950;vanwarmelo1931;winter1914,,1860,Ethnology_Vol2_No2_Apr_1963, +117498,Ab16,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,earthy1933,,1930,EthnographicAtlas_1967_p62, +117499,Ab17,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,boas1922;dossantos1901;herskovits1923,,1920,Ethnology_Vol2_No2_Apr_1963, +117500,Ab18,EA009,"Polygyny, sororal separate quarters",EA009-4,,bullock1928;holleman1952;kuper1955;prost1956;seed193233,with special reference to the Zezuru,1920,EthnographicAtlas_1967_p62, +117501,Ab19,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,krafft1914;lebzelter1935;loeb1962;tonejes1911,with special reference to the Kuanyama,1910,EthnographicAtlas_1967_p62, +117502,Ab2,EA009,"Polygyny, sororal separate quarters",EA009-4,,kuper1950;kuper1974;marwick1940,,1880,EthnographicAtlas_1967_p62, +117503,Ab20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,wunenberger1888,,1880,Ethnology_Vol2_No2_Apr_1963, +117504,Ab21a,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,magyar1859;mattenklodt1944,,1930,Ethnology_Vol5_No1_Jan_1966, +117505,Ab21b,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cook1931,,1925,Ethnology_Vol7_No1_Jan_1968, +117506,Ab22,EA009,?,EA009-NA,,,,,, +117507,Ab3,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bertrand1899;gluckman1941;gluckman1950;gluckman1951;gluckman1972;holub1895;mainga1973;turner1952,Ruling Luyana,1890,EthnographicAtlas_1967_p62, +117508,Ab4,EA009,"Polygyny, sororal separate quarters",EA009-4,,junod1927,,1920,EthnographicAtlas_1967_p62, +117509,Ab5,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,childs1949;duffy1959;edwards1962;hambly1934;mcculloch1952,,1930,EthnographicAtlas_1967_p62, +117510,Ab6,EA009,"Polygyny, sororal separate quarters",EA009-4,,gottschling1905;stayt1931;warmelo1948;wessmann1908,,1900,EthnographicAtlas_1967_p62, +117511,Ab7,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,langandtastevin1937,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EthnographicAtlas_1967_p62, +117512,Ab8,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,ashton1952;casilis1859;dutton1923;krige1937;mabille1906;martin1903;sheddick1953,Basuto,1860,EthnographicAtlas_1967_p62, +117513,Ab9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,hughesandvanvelsen1955;jackson192627;thomas1872,,1870,EthnographicAtlas_1967_p62, +117514,Ac1,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,smithanddale1920;tudennd,,1920,EthnographicAtlas_1967_p62, +117515,Ac10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"But families are reported to be loosely aggregated around ""a sororal extended family core""",bruwer1949;bruwer1955;hodgson1933;marwick1952;ntara1934;read1938;richards1950;tew1950,,1920,EthnographicAtlas_1967_p62, +117516,Ac11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,mcculloch1951;white1955,,1930,EthnographicAtlas_1967_p62, +117517,Ac12,EA009,Limited polygyny,EA009-2,,baumann1935;jaspertandjaspert1930;mcculloch1951;tordayandjoyce1922,,1920,EthnographicAtlas_1967_p62, +117518,Ac13,EA009,Limited polygyny,EA009-2,,tew1950;velsen1964,,1950,EthnographicAtlas_1967_p62, +117519,Ac14,EA009,Limited polygyny,EA009-2,,brown1944;bruyns1951;czekanowski1924[21-110];ihle1929;kapstein1922;mertens1942;vanwing1921;weeks1914,,1900,EthnographicAtlas_1967_p62, +117520,Ac15,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,tordayandjoyce1905;tordayandjoyce1907;tordayandjoyce1922[227-359],,1900,Ethnology_Vol5_No1_Jan_1966, +117521,Ac16,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,balandier1952;maclatchy1945,,1940,Ethnology_Vol5_No1_Jan_1966, +117522,Ac17,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,holemans1959;kopytoff1961;kopytoff1964;kopytoff1965;kopytoff1971;kopytoff1977;tordayandjoyce1906;vandeginste1947,Feshi territory lineage center,1910,EthnographicAtlas_1967_p62, +117523,Ac18,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,even1931;hutereau1910b;laman1953;soret1959,,1910,EthnographicAtlas_1967_p62, +117524,Ac19,EA009,?,EA009-NA,,,,,, +117525,Ac2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,sousberghe1955;tordayandjoyce1922[corrigenda-to-table-1],,1920,EthnographicAtlas_1967_p62, +117526,Ac20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,milheiros1956;plancquaert1932;tordayandjoyce1906,,1920,Ethnology_Vol5_No1_Jan_1966, +117527,Ac21,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,decker1942;torday1910;weekx1937,,1910,EthnographicAtlas_1967_p62, +117528,Ac22,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,mertens1935,,1930,EthnographicAtlas_1967_p62, +117529,Ac23,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,douglas1952;douglas1962;douglas1963;tew1951;vansina1954b,with special reference to the western Lele,1950,EthnographicAtlas_1967_p62, +117530,Ac24,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baeyens1913;denis1935;maes1924;viaeneandbernard190910,,1910,Ethnology_Vol5_No1_Jan_1966, +117531,Ac25,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,beaucorps1921;beaucorps1951;richards1950,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EthnographicAtlas_1967_p62, +117532,Ac26,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,beaucorps1933;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +117533,Ac27,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baumann1935;mcculloch1951,,1930,Ethnology_Vol5_No1_Jan_1966, +117534,Ac28,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baumann1935;mcculloch1951,,1930,EthnographicAtlas_1967_p62, +117535,Ac29,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,brau1942,,1930,Ethnology_Vol5_No1_Jan_1966, +117536,Ac3,EA009,"Polygyny, sororal separate quarters",EA009-4,,delhaise1908;gouldsburyandsheane1911;richards1939;richards1940a;richards1940b;richards1948;richards1950;richards1951;richards1956;richards1968;richards1971;richardsandtardits1974;tardits1974,Zambia branch,1900,EthnographicAtlas_1967_p62, +117537,Ac30,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,allanetal1948;colson1950;colson1951;colson1960;jaspan1953,,1940,EthnographicAtlas_1967_p62, +117538,Ac31,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,colle1913,,1910,Ethnology_Vol7_No2_Apr_1968, +117539,Ac32,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,melland1923;watson1954a,,1920,Ethnology_Vol5_No1_Jan_1966, +117540,Ac33,EA009,Limited polygyny,EA009-2,,lambo1946;munday1941;whiteley1951,,1940,EthnographicAtlas_1967_p62, +117541,Ac34,EA009,Limited polygyny,EA009-2,,cunnison1950;cunnison1959;gamitto1854;slaski1951,,1940,EthnographicAtlas_1967_p62, +117542,Ac35,EA009,Limited polygyny,EA009-2,,brohez1905;marchal1935,,1900,Ethnology_Vol5_No1_Jan_1966, +117543,Ac36,EA009,"Polygyny, sororal separate quarters",EA009-4,,sanderson1923;tew1950;young1931,,1920,EthnographicAtlas_1967_p62, +117544,Ac37,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bruwer1958,,1950,Ethnology_Vol5_No1_Jan_1966, +117545,Ac38,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,malekebu1952;stannus1910;tew1950;werner1906b,,1910,EthnographicAtlas_1967_p62, +117546,Ac39,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,johnson1922;tew1950,,1920,Ethnology_Vol5_No1_Jan_1966, +117547,Ac4,EA009,Limited polygyny,EA009-2,"As an alternative to a high bride-price and avunculocal residence, a very small bride-price may be paid; in which case residence is usually alternately uxorilocal and avunculocal for periods of 5-6 years each",tordayandjoyce1910;vansina1954a;vansina1962,"with special reference to the Bushoong, the central subtribe",1910,EthnographicAtlas_1967_p62, +117548,Ac40,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,maugham1910;menteirolopez1906;schebesta1926,,1900,Ethnology_Vol5_No1_Jan_1966, +117549,Ac41,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,behr1893;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +117550,Ac42,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,tew1950;weule1908,,1900,Ethnology_Vol5_No1_Jan_1966, +117551,Ac43,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,watson1954b;willis1966,,1910,Ethnology_Vol5_No4_Oct_1966, +117552,Ac5,EA009,Limited polygyny,EA009-2,,doke1931;mitchellandbarnes1950,,1920,EthnographicAtlas_1967_p62, +117553,Ac6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baumann1935;chook1967;mcculloch1951;turner1957;turner1966,,1930,EthnographicAtlas_1967_p62, +117554,Ac7,EA009,Limited polygyny,EA009-2,,lawson1949;mitchell1949;mitchell1956;sanderson1920;stannus1922,,1920,EthnographicAtlas_1967_p62, +117555,Ac8,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,decleene1937a;decleene1937b;deleval1912;vanoverbergh1907b;vanreeth1935,,1930,EthnographicAtlas_1967_p62, +117556,Ac9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,barnes1951;barnes1954;mead1960;tew1950,with special reference to the Mpezeni group of Fort Jameson,1940,EthnographicAtlas_1967_p62, +117557,Ad1,EA009,Monogamous,EA009-1,,grottanelli1955,,1950,EthnographicAtlas_1967_p62, +117558,Ad10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,eichhorn191124;lang1903;warburg1894;winans1962;wohlrab1918,,1910,EthnographicAtlas_1967_p66, +117559,Ad11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,culwickandculwick1935,,1930,EthnographicAtlas_1967_p66, +117560,Ad12,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,levine1959;mayer1949;mayer1950;mayer1953;mayer1965,,1940,Ethnology_Vol4_No1_Jan_1965, +117561,Ad13,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,edel1937;edel1957;taylor1962,,1930,EthnographicAtlas_1967_p66, +117562,Ad14,EA009,Limited polygyny,EA009-2,,beidelman1967;brain1969;christensen1963;mcvicarnd;mluanda1971;scheerderandtastevin1950;youngandfosbrooke1960,Morogoro District,1930,EthnographicAtlas_1967_p66, +117563,Ad15,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"Or these polygynous units may live as small extended families (i.e., code for related variable EA008 would be ""7"" instead of ""5"")",chisholm1910;coxhead1914;willis1966;wilson1958,,1900,EthnographicAtlas_1967_p66, +117564,Ad16,EA009,"Polygyny, sororal separate quarters",EA009-4,,mackenzie1925;sanderson1923;tew1950,,1920,EthnographicAtlas_1967_p66, +117565,Ad17,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,kootzkretschmer192629,,1920,EthnographicAtlas_1967_p66, +117566,Ad18,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,avon191516;majerus191516,,1910,Ethnology_Vol5_No1_Jan_1966, +117567,Ad19,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fromm1912;popplewell1937;willis1966,,1910,EthnographicAtlas_1967_p66, +117568,Ad2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,beattie1960;beattie1965;richards1960b;roscoe1923a;taylor1962,,1950,EthnographicAtlas_1967_p62, +117569,Ad20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,blohm193133;bosch1930;spellig1927,,1920,EthnographicAtlas_1967_p66, +117570,Ad21,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,maurice193538,,1930,EthnographicAtlas_1967_p66, +117571,Ad22,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,abrahams1967;cory1953;malcolm1953,,1950,EthnographicAtlas_1967_p66, +117572,Ad23,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,heese1913;mumford1934,,1910,Ethnology_Vol5_No1_Jan_1966, +117573,Ad24,EA009,"Polygyny, non-sororal separate quarters",EA009-5,Extended families are inferred from the large tembe dwellings,claus1911;paulssen1922;rigby1966;schaegelen1938,,1910,EthnographicAtlas_1967_p66, +117574,Ad25,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baumstark1900;gray1953;kannenberg1900,,1900,Ethnology_Vol5_No1_Jan_1966, +117575,Ad26,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,sick1916,,1910,EthnographicAtlas_1967_p66, +117576,Ad27,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,picarda1886;reidelman1967,,1880,Ethnology_Vol7_No2_Apr_1968, +117577,Ad28,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baumann1891;beidelman1967;picarda1886,,1880,Ethnology_Vol7_No2_Apr_1968, +117578,Ad29,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,ingrams1930;prins1961,,1930,EthnographicAtlas_1967_p66, +117579,Ad3,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,abbott1892;dundas1924;gutmann1913;gutmann1926;raum1940;stahl1964,,1910,EthnographicAtlas_1967_p62, +117580,Ad30,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baumann1891;prins1952;stpaulhilaire1895,,1890,EthnographicAtlas_1967_p66, +117581,Ad31,EA009,Limited polygyny,EA009-2,,prins1952;werner1915,,1910,Ethnology_Vol5_No1_Jan_1966, +117582,Ad32,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,barrett1911b;johnstone1902;princs1952,,1900,EthnographicAtlas_1967_p66, +117583,Ad33,EA009,Limited polygyny,EA009-2,,fischer187879;kraft1903;prins1952;werner1913,,1900,EthnographicAtlas_1967_p66, +117584,Ad34,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,dundas1915;hildebrandt1878;lindblom1916;middleton1953;penwill1951,,1910,Ethnology_Vol5_No1_Jan_1966, +117585,Ad35,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,holding1942;lambert1956;middleton1953,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EthnographicAtlas_1967_p66, +117586,Ad36,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baumann1891;storch1895,,1890,Ethnology_Vol5_No1_Jan_1966, +117587,Ad37,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bostock1950;prins1950;prins1952,,1940,Ethnology_Vol5_No1_Jan_1966, +117588,Ad38,EA009,Limited polygyny,EA009-2,,paterson1956;paulssen1914;thorntonandrounce1936,,1910,Ethnology_Vol5_No1_Jan_1966, +117589,Ad39,EA009,Limited polygyny,EA009-2,,gray1963,,1950,EthnographicAtlas_1967_p66, +117590,Ad4,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cagnolo1933;hailey1950;kenyatta1939;lambert1950;lambert1956;leakey1952;leakey1977;macphee1968;middleton1953;ross1968;routledgeandroutledge1910;tignor1976,Fort Hall or Metume district,1930,EthnographicAtlas_1967_p62, +117591,Ad40,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,sangree1965,,1950,Ethnology_Vol5_No1_Jan_1966, +117592,Ad41,EA009,Limited polygyny,EA009-2,,wagner1939;wagner1940;wagner194950,,1930,EthnographicAtlas_1967_p66, +117593,Ad42,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,autenrieth1908;cesard193537;coryandhartnoll1945;rehse1910;taylor1962;weiss1926,,1900,EthnographicAtlas_1967_p66, +117594,Ad43,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,hurel1911,,1900,Ethnology_Vol5_No1_Jan_1966, +117595,Ad44,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1924[358-399];taylor1962,,1920,EthnographicAtlas_1967_p66, +117596,Ad45,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,oberg1938;oberg1940;roscoe1923b;taylor1962,,1920,EthnographicAtlas_1967_p66, +117597,Ad46,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fallers1956;fallers1960;roscoe1915,,1950,EthnographicAtlas_1967_p66, +117598,Ad47,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,abrahams1967;blohm193133;desoignies1903,,1900,Ethnology_Vol7_No2_Apr_1968, +117599,Ad48,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +117600,Ad49,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,taylor1962,,1950,Ethnology_Vol5_No1_Jan_1966, +117601,Ad5,EA009,Monogamous,EA009-1,,graynd,,1940,Ethnology_Vol1_No3_Jul_1962, +117602,Ad50,EA009,Limited polygyny,EA009-2,,beidelman1967,with special reference to the Mountain Kaguru,1900,Ethnology_Vol7_No2_Apr_1968, +117603,Ad51,EA009,Limited polygyny,EA009-2,,beidelman1967;mcvicar1934,,1930,Ethnology_Vol7_No2_Apr_1968, +117604,Ad6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,charsleyandmckenny1974;lehmann1951;mckenny1973;wilson1936;wilson1938;wilson1951a;wilson1951b;wilson1957;wilson1959;wilson1977,Age villages of Mwaya and Masoko,1930,EthnographicAtlas_1967_p62, +117605,Ad7,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fallers1960;kagwa1934;kottack1972;lugira1970;mair1934;malysevand;murdock1934k;perlman1969;richards1960a;richards1966;roscoe1911;rusch1975;semakulakiwanuka1972;southwold1965;southwold1971,Kyaddondo district (V: Kampala),1880,EthnographicAtlas_1967_p62, +117606,Ad8,EA009,"Polygyny, non-sororal cohabit",EA009-6,,brownandhutt1935;dempwolff1914;nigmann1908,with special reference to the northern or Iringa group,1910,EthnographicAtlas_1967_p66, +117607,Ad9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lafontaine1959;roscoe1915,,1900,EthnographicAtlas_1967_p66, +117608,Ae1,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,winter1956;winter1958,with special reference to those of Bwamba in Uganda,1950,EthnographicAtlas_1967_p66, +117609,Ae10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1917;dhertefelt1965;dhertefeltetal1962;maquet1955;maquet1967;pages1933;vanhove1941,,1910,Ethnology_Vol7_No2_Apr_1968, +117610,Ae11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,delhaise1909a,,1900,Ethnology_Vol7_No2_Apr_1968, +117611,Ae12,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,ardener1956;brutsch1950;buchner1887,,1940,EthnographicAtlas_1967_p66, +117612,Ae13,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,colle1921;colle1922a;colle1922b;roy192425,,1920,Ethnology_Vol5_No1_Jan_1966, +117613,Ae14,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,hertefeltetal1962,,1950,EthnographicAtlas_1967_p66, +117614,Ae15,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,schumacher1949;viaene1951;viaene1952,,1940,EthnographicAtlas_1967_p66, +117615,Ae16,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lietard1929;vervaecke1910;wissmannetal1888,,1910,Ethnology_Vol5_No1_Jan_1966, +117616,Ae17,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,delhaise1909b;salmon1953,,1900,EthnographicAtlas_1967_p66, +117617,Ae18,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,tordayandjoyce1922;vanoverbergh1908,,1900,Ethnology_Vol7_No2_Apr_1968, +117618,Ae19,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"Extended families are possibly present, though not specifically reported",grevisse193738,,1930,Ethnology_Vol5_No1_Jan_1966, +117619,Ae2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,ardener1956;leuschner1903,,1950,EthnographicAtlas_1967_p66, +117620,Ae20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,brown1944;gilliard1925;muller1956;philippe1954;vanderkerken1944,,1940,Ethnology_Vol5_No1_Jan_1966, +117621,Ae21,EA009,"Polygyny, sororal separate quarters",EA009-4,,empain1922;tordayandjoyce1922,,1920,Ethnology_Vol5_No1_Jan_1966, +117622,Ae22,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,tordayandjoyce1922;vanlaere1900,with special reference to the Bankutu,1900,EthnographicAtlas_1967_p66, +117623,Ae23,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,maes1934;rijek1937;vanderkerken1944,,1930,Ethnology_Vol5_No1_Jan_1966, +117624,Ae24,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gutersohn1920;ruskinandruskin1928;vanderkerken1944,,1920,Ethnology_Vol5_No1_Jan_1966, +117625,Ae25,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"Extended families may be present, though not specifically reported",heusch1955;tordayandjoyce1922;vanderkerken1944,with special reference to the northern Tetela,1920,Ethnology_Vol5_No1_Jan_1966, +117626,Ae26,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,torday1911;tordayandjoyce1922,,1910,Ethnology_Vol5_No1_Jan_1966, +117627,Ae27,EA009,"Polygyny, non-sororal separate quarters",EA009-5,Entry follows Smith; Bertrand implies extended families,bertrand1920;smith1911,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,Ethnology_Vol5_No1_Jan_1966, +117628,Ae28,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,burssens1958;vanoverbergh1907a;weeks190910;weeks1913,,1900,EthnographicAtlas_1967_p66, +117629,Ae29,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,hutereau1910a;lindemann1906,,1900,EthnographicAtlas_1967_p66, +117630,Ae3,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,alexandreandbinet1958;tessmann1913;trezenem1936,,1910,EthnographicAtlas_1967_p66, +117631,Ae30,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1924[327-357];vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +117632,Ae31,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1924[282-297];vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +117633,Ae32,EA009,"Polygyny, non-sororal separate quarters",EA009-5,But extended families possibly occur,vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +117634,Ae33,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1924[319-326];moeller1936;schebesta1934;vangeluwe1960,,1920,Ethnology_Vol7_No2_Apr_1968, +117635,Ae34,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1924[327-357];joset1936;vangeluwe1956,,1920,Ethnology_Vol5_No1_Jan_1966, +117636,Ae35,EA009,Limited polygyny,EA009-2,,maes1909;vangeluwe1956,,1900,Ethnology_Vol5_No1_Jan_1966, +117637,Ae36,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,verbeke1928,,1920,Ethnology_Vol5_No1_Jan_1966, +117638,Ae37,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,soupart1938;vandenbergh1934,,1930,Ethnology_Vol5_No1_Jan_1966, +117639,Ae38,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,wijnant192526,,1920,EthnographicAtlas_1967_p66, +117640,Ae39,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,burssens1958;wolfe1961;wolfe1965,,1920,EthnographicAtlas_1967_p66, +117641,Ae4,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,boelaert1940;brepoels1930;gutersohn1920;hulstaert1938;hulstaert1971;schebesta1936;vanderkerken1944,Ilanga group,1930,EthnographicAtlas_1967_p66, +117642,Ae40,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,allys1930;koch1913,,1910,Ethnology_Vol5_No1_Jan_1966, +117643,Ae41,EA009,Limited polygyny,EA009-2,,andersson1953,,1940,EthnographicAtlas_1967_p66, +117644,Ae42,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,conradt1902;dugast1949,,1900,Ethnology_Vol5_No1_Jan_1966, +117645,Ae43,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,burel1910;koch1913,,1900,Ethnology_Vol5_No1_Jan_1966, +117646,Ae44,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baumann1888;gildelgado1949;tessmann1923,,1920,Ethnology_Vol5_No1_Jan_1966, +117647,Ae45,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bufe1913;lessner1904,,1900,Ethnology_Vol5_No1_Jan_1966, +117648,Ae46,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,allegret1927;burton1876;duchaillu1861,,1870,Ethnology_Vol5_No1_Jan_1966, +117649,Ae47,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,oertzen1903;zeller1885,,1900,Ethnology_Vol5_No1_Jan_1966, +117650,Ae48,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"Sometimes these polygynous units live as small extended families (i.e., code for related variable EA008 would be ""7"" instead of ""5"")",mccullochetal1954;tessmann1934,,1930,EthnographicAtlas_1967_p66, +117651,Ae49,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,ankermann1910;covarrubias1937;hutter1899;kaberry1952,,1900,Ethnology_Vol5_No1_Jan_1966, +117652,Ae5,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,egerton1939;mccullochetal1954,,1910,EthnographicAtlas_1967_p66, +117653,Ae50,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,hutter1907;martin1951;mccullochetal1954;reinwuhrmann1925,,1920,EthnographicAtlas_1967_p66, +117654,Ae51,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,dugast1944;dugast1955;dugast1959;mccullochetal1954;tessmann1934,Ndiki subtribe,1940,EthnographicAtlas_1967_p66, +117655,Ae52,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +117656,Ae53,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,nicol1929,,1920,Ethnology_Vol5_No1_Jan_1966, +117657,Ae54,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,jeffreys1951;kaberry1952;mccullochetal1954,,1950,Ethnology_Vol5_No1_Jan_1966, +117658,Ae55,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +117659,Ae56,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +117660,Ae57,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,kaberry1952;mccullochetal1954;sieberandsieber1938,,1930,Ethnology_Vol5_No1_Jan_1966, +117661,Ae58,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,thorbecke1916;thorbeckeandthorbecke1919,,1910,Ethnology_Vol5_No1_Jan_1966, +117662,Ae59,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,kaberry1952,with special reference to the Ngie subtribe,1950,Ethnology_Vol5_No1_Jan_1966, +117663,Ae6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,verhulpen1936,with special reference to the Bena Kalundwe,1930,EthnographicAtlas_1967_p66, +117664,Ae7,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1924[257-281];halkin1911;hutereau1909;vedy1904,,1910,EthnographicAtlas_1967_p66, +117665,Ae8,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bourgeois1954;delacauw1936;dhertefeltetal1962;meyer1916;simons1944;vanderburgt1903,,1910,EthnographicAtlas_1967_p66, +117666,Ae9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,kaberry1952;mccullochetal1954,,1950,EthnographicAtlas_1967_p66, +117667,Af1,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,argyle1966;bohannan1949;herskovits1932;herskovits1937a;herskovits1938;herskovitsandherskovits1933;leheriss1911;lombard1967;mercier1954;murdock1934b[551-595];skertchley1874;tarditsandtardits1962,City and environs of Abomey,1890,EthnographicAtlas_1967_p66, +117668,Af10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,ardener1954;egboh1971;egboh1972a;egboh1972b;egboh19734;fordeandjones1950;green1947;leithross1939;uchendu1965,,1930,EthnographicAtlas_1967_p70, +117669,Af11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gaborydubourdeau1926;rouet1907;schwab1947,,1920,EthnographicAtlas_1967_p70, +117670,Af12,EA009,"Polygyny, non-sororal separate quarters",EA009-5,But the group occupying a compound is a nuclear or polygynous family,field1949;mead1937a,with special reference to the Kwahu,1930,Ethnology_Vol4_No2_Apr_1965, +117671,Af13,EA009,"Polygyny, non-sororal cohabit",EA009-6,,brown1955;wilsonhaffenden1930,,1920,EthnographicAtlas_1967_p70, +117672,Af14,EA009,"Polygyny, non-sororal cohabit",EA009-6,,hall1938;mcculloch1950;thomas1916,,1930,EthnographicAtlas_1967_p70, +117673,Af15,EA009,"Polygyny, non-sororal cohabit",EA009-6,,gibbs1963;gibbs1965;schwab1947;westermann1921,,1920,EthnographicAtlas_1967_p70, +117674,Af16,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"Entry follows Ruel and Schuster; Staschewski reports that polygynous units live independently (i.e., related variable EA008 should be code ""5"")",ruel1956;schuster1914;staschewski1917,,1910,Ethnology_Vol5_No3_Jul_1966, +117675,Af17,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,mansfeld1908;talbot1926,,1900,Ethnology_Vol5_No3_Jul_1966, +117676,Af18,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bystrom1954;talbot1912,,1900,Ethnology_Vol5_No3_Jul_1966, +117677,Af19,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fordeandjones1950;simmons1957;simmons1960,,1950,EthnographicAtlas_1967_p70, +117678,Af2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,neel1913;paulme1954,,1950,EthnographicAtlas_1967_p66, +117679,Af20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fordeandjones1950;talbot1915;talbot1923,,1910,EthnographicAtlas_1967_p70, +117680,Af21,EA009,"Polygyny, non-sororal cohabit",EA009-6,,granvilleandroth1898;talbot1932,with special reference to the Kalabari,1920,Ethnology_Vol5_No3_Jul_1966, +117681,Af22,EA009,"Polygyny, non-sororal cohabit",EA009-6,,lloyd1957;omoneukanrin1942,,1940,EthnographicAtlas_1967_p70, +117682,Af23,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,ottenberg1960;ottenberg1965a;ottenberg1965b,with special reference to the village of Mgbom,1950,EthnographicAtlas_1967_p70, +117683,Af24,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bradbury1957;roth1903;thomas1910,,1900,EthnographicAtlas_1967_p70, +117684,Af25,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bradbury1957;welch1934,,1930,EthnographicAtlas_1967_p70, +117685,Af26,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bradbury1957;thomas1910,with special reference to the Etsako,1900,Ethnology_Vol5_No3_Jul_1966, +117686,Af27,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fordeetal1955;tschudi1956,,1950,Ethnology_Vol5_No3_Jul_1966, +117687,Af28,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"In Murdock (1966a) this was coded this as code ""5"": polygynous, usual co-wives pattern"" (code ""5""), with the comment ""Entry follows an earlier report by Temple; Gunn and Conant report extended families (code ""8"") made up of polygynous units of non-sororal co-wives in separate dwellings (EA009 code ""5"")"". In the EA (Murdock 1967), the codes for EA008 and EA009 changed to the present codes.",gunnandconant1960,,1910,EthnographicAtlas_1967_p70, +117688,Af29,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,armstrong1954;fordeetal1955;temple1922,,1950,Ethnology_Vol5_No3_Jul_1966, +117689,Af3,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,busia1951;busia1954;fortes1949b;fortes1950;fortes1969[138-216];fortesetal1947;lystad1958;manoukian1950;rattray1916;rattray1923;rattray1927;rattray1929;service1963;wilks1967;wilks1975,Kumasi State,1900,EthnographicAtlas_1967_p66, +117690,Af30,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,clifford1936;fordeetal1955;mocklerferryman1892;seton192930,,1920,Ethnology_Vol5_No3_Jul_1966, +117691,Af31,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gunnandconant1960,with special reference to the Lafia,1960,Ethnology_Vol5_No3_Jul_1966, +117692,Af32,EA009,"Polygyny, non-sororal cohabit",EA009-6,,ajisafe1924;forde1951,Abeouta Province and Benin,1920,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117693,Af33,EA009,"Polygyny, non-sororal cohabit",EA009-6,,forde1951;lloyd1955;lloyd1965;ward1937,"Ekiti Division, Ondo Prov.",1950,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117694,Af34,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bascom1942;bascom1944;forde1951,"Ife Ilesha Division, Oyo Prov.",1930,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117695,Af35,EA009,"Polygyny, non-sororal cohabit",EA009-6,,daniell1856;field1943;halleran1951,with special reference to the Krobo,1940,Ethnology_Vol5_No3_Jul_1966, +117696,Af36,EA009,"Polygyny, non-sororal cohabit",EA009-6,,asmis1911;klose1899;manoukian1952a;spieth1906;spieth1911;westermann1935,with special reference to the Glidyi,1900,EthnographicAtlas_1967_p70, +117697,Af37,EA009,"Polygyny, non-sororal cohabit",EA009-6,,asmis1911;hinderling195253;plehn1898,with special reference to the Akpafu,1900,Ethnology_Vol5_No3_Jul_1966, +117698,Af38,EA009,"Polygyny, non-sororal cohabit",EA009-6,,alland1963;clozelandvillamur1902;tauxier1921,,1900,Ethnology_Vol5_No3_Jul_1966, +117699,Af39,EA009,"Polygyny, non-sororal cohabit",EA009-6,,clozelandvillamur1902;kobben1956;tauxier1932;villamuranddelafosse1904,with special reference to the Ndenie,1900,Ethnology_Vol5_No3_Jul_1966, +117700,Af4,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,forde1939;forde1941;forde1950;forde1952;forde1964,,1930,EthnographicAtlas_1967_p70, +117701,Af40,EA009,"Polygyny, non-sororal cohabit",EA009-6,,loyer1745;mouezy1942;reichenbach1890,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,Ethnology_Vol5_No3_Jul_1966, +117702,Af41,EA009,"Polygyny, non-sororal cohabit",EA009-6,,crosson1900;dreyfus1900;vincenti1922,,1890,Ethnology_Vol5_No3_Jul_1966, +117703,Af42,EA009,"Polygyny, non-sororal cohabit",EA009-6,,christensen1954;conolly1897;ffoulkes1908;ffoulkes1909;manoukian1950;sarbah1897,,1900,EthnographicAtlas_1967_p70, +117704,Af43,EA009,"Polygyny, non-sororal cohabit",EA009-6,,daniell1856;field1937;field1940;manoukian1950,,1930,EthnographicAtlas_1967_p70, +117705,Af44,EA009,"Polygyny, non-sororal cohabit",EA009-6,,clozelandvillamur1902,,1900,Ethnology_Vol5_No3_Jul_1966, +117706,Af45,EA009,"Polygyny, non-sororal cohabit",EA009-6,,clozelandvillamur1902;grivot1942,,1900,Ethnology_Vol5_No3_Jul_1966, +117707,Af46,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,clozelandvillamur1902;coutouly1920,,1900,Ethnology_Vol5_No3_Jul_1966, +117708,Af47,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,beckerdonner1944;schwab1947,,1940,Ethnology_Vol5_No3_Jul_1966, +117709,Af48,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,wilson1856,,1850,Ethnology_Vol5_No3_Jul_1966, +117710,Af49,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,schwab1947,,1940,EthnographicAtlas_1967_p70, +117711,Af5,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bockani1945;crosby1937;little1947;little1948;little1951;little1954;little1970;mcculloch1950;staub1936,,1930,EthnographicAtlas_1967_p70, +117712,Af50,EA009,"Polygyny, non-sororal cohabit",EA009-6,,chevalier1908;himmelheberandhimmelheber1958;vendeix1924,,1920,Ethnology_Vol5_No3_Jul_1966, +117713,Af51,EA009,"Polygyny, non-sororal cohabit",EA009-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +117714,Af52,EA009,"Polygyny, non-sororal cohabit",EA009-6,,tauxier1924a,,1920,EthnographicAtlas_1967_p70, +117715,Af53,EA009,"Polygyny, non-sororal cohabit",EA009-6,,holas1962,,1950,Ethnology_Vol5_No3_Jul_1966, +117716,Af54,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,germann1933;schwab1947,,1930,EthnographicAtlas_1967_p70, +117717,Af55,EA009,"Polygyny, non-sororal cohabit",EA009-6,,dazevedo1962,,1950,Ethnology_Vol5_No3_Jul_1966, +117718,Af56,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,schwab1947;viard1934,with special reference to the Gio of the Ivory Coast,1930,EthnographicAtlas_1967_p70, +117719,Af57,EA009,"Polygyny, non-sororal cohabit",EA009-6,,langley1939;mcculloch1950;thomas1916,,1910,EthnographicAtlas_1967_p70, +117720,Af58,EA009,"Polygyny, non-sororal cohabit",EA009-6,,delafosse1899;ellis1914;mcculloch1950;ronnefeldt1935;thomas1916,,1900,Ethnology_Vol5_No3_Jul_1966, +117721,Af6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,forde1951;lloyd1955;schwab1955,"Yoruba, with special reference to the Oyo",1950,EthnographicAtlas_1967_p70, +117722,Af7,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,dunglas1939;hallouin1947;kobben1956;paulme1962,,1950,EthnographicAtlas_1967_p70, +117723,Af8,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,banfieldandmacintyre1915;forde1955;nadel1940;nadel1942;nadel1954,,1930,EthnographicAtlas_1967_p70, +117724,Af9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,clozelandvillamur1902;labouret1914;menalque1933,,1900,EthnographicAtlas_1967_p70, +117725,Ag1,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,dieterlen1951;dieterlenandcisse1972;henry1910;monteil1924;monteil1967;paques1954,Segou to Bamako on Niger River,1920,EthnographicAtlas_1967_p70, +117726,Ag10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,froelich1949b;froelichetal1963;manoukian1952b;tait1953;tait1956;tait1958,,1940,EthnographicAtlas_1967_p70, +117727,Ag11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,charles1911;haumant1929;labouret1931,,1910,EthnographicAtlas_1967_p70, +117728,Ag12,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,manoukian1952b;rattray1932;tauxier1912,,1910,EthnographicAtlas_1967_p70, +117729,Ag13,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,manoukian1952b;rattray1932;tauxier1912;zwernemann1963,,1910,EthnographicAtlas_1967_p70, +117730,Ag14,EA009,"Polygyny, non-sororal cohabit",EA009-6,,aberle1953;krader1963;meo1919;paulme1956;paulme1957;vladimirtsov1948,,1950,Ethnology_Vol5_No3_Jul_1966, +117731,Ag15,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +117732,Ag16,EA009,"Polygyny, non-sororal cohabit",EA009-6,"Entry follows Nogueira; Bernatzik reports code ""1"", independent nuclear families, monogamous",bernatzik1933;nogueira1947,,1930,EthnographicAtlas_1967_p70, +117733,Ag17,EA009,"Polygyny, non-sororal cohabit",EA009-6,,gomes1946,,1940,Ethnology_Vol5_No3_Jul_1966, +117734,Ag18,EA009,Limited polygyny,EA009-2,,bernatzik1933;bernatzik1944;santoslima1947,,1930,EthnographicAtlas_1967_p70, +117735,Ag19,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bernatzik1933;cunhataborde1950,with special reference to the Felup,1930,EthnographicAtlas_1967_p70, +117736,Ag2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,hammond1964;hammond1966;hammondnd;izardheritierandizard1959;tauxier1917;yatenga1950,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EthnographicAtlas_1967_p70, +117737,Ag20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bernatzik1933,,1930,Ethnology_Vol5_No3_Jul_1966, +117738,Ag21,EA009,Limited polygyny,EA009-2,,lestrange1950,,1910,EthnographicAtlas_1967_p70, +117739,Ag22,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,aujas1931;bourgeau1933;dulphy1939;fayet1939,with special reference to those of Sine,1920,EthnographicAtlas_1967_p70, +117740,Ag23,EA009,"Polygyny, non-sororal cohabit",EA009-6,,monteil1915,,1910,Ethnology_Vol5_No3_Jul_1966, +117741,Ag24,EA009,"Polygyny, non-sororal cohabit",EA009-6,,chevalier1909;kamaraanddrummond1930;thomas1916,,1910,Ethnology_Vol5_No3_Jul_1966, +117742,Ag25,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,berengerferaud1878;boyer1953;daniel1910;nicole1903;saintpere1925,,1900,EthnographicAtlas_1967_p70, +117743,Ag26,EA009,"Polygyny, non-sororal cohabit",EA009-6,,anonymous1939a;aubert1936;thomas1916,,1930,EthnographicAtlas_1967_p70, +117744,Ag27,EA009,"Polygyny, non-sororal cohabit",EA009-6,,tauxier1912;tauxier1921,,1910,EthnographicAtlas_1967_p70, +117745,Ag28,EA009,"Polygyny, non-sororal cohabit",EA009-6,,monteil1932,,1930,Ethnology_Vol5_No3_Jul_1966, +117746,Ag29,EA009,"Polygyny, non-sororal cohabit",EA009-6,,tauxier1917,,1910,Ethnology_Vol5_No3_Jul_1966, +117747,Ag3,EA009,Limited polygyny,EA009-2,,arnaud1921;dieterlen1956;griauleanddieterlen1954;paulme1940,,1930,EthnographicAtlas_1967_p70, +117748,Ag30,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cremer192427;guebhard1911;tauxier1912,,1910,EthnographicAtlas_1967_p70, +117749,Ag31,EA009,"Polygyny, non-sororal cohabit",EA009-6,,cheron1913;holas1957,,1910,EthnographicAtlas_1967_p70, +117750,Ag32,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,delafosse190809;holas1957;vendeix1935,,1900,EthnographicAtlas_1967_p70, +117751,Ag33,EA009,"Polygyny, non-sororal cohabit",EA009-6,,labouret1931,,1920,Ethnology_Vol5_No3_Jul_1966, +117752,Ag34,EA009,"Polygyny, non-sororal cohabit",EA009-6,,labouret1931;tauxier1931,,1930,Ethnology_Vol5_No3_Jul_1966, +117753,Ag35,EA009,"Polygyny, non-sororal cohabit",EA009-6,,tauxier1921,,1910,Ethnology_Vol5_No3_Jul_1966, +117754,Ag36,EA009,"Polygyny, non-sororal cohabit",EA009-6,,goody1956;goody1958,,1950,Ethnology_Vol5_No3_Jul_1966, +117755,Ag37,EA009,"Polygyny, non-sororal cohabit",EA009-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +117756,Ag38,EA009,"Polygyny, non-sororal cohabit",EA009-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +117757,Ag39,EA009,"Polygyny, non-sororal cohabit",EA009-6,,labouret1920;rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +117758,Ag4,EA009,"Polygyny, non-sororal separate quarters",EA009-5,Or fraternal joint families,fortes1937;fortes1938;fortes1940;fortes1945;fortes1949a;fortes1975;fortesandfortes1936;lynn1937;rattray1932,Tallensi Tribe,1930,EthnographicAtlas_1967_p70, +117759,Ag40,EA009,"Polygyny, non-sororal cohabit",EA009-6,,rattray1932;tauxier1912,,1910,Ethnology_Vol5_No3_Jul_1966, +117760,Ag41,EA009,"Polygyny, non-sororal cohabit",EA009-6,,manoukian1952b;rattray1932,,1920,EthnographicAtlas_1967_p70, +117761,Ag42,EA009,"Polygyny, non-sororal cohabit",EA009-6,,tauxier1912;tauxier1924b,,1910,Ethnology_Vol5_No3_Jul_1966, +117762,Ag43,EA009,"Polygyny, non-sororal cohabit",EA009-6,,rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +117763,Ag44,EA009,Limited polygyny,EA009-2,,duncanjohnstoneandblair1932;fisch1913;rattray1932,,1910,Ethnology_Vol5_No3_Jul_1966, +117764,Ag45,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cartry1966;castinel1945;menjaud1932,with special reference to those in the Diapaga region,1930,Ethnology_Vol6_No4_Oct_1967, +117765,Ag46,EA009,"Polygyny, non-sororal cohabit",EA009-6,,manoukian1952b;rattray1932,,1920,Ethnology_Vol5_No3_Jul_1966, +117766,Ag47,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,dimdelobosom1933;mangin1921;marc1909;skinner1958;skinner1964;tauxier1912,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EthnographicAtlas_1967_p74, +117767,Ag48,EA009,"Polygyny, non-sororal cohabit",EA009-6,,froelichetal1963;klose1899;klose1903;zech1899,,1890,EthnographicAtlas_1967_p74, +117768,Ag49,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,froelich1949a;froelichetal1963;puig1934,,1930,EthnographicAtlas_1967_p74, +117769,Ag5,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,goody1956;labouret1931;rattray1932,,1930,EthnographicAtlas_1967_p70, +117770,Ag50,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,asmis1912;froelichetal1963,,1910,Ethnology_Vol5_No3_Jul_1966, +117771,Ag51,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,mercier1950;mercier1953,,1940,Ethnology_Vol5_No3_Jul_1966, +117772,Ag52,EA009,"Polygyny, non-sororal cohabit",EA009-6,,froelichetal1963,,1950,Ethnology_Vol5_No3_Jul_1966, +117773,Ag53,EA009,"Polygyny, sororal separate quarters",EA009-4,,bernard1966,with special reference to those of Garango,1960,Ethnology_Vol6_No4_Oct_1967, +117774,Ag54,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,donald1968a;donald1968b;mcculloch1950;thomas1916,,1910,Ethnology_Vol10_No1_Jan_1971, +117775,Ag6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,durand1929;vieillard1939;vieillard1940,,1890,EthnographicAtlas_1967_p70, +117776,Ag7,EA009,"Polygyny, non-sororal cohabit",EA009-6,,malzy1946;ortoli1939,,1930,EthnographicAtlas_1967_p70, +117777,Ag8,EA009,Limited polygyny,EA009-2,But earlier sources report extended families,delacour191213;lestrange1950;techer1933,with special reference to the Coniagui,1910,EthnographicAtlas_1967_p70, +117778,Ag9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,labouret1934;sidibe1932,,1930,EthnographicAtlas_1967_p70, +117779,Ah1,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gunn1956;meek192829;meek1931b;smith1953,Zaria Province,1930,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117780,Ah10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gunn1953;meek1931b,,1920,Ethnology_Vol4_No3_Jul_1965, +117781,Ah11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gunnandconant1960,,1950,EthnographicAtlas_1967_p74, +117782,Ah12,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bynghall1909;clifford1944;gunnandconant1960,,1920,Ethnology_Vol5_No3_Jul_1966, +117783,Ah13,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,harris1938,with special reference to the Liliwa,1930,Ethnology_Vol5_No3_Jul_1966, +117784,Ah14,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gunnandconant1960,,1920,EthnographicAtlas_1967_p74, +117785,Ah15,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"Entry follows Harris; Gunn and Conant report that polygynous units live independently (i.e., related variable EA008 should be code ""5"")",gunnandconant1960;harris1930,,1920,EthnographicAtlas_1967_p74, +117786,Ah16,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fitzpatrick1910;mohr1958,,1900,Ethnology_Vol5_No3_Jul_1966, +117787,Ah17,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gunn1953,,1930,Ethnology_Vol5_No3_Jul_1966, +117788,Ah18,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bestnd,,1930,Ethnology_Vol5_No3_Jul_1966, +117789,Ah19,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gunn1953;smithnda;smithndb,,1930,EthnographicAtlas_1967_p74, +117790,Ah2,EA009,Limited polygyny,EA009-2,,meek1931a,,1920,EthnographicAtlas_1967_p74, +117791,Ah20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gunn1956;meek1931b;smith1951;smithnda;tremearne1912,,1920,EthnographicAtlas_1967_p74, +117792,Ah21,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gunn1956;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +117793,Ah22,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,ames1934;fitzpatrick1910;meek1931a;meek1931b;temple1922,,1900,Ethnology_Vol5_No3_Jul_1966, +117794,Ah23,EA009,Monogamous,EA009-1,,meek1931a;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +117795,Ah24,EA009,?,EA009-NA,,,,,, +117796,Ah25,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,kaberry1952;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966,"Comment: Murdock coded as ""Eg""; assume should be ""Eq""" +117797,Ah26,EA009,?,EA009-NA,,,,,, +117798,Ah27,EA009,?,EA009-NA,,,,,, +117799,Ah28,EA009,Limited polygyny,EA009-2,,meek1931b,with special reference to the Lekon subtribe,1920,Ethnology_Vol5_No3_Jul_1966, +117800,Ah29,EA009,Monogamous,EA009-1,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +117801,Ah3,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bohannan1952;bohannan1953;bohannan1954a;bohannan1954b;bohannan1954c;bohannan1955;bohannan1957a;bohannan1957b;bohannan1960;bohannan1965;bohannanandbohannan1953;bohannanandbohannan1957;bohannanandbohannan1958;bohannanandbohannan1968;bohannanandbohannan1969,Tar of Benue Province,1920,EthnographicAtlas_1967_p74, +117802,Ah30,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,meek1931b,,1920,EthnographicAtlas_1967_p74, +117803,Ah31,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,haughton1912;meek1931b,,1910,EthnographicAtlas_1967_p74, +117804,Ah32,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +117805,Ah33,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,meek1931b;temple1922,,1920,EthnographicAtlas_1967_p74, +117806,Ah34,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,meek1931b,with special reference to the Malabu,1920,Ethnology_Vol5_No3_Jul_1966, +117807,Ah35,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,helser1926;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +117808,Ah36,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lembezat1961;meek1931b,,1920,EthnographicAtlas_1967_p74, +117809,Ah37,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +117810,Ah38,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lembezat1950;lembezat1961;meek1931b,,1930,EthnographicAtlas_1967_p74, +117811,Ah39,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lembezat1952;lembezat1961,,1950,EthnographicAtlas_1967_p74, +117812,Ah4,EA009,Limited polygyny,EA009-2,,meek1931b;percival1938;rehfisch1960,,1920,EthnographicAtlas_1967_p74,"Assume Murdock comment refers to Col 12, not Col 14 as stated in Gray (1999)" +117813,Ah5,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,meek1931b;rowling1930,,1930,Ethnology_Vol1_No3_Jul_1962, +117814,Ah6,EA009,Limited polygyny,EA009-2,,dunn1956;meek1931b[189-219],,1920,Ethnology_Vol1_No4_Oct_1962, +117815,Ah7,EA009,Limited polygyny,EA009-2,"Or alternatively these polygynous units may live as minimally (stem) extended families (i.e., related variable EA008 should be code ""6"")",hinderling1955;lavergne1949;lembezat1961,,1940,EthnographicAtlas_1967_p74, +117816,Ah8,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lembezat1961;sieber1925;thorbecke1916,,1910,EthnographicAtlas_1967_p74, +117817,Ah9,EA009,"Polygyny, non-sororal cohabit",EA009-6,,diamond1964;gunn1953,,1920,EthnographicAtlas_1967_p74, +117818,Ai1,EA009,"Polygyny, sororal separate quarters",EA009-4,,daigre193232;leynaud1954,,1920,EthnographicAtlas_1967_p74, +117819,Ai10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,nadel1947,Nuba Hills,1940,EthnographicAtlas_1967_p74, +117820,Ai11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1924[111-183];hutereau1909;vanoverbergh1909,,1900,EthnographicAtlas_1967_p74, +117821,Ai12,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,foelich1956;lembezat1961;malzy1956,,1950,EthnographicAtlas_1967_p74, +117822,Ai13,EA009,"Polygyny, non-sororal cohabit",EA009-6,,tessmann1929,,1920,Ethnology_Vol5_No3_Jul_1966, +117823,Ai14,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lembezat1961;tessmann1929,,1920,EthnographicAtlas_1967_p74, +117824,Ai15,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,brussaux1907;lembezat1916a;martin1947,,1900,EthnographicAtlas_1967_p74, +117825,Ai16,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lembezat1916a;savini1937,,1910,Ethnology_Vol5_No3_Jul_1966, +117826,Ai17,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fourneau1938;lembezat1961,,1930,Ethnology_Vol5_No3_Jul_1966, +117827,Ai18,EA009,"Polygyny, non-sororal cohabit",EA009-6,,lebeuf1959,,1880,Ethnology_Vol5_No3_Jul_1966, +117828,Ai19,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,hagen1912;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +117829,Ai2,EA009,Limited polygyny,EA009-2,,nadel1950,,1940,Ethnology_Vol1_No1_Jan_1962, +117830,Ai20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lamouroux1913;lembezat1961,,1910,Ethnology_Vol5_No3_Jul_1966, +117831,Ai21,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,duvallee1925;gaden1909;lebeuf1959;nachtigal1881[539-765],,1880,EthnographicAtlas_1967_p74, +117832,Ai22,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,delafosse1897,,1890,EthnographicAtlas_1967_p74, +117833,Ai23,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,burssens1958;crabbeck1943;poutrin1910;tessmann1929,,1920,EthnographicAtlas_1967_p74, +117834,Ai24,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gaud1911;vergiat1937,,1900,Ethnology_Vol5_No3_Jul_1966, +117835,Ai25,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,burssens1958,,1950,Ethnology_Vol5_No3_Jul_1966, +117836,Ai26,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,burssens1958;nelson1951;tanghe1928,,1920,EthnographicAtlas_1967_p74, +117837,Ai27,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1924;nvs1896,,1890,Ethnology_Vol5_No3_Jul_1966, +117838,Ai28,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,delhaise1912,,1910,EthnographicAtlas_1967_p74, +117839,Ai29,EA009,Limited polygyny,EA009-2,,baxterandbutt1953;czekanowski1924[516-522];maenhaut1939;stuhlmann1894;vandeneynde1923,,1920,EthnographicAtlas_1967_p74, +117840,Ai3,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baxterandbutt1953;deschlippe1956;evanspritchard1932b;evanspritchard1937;evanspritchard1956;evanspritchard1957;evanspritchard1963;evanspritchard1971;evanspritchard1971;evanspritchard1974;larkin192627;legae1926;reining1966;schweinfurth1873;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p74, +117841,Ai30,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1924;vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +117842,Ai31,EA009,Limited polygyny,EA009-2,,baxterandbutt1953;czekanowski1924,,1920,Ethnology_Vol5_No3_Jul_1966, +117843,Ai32,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baxterandbutt1953;mcconnell1925;middleton1958;middleton1960;middleton1965,,1920,EthnographicAtlas_1967_p74, +117844,Ai33,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baxterandbutt1953;czekanowski1924;middleton1955,,1940,EthnographicAtlas_1967_p74, +117845,Ai34,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baxterandbutt1953;felkin1883;nalder1937;seligmanandseligman1932,,1880,Ethnology_Vol5_No3_Jul_1966, +117846,Ai35,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baxterandbutt1953;evanspritchard1929;schweinfurth1874[256-314],,1870,EthnographicAtlas_1967_p74, +117847,Ai36,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bernatzik1936;butt1952b;crazzolara1954;ghawi1924;manuel1965;santandrea194445,,1920,EthnographicAtlas_1967_p74, +117848,Ai37,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,nadel1947,,1940,Ethnology_Vol5_No3_Jul_1966, +117849,Ai38,EA009,Limited polygyny,EA009-2,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +117850,Ai39,EA009,Limited polygyny,EA009-2,,nadel1947,,1940,EthnographicAtlas_1967_p74, +117851,Ai4,EA009,Monogamous,EA009-1,,evanspritchard1927;seligmanandseligman1932,,1920,Ethnology_Vol1_No2_Apr_1962, +117852,Ai40,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,nadel1947,,1940,EthnographicAtlas_1967_p74, +117853,Ai41,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,nadel1947;seligmanandseligman1932,,1930,EthnographicAtlas_1967_p74, +117854,Ai42,EA009,Limited polygyny,EA009-2,,nadel1947;nadel1950,,1940,EthnographicAtlas_1967_p74, +117855,Ai43,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,nadel1947;stevenson1940,,1930,EthnographicAtlas_1967_p74, +117856,Ai44,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bacon1922;evanspritchard1940;evanspritchard1947;lienhardt195758,,1920,EthnographicAtlas_1967_p74, +117857,Ai45,EA009,"Polygyny, non-sororal separate quarters",EA009-5,But a group of brothers with their families form a hamlet,evanspritchard1932a;seligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +117858,Ai46,EA009,Limited polygyny,EA009-2,,corfield1938;grottanelli1948,,1930,EthnographicAtlas_1967_p74, +117859,Ai47,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cerulli1956;grottanelli1940;grottanelli1972,Northern division,1939,EthnographicAtlas_1967_p74, +117860,Ai5,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,czekanowski1924[400-467];vangeluwe1957,,1920,EthnographicAtlas_1967_p74, +117861,Ai6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,butt1952b;cann1929;dempsey1955;evanspritchard1948;hofmayr1925;howell1941;lienhardt1954;pumphrey1941;seligmanandseligman1932;westermann1912,Shilluk Kingdom,1900,EthnographicAtlas_1967_p74, +117862,Ai7,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,clozel1896;hartmann1927;poupon1915;tessmann193437,,1910,EthnographicAtlas_1967_p74, +117863,Ai8,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,hawkesworth1932;nadel1947,,1930,EthnographicAtlas_1967_p74, +117864,Ai9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,garine1964;lembezat1961;vonhagen1912,Around Yagoua in Cameroon,1910,EthnographicAtlas_1967_p74, +117865,Aj1,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lawrance1957,,1950,EthnographicAtlas_1967_p74, +117866,Aj10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,butt1952b;girling1960;grove1919;seligmanandseligman1932,,1920,Ethnology_Vol4_No2_Apr_1965, +117867,Aj11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cummins1904;howell1951;lienhardt1958;lienhardt1961;nebel1948;seligmanandseligman1932;stubbsandmorrison1938;titherington1927,,1900,EthnographicAtlas_1967_p78, +117868,Aj12,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,molinaro194041;nalder1937;seligmanandseligman1926;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +117869,Aj13,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,huntingford1953a;nalder1937;seligmanandseligman1932,,1930,Ethnology_Vol5_No3_Jul_1966, +117870,Aj14,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,huntingford1953a;nalder1937,,1931,Ethnology_Vol5_No3_Jul_1966, +117871,Aj15,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"Or these polygynous units may live as small extended families (i.e., code for related variable EA008 would be ""7"" instead of ""5"")",huntingford1953a;nalder1937;vandenplas1910;yunis1924,,1900,EthnographicAtlas_1967_p78, +117872,Aj16,EA009,Limited polygyny,EA009-2,,buxton1958;huntingford1953a;nalder1937,with special reference to the Riverain Mondari,1930,EthnographicAtlas_1967_p78, +117873,Aj17,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,demuenynck1908;southall1956;stirton1925;stuhlmann1894,,1890,EthnographicAtlas_1967_p78, +117874,Aj18,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,jensen1959,,1950,EthnographicAtlas_1967_p78, +117875,Aj19,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,driberg1922;driberg1925a;driberg1932,,1920,EthnographicAtlas_1967_p78, +117876,Aj2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baumann1894;fosbrooke1948;hollis1905;huntingford1953b;merker1904,Kisonko or Southern Masai of Tanzania,1900,EthnographicAtlas_1967_p78, +117877,Aj20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cerulli1956;lyth1947;pauli1950,,1940,EthnographicAtlas_1967_p78, +117878,Aj21,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gulliver1953;gulliver1955;gulliver1965;gulliverandgulliver1953;wayland1931,,1930,EthnographicAtlas_1967_p78, +117879,Aj22,EA009,?,EA009-NA,,,,,, +117880,Aj23,EA009,"Polygyny, non-sororal separate quarters",EA009-5,But the band is essentially an extended family,beech1911;huntingford1953b;peristiany1951;schneider1957a;schneider1957b,,1950,EthnographicAtlas_1967_p78, +117881,Aj24,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,gulliverandgulliver1953;nalder1937,,1930,EthnographicAtlas_1967_p78, +117882,Aj25,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,huntingford1953b;massam1927,,1920,Ethnology_Vol5_No3_Jul_1966, +117883,Aj26,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,barton1921;beech1911;huntingford1953b;peristiany1954;schneider1957a,,1910,EthnographicAtlas_1967_p78, +117884,Aj27,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,roscoe1924,,1920,Ethnology_Vol5_No3_Jul_1966, +117885,Aj28,EA009,"Polygyny, non-sororal separate quarters",EA009-5,But extended families tend to form units within a camp,baumann1894;huntingford1953b;klima1964;wilson195253,,1940,Ethnology_Vol5_No3_Jul_1966, +117886,Aj29,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,spencer1965,,1950,Ethnology_Vol5_No4_Oct_1966, +117887,Aj3,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,evanspritchard1936;evanspritchard1940a;evanspritchard1940b;evanspritchard1950b;jackson1923;seligmanandseligman1932;tucker1933,,1930,EthnographicAtlas_1967_p78, +117888,Aj30,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,dysonhudson1963;gulliverandgulliver1953,,1950,Ethnology_Vol7_No1_Jan_1968, +117889,Aj31,EA009,?,EA009-NA,,,,,, +117890,Aj4,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,driberg1923;hayley1947,,1920,EthnographicAtlas_1967_p78, +117891,Aj5,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,elmley1927;gulliver1951;gulliver1955;rayne1919;white1920,,1920,EthnographicAtlas_1967_p78, +117892,Aj6,EA009,"Polygyny, sororal separate quarters",EA009-4,,butt1952a;evanspritchard1949a;evanspritchard1950a;hartmann1928;hobley1902;owen1933;shaw1932;southall1952,,1940,EthnographicAtlas_1967_p78, +117893,Aj7,EA009,Limited polygyny,EA009-2,"Formerly code ""5"", indendent polygynous units with non-sororal co-wives in separate dwellings",hollis1909;huntingford1950;huntingford1953b;huntingford1953c;snell1954,,1910,EthnographicAtlas_1967_p78, +117894,Aj8,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,beaton1936;huntingford1953a;owen1908;seligmanandseligman1928;seligmanandseligman1932,,1920,EthnographicAtlas_1967_p78, +117895,Aj9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,barton1923;huntingford1953b;peristiany1938,,1920,EthnographicAtlas_1967_p78, +117896,Ca1,EA009,Limited polygyny,EA009-2,,cerulli1956;hallpike1969;jensen1936;kluckhohn1962,Town of Buso,1930,Ethnology_Vol10_No1_Jan_1971, +117897,Ca10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"Entry follows Lewis; Paulitschke reports that polygynous units live independently (i.e., related variable EA008 should be code ""5"")",hildebrandt1875;lewis1955;paulitschke1888,,1880,Ethnology_Vol5_No2_Apr_1966, +117898,Ca11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,huntingford1955b;paulitschke189396b,,1890,EthnographicAtlas_1967_p78, +117899,Ca12,EA009,Limited polygyny,EA009-2,,cecchi188587;cerulli193233;huntingford1955b;onnekin1956,,1880,EthnographicAtlas_1967_p78, +117900,Ca13,EA009,Limited polygyny,EA009-2,,huntingford1955b;knutsson1963;knutsson1967,with special reference to the eastern Macha,1950,EthnographicAtlas_1967_p78, +117901,Ca14,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cerulli1956;fleming1965,,1950,EthnographicAtlas_1967_p78, +117902,Ca15,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +117903,Ca16,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cerulli1956;jensen1936,,1930,EthnographicAtlas_1967_p78, +117904,Ca17,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +117905,Ca18,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cerulli1956;jensen1959;ricci1950,,1940,Ethnology_Vol5_No2_Apr_1966, +117906,Ca19,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fleming1965;jensen1959,,1950,EthnographicAtlas_1967_p78, +117907,Ca2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lewis1955;lewis1957;lewis1961;lewis1962b;lewis1962c;lewis1965a;paulitschke1888;puccioni1936,Dolbahanta clan or subtribe,1950,EthnographicAtlas_1967_p78, +117908,Ca20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cerulli1956;hohnel1890;nalder1937,,1890,Ethnology_Vol5_No2_Apr_1966, +117909,Ca21,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fleming1965;jensen1959;ricci1952,,1950,Ethnology_Vol5_No2_Apr_1966, +117910,Ca22,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +117911,Ca23,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,jensen1959,,1950,EthnographicAtlas_1967_p78, +117912,Ca24,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +117913,Ca25,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,jensen1959,,1950,Ethnology_Vol5_No2_Apr_1966, +117914,Ca26,EA009,?,EA009-NA,,,,,, +117915,Ca27,EA009,Limited polygyny,EA009-2,,cerulli1956;grottanelli1940,,1930,Ethnology_Vol5_No2_Apr_1966, +117916,Ca28,EA009,Limited polygyny,EA009-2,,cerulli1956;jensen1959,,1950,EthnographicAtlas_1967_p78, +117917,Ca29,EA009,Limited polygyny,EA009-2,,huntingford1955b;straube1963,,1920,EthnographicAtlas_1967_p78, +117918,Ca3,EA009,Monogamous,EA009-1,,fischer1957b;munzinger1864;nadel1946,,1950,EthnographicAtlas_1967_p78, +117919,Ca30,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bieber192023;cerulli193233;huntingford1955b,Kafa Kingdom,1890,EthnographicAtlas_1967_p78, +117920,Ca31,EA009,Monogamous,EA009-1,,flad1860;leslau1951;leslau1957;stern1862,,1860,EthnographicAtlas_1967_p78, +117921,Ca32,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +117922,Ca33,EA009,Limited polygyny,EA009-2,,grottanelliandmassari1943;munzinger1864;pollera1913;tucci1950,,1860,EthnographicAtlas_1967_p78, +117923,Ca34,EA009,Limited polygyny,EA009-2,,klunzinger1876;murray1923;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +117924,Ca35,EA009,Limited polygyny,EA009-2,,clark1938;sandars1935,,1930,Ethnology_Vol5_No2_Apr_1966, +117925,Ca36,EA009,Limited polygyny,EA009-2,,munzinger1864;nadel1945;paul1950,,1860,Ethnology_Vol5_No2_Apr_1966, +117926,Ca37,EA009,Limited polygyny,EA009-2,,munzinger1859,Bogo Tribe,1850,Ethnology_Vol5_No2_Apr_1966, +117927,Ca38,EA009,Limited polygyny,EA009-2,,littman1910;munzinger1864,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,Ethnology_Vol5_No2_Apr_1966, +117928,Ca39,EA009,"Polygyny, non-sororal cohabit",EA009-6,,lewis1965b,,1930,EthnographicAtlas_1967_p78, +117929,Ca4,EA009,Limited polygyny,EA009-2,,huntingford1953b;winter1955;winterandmolyneaux1963,,1950,EthnographicAtlas_1967_p78, +117930,Ca40,EA009,"Polygyny, non-sororal cohabit",EA009-6,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +117931,Ca41,EA009,Limited polygyny,EA009-2,,straube1957;straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +117932,Ca42,EA009,"Polygyny, non-sororal cohabit",EA009-6,,straube1963,,1950,Ethnology_Vol6_No4_Oct_1967, +117933,Ca43,EA009,?,EA009-NA,,,,,, +117934,Ca5,EA009,Limited polygyny,EA009-2,,clark1938;murray1935;sandars1933,,1930,EthnographicAtlas_1967_p78, +117935,Ca6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lewis1955;lucas1935;paulitschke189396a;scaramucciandgiglioli1884,,1880,EthnographicAtlas_1967_p78, +117936,Ca7,EA009,Monogamous,EA009-1,The extended family occupies a hamlet,lipsky1962;messing1957,Gondar district,1950,EthnographicAtlas_1967_p78, +117937,Ca8,EA009,?,EA009-NA,,,,,, +117938,Ca9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,baumann1894;huntingford1953b;reche1914,,1890,Ethnology_Vol5_No2_Apr_1966, +117939,Cb1,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,greenberg1946;greenberg1947,,1940,Ethnology_Vol1_No1_Jan_1962, +117940,Cb10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,meek1931b,,1920,Ethnology_Vol4_No2_Apr_1965, +117941,Cb11,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,lampen1925;macmichael1912;macmichael1918;macmichael1922[58-64],,1900,Ethnology_Vol5_No2_Apr_1966, +117942,Cb12,EA009,?,EA009-NA,,,,,, +117943,Cb13,EA009,"Polygyny, non-sororal cohabit",EA009-6,,lampen1933,,1930,Ethnology_Vol5_No2_Apr_1966, +117944,Cb14,EA009,"Polygyny, non-sororal cohabit",EA009-6,,lagrange1913;martine1924,,1910,Ethnology_Vol5_No2_Apr_1966, +117945,Cb15,EA009,"Polygyny, non-sororal separate quarters",EA009-5,The extended family is the camp group,cunnison1954;henderson1939,with special reference to the Humr,1940,Ethnology_Vol6_No4_Oct_1967, +117946,Cb16,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bouille1937;devallee1925,,1920,Ethnology_Vol5_No2_Apr_1966, +117947,Cb17,EA009,Limited polygyny,EA009-2,,barth1967;beaton1948;felkin1885;macmichael1922[91-121];tunisi1845,Jebel Marra,1880,EthnographicAtlas_1967_p78, +117948,Cb18,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bouille1937;carbou1912;lebeuf1959,,1930,EthnographicAtlas_1967_p78, +117949,Cb19,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,cohen1960;cohen1961;cohen1967;denhamandclapperton1826;nachtigal1881;schultze1913,,1870,EthnographicAtlas_1967_p78, +117950,Cb2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,ames1953;ames1959a;ames1959b;ames1962;falad1963;gailey1965;gamble1957;gray1966;irvine1973;trimingham1962,Upper and lower Salum in Gambia,1950,EthnographicAtlas_1967_p78, +117951,Cb20,EA009,"Polygyny, non-sororal cohabit",EA009-6,,dupicq1931;robin1947,,1920,Ethnology_Vol5_No2_Apr_1966, +117952,Cb21,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,pfeffer1936,,1930,EthnographicAtlas_1967_p82, +117953,Cb22,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,coutouly1923;delmond1953,,1920,Ethnology_Vol5_No3_Jul_1966, +117954,Cb23,EA009,"Polygyny, non-sororal cohabit",EA009-6,,kane1939;lafont1939,,1930,EthnographicAtlas_1967_p82, +117955,Cb24,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,dupire1962a;dupire1962b;dupire1963;hopen1958;johnson1967;riesman1977;stcroix1972;stenning1958;stenning1959;stenning1965,Wodaabe of Niger,1950,EthnographicAtlas_1967_p82, +117956,Cb25,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,anonymous1939,,1930,Ethnology_Vol5_No3_Jul_1966, +117957,Cb26,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,dry1956;greenberg1946;greenberg1947;hill1972;prothero1957;smith1954a;smith1955b;smith1960;smith1962;smith1965;smith1967;smith1978b,Zazzagawa of Zaria,1950,EthnographicAtlas_1967_p82, +117958,Cb27,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fegan1930;meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +117959,Cb28,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +117960,Cb29,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,meek1931b,,1920,Ethnology_Vol5_No3_Jul_1966, +117961,Cb3,EA009,Limited polygyny,EA009-2,,jacquemond1959;miner1953;prost1954;prost1970;rouch1954;rouch1960;sarr1973,Bamba division,1940,EthnographicAtlas_1967_p78, +117962,Cb4,EA009,"Polygyny, non-sororal cohabit",EA009-6,"Extended families are quite possible, though unreported",reid1930,,1920,EthnographicAtlas_1967_p78, +117963,Cb5,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bouille1937;lebeuf1959;talbot1911,,1910,EthnographicAtlas_1967_p78, +117964,Cb6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,woodnd,,1920,EthnographicAtlas_1967_p78, +117965,Cb7,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,meek1931b[288-310],,1920,EthnographicAtlas_1967_p78, +117966,Cb8,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,faidherbe1882;fordeandscott1946;stcroix1944;stenning1959;wilsonhaffenden1925,with special reference to the Bororo Fulani of Skoto,1920,EthnographicAtlas_1967_p78, +117967,Cb9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,fordeandscott1946;smith1955a,"Hausa, with special reference to the Kanawa",1940,EthnographicAtlas_1967_p78, +117968,Cc1,EA009,Limited polygyny,EA009-2,,briggs1958;carobaroja1955;cauneille1950,,1950,EthnographicAtlas_1967_p82, +117969,Cc10,EA009,Limited polygyny,EA009-2,,jean1909;joubert1939;nicolaisen1963;nicolas1950;rodd1926,,1900,EthnographicAtlas_1967_p82, +117970,Cc11,EA009,Monogamous,EA009-1,,duveyrier1864,,1860,Ethnology_Vol5_No2_Apr_1966, +117971,Cc12,EA009,Monogamous,EA009-1,,cortier1908,,1944,Ethnology_Vol5_No2_Apr_1966, +117972,Cc13,EA009,Monogamous,EA009-1,,coutouly1923;gaalon1939,,1920,Ethnology_Vol5_No2_Apr_1966, +117973,Cc14,EA009,Limited polygyny,EA009-2,,bouille1937;carbou1912;chapelle1957b;cline1950;lebeuf1959;lecoeur1956;nachtigal1881[115-150],,1880,Ethnology_Vol6_No4_Oct_1967, +117974,Cc15,EA009,?,EA009-NA,,,,,, +117975,Cc16,EA009,"Polygyny, non-sororal cohabit",EA009-6,,briggs1958;darmagnac1934,,1930,EthnographicAtlas_1967_p82, +117976,Cc17,EA009,Limited polygyny,EA009-2,,carobaroja1955;lotte1939,,1930,EthnographicAtlas_1967_p82, +117977,Cc18,EA009,Monogamous,EA009-1,But the camp group is an extended family,salvy1951;tauxier1912,,1910,Ethnology_Vol5_No2_Apr_1966, +117978,Cc19,EA009,Monogamous,EA009-1,,dubie1953;martv1919,,1950,Ethnology_Vol5_No2_Apr_1966, +117979,Cc2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,briggs1958;chapelle1957a;cline1950;fuchs1956;lecoeur1950;nachtigal1879,Nomads of Tibesti,1950,EthnographicAtlas_1967_p82, +117980,Cc20,EA009,Monogamous,EA009-1,,adeler1939;tauxier1912,with special reference to the more nomadic northern groups,1910,EthnographicAtlas_1967_p82, +117981,Cc3,EA009,Limited polygyny,EA009-2,,abdallah1917;belgrave1923;cline1936,inhabitants of the oasis of Siwa,1920,EthnographicAtlas_1967_p82, +117982,Cc4,EA009,Monogamous,EA009-1,,goichon1927;mercier1922,,1920,EthnographicAtlas_1967_p82, +117983,Cc5,EA009,Monogamous,EA009-1,But polygyny is practiced by the Bella serfs,aymard1911;miner1953;said1903;zeltner1914,,1910,EthnographicAtlas_1967_p82, +117984,Cc6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,parkyns1951;seligmanandseligman1918,,1910,Ethnology_Vol4_No1_Jan_1965, +117985,Cc7,EA009,Limited polygyny,EA009-2,,miner1953,Timbuctoo,1950,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +117986,Cc8,EA009,Monogamous,EA009-1,,hourst1899,,1890,Ethnology_Vol5_No2_Apr_1966, +117987,Cc9,EA009,Monogamous,EA009-1,,benhazera1908;briggs1958;lhote1955and1944;nicolaisen1959;nicolaisen1963,Ahaggaren tribe,1920,EthnographicAtlas_1967_p82, +117988,Cd1,EA009,Limited polygyny,EA009-2,,callenderandelguindi1971;fernea1966;herzog1957;kennedy1977;schafer1935,Kenuzi Nubians of Dahmit,1920,EthnographicAtlas_1967_p82, +117989,Cd10,EA009,Monogamous,EA009-1,Extended families are suggested rather than attested,destaing190711;moulieras1905,,1900,Ethnology_Vol5_No2_Apr_1966, +117990,Cd11,EA009,Monogamous,EA009-1,,cook1900;espinosa1907;gambier1894,,1500,EthnographicAtlas_1967_p82, +117991,Cd12,EA009,Limited polygyny,EA009-2,,bel1908;bernard1929;villot1875;vollenhoven1903,,1870,EthnographicAtlas_1967_p82, +117992,Cd13,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bardin1944;despois1940;ubachandrackow1923,,1930,Ethnology_Vol5_No2_Apr_1966, +117993,Cd14,EA009,Limited polygyny,EA009-2,,bernard1929;villot1875,,1870,Ethnology_Vol5_No2_Apr_1966, +117994,Cd15,EA009,Monogamous,EA009-1,,michauxbellaire1911;rackow1958,,1910,Ethnology_Vol5_No2_Apr_1966, +117995,Cd16,EA009,Limited polygyny,EA009-2,,michauxbellaire1932,with special reference to those in the hinterlandof Casablanca,1930,Ethnology_Vol5_No2_Apr_1966, +117996,Cd17,EA009,Limited polygyny,EA009-2,But the band is a patrilocal extended family,ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +117997,Cd18,EA009,Limited polygyny,EA009-2,,kennett1925;murray1935,,1920,Ethnology_Vol5_No2_Apr_1966, +117998,Cd19,EA009,Limited polygyny,EA009-2,,despois1940;ubachandrackow1923,,1920,Ethnology_Vol5_No2_Apr_1966, +117999,Cd2,EA009,Limited polygyny,EA009-2,,ammar1954;ayrout1945;blackman1927;harris1957,Town and environs of Silwa,1950,EthnographicAtlas_1967_p82, +118000,Cd20,EA009,"Polygyny, non-sororal cohabit",EA009-6,,evanspritchard1949b,,1940,Ethnology_Vol5_No2_Apr_1966, +118001,Cd21,EA009,Limited polygyny,EA009-2,,bonniard1934;despois1930,,1930,Ethnology_Vol5_No2_Apr_1966, +118002,Cd3,EA009,Limited polygyny,EA009-2,,coon1931;hart1954;hart1976;moulieras1895,Entirety: Moroccan,1920,EthnographicAtlas_1967_p82, +118003,Cd4,EA009,Limited polygyny,EA009-2,,bourdieu1966;hanoteauandletourneaux1893;maunier1930,,1890,EthnographicAtlas_1967_p82, +118004,Cd5,EA009,Monogamous,EA009-1,,montagne1927;montagne1930;ubachandrackow1923,with special reference to those of the Grand Atlas Mountains,1920,EthnographicAtlas_1967_p82, +118005,Cd6,EA009,Monogamous,EA009-1,,budge1926;erman1923;kees1923;montet1946,with special reference to the New Empire,-1400,EthnographicAtlas_1967_p82, +118006,Cd7,EA009,Limited polygyny,EA009-2,,bourilly1932;celerier1927;laoust1915;michauxbellaire1920;piquet1925;querleux1915,with special reference to the Zemmur tribe,1910,Ethnology_Vol5_No2_Apr_1966, +118007,Cd8,EA009,Monogamous,EA009-1,,gaudry1929;hiltonsimpson1921;stuhlmann1912,,1910,Ethnology_Vol5_No2_Apr_1966, +118008,Cd9,EA009,Monogamous,EA009-1,,justinard1908,,1900,Ethnology_Vol5_No2_Apr_1966, +118009,Ce1,EA009,"Polygyny, non-sororal cohabit",EA009-6,,coon1950;durham1909;durham1928;hasluck1954;lane1923;pisko1896,Mountain Gheg of No. Albania,1900,EthnographicAtlas_1967_p82, +118010,Ce2,EA009,Monogamous,EA009-1,,atkinson1953;dias1953;entwistle1953,with special reference to the village of Rio de Onor in the extreme northeast,1950,Ethnology_Vol4_No3_Jul_1965, +118011,Ce3,EA009,Monogamous,EA009-1,,abbott1917;balsdon1963;balsdon1969;carcopino1940;davis1959;friedlander1908;glover1927;grant1960;harrison1913;maxey1938;paoli1963;pellisson1901;pliny1969;rostovtzeff1945,City and environs of Rome,100,Ethnology_Vol7_No2_Apr_1968, +118012,Ce4,EA009,Monogamous,EA009-1,,carobaroja1944;carobaroja1958;douglass1969;greenwood1971;madariaga1940,Labourd,1930,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118013,Ce5,EA009,Monogamous,EA009-1,,parsons1964,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EthnographicAtlas_1967_p82, +118014,Ce6,EA009,Monogamous,EA009-1,,pittrivers1954,with special reference to the inhabitants of Andalusia,1950,EthnographicAtlas_1967_p82, +118015,Ce7,EA009,Monogamous,EA009-1,,firedl1962,with special reference to the village of Vasilika,1950,EthnographicAtlas_1967_p82, +118016,Ce8,EA009,Monogamous,EA009-1,,carobaroja1944;douglass1967,with special reference to the village of Vera,1934,Ethnology_Vol10_No1_Jan_1971, +118017,Cf1,EA009,Monogamous,EA009-1,,murdocknd,Small City in Connecticut,1920,EthnographicAtlas_1967_p82, +118018,Cf2,EA009,Monogamous,EA009-1,,fisher1900;keane1900;lobb1937;walker1928,of the Transvaal,1850,Ethnology_Vol1_No2_Apr_1962, +118019,Cf3,EA009,Monogamous,EA009-1,,munch1945,,1930,EthnographicAtlas_1967_p82, +118020,Cf4,EA009,Monogamous,EA009-1,,pierson1951,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EthnographicAtlas_1967_p82, +118021,Cf5,EA009,Monogamous,EA009-1,,miner1939,,1930,EthnographicAtlas_1967_p82, +118022,Cg1,EA009,Monogamous,EA009-1,,coon1939;keurandkeur1955,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EthnographicAtlas_1967_p82, +118023,Cg2,EA009,Monogamous,EA009-1,,dasent1861;johnson1930;merrill1964,,1100,EthnographicAtlas_1967_p82, +118024,Cg3,EA009,Monogamous,EA009-1,,arensbergandkimball1940;cresswell1969;evans1957;kane1970;kane1972;odonoghue1958,County Clare,1930,EthnographicAtlas_1967_p82, +118025,Cg4,EA009,Monogamous,EA009-1,,bernatzik1938;collinder1949;haglund1935;karsten1955;manker1953;minn1955;pehrson1951;pehrson1954;pehrson1957;whitaker1955,Konkama District,1950,EthnographicAtlas_1967_p82, +118026,Cg5,EA009,Monogamous,EA009-1,,turneyhigh1953,,1950,Ethnology_Vol1_No3_Jul_1962, +118027,Ch1,EA009,Monogamous,EA009-1,,coon1949;halpern1956;halpern1957,with special reference to the village of Orasac,1950,EthnographicAtlas_1967_p82, +118028,Ch10,EA009,Monogamous,EA009-1,,cotlarciuc1913,,1910,Ethnology_Vol7_No1_Jan_1968, +118029,Ch11,EA009,Monogamous,EA009-1,,altandalt1959;benet1970;black1960;dunn1971a;dunn1971b;dunnanddunn1963;dunnanddunn1967;fainsod1958;fitzsimmons1957;maceandmace1963;schapiro1960,Viriatino Village,1955,Ethnology_Vol10_No1_Jan_1971, +118030,Ch2,EA009,Monogamous,EA009-1,,kaindl1894;koenig1935;szuchiewicz190208,,1890,EthnographicAtlas_1967_p82, +118031,Ch3,EA009,Monogamous,EA009-1,,hajda1955;pospisilnd,with special reference to the Hana district of central Moravia,1940,EthnographicAtlas_1967_p82, +118032,Ch4,EA009,Monogamous,EA009-1,,heffner1955;wichmann1913,,1900,EthnographicAtlas_1967_p82, +118033,Ch5,EA009,Monogamous,EA009-1,"Formerly monogamous families were organized as part of large extended families (i.e., related variable EA008 would have been coded ""8"")",sanders1949;vatez1904,with special reference to the village of Dragelevtsy,1940,EthnographicAtlas_1967_p82, +118034,Ch6,EA009,Monogamous,EA009-1,,ember1954,,1910,EthnographicAtlas_1967_p82, +118035,Ch7,EA009,Monogamous,EA009-1,,friedrich1954,,1930,EthnographicAtlas_1967_p82, +118036,Ch8,EA009,Monogamous,EA009-1,,hanzeli1955,,1940,EthnographicAtlas_1967_p82, +118037,Ch9,EA009,Monogamous,EA009-1,,maciuika1955,,1930,EthnographicAtlas_1967_p82, +118038,Ci1,EA009,Monogamous,EA009-1,,aberle1953;adelmannd,with special reference to the Baga Dorbed group,1920,EthnographicAtlas_1967_p82, +118039,Ci10,EA009,Monogamous,EA009-1,,haxthausen1854;karst190707;klidschian1911;kohler1906,Vicinity of Erevan,1900,EthnographicAtlas_1967_p82, +118040,Ci11,EA009,Limited polygyny,EA009-2,,barth1953;hansen1961;leach1938;longrigg1953;masters1953,,1940,EthnographicAtlas_1967_p82, +118041,Ci12,EA009,Limited polygyny,EA009-2,,byhan1926;dzhanashvili1894;lotz1956;luzbetak1951,Abkhaz Tribe,1880,Ethnology_Vol19_No2_Apr_1980, +118042,Ci2,EA009,Limited polygyny,EA009-2,,grigolia1939,,1930,EthnographicAtlas_1967_p82, +118043,Ci3,EA009,Limited polygyny,EA009-2,,gadzhieva1958,with special reference to the Kayakent group of eastern Dagestan,1900,EthnographicAtlas_1967_p82, +118044,Ci4,EA009,"Polygyny, non-sororal cohabit",EA009-6,,castagne1929;ladysenskij1929,,1920,EthnographicAtlas_1967_p82, +118045,Ci5,EA009,Limited polygyny,EA009-2,,hanson1955;lerner1958;makal1954;pierce1964;stirling1953;stirling1963;stirling1965;yasa1957,Northern Anatolian Plateau,1950,Ethnology_Vol10_No1_Jan_1971, +118046,Ci6,EA009,Limited polygyny,EA009-2,,kovalevsky1888;kovalevsky1893;nioradze1923,,1880,EthnographicAtlas_1967_p82, +118047,Ci7,EA009,"Polygyny, non-sororal cohabit",EA009-6,,lotz1956;plaetschke1929,,1900,EthnographicAtlas_1967_p82, +118048,Ci8,EA009,Monogamous,EA009-1,,abasadse1894;allen1932;haxthausen1854,,1850,Ethnology_Vol5_No2_Apr_1966, +118049,Ci9,EA009,Monogamous,EA009-1,,grigolia1939,,1910,Ethnology_Vol5_No2_Apr_1966, +118050,Cj1,EA009,Limited polygyny,EA009-2,,sweet1960,with special reference to the village of Tell Toqaan,1950,EthnographicAtlas_1967_p82, +118051,Cj10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,salim1962;thesiger1964,with special reference to the village of ech-Chibayish,1950,EthnographicAtlas_1967_p86, +118052,Cj2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,ashkenazi1948;musil1928;raswan1947,Unspecified,1920,EthnographicAtlas_1967_p82, +118053,Cj3,EA009,Limited polygyny,EA009-2,,balyn1957;bright1959;dalman1932;devaux1961;forbes1964;holybiblend;noth1966;patai1961,,-800,EthnographicAtlas_1967_p86, +118054,Cj4,EA009,Limited polygyny,EA009-2,But concubinage occurred,contenau1954;delaporte1925;driverandmiles195255;gadd1965;saggs1962;saggs1965;thompson1923,City and environs of Babylon,-2000,EthnographicAtlas_1967_p86, +118055,Cj5,EA009,Limited polygyny,EA009-2,,dickson1949,,1930,EthnographicAtlas_1967_p86, +118056,Cj6,EA009,Limited polygyny,EA009-2,,granqvist193135;harris1958,with special reference to the sedentary population,1950,Ethnology_Vol2_No2_Apr_1963, +118057,Cj7,EA009,Monogamous,EA009-1,But commonly Fm elsewhere in Lebanon,davies1949;gulick1953;gulick1955;gulick1956;patai1956;prothro1961;tannous1949;touma1958,with special reference to the village of Munsif,1950,EthnographicAtlas_1967_p86, +118058,Cj8,EA009,Monogamous,EA009-1,,kasdan1961;kasdan1965,with special reference to those of Mount Carmel in Israel,1930,EthnographicAtlas_1967_p86, +118059,Cj9,EA009,"Polygyny, non-sororal cohabit",EA009-6,,hazard1956,,1950,Ethnology_Vol5_No2_Apr_1966, +118060,Ea1,EA009,Limited polygyny,EA009-2,,bordiend;wilber1964,,1950,EthnographicAtlas_1967_p86, +118061,Ea10,EA009,"Polygyny, non-sororal cohabit",EA009-6,,pehrson1966,with special reference to the more nomadic groups,1950,Ethnology_Vol6_No4_Oct_1967, +118062,Ea11,EA009,Limited polygyny,EA009-2,,broadfoot1885;wilber1962,with special reference to the Ghilzai tribe,1950,Ethnology_Vol7_No3_Jul_1968, +118063,Ea12,EA009,Monogamous,EA009-1,,garrod1946a;garrod1946b,,1940,Ethnology_Vol7_No3_Jul_1968, +118064,Ea13,EA009,Monogamous,EA009-1,,callardandwheeler1963;dass1954;eglar1957;eglar1960;honigmann1957;honigmann1958;kennedy1957;palmer1961;symonds1950;wilbur1964,Mohla Village,1950,Ethnology_Vol10_No1_Jan_1971, +118065,Ea2,EA009,Limited polygyny,EA009-2,,barth1956a;barth1959;honigmann1953,with special reference to the Yusufsai of Swat,1950,EthnographicAtlas_1967_p86, +118066,Ea3,EA009,Limited polygyny,EA009-2,,bacon1958;hudsonandbeacon1941;schurmann1962;wilber1956,with special reference to the Urazgani,1930,EthnographicAtlas_1967_p86, +118067,Ea4,EA009,Limited polygyny,EA009-2,,barth1956b,,1950,EthnographicAtlas_1967_p86, +118068,Ea5,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,robertson1896;wilber1956,,1890,EthnographicAtlas_1967_p86, +118069,Ea6,EA009,Limited polygyny,EA009-2,,barth1961;barth1964,Nomadic branch,1958,EthnographicAtlas_1967_p86, +118070,Ea7,EA009,Limited polygyny,EA009-2,,schurmann1962,,1950,EthnographicAtlas_1967_p86, +118071,Ea8,EA009,?,EA009-NA,,,,,, +118072,Ea9,EA009,Limited polygyny,EA009-2,,vreeland1957,,1950,EthnographicAtlas_1967_p86, +118073,Eb1,EA009,"Polygyny, non-sororal cohabit",EA009-6,,castagn1930;grodekov1889;hudson1938;murdock1934b[135-162];radloff1893;sedelnikov1903,Great Horde,1910,EthnographicAtlas_1967_p86, +118074,Eb2,EA009,Limited polygyny,EA009-2,,krader1963;schram1954,,1920,EthnographicAtlas_1967_p86, +118075,Eb3,EA009,Monogamous,EA009-1,,ballis1956;friters1949;maiskii1921;rupen1956;vreeland1954,Narobanchin Territory,1940,EthnographicAtlas_1967_p86, +118076,Eb4,EA009,Monogamous,EA009-1,,vreeland1954,with special reference to the Botaha area,1940,Ethnology_Vol1_No3_Jul_1962, +118077,Eb5,EA009,Limited polygyny,EA009-2,,freikin1954;odonovan1882,with special reference to the sedentary Teke of the Merv oasis,1910,Ethnology_Vol1_No3_Jul_1962, +118078,Eb6,EA009,Limited polygyny,EA009-2,,krader1954a;krader1954b;krader1957;krader1963,with special reference to those southeast of Lake Baikal,1900,Ethnology_Vol2_No1_Jan_1963, +118079,Eb7,EA009,Monogamous,EA009-1,,krader1954b;vreeland1954,,1930,EthnographicAtlas_1967_p86, +118080,Eb8,EA009,"Polygyny, non-sororal cohabit",EA009-6,,zadykhina1952,with special reference to the Kongrat tribe,1800,Ethnology_Vol7_No1_Jan_1968, +118081,Ec1,EA009,Limited polygyny,EA009-2,,chard1961;hawes1903;ivanovetal1964;schrenck1881;seeland1882;shternberg1933a,Sakhalin Island,1920,EthnographicAtlas_1967_p86, +118082,Ec10,EA009,Limited polygyny,EA009-2,,ahlqvist1885;harva193940;rabot1889;steinitz1938,with special reference to those on the Ob River,1880,EthnographicAtlas_1967_p86, +118083,Ec11,EA009,Limited polygyny,EA009-2,,donner1932;donner1954,,1900,Ethnology_Vol7_No1_Jan_1968, +118084,Ec2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,chodzidlo1951;gayton1948b;jochelson1933;priklonskii1953;sumner1901,with special reference to the Yakutsk district,1900,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118085,Ec3,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,bogoras1901a;bogoras1901b;krenova1936;orlovshii1928;sverdrup1938,Reindeer Division,1900,EthnographicAtlas_1967_p86, +118086,Ec4,EA009,Limited polygyny,EA009-2,,castren1853;donner1954;englehardt1899;hajdu1963;islavin1847;jackson1895a;jackson1895b;kopytoff1955;rae1875,Yurak Tribe,1900,EthnographicAtlas_1967_p86, +118087,Ec5,EA009,Limited polygyny,EA009-2,,bergman1927;czaplieka1914;jochelson190508,with special reference to the Maritime Koryak,1900,EthnographicAtlas_1967_p86, +118088,Ec6,EA009,Limited polygyny,EA009-2,,jochelson191926,Upper Kolyma River,1850,EthnographicAtlas_1967_p86, +118089,Ec7,EA009,Limited polygyny,EA009-2,"Formerly code ""2"", independent nuclear families, occasional polygyny",batchelor1895;batchelor1927;cornell1964;hilger1971;munro1962;murdock1934j;sugiuraandbefu1962;sutherland1948;watanabe1964b,Saru Basin in Hokkaido,1900,EthnographicAtlas_1967_p86, +118090,Ec8,EA009,Monogamous,EA009-1,,shimkin1939,,1900,EthnographicAtlas_1967_p86, +118091,Ec9,EA009,Limited polygyny,EA009-2,,lattimore1933,,1920,EthnographicAtlas_1967_p86, +118092,Ed1,EA009,Monogamous,EA009-1,,dallet1874;hewesandkim1952;heydrich1931;kang1931;osgood1951;rutt1964,Kanghwa Island,1950,EthnographicAtlas_1967_p86, +118093,Ed10,EA009,Monogamous,EA009-1,,yang1945,with special reference to the village of Taitou,1930,EthnographicAtlas_1967_p86, +118094,Ed13,EA009,Monogamous,EA009-1,,smith1952,with special reference to the town of Kabira,1940,Ethnology_Vol7_No1_Jan_1968, +118095,Ed14,EA009,Limited polygyny,EA009-2,,abadie1924;girard1904,with special reference to the Man Lan Ten of North Vietnam,,Ethnology_Vol7_No1_Jan_1968, +118096,Ed15a,EA009,Monogamous,EA009-1,,burd1952,with special reference to the village of Karimata,1950,Ethnology_Vol7_No1_Jan_1968, +118097,Ed15b,EA009,Monogamous,EA009-1,,chien1967;fei1946;fried1953;lang1946;linebargeretal1956;smith1970,"Kaihsienkung Village, Chekiang",1936,Ethnology_Vol10_No1_Jan_1971, +118098,Ed16,EA009,Limited polygyny,EA009-2,,davenportnd,with special reference to the village of Yannon,1940,Ethnology_Vol7_No1_Jan_1968, +118099,Ed2,EA009,Limited polygyny,EA009-2,,dollone1912;lebaretal1964[19-27];lin1961;litard1913;pollard1921;tseng1945,Liang Shan and Taliang S,1940,EthnographicAtlas_1967_p86, +118100,Ed3,EA009,Monogamous,EA009-1,,shirokogoroff1924,Aigun District,1920,EthnographicAtlas_1967_p86, +118101,Ed4,EA009,Limited polygyny,EA009-2,,mark1967;ruey1960,with special reference to the Magpie (Yachio) Miao,1940,EthnographicAtlas_1967_p86, +118102,Ed5,EA009,Monogamous,EA009-1,,beardsleyetal1959;brownnd;buckandmasland1950[591-710];devos1965;devosandwagatsuma1967;norbeck1954;smithandcornell1956,Okayama,1950,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118103,Ed6,EA009,Limited polygyny,EA009-2,,kulp1925,with special reference to those in the hinterland of Swatow,1920,EthnographicAtlas_1967_p86, +118104,Ed7,EA009,Monogamous,EA009-1,,glacken1955;maetzkiandmaetzki1963;maretzki1957;pittsetal1955,,1950,EthnographicAtlas_1967_p86, +118105,Ed8,EA009,Limited polygyny,EA009-2,,fitzgerald1941,,1930,EthnographicAtlas_1967_p86, +118106,Ed9,EA009,Limited polygyny,EA009-2,,lebaretal1964;odaka1950;strubel1937,,1930,EthnographicAtlas_1967_p86, +118107,Ee1,EA009,Limited polygyny,EA009-2,,duffsutherlanddunbar1915;roy1960,,1940,EthnographicAtlas_1967_p86, +118108,Ee2,EA009,Limited polygyny,EA009-2,,clark1963;lorimer1935;lorimer1938;lorimer1939;rodale1948;tobe1960,Hunza State,1930,EthnographicAtlas_1967_p86, +118109,Ee3,EA009,Limited polygyny,EA009-2,,dasandbanerjee1962;gorer1938;morris1938,Lingthem and vicinity,1930,EthnographicAtlas_1967_p86, +118110,Ee4,EA009,Polyandrous,EA009-7,Polygyny is also practiced to some extent,bell1924;bell1928;benedict1942;cammann1951;carrasco1959;das1902;ekvall1961;ekvall1964;kawaguchi1909;ma1947;macdonald1929;psybikov1919;rockhill1895;shenandliu1953;waddell1939,with special reference to Central Tibet,1920,EthnographicAtlas_1967_p86, +118111,Ee5,EA009,"Polygyny, non-sororal cohabit",EA009-6,"General nonsororal polygyny prevails, but information is lacking on family organization",biddulph1880;leitner1873,with special reference to the Shina tribe,1870,EthnographicAtlas_1967_p86, +118112,Ee6,EA009,Polyandrous,EA009-7,,furerhaimendorf1964,with special reference to those of Khumbu,1950,EthnographicAtlas_1967_p86, +118113,Ee7,EA009,Limited polygyny,EA009-2,,endle1911;hodgson1847,,1840,Ethnology_Vol7_No1_Jan_1968, +118114,Ee8,EA009,Limited polygyny,EA009-2,,hitchcock1966,with special reference to the sedentary inhabitants of Banyan Hill,1950,Ethnology_Vol7_No2_Apr_1968, +118115,Ef1,EA009,Limited polygyny,EA009-2,,culshaw1949;das1967;dattamajumder1956;mukherjea1943,Bankura and Berghum Districts,1940,EthnographicAtlas_1967_p86, +118116,Ef10,EA009,?,EA009-NA,,,,,, +118117,Ef11,EA009,Limited polygyny,EA009-2,,cohn1958;cohnnd;dube1956;luschinsky1963;luschinsky1971;opler1956;oplerandsingh1952;oplerandsingh1954;pandey1972;rowe1960,Village and environs of Senapur,1945,Ethnology_Vol10_No1_Jan_1971, +118118,Ef2,EA009,Limited polygyny,EA009-2,,karve1953;mukherjee1949;nicholas1962;nicholas1964;sarma1951,with special reference t the Western or Hindu Bengali,1940,Ethnology_Vol7_No3_Jul_1968, +118119,Ef3,EA009,"Polygyny, non-sororal cohabit",EA009-6,,karve1953,,-800,Ethnology_Vol1_No3_Jul_1962, +118120,Ef4,EA009,"Polygyny, non-sororal cohabit",EA009-6,But extended families are land-holding units and sometimes residential units as well,chatterjeeanddas1927;majumdar1937,,1920,Ethnology_Vol1_No3_Jul_1962, +118121,Ef5,EA009,Limited polygyny,EA009-2,General nonsororal polygyny but insufficient data on family organization,boseandray1953;hendley1875;koppers1948;naik1956,,1900,EthnographicAtlas_1967_p86, +118122,Ef6,EA009,Limited polygyny,EA009-2,,roy1915;roy1951,,1940,EthnographicAtlas_1967_p86, +118123,Ef7,EA009,Limited polygyny,EA009-2,,berreman1962a;berreman1962b;berreman1963,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EthnographicAtlas_1967_p86, +118124,Ef8,EA009,Limited polygyny,EA009-2,,crane1955;lawrence1895;madan1965,with special reference to the Pandit or Sarasvati Brahmans,1950,EthnographicAtlas_1967_p86, +118125,Ef9,EA009,Limited polygyny,EA009-2,,karve194243;mukhtyar1930,"Village of Atgam, Surat District; possibly also other areas",1136,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118126,Eg1,EA009,Monogamous,EA009-1,,furerhaimendorf1943b,with special reference to the forest group,1940,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118127,Eg10,EA009,Limited polygyny,EA009-2,,dube1955;guha1931;karve1953,with special reference to the village of Shamirpet,1950,EthnographicAtlas_1967_p90, +118128,Eg11,EA009,"Polygyny, sororal cohabit",EA009-3,,tyler1965,with special reference to the Gommu Koya,1960,Ethnology_Vol5_No4_Oct_1966, +118129,Eg12,EA009,Limited polygyny,EA009-2,,elwin1950;furerhaimendorf1943a,with special reference to the Bondo,1940,Ethnology_Vol6_No1_Jan_1967, +118130,Eg13,EA009,Limited polygyny,EA009-2,,elwin1957,Bastar State,1941,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118131,Eg14,EA009,Limited polygyny,EA009-2,,furerhaimendorf1945,with special reference to those of the Bison Hills,1940,Ethnology_Vol7_No1_Jan_1968, +118132,Eg2,EA009,Limited polygyny,EA009-2,,goughaberle1955;goughaberlend,with special reference to the agricultural castes in Tanjore,1880,EthnographicAtlas_1967_p86, +118133,Eg3,EA009,"Polygyny, sororal cohabit",EA009-3,,grigson1938,Hill Maria,1938,EthnographicAtlas_1967_p86, +118134,Eg4,EA009,Polyandrous,EA009-7,,emeneau1941;fox1963;marshall1873;murdock1934b[107-154];peter1955;rivers1906,Toda Tribe,1900,EthnographicAtlas_1967_p86, +118135,Eg5,EA009,Monogamous,EA009-1,"But formerly code ""7"", independent polyandrous families",emeneau1939;srinivas1952,,1930,EthnographicAtlas_1967_p90, +118136,Eg6,EA009,Limited polygyny,EA009-2,,gough1961;schneiderandgough1961[385-442],with special reference to Northern Kerala,1799,EthnographicAtlas_1967_p90, +118137,Eg7,EA009,Monogamous,EA009-1,,roy1935,with special reference to the Pauri or Hill Bhuiya,1930,EthnographicAtlas_1967_p90, +118138,Eg8,EA009,Limited polygyny,EA009-2,,griffiths1946,,1940,EthnographicAtlas_1967_p90, +118139,Eg9,EA009,"Polygyny, non-sororal cohabit",EA009-6,,elwin1939,,1930,EthnographicAtlas_1967_p90, +118140,Eh1,EA009,Monogamous,EA009-1,,man1882;radcliffebrown1922,,1870,EthnographicAtlas_1967_p90, +118141,Eh10,EA009,"Polygyny, non-sororal cohabit",EA009-6,,dubois1938,,,Ethnology_Vol7_No1_Jan_1968, +118142,Eh2,EA009,Limited polygyny,EA009-2,Polygyny was general before its abolition in 1878,grandidierandgrandidier190828;sibree1880,,1900,EthnographicAtlas_1967_p90, +118143,Eh3,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,kardiner1939;linton1933;linton1939b;murdock1959,Menabe subtribe,1930,EthnographicAtlas_1967_p90, +118144,Eh4,EA009,Monogamous,EA009-1,,bailey1863;ryanetal194950;seligmannandseligmann1911;spittel1945,with special reference to the Rock Vedda,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118145,Eh5,EA009,Limited polygyny,EA009-2,,man1888;man1932;svoboda189293;whitehead1924,Car Nicobar of North Islands,1890,EthnographicAtlas_1967_p90, +118146,Eh6,EA009,Monogamous,EA009-1,But extended families are often found in well-to-do families,ariyapala1956;codrington1926;doyly1929;hayley1923;leach1959;leach1960;leach1963;murphey1957;pieris1956;ryan1953a;ryan1953b;ryan1958;singer1964;tambiah1958;yalman1960;yalman1962,with special reference to the Kandyan Sinhalese,1950,EthnographicAtlas_1967_p90, +118147,Eh7,EA009,"Polygyny, non-sororal separate quarters",EA009-5,"But McLeod reports large extended families (code ""8"") made up of polygynous units of non-sororal co-wives in separate dwellings (EA009=code ""5"")",decary193033;mcleod1964;rajohnson1908,,1900,EthnographicAtlas_1967_p90, +118148,Eh8,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,faublee1946;kurze188689;mcleod1964,,1900,EthnographicAtlas_1967_p90, +118149,Eh9,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,deschamps1936,,1930,Ethnology_Vol7_No1_Jan_1968, +118150,Ei1,EA009,Limited polygyny,EA009-2,,burling1963;playfair1909,Rengsanggr,1900,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118151,Ei10,EA009,Limited polygyny,EA009-2,,bessaignet1958;levistrauss1952;lewin1869,,1870,EthnographicAtlas_1967_p90, +118152,Ei11,EA009,Limited polygyny,EA009-2,,bose1936;needham1960;shakespear1912,,1910,EthnographicAtlas_1967_p90, +118153,Ei12,EA009,"Polygyny, non-sororal cohabit",EA009-6,,shakespear1912;shaw1929,,1910,Ethnology_Vol2_No2_Apr_1963, +118154,Ei13,EA009,Monogamous,EA009-1,,hutton1921a,,1910,EthnographicAtlas_1967_p90, +118155,Ei14,EA009,Monogamous,EA009-1,,mills1926;smith1925b,with special reference to the Chongli,1920,EthnographicAtlas_1967_p90, +118156,Ei15,EA009,Limited polygyny,EA009-2,,mills1937,,1930,Ethnology_Vol2_No2_Apr_1963, +118157,Ei16,EA009,Limited polygyny,EA009-2,,hutton1921b,,1910,EthnographicAtlas_1967_p90, +118158,Ei17,EA009,Limited polygyny,EA009-2,,stack1908,,1900,Ethnology_Vol2_No2_Apr_1963, +118159,Ei18,EA009,Limited polygyny,EA009-2,,lowis1906;milne1924,with special reference to the Katur subtribe,1920,EthnographicAtlas_1967_p90, +118160,Ei19,EA009,Limited polygyny,EA009-2,,bernotandbernot1958;careyandtuck1896;lehman1963;stevenson1943,,1940,EthnographicAtlas_1967_p90, +118161,Ei2,EA009,"Polygyny, non-sororal cohabit",EA009-6,,mills1922,,1920,EthnographicAtlas_1967_p90, +118162,Ei20,EA009,"Polygyny, non-sororal cohabit",EA009-6,,levistrauss1952;lewin1869,with special reference to those of the Chittagong Hills,1940,Ethnology_Vol7_No1_Jan_1968, +118163,Ei3,EA009,Monogamous,EA009-1,"Often these monogamous units live as minimal (stem) extended families (i.e., related variable EA008 would be code ""6"")",brohm1963;lebaretal1964[38-44];nash1963;nash1965;scott1882;somitandwelsh1956;trager1956,Nondwin Village,1950,EthnographicAtlas_1967_p90, +118164,Ei4,EA009,Limited polygyny,EA009-2,,parry1932,Lakher Tribe,1930,EthnographicAtlas_1967_p90, +118165,Ei5,EA009,Limited polygyny,EA009-2,,leach1945;leach1954;leach1967,with special reference to the Jinghpaw,1940,EthnographicAtlas_1967_p90, +118166,Ei6,EA009,Limited polygyny,EA009-2,,das1945;needham1958,,1930,EthnographicAtlas_1967_p90, +118167,Ei7,EA009,Monogamous,EA009-1,But large communal dwellings in many hill sections,marshall1922;mcmahon1876,,1910,EthnographicAtlas_1967_p90, +118168,Ei8,EA009,Monogamous,EA009-1,,becker1909;chattopadhyay1941;guha1931;gurden1904;gurdon1907;mccormack1964;mccormack1967,with special reference to those of the Jaintia Hills,1900,EthnographicAtlas_1967_p90, +118169,Ei9,EA009,Limited polygyny,EA009-2,,bessaignet1958;levistrauss1952,,1880,EthnographicAtlas_1967_p90, +118170,Ej1,EA009,Limited polygyny,EA009-2,,izikowitz1951,"Lamet Tribe, Northwestern Laos",1940,EthnographicAtlas_1967_p90, +118171,Ej10,EA009,Limited polygyny,EA009-2,,donoghue1972;donoghueetal1962;lebaretal1964[251-255];sabatier1940,Ko-Sier Village,1950,EthnographicAtlas_1967_p90, +118172,Ej11,EA009,Limited polygyny,EA009-2,,lafont1964,with special reference to the non-Muslim Cham of Vietnam,1950,EthnographicAtlas_1967_p90, +118173,Ej12,EA009,Monogamous,EA009-1,,kunstadter1965;kunstadter1966;lebaretal1964,,1960,EthnographicAtlas_1967_p90, +118174,Ej13,EA009,Limited polygyny,EA009-2,,cusinier1946;lebaretal1964,,1940,EthnographicAtlas_1967_p90, +118175,Ej14,EA009,Limited polygyny,EA009-2,,dentan1967,with special reference to the eastern Semai,1960,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118176,Ej15,EA009,Limited polygyny,EA009-2,,briggs1951;groslier1956;pelliot1951,with special reference to the city and environs of Angkor Wat in 1292,1292,Ethnology_Vol10_No1_Jan_1971, +118177,Ej16,EA009,Limited polygyny,EA009-2,,gulick1958;lewis1962a;parmer1959;swift1965;wilkinson1911,Inas District,1958,Ethnology_Vol10_No1_Jan_1971, +118178,Ej2,EA009,Limited polygyny,EA009-2,,condominas1957;condominas1960,with special reference to the village of Sar Luk,1940,EthnographicAtlas_1967_p90, +118179,Ej3,EA009,Limited polygyny,EA009-2,,evans1937;lebaretal1964[181-186];murdock1934b[85-106];schebesta1927;schebesta1954,Jehai Group or subtribe,1920,EthnographicAtlas_1967_p90, +118180,Ej4,EA009,"Polygyny, non-sororal cohabit",EA009-6,,cadire1953;coughlin1950;coughlin1965;donoghue1964;gourou1936;gourou1954;gourou1955;hickey1964;langrand1945;lintonnd;vankhoan1930,Red River Delta in Tonkin,1950,EthnographicAtlas_1967_p90, +118181,Ej5,EA009,Limited polygyny,EA009-2,,aymonier190004;briggs1951;chou1902;coedes1968;delbert1961;ebihara1964;groslier1956;poreandmaspero1938;poreemaspero1958;steinberg1957,,1950,EthnographicAtlas_1967_p90, +118182,Ej6,EA009,Limited polygyny,EA009-2,,carrapiett1909;white1922,of the Mergui Archipelago,1920,EthnographicAtlas_1967_p90, +118183,Ej7,EA009,Limited polygyny,EA009-2,,bernatzik1947,,1950,EthnographicAtlas_1967_p90, +118184,Ej8,EA009,Limited polygyny,EA009-2,,firth1943;firth1946;fraser1960;fraser1966;ginsburgandroberts1958;hebererandlehman1950;lehmann1934;wilkinson1920,with special reference to those of Trengganu,1940,EthnographicAtlas_1967_p90, +118185,Ej9,EA009,Limited polygyny,EA009-2,,anumanrajadhon1961;benedict1943;bush1964;hanks1963;hanksandhanks1961;hauck1958;insor1963;janlekha1955;phillips1965;sharpandhanks1978;sharpetal1954,,1940,Ethnology_Vol10_No1_Jan_1971, +118186,Ia1,EA009,Monogamous,EA009-1,,ferrell1969;mabuchi1960;okada1949;ruey1955;rueynd,Atayal Tribe (but exdluding Sedeq),1930,EthnographicAtlas_1967_p90, +118187,Ia10,EA009,Monogamous,EA009-1,,chiu1962;mabuchi1952;mabuchi1960,,1930,EthnographicAtlas_1967_p90, +118188,Ia11,EA009,Monogamous,EA009-1,,mabuchi1960,,1930,EthnographicAtlas_1967_p90, +118189,Ia12,EA009,Monogamous,EA009-1,,hart1965;hartnd;quijano1937;svelmoe1954,,1950,EthnographicAtlas_1967_p94, +118190,Ia13,EA009,Monogamous,EA009-1,,nimmo1964;nimmo1965;nimmo1968;nimmo1969;nimmo1970,Tawi-Tawi and adjacent islands,1960,EthnographicAtlas_1967_p94, +118191,Ia14,EA009,Monogamous,EA009-1,,kaneandsegawa1956;mabuchi1960;weiandliu1962,,1930,EthnographicAtlas_1967_p94, +118192,Ia15,EA009,Limited polygyny,EA009-2,,garvan1931,with special reference to those of the Agusan Valley,1920,Ethnology_Vol6_No1_Jan_1967, +118193,Ia16,EA009,Monogamous,EA009-1,,barton1949;dozier1966a;dozier1967,with special reference to the northern Kalinga,1910,EthnographicAtlas_1967_p94, +118194,Ia17,EA009,Limited polygyny,EA009-2,,cole1913;deananddean1954;wood1951,,1910,Ethnology_Vol7_No1_Jan_1968, +118195,Ia18,EA009,Monogamous,EA009-1,,sibley1959;sibley1963,with special reference to the village of Manland in western Negros,1950,Ethnology_Vol7_No1_Jan_1968, +118196,Ia2,EA009,Monogamous,EA009-1,,bacdayan1962;eggan1960,,1950,EthnographicAtlas_1967_p90, +118197,Ia3,EA009,Monogamous,EA009-1,,barton1919;barton1922;barton1930;barton1938;barton1946,Kiangan Group,1920,EthnographicAtlas_1967_p90, +118198,Ia4,EA009,Limited polygyny,EA009-2,,christie1909;frake1955;frake1960,with special reference to the Eastern Subanun,1950,EthnographicAtlas_1967_p90, +118199,Ia5,EA009,Limited polygyny,EA009-2,,conklin1954;conklin1955;conklin1957,,1950,EthnographicAtlas_1967_p90, +118200,Ia6,EA009,Limited polygyny,EA009-2,,mabuchi1960;okada1960;shih1964,Su-Paiwan Village,1930,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118201,Ia7,EA009,Limited polygyny,EA009-2,,fox1954,,1950,EthnographicAtlas_1967_p90, +118202,Ia8,EA009,Monogamous,EA009-1,,jenks1905;keesing1949,,1900,Ethnology_Vol4_No2_Apr_1965, +118203,Ia9,EA009,Monogamous,EA009-1,,mabuchi1960;wei1961,with special reference to the southern Ami,1930,EthnographicAtlas_1967_p90, +118204,Ib1,EA009,Monogamous,EA009-1,,freeman1955a;freeman1955b;freeman1957;freeman1958a;freeman1958b;gomes1911;howell190810;robertsandkaplan1956;roth1892;sandin1968,"Ulu Ai Group, Baleh",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118205,Ib2,EA009,Limited polygyny,EA009-2,,dewey1962;geertz1960;geertz1961;geertz1963;geertz1965;grant1964;jay1963;jay1969;kahin1963;koentjaraningrat1960;koentjaraningrat1961;koentjaraningrat1967,Town and environs of Pare; Modjokuto,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118206,Ib3,EA009,Limited polygyny,EA009-2,,belo1936;belo1970;covarrubias1937;frankenetal1960;geertz1959a;geertz1959b;geertz1963;geertz1967;geertzandgeertz1959;grant1964;kahin1963;meadandmacgregor1951,Tihingan Village,1950,EthnographicAtlas_1967_p94, +118207,Ib4,EA009,Limited polygyny,EA009-2,,bartlett1929;bruner1959;loeb1933a;warneck1901,with special reference to the Toba group,1930,EthnographicAtlas_1967_p94, +118208,Ib5,EA009,Limited polygyny,EA009-2,,evans1922;rutter1929;williams1965;williamsnd,with special reference to the village of Sensuron,1920,EthnographicAtlas_1967_p94, +118209,Ib6,EA009,Limited polygyny,EA009-2,,bachtiar1967;josselindejong1952;loeb1934;willinck1915,,1920,EthnographicAtlas_1967_p94, +118210,Ib7,EA009,Monogamous,EA009-1,,kruyt1923;loeb1928;wallace1951,with special reference to those of North Pageh,1920,EthnographicAtlas_1967_p94, +118211,Ib8,EA009,Limited polygyny,EA009-2,,hagen1908;schebesta1928,with special reference to the Ridan group,1900,EthnographicAtlas_1967_p94, +118212,Ib9,EA009,Limited polygyny,EA009-2,But families are grouped in communal dwellings,needham1955,with special reference to settled Punan,1950,Ethnology_Vol7_No1_Jan_1968, +118213,Ic1,EA009,Limited polygyny,EA009-2,,chabot1950,Borongloe,1940,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118214,Ic10,EA009,Monogamous,EA009-1,,hueting1921;riedel1885,Tobelo District,1910,EthnographicAtlas_1967_p94, +118215,Ic11,EA009,Monogamous,EA009-1,,cooley1962a;cooley1962b,Allang,1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118216,Ic12,EA009,Monogamous,EA009-1,,goethals1967,with special reference to the village of Rarak in Western Sumbawa,1951,Ethnology_Vol6_No4_Oct_1967, +118217,Ic13,EA009,?,EA009-NA,,,,,, +118218,Ic2,EA009,Limited polygyny,EA009-2,,dubois1940;dubois1941;dubois1944;dubois1945,Abui of Atimelang Village,1940,EthnographicAtlas_1967_p94, +118219,Ic3,EA009,"Polygyny, non-sororal cohabit",EA009-6,,vroklage1952,with special reference to the Mountain Belu,1950,EthnographicAtlas_1967_p94, +118220,Ic4,EA009,"Polygyny, non-sororal cohabit",EA009-6,,kruyt1921;wetering1925,,1920,Ethnology_Vol1_No3_Jul_1962, +118221,Ic5,EA009,Monogamous,EA009-1,,adrianiandkruijt1912;downs1956;drabbe1940,Bare'e subgroup,1910,EthnographicAtlas_1967_p94, +118222,Ic6,EA009,Limited polygyny,EA009-2,,drabbe1940,,1930,EthnographicAtlas_1967_p94, +118223,Ic7,EA009,Limited polygyny,EA009-2,,vatter1932,with special reference to the village of Leloba in E. Flores,1920,EthnographicAtlas_1967_p94, +118224,Ic8,EA009,Limited polygyny,EA009-2,,pleyte1893,,1890,EthnographicAtlas_1967_p94, +118225,Ic9,EA009,Limited polygyny,EA009-2,,nooteboom1940,with special reference to eastern Sumba,1930,EthnographicAtlas_1967_p94, +118226,Id1,EA009,"Polygyny, sororal cohabit",EA009-3,,murdock1934b[20-47];spencerandgillen1927;strehlow190711,Alice Springs and environs,1900,EthnographicAtlas_1967_p94, +118227,Id10,EA009,"Polygyny, sororal cohabit",EA009-3,,meggitt1962a,,1930,Ethnology_Vol7_No2_Apr_1968, +118228,Id11,EA009,"Polygyny, non-sororal cohabit",EA009-6,,hiatt1965,,1950,Ethnology_Vol7_No1_Jan_1968, +118229,Id12,EA009,Limited polygyny,EA009-2,,sharp1934,,1930,Ethnology_Vol7_No1_Jan_1968, +118230,Id13,EA009,"Polygyny, sororal cohabit",EA009-3,,rose1960,,1930,Ethnology_Vol7_No2_Apr_1968, +118231,Id2,EA009,"Polygyny, sororal cohabit",EA009-3,,berndt1955;elkin1950;warner1937,,1930,EthnographicAtlas_1967_p94, +118232,Id3,EA009,"Polygyny, non-sororal cohabit",EA009-6,,basedow1913;goodale1959;goodale1960;goodale1962;goodale1971;hartandpilling1960;mountford1958;pilling1957,Tiwi Tribe: Melville Island,1920,EthnographicAtlas_1967_p94, +118233,Id4,EA009,"Polygyny, sororal cohabit",EA009-3,,berndt1953;elkin1940a;gason1874;howitt1891;howitt1904,,1900,EthnographicAtlas_1967_p94, +118234,Id5,EA009,"Polygyny, sororal cohabit",EA009-3,,radcliffebrown1913;radcliffebrown1930;romneyandepling1958,,1910,EthnographicAtlas_1967_p94, +118235,Id6,EA009,"Polygyny, sororal cohabit",EA009-3,,mcconnel1930;mcconnel1934;mcconnel1940;needham1962;thomson1935;thomson1936,with special reference to the Archer River group,1920,EthnographicAtlas_1967_p94, +118236,Id7,EA009,"Polygyny, non-sororal cohabit",EA009-6,,falkenberg1962,,1940,Ethnology_Vol2_No1_Jan_1963, +118237,Id8,EA009,Limited polygyny,EA009-2,,roth1890,,1830,EthnographicAtlas_1967_p94, +118238,Id9,EA009,Limited polygyny,EA009-2,,howitt1904;radcliffebrown1923,,1910,EthnographicAtlas_1967_p94, +118239,Ie1,EA009,"Polygyny, non-sororal cohabit",EA009-6,,pospisil1958;pospisil1960;pospisil1963a;pospisil1963b,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118240,Ie10,EA009,?,EA009-NA,,,,,, +118241,Ie11,EA009,Limited polygyny,EA009-2,,bowers1964,,1950,EthnographicAtlas_1967_p94, +118242,Ie12,EA009,"Polygyny, non-sororal cohabit",EA009-6,,whiting1941;whitingandreed1938,Hongwam subtribe; Rumbima,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118243,Ie13,EA009,Limited polygyny,EA009-2,A localized lineage occupies a communal dwelling,landtman1927,,1920,EthnographicAtlas_1967_p94, +118244,Ie14,EA009,Limited polygyny,EA009-2,,haddon1908,,1900,EthnographicAtlas_1967_p94, +118245,Ie15,EA009,Limited polygyny,EA009-2,,kaberry1941,Kalabu; Northern Abelam,1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118246,Ie16,EA009,"Polygyny, non-sororal cohabit",EA009-6,,williams194041,,1940,EthnographicAtlas_1967_p94, +118247,Ie17,EA009,?,EA009-NA,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956;salisbury1962,,1940,EthnographicAtlas_1967_p94, +118248,Ie18,EA009,Limited polygyny,EA009-2,,serpenti1965,Bamol Village,1940,EthnographicAtlas_1967_p94, +118249,Ie19,EA009,Monogamous,EA009-1,But the sexes live segregated in men's and women's houses,vanbaal1966,with special reference to the coastal inhabitants,1910,EthnographicAtlas_1967_p94, +118250,Ie2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,schmitz1960,,1920,EthnographicAtlas_1967_p94, +118251,Ie20,EA009,Limited polygyny,EA009-2,,seligmann1910,,1900,EthnographicAtlas_1967_p94, +118252,Ie21,EA009,Monogamous,EA009-1,,malinowski1916,,1900,EthnographicAtlas_1967_p94, +118253,Ie22,EA009,"Polygyny, non-sororal cohabit",EA009-6,,belshaw1951;seligmann1910;williamson1913,,1900,EthnographicAtlas_1967_p94, +118254,Ie23,EA009,Limited polygyny,EA009-2,,schoorl1957,,1950,EthnographicAtlas_1967_p94, +118255,Ie24,EA009,"Polygyny, non-sororal cohabit",EA009-6,,chalmers1890;lawes1879,,1870,EthnographicAtlas_1967_p94, +118256,Ie25,EA009,"Polygyny, non-sororal cohabit",EA009-6,,williamson1912,,1920,EthnographicAtlas_1967_p94, +118257,Ie26,EA009,Limited polygyny,EA009-2,,read1946;read1950,,1940,EthnographicAtlas_1967_p98, +118258,Ie27,EA009,Monogamous,EA009-1,,thurnwald1916,,1910,EthnographicAtlas_1967_p98, +118259,Ie28,EA009,Limited polygyny,EA009-2,,hogbin194647;hogbin1946b,,1940,EthnographicAtlas_1967_p98, +118260,Ie29,EA009,Limited polygyny,EA009-2,,wedgwood1934;wedgwood1937,principally Tsogari,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118261,Ie3,EA009,"Polygyny, non-sororal cohabit",EA009-6,,mead1935;mead1937c;mead194049;mead1950a;mead1950b,with special reference to the Mountain Arapesh (Alitoa),1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118262,Ie30,EA009,Monogamous,EA009-1,,pouwer1955,,1950,EthnographicAtlas_1967_p98, +118263,Ie31,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,berndt1962,,1950,Ethnology_Vol6_No4_Oct_1967, +118264,Ie32,EA009,Monogamous,EA009-1,"But aboriginally code ""4"" (polygynous, with non-sororal co-wives in same dwelling)",groves1934;harding1967,,1964,Ethnology_Vol6_No4_Oct_1967, +118265,Ie33,EA009,Limited polygyny,EA009-2,,oosterwal1967,with special reference to the village of Muramarew,1950,Ethnology_Vol7_No3_Jul_1968, +118266,Ie34,EA009,Limited polygyny,EA009-2,,koentjaraningrat1966,,1960,Ethnology_Vol7_No1_Jan_1968, +118267,Ie35,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bateson1932;bateson1936,,1930,Ethnology_Vol7_No1_Jan_1968, +118268,Ie36,EA009,Limited polygyny,EA009-2,,vanderleeden1956,,1950,Ethnology_Vol7_No1_Jan_1968, +118269,Ie37,EA009,Limited polygyny,EA009-2,,pouwer1964,,1960,Ethnology_Vol7_No1_Jan_1968, +118270,Ie38,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,heider1965;heider1967,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,Ethnology_Vol7_No3_Jul_1968, +118271,Ie39,EA009,Limited polygyny,EA009-2,,williams1940,with special reference to those of Orokolo Bay,1920,Ethnology_Vol7_No3_Jul_1968, +118272,Ie4,EA009,"Polygyny, non-sororal cohabit",EA009-6,,hogbin1935;hogbin193839;hogbin1943;hogbin1945;hogbin1946a;hogbin1946c,"Dap, Wonevaro district",1930,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118273,Ie5,EA009,"Polygyny, non-sororal cohabit",EA009-6,,williams1936,,1930,EthnographicAtlas_1967_p94, +118274,Ie6,EA009,Limited polygyny,EA009-2,,held1947,,1930,EthnographicAtlas_1967_p94, +118275,Ie7,EA009,Limited polygyny,EA009-2,,elkin1953;goodenough1953;meggitt1956;meggitt1958;meggitt1962b;meggitt1965a;meggitt1965b;meggitt1967,with special reference to the Mae group,1950,EthnographicAtlas_1967_p94, +118276,Ie8,EA009,"Polygyny, non-sororal cohabit",EA009-6,,holmes1924;maher1961;maher1967;williams1924,with special reference to the Koriki,1910,EthnographicAtlas_1967_p94, +118277,Ie9,EA009,Limited polygyny,EA009-2,,reay1953;waddellandkrinks1968;williams1928;williams1930,,1920,EthnographicAtlas_1967_p94, +118278,If1,EA009,Limited polygyny,EA009-2,,barnett1949;barnett1960;force1960;keate1788;kramer1929;kubary1873;kubary1900;murdocketal1944b;semper1873,"Ulimang, Badeldaob Island",1940,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118279,If10,EA009,Monogamous,EA009-1,,tolertonandrauch1949,,1940,Ethnology_Vol2_No2_Apr_1963, +118280,If11,EA009,Limited polygyny,EA009-2,,sarfert1919,,1860,EthnographicAtlas_1967_p98, +118281,If12,EA009,Monogamous,EA009-1,,mason1954,,1940,EthnographicAtlas_1967_p98, +118282,If13,EA009,Limited polygyny,EA009-2,,hambruch191415;stephen1936;wedgwood1936,,1900,EthnographicAtlas_1967_p98, +118283,If14,EA009,Limited polygyny,EA009-2,,finsch1893;grimble1921;kramer1906[253-315];lambert1963;lambert1964;lambert1968;lambert1970a;lambert1970b,Makin and Butiritari Islands (N),1890,EthnographicAtlas_1967_p98, +118284,If15,EA009,Monogamous,EA009-1,"But code ""1"" today (independent nuclear family, monogamous)",josephandmurray1951;spehr1954,,1930,EthnographicAtlas_1967_p98, +118285,If16,EA009,Monogamous,EA009-1,,alkire1965,,1960,Ethnology_Vol6_No4_Oct_1967, +118286,If17,EA009,Limited polygyny,EA009-2,,erdland1914;spoehr1949,with special reference to the island of Jaluit,1900,Ethnology_Vol19_No2_Apr_1980, +118287,If2,EA009,Monogamous,EA009-1,,bollig1927;fischer1950;gladwinandsarason1953;goodenough1949;goodenough1969;lebar1964;murdocketal1944a,Romonum Island,1940,Ethnology_Vol6_No4_Oct_1967, +118288,If3,EA009,Monogamous,EA009-1,Polygyny was formerly common among chiefs,spoehr1949,With special reference to the inhabitants of Majuro,1940,EthnographicAtlas_1967_p98, +118289,If4,EA009,Monogamous,EA009-1,,burrows1949;burrowsandspiro1953;damm1938;spiro1949,with special reference to the inhabitants of Ifaluk atoll,1940,EthnographicAtlas_1967_p98, +118290,If5,EA009,Limited polygyny,EA009-2,,bascom1965;hambruch193236;riesenberg1949,,1910,EthnographicAtlas_1967_p98, +118291,If6,EA009,Monogamous,EA009-1,,huntetal1949;muller1917;murdocketal1944b;salesius1906;schneider1953;schneider1957c;schneider1962;schneidernd;senfft1903;tetens1958;tetensandkubary1873,Island,1910,EthnographicAtlas_1967_p98, +118292,If7,EA009,Limited polygyny,EA009-2,"Formerly code ""3"", polygyny common and preferentially sororal, and with co-wives living in same dwelling as part of large extended families (related EA008 variable would also have been code ""8"")",goodenough1951b;goodenough1955;knudson1965;lundsgaarde1966,with special reference to the inhabitants of Onotoa,1940,EthnographicAtlas_1967_p98, +118293,If8,EA009,Monogamous,EA009-1,,josephandmurray1951;spoehr1954,with special reference to those of Saipa,1950,EthnographicAtlas_1967_p98, +118294,If9,EA009,Monogamous,EA009-1,,lessa1950;william1966,,1900,EthnographicAtlas_1967_p98, +118295,Ig1,EA009,Limited polygyny,EA009-2,,oliver1949;oliver1955,Northeastern group,1940,EthnographicAtlas_1967_p98, +118296,Ig10,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,schwartz1964,,1950,EthnographicAtlas_1967_p98, +118297,Ig11,EA009,Limited polygyny,EA009-2,,armstrong1928,,1920,EthnographicAtlas_1967_p98, +118298,Ig12,EA009,Limited polygyny,EA009-2,,scheffler1965,with special reference to the Varisi,1900,EthnographicAtlas_1967_p98, +118299,Ig13,EA009,"Polygyny, sororal cohabit",EA009-3,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907;pittrivers1925,,1900,EthnographicAtlas_1967_p98, +118300,Ig14,EA009,Limited polygyny,EA009-2,,belshaw1955;seligman1910,,1900,EthnographicAtlas_1967_p98, +118301,Ig15,EA009,?,EA009-NA,,,,,, +118302,Ig16,EA009,?,EA009-NA,,,,,, +118303,Ig17,EA009,?,EA009-NA,,,,,, +118304,Ig18,EA009,Limited polygyny,EA009-2,,ivens1930;keesing1966;keesing1967;keesing1968,,1960,Ethnology_Vol7_No1_Jan_1968, +118305,Ig19,EA009,?,EA009-NA,,,,,, +118306,Ig2,EA009,Limited polygyny,EA009-2,,fathauer1954a;malinowski1921;malinowski1922;malinowski1926;malinowski1927;malinowski1929;malinowski1935;powell1960;silas1926;uburoi1962,Kiriwina Island,1910,EthnographicAtlas_1967_p98, +118307,Ig20,EA009,Monogamous,EA009-1,,hogbin1965,with special reference to the village of Longgu,1920,Ethnology_Vol7_No2_Apr_1968, +118308,Ig21,EA009,Limited polygyny,EA009-2,,bell1934;bell1938,with special reference to Boieng Island,1930,Ethnology_Vol7_No2_Apr_1968, +118309,Ig3,EA009,"Polygyny, sororal separate quarters",EA009-4,,blackwood1935,,1930,EthnographicAtlas_1967_p98, +118310,Ig4,EA009,Limited polygyny,EA009-2,,powdermaker1931a;powdermaker1931b;powdermaker1932;powdermaker1933,Lesu Village,1930,EthnographicAtlas_1967_p98, +118311,Ig5,EA009,Monogamous,EA009-1,,fortune1932b,,1920,EthnographicAtlas_1967_p98, +118312,Ig6,EA009,Limited polygyny,EA009-2,,ivens1927,,1900,EthnographicAtlas_1967_p98, +118313,Ig7,EA009,"Polygyny, sororal cohabit",EA009-3,,chowning1957;goodenough1962,,1950,EthnographicAtlas_1967_p98, +118314,Ig8,EA009,Limited polygyny,EA009-2,,hocart1922;rivers1914b;rivers1926;scheffler1962,,1910,Ethnology_Vol1_No4_Oct_1962, +118315,Ig9,EA009,Limited polygyny,EA009-2,,fortune1935;mead1930a;mead1930b;mead1932a;mead1934;mead1937b;mead1969,Peri Village,1920,EthnographicAtlas_1967_p98, +118316,Ih1,EA009,"Polygyny, sororal cohabit",EA009-3,,codrington1891;rivers1914a,,1890,EthnographicAtlas_1967_p98, +118317,Ih10,EA009,Limited polygyny,EA009-2,,humphreys1926,Whitsands,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118318,Ih11,EA009,?,EA009-NA,,,,,, +118319,Ih12,EA009,Limited polygyny,EA009-2,,humphreys1926,,1920,Ethnology_Vol7_No1_Jan_1968, +118320,Ih13,EA009,Limited polygyny,EA009-2,,barnard1938;deacon1927;guiart1956a;laneandlane1958,,1920,Ethnology_Vol7_No1_Jan_1968, +118321,Ih14,EA009,Limited polygyny,EA009-2,,deane1921;ross1953;spencer1941;thomson1908;tippett1968;toganivalu1917;tonganivalu1911;waterhouse1866;williams1884,"Bau Chiefdom, Vanua Levu",1840,Ethnology_Vol19_No2_Apr_1980, +118322,Ih2,EA009,"Polygyny, sororal cohabit",EA009-3,,deacon1934,Malekula Island,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118323,Ih3,EA009,Limited polygyny,EA009-2,"Formerly code ""4"", polygyny common and preferentially sororal, with co-wives in separate dwellings",lane1956;lane1965;laneandlane1957,Bunlap Village,1950,EthnographicAtlas_1967_p98, +118324,Ih4,EA009,"Polygyny, sororal cohabit",EA009-3,,geddes1946;hocart1929;quain1948;thompson1940a;thompson1940b,Lau Island,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118325,Ih5,EA009,?,EA009-NA,,,,,, +118326,Ih6,EA009,Monogamous,EA009-1,,gardner1897;howardandhoward1964;russell1942,,1890,EthnographicAtlas_1967_p98, +118327,Ih7,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,hadfield1920;ray1917,,1910,EthnographicAtlas_1967_p98, +118328,Ih8,EA009,Limited polygyny,EA009-2,,quain1949,with special reference to the village of Nakaroka,1940,EthnographicAtlas_1967_p98, +118329,Ih9,EA009,Limited polygyny,EA009-2,,davenport1964,Graciosa Bay,1930,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118330,Ii1,EA009,Limited polygyny,EA009-2,,buck1930;cook1942;ember1959;freeman1965;grattan1948;kramer190102;kramer1906[253-315];mead1928;mead1930c;mead1937c;mead1950b;murdock1934l;stair1897;turner1884,with special reference to American Samoa,1920,EthnographicAtlas_1967_p98, +118331,Ii10,EA009,Limited polygyny,EA009-2,,birketsmith1956,,1950,Ethnology_Vol6_No1_Jan_1967, +118332,Ii12,EA009,Limited polygyny,EA009-2,,beagleholeandbeaglehole1941;gifford1929,Pangai,1920,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118333,Ii13,EA009,Limited polygyny,EA009-2,,burrows1937,,1830,EthnographicAtlas_1967_p98, +118334,Ii14,EA009,Limited polygyny,EA009-2,,buck1930;bulow1971;davidson1948;ember1962;grattan1948;keesing1934;kramer190102;kramer1906[253-315];panoff1964;stair1897;turner1884,,1829,Ethnology_Vol10_No1_Jan_1971, +118335,Ii2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,firth1936;firth1939;firth1940;firth1952;firth1956;firth1960,Ravenga District,1930,EthnographicAtlas_1967_p98, +118336,Ii3,EA009,Monogamous,EA009-1,,beagleholeandbeaglehole1938;macgregor1935,,1930,EthnographicAtlas_1967_p98, +118337,Ii4,EA009,Limited polygyny,EA009-2,,kennedy1931;white1965,with special reference to the inhabitants of Vaitupu,1890,EthnographicAtlas_1967_p98, +118338,Ii5,EA009,Limited polygyny,EA009-2,,hogbin1931a;hogbin1931b;hogbin1931c;hogbin1938,"Leuenuwa, Lord Howe's Islanders",1920,EthnographicAtlas_1967_p98, +118339,Ii6,EA009,Limited polygyny,EA009-2,,macgregor1937,with special reference to Atafu,1900,EthnographicAtlas_1967_p98, +118340,Ii7,EA009,Limited polygyny,EA009-2,,buck1950;eilers1934;emory1965,,1910,EthnographicAtlas_1967_p98, +118341,Ii8,EA009,Limited polygyny,EA009-2,,burrows1936,,1840,EthnographicAtlas_1967_p98, +118342,Ii9,EA009,Limited polygyny,EA009-2,,loeb1926a,,1840,EthnographicAtlas_1967_p98, +118343,Ij1,EA009,"Polygyny, sororal cohabit",EA009-3,,buck1934,,1820,EthnographicAtlas_1967_p98, +118344,Ij10,EA009,Limited polygyny,EA009-2,,buck1932b,,1900,Ethnology_Vol6_No1_Jan_1967, +118345,Ij2,EA009,"Polygyny, non-sororal cohabit",EA009-6,,best1924;best1925;best1952;buck1949;cruise1824;earle1832;firth1959;gudgeon1885;hawthorn1944;maning1876;polack1838;reed1963;shortland1856;wright1959,Nga Puhi Tribe,1820,Ethnology_Vol10_No1_Jan_1971, +118346,Ij3,EA009,Polyandrous,EA009-7,,forster1777;handy1922;handy1923;labarre1934;linton1923;linton1939a;lisiansky1814;miranda1964;porter1823;sheahan1952;suggs1966;suggs1971;sullivan1923;tautain1896;tautain1897,,1900,EthnographicAtlas_1967_p102, +118347,Ij4,EA009,Limited polygyny,EA009-2,,buck1932a,,1850,EthnographicAtlas_1967_p102, +118348,Ij5,EA009,Limited polygyny,EA009-2,,danielsson1954;danielsson1955,,1900,EthnographicAtlas_1967_p102, +118349,Ij6,EA009,Limited polygyny,EA009-2,,buck1957;handyetal1933;malo1951;vayda1956,,1800,EthnographicAtlas_1967_p102, +118350,Ij7,EA009,Limited polygyny,EA009-2,,buck1938;laval1938,,1900,EthnographicAtlas_1967_p102, +118351,Ij8,EA009,Limited polygyny,EA009-2,But large communal dwelling originally,ellis1905;handy1930;henry1928,,1900,EthnographicAtlas_1967_p102, +118352,Ij9,EA009,Limited polygyny,EA009-2,,metraux1940,,1860,EthnographicAtlas_1967_p102, +118353,Na1,EA009,Monogamous,EA009-1,But polygyny was formerly common,mckennan1959,,1930,EthnographicAtlas_1967_p102, +118354,Na10,EA009,?,EA009-NA,,,,,, +118355,Na11,EA009,Monogamous,EA009-1,,hughes1958;hughes1960;moore1923,,1920,EthnographicAtlas_1967_p102, +118356,Na12,EA009,Limited polygyny,EA009-2,,gubser1965;pospisilandlaughlin1963;spencer1959,,1950,EthnographicAtlas_1967_p102, +118357,Na13,EA009,"Polygyny, sororal cohabit",EA009-3,,boas1888;boas190107,,1880,EthnographicAtlas_1967_p102, +118358,Na14,EA009,Limited polygyny,EA009-2,,birketsmith1928b;ekblaw192728;kroeber1899;oswalt1963;rasmussen1908;steensby1910,,1880,EthnographicAtlas_1967_p102, +118359,Na15,EA009,Limited polygyny,EA009-2,,helmandlurie1961,,1860,EthnographicAtlas_1967_p102, +118360,Na16,EA009,Limited polygyny,EA009-2,,osgood1931,,1860,EthnographicAtlas_1967_p102, +118361,Na17,EA009,"Polygyny, sororal cohabit",EA009-3,,helm1961;helmandleacocknd;honigmann1946;macneish1960b;mason1946,"Lynx Point band, Fort Simpson",1860,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118362,Na19,EA009,"Polygyny, sororal cohabit",EA009-3,,jenness1943;morice1893;ray1942,with special reference to the Hwitsowitenne,1880,EthnographicAtlas_1967_p102, +118363,Na2,EA009,"Polygyny, non-sororal cohabit",EA009-6,,chance1966;murdoch1892;spencer1959,,1880,EthnographicAtlas_1967_p102, +118364,Na20,EA009,Limited polygyny,EA009-2,,osgood1936;slobodin1962,with special reference to the Tatlit of Peel River Kutchin,1880,EthnographicAtlas_1967_p102, +118365,Na21,EA009,"Polygyny, non-sororal cohabit",EA009-6,,birketsmith1929;rasmussen1930,,1900,EthnographicAtlas_1967_p102, +118366,Na22,EA009,Limited polygyny,EA009-2,,birketsmith1928b;damas1964;mathiassen1928;rasmussen1929,with special reference to the Aivilingmiut and Iglulingmiut,1920,EthnographicAtlas_1967_p102, +118367,Na23,EA009,Limited polygyny,EA009-2,,hawkes1916;turner1894,with special reference to the Koksoagmiu,1890,EthnographicAtlas_1967_p102, +118368,Na24,EA009,Limited polygyny,EA009-2,,holm1911;ostermann1938;rink1911;thalbitzer1914;thalbitzer191721,,1880,EthnographicAtlas_1967_p102, +118369,Na25,EA009,Monogamous,EA009-1,"Formerly occasional polygyny was practiced (code ""2""), with families organized as small extended families (related variable EA008 code ""7"")",birketsmith1924;bugge1952;cranz1767;egede1818;nansen1893;porsild1915;rink1877;saabye1818,with special reference to the inhabitants of the Egesminde District,1910,Ethnology_Vol3_No1_Jan_1964, +118370,Na26,EA009,"Polygyny, non-sororal cohabit",EA009-6,,osgood1933;osgood1937,with special reference to the Iliamna,1870,EthnographicAtlas_1967_p102, +118371,Na27,EA009,Limited polygyny,EA009-2,,emmons1911;maclachlan1957;teit1906a;teit1956,,1870,EthnographicAtlas_1967_p102, +118372,Na28,EA009,"Polygyny, sororal cohabit",EA009-3,,jenness1937,,1880,EthnographicAtlas_1967_p102, +118373,Na29,EA009,Limited polygyny,EA009-2,,goddard1916,,1850,EthnographicAtlas_1967_p102, +118374,Na3,EA009,Monogamous,EA009-1,,jenness1917;jenness1922;jenness1928;rasmussen1932;stefansson1914,Coronation Gulf,1920,EthnographicAtlas_1967_p102, +118375,Na30,EA009,Limited polygyny,EA009-2,,birketsmith1930;macneish1960a;vanstone1965,,1880,EthnographicAtlas_1967_p102, +118376,Na31,EA009,Limited polygyny,EA009-2,,skinner1912,with special reference to those of Albany and Moose Creek,1850,EthnographicAtlas_1967_p102, +118377,Na32,EA009,Limited polygyny,EA009-2,,burgesse1944;lane1952;leacock1969;lips1947a;lips1947b;speck1931;speck1935,Lake St. John & Mistassini Band,1880,EthnographicAtlas_1967_p102, +118378,Na33,EA009,Limited polygyny,EA009-2,,dunning1959b;hallowell1938a;hallowell1938b;hallowell1939;hallowell1940;hallowell1941;hallowell1942;hallowell1955;hallowell1963;skinner1912,Berens River band,1870,EthnographicAtlas_1967_p102, +118379,Na34,EA009,Limited polygyny,EA009-2,,dunning1959a;dunning1959b,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EthnographicAtlas_1967_p102, +118380,Na35,EA009,Limited polygyny,EA009-2,,cameron1890;grant1890,,1800,EthnographicAtlas_1967_p102, +118381,Na36,EA009,Limited polygyny,EA009-2,,barnouw1950;barrett1911a;densmore1929;hesketh1923;hilger1939;hilger1951;kinietz1947,with special reference to the Red Lake and White Earth bands,1860,EthnographicAtlas_1967_p102, +118382,Na37,EA009,Limited polygyny,EA009-2,,landes1937a;landes1937b;landes1938,,1880,EthnographicAtlas_1967_p102, +118383,Na38,EA009,Limited polygyny,EA009-2,,grant1890;kinietz1947,with special reference to the Lac Vieux Desert band,1800,EthnographicAtlas_1967_p102, +118384,Na39,EA009,Limited polygyny,EA009-2,,jenness1935,with special reference to the Kitchibuan of Parry Island,1870,EthnographicAtlas_1967_p102, +118385,Na4,EA009,Monogamous,EA009-1,,honigmann1949;honigmann1954;teit1956;underwoodandhonigmann1947,Upper Liard and Dease River Group,1920,EthnographicAtlas_1967_p102, +118386,Na40,EA009,Limited polygyny,EA009-2,,kinietz1940c;morgan1871,,1650,Ethnology_Vol3_No1_Jan_1964, +118387,Na41,EA009,Limited polygyny,EA009-2,,bock1966;denys1908;johnson1943;leclercq1910;speckanddexter1951;wallisandwallis1955,Mainland division,1700,EthnographicAtlas_1967_p102, +118388,Na42,EA009,"Polygyny, non-sororal cohabit",EA009-6,,kinietz1940d;quimby1940;searey1965;skinner1924,Prairie Potawatomi,1760,EthnographicAtlas_1967_p102, +118389,Na43,EA009,Limited polygyny,EA009-2,,balikei1963a;balikei1963b;rasmussen1931,,1920,Ethnology_Vol4_No4_Oct_1965, +118390,Na44,EA009,Limited polygyny,EA009-2,"But code ""1"" today (independent nuclear family, monogamous)",graburn1964,,1910,Ethnology_Vol4_No4_Oct_1965, +118391,Na45,EA009,Limited polygyny,EA009-2,,rogers1963a;rogersandrogers1963;speck1923;speck1930,,1900,Ethnology_Vol6_No4_Oct_1967, +118392,Na5,EA009,Limited polygyny,EA009-2,,lips1947a;speck1935;strong1929b;turner1890,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EthnographicAtlas_1967_p102, +118393,Na6,EA009,Limited polygyny,EA009-2,,lantis1946,,1930,EthnographicAtlas_1967_p102, +118394,Na7,EA009,Limited polygyny,EA009-2,,gmann1953;honigmann1956b,with special reference to the Attawapiskat Swampy Cree,1900,EthnographicAtlas_1967_p102, +118395,Na8,EA009,Limited polygyny,EA009-2,,osgood1940;osgood1958;osgood1959,Shageluk Village,1880,EthnographicAtlas_1967_p102, +118396,Na9,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bank1953;cook1785;coxe1804;elliott1886;golder192225;jochelson1925;langsdorff1817;lantis1970b;sarychev1806;sauer1802;veniaminov1840,Unalaska Branch (Eastern Aleut),1830,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118397,Nb1,EA009,Limited polygyny,EA009-2,,murdock1934a;murdock1934b[221-263];murdock1936a;niblack1890;swanton1909,Masset Town,1890,EthnographicAtlas_1967_p102, +118398,Nb10,EA009,"Polygyny, non-sororal cohabit",EA009-6,,goldman1940;goldman1941,,1865,EthnographicAtlas_1967_p106, +118399,Nb11,EA009,Limited polygyny,EA009-2,,drucker1951;koppert1930b,with special reference to the Central Nootka,1880,EthnographicAtlas_1967_p106, +118400,Nb12,EA009,"Polygyny, non-sororal cohabit",EA009-6,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +118401,Nb13,EA009,"Polygyny, non-sororal cohabit",EA009-6,,barnett1938;barnett1939;barnett1955;hilltout1900,,1880,EthnographicAtlas_1967_p106, +118402,Nb14,EA009,"Polygyny, non-sororal cohabit",EA009-6,,barnett1938;barnett1939;barnett1955,,1880,Ethnology_Vol2_No4_Oct_1963, +118403,Nb15,EA009,"Polygyny, non-sororal cohabit",EA009-6,,curtis1912;stern1934;suttles1954,,1880,EthnographicAtlas_1967_p106, +118404,Nb16,EA009,"Polygyny, sororal cohabit",EA009-3,,eells1887b;gunthere1927,,1860,EthnographicAtlas_1967_p106, +118405,Nb17,EA009,"Polygyny, non-sororal cohabit",EA009-6,,ballard1935;haeberlinandgunther1930;smith1940b,,1870,EthnographicAtlas_1967_p106, +118406,Nb18,EA009,"Polygyny, non-sororal cohabit",EA009-6,,pettitt1950,,1880,EthnographicAtlas_1967_p106, +118407,Nb19,EA009,"Polygyny, non-sororal cohabit",EA009-6,,ray1938;ray1942,,1850,EthnographicAtlas_1967_p106, +118408,Nb2,EA009,Limited polygyny,EA009-2,,eells1877;elmendorf1960,Twana Tribe,1850,EthnographicAtlas_1967_p102, +118409,Nb20,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,barnett1937;boas1923,,1870,Ethnology_Vol2_No4_Oct_1963, +118410,Nb21,EA009,"Polygyny, non-sororal cohabit",EA009-6,,barnett1937;jacobs1940,,1860,EthnographicAtlas_1967_p106, +118411,Nb22,EA009,Limited polygyny,EA009-2,,durlach1928;jochelson1925;krause1956;oberg1934;swanton1908,with special reference to the Chilkat,1880,EthnographicAtlas_1967_p106, +118412,Nb23,EA009,Limited polygyny,EA009-2,,boas1938;drucker1950;olson1955,,1880,EthnographicAtlas_1967_p106, +118413,Nb24,EA009,Limited polygyny,EA009-2,,colson1953;swan1868,,1860,EthnographicAtlas_1967_p106, +118414,Nb25,EA009,Limited polygyny,EA009-2,,olson1936a;willoughby1889,,1860,EthnographicAtlas_1967_p106, +118415,Nb26,EA009,"Polygyny, non-sororal cohabit",EA009-6,,barnett1938;barnett1939;barnett1955;lane1963a,,1880,EthnographicAtlas_1967_p106, +118416,Nb27,EA009,"Polygyny, non-sororal cohabit",EA009-6,,duff1952;hilltout1902;hilltout1904,with special reference to the Tait,1880,EthnographicAtlas_1967_p106, +118417,Nb28,EA009,Limited polygyny,EA009-2,,barnett1937;drucker1939,,1860,EthnographicAtlas_1967_p106, +118418,Nb29,EA009,Limited polygyny,EA009-2,,barnett1937;frachtenberg1914,,1860,Ethnology_Vol3_No1_Jan_1964, +118419,Nb3,EA009,Limited polygyny,EA009-2,,benedict1934;boas1895b;boas1909;boas1966;codere1950;ford1941;goldman1937a;rohner1965,,1890,EthnographicAtlas_1967_p102, +118420,Nb30,EA009,"Polygyny, non-sororal cohabit",EA009-6,,sapir1907,,1860,Ethnology_Vol3_No1_Jan_1964, +118421,Nb31,EA009,"Polygyny, non-sororal cohabit",EA009-6,,barnett1937;drucker1936a;dubois1936,,1870,EthnographicAtlas_1967_p106, +118422,Nb32,EA009,Limited polygyny,EA009-2,,dixon1907;holt1946;kroeber1925d;voegelin1942,with special reference to the Shastika or eastern Shasta,1860,EthnographicAtlas_1967_p106, +118423,Nb33,EA009,Limited polygyny,EA009-2,,dixon1910;driver1939,,1860,EthnographicAtlas_1967_p106, +118424,Nb34,EA009,Limited polygyny,EA009-2,,driver1939;gifford1922[31-33];kroeber1925c,,1860,EthnographicAtlas_1967_p106, +118425,Nb35,EA009,"Polygyny, non-sororal cohabit",EA009-6,,driver1939;goddard1903;kroeber1934;taylor1947;wallace1947b,,1860,EthnographicAtlas_1967_p106, +118426,Nb36,EA009,"Polygyny, non-sororal cohabit",EA009-6,,driver1939;gifford1922[29-30];kroeber1925a,,1860,EthnographicAtlas_1967_p106, +118427,Nb37,EA009,Limited polygyny,EA009-2,,essene1940;gifford1922,,1860,Ethnology_Vol3_No1_Jan_1964, +118428,Nb38,EA009,Limited polygyny,EA009-2,,driver1939;nomland1938,with special reference to the inhabitants of the Bear River,1860,Ethnology_Vol3_No1_Jan_1964, +118429,Nb39,EA009,Limited polygyny,EA009-2,,driver1939;nomland1935,,1860,EthnographicAtlas_1967_p106, +118430,Nb4,EA009,"Polygyny, non-sororal cohabit",EA009-6,,erickson1943;heizerandmills1952;kroeber1925b;kroeber1960;loeffelholz1893;watermanandkroeber1934,,1850,EthnographicAtlas_1967_p102, +118431,Nb5,EA009,"Polygyny, non-sororal cohabit",EA009-6,,birketsmithanddelaguna1938,Eyak Tribe,1890,EthnographicAtlas_1967_p102, +118432,Nb6,EA009,"Polygyny, non-sororal cohabit",EA009-6,,driver1939;drucker1936a;dubois1932,,1870,EthnographicAtlas_1967_p102, +118433,Nb7,EA009,"Polygyny, non-sororal cohabit",EA009-6,,garfield1939;garfieldetal1951,,1880,EthnographicAtlas_1967_p102, +118434,Nb8,EA009,?,EA009-NA,,,,,, +118435,Nb9,EA009,"Polygyny, non-sororal cohabit",EA009-6,,boas1891b;drucker1950;mcilwraith1948;smith1925a,"Central group, lower B.C. River",1880,EthnographicAtlas_1967_p102, +118436,Nc1,EA009,Limited polygyny,EA009-2,,goldschmidt1951,,1850,EthnographicAtlas_1967_p106, +118437,Nc10,EA009,"Polygyny, non-sororal cohabit",EA009-6,,goldman1940;goldman1941,,1860,EthnographicAtlas_1967_p106, +118438,Nc11,EA009,Limited polygyny,EA009-2,,gifford1928;giffordandkroeber1936;sapir1918;sapirandspier1943,,1860,EthnographicAtlas_1967_p106, +118439,Nc12,EA009,"Polygyny, sororal cohabit",EA009-3,,dixon1905;gifford1922[46-47];voegelin1942,with special reference to the Northeastern Mountain Maidu,1850,EthnographicAtlas_1967_p106, +118440,Nc13,EA009,Limited polygyny,EA009-2,,beals1933;faye1923;voegelin1942,with special reference to the Hill and Mountain Nisenan,1850,EthnographicAtlas_1967_p106, +118441,Nc14,EA009,Limited polygyny,EA009-2,,dubois1935;gifford1922;lee1940;voegelin1942;washington1909,with special reference to the northeastern Wintu,1860,EthnographicAtlas_1967_p106, +118442,Nc15,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,driver1939;gifford1939,,1860,EthnographicAtlas_1967_p106, +118443,Nc16,EA009,Limited polygyny,EA009-2,,foster1944;gifford1922[118-119],,1860,Ethnology_Vol3_No2_Apr_1964, +118444,Nc17,EA009,"Polygyny, non-sororal cohabit",EA009-6,,essene1942;gifford1922[109-111];giffordandkroeber1937a,with special reference to those of Kalekau,1860,EthnographicAtlas_1967_p106, +118445,Nc18,EA009,Limited polygyny,EA009-2,,aginskyandaginsky1967;barrett1908;barrett1916;barrett1917a;barrett1952;freeland1923;gifford1926a;giffordandkroeber1937b;kroeber1953;loeb1926b,"Clear Lake, Village of Cignon",1860,EthnographicAtlas_1967_p106, +118446,Nc19,EA009,Monogamous,EA009-1,,aginsky1935;gifford1922[113-115];giffordandkroeber1937a,with special reference to those near Santa Rosa,1860,EthnographicAtlas_1967_p106, +118447,Nc2,EA009,Monogamous,EA009-1,,gifford1917;voegelin1938,,1850,EthnographicAtlas_1967_p106, +118448,Nc20,EA009,Monogamous,EA009-1,,driver1936;gifford1922[115-118];radin1924,,1860,EthnographicAtlas_1967_p106, +118449,Nc21,EA009,Monogamous,EA009-1,,gifford1922[91-93];giffordandkroeber1937a,,1860,Ethnology_Vol3_No2_Apr_1964, +118450,Nc22,EA009,Limited polygyny,EA009-2,,giffordandkroeber1937a;kroeber1932;mckern1922;mckern1924,with special reference to the Hill Patwin,1850,EthnographicAtlas_1967_p106, +118451,Nc23,EA009,Limited polygyny,EA009-2,,aginsky1943;driver1937;gayton1930;gayton1945;gayton1948a;gifford1922,,1870,EthnographicAtlas_1967_p106, +118452,Nc24,EA009,Limited polygyny,EA009-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,Tulare Lake,1860,EthnographicAtlas_1967_p106, +118453,Nc25,EA009,Limited polygyny,EA009-2,,bealsandhester1958;cook1955;gayton1936;gayton1948a;kroeber1925e;latta1949;powers1877,,1860,EthnographicAtlas_1967_p106, +118454,Nc26,EA009,Limited polygyny,EA009-2,,harrington1942;mason1912,,1770,Ethnology_Vol3_No2_Apr_1964, +118455,Nc27,EA009,Monogamous,EA009-1,,driver1937;gifford1917,,1860,EthnographicAtlas_1967_p106, +118456,Nc28,EA009,Limited polygyny,EA009-2,,harrington1942;kroeber1925f,,1800,Ethnology_Vol3_No2_Apr_1964, +118457,Nc29,EA009,Limited polygyny,EA009-2,Extended families are inferential,harrington1942;johnston1964;kroeber1925h;reid1926,,1770,EthnographicAtlas_1967_p106, +118458,Nc3,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,driver1937;gayton1930;gayton1948a;kroeber1925e,with special reference to those of the Northern Foothills,1850,EthnographicAtlas_1967_p106, +118459,Nc30,EA009,"Polygyny, non-sororal cohabit",EA009-6,,benedict1924;drucker1937;gifford1918[178-186];gifford1922[53-56];strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +118460,Nc31,EA009,Limited polygyny,EA009-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],with special reference to the Desert Cahuilla,1870,EthnographicAtlas_1967_p106, +118461,Nc32,EA009,Limited polygyny,EA009-2,,drucker1937;gifford1918[186-201];gifford1922[56-60];hooper1920;strong1929a[5-35],,1870,EthnographicAtlas_1967_p106, +118462,Nc33,EA009,"Polygyny, sororal cohabit",EA009-3,,drucker1937;dubois1908;gifford1918[201-214];harrington1934;kroeber1917a;malccot1964;sparkman1908;strong1929a[5-35];white1963,,1860,EthnographicAtlas_1967_p106, +118463,Nc34,EA009,Limited polygyny,EA009-2,,meigs1939,,1880,EthnographicAtlas_1967_p106, +118464,Nc4,EA009,"Polygyny, sororal cohabit",EA009-3,,garth1944;garth1953;voegelin1942,,1860,EthnographicAtlas_1967_p106, +118465,Nc5,EA009,"Polygyny, sororal cohabit",EA009-3,,aginsky1943;barrettandgifford1933;gifford1916;gifford1926c;gifford1955,with special reference to the Central Sierra group,1850,EthnographicAtlas_1967_p106, +118466,Nc6,EA009,"Polygyny, sororal separate quarters",EA009-4,,drucker1937;gifford1922[68-71];luomala1963;spier1923,with special reference to the Southern Diegueno,1850,EthnographicAtlas_1967_p106, +118467,Nc7,EA009,Limited polygyny,EA009-2,,essene1942;foster1944;gifford1922[118-122],,1850,EthnographicAtlas_1967_p106, +118468,Nc8,EA009,Limited polygyny,EA009-2,,gatschet1890;pearsall1950;spier1930;stern1965;voegelin1942,Klamath Tribe,1860,EthnographicAtlas_1967_p106, +118469,Nc9,EA009,Limited polygyny,EA009-2,But a nuclear family usually established an independent household after the birth of one to three children,ray1963;voegelin1942,,1860,EthnographicAtlas_1967_p106, +118470,Nd1,EA009,"Polygyny, non-sororal cohabit",EA009-6,,murdock1958;ray1942,,1850,EthnographicAtlas_1967_p106, +118471,Nd10,EA009,"Polygyny, non-sororal cohabit",EA009-6,,ray1942;teit1900,,1860,EthnographicAtlas_1967_p110, +118472,Nd11,EA009,"Polygyny, non-sororal cohabit",EA009-6,,ray1942;teit1909,with special reference to the southeastern Shuswap,1850,EthnographicAtlas_1967_p110, +118473,Nd12,EA009,"Polygyny, sororal cohabit",EA009-3,"In summer, but in winter these polygynous units live as part of extended families (i.e., related variable EA008 is code ""8"" in winter).",ray1942;teit1930;turneyhigh1937,,1860,EthnographicAtlas_1967_p110, +118474,Nd13,EA009,"Polygyny, sororal cohabit",EA009-3,,ray1942;teit1930,,1860,Ethnology_Vol3_No2_Apr_1964, +118475,Nd14,EA009,"Polygyny, sororal cohabit",EA009-3,,ray1942;teit1930,,1860,EthnographicAtlas_1967_p110, +118476,Nd15,EA009,"Polygyny, sororal cohabit",EA009-3,But large communal dwellings in the winter,clineetal1938,,1880,EthnographicAtlas_1967_p110, +118477,Nd16,EA009,Limited polygyny,EA009-2,,ray1942;teit1928,,1870,Ethnology_Vol3_No2_Apr_1964, +118478,Nd17,EA009,Limited polygyny,EA009-2,,jacobs1932;ray1942,,1870,Ethnology_Vol3_No2_Apr_1964, +118479,Nd18,EA009,"Polygyny, non-sororal cohabit",EA009-6,,spierandsapir1930,,1860,EthnographicAtlas_1967_p110, +118480,Nd19,EA009,Limited polygyny,EA009-2,,ray1939;ray1942;rigsby1963,,1860,EthnographicAtlas_1967_p110, +118481,Nd2,EA009,Limited polygyny,EA009-2,,gifford1940;hillandhill1970;lowie1924;opler1940a;stewart1942,,1860,EthnographicAtlas_1967_p106, +118482,Nd20,EA009,Limited polygyny,EA009-2,,curtis1911;elmendorf1963;haines1955;spiden1908,,1850,EthnographicAtlas_1967_p110, +118483,Nd21,EA009,Limited polygyny,EA009-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +118484,Nd22,EA009,Limited polygyny,EA009-2,,stewart1937;stewart1941;whiting1950,Wadadika of Harney Valley,1870,EthnographicAtlas_1967_p110, +118485,Nd23,EA009,Limited polygyny,EA009-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +118486,Nd24,EA009,"Polygyny, sororal cohabit",EA009-3,,anguloandfreeland1929;kelly1932;kroeber1917a;stewart1941,,1870,EthnographicAtlas_1967_p110, +118487,Nd25,EA009,Limited polygyny,EA009-2,,steward1941;stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +118488,Nd26,EA009,Monogamous,EA009-1,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,,1870,Ethnology_Vol3_No2_Apr_1964, +118489,Nd27,EA009,Limited polygyny,EA009-2,,park1934;park1937;park1938a;stewart1941,,1860,EthnographicAtlas_1967_p110, +118490,Nd28,EA009,Limited polygyny,EA009-2,,stewart1941,,1870,Ethnology_Vol3_No2_Apr_1964, +118491,Nd29,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,including the Deep Springs Valley and Fish Lake Valley groups,1870,Ethnology_Vol3_No2_Apr_1964, +118492,Nd3,EA009,Limited polygyny,EA009-2,,cushing1882;iliff1954;james1903;smithson1959;spier1928;wpawp1940,Havasupai Tribe,1870,EthnographicAtlas_1967_p110, +118493,Nd30,EA009,Limited polygyny,EA009-2,,driver1937;steward1933,,1870,EthnographicAtlas_1967_p110, +118494,Nd31,EA009,Limited polygyny,EA009-2,,driver1937;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +118495,Nd32,EA009,Limited polygyny,EA009-2,,driver1937;steward1938,with special reference to those of Saline Valley,1850,EthnographicAtlas_1967_p110, +118496,Nd33,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,including the Belted Range group,1870,Ethnology_Vol3_No2_Apr_1964, +118497,Nd34,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +118498,Nd35,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +118499,Nd36,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +118500,Nd37,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +118501,Nd38,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +118502,Nd39,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,including the Shoshoni of Snake and Antelope Valleys,1870,Ethnology_Vol3_No2_Apr_1964, +118503,Nd4,EA009,"Polygyny, non-sororal cohabit",EA009-6,,ray1932;ray1942,,1870,EthnographicAtlas_1967_p110, +118504,Nd40,EA009,Limited polygyny,EA009-2,,steward1938;steward1943,,1870,Ethnology_Vol3_No2_Apr_1964, +118505,Nd41,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,,1870,Ethnology_Vol3_No2_Apr_1964, +118506,Nd42,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,"including the Carlin, Halleck, and Wells groups",1870,Ethnology_Vol3_No2_Apr_1964, +118507,Nd43,EA009,Limited polygyny,EA009-2,,harris1940;steward1941,,1860,EthnographicAtlas_1967_p110, +118508,Nd44,EA009,Limited polygyny,EA009-2,,steward1938;steward1941,,1850,Ethnology_Vol3_No2_Apr_1964, +118509,Nd45,EA009,Limited polygyny,EA009-2,,murphyandmurphy1960;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +118510,Nd46,EA009,Limited polygyny,EA009-2,,lowie1909;steward1938;steward1943,,1860,EthnographicAtlas_1967_p110, +118511,Nd47,EA009,Limited polygyny,EA009-2,,hultkrantz1957;lowie1909;steward1938,,1850,Ethnology_Vol3_No2_Apr_1964, +118512,Nd48,EA009,Limited polygyny,EA009-2,,malouf1950;steward1938;steward1943;stewart1942,with special reference to those of Deep Creek,1860,EthnographicAtlas_1967_p110, +118513,Nd49,EA009,Limited polygyny,EA009-2,,kelly1964;stewart1942,including the Kaiparowits band,1860,EthnographicAtlas_1967_p110, +118514,Nd5,EA009,"Polygyny, sororal cohabit",EA009-3,,hoebel1939;steward1943,,1870,EthnographicAtlas_1967_p110, +118515,Nd50,EA009,Limited polygyny,EA009-2,,kelly1964,,1860,Ethnology_Vol3_No2_Apr_1964, +118516,Nd51,EA009,Limited polygyny,EA009-2,,lowie1924;watkins1945,,1860,Ethnology_Vol3_No2_Apr_1964, +118517,Nd52,EA009,Limited polygyny,EA009-2,,drucker1941;lowie1924;stewart1942,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EthnographicAtlas_1967_p110, +118518,Nd53,EA009,Limited polygyny,EA009-2,,gifford1917;kelly1938;kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +118519,Nd54,EA009,Monogamous,EA009-1,,drucker1937;kroeber1925g,Colorado River Reservation,1860,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118520,Nd55,EA009,Limited polygyny,EA009-2,,driver1937;steward1938;steward1941,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,Ethnology_Vol3_No2_Apr_1964, +118521,Nd56,EA009,Limited polygyny,EA009-2,,kelly1964;stewart1942,,1860,EthnographicAtlas_1967_p110, +118522,Nd57,EA009,Limited polygyny,EA009-2,,steward1938;stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +118523,Nd58,EA009,Limited polygyny,EA009-2,,gifford1917;lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +118524,Nd59,EA009,Limited polygyny,EA009-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +118525,Nd6,EA009,Limited polygyny,EA009-2,,barrett1917b;downs1966;freed1960;lowie1939;stewart1941,,1850,EthnographicAtlas_1967_p110, +118526,Nd60,EA009,Limited polygyny,EA009-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +118527,Nd61,EA009,Limited polygyny,EA009-2,,stewart1942,,1860,Ethnology_Vol3_No2_Apr_1964, +118528,Nd62,EA009,Limited polygyny,EA009-2,,lowie1924;stewart1942,,1860,EthnographicAtlas_1967_p110, +118529,Nd63,EA009,Limited polygyny,EA009-2,,lowie1930;murphyandmurphy1960;steward1943,with special reference to the Eastern Bannock,1860,EthnographicAtlas_1967_p110, +118530,Nd64,EA009,Limited polygyny,EA009-2,,hultkrantz1958;lowie1924;murphyandmurphy1960;shimkin1947a;shimkin1947b,with special reference to the Kucundika,1860,EthnographicAtlas_1967_p110, +118531,Nd65,EA009,Limited polygyny,EA009-2,,drucker1941;kniffenetal1935,,1870,EthnographicAtlas_1967_p110, +118532,Nd66,EA009,Limited polygyny,EA009-2,,drucker1941;gifford1936,with exdlusive reference to the Northeastern Yavapai,1870,EthnographicAtlas_1967_p110, +118533,Nd67,EA009,"Polygyny, sororal cohabit",EA009-3,,gifford1936,,1870,EthnographicAtlas_1967_p110, +118534,Nd7,EA009,Limited polygyny,EA009-2,But communal dwellings in winter,boas1918;chamberlain1892;ray1942;turneyhigh1941,Lower or eastern branch,1880,EthnographicAtlas_1967_p110, +118535,Nd8,EA009,Limited polygyny,EA009-2,,lane1963b;morice1893;ray1942;teit1907,with special reference to the Alexis Creek and Redstone bands,1880,EthnographicAtlas_1967_p110, +118536,Nd9,EA009,"Polygyny, sororal cohabit",EA009-3,,hilltout1905;ray1942;teit1906b,,1860,EthnographicAtlas_1967_p110, +118537,Ne1,EA009,"Polygyny, sororal cohabit",EA009-3,,cooper1956;flannery1953;kroeber1908c,Gros Ventre Tribe,1880,EthnographicAtlas_1967_p110, +118538,Ne10,EA009,"Polygyny, sororal cohabit",EA009-3,,curtis1909b;gilmore1927;lowie1912a;macgowan1942;willandhyde1917,,1860,EthnographicAtlas_1967_p110, +118539,Ne11,EA009,"Polygyny, sororal cohabit",EA009-3,,denig1930;lowie1910;rodnick1938,,1870,EthnographicAtlas_1967_p110, +118540,Ne12,EA009,"Polygyny, sororal cohabit",EA009-3,,ewers1958;hanksandrichardson1945;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +118541,Ne13,EA009,"Polygyny, sororal cohabit",EA009-3,,ewers1955;goldfrank1945a;wissler1910;wissler1911,,1850,EthnographicAtlas_1967_p110, +118542,Ne14,EA009,Limited polygyny,EA009-2,,hesketh1923;howard1961;howard1965a;skinner1914b,,1850,EthnographicAtlas_1967_p110, +118543,Ne15,EA009,"Polygyny, sororal cohabit",EA009-3,,bowers1965;curtis1909;matthews1877;wiedneuwied1906;wilson1917,Hidatsa Village,1860,EthnographicAtlas_1967_p110, +118544,Ne16,EA009,Limited polygyny,EA009-2,But a shelter often accompanied two families,gatschet1891;schaedel1949,,1800,EthnographicAtlas_1967_p110, +118545,Ne17,EA009,"Polygyny, sororal cohabit",EA009-3,"""The basic economic and social group . . . was a group of brothers and their wives and children""",lowie1923;mooney1898;richardson1940,,1860,EthnographicAtlas_1967_p110, +118546,Ne18,EA009,"Polygyny, sororal cohabit",EA009-3,,ewers1955;josselindejong1912;michelson1916;wissler1911,,1850,EthnographicAtlas_1967_p110, +118547,Ne19,EA009,Limited polygyny,EA009-2,,mandelbaum1940;skinner1914a,,1850,EthnographicAtlas_1967_p110, +118548,Ne2,EA009,"Polygyny, sororal cohabit",EA009-3,,mcallister1937,,1870,EthnographicAtlas_1967_p110, +118549,Ne20,EA009,"Polygyny, non-sororal cohabit",EA009-6,,mead1937c;riggs1893;skinner1919;wallis1947,,1850,EthnographicAtlas_1967_p114, +118550,Ne21,EA009,?,EA009-NA,,,,,, +118551,Ne3,EA009,"Polygyny, sororal cohabit",EA009-3,,gladwin1948;hoebel1940;lee1957;rister1955;wallaceandhoebel1952,Comanche Tribe,1870,EthnographicAtlas_1967_p110, +118552,Ne4,EA009,"Polygyny, sororal cohabit",EA009-3,,denig1953;lowie1912b;lowie1917b;lowie1919;lowie1922;lowie1935;wagnerandallen1933,,1870,EthnographicAtlas_1967_p110, +118553,Ne5,EA009,"Polygyny, sororal cohabit",EA009-3,,anderson1949;eggan1937b;grinnell1918;grinnell1923;hilger1946;hoebel1960;mooney190507,,1860,EthnographicAtlas_1967_p110, +118554,Ne6,EA009,"Polygyny, sororal cohabit",EA009-3,,bowers1950;lowie1917a;willandspinden1906,,1830,EthnographicAtlas_1967_p110, +118555,Ne7,EA009,"Polygyny, sororal cohabit",EA009-3,,honigmann1956a;jenness1938,,1880,EthnographicAtlas_1967_p110, +118556,Ne8,EA009,"Polygyny, sororal cohabit",EA009-3,,curtis1908;deloria1932;dorsey1894;erikson1939;erikson1950;ewers1937;goldfrank1943;hassrick1944;hassrick1964;macgregor1946;mckeel1936;mekeel1936;mirsky1937b;niehardt1951,,1870,EthnographicAtlas_1967_p110, +118557,Ne9,EA009,"Polygyny, sororal cohabit",EA009-3,,eggan1937b;elkin1940b;hilger1952;kroeber190207;michelson1934,,1860,EthnographicAtlas_1967_p110, +118558,Nf10,EA009,Limited polygyny,EA009-2,,morgan1871;skinner1926,,1870,EthnographicAtlas_1967_p114, +118559,Nf11,EA009,Limited polygyny,EA009-2,,whitman1937,,1870,EthnographicAtlas_1967_p114, +118560,Nf12,EA009,Limited polygyny,EA009-2,,dorsey1897;howard1965b,,1850,EthnographicAtlas_1967_p114, +118561,Nf13,EA009,Limited polygyny,EA009-2,,trowbridge1939,with special reference to the Kiskopotha band,1820,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118562,Nf14,EA009,Limited polygyny,EA009-2,,parsons1941;swanton1942b,,,Ethnology_Vol7_No1_Jan_1968, +118563,Nf15,EA009,"Polygyny, non-sororal cohabit",EA009-6,,hockett1938;jones1913;morgan1871,,1870,Ethnology_Vol7_No1_Jan_1968, +118564,Nf2,EA009,Limited polygyny,EA009-2,,michelson1935;oestreich1948;radin1923,,1850,EthnographicAtlas_1967_p114, +118565,Nf3,EA009,Limited polygyny,EA009-2,,dorsey1884;fletcherandlaflesche1911;fortune1932a;mead1932b,Omaha Tribe,1850,EthnographicAtlas_1967_p114, +118566,Nf4,EA009,"Polygyny, sororal cohabit",EA009-3,,kinietz1940b;morgan1871,,1720,EthnographicAtlas_1967_p114, +118567,Nf5,EA009,"Polygyny, sororal cohabit",EA009-3,,curtis1930;dorsey1904a;schmitt1952;schmittandschmitt1953,,1860,EthnographicAtlas_1967_p114, +118568,Nf6,EA009,"Polygyny, sororal cohabit",EA009-3,,dorsey1904b;dorseyandmurie1940;lounsbury1956;weltfish1965,Skidi Band or subtribe,1867,EthnographicAtlas_1967_p114, +118569,Nf7,EA009,"Polygyny, sororal cohabit",EA009-3,,joffe1940;linton1940;michelson1938;tax1937,Tama Reservation,1830,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118570,Nf8,EA009,Limited polygyny,EA009-2,,griffith1954;parson1941;spier1924;swanton1942b,,1770,EthnographicAtlas_1967_p114, +118571,Nf9,EA009,"Polygyny, non-sororal cohabit",EA009-6,,hoffman1893;keesing1939;skinner1913;spindler1962,,1870,EthnographicAtlas_1967_p114, +118572,Ng1,EA009,Monogamous,EA009-1,,kinietz1940a;tooker1964;trigger1969,Bear and Cord Subtribes,1640,EthnographicAtlas_1967_p114, +118573,Ng10,EA009,Monogamous,EA009-1,,fenton1940;goldenweiser191213;hunt1940;morgan1871;morgan1877;morgan1901;noon1949;quain1937,with special reference to the Seneca tribe,1750,EthnographicAtlas_1967_p114, +118574,Ng11,EA009,Limited polygyny,EA009-2,,eggan1937a;speck1909;swanton1946,,1750,EthnographicAtlas_1967_p114, +118575,Ng12,EA009,Limited polygyny,EA009-2,,eggan1937a;swanton1931;swanton1946,,1760,EthnographicAtlas_1967_p114, +118576,Ng13,EA009,?,EA009-NA,,,,,, +118577,Ng14,EA009,Limited polygyny,EA009-2,,swanton1928b;swanton1946,,,Ethnology_Vol7_No1_Jan_1968, +118578,Ng15,EA009,Limited polygyny,EA009-2,,haas1939;swanton1911,,1750,Ethnology_Vol7_No1_Jan_1968, +118579,Ng2,EA009,Monogamous,EA009-1,,spoehr1941;spoehr1942;spoehr1944,with special reference to the Cow Creek band,1940,Ethnology_Vol1_No1_Jan_1962, +118580,Ng3,EA009,Limited polygyny,EA009-2,,bartram1953;murdock1956;speck1907;swanton1928a;swanton1928c;swanton1946,Upper division in Alabama,1750,EthnographicAtlas_1967_p114, +118581,Ng4,EA009,Limited polygyny,EA009-2,,speck1918;speck1940,,1900,Ethnology_Vol1_No2_Apr_1962, +118582,Ng5,EA009,Limited polygyny,EA009-2,,gearing1962;gilbert1937;gilbert1943;swanton1946,,1750,EthnographicAtlas_1967_p114, +118583,Ng6,EA009,Limited polygyny,EA009-2,,harrington1913;herman1950;newcomb1956;wallace1947a,with special reference to the Munsee,1700,EthnographicAtlas_1967_p114, +118584,Ng7,EA009,"Polygyny, sororal cohabit",EA009-3,,macleod1924;swanton1911;whiteetal1971,Natchez Kingdom,1700,EthnographicAtlas_1967_p114, +118585,Ng8,EA009,Limited polygyny,EA009-2,,brinton1859;ehrmann1940;swanton1916;swanton1942a,,1560,EthnographicAtlas_1967_p114, +118586,Ng9,EA009,Limited polygyny,EA009-2,,speckandschaeffer1942;sturtevant1965;swanton1946,,1920,Ethnology_Vol4_No3_Jul_1965, +118587,Nh1,EA009,"Polygyny, sororal cohabit",EA009-3,,gifford1940;opler1936b;opler1936c;opler1937;opler1941;opler1971c,Central band,1880,EthnographicAtlas_1967_p114, +118588,Nh10,EA009,Monogamous,EA009-1,,parsons1932a;trager1943,,1920,EthnographicAtlas_1967_p114, +118589,Nh11,EA009,Monogamous,EA009-1,,dozier1954;dozier1961;parsons1929;robbinsetal1916;whitman1940,with special reference to the pueblo of San Ildefonso,1900,EthnographicAtlas_1967_p114, +118590,Nh12,EA009,Monogamous,EA009-1,,gifford1940;white1942,,1920,EthnographicAtlas_1967_p114, +118591,Nh13,EA009,Monogamous,EA009-1,,eggan1950;mickey1956;miller1959;white1932;white1943,,1920,EthnographicAtlas_1967_p114, +118592,Nh14,EA009,Monogamous,EA009-1,,eggan1950;parson1923,,1920,Ethnology_Vol2_No2_Apr_1963, +118593,Nh15,EA009,"Polygyny, sororal cohabit",EA009-3,,castetterandopler1936;flannery1932;gifford1940;opler1936a,,1870,EthnographicAtlas_1967_p114, +118594,Nh16,EA009,"Polygyny, sororal cohabit",EA009-3,,bellah1952;gifford1940;opler1936d;opler1946,"Jicarilla Reservation, Dulce, New Mexico",1870,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118595,Nh17,EA009,Limited polygyny,EA009-2,,gifford1940;goodwin1935;goodwin1942;kaut1957;lockwood1938;opler1941,,1870,EthnographicAtlas_1967_p114, +118596,Nh18,EA009,Monogamous,EA009-1,,beaglehole1937;beagleholeandbeaglehole1935;dennis1940;eggan1950;hrdlicka1935;lowie1929;murdock1934n;simmons1942;titiev1944;voegelinandvoegelin1957,Old Oraiibi,1920,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118597,Nh19,EA009,Limited polygyny,EA009-2,,drucker1941;gifford1933,,1850,EthnographicAtlas_1967_p114, +118598,Nh2,EA009,Monogamous,EA009-1,,dozier1954,,1950,EthnographicAtlas_1967_p114, +118599,Nh20,EA009,Limited polygyny,EA009-2,,gifford1931,,1860,EthnographicAtlas_1967_p114, +118600,Nh21,EA009,Limited polygyny,EA009-2,,devereaux1950;drucker1941;kroeber1902;kroeber1925i,Fort Mohave and Colorado River Reservation,1850,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118601,Nh22,EA009,Monogamous,EA009-1,,bee1963;drucker1937;forde1931;halpern1942,,1860,EthnographicAtlas_1967_p114, +118602,Nh23,EA009,Limited polygyny,EA009-2,,gifford1932a,,1870,EthnographicAtlas_1967_p114, +118603,Nh24,EA009,Monogamous,EA009-1,,gifford1940;opler1936a,,1880,EthnographicAtlas_1967_p114, +118604,Nh25,EA009,Monogamous,EA009-1,,hawleyetal1943;stevenson1894;white1962,,1920,EthnographicAtlas_1967_p114, +118605,Nh26,EA009,Monogamous,EA009-1,,harrington1912;parsons1924;parsons1929,,1910,Ethnology_Vol7_No1_Jan_1968, +118606,Nh27,EA009,Monogamous,EA009-1,,white1935,,1930,Ethnology_Vol7_No1_Jan_1968, +118607,Nh3,EA009,"Polygyny, sororal separate quarters",EA009-4,,franciscanfathers1910;goldfrank1945b;hill1938;kluckhohn1947;kluckhohnandleighton1946;leightonandkluckhohn1947;reichard1928,,1930,EthnographicAtlas_1967_p114, +118608,Nh4,EA009,Monogamous,EA009-1,,benedict1934[57-129];bunzel1930;bunzel1932;cushing1920;eggan1950;gifford1940;kroeber1917b;leightonandadair1966;parsons1919;roberts1956;robertsnd;smith1954b;stevenson1904;stevenson1909,Pueblo,1910,EthnographicAtlas_1967_p114, +118609,Nh5,EA009,Limited polygyny,EA009-2,,drucker1941;spier1933,,1850,EthnographicAtlas_1967_p114, +118610,Nh6,EA009,Monogamous,EA009-1,,parsons1936b;trager1943,,1890,EthnographicAtlas_1967_p114, +118611,Nh7,EA009,Monogamous,EA009-1,,dumarest1919;goldfrank1927;parsons1932b,,1890,EthnographicAtlas_1967_p114, +118612,Nh8,EA009,Monogamous,EA009-1,,hawley1964;parsons1925;parsons1932b,,1920,EthnographicAtlas_1967_p114, +118613,Nh9,EA009,Monogamous,EA009-1,,parsons1939;trager1943,,1920,EthnographicAtlas_1967_p114, +118614,Ni1,EA009,Limited polygyny,EA009-2,,bennettandzingg1935;passin1943,,1930,EthnographicAtlas_1967_p114, +118615,Ni2,EA009,"Polygyny, sororal cohabit",EA009-3,,castetterandbell1942;josephetal1949;lumholtz1912;underhill1936;underhill1939,,1930,EthnographicAtlas_1967_p114, +118616,Ni3,EA009,Limited polygyny,EA009-2,,grimesandgrimes1962;grimesandhinton1969;klineberg1934;lumholtz1898;lumholtz1902;zingg1938,Huichol Tribe,1920,EthnographicAtlas_1967_p114, +118617,Ni4,EA009,Monogamous,EA009-1,,ascher1962;kroeber1931;mcgee1898,,1900,EthnographicAtlas_1967_p114, +118618,Ni5,EA009,Monogamous,EA009-1,,driveranddriver1963,,1570,EthnographicAtlas_1967_p114, +118619,Ni6,EA009,Limited polygyny,EA009-2,,castetterandbell1942;drucker1941;parsons1928;russell1908,,1840,EthnographicAtlas_1967_p114, +118620,Ni7,EA009,Limited polygyny,EA009-2,,beals1943;drucker1941,,1870,EthnographicAtlas_1967_p114, +118621,Ni8,EA009,Monogamous,EA009-1,,johnson1950,,1550,Ethnology_Vol7_No1_Jan_1968, +118622,Ni9,EA009,?,EA009-NA,,,,,, +118623,Nj1,EA009,Monogamous,EA009-1,,merrifield1959;weitlaner1951;weitlanerandcastroguevara1954,Ojitlan,1940,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118624,Nj10,EA009,Monogamous,EA009-1,,fuente1949;nader1964;parsons1936a,mountain village of Yalagag,1940,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118625,Nj11,EA009,Monogamous,EA009-1,,guiterasholmes1948;schuller1927;stresserpeau195253,,,Ethnology_Vol7_No1_Jan_1968, +118626,Nj12,EA009,?,EA009-NA,,,,,, +118627,Nj13,EA009,?,EA009-NA,,,,,, +118628,Nj14,EA009,?,EA009-NA,,,,,, +118629,Nj2,EA009,Limited polygyny,EA009-2,,holtker1930;murdock1934b[359-402];prescott1922;sahagun195057;selersachs1919;soustelle1961;thompson1933;vaillant1941,City & environs of Tenochtitlan,1520,EthnographicAtlas_1967_p114, +118630,Nj3,EA009,"Polygyny, sororal cohabit",EA009-3,,foster1940;foster1942;foster1943;foster1945,Town and environs of Soteapan,1940,EthnographicAtlas_1967_p118, +118631,Nj4,EA009,?,EA009-NA,,,,,, +118632,Nj5,EA009,Limited polygyny,EA009-2,,cowan1946;cowan1947,,1940,Ethnology_Vol1_No4_Oct_1962, +118633,Nj6,EA009,Monogamous,EA009-1,,diebold1966,with special reference to San Mateo,1950,Ethnology_Vol5_No4_Oct_1966, +118634,Nj7,EA009,Monogamous,EA009-1,,beals1945,with special reference to Ayutla,1930,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118635,Nj8,EA009,Limited polygyny,EA009-2,,foster1948,,1500,EthnographicAtlas_1967_p118, +118636,Nj9,EA009,Limited polygyny,EA009-2,,nutini1962;nutini1965,,1960,EthnographicAtlas_1967_p118, +118637,Sa1,EA009,Limited polygyny,EA009-2,,depuydt1868;holloman1969;holmer1951;krieger1926;nordenskiold1938;stout1947;wafer1934,San Blas Archipelago,1940,EthnographicAtlas_1967_p118, +118638,Sa10,EA009,"Polygyny, non-sororal cohabit",EA009-6,,baerandbaer1949;tozzer1907,,1900,EthnographicAtlas_1967_p118, +118639,Sa11,EA009,Monogamous,EA009-1,,stoll1889,,1880,Ethnology_Vol6_No1_Jan_1967, +118640,Sa12,EA009,"Polygyny, non-sororal cohabit",EA009-6,,stone1948,,1948,EthnographicAtlas_1967_p118, +118641,Sa13,EA009,Limited polygyny,EA009-2,,bunzel1952;schultzejena1933,Town of Chichicastenango,1930,EthnographicAtlas_1967_p118, +118642,Sa14,EA009,"Polygyny, sororal separate quarters",EA009-4,,alphonse1956;johnson1938,,,Ethnology_Vol7_No1_Jan_1968, +118643,Sa15,EA009,Monogamous,EA009-1,,lafargeandbyers1931,,1920,Ethnology_Vol7_No1_Jan_1968, +118644,Sa16,EA009,"Polygyny, non-sororal cohabit",EA009-6,,hagen1943;kirchhoff1948a,,,Ethnology_Vol7_No1_Jan_1968, +118645,Sa17,EA009,Monogamous,EA009-1,"Extended families, though considered the ideal, constitute only 35 per cent of all households",gillin1951;reina1966,with special reference to the village of Chinantla,1950,Ethnology_Vol7_No1_Jan_1968, +118646,Sa2,EA009,Limited polygyny,EA009-2,,guiterasholmes1947;redfieldandvillarojas1939;villarojas1947,with special reference to the town of Canuc; some data apply to the group more generally,1940,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118647,Sa3,EA009,Monogamous,EA009-1,,wisdom1940,,1930,EthnographicAtlas_1967_p118, +118648,Sa4,EA009,Monogamous,EA009-1,,faron1961a;faron1962;reicheldolmatoff1960;stout1948,with special reference to those of Panama,1960,EthnographicAtlas_1967_p118, +118649,Sa5,EA009,Monogamous,EA009-1,"But today code ""2"", independent nuclear families with occasional polygyny",gabb1876;johnson1948;pittierdefabrega1938;skinner1920;stone1962,,1950,Ethnology_Vol6_No4_Oct_1967, +118650,Sa6,EA009,Monogamous,EA009-1,,carrasco1967;chamberlain1951;gannandthompson1931;redfieldandvillarojas1934;roys1943;roys1951;roys1957;thompson1927;tozzer1941;vonhagen1957,,1520,EthnographicAtlas_1967_p118, +118651,Sa7,EA009,Limited polygyny,EA009-2,,solien1960a;solien1960b;taylor1951,,1940,EthnographicAtlas_1967_p118, +118652,Sa8,EA009,Monogamous,EA009-1,,wagley1941;wagley1949b,with special reference to the village of Santiago Chimaltenango,1930,EthnographicAtlas_1967_p118, +118653,Sa9,EA009,Limited polygyny,EA009-2,,conzemius1932;helms1969;helms1971;kirchhoff1948a;pijoan1946,Vicinity: Cape Gracias a Dios,1920,EthnographicAtlas_1967_p118, +118654,Sb1,EA009,Limited polygyny,EA009-2,,bouton1640;breton1665;bretonanddelapaix1929;dutertre1667;hodgeandtaylor1957;rouse1948b;taylor1938;taylor1946;taylor1949,Dominica Island,1650,EthnographicAtlas_1967_p118, +118655,Sb2,EA009,Limited polygyny,EA009-2,,park1946;reicheldolmatoff194951,,1940,EthnographicAtlas_1967_p118, +118656,Sb3,EA009,"Polygyny, non-sororal cohabit",EA009-6,,holder1947;reicheldolmatoff1945;reicheldolmatoffandclark1950,with special reference to the Iroka,1940,Ethnology_Vol1_No2_Apr_1962, +118657,Sb4,EA009,Limited polygyny,EA009-2,,schwein1963;schwerin1966;schwerin1967;wilbert1957a,with special reference to the Cachama group,1950,Ethnology_Vol7_No3_Jul_1968, +118658,Sb5,EA009,Limited polygyny,EA009-2,,jahn1914;wilbert1959c,,1950,EthnographicAtlas_1967_p118, +118659,Sb6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,armstrongandmetraux1948;bolinder1957;gutierrezdepineda1948;pinedagiraldo1950;santacruz1941;santacruz1960;simons1885;watson1973;wilbert1962,Goajiro Tribe,1940,EthnographicAtlas_1967_p118, +118660,Sb7,EA009,Limited polygyny,EA009-2,,wilbert1961b,with special reference to the Pariri,1950,EthnographicAtlas_1967_p118, +118661,Sb8,EA009,Limited polygyny,EA009-2,,rouse1948a,,1520,EthnographicAtlas_1967_p118, +118662,Sb9,EA009,Limited polygyny,EA009-2,,bastien1951;courlander1960;herskovits1937b;leyburn1941;metraux1959;metraux1960;mintz1963;rawsonnd;romain1955;simpson1940a;simpson1943;underwood1960;underwoodandhonigmann1947,,1930,Ethnology_Vol10_No1_Jan_1971, +118663,Sc1,EA009,"Polygyny, sororal cohabit",EA009-3,,hill1956;kirchhoff1948b;moreno1945;suarez1968;wilbert1958b;wilbert1964,,1950,EthnographicAtlas_1967_p118, +118664,Sc10,EA009,Limited polygyny,EA009-2,,coll1903;geoje1910;kirchhoff1931;taylor1957,,1900,EthnographicAtlas_1967_p118, +118665,Sc11,EA009,"Polygyny, non-sororal cohabit",EA009-6,,simpson1940b;wilbert1961a,,1930,EthnographicAtlas_1967_p118, +118666,Sc12,EA009,Limited polygyny,EA009-2,,farabee1924;kirchhoff1931,,1910,EthnographicAtlas_1967_p118, +118667,Sc13,EA009,"Polygyny, sororal cohabit",EA009-3,But the inhabitants of a communal dwelling approximate an extended family,riley1954;wilbert1959a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +118668,Sc14,EA009,"Polygyny, sororal cohabit",EA009-3,,coudreau1893,,1890,Ethnology_Vol2_No2_Apr_1963, +118669,Sc15,EA009,Limited polygyny,EA009-2,,kochgrunberg1923a;soaresdiniz1965;ule1913,,1910,EthnographicAtlas_1967_p118, +118670,Sc16,EA009,"Polygyny, sororal cohabit",EA009-3,"Each nuclear family occupies a separate apartment in a communal dwelling, but a married man is subject to the authority of his father-in-law",barandiaran1962;kochgrunberg1923b;wilbert1958c;wilbert1963,with special reference to the Makitare,1920,EthnographicAtlas_1967_p118, +118671,Sc17,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +118672,Sc18,EA009,"Polygyny, sororal separate quarters",EA009-4,But co-wives commonly live in different villages,geyskes1954;kobben1967a;kobben1967b;thodenvanvelzen1966;vanderkuyp1962,,1960,Ethnology_Vol6_No4_Oct_1967, +118673,Sc2,EA009,Limited polygyny,EA009-2,,leedsnd,,1950,EthnographicAtlas_1967_p118, +118674,Sc3,EA009,Limited polygyny,EA009-2,,gillin1936;gillin1948;gillinnd;roth1924,Barama River,1930,EthnographicAtlas_1967_p118, +118675,Sc4,EA009,Limited polygyny,EA009-2,"Nuclear families households, however, are normally grouped into larger extended families, of which there are usually two or three in a band",wilbert1957b;wilbert1963,with special reference to the non-agricultural groups,1950,EthnographicAtlas_1967_p118, +118676,Sc5,EA009,"Polygyny, non-sororal cohabit",EA009-6,Each polygynous family has its own section in a communal house,farabee1918,,1900,EthnographicAtlas_1967_p118, +118677,Sc6,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,herskovitsandherskovits1934;hurault1959;neumann1967;price1975,Upper Suriname River; Akwa on Morini River,1920,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118678,Sc7,EA009,Limited polygyny,EA009-2,There were formerly communal dwellings,wilbert1959b,,1950,EthnographicAtlas_1967_p118, +118679,Sc8,EA009,Limited polygyny,EA009-2,But the inhabitants of the communal dwelling may constitute a matrilocal extended family,wilbert1958a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +118680,Sc9,EA009,Monogamous,EA009-1,,wilbert1960a;wilbert1963,,1950,EthnographicAtlas_1967_p118, +118681,Sd1,EA009,Limited polygyny,EA009-2,,frikel1959;kruse1937;martius186367;murphy1956;murphy1957;murphy1958;murphy1960;tocantins1877,Cabrura village,1950,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118682,Sd2,EA009,Monogamous,EA009-1,,wagley1943;wagleyandgalvao1948a,,1930,EthnographicAtlas_1967_p118, +118683,Sd3,EA009,Monogamous,EA009-1,,nimuendaju1926,,1920,EthnographicAtlas_1967_p118, +118684,Sd4,EA009,Limited polygyny,EA009-2,,barker1953;zerries1954,,1950,Ethnology_Vol1_No4_Oct_1962, +118685,Sd5,EA009,Limited polygyny,EA009-2,,lecock1964;nimuendaju1948,,1950,EthnographicAtlas_1967_p118, +118686,Sd6,EA009,Limited polygyny,EA009-2,,migliazza1964,,1960,EthnographicAtlas_1967_p118, +118687,Sd7,EA009,Limited polygyny,EA009-2,But an entire village occupies a communal dwelling,fock1963,,1950,EthnographicAtlas_1967_p118, +118688,Sd8,EA009,"Polygyny, non-sororal cohabit",EA009-6,,wilbert1963,,1950,EthnographicAtlas_1967_p118, +118689,Sd9,EA009,"Polygyny, sororal cohabit",EA009-3,,chagnon1967;chagnon1968a;chagnon1968b,Shamatari Tribe; Bisaasi-teri,1965,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118690,Se1,EA009,"Polygyny, sororal cohabit",EA009-3,,holmberg1950,Vicinity of the Rio Blanco,1940,EthnographicAtlas_1967_p118, +118691,Se10,EA009,Limited polygyny,EA009-2,,espinosa1935;metraux1948b;tessmann1930,,1670,EthnographicAtlas_1967_p118, +118692,Se11,EA009,Limited polygyny,EA009-2,,prost1965,,1960,EthnographicAtlas_1967_p122, +118693,Se12,EA009,"Polygyny, non-sororal cohabit",EA009-6,,fulop1955,,1950,Ethnology_Vol7_No1_Jan_1968, +118694,Se2,EA009,Limited polygyny,EA009-2,,leeds1961;nimenuendaju1952,,1940,EthnographicAtlas_1967_p118, +118695,Se3,EA009,"Polygyny, non-sororal cohabit",EA009-6,,harner1960;harner1962;karsten1935;rivet190708;stirling1938;updegraff1923,,1930,EthnographicAtlas_1967_p118, +118696,Se4,EA009,Monogamous,EA009-1,But an entire settlement occupies a communal dwelling,fejos1943,,1940,EthnographicAtlas_1967_p118, +118697,Se5,EA009,Limited polygyny,EA009-2,But each family has a separate apartment in a communal dwelling,goldman1948;goldman1963,Village on Caduiari River,1940,EthnographicAtlas_1967_p118, +118698,Se6,EA009,Limited polygyny,EA009-2,Each family has a separate apartment in a communal dwelling,murdock1936b;tessmann1930;whitten1915,,1910,EthnographicAtlas_1967_p118, +118699,Se7,EA009,Monogamous,EA009-1,,heath1959,a mestizo group in lowland Bolivia,1950,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118700,Se8,EA009,Limited polygyny,EA009-2,,carneiro1962;carneiro1964a;carneiro1964b;carneiro1968;dole1961;dole1962;huxley1964;tessmann1930,Upper Inuya River,1950,EthnographicAtlas_1967_p118, +118701,Se9,EA009,"Polygyny, sororal cohabit",EA009-3,,stcricq1853;stewardandmetraux1948a,,1920,EthnographicAtlas_1967_p118, +118702,Sf1,EA009,Monogamous,EA009-1,Only the higher social strata practiced polygyny,baudin1961;baudin1962;brundage1963;ciezadeleon1554;cobo189095;mason1957;means1931;metraux1969;molima1915;murdock1934b[403-450];rowe1946,City and environs of Cuzco,1530,EthnographicAtlas_1967_p122, +118703,Sf2,EA009,Monogamous,EA009-1,,bouronclecarreon1964;labarre1948;tschopik1946;tschopik1951,Chucuito Clan community in Peru,1940,EthnographicAtlas_1967_p122, +118704,Sf3,EA009,Monogamous,EA009-1,,altschuler1965a;altschuler1965b;altschuler1971;barrett1925;heimann1932;murra1948,Rio Cayapas Basin,1910,EthnographicAtlas_1967_p122, +118705,Sf4,EA009,"Polygyny, non-sororal cohabit",EA009-6,Entry follows Wilbert; Rochereau reports monogamy,rochereau1919;rochereau1961;wilbert1960b,,1950,EthnographicAtlas_1967_p122, +118706,Sf5,EA009,"Polygyny, non-sororal cohabit",EA009-6,,bernalvilla1954;pittierdefabrega1907,,1900,EthnographicAtlas_1967_p122, +118707,Sf6,EA009,"Polygyny, non-sororal cohabit",EA009-6,,ghisletti1954;kroeber1946;restrepo1895,,1540,EthnographicAtlas_1967_p122, +118708,Sf7,EA009,"Polygyny, non-sororal cohabit",EA009-6,,caldwellandcalhoun1932;craig1967;nordenskiold1924;stewardandmetraux1948b,,1900,EthnographicAtlas_1967_p122, +118709,Sf8,EA009,Limited polygyny,EA009-2,,matteson1954,,1950,Ethnology_Vol7_No1_Jan_1968, +118710,Sf9,EA009,Limited polygyny,EA009-2,,labarre1941,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,Ethnology_Vol7_No1_Jan_1968, +118711,Sg1,EA009,Limited polygyny,EA009-2,,cooper1917;cooper1946a;gusinde1937b,Eastern and central,1870,EthnographicAtlas_1967_p122, +118712,Sg2,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,faron1961b;faron1964;faron1968;hilger1957;nutini1972;titiev1951,Cholchol,1880,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118713,Sg3,EA009,Limited polygyny,EA009-2,,baerandschmitz1964;bridges1949;gallardo1910;gusinde1931a;gusinde1931a;lothrop1928;lowie1948;steward1949,with special reference to the Shelknam,1880,EthnographicAtlas_1967_p122, +118714,Sg4,EA009,Limited polygyny,EA009-2,,bourne1874;cooper1946c;musters1871;musters1972;viedma1837,Equestrian,1870,EthnographicAtlas_1967_p122, +118715,Sg5,EA009,Limited polygyny,EA009-2,,bird1946;cooper1917,with special reference to the southern bands,1900,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118716,Sh1,EA009,Limited polygyny,EA009-2,,karsten1932;pelleschi1896,,1860,EthnographicAtlas_1967_p122, +118717,Sh2,EA009,Limited polygyny,EA009-2,,oberg1948a;oberg1949,,1850,EthnographicAtlas_1967_p122, +118718,Sh3,EA009,Limited polygyny,EA009-2,,dobrizhoffer1822;metraux1946chaco,Those in contact with mission,1800,EthnographicAtlas_1967_p122, +118719,Sh4,EA009,Limited polygyny,EA009-2,,oberg1949,,1940,EthnographicAtlas_1967_p122, +118720,Sh5,EA009,Monogamous,EA009-1,,karsten1932;nordenskiold1919;rosen1924a,,1910,EthnographicAtlas_1967_p122, +118721,Sh6,EA009,Monogamous,EA009-1,,baldus1931;boggiani1894,,1890,EthnographicAtlas_1967_p122, +118722,Sh7,EA009,Limited polygyny,EA009-2,There were formerly communal dwellings,campana1902;metraux1930;nordenskiold1912;rosen1924b,,1900,EthnographicAtlas_1967_p122, +118723,Sh8,EA009,Limited polygyny,EA009-2,,karsten1932;metraux1937;miller1965;miller1966;niklison1916;palavecino1955,with special reference to those of the Argentine Chaco,1964,EthnographicAtlas_1967_p122, +118724,Sh9,EA009,Limited polygyny,EA009-2,,baldus1931;grubb1911;hawtrey1901;metraux1946chaco,Those in contact with mission,1890,EthnographicAtlas_1967_p122, +118725,Si1,EA009,Limited polygyny,EA009-2,,fricandradin1906;levistrauss1936;oberg1953[1-144];steinen1894,Kejara,1920,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118726,Si10,EA009,Limited polygyny,EA009-2,But there are communal dwellings; each occupied by about four nuclear families on the average,carneiro1958;carneiroanddole1957;dole1958,,1950,Ethnology_Vol7_No2_Apr_1968, +118727,Si2,EA009,Limited polygyny,EA009-2,,levistrauss1948c;murphyandquain1955,Village of Vanivani,1930,EthnographicAtlas_1967_p122, +118728,Si3,EA009,Limited polygyny,EA009-2,,oberg1948b;oberg1953[1-144];steinen1892,Simao Lopes,1940,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118729,Si4,EA009,Limited polygyny,EA009-2,,levistrauss1944;levistrauss1948a;levistrauss1948b;levistrauss1955[235-310];oberg1953[82-105];roquettepinto1935,Cocozu Group,1940,EthnographicAtlas_1967_p122, +118730,Si5,EA009,Limited polygyny,EA009-2,,oberg1953[1-144],,1940,EthnographicAtlas_1967_p122, +118731,Si6,EA009,"Polygyny, sororal cohabit",EA009-3,,schmidt1905;schmidt1942,,1900,EthnographicAtlas_1967_p122, +118732,Si7,EA009,"Polygyny, sororal cohabit",EA009-3,,metraux1948a;schmidt1914,with special reference to the Cozarimi,1910,EthnographicAtlas_1967_p122, +118733,Si8,EA009,?,EA009-NA,,,,,, +118734,Si9,EA009,?,EA009-NA,"Communal dwellings, each occupied by several families",levistrauss1948c;oberg1953[1-144],,1940,Ethnology_Vol7_No1_Jan_1968, +118735,Sj1,EA009,Limited polygyny,EA009-2,,dietschy1962;dietschynd;ehrenreich1891;krause1911;lipkind1948,,1950,EthnographicAtlas_1967_p122, +118736,Sj10,EA009,Monogamous,EA009-1,"But formerly code ""2"", occasional polygyny",ambrosetti1895;keonigswald1908;muller193435;rengger1835;strelnikov1928;watson1952,Taquapiri,1950,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118737,Sj11,EA009,"Polygyny, sororal cohabit",EA009-3,,mayburylewis1967;nimuendaji1942,Village of Sao Domingo,1958,Ethnology_Vol6_No4_Oct_1967, +118738,Sj2,EA009,Limited polygyny,EA009-2,,nimuendaju1942,,1850,EthnographicAtlas_1967_p122, +118739,Sj3,EA009,"Polygyny, non-sororal cohabit",EA009-6,"Henry reports an incidence of 60 percent for monogamy, 18 per cent for polygyny, and 8 per cent for group marriage",henry1941;metraux1946caingang;paula1924,Duque de Caxias Reservation,1910,EthnographicAtlas_1967_p122, +118740,Sj4,EA009,Monogamous,EA009-1,,arnaud1964;crocker1961;kissenberth1912;lowie1946;nimuendaju1946;snethlage1930,Ramcocamecra or Canella,1930,EthnographicAtlas_1967_p122, +118741,Sj5,EA009,"Polygyny, sororal cohabit",EA009-3,,ehrenreich1887;keane1883;metraux1946botocudo;sainthilaire193033;wiedneuwied182021,Naknenuk subtribe,1880,EthnographicAtlas_1967_p122, +118742,Sj6,EA009,Limited polygyny,EA009-2,,snethlage1930;wagley1949a;wagleyandgalvao1948b,with special reference to the Guajajara subgroup,1930,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +118743,Sj7,EA009,Monogamous,EA009-1,,mayburylewis1960;nimuendaju1939,,1920,EthnographicAtlas_1967_p122, +118744,Sj8,EA009,"Polygyny, non-sororal separate quarters",EA009-5,,abbeville1614;cardim1906;devreux1864;lery1880;lery1906;magalhaesdegandavo1922;metraux1948c;soaresdesouza1851;staden1928;thevet1878,Hinterland of Rio de Janeiro,1600,EthnographicAtlas_1967_p122, +118745,Sj9,EA009,Monogamous,EA009-1,,dreyfus1963;krause1911;soatesdiniz1962,,1950,EthnographicAtlas_1967_p122, +118746,ch12,EA009,Limited polygyny,EA009-2,,bikbulatov1964;bikbulatov1980;bikbulatov1980a;bikbulatov1981;bikbulatovandkuzeev1976;bikbulatovandpimenov1998;janguzin1987;karlov1990;kazantsev1866;kinkov1927;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;nazarov1890;nikolskij1899;rudenko1925;rudenko1953;shakirova1988;tolstov1964;vangennep1960,with special reference to the Birskij Uezd Bashkir,1899,Ethnology_Vol44_No3_Summer_2005, +118747,ch13,EA009,Monogamous,EA009-1,,miheev1901;popova1992;shkljaev1997;stejnfeld1894;vladykinandpanova1998,with special reference to the Glazovskij Uezd Besermyan,1894,Ethnology_Vol44_No3_Summer_2005, +118748,ch14,EA009,Monogamous,EA009-1,,aleksandrov1899;denisova1984;fuks1840;guzenkovaandivanov1998;jagafova1998;karlov1990;komissarov1911;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;mihajlov1882;nikolskij1908;rittih1870;sboevnd;semenov1900b;skvortsov2001;tolstov1964;vorobevandromanov195670,with special reference to the Virjal group,1908,Ethnology_Vol44_No3_Summer_2005, +118749,ch15,EA009,Monogamous,EA009-1,,balashov1995;belitserandkotkova1963;fedjanovich1997;jurchenkov1995;karlov1990;kozlov1981;kozlova1964;kozlova1982;majnov1885;maksimov1997a;maksimov1997b;markelov1928;melnikov1981;mokshin1990;mokshinandfedjanovich1998;petruhinandhelimskij1982;serkina2002;smimov1895;tolstov1964;tumajkin1974,with special reference to those of the Boklinskij Uezd,1895,Ethnology_Vol44_No3_Summer_2005, +118750,ch16,EA009,Monogamous,EA009-1,,aleksandrovandshlygina1971;feoktistova1980;karlov1990;kozlova1982;luts1959;rejsner1916;sedov1987;tijk1977;tolstov1964;viaari1953;vulfson1908;wiedemann1876,with special reference to the Valkskij Uezd,1908,Ethnology_Vol44_No3_Summer_2005, +118751,ch17,EA009,Monogamous,EA009-1,,guboglo1998;moshkov1900;semenov1900c;tolstov1964,with special reference to those of the Benderskij Uezd,1894,Ethnology_Vol44_No3_Summer_2005, +118752,ch18,EA009,Monogamous,EA009-1,,keppen1853;kiuru1993;konkova1995;laanest1974;sedov1987;semenov1900a;shlygina1998a;sjogren1833;tolstov1964;ushakov1990;uspenskij1845;zolotarev1927,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,Ethnology_Vol44_No3_Summer_2005, +118753,ch19,EA009,Monogamous,EA009-1,,cheremin1909;efimenko1877;kiuru1993b;klementev1983;klementev1998;kochkurkina1986;kozlova1982;lennrot1985;majnov1877;maksimov1997c;malmi1987;nikolskaja1976;semenov1900a;surhasko1977;surhasko1985;taroeva1965;tolstov1964;zherbin1983,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,Ethnology_Vol44_No3_Summer_2005, +118754,ch20,EA009,Limited polygyny,EA009-2,,ahmarov1907;ishakovetal1998;karlov1990;kozlova1964;kozlova1982;maksimov1997a;maksimov1997b;pinegin1891;putsykovich1900;ramazanova1991;rittih1870;speranskij1914;suharev1904;vorobev1953;vorobevandhisamutdinov1967;znamenskij1910,with special reference to those of the Altayrskij Uezd,1910,Ethnology_Vol44_No3_Summer_2005, +118755,ch21,EA009,Monogamous,EA009-1,,aleksandrov1900a;aleksandrovandshlygina1971;anonymous1869;cheshihinvetrinskijv1901;efremova1982;karlov1990;kozlova1982;novoselov1911;rejsner1916;sedov1987;shtraus1994;tolstov1964;trejland1881;volter1890,with special reference to the Vidzeme group,1881,Ethnology_Vol44_No3_Summer_2005, +118756,ch22,EA009,Limited polygyny,EA009-2,,eljashevish1994;firkovich1969;hafuz1994;kefeli1992;maciuika1955;muhlinskij1862;muhlinskij1902;shapshal1995;tuhanbaranowski1896;vjartsinkjavjachus1989,with special reference to those of the Trakaj area,1895,Ethnology_Vol44_No3_Summer_2005, +118757,ch23,EA009,Monogamous,EA009-1,,grishin1995;ishakovetal1998;muhlinskij1902;shimelevich1905;tuhanbaranowski1896,with special reference to those of the Vilenskaja Gubernija,1905,Ethnology_Vol44_No3_Summer_2005, +118758,ch24,EA009,Monogamous,EA009-1,,beitipa1995;hillner1847;koppen1847;sjogren1847;sjogren1849;sjogren1855;tolstov1964;videman1870,with special reference to the Northwest Courland,1847,Ethnology_Vol44_No3_Summer_2005, +118759,ch25,EA009,Monogamous,EA009-1,,aleksandrov1900b;kantemir1973;karlov1990;kozlova1982;pljusnin1899;postolaki1987;salmanovich1947;semenov1900c;tolstov1964;zashchuk1859,with special reference to the Beletskij Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +118760,ch26,EA009,Monogamous,EA009-1,,buch1882;busyginandzorin1984;dolganovaetal1995;fedjanovich1997;haruzina1898;hristoljubova1981;ivanova1999;karlov1990;kozlova1964;kozlova1982;majer1985;maksimov1997a;maksimov1997b;petruhinandhelimskij1982;pimenov1993;rittih1870;shkljaev1992;simchenko1990;smimov1890;tolstov1964;vasilev1902;vereshchagin1886;vereshchagin1889;vladykinandhristoljubova1984;vladykinandhristoljubova1985;vladykinandhristoljubova1997;vladykinandhristoljubova1998,with special reference to those of the Sarapul'skij Uezd,1890,Ethnology_Vol44_No3_Summer_2005, +118761,ch27,EA009,Monogamous,EA009-1,,borisova1924;etoeva1977;kozlova1982;makarev1929;makarev1932;malinovskaja1930;morev1924;pimenov1965;ravdonikas1926;sedov1987;semenov1900a;tolstov1964;ushakov1990,with special reference to the Petrozavodskij Uezd Veps,1900,Ethnology_Vol44_No3_Summer_2005, +118762,ch28,EA009,Monogamous,EA009-1,,jazykov1840;keppen1851;konkova1996;sedov1987;semenov1900a;shlygina1998b;sjogren1833;tolstov1964;uspenskij1845,with special reference to those of the Yamburg Uezd,1900,Ethnology_Vol44_No3_Summer_2005, +118763,ec12,EA009,Limited polygyny,EA009-2,,afanaseva1990;fainberg1962;gracheva1983;gracheva1988;gracheva1994;pevgova1939;popov1948;popov1984;simchenko1963;simchenko1974;simchenko1976,Avam (Western) group,1930,Ethnology_Vol43_No1_Winter_2004, +118764,ec13,EA009,Limited polygyny,EA009-2,,krasheninnikov1994;kreinovich1973;orlova1999;steller1999,those of Eastern Kamchatka,1710,Ethnology_Vol43_No1_Winter_2004, +118765,ec14,EA009,Limited polygyny,EA009-2,,chlenov1973;krupnik1983b;lopulenko1980;menovshchikov1961,those of South-Eastern Chukotka,1880,Ethnology_Vol43_No1_Winter_2004, +118766,ec15,EA009,Monogamous,EA009-1,,duningorkavich1904;korikov1898;nosilov1904;novikova1994;pavlovskij1907;pevgova1939;rombandeevaandkuzakova2000;sokolova1974;sokolova1983;sokolova1991,Middle Northern Sos'va group,1880,Ethnology_Vol43_No1_Winter_2004, +118767,ec16,EA009,Monogamous,EA009-1,,karlov1982;kudrin1988;mazin1992;shirologoroff1933;sokolova1962;tugolukov1962;tugolukov1985;varlamov1997;vasilevich1962;vasilevich1969,Barguzin group,1890,Ethnology_Vol43_No1_Winter_2004, +118768,ec17,EA009,Limited polygyny,EA009-2,,gapanovich1927;levinandpotapov1956[776-780];shternberg1933a,Upper Amgun' River group,1890,Ethnology_Vol43_No1_Winter_2004, +118769,ec18,EA009,Limited polygyny,EA009-2,,ivashchenko1994;levinandpotapov1956[817-824];smoljak1966;sunik1985,Ulch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +118770,ec19,EA009,Limited polygyny,EA009-2,,levinandpotapov1956[857-859];petrova1969;shternberg1933a;smoljak1994,Northern group,1890,Ethnology_Vol43_No1_Winter_2004, +118771,ec20,EA009,Limited polygyny,EA009-2,,iochelson1908;larkin1964;levinandpotapov1956[845-849];lopatin1925;shternberg1933a;smoljak1994;turaev2001,Oroch people as a whole,1890,Ethnology_Vol43_No1_Winter_2004, +118772,ec21,EA009,Limited polygyny,EA009-2,,arsenev1926;girfanova2000;ivashchenko1989;kormushin1998;larkin1958;levinandpotapov1956;startsev2000,Hor River group,1890,Ethnology_Vol43_No1_Winter_2004, +118773,Aa1,EA090,Autonomous communities,EA090-2,,,Nyai Nyae region,1950,Gray (1999); Murdock (1957), +118774,Aa2,EA090,Autonomous communities,EA090-2,,,with special reference to Central Dorobo,1920,Gray (1999); Murdock (1957), +118775,Aa3,EA090,Minimal states,EA090-4,,,Gei/Khauan tribe,1840,Gray (1999); Murdock (1957), +118776,Aa4,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +118777,Aa5,EA090,Autonomous communities,EA090-2,,,"Epulu net-hunters, Ituri forest",1930,Gray (1999); Murdock (1957), +118778,Aa6,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +118779,Aa7,EA090,?,EA090-NA,,,,,, +118780,Aa8,EA090,?,EA090-NA,,,,,, +118781,Aa9,EA090,?,EA090-NA,,,,,, +118782,Ab1,EA090,Autonomous communities,EA090-2,,,,1900,Gray (1999); Murdock (1957), +118783,Ab10,EA090,?,EA090-NA,,,,,, +118784,Ab11,EA090,?,EA090-NA,,,,,, +118785,Ab12,EA090,?,EA090-NA,,,,,, +118786,Ab13,EA090,?,EA090-NA,,,,,, +118787,Ab14,EA090,?,EA090-NA,,,,,, +118788,Ab15,EA090,?,EA090-NA,,,,,, +118789,Ab16,EA090,?,EA090-NA,,,,,, +118790,Ab17,EA090,?,EA090-NA,,,,,, +118791,Ab18,EA090,?,EA090-NA,,,,,, +118792,Ab19,EA090,?,EA090-NA,,,,,, +118793,Ab2,EA090,?,EA090-NA,,,,,, +118794,Ab20,EA090,?,EA090-NA,,,,,, +118795,Ab21a,EA090,?,EA090-NA,,,,,, +118796,Ab21b,EA090,?,EA090-NA,,,,,, +118797,Ab22,EA090,?,EA090-NA,,,,,, +118798,Ab3,EA090,States,EA090-6,,,Ruling Luyana,1890,Gray (1999); Murdock (1957), +118799,Ab4,EA090,Little states,EA090-5,,,,1920,Gray (1999); Murdock (1957), +118800,Ab5,EA090,Little states,EA090-5,,,,1930,Gray (1999); Murdock (1957), +118801,Ab6,EA090,?,EA090-NA,,,,,, +118802,Ab7,EA090,Little states,EA090-5,,,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,Gray (1999); Murdock (1957), +118803,Ab8,EA090,States,EA090-6,,,Basuto,1860,Gray (1999); Murdock (1957), +118804,Ab9,EA090,?,EA090-NA,,,,,, +118805,Ac1,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +118806,Ac10,EA090,?,EA090-NA,,,,,, +118807,Ac11,EA090,?,EA090-NA,,,,,, +118808,Ac12,EA090,?,EA090-NA,,,,,, +118809,Ac13,EA090,?,EA090-NA,,,,,, +118810,Ac14,EA090,?,EA090-NA,,,,,, +118811,Ac15,EA090,?,EA090-NA,,,,,, +118812,Ac16,EA090,?,EA090-NA,,,,,, +118813,Ac17,EA090,?,EA090-NA,,,,,, +118814,Ac18,EA090,?,EA090-NA,,,,,, +118815,Ac19,EA090,?,EA090-NA,,,,,, +118816,Ac2,EA090,?,EA090-NA,,,,,, +118817,Ac20,EA090,?,EA090-NA,,,,,, +118818,Ac21,EA090,?,EA090-NA,,,,,, +118819,Ac22,EA090,?,EA090-NA,,,,,, +118820,Ac23,EA090,?,EA090-NA,,,,,, +118821,Ac24,EA090,?,EA090-NA,,,,,, +118822,Ac25,EA090,?,EA090-NA,,,,,, +118823,Ac26,EA090,?,EA090-NA,,,,,, +118824,Ac27,EA090,?,EA090-NA,,,,,, +118825,Ac28,EA090,?,EA090-NA,,,,,, +118826,Ac29,EA090,?,EA090-NA,,,,,, +118827,Ac3,EA090,States,EA090-6,,,Zambia branch,1900,Gray (1999); Murdock (1957), +118828,Ac30,EA090,?,EA090-NA,,,,,, +118829,Ac31,EA090,?,EA090-NA,,,,,, +118830,Ac32,EA090,?,EA090-NA,,,,,, +118831,Ac33,EA090,?,EA090-NA,,,,,, +118832,Ac34,EA090,?,EA090-NA,,,,,, +118833,Ac35,EA090,?,EA090-NA,,,,,, +118834,Ac36,EA090,?,EA090-NA,,,,,, +118835,Ac37,EA090,?,EA090-NA,,,,,, +118836,Ac38,EA090,?,EA090-NA,,,,,, +118837,Ac39,EA090,?,EA090-NA,,,,,, +118838,Ac4,EA090,Little states,EA090-5,,,"with special reference to the Bushoong, the central subtribe",1910,Gray (1999); Murdock (1957), +118839,Ac40,EA090,?,EA090-NA,,,,,, +118840,Ac41,EA090,?,EA090-NA,,,,,, +118841,Ac42,EA090,?,EA090-NA,,,,,, +118842,Ac43,EA090,?,EA090-NA,,,,,, +118843,Ac5,EA090,Minimal states,EA090-4,,,,1920,Gray (1999); Murdock (1957), +118844,Ac6,EA090,?,EA090-NA,,,,,, +118845,Ac7,EA090,Minimal states,EA090-4,,,,1920,Gray (1999); Murdock (1957), +118846,Ac8,EA090,?,EA090-NA,,,,,, +118847,Ac9,EA090,Little states,EA090-5,,,with special reference to the Mpezeni group of Fort Jameson,1940,Gray (1999); Murdock (1957), +118848,Ad1,EA090,?,EA090-NA,,,,,, +118849,Ad10,EA090,?,EA090-NA,,,,,, +118850,Ad11,EA090,?,EA090-NA,,,,,, +118851,Ad12,EA090,?,EA090-NA,,,,,, +118852,Ad13,EA090,?,EA090-NA,,,,,, +118853,Ad14,EA090,?,EA090-NA,,,,,, +118854,Ad15,EA090,?,EA090-NA,,,,,, +118855,Ad16,EA090,?,EA090-NA,,,,,, +118856,Ad17,EA090,?,EA090-NA,,,,,, +118857,Ad18,EA090,?,EA090-NA,,,,,, +118858,Ad19,EA090,?,EA090-NA,,,,,, +118859,Ad2,EA090,States,EA090-6,,,,1950,Gray (1999); Murdock (1957), +118860,Ad20,EA090,?,EA090-NA,,,,,, +118861,Ad21,EA090,?,EA090-NA,,,,,, +118862,Ad22,EA090,?,EA090-NA,,,,,, +118863,Ad23,EA090,?,EA090-NA,,,,,, +118864,Ad24,EA090,?,EA090-NA,,,,,, +118865,Ad25,EA090,?,EA090-NA,,,,,, +118866,Ad26,EA090,?,EA090-NA,,,,,, +118867,Ad27,EA090,?,EA090-NA,,,,,, +118868,Ad28,EA090,?,EA090-NA,,,,,, +118869,Ad29,EA090,?,EA090-NA,,,,,, +118870,Ad3,EA090,Minimal states,EA090-4,,,,1910,Gray (1999); Murdock (1957), +118871,Ad30,EA090,?,EA090-NA,,,,,, +118872,Ad31,EA090,?,EA090-NA,,,,,, +118873,Ad32,EA090,?,EA090-NA,,,,,, +118874,Ad33,EA090,?,EA090-NA,,,,,, +118875,Ad34,EA090,?,EA090-NA,,,,,, +118876,Ad35,EA090,?,EA090-NA,,,,,, +118877,Ad36,EA090,?,EA090-NA,,,,,, +118878,Ad37,EA090,?,EA090-NA,,,,,, +118879,Ad38,EA090,?,EA090-NA,,,,,, +118880,Ad39,EA090,?,EA090-NA,,,,,, +118881,Ad4,EA090,Autonomous communities,EA090-2,,,Fort Hall or Metume district,1930,Gray (1999); Murdock (1957), +118882,Ad40,EA090,?,EA090-NA,,,,,, +118883,Ad41,EA090,?,EA090-NA,,,,,, +118884,Ad42,EA090,?,EA090-NA,,,,,, +118885,Ad43,EA090,?,EA090-NA,,,,,, +118886,Ad44,EA090,?,EA090-NA,,,,,, +118887,Ad45,EA090,?,EA090-NA,,,,,, +118888,Ad46,EA090,?,EA090-NA,,,,,, +118889,Ad47,EA090,?,EA090-NA,,,,,, +118890,Ad48,EA090,?,EA090-NA,,,,,, +118891,Ad49,EA090,?,EA090-NA,,,,,, +118892,Ad5,EA090,Autonomous communities,EA090-2,,,,1940,Gray (1999); Murdock (1957), +118893,Ad50,EA090,?,EA090-NA,,,,,, +118894,Ad51,EA090,?,EA090-NA,,,,,, +118895,Ad6,EA090,Minimal states,EA090-4,,,Age villages of Mwaya and Masoko,1930,Gray (1999); Murdock (1957), +118896,Ad7,EA090,States,EA090-6,,,Kyaddondo district (V: Kampala),1880,Gray (1999); Murdock (1957), +118897,Ad8,EA090,Little states,EA090-5,,,with special reference to the northern or Iringa group,1910,Gray (1999); Murdock (1957), +118898,Ad9,EA090,?,EA090-NA,,,,,, +118899,Ae1,EA090,?,EA090-NA,,,,,, +118900,Ae10,EA090,?,EA090-NA,,,,,, +118901,Ae11,EA090,?,EA090-NA,,,,,, +118902,Ae12,EA090,?,EA090-NA,,,,,, +118903,Ae13,EA090,?,EA090-NA,,,,,, +118904,Ae14,EA090,?,EA090-NA,,,,,, +118905,Ae15,EA090,?,EA090-NA,,,,,, +118906,Ae16,EA090,?,EA090-NA,,,,,, +118907,Ae17,EA090,?,EA090-NA,,,,,, +118908,Ae18,EA090,?,EA090-NA,,,,,, +118909,Ae19,EA090,?,EA090-NA,,,,,, +118910,Ae2,EA090,Autonomous communities,EA090-2,,,,1950,Gray (1999); Murdock (1957), +118911,Ae20,EA090,?,EA090-NA,,,,,, +118912,Ae21,EA090,?,EA090-NA,,,,,, +118913,Ae22,EA090,?,EA090-NA,,,,,, +118914,Ae23,EA090,?,EA090-NA,,,,,, +118915,Ae24,EA090,?,EA090-NA,,,,,, +118916,Ae25,EA090,?,EA090-NA,,,,,, +118917,Ae26,EA090,?,EA090-NA,,,,,, +118918,Ae27,EA090,?,EA090-NA,,,,,, +118919,Ae28,EA090,?,EA090-NA,,,,,, +118920,Ae29,EA090,?,EA090-NA,,,,,, +118921,Ae3,EA090,Autonomous communities,EA090-2,,,,1910,Gray (1999); Murdock (1957), +118922,Ae30,EA090,?,EA090-NA,,,,,, +118923,Ae31,EA090,?,EA090-NA,,,,,, +118924,Ae32,EA090,?,EA090-NA,,,,,, +118925,Ae33,EA090,?,EA090-NA,,,,,, +118926,Ae34,EA090,?,EA090-NA,,,,,, +118927,Ae35,EA090,?,EA090-NA,,,,,, +118928,Ae36,EA090,?,EA090-NA,,,,,, +118929,Ae37,EA090,?,EA090-NA,,,,,, +118930,Ae38,EA090,?,EA090-NA,,,,,, +118931,Ae39,EA090,?,EA090-NA,,,,,, +118932,Ae4,EA090,Minimal states,EA090-4,,,Ilanga group,1930,Gray (1999); Murdock (1957), +118933,Ae40,EA090,?,EA090-NA,,,,,, +118934,Ae41,EA090,?,EA090-NA,,,,,, +118935,Ae42,EA090,?,EA090-NA,,,,,, +118936,Ae43,EA090,?,EA090-NA,,,,,, +118937,Ae44,EA090,?,EA090-NA,,,,,, +118938,Ae45,EA090,?,EA090-NA,,,,,, +118939,Ae46,EA090,?,EA090-NA,,,,,, +118940,Ae47,EA090,?,EA090-NA,,,,,, +118941,Ae48,EA090,?,EA090-NA,,,,,, +118942,Ae49,EA090,?,EA090-NA,,,,,, +118943,Ae5,EA090,?,EA090-NA,,,,,, +118944,Ae50,EA090,?,EA090-NA,,,,,, +118945,Ae51,EA090,?,EA090-NA,,,,,, +118946,Ae52,EA090,?,EA090-NA,,,,,, +118947,Ae53,EA090,?,EA090-NA,,,,,, +118948,Ae54,EA090,?,EA090-NA,,,,,, +118949,Ae55,EA090,?,EA090-NA,,,,,, +118950,Ae56,EA090,?,EA090-NA,,,,,, +118951,Ae57,EA090,?,EA090-NA,,,,,, +118952,Ae58,EA090,?,EA090-NA,,,,,, +118953,Ae59,EA090,?,EA090-NA,,,,,, +118954,Ae6,EA090,Little states,EA090-5,,,with special reference to the Bena Kalundwe,1930,Gray (1999); Murdock (1957), +118955,Ae7,EA090,Minimal states,EA090-4,,,,1910,Gray (1999); Murdock (1957), +118956,Ae8,EA090,?,EA090-NA,,,,,, +118957,Ae9,EA090,?,EA090-NA,,,,,, +118958,Af1,EA090,States,EA090-6,,,City and environs of Abomey,1890,Gray (1999); Murdock (1957), +118959,Af10,EA090,?,EA090-NA,,,,,, +118960,Af11,EA090,?,EA090-NA,,,,,, +118961,Af12,EA090,?,EA090-NA,,,,,, +118962,Af13,EA090,?,EA090-NA,,,,,, +118963,Af14,EA090,?,EA090-NA,,,,,, +118964,Af15,EA090,?,EA090-NA,,,,,, +118965,Af16,EA090,?,EA090-NA,,,,,, +118966,Af17,EA090,?,EA090-NA,,,,,, +118967,Af18,EA090,?,EA090-NA,,,,,, +118968,Af19,EA090,?,EA090-NA,,,,,, +118969,Af2,EA090,Minimal states,EA090-4,,,,1950,Gray (1999); Murdock (1957), +118970,Af20,EA090,?,EA090-NA,,,,,, +118971,Af21,EA090,?,EA090-NA,,,,,, +118972,Af22,EA090,?,EA090-NA,,,,,, +118973,Af23,EA090,?,EA090-NA,,,,,, +118974,Af24,EA090,?,EA090-NA,,,,,, +118975,Af25,EA090,?,EA090-NA,,,,,, +118976,Af26,EA090,?,EA090-NA,,,,,, +118977,Af27,EA090,?,EA090-NA,,,,,, +118978,Af28,EA090,?,EA090-NA,,,,,, +118979,Af29,EA090,?,EA090-NA,,,,,, +118980,Af3,EA090,States,EA090-6,,,Kumasi State,1900,Gray (1999); Murdock (1957), +118981,Af30,EA090,?,EA090-NA,,,,,, +118982,Af31,EA090,?,EA090-NA,,,,,, +118983,Af32,EA090,?,EA090-NA,,,,,, +118984,Af33,EA090,?,EA090-NA,,,,,, +118985,Af34,EA090,?,EA090-NA,,,,,, +118986,Af35,EA090,?,EA090-NA,,,,,, +118987,Af36,EA090,?,EA090-NA,,,,,, +118988,Af37,EA090,?,EA090-NA,,,,,, +118989,Af38,EA090,?,EA090-NA,,,,,, +118990,Af39,EA090,?,EA090-NA,,,,,, +118991,Af4,EA090,?,EA090-NA,,,,,, +118992,Af40,EA090,?,EA090-NA,,,,,, +118993,Af41,EA090,?,EA090-NA,,,,,, +118994,Af42,EA090,?,EA090-NA,,,,,, +118995,Af43,EA090,?,EA090-NA,,,,,, +118996,Af44,EA090,?,EA090-NA,,,,,, +118997,Af45,EA090,?,EA090-NA,,,,,, +118998,Af46,EA090,?,EA090-NA,,,,,, +118999,Af47,EA090,?,EA090-NA,,,,,, +119000,Af48,EA090,?,EA090-NA,,,,,, +119001,Af49,EA090,?,EA090-NA,,,,,, +119002,Af5,EA090,Little states,EA090-5,,,,1930,Gray (1999); Murdock (1957), +119003,Af50,EA090,?,EA090-NA,,,,,, +119004,Af51,EA090,?,EA090-NA,,,,,, +119005,Af52,EA090,?,EA090-NA,,,,,, +119006,Af53,EA090,?,EA090-NA,,,,,, +119007,Af54,EA090,?,EA090-NA,,,,,, +119008,Af55,EA090,?,EA090-NA,,,,,, +119009,Af56,EA090,?,EA090-NA,,,,,, +119010,Af57,EA090,?,EA090-NA,,,,,, +119011,Af58,EA090,?,EA090-NA,,,,,, +119012,Af6,EA090,States,EA090-6,,,"Yoruba, with special reference to the Oyo",1950,Gray (1999); Murdock (1957), +119013,Af7,EA090,Autonomous communities,EA090-2,,,,1950,Gray (1999); Murdock (1957), +119014,Af8,EA090,?,EA090-NA,,,,,, +119015,Af9,EA090,?,EA090-NA,,,,,, +119016,Ag1,EA090,?,EA090-NA,,,,,, +119017,Ag10,EA090,?,EA090-NA,,,,,, +119018,Ag11,EA090,?,EA090-NA,,,,,, +119019,Ag12,EA090,?,EA090-NA,,,,,, +119020,Ag13,EA090,?,EA090-NA,,,,,, +119021,Ag14,EA090,?,EA090-NA,,,,,, +119022,Ag15,EA090,?,EA090-NA,,,,,, +119023,Ag16,EA090,?,EA090-NA,,,,,, +119024,Ag17,EA090,?,EA090-NA,,,,,, +119025,Ag18,EA090,?,EA090-NA,,,,,, +119026,Ag19,EA090,?,EA090-NA,,,,,, +119027,Ag2,EA090,States,EA090-6,,,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,Gray (1999); Murdock (1957), +119028,Ag20,EA090,?,EA090-NA,,,,,, +119029,Ag21,EA090,?,EA090-NA,,,,,, +119030,Ag22,EA090,?,EA090-NA,,,,,, +119031,Ag23,EA090,?,EA090-NA,,,,,, +119032,Ag24,EA090,?,EA090-NA,,,,,, +119033,Ag25,EA090,?,EA090-NA,,,,,, +119034,Ag26,EA090,?,EA090-NA,,,,,, +119035,Ag27,EA090,?,EA090-NA,,,,,, +119036,Ag28,EA090,?,EA090-NA,,,,,, +119037,Ag29,EA090,?,EA090-NA,,,,,, +119038,Ag3,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119039,Ag30,EA090,?,EA090-NA,,,,,, +119040,Ag31,EA090,?,EA090-NA,,,,,, +119041,Ag32,EA090,?,EA090-NA,,,,,, +119042,Ag33,EA090,?,EA090-NA,,,,,, +119043,Ag34,EA090,?,EA090-NA,,,,,, +119044,Ag35,EA090,?,EA090-NA,,,,,, +119045,Ag36,EA090,?,EA090-NA,,,,,, +119046,Ag37,EA090,?,EA090-NA,,,,,, +119047,Ag38,EA090,?,EA090-NA,,,,,, +119048,Ag39,EA090,?,EA090-NA,,,,,, +119049,Ag4,EA090,Autonomous communities,EA090-2,,,Tallensi Tribe,1930,Gray (1999); Murdock (1957), +119050,Ag40,EA090,?,EA090-NA,,,,,, +119051,Ag41,EA090,?,EA090-NA,,,,,, +119052,Ag42,EA090,?,EA090-NA,,,,,, +119053,Ag43,EA090,?,EA090-NA,,,,,, +119054,Ag44,EA090,?,EA090-NA,,,,,, +119055,Ag45,EA090,?,EA090-NA,,,,,, +119056,Ag46,EA090,?,EA090-NA,,,,,, +119057,Ag47,EA090,?,EA090-NA,,,,,, +119058,Ag48,EA090,?,EA090-NA,,,,,, +119059,Ag49,EA090,?,EA090-NA,,,,,, +119060,Ag5,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119061,Ag50,EA090,?,EA090-NA,,,,,, +119062,Ag51,EA090,?,EA090-NA,,,,,, +119063,Ag52,EA090,?,EA090-NA,,,,,, +119064,Ag53,EA090,?,EA090-NA,,,,,, +119065,Ag54,EA090,?,EA090-NA,,,,,, +119066,Ag6,EA090,States,EA090-6,,,,1890,Gray (1999); Murdock (1957), +119067,Ag7,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119068,Ag8,EA090,Minimal states,EA090-4,,,with special reference to the Coniagui,1910,Gray (1999); Murdock (1957), +119069,Ag9,EA090,?,EA090-NA,,,,,, +119070,Ah1,EA090,?,EA090-NA,,,,,, +119071,Ah10,EA090,?,EA090-NA,,,,,, +119072,Ah11,EA090,?,EA090-NA,,,,,, +119073,Ah12,EA090,?,EA090-NA,,,,,, +119074,Ah13,EA090,?,EA090-NA,,,,,, +119075,Ah14,EA090,?,EA090-NA,,,,,, +119076,Ah15,EA090,?,EA090-NA,,,,,, +119077,Ah16,EA090,?,EA090-NA,,,,,, +119078,Ah17,EA090,?,EA090-NA,,,,,, +119079,Ah18,EA090,?,EA090-NA,,,,,, +119080,Ah19,EA090,?,EA090-NA,,,,,, +119081,Ah2,EA090,Little states,EA090-5,,,,1920,Gray (1999); Murdock (1957), +119082,Ah20,EA090,?,EA090-NA,,,,,, +119083,Ah21,EA090,?,EA090-NA,,,,,, +119084,Ah22,EA090,?,EA090-NA,,,,,, +119085,Ah23,EA090,?,EA090-NA,,,,,, +119086,Ah24,EA090,?,EA090-NA,,,,,, +119087,Ah25,EA090,?,EA090-NA,,,,,, +119088,Ah26,EA090,?,EA090-NA,,,,,, +119089,Ah27,EA090,?,EA090-NA,,,,,, +119090,Ah28,EA090,?,EA090-NA,,,,,, +119091,Ah29,EA090,?,EA090-NA,,,,,, +119092,Ah3,EA090,Minimal states,EA090-4,,,Tar of Benue Province,1920,Gray (1999); Murdock (1957), +119093,Ah30,EA090,?,EA090-NA,,,,,, +119094,Ah31,EA090,?,EA090-NA,,,,,, +119095,Ah32,EA090,?,EA090-NA,,,,,, +119096,Ah33,EA090,?,EA090-NA,,,,,, +119097,Ah34,EA090,?,EA090-NA,,,,,, +119098,Ah35,EA090,?,EA090-NA,,,,,, +119099,Ah36,EA090,?,EA090-NA,,,,,, +119100,Ah37,EA090,?,EA090-NA,,,,,, +119101,Ah38,EA090,?,EA090-NA,,,,,, +119102,Ah39,EA090,?,EA090-NA,,,,,, +119103,Ah4,EA090,?,EA090-NA,,,,,, +119104,Ah5,EA090,Little states,EA090-5,,,,1930,Gray (1999); Murdock (1957), +119105,Ah6,EA090,"Absence, even locally",EA090-1,,,,1920,Gray (1999); Murdock (1957), +119106,Ah7,EA090,Autonomous communities,EA090-2,,,,1940,Gray (1999); Murdock (1957), +119107,Ah8,EA090,Minimal states,EA090-4,,,,1910,Gray (1999); Murdock (1957), +119108,Ah9,EA090,?,EA090-NA,,,,,, +119109,Ai1,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +119110,Ai10,EA090,?,EA090-NA,,,,,, +119111,Ai11,EA090,?,EA090-NA,,,,,, +119112,Ai12,EA090,?,EA090-NA,,,,,, +119113,Ai13,EA090,?,EA090-NA,,,,,, +119114,Ai14,EA090,?,EA090-NA,,,,,, +119115,Ai15,EA090,?,EA090-NA,,,,,, +119116,Ai16,EA090,?,EA090-NA,,,,,, +119117,Ai17,EA090,?,EA090-NA,,,,,, +119118,Ai18,EA090,?,EA090-NA,,,,,, +119119,Ai19,EA090,?,EA090-NA,,,,,, +119120,Ai2,EA090,?,EA090-NA,,,,,, +119121,Ai20,EA090,?,EA090-NA,,,,,, +119122,Ai21,EA090,?,EA090-NA,,,,,, +119123,Ai22,EA090,?,EA090-NA,,,,,, +119124,Ai23,EA090,?,EA090-NA,,,,,, +119125,Ai24,EA090,?,EA090-NA,,,,,, +119126,Ai25,EA090,?,EA090-NA,,,,,, +119127,Ai26,EA090,?,EA090-NA,,,,,, +119128,Ai27,EA090,?,EA090-NA,,,,,, +119129,Ai28,EA090,?,EA090-NA,,,,,, +119130,Ai29,EA090,?,EA090-NA,,,,,, +119131,Ai3,EA090,Little states,EA090-5,,,,1920,Gray (1999); Murdock (1957), +119132,Ai30,EA090,?,EA090-NA,,,,,, +119133,Ai31,EA090,?,EA090-NA,,,,,, +119134,Ai32,EA090,?,EA090-NA,,,,,, +119135,Ai33,EA090,?,EA090-NA,,,,,, +119136,Ai34,EA090,?,EA090-NA,,,,,, +119137,Ai35,EA090,?,EA090-NA,,,,,, +119138,Ai36,EA090,?,EA090-NA,,,,,, +119139,Ai37,EA090,?,EA090-NA,,,,,, +119140,Ai38,EA090,?,EA090-NA,,,,,, +119141,Ai39,EA090,?,EA090-NA,,,,,, +119142,Ai4,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +119143,Ai40,EA090,?,EA090-NA,,,,,, +119144,Ai41,EA090,?,EA090-NA,,,,,, +119145,Ai42,EA090,?,EA090-NA,,,,,, +119146,Ai43,EA090,?,EA090-NA,,,,,, +119147,Ai44,EA090,?,EA090-NA,,,,,, +119148,Ai45,EA090,?,EA090-NA,,,,,, +119149,Ai46,EA090,?,EA090-NA,,,,,, +119150,Ai47,EA090,?,EA090-NA,,,,,, +119151,Ai5,EA090,?,EA090-NA,,,,,, +119152,Ai6,EA090,States,EA090-6,,,Shilluk Kingdom,1900,Gray (1999); Murdock (1957), +119153,Ai7,EA090,Autonomous communities,EA090-2,,,,1910,Gray (1999); Murdock (1957), +119154,Ai8,EA090,Minimal states,EA090-4,,,,1930,Gray (1999); Murdock (1957), +119155,Ai9,EA090,?,EA090-NA,,,,,, +119156,Aj1,EA090,?,EA090-NA,,,,,, +119157,Aj10,EA090,?,EA090-NA,,,,,, +119158,Aj11,EA090,?,EA090-NA,,,,,, +119159,Aj12,EA090,?,EA090-NA,,,,,, +119160,Aj13,EA090,?,EA090-NA,,,,,, +119161,Aj14,EA090,?,EA090-NA,,,,,, +119162,Aj15,EA090,?,EA090-NA,,,,,, +119163,Aj16,EA090,?,EA090-NA,,,,,, +119164,Aj17,EA090,?,EA090-NA,,,,,, +119165,Aj18,EA090,?,EA090-NA,,,,,, +119166,Aj19,EA090,?,EA090-NA,,,,,, +119167,Aj2,EA090,Peace groups among communities,EA090-3,,,Kisonko or Southern Masai of Tanzania,1900,Gray (1999); Murdock (1957), +119168,Aj20,EA090,?,EA090-NA,,,,,, +119169,Aj21,EA090,?,EA090-NA,,,,,, +119170,Aj22,EA090,?,EA090-NA,,,,,, +119171,Aj23,EA090,?,EA090-NA,,,,,, +119172,Aj24,EA090,?,EA090-NA,,,,,, +119173,Aj25,EA090,?,EA090-NA,,,,,, +119174,Aj26,EA090,?,EA090-NA,,,,,, +119175,Aj27,EA090,?,EA090-NA,,,,,, +119176,Aj28,EA090,?,EA090-NA,,,,,, +119177,Aj29,EA090,?,EA090-NA,,,,,, +119178,Aj3,EA090,Peace groups among communities,EA090-3,,,,1930,Gray (1999); Murdock (1957), +119179,Aj30,EA090,?,EA090-NA,,,,,, +119180,Aj31,EA090,?,EA090-NA,,,,,, +119181,Aj4,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +119182,Aj5,EA090,"Absence, even locally",EA090-1,,,,1920,Gray (1999); Murdock (1957), +119183,Aj6,EA090,Autonomous communities,EA090-2,,,,1940,Gray (1999); Murdock (1957), +119184,Aj7,EA090,Peace groups among communities,EA090-3,,,,1910,Gray (1999); Murdock (1957), +119185,Aj8,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +119186,Aj9,EA090,?,EA090-NA,,,,,, +119187,Ca1,EA090,Minimal states,EA090-4,,,Town of Buso,1930,Gray (1999); Murdock (1957), +119188,Ca10,EA090,?,EA090-NA,,,,,, +119189,Ca11,EA090,?,EA090-NA,,,,,, +119190,Ca12,EA090,?,EA090-NA,,,,,, +119191,Ca13,EA090,?,EA090-NA,,,,,, +119192,Ca14,EA090,?,EA090-NA,,,,,, +119193,Ca15,EA090,?,EA090-NA,,,,,, +119194,Ca16,EA090,?,EA090-NA,,,,,, +119195,Ca17,EA090,?,EA090-NA,,,,,, +119196,Ca18,EA090,?,EA090-NA,,,,,, +119197,Ca19,EA090,?,EA090-NA,,,,,, +119198,Ca2,EA090,Little states,EA090-5,,,Dolbahanta clan or subtribe,1950,Gray (1999); Murdock (1957), +119199,Ca20,EA090,?,EA090-NA,,,,,, +119200,Ca21,EA090,?,EA090-NA,,,,,, +119201,Ca22,EA090,?,EA090-NA,,,,,, +119202,Ca23,EA090,?,EA090-NA,,,,,, +119203,Ca24,EA090,?,EA090-NA,,,,,, +119204,Ca25,EA090,?,EA090-NA,,,,,, +119205,Ca26,EA090,?,EA090-NA,,,,,, +119206,Ca27,EA090,?,EA090-NA,,,,,, +119207,Ca28,EA090,?,EA090-NA,,,,,, +119208,Ca29,EA090,?,EA090-NA,,,,,, +119209,Ca3,EA090,?,EA090-NA,,,,,, +119210,Ca30,EA090,?,EA090-NA,,,,,, +119211,Ca31,EA090,?,EA090-NA,,,,,, +119212,Ca32,EA090,?,EA090-NA,,,,,, +119213,Ca33,EA090,?,EA090-NA,,,,,, +119214,Ca34,EA090,?,EA090-NA,,,,,, +119215,Ca35,EA090,?,EA090-NA,,,,,, +119216,Ca36,EA090,?,EA090-NA,,,,,, +119217,Ca37,EA090,?,EA090-NA,,,,,, +119218,Ca38,EA090,?,EA090-NA,,,,,, +119219,Ca39,EA090,?,EA090-NA,,,,,, +119220,Ca4,EA090,Autonomous communities,EA090-2,,,,1950,Gray (1999); Murdock (1957), +119221,Ca40,EA090,?,EA090-NA,,,,,, +119222,Ca41,EA090,?,EA090-NA,,,,,, +119223,Ca42,EA090,?,EA090-NA,,,,,, +119224,Ca43,EA090,?,EA090-NA,,,,,, +119225,Ca5,EA090,Minimal states,EA090-4,,,,1930,Gray (1999); Murdock (1957), +119226,Ca6,EA090,?,EA090-NA,,,,,, +119227,Ca7,EA090,?,EA090-NA,,,,,, +119228,Ca8,EA090,?,EA090-NA,,,,,, +119229,Ca9,EA090,?,EA090-NA,,,,,, +119230,Cb1,EA090,States,EA090-6,,,,1940,Gray (1999); Murdock (1957), +119231,Cb10,EA090,?,EA090-NA,,,,,, +119232,Cb11,EA090,?,EA090-NA,,,,,, +119233,Cb12,EA090,?,EA090-NA,,,,,, +119234,Cb13,EA090,?,EA090-NA,,,,,, +119235,Cb14,EA090,?,EA090-NA,,,,,, +119236,Cb15,EA090,?,EA090-NA,,,,,, +119237,Cb16,EA090,?,EA090-NA,,,,,, +119238,Cb17,EA090,?,EA090-NA,,,,,, +119239,Cb18,EA090,?,EA090-NA,,,,,, +119240,Cb19,EA090,?,EA090-NA,,,,,, +119241,Cb2,EA090,States,EA090-6,,,Upper and lower Salum in Gambia,1950,Gray (1999); Murdock (1957), +119242,Cb20,EA090,?,EA090-NA,,,,,, +119243,Cb21,EA090,?,EA090-NA,,,,,, +119244,Cb22,EA090,?,EA090-NA,,,,,, +119245,Cb23,EA090,?,EA090-NA,,,,,, +119246,Cb24,EA090,?,EA090-NA,,,,,, +119247,Cb25,EA090,?,EA090-NA,,,,,, +119248,Cb26,EA090,?,EA090-NA,,,,,, +119249,Cb27,EA090,?,EA090-NA,,,,,, +119250,Cb28,EA090,?,EA090-NA,,,,,, +119251,Cb29,EA090,?,EA090-NA,,,,,, +119252,Cb3,EA090,Little states,EA090-5,,,Bamba division,1940,Gray (1999); Murdock (1957), +119253,Cb4,EA090,?,EA090-NA,,,,,, +119254,Cb5,EA090,Autonomous communities,EA090-2,,,,1910,Gray (1999); Murdock (1957), +119255,Cb6,EA090,?,EA090-NA,,,,,, +119256,Cb7,EA090,?,EA090-NA,,,,,, +119257,Cb8,EA090,?,EA090-NA,,,,,, +119258,Cb9,EA090,?,EA090-NA,,,,,, +119259,Cc1,EA090,?,EA090-NA,,,,,, +119260,Cc10,EA090,?,EA090-NA,,,,,, +119261,Cc11,EA090,?,EA090-NA,,,,,, +119262,Cc12,EA090,?,EA090-NA,,,,,, +119263,Cc13,EA090,?,EA090-NA,,,,,, +119264,Cc14,EA090,?,EA090-NA,,,,,, +119265,Cc15,EA090,?,EA090-NA,,,,,, +119266,Cc16,EA090,?,EA090-NA,,,,,, +119267,Cc17,EA090,?,EA090-NA,,,,,, +119268,Cc18,EA090,?,EA090-NA,,,,,, +119269,Cc19,EA090,?,EA090-NA,,,,,, +119270,Cc2,EA090,Peace groups among communities,EA090-3,,,Nomads of Tibesti,1950,Gray (1999); Murdock (1957), +119271,Cc20,EA090,?,EA090-NA,,,,,, +119272,Cc3,EA090,Minimal states,EA090-4,,,inhabitants of the oasis of Siwa,1920,Gray (1999); Murdock (1957), +119273,Cc4,EA090,Minimal states,EA090-4,,,,1920,Gray (1999); Murdock (1957), +119274,Cc5,EA090,?,EA090-NA,,,,,, +119275,Cc6,EA090,?,EA090-NA,,,,,, +119276,Cc7,EA090,?,EA090-NA,,,,,, +119277,Cc8,EA090,?,EA090-NA,,,,,, +119278,Cc9,EA090,?,EA090-NA,,,,,, +119279,Cd1,EA090,Dependent societies,EA090-8,,,Kenuzi Nubians of Dahmit,1920,Gray (1999); Murdock (1957), +119280,Cd10,EA090,?,EA090-NA,,,,,, +119281,Cd11,EA090,?,EA090-NA,,,,,, +119282,Cd12,EA090,?,EA090-NA,,,,,, +119283,Cd13,EA090,?,EA090-NA,,,,,, +119284,Cd14,EA090,?,EA090-NA,,,,,, +119285,Cd15,EA090,?,EA090-NA,,,,,, +119286,Cd16,EA090,?,EA090-NA,,,,,, +119287,Cd17,EA090,?,EA090-NA,,,,,, +119288,Cd18,EA090,?,EA090-NA,,,,,, +119289,Cd19,EA090,?,EA090-NA,,,,,, +119290,Cd2,EA090,States,EA090-6,,,Town and environs of Silwa,1950,Gray (1999); Murdock (1957), +119291,Cd20,EA090,?,EA090-NA,,,,,, +119292,Cd21,EA090,?,EA090-NA,,,,,, +119293,Cd3,EA090,Minimal states,EA090-4,,,Entirety: Moroccan,1920,Gray (1999); Murdock (1957), +119294,Cd4,EA090,Little states,EA090-5,,,,1890,Gray (1999); Murdock (1957), +119295,Cd5,EA090,Minimal states,EA090-4,,,with special reference to those of the Grand Atlas Mountains,1920,Gray (1999); Murdock (1957), +119296,Cd6,EA090,?,EA090-NA,,,,,, +119297,Cd7,EA090,?,EA090-NA,,,,,, +119298,Cd8,EA090,?,EA090-NA,,,,,, +119299,Cd9,EA090,?,EA090-NA,,,,,, +119300,Ce1,EA090,Minimal states,EA090-4,,,Mountain Gheg of No. Albania,1900,Gray (1999); Murdock (1957), +119301,Ce2,EA090,?,EA090-NA,,,,,, +119302,Ce3,EA090,States,EA090-6,,,City and environs of Rome,100,Gray (1999); Murdock (1957), +119303,Ce4,EA090,Dependent societies,EA090-8,,,Labourd,1930,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119304,Ce5,EA090,?,EA090-NA,,,,,, +119305,Ce6,EA090,?,EA090-NA,,,,,, +119306,Ce7,EA090,?,EA090-NA,,,,,, +119307,Ce8,EA090,?,EA090-NA,,,,,, +119308,Cf1,EA090,States,EA090-6,,,Small City in Connecticut,1920,Gray (1999); Murdock (1957), +119309,Cf2,EA090,Little states,EA090-5,,,of the Transvaal,1850,Gray (1999); Murdock (1957), +119310,Cf3,EA090,?,EA090-NA,,,,,, +119311,Cf4,EA090,Dependent societies,EA090-8,,,with special reference to the village of Cruz das Almas near Sao Paulo,1940,Gray (1999); Murdock (1957), +119312,Cf5,EA090,?,EA090-NA,,,,,, +119313,Cg1,EA090,States,EA090-6,,,with special reference to the village of Anderen in Anlo parish of Drente province,1950,Gray (1999); Murdock (1957), +119314,Cg2,EA090,Little states,EA090-5,,,,1100,Gray (1999); Murdock (1957), +119315,Cg3,EA090,States,EA090-6,,,County Clare,1930,Gray (1999); Murdock (1957), +119316,Cg4,EA090,Autonomous communities,EA090-2,,,Konkama District,1950,Gray (1999); Murdock (1957), +119317,Cg5,EA090,?,EA090-NA,,,,,, +119318,Ch1,EA090,States,EA090-6,,,with special reference to the village of Orasac,1950,Gray (1999); Murdock (1957), +119319,Ch10,EA090,?,EA090-NA,,,,,, +119320,Ch11,EA090,?,EA090-NA,,,,,, +119321,Ch2,EA090,Dependent societies,EA090-8,,,,1890,Gray (1999); Murdock (1957), +119322,Ch3,EA090,States,EA090-6,,,with special reference to the Hana district of central Moravia,1940,Gray (1999); Murdock (1957), +119323,Ch4,EA090,Dependent societies,EA090-8,,,,1900,Gray (1999); Murdock (1957), +119324,Ch5,EA090,States,EA090-6,,,with special reference to the village of Dragelevtsy,1940,Gray (1999); Murdock (1957), +119325,Ch6,EA090,?,EA090-NA,,,,,, +119326,Ch7,EA090,?,EA090-NA,,,,,, +119327,Ch8,EA090,?,EA090-NA,,,,,, +119328,Ch9,EA090,?,EA090-NA,,,,,, +119329,Ci1,EA090,Little states,EA090-5,,,with special reference to the Baga Dorbed group,1920,Gray (1999); Murdock (1957), +119330,Ci10,EA090,?,EA090-NA,,,,,, +119331,Ci11,EA090,?,EA090-NA,,,,,, +119332,Ci12,EA090,?,EA090-NA,,,,,, +119333,Ci2,EA090,?,EA090-NA,,,,,, +119334,Ci3,EA090,?,EA090-NA,,,,,, +119335,Ci4,EA090,Minimal states,EA090-4,,,,1920,Gray (1999); Murdock (1957), +119336,Ci5,EA090,?,EA090-NA,,,,,, +119337,Ci6,EA090,?,EA090-NA,,,,,, +119338,Ci7,EA090,?,EA090-NA,,,,,, +119339,Ci8,EA090,?,EA090-NA,,,,,, +119340,Ci9,EA090,?,EA090-NA,,,,,, +119341,Cj1,EA090,?,EA090-NA,,,,,, +119342,Cj10,EA090,?,EA090-NA,,,,,, +119343,Cj2,EA090,Little states,EA090-5,,,Unspecified,1920,Gray (1999); Murdock (1957), +119344,Cj3,EA090,States,EA090-6,,,,-800,Gray (1999); Murdock (1957), +119345,Cj4,EA090,?,EA090-NA,,,,,, +119346,Cj5,EA090,?,EA090-NA,,,,,, +119347,Cj6,EA090,?,EA090-NA,,,,,, +119348,Cj7,EA090,?,EA090-NA,,,,,, +119349,Cj8,EA090,?,EA090-NA,,,,,, +119350,Cj9,EA090,?,EA090-NA,,,,,, +119351,Ea1,EA090,Dependent societies,EA090-8,,,,1950,Gray (1999); Murdock (1957), +119352,Ea10,EA090,?,EA090-NA,,,,,, +119353,Ea11,EA090,?,EA090-NA,,,,,, +119354,Ea12,EA090,?,EA090-NA,,,,,, +119355,Ea13,EA090,?,EA090-NA,,,,,, +119356,Ea2,EA090,?,EA090-NA,,,,,, +119357,Ea3,EA090,Minimal states,EA090-4,,,with special reference to the Urazgani,1930,Gray (1999); Murdock (1957), +119358,Ea4,EA090,?,EA090-NA,,,,,, +119359,Ea5,EA090,Minimal states,EA090-4,,,,1890,Gray (1999); Murdock (1957), +119360,Ea6,EA090,?,EA090-NA,,,,,, +119361,Ea7,EA090,?,EA090-NA,,,,,, +119362,Ea8,EA090,?,EA090-NA,,,,,, +119363,Ea9,EA090,?,EA090-NA,,,,,, +119364,Eb1,EA090,States,EA090-6,,,Great Horde,1910,Gray (1999); Murdock (1957), +119365,Eb2,EA090,Minimal states,EA090-4,,,,1920,Gray (1999); Murdock (1957), +119366,Eb3,EA090,Little states,EA090-5,,,Narobanchin Territory,1940,Gray (1999); Murdock (1957), +119367,Eb4,EA090,Dependent societies,EA090-8,,,with special reference to the Botaha area,1940,Gray (1999); Murdock (1957), +119368,Eb5,EA090,Little states,EA090-5,,,with special reference to the sedentary Teke of the Merv oasis,1910,Gray (1999); Murdock (1957), +119369,Eb6,EA090,Minimal states,EA090-4,,,with special reference to those southeast of Lake Baikal,1900,Gray (1999); Murdock (1957), +119370,Eb7,EA090,?,EA090-NA,,,,,, +119371,Eb8,EA090,?,EA090-NA,,,,,, +119372,Ec1,EA090,"Absence, even locally",EA090-1,,,Sakhalin Island,1920,Gray (1999); Murdock (1957), +119373,Ec10,EA090,?,EA090-NA,,,,,, +119374,Ec11,EA090,?,EA090-NA,,,,,, +119375,Ec2,EA090,Little states,EA090-5,,,with special reference to the Yakutsk district,1900,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119376,Ec3,EA090,Autonomous communities,EA090-2,,,Reindeer Division,1900,Gray (1999); Murdock (1957), +119377,Ec4,EA090,Autonomous communities,EA090-2,,,Yurak Tribe,1900,Gray (1999); Murdock (1957), +119378,Ec5,EA090,Autonomous communities,EA090-2,,,with special reference to the Maritime Koryak,1900,Gray (1999); Murdock (1957), +119379,Ec6,EA090,Autonomous communities,EA090-2,,,Upper Kolyma River,1850,Gray (1999); Murdock (1957), +119380,Ec7,EA090,Dependent societies,EA090-8,,,Saru Basin in Hokkaido,1900,Gray (1999); Murdock (1957), +119381,Ec8,EA090,"Absence, even locally",EA090-1,,,,1900,Gray (1999); Murdock (1957), +119382,Ec9,EA090,?,EA090-NA,,,,,, +119383,Ed1,EA090,States,EA090-6,,,Kanghwa Island,1950,Gray (1999); Murdock (1957), +119384,Ed10,EA090,?,EA090-NA,,,,,, +119385,Ed13,EA090,?,EA090-NA,,,,,, +119386,Ed14,EA090,?,EA090-NA,,,,,, +119387,Ed15a,EA090,?,EA090-NA,,,,,, +119388,Ed15b,EA090,?,EA090-NA,,,,,, +119389,Ed16,EA090,?,EA090-NA,,,,,, +119390,Ed2,EA090,Autonomous communities,EA090-2,,,Liang Shan and Taliang S,1940,Gray (1999); Murdock (1957), +119391,Ed3,EA090,Dependent societies,EA090-8,,,Aigun District,1920,Gray (1999); Murdock (1957), +119392,Ed4,EA090,?,EA090-NA,,,,,, +119393,Ed5,EA090,States,EA090-6,,,Okayama,1950,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119394,Ed6,EA090,?,EA090-NA,,,,,, +119395,Ed7,EA090,Minimal states,EA090-4,,,,1950,Gray (1999); Murdock (1957), +119396,Ed8,EA090,Dependent societies,EA090-8,,,,1930,Gray (1999); Murdock (1957), +119397,Ed9,EA090,?,EA090-NA,,,,,, +119398,Ee1,EA090,Autonomous communities,EA090-2,,,,1940,Gray (1999); Murdock (1957), +119399,Ee2,EA090,Little states,EA090-5,,,Hunza State,1930,Gray (1999); Murdock (1957), +119400,Ee3,EA090,Dependent societies,EA090-8,,,Lingthem and vicinity,1930,Gray (1999); Murdock (1957), +119401,Ee4,EA090,States,EA090-6,,,with special reference to Central Tibet,1920,Gray (1999); Murdock (1957), +119402,Ee5,EA090,Little states,EA090-5,,,with special reference to the Shina tribe,1870,Gray (1999); Murdock (1957), +119403,Ee6,EA090,?,EA090-NA,,,,,, +119404,Ee7,EA090,?,EA090-NA,,,,,, +119405,Ee8,EA090,?,EA090-NA,,,,,, +119406,Ef1,EA090,Minimal states,EA090-4,,,Bankura and Berghum Districts,1940,Gray (1999); Murdock (1957), +119407,Ef10,EA090,?,EA090-NA,,,,,, +119408,Ef11,EA090,?,EA090-NA,,,,,, +119409,Ef2,EA090,Dependent societies,EA090-8,,,with special reference t the Western or Hindu Bengali,1940,Gray (1999); Murdock (1957), +119410,Ef3,EA090,States,EA090-6,,,,-800,Gray (1999); Murdock (1957), +119411,Ef4,EA090,States,EA090-6,,,,1920,Gray (1999); Murdock (1957), +119412,Ef5,EA090,Dependent societies,EA090-8,,,,1900,Gray (1999); Murdock (1957), +119413,Ef6,EA090,Minimal states,EA090-4,,,,1940,Gray (1999); Murdock (1957), +119414,Ef7,EA090,?,EA090-NA,,,,,, +119415,Ef8,EA090,?,EA090-NA,,,,,, +119416,Ef9,EA090,?,EA090-NA,,,,,, +119417,Eg1,EA090,Autonomous communities,EA090-2,,,with special reference to the forest group,1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119418,Eg10,EA090,?,EA090-NA,,,,,, +119419,Eg11,EA090,?,EA090-NA,,,,,, +119420,Eg12,EA090,?,EA090-NA,,,,,, +119421,Eg13,EA090,?,EA090-NA,,,,,, +119422,Eg14,EA090,?,EA090-NA,,,,,, +119423,Eg2,EA090,Dependent societies,EA090-8,,,with special reference to the agricultural castes in Tanjore,1880,Gray (1999); Murdock (1957), +119424,Eg3,EA090,Minimal states,EA090-4,,,Hill Maria,1938,Gray (1999); Murdock (1957), +119425,Eg4,EA090,Autonomous communities,EA090-2,,,Toda Tribe,1900,Gray (1999); Murdock (1957), +119426,Eg5,EA090,States,EA090-6,,,,1930,Gray (1999); Murdock (1957), +119427,Eg6,EA090,States,EA090-6,,,with special reference to Northern Kerala,1799,Gray (1999); Murdock (1957), +119428,Eg7,EA090,?,EA090-NA,,,,,, +119429,Eg8,EA090,Dependent societies,EA090-8,,,,1940,Gray (1999); Murdock (1957), +119430,Eg9,EA090,?,EA090-NA,,,,,, +119431,Eh1,EA090,"Absence, even locally",EA090-1,,,,1870,Gray (1999); Murdock (1957), +119432,Eh10,EA090,?,EA090-NA,,,,,, +119433,Eh2,EA090,States,EA090-6,,,,1900,Gray (1999); Murdock (1957), +119434,Eh3,EA090,Minimal states,EA090-4,,,Menabe subtribe,1930,Gray (1999); Murdock (1957), +119435,Eh4,EA090,Autonomous communities,EA090-2,,,with special reference to the Rock Vedda,1900,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119436,Eh5,EA090,Autonomous communities,EA090-2,,,Car Nicobar of North Islands,1890,Gray (1999); Murdock (1957), +119437,Eh6,EA090,States,EA090-6,,,with special reference to the Kandyan Sinhalese,1950,Gray (1999); Murdock (1957), +119438,Eh7,EA090,?,EA090-NA,,,,,, +119439,Eh8,EA090,?,EA090-NA,,,,,, +119440,Eh9,EA090,?,EA090-NA,,,,,, +119441,Ei1,EA090,Minimal states,EA090-4,,,Rengsanggr,1900,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119442,Ei10,EA090,?,EA090-NA,,,,,, +119443,Ei11,EA090,?,EA090-NA,,,,,, +119444,Ei12,EA090,?,EA090-NA,,,,,, +119445,Ei13,EA090,?,EA090-NA,,,,,, +119446,Ei14,EA090,?,EA090-NA,,,,,, +119447,Ei15,EA090,?,EA090-NA,,,,,, +119448,Ei16,EA090,?,EA090-NA,,,,,, +119449,Ei17,EA090,?,EA090-NA,,,,,, +119450,Ei18,EA090,?,EA090-NA,,,,,, +119451,Ei19,EA090,?,EA090-NA,,,,,, +119452,Ei2,EA090,?,EA090-NA,,,,,, +119453,Ei20,EA090,?,EA090-NA,,,,,, +119454,Ei3,EA090,States,EA090-6,,,Nondwin Village,1950,Gray (1999); Murdock (1957), +119455,Ei4,EA090,Minimal states,EA090-4,,,Lakher Tribe,1930,Gray (1999); Murdock (1957), +119456,Ei5,EA090,Minimal states,EA090-4,,,with special reference to the Jinghpaw,1940,Gray (1999); Murdock (1957), +119457,Ei6,EA090,?,EA090-NA,,,,,, +119458,Ei7,EA090,?,EA090-NA,,,,,, +119459,Ei8,EA090,Minimal states,EA090-4,,,with special reference to those of the Jaintia Hills,1900,Gray (1999); Murdock (1957), +119460,Ei9,EA090,?,EA090-NA,,,,,, +119461,Ej1,EA090,Autonomous communities,EA090-2,,,"Lamet Tribe, Northwestern Laos",1940,Gray (1999); Murdock (1957), +119462,Ej10,EA090,?,EA090-NA,,,,,, +119463,Ej11,EA090,?,EA090-NA,,,,,, +119464,Ej12,EA090,?,EA090-NA,,,,,, +119465,Ej13,EA090,?,EA090-NA,,,,,, +119466,Ej14,EA090,?,EA090-NA,,,,,, +119467,Ej15,EA090,?,EA090-NA,,,,,, +119468,Ej16,EA090,?,EA090-NA,,,,,, +119469,Ej2,EA090,?,EA090-NA,,,,,, +119470,Ej3,EA090,"Absence, even locally",EA090-1,,,Jehai Group or subtribe,1920,Gray (1999); Murdock (1957), +119471,Ej4,EA090,States,EA090-6,,,Red River Delta in Tonkin,1950,Gray (1999); Murdock (1957), +119472,Ej5,EA090,States,EA090-6,,,,1950,Gray (1999); Murdock (1957), +119473,Ej6,EA090,"Absence, even locally",EA090-1,,,of the Mergui Archipelago,1920,Gray (1999); Murdock (1957), +119474,Ej7,EA090,Autonomous communities,EA090-2,,,,1950,Gray (1999); Murdock (1957), +119475,Ej8,EA090,States,EA090-6,,,with special reference to those of Trengganu,1940,Gray (1999); Murdock (1957), +119476,Ej9,EA090,States,EA090-6,,,,1940,Gray (1999); Murdock (1957), +119477,Ia1,EA090,Autonomous communities,EA090-2,,,Atayal Tribe (but exdluding Sedeq),1930,Gray (1999); Murdock (1957), +119478,Ia10,EA090,?,EA090-NA,,,,,, +119479,Ia11,EA090,?,EA090-NA,,,,,, +119480,Ia12,EA090,?,EA090-NA,,,,,, +119481,Ia13,EA090,?,EA090-NA,,,,,, +119482,Ia14,EA090,?,EA090-NA,,,,,, +119483,Ia15,EA090,?,EA090-NA,,,,,, +119484,Ia16,EA090,?,EA090-NA,,,,,, +119485,Ia17,EA090,?,EA090-NA,,,,,, +119486,Ia18,EA090,?,EA090-NA,,,,,, +119487,Ia2,EA090,?,EA090-NA,,,,,, +119488,Ia3,EA090,"Absence, even locally",EA090-1,,,Kiangan Group,1920,Gray (1999); Murdock (1957), +119489,Ia4,EA090,"Absence, even locally",EA090-1,,,with special reference to the Eastern Subanun,1950,Gray (1999); Murdock (1957), +119490,Ia5,EA090,"Absence, even locally",EA090-1,,,,1950,Gray (1999); Murdock (1957), +119491,Ia6,EA090,?,EA090-NA,,,,,, +119492,Ia7,EA090,Peace groups among communities,EA090-3,,,,1950,Gray (1999); Murdock (1957), +119493,Ia8,EA090,?,EA090-NA,,,,,, +119494,Ia9,EA090,?,EA090-NA,,,,,, +119495,Ib1,EA090,Autonomous communities,EA090-2,,,"Ulu Ai Group, Baleh",1950,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119496,Ib2,EA090,States,EA090-6,,,Town and environs of Pare; Modjokuto,1950,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119497,Ib3,EA090,States,EA090-6,,,Tihingan Village,1950,Gray (1999); Murdock (1957), +119498,Ib4,EA090,Autonomous communities,EA090-2,,,with special reference to the Toba group,1930,Gray (1999); Murdock (1957), +119499,Ib5,EA090,Minimal states,EA090-4,,,with special reference to the village of Sensuron,1920,Gray (1999); Murdock (1957), +119500,Ib6,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +119501,Ib7,EA090,"Absence, even locally",EA090-1,,,with special reference to those of North Pageh,1920,Gray (1999); Murdock (1957), +119502,Ib8,EA090,?,EA090-NA,,,,,, +119503,Ib9,EA090,?,EA090-NA,,,,,, +119504,Ic1,EA090,Little states,EA090-5,,,Borongloe,1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119505,Ic10,EA090,?,EA090-NA,,,,,, +119506,Ic11,EA090,?,EA090-NA,,,,,, +119507,Ic12,EA090,?,EA090-NA,,,,,, +119508,Ic13,EA090,?,EA090-NA,,,,,, +119509,Ic2,EA090,Autonomous communities,EA090-2,,,Abui of Atimelang Village,1940,Gray (1999); Murdock (1957), +119510,Ic3,EA090,Minimal states,EA090-4,,,with special reference to the Mountain Belu,1950,Gray (1999); Murdock (1957), +119511,Ic4,EA090,Minimal states,EA090-4,,,,1920,Gray (1999); Murdock (1957), +119512,Ic5,EA090,Autonomous communities,EA090-2,,,Bare'e subgroup,1910,Gray (1999); Murdock (1957), +119513,Ic6,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119514,Ic7,EA090,?,EA090-NA,,,,,, +119515,Ic8,EA090,?,EA090-NA,,,,,, +119516,Ic9,EA090,?,EA090-NA,,,,,, +119517,Id1,EA090,Autonomous communities,EA090-2,,,Alice Springs and environs,1900,Gray (1999); Murdock (1957), +119518,Id10,EA090,?,EA090-NA,,,,,, +119519,Id11,EA090,?,EA090-NA,,,,,, +119520,Id12,EA090,?,EA090-NA,,,,,, +119521,Id13,EA090,?,EA090-NA,,,,,, +119522,Id2,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119523,Id3,EA090,Autonomous communities,EA090-2,,,Tiwi Tribe: Melville Island,1920,Gray (1999); Murdock (1957), +119524,Id4,EA090,Autonomous communities,EA090-2,,,,1900,Gray (1999); Murdock (1957), +119525,Id5,EA090,Autonomous communities,EA090-2,,,,1910,Gray (1999); Murdock (1957), +119526,Id6,EA090,?,EA090-NA,,,,,, +119527,Id7,EA090,?,EA090-NA,,,,,, +119528,Id8,EA090,?,EA090-NA,,,,,, +119529,Id9,EA090,?,EA090-NA,,,,,, +119530,Ie1,EA090,Peace groups among communities,EA090-3,,,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119531,Ie10,EA090,?,EA090-NA,,,,,, +119532,Ie11,EA090,?,EA090-NA,,,,,, +119533,Ie12,EA090,?,EA090-NA,,,,,, +119534,Ie13,EA090,?,EA090-NA,,,,,, +119535,Ie14,EA090,?,EA090-NA,,,,,, +119536,Ie15,EA090,?,EA090-NA,,,,,, +119537,Ie16,EA090,?,EA090-NA,,,,,, +119538,Ie17,EA090,?,EA090-NA,,,,,, +119539,Ie18,EA090,?,EA090-NA,,,,,, +119540,Ie19,EA090,?,EA090-NA,,,,,, +119541,Ie2,EA090,?,EA090-NA,,,,,, +119542,Ie20,EA090,?,EA090-NA,,,,,, +119543,Ie21,EA090,?,EA090-NA,,,,,, +119544,Ie22,EA090,?,EA090-NA,,,,,, +119545,Ie23,EA090,?,EA090-NA,,,,,, +119546,Ie24,EA090,?,EA090-NA,,,,,, +119547,Ie25,EA090,?,EA090-NA,,,,,, +119548,Ie26,EA090,?,EA090-NA,,,,,, +119549,Ie27,EA090,?,EA090-NA,,,,,, +119550,Ie28,EA090,?,EA090-NA,,,,,, +119551,Ie29,EA090,?,EA090-NA,,,,,, +119552,Ie3,EA090,"Absence, even locally",EA090-1,,,with special reference to the Mountain Arapesh (Alitoa),1930,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119553,Ie30,EA090,?,EA090-NA,,,,,, +119554,Ie31,EA090,?,EA090-NA,,,,,, +119555,Ie32,EA090,?,EA090-NA,,,,,, +119556,Ie33,EA090,?,EA090-NA,,,,,, +119557,Ie34,EA090,?,EA090-NA,,,,,, +119558,Ie35,EA090,?,EA090-NA,,,,,, +119559,Ie36,EA090,?,EA090-NA,,,,,, +119560,Ie37,EA090,?,EA090-NA,,,,,, +119561,Ie38,EA090,?,EA090-NA,,,,,, +119562,Ie39,EA090,?,EA090-NA,,,,,, +119563,Ie4,EA090,"Absence, even locally",EA090-1,,,"Dap, Wonevaro district",1930,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119564,Ie5,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119565,Ie6,EA090,"Absence, even locally",EA090-1,,,,1930,Gray (1999); Murdock (1957), +119566,Ie7,EA090,?,EA090-NA,,,,,, +119567,Ie8,EA090,?,EA090-NA,,,,,, +119568,Ie9,EA090,?,EA090-NA,,,,,, +119569,If1,EA090,Minimal states,EA090-4,,,"Ulimang, Badeldaob Island",1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119570,If10,EA090,?,EA090-NA,,,,,, +119571,If11,EA090,?,EA090-NA,,,,,, +119572,If12,EA090,?,EA090-NA,,,,,, +119573,If13,EA090,?,EA090-NA,,,,,, +119574,If14,EA090,?,EA090-NA,,,,,, +119575,If15,EA090,?,EA090-NA,,,,,, +119576,If16,EA090,?,EA090-NA,,,,,, +119577,If17,EA090,?,EA090-NA,,,,,, +119578,If2,EA090,Autonomous communities,EA090-2,,,Romonum Island,1940,Gray (1999); Murdock (1957), +119579,If3,EA090,Dependent societies,EA090-8,,,With special reference to the inhabitants of Majuro,1940,Gray (1999); Murdock (1957), +119580,If4,EA090,Autonomous communities,EA090-2,,,with special reference to the inhabitants of Ifaluk atoll,1940,Gray (1999); Murdock (1957), +119581,If5,EA090,Minimal states,EA090-4,,,,1910,Gray (1999); Murdock (1957), +119582,If6,EA090,Minimal states,EA090-4,,,Island,1910,Gray (1999); Murdock (1957), +119583,If7,EA090,Autonomous communities,EA090-2,,,with special reference to the inhabitants of Onotoa,1940,Gray (1999); Murdock (1957), +119584,If8,EA090,?,EA090-NA,,,,,, +119585,If9,EA090,?,EA090-NA,,,,,, +119586,Ig1,EA090,Autonomous communities,EA090-2,,,Northeastern group,1940,Gray (1999); Murdock (1957), +119587,Ig10,EA090,?,EA090-NA,,,,,, +119588,Ig11,EA090,?,EA090-NA,,,,,, +119589,Ig12,EA090,?,EA090-NA,,,,,, +119590,Ig13,EA090,?,EA090-NA,,,,,, +119591,Ig14,EA090,?,EA090-NA,,,,,, +119592,Ig15,EA090,?,EA090-NA,,,,,, +119593,Ig16,EA090,?,EA090-NA,,,,,, +119594,Ig17,EA090,?,EA090-NA,,,,,, +119595,Ig18,EA090,?,EA090-NA,,,,,, +119596,Ig19,EA090,?,EA090-NA,,,,,, +119597,Ig2,EA090,Minimal states,EA090-4,,,Kiriwina Island,1910,Gray (1999); Murdock (1957), +119598,Ig20,EA090,?,EA090-NA,,,,,, +119599,Ig21,EA090,?,EA090-NA,,,,,, +119600,Ig3,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119601,Ig4,EA090,Autonomous communities,EA090-2,,,Lesu Village,1930,Gray (1999); Murdock (1957), +119602,Ig5,EA090,"Absence, even locally",EA090-1,,,,1920,Gray (1999); Murdock (1957), +119603,Ig6,EA090,Autonomous communities,EA090-2,,,,1900,Gray (1999); Murdock (1957), +119604,Ig7,EA090,"Absence, even locally",EA090-1,,,,1950,Gray (1999); Murdock (1957), +119605,Ig8,EA090,?,EA090-NA,,,,,, +119606,Ig9,EA090,Autonomous communities,EA090-2,,,Peri Village,1920,Gray (1999); Murdock (1957), +119607,Ih1,EA090,Autonomous communities,EA090-2,,,,1890,Gray (1999); Murdock (1957), +119608,Ih10,EA090,?,EA090-NA,,,,,, +119609,Ih11,EA090,?,EA090-NA,,,,,, +119610,Ih12,EA090,?,EA090-NA,,,,,, +119611,Ih13,EA090,?,EA090-NA,,,,,, +119612,Ih14,EA090,?,EA090-NA,,,,,, +119613,Ih2,EA090,Minimal states,EA090-4,,,Malekula Island,1930,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119614,Ih3,EA090,?,EA090-NA,,,,,, +119615,Ih4,EA090,Minimal states,EA090-4,,,Lau Island,1920,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119616,Ih5,EA090,Minimal states,EA090-4,,,Neje Chiefdom,1860,Gray (1999); Murdock (1957), +119617,Ih6,EA090,Minimal states,EA090-4,,,,1890,Gray (1999); Murdock (1957), +119618,Ih7,EA090,Minimal states,EA090-4,,,,1910,Gray (1999); Murdock (1957), +119619,Ih8,EA090,?,EA090-NA,,,,,, +119620,Ih9,EA090,?,EA090-NA,,,,,, +119621,Ii1,EA090,Minimal states,EA090-4,,,with special reference to American Samoa,1920,Gray (1999); Murdock (1957), +119622,Ii10,EA090,?,EA090-NA,,,,,, +119623,Ii12,EA090,?,EA090-NA,,,,,, +119624,Ii13,EA090,?,EA090-NA,,,,,, +119625,Ii14,EA090,?,EA090-NA,,,,,, +119626,Ii2,EA090,Autonomous communities,EA090-2,,,Ravenga District,1930,Gray (1999); Murdock (1957), +119627,Ii3,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119628,Ii4,EA090,Minimal states,EA090-4,,,with special reference to the inhabitants of Vaitupu,1890,Gray (1999); Murdock (1957), +119629,Ii5,EA090,Autonomous communities,EA090-2,,,"Leuenuwa, Lord Howe's Islanders",1920,Gray (1999); Murdock (1957), +119630,Ii6,EA090,Minimal states,EA090-4,,,with special reference to Atafu,1900,Gray (1999); Murdock (1957), +119631,Ii7,EA090,?,EA090-NA,,,,,, +119632,Ii8,EA090,?,EA090-NA,,,,,, +119633,Ii9,EA090,?,EA090-NA,,,,,, +119634,Ij1,EA090,Minimal states,EA090-4,,,,1820,Gray (1999); Murdock (1957), +119635,Ij10,EA090,?,EA090-NA,,,,,, +119636,Ij2,EA090,Minimal states,EA090-4,,,Nga Puhi Tribe,1820,Gray (1999); Murdock (1957), +119637,Ij3,EA090,Minimal states,EA090-4,,,,1900,Gray (1999); Murdock (1957), +119638,Ij4,EA090,Autonomous communities,EA090-2,,,,1850,Gray (1999); Murdock (1957), +119639,Ij5,EA090,Autonomous communities,EA090-2,,,,1900,Gray (1999); Murdock (1957), +119640,Ij6,EA090,Little states,EA090-5,,,,1800,Gray (1999); Murdock (1957), +119641,Ij7,EA090,?,EA090-NA,,,,,, +119642,Ij8,EA090,?,EA090-NA,,,,,, +119643,Ij9,EA090,?,EA090-NA,,,,,, +119644,Na1,EA090,?,EA090-NA,,,,,, +119645,Na10,EA090,?,EA090-NA,,,,,, +119646,Na11,EA090,?,EA090-NA,,,,,, +119647,Na12,EA090,?,EA090-NA,,,,,, +119648,Na13,EA090,?,EA090-NA,,,,,, +119649,Na14,EA090,?,EA090-NA,,,,,, +119650,Na15,EA090,?,EA090-NA,,,,,, +119651,Na16,EA090,?,EA090-NA,,,,,, +119652,Na17,EA090,?,EA090-NA,,,,,, +119653,Na19,EA090,?,EA090-NA,,,,,, +119654,Na2,EA090,?,EA090-NA,,,,,, +119655,Na20,EA090,?,EA090-NA,,,,,, +119656,Na21,EA090,?,EA090-NA,,,,,, +119657,Na22,EA090,?,EA090-NA,,,,,, +119658,Na23,EA090,?,EA090-NA,,,,,, +119659,Na24,EA090,?,EA090-NA,,,,,, +119660,Na25,EA090,?,EA090-NA,,,,,, +119661,Na26,EA090,?,EA090-NA,,,,,, +119662,Na27,EA090,?,EA090-NA,,,,,, +119663,Na28,EA090,?,EA090-NA,,,,,, +119664,Na29,EA090,?,EA090-NA,,,,,, +119665,Na3,EA090,?,EA090-NA,,,,,, +119666,Na30,EA090,?,EA090-NA,,,,,, +119667,Na31,EA090,?,EA090-NA,,,,,, +119668,Na32,EA090,?,EA090-NA,,,,,, +119669,Na33,EA090,?,EA090-NA,,,,,, +119670,Na34,EA090,Autonomous communities,EA090-2,,,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,Gray (1999); Murdock (1957), +119671,Na35,EA090,?,EA090-NA,,,,,, +119672,Na36,EA090,?,EA090-NA,,,,,, +119673,Na37,EA090,?,EA090-NA,,,,,, +119674,Na38,EA090,?,EA090-NA,,,,,, +119675,Na39,EA090,?,EA090-NA,,,,,, +119676,Na4,EA090,"Absence, even locally",EA090-1,,,Upper Liard and Dease River Group,1920,Gray (1999); Murdock (1957), +119677,Na40,EA090,?,EA090-NA,,,,,, +119678,Na41,EA090,?,EA090-NA,,,,,, +119679,Na42,EA090,?,EA090-NA,,,,,, +119680,Na43,EA090,?,EA090-NA,,,,,, +119681,Na44,EA090,?,EA090-NA,,,,,, +119682,Na45,EA090,?,EA090-NA,,,,,, +119683,Na5,EA090,Autonomous communities,EA090-2,,,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,Gray (1999); Murdock (1957), +119684,Na6,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119685,Na7,EA090,Autonomous communities,EA090-2,,,with special reference to the Attawapiskat Swampy Cree,1900,Gray (1999); Murdock (1957), +119686,Na8,EA090,?,EA090-NA,,,,,, +119687,Na9,EA090,?,EA090-NA,,,,,, +119688,Nb1,EA090,Autonomous communities,EA090-2,,,Masset Town,1890,Gray (1999); Murdock (1957), +119689,Nb10,EA090,?,EA090-NA,,,,,, +119690,Nb11,EA090,?,EA090-NA,,,,,, +119691,Nb12,EA090,?,EA090-NA,,,,,, +119692,Nb13,EA090,?,EA090-NA,,,,,, +119693,Nb14,EA090,?,EA090-NA,,,,,, +119694,Nb15,EA090,?,EA090-NA,,,,,, +119695,Nb16,EA090,?,EA090-NA,,,,,, +119696,Nb17,EA090,?,EA090-NA,,,,,, +119697,Nb18,EA090,?,EA090-NA,,,,,, +119698,Nb19,EA090,?,EA090-NA,,,,,, +119699,Nb2,EA090,?,EA090-NA,,,,,, +119700,Nb20,EA090,?,EA090-NA,,,,,, +119701,Nb21,EA090,?,EA090-NA,,,,,, +119702,Nb22,EA090,?,EA090-NA,,,,,, +119703,Nb23,EA090,?,EA090-NA,,,,,, +119704,Nb24,EA090,?,EA090-NA,,,,,, +119705,Nb25,EA090,?,EA090-NA,,,,,, +119706,Nb26,EA090,?,EA090-NA,,,,,, +119707,Nb27,EA090,?,EA090-NA,,,,,, +119708,Nb28,EA090,?,EA090-NA,,,,,, +119709,Nb29,EA090,?,EA090-NA,,,,,, +119710,Nb3,EA090,?,EA090-NA,,,,,, +119711,Nb30,EA090,?,EA090-NA,,,,,, +119712,Nb31,EA090,?,EA090-NA,,,,,, +119713,Nb32,EA090,?,EA090-NA,,,,,, +119714,Nb33,EA090,?,EA090-NA,,,,,, +119715,Nb34,EA090,?,EA090-NA,,,,,, +119716,Nb35,EA090,?,EA090-NA,,,,,, +119717,Nb36,EA090,?,EA090-NA,,,,,, +119718,Nb37,EA090,?,EA090-NA,,,,,, +119719,Nb38,EA090,?,EA090-NA,,,,,, +119720,Nb39,EA090,?,EA090-NA,,,,,, +119721,Nb4,EA090,"Absence, even locally",EA090-1,,,,1850,Gray (1999); Murdock (1957), +119722,Nb5,EA090,?,EA090-NA,,,,,, +119723,Nb6,EA090,Autonomous communities,EA090-2,,,,1870,Gray (1999); Murdock (1957), +119724,Nb7,EA090,?,EA090-NA,,,,,, +119725,Nb8,EA090,?,EA090-NA,,,,,, +119726,Nb9,EA090,?,EA090-NA,,,,,, +119727,Nc1,EA090,Autonomous communities,EA090-2,,,,1850,Gray (1999); Murdock (1957), +119728,Nc10,EA090,?,EA090-NA,,,,,, +119729,Nc11,EA090,?,EA090-NA,,,,,, +119730,Nc12,EA090,?,EA090-NA,,,,,, +119731,Nc13,EA090,?,EA090-NA,,,,,, +119732,Nc14,EA090,?,EA090-NA,,,,,, +119733,Nc15,EA090,?,EA090-NA,,,,,, +119734,Nc16,EA090,?,EA090-NA,,,,,, +119735,Nc17,EA090,?,EA090-NA,,,,,, +119736,Nc18,EA090,?,EA090-NA,,,,,, +119737,Nc19,EA090,?,EA090-NA,,,,,, +119738,Nc2,EA090,Autonomous communities,EA090-2,,,,1850,Gray (1999); Murdock (1957), +119739,Nc20,EA090,?,EA090-NA,,,,,, +119740,Nc21,EA090,?,EA090-NA,,,,,, +119741,Nc22,EA090,?,EA090-NA,,,,,, +119742,Nc23,EA090,?,EA090-NA,,,,,, +119743,Nc24,EA090,?,EA090-NA,,,,,, +119744,Nc25,EA090,?,EA090-NA,,,,,, +119745,Nc26,EA090,?,EA090-NA,,,,,, +119746,Nc27,EA090,?,EA090-NA,,,,,, +119747,Nc28,EA090,?,EA090-NA,,,,,, +119748,Nc29,EA090,?,EA090-NA,,,,,, +119749,Nc3,EA090,Autonomous communities,EA090-2,,,with special reference to those of the Northern Foothills,1850,Gray (1999); Murdock (1957), +119750,Nc30,EA090,?,EA090-NA,,,,,, +119751,Nc31,EA090,?,EA090-NA,,,,,, +119752,Nc32,EA090,?,EA090-NA,,,,,, +119753,Nc33,EA090,?,EA090-NA,,,,,, +119754,Nc34,EA090,?,EA090-NA,,,,,, +119755,Nc4,EA090,Autonomous communities,EA090-2,,,,1860,Gray (1999); Murdock (1957), +119756,Nc5,EA090,Autonomous communities,EA090-2,,,with special reference to the Central Sierra group,1850,Gray (1999); Murdock (1957), +119757,Nc6,EA090,Autonomous communities,EA090-2,,,with special reference to the Southern Diegueno,1850,Gray (1999); Murdock (1957), +119758,Nc7,EA090,Autonomous communities,EA090-2,,,,1850,Gray (1999); Murdock (1957), +119759,Nc8,EA090,?,EA090-NA,,,,,, +119760,Nc9,EA090,?,EA090-NA,,,,,, +119761,Nd1,EA090,Peace groups among communities,EA090-3,,,,1850,Gray (1999); Murdock (1957), +119762,Nd10,EA090,?,EA090-NA,,,,,, +119763,Nd11,EA090,?,EA090-NA,,,,,, +119764,Nd12,EA090,?,EA090-NA,,,,,, +119765,Nd13,EA090,?,EA090-NA,,,,,, +119766,Nd14,EA090,?,EA090-NA,,,,,, +119767,Nd15,EA090,?,EA090-NA,,,,,, +119768,Nd16,EA090,?,EA090-NA,,,,,, +119769,Nd17,EA090,?,EA090-NA,,,,,, +119770,Nd18,EA090,?,EA090-NA,,,,,, +119771,Nd19,EA090,?,EA090-NA,,,,,, +119772,Nd2,EA090,Autonomous communities,EA090-2,,,,1860,Gray (1999); Murdock (1957), +119773,Nd20,EA090,?,EA090-NA,,,,,, +119774,Nd21,EA090,?,EA090-NA,,,,,, +119775,Nd22,EA090,?,EA090-NA,,,,,, +119776,Nd23,EA090,?,EA090-NA,,,,,, +119777,Nd24,EA090,?,EA090-NA,,,,,, +119778,Nd25,EA090,?,EA090-NA,,,,,, +119779,Nd26,EA090,?,EA090-NA,,,,,, +119780,Nd27,EA090,?,EA090-NA,,,,,, +119781,Nd28,EA090,?,EA090-NA,,,,,, +119782,Nd29,EA090,?,EA090-NA,,,,,, +119783,Nd3,EA090,Autonomous communities,EA090-2,,,Havasupai Tribe,1870,Gray (1999); Murdock (1957), +119784,Nd30,EA090,?,EA090-NA,,,,,, +119785,Nd31,EA090,?,EA090-NA,,,,,, +119786,Nd32,EA090,?,EA090-NA,,,,,, +119787,Nd33,EA090,?,EA090-NA,,,,,, +119788,Nd34,EA090,?,EA090-NA,,,,,, +119789,Nd35,EA090,?,EA090-NA,,,,,, +119790,Nd36,EA090,?,EA090-NA,,,,,, +119791,Nd37,EA090,?,EA090-NA,,,,,, +119792,Nd38,EA090,?,EA090-NA,,,,,, +119793,Nd39,EA090,?,EA090-NA,,,,,, +119794,Nd4,EA090,?,EA090-NA,,,,,, +119795,Nd40,EA090,?,EA090-NA,,,,,, +119796,Nd41,EA090,?,EA090-NA,,,,,, +119797,Nd42,EA090,?,EA090-NA,,,,,, +119798,Nd43,EA090,?,EA090-NA,,,,,, +119799,Nd44,EA090,?,EA090-NA,,,,,, +119800,Nd45,EA090,?,EA090-NA,,,,,, +119801,Nd46,EA090,?,EA090-NA,,,,,, +119802,Nd47,EA090,?,EA090-NA,,,,,, +119803,Nd48,EA090,?,EA090-NA,,,,,, +119804,Nd49,EA090,?,EA090-NA,,,,,, +119805,Nd5,EA090,Autonomous communities,EA090-2,,,,1870,Gray (1999); Murdock (1957), +119806,Nd50,EA090,?,EA090-NA,,,,,, +119807,Nd51,EA090,?,EA090-NA,,,,,, +119808,Nd52,EA090,?,EA090-NA,,,,,, +119809,Nd53,EA090,?,EA090-NA,,,,,, +119810,Nd54,EA090,?,EA090-NA,,,,,, +119811,Nd55,EA090,?,EA090-NA,,,,,, +119812,Nd56,EA090,?,EA090-NA,,,,,, +119813,Nd57,EA090,?,EA090-NA,,,,,, +119814,Nd58,EA090,?,EA090-NA,,,,,, +119815,Nd59,EA090,?,EA090-NA,,,,,, +119816,Nd6,EA090,Autonomous communities,EA090-2,,,,1850,Gray (1999); Murdock (1957), +119817,Nd60,EA090,?,EA090-NA,,,,,, +119818,Nd61,EA090,?,EA090-NA,,,,,, +119819,Nd62,EA090,?,EA090-NA,,,,,, +119820,Nd63,EA090,?,EA090-NA,,,,,, +119821,Nd64,EA090,?,EA090-NA,,,,,, +119822,Nd65,EA090,?,EA090-NA,,,,,, +119823,Nd66,EA090,?,EA090-NA,,,,,, +119824,Nd67,EA090,?,EA090-NA,,,,,, +119825,Nd7,EA090,Autonomous communities,EA090-2,,,Lower or eastern branch,1880,Gray (1999); Murdock (1957), +119826,Nd8,EA090,?,EA090-NA,,,,,, +119827,Nd9,EA090,?,EA090-NA,,,,,, +119828,Ne1,EA090,Minimal states,EA090-4,,,Gros Ventre Tribe,1880,Gray (1999); Murdock (1957), +119829,Ne10,EA090,?,EA090-NA,,,,,, +119830,Ne11,EA090,?,EA090-NA,,,,,, +119831,Ne12,EA090,?,EA090-NA,,,,,, +119832,Ne13,EA090,?,EA090-NA,,,,,, +119833,Ne14,EA090,?,EA090-NA,,,,,, +119834,Ne15,EA090,?,EA090-NA,,,,,, +119835,Ne16,EA090,?,EA090-NA,,,,,, +119836,Ne17,EA090,?,EA090-NA,,,,,, +119837,Ne18,EA090,?,EA090-NA,,,,,, +119838,Ne19,EA090,?,EA090-NA,,,,,, +119839,Ne2,EA090,Minimal states,EA090-4,,,,1870,Gray (1999); Murdock (1957), +119840,Ne20,EA090,?,EA090-NA,,,,,, +119841,Ne21,EA090,?,EA090-NA,,,,,, +119842,Ne3,EA090,Peace groups among communities,EA090-3,,,Comanche Tribe,1870,Gray (1999); Murdock (1957), +119843,Ne4,EA090,Minimal states,EA090-4,,,,1870,Gray (1999); Murdock (1957), +119844,Ne5,EA090,Minimal states,EA090-4,,,,1860,Gray (1999); Murdock (1957), +119845,Ne6,EA090,Minimal states,EA090-4,,,,1830,Gray (1999); Murdock (1957), +119846,Ne7,EA090,Minimal states,EA090-4,,,,1880,Gray (1999); Murdock (1957), +119847,Ne8,EA090,Peace groups among communities,EA090-3,,,,1870,Gray (1999); Murdock (1957), +119848,Ne9,EA090,?,EA090-NA,,,,,, +119849,Nf10,EA090,?,EA090-NA,,,,,, +119850,Nf11,EA090,?,EA090-NA,,,,,, +119851,Nf12,EA090,?,EA090-NA,,,,,, +119852,Nf13,EA090,?,EA090-NA,,,,,, +119853,Nf14,EA090,?,EA090-NA,,,,,, +119854,Nf15,EA090,?,EA090-NA,,,,,, +119855,Nf2,EA090,Minimal states,EA090-4,,,,1850,Gray (1999); Murdock (1957), +119856,Nf3,EA090,Minimal states,EA090-4,,,Omaha Tribe,1850,Gray (1999); Murdock (1957), +119857,Nf4,EA090,Minimal states,EA090-4,,,,1720,Gray (1999); Murdock (1957), +119858,Nf5,EA090,Minimal states,EA090-4,,,,1860,Gray (1999); Murdock (1957), +119859,Nf6,EA090,Minimal states,EA090-4,,,Skidi Band or subtribe,1867,Gray (1999); Murdock (1957), +119860,Nf7,EA090,Minimal states,EA090-4,,,Tama Reservation,1830,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119861,Nf8,EA090,Minimal states,EA090-4,,,,1770,Gray (1999); Murdock (1957), +119862,Nf9,EA090,?,EA090-NA,,,,,, +119863,Ng1,EA090,Minimal states,EA090-4,,,Bear and Cord Subtribes,1640,Gray (1999); Murdock (1957), +119864,Ng10,EA090,?,EA090-NA,,,,,, +119865,Ng11,EA090,?,EA090-NA,,,,,, +119866,Ng12,EA090,?,EA090-NA,,,,,, +119867,Ng13,EA090,?,EA090-NA,,,,,, +119868,Ng14,EA090,?,EA090-NA,,,,,, +119869,Ng15,EA090,?,EA090-NA,,,,,, +119870,Ng2,EA090,?,EA090-NA,,,,,, +119871,Ng3,EA090,Little states,EA090-5,,,Upper division in Alabama,1750,Gray (1999); Murdock (1957), +119872,Ng4,EA090,Minimal states,EA090-4,,,,1900,Gray (1999); Murdock (1957), +119873,Ng5,EA090,Little states,EA090-5,,,,1750,Gray (1999); Murdock (1957), +119874,Ng6,EA090,Autonomous communities,EA090-2,,,with special reference to the Munsee,1700,Gray (1999); Murdock (1957), +119875,Ng7,EA090,Minimal states,EA090-4,,,Natchez Kingdom,1700,Gray (1999); Murdock (1957), +119876,Ng8,EA090,Minimal states,EA090-4,,,,1560,Gray (1999); Murdock (1957), +119877,Ng9,EA090,?,EA090-NA,,,,,, +119878,Nh1,EA090,Autonomous communities,EA090-2,,,Central band,1880,Gray (1999); Murdock (1957), +119879,Nh10,EA090,?,EA090-NA,,,,,, +119880,Nh11,EA090,?,EA090-NA,,,,,, +119881,Nh12,EA090,?,EA090-NA,,,,,, +119882,Nh13,EA090,?,EA090-NA,,,,,, +119883,Nh14,EA090,?,EA090-NA,,,,,, +119884,Nh15,EA090,?,EA090-NA,,,,,, +119885,Nh16,EA090,?,EA090-NA,,,,,, +119886,Nh17,EA090,?,EA090-NA,,,,,, +119887,Nh18,EA090,?,EA090-NA,,,,,, +119888,Nh19,EA090,?,EA090-NA,,,,,, +119889,Nh2,EA090,?,EA090-NA,,,,,, +119890,Nh20,EA090,?,EA090-NA,,,,,, +119891,Nh21,EA090,?,EA090-NA,,,,,, +119892,Nh22,EA090,?,EA090-NA,,,,,, +119893,Nh23,EA090,?,EA090-NA,,,,,, +119894,Nh24,EA090,?,EA090-NA,,,,,, +119895,Nh25,EA090,?,EA090-NA,,,,,, +119896,Nh26,EA090,?,EA090-NA,,,,,, +119897,Nh27,EA090,?,EA090-NA,,,,,, +119898,Nh3,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119899,Nh4,EA090,Autonomous communities,EA090-2,,,Pueblo,1910,Gray (1999); Murdock (1957), +119900,Nh5,EA090,Minimal states,EA090-4,,,,1850,Gray (1999); Murdock (1957), +119901,Nh6,EA090,Autonomous communities,EA090-2,,,,1890,Gray (1999); Murdock (1957), +119902,Nh7,EA090,Autonomous communities,EA090-2,,,,1890,Gray (1999); Murdock (1957), +119903,Nh8,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +119904,Nh9,EA090,?,EA090-NA,,,,,, +119905,Ni1,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119906,Ni2,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119907,Ni3,EA090,Dependent societies,EA090-8,,,Huichol Tribe,1920,Gray (1999); Murdock (1957), +119908,Ni4,EA090,Autonomous communities,EA090-2,,,,1900,Gray (1999); Murdock (1957), +119909,Ni5,EA090,?,EA090-NA,,,,,, +119910,Ni6,EA090,?,EA090-NA,,,,,, +119911,Ni7,EA090,?,EA090-NA,,,,,, +119912,Ni8,EA090,?,EA090-NA,,,,,, +119913,Ni9,EA090,?,EA090-NA,,,,,, +119914,Nj1,EA090,Dependent societies,EA090-8,,,Ojitlan,1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119915,Nj10,EA090,?,EA090-NA,,,,,, +119916,Nj11,EA090,?,EA090-NA,,,,,, +119917,Nj12,EA090,?,EA090-NA,,,,,, +119918,Nj13,EA090,?,EA090-NA,,,,,, +119919,Nj14,EA090,?,EA090-NA,,,,,, +119920,Nj2,EA090,States,EA090-6,,,City & environs of Tenochtitlan,1520,Gray (1999); Murdock (1957), +119921,Nj3,EA090,Dependent societies,EA090-8,,,Town and environs of Soteapan,1940,Gray (1999); Murdock (1957), +119922,Nj4,EA090,States,EA090-6,,,,1940,Gray (1999); Murdock (1957), +119923,Nj5,EA090,Dependent societies,EA090-8,,,,1940,Gray (1999); Murdock (1957), +119924,Nj6,EA090,?,EA090-NA,,,,,, +119925,Nj7,EA090,?,EA090-NA,,,,,, +119926,Nj8,EA090,?,EA090-NA,,,,,, +119927,Nj9,EA090,?,EA090-NA,,,,,, +119928,Sa1,EA090,Minimal states,EA090-4,,,San Blas Archipelago,1940,Gray (1999); Murdock (1957), +119929,Sa10,EA090,?,EA090-NA,,,,,, +119930,Sa11,EA090,?,EA090-NA,,,,,, +119931,Sa12,EA090,?,EA090-NA,,,,,, +119932,Sa13,EA090,?,EA090-NA,,,,,, +119933,Sa14,EA090,?,EA090-NA,,,,,, +119934,Sa15,EA090,?,EA090-NA,,,,,, +119935,Sa16,EA090,?,EA090-NA,,,,,, +119936,Sa17,EA090,?,EA090-NA,,,,,, +119937,Sa2,EA090,Autonomous communities,EA090-2,,,with special reference to the town of Canuc; some data apply to the group more generally,1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119938,Sa3,EA090,Dependent societies,EA090-8,,,,1930,Gray (1999); Murdock (1957), +119939,Sa4,EA090,?,EA090-NA,,,,,, +119940,Sa5,EA090,Minimal states,EA090-4,,,,1950,Gray (1999); Murdock (1957), +119941,Sa6,EA090,Minimal states,EA090-4,,,,1520,Gray (1999); Murdock (1957), +119942,Sa7,EA090,Dependent societies,EA090-8,,,,1940,Gray (1999); Murdock (1957), +119943,Sa8,EA090,?,EA090-NA,,,,,, +119944,Sa9,EA090,Minimal states,EA090-4,,,Vicinity: Cape Gracias a Dios,1920,Gray (1999); Murdock (1957), +119945,Sb1,EA090,Autonomous communities,EA090-2,,,Dominica Island,1650,Gray (1999); Murdock (1957), +119946,Sb2,EA090,Autonomous communities,EA090-2,,,,1940,Gray (1999); Murdock (1957), +119947,Sb3,EA090,Autonomous communities,EA090-2,,,with special reference to the Iroka,1940,Gray (1999); Murdock (1957), +119948,Sb4,EA090,?,EA090-NA,,,,,, +119949,Sb5,EA090,?,EA090-NA,,,,,, +119950,Sb6,EA090,Autonomous communities,EA090-2,,,Goajiro Tribe,1940,Gray (1999); Murdock (1957), +119951,Sb7,EA090,?,EA090-NA,,,,,, +119952,Sb8,EA090,?,EA090-NA,,,,,, +119953,Sb9,EA090,?,EA090-NA,,,,,, +119954,Sc1,EA090,Autonomous communities,EA090-2,,,,1950,Gray (1999); Murdock (1957), +119955,Sc10,EA090,?,EA090-NA,,,,,, +119956,Sc11,EA090,?,EA090-NA,,,,,, +119957,Sc12,EA090,?,EA090-NA,,,,,, +119958,Sc13,EA090,?,EA090-NA,,,,,, +119959,Sc14,EA090,?,EA090-NA,,,,,, +119960,Sc15,EA090,?,EA090-NA,,,,,, +119961,Sc16,EA090,?,EA090-NA,,,,,, +119962,Sc17,EA090,?,EA090-NA,,,,,, +119963,Sc18,EA090,?,EA090-NA,,,,,, +119964,Sc2,EA090,Autonomous communities,EA090-2,,,,1950,Gray (1999); Murdock (1957), +119965,Sc3,EA090,Autonomous communities,EA090-2,,,Barama River,1930,Gray (1999); Murdock (1957), +119966,Sc4,EA090,Autonomous communities,EA090-2,,,with special reference to the non-agricultural groups,1950,Gray (1999); Murdock (1957), +119967,Sc5,EA090,Autonomous communities,EA090-2,,,,1900,Gray (1999); Murdock (1957), +119968,Sc6,EA090,Minimal states,EA090-4,,,Upper Suriname River; Akwa on Morini River,1920,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119969,Sc7,EA090,?,EA090-NA,,,,,, +119970,Sc8,EA090,?,EA090-NA,,,,,, +119971,Sc9,EA090,?,EA090-NA,,,,,, +119972,Sd1,EA090,Autonomous communities,EA090-2,,,Cabrura village,1950,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +119973,Sd2,EA090,Autonomous communities,EA090-2,,,,1930,Gray (1999); Murdock (1957), +119974,Sd3,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +119975,Sd4,EA090,Autonomous communities,EA090-2,,,,1950,Gray (1999); Murdock (1957), +119976,Sd5,EA090,?,EA090-NA,,,,,, +119977,Sd6,EA090,?,EA090-NA,,,,,, +119978,Sd7,EA090,?,EA090-NA,,,,,, +119979,Sd8,EA090,?,EA090-NA,,,,,, +119980,Sd9,EA090,?,EA090-NA,,,,,, +119981,Se1,EA090,Autonomous communities,EA090-2,,,Vicinity of the Rio Blanco,1940,Gray (1999); Murdock (1957), +119982,Se10,EA090,?,EA090-NA,,,,,, +119983,Se11,EA090,?,EA090-NA,,,,,, +119984,Se12,EA090,?,EA090-NA,,,,,, +119985,Se2,EA090,Autonomous communities,EA090-2,,,,1940,Gray (1999); Murdock (1957), +119986,Se3,EA090,"Absence, even locally",EA090-1,,,,1930,Gray (1999); Murdock (1957), +119987,Se4,EA090,Autonomous communities,EA090-2,,,,1940,Gray (1999); Murdock (1957), +119988,Se5,EA090,Autonomous communities,EA090-2,,,Village on Caduiari River,1940,Gray (1999); Murdock (1957), +119989,Se6,EA090,Autonomous communities,EA090-2,,,,1910,Gray (1999); Murdock (1957), +119990,Se7,EA090,?,EA090-NA,,,,,, +119991,Se8,EA090,?,EA090-NA,,,,,, +119992,Se9,EA090,?,EA090-NA,,,,,, +119993,Sf1,EA090,States,EA090-6,,,City and environs of Cuzco,1530,Gray (1999); Murdock (1957), +119994,Sf2,EA090,Dependent societies,EA090-8,,,Chucuito Clan community in Peru,1940,Gray (1999); Murdock (1957), +119995,Sf3,EA090,Autonomous communities,EA090-2,,,Rio Cayapas Basin,1910,Gray (1999); Murdock (1957), +119996,Sf4,EA090,?,EA090-NA,,,,,, +119997,Sf5,EA090,Minimal states,EA090-4,,,,1900,Gray (1999); Murdock (1957), +119998,Sf6,EA090,Little states,EA090-5,,,,1540,Gray (1999); Murdock (1957), +119999,Sf7,EA090,?,EA090-NA,,,,,, +120000,Sf8,EA090,?,EA090-NA,,,,,, +120001,Sf9,EA090,?,EA090-NA,,,,,, +120002,Sg1,EA090,"Absence, even locally",EA090-1,,,Eastern and central,1870,Gray (1999); Murdock (1957), +120003,Sg2,EA090,Autonomous communities,EA090-2,,,Cholchol,1880,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120004,Sg3,EA090,Autonomous communities,EA090-2,,,with special reference to the Shelknam,1880,Gray (1999); Murdock (1957), +120005,Sg4,EA090,Autonomous communities,EA090-2,,,Equestrian,1870,Gray (1999); Murdock (1957), +120006,Sg5,EA090,"Absence, even locally",EA090-1,,,with special reference to the southern bands,1900,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120007,Sh1,EA090,Autonomous communities,EA090-2,,,,1860,Gray (1999); Murdock (1957), +120008,Sh2,EA090,Autonomous communities,EA090-2,,,,1850,Gray (1999); Murdock (1957), +120009,Sh3,EA090,Autonomous communities,EA090-2,,,Those in contact with mission,1800,Gray (1999); Murdock (1957), +120010,Sh4,EA090,Minimal states,EA090-4,,,,1940,Gray (1999); Murdock (1957), +120011,Sh5,EA090,Autonomous communities,EA090-2,,,,1910,Gray (1999); Murdock (1957), +120012,Sh6,EA090,Minimal states,EA090-4,,,,1890,Gray (1999); Murdock (1957), +120013,Sh7,EA090,Minimal states,EA090-4,,,,1900,Gray (1999); Murdock (1957), +120014,Sh8,EA090,?,EA090-NA,,,,,, +120015,Sh9,EA090,?,EA090-NA,,,,,, +120016,Si1,EA090,Autonomous communities,EA090-2,,,Kejara,1920,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120017,Si10,EA090,?,EA090-NA,,,,,, +120018,Si2,EA090,Autonomous communities,EA090-2,,,Village of Vanivani,1930,Gray (1999); Murdock (1957), +120019,Si3,EA090,Autonomous communities,EA090-2,,,Simao Lopes,1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120020,Si4,EA090,Autonomous communities,EA090-2,,,Cocozu Group,1940,Gray (1999); Murdock (1957), +120021,Si5,EA090,Autonomous communities,EA090-2,,,,1940,Gray (1999); Murdock (1957), +120022,Si6,EA090,Autonomous communities,EA090-2,,,,1900,Gray (1999); Murdock (1957), +120023,Si7,EA090,?,EA090-NA,,,,,, +120024,Si8,EA090,?,EA090-NA,,,,,, +120025,Si9,EA090,?,EA090-NA,,,,,, +120026,Sj1,EA090,Autonomous communities,EA090-2,,,,1950,Gray (1999); Murdock (1957), +120027,Sj10,EA090,?,EA090-NA,,,,,, +120028,Sj11,EA090,?,EA090-NA,,,,,, +120029,Sj2,EA090,Minimal states,EA090-4,,,,1850,Gray (1999); Murdock (1957), +120030,Sj3,EA090,"Absence, even locally",EA090-1,,,Duque de Caxias Reservation,1910,Gray (1999); Murdock (1957), +120031,Sj4,EA090,"Absence, even locally",EA090-1,,,Ramcocamecra or Canella,1930,Gray (1999); Murdock (1957), +120032,Sj5,EA090,Autonomous communities,EA090-2,,,Naknenuk subtribe,1880,Gray (1999); Murdock (1957), +120033,Sj6,EA090,Autonomous communities,EA090-2,,,with special reference to the Guajajara subgroup,1930,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120034,Sj7,EA090,Autonomous communities,EA090-2,,,,1920,Gray (1999); Murdock (1957), +120035,Sj8,EA090,Autonomous communities,EA090-2,,,Hinterland of Rio de Janeiro,1600,Gray (1999); Murdock (1957), +120036,Sj9,EA090,?,EA090-NA,,,,,, +120037,ch12,EA090,?,EA090-NA,,,,,, +120038,ch13,EA090,?,EA090-NA,,,,,, +120039,ch14,EA090,?,EA090-NA,,,,,, +120040,ch15,EA090,?,EA090-NA,,,,,, +120041,ch16,EA090,?,EA090-NA,,,,,, +120042,ch17,EA090,?,EA090-NA,,,,,, +120043,ch18,EA090,?,EA090-NA,,,,,, +120044,ch19,EA090,?,EA090-NA,,,,,, +120045,ch20,EA090,?,EA090-NA,,,,,, +120046,ch21,EA090,?,EA090-NA,,,,,, +120047,ch22,EA090,?,EA090-NA,,,,,, +120048,ch23,EA090,?,EA090-NA,,,,,, +120049,ch24,EA090,?,EA090-NA,,,,,, +120050,ch25,EA090,?,EA090-NA,,,,,, +120051,ch26,EA090,?,EA090-NA,,,,,, +120052,ch27,EA090,?,EA090-NA,,,,,, +120053,ch28,EA090,?,EA090-NA,,,,,, +120054,ec12,EA090,?,EA090-NA,,,,,, +120055,ec13,EA090,?,EA090-NA,,,,,, +120056,ec14,EA090,?,EA090-NA,,,,,, +120057,ec15,EA090,?,EA090-NA,,,,,, +120058,ec16,EA090,?,EA090-NA,,,,,, +120059,ec17,EA090,?,EA090-NA,,,,,, +120060,ec18,EA090,?,EA090-NA,,,,,, +120061,ec19,EA090,?,EA090-NA,,,,,, +120062,ec20,EA090,?,EA090-NA,,,,,, +120063,ec21,EA090,?,EA090-NA,,,,,, +120064,Aa1,EA094,"Patrilineal, son",EA094-11,,,Nyai Nyae region,1950,Gray (1999); Murdock (1957), +120065,Aa2,EA094,"Nonhered, council",EA094-69,,,with special reference to Central Dorobo,1920,Gray (1999); Murdock (1957), +120066,Aa3,EA094,"Patrilineal, son",EA094-11,,,Gei/Khauan tribe,1840,Gray (1999); Murdock (1957), +120067,Aa4,EA094,?,EA094-NA,,,,,, +120068,Aa5,EA094,"Patrilineal, son",EA094-11,,,"Epulu net-hunters, Ituri forest",1930,Gray (1999); Murdock (1957), +120069,Aa6,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1920,Gray (1999); Murdock (1957), +120070,Aa7,EA094,?,EA094-NA,,,,,, +120071,Aa8,EA094,?,EA094-NA,,,,,, +120072,Aa9,EA094,?,EA094-NA,,,,,, +120073,Ab1,EA094,"Patrilineal, younger brother",EA094-12,,,,1900,Gray (1999); Murdock (1957), +120074,Ab10,EA094,?,EA094-NA,,,,,, +120075,Ab11,EA094,?,EA094-NA,,,,,, +120076,Ab12,EA094,?,EA094-NA,,,,,, +120077,Ab13,EA094,?,EA094-NA,,,,,, +120078,Ab14,EA094,?,EA094-NA,,,,,, +120079,Ab15,EA094,?,EA094-NA,,,,,, +120080,Ab16,EA094,?,EA094-NA,,,,,, +120081,Ab17,EA094,?,EA094-NA,,,,,, +120082,Ab18,EA094,?,EA094-NA,,,,,, +120083,Ab19,EA094,?,EA094-NA,,,,,, +120084,Ab2,EA094,?,EA094-NA,,,,,, +120085,Ab20,EA094,?,EA094-NA,,,,,, +120086,Ab21a,EA094,?,EA094-NA,,,,,, +120087,Ab21b,EA094,?,EA094-NA,,,,,, +120088,Ab22,EA094,?,EA094-NA,,,,,, +120089,Ab3,EA094,"Patrilineal, other/unspecified",EA094-13,,,Ruling Luyana,1890,Gray (1999); Murdock (1957), +120090,Ab4,EA094,"Patrilineal, younger brother",EA094-12,,,,1920,Gray (1999); Murdock (1957), +120091,Ab5,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1930,Gray (1999); Murdock (1957), +120092,Ab6,EA094,?,EA094-NA,,,,,, +120093,Ab7,EA094,"Matrilineal, sister's son",EA094-24,,,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,Gray (1999); Murdock (1957), +120094,Ab8,EA094,"Patrilineal, son",EA094-11,,,Basuto,1860,Gray (1999); Murdock (1957), +120095,Ab9,EA094,?,EA094-NA,,,,,, +120096,Ac1,EA094,"Matrilineal, other/unspecified",EA094-26,,,,1920,Gray (1999); Murdock (1957), +120097,Ac10,EA094,?,EA094-NA,,,,,, +120098,Ac11,EA094,?,EA094-NA,,,,,, +120099,Ac12,EA094,?,EA094-NA,,,,,, +120100,Ac13,EA094,?,EA094-NA,,,,,, +120101,Ac14,EA094,?,EA094-NA,,,,,, +120102,Ac15,EA094,?,EA094-NA,,,,,, +120103,Ac16,EA094,?,EA094-NA,,,,,, +120104,Ac17,EA094,?,EA094-NA,,,,,, +120105,Ac18,EA094,?,EA094-NA,,,,,, +120106,Ac19,EA094,?,EA094-NA,,,,,, +120107,Ac2,EA094,?,EA094-NA,,,,,, +120108,Ac20,EA094,?,EA094-NA,,,,,, +120109,Ac21,EA094,?,EA094-NA,,,,,, +120110,Ac22,EA094,?,EA094-NA,,,,,, +120111,Ac23,EA094,?,EA094-NA,,,,,, +120112,Ac24,EA094,?,EA094-NA,,,,,, +120113,Ac25,EA094,?,EA094-NA,,,,,, +120114,Ac26,EA094,?,EA094-NA,,,,,, +120115,Ac27,EA094,?,EA094-NA,,,,,, +120116,Ac28,EA094,?,EA094-NA,,,,,, +120117,Ac29,EA094,?,EA094-NA,,,,,, +120118,Ac3,EA094,"Matrilineal, yonger brother",EA094-25,,,Zambia branch,1900,Gray (1999); Murdock (1957), +120119,Ac30,EA094,?,EA094-NA,,,,,, +120120,Ac31,EA094,?,EA094-NA,,,,,, +120121,Ac32,EA094,?,EA094-NA,,,,,, +120122,Ac33,EA094,?,EA094-NA,,,,,, +120123,Ac34,EA094,?,EA094-NA,,,,,, +120124,Ac35,EA094,?,EA094-NA,,,,,, +120125,Ac36,EA094,?,EA094-NA,,,,,, +120126,Ac37,EA094,?,EA094-NA,,,,,, +120127,Ac38,EA094,?,EA094-NA,,,,,, +120128,Ac39,EA094,?,EA094-NA,,,,,, +120129,Ac4,EA094,"Matrilineal, other/unspecified",EA094-26,,,"with special reference to the Bushoong, the central subtribe",1910,Gray (1999); Murdock (1957), +120130,Ac40,EA094,?,EA094-NA,,,,,, +120131,Ac41,EA094,?,EA094-NA,,,,,, +120132,Ac42,EA094,?,EA094-NA,,,,,, +120133,Ac43,EA094,?,EA094-NA,,,,,, +120134,Ac5,EA094,"Matrilineal, other/unspecified",EA094-26,,,,1920,Gray (1999); Murdock (1957), +120135,Ac6,EA094,?,EA094-NA,,,,,, +120136,Ac7,EA094,"Matrilineal, sister's son",EA094-24,,,,1920,Gray (1999); Murdock (1957), +120137,Ac8,EA094,?,EA094-NA,,,,,, +120138,Ac9,EA094,"Patrilineal, son",EA094-11,,,with special reference to the Mpezeni group of Fort Jameson,1940,Gray (1999); Murdock (1957), +120139,Ad1,EA094,?,EA094-NA,,,,,, +120140,Ad10,EA094,?,EA094-NA,,,,,, +120141,Ad11,EA094,?,EA094-NA,,,,,, +120142,Ad12,EA094,?,EA094-NA,,,,,, +120143,Ad13,EA094,?,EA094-NA,,,,,, +120144,Ad14,EA094,?,EA094-NA,,,,,, +120145,Ad15,EA094,?,EA094-NA,,,,,, +120146,Ad16,EA094,?,EA094-NA,,,,,, +120147,Ad17,EA094,?,EA094-NA,,,,,, +120148,Ad18,EA094,?,EA094-NA,,,,,, +120149,Ad19,EA094,?,EA094-NA,,,,,, +120150,Ad2,EA094,?,EA094-NA,,,,,, +120151,Ad20,EA094,?,EA094-NA,,,,,, +120152,Ad21,EA094,?,EA094-NA,,,,,, +120153,Ad22,EA094,?,EA094-NA,,,,,, +120154,Ad23,EA094,?,EA094-NA,,,,,, +120155,Ad24,EA094,?,EA094-NA,,,,,, +120156,Ad25,EA094,?,EA094-NA,,,,,, +120157,Ad26,EA094,?,EA094-NA,,,,,, +120158,Ad27,EA094,?,EA094-NA,,,,,, +120159,Ad28,EA094,?,EA094-NA,,,,,, +120160,Ad29,EA094,?,EA094-NA,,,,,, +120161,Ad3,EA094,"Nonhered, appointed by auth.",EA094-39,,,,1910,Gray (1999); Murdock (1957), +120162,Ad30,EA094,?,EA094-NA,,,,,, +120163,Ad31,EA094,?,EA094-NA,,,,,, +120164,Ad32,EA094,?,EA094-NA,,,,,, +120165,Ad33,EA094,?,EA094-NA,,,,,, +120166,Ad34,EA094,?,EA094-NA,,,,,, +120167,Ad35,EA094,?,EA094-NA,,,,,, +120168,Ad36,EA094,?,EA094-NA,,,,,, +120169,Ad37,EA094,?,EA094-NA,,,,,, +120170,Ad38,EA094,?,EA094-NA,,,,,, +120171,Ad39,EA094,?,EA094-NA,,,,,, +120172,Ad4,EA094,"Nonhered, council",EA094-69,,,Fort Hall or Metume district,1930,Gray (1999); Murdock (1957), +120173,Ad40,EA094,?,EA094-NA,,,,,, +120174,Ad41,EA094,?,EA094-NA,,,,,, +120175,Ad42,EA094,?,EA094-NA,,,,,, +120176,Ad43,EA094,?,EA094-NA,,,,,, +120177,Ad44,EA094,?,EA094-NA,,,,,, +120178,Ad45,EA094,?,EA094-NA,,,,,, +120179,Ad46,EA094,?,EA094-NA,,,,,, +120180,Ad47,EA094,?,EA094-NA,,,,,, +120181,Ad48,EA094,?,EA094-NA,,,,,, +120182,Ad49,EA094,?,EA094-NA,,,,,, +120183,Ad5,EA094,"Nonhered, council",EA094-69,,,,1940,Gray (1999); Murdock (1957), +120184,Ad50,EA094,?,EA094-NA,,,,,, +120185,Ad51,EA094,?,EA094-NA,,,,,, +120186,Ad6,EA094,"Nonhered, appointed by auth.",EA094-39,,,Age villages of Mwaya and Masoko,1930,Gray (1999); Murdock (1957), +120187,Ad7,EA094,"Nonhered, appointed by auth.",EA094-39,,,Kyaddondo district (V: Kampala),1880,Gray (1999); Murdock (1957), +120188,Ad8,EA094,"Patrilineal, other/unspecified",EA094-13,,,with special reference to the northern or Iringa group,1910,Gray (1999); Murdock (1957), +120189,Ad9,EA094,?,EA094-NA,,,,,, +120190,Ae1,EA094,?,EA094-NA,,,,,, +120191,Ae10,EA094,?,EA094-NA,,,,,, +120192,Ae11,EA094,?,EA094-NA,,,,,, +120193,Ae12,EA094,?,EA094-NA,,,,,, +120194,Ae13,EA094,?,EA094-NA,,,,,, +120195,Ae14,EA094,?,EA094-NA,,,,,, +120196,Ae15,EA094,?,EA094-NA,,,,,, +120197,Ae16,EA094,?,EA094-NA,,,,,, +120198,Ae17,EA094,?,EA094-NA,,,,,, +120199,Ae18,EA094,?,EA094-NA,,,,,, +120200,Ae19,EA094,?,EA094-NA,,,,,, +120201,Ae2,EA094,"Patrilineal, son",EA094-11,,,,1950,Gray (1999); Murdock (1957), +120202,Ae20,EA094,?,EA094-NA,,,,,, +120203,Ae21,EA094,?,EA094-NA,,,,,, +120204,Ae22,EA094,?,EA094-NA,,,,,, +120205,Ae23,EA094,?,EA094-NA,,,,,, +120206,Ae24,EA094,?,EA094-NA,,,,,, +120207,Ae25,EA094,?,EA094-NA,,,,,, +120208,Ae26,EA094,?,EA094-NA,,,,,, +120209,Ae27,EA094,?,EA094-NA,,,,,, +120210,Ae28,EA094,?,EA094-NA,,,,,, +120211,Ae29,EA094,?,EA094-NA,,,,,, +120212,Ae3,EA094,"Patrilineal, son",EA094-11,,,,1910,Gray (1999); Murdock (1957), +120213,Ae30,EA094,?,EA094-NA,,,,,, +120214,Ae31,EA094,?,EA094-NA,,,,,, +120215,Ae32,EA094,?,EA094-NA,,,,,, +120216,Ae33,EA094,?,EA094-NA,,,,,, +120217,Ae34,EA094,?,EA094-NA,,,,,, +120218,Ae35,EA094,?,EA094-NA,,,,,, +120219,Ae36,EA094,?,EA094-NA,,,,,, +120220,Ae37,EA094,?,EA094-NA,,,,,, +120221,Ae38,EA094,?,EA094-NA,,,,,, +120222,Ae39,EA094,?,EA094-NA,,,,,, +120223,Ae4,EA094,"Patrilineal, younger brother",EA094-12,,,Ilanga group,1930,Gray (1999); Murdock (1957), +120224,Ae40,EA094,?,EA094-NA,,,,,, +120225,Ae41,EA094,?,EA094-NA,,,,,, +120226,Ae42,EA094,?,EA094-NA,,,,,, +120227,Ae43,EA094,?,EA094-NA,,,,,, +120228,Ae44,EA094,?,EA094-NA,,,,,, +120229,Ae45,EA094,?,EA094-NA,,,,,, +120230,Ae46,EA094,?,EA094-NA,,,,,, +120231,Ae47,EA094,?,EA094-NA,,,,,, +120232,Ae48,EA094,?,EA094-NA,,,,,, +120233,Ae49,EA094,?,EA094-NA,,,,,, +120234,Ae5,EA094,?,EA094-NA,,,,,, +120235,Ae50,EA094,?,EA094-NA,,,,,, +120236,Ae51,EA094,?,EA094-NA,,,,,, +120237,Ae52,EA094,?,EA094-NA,,,,,, +120238,Ae53,EA094,?,EA094-NA,,,,,, +120239,Ae54,EA094,?,EA094-NA,,,,,, +120240,Ae55,EA094,?,EA094-NA,,,,,, +120241,Ae56,EA094,?,EA094-NA,,,,,, +120242,Ae57,EA094,?,EA094-NA,,,,,, +120243,Ae58,EA094,?,EA094-NA,,,,,, +120244,Ae59,EA094,?,EA094-NA,,,,,, +120245,Ae6,EA094,"Nonhered, appointed by auth.",EA094-39,,,with special reference to the Bena Kalundwe,1930,Gray (1999); Murdock (1957), +120246,Ae7,EA094,"Patrilineal, son",EA094-11,,,,1910,Gray (1999); Murdock (1957), +120247,Ae8,EA094,?,EA094-NA,,,,,, +120248,Ae9,EA094,?,EA094-NA,,,,,, +120249,Af1,EA094,"Patrilineal, other/unspecified",EA094-13,,,City and environs of Abomey,1890,Gray (1999); Murdock (1957), +120250,Af10,EA094,?,EA094-NA,,,,,, +120251,Af11,EA094,?,EA094-NA,,,,,, +120252,Af12,EA094,?,EA094-NA,,,,,, +120253,Af13,EA094,?,EA094-NA,,,,,, +120254,Af14,EA094,?,EA094-NA,,,,,, +120255,Af15,EA094,?,EA094-NA,,,,,, +120256,Af16,EA094,?,EA094-NA,,,,,, +120257,Af17,EA094,?,EA094-NA,,,,,, +120258,Af18,EA094,?,EA094-NA,,,,,, +120259,Af19,EA094,?,EA094-NA,,,,,, +120260,Af2,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1950,Gray (1999); Murdock (1957), +120261,Af20,EA094,?,EA094-NA,,,,,, +120262,Af21,EA094,?,EA094-NA,,,,,, +120263,Af22,EA094,?,EA094-NA,,,,,, +120264,Af23,EA094,?,EA094-NA,,,,,, +120265,Af24,EA094,?,EA094-NA,,,,,, +120266,Af25,EA094,?,EA094-NA,,,,,, +120267,Af26,EA094,?,EA094-NA,,,,,, +120268,Af27,EA094,?,EA094-NA,,,,,, +120269,Af28,EA094,?,EA094-NA,,,,,, +120270,Af29,EA094,?,EA094-NA,,,,,, +120271,Af3,EA094,"Nonhered, election",EA094-49,,,Kumasi State,1900,Gray (1999); Murdock (1957), +120272,Af30,EA094,?,EA094-NA,,,,,, +120273,Af31,EA094,?,EA094-NA,,,,,, +120274,Af32,EA094,?,EA094-NA,,,,,, +120275,Af33,EA094,?,EA094-NA,,,,,, +120276,Af34,EA094,?,EA094-NA,,,,,, +120277,Af35,EA094,?,EA094-NA,,,,,, +120278,Af36,EA094,?,EA094-NA,,,,,, +120279,Af37,EA094,?,EA094-NA,,,,,, +120280,Af38,EA094,?,EA094-NA,,,,,, +120281,Af39,EA094,?,EA094-NA,,,,,, +120282,Af4,EA094,?,EA094-NA,,,,,, +120283,Af40,EA094,?,EA094-NA,,,,,, +120284,Af41,EA094,?,EA094-NA,,,,,, +120285,Af42,EA094,?,EA094-NA,,,,,, +120286,Af43,EA094,?,EA094-NA,,,,,, +120287,Af44,EA094,?,EA094-NA,,,,,, +120288,Af45,EA094,?,EA094-NA,,,,,, +120289,Af46,EA094,?,EA094-NA,,,,,, +120290,Af47,EA094,?,EA094-NA,,,,,, +120291,Af48,EA094,?,EA094-NA,,,,,, +120292,Af49,EA094,?,EA094-NA,,,,,, +120293,Af5,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1930,Gray (1999); Murdock (1957), +120294,Af50,EA094,?,EA094-NA,,,,,, +120295,Af51,EA094,?,EA094-NA,,,,,, +120296,Af52,EA094,?,EA094-NA,,,,,, +120297,Af53,EA094,?,EA094-NA,,,,,, +120298,Af54,EA094,?,EA094-NA,,,,,, +120299,Af55,EA094,?,EA094-NA,,,,,, +120300,Af56,EA094,?,EA094-NA,,,,,, +120301,Af57,EA094,?,EA094-NA,,,,,, +120302,Af58,EA094,?,EA094-NA,,,,,, +120303,Af6,EA094,"Patrilineal, other/unspecified",EA094-13,,,"Yoruba, with special reference to the Oyo",1950,Gray (1999); Murdock (1957), +120304,Af7,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1950,Gray (1999); Murdock (1957), +120305,Af8,EA094,?,EA094-NA,,,,,, +120306,Af9,EA094,?,EA094-NA,,,,,, +120307,Ag1,EA094,?,EA094-NA,,,,,, +120308,Ag10,EA094,?,EA094-NA,,,,,, +120309,Ag11,EA094,?,EA094-NA,,,,,, +120310,Ag12,EA094,?,EA094-NA,,,,,, +120311,Ag13,EA094,?,EA094-NA,,,,,, +120312,Ag14,EA094,?,EA094-NA,,,,,, +120313,Ag15,EA094,?,EA094-NA,,,,,, +120314,Ag16,EA094,?,EA094-NA,,,,,, +120315,Ag17,EA094,?,EA094-NA,,,,,, +120316,Ag18,EA094,?,EA094-NA,,,,,, +120317,Ag19,EA094,?,EA094-NA,,,,,, +120318,Ag2,EA094,"Patrilineal, son",EA094-11,,,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,Gray (1999); Murdock (1957), +120319,Ag20,EA094,?,EA094-NA,,,,,, +120320,Ag21,EA094,?,EA094-NA,,,,,, +120321,Ag22,EA094,?,EA094-NA,,,,,, +120322,Ag23,EA094,?,EA094-NA,,,,,, +120323,Ag24,EA094,?,EA094-NA,,,,,, +120324,Ag25,EA094,?,EA094-NA,,,,,, +120325,Ag26,EA094,?,EA094-NA,,,,,, +120326,Ag27,EA094,?,EA094-NA,,,,,, +120327,Ag28,EA094,?,EA094-NA,,,,,, +120328,Ag29,EA094,?,EA094-NA,,,,,, +120329,Ag3,EA094,"Patrilineal, younger brother",EA094-12,,,,1930,Gray (1999); Murdock (1957), +120330,Ag30,EA094,?,EA094-NA,,,,,, +120331,Ag31,EA094,?,EA094-NA,,,,,, +120332,Ag32,EA094,?,EA094-NA,,,,,, +120333,Ag33,EA094,?,EA094-NA,,,,,, +120334,Ag34,EA094,?,EA094-NA,,,,,, +120335,Ag35,EA094,?,EA094-NA,,,,,, +120336,Ag36,EA094,?,EA094-NA,,,,,, +120337,Ag37,EA094,?,EA094-NA,,,,,, +120338,Ag38,EA094,?,EA094-NA,,,,,, +120339,Ag39,EA094,?,EA094-NA,,,,,, +120340,Ag4,EA094,"Patrilineal, other/unspecified",EA094-13,,,Tallensi Tribe,1930,Gray (1999); Murdock (1957), +120341,Ag40,EA094,?,EA094-NA,,,,,, +120342,Ag41,EA094,?,EA094-NA,,,,,, +120343,Ag42,EA094,?,EA094-NA,,,,,, +120344,Ag43,EA094,?,EA094-NA,,,,,, +120345,Ag44,EA094,?,EA094-NA,,,,,, +120346,Ag45,EA094,?,EA094-NA,,,,,, +120347,Ag46,EA094,?,EA094-NA,,,,,, +120348,Ag47,EA094,?,EA094-NA,,,,,, +120349,Ag48,EA094,?,EA094-NA,,,,,, +120350,Ag49,EA094,?,EA094-NA,,,,,, +120351,Ag5,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1930,Gray (1999); Murdock (1957), +120352,Ag50,EA094,?,EA094-NA,,,,,, +120353,Ag51,EA094,?,EA094-NA,,,,,, +120354,Ag52,EA094,?,EA094-NA,,,,,, +120355,Ag53,EA094,?,EA094-NA,,,,,, +120356,Ag54,EA094,?,EA094-NA,,,,,, +120357,Ag6,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1890,Gray (1999); Murdock (1957), +120358,Ag7,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1930,Gray (1999); Murdock (1957), +120359,Ag8,EA094,"Matrilineal, yonger brother",EA094-25,,,with special reference to the Coniagui,1910,Gray (1999); Murdock (1957), +120360,Ag9,EA094,?,EA094-NA,,,,,, +120361,Ah1,EA094,?,EA094-NA,,,,,, +120362,Ah10,EA094,?,EA094-NA,,,,,, +120363,Ah11,EA094,?,EA094-NA,,,,,, +120364,Ah12,EA094,?,EA094-NA,,,,,, +120365,Ah13,EA094,?,EA094-NA,,,,,, +120366,Ah14,EA094,?,EA094-NA,,,,,, +120367,Ah15,EA094,?,EA094-NA,,,,,, +120368,Ah16,EA094,?,EA094-NA,,,,,, +120369,Ah17,EA094,?,EA094-NA,,,,,, +120370,Ah18,EA094,?,EA094-NA,,,,,, +120371,Ah19,EA094,?,EA094-NA,,,,,, +120372,Ah2,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1920,Gray (1999); Murdock (1957), +120373,Ah20,EA094,?,EA094-NA,,,,,, +120374,Ah21,EA094,?,EA094-NA,,,,,, +120375,Ah22,EA094,?,EA094-NA,,,,,, +120376,Ah23,EA094,?,EA094-NA,,,,,, +120377,Ah24,EA094,?,EA094-NA,,,,,, +120378,Ah25,EA094,?,EA094-NA,,,,,, +120379,Ah26,EA094,?,EA094-NA,,,,,, +120380,Ah27,EA094,?,EA094-NA,,,,,, +120381,Ah28,EA094,?,EA094-NA,,,,,, +120382,Ah29,EA094,?,EA094-NA,,,,,, +120383,Ah3,EA094,"Patrilineal, other/unspecified",EA094-13,,,Tar of Benue Province,1920,Gray (1999); Murdock (1957), +120384,Ah30,EA094,?,EA094-NA,,,,,, +120385,Ah31,EA094,?,EA094-NA,,,,,, +120386,Ah32,EA094,?,EA094-NA,,,,,, +120387,Ah33,EA094,?,EA094-NA,,,,,, +120388,Ah34,EA094,?,EA094-NA,,,,,, +120389,Ah35,EA094,?,EA094-NA,,,,,, +120390,Ah36,EA094,?,EA094-NA,,,,,, +120391,Ah37,EA094,?,EA094-NA,,,,,, +120392,Ah38,EA094,?,EA094-NA,,,,,, +120393,Ah39,EA094,?,EA094-NA,,,,,, +120394,Ah4,EA094,?,EA094-NA,,,,,, +120395,Ah5,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1930,Gray (1999); Murdock (1957), +120396,Ah6,EA094,Absence of political auth.,EA094-99,,,,1920,Gray (1999); Murdock (1957), +120397,Ah7,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1940,Gray (1999); Murdock (1957), +120398,Ah8,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1910,Gray (1999); Murdock (1957), +120399,Ah9,EA094,?,EA094-NA,,,,,, +120400,Ai1,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1920,Gray (1999); Murdock (1957), +120401,Ai10,EA094,?,EA094-NA,,,,,, +120402,Ai11,EA094,?,EA094-NA,,,,,, +120403,Ai12,EA094,?,EA094-NA,,,,,, +120404,Ai13,EA094,?,EA094-NA,,,,,, +120405,Ai14,EA094,?,EA094-NA,,,,,, +120406,Ai15,EA094,?,EA094-NA,,,,,, +120407,Ai16,EA094,?,EA094-NA,,,,,, +120408,Ai17,EA094,?,EA094-NA,,,,,, +120409,Ai18,EA094,?,EA094-NA,,,,,, +120410,Ai19,EA094,?,EA094-NA,,,,,, +120411,Ai2,EA094,?,EA094-NA,,,,,, +120412,Ai20,EA094,?,EA094-NA,,,,,, +120413,Ai21,EA094,?,EA094-NA,,,,,, +120414,Ai22,EA094,?,EA094-NA,,,,,, +120415,Ai23,EA094,?,EA094-NA,,,,,, +120416,Ai24,EA094,?,EA094-NA,,,,,, +120417,Ai25,EA094,?,EA094-NA,,,,,, +120418,Ai26,EA094,?,EA094-NA,,,,,, +120419,Ai27,EA094,?,EA094-NA,,,,,, +120420,Ai28,EA094,?,EA094-NA,,,,,, +120421,Ai29,EA094,?,EA094-NA,,,,,, +120422,Ai3,EA094,"Patrilineal, son",EA094-11,,,,1920,Gray (1999); Murdock (1957), +120423,Ai30,EA094,?,EA094-NA,,,,,, +120424,Ai31,EA094,?,EA094-NA,,,,,, +120425,Ai32,EA094,?,EA094-NA,,,,,, +120426,Ai33,EA094,?,EA094-NA,,,,,, +120427,Ai34,EA094,?,EA094-NA,,,,,, +120428,Ai35,EA094,?,EA094-NA,,,,,, +120429,Ai36,EA094,?,EA094-NA,,,,,, +120430,Ai37,EA094,?,EA094-NA,,,,,, +120431,Ai38,EA094,?,EA094-NA,,,,,, +120432,Ai39,EA094,?,EA094-NA,,,,,, +120433,Ai4,EA094,"Patrilineal, son",EA094-11,,,,1920,Gray (1999); Murdock (1957), +120434,Ai40,EA094,?,EA094-NA,,,,,, +120435,Ai41,EA094,?,EA094-NA,,,,,, +120436,Ai42,EA094,?,EA094-NA,,,,,, +120437,Ai43,EA094,?,EA094-NA,,,,,, +120438,Ai44,EA094,?,EA094-NA,,,,,, +120439,Ai45,EA094,?,EA094-NA,,,,,, +120440,Ai46,EA094,?,EA094-NA,,,,,, +120441,Ai47,EA094,?,EA094-NA,,,,,, +120442,Ai5,EA094,?,EA094-NA,,,,,, +120443,Ai6,EA094,"Patrilineal, other/unspecified",EA094-13,,,Shilluk Kingdom,1900,Gray (1999); Murdock (1957), +120444,Ai7,EA094,"Patrilineal, son",EA094-11,,,,1910,Gray (1999); Murdock (1957), +120445,Ai8,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1930,Gray (1999); Murdock (1957), +120446,Ai9,EA094,?,EA094-NA,,,,,, +120447,Aj1,EA094,?,EA094-NA,,,,,, +120448,Aj10,EA094,?,EA094-NA,,,,,, +120449,Aj11,EA094,?,EA094-NA,,,,,, +120450,Aj12,EA094,?,EA094-NA,,,,,, +120451,Aj13,EA094,?,EA094-NA,,,,,, +120452,Aj14,EA094,?,EA094-NA,,,,,, +120453,Aj15,EA094,?,EA094-NA,,,,,, +120454,Aj16,EA094,?,EA094-NA,,,,,, +120455,Aj17,EA094,?,EA094-NA,,,,,, +120456,Aj18,EA094,?,EA094-NA,,,,,, +120457,Aj19,EA094,?,EA094-NA,,,,,, +120458,Aj2,EA094,"Nonhered, council",EA094-69,,,Kisonko or Southern Masai of Tanzania,1900,Gray (1999); Murdock (1957), +120459,Aj20,EA094,?,EA094-NA,,,,,, +120460,Aj21,EA094,?,EA094-NA,,,,,, +120461,Aj22,EA094,?,EA094-NA,,,,,, +120462,Aj23,EA094,?,EA094-NA,,,,,, +120463,Aj24,EA094,?,EA094-NA,,,,,, +120464,Aj25,EA094,?,EA094-NA,,,,,, +120465,Aj26,EA094,?,EA094-NA,,,,,, +120466,Aj27,EA094,?,EA094-NA,,,,,, +120467,Aj28,EA094,?,EA094-NA,,,,,, +120468,Aj29,EA094,?,EA094-NA,,,,,, +120469,Aj3,EA094,Absence of political auth.,EA094-99,,,,1930,Gray (1999); Murdock (1957), +120470,Aj30,EA094,?,EA094-NA,,,,,, +120471,Aj31,EA094,?,EA094-NA,,,,,, +120472,Aj4,EA094,"Patrilineal, son",EA094-11,,,,1920,Gray (1999); Murdock (1957), +120473,Aj5,EA094,Absence of political auth.,EA094-99,,,,1920,Gray (1999); Murdock (1957), +120474,Aj6,EA094,"Patrilineal, son",EA094-11,,,,1940,Gray (1999); Murdock (1957), +120475,Aj7,EA094,"Nonhered, council",EA094-69,,,,1910,Gray (1999); Murdock (1957), +120476,Aj8,EA094,"Patrilineal, son",EA094-11,,,,1920,Gray (1999); Murdock (1957), +120477,Aj9,EA094,?,EA094-NA,,,,,, +120478,Ca1,EA094,"Patrilineal, other/unspecified",EA094-13,,,Town of Buso,1930,Gray (1999); Murdock (1957), +120479,Ca10,EA094,?,EA094-NA,,,,,, +120480,Ca11,EA094,?,EA094-NA,,,,,, +120481,Ca12,EA094,?,EA094-NA,,,,,, +120482,Ca13,EA094,?,EA094-NA,,,,,, +120483,Ca14,EA094,?,EA094-NA,,,,,, +120484,Ca15,EA094,?,EA094-NA,,,,,, +120485,Ca16,EA094,?,EA094-NA,,,,,, +120486,Ca17,EA094,?,EA094-NA,,,,,, +120487,Ca18,EA094,?,EA094-NA,,,,,, +120488,Ca19,EA094,?,EA094-NA,,,,,, +120489,Ca2,EA094,"Nonhered, election",EA094-49,,,Dolbahanta clan or subtribe,1950,Gray (1999); Murdock (1957), +120490,Ca20,EA094,?,EA094-NA,,,,,, +120491,Ca21,EA094,?,EA094-NA,,,,,, +120492,Ca22,EA094,?,EA094-NA,,,,,, +120493,Ca23,EA094,?,EA094-NA,,,,,, +120494,Ca24,EA094,?,EA094-NA,,,,,, +120495,Ca25,EA094,?,EA094-NA,,,,,, +120496,Ca26,EA094,?,EA094-NA,,,,,, +120497,Ca27,EA094,?,EA094-NA,,,,,, +120498,Ca28,EA094,?,EA094-NA,,,,,, +120499,Ca29,EA094,?,EA094-NA,,,,,, +120500,Ca3,EA094,?,EA094-NA,,,,,, +120501,Ca30,EA094,?,EA094-NA,,,,,, +120502,Ca31,EA094,?,EA094-NA,,,,,, +120503,Ca32,EA094,?,EA094-NA,,,,,, +120504,Ca33,EA094,?,EA094-NA,,,,,, +120505,Ca34,EA094,?,EA094-NA,,,,,, +120506,Ca35,EA094,?,EA094-NA,,,,,, +120507,Ca36,EA094,?,EA094-NA,,,,,, +120508,Ca37,EA094,?,EA094-NA,,,,,, +120509,Ca38,EA094,?,EA094-NA,,,,,, +120510,Ca39,EA094,?,EA094-NA,,,,,, +120511,Ca4,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1950,Gray (1999); Murdock (1957), +120512,Ca40,EA094,?,EA094-NA,,,,,, +120513,Ca41,EA094,?,EA094-NA,,,,,, +120514,Ca42,EA094,?,EA094-NA,,,,,, +120515,Ca43,EA094,?,EA094-NA,,,,,, +120516,Ca5,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1930,Gray (1999); Murdock (1957), +120517,Ca6,EA094,?,EA094-NA,,,,,, +120518,Ca7,EA094,?,EA094-NA,,,,,, +120519,Ca8,EA094,?,EA094-NA,,,,,, +120520,Ca9,EA094,?,EA094-NA,,,,,, +120521,Cb1,EA094,"Nonhered, appointed by auth.",EA094-39,,,,1940,Gray (1999); Murdock (1957), +120522,Cb10,EA094,?,EA094-NA,,,,,, +120523,Cb11,EA094,?,EA094-NA,,,,,, +120524,Cb12,EA094,?,EA094-NA,,,,,, +120525,Cb13,EA094,?,EA094-NA,,,,,, +120526,Cb14,EA094,?,EA094-NA,,,,,, +120527,Cb15,EA094,?,EA094-NA,,,,,, +120528,Cb16,EA094,?,EA094-NA,,,,,, +120529,Cb17,EA094,?,EA094-NA,,,,,, +120530,Cb18,EA094,?,EA094-NA,,,,,, +120531,Cb19,EA094,?,EA094-NA,,,,,, +120532,Cb2,EA094,?,EA094-NA,,,,,, +120533,Cb20,EA094,?,EA094-NA,,,,,, +120534,Cb21,EA094,?,EA094-NA,,,,,, +120535,Cb22,EA094,?,EA094-NA,,,,,, +120536,Cb23,EA094,?,EA094-NA,,,,,, +120537,Cb24,EA094,?,EA094-NA,,,,,, +120538,Cb25,EA094,?,EA094-NA,,,,,, +120539,Cb26,EA094,?,EA094-NA,,,,,, +120540,Cb27,EA094,?,EA094-NA,,,,,, +120541,Cb28,EA094,?,EA094-NA,,,,,, +120542,Cb29,EA094,?,EA094-NA,,,,,, +120543,Cb3,EA094,"Patrilineal, other/unspecified",EA094-13,,,Bamba division,1940,Gray (1999); Murdock (1957), +120544,Cb4,EA094,?,EA094-NA,,,,,, +120545,Cb5,EA094,?,EA094-NA,,,,,, +120546,Cb6,EA094,?,EA094-NA,,,,,, +120547,Cb7,EA094,?,EA094-NA,,,,,, +120548,Cb8,EA094,?,EA094-NA,,,,,, +120549,Cb9,EA094,?,EA094-NA,,,,,, +120550,Cc1,EA094,?,EA094-NA,,,,,, +120551,Cc10,EA094,?,EA094-NA,,,,,, +120552,Cc11,EA094,?,EA094-NA,,,,,, +120553,Cc12,EA094,?,EA094-NA,,,,,, +120554,Cc13,EA094,?,EA094-NA,,,,,, +120555,Cc14,EA094,?,EA094-NA,,,,,, +120556,Cc15,EA094,?,EA094-NA,,,,,, +120557,Cc16,EA094,?,EA094-NA,,,,,, +120558,Cc17,EA094,?,EA094-NA,,,,,, +120559,Cc18,EA094,?,EA094-NA,,,,,, +120560,Cc19,EA094,?,EA094-NA,,,,,, +120561,Cc2,EA094,"Patrilineal, other/unspecified",EA094-13,,,Nomads of Tibesti,1950,Gray (1999); Murdock (1957), +120562,Cc20,EA094,?,EA094-NA,,,,,, +120563,Cc3,EA094,"Nonhered, council",EA094-69,,,inhabitants of the oasis of Siwa,1920,Gray (1999); Murdock (1957), +120564,Cc4,EA094,"Nonhered, council",EA094-69,,,,1920,Gray (1999); Murdock (1957), +120565,Cc5,EA094,?,EA094-NA,,,,,, +120566,Cc6,EA094,?,EA094-NA,,,,,, +120567,Cc7,EA094,?,EA094-NA,,,,,, +120568,Cc8,EA094,?,EA094-NA,,,,,, +120569,Cc9,EA094,?,EA094-NA,,,,,, +120570,Cd1,EA094,Absence of political auth.,EA094-99,,,Kenuzi Nubians of Dahmit,1920,Gray (1999); Murdock (1957), +120571,Cd10,EA094,?,EA094-NA,,,,,, +120572,Cd11,EA094,?,EA094-NA,,,,,, +120573,Cd12,EA094,?,EA094-NA,,,,,, +120574,Cd13,EA094,?,EA094-NA,,,,,, +120575,Cd14,EA094,?,EA094-NA,,,,,, +120576,Cd15,EA094,?,EA094-NA,,,,,, +120577,Cd16,EA094,?,EA094-NA,,,,,, +120578,Cd17,EA094,?,EA094-NA,,,,,, +120579,Cd18,EA094,?,EA094-NA,,,,,, +120580,Cd19,EA094,?,EA094-NA,,,,,, +120581,Cd2,EA094,"Nonhered, election",EA094-49,,,Town and environs of Silwa,1950,Gray (1999); Murdock (1957), +120582,Cd20,EA094,?,EA094-NA,,,,,, +120583,Cd21,EA094,?,EA094-NA,,,,,, +120584,Cd3,EA094,"Nonhered, council",EA094-69,,,Entirety: Moroccan,1920,Gray (1999); Murdock (1957), +120585,Cd4,EA094,"Nonhered, council",EA094-69,,,,1890,Gray (1999); Murdock (1957), +120586,Cd5,EA094,"Nonhered, council",EA094-69,,,with special reference to those of the Grand Atlas Mountains,1920,Gray (1999); Murdock (1957), +120587,Cd6,EA094,?,EA094-NA,,,,,, +120588,Cd7,EA094,?,EA094-NA,,,,,, +120589,Cd8,EA094,?,EA094-NA,,,,,, +120590,Cd9,EA094,?,EA094-NA,,,,,, +120591,Ce1,EA094,"Patrilineal, son",EA094-11,,,Mountain Gheg of No. Albania,1900,Gray (1999); Murdock (1957), +120592,Ce2,EA094,?,EA094-NA,,,,,, +120593,Ce3,EA094,"Nonhered, election",EA094-49,,,City and environs of Rome,100,Gray (1999); Murdock (1957), +120594,Ce4,EA094,"Nonhered, election",EA094-49,,,Labourd,1930,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120595,Ce5,EA094,?,EA094-NA,,,,,, +120596,Ce6,EA094,?,EA094-NA,,,,,, +120597,Ce7,EA094,?,EA094-NA,,,,,, +120598,Ce8,EA094,?,EA094-NA,,,,,, +120599,Cf1,EA094,"Nonhered, election",EA094-49,,,Small City in Connecticut,1920,Gray (1999); Murdock (1957), +120600,Cf2,EA094,"Nonhered, election",EA094-49,,,of the Transvaal,1850,Gray (1999); Murdock (1957), +120601,Cf3,EA094,?,EA094-NA,,,,,, +120602,Cf4,EA094,?,EA094-NA,,,,,, +120603,Cf5,EA094,?,EA094-NA,,,,,, +120604,Cg1,EA094,"Nonhered, council",EA094-69,,,with special reference to the village of Anderen in Anlo parish of Drente province,1950,Gray (1999); Murdock (1957), +120605,Cg2,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1100,Gray (1999); Murdock (1957), +120606,Cg3,EA094,"Nonhered, election",EA094-49,,,County Clare,1930,Gray (1999); Murdock (1957), +120607,Cg4,EA094,"Patrilineal, son",EA094-11,,,Konkama District,1950,Gray (1999); Murdock (1957), +120608,Cg5,EA094,?,EA094-NA,,,,,, +120609,Ch1,EA094,"Nonhered, council",EA094-69,,,with special reference to the village of Orasac,1950,Gray (1999); Murdock (1957), +120610,Ch10,EA094,?,EA094-NA,,,,,, +120611,Ch11,EA094,?,EA094-NA,,,,,, +120612,Ch2,EA094,Absence of political auth.,EA094-99,,,,1890,Gray (1999); Murdock (1957), +120613,Ch3,EA094,"Nonhered, election",EA094-49,,,with special reference to the Hana district of central Moravia,1940,Gray (1999); Murdock (1957), +120614,Ch4,EA094,?,EA094-NA,,,,,, +120615,Ch5,EA094,?,EA094-NA,,,,,, +120616,Ch6,EA094,?,EA094-NA,,,,,, +120617,Ch7,EA094,?,EA094-NA,,,,,, +120618,Ch8,EA094,?,EA094-NA,,,,,, +120619,Ch9,EA094,?,EA094-NA,,,,,, +120620,Ci1,EA094,"Patrilineal, other/unspecified",EA094-13,,,with special reference to the Baga Dorbed group,1920,Gray (1999); Murdock (1957), +120621,Ci10,EA094,?,EA094-NA,,,,,, +120622,Ci11,EA094,?,EA094-NA,,,,,, +120623,Ci12,EA094,?,EA094-NA,,,,,, +120624,Ci2,EA094,?,EA094-NA,,,,,, +120625,Ci3,EA094,?,EA094-NA,,,,,, +120626,Ci4,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1920,Gray (1999); Murdock (1957), +120627,Ci5,EA094,?,EA094-NA,,,,,, +120628,Ci6,EA094,?,EA094-NA,,,,,, +120629,Ci7,EA094,?,EA094-NA,,,,,, +120630,Ci8,EA094,?,EA094-NA,,,,,, +120631,Ci9,EA094,?,EA094-NA,,,,,, +120632,Cj1,EA094,?,EA094-NA,,,,,, +120633,Cj10,EA094,?,EA094-NA,,,,,, +120634,Cj2,EA094,"Patrilineal, other/unspecified",EA094-13,,,Unspecified,1920,Gray (1999); Murdock (1957), +120635,Cj3,EA094,?,EA094-NA,,,,,, +120636,Cj4,EA094,?,EA094-NA,,,,,, +120637,Cj5,EA094,?,EA094-NA,,,,,, +120638,Cj6,EA094,?,EA094-NA,,,,,, +120639,Cj7,EA094,?,EA094-NA,,,,,, +120640,Cj8,EA094,?,EA094-NA,,,,,, +120641,Cj9,EA094,?,EA094-NA,,,,,, +120642,Ea1,EA094,?,EA094-NA,,,,,, +120643,Ea10,EA094,?,EA094-NA,,,,,, +120644,Ea11,EA094,?,EA094-NA,,,,,, +120645,Ea12,EA094,?,EA094-NA,,,,,, +120646,Ea13,EA094,?,EA094-NA,,,,,, +120647,Ea2,EA094,?,EA094-NA,,,,,, +120648,Ea3,EA094,"Patrilineal, son",EA094-11,,,with special reference to the Urazgani,1930,Gray (1999); Murdock (1957), +120649,Ea4,EA094,?,EA094-NA,,,,,, +120650,Ea5,EA094,"Patrilineal, son",EA094-11,,,,1890,Gray (1999); Murdock (1957), +120651,Ea6,EA094,?,EA094-NA,,,,,, +120652,Ea7,EA094,?,EA094-NA,,,,,, +120653,Ea8,EA094,?,EA094-NA,,,,,, +120654,Ea9,EA094,?,EA094-NA,,,,,, +120655,Eb1,EA094,"Patrilineal, other/unspecified",EA094-13,,,Great Horde,1910,Gray (1999); Murdock (1957), +120656,Eb2,EA094,"Patrilineal, son",EA094-11,,,,1920,Gray (1999); Murdock (1957), +120657,Eb3,EA094,"Patrilineal, son",EA094-11,,,Narobanchin Territory,1940,Gray (1999); Murdock (1957), +120658,Eb4,EA094,Absence of political auth.,EA094-99,,,with special reference to the Botaha area,1940,Gray (1999); Murdock (1957), +120659,Eb5,EA094,"Patrilineal, son",EA094-11,,,with special reference to the sedentary Teke of the Merv oasis,1910,Gray (1999); Murdock (1957), +120660,Eb6,EA094,"Patrilineal, other/unspecified",EA094-13,,,with special reference to those southeast of Lake Baikal,1900,Gray (1999); Murdock (1957), +120661,Eb7,EA094,?,EA094-NA,,,,,, +120662,Eb8,EA094,?,EA094-NA,,,,,, +120663,Ec1,EA094,Absence of political auth.,EA094-99,,,Sakhalin Island,1920,Gray (1999); Murdock (1957), +120664,Ec10,EA094,?,EA094-NA,,,,,, +120665,Ec11,EA094,?,EA094-NA,,,,,, +120666,Ec2,EA094,"Patrilineal, other/unspecified",EA094-13,,,with special reference to the Yakutsk district,1900,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120667,Ec3,EA094,"Nonhered, informal",EA094-59,,,Reindeer Division,1900,Gray (1999); Murdock (1957), +120668,Ec4,EA094,?,EA094-NA,,,,,, +120669,Ec5,EA094,"Nonhered, informal",EA094-59,,,with special reference to the Maritime Koryak,1900,Gray (1999); Murdock (1957), +120670,Ec6,EA094,"Nonhered, informal",EA094-59,,,Upper Kolyma River,1850,Gray (1999); Murdock (1957), +120671,Ec7,EA094,"Patrilineal, other/unspecified",EA094-13,,,Saru Basin in Hokkaido,1900,Gray (1999); Murdock (1957), +120672,Ec8,EA094,Absence of political auth.,EA094-99,,,,1900,Gray (1999); Murdock (1957), +120673,Ec9,EA094,?,EA094-NA,,,,,, +120674,Ed1,EA094,"Nonhered, informal",EA094-59,,,Kanghwa Island,1950,Gray (1999); Murdock (1957), +120675,Ed10,EA094,?,EA094-NA,,,,,, +120676,Ed13,EA094,?,EA094-NA,,,,,, +120677,Ed14,EA094,?,EA094-NA,,,,,, +120678,Ed15a,EA094,?,EA094-NA,,,,,, +120679,Ed15b,EA094,?,EA094-NA,,,,,, +120680,Ed16,EA094,?,EA094-NA,,,,,, +120681,Ed2,EA094,"Patrilineal, son",EA094-11,,,Liang Shan and Taliang S,1940,Gray (1999); Murdock (1957), +120682,Ed3,EA094,"Nonhered, election",EA094-49,,,Aigun District,1920,Gray (1999); Murdock (1957), +120683,Ed4,EA094,?,EA094-NA,,,,,, +120684,Ed5,EA094,"Nonhered, election",EA094-49,,,Okayama,1950,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120685,Ed6,EA094,?,EA094-NA,,,,,, +120686,Ed7,EA094,Absence of political auth.,EA094-99,,,,1950,Gray (1999); Murdock (1957), +120687,Ed8,EA094,"Nonhered, election",EA094-49,,,,1930,Gray (1999); Murdock (1957), +120688,Ed9,EA094,?,EA094-NA,,,,,, +120689,Ee1,EA094,"Nonhered, election",EA094-49,,,,1940,Gray (1999); Murdock (1957), +120690,Ee2,EA094,?,EA094-NA,,,,,, +120691,Ee3,EA094,"Patrilineal, son",EA094-11,,,Lingthem and vicinity,1930,Gray (1999); Murdock (1957), +120692,Ee4,EA094,"Nonhered, appointed by auth.",EA094-39,,,with special reference to Central Tibet,1920,Gray (1999); Murdock (1957), +120693,Ee5,EA094,?,EA094-NA,,,,,, +120694,Ee6,EA094,?,EA094-NA,,,,,, +120695,Ee7,EA094,?,EA094-NA,,,,,, +120696,Ee8,EA094,?,EA094-NA,,,,,, +120697,Ef1,EA094,"Patrilineal, son",EA094-11,,,Bankura and Berghum Districts,1940,Gray (1999); Murdock (1957), +120698,Ef10,EA094,?,EA094-NA,,,,,, +120699,Ef11,EA094,?,EA094-NA,,,,,, +120700,Ef2,EA094,?,EA094-NA,,,,,, +120701,Ef3,EA094,"Patrilineal, other/unspecified",EA094-13,,,,-800,Gray (1999); Murdock (1957), +120702,Ef4,EA094,"Nonhered, appointed by auth.",EA094-39,,,,1920,Gray (1999); Murdock (1957), +120703,Ef5,EA094,"Patrilineal, son",EA094-11,,,,1900,Gray (1999); Murdock (1957), +120704,Ef6,EA094,"Nonhered, election",EA094-49,,,,1940,Gray (1999); Murdock (1957), +120705,Ef7,EA094,?,EA094-NA,,,,,, +120706,Ef8,EA094,?,EA094-NA,,,,,, +120707,Ef9,EA094,?,EA094-NA,,,,,, +120708,Eg1,EA094,"Nonhered, informal",EA094-59,,,with special reference to the forest group,1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120709,Eg10,EA094,?,EA094-NA,,,,,, +120710,Eg11,EA094,?,EA094-NA,,,,,, +120711,Eg12,EA094,?,EA094-NA,,,,,, +120712,Eg13,EA094,?,EA094-NA,,,,,, +120713,Eg14,EA094,?,EA094-NA,,,,,, +120714,Eg2,EA094,?,EA094-NA,,,,,, +120715,Eg3,EA094,"Patrilineal, other/unspecified",EA094-13,,,Hill Maria,1938,Gray (1999); Murdock (1957), +120716,Eg4,EA094,"Nonhered, council",EA094-69,,,Toda Tribe,1900,Gray (1999); Murdock (1957), +120717,Eg5,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1930,Gray (1999); Murdock (1957), +120718,Eg6,EA094,"Matrilineal, other/unspecified",EA094-26,,,with special reference to Northern Kerala,1799,Gray (1999); Murdock (1957), +120719,Eg7,EA094,?,EA094-NA,,,,,, +120720,Eg8,EA094,"Nonhered, informal",EA094-59,,,,1940,Gray (1999); Murdock (1957), +120721,Eg9,EA094,?,EA094-NA,,,,,, +120722,Eh1,EA094,Absence of political auth.,EA094-99,,,,1870,Gray (1999); Murdock (1957), +120723,Eh10,EA094,?,EA094-NA,,,,,, +120724,Eh2,EA094,"Nonhered, appointed by auth.",EA094-39,,,,1900,Gray (1999); Murdock (1957), +120725,Eh3,EA094,"Nonhered, election",EA094-49,,,Menabe subtribe,1930,Gray (1999); Murdock (1957), +120726,Eh4,EA094,?,EA094-NA,,,,,, +120727,Eh5,EA094,"Nonhered, informal",EA094-59,,,Car Nicobar of North Islands,1890,Gray (1999); Murdock (1957), +120728,Eh6,EA094,?,EA094-NA,,,,,, +120729,Eh7,EA094,?,EA094-NA,,,,,, +120730,Eh8,EA094,?,EA094-NA,,,,,, +120731,Eh9,EA094,?,EA094-NA,,,,,, +120732,Ei1,EA094,"Matrilineal, other/unspecified",EA094-26,,,Rengsanggr,1900,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120733,Ei10,EA094,?,EA094-NA,,,,,, +120734,Ei11,EA094,?,EA094-NA,,,,,, +120735,Ei12,EA094,?,EA094-NA,,,,,, +120736,Ei13,EA094,?,EA094-NA,,,,,, +120737,Ei14,EA094,?,EA094-NA,,,,,, +120738,Ei15,EA094,?,EA094-NA,,,,,, +120739,Ei16,EA094,?,EA094-NA,,,,,, +120740,Ei17,EA094,?,EA094-NA,,,,,, +120741,Ei18,EA094,?,EA094-NA,,,,,, +120742,Ei19,EA094,?,EA094-NA,,,,,, +120743,Ei2,EA094,?,EA094-NA,,,,,, +120744,Ei20,EA094,?,EA094-NA,,,,,, +120745,Ei3,EA094,"Nonhered, appointed by auth.",EA094-39,,,Nondwin Village,1950,Gray (1999); Murdock (1957), +120746,Ei4,EA094,"Patrilineal, son",EA094-11,,,Lakher Tribe,1930,Gray (1999); Murdock (1957), +120747,Ei5,EA094,"Patrilineal, son",EA094-11,,,with special reference to the Jinghpaw,1940,Gray (1999); Murdock (1957), +120748,Ei6,EA094,?,EA094-NA,,,,,, +120749,Ei7,EA094,?,EA094-NA,,,,,, +120750,Ei8,EA094,"Matrilineal, yonger brother",EA094-25,,,with special reference to those of the Jaintia Hills,1900,Gray (1999); Murdock (1957), +120751,Ei9,EA094,?,EA094-NA,,,,,, +120752,Ej1,EA094,"Patrilineal, son",EA094-11,,,"Lamet Tribe, Northwestern Laos",1940,Gray (1999); Murdock (1957), +120753,Ej10,EA094,?,EA094-NA,,,,,, +120754,Ej11,EA094,?,EA094-NA,,,,,, +120755,Ej12,EA094,?,EA094-NA,,,,,, +120756,Ej13,EA094,?,EA094-NA,,,,,, +120757,Ej14,EA094,?,EA094-NA,,,,,, +120758,Ej15,EA094,?,EA094-NA,,,,,, +120759,Ej16,EA094,?,EA094-NA,,,,,, +120760,Ej2,EA094,?,EA094-NA,,,,,, +120761,Ej3,EA094,Absence of political auth.,EA094-99,,,Jehai Group or subtribe,1920,Gray (1999); Murdock (1957), +120762,Ej4,EA094,"Nonhered, election",EA094-49,,,Red River Delta in Tonkin,1950,Gray (1999); Murdock (1957), +120763,Ej5,EA094,"Nonhered, informal",EA094-59,,,,1950,Gray (1999); Murdock (1957), +120764,Ej6,EA094,Absence of political auth.,EA094-99,,,of the Mergui Archipelago,1920,Gray (1999); Murdock (1957), +120765,Ej7,EA094,"Patrilineal, younger brother",EA094-12,,,,1950,Gray (1999); Murdock (1957), +120766,Ej8,EA094,"Patrilineal, other/unspecified",EA094-13,,,with special reference to those of Trengganu,1940,Gray (1999); Murdock (1957), +120767,Ej9,EA094,"Nonhered, election",EA094-49,,,,1940,Gray (1999); Murdock (1957), +120768,Ia1,EA094,"Patrilineal, other/unspecified",EA094-13,,,Atayal Tribe (but exdluding Sedeq),1930,Gray (1999); Murdock (1957), +120769,Ia10,EA094,?,EA094-NA,,,,,, +120770,Ia11,EA094,?,EA094-NA,,,,,, +120771,Ia12,EA094,?,EA094-NA,,,,,, +120772,Ia13,EA094,?,EA094-NA,,,,,, +120773,Ia14,EA094,?,EA094-NA,,,,,, +120774,Ia15,EA094,?,EA094-NA,,,,,, +120775,Ia16,EA094,?,EA094-NA,,,,,, +120776,Ia17,EA094,?,EA094-NA,,,,,, +120777,Ia18,EA094,?,EA094-NA,,,,,, +120778,Ia2,EA094,?,EA094-NA,,,,,, +120779,Ia3,EA094,Absence of political auth.,EA094-99,,,Kiangan Group,1920,Gray (1999); Murdock (1957), +120780,Ia4,EA094,Absence of political auth.,EA094-99,,,with special reference to the Eastern Subanun,1950,Gray (1999); Murdock (1957), +120781,Ia5,EA094,Absence of political auth.,EA094-99,,,,1950,Gray (1999); Murdock (1957), +120782,Ia6,EA094,?,EA094-NA,,,,,, +120783,Ia7,EA094,"Nonhered, informal",EA094-59,,,,1950,Gray (1999); Murdock (1957), +120784,Ia8,EA094,?,EA094-NA,,,,,, +120785,Ia9,EA094,?,EA094-NA,,,,,, +120786,Ib1,EA094,"Nonhered, informal",EA094-59,,,"Ulu Ai Group, Baleh",1950,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120787,Ib2,EA094,"Nonhered, election",EA094-49,,,Town and environs of Pare; Modjokuto,1950,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120788,Ib3,EA094,"Nonhered, informal",EA094-59,,,Tihingan Village,1950,Gray (1999); Murdock (1957), +120789,Ib4,EA094,"Patrilineal, other/unspecified",EA094-13,,,with special reference to the Toba group,1930,Gray (1999); Murdock (1957), +120790,Ib5,EA094,"Patrilineal, son",EA094-11,,,with special reference to the village of Sensuron,1920,Gray (1999); Murdock (1957), +120791,Ib6,EA094,"Nonhered, council",EA094-69,,,,1920,Gray (1999); Murdock (1957), +120792,Ib7,EA094,Absence of political auth.,EA094-99,,,with special reference to those of North Pageh,1920,Gray (1999); Murdock (1957), +120793,Ib8,EA094,?,EA094-NA,,,,,, +120794,Ib9,EA094,?,EA094-NA,,,,,, +120795,Ic1,EA094,"Patrilineal, other/unspecified",EA094-13,,,Borongloe,1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120796,Ic10,EA094,?,EA094-NA,,,,,, +120797,Ic11,EA094,?,EA094-NA,,,,,, +120798,Ic12,EA094,?,EA094-NA,,,,,, +120799,Ic13,EA094,?,EA094-NA,,,,,, +120800,Ic2,EA094,?,EA094-NA,,,,,, +120801,Ic3,EA094,"Matrilineal, other/unspecified",EA094-26,,,with special reference to the Mountain Belu,1950,Gray (1999); Murdock (1957), +120802,Ic4,EA094,?,EA094-NA,,,,,, +120803,Ic5,EA094,"Nonhered, election",EA094-49,,,Bare'e subgroup,1910,Gray (1999); Murdock (1957), +120804,Ic6,EA094,"Patrilineal, son",EA094-11,,,,1930,Gray (1999); Murdock (1957), +120805,Ic7,EA094,?,EA094-NA,,,,,, +120806,Ic8,EA094,?,EA094-NA,,,,,, +120807,Ic9,EA094,?,EA094-NA,,,,,, +120808,Id1,EA094,"Patrilineal, son",EA094-11,,,Alice Springs and environs,1900,Gray (1999); Murdock (1957), +120809,Id10,EA094,?,EA094-NA,,,,,, +120810,Id11,EA094,?,EA094-NA,,,,,, +120811,Id12,EA094,?,EA094-NA,,,,,, +120812,Id13,EA094,?,EA094-NA,,,,,, +120813,Id2,EA094,"Patrilineal, son",EA094-11,,,,1930,Gray (1999); Murdock (1957), +120814,Id3,EA094,?,EA094-NA,,,,,, +120815,Id4,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1900,Gray (1999); Murdock (1957), +120816,Id5,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1910,Gray (1999); Murdock (1957), +120817,Id6,EA094,?,EA094-NA,,,,,, +120818,Id7,EA094,?,EA094-NA,,,,,, +120819,Id8,EA094,?,EA094-NA,,,,,, +120820,Id9,EA094,?,EA094-NA,,,,,, +120821,Ie1,EA094,"Nonhered, informal",EA094-59,,,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120822,Ie10,EA094,?,EA094-NA,,,,,, +120823,Ie11,EA094,?,EA094-NA,,,,,, +120824,Ie12,EA094,?,EA094-NA,,,,,, +120825,Ie13,EA094,?,EA094-NA,,,,,, +120826,Ie14,EA094,?,EA094-NA,,,,,, +120827,Ie15,EA094,?,EA094-NA,,,,,, +120828,Ie16,EA094,?,EA094-NA,,,,,, +120829,Ie17,EA094,?,EA094-NA,,,,,, +120830,Ie18,EA094,?,EA094-NA,,,,,, +120831,Ie19,EA094,?,EA094-NA,,,,,, +120832,Ie2,EA094,?,EA094-NA,,,,,, +120833,Ie20,EA094,?,EA094-NA,,,,,, +120834,Ie21,EA094,?,EA094-NA,,,,,, +120835,Ie22,EA094,?,EA094-NA,,,,,, +120836,Ie23,EA094,?,EA094-NA,,,,,, +120837,Ie24,EA094,?,EA094-NA,,,,,, +120838,Ie25,EA094,?,EA094-NA,,,,,, +120839,Ie26,EA094,?,EA094-NA,,,,,, +120840,Ie27,EA094,?,EA094-NA,,,,,, +120841,Ie28,EA094,?,EA094-NA,,,,,, +120842,Ie29,EA094,?,EA094-NA,,,,,, +120843,Ie3,EA094,Absence of political auth.,EA094-99,,,with special reference to the Mountain Arapesh (Alitoa),1930,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120844,Ie30,EA094,?,EA094-NA,,,,,, +120845,Ie31,EA094,?,EA094-NA,,,,,, +120846,Ie32,EA094,?,EA094-NA,,,,,, +120847,Ie33,EA094,?,EA094-NA,,,,,, +120848,Ie34,EA094,?,EA094-NA,,,,,, +120849,Ie35,EA094,?,EA094-NA,,,,,, +120850,Ie36,EA094,?,EA094-NA,,,,,, +120851,Ie37,EA094,?,EA094-NA,,,,,, +120852,Ie38,EA094,?,EA094-NA,,,,,, +120853,Ie39,EA094,?,EA094-NA,,,,,, +120854,Ie4,EA094,Absence of political auth.,EA094-99,,,"Dap, Wonevaro district",1930,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120855,Ie5,EA094,"Patrilineal, younger brother",EA094-12,,,,1930,Gray (1999); Murdock (1957), +120856,Ie6,EA094,Absence of political auth.,EA094-99,,,,1930,Gray (1999); Murdock (1957), +120857,Ie7,EA094,?,EA094-NA,,,,,, +120858,Ie8,EA094,?,EA094-NA,,,,,, +120859,Ie9,EA094,?,EA094-NA,,,,,, +120860,If1,EA094,"Matrilineal, yonger brother",EA094-25,,,"Ulimang, Badeldaob Island",1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120861,If10,EA094,?,EA094-NA,,,,,, +120862,If11,EA094,?,EA094-NA,,,,,, +120863,If12,EA094,?,EA094-NA,,,,,, +120864,If13,EA094,?,EA094-NA,,,,,, +120865,If14,EA094,?,EA094-NA,,,,,, +120866,If15,EA094,?,EA094-NA,,,,,, +120867,If16,EA094,?,EA094-NA,,,,,, +120868,If17,EA094,?,EA094-NA,,,,,, +120869,If2,EA094,"Matrilineal, other/unspecified",EA094-26,,,Romonum Island,1940,Gray (1999); Murdock (1957), +120870,If3,EA094,Absence of political auth.,EA094-99,,,With special reference to the inhabitants of Majuro,1940,Gray (1999); Murdock (1957), +120871,If4,EA094,"Nonhered, council",EA094-69,,,with special reference to the inhabitants of Ifaluk atoll,1940,Gray (1999); Murdock (1957), +120872,If5,EA094,"Matrilineal, other/unspecified",EA094-26,,,,1910,Gray (1999); Murdock (1957), +120873,If6,EA094,?,EA094-NA,,,,,, +120874,If7,EA094,"Nonhered, council",EA094-69,,,with special reference to the inhabitants of Onotoa,1940,Gray (1999); Murdock (1957), +120875,If8,EA094,?,EA094-NA,,,,,, +120876,If9,EA094,?,EA094-NA,,,,,, +120877,Ig1,EA094,"Nonhered, informal",EA094-59,,,Northeastern group,1940,Gray (1999); Murdock (1957), +120878,Ig10,EA094,?,EA094-NA,,,,,, +120879,Ig11,EA094,?,EA094-NA,,,,,, +120880,Ig12,EA094,?,EA094-NA,,,,,, +120881,Ig13,EA094,?,EA094-NA,,,,,, +120882,Ig14,EA094,?,EA094-NA,,,,,, +120883,Ig15,EA094,?,EA094-NA,,,,,, +120884,Ig16,EA094,?,EA094-NA,,,,,, +120885,Ig17,EA094,?,EA094-NA,,,,,, +120886,Ig18,EA094,?,EA094-NA,,,,,, +120887,Ig19,EA094,?,EA094-NA,,,,,, +120888,Ig2,EA094,"Matrilineal, sister's son",EA094-24,,,Kiriwina Island,1910,Gray (1999); Murdock (1957), +120889,Ig20,EA094,?,EA094-NA,,,,,, +120890,Ig21,EA094,?,EA094-NA,,,,,, +120891,Ig3,EA094,"Matrilineal, sister's son",EA094-24,,,,1930,Gray (1999); Murdock (1957), +120892,Ig4,EA094,"Nonhered, informal",EA094-59,,,Lesu Village,1930,Gray (1999); Murdock (1957), +120893,Ig5,EA094,Absence of political auth.,EA094-99,,,,1920,Gray (1999); Murdock (1957), +120894,Ig6,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1900,Gray (1999); Murdock (1957), +120895,Ig7,EA094,Absence of political auth.,EA094-99,,,,1950,Gray (1999); Murdock (1957), +120896,Ig8,EA094,?,EA094-NA,,,,,, +120897,Ig9,EA094,"Patrilineal, other/unspecified",EA094-13,,,Peri Village,1920,Gray (1999); Murdock (1957), +120898,Ih1,EA094,"Nonhered, informal",EA094-59,,,,1890,Gray (1999); Murdock (1957), +120899,Ih10,EA094,?,EA094-NA,,,,,, +120900,Ih11,EA094,?,EA094-NA,,,,,, +120901,Ih12,EA094,?,EA094-NA,,,,,, +120902,Ih13,EA094,?,EA094-NA,,,,,, +120903,Ih14,EA094,?,EA094-NA,,,,,, +120904,Ih2,EA094,"Patrilineal, son",EA094-11,,,Malekula Island,1930,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120905,Ih3,EA094,?,EA094-NA,,,,,, +120906,Ih4,EA094,"Patrilineal, younger brother",EA094-12,,,Lau Island,1920,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +120907,Ih5,EA094,"Patrilineal, son",EA094-11,,,Neje Chiefdom,1860,Gray (1999); Murdock (1957), +120908,Ih6,EA094,?,EA094-NA,,,,,, +120909,Ih7,EA094,"Patrilineal, son",EA094-11,,,,1910,Gray (1999); Murdock (1957), +120910,Ih8,EA094,?,EA094-NA,,,,,, +120911,Ih9,EA094,?,EA094-NA,,,,,, +120912,Ii1,EA094,"Patrilineal, son",EA094-11,,,with special reference to American Samoa,1920,Gray (1999); Murdock (1957), +120913,Ii10,EA094,?,EA094-NA,,,,,, +120914,Ii12,EA094,?,EA094-NA,,,,,, +120915,Ii13,EA094,?,EA094-NA,,,,,, +120916,Ii14,EA094,?,EA094-NA,,,,,, +120917,Ii2,EA094,"Patrilineal, other/unspecified",EA094-13,,,Ravenga District,1930,Gray (1999); Murdock (1957), +120918,Ii3,EA094,"Patrilineal, son",EA094-11,,,,1930,Gray (1999); Murdock (1957), +120919,Ii4,EA094,?,EA094-NA,,,,,, +120920,Ii5,EA094,?,EA094-NA,,,,,, +120921,Ii6,EA094,"Patrilineal, other/unspecified",EA094-13,,,with special reference to Atafu,1900,Gray (1999); Murdock (1957), +120922,Ii7,EA094,?,EA094-NA,,,,,, +120923,Ii8,EA094,?,EA094-NA,,,,,, +120924,Ii9,EA094,?,EA094-NA,,,,,, +120925,Ij1,EA094,"Patrilineal, younger brother",EA094-12,,,,1820,Gray (1999); Murdock (1957), +120926,Ij10,EA094,?,EA094-NA,,,,,, +120927,Ij2,EA094,"Patrilineal, son",EA094-11,,,Nga Puhi Tribe,1820,Gray (1999); Murdock (1957), +120928,Ij3,EA094,"Patrilineal, son",EA094-11,,,,1900,Gray (1999); Murdock (1957), +120929,Ij4,EA094,"Patrilineal, son",EA094-11,,,,1850,Gray (1999); Murdock (1957), +120930,Ij5,EA094,"Patrilineal, son",EA094-11,,,,1900,Gray (1999); Murdock (1957), +120931,Ij6,EA094,"Patrilineal, son",EA094-11,,,,1800,Gray (1999); Murdock (1957), +120932,Ij7,EA094,?,EA094-NA,,,,,, +120933,Ij8,EA094,?,EA094-NA,,,,,, +120934,Ij9,EA094,?,EA094-NA,,,,,, +120935,Na1,EA094,?,EA094-NA,,,,,, +120936,Na10,EA094,?,EA094-NA,,,,,, +120937,Na11,EA094,?,EA094-NA,,,,,, +120938,Na12,EA094,?,EA094-NA,,,,,, +120939,Na13,EA094,?,EA094-NA,,,,,, +120940,Na14,EA094,?,EA094-NA,,,,,, +120941,Na15,EA094,?,EA094-NA,,,,,, +120942,Na16,EA094,?,EA094-NA,,,,,, +120943,Na17,EA094,?,EA094-NA,,,,,, +120944,Na19,EA094,?,EA094-NA,,,,,, +120945,Na2,EA094,?,EA094-NA,,,,,, +120946,Na20,EA094,?,EA094-NA,,,,,, +120947,Na21,EA094,?,EA094-NA,,,,,, +120948,Na22,EA094,?,EA094-NA,,,,,, +120949,Na23,EA094,?,EA094-NA,,,,,, +120950,Na24,EA094,?,EA094-NA,,,,,, +120951,Na25,EA094,?,EA094-NA,,,,,, +120952,Na26,EA094,?,EA094-NA,,,,,, +120953,Na27,EA094,?,EA094-NA,,,,,, +120954,Na28,EA094,?,EA094-NA,,,,,, +120955,Na29,EA094,?,EA094-NA,,,,,, +120956,Na3,EA094,?,EA094-NA,,,,,, +120957,Na30,EA094,?,EA094-NA,,,,,, +120958,Na31,EA094,?,EA094-NA,,,,,, +120959,Na32,EA094,?,EA094-NA,,,,,, +120960,Na33,EA094,?,EA094-NA,,,,,, +120961,Na34,EA094,"Nonhered, informal",EA094-59,,,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,Gray (1999); Murdock (1957), +120962,Na35,EA094,?,EA094-NA,,,,,, +120963,Na36,EA094,?,EA094-NA,,,,,, +120964,Na37,EA094,?,EA094-NA,,,,,, +120965,Na38,EA094,?,EA094-NA,,,,,, +120966,Na39,EA094,?,EA094-NA,,,,,, +120967,Na4,EA094,Absence of political auth.,EA094-99,,,Upper Liard and Dease River Group,1920,Gray (1999); Murdock (1957), +120968,Na40,EA094,?,EA094-NA,,,,,, +120969,Na41,EA094,?,EA094-NA,,,,,, +120970,Na42,EA094,?,EA094-NA,,,,,, +120971,Na43,EA094,?,EA094-NA,,,,,, +120972,Na44,EA094,?,EA094-NA,,,,,, +120973,Na45,EA094,?,EA094-NA,,,,,, +120974,Na5,EA094,"Nonhered, informal",EA094-59,,,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,Gray (1999); Murdock (1957), +120975,Na6,EA094,"Nonhered, informal",EA094-59,,,,1930,Gray (1999); Murdock (1957), +120976,Na7,EA094,"Nonhered, informal",EA094-59,,,with special reference to the Attawapiskat Swampy Cree,1900,Gray (1999); Murdock (1957), +120977,Na8,EA094,?,EA094-NA,,,,,, +120978,Na9,EA094,?,EA094-NA,,,,,, +120979,Nb1,EA094,"Matrilineal, yonger brother",EA094-25,,,Masset Town,1890,Gray (1999); Murdock (1957), +120980,Nb10,EA094,?,EA094-NA,,,,,, +120981,Nb11,EA094,?,EA094-NA,,,,,, +120982,Nb12,EA094,?,EA094-NA,,,,,, +120983,Nb13,EA094,?,EA094-NA,,,,,, +120984,Nb14,EA094,?,EA094-NA,,,,,, +120985,Nb15,EA094,?,EA094-NA,,,,,, +120986,Nb16,EA094,?,EA094-NA,,,,,, +120987,Nb17,EA094,?,EA094-NA,,,,,, +120988,Nb18,EA094,?,EA094-NA,,,,,, +120989,Nb19,EA094,?,EA094-NA,,,,,, +120990,Nb2,EA094,?,EA094-NA,,,,,, +120991,Nb20,EA094,?,EA094-NA,,,,,, +120992,Nb21,EA094,?,EA094-NA,,,,,, +120993,Nb22,EA094,?,EA094-NA,,,,,, +120994,Nb23,EA094,?,EA094-NA,,,,,, +120995,Nb24,EA094,?,EA094-NA,,,,,, +120996,Nb25,EA094,?,EA094-NA,,,,,, +120997,Nb26,EA094,?,EA094-NA,,,,,, +120998,Nb27,EA094,?,EA094-NA,,,,,, +120999,Nb28,EA094,?,EA094-NA,,,,,, +121000,Nb29,EA094,?,EA094-NA,,,,,, +121001,Nb3,EA094,?,EA094-NA,,,,,, +121002,Nb30,EA094,?,EA094-NA,,,,,, +121003,Nb31,EA094,?,EA094-NA,,,,,, +121004,Nb32,EA094,?,EA094-NA,,,,,, +121005,Nb33,EA094,?,EA094-NA,,,,,, +121006,Nb34,EA094,?,EA094-NA,,,,,, +121007,Nb35,EA094,?,EA094-NA,,,,,, +121008,Nb36,EA094,?,EA094-NA,,,,,, +121009,Nb37,EA094,?,EA094-NA,,,,,, +121010,Nb38,EA094,?,EA094-NA,,,,,, +121011,Nb39,EA094,?,EA094-NA,,,,,, +121012,Nb4,EA094,Absence of political auth.,EA094-99,,,,1850,Gray (1999); Murdock (1957), +121013,Nb5,EA094,"Matrilineal, yonger brother",EA094-25,,,Eyak Tribe,1890,Gray (1999); Murdock (1957), +121014,Nb6,EA094,"Nonhered, informal",EA094-59,,,,1870,Gray (1999); Murdock (1957), +121015,Nb7,EA094,?,EA094-NA,,,,,, +121016,Nb8,EA094,?,EA094-NA,,,,,, +121017,Nb9,EA094,?,EA094-NA,,,,,, +121018,Nc1,EA094,"Patrilineal, son",EA094-11,,,,1850,Gray (1999); Murdock (1957), +121019,Nc10,EA094,?,EA094-NA,,,,,, +121020,Nc11,EA094,?,EA094-NA,,,,,, +121021,Nc12,EA094,?,EA094-NA,,,,,, +121022,Nc13,EA094,?,EA094-NA,,,,,, +121023,Nc14,EA094,?,EA094-NA,,,,,, +121024,Nc15,EA094,?,EA094-NA,,,,,, +121025,Nc16,EA094,?,EA094-NA,,,,,, +121026,Nc17,EA094,?,EA094-NA,,,,,, +121027,Nc18,EA094,?,EA094-NA,,,,,, +121028,Nc19,EA094,?,EA094-NA,,,,,, +121029,Nc2,EA094,"Patrilineal, son",EA094-11,,,,1850,Gray (1999); Murdock (1957), +121030,Nc20,EA094,?,EA094-NA,,,,,, +121031,Nc21,EA094,?,EA094-NA,,,,,, +121032,Nc22,EA094,?,EA094-NA,,,,,, +121033,Nc23,EA094,?,EA094-NA,,,,,, +121034,Nc24,EA094,?,EA094-NA,,,,,, +121035,Nc25,EA094,?,EA094-NA,,,,,, +121036,Nc26,EA094,?,EA094-NA,,,,,, +121037,Nc27,EA094,?,EA094-NA,,,,,, +121038,Nc28,EA094,?,EA094-NA,,,,,, +121039,Nc29,EA094,?,EA094-NA,,,,,, +121040,Nc3,EA094,"Patrilineal, younger brother",EA094-12,,,with special reference to those of the Northern Foothills,1850,Gray (1999); Murdock (1957), +121041,Nc30,EA094,?,EA094-NA,,,,,, +121042,Nc31,EA094,?,EA094-NA,,,,,, +121043,Nc32,EA094,?,EA094-NA,,,,,, +121044,Nc33,EA094,?,EA094-NA,,,,,, +121045,Nc34,EA094,?,EA094-NA,,,,,, +121046,Nc4,EA094,"Patrilineal, son",EA094-11,,,,1860,Gray (1999); Murdock (1957), +121047,Nc5,EA094,"Patrilineal, son",EA094-11,,,with special reference to the Central Sierra group,1850,Gray (1999); Murdock (1957), +121048,Nc6,EA094,"Patrilineal, son",EA094-11,,,with special reference to the Southern Diegueno,1850,Gray (1999); Murdock (1957), +121049,Nc7,EA094,"Patrilineal, son",EA094-11,,,,1850,Gray (1999); Murdock (1957), +121050,Nc8,EA094,?,EA094-NA,,,,,, +121051,Nc9,EA094,?,EA094-NA,,,,,, +121052,Nd1,EA094,"Patrilineal, son",EA094-11,,,,1850,Gray (1999); Murdock (1957), +121053,Nd10,EA094,?,EA094-NA,,,,,, +121054,Nd11,EA094,?,EA094-NA,,,,,, +121055,Nd12,EA094,?,EA094-NA,,,,,, +121056,Nd13,EA094,?,EA094-NA,,,,,, +121057,Nd14,EA094,?,EA094-NA,,,,,, +121058,Nd15,EA094,?,EA094-NA,,,,,, +121059,Nd16,EA094,?,EA094-NA,,,,,, +121060,Nd17,EA094,?,EA094-NA,,,,,, +121061,Nd18,EA094,?,EA094-NA,,,,,, +121062,Nd19,EA094,?,EA094-NA,,,,,, +121063,Nd2,EA094,"Patrilineal, son",EA094-11,,,,1860,Gray (1999); Murdock (1957), +121064,Nd20,EA094,?,EA094-NA,,,,,, +121065,Nd21,EA094,?,EA094-NA,,,,,, +121066,Nd22,EA094,?,EA094-NA,,,,,, +121067,Nd23,EA094,?,EA094-NA,,,,,, +121068,Nd24,EA094,?,EA094-NA,,,,,, +121069,Nd25,EA094,?,EA094-NA,,,,,, +121070,Nd26,EA094,?,EA094-NA,,,,,, +121071,Nd27,EA094,?,EA094-NA,,,,,, +121072,Nd28,EA094,?,EA094-NA,,,,,, +121073,Nd29,EA094,?,EA094-NA,,,,,, +121074,Nd3,EA094,"Patrilineal, other/unspecified",EA094-13,,,Havasupai Tribe,1870,Gray (1999); Murdock (1957), +121075,Nd30,EA094,?,EA094-NA,,,,,, +121076,Nd31,EA094,?,EA094-NA,,,,,, +121077,Nd32,EA094,?,EA094-NA,,,,,, +121078,Nd33,EA094,?,EA094-NA,,,,,, +121079,Nd34,EA094,?,EA094-NA,,,,,, +121080,Nd35,EA094,?,EA094-NA,,,,,, +121081,Nd36,EA094,?,EA094-NA,,,,,, +121082,Nd37,EA094,?,EA094-NA,,,,,, +121083,Nd38,EA094,?,EA094-NA,,,,,, +121084,Nd39,EA094,?,EA094-NA,,,,,, +121085,Nd4,EA094,?,EA094-NA,,,,,, +121086,Nd40,EA094,?,EA094-NA,,,,,, +121087,Nd41,EA094,?,EA094-NA,,,,,, +121088,Nd42,EA094,?,EA094-NA,,,,,, +121089,Nd43,EA094,?,EA094-NA,,,,,, +121090,Nd44,EA094,?,EA094-NA,,,,,, +121091,Nd45,EA094,?,EA094-NA,,,,,, +121092,Nd46,EA094,?,EA094-NA,,,,,, +121093,Nd47,EA094,?,EA094-NA,,,,,, +121094,Nd48,EA094,?,EA094-NA,,,,,, +121095,Nd49,EA094,?,EA094-NA,,,,,, +121096,Nd5,EA094,"Patrilineal, son",EA094-11,,,,1870,Gray (1999); Murdock (1957), +121097,Nd50,EA094,?,EA094-NA,,,,,, +121098,Nd51,EA094,?,EA094-NA,,,,,, +121099,Nd52,EA094,?,EA094-NA,,,,,, +121100,Nd53,EA094,?,EA094-NA,,,,,, +121101,Nd54,EA094,?,EA094-NA,,,,,, +121102,Nd55,EA094,?,EA094-NA,,,,,, +121103,Nd56,EA094,?,EA094-NA,,,,,, +121104,Nd57,EA094,?,EA094-NA,,,,,, +121105,Nd58,EA094,?,EA094-NA,,,,,, +121106,Nd59,EA094,?,EA094-NA,,,,,, +121107,Nd6,EA094,"Patrilineal, son",EA094-11,,,,1850,Gray (1999); Murdock (1957), +121108,Nd60,EA094,?,EA094-NA,,,,,, +121109,Nd61,EA094,?,EA094-NA,,,,,, +121110,Nd62,EA094,?,EA094-NA,,,,,, +121111,Nd63,EA094,?,EA094-NA,,,,,, +121112,Nd64,EA094,?,EA094-NA,,,,,, +121113,Nd65,EA094,?,EA094-NA,,,,,, +121114,Nd66,EA094,?,EA094-NA,,,,,, +121115,Nd67,EA094,?,EA094-NA,,,,,, +121116,Nd7,EA094,"Nonhered, informal",EA094-59,,,Lower or eastern branch,1880,Gray (1999); Murdock (1957), +121117,Nd8,EA094,?,EA094-NA,,,,,, +121118,Nd9,EA094,?,EA094-NA,,,,,, +121119,Ne1,EA094,"Nonhered, informal",EA094-59,,,Gros Ventre Tribe,1880,Gray (1999); Murdock (1957), +121120,Ne10,EA094,?,EA094-NA,,,,,, +121121,Ne11,EA094,?,EA094-NA,,,,,, +121122,Ne12,EA094,?,EA094-NA,,,,,, +121123,Ne13,EA094,?,EA094-NA,,,,,, +121124,Ne14,EA094,?,EA094-NA,,,,,, +121125,Ne15,EA094,?,EA094-NA,,,,,, +121126,Ne16,EA094,?,EA094-NA,,,,,, +121127,Ne17,EA094,?,EA094-NA,,,,,, +121128,Ne18,EA094,?,EA094-NA,,,,,, +121129,Ne19,EA094,?,EA094-NA,,,,,, +121130,Ne2,EA094,"Nonhered, informal",EA094-59,,,,1870,Gray (1999); Murdock (1957), +121131,Ne20,EA094,?,EA094-NA,,,,,, +121132,Ne21,EA094,?,EA094-NA,,,,,, +121133,Ne3,EA094,"Patrilineal, other/unspecified",EA094-13,,,Comanche Tribe,1870,Gray (1999); Murdock (1957), +121134,Ne4,EA094,"Nonhered, informal",EA094-59,,,,1870,Gray (1999); Murdock (1957), +121135,Ne5,EA094,"Nonhered, informal",EA094-59,,,,1860,Gray (1999); Murdock (1957), +121136,Ne6,EA094,"Nonhered, election",EA094-49,,,,1830,Gray (1999); Murdock (1957), +121137,Ne7,EA094,"Nonhered, informal",EA094-59,,,,1880,Gray (1999); Murdock (1957), +121138,Ne8,EA094,"Nonhered, informal",EA094-59,,,,1870,Gray (1999); Murdock (1957), +121139,Ne9,EA094,?,EA094-NA,,,,,, +121140,Nf10,EA094,?,EA094-NA,,,,,, +121141,Nf11,EA094,?,EA094-NA,,,,,, +121142,Nf12,EA094,?,EA094-NA,,,,,, +121143,Nf13,EA094,?,EA094-NA,,,,,, +121144,Nf14,EA094,?,EA094-NA,,,,,, +121145,Nf15,EA094,?,EA094-NA,,,,,, +121146,Nf2,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1850,Gray (1999); Murdock (1957), +121147,Nf3,EA094,"Nonhered, informal",EA094-59,,,Omaha Tribe,1850,Gray (1999); Murdock (1957), +121148,Nf4,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1720,Gray (1999); Murdock (1957), +121149,Nf5,EA094,"Nonhered, informal",EA094-59,,,,1860,Gray (1999); Murdock (1957), +121150,Nf6,EA094,"Patrilineal, son",EA094-11,,,Skidi Band or subtribe,1867,Gray (1999); Murdock (1957), +121151,Nf7,EA094,"Patrilineal, son",EA094-11,,,Tama Reservation,1830,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +121152,Nf8,EA094,"Patrilineal, son",EA094-11,,,,1770,Gray (1999); Murdock (1957), +121153,Nf9,EA094,?,EA094-NA,,,,,, +121154,Ng1,EA094,"Matrilineal, sister's son",EA094-24,,,Bear and Cord Subtribes,1640,Gray (1999); Murdock (1957), +121155,Ng10,EA094,?,EA094-NA,,,,,, +121156,Ng11,EA094,?,EA094-NA,,,,,, +121157,Ng12,EA094,?,EA094-NA,,,,,, +121158,Ng13,EA094,?,EA094-NA,,,,,, +121159,Ng14,EA094,?,EA094-NA,,,,,, +121160,Ng15,EA094,?,EA094-NA,,,,,, +121161,Ng2,EA094,?,EA094-NA,,,,,, +121162,Ng3,EA094,"Nonhered, informal",EA094-59,,,Upper division in Alabama,1750,Gray (1999); Murdock (1957), +121163,Ng4,EA094,?,EA094-NA,,,,,, +121164,Ng5,EA094,"Matrilineal, other/unspecified",EA094-26,,,,1750,Gray (1999); Murdock (1957), +121165,Ng6,EA094,"Matrilineal, sister's son",EA094-24,,,with special reference to the Munsee,1700,Gray (1999); Murdock (1957), +121166,Ng7,EA094,"Matrilineal, other/unspecified",EA094-26,,,Natchez Kingdom,1700,Gray (1999); Murdock (1957), +121167,Ng8,EA094,?,EA094-NA,,,,,, +121168,Ng9,EA094,?,EA094-NA,,,,,, +121169,Nh1,EA094,"Nonhered, informal",EA094-59,,,Central band,1880,Gray (1999); Murdock (1957), +121170,Nh10,EA094,?,EA094-NA,,,,,, +121171,Nh11,EA094,?,EA094-NA,,,,,, +121172,Nh12,EA094,?,EA094-NA,,,,,, +121173,Nh13,EA094,?,EA094-NA,,,,,, +121174,Nh14,EA094,?,EA094-NA,,,,,, +121175,Nh15,EA094,?,EA094-NA,,,,,, +121176,Nh16,EA094,?,EA094-NA,,,,,, +121177,Nh17,EA094,?,EA094-NA,,,,,, +121178,Nh18,EA094,?,EA094-NA,,,,,, +121179,Nh19,EA094,?,EA094-NA,,,,,, +121180,Nh2,EA094,"Nonhered, council",EA094-69,,,,1950,Gray (1999); Murdock (1957), +121181,Nh20,EA094,?,EA094-NA,,,,,, +121182,Nh21,EA094,?,EA094-NA,,,,,, +121183,Nh22,EA094,?,EA094-NA,,,,,, +121184,Nh23,EA094,?,EA094-NA,,,,,, +121185,Nh24,EA094,?,EA094-NA,,,,,, +121186,Nh25,EA094,?,EA094-NA,,,,,, +121187,Nh26,EA094,?,EA094-NA,,,,,, +121188,Nh27,EA094,?,EA094-NA,,,,,, +121189,Nh3,EA094,"Nonhered, informal",EA094-59,,,,1930,Gray (1999); Murdock (1957), +121190,Nh4,EA094,"Nonhered, council",EA094-69,,,Pueblo,1910,Gray (1999); Murdock (1957), +121191,Nh5,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1850,Gray (1999); Murdock (1957), +121192,Nh6,EA094,"Nonhered, election",EA094-49,,,,1890,Gray (1999); Murdock (1957), +121193,Nh7,EA094,"Nonhered, informal",EA094-59,,,,1890,Gray (1999); Murdock (1957), +121194,Nh8,EA094,"Matrilineal, other/unspecified",EA094-26,,,,1920,Gray (1999); Murdock (1957), +121195,Nh9,EA094,?,EA094-NA,,,,,, +121196,Ni1,EA094,?,EA094-NA,,,,,, +121197,Ni2,EA094,"Nonhered, council",EA094-69,,,,1930,Gray (1999); Murdock (1957), +121198,Ni3,EA094,"Nonhered, election",EA094-49,,,Huichol Tribe,1920,Gray (1999); Murdock (1957), +121199,Ni4,EA094,?,EA094-NA,,,,,, +121200,Ni5,EA094,?,EA094-NA,,,,,, +121201,Ni6,EA094,?,EA094-NA,,,,,, +121202,Ni7,EA094,?,EA094-NA,,,,,, +121203,Ni8,EA094,?,EA094-NA,,,,,, +121204,Ni9,EA094,?,EA094-NA,,,,,, +121205,Nj1,EA094,"Nonhered, election",EA094-49,,,Ojitlan,1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +121206,Nj10,EA094,?,EA094-NA,,,,,, +121207,Nj11,EA094,?,EA094-NA,,,,,, +121208,Nj12,EA094,?,EA094-NA,,,,,, +121209,Nj13,EA094,?,EA094-NA,,,,,, +121210,Nj14,EA094,?,EA094-NA,,,,,, +121211,Nj2,EA094,"Patrilineal, son",EA094-11,,,City & environs of Tenochtitlan,1520,Gray (1999); Murdock (1957), +121212,Nj3,EA094,?,EA094-NA,,,,,, +121213,Nj4,EA094,"Patrilineal, son",EA094-11,,,,1940,Gray (1999); Murdock (1957), +121214,Nj5,EA094,?,EA094-NA,,,,,, +121215,Nj6,EA094,?,EA094-NA,,,,,, +121216,Nj7,EA094,?,EA094-NA,,,,,, +121217,Nj8,EA094,?,EA094-NA,,,,,, +121218,Nj9,EA094,?,EA094-NA,,,,,, +121219,Sa1,EA094,"Nonhered, election",EA094-49,,,San Blas Archipelago,1940,Gray (1999); Murdock (1957), +121220,Sa10,EA094,?,EA094-NA,,,,,, +121221,Sa11,EA094,?,EA094-NA,,,,,, +121222,Sa12,EA094,?,EA094-NA,,,,,, +121223,Sa13,EA094,?,EA094-NA,,,,,, +121224,Sa14,EA094,?,EA094-NA,,,,,, +121225,Sa15,EA094,?,EA094-NA,,,,,, +121226,Sa16,EA094,?,EA094-NA,,,,,, +121227,Sa17,EA094,?,EA094-NA,,,,,, +121228,Sa2,EA094,?,EA094-NA,,,,,, +121229,Sa3,EA094,"Nonhered, appointed by auth.",EA094-39,,,,1930,Gray (1999); Murdock (1957), +121230,Sa4,EA094,?,EA094-NA,,,,,, +121231,Sa5,EA094,"Matrilineal, yonger brother",EA094-25,,,,1950,Gray (1999); Murdock (1957), +121232,Sa6,EA094,"Patrilineal, son",EA094-11,,,,1520,Gray (1999); Murdock (1957), +121233,Sa7,EA094,"Nonhered, appointed by auth.",EA094-39,,,,1940,Gray (1999); Murdock (1957), +121234,Sa8,EA094,?,EA094-NA,,,,,, +121235,Sa9,EA094,"Nonhered, election",EA094-49,,,Vicinity: Cape Gracias a Dios,1920,Gray (1999); Murdock (1957), +121236,Sb1,EA094,"Nonhered, informal",EA094-59,,,Dominica Island,1650,Gray (1999); Murdock (1957), +121237,Sb2,EA094,?,EA094-NA,,,,,, +121238,Sb3,EA094,?,EA094-NA,,,,,, +121239,Sb4,EA094,?,EA094-NA,,,,,, +121240,Sb5,EA094,?,EA094-NA,,,,,, +121241,Sb6,EA094,"Matrilineal, sister's son",EA094-24,,,Goajiro Tribe,1940,Gray (1999); Murdock (1957), +121242,Sb7,EA094,?,EA094-NA,,,,,, +121243,Sb8,EA094,?,EA094-NA,,,,,, +121244,Sb9,EA094,?,EA094-NA,,,,,, +121245,Sc1,EA094,"Nonhered, informal",EA094-59,,,,1950,Gray (1999); Murdock (1957), +121246,Sc10,EA094,?,EA094-NA,,,,,, +121247,Sc11,EA094,?,EA094-NA,,,,,, +121248,Sc12,EA094,?,EA094-NA,,,,,, +121249,Sc13,EA094,?,EA094-NA,,,,,, +121250,Sc14,EA094,?,EA094-NA,,,,,, +121251,Sc15,EA094,?,EA094-NA,,,,,, +121252,Sc16,EA094,?,EA094-NA,,,,,, +121253,Sc17,EA094,?,EA094-NA,,,,,, +121254,Sc18,EA094,?,EA094-NA,,,,,, +121255,Sc2,EA094,"Matrilineal, other/unspecified",EA094-26,,,,1950,Gray (1999); Murdock (1957), +121256,Sc3,EA094,"Nonhered, informal",EA094-59,,,Barama River,1930,Gray (1999); Murdock (1957), +121257,Sc4,EA094,"Patrilineal, son",EA094-11,,,with special reference to the non-agricultural groups,1950,Gray (1999); Murdock (1957), +121258,Sc5,EA094,?,EA094-NA,,,,,, +121259,Sc6,EA094,"Matrilineal, yonger brother",EA094-25,,,Upper Suriname River; Akwa on Morini River,1920,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +121260,Sc7,EA094,?,EA094-NA,,,,,, +121261,Sc8,EA094,?,EA094-NA,,,,,, +121262,Sc9,EA094,?,EA094-NA,,,,,, +121263,Sd1,EA094,"Patrilineal, other/unspecified",EA094-13,,,Cabrura village,1950,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +121264,Sd2,EA094,?,EA094-NA,,,,,, +121265,Sd3,EA094,"Nonhered, informal",EA094-59,,,,1920,Gray (1999); Murdock (1957), +121266,Sd4,EA094,?,EA094-NA,,,,,, +121267,Sd5,EA094,?,EA094-NA,,,,,, +121268,Sd6,EA094,?,EA094-NA,,,,,, +121269,Sd7,EA094,?,EA094-NA,,,,,, +121270,Sd8,EA094,?,EA094-NA,,,,,, +121271,Sd9,EA094,?,EA094-NA,,,,,, +121272,Se1,EA094,"Patrilineal, son",EA094-11,,,Vicinity of the Rio Blanco,1940,Gray (1999); Murdock (1957), +121273,Se10,EA094,?,EA094-NA,,,,,, +121274,Se11,EA094,?,EA094-NA,,,,,, +121275,Se12,EA094,?,EA094-NA,,,,,, +121276,Se2,EA094,?,EA094-NA,,,,,, +121277,Se3,EA094,Absence of political auth.,EA094-99,,,,1930,Gray (1999); Murdock (1957), +121278,Se4,EA094,"Nonhered, election",EA094-49,,,,1940,Gray (1999); Murdock (1957), +121279,Se5,EA094,?,EA094-NA,,,,,, +121280,Se6,EA094,"Patrilineal, son",EA094-11,,,,1910,Gray (1999); Murdock (1957), +121281,Se7,EA094,?,EA094-NA,,,,,, +121282,Se8,EA094,?,EA094-NA,,,,,, +121283,Se9,EA094,?,EA094-NA,,,,,, +121284,Sf1,EA094,"Patrilineal, son",EA094-11,,,City and environs of Cuzco,1530,Gray (1999); Murdock (1957), +121285,Sf2,EA094,Absence of political auth.,EA094-99,,,Chucuito Clan community in Peru,1940,Gray (1999); Murdock (1957), +121286,Sf3,EA094,"Patrilineal, son",EA094-11,,,Rio Cayapas Basin,1910,Gray (1999); Murdock (1957), +121287,Sf4,EA094,?,EA094-NA,,,,,, +121288,Sf5,EA094,?,EA094-NA,,,,,, +121289,Sf6,EA094,"Matrilineal, sister's son",EA094-24,,,,1540,Gray (1999); Murdock (1957), +121290,Sf7,EA094,?,EA094-NA,,,,,, +121291,Sf8,EA094,?,EA094-NA,,,,,, +121292,Sf9,EA094,?,EA094-NA,,,,,, +121293,Sg1,EA094,Absence of political auth.,EA094-99,,,Eastern and central,1870,Gray (1999); Murdock (1957), +121294,Sg2,EA094,"Patrilineal, other/unspecified",EA094-13,,,Cholchol,1880,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +121295,Sg3,EA094,"Nonhered, informal",EA094-59,,,with special reference to the Shelknam,1880,Gray (1999); Murdock (1957), +121296,Sg4,EA094,"Patrilineal, son",EA094-11,,,Equestrian,1870,Gray (1999); Murdock (1957), +121297,Sg5,EA094,Absence of political auth.,EA094-99,,,with special reference to the southern bands,1900,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +121298,Sh1,EA094,?,EA094-NA,,,,,, +121299,Sh2,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1850,Gray (1999); Murdock (1957), +121300,Sh3,EA094,"Patrilineal, son",EA094-11,,,Those in contact with mission,1800,Gray (1999); Murdock (1957), +121301,Sh4,EA094,?,EA094-NA,,,,,, +121302,Sh5,EA094,?,EA094-NA,,,,,, +121303,Sh6,EA094,?,EA094-NA,,,,,, +121304,Sh7,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1900,Gray (1999); Murdock (1957), +121305,Sh8,EA094,?,EA094-NA,,,,,, +121306,Sh9,EA094,?,EA094-NA,,,,,, +121307,Si1,EA094,"Matrilineal, other/unspecified",EA094-26,,,Kejara,1920,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +121308,Si10,EA094,?,EA094-NA,,,,,, +121309,Si2,EA094,"Patrilineal, son",EA094-11,,,Village of Vanivani,1930,Gray (1999); Murdock (1957), +121310,Si3,EA094,"Nonhered, informal",EA094-59,,,Simao Lopes,1940,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +121311,Si4,EA094,"Nonhered, informal",EA094-59,,,Cocozu Group,1940,Gray (1999); Murdock (1957), +121312,Si5,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1940,Gray (1999); Murdock (1957), +121313,Si6,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1900,Gray (1999); Murdock (1957), +121314,Si7,EA094,?,EA094-NA,,,,,, +121315,Si8,EA094,?,EA094-NA,,,,,, +121316,Si9,EA094,?,EA094-NA,,,,,, +121317,Sj1,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1950,Gray (1999); Murdock (1957), +121318,Sj10,EA094,?,EA094-NA,,,,,, +121319,Sj11,EA094,?,EA094-NA,,,,,, +121320,Sj2,EA094,"Patrilineal, other/unspecified",EA094-13,,,,1850,Gray (1999); Murdock (1957), +121321,Sj3,EA094,Absence of political auth.,EA094-99,,,Duque de Caxias Reservation,1910,Gray (1999); Murdock (1957), +121322,Sj4,EA094,Absence of political auth.,EA094-99,,,Ramcocamecra or Canella,1930,Gray (1999); Murdock (1957), +121323,Sj5,EA094,"Nonhered, informal",EA094-59,,,Naknenuk subtribe,1880,Gray (1999); Murdock (1957), +121324,Sj6,EA094,?,EA094-NA,,,,,, +121325,Sj7,EA094,"Matrilineal, other/unspecified",EA094-26,,,,1920,Gray (1999); Murdock (1957), +121326,Sj8,EA094,"Patrilineal, other/unspecified",EA094-13,,,Hinterland of Rio de Janeiro,1600,Gray (1999); Murdock (1957), +121327,Sj9,EA094,?,EA094-NA,,,,,, +121328,ch12,EA094,?,EA094-NA,,,,,, +121329,ch13,EA094,?,EA094-NA,,,,,, +121330,ch14,EA094,?,EA094-NA,,,,,, +121331,ch15,EA094,?,EA094-NA,,,,,, +121332,ch16,EA094,?,EA094-NA,,,,,, +121333,ch17,EA094,?,EA094-NA,,,,,, +121334,ch18,EA094,?,EA094-NA,,,,,, +121335,ch19,EA094,?,EA094-NA,,,,,, +121336,ch20,EA094,?,EA094-NA,,,,,, +121337,ch21,EA094,?,EA094-NA,,,,,, +121338,ch22,EA094,?,EA094-NA,,,,,, +121339,ch23,EA094,?,EA094-NA,,,,,, +121340,ch24,EA094,?,EA094-NA,,,,,, +121341,ch25,EA094,?,EA094-NA,,,,,, +121342,ch26,EA094,?,EA094-NA,,,,,, +121343,ch27,EA094,?,EA094-NA,,,,,, +121344,ch28,EA094,?,EA094-NA,,,,,, +121345,ec12,EA094,?,EA094-NA,,,,,, +121346,ec13,EA094,?,EA094-NA,,,,,, +121347,ec14,EA094,?,EA094-NA,,,,,, +121348,ec15,EA094,?,EA094-NA,,,,,, +121349,ec16,EA094,?,EA094-NA,,,,,, +121350,ec17,EA094,?,EA094-NA,,,,,, +121351,ec18,EA094,?,EA094-NA,,,,,, +121352,ec19,EA094,?,EA094-NA,,,,,, +121353,ec20,EA094,?,EA094-NA,,,,,, +121354,ec21,EA094,?,EA094-NA,,,,,, diff --git a/cldf/requirements.txt b/cldf/requirements.txt new file mode 100644 index 0000000..38acbd2 --- /dev/null +++ b/cldf/requirements.txt @@ -0,0 +1,88 @@ +affine==2.4.0 +appdirs==1.4.4 +arrow==1.2.3 +Babel==2.11.0 +bs4==0.0.1 +Cartopy==0.22.0 +certifi==2022.12.7 +cffi==1.15.1 +chardet==5.1.0 +cldfbench==1.14.0 +cldfcatalog==1.5.1 +cldfviz==1.0.0 +cldfzenodo==1.1.0 +click==8.1.6 +clldutils==3.20.0 +colorama==0.4.6 +colorlog==6.7.0 +commonnexus==1.6.0 +contextily==1.3.0 +csvw==3.1.3 +cycler==0.11.0 +exceptiongroup==1.1.0 +Fiona==1.9.4.post1 +geopandas==0.13.2 +geopy==2.3.0 +gitdb==4.0.10 +greenlet==2.0.1 +html5lib==1.1 +idna==3.4 +iniconfig==2.0.0 +isodate==0.6.1 +Jinja2==3.1.2 +jmespath==1.0.1 +joblib==1.3.2 +jsonschema==4.17.3 +kiwisolver==1.4.4 +lingtreemaps==0.0.5 +lxml==4.9.2 +Markdown==3.4.1 +MarkupSafe==2.1.2 +matplotlib==3.6.3 +mercantile==1.2.1 +multipledispatch==0.6.0 +nameparser==1.1.2 +newick==1.9.0 +numpy==1.24.1 +openpyxl==3.1.2 +packaging==23.1 +pandas==2.0.3 +phlorest==1.4.0 +pluggy==1.2.0 +purl==1.6 +pybtex==0.24.0 +-e git+https://github.com/cldf/pycldf@dc811c0f61bc3df9bea10e56ec47f1fd03ed5bb4#egg=pycldf +pycountry==22.3.5 +-e git+https://github.com/d-place/pydplace@9a94a80bccd7e9d87f0aa50d40252e95fbba2a2c#egg=pydplace +pyglottolog==3.12.0 +pylatexenc==2.10 +pyparsing==3.0.9 +pyproj==3.6.0 +pyrsistent==0.19.3 +pytest==7.2.1 +python-dateutil==2.8.2 +python-frontmatter==1.0.0 +pytz==2022.7.1 +rasterio==1.3.8 +rdflib==6.2.0 +reportlab==3.6.12 +requests==2.28.2 +rfc3986==1.5.0 +scipy==1.11.2 +seaborn==0.12.2 +shapely==2.0.1 +six==1.16.0 +smmap==5.0.0 +soupsieve==2.3.2.post1 +SQLAlchemy==1.4.46 +tabulate==0.9.0 +termcolor==2.2.0 +toyplot==1.0.3 +toytree==2.0.1 +tqdm==4.64.1 +uritemplate==4.1.1 +urllib3==1.26.14 +webencodings==0.5.1 +xlrd==2.0.1 +xyzservices==2023.7.0 +zenodoclient==0.5.0 \ No newline at end of file diff --git a/cldf/societies.csv b/cldf/societies.csv new file mode 100644 index 0000000..c311302 --- /dev/null +++ b/cldf/societies.csv @@ -0,0 +1,1292 @@ +ID,Name,Latitude,Longitude,Glottocode,Name_and_ID_in_source,xd_id,alt_names_by_society,main_focal_year,HRAF_name_ID,HRAF_ID,origLat,origLong,comment,glottocode_comment,region +Aa1,!Kung,-20,21,juho1239,Kung (Aa1),xd1,Kung Bushmen; !Kung (Was Nyae); Was Nyae,1950,San (FX10),FX10,-20,21,Original,,Southern Africa +Ab1,Herero,-21,16,here1253,Herero (Ab1),xd10,Damara; Ovaherero,1900,,,-21,16,Original,,Southern Africa +Ad31,Duruma,-4,39,duru1249,Duruma (Ad31),xd100,Waduruma,1910,,,-4,39,Original,,East Tropical Africa +Ad32,Giriama,-3,40,giry1241,Giriama (Ad32),xd101,Kiriama; Wagiryama,1900,,,-3,40,Original,,East Tropical Africa +Ad33,Pokomo,-1,40,poko1261,Pokomo (Ad33),xd102,Wapokomo,1900,,,-1,40,Original,,East Tropical Africa +Na3,Copper Inuit,69,-110,copp1244,Copper Eskimo (Na3),xd1022,Kitlinermiut; Copper Eskimo,1920,Copper Eskimo (ND08),ND08,69,-110,Original,,Subarctic America +Na22,Iglulik Inuit,70,-82,west2618,Iglulik (Na22),xd1025,Igloolik; Iglulingmiut,1920,,,70,-82,Original,,Subarctic America +Na1,Nabesna,63,-141,uppe1437,Nabesna (Na1),xd1026,Upper Tanana Indians,1930,,,63,-141,Original,,Subarctic America +Na10,Chugach,60.72,-146.49,chug1254,Chugach (Na10),xd1027,Chugachigmiut; Chugash,1930,South Alaskan Eskimo (NA10),NA10,60,-147,Revised,"3Oct2018 Assigned to dialect chug1254 (language does not change) to help differentiate this society from the closely related Koniag, also now mapped to language paci1278.",Subarctic America +Na11,Sivokakmeit,63.34,-170.3,cent2128,Sivokakmeit (Na11),xd1028,St. Lawrence Island Inuit,1920,,,63,-170,Revised,"4Oct2018 - Note that while EA society Na11 has always been linked to xd1028, Binford society B379 was originally linked to xd1020 (and, thus, linked to the dialect poin1245 and language nort2943. The update to Glottolog 3.3.2 forced re-mapping of xd1028 from dialect aiwa1238 (which no longer exists) to language cent2128 (always the language-level match for this xd_id).",Subarctic America +Na12,Nunamiut,68,-152,nort2944,Nunamiut (Na12),xd1029,Inland North Alaskan Eskimo; Nunamiut Eskimo,1950,,,68,-152,Original,"1Oct2018 - mapped to a new dialect (nort2944) of the same language (nort2943). HH: Belongs to language North Alaskan Inupiatun [nort2943] and more specifically to the North Slope Inupiatun [nort2944] dialect. Note that the subdialect to which it was previously mapped (Anaktuvuk Pass, anak1241) does not exist in Glottolog version 3.3.2. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Subarctic America +Ad34,Kamba,-2,38,kamb1297,Kamba (Ad34),xd103,Akamba; Wakamba,1910,,,-2,38,Original,,East Tropical Africa +Na13,Nunatsiarmiut,65.24,-64.63,baff1240,Baffinland (Na13),xd1030,Baffin Island Inuit; Baffinland,1880,,,65,-65,Revised,,Subarctic America +Na14,Inughuit (Northern Greenland),78,-70,pola1254,Polar Eskimo (Na14),xd1031,Polar Eskimo; Arctic Highlanders; Smith Sound Inuit; Smith Sound Eskimo,1880,,,78,-70,Original,"Note 8Feb2018: Glottocode changed to [ike] based on note from HH: ""The Polar Eskimo do not speak a language intelligible to Kalaalisut and had until recent times no contact or knowledge of the Kalaalisut further south. The language is intelligible to North Baffin Inuktitut so Glottolog counts Polar Eskimo as Eastern Canadian Inuktitut [ike]. Furthermore, Oswalt 1963 is listed as a reference to Polar Eskimo but concerns a completely different people in Alaska who speak Yupik-Central [esu].""",Subarctic America +Na15,Tlicho,63,-117,dogr1252,Dogrib (Na15),xd1032,Dogrib,1860,,,63,-117,Original,,Subarctic America +Na16,Délįne,65,-119,nort2942,Satudene (Na16),xd1033,Bear Lake Dene; Satudene; Great Bear Lake People; Sahtu; Sahtu Dene,1860,,,65,-119,Original,,Subarctic America +Na17,DeneTha,61,-120,sout2959,Slave (Na17),xd1034,Slave; Deh Cho (Southern Slavey); Slavey; Dene (distinguish from speakers of the Dene language),1860,,,61,-120,Original,,Subarctic America +Na19,Dakelh,54,-124,carr1249,Carrier (Na19),xd1035,Carrier; Takulli,1880,,,54,-124,Original,,Western Canada +Na2,Tareumiut,71,-157,nort2944,Tareumiut (Na2),xd1036,Tagiumiut; Point Barrow Eskimo; Barrow,1880,,,71,-157,Original,,Subarctic America +Na20,Kutchin,66,-135,gwic1235,Kutchin (Na20),xd1037,Gwich'in; Loucheux,1880,,,66,-135,Original,,Subarctic America +Na21,Caribou Inuit,63,-96,cari1277,Caribou Eskimo (Na21),xd1038,Caribou Eskimo,1900,,,63,-96,Original,,Subarctic America +Na23,Labrador Inuit,58,-65,labr1244,Labrador Eskimo (Na23),xd1039,Sukinninmiut; Labrador Eskimo,1890,,,58,-65,Original,,Eastern Canada +Ad35,Meru,0,35,meru1245,Meru (Ad35),xd104,,1940,,,0,35,Original,"12Nov2018 - changed back to Meru meru1245 [mer], after looking at Murdock's primary sources in more detail. While the latter two refs do focus on the ""Kikuyu"" in general terms, within the Kikuyu they clearly differentiated the Kikuyu and Meru. (Previous note, based on comment from HH: ""8Feb2018 - Note possible mix, refs appear to refer to both kik and mer; kik assigned because majority of references refer to kik. [HH: ""The latter two refs deal with Kikuyu [kik] which is a different lg from Meru [mer]"".]",East Tropical Africa +Na24,Tasiilaq,66,-37,tunu1234,Angmagsalik (Na24),xd1040,Angmagsalik (East Greenland); Ammassalik; East Greenland Eskimo; Polar Eskimo,1880,,,66,-37,Original,Note 8Feb2018: Changed based on note from HH: East Greenlandic is Tunumiisiut [tunu1234] in Glottolog.,Subarctic America +Na25,Kalaallit (West Greenland),68.66,-51.22,kala1399,Greenlanders (Na25),xd1041,West Greenland Eskimo; West Greenland Inuit,1910,,,69,-53,Revised,Note 8Feb2018: Glottocode updated from west2617 to kala1399,Subarctic America +Na26,Dena'ina,62,-144,tana1289,Tanaina (Na26),xd1042,Tanaina,1870,,,62,-144,Original,,Subarctic America +Na27,Tahltan,58,-131,tahl1239,Tahltan (Na27),xd1043,Southwestern Nahane,1870,,,58,-131,Original,,Western Canada +Na28,Sekani,56,-123,seka1250,Sekani (Na28),xd1044,Tsek'ene; Sicauni,1880,,,56,-123,Original,,Western Canada +Na29,Beaver,58,-117,beav1236,Beaver (Na29),xd1045,Denezaa; Tsattine,1850,,,58,-117,Original,,Western Canada +Na30,Dene,60,-105,chip1261,Chipewyan (Na30),xd1046,Chipewyan,1880,Chipewyan (ND07),ND07,60,-105,Original,,Subarctic America +Na31,Eastern Cree,51,-85,sout2978,Eastern Cree (Na31),xd1047,,1850,,,51,-85,Original,,Eastern Canada +Na32,Montagnais,48,-72,mont1268,Montagnais (Na32),xd1048,Innu; Naskapi,1880,Montagnais (NH06),NH06,48,-72,Original,"Note 8Feb2018: Not changed, despite comment from HH: ""Naskapi [nsk] is a different lg from Montagnais [moe]"". KK: Decided to leave, after looking into ethnographic materials: Foci are Lake St. John Band and Mistassini band [see KK notes for geographical extent of their territories]. Speck and Heye (1921): ""[the] Pikwagami (""Flat lake,"" Lake St John), are an interior Montagnais culture intermediate between that of the coast and that of the eastern Naskapi and Mistassini. Therefore, Montagnais [moe] is more appropriate choice. ",Eastern Canada +Na33,Northern Saulteaux,52,-98,alba1270,Northern Saulteaux (Na33),xd1049,N. Saulteaux; North Sauteaux,1870,Ojibwa (NG06),NG06,52,-98,Original,,Western Canada +Ad36,Pare,-4,38,asut1235,Pare (Ad36),xd105,Asu; Wapare,1890,,,-4,38,Original,,East Tropical Africa +Na34,Pekangekum,52,-94,lacs1238,Pekangekum (Na34),xd1050,,1940,Ojibwa (NG06),NG06,52,-94,Original,,Eastern Canada +Na35,Nipigon,50,-88,cent2136,Nipigon (Na35),xd1051,Lake Nipigon Ojibway; Anishinaabek; Southern Saulteaux,1800,Ojibwa (NG06),NG06,50,-88,Original,,Eastern Canada +Na36,Minnesota Ojibwa,49,-96,redl1238,Chippewa (Na36),xd1052,Minnesota Chippewa; Chippewa; Ojibwe; Ojibwa; Ojibway,1860,Ojibwa (NG06),NG06,49,-96,Original,,Western Canada +Na37,Rainy River Ojibwe,49,-92,rain1239,Rainy River (Na37),xd1053,Gojijiwininiwag; Rainy River; Emo,1880,Ojibwa (NG06),NG06,49,-92,Original,,Eastern Canada +Na38,Katikitegon,46,-92,uppe1274,Katikitegon (Na38),xd1054,Wisconsin Ojibwa,1800,,,46,-92,Original,,North-Central U.S.A. +Na39,Eastern Ojibwa,46,-85,east2542,Eastern Ojibwa (Na39),xd1055,Kitchibuan; Kitchibuan Ojibwa; Kitchibaun Ojibwa,1870,Ojibwa (NG06),NG06,46,-85,Original,,Northeastern U.S.A. +Na4,Kaska,59,-128,kask1239,Kaska (Na4),xd1056,Nahane,1920,Kaska (ND12),ND12,59,-128,Original,,Western Canada +Na40,Ottawa,46,-82,otta1242,Ottawa (Na40),xd1057,Odawa; Odaawaa,1650,,,46,-82,Original,,Eastern Canada +Na41,Mi'kmaq,47,-65,mikm1235,Micmac (Na41),xd1058,Micmac,1700,Mi'kmaq (NJ05),NJ05,47,-65,Original,,Eastern Canada +Na42,Potawatomi,44,-85,pota1247,Potawatomi (Na42),xd1059,Neshnabé,1760,,,44,-85,Original,,Northeastern U.S.A. +Ad37,Teita,-4,39,tait1250,Teita (Ad37),xd106,Taita; Wateita,1940,,,-4,39,Original,,East Tropical Africa +Na43,Netsilik,69,-96,nets1241,Netsilik (Na43),xd1060,Netsilik Inuit; Netsilik Eskimo,1920,,,69,-96,Original,,Subarctic America +Na44,Nunavimmiut,62,-76,queb1248,Taqagmiut (Na44),xd1061,Taqagmiut; Taqagmiut Eskimo; Inuit of Sugluk; Inuit of Salluit,1910,,,62,-76,Original,,Eastern Canada +Na45,Mistissini Cree,51.75,-72.66,sout2978,Mistassini (Na45),xd1062,Mistassini Cree,1900,,,51.75,-72.66,Revised,,Eastern Canada +Na5,Naskapi,58,-70,nask1242,Naskapi (Na5),xd1063,,1890,Montagnais (NH06),NH06,58,-70,Original,,Eastern Canada +Na6,Nunivak,60,-166,kusk1241,Nunivak (Na6),xd1064,Nunivak Cup'ig,1930,,,60,-166,Original,,Subarctic America +Na7,Attawapiskat Cree,53,-83,swam1239,Cree Attawapiskat (Na7),xd1065,Attawapiskat,1900,,,53,-83,Original,,Eastern Canada +Na8,Deg Xit'an,62,-160,dege1248,Ingalik (Na8),xd1066,Ingalik,1880,Ingalik (NA08),NA08,62,-160,Original,,Subarctic America +Na9,Aleut,53.86,-166.79,east2533,Aleut (Na9),xd1067,Unagan,1830,Aleut (NA06),NA06,54,-167,Revised,,Subarctic America +Nb1,Haida,54,-132,nort2938,Haida (Nb1),xd1068,,1890,,,54,-132,Original,,Western Canada +Nb10,Alkatcho,53,-126,sout2958,Alkatcho (Nb10),xd1069,Tsuu'Tina; Alkatcho Carrier; Ilgatcho; Ilgachuz,1865,,,53,-126,Original,,Western Canada +Ad38,Kara,-2,33,kara1481,Kara (Ad38),xd107,Wakara,1910,,,-2,33,Original,,East Tropical Africa +Nb11,Nuu chah nulth,49.16,-125.85,nuuc1236,Nootka (Nb11),xd1070,Nuu-chah-nulth; Aht; Central Nootka,1880,Nuu-chah-nulth (NE11),NE11,49,-126,Revised,,Western Canada +Nb12,Klahoose,51,-125,slia1241,Klahuse (Nb12),xd1071,Klahuse,1880,,,51,-125,Original,,Western Canada +Nb13,Squamish,50,-123,squa1248,Squamish (Nb13),xd1072,,1880,,,50,-123,Original,,Western Canada +Nb14,Comox,49.72,-124.97,isla1276,Comox (Nb14),xd1073,K'ómoks,1880,,,50,-125,Revised,,Western Canada +Nb15,Lummi,48.84,-123.27,lumm1243,Lummi (Nb15),xd1074,Lhaq'temish,1880,,,49,-123,Revised,,Western Canada +Nb16,Klallam,48,-123,clal1241,Klallam (Nb16),xd1075,Clallum,1860,,,48,-123,Original,,Northwestern U.S.A. +Nb17,Puyallup,47,-122,sout2965,Puyallup (Nb17),xd1076,,1870,,,47,-122,Original,,Northwestern U.S.A. +Nb18,Quileute,47.91,-124.59,quil1240,Quileute (Nb18),xd1077,,1880,,,48,-125,Revised,,Northwestern U.S.A. +Nb19,Lower Chinook,45.99,-123.77,chin1286,Chinook (Nb19),xd1078,Chinook,1850,Chinookans of the Lower Columbia River (NR06),NR06,46,-124,Revised,,Northwestern U.S.A. +Nb2,Twana,48,-123,twan1247,Twana (Nb2),xd1079,,1850,,,48,-123,Original,,Northwestern U.S.A. +Ad39,Sonjo,-3,36,temi1247,Sonjo (Ad39),xd108,,1950,,,-3,36,Original,,East Tropical Africa +Nb20,Tillamook,44.75,-123.72,till1254,Tillamok (Nb20),xd1080,Nehalem,1870,,,45,-124,Revised,,Northwestern U.S.A. +Nb21,Coos,43,-124,coos1249,Coos (Nb21),xd1081,,1860,,,43,-124,Original,,Northwestern U.S.A. +Nb22,Tlingit,58.12,-133.92,tlin1245,Tlingit (Nb22),xd1082,Kolosh; Southern Tlingit,1880,Tlingit (NA12),NA12,58,-134,Revised,"9May2019 - preferred name changed to distinguish from eHRAF culture West Tibetans. Note northern and southern tlingit considered distinct dialects of tli by some, but no codes available in Glottolog.",Subarctic America +Nb23,Heiltsuk,52,-128,bell1263,Bellabella (Nb23),xd1083,Bellabella; Bella Bella,1880,,,52,-128,Original,,Western Canada +Nb24,Makah,48.33,-124.62,maka1318,Makah (Nb24),xd1084,,1860,Nootka (NE11),NE11,48,-125,Revised,,Northwestern U.S.A. +Nb25,Quinault,47.42,-124.16,quin1251,Quinault (Nb25),xd1085,,1860,Quinault (NR17),NR17,47,-124,Revised,,Northwestern U.S.A. +Nb26,Cowichan,49.01,-122.73,cowi1241,Cowichan (Nb26),xd1086,Hul'q'umi'num Mustimuhw,1880,,,49,-123,Revised,,Western Canada +Nb27,Stó:lō,49,-122,chil1281,Stalo (Nb27),xd1087,Stalo; Halkomelem; Fraser River Cowichan,1880,,,49,-122,Original,,Western Canada +Nb28,Alsea,44,-124,alse1251,Alsea (Nb28),xd1088,,1860,,,44,-124,Original,,Northwestern U.S.A. +Nb29,Siuslaw,44,-124,sius1254,Siuslaw (Nb29),xd1089,,1860,,,44,-124,Original,,Northwestern U.S.A. +Ad4,Kikuyu,-1,37,kiku1240,Kikuyu (Ad4),xd109,Aikikuyu,1930,Gikuyu (FL10),FL10,-1,37,Original,,East Tropical Africa +Nb3,Kwakwaka'wakw,51,-127.49,kwak1269,Kwakiutl (Nb3),xd1090,Southern Kwakiutl; Kwagu'ł; Kwagyewlth,1890,,,51,-128,Revised,,Western Canada +Nb30,Takelma,42,-123,take1257,Takelma (Nb30),xd1091,Rogue River Indians; Tekelma,1860,,,42,-123,Original,,Northwestern U.S.A. +Nb31,Tututni,42,-124,tutu1242,Tututni (Nb31),xd1092,,1870,,,42,-124,Original,,Northwestern U.S.A. +Nb32,Shasta,41,-122,shas1239,Shasta (Nb32),xd1093,,1860,,,41,-122,Original,,Southwestern U.S.A. +Nb33,Chimariko,41,-123,chim1301,Chimariko (Nb33),xd1094,,1860,,,41,-123,Original,,Southwestern U.S.A. +Nb34,Karuk,42,-123,karo1304,Karok (Nb34),xd1095,Karok,1860,,,42,-123,Original,,Northwestern U.S.A. +Nb35,Hupa,41,-123,hupa1239,Hupa (Nb35),xd1096,,1860,,,41,-123,Original,,Southwestern U.S.A. +Nb36,Wiyot,39.81,-123.55,wiyo1248,Wiyot (Nb36),xd1097,,1860,,,40,-124,Revised,,Southwestern U.S.A. +Nb37,Lassik,40,-123,wail1244,Lassik (Nb37),xd1098,,1860,,,40,-123,Original,"Note, Nongatl, Sinkyone and Lassik considered distinct dialects of wlk by some, but glottolog does not provide dialect identifiers",Southwestern U.S.A. +Nb38,Mattole-Bear River,40.35,-123.47,matt1238,Mattole (Nb38),xd1099,Mattole; Bear River,1860,,,40,-124,Revised,,Southwestern U.S.A. +Ab10,Pondo Xhosa,-31,30,mpon1252,Pondo (Ab10),xd11,Amapondo; Mpondo,1936,,,-31,30,Original,,Southern Africa +Ad40,Tiriki,0,35,idak1243,Tiriki (Ad40),xd110,,1950,,,0,35,Original,,East Tropical Africa +Nb39,Sinkyone,39.73,-123.6,wail1244,Sinkyone (Nb39),xd1100,,1860,,,40,-124,Revised,"Note, Nongatl, Sinkyone and Lassik considered distinct dialects of wlk by some, but glottolog does not provide dialect identifiers",Southwestern U.S.A. +Nb4,Yurok,41,-124,yuro1248,Yurok (Nb4),xd1101,,1850,Yurok (NS31),NS31,41,-124,Original,,Southwestern U.S.A. +Nb5,Eyak,60.34,-144.85,eyak1241,Eyak (Nb5),xd1102,dAXunhyuu,1890,,,60,-145,Revised,,Subarctic America +Nb6,Tolowa,42,-124,tolo1259,Tolowa (Nb6),xd1103,,1870,,,42,-124,Original,,Northwestern U.S.A. +Nb7,Tsimshian,54.64,-130.25,nucl1649,Tsimshian (Nb7),xd1104,Ts’msyan,1880,,,55,-130,Revised,,Western Canada +Nb8,Haisla,54,-129,hais1244,Haisla (Nb8),xd1105,Kitimat,1880,,,54,-129,Original,,Western Canada +Nb9,Nuxalk,52,-127,bell1243,Bellacoola (Nb9),xd1106,Nuxalkmc; Bellacoola; Bilqula; Bella Coola,1880,Nuxalk (NE06),NE06,52,-127,Original,,Western Canada +Nc1,Nomlaki,39,-122,noml1242,Nomlaki (Nc1),xd1107,Central Wintun,1850,,,39,-122,Original,Changed 15Nov2016 to differentiate Nomlaki from Wintu,Southwestern U.S.A. +Nc10,Achumawi,41,-121,achu1247,Achomawi (Nc10),xd1108,Achomawi,1860,,,41,-121,Original,,Southwestern U.S.A. +Nc11,Yana,41,-122,yana1271,Yana (Nc11),xd1109,Nozi,1860,,,41,-122,Original,,Southwestern U.S.A. +Ad41,Vugusu,1,35,buku1249,Vugusu (Ad41),xd111,Kotosh,1930,,,1,35,Original,,East Tropical Africa +Nc12,Maidu,40,-121,nort2952,Maidu (Nc12),xd1110,Pujunan,1850,,,40,-121,Original,,Southwestern U.S.A. +Nc13,Nisenan,39,-121,nise1244,Nisenan (Nc13),xd1111,Southern Maidu; Nisenan Southern Maidu,1850,,,39,-121,Original,,Southwestern U.S.A. +Nc14,Wintu,41,-122,nucl1651,Wintu (Nc14),xd1112,Northern Wintu,1860,,,41,-122,Original,Changed 15Nov2016 to differentiate Nomlaki from Wintu,Southwestern U.S.A. +Nc15,Coast Yuki,39.34,-123.77,yuki1243,Coast Yuki (Nc15),xd1113,,1860,Yuki (NS30),NS30,39,-124,Revised,,Southwestern U.S.A. +Nc16,Huchnom,39,-123,yuki1243,Huchnom (Nc16),xd1114,,1860,,,39,-123,Original,,Southwestern U.S.A. +Nc17,Northern Pomo,39,-123,nort2966,Northern Pomo (Nc17),xd1115,,1860,Pomo (NS18),NS18,39,-123,Original,,Southwestern U.S.A. +Nc18,Eastern Pomo,39,-123,east2545,Eastern Pomo (Nc18),xd1116,Clear Lake Pomo; Eastern Pomo,1860,Pomo (NS18),NS18,39,-123,Original,,Southwestern U.S.A. +Nc19,Southern Pomo,38.55,-122.94,sout2984,Southern Pomo (Nc19),xd1117,Southern Pomo,1860,Pomo (NS18),NS18,38,-123,Revised,,Southwestern U.S.A. +Nc2,Tübalulabal,39,-118,tuba1278,Tubatulabal (Nc2),xd1118,Tubatulabal,1850,Tubatulabal (NS22),NS22,39,-118,Original,,Southwestern U.S.A. +Nc20,Wappo,38.22,-122.56,wapp1239,Wappo (Nc20),xd1119,,1860,,,38,-123,Revised,,Southwestern U.S.A. +Ad42,Haya,-1,32,haya1250,Haya (Ad42),xd112,Basiba; Wahaya; Wassiba; Ziba,1900,,,-1,32,Original,"Note 8Feb2018: HH notes that the Weiss ethnography (1 of 5 references) refers to Wahima and Wanjambo, which are Kinyarwanda [kin] and Nyambo [now] respectively -- ""close to, but not the same lg as Haya [hay]"". However, given that Haya appears to be the focus of the other ethnographies, I will leave the language match as [hay]. Users may wish to look into individual data points in detail, to ensure they refer to the focal group.",East Tropical Africa +Nc21,Lake Miwok,38.75,-123.2,lake1258,Lake Miwok (Nc21),xd1120,,1860,,,38,-123,Revised,,Southwestern U.S.A. +Nc22,Patwin,39,-122,patw1250,Patwin (Nc22),xd1121,Southern Wintun,1850,,,39,-122,Original,,Southwestern U.S.A. +Nc23,Western Mono,37,-119,mono1275,Monachi (Nc23),xd1122,Monachi; Western Mono; Monache,1870,,,37,-119,Original,,Southwestern U.S.A. +Nc24,Southern Valley Yokuts,36,-120,vall1251,Lake Yokuts (Nc24),xd1123,Lake Yokuts; Tachi Yokuts; Chunut Yokuts,1860,Yokuts (NS29),NS29,36,-120,Original,,Southwestern U.S.A. +Nc25,Wukchumni,36,-119,tule1245,Wukchumni (Nc25),xd1124,Central Foothills Yokuts,1860,Yokuts (NS29),NS29,36,-119,Original,,Southwestern U.S.A. +Nc26,Salinan,36,-121,sali1253,Salinan (Nc26),xd1125,,1770,,,36,-121,Original,,Southwestern U.S.A. +Nc27,Kawaiisu,35,-118,kawa1283,Kawaiisu (Nc27),xd1126,Kawaiisu Shoshoni,1860,,,35,-118,Original,,Southwestern U.S.A. +Nc28,Chumash,34.44,-119.71,cruz1243,Chumash (Nc28),xd1127,,1800,,,34,-120,Revised,,Southwestern U.S.A. +Nc29,Tongva,34,-118,tong1329,Gabrielo (Nc29),xd1128,Gabrielo; Gabrielino; Gabrieleno,1770,,,34,-118,Original,,Southwestern U.S.A. +Nc3,Northern Foothill Yokuts,36,-120,nort2937,Yokuts (Nc3),xd1129,Yokuts,1850,Yokuts (NS29),NS29,36,-120,Original,,Southwestern U.S.A. +Ad43,Kerewe,-3,33,kere1283,Kerewe (Ad43),xd113,Bakerewe; Wakerewe,1900,,,-3,33,Original,,East Tropical Africa +Nc30,Serrano,34,-117,serr1255,Serrano (Nc30),xd1130,,1870,,,34,-117,Original,,Southwestern U.S.A. +Nc31,Cahuilla (Desert),33,-116,cahu1264,Cahuilla (Nc31),xd1131,Desert Cahuilla,1870,,,33,-116,Original,"Note, three Cahuilla Dialects (Mountain, Pass, Desert) are recognized by some, but Glottolog does not list any dialects",Southwestern U.S.A. +Nc32,Cupeño,33,-117,cupe1243,Cupeno (Nc32),xd1132,Kuupangaxwichem; Cupeno,1870,,,33,-117,Original,,Southwestern U.S.A. +Nc33,Luiseño,33,-117,luis1253,Luiseno (Nc33),xd1133,Payómkawichum; Luiseno,1860,,,33,-117,Original,,Southwestern U.S.A. +Nc34,Kiliwa,31,-115,kili1268,Kiliwa (Nc34),xd1134,K'olew,1880,,,31,-115,Original,,Mexico +Nc4,Atsugewi,41,-121,atsu1245,Atsugewi (Nc4),xd1135,,1860,,,41,-121,Original,,Southwestern U.S.A. +Nc5,Central Sierra Miwok,38,-120,cent2140,Miwok (Nc5),xd1136,Miwok,1850,,,38,-120,Original,,Southwestern U.S.A. +Nc6,Kumeyaay,32,-116,kumi1248,Diegueno (Nc6),xd1137,Diegueño; Diegueno,1850,,,32,-116,Original,"Note, previously tipa1240 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)",Mexico +Nc7,Yuki,40,-123,yuki1243,Yuki (Nc7),xd1138,,1850,Yuki (NS30),NS30,40,-123,Original,,Southwestern U.S.A. +Nc8,Klamath,43,-122,klam1254,Klamath (Nc8),xd1139,,1860,Klamath (NR10),NR10,43,-122,Original,,Northwestern U.S.A. +Ad44,Konjo,-1,30,konz1239,Konjo (Ad44),xd114,,1920,,,-1,30,Original,,East Tropical Africa +Nc9,Modoc,42,-122,klam1254,Modoc (Nc9),xd1140,,1860,,,42,-122,Original,,Northwestern U.S.A. +Nd1,Tenino,45,-121,teni1238,Tenino (Nd1),xd1141,Warmsprings Sahaptin; Yenino,1850,,,45,-121,Original,,Northwestern U.S.A. +Nd10,Nlaka'pamux,50,-122,thom1243,Thompson (Nd10),xd1142,Thompson; Nitlakapamuk; Thompson River Salish,1860,,,50,-122,Original,,Western Canada +Nd11,Shuswap,51,-120,shus1248,Shuswap (Nd11),xd1143,Secwepemc,1850,,,51,-120,Original,,Western Canada +Nd12,Bitterroot Salish,46,-113,kali1309,Flathead (Nd12),xd1144,Salish; Flathead,1860,Southeast (NR19),NR19,46,-113,Original,,Northwestern U.S.A. +Nd13,Kalispel,49,-117,kali1309,Kalispel (Nd13),xd1145,,1860,Southeast (NR19),NR19,49,-117,Original,,Western Canada +Nd14,Coeur d’Alene,48,-117,coeu1236,Coeur d’Alene (Nd14),xd1146,Schitsu'umsh; Skitswish,1860,Southeast (NR19),NR19,48,-117,Original,,Northwestern U.S.A. +Nd15,Sinkaitk,49,-120,sout2963,Sinkaitk (Nd15),xd1147,Southern Okanagon,1880,Southeast (NR19),NR19,49,-120,Original,,Western Canada +Nd16,Wenatchi,48,-121,wena1241,Wenatchi (Nd16),xd1148,,1870,,,48,-121,Original,,Northwestern U.S.A. +Nd17,Klikitat,46,-122,nucl1237,Klikitat (Nd17),xd1149,Yakima,1870,,,46,-122,Original,,Northwestern U.S.A. +Ad45,Nyankole,0,31,nyan1307,Nyankole (Ad45),xd115,Banyankole,1920,,,0,31,Original,,East Tropical Africa +Nd18,Wishram,46,-121,wasc1239,Wishram (Nd18),xd1150,,1860,,,46,-121,Original,,Northwestern U.S.A. +Nd19,Umatilla,46,-119,umat1237,Umatilla (Nd19),xd1151,,1860,,,46,-119,Original,,Northwestern U.S.A. +Nd2,Southern Ute,38,-109,utee1244,Southern Ute (Nd2),xd1152,Wimonuntci; Weminute; Wimonantci Ute,1860,Ute (NT19),NT19,38,-109,Original,,Northwestern U.S.A. +Nd20,Nez Perce,45,-115,nezp1238,Nez Perce (Nd20),xd1153,Nimi'ipuu; Sahaptin,1850,,,45,-115,Original,,Northwestern U.S.A. +Nd21,Tagotoka,43,-117,nort1551,Tagotoka (Nd21),xd1154,Duck Valley Paiute,1870,,,43,-117,Original,,Northwestern U.S.A. +Nd22,Wadadokado,43,-119,nort1551,Wadadokado (Nd22),xd1155,Paiute; Northern Paiute,1870,Northern Paiute (NR13),NR13,43,-119,Original,,Northwestern U.S.A. +Nd23,Atsakudokwa,42,-118,nort1551,Atsakudokwa (Nd23),xd1156,Quinn River Paiute,1870,,,42,-118,Original,,Northwestern U.S.A. +Nd24,Kidutokado,42,-120,nort1551,Kidutokado (Nd24),xd1157,Gididika; Surprise Valley Paiute,1870,Northern Paiute (NR13),NR13,42,-120,Original,,Northwestern U.S.A. +Nd25,Sawakudokwa,41,-118,nort1551,Sawakudokwa (Nd25),xd1158,Winnemucca Paiute,1870,,,41,-118,Original,,Southwestern U.S.A. +Ad46,Soga,1,33,soga1242,Soga (Ad46),xd116,Basoga,1950,,,1,33,Original,,East Tropical Africa +Nd27,Kuyuidokado,40,-119,sout2967,Kuyuidokado (Nd27),xd1160,Pyramid Lake Paiute,1860,Northern Paiute (NR13),NR13,40,-119,Original,,Southwestern U.S.A. +Nd28,Toedokado,40,-118,sout2967,Toedokado (Nd28),xd1161,Stillwater Paiute; Cattail Paiute,1870,,,40,-118,Original,,Southwestern U.S.A. +Nd29,Tunava (Deep Springs and Fish Lake),37,-118,mono1275,Tunava (Nd29),xd1162,Deep Springs Valley Paiute; Fish Lake Valley Paiute,1870,,,37,-118,Original,,Southwestern U.S.A. +Nd3,Havasupai,36,-112,hava1249,Havasupai (Nd3),xd1163,Plateau Yuma,1870,Plateau Yumans (NT14),NT14,36,-112,Original,,Southwestern U.S.A. +Nd30,Eastern Mono,37,-118,mono1275,Eastern Mono (Nd30),xd1164,Owens Valley Paiute,1870,,,37,-118,Original,,Southwestern U.S.A. +Nd31,Koso,36,-118,pana1305,Koso (Nd31),xd1165,Western Panamint; Koso Mountain Shoshoni; Little Lake Shoshoni,1850,Western (NT22),NT22,36,-118,Original,,Southwestern U.S.A. +Nd32,Tümpisa Shoshone (Saline and Panamint),36,-117,pana1305,Panamint (Nd32),xd1166,Panamint Shoshoni; Panamint; Saline Valley Shoshoni,1850,Western (NT22),NT22,36,-117,Original,,Southwestern U.S.A. +Nd33,Beatty,37,-116,pana1305,Beatty (Nd33),xd1167,Eastern Panamint; Beatty Shoshoni; Belted Range Shoshoni,1870,,,37,-116,Original,,Southwestern U.S.A. +Nd34,Lida Shoshoni,37,-117,west2622,Lida Shoshoni (Nd34),xd1168,,1870,Western (NT22),NT22,37,-117,Original,,Southwestern U.S.A. +Nd35,Mahaguaduka,39,-117,west2622,Mahaguaduka (Nd35),xd1169,Reese River Shoshoni,1870,Western (NT22),NT22,39,-117,Original,,Southwestern U.S.A. +Ad47,Sumbwa,-4,32,sumb1240,Sumbwa (Ad47),xd117,,1900,,,-4,32,Original,,East Tropical Africa +Nd36,Wiyambituka,39,-117,west2622,Wiyambituka (Nd36),xd1170,Morey Shoshoni; Great Smokey Valley Shoshoni; Little Smokey Valley Shoshoni,1870,Western (NT22),NT22,39,-117,Original,,Southwestern U.S.A. +Nd37,Railroad Valley Shoshoni,39,-116,west2622,Hamilton (Nd37),xd1171,Hamilton,1870,Western (NT22),NT22,39,-116,Original,,Southwestern U.S.A. +Nd38,Ely Shoshoni,39,-115,west2622,Ely Shoshoni (Nd38),xd1172,,1870,Western (NT22),NT22,39,-115,Original,,Southwestern U.S.A. +Nd4,Sanpoil,48,-119,sanp1257,Sanpoil (Nd4),xd1174,,1870,Southeast (NR19),NR19,48,-119,Original,,Northwestern U.S.A. +Nd40,Tubaduka,40,-113,west2622,Tubaduka (Nd40),xd1175,Grouse Creek Shoshoni,1870,,,40,-113,Original,,Southwestern U.S.A. +Nd41,Wadaduka,41,-116,west2622,Wadaduka (Nd41),xd1176,Ruby Valley Shoshoni; Pine Creek Shoshoni; Diamond Valley Shoshoni; Egan Canyon Shoshoni,1870,,,41,-116,Original,,Southwestern U.S.A. +Nd42,Elko Shoshoni,41,-116,west2622,Elko Shoshoni (Nd42),xd1177,Upper Humboldt River Shoshoni,1870,,,41,-116,Original,,Southwestern U.S.A. +Nd43,White Knife Shoshoni,41,-117,west2622,White Knife (Nd43),xd1178,Battle Mountain Shoshoni; Tosawihi,1860,,,41,-117,Original,,Southwestern U.S.A. +Nd44,Yahanduka,42,-115,west2622,Yahanduka (Nd44),xd1179,Snake River Shoshoni,1850,,,42,-115,Original,,Northwestern U.S.A. +Ad48,Toro,1,31,toor1238,Toro (Ad48),xd118,Batoro,1950,,,1,31,Original,,East Tropical Africa +Nd45,Bohogue,43,-112,nort2955,Bohogue (Nd45),xd1180,Fort Hall Shoshoni,1860,,,43,-112,Original,,Northwestern U.S.A. +Nd47,Tukudika,44,-111,nort2955,Tukudika (Nd47),xd1181,Sheep-Eater Shoshoni; Lemhi Mountain Shoshoni,1850,,,44,-111,Original,,Northwestern U.S.A. +Nd46,Agaiduka,44,-112,nort2955,Agaiduka (Nd46),xd1182,Salmon-Eater Shoshoni; Lemhi River Shoshoni,1860,,,44,-112,Original,,Northwestern U.S.A. +Nd48,Gosiute,40,-114,gosi1242,Gosiute (Nd48),xd1183,Gosiute Shoshoni; Deep Creek Shoshoni,1860,Western (NT22),NT22,40,-114,Original,,Southwestern U.S.A. +Nd49,Antarianunts,37,-110,utee1244,Antarianunts (Nd49),xd1184,Henry Mountains Paiute; Kaiparowits,1860,,,37,-110,Original,,Southwestern U.S.A. +Nd5,Hukundika,42,-112,nort2955,Hukundika (Nd5),xd1185,Seed-Eaters; Northern Shoshoni; Hukunduka; Hukuniduica,1870,,,42,-112,Original,,Northwestern U.S.A. +Nd50,Panguitch,38,-112,utee1244,Panguitch (Nd50),xd1186,,1860,,,38,-112,Original,,Southwestern U.S.A. +Nd51,Moapa,36,-115,sout2969,Moapa (Nd51),xd1187,Muddy Paiute; Parano,1860,,,36,-115,Original,,Southwestern U.S.A. +Nd52,Shivwits,36,-117,sout2969,Shivwits (Nd52),xd1188,Suwuntsu (St. George); Suwuntsu; St. George; Gunlock; Uinkaret; Southern Paiute,1860,,,36,-117,Original,,Southwestern U.S.A. +Nd53,Southern Paiute (Kaibab),36,-113,sout2969,Kaibab (Nd53),xd1189,Kaivavwits; Southern Paiute; Kaipapicicimi; Kaibabits,1860,,,36,-113,Original,,Southwestern U.S.A. +Nd55,Southern Paiute (Las Vegas),36,-115,sout2969,Las Vegas (Nd55),xd1189,Las Vegas; Southern Paiute,1860,,,36,-115,Original,,Southwestern U.S.A. +Ad49,Zinza,-3,31,zinz1238,Zinza (Ad49),xd119,Basindja,1950,,,-3,31,Original,,East Tropical Africa +Nd54,Chemehuevi,35,-115,chem1251,Chemehuevi (Nd54),xd1190,Colorado River Reservation,1860,Southern (NT16),NT16,35,-115,Original,,Southwestern U.S.A. +Nd56,San Juan,36,-111,sout2969,San Juan (Nd56),xd1192,Kwaanitikwokets,1860,,,36,-111,Original,,Southwestern U.S.A. +Nd57,Pahvant,39,-113,utee1244,Pahvant (Nd57),xd1193,Sevier Desert Ute,1860,,,39,-113,Original,,Southwestern U.S.A. +Nd58,Uintah Ute,40,-112,utee1244,Uintah (Nd58),xd1194,Tompanowots; Yampa,1860,,,40,-112,Original,,Southwestern U.S.A. +Nd59,Moanunts,39,-112,utee1244,Moanunts (Nd59),xd1195,Noanunts,1860,,,39,-112,Original,,Southwestern U.S.A. +Nd6,Washo,39,-120,wash1253,Washo (Nd6),xd1196,,1850,Washo (NT20),NT20,39,-120,Original,,Southwestern U.S.A. +Nd60,Moache,37,-105,utee1244,Moache (Nd60),xd1197,Moache Ute; Mowatei,1860,,,37,-105,Original,,Northwestern U.S.A. +Nd61,Taviwatsiu,40,-105,utee1244,Taviwatsiu (Nd61),xd1198,White River Ute,1860,,,40,-105,Original,,Northwestern U.S.A. +Nd62,Uncompahgre Ute,39,-107,utee1244,Uncompahgre (Nd62),xd1199,Mowataviwatsiu,1860,,,39,-107,Original,,Northwestern U.S.A. +Ab11,Xhosa Ngqika,-32.89,27.91,xesi1238,Xhosa (Ab11),xd12,amaXhosa; Amakosa; Kaffirs; Xosa,1850,,,-33,28,Revised,,Southern Africa +Ad5,Mbugwe,-4,36,mbug1242,Mbugwe (Ad5),xd120,Wambugwe,1940,,,-4,36,Original,,East Tropical Africa +Nd63,Bannock,43,-112,bann1248,Bannock (Nd63),xd1200,Eastern Bannock,1860,,,43,-112,Original,,Northwestern U.S.A. +Nd64,Wind River Eastern Shoshone,43,-109,nort2955,Wind River (Nd64),xd1201,Wind River; Eastern Shoshoni; Kucundika; Buffalo Hunters; Buffalo-Eater,1860,,,43,-109,Original,,Northwestern U.S.A. +Nd65,Hualapai,36,-114,wala1270,Walapai (Nd65),xd1202,Walapai,1870,,,36,-114,Original,,Southwestern U.S.A. +Nd66,Yavapai,35,-112,yava1252,Yavapai (Nd66),xd1203,Apache-Mojave,1870,,,35,-112,Original,,Southwestern U.S.A. +Nd67,Tolkepaya,34,-114,yava1252,Tolkepaya (Nd67),xd1204,Apache-Yuma; Western Yavapai,1870,,,34,-114,Original,,Southwestern U.S.A. +Nd7,Kutenai,50,-117,kute1249,Kutenai (Nd7),xd1205,Ktunaxa; Kootenay; Kootenai,1880,,,50,-117,Original,,Western Canada +Nd8,Chilcotin,52,-122,chil1280,Chilcotin (Nd8),xd1206,Tsilhqot'in,1880,,,52,-122,Original,,Western Canada +Nd9,Lillooet,50.02,-124.78,lill1248,Lillooet (Nd9),xd1207,St'at'imc; Stlatlum,1860,,,50,-125,Revised,,Western Canada +Ne1,Gros Ventre,48.78,-108.98,gros1243,Gros Ventre (Ne1),xd1208,A'ani; A'aninin; Haaninin,1880,Gros Ventre (NQ13),NQ13,49,-109,Revised,,Northwestern U.S.A. +Ne10,Arikara,46,-101,arik1262,Arikara (Ne10),xd1209,Sahnish; Ree,1860,,,46,-101,Original,,North-Central U.S.A. +Ad50,Kaguru,-6,37,kagu1239,Kaguru (Ad50),xd121,,1900,,,-6,37,Original,,East Tropical Africa +Ne11,Assiniboine,48,-106,assi1247,Assiniboin (Ne11),xd1210,Hohe; Nakota; Stoney,1870,Assiniboine (NF04),NF04,48,-106,Original,,Northwestern U.S.A. +Ne12,Blackfoot,51,-112,pieg1239,Blackfoot (Ne12),xd1211,Siksika,1850,Blackfoot (NF06),NF06,51,-112,Original,,Western Canada +Ne13,Kainai,51,-115,bloo1239,Blood (Ne13),xd1212,Blood; Kainah; Blood Tribe,1850,Blackfoot (NF06),NF06,51,-115,Original,,Western Canada +Ne14,Bungi,51,-100,west1510,Bungi (Ne14),xd1213,Plains Ojibwa; Bungee; Manitoba Saulteaux; Ojibway; Ojibwe,1850,Ojibwa (NG06),NG06,51,-100,Original,,Western Canada +Ne15,Hidatsa,47,-101,hida1246,Hidatsa (Ne15),xd1214,,1860,,,47,-101,Original,,North-Central U.S.A. +Ne16,Karankawa,29,-96,kara1289,Karankawa (Ne16),xd1215,,1800,,,29,-96,Original,,South-Central U.S.A. +Ne17,Kiowa,36,-99,kiow1266,Kiowa (Ne17),xd1216,,1860,,,36,-99,Original,,North-Central U.S.A. +Ne18,Piegan,49,-115,pieg1239,Piegan (Ne18),xd1217,Pikuni,1850,Blackfoot (NF06),NF06,49,-115,Original,,Western Canada +Ne19,Plains Cree,45,-94,plai1258,Plains Cree (Ne19),xd1218,,1850,,,45,-94,Original,,North-Central U.S.A. +Ne2,Kiowa Apache,36,-99,kiow1264,Kiowa Apache (Ne2),xd1219,Naisha Dene; Na'isha,1870,,,36,-99,Original,,North-Central U.S.A. +Ad51,Ngulu,-6,38,ngul1246,Ngulu (Ad51),xd122,Nguru; Wanguru,1930,,,-6,38,Original,,East Tropical Africa +Ne20,Santee,45,-94,dako1258,Santee (Ne20),xd1220,Isanti; Eastern Dakota,1850,,,45,-94,Original,,North-Central U.S.A. +Ne21,Coahuilteco,29,-99,coah1252,Coahuilteco (Ne21),xd1221,,1760,,,29,-99,Original,,South-Central U.S.A. +Ne3,Comanche,33,-100,coma1245,Comanche (Ne3),xd1222,,1870,Comanche (NO06),NO06,33,-100,Original,,South-Central U.S.A. +Ne4,Crow,45,-108,crow1244,Crow (Ne4),xd1223,Apsaalooké,1870,Crow (NQ10),NQ10,45,-108,Original,,Northwestern U.S.A. +Ne5,Cheyenne,39,-104,chey1247,Cheyenne (Ne5),xd1224,,1860,,,39,-104,Original,,Northwestern U.S.A. +Ne6,Mandan,47,-101,mand1446,Mandan (Ne6),xd1225,,1830,Mandan (NQ17),NQ17,47,-101,Original,,North-Central U.S.A. +Ne7,Sarcee,54,-110,sars1236,Sarsi (Ne7),xd1226,Tsuu; Sarci,1880,,,54,-110,Original,,Western Canada +Ne8,Teton,43,-103,lako1247,Teton (Ne8),xd1227,,1870,,,43,-103,Original,,North-Central U.S.A. +Ne9,Arapaho,40,-103,arap1274,Arapaho (Ne9),xd1228,Hinono'eiteen; Arapahoe,1860,Arapaho (NQ06),NQ06,40,-103,Original,,Northwestern U.S.A. +Ad6,Nyakyusa,-9,34,nyak1261,Nyakyusa (Ad6),xd123,,1930,Nyakyusa and Ngonde (FN17),FN17,-9,34,Original,,East Tropical Africa +Nf10,Iowa,41,-95,iowa1246,Iowa (Nf10),xd1230,Bah Kho-je; Baxoje,1870,,,41,-95,Original,,North-Central U.S.A. +Nf11,Otoe,40,-95,otoo1241,Oto (Nf11),xd1231,Oto,1870,,,40,-95,Original,,North-Central U.S.A. +Nf12,Ponca,43,-99,ponc1241,Ponca (Nf12),xd1232,,1850,Dhegiha (NQ12),NQ12,43,-99,Original,,North-Central U.S.A. +Nf13,Shawnee,37,-85,shaw1249,Shawnee (Nf13),xd1233,,1820,,,37,-85,Original,,Southeastern U.S.A. +Nf14,Caddo,33,-93,cadd1256,Caddo (Nf14),xd1234,Kadohadacho,,,,33,-93,Original,,Southeastern U.S.A. +Nf15,Kickapoo,43,-90,kick1244,Kickapoo (Nf15),xd1235,Kiikaapoi,1870,,,43,-90,Original,,North-Central U.S.A. +Nf2,Ho Chunk,44,-88,hoch1243,Winnebago (Nf2),xd1236,Winnebago,1850,Winnebago/Ho-Chunk (NP12),NP12,44,-88,Original,,North-Central U.S.A. +Nf3,Omaha,41,-96,omah1248,Omaha (Nf3),xd1237,Dhegiha,1850,Omaha (NQ21),NQ21,41,-96,Original,,North-Central U.S.A. +Nf4,Myaamia,40,-86,miam1252,Miami (Nf4),xd1238,Miami,1720,,,40,-86,Original,,Northeastern U.S.A. +Nf5,Wichita,34,-98,wich1260,Wichita (Nf5),xd1239,,1860,,,34,-98,Original,,North-Central U.S.A. +Ad7,Ganda,1,32,gand1255,Ganda (Ad7),xd124,Baganda,1880,Ganda (FK07),FK07,1,32,Original,,East Tropical Africa +Nf6,Pawnee,42,-100,pawn1254,Pawnee (Nf6),xd1240,,1867,Pawnee (NQ18),NQ18,42,-100,Original,,North-Central U.S.A. +Nf7,Fox,45,-95,mesk1242,Fox (Nf7),xd1241,Meskwaki,1830,Fox (NP05),NP05,45,-95,Original,,North-Central U.S.A. +Nf8,Hasinai,31,-95,cadd1256,Hasinai (Nf8),xd1242,Southwestern Caddo; Texas,1770,,,31,-95,Original,,South-Central U.S.A. +Nf9,Menominee,46,-88,meno1252,Menomini (Nf9),xd1243,Menomini,1870,,,46,-88,Original,,Northeastern U.S.A. +Ng1,Huron,44,-78,wyan1247,Huron (Ng1),xd1244,Bear and Cord Peoples; Wendat; Ouendat; Attignaouantan; Attinniaoenten; Attigneenongnahac; Hatingeennonniahak,1640,,,44,-78,Original,,Eastern Canada +Ng10,Seneca,43,-77,sene1264,Iroquois (Ng10),xd1245,O-non-dowa-gah; Iroquois,1750,Iroquois (NM09),NM09,43,-77,Original,,Northeastern U.S.A. +Ng11,Yuchi,35,-86,yuch1247,Yuchi (Ng11),xd1246,Euchee; Uchee,1750,,,35,-86,Original,,Southeastern U.S.A. +Ng12,Choctaw,33,-88,choc1276,Choctaw (Ng12),xd1247,,1760,,,33,-88,Original,,Southeastern U.S.A. +Ng13,Abenaki,46,-70,peno1243,Abnaki (Ng13),xd1248,Abnaki,,,,46,-70,Original,,Northeastern U.S.A. +Ng14,Chickasaw,35,-85,chic1270,Chickasaw (Ng14),xd1249,,,,,35,-85,Original,,Southeastern U.S.A. +Ad8,Hehe,-8,35,hehe1240,Hehe (Ad8),xd125,Wahehe,1910,,,-8,35,Original,,East Tropical Africa +Ng15,Chitimacha,30,-90,chit1248,Chitimacha (Ng15),xd1250,,1750,,,30,-90,Original,,Southeastern U.S.A. +Ng2,Seminole,27,-81,mika1239,Seminole (Ng2),xd1251,,1940,Seminole (NN16),NN16,27,-81,Original,,Southeastern U.S.A. +Ng3,Muscogee,33,-84,cree1270,Creek (Ng3),xd1252,Creek; Taskigi Creek,1750,Creek (NN11),NN11,33,-84,Original,,Southeastern U.S.A. +Ng4,Penobscot,45,-68,peno1243,Penobscot (Ng4),xd1253,,1900,,,45,-68,Original,,Northeastern U.S.A. +Ng5,Cherokee,36,-83,cher1273,Cherokee (Ng5),xd1254,,1750,Cherokee (NN08),NN08,36,-83,Original,,Southeastern U.S.A. +Ng6,Delaware,41,-75,unam1242,Delaware (Ng6),xd1255,Lenape,1700,Delaware (NM07),NM07,41,-75,Original,Note 8Feb2018: Changed based on note from HH: Pidgin Delaware was not the mother tongue of the Lenape. The mother tongue was Unami [unm].,Northeastern U.S.A. +Ng7,Natchez,32,-91,natc1249,Natchez (Ng7),xd1256,,1700,,,32,-91,Original,,Southeastern U.S.A. +Ng8,Timucua,27,-82,timu1245,Timucua (Ng8),xd1257,,1560,,,27,-82,Original,,Southeastern U.S.A. +Ng9,Catawba,35,-80,cata1286,Catawba (Ng9),xd1258,Issa,1920,,,35,-80,Original,,Southeastern U.S.A. +Nh1,Chiricahua,31,-108,mesc1238,Chiricahua (Nh1),xd1259,Chiricahua Apache; Eastern Apache,1880,Eastern Apache (NT08),NT08,31,-108,Original,,Mexico +Ad9,Gisu,1,34,masa1299,Gisu (Ad9),xd126,Bagesu; Gishu,1900,Bagisu (FK13),FK13,1,34,Original,,East Tropical Africa +Nh10,Isleta,35,-107,sout2961,Isleta (Nh10),xd1260,,1920,,,35,-107,Original,,South-Central U.S.A. +Nh11,San Ildefonso,36,-106,sani1273,Tewa (Nh11),xd1261,Tewa; San Ildefonso Pueblo,1900,Tewa (NT18),NT18,36,-106,Original,"Note 8Feb2018: Not changed, as focus is the pueblo of San Ildefonso, despite comment from HH: ""Hopi Tewa now has its own language-level glottocode Arizona Tewa ariz1237"". However, ariz1237 now linked to another society in EA.",South-Central U.S.A. +Nh12,Santa Ana,35,-107,sant1426,Santa Ana (Nh12),xd1262,,1920,,,35,-107,Original,,South-Central U.S.A. +Nh13,Acoma,35,-108,acom1246,Acoma (Nh13),xd1263,,1920,,,35,-108,Original,,South-Central U.S.A. +Nh14,Laguna,35,-107,acom1246,Laguna (Nh14),xd1264,,1920,,,35,-107,Original,,South-Central U.S.A. +Nh15,Mescalero,33,-103,mesc1238,Mescalero (Nh15),xd1265,,1870,,,33,-103,Original,,South-Central U.S.A. +Nh16,Jicarilla,36,-104,jica1244,Jicarilla (Nh16),xd1266,,1870,Jicarilla (NT26),NT26,36,-104,Original,,South-Central U.S.A. +Nh17,Western Apache,34,-110,west2615,Western Apache (Nh17),xd1267,Ndee,1870,Western (NT21),NT21,34,-110,Original,,Southwestern U.S.A. +Nh18,Hopi,36,-111,hopi1249,Hopi (Nh18),xd1268,Hopi of Old Oraiibi,1920,Hopi (NT09),NT09,36,-111,Original,,Southwestern U.S.A. +Nh19,Cocopa,32,-115,coco1261,Cocopa (Nh19),xd1269,Cocopah,1850,,,32,-115,Original,,Mexico +Ae1,Amba,1,30,amba1263,Amba (Ae1),xd127,Awamba; Baamba; Bamba,1950,,,1,30,Original,,West-Central Tropical Africa +Nh2,Hano,36,-111,ariz1237,Hano (Nh2),xd1270,,1950,,,36,-111,Original,Note 8Feb2018: Glottocode updated based on note from HH: Hopi Tewa now has its own language-level glottocode Arizona Tewa,Southwestern U.S.A. +Nh20,Kamia,33,-115,kumi1248,Kamia (Nh20),xd1271,,1860,,,33,-115,Original,"Note, previously kimi1238 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)",Southwestern U.S.A. +Nh21,Mojave,35,-114,moha1256,Mohave (Nh21),xd1272,Mohave,1850,Mohave (NT28),NT28,35,-114,Original,,Southwestern U.S.A. +Nh22,Quechan,33,-114,quec1382,Yuma (Nh22),xd1273,Yuma,1860,,,33,-114,Original,,Southwestern U.S.A. +Nh23,Kewyipaya,34,-111,yava1252,Kewyipaya (Nh23),xd1274,Southeastern Yavapai,1870,,,34,-111,Original,,Southwestern U.S.A. +Nh24,Lipan Apache,30,-100,lipa1241,Lipan (Nh24),xd1275,Lipan,1880,,,30,-100,Original,,South-Central U.S.A. +Nh25,Sia,36,-107,ziaa1251,Sia (Nh25),xd1276,Tsiya; Zia,1920,Zia Pueblo (NT38),NT38,36,-107,Original,,South-Central U.S.A. +Nh26,Santa Clara,36,-106,sant1421,Santa Clara (Nh26),xd1277,,1910,,,36,-106,Original,,South-Central U.S.A. +Nh27,Kewa,36,-105,sant1425,Santo Domingo (Nh27),xd1278,Santo Domingo; Santo Domingo Pueblo,1930,,,36,-105,Original,,South-Central U.S.A. +Nh3,Navajo,37,-110,nava1243,Navaho (Nh3),xd1279,Diné Bizaad; Navaho,1930,Navaho (NT13),NT13,37,-110,Original,,Southwestern U.S.A. +Ae10,Banyaruanda,-2,30,kiny1244,Ruanda (Ae10),xd128,Ruanda,1910,Rwandans (FO57),FO57,-2,30,Original,,West-Central Tropical Africa +Nh4,Zuni,35,-109,zuni1245,Zuni (Nh4),xd1280,,1910,Zuni (NT23),NT23,35,-109,Original,,South-Central U.S.A. +Nh5,Maricopa,33,-113,mari1440,Maricopa (Nh5),xd1281,Piipash,1850,River (NT15),NT15,33,-113,Original,,Southwestern U.S.A. +Nh6,Taos,37,-106,taos1236,Taos (Nh6),xd1282,,1890,Taos (NT17),NT17,37,-106,Original,,Northwestern U.S.A. +Nh7,Cochiti,36,-106,coch1273,Cochiti (Nh7),xd1283,,1890,,,36,-106,Original,,South-Central U.S.A. +Nh8,Jemez,36,-107,jeme1245,Jemez (Nh8),xd1284,Walatowa; Towa,1920,,,36,-107,Original,,South-Central U.S.A. +Nh9,Picuris,36,-106,picu1248,Picuris (Nh9),xd1285,,1920,,,36,-106,Original,"Note 8Feb2018: Glottocode updated based on note from HH: Picuris Northern Tiwa [picu1248] now has its own separate language-level glottocode.; Note, previously picu1240 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)",South-Central U.S.A. +Ni1,Tarahumara,28,-107,cent2131,Tarahumara (Ni1),xd1286,Rarámuri,1930,Tarahumara (NU33),NU33,28,-107,Original,,Mexico +Ni2,Tohono O'odham,31,-112,toho1246,Papago (Ni2),xd1287,Papago,1930,O'Odham (NU79),NU79,31,-112,Original,,Mexico +Ni3,Huichol,22,-105,huic1243,Huichol (Ni3),xd1288,Wixárika,1920,Huichol (Nu19),,23,-104,Revised 22-July-2021 by KK based on review of map - replaced with lat long for the matched SCCS society (SCCS152),,Mexico +Ni4,Seri,29,-112,seri1257,Seri (Ni4),xd1289,Comcaac,1900,Seri (NU31),NU31,29,-112,Original,,Mexico +Ae11,Songola,-4,26,song1300,Songola (Ae11),xd129,Basongola; Wasongola,1900,,,-4,26,Original,,West-Central Tropical Africa +Ni5,Chichimeca,22,-100,chic1272,Chichimec (Ni5),xd1290,Chichimec,1570,,,22,-100,Original,,Mexico +Ni6,Pima,31,-111,akim1239,Pima (Ni6),xd1291,Akimel O'Odham,1840,,,31,-111,Original,,Mexico +Ni7,Yaqui,28,-110,yaqu1251,Yaqui (Ni7),xd1292,Yoeme,1870,,,28,-110,Original,,Mexico +Ni8,Opata,30,-110,opat1246,Opata (Ni8),xd1293,,1550,,,30,-110,Original,,Mexico +Ni9,Tepehuán,27,-107,nort2959,Tepehuan (Ni9),xd1294,Tepehuan,1920,,,27,-107,Original,,Mexico +Nj1,Chinantec,18,-96,ojit1237,Chinantec (Nj1),xd1295,,1940,,,18,-96,Original,"Note 8Feb2018: Updated based on comment by HH: ""The references described Ojitlán Chinantec [chj] and Palantla Chinantec [cpa] rather than Chiltepec [csa]""; KK: indeed, subcase is specified as ""Ojitlán""",Mexico +Nj10,Zapotec,17,-96,yala1267,Zapotec (Nj10),xd1296,,1940,Zapotec (NU44),NU44,17,-96,Original,"Note 8Feb2018: HH notes that Parsons ref (1 of 3 references) describes Mitla Zapotec [zaw]. KK: Not changed, as EA focus is ""mountain village of Yalagag""; perhaps Parsons ref is used for context/complementary information.",Mexico +Nj11,Huastec,22,-99,huas1242,Huastec (Nj11),xd1297,,,,,22,-99,Original,,Mexico +Nj12,Mixtec,18,-98,juxt1235,Mixtec (Nj12),xd1298,,1950,,,18,-98,Original,Note 8Feb2018: Changed based on note from HH: The ref describes Juxtlahuaca Mixtec [vmc] unclear why NW Oaxaca Mixtec [mxa] is assigned.,Mexico +Nj13,Otomí,20,-99,mezq1235,Otomi (Nj13),xd1299,Otomi,1900,,,20,-99,Original,,Mexico +Ab12,Zulu,-29,31,zulu1248,Zulu (Ab12),xd13,Amazulu,1830,Zulu (FX20),FX20,-29,31,Original,,Southern Africa +Ae12,Duala,4,10,dual1243,Duala (Ae12),xd130,Diwala; Koelle,1940,,,4,10,Original,,West-Central Tropical Africa +Nj14,Tequistlatec,16,-96,high1242,Tequistlatec (Nj14),xd1300,,1960,,,16,-96,Original,,Mexico +Nj2,Aztec,19,-99,clas1250,Aztec (Nj2),xd1301,Aztec of Tenochtitlan,1520,Aztec (NU07),NU07,19,-99,Original,,Mexico +Nj3,Sierra Popoluca,18,-95,high1276,Popoluca (Nj3),xd1302,Popoluca; Soteapanec Zoque; Soteapan Zoque; Soteapaneco; Soteapan Soke,1940,,,18,-95,Original,,Mexico +Nj4,Totonac,20,-97,papa1238,Totonac (Nj4),xd1303,,1940,,,20,-97,Original,"Note 8Feb2018: Glottocode changed based on comment by HH: The Kelly ref describes Tajin which is Totonac-Papantla [top]. Indeed, Kelly and Palerm focus on Tajin Totonac, while Krickeberg appears to be a more general survey of the Totonac, including the main dialect groups, one of which is [top].",Mexico +Nj5,Mazateco,18,-97,huau1238,Mazateco (Nj5),xd1304,,1940,,,18,-97,Original,,Mexico +Nj6,Huave,16.22,-95.02,sanm1287,Huave (Nj6),xd1305,,1950,,,16,-95,Revised,,Mexico +Nj7,Mixe,17,-95,isth1238,Mixe (Nj7),xd1306,,1930,,,17,-95,Original,,Mexico +Nj8,Tarasco,19,-101,pure1242,Tarasco (Nj8),xd1307,,1500,Tarasco (NU34),NU34,19,-101,Original,,Mexico +Nj9,Tlaxcalans,19,-98,cent2132,Tlaxdalans (Nj9),xd1308,,1960,,,19,-98,Original,,Mexico +Sa1,Guna,9,-78,sanb1242,Cuna (Sa1),xd1309,Dule; Tule; Cuna; Kuna,1940,Cuna (SB05),SB05,9,-78,Original,Note 22July2021: Glottocode changed by KK to sanb1242 from bord1248,Central America +Ae13,Bashi,-2,29,shii1238,Bashi (Ae13),xd131,Baniabungu; Wanyabungu,1920,,,-2,29,Original,,West-Central Tropical Africa +Sa10,Lacandon,16.9,-91,laca1243,Lacandon (Sa10),xd1310,,1900,,,17,-92,Revised 22-July-2021 by KK based on web research and review of location in GIS,,Central America +Sa11,Kaqchikel,14,-91,kaqc1270,Cakchiquel (Sa11),xd1311,Cakchiquel,1880,,,14,-91,Original,,Central America +Sa12,Lenca,14,-88,lenc1242,Lenca (Sa12),xd1312,,1948,,,14,-88,Original,"Note, previously lenc1244, but glottocode is considered a ""bookkeeping"" code (because extinct?), so chose Lencan-Honduras instead (note that point is in Honduras)",Central America +Sa13,K'iche',15,-91,kich1262,Quiche (Sa13),xd1313,Quiche,1930,,,15,-91,Original,,Central America +Sa14,Ngäbe,8,-81,ngab1239,Guaymi (Sa14),xd1314,Guaymi,,,,8,-81,Original,,Central America +Sa15,Jakaltek,14,-90,popt1235,Jacaltec (Sa15),xd1315,Jacaltec,1920,,,14,-90,Original,,Central America +Sa16,Tolupan,15,-87,toll1241,Jicaque (Sa16),xd1316,Jicaque; Xicaque,,,,15,-87,Original,,Central America +Sa17,Poqomam,15,-91,poqo1253,Pokomam (Sa17),xd1317,Pokomam,1950,,,15,-91,Original,,Central America +Sa2,Tzeltal,17,-92,tzel1254,Tzeltal (Sa2),xd1318,,1940,Tzeltal (NV09),NV09,17,-92,Original,,Mexico +Sa3,Ch'orti',14,-89,chor1273,Chorti (Sa3),xd1319,Chorti,1930,,,14,-89,Original,,Central America +Ae14,Ha,-5,30,haaa1252,Ha (Ae14),xd132,Abaha; Waha,1950,,,-5,30,Original,,East Tropical Africa +Sa4,Emberá,8,-78,nort2972,Choco (Sa4),xd1320,Choco,1960,,,8,-78,Original,"Note 8Feb2018: Note: this case was flagged by HH as combining ethnographic data for Wounaan [noa] and Northern Embera [emp]. KK has left language as [emp] (Northern Embera) for now, based on facts that Faron, who worked with Embera, is the author of 2 of the 4 ethnographic references for the case, and that at least one of the others (Reichel-Dolmatoff, 1960) is known to have combined information on the two groups, assuming they were essentially the same (Velásquez Runk 2004) [Excerpt from Velásquez Runk (2004), who has worked extensively with Embera and especially Wounaan communities in Panama: ""Much literature on Emberá and Wounaan, both in Panama and Colombia, have combined information on both groups [...]. In Colombia, Emberá* have historically been called Chocó Indians whereas Wounaan have been differentiated as Noanama or more recently Waunana Indians: it is only in Panama that both groups are called Chocó"". [...] ""Emberá bed’ea (the Emberá language) and Wounmeu are linguistically related, sharing about thirty-five (Binder pers. comm.) to fifty percent (Loewen 1960a) cognate roots, and belong to what linguists now acknowledge to be a separate linguistic group [e.g., Chocoan] (Aguirre Licht), Binder, pers. comm.; Mortensen, pers. comm.), but are mutually unintelligible. *Emberá have a number of subgroups also, at least nine according to Loewen (1960) and six according to Mortensen’s current linguistic work (pers.comm.). There has been a small group of Emberá Catio in Panama (Binder, pers. comm.) but the remainder of Panama’s Emberá is Northern Emberá (Mortensen pers. comm.)."" ",Central America +Sa5,Bribri,9,-83,brib1243,Bribri (Sa5),xd1321,Talamanca,1950,Talamancans (SA19),SA19,9,-83,Original,,Central America +Sa6,Yucatec Maya,18,-90,yuca1254,Yucatec Maya (Sa6),xd1322,,1520,Yucatec Maya (NV10),NV10,18,-90,Original,,Mexico +Sa7,Garifuna,16,-89,gari1256,Black Carib (Sa7),xd1323,Black Carib; Garif,1940,Garifuna (SA12),SA12,16,-89,Original,,Central America +Sa8,Mam,15,-92,mamm1241,Mam (Sa8),xd1324,,1930,Mam Maya (NW08),NW08,15,-92,Original,,Central America +Sa9,Miskito,14.766,-84.089,misk1235,Miskito (Sa9),xd1325,Mískitu; Mosquito,1920,Miskito (SA15),SA15,13,-85,Revised 22-July-2021 by KK based on web research and review of location in GIS,,Central America +Sb1,Callinago,15.41,-61.27,isla1278,Callinago (Sb1),xd1326,,1650,Island Carib (ST13),ST13,15,-61,Revised,"Note 8Feb2018: Changed to crb from car as focus is reported in White SCCS pinpointing sheet as ""Dominica Island"" (See also note from HH: Most of the refs refer to Island Carib [crb] not Galibi Carib on the mainland.)",Caribbean +Sb2,Cágaba,11,-74,cogu1240,Cagaba (Sb2),xd1327,Cagaba; Kagaba; Kogi,1940,Kogi (SC07),SC07,11,-74,Original,,Western South America +Sb3,Barí (Motilon),9,-72,yukp1241,Motilon (Sb3),xd1328,Bari; Motilon; Yuko; Motilones; Barí,1940,,,9,-72,Original,"Note 8Feb2018: Changed after note by HH:""The Motilon described by Reichel-Dolmatoff is Yukpa [yup] (a Cariban lg) not the Chibchan Bari [mot]""; KK: indeed, the focus is on the ""Iroka"", who are described as a ""Yukpa subtribe"" by Ruddle (1974:29, in Halbmayer 2013). References for case are Holder and Reichel-Dolmatoff, and both seem to have attempted to contact the Bari in 1946 (according to Beckerman and Lizarralde 2013), but may have been unsuccsessful. In any case, both anthropologists, and certainly R-D, worked with the Iroka [Yukpa]. Note from Beckerman and Lizarralde (2013): ""the forest-dwelling Bari (and their traditional and ongoing enemies, the Carib-speaking Yukpa) constituted a recognized obstacle to colonization of the forested land remaining to [the small-scale colonists]"". Both Yukpa and Bari seem to have been known as ""Motilones"" (e.g., see http://www.native-languages.org/definitions/motilone.htm).",Northern South America +Sb4,Cariña,9,-64,taba1267,Carinya (Sb4),xd1329,Carinya,1950,,,9,-64,Original,"Note 24Sept2018 - dialect Tabajari assigned (language does not change). KK is confident in this assignment; there is an Etnologue point for Carib here (9,-64 approx.). This URL gives the relative location of Carib dialects: https://www.mona.uwi.edu/dllp/jlu/ciel/pages/kalihna.htm. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Northern South America +Ae15,Hunde,-2,28,hund1239,Hunde (Ae15),xd133,Bahunde,1940,,,-2,28,Original,,West-Central Tropical Africa +Sb5,Paraujano,11,-72,para1316,Paraujano (Sb5),xd1330,Onoto,1950,,,11,-72,Original,,Northern South America +Sb6,Wayuu,12,-72,wayu1243,Goajiro (Sb6),xd1331,Goajiro,1940,Goajiro (SC13),SC13,12,-72,Original,,Western South America +Sb7,Yupa,9,-72,yukp1241,Yupa (Sb7),xd1332,,1950,,,9,-72,Original,,Northern South America +Sb8,Taíno,19.94,-75.37,tain1254,Taino (Sb8),xd1333,Taino,1520,,,19,-75,Revised,,Caribbean +Sb9,Haitians,18.41,-72.17,hait1244,Haitians (Sb9),xd1334,,1930,Haitians (SV03),SV03,18,-72,Revised,,Caribbean +Sc1,Warao,9,-62,wara1303,Warrau (Sc1),xd1335,Warrau,1950,Warao (SS18),SS18,9,-62,Original,,Northern South America +Sc10,Lokono,5.95,-56.98,araw1276,Locono (Sc10),xd1336,Locono; Arawak,1900,,,6,-57,Revised,,Northern South America +Sc11,Camaracoto,6,-63,cama1252,Camaracoto (Sc11),xd1337,Pemon,1930,Pemon (SS16),SS16,6,-63,Original,,Northern South America +Sc12,Macushi,4,-59,macu1259,Macusi (Sc12),xd1338,Macusi,1910,,,4,-59,Original,"Note 8Feb2018: Note, HH notes that ethnographic references most relevant to Makushi [Sc12] are listed under ""Taulipang"" [Sc15] (Soares Diniz & Ule are on Macushi [mbc] rather than Pemon [aoc]). However, other aspects of case description (name, alternate names) line up with [mbc]. For that reason, I will leave as [mbc], but user should ensure that cultural traits of interest are properly assigned to Macushi vs. Pemon. See Halbmayer, E. 2013. ""Contemporary Carib-speaking Amerindians. A bibliography of social anthropological and linguistic resources for discussion"". For succinct overview and reference lists.",Northern South America +Sc13,Panare,6,-66,enap1235,Panare (Sc13),xd1339,,1950,,,6,-66,Original,,Northern South America +Ae16,Lulua,-6,23,luba1249,Lulua (Ae16),xd134,Bena Lulua,1910,,,-6,23,Original,,West-Central Tropical Africa +Sc14,Rucuyen,3,-55,waya1269,Rucuyen (Sc14),xd1340,,1890,,,3,-55,Original,,Northern South America +Sc15,Taulípang,4,-62,taul1252,Taulipang (Sc15),xd1341,Taulipang; Arecuna; Arekuna,1910,,,4,-62,Original,"Note 8Feb2018: Note, HH notes that ethnographic references most relevant to Makushi [Sc12] are listed here; it is possible that the more general references currently listed under Sc12 are most appropriate to Taulipang [Sc15] (Farabee 1922 & Kirchoff 1943). However, other aspects of case description (name, alternate names) line up with [aoc]. For that reason, I will leave as [aoc] but user should ensure that cultural traits of interest are properly assigned to Macushi vs. Pemon. See Halbmayer, E. 2013. ""Contemporary Carib-speaking Amerindians. A bibliography of social anthropological and linguistic resources for discussion"". For succinct overview and reference lists.",Brazil +Sc16,Ye'kuana,3,-65,maqu1238,Yekuana (Sc16),xd1342,So'to; Yekuana,1920,,,3,-65,Original,,Northern South America +Sc17,Piapoco,6,-68,piap1246,Piapoco (Sc17),xd1343,,1950,,,6,-68,Original,,Western South America +Sc18,Ndyuka,5,-54,ndyu1242,Djuka (Sc18),xd1344,Djuka; Bush Negroes; Ndjuka,1960,,,5,-54,Original,,Northern South America +Sc2,Pumé,7,-68,pume1238,Yaruro (Sc2),xd1345,Yaruro,1950,Pumé (SS19),SS19,7,-68,Original,,Northern South America +Sc3,Barama River Carib,5,-59,mura1272,Barama Carib (Sc3),xd1346,Barama Carib; Carib,1930,Barama River Carib (SR09),SR09,5,-59,Original,"Note 24Sept2018 - KK has high confidence in this dialect assignment (mura1272). The Barama carib location is in Guyana; there is an Etnologue point for Carib here (7.42,-60.17 approx.). This URL gives the relative location of Carib dialects: https://www.mona.uwi.edu/dllp/jlu/ciel/pages/kalihna.htm.",Northern South America +Sc4,Guahibo,5,-69,guah1255,Guahibo (Sc4),xd1347,,1950,,,5,-69,Original,,Western South America +Sc5,Wapishana,3,-60,wapi1253,Wapishana (Sc5),xd1348,,1900,,,3,-60,Original,,Brazil +Sc6,Saramaccan ,4,-56,sara1340,Saramacca (Sc6),xd1349,Saramaccan of Suriname; Saramacca; Bush Negroes,1920,Saramaka (SR15),SR15,4,-56,Original,,Northern South America +Ae17,Rega,-3,28,lega1249,Rega (Ae17),xd135,Balegga; Barega; Valega; Warega,1900,,,-3,28,Original,,West-Central Tropical Africa +Sc7,Yabarana,5,-66,yaba1248,Yabarana (Sc7),xd1350,,1950,,,5,-66,Original,,Northern South America +Sc8,Piaroa,5,-67,piar1243,Piaroa (Sc8),xd1351,,1950,,,5,-67,Original,,Northern South America +Sc9,Curripaco,5,-67,curr1243,Curipaco (Sc9),xd1352,Curipaco,1950,,,5,-67,Original,,Northern South America +Sd1,Munduruku,-6,-58,mund1330,Mundurucu (Sd1),xd1353,Wuy Jugu; Mundurucu,1950,Mundurucu (SQ13),SQ13,-6,-58,Original,,Brazil +Sd2,Tapirapé,-11,-52,tapi1254,Tapirape (Sd2),xd1354,Tapirape,1930,Tapirape (SP22),SP22,-11,-52,Original,,Brazil +Sd3,Palikur,3,-52,pali1279,Palikur (Sd3),xd1355,Wasa,1920,,,3,-52,Original,,Brazil +Sd4,Guaica,2,-65,yano1262,Waica (Sd4),xd1356,Waica; Guiaika,1950,Yanoama (SQ18),SQ18,2,-65,Original,,Northern South America +Sd5,Sateré Mawé,-4,-57,sate1243,Maue (Sd5),xd1357,Maue,1950,,,-4,-57,Original,,Brazil +Sd6,Shiriana,4,-63,nina1238,Shiriana (Sd6),xd1358,Kirishana; Xiriana,1960,Yanoama (SQ18),SQ18,4,-63,Original,,Northern South America +Sd7,Wai-wai,1,-59,waiw1244,Waiwai (Sd7),xd1359,Waiwai,1950,,,1,-59,Original,,Brazil +Ae18,Songye,-6,25,song1303,Songe (Ae18),xd136,Songe; Basonge; Bassongo,1900,,,-6,25,Original,,West-Central Tropical Africa +Sd8,Sanema,4,-66,sanu1240,Sanema (Sd8),xd1360,,1950,Yanoama (SQ18),SQ18,4,-66,Original,,Northern South America +Sd9,Yanomami,2,-65,yano1261,Yanomamo (Sd9),xd1361,Yanomamo; Yanoama,1965,Yanoama (SQ18),SQ18,2,-65,Original,,Northern South America +Se1,Sirionó,-16,-64,siri1273,Siriono (Se1),xd1362,Miá; Siriono,1940,Siriono (SF21),SF21,-16,-64,Original,,Western South America +Se10,Cocama,1,-79,coca1259,Cocama (Se10),xd1363,Ucayali,1670,,,1,-79,Original,,Western South America +Se11,Chácobo,-12,-67,chac1251,Chacobo (Se11),xd1364,Nóʔciria; Chacobo,1960,,,-12,-67,Original,,Western South America +Se12,Tucano,0,-70,tuca1252,Tucano (Se12),xd1365,Tukano,1950,Tucano (SQ19),SQ19,0,-70,Original,,Brazil +Se2,Ticuna,-3,-70,ticu1245,Tucuna (Se2),xd1366,Tucuna; Tikuna,1940,Tucuna (SQ20),SQ20,-3,-70,Original,,Western South America +Se3,Shuar,-3,-78,shua1257,Jivaro (Se3),xd1367,Jivaro,1930,Jivaro (SD09),SD09,-3,-78,Original,,Western South America +Se4,Yagua,-3,-72,yagu1244,Yagua (Se4),xd1368,,1940,,,-3,-72,Original,,Western South America +Se5,Cubeo,1,-71,cube1242,Cubeo (Se5),xd1369,Jiwa; Tucano,1940,Tucano (SQ19),SQ19,1,-71,Original,,Western South America +Ae19,Garanganze,-11,28,sang1331,Yeke (Ae19),xd137,Yeke; Bayeke,1930,,,-11,28,Original,,West-Central Tropical Africa +Se6,Witoto,-1,-74,muru1274,Witoto (Se6),xd1370,Ouitoto; Uitoto,1910,,,-1,-74,Original,,Western South America +Se7,Camba,-18,-63,chiq1248,Camba (Se7),xd1371,,1950,,,-18,-63,Original,"Note, previously xba and kamb1287 (Camba). ISO code retired, considered a duplicate of [cax] Chiquitano. Chiquitano glottocode is chiq1248",Western South America +Se8,Amahuaca,-10,-72,amah1246,Amahuaca (Se8),xd1372,,1950,,,-10,-72,Original,,Brazil +Se9,Shipibo-Conibo,-9,-74,ship1254,Conibo (Se9),xd1373,Conibo,1920,,,-9,-74,Original,,Western South America +Sf1,Inca,-13,-72,cusc1236,Inca (Sf1),xd1374,,1530,Inca (SE13),SE13,-13,-72,Original,,Western South America +Sf2,Aymara,-16,-69,cent2142,Aymara (Sf2),xd1375,,1940,Aymara (SF05),SF05,-16,-69,Original,,Western South America +Sf3,Chachi,1,-79,chac1249,Cayapa (Sf3),xd1376,Cayapa,1910,Chachi (SD06),SD06,1,-79,Original,,Western South America +Sf4,U'wa,7,-72,cent2150,Tunebo (Sf4),xd1377,Tunebo; Tabe,1950,,,7,-72,Original,,Western South America +Sf5,Páez,3,-76,paez1247,Paez (Sf5),xd1378,Paez,1900,Paez (SC15),SC15,3,-76,Original,,Western South America +Sf6,Muisca,5,-72,chib1270,Chibcha (Sf6),xd1379,Chibcha,1540,,,5,-72,Original,,Western South America +Ae2,Kpe,4.22,9.27,mokp1239,Kpe (Ae2),xd138,Bakwedi; Bakwiri; Kpeli; Kwiri,1950,,,4,9,Revised,,West-Central Tropical Africa +Sf7,Asháninka,-8,-75,ajyi1238,Campa (Sf7),xd1380,Campa; Ande; Anti; Kampa,1900,,,-8,-75,Original,"Note 8Feb2018: Glottocode changed to ajyi1238 based on note from HH: ""The Campa described by Craig is Shira Mountain Campa = Ajyíninka"" [all other references appear to describe the ""Campa"" generally].",Western South America +Sf8,Piro,-12,-73,yine1238,Piro (Sf8),xd1381,Nomole,1950,,,-12,-73,Original,,Western South America +Sf9,Uru,-16,-69,uruu1244,Uru (Sf9),xd1382,,1930,Uru (SF24),SF24,-16,-69,Original,,Western South America +Sg1,Yahgan,-55.02,-68.98,yama1264,Yahgan (Sg1),xd1383,,1870,Yahgan (SH06),SH06,-55,-69,Revised,,Southern South America +Sg2,Mapuche,-39,-68,mapu1245,Mapuche (Sg2),xd1384,,1880,Aracuanians (SG04),SG04,-39,-68,Original,,Southern South America +Sg3,Ona,-54,-69,onaa1245,Ona (Sg3),xd1385,,1880,Ona (SH04),SH04,-54,-69,Original,,Southern South America +Sg4,Tehuelche,-46,-70,tehu1242,Tehuelche (Sg4),xd1386,Patagon,1870,Tehuelche (SH05),SH05,-46,-70,Original,,Southern South America +Sg5,Alacaluf,-52,-74,qawa1238,Alacaluf (Sg5),xd1387,Kawésqar,1900,,,-52,-74,Original,,Southern South America +Sh1,Wichí,-24,-63,wich1264,Mataco (Sh1),xd1388,Mataco; Nocten,1860,Mataco (SI07),SI07,-24,-63,Original,Note 8Feb2018: Changed based on note from HH: Pelleschi is Wichí Lhamtés Güisnay [mzh],Southern South America +Sh2,Terena,-21,-58,tere1279,Terena (Sh2),xd1389,Poké,1850,Terena (SK07),SK07,-21,-58,Original,,Southern South America +Ae20,Ekonda,-2,18,ekon1238,Ekonda (Ae20),xd139,,1940,,,-2,18,Original,,West-Central Tropical Africa +Sh3,Abipón,-29,-61,abip1241,Abipon (Sh3),xd1390,Abipon; Abipones,1800,Abipon (SI04),SI04,-29,-61,Original,,Southern South America +Sh4,Kadiwéu,-22,-57,kadi1248,Caduveo (Sh4),xd1391,Caduveo,1940,,,-22,-57,Original,,Brazil +Sh5,Choroti,-22,-62,iyow1239,Choroti (Sh5),xd1392,Zolota,1910,Choroti (SK06),SK06,-22,-62,Original,,Southern South America +Sh6,Chamacoco,-20,-59,cham1315,Chamacoco (Sh6),xd1393,Ishír,1890,,,-20,-59,Original,,Southern South America +Sh7,Guaraní,-20,-63,east2555,Chiriguano (Sh7),xd1394,Chiriguano; Guarani,1900,Chiriguano (SF10),SF10,-20,-63,Original,,Western South America +Sh8,Toba,-25,-60,toba1269,Toba (Sh8),xd1395,Qom-lik; Qom; Tacshic; Toqoit,1964,Toba (SI12),SI12,-25,-60,Original,,Southern South America +Sh9,Lengua,-23,-59,nort2971,Lengua (Sh9),xd1396,,1890,,,-23,-59,Original,,Southern South America +Si1,Bororo,-16,-55,boro1282,Bororo (Si1),xd1397,,1920,Bororo (SP08),SP08,-16,-55,Original,,Brazil +Si10,Kuikuru,-13,-54,kuik1246,Kuikuru (Si10),xd1398,Ukuge,1950,,,-13,-54,Original,,Brazil +Si2,Trumai,-12,-53,trum1247,Trumai (Si2),xd1399,Ho kod ke,1930,Trumai (SP23),SP23,-12,-53,Original,,Brazil +Ab13,Tswana,-24,27,tswa1253,Tswana (Ab13),xd14,Batswana; Bechuana,1880,,,-24,27,Original,,Southern Africa +Ae21,Kela,-3,23,yela1238,Kela (Ae21),xd140,Akela; Bakela; Ekela; Ikela,1920,,,-3,23,Original,"Note, previously kela1254 but changed by non-KK DPLACE editor in early 2016 (before 8April2016); earlier KK note: ISO recognized by SIL, but considered bookkeeping by Glottolog",West-Central Tropical Africa +Si3,Bacairi,-14,-55,baka1277,Bacairi (Si3),xd1400,,1940,Bakairi (SP07),SP07,-14,-55,Original,,Brazil +Si4,Nambikwara,-12,-59,sout2994,Nambicura (Si4),xd1401,Nambicura,1940,Nambicuara (SP17),SP17,-12,-59,Original,,Brazil +Si5,Kamayurá,-12,-54,kama1373,Camayura (Si5),xd1402,Camayura,1940,,,-12,-54,Original,,Brazil +Si6,Guató,-19,-58,guat1253,Guato (Si6),xd1403,Guato,1900,,,-19,-58,Original,,Western South America +Si7,Paresi,-15,-58,pare1272,Paressi (Si7),xd1404,Paressi,1910,,,-15,-58,Original,,Brazil +Si8,Umotina,-15,-57,umot1240,Umotina (Si8),xd1405,,1940,,,-15,-57,Original,,Brazil +Si9,Aweti,-12,-54,awet1244,Aueto (Si9),xd1406,Aueto; Aueti,1940,,,-12,-54,Original,,Brazil +Sj1,Carajá,-12,-50,kara1500,Caraja (Sj1),xd1407,Caraja,1950,Karaja (SP09),SP09,-12,-50,Original,,Brazil +Sj10,Cayua,-26,-54,mbya1239,Cayua (Sj10),xd1408,Abá; Cayua; Caingua; Guaraní; Guarani,1950,Cayua (SM04),SM04,-26,-54,Original,,Southern South America +Sj11,Shavante,-14,-52,xava1240,Shavante (Sj11),xd1409,,1958,,,-14,-52,Original,,Brazil +Ae22,Kutsu,-4,22,kusu1252,Kutshu (Ae22),xd141,Kutshu; Ankutshu; Bankutshu; Wankutshu,1900,,,-4,22,Original,,West-Central Tropical Africa +Sj2,Sherente,-9,-48,xere1240,Sherente (Sj2),xd1410,Cherente,1850,,,-9,-48,Original,,Brazil +Sj3,Aweikoma,-28,-50,xokl1240,Aweikoma (Sj3),xd1411,Xokleng; Shokleng; Botocudo of Santa Catarina; Bugre; Kaingang of Santa Catarina (though Aweikoma and Kaingang today considered separate groups),1910,Xokleng (SM03),SM03,-28,-50,Original,,Brazil +Sj4,Canela,-7,-45,cane1242,Ramcocamecra (Sj4),xd1412,Ramcocamecra; Timbira; Canella,1930,Canela (SO08),SO08,-7,-45,Original,,Brazil +Sj5,Aimoré,-18,-42,kren1239,Botocudo (Sj5),xd1413,Nac-nanuk; Nac-poruk; Botocudo,1880,,,-18,-42,Original,,Brazil +Sj6,Tenetehara,-3,-46,temb1276,Tenetehara (Sj6),xd1414,,1930,,,-3,-46,Original,,Brazil +Sj7,Apinaye,-6,-49,apin1244,Apinaye (Sj7),xd1415,,1920,,,-6,-49,Original,,Brazil +Sj8,Tupinambá,-8,-35,tupi1273,Tupinamba (Sj8),xd1416,Tupinamba,1600,Tupinamba (SO09),SO09,-8,-35,Original,,Brazil +Sj9,Kayapo,-8,-52,kaya1330,Coroa (Sj9),xd1417,Coroa; Northern Cayapo,1950,,,-8,-52,Original,Note 8Feb2018: Changed based on note from HH: Unclear why this is not simply Kayapó [txu]?!,Brazil +Ae23,Lalia,-1,23,ngan1302,Lalia (Ae23),xd142,Dzalia; Lolia,1930,,,-1,23,Original,"Note, previously lali1242 but changed by non-KK DPLACE editor in early 2016 (before 8April2016); earlier KK note: ISO recognized by SIL, but considered bookkeeping by Glottolog; could POTENTIALLY be linked to nxd - ngan1302, as a few online sources suggest that Lalia people speak ""Longando"" (Ngando, nxd), which wikipedia reports is a sister(?) langage of Lalia (lal).",West-Central Tropical Africa +Ae24,Mongo,1,22,long1393,Mongo (Ae24),xd143,Balolo; Bamongo; Lolo; Mbongo,1920,,,1,22,Original,"Note, dialect should be that spoken in Opala territory.",West-Central Tropical Africa +Ae25,Tetela,-4,25,tete1250,Tetela (Ae25),xd144,Batetela,1920,,,-4,25,Original,,West-Central Tropical Africa +Ae26,Topoke,0,24,poke1238,Topoke (Ae26),xd145,Foma; Tofoke,1910,,,0,24,Original,,West-Central Tropical Africa +Ae27,Lokele,1,25,kele1255,Lokele (Ae27),xd146,Likile; Lukelle,1910,,,1,25,Original,,West-Central Tropical Africa +Ae28,Ngala,1,18,ling1263,Ngala (Ae28),xd147,Bangala; Boloki; Gens d'Eau,1900,,,1,18,Original,,West-Central Tropical Africa +Ae29,Poto,2,22,luse1252,Poto (Ae29),xd148,Bapoto; Foto; Mafoto; Upoto,1900,,,2,22,Original,,West-Central Tropical Africa +Ae3,Fang,1,11,fang1246,Fang (Ae3),xd149,Fan; Pahouin; Pangwe,1910,Fang (FH09),FH09,1,11,Original,,West-Central Tropical Africa +Ab14,Lovedu,-24,31,lobe1242,Lovedu (Ab14),xd15,Balovedu,1930,Lovedu (FX14),FX14,-24,31,Original,,Southern Africa +Ae30,Bira,1,29,bila1255,Bira (Ae30),xd150,Babeyru; Babira; Babila; Wabira,1920,,,1,29,Original,,West-Central Tropical Africa +Ae31,Budu,2,28,budu1250,Budu (Ae31),xd151,Babudu; Banabuddu; Mabudu; Wabuddu,1920,,,2,28,Original,,West-Central Tropical Africa +Ae32,Kumu,-1,27,komo1260,Kumu (Ae32),xd152,Bakumu; Wakumu,1920,,,-1,27,Original,,West-Central Tropical Africa +Ae33,Ndaka Babali,1,27,bali1274,Ndaka Babali (Ae33),xd153,Bandaka; Bali; Babali; Mabali; Mobale (formerly erroneously called Ndaka),1920,,,1,27,Original,,West-Central Tropical Africa +Ae34,Plains Bira,1,30,bera1259,Plains Bira (Ae34),xd154,Babira,1920,,,1,30,Original,,West-Central Tropical Africa +Ae35,Rumbi,0,28,lomb1254,Rumbi (Ae35),xd155,Barumbi; Warumbi,1900,,,0,28,Original,,West-Central Tropical Africa +Ae36,Bombesa,1,23,mbes1238,Bombesa (Ae36),xd156,Mbesa; Mombesa,1920,,,1,23,Original,,West-Central Tropical Africa +Ae37,Budja,3,23,budz1238,Budja (Ae37),xd157,Babudza; Mbudja,1930,,,3,23,Original,,West-Central Tropical Africa +Ae38,Ndoko,2,21,doko1244,Ndoko (Ae38),xd158,Doko,1920,,,2,21,Original,,West-Central Tropical Africa +Ae39,Ngombe,2,20,binj1250,Ngombe (Ae39),xd159,Gombe,1920,,,2,20,Original,,West-Central Tropical Africa +Ab15,Pedi,-25,30,tswe1238,Pedi (Ab15),xd16,Bapedi,1860,,,-25,30,Original,,Southern Africa +Ae4,Nkundo,0,20,nkun1238,Nkundo (Ae4),xd160,,1930,Mongo (FO32),FO32,0,20,Original,,West-Central Tropical Africa +Ae40,Dzem,3,14,njye1238,Dzem (Ae40),xd161,Djem; Ndjem; Nyem,1910,,,3,14,Original,,West-Central Tropical Africa +Ae41,Kota,1,14,ndas1238,Kota (Ae41),xd162,Bakota; Ikota; Kuta,1940,,,1,14,Original,"Note 8Feb2018: Changed based on note from HH: The Kota (""Kota Sud"") described by Andersson matches better with Ndasa [nda].",West-Central Tropical Africa +Ae42,Ngumba,3,11,kwas1243,Ngumba (Ae42),xd163,Mvumba,1900,,,3,11,Original,,West-Central Tropical Africa +Ae43,Sanga,2,16,bomw1238,Sanga (Ae43),xd164,Basanga; Bosanga; Masanga; Missanga,1900,,,2,16,Original,,West-Central Tropical Africa +Ae44,Bubi,3.54,8.72,bube1242,Bubi (Ae44),xd165,Adija; Ediya,1920,,,4,9,Revised,,West-Central Tropical Africa +Ae45,Kundu,10,9,orok1266,Kundu (Ae45),xd166,Bakundu,1900,,,10,9,Original,,West Tropical Africa +Ae46,Mpongwe,-2,10,myen1241,Mpongwe (Ae46),xd167,Empongwe; Pongo,1870,,,-2,10,Original,,West-Central Tropical Africa +Ae47,Puku,2,10,bata1285,Puku (Ae47),xd168,Bapuku,1900,,,2,10,Original,,West-Central Tropical Africa +Ae48,Bafia,5,11,bafi1243,Bafia (Ae48),xd169,Bekpa; Fia,1930,,,5,11,Original,,West-Central Tropical Africa +Ab16,Lenge,-25,34,leng1257,Lenge (Ab16),xd17,Valenge,1930,,,-25,34,Original,,South Tropical Africa +Ae49,Bali Nyonga,6,10,mung1266,Bali (Ae49),xd170,Bali; Bulu; Bani; Li,1900,,,6,10,Original,,West-Central Tropical Africa +Ae5,Bamileke,5,10,fefe1239,Bamileke (Ae5),xd171,,1910,,,5,10,Original,,West-Central Tropical Africa +Ae50,Bamum,6,11,bamu1253,Bamum (Ae50),xd172,Bamun; Mum,1920,,,6,11,Original,,West-Central Tropical Africa +Ae51,Banen,5,11,tune1261,Banen (Ae51),xd173,,1940,,,5,11,Original,,West-Central Tropical Africa +Ae52,Fungom,7,10,mmen1238,Fungom (Ae52),xd174,,1950,,,7,10,Original,,West Tropical Africa +Ae53,Koko,4,11,bako1249,Koko (Ae53),xd175,Bakoko; Betjek; Mwele,1920,,,4,11,Original,,West-Central Tropical Africa +Ae54,Kom,6,10,komc1235,Kom (Ae54),xd176,Bahom; Bamekom; Bikom,1950,,,6,10,Original,,West-Central Tropical Africa +Ae55,Ndob,6,10,band1349,Ndob (Ae55),xd177,Bandob; Mburukem; Ndop,1950,,,6,10,Original,,West-Central Tropical Africa +Ae56,Nsaw,6,11,lamn1239,Nsaw (Ae56),xd178,Bansaw,1950,,,6,11,Original,,West-Central Tropical Africa +Ae57,Nsungli,6,11,limb1268,Nsungli (Ae57),xd179,Dzungle,1930,,,6,11,Original,,West-Central Tropical Africa +Ab17,Ndau,-20,34,ndau1241,Ndau (Ab17),xd18,Vandau,1920,,,-20,34,Original,,South Tropical Africa +Ae58,Tikar,6,12,tige1238,Tikar (Ae58),xd180,,1910,,,6,12,Original,,West-Central Tropical Africa +Ae59,Widikum,6,10,meta1238,Eidekum (Ae59),xd181,Eidekum; Widekum,1950,,,6,10,Original,,West-Central Tropical Africa +Ae6,Luba,-8,26,luba1250,Luba (Ae6),xd182,Baluba,1930,,,-8,26,Original,,West-Central Tropical Africa +Ae7,Baboa,3,25,bwaa1238,Babwa (Ae7),xd183,Babwa; Ababwa; Bobua,1910,,,3,25,Original,Note 8Feb2018: Changed based on note from HH: These refs refer to Bwa [bww] not Kwa' [bko] (a completely different lg in Cameroon).,West-Central Tropical Africa +Ae8,Rundi,-3,30,rund1242,Rundi (Ae8),xd184,Barundi; Warundi,1910,Barundi (FO58),FO58,-3,30,Original,,West-Central Tropical Africa +Ae9,Fut,6,10,bafu1246,Fut (Ae9),xd185,Bafut; Fu,1950,,,6,10,Original,,West-Central Tropical Africa +Af1,Fon,7,2,fonn1241,Fon (Af1),xd186,Dahomey; Dahomeans,1890,Fon (FA18),FA18,7,2,Original,,West Tropical Africa +Af10,Igbo,6,7,nucl1417,Ibo (Af10),xd187,Ibo,1930,Igbo (FF26),FF26,6,7,Original,,West Tropical Africa +Af11,Toma,11,-9,toma1245,Toma (Af11),xd188,,1920,,,11,-9,Original,,West Tropical Africa +Af12,Akyem,7,-1,akye1239,Akyem (Af12),xd189,Akwahu,1930,Twi (FE12),FE12,7,-1,Original,,West Tropical Africa +Ab18,Shona,-19,31,shon1251,Shona (Ab18),xd19,Mashona,1920,Shona (FS05),FS05,-19,31,Original,"Note 8Feb2018: Note: HH notes that one of the cited ethnographic references (Prost 1956) refers to a completely different West African linguistic group. The assignment of Shona here appears to be correct. Focus is on ""Zezuru"", which is listed as a dialect of ""Shona"" (zezu1238 <- shon1251).",South Tropical Africa +Af13,Ebira,8,7,ebir1243,Igbira (Af13),xd190,Igbira; Egbiri; Kotokori,1920,,,8,7,Original,,West Tropical Africa +Af14,Sherbro,7.52,-12.69,sher1258,Sherbro (Af14),xd191,Mampua,1930,,,7,-13,Revised,,West Tropical Africa +Af15,Kpelle,7,-9,libe1247,Kpelle (Af15),xd192,Guerse; Kpese,1920,Kpelle (FD06),FD06,7,-9,Original,,West Tropical Africa +Af16,Banyang,6,9,keny1279,Banyang (Af16),xd193,Banjangi; Konguan; Manyang; Nyangi,1910,,,6,9,Original,,West Tropical Africa +Af17,Boki,6,9,boky1238,Boki (Af17),xd194,Nki,1900,,,6,9,Original,,West Tropical Africa +Af18,Ekoi,6,8,ejag1239,Ekoi (Af18),xd195,,1900,,,6,8,Original,,West Tropical Africa +Af19,Efik,5,8,efik1245,Efik (Af19),xd196,Riverain Ibibio,1950,,,5,8,Original,,West Tropical Africa +Af2,Kissi,9,-10,nort2765,Kissi (Af2),xd197,Ghizi,1950,,,9,-10,Original,,West Tropical Africa +Af20,Ibibio,5,8,ibib1240,Ibibio (Af20),xd198,,1910,,,5,8,Original,,West Tropical Africa +Af21,Ijaw,4.37,6.58,kala1381,Ijaw (Af21),xd199,Ijo,1920,,,2,6,Revised,,West Tropical Africa +Aa2,Dorobo,0,36,okie1245,Dorobo (Aa2),xd2,Andorobo; Okiek; Wandorobbo,1920,Okiek (FL20),FL20,0,36,Original,,East Tropical Africa +Ab19,Ambo,-17,16,ndon1254,Ambo (Ab19),xd20,Ovambo,1910,,,-17,16,Original,,South Tropical Africa +Af22,Itsekiri,6,5,isek1239,Itsekiri (Af22),xd200,Awerri; Jekri; Warri,1940,,,6,5,Original,,West Tropical Africa +Af23,Afikpo,6,8,afik1238,Afikpo (Af23),xd201,,1950,Igbo (FF26),FF26,6,8,Original,,West Tropical Africa +Af24,Edo,6,6,bini1246,Edo (Af24),xd202,Bini,1900,,,6,6,Original,,West Tropical Africa +Af25,Isoko,5,6,isok1239,Isoko (Af25),xd203,,1930,,,5,6,Original,,West Tropical Africa +Af26,Kukuruku,7,6,yekh1238,Kukuruku (Af26),xd204,,1900,,,7,6,Original,,West Tropical Africa +Af27,Eloyi,8,8,eloy1241,Afo (Af27),xd205,Eloyi; Afo,1950,,,8,8,Original,,West Tropical Africa +Af28,Gbagyi,10,10,gbar1246,Gbari (Af28),xd206,Gbari; Gwali,1910,,,10,10,Original,,West Tropical Africa +Af29,Idoma,7,8,idom1241,Idoma (Af29),xd207,,1950,,,7,8,Original,,West Tropical Africa +Af3,Ashanti,7,-2,asan1239,Ashanti (Af3),xd208,Twi,1900,Twi (FE12),FE12,7,-2,Original,,West Tropical Africa +Af30,Igala,7,7,igal1242,Igala (Af30),xd209,Igara,1920,,,7,7,Original,,West Tropical Africa +Ab2,Swazi,-27,32,swat1243,Swazi (Ab2),xd21,Amaswazi,1880,,,-27,32,Original,,Southern Africa +Af31,Koro,18,8,ashe1269,Koro (Af31),xd210,,1960,,,18,8,Original,,West Tropical Africa +Af32,Egba,7,3,egba1238,Egba (Af32),xd211,,1920,Yoruba (FF62),FF62,7,3,Original,,West Tropical Africa +Af33,Ekiti,8,5,ekit1244,Ekiti (Af33),xd212,,1950,Yoruba (FF62),FF62,8,5,Original,,West Tropical Africa +Af34,Ife,7,5,ifee1241,Ife (Af34),xd213,,1930,Yoruba (FF62),FF62,7,5,Original,,West Tropical Africa +Af35,Adangme,6,0,adan1247,Adangme (Af35),xd214,Adampe,1940,,,6,0,Original,,West Tropical Africa +Af36,Ewe,7,1,aguu1242,Ewe (Af36),xd215,,1900,,,7,1,Original,,West Tropical Africa +Af37,Buem,7.22,0.46,siwu1238,Buem (Af37),xd216,,1900,,,3,1,Revised,"Note 8Feb2018: HH notes that ""Buem"" may not be an appropriate name for the group (""HH: Buem (the name) usually refers to Lelemi [lef], I don't know the refs but if they refer to Siwu, it's not clear why the name Buem is used as the name for this society.""). Indeed, focus is ""Akpafu"", which is a Siwu speaking group. KK suggests considering renaming group to ""Mawu"" -- see next: From Wikipedia (appears to be reliable, based on additional reading by KK): ""The speakers of Siwu call themselves the ""Mawu"". Siwu is spoken in a total of eight villages scattered about in the mountains north of Hohoe. [The land is divided into] Akpafu (West) [akpa1243] and Lolobi (East) [lolo1260], corresponding to a dialectal division. [...] Within the Ghana-Togo Mountain Languages, the closest relatives of Siwu are Lεlεmi (Buem), Sεlε (Santrokofi), and Sεkpεlε (Likpe); with Siwu, these languages form a group that has been called the Buem group (Heine 1969). (https://en.wikipedia.org/wiki/Siwu_language).""",West Tropical Africa +Af38,Abron,7.53,-2.15,abro1238,Abron (Af38),xd217,Brong,1900,,,5,-3,Revised,,West Tropical Africa +Af39,Anyi,7,-4,anyi1245,Anyi (Af39),xd218,,1900,,,7,-4,Original,,West Tropical Africa +Af4,Yako,6,8,loka1252,Yako (Af4),xd219,,1930,,,6,8,Original,,West Tropical Africa +Ab20,Ngumbi,-15,15,nkhu1238,Ngumbi (Ab20),xd22,Bangumbi; Humbe; Khumbi; Nkumbe; Ovakumbe; Vankumbe,1880,,,-15,15,Original,,South Tropical Africa +Af40,Assini,5.27,-3.58,abur1243,Assini (Af40),xd220,Issinese,1890,,,5,-4,Revised,,West Tropical Africa +Af41,Attie,6,-4,atti1239,Attie (Af41),xd221,,1890,,,6,-4,Original,,West Tropical Africa +Af42,Fante,6,-1,fant1241,Fanti (Af42),xd222,Fanti,1900,Twi (FE12),FE12,6,-1,Original,,West Tropical Africa +Af43,Ga,6,0,gaaa1244,Ga (Af43),xd223,,1930,,,6,0,Original,,West Tropical Africa +Af44,Alagya,5.22,-4.42,alla1248,Alagya (Af44),xd224,Jackjack,1900,,,5,-4,Revised,,West Tropical Africa +Af45,Avikam,5.15,-5.25,avik1243,Avikam (Af45),xd225,Brignan; Kwakwa,1900,,,5,-5,Revised,,West Tropical Africa +Af46,Bakwe,5,-7,bakw1243,Bakwe (Af46),xd226,,1900,,,5,-7,Original,,West Tropical Africa +Af47,Krahn,6,-8,west2488,Kran (Af47),xd227,Kran; Bush Kru,1940,,,6,-8,Original,,West Tropical Africa +Af48,Kru,5,-9,klao1243,Kru (Af48),xd228,Krao,1850,,,5,-9,Original,,West Tropical Africa +Af49,Sapo,6,-9,sapo1251,Sapo (Af49),xd229,Pahn; Sapahn,1940,,,6,-9,Original,,West Tropical Africa +Ab21a,Kisama,-10,14,sama1300,Kisama (Ab21a),xd23,Cisama; Quissama,1930,,,-10,14,Original,,South Tropical Africa +Af5,Mende,8,-11,mend1266,Mende (Af5),xd230,,1930,Mende (FC07),FC07,8,-11,Original,,West Tropical Africa +Af50,Dan,8,-8,dann1241,Dan (Af50),xd231,,1920,,,8,8,Original,,West Tropical Africa +Af51,Gagu,7,-6,gagu1242,Gagu (Af51),xd232,Gban,1920,,,7,-6,Original,,West Tropical Africa +Af52,Guro,7,-6,guro1248,Guro (Af52),xd233,,1920,,,7,-6,Original,,West Tropical Africa +Af53,Tura,8,-7,tour1242,Tura (Af53),xd234,Wen,1950,,,8,-7,Original,,West Tropical Africa +Af54,Gbande,8,-10,band1352,Gbande (Af54),xd235,,1930,,,8,-10,Original,,West Tropical Africa +Af55,Gola,7,-11,gola1255,Gola (Af55),xd236,,1950,,,7,-11,Original,,West Tropical Africa +Af56,Ngere,7,-8,dann1241,Ngere (Af56),xd237,Guere,1930,,,7,-8,Original,,West Tropical Africa +Af57,Temne,8.46,-12.64,timn1235,Temne (Af57),xd238,Time,1910,,,8,-13,Revised,,West Tropical Africa +Af58,Vai,6.89,-11.2,vaii1241,Vai (Af58),xd239,Gallina,1900,,,7,-12,Revised,,West Tropical Africa +Ab21b,Bomvana,-32.17,28.93,bomv1238,Bomvana (Ab21b),xd24,,1925,,,-32,28,Revised_2Aug2021,,Southern Africa +Af6,Oyo Yoruba,8,4,oyoo1238,Oyo Yoruba (Af6),xd240,,1950,Yoruba (FF62),FF62,8,4,Original,2Aug2021 Dialect match updated by KK,West Tropical Africa +Af7,Bete,6,-7,dalo1238,Bete (Af7),xd241,,1950,,,6,-7,Original,Note 8Feb2018: Changed based on note from HH: Bete of Hallouin and Paulme is Bété-Daloa [bev],West Tropical Africa +Af8,Nupe,9,6,nupe1254,Nupe (Af8),xd242,,1930,Nupe (FF52),FF52,9,6,Original,,West Tropical Africa +Af9,Baule,8,-5,baou1238,Baule (Af9),xd243,,1900,,,8,-5,Original,,West Tropical Africa +Ag1,Bambara,13,-7,bamb1269,Bambara (Ag1),xd244,Bamana,1920,Bambara (FA08),FA08,13,-7,Original,,West Tropical Africa +Ag10,Konkomba,10,0,konk1269,Konkomba (Ag10),xd245,Bekpokpak; Konko; Kpankpam; Lekpokpam; Pangpana; Tyopo,1940,,,10,0,Original,,West Tropical Africa +Ag11,Lobi,10,-4,lobi1245,Lobi (Ag11),xd246,,1910,,,10,-4,Original,,West Tropical Africa +Ag12,Nankanse,10,-1,nank1249,Nankanse (Ag12),xd247,Nankana,1910,,,10,-1,Original,,West Tropical Africa +Ag13,Kasena,11,-1,kase1253,Kasena (Ag13),xd248,Kasem; Kasuna,1910,,,11,-1,Original,,West Tropical Africa +Ag14,Baga,10,-14,mbul1258,Baga (Ag14),xd249,,1950,,,10,-14,Original,"Note 8Feb2018: Glottocode changed to mbul1258 [mbv] based on note from HH: Paulme deals with Baga Sitemou = Baga Sitemu[bsp] and Baga Foré = Mbulungish [mbv] rather than Baga Koga. KK: In fact, these two languages are not sisters. However, a third reference refers to Nalu (nalu1240/[naj]) which IS a sister to mbv. THerefore, mbv was selected over bsp. [ALSO note that some references appear to refer to ""Baga Dörbed"" (Kalmyk), a Mongol people, and need to be re-assigned to society ""Kalmyk"" (aberle1953; krader1963; vladimirtsov1948). ",West Tropical Africa +Ab22,Chopi,-24.76,34.47,copi1238,Chopi (Ab22),xd25,Vachopi,1920,,,-25,35,Revised,,South Tropical Africa +Ag15,Balanta,12,-16,bala1301,Balante (Ag15),xd250,Balante,1930,,,12,-16,Original,,West Tropical Africa +Ag16,Banyun,12,-16,bain1259,Banyune (Ag16),xd251,Bainuk; Banhun; Banyune,1930,,,12,-16,Original,,West Tropical Africa +Ag17,Biafada,12,-15,biaf1240,Biafada (Ag17),xd252,,1940,,,12,-15,Original,,West Tropical Africa +Ag18,Bijogo,11.1,-16.15,bidy1244,Bijogo (Ag18),xd253,Bijago,1930,,,11,-16,Revised,,West Tropical Africa +Ag19,Diola,12.88,-16.19,ejam1238,Diola (Ag19),xd254,Jola-Felupe,1930,,,12,-17,Revised,Note 8Feb2018: Changed based on note from HH: Cunha Taborde deals with Jola-Felupe [eja] rather than Diola-Fonyi,West Tropical Africa +Ag2,Mossi (Yatenga),13,-2,moss1236,Yatenga (Ag2),xd255,Yatenga; Massi; Moshi; Mossi,1950,Mossi (FA28),FA28,13,-2,Original,"I think this should be the ""Ouahigouya"" dialect of Mossi (mos), though there is no such dialect in Glottolog.",West Tropical Africa +Ag20,Papel,12,-16,pape1239,Pepel (Ag20),xd256,Pepel,1930,,,12,-16,Original,,West Tropical Africa +Ag21,Bassari,12,-13,bass1258,Bassari (Ag21),xd257,Biyan,1910,,,12,-13,Original,,West Tropical Africa +Ag22,Serer,14,-12,sere1260,Serer (Ag22),xd258,Kegueme,1920,,,14,-12,Original,,West Tropical Africa +Ag23,Kasonke,13,-11,xaas1235,Kasonke (Ag23),xd259,,1910,,,13,-11,Original,,West Tropical Africa +Ab3,Lozi,-15,23,lozi1239,Lozi (Ab3),xd26,,1890,Lozi (FQ09),FQ09,-15,23,Original,,South Tropical Africa +Ag24,Koranko,9,-11,kura1250,Koranko (Ag24),xd260,,1910,,,9,-11,Original,,West Tropical Africa +Ag25,Soninke,15,10,soni1259,Soninke (Ag25),xd261,Sarakole,1900,,,15,10,Original,,West Tropical Africa +Ag26,Susu,15,-13,susu1250,Susu (Ag26),xd262,Soso,1930,,,15,-13,Original,,West Tropical Africa +Ag27,Diula,9,-4,dyul1238,Diula (Ag27),xd263,Dyoura,1910,,,9,-4,Original,,West Tropical Africa +Ag28,Nononke,14,-4,jena1242,Nono (Ag28),xd264,Nono; Marka; Marka-Dafing; Dafi,1930,,,14,-4,Original,,West Tropical Africa +Ag29,Samo,13,-3,sout2844,Samo (Ag29),xd265,Samako,1910,,,13,-3,Original,,West Tropical Africa +Ag3,Dogon,15,-3,bank1259,Dogon (Ag3),xd266,Dagom; Habbe; Kado; Tombo,1930,Dogon (FA16),FA16,15,-3,Original,,West Tropical Africa +Ag30,Bobo,13,-4,nort2819,Bobo (Ag30),xd267,,1910,,,13,-4,Original,,West Tropical Africa +Ag31,Minianka,12,-6,mama1271,Minianka (Ag31),xd268,,1910,,,12,-6,Original,,West Tropical Africa +Ag32,Senufo,10,-6,ceba1235,Senufo (Ag32),xd269,Sene; Siena,1900,,,10,-6,Original,,West Tropical Africa +Ab4,Tsonga,-24,32,tson1249,Thonga (Ab4),xd27,Thonga; Tonga; Vatsonga,1920,Tsonga (FT06),FT06,-24,32,Original,,South Tropical Africa +Ag33,Dyan,11,-3,dyan1251,Dian (Ag33),xd270,Dian; Dya,1920,,,11,-3,Original,,West Tropical Africa +Ag34,Dorosie,11,-4,dogo1295,Dorosie (Ag34),xd271,Dorho,1930,,,11,-4,Original,,West Tropical Africa +Ag35,Kulango,7,-3,boun1243,Kulango (Ag35),xd272,Parkhalla,1910,,,7,-3,Original,,West Tropical Africa +Ag36,Lowiili,11,-3,sout2790,Lowiili (Ag36),xd273,,1950,,,11,-3,Original,Note 8Feb2018: Changed based on note from HH: LoWiili or Goody is Birifor-Southern [biv],West Tropical Africa +Ag37,Awuna,11,-2,angl1262,Awuna (Ag37),xd274,Atyulo; Frafra; Kassonfra; Yulu,1910,,,11,-2,Original,,West Tropical Africa +Ag38,Builsa,11,-2,buli1254,Builsa (Ag38),xd275,Bura; Kanjaga,1910,,,11,-2,Original,,West Tropical Africa +Ag39,Dagara,11,-3,sout2789,Dagari (Ag39),xd276,Dagari; Dagaba,1910,,,11,-3,Original,,West Tropical Africa +Ag4,Tallensi,11,-1,taln1239,Tallensi (Ag4),xd277,,1930,Tallensi (FE11),FE11,11,-1,Original,,West Tropical Africa +Ag40,Isala,10,-2,tumu1242,Isala (Ag40),xd278,Debe; Gelebagu; Hisala; Pasala,1910,,,10,-2,Original,,West Tropical Africa +Ag41,Kusasi,11,0,kusa1250,Kusasi (Ag41),xd279,Kusal,1920,,,11,0,Original,,West Tropical Africa +Ab5,Mbundu,-12,16,umbu1257,Mbundu (Ab5),xd28,Banano; Mbari; Nano; Ovimbundu,1930,Mbundu (FP13),FP13,-12,16,Original,,South Tropical Africa +Ag42,Nunuma,12,-3,sout2795,Nunuma (Ag42),xd280,Gurunsi,1910,,,12,-3,Original,,West Tropical Africa +Ag43,Vagala,8,-2,vagl1239,Vagala (Ag43),xd281,Siti,1920,,,8,-2,Original,,West Tropical Africa +Ag44,Dagomba,9,0,dagb1246,Dagomba (Ag44),xd282,Dagbamba,1910,,,9,0,Original,,West Tropical Africa +Ag45,Gurma,12,2,gour1243,Gurma (Ag45),xd283,bigourmantcheba; Gourmantche,1930,,,12,2,Original,,West Tropical Africa +Ag46,Manprusi,10,-1,mamp1244,Manprusi (Ag46),xd284,Mampelle,1920,,,10,-1,Original,,West Tropical Africa +Ag47,Mossi (Ouagadougou),12,-2,moss1236,Mossi Ouagadou (Ag47),xd285,Mossi Ouagadou; Massi; Moshi,1900,Mossi (FA28),FA28,12,-2,Original,,West Tropical Africa +Ag48,Basari,9,1,ntch1242,Basari (Ag48),xd286,,1890,,,9,1,Original,,West Tropical Africa +Ag49,Kabre,10,2,kabi1261,Kabre (Ag49),xd287,Bekaburum; Kabure,1930,,,10,2,Original,,West Tropical Africa +Ag5,Birifor,10,-3,sout2790,Birifor (Ag5),xd288,Birifon,1930,,,10,-3,Original,,West Tropical Africa +Ag50,Moba,11,1,moba1244,Moba (Ag50),xd289,Bmoba; Moab,1910,,,11,1,Original,,West Tropical Africa +Ab6,Venda,-23,30,vend1245,Venda (Ab6),xd29,Bavenda; Bawenda,1900,,,-23,30,Original,,Southern Africa +Ag51,Somba,11,1,dita1238,Somba (Ag51),xd290,Betammadibe; Tamprusi,1940,,,11,1,Original,,West Tropical Africa +Ag52,Tem,11,1,temm1241,Tem (Ag52),xd291,Chancho; Kotokoli,1950,,,11,1,Original,,West Tropical Africa +Ag53,Bisa,12,0,biss1248,Bisa (Ag53),xd292,Busanse,1960,,,12,0,Original,,West Tropical Africa +Ag54,Yalunka,10,-12,yalu1240,Yalunka (Ag54),xd293,Dialonke,1910,,,10,-12,Original,,West Tropical Africa +Ag6,Futajalonke,11,-13,pula1262,Futajalonke (Ag6),xd294,Foutadjallonke,1890,,,11,-13,Original,,West Tropical Africa +Ag7,Bozo,14,-5,tiey1235,Bozo (Ag7),xd295,,1930,,,14,-5,Original,,West Tropical Africa +Ag8,Coniagui,13,-13,wame1240,Coniagui (Ag8),xd296,Awunlen; Koniagi,1910,,,13,-13,Original,,West Tropical Africa +Ag9,Malinke,11,-9,kita1249,Malinke (Ag9),xd297,Mandingo; Wangara,1930,,,11,-9,Original,"Note 8Feb2018: Glottocode changed to kita1249 [mwk], which is hte focus of Sidibe's work, and also has ""Central Malinke"" listed as an alternative language name. Another reference for this society is focused (according to HH's notes on the closely related [mnk], but whether it also touches on mwk, and/or might have been used for context/depth, should be verified.",West Tropical Africa +Ah1,Katab,10,8,kata1265,Katab (Ah1),xd298,,1930,Katab (FF38),FF38,10,8,Original,,West Tropical Africa +Ah10,Chawai,10,9,atsa1241,Chawai (Ah10),xd299,Atsam,1920,,,10,9,Original,,West Tropical Africa +Aa3,Nama,-26,18,nama1265,Nama Hottentot (Aa3),xd3,Khoekhoe; Namaqua; Nama Hottentot,1840,Khoi (FX13),FX13,-26,18,Original,,Southern Africa +Ab7,Nyaneka,-15,14,nyan1305,Nyaneka (Ab7),xd30,Banianeka; Munyaneka; Ovanyaneka; Vanyaneka,1920,,,-15,14,Original,,South Tropical Africa +Ah11,Basa,8,8,basa1282,Basa (Ah11),xd300,Bassa,1950,,,8,8,Original,,West Tropical Africa +Ah12,Basakomo,8,7,basa1282,Basakomo (Ah12),xd301,Bassa-Komo,1920,,,8,7,Original,,West Tropical Africa +Ah13,Dakakari,12,5,clel1238,Dakakari (Ah13),xd302,,1930,,,12,5,Original,,West Tropical Africa +Ah14,Kamuku,11,6,cind1241,Kamuku (Ah14),xd303,,1920,,,11,6,Original,,West Tropical Africa +Ah15,Reshe,11,5,resh1242,Reshe (Ah15),xd304,Bareshe; Gungawa; Yauri,1920,,,11,5,Original,,West Tropical Africa +Ah16,Angas,9,9,ngas1240,Angas (Ah16),xd305,,1900,,,9,9,Original,,West Tropical Africa +Ah17,Birom,10,9,bero1242,Birom (Ah17),xd306,Burum; Kibo,1930,,,10,9,Original,,West Tropical Africa +Ah18,Burmawa,10,10,bogh1241,Borrom (Ah18),xd307,Borrom,1930,,,10,10,Original,,West Tropical Africa +Ah19,Adara,10,8,kada1284,Kadara (Ah19),xd308,Kadara,1930,,,10,8,Original,,West Tropical Africa +Ah2,Jukun,8,10,juku1254,Jukun (Ah2),xd309,Juko,1920,,,8,10,Original,,West Tropical Africa +Ab8,Sotho,-29,28,sout2807,Sotho (Ab8),xd31,Basuto,1860,,,-29,28,Original,,Southern Africa +Ah20,Kagoro,10,8,kago1246,Kagoro (Ah20),xd310,,1920,Katab (FF38),FF38,10,8,Original,,West Tropical Africa +Ah21,Kurama,10,9,kura1249,Kurama (Ah21),xd311,,1920,,,10,9,Original,,West Tropical Africa +Ah22,Yergum,9,10,taro1263,Yergum (Ah22),xd312,,1900,,,9,10,Original,,West Tropical Africa +Ah23,Jibu,8,11,jibu1239,Jibu (Ah23),xd313,Jubu,1920,,,8,11,Original,,West Tropical Africa +Ah24,Kentu,7,10,etky1238,Kentu (Ah24),xd314,,1920,,,7,10,Original,,West Tropical Africa +Ah25,Tigon,17,11,tigo1236,Tigon (Ah25),xd315,Tukum; Thgon,1920,,,17,11,Original,,West Tropical Africa +Ah26,Ndoro,7,11,ndoo1241,Ndoro (Ah26),xd316,,1920,,,7,11,Original,,West Tropical Africa +Ah27,Zuande,7,11,bita1251,Zuande (Ah27),xd317,Bitare; Yukutare,1920,,,7,11,Original,,West Tropical Africa +Ah28,Chamba,8,11,samb1305,Chamba (Ah28),xd318,Tsamba,1920,,,8,11,Original,,West Tropical Africa +Ah29,Daka,8,11,samb1311,Daka (Ah29),xd319,Dekka,1920,,,8,11,Original,,West Tropical Africa +Ab9,Ndebele,-20,28,nort2795,Ndebele (Ab9),xd32,Amandebele; Matabele,1870,,,-20,28,Original,,South Tropical Africa +Ah3,Tiv,7,9,tivv1240,Tiv (Ah3),xd320,Munshi,1920,Tiv (FF57),FF57,7,9,Original,,West Tropical Africa +Ah30,Longuda,10,12,long1389,Longuda (Ah30),xd321,Nunguda,1920,,,10,12,Original,,West Tropical Africa +Ah31,Mumuye,9,12,nucl1240,Mumuye (Ah31),xd322,,1910,,,9,12,Original,,West Tropical Africa +Ah32,Vere,9,13,momj1237,Vere (Ah32),xd323,Were,1920,,,9,13,Original,,West-Central Tropical Africa +Ah33,Yungur,10,12,bena1260,Yungur (Ah33),xd324,Binna,1920,,,10,12,Original,Note 8Feb2018: HH: Yungur usually refers to Bena [yun] rather than its sister Voro [vor].,West Tropical Africa +Ah34,Bata,10,13,bata1314,Bata (Ah34),xd325,,1920,,,10,13,Original,,West Tropical Africa +Ah35,Bura,10,12,bura1292,Bura (Ah35),xd326,,1920,,,10,12,Original,,West Tropical Africa +Ah36,Gude,10,13,gude1246,Gude (Ah36),xd327,Cheke,1920,,,10,13,Original,,West Tropical Africa +Ah37,Hwana,10,13,hwan1240,Hona (Ah37),xd328,Hona,1920,,,10,13,Original,,West Tropical Africa +Ah38,Kapsiki,11,14,psik1239,Kapsiki (Ah38),xd329,Hiji; Hill Margi,1930,,,11,14,Original,,West-Central Tropical Africa +Ac1,Ila,-16,27,ilaa1246,Ila (Ac1),xd33,Baila,1920,Ila (FQ06),FQ06,-16,27,Original,,South Tropical Africa +Ah39,Podokwo,11,14,park1239,Podokwo (Ah39),xd330,Podogo,1950,,,11,14,Original,,West-Central Tropical Africa +Ah4,Mambila,7,12,came1252,Mambila (Ah4),xd331,Torbi,1920,,,7,12,Original,,West-Central Tropical Africa +Ah5,Margi,11,13,marg1265,Margi (Ah5),xd332,Marghi,1930,,,11,13,Original,,West Tropical Africa +Ah6,Gure,10,8,gbir1241,Gure (Ah6),xd333,Agbiri,1920,,,10,8,Original,,West Tropical Africa +Ah7,Mafa,11,14,mafa1239,Matakam (Ah7),xd334,Matakam,1940,,,11,14,Original,,West-Central Tropical Africa +Ah8,Bafute,6,12,vute1244,Wute (Ah8),xd335,Wute; Bafute; Bute; Mfute,1910,,,6,12,Original,,West-Central Tropical Africa +Ah9,Anaguta,10,9,igut1238,Anaguta (Ah9),xd336,Naguta,1920,,,10,9,Original,,West Tropical Africa +Ai1,Banda,7,22,west2458,Banda (Ai1),xd337,,1920,,,7,22,Original,,West-Central Tropical Africa +Ai10,Otoro,12,31,otor1240,Otoro (Ai10),xd338,Otoro Nuba; Nuba,1940,,,12,31,Original,,Northeast Tropical Africa +Ai11,Mangbetu,3,28,nucl1420,Mangbetu (Ai11),xd339,Monbuttu,1900,,,3,28,Original,,West-Central Tropical Africa +Ac10,Chewa,-14,33,chew1246,Chewa (Ac10),xd34,Achewa; Cewa; Sheva,1920,,,-14,33,Original,,South Tropical Africa +Ai12,Fali,10,14,sout2782,Fali (Ai12),xd340,,1950,,,10,14,Original,Note 8Feb2018: Changed based on note from HH: Fali of Malzy is Fali from Tingelin = South Fali [fal],West-Central Tropical Africa +Ai13,Laka,8,16,laka1254,Laka (Ai13),xd341,,1920,,,8,16,Original,"Note 8Feb2018: Changed based on note from HH: Lakka of Tessmann refers to the Sara language Laka [lap] in Tchad/CAR, not Nigeria!",Northeast Tropical Africa +Ai14,Mbum,7,14,mbum1254,Mbum (Ai14),xd342,,1920,,,7,14,Original,,West-Central Tropical Africa +Ai15,Mundang,10,14,mund1325,Mundang (Ai15),xd343,Moundan,1900,,,10,14,Original,,West-Central Tropical Africa +Ai16,Namshi,9,13,doya1240,Namshi (Ai16),xd344,Doayo,1910,,,9,13,Original,,West-Central Tropical Africa +Ai17,Gisiga,10,14,sout3051,Gisiga (Ai17),xd345,Guissiga,1930,,,10,14,Original,,West-Central Tropical Africa +Ai18,Kotoko,12,15,lagw1237,Kotoko (Ai18),xd346,Logone; Makari,1880,,,12,15,Original,,West-Central Tropical Africa +Ai19,Musgu,11,15,musg1254,Musgu (Ai19),xd347,Muzuk,1910,,,11,15,Original,,West-Central Tropical Africa +Ai2,Nyaro,11,31,kooo1244,Nyaro (Ai2),xd348,,1940,,,11,31,Original,,Northeast Tropical Africa +Ai20,Tupuri,10,15,tupu1244,Tuburi (Ai20),xd349,Tuburi; Toupouri,1910,,,10,15,Original,,West-Central Tropical Africa +Ac11,Luvale,-12,22,luva1239,Luvale (Ac11),xd35,Aluena; Balovale; Lobare; Luena,1930,,,-12,22,Original,,South Tropical Africa +Ai21,Bagirmi,11,17,bagi1246,Bagirmi (Ai21),xd350,,1880,,,11,17,Original,,Northeast Tropical Africa +Ai22,Sara,9,18,sarr1246,Sara (Ai22),xd351,,1890,,,9,18,Original,,Northeast Tropical Africa +Ai23,Bwaka,3,19,ngba1284,Bwaka (Ai23),xd352,Gbwaka; Mbaka; Ngbaka,1920,,,3,19,Original,,West-Central Tropical Africa +Ai24,Mandja,6,18,manz1243,Mandja (Ai24),xd353,,1900,,,6,18,Original,,West-Central Tropical Africa +Ai25,Mbandja,4,21,mban1263,Mbandja (Ai25),xd354,Banza,1950,,,4,21,Original,,West-Central Tropical Africa +Ai26,Ngbandi,4,22,nort2774,Ngbandi (Ai26),xd355,Gbandi; Mogwandi,1920,,,4,22,Original,,West-Central Tropical Africa +Ai27,Abarambo,4,27,bara1361,Abarambo (Ai27),xd356,,1890,,,4,27,Original,,West-Central Tropical Africa +Ai28,Popoi,2,26,popo1291,Popoi (Ai28),xd357,Bagunda; Bapopoie,1910,,,2,26,Original,,West-Central Tropical Africa +Ai29,Lendu,2,30,lend1245,Lendu (Ai29),xd358,Bale; Walega; Walendu,1920,,,2,30,Original,,West-Central Tropical Africa +Ai3,Azande,5,27,zand1248,Azande (Ai3),xd359,Niam-Niam,1920,Azande (FO07),FO07,5,27,Original,,West-Central Tropical Africa +Ac12,Chokwe,-10,21,chok1245,Chokwe (Ac12),xd36,Badjok; Kioko; Tsokwe,1920,,,-10,21,Original,,South Tropical Africa +Ai30,Lese,2,29,lese1243,Lese (Ai30),xd360,Balese; Walese,1920,,,2,29,Original,,West-Central Tropical Africa +Ai31,Logo,3,30,logo1259,Logo (Ai31),xd361,,1920,,,3,30,Original,,West-Central Tropical Africa +Ai32,Lugbara,3,32,lugb1240,Lugbara (Ai32),xd362,Lugware,1920,,,3,32,Original,,East Tropical Africa +Ai33,Madi,4,32,madi1260,Madi (Ai33),xd363,,1940,,,4,32,Original,,Northeast Tropical Africa +Ai34,Moru,5,30,moru1253,Moru (Ai34),xd364,,1880,,,5,30,Original,,Northeast Tropical Africa +Ai35,Bongo,7,29,bong1285,Bongo (Ai35),xd365,Dor,1870,,,7,29,Original,,Northeast Tropical Africa +Ai36,Jur,8,28,luwo1239,Jur (Ai36),xd366,Gour; Jo-Luo,1920,,,8,28,Original,"Changed again on 09Nov2018: Further reading suggests this Luo speaking group from South Sudan should actually be matched to language luwo1239 ""Dhe Luo"", not to luok1236. See Tucker (1931) “The tribal confusion around Wau [Sudan]” (Sudan Notes and Records 14(1): 49-60 for further disambiguation. Note 8Feb2018: Changed based on note from HH: Crazzolara and Santandrea (and probably the others) is about the Nilotic Luo [luo] which is a completely different language than SBB Jur Modo [bex]",Northeast Tropical Africa +Ai37,Koalib,12,31,koal1240,Koalib (Ai37),xd367,,1940,,,12,31,Original,,Northeast Tropical Africa +Ai38,Korongo,10,30,kron1241,Korongo (Ai38),xd368,,1930,,,10,30,Original,,Northeast Tropical Africa +Ai39,Mesakin,11,30,ngil1242,Mesakin (Ai39),xd369,,1940,,,11,30,Original,,Northeast Tropical Africa +Ac13,Tonga,-12,34,tong1321,Lake Tonga (Ac13),xd37,Lake Tonga; Batonga; Matoka,1950,Lakeshore Tonga (FR07),FR07,-12,34,Original,,South Tropical Africa +Ai4,Ingassana,11,34,gaam1241,Ingassana (Ai4),xd370,Engassana; Metabe; Tabi,1920,,,11,34,Original,,Northeast Tropical Africa +Ai40,Moro,11,30,moro1285,Moro (Ai40),xd371,,1940,,,11,30,Original,,Northeast Tropical Africa +Ai41,Tira,11,30,tira1254,Tira (Ai41),xd372,,1930,,,11,30,Original,,Northeast Tropical Africa +Ai42,Tullishi,12,29,tuli1249,Tullishi (Ai42),xd373,,1940,,,12,29,Original,,Northeast Tropical Africa +Ai43,Nyimang,12,29,amas1236,Nyima (Ai43),xd374,Nyima; Nyamang,1930,,,12,29,Original,,Northeast Tropical Africa +Ai44,Anuak,8,34,anua1242,Anuak (Ai44),xd375,Yambo,1920,,,8,34,Original,,Northeast Tropical Africa +Ai45,Meban,10,34,maba1273,Meban (Ai45),xd376,Gura; Maban,1930,,,10,34,Original,,Northeast Tropical Africa +Ai46,Koma,9,35,komo1258,Koma (Ai46),xd377,Gwama; Coma,1930,,,9,35,Original,,Northeast Tropical Africa +Ai47,Mao,9,35,hozo1236,Mao (Ai47),xd378,,1939,,,9,35,Original,,Northeast Tropical Africa +Ai5,Mamvu,3,29,mamv1243,Mamvu (Ai5),xd379,Mornvu,1920,,,3,29,Original,,West-Central Tropical Africa +Ac14,Bakongo,-7,15,sans1272,Kongo (Ac14),xd38,Kongo,1900,,,-7,15,Original,,South Tropical Africa +Ai6,Shilluk,10,32,shil1265,Shilluk (Ai6),xd380,,1900,Shilluk (FJ23),FJ23,10,32,Original,,Northeast Tropical Africa +Ai7,Gbaya,6,16,nort2775,Baya (Ai7),xd381,Baya; Baja,1910,,,6,16,Original,,West-Central Tropical Africa +Ai8,Dilling,12,30,dill1242,Dilling (Ai8),xd382,,1930,,,12,30,Original,,Northeast Tropical Africa +Ai9,Masa,10,16,masa1322,Masa (Ai9),xd383,Massa,1910,,,10,16,Original,,Northeast Tropical Africa +Aj1,Teso,2,34,teso1249,Teso (Aj1),xd384,Bateso; Iteso; Kedi,1950,,,2,34,Original,,East Tropical Africa +Aj10,Acholi,3,32,dhop1238,Acholi (Aj10),xd385,Acooli,1920,,,3,32,Original,,East Tropical Africa +Aj11,Dinka,9,29,sout2832,Dinka (Aj11),xd386,Denkawi,1900,,,9,29,Original,"Note 8Feb2018: Glottocode left as sout2832, as most of the refs seem to refer to [dik]. Users should be aware that ethnographies relating to different Dinka languages are all listed as sources here, hopefully those not focused on the target group help provide context etc.",Northeast Tropical Africa +Aj12,Lotuko,4,33,otuh1238,Lotuko (Aj12),xd387,Latuka,1920,,,4,33,Original,,Northeast Tropical Africa +Aj13,Pojulu,4,31,poju1239,Fajulu (Aj13),xd388,Fajulu,1930,,,4,31,Original,,Northeast Tropical Africa +Aj14,Kakwa,4,31,kakw1240,Kakwa (Aj14),xd389,Kakuak,1931,,,4,31,Original,,Northeast Tropical Africa +Ac15,Mbala,-5,18,mbal1257,Mbala (Ac15),xd39,Ambala; Bambala,1900,,,-5,18,Original,,West-Central Tropical Africa +Aj15,Kuku,4,32,kuku1285,Kuku (Aj15),xd390,,1900,,,4,32,Original,,Northeast Tropical Africa +Aj16,Mondari,6,31,mand1425,Mondari (Aj16),xd391,Mandari,1930,,,6,31,Original,,Northeast Tropical Africa +Aj17,Alur,2,31,alur1250,Alur (Aj17),xd392,Aloro; Lur,1890,,,2,31,Original,,West-Central Tropical Africa +Aj18,Bodi,5,35,meen1242,Bodi (Aj18),xd393,,1950,,,5,35,Original,,Northeast Tropical Africa +Aj19,Didinga,4,34,didi1258,Didinga (Aj19),xd394,Birra; Karoko; Toi,1920,,,4,34,Original,,East Tropical Africa +Aj2,Maasi,-2,36,masa1300,Masai (Aj2),xd395,Masai,1900,Masai (FL12),FL12,-2,36,Original,,East Tropical Africa +Aj20,Suri,6,35,suri1267,Suri (Aj20),xd396,Churi; Kichepo; Thauk; Thuri,1940,,,6,35,Original,,Northeast Tropical Africa +Aj21,Jie,3,34,jiee1239,Jie (Aj21),xd397,,1930,,,3,34,Original,,East Tropical Africa +Aj22,Labwor,3,34,labw1238,Labwor (Aj22),xd398,,1930,,,3,34,Original,,East Tropical Africa +Aj23,Plains Suk,1,36,east2420,Plains Suk (Aj23),xd399,Pokot,1950,,,1,36,Original,,East Tropical Africa +Aa4,Bergdama,-22,16,dama1270,Bergdama (Aa4),xd4,Hakouin; Mountain Damara,1920,,,-22,16,Original,,Southern Africa +Ac16,Mitsogho,-1,12,tsog1243,Shogo (Ac16),xd40,Shogo; Ashogo; Issogo; Mitsogo,1940,,,-1,12,Original,,West-Central Tropical Africa +Aj24,Toposa,5,34,topo1242,Topotha (Aj24),xd400,Topotha; Dabosa,1930,,,5,34,Original,,Northeast Tropical Africa +Aj25,Keyu,0,36,keiy1238,Keyu (Aj25),xd401,Elgeyu,1920,,,0,36,Original,,East Tropical Africa +Aj26,Hill Suk,1,36,west2492,Hill Suk (Aj26),xd402,Pokot,1910,,,1,36,Original,,East Tropical Africa +Aj27,Sapei,1,35,kups1238,Sapei (Aj27),xd403,Sabei,1920,,,1,35,Original,,East Tropical Africa +Aj28,Tatoga,-5,35,dato1239,Tatoga (Aj28),xd404,Datoga; Mangati; Taturu,1940,,,-5,35,Original,,East Tropical Africa +Aj29,Samburu,1,37,samb1315,Samburu (Aj29),xd405,Lokop; Loikop,1950,,,1,37,Original,,East Tropical Africa +Aj3,Nuer,8,32,nuer1246,Nuer (Aj3),xd406,Nath,1930,Nuer (FJ22),FJ22,8,32,Original,,Northeast Tropical Africa +Aj30,Karamojong,2,34,nucl1430,Karamojong (Aj30),xd407,,1950,,,2,34,Original,,East Tropical Africa +Aj31,Pari,5,33,pari1256,Pari (Aj31),xd408,Jo-Pari; Beri; Fori,1920,,,5,33,Original,,Northeast Tropical Africa +Aj4,Lango,2,33,lang1324,Lango (Aj4),xd409,Umiro,1920,,,2,33,Original,,East Tropical Africa +Ac17,Suku,-6,18,suku1259,Suku (Ac17),xd41,,1910,Suku (FO46),FO46,-6,18,Original,,West-Central Tropical Africa +Aj5,Turkana,4,35,turk1308,Turkana (Aj5),xd410,ŋiTurkana; Elgume,1920,Turkana (FL17),FL17,4,35,Original,,East Tropical Africa +Aj6,Luo,-1,34,luok1236,Luo (Aj6),xd411,Jaluo; Luwo; Nilotic Kavirondo; Nyifwa,1940,Luo (FL11),FL11,-1,34,Original,,East Tropical Africa +Aj7,Nandi,0,35,nand1266,Nandi (Aj7),xd412,,1910,,,0,35,Original,,East Tropical Africa +Aj8,Bari,5,32,ligo1238,Bari (Aj8),xd413,,1920,,,5,32,Original,,Northeast Tropical Africa +Aj9,Kipsigis,-1,36,kips1239,Kipsigis (Aj9),xd414,Lumbwa; Sikisi,1920,,,-1,36,Original,,East Tropical Africa +Ca1,Konso,6,37,kons1243,Konso (Ca1),xd415,,1930,Konso (MP17),MP17,6,37,Original,,Northeast Tropical Africa +Ca10,Somali (Esa),10,43,nort3051,Esa (Ca10),xd416,Eissa; Isa,1880,Somali (MO04),MO04,10,43,Original,,Northeast Tropical Africa +Ca11,Arusi,8,40,bora1271,Arusi (Ca11),xd417,,1890,,,8,40,Original,,Northeast Tropical Africa +Ca12,Gibe,8,37,west2721,Gibe (Ca12),xd418,Oromo of Gibe Region,1880,,,8,37,Original,"Note 8Feb2018: Changed after note from HH: ""Haven't checked the details of the refs but very difficult to see how Gibe (= a region) best matches with Koorete rather than Oromo or Kaffa"". KK: indeed, an alt_name for this group is ""Oromo of Gibe Region"".",Northeast Tropical Africa +Ca13,Macha,9,37,west2721,Macha (Ca13),xd419,Mecca,1950,,,9,37,Original,,Northeast Tropical Africa +Ac18,Sundi,-5,14,koon1244,Sundi (Ac18),xd42,Basundi,1910,,,-5,14,Original,Note 8Feb2018: Changed based on note from HH: Hutereau's Kimanyanga refers to Koongo [kng],West-Central Tropical Africa +Ca14,Burji,5,38,burj1242,Burji (Ca14),xd420,,1950,,,5,38,Original,,Northeast Tropical Africa +Ca15,Darasa,6,38,gede1246,Darasa (Ca15),xd421,,1930,,,6,38,Original,,Northeast Tropical Africa +Ca16,Sidama,7,38,sida1246,Sidamo (Ca16),xd422,Sidamo,1930,,,7,38,Original,,Northeast Tropical Africa +Ca17,Tsamai,5,37,tsam1247,Tsamai (Ca17),xd423,Tsamako,1950,,,5,37,Original,,Northeast Tropical Africa +Ca18,Arbore,5,37,arbo1245,Arbore (Ca18),xd424,Harbora,1940,,,5,37,Original,,Northeast Tropical Africa +Ca19,Banna,6,36,hame1242,Banna (Ca19),xd425,Bunna,1950,,,6,36,Original,,Northeast Tropical Africa +Ca2,Somali (Dolbahanta),8,48,nort3051,Somali (Ca2),xd426,,1950,Somali (MO04),MO04,8,48,Original,,Northeast Tropical Africa +Ca20,Galab,5,36,daas1238,Galab (Ca20),xd427,Darthanaic; Geleba; Reshiat,1890,,,5,36,Original,,Northeast Tropical Africa +Ca21,Hamar,5,36,hame1242,Hammar (Ca21),xd428,Hammar; Amar; Amarcocche; Hamarkoke,1950,,,5,36,Original,,Northeast Tropical Africa +Ca22,Male,6,37,male1284,Male (Ca22),xd429,Maale,1950,,,6,37,Original,,Northeast Tropical Africa +Ac19,Teke,-3,15,teke1278,Teke (Ac19),xd43,Bateke,1880,,,-3,15,Original,"Note, previously nzu and teke1279, but glottocode teke1279 is considered ""bookkeeping"", and SIL says nzu and ebo are said to be neighbouring dialects. Therefore, switched to ebo.",West-Central Tropical Africa +Ca23,Bako,6,37,aari1239,Bako (Ca23),xd430,Ari; Baka,1950,,,6,37,Original,,Northeast Tropical Africa +Ca24,Dime,6,36,dime1235,Dime (Ca24),xd431,,1950,,,6,36,Original,,Northeast Tropical Africa +Ca25,Shangama,6,37,aari1239,Shangama (Ca25),xd432,,1950,,,6,37,Original,,Northeast Tropical Africa +Ca26,Ubamer,6,37,aari1239,Ubamer (Ca26),xd433,Wubahamer,1950,,,6,37,Original,,Northeast Tropical Africa +Ca27,Anfillo,9,35,anfi1235,Anfillo (Ca27),xd434,Southern Mao,1930,,,9,35,Original,,Northeast Tropical Africa +Ca28,Basketo,6,37,bask1236,Basketo (Ca28),xd435,,1950,,,6,37,Original,,Northeast Tropical Africa +Ca29,Yem,8,38,toba1264,Janjero (Ca29),xd436,Janjero,1920,,,8,38,Original,,Northeast Tropical Africa +Ca3,Tigrinya,14,39,tigr1271,Tigrinya (Ca3),xd437,,1950,,,14,39,Original,,Northeast Tropical Africa +Ca30,Kafa,7,36,kafa1242,Kafa (Ca30),xd438,Kafecho; Kaffa,1890,Kaffa (MP14),MP14,7,36,Original,,Northeast Tropical Africa +Ca31,Beta Israel,12,37,qima1242,Falasha (Ca31),xd439,Falasha; Black Jews,1860,,,12,37,Original,,Northeast Tropical Africa +Ac2,Pende,-6,20,phen1239,Pende (Ac2),xd44,Bapende,1920,,,-6,20,Original,,West-Central Tropical Africa +Ca32,Nara,16,38,nara1262,Barea (Ca32),xd440,Barea; Baria,1860,,,16,38,Original,,Northeast Tropical Africa +Ca33,Kunama,15,37,kuna1268,Kunama (Ca33),xd441,Cunama,1860,,,15,37,Original,,Northeast Tropical Africa +Ca34,Ababda,24,34,abab1239,Ababda (Ca34),xd442,,1920,,,24,34,Original,,Northern Africa +Ca35,Amarar,20,36,amar1281,Amarar (Ca35),xd443,,1930,,,20,36,Original,,Northeast Tropical Africa +Ca36,Beni-Amer,18,38,mans1267,Beni Amer (Ca36),xd444,Beni Amer,1860,,,18,38,Original,,Northeast Tropical Africa +Ca37,Blin,16,36,bili1260,Bogo (Ca37),xd445,Bogo; Belen; Bilin,1850,,,16,36,Original,,Northeast Tropical Africa +Ca38,Tigre,17,39,mans1267,Tigre (Ca38),xd446,,1860,,,17,39,Original,,Northeast Tropical Africa +Ca39,Jimma,8,37,west2721,Jimma (Ca39),xd447,,1930,,,8,37,Original,Change 15Dec2017: fuga1235 replaced with west2721 [gaz] based on comment by HH: Lewis (1965) refers to ethnographic data from the Jimma kingdom I guess it should be attributed to Mec'a Galla = Western Oromo [gaz]. Maybe there are facts in there about Giangero also but it merely mentions the Fuga without giving any data on them.,Northeast Tropical Africa +Ca4,Iraqw,-4,35,iraq1241,Iraqw (Ca4),xd448,Erokh; Mbulu; Wambulu,1950,,,-4,35,Original,,East Tropical Africa +Ca40,Baditu,6,38,koor1239,Baditu (Ca40),xd449,Amarro; Koira,1950,,,6,38,Original,,Northeast Tropical Africa +Ac20,Yaka,-7,17,yaka1269,Yaka (Ac20),xd45,Bayaka; Giaka; Maiaca,1920,,,-7,17,Original,,West-Central Tropical Africa +Ca41,Dorse,6,38,dorz1235,Dorse (Ca41),xd450,Dorze,1950,,,6,38,Original,,Northeast Tropical Africa +Ca42,Shako,7,36,shek1245,Shako (Ca42),xd451,Chako; Shekke; Tschako,1950,,,7,36,Original,,Northeast Tropical Africa +Ca43,Hadendowa,18,36,hade1248,Hadendowa (Ca43),xd452,Hendawa,1930,,,18,36,Original,,Northeast Tropical Africa +Ca5,Bisharin,20,35,bish1251,Bisharin (Ca5),xd453,,1930,,,20,35,Original,,Northeast Tropical Africa +Ca6,Afar,12,42,afar1241,Afar (Ca6),xd454,Danakil; Dankali,1880,,,12,42,Original,,Northeast Tropical Africa +Ca7,Amhara,13,38,amha1245,Amhara (Ca7),xd455,,1950,Amhara (MP05),MP05,13,38,Original,,Northeast Tropical Africa +Ca8,Gurage,8,38,seba1251,Gurage (Ca8),xd456,,1940,,,8,38,Original,,Northeast Tropical Africa +Ca9,Goroa,-4,36,goro1270,Goroa (Ca9),xd457,Fiome; Guruma,1890,,,-4,36,Original,,East Tropical Africa +Cb1,Maguzawa,12,10,kano1249,Maguzawa (Cb1),xd458,Pagan Hausa,1940,Hausa (MS12),MS12,12,10,Original,,West Tropical Africa +Cb10,Karekare,12,11,kare1348,Karekare (Cb10),xd459,,1920,,,12,11,Original,,West Tropical Africa +Ac21,Bunda,-5,19,mpuo1241,Bunda (Ac21),xd46,Ambundu; Babunda,1910,,,-5,19,Original,,West-Central Tropical Africa +Cb11,Midobi,16,27,mido1240,Midobi (Cb11),xd460,Meidob,1900,,,16,27,Original,,Northeast Tropical Africa +Cb12,Gimma,13,32,nort3133,Gimma (Cb12),xd461,Gimaa,1920,,,13,32,Original,,Northeast Tropical Africa +Cb13,Habbaniya,11,25,nort3133,Habbania (Cb13),xd462,Habbania,1930,,,11,25,Original,,Northeast Tropical Africa +Cb14,Hemat,11,20,bath1248,Hemat (Cb14),xd463,Baggara; Heimad,1910,,,11,20,Original,,Northeast Tropical Africa +Cb15,Messiria Humr,11,28,tama1331,Messiria Humr (Cb15),xd464,,1940,,,11,28,Original,Note 8Feb2018: Changed based on note from HH: This may/may not be the intended attribution. Messiria are switching towards Sudanese Arabic but their ancestral language is Tama [tma].,Northeast Tropical Africa +Cb16,Shuwa,13,15,char1283,Shuwa (Cb16),xd465,Chiwa; Shoa,1920,,,13,15,Original,,Northeast Tropical Africa +Cb17,Fur,12,24,furr1244,Fur (Cb17),xd466,Darfur,1880,,,12,24,Original,,Northeast Tropical Africa +Cb18,Kanembu,14,14,kane1243,Kanembu (Cb18),xd467,,1930,,,14,14,Original,,Northeast Tropical Africa +Cb19,Kanuri,12,13,cent2050,Kanuri (Cb19),xd468,,1870,Kanuri (MS14),MS14,12,13,Original,Note 8Feb2018: Changed based on note from HH: Cohen's works refer to the Kanuri of Bornu = Central Kanuri [knc],West Tropical Africa +Cb2,Wolof,15,-17,nucl1347,Wolof (Cb2),xd469,,1950,Wolof (MS30),MS30,15,-17,Original,,West Tropical Africa +Ac22,Dzing,-4,20,ding1239,Dzing (Ac22),xd47,Badinga; Dinga,1930,,,-4,20,Original,,West-Central Tropical Africa +Cb20,Zerma,13,3,zarm1239,Zerma (Cb20),xd470,Dyerma,1920,,,13,3,Original,,West Tropical Africa +Cb21,Djafun,8,13,adam1253,Djafun (Cb21),xd471,Djafun Fulani,1930,,,8,13,Original,,West-Central Tropical Africa +Cb22,Liptako,14,0,west2454,Liptako (Cb22),xd472,,1920,,,14,0,Original,,West Tropical Africa +Cb23,Tukulor,14.73,-14.32,pula1263,Tukulor (Cb23),xd473,Tekrur; Torado,1930,,,1,-14,Revised,,West Tropical Africa +Cb24,Wodaabe Fulani,12,12,boro1274,Wodaabe Fulani (Cb24),xd474,Pastoral Fulani; Wodaabe,1950,,,12,12,Original,,West Tropical Africa +Cb25,Tazarawa Hausa,14,8,arew1238,Tazarawa (Cb25),xd475,,1930,,,14,8,Original,"Note 22Jul2021 - language match changed by KK to dialect arew1238 (from haus1257). The Tazarawa Hausa are a northern group of Hausa, and this dialect seems a good match.",West Tropical Africa +Cb26,Zazzagawa Hausa,11,8,haus1257,Zazzagawa Hausa (Cb26),xd476,Hausa; Zazzagawa; Hausa of Zaria; Hausa of Zazzau,1950,Hausa (MS12),MS12,11,8,Original,"Note 22Jul2021 - matched to language haus1257, replacing previous match to dialect araw1280 (this match was deemed inaccurate - according to Wikipedia, araw1280 is a northern dialect, when instead the best match would be a southern dialect. No southern dialect was found in Glottolog, hence the language-level match.) Suggestion: Glottolog should add a southern dialect. According to wikipedia page for Hausa Language, ""Zazzaganci in Zazzau is the major Southern dialect""; according to SCCS pinpointing sheets, Zazzagawa Hausa are those in the Zaria (also known as the 'Zazzau Emirate') region.",West Tropical Africa +Cb27,Bachama,10,12,baca1246,Bachama (Cb27),xd477,,1920,,,10,12,Original,,West Tropical Africa +Cb28,Dera,10,12,dera1248,Dera (Cb28),xd478,Kanakuru,1920,,,10,12,Original,,West Tropical Africa +Cb29,Ngizim,12,10,ngiz1242,Ngizim (Cb29),xd479,,1920,,,12,10,Original,,West Tropical Africa +Ac23,Lele,-5,21,lele1265,Lele (Ac23),xd48,Bashilele; Wongo,1950,,,-5,21,Original,,West-Central Tropical Africa +Cb3,Songhai,17,-1,koyr1242,Songhai (Cb3),xd480,,1940,Songhai (MS20),MS20,17,-1,Original,"Changed to koyr1242 from zarm1239 on 3Oct2018. Reason: The SCCS focus is on the ""Bamba, or central division"" Songhai. The Bamba dialect of Koyraboro Senni Songhai appears to dominate in the Bamba area. (""The major dialectal differences [in Koyraboro Senni Songhai] involve the Bamba area in the west versus the mainstream dialect (from the Gao area to the border). [...] Bamba [dialect] is represented by 66 pages of texts [in Heath's ""Texts in Koroboro Senni Songhay of Gao, Mali""] , enough to bring out the grammatical particularities of this variety."") (Note previous D-PLACE changes include a change on 8Feb2018 from Humburi Senni Songhay (humb1243) to Zarma-Kaado-Dendi (zarm1239). This change was incorrect, and is superceded by the change to koyr1242). Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",West Tropical Africa +Cb4,Hasania,14,32,khar1296,Hasania (Cb4),xd481,Hassanyeh,1920,,,14,32,Original,,Northeast Tropical Africa +Cb5,Buduma,13,15,budu1265,Buduma (Cb5),xd482,Yedina; Yedina,1910,,,13,15,Original,,Northeast Tropical Africa +Cb6,Tera,11,12,tera1251,Tera (Cb6),xd483,,1920,,,11,12,Original,,West Tropical Africa +Cb7,Bolewa,11,11,nucl1695,Bolewa (Cb7),xd484,Bole; Borlawa; Fika,1920,,,11,11,Original,,West Tropical Africa +Cb8,Bororo Fulani,13,5,boro1274,Bororo Fulani (Cb8),xd485,Fulbe; Fuel,1920,,,13,5,Original,,West Tropical Africa +Cb9,Hausa Kanawa,12,9,kano1249,Hausa Kanawa (Cb9),xd486,Hausa,1940,Hausa (MS12),MS12,12,9,Original,,West Tropical Africa +Cc1,Regeibat,22,-13,hass1238,Regeibat (Cc1),xd487,Rgibat,1950,,,22,-13,Original,,West Tropical Africa +Cc10,Asben,18,8,taya1257,Asben (Cc10),xd488,Air Tuareg; Kel Air,1900,,,18,8,Original,"Note 8Feb2018: Glottocode changed to [thz] (Tayart Tamajeq) based on note from HH. At least 3 of the references refer to the Air Tuareg (=[thz], and the society name itself is ""Asben"", which some googling suggests was a synonym for Air/Tuareg Kingdom (p. 125 of Robinson and Smith 1979). However, at least one reference refers to the ""Kel Tadele"" in its title; Wikipedia lists the Kel Tadele as a group ""to the west of Aïr [i.e., thz] in the Tamesna plain"". Thus, the user may wish to investigate whether cultural descriptions combine the practices of more than one Touareg language group.",West Tropical Africa +Cc11,Azjer,25,10,ghat1242,Azjer (Cc11),xd489,Adjeur,1860,,,25,10,Original,,Northern Africa +Ac24,Sakata,-3,18,saka1287,Sakata (Ac24),xd49,Balesa; Basakata; Lesa,1910,,,-3,18,Original,,West-Central Tropical Africa +Cc12,Ifora,20,2,tadh1242,Ifora (Cc12),xd490,,1944,,,20,2,Original,,West Tropical Africa +Cc13,Udalan Tuareg,16,0,timb1263,Udalan (Cc13),xd491,Udalan,1920,,,16,0,Original,,West Tropical Africa +Cc14,Daza,17,18,daza1242,Daza (Cc14),xd492,Dasa; Dazagada,1880,,,17,18,Original,,Northeast Tropical Africa +Cc15,Drawa,31,-7,susi1238,Drawa (Cc15),xd493,,1920,,,31,-7,Original,,Northern Africa +Cc16,Chaambra,32,3,algi1247,Chaambra (Cc16),xd494,Schanba,1930,,,32,3,Original,,Northern Africa +Cc17,Delim,22,-15,hass1238,Delim (Cc17),xd495,Oulad Delim,1930,,,22,-15,Original,,Northern Africa +Cc18,Kunta,19,-1,hass1238,Kunta (Cc18),xd496,Kounta,1910,,,19,-1,Original,,West Tropical Africa +Cc19,Trarza,18,-15,hass1238,Trarza (Cc19),xd497,,1950,,,18,-15,Original,,West Tropical Africa +Cc2,Teda,21,17,teda1241,Teda (Cc2),xd498,Toubou,1950,Teda (MS22),MS22,21,17,Original,,Northeast Tropical Africa +Cc20,Zenaga,18,-8,zena1248,Zenaga (Cc20),xd499,,1910,,,18,-8,Original,,West Tropical Africa +Aa5,Mbuti,2,28,bila1255,Mbuti (Aa5),xd5,Sua; BaSua; Kango; BaKango; Bambuti; BaMbuti Pygmies,1930,Mbuti (FO04),FO04,2,28,Original,"Note 8Feb2018: Changed. Focus is ""Epulu net-hunters, Ituri forest"". From White pinpointing sheets: ""The Pygmies and Pygmoid peoples of the Congo have been pushed into smaller and smaller areas of the tropical forest since the invasions of Bantu and Sudanic tribes in the 16-17th centuries, and most of the groups have adopted the languages of invading tribes with whom they allied themselves. Mbuti pygmies have adopted the languages of the Bira to the south of them, the Lese to the east, the Mangbetu and Azande to the northwest, and the Mamvu-Mangutu to the north. The [...] Epulu group studied by Turnbull situated to the north of the Ituri and Epulu Rivers, and the majority of the other groups to the south of the Ituri River [...] are net-hunters, and speak a language largely influenced by the Forest Bira."" Note, though, that Ember concordance lists the language as Lese.",West-Central Tropical Africa +Ac25,Songo,-5,18,song1299,Songo (Ac25),xd50,Basongo,1930,,,-5,18,Original,,West-Central Tropical Africa +Cc3,Siwans,29,26,siwi1239,Siwans (Cc3),xd500,,1920,Siwans (MR14),MR14,29,26,Original,,Northern Africa +Cc4,Mzab,33,4,tumz1238,Mzab (Cc4),xd501,Beni Mzab; Mozabites,1920,,,33,4,Original,,Northern Africa +Cc5,Kel Antessar,18,-3,timb1263,Antessar (Cc5),xd502,Antessar; Kel Antessar; Tuareg north of Timbuctoo,1910,,,18,-3,Original,,West Tropical Africa +Cc6,Kababish,17,31,nort3133,Kababish (Cc6),xd503,Kubbabish,1910,,,17,31,Original,,Northeast Tropical Africa +Cc7,Barabish,20,-5,hass1238,Barabish (Cc7),xd504,,1950,,,20,-5,Original,,West Tropical Africa +Cc8,Aulliminden,8,2,ioul1238,Aulliminden (Cc8),xd505,Oulliminden,1890,,,8,2,Original,,West Tropical Africa +Cc9,Tuareg Ahaggar,23,6,hogg1238,Tuareg Ahaggar (Cc9),xd506,Tuareg,1920,Tuareg (MS25),MS25,23,6,Original,,Northern Africa +Cd1,Barabra,23,33,kenu1236,Barabra (Cd1),xd507,Kenuzi Nubians,1920,,,23,33,Original,,Northern Africa +Cd10,Zekara,34,-2,tari1263,Zekara (Cd10),xd508,Zkara,1900,,,34,-2,Original,"Changed 2Aug2021: After additional research, this cultural data appears to a group speaking tari1263, even though one of the references refers to Beni Snous (previously changed on 8Feb2018 based on note from HH: Beni Snous = Western Algerian Berber [cnu] chen1266).",Northern Africa +Cd11,Guanche,27.99,-15.62,guan1277,Guanche (Cd11),xd509,,1500,,,28,-16,Revised,,Macaronesia +Ac26,Yanzi,-4,18,yans1239,Yanzi (Ac26),xd51,Bayansi; Wachanzi,1920,,,-4,18,Original,,West-Central Tropical Africa +Cd12,Algerians,31,2,algi1247,Algerians (Cd12),xd510,,1870,,,31,2,Original,,Northern Africa +Cd13,Hamama,30,9,sout3114,Hamama (Cd13),xd511,,1930,,,30,9,Original,,Northern Africa +Cd14,Hamyan,35,2,oran1236,Hamyan (Cd14),xd512,Hamian,1870,,,35,2,Original,,Northern Africa +Cd15,Jebala,35,-5,jebl1238,Jebala (Cd15),xd513,Djebala,1910,,,35,-5,Original,,Northern Africa +Cd16,Moroccans,33,-8,sout3117,Moroccans (Cd16),xd514,,1930,,,33,-8,Original,,Northern Africa +Cd17,Nail,35,5,cons1245,Nail (Cd17),xd515,Ulad Nail,1920,,,35,5,Original,,Northern Africa +Cd18,Saadi,30,28,said1239,Saadi (Cd18),xd516,,1920,Libyan Bedouin (MT09),MT09,30,28,Original,,Northern Africa +Cd19,Sahel,35,10.94,sahi1245,Sahel (Cd19),xd517,Eastern Tunisians (Sahel Region),1920,,,35,11,Revised,,Northern Africa +Cd2,Egyptians,25,33,egyp1253,Egyptians (Cd2),xd518,Fellahin; Fellaheen,1950,Fellahin (MR13),MR13,25,33,Original,,Northern Africa +Cd20,Sanusi,31,22,liby1240,Sanusi (Cd20),xd519,Cyrenaican Bedouin,1940,Libyan Bedouin (MT09),MT09,31,22,Original,,Northern Africa +Ac27,Luchazi,-13,23,luch1239,Luchazi (Ac27),xd52,Balochasi; Kaluchazi; Valuchazi,1930,,,-13,23,Original,,South Tropical Africa +Cd21,Tunisians,37,10,tuni1260,Tunisians (Cd21),xd520,,1930,,,37,10,Original,,Northern Africa +Cd3,Riffians,35,-4,tari1263,Riffians (Cd3),xd521,,1920,Berbers of Morocco (MX03),MX03,35,-4,Original,,Northern Africa +Cd4,Kabyle,36,4,kaby1243,Kabyle (Cd4),xd522,,1890,,,36,4,Original,,Northern Africa +Cd5,Shluh,30,-9,susi1238,Shluh (Cd5),xd523,Shilha; Islhiyn; Chleuch,1920,Shluh (MW11),MW11,30,-9,Original,,Northern Africa +Cd6,Ancient Egyptians,30,31,egyp1246,Ancient Egypt (Cd6),xd524,Ancient Egypt,-1400,,,30,31,Original,,Northern Africa +Cd7,Beraber,33,-7,cent2194,Beraber (Cd7),xd525,,1910,,,33,-7,Original,,Northern Africa +Cd8,Shawiya,36,7,tach1249,Shawiya (Cd8),xd526,Chaouia,1910,,,36,7,Original,,Northern Africa +Cd9,Tekna,28,-11,hass1238,Tekna (Cd9),xd527,Tekena,1900,,,28,-11,Original,,Northern Africa +Ce1,Gheg,42,20,gheg1238,Gheg (Ce1),xd528,Albanians,1900,Albanians (EG01),EG01,42,20,Original,,Southeastern Europe +Ce2,Portuguese,42,-7,gali1257,Portuguese (Ce2),xd529,,1950,,,42,-7,Original,,Southwestern Europe +Ac28,Luimbe,-12,18,luim1238,Luimbe (Ac28),xd53,Baluimbi; Valuimbe,1930,,,-12,18,Original,,South Tropical Africa +Ce3,Ancient Romans,42,12,lati1261,Romans (Ce3),xd530,Romans,100,Imperial Romans (EI09),EI09,42,12,Original,,Southeastern Europe +Ce4,French Basques,43,-1,labo1236,Basques (Ce4),xd531,Euskaldunak; Basques; French Basques,1930,Basques (EX08),EX08,43,-1,Original,,Southwestern Europe +Ce5,Neapolitans,40.89,14.25,neap1235,Neapolitians (Ce5),xd532,Neapolitians,1960,,,41,13,Revised,,Southeastern Europe +Ce6,Spaniards,37,-6,stan1288,Spaniards (Ce6),xd533,,1950,,,37,-6,Original,,Southwestern Europe +Ce7,Greeks,39,23,mode1248,Greeks (Ce7),xd534,Hellenes,1950,Greece (EH01),EH01,39,23,Original,,Southeastern Europe +Ce8,Spanish Basques,43,-2,west1508,Spanish Basques (Ce8),xd535,Spanish Basques,1934,Basques (EX08),EX08,43,-2,Original,,Southwestern Europe +Cf1,New Englanders,42,-73,stan1293,New England (Cf1),xd536,New England,1920,,,42,-73,Original,"Note, should probably be matched to a dialect other than 'standard english'",Northeastern U.S.A. +Cf2,Boers,-16,28,afri1274,Boers (Cf2),xd537,Afrikanders,1850,,,-16,28,Original,,South Tropical Africa +Cf3,Tristan da Cunha,-37.11,-12.27,stan1293,Tristan da Cunha (Cf3),xd538,,1930,,,-37,-12,Revised,"Note, should probably be matched to a dialect other than 'standard english'",Subantarctic Islands +Cf4,Brazilians,-23.68,-46.64,braz1246,Brazilians (Cf4),xd539,,1940,,,-43,-47,Revised,,Brazil +Ac29,Luwa,-7,19,sond1250,Luwa (Ac29),xd54,Balua,1930,,,-7,19,Original,,West-Central Tropical Africa +Cf5,French Canadians,47,-72,queb1247,French Canadians (Cf5),xd540,,1930,,,47,-72,Original,stan1290 replaced with queb1247 in Oct 2017 because it is a better match,Eastern Canada +Cg1,Dutch,53,7,dutc1256,Dutch (Cg1),xd541,,1950,,,53,7,Original,,Middle Europe +Cg2,Icelanders,64,-20,icel1247,Icelanders (Cg2),xd542,,1100,Early Icelanders (EQ02),EQ02,64,-20,Original,,Northern Europe +Cg3,Irish,53,-9,iris1253,Irish (Cg3),xd543,Gaelic,1930,Rural Irish (ER06),ER06,53,-9,Original,,Northern Europe +Cg4,Sami,68,22,nort2671,Lapps (Cg4),xd544,Lapps,1950,Lapps (EP04),EP04,68,22,Original,"25Sept2018 - glotto id changed from nort2671 to lule1254 on 25Sept2018 as previous change was only applied to ISO code. 8April2017 - Changed from smj to sme based on comment from H. Hammarström: Haglund worked with Karesuando Saami, which is Northern Sami [sme]. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Northern Europe +Cg5,Walloons,50,5,wall1255,Walloons (Cg5),xd545,,1950,,,50,5,Original,,Middle Europe +Ch1,Serbs,44,20,serb1264,Serbs (Ch1),xd546,Serbians,1950,Serbs (EF06),EF06,44,20,Original,,Southeastern Europe +Ch10,Romanians,45,26,baya1255,Romanians (Ch10),xd547,,1910,,,45,26,Original,"Note, previously baya1254 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)",Southeastern Europe +Ch11,Russians,53,41,russ1263,Russians (Ch11),xd548,,1955,,,53,41,Original,,Eastern Europe +ch12,Bashkir,54,56,bash1264,Bashkir (ch12),xd549,Basquort; Bashkort; Bashkiry,1899,,,54,56,Original,,Eastern Europe +Ac3,Bemba,-11,31,town1238,Bemba (Ac3),xd55,Awemba,1900,Bemba (FQ05),FQ05,-11,31,Original,,South Tropical Africa +ch13,Besermyan,58,52,nort2676,Besermyan (ch13),xd550,Beserman; Besermen; Besermyane,1894,,,58,52,Original,,Eastern Europe +ch14,Chuvash,57,53,chuv1255,Chuvash (ch14),xd551,Chavash; Chuvashy,1908,,,57,53,Original,,Eastern Europe +ch15,Erzya Mordvins,53,50,erzy1239,Erzia mordva (ch15),xd552,Erzia mordva; Erzia Mordvins; Erzja Mordvins; Mordva; Mordvinians; Mordovians; erzät,1895,,,53,50,Original,,Eastern Europe +ch16,Estonians,59,26,esto1258,Estonians (ch16),xd553,Eestlased; Maarahvas; Hiumaases; Saaremaased; Setu; Estontsy; Chud,1908,,,59,26,Original,,Eastern Europe +ch17,Gagauz,45.44,29.32,gaga1249,Gagauz (ch17),xd554,Christian Bulgars; Hıristiyan-Bulgar; Gagauzi; Gagauzy,1894,,,45,29,Revised,,Eastern Europe +ch18,Ingrians,59,29,ingr1248,Ingrians (ch18),xd555,Izhorians; Izhora; Inkerilainen; Inkeroine; Izhoralaine; Karjalain; Inkerin Suomalainen; Ingrian Finns; Izhortsy,1927,,,59,29,Original,,Eastern Europe +ch19,Karelians,64,33,livv1243,Karelians (ch19),xd556,Karjalaizet; Karjalaini; Karely; Livgilyajne; Livvikjoj; Lyuudilaine; Lyuudikjo,1874,,,64,33,Original,,Eastern Europe +Ch2,Hutsuls,49,24,sout2604,Hutsul (Ch2),xd557,Hutsul; Hucul; Huzul,1890,,,49,24,Original,,Eastern Europe +ch20,Kazan tatar,55,50,midd1325,Kazan tatar (ch20),xd558,Kazanskie Tatary; Kazanly; Tatarlar,1910,,,55,50,Original,,Eastern Europe +ch21,Latvians,57,24,latv1249,Latvians (ch21),xd559,Latvieshi; Latyshi,1881,,,57,24,Original,,Eastern Europe +Ac30,Plateau Tonga,-18,28,tong1318,Plateau Tonga (Ac30),xd56,Batonga,1940,Tonga (FQ12),FQ12,-18,28,Original,,South Tropical Africa +ch22,Lithuanian Karaim,55,23,kara1464,Lithuanian Karaim (ch22),xd560,Karaites; Karaila,1895,,,55,23,Original,,Eastern Europe +ch23,Lithuanian Tatar,55,24,west2405,Lithuanian Tatar (ch23),xd561,,1905,,,55,24,Original,,Eastern Europe +ch24,Livs,57,23,livv1244,Livs (ch24),xd562,Livians; Livonians; Liivod; Liibod; Liivnikad; Liivlist; Kalamied; Raandalis,1847,,,57,23,Original,,Eastern Europe +ch25,Moldovans,47,29,mold1248,Moldovans (ch25),xd563,Moldoven; Moldavans; Moldavane,1900,,,47,29,Original,"Note, previously mold1247 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)",Eastern Europe +ch26,Udmurt,57,53,sout2681,Udmurt (ch26),xd564,Utmort; Ukmort; Udmurty; Votiak; Votyak; Votjaki,1890,,,57,53,Original,,Eastern Europe +ch27,Veps,61,35,veps1250,Veps (ch27),xd565,Vepsians; Chudy; Chukhari; Chuhari; Bepsya; Bepsja; Veps' Lyudinikad; Tyagalazhet; Tjagalazhet,1900,,,61,35,Original,,Eastern Europe +ch28,Votes,59,29,voti1245,Votes (ch28),xd566,Vod'; Maavaitchi; Vod,1900,,,59,29,Original,,Eastern Europe +Ch3,Czechs,50,16,czec1258,Czechs (Ch3),xd567,,1940,,,50,16,Original,,Middle Europe +Ch4,Mari,43,46,east2328,Cheremis (Ch4),xd568,Cheremis,1900,,,43,46,Original,,Caucasus +Ch5,Bulgarians,43,24,bulg1262,Bulgarians (Ch5),xd569,,1940,Bulgarians (EE01),EE01,43,24,Original,,Southeastern Europe +Ac31,Buye,-7,28,buyu1239,Buye (Ac31),xd57,Babui,1910,,,-7,28,Original,,West-Central Tropical Africa +Ch6,Byelorussians,55,28,bela1254,Byelorussians (Ch6),xd570,White Russians,1910,,,55,28,Original,,Eastern Europe +Ch7,Ukrainians,48,36,east2270,Ukrainians (Ch7),xd571,Ukranians,1930,Ukraine (RD01),RD01,48,36,Original,,Eastern Europe +Ch8,Magyar,47,20,hung1274,Hungarian (Ch8),xd572,Magyarok; Hungarian,1940,Hungary (EC01),EC01,47,20,Original,,Middle Europe +Ch9,Lithuanians,55,24,lith1251,Lithuanians (Ch9),xd573,,1930,,,55,24,Original,,Eastern Europe +Ci1,Kalmyk,46,46,kalm1243,Kalmyk (Ci1),xd574,Kalmuck,1920,,,46,46,Original,"Note 8Feb2018: Note that some of the references that are almost certainly associated with this case (focus is ""Baga Dorbed"") were originally listed after Ag14 ""Baga"" (aberle1953; krader1963; vladimirtsov1948)",Eastern Europe +Ci10,Armenians,40,45,nucl1235,Armenians (Ci10),xd575,,1900,,,40,45,Original,,Caucasus +Ci11,Kurd,32,44,cent1972,Kurd (Ci11),xd576,,1940,Kurd (MA11),MA11,32,44,Original,,Western Asia +Ci12,Abkhaz,43,41,abkh1244,Abkhaz (Ci12),xd577,,1880,Abkhaz (RI03),RI03,43,41,Original,,Caucasus +Ci2,Khevsur,43,45,xevs1238,Khevsur (Ci2),xd578,Chevsur,1930,,,43,45,Original,,Caucasus +Ci3,Kumyk,42,48,kumy1244,Kumyk (Ci3),xd579,Kumuk,1900,,,42,48,Original,,Caucasus +Ac32,Kaonde,-13,26,kaon1241,Kaonde (Ac32),xd58,Bakaonde,1920,,,-13,26,Original,,South Tropical Africa +Ci4,Cherkess,44,42,kaba1278,Cherkess (Ci4),xd580,Circassians,1920,,,44,42,Original,,Caucasus +Ci5,Turks,38,30,nucl1301,Turks (Ci5),xd581,,1950,Turks (MB01),MB01,38,30,Original,,Western Asia +Ci6,Ossetians,43,44,digo1242,Osset (Ci6),xd582,Osset; Ossete,1880,,,43,44,Original,,Caucasus +Ci7,Chechen,43,46,chec1245,Chechen (Ci7),xd583,,1900,,,43,46,Original,,Caucasus +Ci8,Georgians,42,45,imer1248,Georgians (Ci8),xd584,Kartvelebi; Grusians; Kartveli,1850,Georgia (RI01),RI01,42,45,Original,,Caucasus +Ci9,Svan,43,43,svan1243,Svan (Ci9),xd585,Mushüan,1910,,,43,43,Original,,Caucasus +Cj1,Syrians,36,36,nort3142,Syrians (Cj1),xd586,,1950,Syria (MD01),MD01,36,36,Original,"Note, previously matched to a dialect of nort3139 (nort3140); corrected to [nort3142][ayp] on 5Sept2018. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Western Asia +Cj10,Madan,31,47,meso1252,Madan (Cj10),xd587,Marsh Arabs; Ma'dan; Ma'adan,1950,,,31,47,Original,,Western Asia +Cj2,Rwala,33,37,east2690,Rwala (Cj2),xd588,Rwala Bedouin,1920,Rwala (MD04),MD04,33,37,Original,"Changed from ars to avl on 8 April 2017 based on comment from H. Hammarström: The sources pertain to edouin tribes of the Sinai (like the Rwala) they are covered in the Eastern Egyptian Bedawi Arabic entry in Ethnologue [avl]. April 2019: Note that HRAF summary suggests a link to najd1235 (ars) is more appropriate, however najd1235 is spoken further East than the territory described by the same HRAF summary (which reports Rwala Bedouin as grazing their livestock along the Jordan-Saudia Arabia border, North to Damascus (or even Homs), South to the Nafud desert, east (sometimes) to Karbala, Iraq).",Western Asia +Cj3,Hebrews,32,35,anci1244,Hebrews (Cj3),xd589,,-800,,,32,35,Original,Changed from hebr [hbr] to anci1244 [hbo] in Nov 2018 based on date of cultural observations,Western Asia +Ac33,Lala,-15,31,lala1264,Lala (Ac33),xd59,Balala,1940,,,-15,31,Original,,South Tropical Africa +Cj4,Babylonians,32,45,akka1240,Babylonians (Cj4),xd590,,-2000,,,32,45,Original,Changed from tmr to akk on 8 April 2017 based on comment from H. Hammarström: several [of the sources] deal with Babylonia in Hammurabi's time. The language spoken by this culture was Akkadian [akk].,Western Asia +Cj5,Mutair,28,47,sout3119,Mutair (Cj5),xd591,,1930,,,28,47,Original,,Arabian Peninsula +Cj6,Jordanians,32,36,sout3123,Jordanians (Cj6),xd592,,1950,Jordan (MG01),MG01,32,36,Original,,Western Asia +Cj7,Lebanese,34,36,nort3139,Lebanese (Cj7),xd593,,1950,Lebanon (ME01),ME01,34,36,Original,"Note, previously matched to a dialect of nort3139 (nort3141); rematched to [nort3139] after ""Syrians"" linked to a different language (so no longer sharing tip of nort3139 with ""Lebanese"" (5Sept2018). Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Western Asia +Cj8,Druze,32.77,35.03,sunn1238,Druze (Cj8),xd594,,1930,,,33,35,Revised,,Western Asia +Cj9,Yemeni,15,45,sana1295,Yemeni (Cj9),xd595,,1950,Yemen (ML01),ML01,15,45,Original,,Arabian Peninsula +Ea1,Sindhi,25,68,sind1272,Sindhi (Ea1),xd596,Hindu Sindhi,1950,,,25,68,Original,,Indian Subcontinent +Ea10,Marri,30,69,east2304,Marri (Ea10),xd597,,1950,,,30,69,Original,,Indian Subcontinent +Ea11,Ghilzai,33,68,ghil1238,Afghans (Ea11),xd598,Pashtuns; Pushtun; Afghans,1950,,,33,68,Original,,Western Asia +Ea12,Qashqui,30,52,qash1240,Quahgai (Ea12),xd599,Quahgai; Qashgai,1940,,,30,52,Original,,Western Asia +Aa6,Sandawe,-5,36,sand1273,Sandawe (Aa6),xd6,Wasandaui,1920,,,-5,36,Original,,East Tropical Africa +Ac34,Luapula,-10,29,luun1238,Luapula (Ac34),xd60,Bena Kazembe,1940,,,-10,29,Original,,South Tropical Africa +Ea13,Punjabi,32,73,west2386,"Punjabi, West (Ea13)",xd600,Punjabi (West),1950,,,32,73,Original,"Note 8Feb2018: Changed based on note by HH: ""References look more like Western Panjabi [pnb] in Pakistan"". Focus does indeed seem to be in Western Pakistan. Note that there is an unclear note in the White SCCS pinpointing sheet for this society: ""Representative of West Punjabi (not in the Ethnographic Atlas) [sic]; Focus: Village of Mohla, Punjabi of southern Rawalpindi and northern Lahore Divisions, 32°30N and 74°E, about 1952 [...] The village of Mohla, studied by Eglar, is the most fully described, and represents the less developed form of agriculture, lacking irrigation. Coders should be careful in inferring from other village studies, since each village is highly distinctive in terms of caste composition and economic position. Honigmann's village, in the desert of southwest Rawalpindi, was founded very recently by East Punjabi are close [sic]; this village utilizes newly constructed irrigation works. The village surveys by Dass and Ghulam Yasim have not been evaluated.""",Indian Subcontinent +Ea2,Yusufzai,35,72,yusu1238,Pathan (Ea2),xd601,Pukhtun; Pathan; Yusufsai; Yūsufzai; Yousafzai,1950,Pashtun (AU04),AU04,35,72,Original,,Indian Subcontinent +Ea3,Hazara,35,66,haza1239,Hazara (Ea3),xd602,,1930,,,35,66,Original,,Western Asia +Ea4,Kohistani,35,73,indu1241,Kohistani (Ea4),xd603,Kohistei; Mayan,1950,,,35,73,Original,,Indian Subcontinent +Ea5,Nuristani,36,71,kamv1242,Nuri (Ea5),xd604,Nuri; Kafirs; Kafiristanis,1890,,,36,71,Original,Changed to Kamviri (xvi) from pbu based on village in which one of two main sources spent most of his time (Kamdesh),Western Asia +Ea6,Basseri,30,34,bass1257,Basseri (Ea6),xd605,,1958,Basseri (MA10),MA10,30,34,Original,,Western Asia +Ea7,Moghol,34,63,mogh1245,Moghol (Ea7),xd606,Mongols of Afghanistan,1950,,,34,63,Original,,Western Asia +Ea8,Bakhtiari,33,48,bakh1245,Bakhtiari (Ea8),xd607,,1920,,,33,48,Original,,Western Asia +Ea9,Iranians,36,52,tehr1242,Iranians (Ea9),xd608,,1950,,,36,52,Original,,Western Asia +Eb1,Kazakh,48,70,kaza1248,Kazak (Eb1),xd609,Kazak,1910,Kazakh (RQ02),RQ02,48,70,Original,,Middle Asia +Ac35,Shila,-10,28,luba1250,Shila (Ac35),xd61,Awasira; Bashila; Wasira,1900,,,-10,28,Original,Note 8Feb2018: Changed based on note from HH: References indicate Bashila i.e. Luba-Katanga [lub] rather than Taabwa,West-Central Tropical Africa +Eb2,Tu,39,100,tuuu1240,Monguor (Eb2),xd610,Monguor,1920,Monguor (AE09),AE09,39,100,Original,,China +Eb3,Khalka,46,97,halh1238,Khalka (Eb3),xd611,Xanx; Khalka Mongols,1940,Mongolia (AH01),AH01,46,97,Original,,Mongolia +Eb4,Dagur,49,125,daur1238,Dagur (Eb4),xd612,Dagor,1940,,,49,125,Original,,China +Eb5,Turkmen,38,62,turk1304,Turkmen (Eb5),xd613,,1910,,,38,62,Original,,Middle Asia +Eb6,Buryat,52,107,russ1264,Buryat (Eb6),xd614,,1900,,,52,107,Original,,Siberia +Eb7,Chahar,41,115,peri1253,Chahar (Eb7),xd615,,1930,,,41,115,Original,,China +Eb8,Uzbek,43,60,nort2690,Uzbek (Eb8),xd616,,1800,,,43,60,Original,,Middle Asia +Ec1,Nivkh,53,142,gily1242,Gilyak (Ec1),xd617,Gilyak,1920,Nivkh (RX02),RX02,53,142,Original,,Russian Far East +Ec10,Ob Ostyak,62,74,khan1273,Ob Ostyak (Ec10),xd618,,1880,,,62,74,Original,,Siberia +Ec11,Selkup,59,90,selk1253,Selkup (Ec11),xd619,Ostyak Samoyed,1900,,,59,90,Original,,Siberia +Ac36,Tumbuka,-12,34,tumb1250,Tumbuka (Ac36),xd62,Atimbuka; Batumbaka; Watumbaka,1920,,,-12,34,Original,,South Tropical Africa +ec12,Nganasan,72,90,ngan1291,Nganasan (ec12),xd620,Tavgi Samoyed,1930,Samoyed_with_notes_on_Nganasan (RU04),RU04,72,90,Original,,Siberia +ec13,Itelmen,54.98,161.79,itel1242,Itelmen (ec13),xd621,Itelymem; Kamchadal,1710,,,55,168,Revised,,Russian Far East +ec14,Ungazikmit,64,-173,cent2128,Ungazikmit (ec14),xd622,Eskaleut; Asian Eskimo,1880,,,64,173,Revised,"9May2019 - longitude updated to place society in western rather than eastern hemisphere. 1Oct2018 - the update to Glottolog 3.3.2 forced re-mapping from dialect chap1266 (which no longer exists) to language (cent2128) (always the language-level match for this society). Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Russian Far East +ec15,Mansi,63,62,mans1258,Mansi (ec15),xd623,Vogul; Gogulich; Mansiy; Voguly,1880,,,63,62,Original,,Siberia +ec16,Evenk,55,112,even1259,Evenk (ec16),xd624,Ewenki; Tungus; Chapogir; Avanki; Avankil; Solon; Khamnigan,1890,,,55,112,Original,,Siberia +ec17,Negidal,52,134,negi1245,Negidal (ec17),xd625,Negidaly; Neghidal,1890,,,52,134,Original,,Russian Far East +ec18,Ulch,50,136,ulch1241,Ulch (ec18),xd626,Ulchi; Ulcha; Ulych; Olch; Olcha; Olchis; Hoche; Hol-Chih.,1890,,,50,136,Original,,Russian Far East +ec19,Orok,54.01,142.71,orok1265,Orok (ec19),xd627,Uilta; Ul'ta; Nani; Oroki; Oroc; Ulta; Ujlta,1890,,,54,142,Revised,,Russian Far East +Ec2,Yakut,65,125,yaku1245,Yakut (Ec2),xd628,Sakha,1900,Yakut (RV02),RV02,65,125,Original,,Siberia +ec20,Oroch,51,138,oroc1248,Oroch (ec20),xd629,Orochi,1890,,,51,138,Original,,Russian Far East +Ac37,Kunda,-15,32,kund1255,Kunda (Ac37),xd63,Achikunda,1950,,,-15,32,Original,,South Tropical Africa +ec21,Udihe,47,136,udih1248,Udihe (ec21),xd630,Udeghes; Udyhe; Udekhe; Udegeis,1890,,,47,136,Original,,Russian Far East +Ec3,Chukchi,66,177,chuk1273,Chukchee (Ec3),xd631,lygoravetlyan; Ankalyn; Chavchu; Chukchee,1900,Chukchee (RY02),RY02,66,177,Original,,Russian Far East +Ec4,Yurak-Samoyeds,68,75,nene1249,Yurak (Ec4),xd632,Nenets; Yurak,1900,Samoyed and/or Nenets (RU04/RU41),RU04,68,75,Original,,Siberia +Ec5,Koryak,61.99,164.24,kory1246,Koryak (Ec5),xd633,,1900,Koryak (RY04),RY04,62,164,Revised,,Russian Far East +Ec6,Yukaghir,70,145,nort2745,Yukaghir (Ec6),xd634,,1850,,,70,145,Original,,Siberia +Ec7,Ainu,44,144,ainu1240,Ainu (Ec7),xd635,Ainu (Hokkaido); Hokkaido,1900,Ainu (AB06),AB06,44,144,Original,,Eastern Asia +Ec8,Ket,62,90,kett1243,Ket (Ec8),xd636,Yenisei Ostyak; Yeniseians,1900,,,62,90,Original,,Siberia +Ec9,Nanai,47,132,nana1257,Goldi (Ec9),xd637,Goldi; Gold,1920,,,47,132,Original,,China +Ed1,Koreans,38.134147,126.960754,kore1280,Koreans (Ed1),xd638,,1950,Korea (AA01),AA01,35,102,Original,,Eastern Asia +Ed10,Shantung,37,118,mand1415,Shantung (Ed10),xd639,,1930,,,37,118,Original,,China +Ac38,Nyanja,-16,36,nucl1395,Nyanja (Ac38),xd64,Nyanja; Anyanja; Wanyanja; Waanyanja,1910,,,-16,36,Original,,South Tropical Africa +Ed13,Ishigakians,24.46,124.14,yaey1239,Ishigakians (Ed13),xd640,,1940,,,24,124,Revised,,Eastern Asia +Ed14,Man,22,105,kimm1245,Man (Ed14),xd641,Yao,,,,22,105,Original,,Indo-China +Ed15a,Miyakans,24.79,125.32,miya1259,Miyakans (Ed15a),xd642,,1950,,,24,125,Revised,,Eastern Asia +Ed15b,Chekiang,31,120,wuch1236,Chekiang (Ed15b),xd643,Chinese,1936,,,31,120,Original,,China +Ed16,Cantonese,23,113,yuec1235,Cantonese (Ed16),xd644,,1940,,,23,113,Original,,China +Ed2,Lolo,29,103,sich1238,Lolo (Ed2),xd645,Yi; Nosu,1940,Yi (AE04),AE04,29,103,Original,,China +Ed3,Manchu,45,126,manc1252,Manchu (Ed3),xd646,,1920,Manchu (AG01),AG01,45,126,Original,,China +Ed4,Miao,26,107,horn1235,Miao (Ed4),xd647,,1940,Miao (AE05),AE05,26,107,Original,"Changed from hea to hrm on 8 April 2017 based on comment by H. Hammarström: Based on where Ruey worked, language should be cqd or hrm (they are intelligible, which is why glottolog only has one entry for them).",China +Ed5,Japanese,35,136,nucl1643,Japanese (Ed5),xd648,,1950,Okayama (AB43),AB43,35,136,Original,,Eastern Asia +Ed6,Min Chinese,24,115,chao1239,Min Chinese (Ed6),xd649,,1920,,,24,115,Original,"7Nov2018-changed to Chaoshan dialect (from Min Nan Chinese language) based on consultation of primary source, and with the addition of dialects of Min Nan Chinese via new eHRAF societies",China +Ac39,Nyasa,-13,35,mwer1247,Nyasa (Ac39),xd65,Anyassa; Wanyassa,1920,,,-13,35,Original,"Note 8Feb2018: Glottocode changed to mwer1247 based on note from HH questioning the previous match (to Mande). mwer1247s is a sister to Chewa, which was the other possible match. KK logic: The EA tells us only that the alternate names for the group are Wanyassa and Anyassa. The Johnson reference describes the Nyasa of Lake Nyasa (Lake Malawi in Tanzania). Carol Ember's concordance tells us the group is in Tanzania [note that the Concordance also selects Mande/mand1423 as a match, but not for a clear reason]. The uzh.ch EA site quotes Tew (1950:31) [the other ethnographic reference for this case]: ""Nyasa, on the east littoral of Lake Nyasa, extending as far north as the Matengo mountains (and including a settlement of freed Nyasa slaves at Masasi in Tanganyika), and southwards until they mingle with Yao settlements on the upper Msinje and Luchulingo rivers."" From Wikipedia: ""The people who are called Nyanja [in Malawi] – when the term is used as an ethnic designation to identify those who speak Nyanja or related languages called Nyanja – are known as Nyasa or Wanyasa in neighbouring Tanzania. The Chewa are the largest ethnic group among the people who speak these related languages."" KK summary: Thus, Chewa looks to be a defensible match, but glottolog provides a sister language to Chewa for Tanzania: ""Mwera (Nyasa)"" [mwer1247], which was selected.",South Tropical Africa +Ed7,Okinawans,26.16,127.8,cent2126,Okinawans (Ed7),xd650,,1950,Okinawa (AC07),AC07,26,128,Revised,,Eastern Asia +Ed8,Minchia,26,100,cent2004,Minchia (Ed8),xd651,,1930,,,26,100,Original,,China +Ed9,Li,19,109,hlai1239,Li (Ed9),xd652,Sai; Hlai; Lai; Loi,1930,,,19,109,Original,,China +Ee1,Adi,28,95,bori1243,Abor (Ee1),xd653,Abor,1940,,,28,95,Original,,Indian Subcontinent +Ee2,Burusho,37,75,buru1296,Burusho (Ee2),xd654,,1930,Burusho (AV07),AV07,37,75,Original,,China +Ee3,Lepcha,28,89,lepc1244,Lepcha (Ee3),xd655,Rong,1930,Lepcha (AK05),AK05,28,89,Original,,China +Ee4,Central Tibetans,30,91,dbus1238,Tibetans (Ee4),xd656,,1920,Tibetans (AJ01),AJ01,30,91,Original,"12 Nov 2018 Assigned specific dialect to differentiate it from eHRAF society ""Western Tibetans"". From wikipedia: ""Central Tibetan, also known as Dbus, Ü or Ü-Tsang, is the most widely spoken Tibetic language and the basis of Standard Tibetan. There are many mutually intelligible Central Tibetan dialects besides that of Lhasa, with particular diversity along the border and in Nepal.""",China +Ee5,Shina,35,73,shin1264,Dard (Ee5),xd657,Dard,1870,,,35,73,Original,,Indian Subcontinent +Ee6,Sherpa,28,87,sher1255,Sherpa (Ee6),xd658,,1950,Sherpa (AK06),AK06,28,87,Original,,China +Ee7,Kachari,27,90,kach1279,Kachari (Ee7),xd659,Bodo,1840,,,27,90,Original,,Indian Subcontinent +Ac4,Kuba,-5,22,bush1247,Kuba (Ac4),xd66,Bakuba,1910,,,-5,22,Original,,West-Central Tropical Africa +Ee8,Magar,28,84,west2418,Magar (Ee8),xd660,,1950,,,28,84,Original,"Note 8Feb2018: Changed to [mrd] based on comment by HH: ""Banyan Hill is close to latitude 84 and so is clearly Western Magar [mrd] on Ethnologue's division.""",Indian Subcontinent +Ef1,Santal,24,87,sant1410,Santal (Ef1),xd661,Santhal; Saontal,1940,Santal (AW42),AW42,24,87,Original,,Indian Subcontinent +Ef10,Bihari,25,86,mait1250,Bihari (Ef10),xd662,Bihar; Behari,1880,Bihar (AW02),AW02,25,86,Original,,Indian Subcontinent +Ef11,Uttar Pradesh,26,83,bhoj1244,Uttar Pradesh (Ef11),xd663,,1945,Uttar (AW19),AW19,26,83,Original,,Indian Subcontinent +Ef2,Bengali,23,88,beng1280,Bengali (Ef2),xd664,,1940,Bengali (AW69),AW69,23,88,Original,,Indian Subcontinent +Ef3,Indo-Iranian,30,75,sans1269,Aryans (Ef3),xd665,Aryans; Indo-Aryans,-800,,,30,75,Original,,Indian Subcontinent +Ef4,Ho,22,85,hooo1248,Ho (Ef4),xd666,,1920,,,22,85,Original,,Indian Subcontinent +Ef5,Bhil,22,74,bhil1251,Bhil (Ef5),xd667,,1900,Bhil (AW25),AW25,22,74,Original,,Indian Subcontinent +Ef6,Kurukh,23,85,kuru1302,Oraon (Ef6),xd668,Oraon,1940,,,23,85,Original,,Indian Subcontinent +Ef7,Pahari,30,78,maha1287,Pahari (Ef7),xd669,,1950,,,30,78,Original,,Indian Subcontinent +Ac40,Sena,-18,35,nucl1396,Sena (Ac40),xd67,Asena; Wasena,1900,,,-18,35,Original,,South Tropical Africa +Ef8,Kashmiri,34,75,kash1277,Kashmir (Ef8),xd670,Kashmir; Kashmiri; Pandit; Sarasvati Brahmans,1950,Kashmiri (AV04),AV04,34,75,Original,,Indian Subcontinent +Ef9,Gujarati,20,77,guja1252,Gujarati (Ef9),xd671,,1136,Gujarati (AW07),AW07,20,77,Original,,Indian Subcontinent +Eg1,Chenchu,16,79,chen1255,Chenchu (Eg1),xd672,,1940,,,16,79,Original,,Indian Subcontinent +Eg10,Telugu,18,79,telu1262,Telugu (Eg10),xd673,,1950,Telugu (AW17),AW17,18,79,Original,,Indian Subcontinent +Eg11,Koya,19,78,koya1251,Koya (Eg11),xd674,Koitur,1960,,,19,78,Original,,Indian Subcontinent +Eg12,Khond,18,82,kuii1252,Khond (Eg12),xd675,,1940,,,18,82,Original,,Indian Subcontinent +Eg13,Muria Gond,20,81,west2408,Muria Gond (Eg13),xd676,,1941,Gond (AW32),AW32,20,81,Original,"Note 8Feb2018: Changed based on note by HH: ""Elwin's book concerns Muria of Kondagaon and Narayanpur Tahsil = Muria-Western [mut]"". Also, White SCCS pinpointing sheets for Hill Maria provide this detail on the location of the Muria Gond: ""the north-eastern plateau of Bastar, Kondagaon Tahsil.""",Indian Subcontinent +Eg14,Reddi,18,82,mukh1238,Reddi (Eg14),xd677,,1940,,,18,82,Original,,Indian Subcontinent +Eg2,Tamil,11,79,tami1289,Tamil (Eg2),xd678,,1880,Tamil (AW16),AW16,11,79,Original,,Indian Subcontinent +Eg3,Madia,19,81,mari1414,Maria Gond (Eg3),xd679,Maria Gond; Gond,1938,Gond (AW32),AW32,19,81,Original,"Note 8Feb2018: Changed based on note by HH: Unclear why this is attributed to Dandami Maria rather than Maria [mrr]. Focus according to White SCCS pinpointing sheets: ""Hill Maria Gond of Antagarh and northern Kutru Districts, Bastar State.""",Indian Subcontinent +Ac41,Makonde,-11,40,mako1251,Makonde (Ac41),xd68,Wamakonde,1900,,,-11,40,Original,,South Tropical Africa +Eg4,Toda,12,77,toda1252,Toda (Eg4),xd680,,1900,Toda (AW60),AW60,12,77,Original,,Indian Subcontinent +Eg5,Kodavas,12,76,koda1255,Coorg (Eg5),xd681,Coorg,1930,Kodava (AW05),AW05,12,76,Original,,Indian Subcontinent +Eg6,Kerala,11,76,mala1464,Kerala (Eg6),xd682,,1799,Kerala (AW11),AW11,11,76,Original,"reclassified another society from [mal] to [xuj] on 26 May 2016; as a result, matched this society to the glottolog language [mala1464] (which we are more certain of), replacing match to dialect [cent1998] (less certain)",Indian Subcontinent +Eg7,Hill Bhuiya,21,85,oriy1255,Hill Bhuiya (Eg7),xd683,Pauri,1930,,,21,85,Original,"Note, previously nucl1284 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)",Indian Subcontinent +Eg8,Kol,22,85,mund1320,Kol (Eg8),xd684,,1940,Kol (AW37),AW37,22,85,Original,,Indian Subcontinent +Eg9,Baiga,22,81,chha1249,Baiga (Eg9),xd685,,1930,,,22,81,Original,,Indian Subcontinent +Eh1,Andamanese,12,93,akab1249,Andamese (Eh1),xd686,Big Andaman Island; Andamese,1870,Andamans (AZ02),AZ02,12,93,Original,Changed to abj from apq on 8 April 2017 based on comments from H. Hammarström: Man (1885) worked most with (and whose variety he spoke best) Bojingya or Aka-Bea [abj],Indo-China +Eh10,Betsileo,-22,47,bets1235,Betsileo (Eh10),xd687,,,,,-22,47,Original,,Western Indian Ocean +Eh2,Merina,-19,46,meri1243,Merina (Eh2),xd688,Antimerina; Hova; Imerina,1900,,,-19,46,Original,,Western Indian Ocean +Eh3,Tanala,-22,47,tana1285,Tanala (Eh3),xd689,,1930,Tanala (FY08),FY08,-22,47,Original,,Western Indian Ocean +Ac42,Makua,-15,39,makh1264,Makua (Ac42),xd69,Wamakua,1900,,,-15,39,Original,,South Tropical Africa +Eh4,Vedda,8,81,vedd1240,Vedda (Eh4),xd690,Wanniyalaeto; Veddah,1900,Vedda (AX05),AX05,8,81,Original,,Indian Subcontinent +Eh5,Nicobarese,9.17,92.77,carn1240,Nicobarese (Eh5),xd691,Holchu,1890,Nicobarese (AZ07),AZ07,9,92,Revised,,Indo-China +Eh6,Sinhalese,7,80,sinh1246,Sinhalese (Eh6),xd692,,1950,Sinhalese (AX04),AX04,7,80,Original,,Indian Subcontinent +Eh7,Antandroy,-25,46,tand1256,Antandroy (Eh7),xd693,Tandroy,1900,,,-25,46,Original,,Western Indian Ocean +Eh8,Sakalava,-21,43.93,saka1291,Sakalava (Eh8),xd694,,1900,,,-21,41,Revised,,Western Indian Ocean +Eh9,Antaisaka,-22.9,47.75,tesa1236,Antaisaka (Eh9),xd695,,1930,,,-23,48,Revised,,Western Indian Ocean +Ei1,Garo,26,91,garo1247,Garo (Ei1),xd696,A.Chik,1900,Garo (AR05),AR05,26,91,Original,,Indian Subcontinent +Ei10,Chakma,23,92,chak1266,Chakma (Ei10),xd697,Chuckmah,1870,,,23,92,Original,,Indian Subcontinent +Ei11,Aimol,25,94,aimo1244,Aimol (Ei11),xd698,,1910,,,25,94,Original,,Indian Subcontinent +Ei12,Thado,25,94,thad1238,Thado (Ei12),xd699,,1910,,,25,94,Original,,Indian Subcontinent +Aa7,Naron,-20,24,naro1249,Naron (Aa7),xd7,Aikwe,1910,,,-20,24,Original,,Southern Africa +Ac43,Mambwe,9,32,mamb1296,Mambwe (Ac43),xd70,Amambwe,1910,,,9,32,Original,,Northeast Tropical Africa +Ei13,Angami,26,94,anga1288,Angami (Ei13),xd700,,1910,,,26,94,Original,,Indian Subcontinent +Ei14,Ao,27,94,aona1235,Ao (Ei14),xd701,,1920,,,27,94,Original,,Indian Subcontinent +Ei15,Rengma,26,94,sout2732,Rengama (Ei15),xd702,Rengama; Rengma Naga,1930,,,26,94,Original,,Indian Subcontinent +Ei16,Sema,26,95,sumi1235,Sema (Ei16),xd703,,1910,,,26,95,Original,,Indian Subcontinent +Ei17,Karbi,26,94,karb1241,Mikir (Ei17),xd704,Arleng; Mikir,1900,,,26,94,Original,,Indian Subcontinent +Ei18,Palaung,23,97,shwe1236,Palaung (Ei18),xd705,,1920,,,23,97,Original,"Note 8Feb2018: HH notes that it is unusual that an ethnography by Lowis be associated with [pll] rather than Rumai [rbb]. However, EA focus is “Katurr subtribe,” and this group was the focus of Milne's work. They are described as living “in or near Namhsan”. Her dictionary deals mainly with the dialect of Namhsan >> Shwe Palaung >> [pll]. Thus, I have left the language as [pll], assuming Lowis' work was used for context. However, users should be aware that this case may combine data for groups speaking different Palaung languages.",Indo-China +Ei19,Chin,22,94,asho1236,Chin (Ei19),xd706,Khyang,1940,,,22,94,Original,"Note 8Feb2018: Changed based on note from HH: Bernot's Khyang is ""Khyang of Gongru village rattachent au groupe des Chin du Sud etudies par Houghton"" = Asho Chin [csh]",Indo-China +Ei2,Lhota,27,94,loth1237,Lhota (Ei2),xd707,,1920,,,27,94,Original,,Indian Subcontinent +Ei20,Kuki,23,92,lush1249,Kuki (Ei20),xd708,Chin; Mizo; Kuki,1940,,,23,92,Original,,Indian Subcontinent +Ei3,Burmese,20,95,nucl1310,Burmese (Ei3),xd709,Bamar people,1950,Burmans (AP04),AP04,20,95,Original,,Indo-China +Ac5,Lamba,-13,28,lamb1271,Lamba (Ac5),xd71,Balamba; Walamba,1920,,,-13,28,Original,,South Tropical Africa +Ei4,Maras,22,93,mara1382,Lakher (Ei4),xd710,Lakher,1930,,,22,93,Original,,Indo-China +Ei5,Kachin,26,97,kach1280,Kachin (Ei5),xd711,,1940,Kachin (AP06),AP06,26,97,Original,,Indo-China +Ei6,Purum,25,94,puru1266,Purum (Ei6),xd712,,1930,,,25,94,Original,,Indian Subcontinent +Ei7,Karen,17.12,97.19,pwow1235,Karen (Ei7),xd713,,1910,Karen (AP07),AP07,17,97,Revised,,Indo-China +Ei8,Khasi,26,92,khas1269,Khasi (Ei8),xd714,,1900,Khasi (AR07),AR07,26,92,Original,,Indian Subcontinent +Ei9,Mogh,20.49,92.64,rakh1245,Mogh (Ei9),xd715,Marma; Morma; Mog; Magh,1880,,,20,92,Revised,,Indo-China +Ej1,Lamet,20,101,lame1256,Lamet (Ej1),xd716,,1940,,,20,101,Original,,Indo-China +Ej10,Rade,13,108,rade1240,Rhade (Ej10),xd717,Rhade,1950,,,13,108,Original,,Indo-China +Ej11,Cham,11,108,east2563,Cham (Ej11),xd718,,1950,,,11,108,Original,,Indo-China +Ej12,Lawa,18,98,west2396,Lawa (Ej12),xd719,Lua,1960,,,18,98,Original,,Indo-China +Ac6,Ndembu,-11,26,lund1266,Ndembu (Ac6),xd72,Andembu; Southern Lunda,1930,,,-11,26,Original,,West-Central Tropical Africa +Ej13,Muong,21,105,muon1246,Muong (Ej13),xd720,,1940,,,21,105,Original,,Indo-China +Ej14,Senoi,4,102,sema1266,Senoi (Ej14),xd721,,1960,Semai (AN06),AN06,4,102,Original,,Malesia +Ej15,Ancient Khmer,13,104,oldk1249,Khmer (Ej15),xd722,Khmer,1292,,,13,104,Original,"Changed to [oldk1249][qok] by kk on 5Sept2018. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Indo-China +Ej16,Negri Sembilan,2.58,102.25,nege1240,Negri Sembilan (Ej16),xd723,Negeri Sembilan,1958,,,21,102,Original,,Malesia +Ej2,Mnong Gar,12,107,east2333,Mnong Gar (Ej2),xd724,,1940,,,12,107,Original,,Indo-China +Ej3,Semang,5,101,kens1248,Semang (Ej3),xd725,,1920,Semang (AN07),AN07,5,101,Original,,Malesia +Ej4,Annamese,17,107,viet1252,Annamese (Ej4),xd726,Vietnamese,1950,Vietnam (AM11),AM11,17,107,Original,,Indo-China +Ej5,Khmer,12,105,cent1989,Cambodians (Ej5),xd727,Cambodians,1950,Cambodians (AM04),AM04,12,105,Original,"Note, previously matched to a dialect of cent1989 (sout2688); rematched to [cent1989] after ""Ancient Khmer"" linked to a different language (so no longer sharing tip of cent1989 with ""Cambodians"" (5Sept2018). Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Indo-China +Ej6,Moken,11.78,98.28,moke1242,Selung (Ej6),xd728,Selung; Mawken; Salon; Sea Gypsies,1920,,,12,98,Revised,,Indo-China +Ej7,Akha,21,100,akha1245,Akha (Ej7),xd729,e-Kaw; Kaw,1950,,,21,100,Original,,Indo-China +Ac7,Yao,-13,36,yaoo1241,Yao (Ac7),xd73,Achawa; Wayao,1920,Yao (FT07),FT07,-13,36,Original,,South Tropical Africa +Ej8,Malays,5,103,mala1479,Malays (Ej8),xd730,,1940,Malays (AN05),AN05,5,103,Original,,Malesia +Ej9,Thai,15,100,thai1261,Siamese (Ej9),xd731,Siamese; Central Thai,1940,,,15,100,Original,,Indo-China +Ia1,Atayal,24,121,atay1247,Atayal (Ia1),xd732,,1930,,,24,121,Original,,Eastern Asia +Ia10,Bunun,24,121,bunu1267,Bunun (Ia10),xd733,,1930,,,24,121,Original,,Eastern Asia +Ia11,Puyuma,23,121,puyu1239,Puyuma (Ia11),xd734,,1930,,,23,121,Original,,Eastern Asia +Ia12,Sugbuanon,10.2,123.65,cebu1242,Sugbuhanon (Ia12),xd735,Cebuanos; Sugbuhanon; Cebuan Bisaya; Cebuans,1950,Central (OA14),OA14,10,124,Revised,,Malesia +Ia13,Badjau Tawi-Tawi,5.09,119.97,sout2918,Badjau Tawi-Tawi (Ia13),xd736,Tawi-Tawi Badjaw; Badjau,1960,,,5,120,Revised,,Malesia +Ia14,Tao,22.05,121.55,yami1254,Yami (Ia14),xd737,Yami,1930,,,22,122,Revised,,Eastern Asia +Ia15,Manobo,8,126,agus1235,Manobo (Ia15),xd738,,1920,,,8,126,Original,Note 8Feb2018: Changed based on note from HH: Why W Bukidnon Manobo rather than e.g. Agusan Manobo [msm]?,Malesia +Ia16,Kalinga,18,121,lubu1243,Kalinga (Ia16),xd739,,1910,,,18,121,Original,,Malesia +Ac8,Yombe,-5,13,yomb1244,Yombe (Ac8),xd74,Bayombe; Mayombe,1930,,,-5,13,Original,,West-Central Tropical Africa +Ia17,Bilaan,6,125,koro1310,Bilaan (Ia17),xd740,,1910,,,6,125,Original,,Malesia +Ia18,Bisayan,10,123,akla1241,Bisayan (Ia18),xd741,Visayan,1950,,,10,123,Original,,Malesia +Ia2,Sagada,17,121,nort2877,Sagada (Ia2),xd742,Sagada Igorot,1950,,,17,121,Original,,Malesia +Ia3,Ifugao,17,121,tuwa1243,Ifugao (Ia3),xd743,,1920,Ifugao (OA19),OA19,17,121,Original,"Changed to ifk from ifb on 8 April 2017 based on comment from H. Hammarström: Barton is source, and while he doesn't say specifically which group his observations pertain to, he was working using Kiangan as his base, which would make it Ifugao-Tuwali [ifk]",Malesia +Ia4,Subanun,8,123,cent2089,Subanun (Ia4),xd744,,1950,,,8,123,Original,,Malesia +Ia5,Hanunoo,13,121,hanu1241,Hanunoo (Ia5),xd745,,1950,,,13,121,Original,,Malesia +Ia6,Paiwan,22.44,120.77,paiw1248,Paiwan (Ia6),xd746,,1930,,,22,121,Revised,,Eastern Asia +Ia7,Tagbanua,10,119,tagb1258,Tagbanua (Ia7),xd747,,1950,,,10,119,Original,,Malesia +Ia8,Bontok,17,121,cent2292,Bontok (Ia8),xd748,,1900,,,17,121,Original,,Malesia +Ia9,Ami,22.7,121.05,amis1246,Ami (Ia9),xd749,Pangcah,1930,,,22,121,Revised,,Eastern Asia +Ac9,Ngoni,-12,33,ngon1269,Ngoni (Ac9),xd75,Angoni,1940,Ngoni (FR05),FR05,-12,33,Original,,South Tropical Africa +Ib1,Iban,2,112,iban1264,Iban (Ib1),xd750,Dayak; Sea Dayak,1950,Iban (OC06),OC06,2,112,Original,,Malesia +Ib2,Javanese,-7,110,java1254,Javanese (Ib2),xd751,,1950,Javanese (OE05),OE05,-7,110,Original,"Note, previously linked to language iso ""jas"" (New Caledonian Javanese); on 3Mar2016 Hannah Haynie checked refs/coordinates and concluded ""jav"" was a better match; it was temporarily switched back to [jas/newc1244] on 8Aug2018 but that was a mistake, should be [jav]/[java1254] (updated note: 5Sept2018 kk)",Malesia +Ib3,Balinese,-8.18,115.02,bali1278,Balinese (Ib3),xd752,,1950,Bali (OF07),OF07,-8,115,Revised,"Note, previously linked to language iso ""mhp"" (Malay, Balinese). Hannah Haynie checked refs/coordinates and concluded ""ban"" (Bali, glottocode bali1278) was a better match (3 Mar 2016)",Malesia +Ib4,Toba Batak,2,99,bata1289,Batak (Ib4),xd753,Toba; Batak,1930,,,2,99,Original,,Malesia +Ib5,Kadazan-Dusun,6,117,cent2100,Dusun (Ib5),xd754,Dusun,1920,,,6,117,Original,,Malesia +Ib6,Minangkabau,-1,101,mina1268,Minangkabau (Ib6),xd755,,1920,,,-1,101,Original,,Malesia +Ib7,Mentaweians,-2.93,100.23,ment1249,Mentaweians (Ib7),xd756,,1920,Mentawaians (OD09),OD09,-3,100,Revised,,Malesia +Ib8,Anak Dalam,-3,103,kubu1239,Kubu (Ib8),xd757,Orang Batin Sembilan; Orang Rimba; Kubu,1900,,,-3,103,Original,,Malesia +Ib9,Punan,3,115,puna1275,Punan (Ib9),xd758,,1950,,,3,115,Original,"Note, previously this xd_id was associated with language iso sge (Segai); Hannah Haynie reviewed references and coordinates and concluded should be matched to language iso ""pna"", glottolog language puna1275 (3 Mar 2016)",Malesia +Ic1,Macassarese,-5.31,119.69,maka1311,Macassarese (Ic1),xd759,,1940,Makassar (OG06),OG06,-5,119,Revised,,Malesia +Ad1,Bajuni,-2,41,baju1245,Bajun (Ad1),xd76,Wabajuni; Bajun; Bagiuni; Barjun; Wagunya,1950,,,-2,41,Original,,East Tropical Africa +Ic10,Tobelorese,1,128,tobe1252,Tobelorese (Ic10),xd760,Togutil,1910,,,1,128,Original,,Malesia +Ic11,Ambonese,-3.71,128.18,ambo1250,Ambonese (Ic11),xd761,,1950,,,-4,128,Revised,,Malesia +Ic12,Sumbawanese,-8.63,117.27,sumb1241,Sumbawanese (Ic12),xd762,,1951,,,-4,118,Revised,,Malesia +Ic13,Kodi,-9.66,119.07,kodi1247,Kodi (Ic13),xd763,West Sumbanese,1950,,,-10,119,Revised,,Malesia +Ic2,Alorese,-8.22,124.26,abui1241,Alorese (Ic2),xd764,Abui,1940,Alor (OF05),OF05,-8,125,Revised,Changed from aol to abz on 8 April 2017 based on comment from H. Hammarström: Sources are DuBois and Nicolspeyer. They both worked with Abui (abz) speakers.,Malesia +Ic3,Belu,-9,126,tetu1245,Belu (Ic3),xd765,,1950,,,-9,126,Original,,Malesia +Ic4,Rotinese,-10.71,123.18,term1237,Rotinese (Ic4),xd766,Atahori Rote; Hataholi Lote,1920,,,-11,123,Revised,,Malesia +Ic5,Toradja,-2,121,pamo1252,Toradja (Ic5),xd767,,1910,Toradja (OG11),OG11,-2,121,Original,"Changed to pamo1252 (pmf, Pamona) from tora1261 (sda, Sa'dan) on 3Oct2018. Reason: the SCCS focus is on the Bare'e subgroup, which is the focus of (Adriani and Kruijt, 1912). Harald Hammarstrom notes that this group speaks Pamona [pmf], not Sa'dan [sda]. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Malesia +Ic6,Tanimbarese,-8.19,130.96,sela1259,Tanimbarese (Ic6),xd768,,1930,,,-8,131,Revised,,Malesia +Ic7,Ili-Mandiri,-8.33,122.85,lama1277,Ili-Mandiri (Ic7),xd769,,1920,,,-8,123,Revised,,Malesia +Ad10,Shambaa,-5,38,sham1280,Shambala (Ad10),xd77,Wasambaa; Shambala; Sambara; Waschambala,1910,,,-5,38,Original,,East Tropical Africa +Ic8,Kei,-5.58,133.07,keii1239,Kei (Ic8),xd770,Kei Islanders,1890,,,-6,133,Revised,,Malesia +Ic9,Sumbanese,-10,120,kamb1299,Sumbanese (Ic9),xd771,Tau Humba,1930,,,-10,120,Original,,Malesia +Id1,Northern Aranda,-24,134,east2379,Aranda (Id1),xd772,Aranda (Northern); Northern Arenda; Arunta,1900,Aranda (OI08),OI08,-24,134,Original,"Note 8Feb2018: Not changed, despite note from HH: ""Why is Strehlow not associated rather with Western Arrarnta [are]"". According to White SCCS Pinpointing sheets, focus is ""The Arunta Mbainda of Alice Springs: [...] closely studied by Spencer and Gillen in 1896, restudied in 1901, and visited by Spencer in 1926 for some follow-up reconstruction work with several informants."" [So, Strehlow was perhaps used for supporting materials?]",Australia +Id10,Walbiri,-22,132,warl1254,Walbiri (Id10),xd773,Warlpiri,1930,,,-22,132,Original,,Australia +Id11,Gidjingali,-12.29,134.32,gunn1248,Gidjingali (Id11),xd774,Burarra; Gun-nartpa,1950,,,-12,135,Revised,,Australia +Id12,Yir Yoront,-15,142,jirj1239,Yir Yoront (Id12),xd775,,1930,,,-15,142,Original,"Note, previously yiy and yiry1245, however both codes have been retired",Australia +Id13,Anindilyagwa,-13.99,136.6,anin1240,Groote Eylandt (Id13),xd776,Enindilywakwa; Groote Eylandt; Groote Eyelandt,1930,,,-14,137,Revised,,Australia +Id2,"Yolngu, Dhuwal",-12.48,135.96,dhuw1249,Murngin (Id2),xd777,Murngin; Wulamba; Dhuwal,1930,Murngin (OI17),OI17,-12,136,Revised,,Australia +Id3,Tiwi,-11.56,130.81,tiwi1244,Tiwi (Id3),xd778,,1920,Tiwi (OI20),OI20,-12,131,Revised,,Australia +Id4,Diyari,-28,138,dier1241,Dieri (Id4),xd779,Dieri; Dieri,1900,,,-28,138,Original,,Australia +Ad11,Bena,-9,36,bena1262,Bena (Ad11),xd78,Wabena,1930,Bena (FN31),FN31,-9,36,Original,,East Tropical Africa +Id5,Kariyarra,-21,118,kari1304,Kariera (Id5),xd780,Kariera,1910,,,-21,118,Original,,Australia +Id6,Wikmunkan,-14,142,wikm1247,Wikmunkan (Id6),xd781,Wikmunkun,1920,,,-14,142,Original,,Australia +Id7,Murriny Patha,-14,130,murr1258,Murinbata (Id7),xd782,Murriny Patha; Murinbata,1940,,,-14,130,Original,,Australia +Id8,Tasmanians (northwestern),-42,146,port1278,Tasmanians (Id8),xd783,Palawa; Tasmanians (northwestern); Tasmanians (Western); Tasmanians (West Coast),1830,Tasmanians (OI19),OI19,-42,146,Original,"Note, previously tasm1247, but languages difficult to assign with certainty, so chose another western tasmanian language not considered a ""bookkeeping"" language by glottolog",Australia +Id9,Ngiyambaa,-32,146,wang1291,Wongaibon (Id9),xd784,Wongaibon,1910,,,-32,146,Original,,Australia +Ie1,Mee,-4,136,ekar1243,Kapauku (Ie1),xd785,Kapauku,1950,Kapauku (OJ29),OJ29,-4,136,Original,,Papuasia +Ie10,Motu,-9,147,motu1246,Motu (Ie10),xd786,,1950,,,-9,147,Original,,Papuasia +Ie11,Kakoli,-6,144,umbu1258,Kakoli (Ie11),xd787,,1950,,,-6,144,Original,,Papuasia +Ie12,Kwoma,-4,142,kwom1262,Kwoma (Ie12),xd788,,1930,Kwoma (OJ13),OJ13,-4,142,Original,,Papuasia +Ie13,Kiwai,-9,143,sout2949,Kiwai (Ie13),xd789,,1920,,,-9,143,Original,,Papuasia +Ad12,Gusii,-1,35,gusi1247,Gusii (Ad12),xd79,Abagusii; Gizii; Kissi; Kosova,1940,Gusii (FL08),FL08,-1,35,Original,,East Tropical Africa +Ie14,Miriam,-9.91,144.06,meri1244,Miriam (Ie14),xd790,,1900,,,-10,144,Revised,,Papuasia +Ie15,Abelam,-3.79,143.09,ambu1247,Abelam (Ie15),xd791,,1930,,,4,-145,Revised,,Papuasia +Ie16,Kutubu,-6,143,foii1241,Kutubu (Ie16),xd792,,1940,,,-6,143,Original,,Papuasia +Ie17,Siane,-6,145,sian1257,Siane (Ie17),xd793,,1940,,,-6,145,Original,,Papuasia +Ie18,Kimam,-7.52,138.46,kima1246,Kimam (Ie18),xd794,Frederik-Hendrik Islanders,1940,,,-7,138,Revised,,Papuasia +Ie19,Marind-Amin,-8,139,nucl1622,Marindamin (Ie19),xd795,Marindamin; Tugeri,1910,,,-8,139,Original,,Papuasia +Ie2,Wantoat,-6.15,146.53,want1252,Wantoat (Ie2),xd796,,1920,,,-7,147,Revised,,Papuasia +Ie20,Koita,-9,147,koit1244,Koita (Ie20),xd797,,1900,,,-9,147,Original,,Papuasia +Ie21,Mailu,-10,149,mail1248,Mailu (Ie21),xd798,,1900,,,-10,149,Original,,Papuasia +Ie22,Mekeo,-9,147,meke1243,Mekeo (Ie22),xd799,,1900,,,-9,147,Original,,Papuasia +Aa8,/Xam,-30,23,xamm1241,Xam (Aa8),xd8,Xam; Cape Bushman,1850,,,-30,23,Original,,Southern Africa +Ad13,Kiga,-3,30,chig1238,Chiga (Ad13),xd80,Chiga; Bachiga; Ciga; Kyiga,1930,,,-3,30,Original,,West-Central Tropical Africa +Ie23,Muju,-6,141,sout2940,Muju (Ie23),xd800,,1950,,,-6,141,Original,,Papuasia +Ie24,Koiari,-9,148,gras1249,Koiari (Ie24),xd801,,1870,,,-9,148,Original,,Papuasia +Ie25,Mafulu,-8,147,fuyu1242,Mafulu (Ie25),xd802,,1920,,,-8,147,Original,,Papuasia +Ie26,Ngarawapum,-6,146,adze1240,Ngarawapum (Ie26),xd803,,1940,,,-6,146,Original,,Papuasia +Ie27,Banaro,-4.56,144.34,bana1292,Banaro (Ie27),xd804,,1910,,,-4,145,Revised,,Papuasia +Ie28,Busama,-6.69,147.26,buga1250,Busama (Ie28),xd805,,1940,,,-7,147,Revised,,Papuasia +Ie29,Manam,-4.08,145.03,mana1295,Manam (Ie29),xd806,,1930,,,-4,145,Revised,,Papuasia +Ie3,Arapesh,-4,144,buki1249,Arapesh (Ie3),xd807,,1930,,,-4,144,Original,Note 8Feb2018: Changed based on note from HH: Why is Mead's Arapesh associated with Bumbita rather than Bukiyip [ape]?,Papuasia +Ie30,Mimika,-4,135,kamo1255,Mimika (Ie30),xd808,,1950,,,-4,135,Original,,Papuasia +Ie31,Fore,-6,145,fore1270,Fore (Ie31),xd809,,1950,,,-6,145,Original,,Papuasia +Ad14,Luguru,-8,38,lugu1238,Luguru (Ad14),xd81,Waluguru,1930,,,-8,38,Original,,East Tropical Africa +Ie32,Sio,-6,147,sioo1240,Sio (Ie32),xd810,,1964,,,-6,147,Original,,Papuasia +Ie33,Soromadja,-2,138,nucl1595,Soromadja (Ie33),xd811,Tor,1950,,,-2,138,Original,,Papuasia +Ie34,Bgu,-2.34,139.6,bong1287,Bgu (Ie34),xd812,,1960,,,-2,140,Revised,,Papuasia +Ie35,Iatmul,-4,143,iatm1242,Iatmul (Ie35),xd813,,1930,,,-4,143,Original,,Papuasia +Ie36,Samarokena,-3,140,sama1240,Samarokena (Ie36),xd814,,1950,,,-3,140,Original,,Papuasia +Ie37,Star Mountain,-5,141,ngal1298,Star Mountain (Ie37),xd815,Star Mountain Papuans,1960,,,-5,141,Original,,Papuasia +Ie38,Dani,-4,139,midg1235,Dani (Ie38),xd816,,1960,,,-4,139,Original,,Papuasia +Ie39,Elema,-7.82,145.31,orok1267,Elema (Ie39),xd817,,1920,,,-8,145,Revised,,Papuasia +Ie4,Wogeo,-3.24,144.1,woge1237,Wogeo (Ie4),xd818,,1930,Wogeo (OJ27),OJ27,-3,144,Revised,,Papuasia +Ie5,Keraki,-9,142,namb1293,Keraki (Ie5),xd819,,1930,,,-9,142,Original,,Papuasia +Ad15,Iwa,-10,32,nyam1275,Iwa (Ad15),xd82,Awiwa; Wawiwa; Wiwa,1900,,,-10,32,Original,,South Tropical Africa +Ie6,Waropen,-2.14,137.23,waro1242,Waropen (Ie6),xd820,,1930,,,-2,137,Revised,,Papuasia +Ie7,Enga,-6,144,enga1252,Enga (Ie7),xd821,,1950,,,-6,144,Original,,Papuasia +Ie8,Purari,-7,145,pura1257,Purari (Ie8),xd822,,1910,,,-7,145,Original,,Papuasia +Ie9,Orokaiva,-9,148,orok1269,Orokaiva (Ie9),xd823,,1920,Orokaiva (OJ23),OJ23,-9,148,Original,,Papuasia +If1,Palauans,7.45,134.54,pala1344,Palauans (If1),xd824,,1940,Belau (OR15),OR15,7,135,Revised,,Northwestern Pacific +If10,Nomoians,6.89,152.74,mort1237,Nomoians (If10),xd825,Mortlock Islanders,1940,,,6,153,Revised,,Northwestern Pacific +If11,Kosraeans,5.31,162.98,kosr1238,Kusaians (If11),xd826,Kusaians,1860,,,5,163,Revised,,Northwestern Pacific +If12,Bikinians,11.7,165.29,rali1241,Bikinians (If12),xd827,,1940,Marshalls (OR11),OR11,12,165,Revised,,Northwestern Pacific +If13,Nauruans,-0.53,166.92,naur1243,Nauruans (If13),xd828,,1900,,,-1,166,Revised,,Southwestern Pacific +If14,Makin,3.38,172.99,bana1287,Makin (If14),xd829,Gilbertese,1890,,,3,173,Revised,,Southwestern Pacific +Ad16,Ngonde,-10,34,ngon1268,Ngonde (Ad16),xd83,Konde; Nkonde; Wangonde,1920,Ngonde (FN17),FN17,-10,34,Original,,South Tropical Africa +If15,Carolinians,15.21,145.76,caro1242,Carolinians (If15),xd830,,1930,,,15,146,Revised,,Northwestern Pacific +If16,Lamotrek,7.46,146.38,lamo1243,Lamotrek (If16),xd831,,1960,,,7,146,Revised,,Northwestern Pacific +If17,Marshallese - Jaluit atoll,6.28,169.49,rali1241,Marshallese (If17),xd832,,1900,Marshallese (OR11),OR11,6,169,Revised,"12 Nov 2018 - dialect assigment corrected (should have been Ralik, rali1241, not Ratak, rata1243).",Northwestern Pacific +If2,Trukese,7.34,151.6,chuu1238,Trukese (If2),xd833,Chuukese,1940,Truk (OR19),OR19,7,152,Revised,,Northwestern Pacific +If3,Majuro,7.09,171.13,rata1243,Majuro (If3),xd834,Marshallese,1940,Marshalls (OR11),OR11,7,171,Revised,,Northwestern Pacific +If4,Ifaluk,7.25,144.46,nucl1479,Ifuluk (If4),xd835,Ifuluk,1940,Woleai (OR21),OR21,7,147,Revised,,Northwestern Pacific +If5,Ponapeans,6.88,158.22,pohn1238,Ponapeans (If5),xd836,Pohnpeian,1910,,,7,158,Revised,,Northwestern Pacific +If6,Yapese,9.55,138.13,yape1248,Yapese (If6),xd837,,1910,Yap (OR22),OR22,9,138,Revised,,Northwestern Pacific +If7,Gilbert Onotoa,-1.47,175.06,nuii1237,Gilbert Onotoa (If7),xd838,Onotoa; Gilbertese,1940,,,-2,174,Revised,,Southwestern Pacific +If8,Chamorro,15.13,145.71,cham1312,Chamorro (If8),xd839,,1950,,,15,145,Revised,,Northwestern Pacific +Ad17,Safwa,-8,33,safw1238,Safwa (Ad17),xd84,Wassafwa,1920,,,-8,33,Original,,East Tropical Africa +If9,Ulithians,10.02,139.79,ulit1238,Ulithians (If9),xd840,,1900,,,10,140,Revised,,Northwestern Pacific +Ig1,Siuai,-6,155,siwa1245,Siuai (Ig1),xd841,,1940,Siwai (ON19),ON19,-6,155,Original,,Papuasia +Ig10,Usiai,-2,147,lele1270,Usiai (Ig10),xd842,,1950,,,-2,147,Original,,Papuasia +Ig11,Rossel Islanders,-11.36,154.14,yele1255,Rossel (Ig11),xd843,Rossel,1920,,,-9,154,Revised,,Papuasia +Ig12,Choiseulese,-6.69,156.52,vagh1249,Choiseulese (Ig12),xd844,,1900,,,-6,156,Revised,,Papuasia +Ig13,Aua,-1.74,142.85,wuvu1239,Aua (Ig13),xd845,,1900,,,-2,143,Revised,,Papuasia +Ig14,Dahuni,-10.41,149.91,suau1242,Dahuni (Ig14),xd846,,1900,,,-10,150,Revised,,Papuasia +Ig15,Bakovi,-5.42,150.05,bola1250,Bakovi (Ig15),xd847,,1950,,,-5,150,Revised,,Papuasia +Ig16,Bwaidoga,-9.44,150.33,bwai1242,Bwaidoga (Ig16),xd848,,1950,,,-9,150,Revised,,Papuasia +Ig17,Kombe,-4.67,149.53,mudu1242,Koobe (Ig17),xd849,Koobe,1950,,,-5,149,Revised,,Papuasia +Ad18,Bende,-7,31,bend1258,Bende (Ad18),xd85,Vende; Wabende,1910,,,-7,31,Original,,East Tropical Africa +Ig18,Kwaio,-9,161,kwai1243,Kwaio (Ig18),xd850,,1960,,,-9,161,Original,,Papuasia +Ig19,Molima,-10,151,moli1248,Molima (Ig19),xd851,,1950,,,-10,151,Original,,Papuasia +Ig2,Trobriands,-8.43,151.09,kili1267,Trobriands (Ig2),xd852,,1910,Trobriands (OL06),OL06,-8,151,Revised,,Papuasia +Ig20,Kaoka,-9.49,159.82,long1395,Kaoka (Ig20),xd853,Kaukau,1920,,,-10,161,Revised,,Papuasia +Ig21,Tangu,-3.38,153.31,tang1348,Tangu (Ig21),xd854,Tanga,1930,,,-3,153,Revised,,Papuasia +Ig3,Kurtatchi,-5.6,154.91,tinp1237,Kurtatchi (Ig3),xd855,Buka,1930,Tinputz (ON06),ON06,-5,154,Revised,,Papuasia +Ig4,Lesu,-3.06,151.66,nots1237,Lesu (Ig4),xd856,New Irelanders,1930,Lesu (OM24),OM24,-3,153,Revised,,Papuasia +Ig5,Dobuans,-10,151,dobu1241,Dobuans (Ig5),xd857,,1920,,,-10,151,Original,,Papuasia +Ig6,Ulawans,-9.63,161.44,saaa1240,Ulawans (Ig6),xd858,,1900,,,-10,161,Revised,,Papuasia +Ig7,Lakalai,-5.5,150.81,naka1262,Lakalai (Ig7),xd859,Western Nakanai,1950,,,-5,151,Revised,,Papuasia +Ad19,Fipa,-8,31,fipa1238,Fipa (Ad19),xd86,Wafipa,1910,,,-8,31,Original,,East Tropical Africa +Ig8,Simboese,-8,157,simb1256,Simboese (Ig8),xd860,Eddystone Islanders,1910,,,-8,157,Original,,Papuasia +Ig9,Manus,-2,147,tita1241,Manus (Ig9),xd861,,1920,Manus (OM06),OM06,-2,147,Original,,Papuasia +Ih1,Mota,-13.84,167.7,mota1237,Mota (Ih1),xd862,,1890,,,-14,168,Revised,,Southwestern Pacific +Ih10,Tannese,-19.6,169.44,sout2869,Tannese (Ih10),xd863,,1920,,,-20,168,Revised,,Southwestern Pacific +Ih11,Epi,-16.61,168.17,lame1260,Epi (Ih11),xd864,,1920,,,-17,168,Revised,,Southwestern Pacific +Ih12,Eromangans,-18.85,169.16,siee1239,Eromangans (Ih12),xd865,,1920,,,-19,169,Revised,,Southwestern Pacific +Ih13,Ranon,-16.18,168.15,nort2839,Ranon (Ih13),xd866,,1920,,,-16,168,Revised,,Southwestern Pacific +Ih14,Mbau Fijians,-17.81,178.32,bauu1243,Mbau Fijians (Ih14),xd867,,1840,,,-18,179,Revised,,Southwestern Pacific +Ih2,Seniang,-16.51,167.47,sout2857,Seniang (Ih2),xd868,,1930,,,-17,167,Revised,,Southwestern Pacific +Ih3,Bunlap,-15.95,168.22,saaa1241,Bunlap (Ih3),xd869,Pentecost,1950,,,-16,168,Revised,,Southwestern Pacific +Ad2,Nyoro,2,32,nyor1246,Nyoro (Ad2),xd87,Banyoro; Kitara,1950,Banyoro (FK11),FK11,2,32,Original,,East Tropical Africa +Ih4,Lau,-17.74,-179.31,laua1243,Lau (Ih4),xd870,,1920,Lau (OQ06),OQ06,-18,179,Revised,,Southwestern Pacific +Ih5,Ajie,-21.37,165.47,ajie1238,Ajie (Ih5),xd871,,1860,,,-22,165,Revised,,Southwestern Pacific +Ih6,Rotumans,-12.5,177.07,rotu1241,Rotumans (Ih6),xd872,,1890,,,-13,177,Revised,,Southwestern Pacific +Ih7,Lifu,-20.94,167.23,dehu1237,Lifu (Ih7),xd873,Lifu Islanders,1910,,,-21,163,Revised,,Southwestern Pacific +Ih8,Vanua Levu,-17.81,178.32,nort2843,Vanua Levu (Ih8),xd874,,1940,,,-17,179,Revised,,Southwestern Pacific +Ih9,Santa Cruz Islanders,-10.73,165.85,natu1246,Santa Cruz (Ih9),xd875,Santa Cruz,1930,Santa Cruz (ON13),ON13,-11,166,Revised,,Southwestern Pacific +Ii1,American Samoans,-13.68,-172.41,samo1305,Samoans (Ii1),xd876,,1920,,,-14.289155,-170.706485,Revised,,Southwestern Pacific +Ii10,Rennell Islanders,-11.74,160.42,renn1242,Rennell (Ii10),xd877,Mugaba; Rennell,1950,,,-12,160,Revised,,Papuasia +Ii12,Tongans,-19.74,-175.07,tong1325,Tongans (Ii12),xd878,,1920,Tongans (OU09),OU09,-20,-174,Revised,,Southwestern Pacific +Ii13,Uveans,-13.28,-176.17,wall1257,Uveans (Ii13),xd879,Wallis Islanders,1830,,,-13,-176,Revised,,Southwestern Pacific +Ad20,Nyamwezi,-5,33,nyam1276,Nyamwezi (Ad20),xd88,Banyamwezi; Wanyamwezi,1920,,,-5,33,Original,,East Tropical Africa +Ii14,Upolu Samoans,-13.94,-171.77,samo1305,Upolu (Ii14),xd880,Upolu; Western Samoans,1829,Samoans (OU08),OU08,-14,172,Revised,,Southwestern Pacific +Ii2,Tikopia,-12.29,168.83,tiko1237,Tikopia (Ii2),xd881,,1930,Tikopia (OT11),OT11,-12,168,Revised,,Southwestern Pacific +Ii3,Pukapukans,-10.89,-165.84,puka1242,Pukapukans (Ii3),xd882,Danger Islanders,1930,Pukapuka (OZ11),OZ11,-11,-166,Revised,,Southwestern Pacific +Ii4,Ellice,-7.48,178.68,tuva1244,Ellice (Ii4),xd883,Tuvalu Islanders,1890,,,-8,178,Revised,,Southwestern Pacific +Ii5,Ontong Java,-5.48,159.7,onto1237,Ontong Java (Ii5),xd884,Leuenuwa; Lord Howe's Islanders,1920,,,-5,160,Revised,,Papuasia +Ii6,Tokelau,-9.2,-171.85,toke1240,Tokelau (Ii6),xd885,,1900,,,-9,-172,Revised,,Southwestern Pacific +Ii7,Kapingamarangi,1.09,154.8,kapi1249,Kapingamarang (Ii7),xd886,Kapingamarang,1910,,,1,155,Revised,,Northwestern Pacific +Ii8,Futunans,-14.31,-178.11,east2447,Futunans (Ii8),xd887,Horne Islanders,1840,,,-14,-178,Revised,,Southwestern Pacific +Ii9,Niueans,-19.05,-169.86,niue1239,Niueans (Ii9),xd888,,1840,,,-19,-169,Revised,,Southwestern Pacific +Ij1,Mangaians,-21.93,-157.91,raro1241,Mangaians (Ij1),xd889,,1820,,,-22,-158,Revised,,South-Central Pacific +Ad21,Pimbwe,-7,31,pimb1238,Pimbwe (Ad21),xd89,Bapimbwe,1930,,,-7,31,Original,,East Tropical Africa +Ij10,Tongarevans,-9.02,-158.03,penr1237,Tongarevans (Ij10),xd890,Penrhyn Islanders,1900,,,-9,-158,Revised,,Southwestern Pacific +Ij2,Māori,-38.41,176.31,maor1246,Maori (Ij2),xd891,Maori,1820,Maori (OZ04),OZ04,-35,175,Revised,,New Zealand +Ij3,Marquesans,-8.9,-140.08,nort2845,Marquesans (Ij3),xd892,,1900,Marquesas (OX06),OX06,-9,-140,Revised,,South-Central Pacific +Ij4,Manihikians,-10.41,-160.98,raka1237,Manihikians (Ij4),xd893,,1850,,,-10,-160,Revised,,Southwestern Pacific +Ij5,Raroians,-15.94,-142.31,tuam1242,Raroians (Ij5),xd894,Rareians,1900,,,-16,-142,Revised,,South-Central Pacific +Ij6,Hawaiians,19.89,-155.83,hawa1245,Hawaiians (Ij6),xd895,,1800,Hawaiians (OV05),OV05,20,-156,Revised,,North-Central Pacific +Ij7,Mangarevans,-23.12,-134.97,mang1401,Mangarevans (Ij7),xd896,,1900,,,-20,-134,Revised,,South-Central Pacific +Ij8,Tahitians,-17.71,-149.54,tahi1242,Tahitians (Ij8),xd897,Society Islanders,1900,,,-18,-150,Revised,,South-Central Pacific +Ij9,Easter Islanders,-27.12,-109.36,rapa1244,Easter Island (Ij9),xd898,Easter Island,1860,Rapa nui (OY02),OY02,-27,-190,Revised,,South-Central Pacific +Aa9,Hadza,-3,35,hadz1240,Hatsa Kindiga (Aa9),xd9,Hadzabe; Hatsa Kindiga; Hadza; Kindiga,1910,,,-3,35,Original,,East Tropical Africa +Ad22,Sukuma,-3,34,suku1261,Sukuma (Ad22),xd90,Basukuma; Wassukuma,1950,,,-3,34,Original,,East Tropical Africa +Ad23,Sangu,-8,34,sang1330,Sangu (Ad23),xd91,Rori,1910,,,-8,34,Original,,East Tropical Africa +Ad24,Gogo,-7,36,gogo1263,Gogo (Ad24),xd92,Wagogo,1910,,,-7,36,Original,,East Tropical Africa +Ad25,Rangi,-5,36,lang1320,Rangi (Ad25),xd93,Irangi; Langi; Warangi,1900,,,-5,36,Original,,East Tropical Africa +Ad26,Turu,-5,34,nyat1246,Turu (Ad26),xd94,Lima; Walimi; Waniaturu,1910,,,-5,34,Original,,East Tropical Africa +Ad27,Kwere,-7,39,kwer1261,Kwere (Ad27),xd95,Wakwere,1880,,,-7,39,Original,,East Tropical Africa +Ad28,Zigula,-5.84,38.79,zigu1242,Zigula (Ad28),xd96,Seguha; Wazigua; Zegura,1880,,,-6,39,Revised,,East Tropical Africa +Ad29,Hadimu,-6.07,39.43,pemb1239,Hadimu (Ad29),xd97,Wahadimu,1930,,,-6,40,Revised,,East Tropical Africa +Ad3,Chagga,-3,37,moch1256,Chagga (Ad3),xd98,Dschagga; Wachagga,1910,Chagga (FN04),FN04,-3,37,Original,,East Tropical Africa +Ad30,Digo,-4,39,digo1243,Digo (Ad30),xd99,Adigo; Wadigo,1890,,,-4,39,Original,,East Tropical Africa +Nd26,Wadatkuht,41,-120,sout2967,Wadatkuht (Nd26),xd992,Honey Lake Paiute,1870,Northern Paiute (NR13),NR13,41,-120,Original,,Southwestern U.S.A. +Nd39,Spring Valley Shoshoni,40,-115,west2622,Spring Valley (Nd39),xd995,Spring Valley; Snake Valley Shoshoni; Antelope Valley Shoshoni,1870,,,40,-115,Original,,Southwestern U.S.A. diff --git a/cldf/sources.bib b/cldf/sources.bib new file mode 100644 index 0000000..349776f --- /dev/null +++ b/cldf/sources.bib @@ -0,0 +1,36829 @@ +@article{biesele1972, + author = {Biesele, M.}, + journal = {Botswana Notes and Records (special ed.)}, + key = {Biesele (1972)}, + lgcode = {!Kung [juho1239]}, + title = {Hunting in semi-arid areas - the Kalahari Bushmen Today}, + year = {1972} +} + +@phdthesis{biesele1975, + author = {Biesele, M.}, + glottolog_ref = {eballiso2009:34947}, + key = {Biesele (1975)}, + lgcode = {!Kung [juho1239]}, + school = {Harvard}, + title = {Folklore and ritual of !Kung hunter-gatherers}, + year = {1975} +} + +@incollection{biesele1976, + author = {Biesele, M.}, + editor = {Lee, Richard Borshay and DeVore, Irven}, + address = {Cambridge MA & London}, + booktitle = {Kalahari Hunter-Gatherers: Studies of the !Kung San and their Neighbours}, + glottolog_ref = {eballiso2009:33436}, + key = {Biesele (1976)}, + lgcode = {!Kung [juho1239]}, + pages = {302-324}, + publisher = {Harvard Univ. Press}, + title = {Aspects of !Kung folklore}, + year = {1976} +} + +@phdthesis{draper1972, + author = {Draper, Patricia}, + glottolog_ref = {eballiso2009:50521}, + key = {Draper (1972)}, + lgcode = {!Kung [juho1239]}, + school = {Harvard}, + title = {!Kung Bushman childhood}, + year = {1972} +} + +@incollection{draper1975, + author = {Draper, Patricia}, + editor = {Reiter, Rayna P.}, + address = {New York}, + booktitle = {Toward an Anthropology of Women}, + glottolog_ref = {eballiso2009:50548}, + key = {Draper (1975)}, + lgcode = {!Kung [juho1239]}, + pages = {77-109}, + publisher = {Monthly Review Press}, + title = {!Kung women: contrasts in sexual egalitarianism in foraging and sedentary context}, + year = {1975} +} + +@misc{drapernd, + author = {Draper, Patricia}, + howpublished = {forthcoming}, + key = {Draper (nd)}, + lgcode = {!Kung [juho1239]}, + title = {!Kung Subsistence Work at /Du/da.} +} + +@article{hansenetal1969, + author = {Hansen, J. D. L. and Truswell, A. S. and Freeseman, C. and MacHutchon, B.}, + glottolog_ref = {eballiso2009:39742}, + journal = {South African Medical Journal}, + key = {Hansen et al. (1969)}, + lgcode = {!Kung [juho1239]}, + pages = {1158}, + title = {The children of hunting and gathering Bushmen}, + volume = {43}, + year = {1969} +} + +@phdthesis{harpending1971, + author = {Harpending, H. C.}, + key = {Harpending (1971)}, + lgcode = {!Kung [juho1239]}, + school = {Harvard University}, + title = {!Kung Hunter-Gatherer Population Structure}, + year = {1971} +} + +@book{howell1979, + author = {Howell, N.}, + address = {New York}, + key = {Howell (1979)}, + lgcode = {!Kung [juho1239]}, + publisher = {Academic Press}, + title = {Demography of the Dobe Area !Kung}, + year = {1979} +} + +@misc{howellnd, + author = {Howell, N.}, + address = {Princeton}, + howpublished = {Manuscript}, + key = {Howell (nd)}, + lgcode = {!Kung [juho1239]}, + title = {Estimating Absolute Age in a Remote and Nonliterate Population} +} + +@article{konner1971, + author = {Konner, M. J.}, + journal = {Mulch}, + key = {Konner (1971)}, + lgcode = {!Kung [juho1239]}, + number = {v}, + pages = {44-73}, + title = {Infants of a Foraging People}, + volume = {1}, + year = {1971} +} + +@incollection{konner1972, + author = {Konner, M. J.}, + editor = {Jones, N. G. Blurton}, + address = {Cambridge}, + booktitle = {Ethological Studies of Child Behavior}, + key = {Konner (1972)}, + lgcode = {!Kung [juho1239]}, + title = {Aspects of the Developmental Ethology of a Foraging People}, + year = {1972} +} + +@phdthesis{konner1973, + author = {Konner, M. J.}, + key = {Konner (1973)}, + lgcode = {!Kung [juho1239]}, + school = {Harvard University}, + title = {Infants of a Foraging People}, + year = {1973} +} + +@incollection{konner1977, + author = {Konner, M. J.}, + editor = {Leiderman, P. Herbert and Tulkin, Stephen R. and Rosenfeld, Anne}, + address = {New York}, + booktitle = {Culture and Infancy: Variation in the Human Experience}, + glottolog_ref = {eballiso2009:14767}, + key = {Konner (1977)}, + lgcode = {!Kung [juho1239]}, + pages = {287-328}, + publisher = {Academic Press}, + title = {Infancy among the Kalahari Desert San}, + year = {1977} +} + +@phdthesis{lee1966, + author = {Lee, R. B.}, + key = {Lee (1966)}, + lgcode = {!Kung [juho1239]}, + school = {University of California, Berkeley}, + title = {Subsistence Ecology of !Kung Bushmen}, + year = {1966} +} + +@incollection{lee1968, + author = {Lee, R. B.}, + editor = {Lee, R. B. and DeVore, I.}, + address = {Chicago}, + booktitle = {Man the hunter}, + glottolog_ref = {eballiso2009:51394}, + key = {Lee (1968)}, + lgcode = {!Kung [juho1239]}, + pages = {30-48}, + publisher = {Aldine Publ.}, + title = {What Hunters do for a Living}, + year = {1968} +} + +@incollection{lee1972a, + author = {Lee, R.B.}, + editor = {Bicchieri, M. G.}, + address = {New York}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + key = {Lee (1972a)}, + lgcode = {!Kung [juho1239]}, + pages = {327-368}, + publisher = {Holt, Rinehart and Winston}, + title = {The !Kung Bushmen of Botswana}, + year = {1972} +} + +@article{lee1974, + author = {Lee, R. B.}, + glottolog_ref = {eballiso2009:27664}, + journal = {Archives of Sexual Behavior}, + key = {Lee (1974)}, + lgcode = {!Kung [juho1239]}, + pages = {167-173}, + title = {Male-Female Residence Arrangements and Political Power in Human Hunter-Gatherers}, + volume = {3}, + year = {1974} +} + +@book{lee1979, + author = {Lee, R. B.}, + address = {Cambridge}, + key = {Lee (1979)}, + lgcode = {!Kung [juho1239]}, + publisher = {Cambridge University Press}, + title = {The !Kung San: Men, Women, and Work in a Foraging Society}, + year = {1979} +} + +@misc{leeanddevore1976, + editor = {Lee, R. B. and DeVore, Irven}, + address = {Cambridge, Mass.}, + key = {Lee and DeVore (1976)}, + lgcode = {!Kung [juho1239]}, + title = {Kalahari Hunter-Gatherers}, + year = {1976} +} + +@book{marshall1956, + author = {Marshall, J.}, + address = {Somerville, Mass. (Film)}, + key = {Marshall (1956)}, + lgcode = {!Kung [juho1239]}, + title = {The Hunters}, + year = {1956} +} + +@misc{marshall1957, + author = {Marshall, J.}, + address = {Harvard}, + howpublished = {Senior Honors Thesis}, + key = {Marshall (1957)}, + lgcode = {!Kung [juho1239]}, + title = {Ecology of the !Kung Bushmen}, + year = {1957} +} + +@article{marshall1957a, + author = {Marshall, Lorna}, + glottolog_ref = {eballiso2009:51063}, + journal = {Africa}, + key = {Marshall (1957a)}, + lgcode = {!Kung [juho1239]}, + pages = {1-25}, + title = {The Kin Terminology System of the !Kung Bushmen}, + volume = {27}, + year = {1957} +} + +@article{marshall1957b, + author = {Marshall, Lorna}, + glottolog_ref = {eballiso2009:51064}, + journal = {Africa}, + key = {Marshall (1957b)}, + lgcode = {!Kung [juho1239]}, + pages = {232-240}, + title = {N!ow}, + volume = {27}, + year = {1957} +} + +@article{marshall1958, + author = {Marshall, J.}, + glottolog_ref = {eballiso2009:34594}, + journal = {Natural History}, + key = {Marshall (1958)}, + lgcode = {!Kung [juho1239]}, + pages = {291-309; 376-395}, + title = {Man as a hunter}, + volume = {6; 7}, + year = {1958} +} + +@article{marshall1959, + author = {Marshall, Lorna}, + journal = {Africa}, + key = {Marshall (1959)}, + lgcode = {!Kung [juho1239]}, + pages = {335-365}, + title = {Marriage among !Kung Bushmen}, + volume = {29}, + year = {1959} +} + +@article{marshall1960, + author = {Marshall, Lorna}, + journal = {Africa}, + key = {Marshall (1960)}, + lgcode = {!Kung [juho1239]}, + pages = {325-355}, + title = {!Kung Bushman Bands}, + volume = {30}, + year = {1960} +} + +@misc{marshall1961, + author = {Marshall, Lorna}, + journal = {Africa}, + key = {Marshall (1961)}, + lgcode = {!Kung [juho1239]}, + note = {Reprinted in R. B. Lee and I. DeVore 1976. Kalahari Hunter-Gatherers. Cambridge, Mass.}, + pages = {231-249}, + title = {Sharing, Talking and Giving}, + volume = {31}, + year = {1961} +} + +@article{marshall1962, + author = {Marshall, Lorna}, + glottolog_ref = {eballiso2009:51060}, + journal = {Africa}, + key = {Marshall (1962)}, + lgcode = {!Kung [juho1239]}, + pages = {221-252}, + title = {!Kung Bushman Religious Beliefs}, + volume = {32}, + year = {1962} +} + +@incollection{marshall1965, + author = {Marshall, Lorna}, + editor = {Gibbs and Jr. and L., James}, + address = {New York}, + booktitle = {Peoples of Africa}, + glottolog_ref = {eballiso2009:59972}, + key = {Marshall (1965)}, + lgcode = {!Kung [juho1239]}, + pages = {241-278}, + publisher = {New York: Holt, Rinehart & Winston}, + title = {The !Kung Bushmen of the Kalahari Desert}, + year = {1965} +} + +@book{marshall1976, + author = {Marshall, Lorna}, + address = {Cambridge MA}, + glottolog_ref = {eballiso2009:13260}, + key = {Marshall (1976)}, + lgcode = {!Kung [juho1239]}, + publisher = {Harvard Univ. Press}, + title = {The !Kung of Nyae Nyae}, + year = {1976} +} + +@article{marshallandmarshall1956, + author = {Marshall, Lawrence and Marshall, Lorna}, + glottolog_ref = {eballiso2009:13263}, + journal = {South West Africa Annual}, + key = {Marshall and Marshall (1956)}, + lgcode = {!Kung [juho1239]}, + pages = {11-23}, + title = {!Kung Bushmen of South West Africa}, + volume = {1956}, + year = {1956} +} + +@book{schapera1930, + author = {Schapera, Isaac}, + address = {London}, + key = {Schapera (1930)}, + lgcode = {!Kung [juho1239], Nama [nama1265], Naron [naro1249]}, + publisher = {Routledge and Kegan Paul}, + title = {The Khoisan Peoples of South Africa Bushmen and Hottentots}, + year = {1930} +} + +@book{shostak1981, + author = {Shostak, M.}, + address = {Cambridge, Mass.}, + key = {Shostak (1981)}, + lgcode = {!Kung [juho1239]}, + title = {Nisa}, + year = {1981} +} + +@book{thomas1959, + author = {Thomas, E. M.}, + address = {New York}, + glottolog_ref = {eballiso2009:31715}, + key = {Thomas (1959)}, + lgcode = {!Kung [juho1239]}, + publisher = {Alfred A. Knopf}, + title = {The harmless people}, + year = {1959} +} + +@book{tobias1978, + editor = {Tobias, P.}, + address = {Cape Town}, + key = {Tobias (1978)}, + lgcode = {!Kung [juho1239]}, + title = {San Hunters and Herders of Southern Africa}, + year = {1978} +} + +@article{huntingford1929, + author = {Huntingford, G. W. B.}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Huntingford (1929)}, + lgcode = {Dorobo [okie1245]}, + pages = {333-378}, + title = {Modern Hunters: Some Accounts of the KameliloKapchepkendi Dorobo (Okiek) of Kenya Colony}, + volume = {59}, + year = {1929} +} + +@article{huntingford1942, + author = {Huntingford, G. W. B.}, + journal = {African Studies}, + key = {Huntingford (1942)}, + lgcode = {Dorobo [okie1245]}, + pages = {183-200}, + title = {The Social Organization of the Dorobo}, + volume = {1}, + year = {1942} +} + +@article{huntingford1951, + author = {Huntingford, G. W. B.}, + journal = {Anthropos}, + key = {Huntingford (1951)}, + lgcode = {Dorobo [okie1245]}, + pages = {1-48}, + title = {The Social Institutions of the Dorobo}, + volume = {46}, + year = {1951} +} + +@book{huntingford1953b, + author = {Huntingford, G. W. B.}, + address = {London}, + glottolog_ref = {eballiso2009:42668}, + key = {Huntingford (1953b)}, + lgcode = {Dorobo [okie1245], Goroa [goro1270], Hill Suk [west2492], Iraqw [iraq1241], Keyu [keiy1238], Kipsigis [kips1239], Maasi [masa1300], Nandi [nand1266], Plains Suk [east2420], Sandawe [sand1273], Tatoga [dato1239]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, East Central Africa}, + title = {The Southern Nilo-Hamites}, + volume = {8}, + year = {1953} +} + +@article{huntingford1954, + author = {Huntingford, G. W. B.}, + journal = {Anthropos}, + key = {Huntingford (1954)}, + lgcode = {Dorobo [okie1245]}, + pages = {123-148}, + title = {The Political Organization of the Dorobo}, + volume = {46}, + year = {1954} +} + +@article{huntingford1955a, + author = {Huntingford, G. W. B.}, + glottolog_ref = {eballiso2009:42664}, + journal = {Anthropos}, + key = {Huntingford (1955a)}, + lgcode = {Dorobo [okie1245]}, + pages = {602-634}, + title = {The Economic Life of the Dorobo}, + volume = {50}, + year = {1955} +} + +@article{hoernl1918, + author = {W., Hoernl‚ A.}, + glottolog_ref = {eballiso2009:48080}, + journal = {Harvard African Studies}, + key = {Hoernl (1918)}, + lgcode = {Nama [nama1265]}, + pages = {65-82}, + title = {Certain Rites of Transition and the Conception of !Nau among the Hottentots}, + volume = {2}, + year = {1918} +} + +@article{hoernl1925, + author = {Hoernl, A. W.}, + journal = {American Anthropologist}, + key = {Hoernl (1925)}, + lgcode = {Nama [nama1265]}, + pages = {1-24}, + title = {The Social Organization of the Nama Hottentots}, + volume = {27}, + year = {1925} +} + +@article{kohler1970, + author = {Kohler, C.}, + journal = {African Studies}, + key = {Kohler (1970)}, + lgcode = {Nama [nama1265]}, + pages = {279-285}, + title = {A new contribution to Nama Studies}, + volume = {29}, + year = {1970} +} + +@book{murdock1934b, + author = {Murdock, G. P.}, + address = {New York}, + glottolog_ref = {fabreall2009ann:6912}, + key = {Murdock (1934b)}, + lgcode = {Aztec [clas1250], Fon [fonn1241], Haida [nort2938], Haida (Northern) [nort2938], Haida (Southern) [sout2956], Inca [cusc1236], Kazakh [kaza1248], Nama [nama1265], Northern Aranda [east2379], Semang [kens1248], Toda [toda1252]}, + publisher = {Nueva York: Macmillan}, + title = {Our Primitive Contemporaries}, + year = {1934} +} + +@book{schultze1907, + author = {Schultze, L.}, + address = {Jena}, + glottolog_ref = {guldemann:3996}, + key = {Schultze (1907)}, + lgcode = {Nama [nama1265]}, + publisher = {Jena: Gustav Fischer}, + title = {Aus Namaland und Kalahari}, + year = {1907} +} + +@book{lebzelter1934, + author = {Lebzelter, V.}, + address = {Leipzig}, + key = {Lebzelter (1934)}, + lgcode = {Bergdama [dama1270]}, + title = {Eingeborenenkulturen in Sudwest-und Sudafrika}, + year = {1934} +} + +@incollection{schmidt1930, + author = {Schmidt, M.}, + editor = {Schlettwein, August and Schultz-Ewerth, Erich and Adam, Leonhard}, + address = {Stuttgart}, + booktitle = {Das Eingeborenenrecht}, + glottolog_ref = {eballiso2009:33792}, + key = {Schmidt (1930)}, + lgcode = {Bergdama [dama1270]}, + pages = {269-397}, + publisher = {Stuttgart: Strecker & Schröder}, + title = {Die Nama, Bergdama und Namib-Buschleute}, + volume = {2}, + year = {1930} +} + +@book{vedder1923, + author = {Vedder, H.}, + address = {Hamburg}, + key = {Vedder (1923)}, + lgcode = {Bergdama [dama1270]}, + title = {The Bergdama}, + year = {1923} +} + +@article{deleeuwe1966, + author = {De Leeuwe, J.}, + howpublished = {German}, + journal = {Antropos}, + key = {De Leeuwe (1966)}, + lgcode = {Mbuti [bila1255]}, + pages = {737-763}, + title = {Development in Bambuti society}, + volume = {61}, + year = {1966} +} + +@article{hart1978, + author = {Hart, J. A.}, + journal = {Human Ecology}, + key = {Hart (1978)}, + lgcode = {Mbuti [bila1255]}, + number = {3}, + pages = {325-353}, + title = {From Subsistence to Market: A case study of the Mbuti net hunters}, + volume = {6}, + year = {1978} +} + +@incollection{putnam1948, + author = {Putnam, P.}, + editor = {Coon, C.}, + address = {New Haven}, + booktitle = {A reader in General Anthropology}, + key = {Putnam (1948)}, + lgcode = {Mbuti [bila1255]}, + pages = {322-342}, + publisher = {Yale University Press}, + title = {The pygmies of the Ituri Forest}, + year = {1948} +} + +@book{turnbull1961, + author = {Turnbull, C. M.}, + address = {New York}, + key = {Turnbull (1961)}, + lgcode = {Mbuti [bila1255]}, + title = {The Forest People}, + year = {1961} +} + +@book{turnbull1965a, + author = {Turnbull, C. M.}, + address = {Garden City NY}, + glottolog_ref = {eballiso2009:14809}, + key = {Turnbull (1965a)}, + lgcode = {Mbuti [bila1255]}, + publisher = {Natural History Press}, + title = {Wayward servants: the two worlds of the African pygmies}, + year = {1965} +} + +@article{turnbull1965b, + author = {Turnbull, C. M.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Turnbull (1965b)}, + lgcode = {Mbuti [bila1255]}, + pages = {iii, 1-282}, + title = {The Mbuti Pygmies}, + volume = {50}, + year = {1965} +} + +@incollection{turnbull1965c, + author = {Turnbull, C. M.}, + editor = {J. L. Gibbs, Jr.}, + address = {New York}, + booktitle = {Peoples of Africa}, + key = {Turnbull (1965c)}, + lgcode = {Mbuti [bila1255]}, + pages = {279-317}, + title = {The Mbuti Pygmies of the Congo}, + year = {1965} +} + +@book{turnbull1983, + author = {Turnbull, C. M.}, + address = {New York}, + glottolog_ref = {eballiso2009:36778}, + key = {Turnbull (1983)}, + lgcode = {Mbuti [bila1255]}, + publisher = {New York: Holt, Rinehart & Winston}, + series = {Case studies in cultural anthropolog}, + title = {The Mbuti Pygmies: Change and Adaptation}, + volume = {se studies in cultural anthropology}, + year = {1983} +} + +@book{dempwolff1916, + author = {Dempwolff, O.}, + address = {Hamburg}, + key = {Dempwolff (1916)}, + lgcode = {Sandawe [sand1273]}, + title = {Die Sandawe}, + year = {1916} +} + +@article{kimmenade1936, + author = {Kimmenade, M. van de.}, + journal = {Anthropos}, + key = {Kimmenade (1936)}, + lgcode = {Sandawe [sand1273]}, + pages = {395-416}, + title = {Les Sandawe}, + volume = {31}, + year = {1936} +} + +@article{bleek1924b, + author = {Bleek, D. F.}, + journal = {Bantu Studies}, + key = {Bleek (1924b)}, + lgcode = {/Xam [xamm1241], Naron [naro1249]}, + pages = {57-70}, + title = {Bushman Terms of Relationship}, + volume = {2}, + year = {1924} +} + +@book{bleek1928, + author = {Bleek, D. F.}, + address = {Cambridge}, + key = {Bleek (1928)}, + lgcode = {Naron [naro1249]}, + publisher = {Cambridge University Press}, + title = {The Naron: A BuNman Tribe of the Central Kalahari}, + year = {1928} +} + +@book{passarge1907, + author = {Passarge, S.}, + address = {Berlin}, + glottolog_ref = {eballiso2009:59837}, + key = {Passarge (1907)}, + lgcode = {Naron [naro1249]}, + publisher = {Berlin: Verlag von Dietrich Reimer}, + title = {Die Buschmanner der Kalahari}, + year = {1907} +} + +@book{barrow180104, + author = {Barrow, J.}, + address = {London}, + key = {Barrow (1801-04)}, + lgcode = {/Xam [xamm1241]}, + title = {An Account of Travels into the Interior of South Africa. 2V}, + year = {1801-04} +} + +@book{fritsch1872, + author = {Fritsch, G. T.}, + address = {Breslau}, + key = {Fritsch (1872)}, + lgcode = {/Xam [xamm1241]}, + title = {Die Eingeborenen Sud-Afrika's}, + year = {1872} +} + +@article{bleek1931b, + author = {Bleek, D. F.}, + journal = {Africa}, + key = {Bleek (1931b)}, + lgcode = {Hadza [hadz1240]}, + pages = {273-286}, + title = {The Hadzapi or Watindiga of Tanganyika Territory}, + volume = {4}, + year = {1931} +} + +@book{kohllarsen1958, + author = {Kohl-Larsen, L.}, + address = {Berlin}, + key = {Kohl-Larsen (1958)}, + lgcode = {Hadza [hadz1240]}, + title = {Wildbeuter in OstAfrika}, + year = {1958} +} + +@phdthesis{woodburn1964, + author = {Woodburn, J.}, + key = {Woodburn (1964)}, + lgcode = {Hadza [hadz1240]}, + school = {University of Cambridge}, + title = {The Social Organization of the Hadza of North Tanzania}, + year = {1964} +} + +@incollection{woodburn1968a, + author = {Woodburn, J.}, + editor = {Lee, Richard B. and DeVore, Irven}, + address = {Chicago}, + booktitle = {Man the Hunter}, + glottolog_ref = {eballiso2009:15258}, + key = {Woodburn (1968a)}, + lgcode = {Hadza [hadz1240]}, + pages = {49-55}, + publisher = {Aldine Publ.}, + title = {An introduction to Hadza ecology}, + year = {1968} +} + +@incollection{woodburn1968b, + author = {Woodburn, J.}, + editor = {Lee, Richard B. and DeVore, Irven}, + address = {Chicago}, + booktitle = {Man the Hunter}, + glottolog_ref = {eballiso2009:15259}, + key = {Woodburn (1968b)}, + lgcode = {Hadza [hadz1240]}, + pages = {103-110}, + publisher = {Aldine Publ.}, + title = {Stability and flexibility in Hadza residential grouping}, + year = {1968} +} + +@book{woodburn1970, + author = {Woodburn, J.}, + address = {London}, + glottolog_ref = {eballiso2009:15260}, + key = {Woodburn (1970)}, + lgcode = {Hadza [hadz1240]}, + publisher = {British Museum}, + title = {Hunters and gatherers: the material culture of the nomadic Hadza}, + year = {1970} +} + +@book{irle1906, + author = {Irle, J.}, + address = {Gutersloh}, + key = {Irle (1906)}, + lgcode = {Herero [here1253]}, + title = {Die Herero}, + year = {1906} +} + +@inbook{vedder1928, + author = {Vedder, H.}, + address = {Cape Town}, + booktitle = {The native tribes of South West Africa}, + glottolog_ref = {guldemann:1856}, + key = {Vedder (1928)}, + lgcode = {Herero [here1253]}, + pages = {153-211}, + publisher = {Cape Times Ltd; Administration of South West Africa}, + title = {The Herero}, + year = {1928} +} + +@book{hunter1936, + author = {Hunter, M.}, + address = {London}, + key = {Hunter (1936)}, + lgcode = {Pondo [mpon1252]}, + title = {Reaction to Conquest}, + year = {1936} +} + +@incollection{borwnlee1927, + author = {Borwnlee, J.}, + editor = {Thompson, G.}, + address = {London}, + booktitle = {Travels and Adventures in Southern Africa}, + key = {Borwnlee (1927)}, + lgcode = {Xhosa [xesi1238]}, + pages = {335-375}, + title = {Account of the Amakosae, or Southern Caffres}, + volume = {2}, + year = {1927} +} + +@book{kropf1889, + author = {Kropf, A.}, + address = {Berlin}, + key = {Kropf (1889)}, + lgcode = {Xhosa [xesi1238]}, + title = {Das Volk der Xosa-KAffern im ostlichen SudAfrika}, + year = {1889} +} + +@book{soga1932, + author = {Soga, J. H.}, + address = {London}, + key = {Soga (1932)}, + lgcode = {Xhosa [xesi1238]}, + title = {The Ama-Xosa}, + year = {1932} +} + +@book{bryant1949, + author = {Bryant, A. T.}, + address = {Pietermaritzburg}, + key = {Bryant (1949)}, + lgcode = {Zulu [zulu1248]}, + publisher = {Shuter and Shooter}, + title = {The Zulu people}, + year = {1949} +} + +@incollection{gluckman1940, + author = {Gluckman, M.}, + editor = {Fortes and Evans-Pritchard}, + address = {Oxford}, + booktitle = {African Political Systems}, + key = {Gluckman (1940)}, + lgcode = {Zulu [zulu1248]}, + pages = {25-55}, + title = {The Kingdom of the Zulu in South Africa}, + year = {1940} +} + +@incollection{gluckman1950, + author = {Gluckman, M.}, + editor = {Radcliffe-Brown and Forde}, + address = {London}, + booktitle = {African Systems of Kinship and Marriage}, + glottolog_ref = {eballiso2009:44745}, + key = {Gluckman (1950)}, + lgcode = {Lozi [lozi1239], Zulu [zulu1248]}, + pages = {166-206}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + title = {Kinship and Marriage Among the Lozi of Northern Rhodesia and the Zulu of Natal}, + year = {1950} +} + +@book{krige1936, + author = {Krige, E. J.}, + address = {London}, + glottolog_ref = {eballiso2009:20956}, + key = {Krige (1936)}, + lgcode = {Zulu [zulu1248]}, + publisher = {London: Longmans}, + title = {The Social System of the Zulus}, + year = {1936} +} + +@article{mahloboandkrige1934, + author = {Mahlobo, G. W. K. and Krige., Eileen Jensen}, + glottolog_ref = {eballiso2009:2493}, + journal = {Bantu Studies}, + key = {Mahlobo and Krige (1934)}, + lgcode = {Zulu [zulu1248]}, + pages = {157-91}, + title = {Tansition from childhood to adulthood amongst the Zulus}, + volume = {8}, + year = {1934} +} + +@book{schapera1937, + editor = {Schapera, Isaac}, + address = {London}, + key = {Schapera (1937)}, + lgcode = {Zulu [zulu1248]}, + publisher = {Routledge and Kegan Paul}, + title = {The Bantu-speaking tribes of South Africa: an ethnographic survey}, + year = {1937} +} + +@book{vilakazi1962, + author = {Vilakazi, A.}, + address = {Pietermaritzburg}, + key = {Vilakazi (1962)}, + lgcode = {Zulu [zulu1248]}, + title = {Zulu Transformations}, + year = {1962} +} + +@book{brown1926, + author = {Brown, J. Tom.}, + address = {London}, + key = {Brown (1926)}, + lgcode = {Tswana [tswa1253]}, + publisher = {Seeley, Service & Co.}, + title = {Among the Bantu nomads}, + year = {1926} +} + +@book{dorman1935, + author = {Dorman, S. S.}, + address = {London}, + key = {Dorman (1935)}, + lgcode = {Tswana [tswa1253]}, + publisher = {Seeley, Service & Co.}, + title = {Pygmies and Bushmen of the Kalahari}, + year = {1935} +} + +@book{duggancronin1929, + author = {Duggan-Cronin, A. M.}, + address = {Cambridge}, + key = {Duggan-Cronin (1929)}, + lgcode = {Tswana [tswa1253]}, + publisher = {Cambridge University Press}, + title = {The Bantu tribes of South Africa. Volume 2, Section 1, The Suto-Chuana Tribes, Subgroup 1, the Bechuana}, + year = {1929} +} + +@book{livingstone1858, + author = {Livingstone, David}, + address = {New York}, + glottolog_ref = {eballiso2009:55287}, + key = {Livingstone (1858)}, + lgcode = {Tswana [tswa1253]}, + publisher = {Harper & Bros}, + title = {Missionary travels and researches in South Africa}, + year = {1858} +} + +@book{schapera1938, + author = {Schapera, I.}, + address = {London}, + glottolog_ref = {eballiso2009:8136}, + key = {Schapera (1938)}, + lgcode = {Tswana [tswa1253]}, + publisher = {London & New York: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + title = {Handbook of Tswana Law and Custom}, + year = {1938} +} + +@book{schapera1941, + author = {Schapera, I.}, + address = {New York}, + key = {Schapera (1941)}, + lgcode = {Tswana [tswa1253]}, + title = {Married Life in an African Tribe}, + year = {1941} +} + +@incollection{schapera1950, + author = {Schapera, I.}, + editor = {Radcliff-Brown and Forde}, + address = {London}, + booktitle = {African Systems of Kinship and Marriage}, + glottolog_ref = {eballiso2009:51635}, + key = {Schapera (1950)}, + lgcode = {Tswana [tswa1253]}, + pages = {140-165}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + title = {Kinship and Marriage Among the Tswana}, + year = {1950} +} + +@book{schapera1953, + author = {Schapera, I.}, + address = {London}, + glottolog_ref = {guldemann:3946}, + key = {Schapera (1953)}, + lgcode = {Tswana [tswa1253]}, + publisher = {London: Kegan Paul}, + title = {The Tswana}, + year = {1953} +} + +@book{schpera1941, + author = {Schpera, Isaac}, + address = {New York}, + key = {Schpera (1941)}, + lgcode = {Tswana [tswa1253]}, + publisher = {Sheridan House}, + title = {Married life in an African tribe}, + year = {1941} +} + +@book{krigeandkrige1943, + author = {Krige, E. J. and Krige., J. D.}, + address = {London}, + key = {Krige and Krige (1943)}, + lgcode = {Lovedu [lobe1242]}, + title = {Realm of a Rain-Queen}, + year = {1943} +} + +@misc{duggancronin1931, + author = {Duggan-Cronin, A. M.}, + address = {Cambridge}, + key = {Duggan-Cronin (1931)}, + lgcode = {Pedi [tswe1238]}, + note = {with introductory article on the Bapedi by Werner Eiselen}, + publisher = {Cambridge University Press}, + title = {The Bantu tribes of South Africa, Vol. 2, Section 2, sub-group 2, the Bapedi Transvaal Basotho}, + year = {1931} +} + +@article{franz1931, + author = {Franz, G. H.}, + glottolog_ref = {eballiso2009:41982}, + journal = {Bantu Studies}, + key = {Franz (1931)}, + lgcode = {Pedi [tswe1238]}, + pages = {241-46}, + title = {Some customs of the Transvaal Basotho}, + volume = {5}, + year = {1931} +} + +@book{harries1939, + author = {Harries, C. L.}, + address = {Johannesburg}, + key = {Harries (1939)}, + lgcode = {Pedi [tswe1238]}, + publisher = {Hortens}, + title = {The laws and customs of the Bapedi}, + year = {1939} +} + +@book{harris1929, + author = {Harris, C. L.}, + address = {Johannesburg}, + key = {Harris (1929)}, + lgcode = {Pedi [tswe1238]}, + title = {The Laws and Customs of the Bapedi and Cognate Tribes of the Transvaal}, + year = {1929} +} + +@article{pitje1950, + author = {Pitje, G. M.}, + glottolog_ref = {eballiso2009:8779}, + journal = {African Studies}, + key = {Pitje (1950)}, + lgcode = {Pedi [tswe1238]}, + pages = {53-76, 105-24}, + title = {Traditional systems of male education among Pedi and cognate tribes}, + volume = {9}, + year = {1950} +} + +@article{vanwarmelo1931, + author = {Van Warmelo, N. J.}, + glottolog_ref = {eballiso2009:58803}, + journal = {Un. S. Afr. Dept. Nat. Aff. Ethn. Publ.}, + key = {Van Warmelo (1931)}, + lgcode = {Pedi [tswe1238]}, + pages = {1-119}, + publisher = {Pretoria: Government Printer; Dept. of Native Affairs, South Africa}, + series = {Ethnological publ.}, + title = {Kinship Terminology of the South African Bantu}, + volume = {2}, + year = {1931} +} + +@article{winter1914, + author = {Winter, J. A.}, + journal = {South African Journal of Science}, + key = {Winter (1914)}, + lgcode = {Pedi [tswe1238]}, + pages = {371-383}, + title = {The mental and moral capabilities of the natives, especially of Sekukuniland (Eastern Transvaal)}, + volume = {12}, + year = {1914} +} + +@book{earthy1933, + author = {Earthy, E. D.}, + address = {London}, + key = {Earthy (1933)}, + lgcode = {Lenge [leng1257]}, + title = {Valenge Woman}, + year = {1933} +} + +@article{boas1922, + author = {Boas, F.}, + journal = {Zeitschrift für Ethnologie}, + key = {Boas (1922)}, + lgcode = {Ndau [ndau1241]}, + pages = {41-51}, + title = {Das VerwandtschAftssystem der Vandau}, + volume = {54}, + year = {1922} +} + +@incollection{dossantos1901, + author = {Dos Santos, J.}, + editor = {Theal, G. M.}, + address = {London}, + booktitle = {Records of South-Eastern Africa}, + key = {Dos Santos (1901)}, + lgcode = {Ndau [ndau1241]}, + pages = {183-383}, + title = {Eastern Ethiopia}, + volume = {7}, + year = {1901} +} + +@article{herskovits1923, + author = {Herskovits, M. J.}, + glottolog_ref = {eballiso2009:9029}, + journal = {American Anthropologist}, + key = {Herskovits (1923)}, + lgcode = {Ndau [ndau1241]}, + pages = {376-386}, + title = {Some Property Concepts and Marriage Customs of the Vandau}, + volume = {25}, + year = {1923} +} + +@book{bullock1928, + author = {Bullock, C.}, + address = {Cape Town}, + key = {Bullock (1928)}, + lgcode = {Shona [shon1251]}, + title = {The Mashona}, + year = {1928} +} + +@book{holleman1952, + author = {Holleman, J. F.}, + address = {Cape Town}, + glottolog_ref = {eballiso2009:26214}, + key = {Holleman (1952)}, + lgcode = {Shona [shon1251]}, + publisher = {Cape Town: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + title = {Shona Customary Law}, + year = {1952} +} + +@book{kuper1955, + author = {Kuper, H.}, + address = {London}, + key = {Kuper (1955)}, + lgcode = {Shona [shon1251]}, + title = {The Shona}, + year = {1955} +} + +@book{prost1956, + author = {Prost, Andre. V-23.}, + key = {Prost (1956)}, + lgcode = {Shona [shon1251]}, + series = {Institut Francais d'Afrique Noire, Memoire}, + title = {La langue Sonay}, + volume = {47}, + year = {1956} +} + +@article{seed193233, + author = {Seed, J. H.}, + journal = {S. Rhod. Nat. Aff. Dept. Ann.}, + key = {Seed (1932-33)}, + lgcode = {Shona [shon1251]}, + pages = {65-73; 35-56}, + title = {The Kinship System of a Bantu Tribe}, + volume = {10; 11}, + year = {1932-33} +} + +@article{krafft1914, + author = {Krafft, M.}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + key = {Krafft (1914)}, + lgcode = {Ambo [ndon1254]}, + pages = {17-35}, + title = {Die Rechtsverhaltnisse der Ovakuanyama und der Ovandonga}, + volume = {27}, + year = {1914} +} + +@book{lebzelter1935, + author = {Lebzelter, V.}, + address = {Leipzig}, + key = {Lebzelter (1935)}, + lgcode = {Ambo [ndon1254]}, + title = {Eingeborenenkulturen in Sudwest-und SudAfrika}, + year = {1935} +} + +@article{loeb1962, + author = {Loeb, E. M.}, + journal = {Publ. Indiana Univ. Res. Cent. Anth. Folkl. Ling.}, + key = {Loeb (1962)}, + lgcode = {Ambo [ndon1254]}, + pages = {1-383}, + title = {In Feudal Africa}, + volume = {23}, + year = {1962} +} + +@book{tonejes1911, + author = {Tonejes, H.}, + address = {Berlin}, + key = {Tonejes (1911)}, + lgcode = {Ambo [ndon1254]}, + title = {Ovamboland}, + year = {1911} +} + +@incollection{kuper1950, + author = {Kuper, Hilda.}, + editor = {Radcliffe-Brown, Alfred Reginald and Forde, Daryll}, + address = {London, New York & Toronto}, + booktitle = {African Systems of Kinship and Marriage}, + glottolog_ref = {eballiso2009:44608}, + key = {Kuper (1950)}, + lgcode = {Swazi [swat1243]}, + pages = {86-110}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + title = {Kinship among the Swazi}, + year = {1950} +} + +@book{kuper1974, + author = {Kuper, H.}, + address = {London}, + key = {Kuper (1974)}, + lgcode = {Swazi [swat1243]}, + title = {An African Aristocracy}, + year = {1974} +} + +@book{marwick1940, + author = {Marwick, B. A.}, + address = {Cambridge}, + key = {Marwick (1940)}, + lgcode = {Swazi [swat1243]}, + title = {The Swazi}, + year = {1940} +} + +@article{wunenberger1888, + author = {Wunenberger, C.}, + journal = {Missions Catholiques}, + key = {Wunenberger (1888)}, + lgcode = {Ngumbi [nkhu1238]}, + pages = {224-272}, + title = {La mission et le royaume de Cunene}, + volume = {20}, + year = {1888} +} + +@book{magyar1859, + author = {Magyar, L.}, + address = {Budapest and Leipzig}, + key = {Magyar (1859)}, + lgcode = {Kisama [sama1300]}, + title = {Reisen in Süd-Afrika}, + year = {1859} +} + +@article{mattenklodt1944, + author = {Mattenklodt}, + editor = {Baumann, H.}, + journal = {Wiener Beiträge zur Kulturgeschichte Ling.}, + key = {Mattenklodt (1944)}, + lgcode = {Kisama [sama1300]}, + pages = {71-108}, + title = {Die Kisama}, + volume = {6}, + year = {1944} +} + +@book{cook1931, + author = {W., Cook. P. A.}, + address = {Cape Town}, + glottolog_ref = {eballiso2009:5015}, + key = {Cook (1931)}, + lgcode = {Bomvana [bomv1238]}, + publisher = {Cape Town: J.C. Juta}, + title = {Social Organisation and Ceremonial Institutions of the Bomvana}, + year = {1931} +} + +@incollection{junod1936, + author = {Junod, H. P.}, + editor = {Duggan-Cronin, A. M.}, + address = {Cambridge}, + booktitle = {The Bantu Tribes of South Africa}, + key = {Junod (1936)}, + lgcode = {Chopi [copi1238]}, + number = {ii}, + pages = {39-59}, + title = {The Vachopi of Portuguese East Africa}, + volume = {4}, + year = {1936} +} + +@book{bertrand1899, + author = {Bertrand, A.}, + address = {London}, + key = {Bertrand (1899)}, + lgcode = {Lozi [lozi1239]}, + title = {The Kingdom of the Barotsi}, + year = {1899} +} + +@book{gluckman1941, + author = {Gluckman, M.}, + key = {Gluckman (1941)}, + lgcode = {Lozi [lozi1239]}, + series = {Rhodes-Livingstone Papers}, + title = {Economy of the Central Barotse Plain}, + volume = {7}, + year = {1941} +} + +@incollection{gluckman1951, + author = {Gluckman, M.}, + editor = {Colson, E. and Gluckman, M.}, + address = {London}, + booktitle = {Seven Tribes of British Central Africa}, + glottolog_ref = {eballiso2009:27123}, + key = {Gluckman (1951)}, + lgcode = {Lozi [lozi1239]}, + pages = {1-93}, + publisher = {Oxford Univ. Press; Rhodes-Livingstone Inst.}, + title = {The Lozi of Barotseland}, + year = {1951} +} + +@misc{gluckman1972, + author = {Gluckman, M.}, + address = {Manchester}, + key = {Gluckman (1972)}, + lgcode = {Lozi [lozi1239]}, + note = {1st ed. 1965}, + title = {The Ideas in Barotse Jurisprudence}, + year = {1972} +} + +@book{holub1895, + author = {Holub, E.}, + address = {London}, + key = {Holub (1895)}, + lgcode = {Lozi [lozi1239]}, + title = {Seven Years in South Africa, v. 2}, + year = {1895} +} + +@book{mainga1973, + author = {Mainga, Mutumba}, + address = {London}, + glottolog_ref = {eballiso2009:19869}, + key = {Mainga (1973)}, + lgcode = {Lozi [lozi1239]}, + publisher = {Longmans}, + title = {Bulozi under the Luyana Kings: Political Evolution and State Formation in Pre-Colonial Zambia}, + year = {1973} +} + +@book{turner1952, + author = {Turner, V. W.}, + address = {London}, + glottolog_ref = {eballiso2009:21297}, + key = {Turner (1952)}, + lgcode = {Lozi [lozi1239]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, West Central Africa}, + title = {The Lozi Peoples of Northwestern Rhodesia}, + volume = {3}, + year = {1952} +} + +@book{junod1927, + author = {Junod, Henri A.}, + address = {London}, + key = {Junod (1927)}, + lgcode = {Tsonga [tson1249]}, + note = {2nd ed.}, + title = {The Life of a South African Tribe. 2v}, + url = {https://archive.org/details/lifeofsouthafric02junouoft}, + year = {1927} +} + +@book{childs1949, + author = {Childs, G. M.}, + address = {London}, + glottolog_ref = {eballiso2009:9479}, + key = {Childs (1949)}, + lgcode = {Mbundu [umbu1257]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + title = {Umbundu Kinship and Character}, + year = {1949} +} + +@book{duffy1959, + author = {Duffy, J.}, + address = {Cambridge, Mass.}, + key = {Duffy (1959)}, + lgcode = {Mbundu [umbu1257]}, + title = {Portuguese Africa}, + year = {1959} +} + +@book{edwards1962, + author = {Edwards, A. C.}, + address = {London}, + key = {Edwards (1962)}, + lgcode = {Mbundu [umbu1257]}, + title = {The Ovimbundu under Two Sovereignties}, + year = {1962} +} + +@article{hambly1934, + author = {Hambly, W. D.}, + address = {Chicago}, + glottolog_ref = {guldemann:1887}, + journal = {Field Museum Anthropological Series}, + key = {Hambly (1934)}, + lgcode = {Mbundu [umbu1257]}, + pages = {89-362}, + publisher = {Chicago: Field Museum of Natural History}, + series = {Publications 329. Anthropological Series}, + title = {The Ovimbundu of Angola}, + volume = {21}, + year = {1934} +} + +@book{mcculloch1952, + author = {McCulloch, M.}, + address = {London}, + glottolog_ref = {eballiso2009:57522}, + key = {McCulloch (1952)}, + lgcode = {Mbundu [umbu1257]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, West Central Africa}, + title = {The Ovimbundu of Angola}, + volume = {2}, + year = {1952} +} + +@article{gottschling1905, + author = {Gottschling, E.}, + glottolog_ref = {eballiso2009:2975}, + journal = {Journal of the Anthropological Institute}, + key = {Gottschling (1905)}, + lgcode = {Venda [vend1245]}, + pages = {365-86}, + title = {The Bavenda: a sketch of their history and customs}, + volume = {35}, + year = {1905} +} + +@book{stayt1931, + author = {Stayt, H. A.}, + address = {Oxford}, + glottolog_ref = {eballiso2009:50095}, + key = {Stayt (1931)}, + lgcode = {Venda [vend1245]}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + title = {The Bavenda}, + year = {1931} +} + +@article{warmelo1948, + author = {Warmelo, N. J. van.}, + journal = {Union of S. fr. Dept. Nat. Aff. Ethn. Publ.}, + key = {Warmelo (1948)}, + lgcode = {Venda [vend1245]}, + pages = {1-1047}, + title = {Venda Law}, + volume = {23}, + year = {1948} +} + +@book{wessmann1908, + author = {Wessmann, R.}, + address = {London}, + key = {Wessmann (1908)}, + lgcode = {Venda [vend1245]}, + publisher = {African World, Ltd.}, + title = {The Bavenda of the Spelonken}, + year = {1908} +} + +@article{langandtastevin1937, + author = {Lang, A. and Tastevin., C.}, + journal = {Mission Rohan-Chabot}, + key = {Lang and Tastevin (1937)}, + lgcode = {Nyaneka [nyan1305]}, + pages = {1-213}, + title = {La tribu des Va-Nyaneka}, + volume = {5}, + year = {1937} +} + +@book{ashton1952, + author = {Ashton, H.}, + address = {London, New York & Toronto}, + glottolog_ref = {eballiso2009:27743}, + key = {Ashton (1952)}, + lgcode = {Sotho [sout2807]}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + title = {The Basuto}, + year = {1952} +} + +@book{casilis1859, + author = {Casilis, E. A.}, + address = {Paris}, + key = {Casilis (1859)}, + lgcode = {Sotho [sout2807]}, + title = {Les Bassoutos}, + year = {1859} +} + +@book{dutton1923, + author = {Dutton, Eric Aldhelm Torlough}, + address = {London}, + key = {Dutton (1923)}, + lgcode = {Sotho [sout2807]}, + publisher = {Jonathan Cape}, + title = {The Basuto of Basutoland}, + year = {1923} +} + +@article{krige1937, + author = {Krige, J. D.}, + glottolog_ref = {eballiso2009:22311}, + journal = {Bantu Studies}, + key = {Krige (1937)}, + lgcode = {Sotho [sout2807]}, + pages = {321-356}, + title = {Traditional Origins and Tribal Relationships of the Sotho at Northern Transvaal}, + volume = {11}, + year = {1937} +} + +@article{mabille1906, + author = {Mabille, H. E.}, + journal = {Journal of the African Society}, + key = {Mabille (1906)}, + lgcode = {Sotho [sout2807]}, + pages = {219-51, 335-76}, + title = {The Basuto of Basutoland}, + volume = {5}, + year = {1906} +} + +@book{martin1903, + author = {Martin, Minnie}, + address = {London}, + glottolog_ref = {eballiso2009:27662}, + key = {Martin (1903)}, + lgcode = {Sotho [sout2807]}, + publisher = {Nichols}, + title = {Basutoland: its legends and customs}, + year = {1903} +} + +@book{sheddick1953, + author = {Sheddick, V. G. J.}, + glottolog_ref = {eballiso2009:34505}, + key = {Sheddick (1953)}, + lgcode = {Sotho [sout2807]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Southern Africa}, + title = {The Southern Sotho}, + volume = {2}, + year = {1953} +} + +@book{hughesandvanvelsen1955, + author = {Hughes, A. J. B. and van Velsen, J.}, + address = {London}, + key = {Hughes and van Velsen (1955)}, + lgcode = {Ndebele [nort2795]}, + title = {The Ndebele}, + year = {1955} +} + +@article{jackson192627, + author = {Jackson, H. M. G.}, + journal = {S. Rhod. Nat. Aff. Dep. Ann.}, + key = {Jackson (1926-27)}, + lgcode = {Ndebele [nort2795]}, + pages = {30-34; 7-14}, + title = {Notes on Matabele Customary Law}, + volume = {4; 5}, + year = {1926-27} +} + +@book{thomas1872, + author = {Thomas, T. M.}, + address = {London}, + key = {Thomas (1872)}, + lgcode = {Ndebele [nort2795]}, + title = {Eleven Years in Central South Africa}, + year = {1872} +} + +@book{smithanddale1920, + author = {Smith, E. W. and Dale, W. M.}, + address = {London}, + key = {Smith and Dale (1920)}, + lgcode = {Ila [ilaa1246]}, + title = {The Ila-speaking Peoples. 2v}, + year = {1920} +} + +@misc{tudennd, + author = {Tuden, A.}, + howpublished = {Unpublished field notes}, + key = {Tuden (nd)}, + lgcode = {Ila [ilaa1246]}, + school = {University of Pittsburgh} +} + +@article{bruwer1949, + author = {Bruwer, J.}, + glottolog_ref = {eballiso2009:21817}, + journal = {African Studies}, + key = {Bruwer (1949)}, + lgcode = {Chewa [chew1246]}, + pages = {191-198}, + title = {The composition of a Chewa village (Mudzi)}, + volume = {8}, + year = {1949} +} + +@article{bruwer1955, + author = {Bruwer, J. P.}, + glottolog_ref = {eballiso2009:27536}, + journal = {African Studies}, + key = {Bruwer (1955)}, + lgcode = {Chewa [chew1246]}, + pages = {113-122}, + title = {Unkhoswe: The System of Guardianship in Cewa Matrilineal Society}, + volume = {14}, + year = {1955} +} + +@article{hodgson1933, + author = {Hodgson, A. G. O.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Hodgson (1933)}, + lgcode = {Chewa [chew1246]}, + pages = {123-164}, + title = {Notes on the Achewa and Ngoni}, + volume = {63}, + year = {1933} +} + +@article{marwick1952, + author = {Marwick, M. G.}, + glottolog_ref = {eballiso2009:19953}, + journal = {S. Afr. Journ. Sci.}, + key = {Marwick (1952)}, + lgcode = {Chewa [chew1246]}, + pages = {258-262}, + title = {The Kinship Basis of Cewa Social Structure}, + volume = {48}, + year = {1952} +} + +@book{ntara1934, + author = {Ntara, Samuel Y.}, + address = {London}, + glottolog_ref = {eballiso2009:666}, + key = {Ntara (1934)}, + lgcode = {Chewa [chew1246]}, + publisher = {The Religious Tract Soc.}, + title = {Man of Africa}, + year = {1934} +} + +@article{read1938, + author = {Read, Margaret.}, + glottolog_ref = {eballiso2009:35738}, + journal = {Africa}, + key = {Read (1938)}, + lgcode = {Chewa [chew1246]}, + pages = {1-24}, + title = {The moral code of the Ngoni and their former military state}, + volume = {11}, + year = {1938} +} + +@incollection{richards1950, + author = {Richards, A. I.}, + editor = {Radcliffe-Brown, A. R. and Forde, D.}, + address = {London}, + booktitle = {African Systems of Kinship and Marriage}, + glottolog_ref = {eballiso2009:26730}, + key = {Richards (1950)}, + lgcode = {Bemba [town1238], Chewa [chew1246], Songo [song1299]}, + pages = {206-251}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + title = {Some Types of Family Structure Amongst the Central Bantu}, + year = {1950} +} + +@book{tew1950, + author = {Tew, M.}, + address = {London}, + glottolog_ref = {eballiso2009:27505}, + key = {Tew (1950)}, + lgcode = {Chewa [chew1246], Makua [makh1264], Ngonde [ngon1268], Ngoni [ngon1269], Nyanja [nucl1395], Nyasa [mwer1247], Tonga [tong1321], Tumbuka [tumb1250]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, East Central Africa}, + title = {Peoples of the Lake Nyasa Region}, + volume = {1}, + year = {1950} +} + +@book{mcculloch1951, + author = {McCulloch, M.}, + address = {London}, + key = {McCulloch (1951)}, + lgcode = {Chokwe [chok1245], Luchazi [luch1239], Luimbe [luim1238], Luvale [luva1239], Ndembu [lund1266]}, + title = {The Southern Lunda and Related Peoples}, + year = {1951} +} + +@article{white1955, + author = {White, C. M. N.}, + glottolog_ref = {eballiso2009:54877}, + journal = {African Studies}, + key = {White (1955)}, + lgcode = {Luvale [luva1239]}, + pages = {97-112}, + title = {Factors in the Social Organization of the Luvale}, + volume = {14}, + year = {1955} +} + +@book{baumann1935, + author = {Baumann, H.}, + address = {Berlin}, + key = {Baumann (1935)}, + lgcode = {Chokwe [chok1245], Luchazi [luch1239], Luimbe [luim1238], Ndembu [lund1266]}, + title = {Lunda}, + year = {1935} +} + +@book{jaspertandjaspert1930, + author = {Jaspert, F. and Jaspert., W.}, + address = {Frankfurt am Main}, + glottolog_ref = {hh:hew:JaspertJaspert:Mittel-Angolas}, + key = {Jaspert and Jaspert (1930)}, + lgcode = {Chokwe [chok1245]}, + pages = {155}, + publisher = {Baer}, + series = {Veröffentlichungen aus dem Städtischen Völkermuseum Frankfurt am Main}, + title = {Die Völkerstämme Mittel-Angolas}, + volume = {5}, + year = {1930} +} + +@book{tordayandjoyce1922, + author = {Torday, E. and Joyce, T. A.}, + address = {Bruxelles}, + glottolog_ref = {hh:he:TordayJoyce:Kasai-Kwango}, + key = {Torday and Joyce (1922)}, + lgcode = {Chokwe [chok1245], Kela [yela1238], Kutsu [kusu1252], Mbala [mbal1257], Pende [phen1239], Songye [song1303], Tetela [tete1250], Topoke [poke1238], Yanzi [yans1239]}, + pages = {428}, + publisher = {Tervuren}, + series = {Annales du Musée du Congo Belge, ethnographie et anthropologie, série 4: documents ethnographiques concernant les populations du Congo Belge}, + title = {Notes ethnographiques sur des populations habitant les bassins du Kasai et du Kwango oriental}, + volume = {2:2 (= 3)}, + year = {1922} +} + +@book{velsen1964, + author = {Velsen, J. van.}, + address = {Manchester}, + key = {Velsen (1964)}, + lgcode = {Tonga [tong1321]}, + title = {The Politics of Kinship}, + year = {1964} +} + +@article{brown1944, + author = {Brown, H. D.}, + journal = {Africa}, + key = {Brown (1944)}, + lgcode = {Bakongo [sans1272], Ekonda [ekon1238]}, + pages = {431-447}, + title = {The Nkumu of the Tumba}, + volume = {14}, + year = {1944} +} + +@article{bruyns1951, + author = {Bruyns, L.}, + journal = {Mem. Inst. Roy. Colon. Belge, Sect. Sci. Mor. Polit.}, + key = {Bruyns (1951)}, + lgcode = {Bakongo [sans1272]}, + pages = {iii, 1-343}, + title = {De sociaal-economische ontwikkeling van made Bakongo}, + volume = {22}, + year = {1951} +} + +@book{czekanowski1924, + author = {Czekanowski, Jan}, + address = {Leipzig}, + glottolog_ref_id = {158170}, + key = {Czekanowski (1924)}, + lgcode = {Abarambo [bara1361], Baboa [bwaa1238], Bakongo [sans1272], Bira [bila1255], Budu [budu1250], Konjo [konz1239], Lendu [lend1245], Lese [lese1243], Logo [logo1259], Madi [madi1260], Mamvu [mamv1243], Mangbetu [nucl1420], Ndaka Babali [bali1274], Plains Bira [bera1259]}, + number = {2}, + publisher = {Klinkhardt und Bierman}, + series = {WissenschAftliche Ergebnisse der Deutschen Zentral-Afrika Expedition, 1907-1908, unter Führung Adolf Friedrichs Herzog zu Mecklenburg}, + title = {Forschungen im Nil-Kongo Zwischengebiet}, + url = {https://archive.org/details/forschungenimnil02czek}, + volume = {6}, + year = {1924} +} + +@book{ihle1929, + author = {Ihle, A.}, + address = {Leipzig}, + glottolog_ref = {eballiso2009:18273}, + key = {Ihle (1929)}, + lgcode = {Bakongo [sans1272]}, + publisher = {Verlag der Werkgemeinschaft}, + series = {Studien zur Völkerkunde}, + title = {Das alte Königreich Kongo}, + volume = {1}, + year = {1929} +} + +@article{kapstein1922, + author = {Kapstein, Gregorious}, + address = {Brussels}, + journal = {Congo}, + key = {Kapstein (1922)}, + lgcode = {Bakongo [sans1272]}, + pages = {531-549}, + publisher = {Goemaere, Imprimeur du Roi}, + title = {Familie leven en seden bij de inboorlingen van den Evenaar}, + volume = {3, Part 1}, + year = {1922} +} + +@article{mertens1942, + author = {Mertens, J.}, + journal = {Mem. Inst. Roy. Colon. Belge}, + key = {Mertens (1942)}, + lgcode = {Bakongo [sans1272]}, + pages = {i, 1-455}, + title = {Les chefs couronnes chez les Ba Kongo orientaux}, + volume = {10}, + year = {1942} +} + +@article{vanwing1921, + author = {Van Wing, J.}, + journal = {Biblioth. Congo}, + key = {Van Wing (1921)}, + lgcode = {Bakongo [sans1272]}, + pages = {1-318}, + title = {Etudes Bakongo}, + volume = {3}, + year = {1921} +} + +@book{weeks1914, + author = {Weeks, J. H.}, + address = {London}, + key = {Weeks (1914)}, + lgcode = {Bakongo [sans1272]}, + title = {Among the Primitive Bakongo}, + year = {1914} +} + +@article{tordayandjoyce1905, + author = {Torday, E. and Joyce, T. A.}, + glottolog_ref = {eballiso2009:49359}, + journal = {ourn. Roy. Anth. Inst.}, + key = {Torday and Joyce (1905)}, + lgcode = {Mbala [mbal1257]}, + pages = {398-426}, + title = {Notes on the Ethnography of the Ba-Mbala}, + volume = {35}, + year = {1905} +} + +@article{tordayandjoyce1907, + author = {Torday, E. and Joyce, T. A.}, + glottolog_ref = {eballiso2009:49361}, + journal = {Man}, + key = {Torday and Joyce (1907)}, + lgcode = {Mbala [mbal1257]}, + pages = {81-84}, + title = {Notes on the Southern Ba-Mbala}, + volume = {7}, + year = {1907} +} + +@article{balandier1952, + author = {Balandier, G.}, + journal = {Mem. Inst. Et. CentrAfr.}, + key = {Balandier (1952)}, + lgcode = {Mitsogho [tsog1243]}, + pages = {1-86}, + title = {Les villages gabonais}, + volume = {5}, + year = {1952} +} + +@article{maclatchy1945, + author = {Maclatchy, A.}, + journal = {Inst. Et. CentrAfr.}, + key = {Maclatchy (1945)}, + lgcode = {Mitsogho [tsog1243]}, + pages = {53-86}, + title = {L'organisation sociale des populations de la region de Mimongo Bull}, + volume = {1}, + year = {1945} +} + +@article{holemans1959, + author = {Holemans, K.}, + journal = {Annales de la Soci‚t‚ Belge de M‚decine Tropicale}, + key = {Holemans (1959)}, + lgcode = {Suku [suku1259]}, + pages = {361-374}, + title = {Etudes sur l'alimentation en milieu coutumier du Kwango}, + volume = {39}, + year = {1959} +} + +@article{kopytoff1961, + author = {Kopytoff, I.}, + glottolog_ref = {eballiso2009:21256}, + journal = {Journal of Conflict Resolution}, + key = {Kopytoff (1961)}, + lgcode = {Suku [suku1259]}, + pages = {61-69}, + title = {Extension of Conflict as a Method of Conflict Resolution Among the Suku of the Congo}, + volume = {5}, + year = {1961} +} + +@incollection{kopytoff1964, + author = {Kopytoff, I.}, + editor = {Gray, R. F. and Gulliver, P. H.}, + address = {Boston}, + booktitle = {The Family Estate in Africa}, + glottolog_ref = {eballiso2009:21257}, + key = {Kopytoff (1964)}, + lgcode = {Suku [suku1259]}, + pages = {83-116}, + publisher = {London: Routledge & Kegan Paul}, + title = {Family and Lineage Among the Suku of the Congo}, + year = {1964} +} + +@incollection{kopytoff1965, + author = {Kopytoff, I.}, + editor = {Gibbs and Jr. and L., James}, + address = {New York}, + booktitle = {Peoples of Africa}, + glottolog_ref = {eballiso2009:21254}, + key = {Kopytoff (1965)}, + lgcode = {Suku [suku1259]}, + pages = {441-478}, + publisher = {Holt, Rinehart & Winston}, + title = {The Suku of southwestern Congo}, + year = {1965} +} + +@incollection{kopytoff1971, + author = {Kopytoff, I.}, + editor = {Hsu, F. L. K.}, + address = {Chicago}, + booktitle = {Kinship and Culture}, + key = {Kopytoff (1971)}, + lgcode = {Suku [suku1259]}, + pages = {69-86}, + title = {The Suku of the Congo: an ethnographic test of Hsu's hypothesis}, + year = {1971} +} + +@article{kopytoff1977, + author = {Kopytoff, I.}, + journal = {American Ethnologist}, + key = {Kopytoff (1977)}, + lgcode = {Suku [suku1259]}, + pages = {539-558}, + title = {Matrilineality, residence, and residential zone}, + volume = {4}, + year = {1977} +} + +@article{tordayandjoyce1906, + author = {Torday, E. and Joyce, T. A.}, + glottolog_ref = {eballiso2009:49358}, + journal = {Journal of the Royal Anthropological Institute}, + key = {Torday and Joyce (1906)}, + lgcode = {Suku [suku1259], Yaka [yaka1269]}, + pages = {39-58}, + title = {Notes on the Ethnography of the Bayaka}, + volume = {36}, + year = {1906} +} + +@article{vandeginste1947, + author = {Van de Ginste, F.}, + journal = {Bulletin des Jurisdictions Indigênes et du Droit Coutumier Congolais}, + key = {Van de Ginste (1947)}, + lgcode = {Suku [suku1259]}, + pages = {1-2}, + title = {Le mariage chez les Basuku}, + volume = {5}, + year = {1947} +} + +@article{even1931, + author = {Even, A.}, + glottolog_ref = {hh:e:Even:Badondos}, + journal = {Bulletin de la Société des Recherches Congolaises}, + key = {Even (1931)}, + lgcode = {Sundi [koon1244]}, + pages = {77-94}, + title = {Quelques coutumes des tribus Badondos et Bassoundis}, + volume = {7}, + year = {1931} +} + +@article{hutereau1910b, + author = {Hutereau, A.}, + glottolog_ref = {hh:e:Hutereau:Manyanga}, + journal = {Bull Soc. Roy. Belge Geog.}, + key = {Hutereau (1910b)}, + lgcode = {Sundi [koon1244]}, + pages = {15-39}, + title = {Les Manyanga}, + volume = {24}, + year = {1910} +} + +@article{laman1953, + author = {Laman, K.}, + glottolog_ref = {eballiso2009:159}, + journal = {stud. Ethnog. Upsaliensia}, + key = {Laman (1953)}, + lgcode = {Sundi [koon1244]}, + pages = {1-155}, + publisher = {London & Uppsala}, + series = {Studia ethnographica upsaliensia}, + title = {The Kongo}, + volume = {4}, + year = {1953} +} + +@book{soret1959, + author = {Soret, M.}, + address = {Paris}, + glottolog_ref = {guldemann:4191}, + key = {Soret (1959)}, + lgcode = {Sundi [koon1244]}, + publisher = {Paris: Presses Universitaire de France}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + title = {Les Kongo nord-occidentaux}, + volume = {7}, + year = {1959} +} + +@article{badier1929, + author = {Badier}, + journal = {Bulletin de la Société des Recherches Congolaises}, + key = {Badier (1929)}, + lgcode = {Teke [teke1278]}, + pages = {37-43}, + title = {Monographie de la tribu des Batekes}, + volume = {10}, + year = {1929} +} + +@article{descazes1885, + author = {Descazes, E.}, + journal = {Rev. Ethnog.}, + key = {Descazes (1885)}, + lgcode = {Teke [teke1278]}, + pages = {160-168}, + title = {Sur les Batekes}, + volume = {4}, + year = {1885} +} + +@article{guiral1886, + author = {Guiral, L.}, + journal = {Rev. Ethnog.}, + key = {Guiral (1886)}, + lgcode = {Teke [teke1278]}, + pages = {134-166}, + title = {Les Batekes}, + volume = {5}, + year = {1886} +} + +@article{trezenem1940, + author = {Trezenem, E.}, + journal = {Journ. Soc. Africanistes}, + key = {Trezenem (1940)}, + lgcode = {Teke [teke1278]}, + pages = {1-63}, + title = {Les Bateke Balali}, + volume = {10}, + year = {1940} +} + +@article{sousberghe1955, + author = {Sousberghe, L. de.}, + glottolog_ref = {eballiso2009:47531}, + journal = {Mem. Acad. Roy. Sci. Colon., Cl. Sci. Mor. Pol., Ethnog., n. s.,}, + key = {Sousberghe (1955)}, + lgcode = {Pende [phen1239]}, + pages = {1-193}, + publisher = {Bruxelles}, + series = {Mémoires de l'ARSC (Académie Royale des Sciences Coloniales), section des sciences morales et politiques, nouvelle série}, + title = {Structures de parente et d'alliance d'apres les formules Pende}, + volume = {4}, + year = {1955} +} + +@book{milheiros1956, + author = {Milheiros, M.}, + address = {Luanda}, + glottolog_ref = {eballiso2009:34082}, + key = {Milheiros (1956)}, + lgcode = {Yaka [yaka1269]}, + publisher = {Luanda}, + title = {Anatomia social dos Maiacas}, + year = {1956} +} + +@article{plancquaert1932, + author = {Plancquaert, M.}, + journal = {Mem. Inst. Roy. Colon. Belge}, + key = {Plancquaert (1932)}, + lgcode = {Yaka [yaka1269]}, + number = {i}, + pages = {1-181}, + title = {Les Jaga et les Bayaka du Kwango}, + volume = {3}, + year = {1932} +} + +@article{decker1942, + author = {Decker, J. M. de.}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + key = {Decker (1942)}, + lgcode = {Bunda [mpuo1241]}, + pages = {125-146}, + title = {Contribution a Petude du mariage chez les Bambunda}, + volume = {10}, + year = {1942} +} + +@article{torday1910, + author = {Torday, E.}, + journal = {Man}, + key = {Torday (1910)}, + lgcode = {Bunda [mpuo1241]}, + pages = {49-55}, + title = {The Northern Babunda}, + volume = {19}, + year = {1910} +} + +@article{weekx1937, + author = {Weekx, G.}, + journal = {Congo}, + key = {Weekx (1937)}, + lgcode = {Bunda [mpuo1241]}, + pages = {i, 353-373; ii, 13-35}, + title = {La peuplade des Ambundu}, + volume = {18}, + year = {1937} +} + +@article{mertens1935, + author = {Mertens, J.}, + address = {Bruxelles}, + glottolog_ref = {hh:gde:Mertens:Dzing}, + journal = {Mem. Inst. Roy. Colon. Belge}, + key = {Mertens (1935)}, + lgcode = {Dzing [ding1239]}, + pages = {1-381}, + publisher = {Bruxelles: Campenhout}, + series = {Mémoires / Institut Royal Colonial Belge, Section des Sciences Morales et politiques: Collection in-8e}, + title = {Les Ba Dzing de la Kamtsha}, + volume = {4}, + year = {1935} +} + +@article{douglas1952, + author = {Douglas, .}, + journal = {Africa}, + key = {Douglas (1952)}, + lgcode = {Lele [lele1265]}, + pages = {59-65}, + title = {Alternate Generations Among the Lele of the Kasai}, + volume = {22}, + year = {1952} +} + +@incollection{douglas1962, + author = {Douglas, M.}, + editor = {Bohannan, P. and Dalton, G.}, + address = {Evanston}, + booktitle = {Markets in Africa}, + key = {Douglas (1962)}, + lgcode = {Lele [lele1265]}, + pages = {211-233}, + title = {Lele Economy Compared with the Bushong}, + year = {1962} +} + +@book{douglas1963, + author = {Douglas, M.}, + address = {London}, + glottolog_ref = {hh:e:Douglas:Lele}, + key = {Douglas (1963)}, + lgcode = {Lele [lele1265]}, + pages = {286}, + publisher = {London: Oxford University Press}, + title = {The Lele of the Kasai}, + year = {1963} +} + +@article{tew1951, + author = {Tew, M.}, + journal = {Africa}, + key = {Tew (1951)}, + lgcode = {Lele [lele1265]}, + pages = {1-12}, + title = {A Form of Polyandry Among the Lele of the Kasai}, + volume = {21}, + year = {1951} +} + +@book{vansina1954b, + author = {Vansina, J.}, + address = {London}, + glottolog_ref = {eballiso2009:6281}, + key = {Vansina (1954b)}, + lgcode = {Lele [lele1265]}, + publisher = {London: Int. African Inst.}, + series = {Ethnographic Survey of Africa : Central Africa, Belgian Congo}, + title = {Les tribus Ba-Kuba et les peuplades apparentees}, + volume = {1}, + year = {1954} +} + +@article{baeyens1913, + author = {Baeyens, M.}, + glottolog_ref = {eballiso2009:51329}, + journal = {REv. Congol.}, + key = {Baeyens (1913)}, + lgcode = {Sakata [saka1287]}, + pages = {129-143, 193-206, 257-270, 321-336}, + title = {Les Lesa}, + volume = {4}, + year = {1913} +} + +@article{denis1935, + author = {Denis, P. J.}, + glottolog_ref = {eballiso2009:5919}, + journal = {Congo}, + key = {Denis (1935)}, + lgcode = {Sakata [saka1287]}, + pages = {481-502}, + title = {L'organisation d'un peuple primitif}, + volume = {16}, + year = {1935} +} + +@book{maes1924, + author = {Maes, J.}, + address = {Tervuren}, + glottolog_ref = {eballiso2009:11984}, + key = {Maes (1924)}, + lgcode = {Sakata [saka1287]}, + publisher = {Musée du Congo Belge}, + title = {Notes sur les populations des bassins du Kasai, de la Lukenie et du Lac Léopold II}, + year = {1924} +} + +@article{viaeneandbernard190910, + author = {Viaene, E. and Bernard, F.}, + journal = {Bull. Soc. Roy. Belg. Geog.}, + key = {Viaene and Bernard (1909-10)}, + lgcode = {Sakata [saka1287]}, + pages = {464-510; 198-229}, + title = {Chez les Lessa}, + volume = {23; 24}, + year = {1909-10} +} + +@article{beaucorps1921, + author = {Beaucorps, R. de.}, + journal = {Mem. Inst. Roy. Colon. Belge}, + key = {Beaucorps (1921)}, + lgcode = {Songo [song1299]}, + pages = {iii, 1-176}, + title = {Les Basongo de la Luniunga et de la Gobari}, + volume = {10}, + year = {1921} +} + +@article{beaucorps1951, + author = {Beaucorps, R. de.}, + journal = {Mem. Inst. Roy. Colon. Belge, Sect. Sci. Mor. Polit.}, + key = {Beaucorps (1951)}, + lgcode = {Songo [song1299]}, + pages = {iv, 1-68}, + title = {L'evolution economique chez les Basongo de la Gobari}, + volume = {20}, + year = {1951} +} + +@book{beaucorps1933, + author = {Beaucorps, R. de.}, + address = {Louvain}, + glottolog_ref = {eballiso2009:52784}, + key = {Beaucorps (1933)}, + lgcode = {Yanzi [yans1239]}, + publisher = {Louvain: Ed. de l'Aucarn}, + series = {Collection africana}, + title = {Les bayansi du bas-Kwilu}, + volume = {1}, + year = {1933} +} + +@article{brau1942, + author = {Brau, C.}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + key = {Brau (1942)}, + lgcode = {Luwa [sond1250]}, + pages = {155-267}, + title = {Le droit coutumier Lunda}, + volume = {10}, + year = {1942} +} + +@article{delhaise1908, + author = {Delhaise, C.}, + glottolog_ref = {hh:e:Delhaise:Wabemba}, + journal = {Bulletin de la Societe Royale Belge de Geographie}, + key = {Delhaise (1908)}, + lgcode = {Bemba [town1238]}, + pages = {173-227, 261-283}, + title = {Chez les Wabemba}, + volume = {32}, + year = {1908} +} + +@book{gouldsburyandsheane1911, + author = {Gouldsbury, C. and Sheane., A.}, + address = {London}, + key = {Gouldsbury and Sheane (1911)}, + lgcode = {Bemba [town1238]}, + title = {The Great Plateau of Northern Rhodesia}, + year = {1911} +} + +@book{richards1939, + author = {Richards, A. I.}, + address = {Oxford}, + key = {Richards (1939)}, + lgcode = {Bemba [town1238]}, + title = {Land, Labour and Diet in Northern Rhodesia}, + year = {1939} +} + +@book{richards1940a, + author = {Richards, A. I.}, + key = {Richards (1940a)}, + lgcode = {Bemba [town1238]}, + series = {Rhodes-Livingstone Papers}, + title = {Bemba Marriage and Present Economic Conditions}, + volume = {4}, + year = {1940} +} + +@incollection{richards1940b, + author = {Richards, A. I.}, + editor = {Fortes, M. and Evans-Pritchard, E. E.}, + address = {Oxford}, + booktitle = {African Political Systems}, + key = {Richards (1940b)}, + lgcode = {Bemba [town1238]}, + pages = {83-120}, + title = {The Political System of the Bemba Tribe}, + year = {1940} +} + +@book{richards1948, + author = {Richards, A. I.}, + address = {Glencoe}, + key = {Richards (1948)}, + lgcode = {Bemba [town1238]}, + title = {Hunger and Work in a Savage Tribe}, + year = {1948} +} + +@incollection{richards1951, + author = {Richards, A. I.}, + editor = {Colson, E. and Gluckman, M.}, + address = {London}, + booktitle = {Seven Tribes of British Central Africa}, + glottolog_ref = {eballiso2009:43980}, + key = {Richards (1951)}, + lgcode = {Bemba [town1238]}, + pages = {164-191}, + publisher = {London: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + title = {The Bemba of North-eastern Rhodesia}, + year = {1951} +} + +@book{richards1956, + author = {Richards, A. I.}, + address = {London}, + glottolog_ref = {eballiso2009:43979}, + key = {Richards (1956)}, + lgcode = {Bemba [town1238]}, + publisher = {London: Faber & Faber}, + title = {Chisungu: A Girl's Initiation Ceremony Among the Bemba}, + year = {1956} +} + +@article{richards1968, + author = {Richards, A. I.}, + journal = {Proceedings of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Richards (1968)}, + lgcode = {Bemba [town1238]}, + pages = {23-25}, + title = {Keeping the King Divine}, + volume = {1968}, + year = {1968} +} + +@book{richards1971, + author = {Richards, A. I.}, + editor = {Richards, A. I. and Kuper, A.}, + address = {Cambridge}, + key = {Richards (1971)}, + lgcode = {Bemba [town1238]}, + title = {The Consilar System of the Bemba of Northern Zambia. Councils in Action}, + year = {1971} +} + +@article{richardsandtardits1974, + author = {Richards, A. I. and Tardits, C.}, + journal = {L'Homme}, + key = {Richards and Tardits (1974)}, + lgcode = {Bemba [town1238]}, + pages = {111-118}, + title = {A propos du marriage Bemba}, + volume = {14}, + year = {1974} +} + +@article{tardits1974, + author = {Tardits, C.}, + glottolog_ref = {eballiso2009:27595}, + journal = {L'Homme}, + key = {Tardits (1974)}, + lgcode = {Bemba [town1238]}, + pages = {5-30}, + title = {Prix de la femme et mariage entre cousins croisés: le cas des bemba d'Afrique centrale}, + volume = {14}, + year = {1974} +} + +@article{allanetal1948, + author = {Allan, W. and Gluckman, M. and Peters, D. U. and Trapell, C. G.}, + journal = {Rhodes-Liv. Pap.}, + key = {Allan et al (1948)}, + lgcode = {Plateau Tonga [tong1318]}, + pages = {1-192}, + title = {Land Holding and Land Usage Among the Plateau Tonga of Mazabuka District}, + volume = {14}, + year = {1948} +} + +@book{colson1950, + author = {Colson, E.}, + address = {New York}, + key = {Colson (1950)}, + lgcode = {Plateau Tonga [tong1318]}, + title = {Marriage and the Family Among the Plateau Tonga of Northern Rhodesia}, + year = {1950} +} + +@incollection{colson1951, + author = {Colson, E.}, + editor = {Colson, Elizabeth and Gluckman, Max}, + address = {London}, + booktitle = {Seven Tribes of British Central Africa}, + glottolog_ref = {eballiso2009:40613}, + key = {Colson (1951)}, + lgcode = {Plateau Tonga [tong1318]}, + pages = {94-162}, + publisher = {London: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + title = {The Plateau Tonga of Northern Rhodesia}, + year = {1951} +} + +@book{colson1960, + author = {Colson, E.}, + address = {New York}, + glottolog_ref = {eballiso2009:27121}, + key = {Colson (1960)}, + lgcode = {Plateau Tonga [tong1318]}, + publisher = {Manchester Univ. Press}, + series = {Kariba studies serie}, + title = {The Social Organization of the Gwembe Tonga}, + volume = {riba studies series}, + year = {1960} +} + +@book{jaspan1953, + author = {Jaspan, M. A.}, + address = {London}, + key = {Jaspan (1953)}, + lgcode = {Plateau Tonga [tong1318]}, + title = {The Ila-Tonga Peoples of Northwestern Rhodesia}, + year = {1953} +} + +@book{colle1913, + author = {Colle, P.}, + address = {Bruxelles}, + key = {Colle (1913)}, + lgcode = {Buye [buyu1239]}, + series = {Coll. Monog. Ethnog.}, + title = {Les Baluba}, + volume = {10-11}, + year = {1913} +} + +@book{melland1923, + author = {Melland, F. H.}, + address = {London}, + key = {Melland (1923)}, + lgcode = {Kaonde [kaon1241]}, + title = {In Witchbound Africa}, + year = {1923} +} + +@article{watson1954a, + author = {Watson, W.}, + glottolog_ref = {eballiso2009:29921}, + journal = {Rhodes-Liv. Journ.}, + key = {Watson (1954a)}, + lgcode = {Kaonde [kaon1241]}, + pages = {1-30}, + title = {The Kaonde Village}, + volume = {15}, + year = {1954} +} + +@article{lambo1946, + author = {Lambo, L.}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + key = {Lambo (1946)}, + lgcode = {Lala [lala1264]}, + pages = {231-256, 273-300, 313-246}, + title = {Etude, sur les Balala}, + volume = {14}, + year = {1946} +} + +@article{munday1941, + author = {Munday, J. T.}, + journal = {Bantu Stud.}, + key = {Munday (1941)}, + lgcode = {Lala [lala1264]}, + pages = {435-454}, + title = {Some traditions of the Nyendwa Clan of Northern Rhodesia}, + volume = {14}, + year = {1941} +} + +@book{whiteley1951, + author = {Whiteley, W.}, + address = {London}, + key = {Whiteley (1951)}, + lgcode = {Lala [lala1264]}, + title = {Bemba and Related Peoples of Northern Rhodesia}, + year = {1951} +} + +@article{cunnison1950, + author = {Cunnison, I. G.}, + glottolog_ref = {eballiso2009:5639}, + journal = {Commun. Rhodes-Liv. Inst.}, + key = {Cunnison (1950)}, + lgcode = {Luapula [luun1238]}, + pages = {1-32}, + publisher = {Livingstone (Northern Rhodesia)}, + series = {Comm. from the Rhodes-Livingstone Inst.}, + title = {Kinship and Local Organization in the Luapula}, + volume = {5}, + year = {1950} +} + +@book{cunnison1959, + author = {Cunnison, I. G.}, + address = {Manchester}, + key = {Cunnison (1959)}, + lgcode = {Luapula [luun1238]}, + title = {The Luapula Peoples of Northern Rhodesia}, + year = {1959} +} + +@book{gamitto1854, + author = {Gamitto, A. C. P.}, + address = {Lisboa}, + key = {Gamitto (1854)}, + lgcode = {Luapula [luun1238]}, + title = {O Muata Cazembe}, + year = {1854} +} + +@book{slaski1951, + author = {Slaski, J.}, + address = {London}, + key = {Slaski (1951)}, + lgcode = {Luapula [luun1238]}, + title = {Peoples of the Lower Luapula Valley}, + year = {1951} +} + +@article{brohez1905, + author = {Brohez.}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Brohez (1905)}, + lgcode = {Shila [luba1250]}, + pages = {460-478}, + title = {Les Balubas}, + volume = {29}, + year = {1905} +} + +@article{marchal1935, + author = {Marchal, R.}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + key = {Marchal (1935)}, + lgcode = {Shila [luba1250]}, + pages = {98-112}, + title = {La famille chez les Bashila}, + volume = {3}, + year = {1935} +} + +@article{sanderson1923, + author = {Sanderson, M.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Sanderson (1923)}, + lgcode = {Ngonde [ngon1268], Tumbuka [tumb1250]}, + pages = {448-459}, + title = {The Relationship System of the Wangonde and Wahenga Tribes}, + volume = {53}, + year = {1923} +} + +@book{young1931, + author = {Young, T. C.}, + address = {Livingstonia}, + key = {Young (1931)}, + lgcode = {Tumbuka [tumb1250]}, + title = {Notes on the Customs and Folk-Lore of the Tumbuka-Kamanga Peoples}, + year = {1931} +} + +@article{bruwer1958, + author = {Bruwer, J. P. van S.}, + journal = {Africa}, + key = {Bruwer (1958)}, + lgcode = {Kunda [kund1255]}, + pages = {207-224}, + title = {Matrilineal Kinship Among the Kunda}, + volume = {28}, + year = {1958} +} + +@book{malekebu1952, + author = {Malekebu, B. E.}, + editor = {Atkins, G.}, + address = {London}, + key = {Malekebu (1952)}, + lgcode = {Nyanja [nucl1395]}, + title = {Unkhoswe Waanyanja}, + year = {1952} +} + +@article{stannus1910, + author = {Stannus, H. S.}, + glottolog_ref = {eballiso2009:373}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Stannus (1910)}, + lgcode = {Nyanja [nucl1395]}, + pages = {285-335}, + title = {Notes on Some Tribes in British Central Africa}, + volume = {40}, + year = {1910} +} + +@book{werner1906b, + author = {Werner, A.}, + address = {London}, + key = {Werner (1906b)}, + lgcode = {Nyanja [nucl1395]}, + title = {The Natives of British Central Africa}, + year = {1906} +} + +@book{johnson1922, + author = {Johnson, W. P.}, + address = {London}, + key = {Johnson (1922)}, + lgcode = {Nyasa [mwer1247]}, + title = {Nyasa: The Great Water}, + year = {1922} +} + +@book{tordayandjoyce1910, + author = {Torday, E. and Joyce, T. A.}, + address = {Bruxelles}, + glottolog_ref = {hh:hew:TordayAthol:Bushongo}, + key = {Torday and Joyce (1910)}, + lgcode = {Kuba [bush1247]}, + pages = {381}, + publisher = {Bruxelles: Ministère des colonies}, + series = {Annales du Musée du Congo Belge, ethnographie et anthropologie, série 4: documents ethnographiques concernant les populations du Congo Belge}, + title = {Notes ethnographiques sur les peuples communement appeles Bakuba}, + volume = {2:1}, + year = {1910} +} + +@book{vansina1954a, + author = {Vansina, J.}, + glottolog_ref = {eballiso2009:6281}, + key = {Vansina (1954a)}, + lgcode = {Kuba [bush1247]}, + note = {Also separately published in London}, + pages = {1-64}, + series = {Ann. Mus. Roy. Congo Belge, Monog. Ethnogr.}, + title = {Les Tribus Ba-Kuba et les peuplades apparentees}, + volume = {1}, + year = {1954} +} + +@misc{vansina1962, + author = {Vansina, J.}, + howpublished = {Personal communication}, + key = {Vansina (1962)}, + lgcode = {Kuba [bush1247]}, + year = {1962} +} + +@book{maugham1910, + author = {Maugham, R. C. F.}, + address = {London}, + key = {Maugham (1910)}, + lgcode = {Sena [nucl1396]}, + title = {Zambesia}, + year = {1910} +} + +@article{menteirolopez1906, + author = {Menteiro Lopez, M.}, + journal = {Journal of the African Society}, + key = {Menteiro Lopez (1906)}, + lgcode = {Sena [nucl1396]}, + pages = {350-366}, + title = {Usages and Customs of the Natives of Sena}, + volume = {6}, + year = {1906} +} + +@article{schebesta1926, + author = {Schebesta, P.}, + address = {Innsbruck}, + journal = {Biblioth. Afr.}, + key = {Schebesta (1926)}, + lgcode = {Sena [nucl1396]}, + pages = {201-208}, + title = {Zur Ethnographie der Asena am underen Sambesi}, + volume = {2}, + year = {1926} +} + +@article{behr1893, + author = {Behr, H. F. von.}, + glottolog_ref = {eballiso2009:41152}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + key = {Behr (1893)}, + lgcode = {Makonde [mako1251]}, + pages = {69-87}, + title = {Die Völker zwischen Rufiji und Ruvuma}, + volume = {6}, + year = {1893} +} + +@article{weule1908, + author = {Weule, K.}, + address = {Berlin}, + glottolog_ref = {eballiso2009:59725}, + journal = {Mitt. Deutsch. Schutzgeb., Erganzungshefte}, + key = {Weule (1908)}, + lgcode = {Makonde [mako1251], Makua [makh1264]}, + pages = {75-124}, + publisher = {Berlin: Ernst Siegfried Mittler und Sohn}, + series = {Ergänzungsheft der Mitteilungen aus den deutschen Schutzgebieten}, + title = {WissenschAftliche Ergebnisse meiner ethnographischen Forschungsreise in den Sudosten Deutsch-OstAfrikas}, + volume = {1}, + year = {1908} +} + +@book{watson1954b, + author = {Watson, W.}, + address = {London}, + key = {Watson (1954b)}, + lgcode = {Mambwe [mamb1296]}, + title = {Tribal Cohesion in a Money Economy}, + year = {1954} +} + +@book{willis1966, + author = {Willis, R. G.}, + address = {London}, + key = {Willis (1966)}, + lgcode = {Fipa [fipa1238], Iwa [nyam1275], Mambwe [mamb1296]}, + title = {The Fipa and Related Peoples}, + year = {1966} +} + +@book{doke1931, + author = {Doke, C. M.}, + address = {London}, + key = {Doke (1931)}, + lgcode = {Lamba [lamb1271]}, + title = {The Lambas of Northern Rhodesia}, + year = {1931} +} + +@article{mitchellandbarnes1950, + author = {Mitchell, J. C. and Barnes, J. A.}, + address = {Cape Town}, + journal = {Comm. Sch. Afr. Studies, n. s.}, + key = {Mitchell and Barnes (1950)}, + lgcode = {Lamba [lamb1271]}, + pages = {1-69}, + title = {The Lamba Village}, + volume = {24}, + year = {1950} +} + +@article{chook1967, + author = {Chook, P. P.}, + journal = {Southw. Journ. Anth.}, + key = {Chook (1967)}, + lgcode = {Ndembu [lund1266]}, + pages = {74-89}, + title = {Kinship and Culture: Some Problems in Ndembu Kinship}, + volume = {23}, + year = {1967} +} + +@book{turner1957, + author = {Turner, Victor W.}, + address = {Manchester}, + key = {Turner (1957)}, + lgcode = {Ndembu [lund1266]}, + title = {Schism and Continuity in an African Society}, + year = {1957} +} + +@incollection{turner1966, + author = {Turner, Victor W.}, + editor = {Banton, Michael}, + address = {London}, + booktitle = {Anthropological Approaches to the Study of Religion}, + key = {Turner (1966)}, + lgcode = {Ndembu [lund1266]}, + pages = {47-84}, + publisher = {Tavistock}, + title = {Colour classification in Ndembu ritual}, + year = {1966} +} + +@article{lawson1949, + author = {Lawson, Audrey.}, + glottolog_ref = {eballiso2009:336}, + journal = {African Studies}, + key = {Lawson (1949)}, + lgcode = {Yao [yaoo1241]}, + pages = {180-190}, + title = {An outline of the relationship system of the Nyanja and Yao tribes in south Nyasaland}, + volume = {8}, + year = {1949} +} + +@book{mitchell1949, + author = {Mitchell, James Clyde.}, + key = {Mitchell (1949)}, + lgcode = {Yao [yaoo1241]}, + number = {3}, + series = {African Studies}, + title = {Modern political organization among the Yao}, + volume = {8}, + year = {1949} +} + +@book{mitchell1956, + author = {Mitchell, J. C.}, + address = {Manchester}, + key = {Mitchell (1956)}, + lgcode = {Yao [yaoo1241]}, + title = {The Yao Village}, + year = {1956} +} + +@article{sanderson1920, + author = {Sanderson, M.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Sanderson (1920)}, + lgcode = {Yao [yaoo1241]}, + pages = {369-376}, + title = {Relationships Among the Wayao}, + volume = {50}, + year = {1920} +} + +@article{stannus1922, + author = {Stannus, H. S.}, + glottolog_ref = {eballiso2009:37417}, + journal = {Harvard African Studies}, + key = {Stannus (1922)}, + lgcode = {Yao [yaoo1241]}, + pages = {229-272}, + title = {The Wayao of Nyasaland}, + volume = {3}, + year = {1922} +} + +@article{decleene1937a, + author = {De Cleene, N.}, + journal = {Africa}, + key = {De Cleene (1937a)}, + lgcode = {Yombe [yomb1244]}, + pages = {1-16}, + title = {La famille dans l'organisation sociale du Mayombe}, + volume = {10}, + year = {1937} +} + +@article{decleene1937b, + author = {De Cleene, N.}, + journal = {Bull. Seances Inst. Roy. Colon. Belge}, + key = {De Cleene (1937b)}, + lgcode = {Yombe [yomb1244]}, + pages = {44-51}, + title = {La structure de la societe Yombe}, + volume = {8}, + year = {1937} +} + +@article{deleval1912, + author = {Deleval, H.}, + journal = {Rev. Congolaise}, + key = {Deleval (1912)}, + lgcode = {Yombe [yomb1244]}, + pages = {32-40, 103-115, 170-186, 253-264}, + title = {Les tribus Kavati du Mayombe}, + volume = {3}, + year = {1912} +} + +@book{vanoverbergh1907b, + author = {Van Overbergh, C.}, + address = {Bruxelles}, + key = {Van Overbergh (1907b)}, + lgcode = {Yombe [yomb1244]}, + pages = {1-470}, + series = {Coll. Monog. Ethnog.}, + title = {Les Mayombe}, + volume = {2}, + year = {1907} +} + +@article{vanreeth1935, + author = {Van Reeth, E. P.}, + journal = {Mem. Inst. Roy. Colon. Belge}, + key = {Van Reeth (1935)}, + lgcode = {Yombe [yomb1244]}, + pages = {3-35}, + title = {De rol van den moederlijken oom in de inlandsche familie}, + volume = {5}, + year = {1935} +} + +@incollection{barnes1951, + author = {Barnes, J. A.}, + editor = {Colson, Elizabeth and Gluckman, Max}, + address = {London}, + booktitle = {Seven Tribes of British Central Africa}, + glottolog_ref = {eballiso2009:33873}, + key = {Barnes (1951)}, + lgcode = {Ngoni [ngon1269]}, + pages = {194-252}, + publisher = {London: Oxford Univ. Press}, + series = {Rhodes-Livingstone papers}, + title = {The Fort Jameson Ngoni}, + volume = {20}, + year = {1951} +} + +@book{barnes1954, + author = {Barnes, James A.}, + address = {Cape Town}, + glottolog_ref = {eballiso2009:26396}, + key = {Barnes (1954)}, + lgcode = {Ngoni [ngon1269]}, + publisher = {Cape Town: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + title = {Politics in a changing society: a political history of the Fort Jameson Ngoni}, + year = {1954} +} + +@book{mead1960, + author = {Mead, Margaret}, + address = {New Haven}, + key = {Mead (1960)}, + lgcode = {Ngoni [ngon1269]}, + publisher = {Yale University Press}, + title = {Children of their fathers, growing up among the Ngoni of Nyasaland}, + year = {1960} +} + +@book{grottanelli1955, + author = {Grottanelli, V. L.}, + address = {Roma}, + glottolog_ref = {hh:w:Grottanelli:Bagiuni}, + key = {Grottanelli (1955)}, + lgcode = {Bajuni [baju1245]}, + publisher = {Roma: Cremonese}, + title = {Pescatori dell'Oceano Indiano}, + year = {1955} +} + +@article{eichhorn191124, + author = {Eichhorn, A.}, + journal = {Baessler-Archiv}, + key = {Eichhorn (1911-24)}, + lgcode = {Shambaa [sham1280]}, + pages = {155-222; 69-131; 56-98; 1-53}, + title = {Beiträge zur Kenntnis der Waschambaa}, + volume = {1; 3; 7; 8}, + year = {1911-24} +} + +@incollection{lang1903, + author = {Lang, F. H.}, + editor = {Steinmetz, S. R.}, + address = {Berlin}, + booktitle = {Rechtsverhaltnisse von eingeborenen Volker in Afrika und Ozeanien}, + key = {Lang (1903)}, + lgcode = {Shambaa [sham1280]}, + pages = {218-267}, + title = {Die Waschambala}, + year = {1903} +} + +@article{warburg1894, + author = {Warburg, O.}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + key = {Warburg (1894)}, + lgcode = {Shambaa [sham1280]}, + pages = {131-199}, + title = {Die Kulturpflanzen Usambaras}, + volume = {7}, + year = {1894} +} + +@book{winans1962, + author = {Winans, E. V.}, + address = {London}, + glottolog_ref = {eballiso2009:7427}, + key = {Winans (1962)}, + lgcode = {Shambaa [sham1280]}, + publisher = {Routledge & Kegan Paul}, + title = {Shambala: the constitution of a traditional state} +} + +@article{wohlrab1918, + author = {Wohlrab, I. von.}, + journal = {Arch. f. Anth.}, + key = {Wohlrab (1918)}, + lgcode = {Shambaa [sham1280]}, + pages = {160-181}, + title = {Das Recht der Schambala}, + volume = {44}, + year = {1918} +} + +@book{culwickandculwick1935, + author = {Culwick, A. T. and Culwick, G. M.}, + address = {London}, + glottolog_ref = {eballiso2009:59285}, + key = {Culwick and Culwick (1935)}, + lgcode = {Bena [bena1262]}, + publisher = {London: George Allen & Unwin}, + title = {Ubena of the Rivers}, + year = {1935} +} + +@article{levine1959, + author = {Le Vine, R. A.}, + journal = {American Anthropologist}, + key = {Le Vine (1959)}, + lgcode = {Gusii [gusi1247]}, + pages = {965-990}, + title = {Gusii Sex Offenses}, + volume = {61}, + year = {1959} +} + +@article{mayer1949, + author = {Mayer, P.}, + address = {London}, + glottolog_ref = {eballiso2009:39828}, + journal = {Int. Afr. Inst. Memorandum}, + key = {Mayer (1949)}, + lgcode = {Gusii [gusi1247]}, + pages = {1-35}, + publisher = {London: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + title = {The Lineage Principle in Gusii Society}, + volume = {24}, + year = {1949} +} + +@book{mayer1950, + author = {Mayer, P.}, + glottolog_ref = {eballiso2009:39827}, + key = {Mayer (1950)}, + lgcode = {Gusii [gusi1247]}, + publisher = {Cape Town: Oxford Univ. Press}, + series = {Rhodes-Livingstone papers}, + title = {Gusii bridewealth law and custom}, + volume = {18}, + year = {1950} +} + +@article{mayer1953, + author = {Mayer, P.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Mayer (1953)}, + lgcode = {Gusii [gusi1247]}, + pages = {9-36}, + title = {Gusii Initiation Ceremonies}, + volume = {83}, + year = {1953} +} + +@article{mayer1965, + author = {Mayer, I.}, + journal = {Africa}, + key = {Mayer (1965)}, + lgcode = {Gusii [gusi1247]}, + pages = {366-384}, + title = {From Kinship to Common Descent: Four-Generation Genealogies Among the Gusii}, + volume = {35}, + year = {1965} +} + +@incollection{edel1937, + author = {Edel, M. M.}, + editor = {Mead, M.}, + address = {New York}, + booktitle = {Cooperation and Competition Among Primitive Peoples}, + glottolog_ref = {eballiso2009:51249}, + key = {Edel (1937)}, + lgcode = {Kiga [chig1238]}, + pages = {127-152}, + title = {The Bachiga of East Africa}, + year = {1937} +} + +@book{edel1957, + author = {Edel, M. M.}, + address = {New York}, + glottolog_ref = {eballiso2009:9341}, + key = {Edel (1957)}, + lgcode = {Kiga [chig1238]}, + publisher = {New York: Oxford Univ. Press; International African Inst. (IAI)}, + title = {The Chiga of Western Uganda}, + year = {1957} +} + +@book{taylor1962, + author = {Taylor, B. K.}, + address = {London}, + key = {Taylor (1962)}, + lgcode = {Haya [haya1250], Kiga [chig1238], Konjo [konz1239], Nyankole [nyan1307], Nyoro [nyor1246], Toro [toor1238], Zinza [zinz1238]}, + title = {The Western Lacustrine Bantu}, + year = {1962} +} + +@book{beidelman1967, + author = {Beidelman, T. C.}, + address = {London}, + key = {Beidelman (1967)}, + lgcode = {Kaguru [kagu1239], Luguru [lugu1238], Ngulu [ngul1246], Zigula [zigu1242]}, + title = {The Matrilineal Peoples of Eastern Tanzania}, + year = {1967} +} + +@article{brain1969, + author = {Brain, J. L.}, + glottolog_ref = {eballiso2009:15472}, + journal = {Journal of Asian and African Studies}, + key = {Brain (1969)}, + lgcode = {Luguru [lugu1238]}, + number = {2}, + pages = {122-131}, + title = {Matrilineal descent and marital stability: a Tanzanian case}, + volume = {4}, + year = {1969} +} + +@article{christensen1963, + author = {Christensen, J. B.}, + glottolog_ref = {weball:4144}, + journal = {American Anthropologist}, + key = {Christensen (1963)}, + lgcode = {Luguru [lugu1238]}, + pages = {1314-1327}, + title = {Utani: joking, sexual license and social obligations among the Luguru}, + volume = {65}, + year = {1963} +} + +@misc{mcvicarnd, + author = {McVicar, J.}, + howpublished = {Manuscript}, + key = {McVicar (nd)}, + lgcode = {Luguru [lugu1238]}, + title = {Notes on the Waluguru} +} + +@article{mluanda1971, + author = {Mluanda, M.}, + journal = {Bulletin of the International Committee on Urgent Anthropological and Ethnological Research}, + key = {Mluanda (1971)}, + lgcode = {Luguru [lugu1238]}, + pages = {57-65}, + title = {Traditional practices among the Luguru in Eastern Tanzania}, + volume = {13}, + year = {1971} +} + +@article{scheerderandtastevin1950, + author = {Scheerder and Tastevin.}, + glottolog_ref = {eballiso2009:46565}, + journal = {Anthropos}, + key = {Scheerder and Tastevin (1950)}, + lgcode = {Luguru [lugu1238]}, + pages = {241-286}, + title = {Les Wa lu guru}, + volume = {45}, + year = {1950} +} + +@book{youngandfosbrooke1960, + author = {Young, R. and Fosbrooke., H.}, + address = {London}, + glottolog_ref = {eballiso2009:44881}, + key = {Young and Fosbrooke (1960)}, + lgcode = {Luguru [lugu1238]}, + publisher = {Routledge & Kegan Paul}, + title = {Land and politics among the Luguru of Tanganyika}, + year = {1960} +} + +@article{chisholm1910, + author = {Chisholm, J. A.}, + glottolog_ref = {eballiso2009:35038}, + journal = {Journ. Afr. Soc.}, + key = {Chisholm (1910)}, + lgcode = {Iwa [nyam1275]}, + pages = {360-387}, + title = {Notes on the Manners and Customs of the Winamwanga and Wiwa}, + volume = {9}, + year = {1910} +} + +@article{coxhead1914, + author = {Coxhead, J. C. C.}, + address = {London}, + glottolog_ref = {eballiso2009:31863}, + journal = {Roy. Anth. Inst. Occ. Pap.}, + key = {Coxhead (1914)}, + lgcode = {Iwa [nyam1275]}, + pages = {43-57}, + publisher = {London: Royal Anthropological Inst. of Great Britain and Ireland (RAI)}, + series = {Occasional papers}, + title = {The Native Tribes of Northeastern Rhodesia}, + volume = {5}, + year = {1914} +} + +@book{wilson1958, + author = {Wilson, M.}, + address = {Cape Town}, + glottolog_ref = {weball:21300}, + journal = {Comm. Sch. Afr. Stud.}, + key = {Wilson (1958)}, + lgcode = {Iwa [nyam1275]}, + pages = {1-75}, + publisher = {University of Cape Town}, + title = {The peoples of the Nyasa-Tanganyika corridor}, + volume = {29}, + year = {1958} +} + +@book{mackenzie1925, + author = {Mackenzie, D. R.}, + address = {London}, + key = {Mackenzie (1925)}, + lgcode = {Ngonde [ngon1268]}, + title = {The Spirit-ridden Konde}, + year = {1925} +} + +@book{kootzkretschmer192629, + author = {Kootz-Kretschmer, E.}, + address = {Berlin}, + key = {Kootz-Kretschmer (1926-29)}, + lgcode = {Safwa [safw1238]}, + title = {Die Safwa. 3V}, + year = {1926-29} +} + +@article{avon191516, + author = {Avon.}, + journal = {Anthropos}, + key = {Avon (1915-16)}, + lgcode = {Bende [bend1258]}, + pages = {98-113}, + title = {Vie sociale des Wabende am Tanganika}, + volume = {10-111}, + year = {1915-16} +} + +@article{majerus191516, + author = {Majerus}, + journal = {Anthropos}, + key = {Majerus (1915-16)}, + lgcode = {Bende [bend1258]}, + pages = {781-788}, + title = {Das Eberecht der Wabende}, + volume = {10-11}, + year = {1915-16} +} + +@article{fromm1912, + author = {Fromm, P.}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + key = {Fromm (1912)}, + lgcode = {Fipa [fipa1238]}, + pages = {79-101}, + title = {Ufipa--Land und Leute}, + volume = {25}, + year = {1912} +} + +@article{popplewell1937, + author = {Popplewell, G. D.}, + journal = {Tanganyika Notes Rec.}, + key = {Popplewell (1937)}, + lgcode = {Fipa [fipa1238]}, + note = {Ad19: Fipa. P: 86, 000 in 1957. Addenda and corrigenda.}, + pages = {99-105}, + title = {Notes on the Fipa}, + volume = {3}, + year = {1937} +} + +@book{beattie1960, + author = {Beattie, J. H. N.}, + address = {New York}, + key = {Beattie (1960)}, + lgcode = {Nyoro [nyor1246]}, + title = {Bunyoro}, + year = {1960} +} + +@book{beattie1965, + author = {Beattie, J. H. N.}, + address = {New York}, + glottolog_ref = {eballiso2009:14859}, + key = {Beattie (1965)}, + lgcode = {Nyoro [nyor1246]}, + publisher = {Holt, Rinehart & Winston}, + title = {Understanding an African kingdom: Bunyuro}, + year = {1965} +} + +@book{richards1960b, + editor = {Richards, A. I.}, + address = {London}, + key = {Richards (1960b)}, + lgcode = {Nyoro [nyor1246]}, + publisher = {Faber and Faber Ltd.}, + title = {East African Chiefs. A Study of Political Development in some Uganda and Tanganyika Tribes}, + year = {1960} +} + +@book{roscoe1923a, + author = {Roscoe, J.}, + address = {Cambridge}, + key = {Roscoe (1923a)}, + lgcode = {Nyoro [nyor1246]}, + title = {The Bakitara or Banyoro}, + year = {1923} +} + +@book{blohm193133, + author = {Blohm, W.}, + address = {Bamberg}, + key = {Blohm (1931-33)}, + lgcode = {Nyamwezi [nyam1276], Sumbwa [sumb1240]}, + title = {Die Nyamwezi. 3V}, + year = {1931-33} +} + +@book{bosch1930, + author = {Bosch, F.}, + address = {Münster}, + key = {Bosch (1930)}, + lgcode = {Nyamwezi [nyam1276]}, + title = {Les Banyamwezi}, + year = {1930} +} + +@article{spellig1927, + author = {Spellig, F.}, + glottolog_ref = {eballiso2009:23159}, + journal = {Zeitschrift für Ethnologie}, + key = {Spellig (1927)}, + lgcode = {Nyamwezi [nyam1276]}, + pages = {201-252}, + title = {Die Wanjamwezi}, + volume = {59}, + year = {1927} +} + +@article{maurice193538, + author = {Maurice, M.}, + journal = {Geographie}, + key = {Maurice (1935-38)}, + lgcode = {Pimbwe [pimb1238]}, + pages = {20-31, 228-237, 309-26; 171-189; 86-95, 147-165, 209-221; 224-236, 289-296; 18-33, 264-270; 83-102.}, + title = {Le pays des Bapimbwe}, + volume = {64; 66; 67; 68; 69; 70}, + year = {1935-38} +} + +@book{abrahams1967, + author = {Abrahams, R. G.}, + address = {London}, + key = {Abrahams (1967)}, + lgcode = {Sukuma [suku1261], Sumbwa [sumb1240]}, + title = {The Peoples of Greater Unyamwezi, Tanzania}, + year = {1967} +} + +@book{cory1953, + author = {Cory, H.}, + address = {London}, + glottolog_ref = {eballiso2009:6430}, + key = {Cory (1953)}, + lgcode = {Sukuma [suku1261]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + title = {Sukuma Law and Custom}, + year = {1953} +} + +@book{malcolm1953, + author = {Malcolm, D. W.}, + address = {London}, + key = {Malcolm (1953)}, + lgcode = {Sukuma [suku1261]}, + title = {Sukumaland}, + year = {1953} +} + +@article{heese1913, + author = {Heese}, + journal = {Archaeology & Anthropology}, + key = {Heese (1913)}, + lgcode = {Sangu [sang1330]}, + pages = {134-146}, + title = {Sitte und Brauch der Sango}, + volume = {40}, + year = {1913} +} + +@article{mumford1934, + author = {Mumford, W. B.}, + glottolog_ref = {hh:he:Mumford:Hehe-Bena-Sangu}, + journal = {American Anthropologist}, + key = {Mumford (1934)}, + lgcode = {Sangu [sang1330]}, + pages = {203-222}, + title = {The Hehe-Bena-Sangu Peoples of East Africa}, + volume = {36}, + year = {1934} +} + +@article{claus1911, + author = {Claus, H.}, + journal = {Baessler-Arch., Beihefte}, + key = {Claus (1911)}, + lgcode = {Gogo [gogo1263]}, + pages = {1-72}, + title = {Die Wagogo}, + volume = {2}, + year = {1911} +} + +@article{paulssen1922, + author = {Paulssen, F.}, + journal = {Baessler-Arch.}, + key = {Paulssen (1922)}, + lgcode = {Gogo [gogo1263]}, + pages = {161-175}, + title = {Rechtsanschauungen der Wagogo}, + volume = {6}, + year = {1922} +} + +@article{rigby1966, + author = {Rigby, P.}, + journal = {Africa}, + key = {Rigby (1966)}, + lgcode = {Gogo [gogo1263]}, + pages = {1-17}, + title = {Dual Symbolic Classification Among the Gogo}, + volume = {36}, + year = {1966} +} + +@article{schaegelen1938, + author = {Schaegelen, R. T.}, + journal = {Anthropos}, + key = {Schaegelen (1938)}, + lgcode = {Gogo [gogo1263]}, + pages = {195-217, 515-657}, + title = {Le tribu des Wagogo}, + volume = {33}, + year = {1938} +} + +@article{baumstark1900, + author = {Baumstark}, + glottolog_ref = {eballiso2009:3022}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + key = {Baumstark (1900)}, + lgcode = {Rangi [lang1320]}, + pages = {45-60}, + title = {Die Warangi}, + volume = {13}, + year = {1900} +} + +@article{gray1953, + author = {Gray, R. F.}, + journal = {Tanganyika Notes Rec.}, + key = {Gray (1953)}, + lgcode = {Rangi [lang1320]}, + pages = {45-52}, + title = {Notes on Irangi Houses}, + volume = {35}, + year = {1953} +} + +@article{kannenberg1900, + author = {Kannenberg.}, + address = {Berlin}, + glottolog_ref = {hh:hv:Kannenberg:Kondoa}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + key = {Kannenberg (1900)}, + lgcode = {Rangi [lang1320]}, + pages = {144-172}, + publisher = {Berlin: Ernst Siegfried Mittler und Sohn}, + title = {Reise durch die hamitischen Sprachgebiete um Kondo}, + volume = {13}, + year = {1900} +} + +@article{sick1916, + author = {Sick, E. von.}, + journal = {Baessler-Arch.}, + key = {Sick (1916)}, + lgcode = {Turu [nyat1246]}, + pages = {1-62}, + title = {Die Waniaturu}, + volume = {5}, + year = {1916} +} + +@article{picarda1886, + author = {Picarda.}, + journal = {Missions Catholiques}, + key = {Picarda (1886)}, + lgcode = {Kwere [kwer1261], Zigula [zigu1242]}, + pages = {184-346}, + title = {Autour du Mandera: Notes sur l'Ouzigoua, l'Oukwere et l'Oudoe}, + volume = {18}, + year = {1886} +} + +@book{reidelman1967, + author = {Reidelman, T. O.}, + address = {London}, + key = {Reidelman (1967)}, + lgcode = {Kwere [kwer1261]}, + title = {The Matrilineal Peoples of Eastern Tanzania}, + year = {1967} +} + +@book{baumann1891, + author = {Baumann, O.}, + address = {Berlin}, + key = {Baumann (1891)}, + lgcode = {Digo [digo1243], Pare [asut1235], Zigula [zigu1242]}, + title = {Usambara und seine Nachbargebiete}, + year = {1891} +} + +@book{ingrams1930, + author = {Ingrams, W. H.}, + address = {London}, + key = {Ingrams (1930)}, + lgcode = {Hadimu [pemb1239]}, + title = {Zanzibar}, + year = {1930} +} + +@book{prins1961, + author = {Prins, A. H. J.}, + address = {London}, + key = {Prins (1961)}, + lgcode = {Hadimu [pemb1239]}, + title = {The Swahili-speaking Peoples}, + year = {1961} +} + +@incollection{abbott1892, + author = {Abbott, W. R.}, + booktitle = {Reports of the U. S. National Museum, 1890-91}, + key = {Abbott (1892)}, + lgcode = {Chagga [moch1256]}, + pages = {381-428}, + title = {Ethnological Collections}, + year = {1892} +} + +@book{dundas1924, + author = {Dundas, C.}, + address = {London}, + key = {Dundas (1924)}, + lgcode = {Chagga [moch1256]}, + title = {Kilimanjaro and Its Peoples}, + year = {1924} +} + +@article{gutmann1913, + author = {Gutmann, B.}, + glottolog_ref = {eballiso2009:23721}, + journal = {Zeitschrift für Ethnologie}, + key = {Gutmann (1913)}, + lgcode = {Chagga [moch1256]}, + pages = {475-511}, + title = {Feldbausitten und Wachstumsbrauche der Wadeschagga}, + volume = {45}, + year = {1913} +} + +@book{gutmann1926, + author = {Gutmann, B.}, + address = {München}, + glottolog_ref = {eballiso2009:11574}, + key = {Gutmann (1926)}, + lgcode = {Chagga [moch1256]}, + pages = {1-1733}, + publisher = {München: Verlagshandlung Oskar Beck}, + series = {Arbeiten zur Entwicklungspsychologie}, + title = {Das Recht der Dschagga}, + volume = {7}, + year = {1926} +} + +@book{raum1940, + author = {Raum, O. F.}, + address = {Oxford}, + key = {Raum (1940)}, + lgcode = {Chagga [moch1256]}, + note = {Chagga of Mt. Kilimanjaro (3 to 4S, 37 to 38E) in 1906}, + title = {Chaga Childhood}, + year = {1940} +} + +@book{stahl1964, + author = {Stahl, Kathleen M.}, + address = {The Hague}, + key = {Stahl (1964)}, + lgcode = {Chagga [moch1256]}, + publisher = {Mouton}, + title = {History of the Chagga people of Kilimanjaro}, + year = {1964} +} + +@book{prins1952, + author = {Prins, A. H. J.}, + address = {London}, + glottolog_ref = {hh:he:Prins:NEBantu}, + key = {Prins (1952)}, + lgcode = {Digo [digo1243], Duruma [duru1249], Pokomo [poko1261], Teita [tait1250]}, + pages = {138}, + publisher = {London: International African Institute}, + series = {Ethnographic Survey of Africa: East Central Africa: Part III}, + title = {The Coastal Tribes of the North-Eastern Bantu}, + year = {1952} +} + +@article{stpaulhilaire1895, + author = {Paul-Hilaire., St.}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + key = {St. Paul-Hilaire (1895)}, + lgcode = {Digo [digo1243]}, + pages = {326-354}, + title = {Ueber die Rechtsgewohnheiten der im Bezirk Tanga ansassigen Farbigen}, + volume = {45}, + year = {1895} +} + +@article{werner1915, + author = {Werner, A.}, + glottolog_ref = {eballiso2009:2384}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Werner (1915)}, + lgcode = {Duruma [duru1249]}, + pages = {326-354}, + title = {The Bantu Coast Tribes of the East Africa Protectorate}, + volume = {45}, + year = {1915} +} + +@article{barrett1911b, + author = {Barrett, W. E. H.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Barrett (1911b)}, + lgcode = {Giriama [giry1241]}, + pages = {20-28}, + title = {Notes on the Customs and Beliefs of the Wa-Giriama}, + volume = {41}, + year = {1911} +} + +@article{johnstone1902, + author = {Johnstone, H. B.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Johnstone (1902)}, + lgcode = {Giriama [giry1241]}, + pages = {263-272}, + title = {Notes on the Customs of the Tribes occupying Mombasa Sub-District}, + volume = {32}, + year = {1902} +} + +@book{princs1952, + author = {Princs, A. H. J.}, + address = {London}, + key = {Princs (1952)}, + lgcode = {Giriama [giry1241]}, + title = {The Coastal Tribes of the North-Eastern Bantu}, + year = {1952} +} + +@article{fischer187879, + author = {Fischer, G. A.}, + glottolog_ref = {eballiso2009:24561}, + journal = {Mitt. Geog. Ges. Hamburg}, + key = {Fischer (1878-79)}, + lgcode = {Pokomo [poko1261]}, + pages = {1-57}, + title = {Das Wapokomo-Land und seine Bewohner}, + volume = {2}, + year = {1878-79} +} + +@incollection{kraft1903, + author = {Kraft, A.}, + editor = {Steinmetz, S. R.}, + address = {Berlin}, + booktitle = {Rechtsverhaltnisse von eingeborenen Volkern in Afrika und Ozeanien}, + key = {Kraft (1903)}, + lgcode = {Pokomo [poko1261]}, + pages = {283-293}, + title = {Die Wapokomo}, + year = {1903} +} + +@article{werner1913, + author = {Werner, A.}, + glottolog_ref = {eballiso2009:41813}, + journal = {Journ. Afr. Soc.}, + key = {Werner (1913)}, + lgcode = {Pokomo [poko1261]}, + pages = {359-384}, + title = {Some Notes on the Wapokomo of the Tana Valley}, + volume = {12}, + year = {1913} +} + +@article{dundas1915, + author = {Dundas, C.}, + glottolog_ref = {eballiso2009:2269}, + journal = {Journ. Roy Anth. Inst.}, + key = {Dundas (1915)}, + lgcode = {Kamba [kamb1297]}, + pages = {234-306}, + title = {The Organization and Laws of Some Bantu Tribes of East Africa}, + volume = {45}, + year = {1915} +} + +@article{hildebrandt1878, + author = {Hildebrandt, J. M.}, + journal = {Zeitschrift für Ethnologie}, + key = {Hildebrandt (1878)}, + lgcode = {Kamba [kamb1297]}, + pages = {347-406}, + title = {Ethnograpische Notizen uber Wakamba und ihre Nachbaren}, + volume = {10}, + year = {1878} +} + +@book{lindblom1916, + author = {Lindblom, G.}, + address = {Uppsala}, + key = {Lindblom (1916)}, + lgcode = {Kamba [kamb1297]}, + title = {The Akamba}, + year = {1916} +} + +@book{middleton1953, + author = {Middleton, J.}, + address = {London}, + key = {Middleton (1953)}, + lgcode = {Kamba [kamb1297], Kikuyu [kiku1240], Meru [meru1245]}, + title = {The Kikuyu and Kamba of Kenya}, + year = {1953} +} + +@book{penwill1951, + author = {Penwill, J. D.}, + address = {London}, + key = {Penwill (1951)}, + lgcode = {Kamba [kamb1297]}, + title = {Kamba Customary Law}, + year = {1951} +} + +@article{holding1942, + author = {Holding, E. M.}, + glottolog_ref = {eballiso2009:4509}, + journal = {Man}, + key = {Holding (1942)}, + lgcode = {Meru [meru1245]}, + pages = {58-65}, + title = {Some Preliminary Notes on Meru Age Grades}, + volume = {42}, + year = {1942} +} + +@book{lambert1956, + author = {Lambert, H. E.}, + address = {London}, + glottolog_ref = {eballiso2009:33304}, + key = {Lambert (1956)}, + lgcode = {Kikuyu [kiku1240], Meru [meru1245]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + title = {Kikuyu Social and Political Institutions}, + year = {1956} +} + +@article{storch1895, + author = {Storch}, + glottolog_ref = {eballiso2009:42493}, + journal = {Mitt. Deutsch. Schutzgeb.}, + key = {Storch (1895)}, + lgcode = {Pare [asut1235]}, + pages = {310-331}, + title = {Sitten, Gebräuche und Rechtspflege bei den Bewohnern Usambaras und Pares}, + volume = {8}, + year = {1895} +} + +@book{bostock1950, + author = {Bostock, P. G.}, + address = {London}, + key = {Bostock (1950)}, + lgcode = {Teita [tait1250]}, + title = {The Taita}, + year = {1950} +} + +@article{prins1950, + author = {Prins, A. H. J.}, + glottolog_ref = {eballiso2009:34335}, + journal = {Man}, + key = {Prins (1950)}, + lgcode = {Teita [tait1250]}, + pages = {145-147}, + title = {Notes on the Kinship Terminology of the Wa-Teita}, + volume = {50}, + year = {1950} +} + +@article{paterson1956, + author = {Paterson, R. L.}, + journal = {Tanganyika Notes Rec.}, + key = {Paterson (1956)}, + lgcode = {Kara [kara1481]}, + pages = {54-62}, + title = {Ukara Island}, + volume = {44}, + year = {1956} +} + +@article{paulssen1914, + author = {Paulssen, F.}, + journal = {Baessler-Arch.}, + key = {Paulssen (1914)}, + lgcode = {Kara [kara1481]}, + pages = {39-45}, + title = {Rechtsanschauungen der Eingeborenen auf Ukarra}, + volume = {4}, + year = {1914} +} + +@article{thorntonandrounce1936, + author = {Thornton, D. and Rounce, N. V.}, + journal = {Tanganyika Notes Rec.}, + key = {Thornton and Rounce (1936)}, + lgcode = {Kara [kara1481]}, + pages = {25-32}, + title = {Ukara Island and the Agricultural Practices of the Wakara}, + volume = {1}, + year = {1936} +} + +@book{gray1963, + author = {Gray, R. F.}, + address = {London}, + key = {Gray (1963)}, + lgcode = {Sonjo [temi1247]}, + title = {The Sonjo of Tanganyika}, + year = {1963} +} + +@book{cagnolo1933, + author = {Cagnolo, C.}, + address = {Nyeri}, + key = {Cagnolo (1933)}, + lgcode = {Kikuyu [kiku1240]}, + title = {The Akikuyu}, + year = {1933} +} + +@book{hailey1950, + author = {Hailey, W. M. H.}, + address = {London}, + glottolog_ref = {eballiso2009:4355}, + key = {Hailey (1950)}, + lgcode = {Kikuyu [kiku1240]}, + publisher = {London: H.M. Stationary Office; Colonial Office/Commonwealth Relations Office}, + title = {Native administration in the British African territories}, + volume = {6 parts}, + year = {1950} +} + +@book{kenyatta1939, + author = {Kenyatta, J.}, + address = {London}, + key = {Kenyatta (1939)}, + lgcode = {Kikuyu [kiku1240]}, + title = {Facing Mount Kenya. The traditional life of the Gikuyu}, + year = {1939} +} + +@article{lambert1950, + author = {Lambert, H. E.}, + journal = {Communications from the School of African Studies, n. s.}, + key = {Lambert (1950)}, + lgcode = {Kikuyu [kiku1240]}, + pages = {1-185}, + title = {The Systems of Land Tenure in the Kikuyu Land Unit}, + volume = {22}, + year = {1950} +} + +@book{leakey1952, + author = {Leakey, L. S. B.}, + address = {London}, + key = {Leakey (1952)}, + lgcode = {Kikuyu [kiku1240]}, + title = {Mau Mau and the Kikuyu}, + year = {1952} +} + +@book{leakey1977, + author = {Leakey, L. S. B.}, + address = {London & New York}, + glottolog_ref = {eballiso2009:30782}, + key = {Leakey (1977)}, + lgcode = {Kikuyu [kiku1240]}, + note = {3 vols.}, + publisher = {Academic Press}, + title = {The southern Kikuyu before 1903}, + year = {1977} +} + +@book{macphee1968, + author = {MacPhee, A. M.}, + address = {New York}, + key = {MacPhee (1968)}, + lgcode = {Kikuyu [kiku1240]}, + title = {Kenya}, + year = {1968} +} + +@book{ross1968, + author = {Ross, W. M.}, + address = {London}, + key = {Ross (1968)}, + lgcode = {Kikuyu [kiku1240]}, + title = {Kenya from Within: A Short Political History}, + year = {1968} +} + +@book{routledgeandroutledge1910, + author = {Routledge, W. S. and Routledge, K.}, + address = {London}, + glottolog_ref = {eballiso2009:15014}, + key = {Routledge and Routledge (1910)}, + lgcode = {Kikuyu [kiku1240]}, + publisher = {London: Edward Arnold}, + title = {With a Prehistoric People: The Akikuyu of British East Africa}, + year = {1910} +} + +@book{tignor1976, + author = {Tignor, R.}, + glottolog_ref = {eballiso2009:29861}, + key = {Tignor (1976)}, + lgcode = {Kikuyu [kiku1240]}, + publisher = {Princeton Univ. Press}, + title = {The colonial transformation of Kenya: the Kamba, Kikuyu and Maasai from 1900 to 1939}, + year = {1976} +} + +@incollection{sangree1965, + author = {Sangree, W. H.}, + editor = {Gibbs, J. L.}, + address = {New York}, + booktitle = {Peoples of Africa}, + glottolog_ref = {hh:e:Sangree:Tiriki}, + key = {Sangree (1965)}, + lgcode = {Tiriki [idak1243]}, + pages = {41-79}, + publisher = {New York: Holt, Rinehart & Winston}, + title = {The Bantu Tiriki of Western Kenya}, + year = {1965} +} + +@book{wagner1939, + author = {Wagner, G.}, + glottolog_ref = {eballiso2009:22343}, + key = {Wagner (1939)}, + lgcode = {Vugusu [buku1249]}, + pages = {1-52}, + publisher = {London: Oxford Univ. Press}, + series = {IIALC (International Inst. of African Languages and Cultures) memorandums}, + title = {The changing family among the Bantu Kavirondo}, + volume = {18; suppl. to Africa, v. 12}, + year = {1939} +} + +@incollection{wagner1940, + author = {Wagner, G.}, + editor = {Fortes, M. and Evans-Pritchard, E. E.}, + address = {London}, + booktitle = {African Political Systems}, + glottolog_ref = {eballiso2009:22342}, + key = {Wagner (1940)}, + lgcode = {Vugusu [buku1249]}, + pages = {197-236}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + title = {The Political Organization of the Bantu of Kavirondo}, + year = {1940} +} + +@book{wagner194950, + author = {Wagner, G.}, + address = {London}, + key = {Wagner (1949-50)}, + lgcode = {Vugusu [buku1249]}, + title = {The Bantu of North Kavirondo. 2V}, + year = {1949-50} +} + +@article{autenrieth1908, + author = {Autenrieth, H.}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + key = {Autenrieth (1908)}, + lgcode = {Haya [haya1250]}, + pages = {354-392}, + title = {Recht der Kissibaleute}, + volume = {21}, + year = {1908} +} + +@article{cesard193537, + author = {Cesard, E.}, + journal = {Anthropos}, + key = {Cesard (1935-37)}, + lgcode = {Haya [haya1250]}, + pages = {75-106, 451-462; 489-508, 821-849; 15-60}, + title = {Le Muhaya}, + volume = {20; 21; 22}, + year = {1935-37} +} + +@book{coryandhartnoll1945, + author = {Cory, H. and Hartnoll., M. M.}, + address = {London}, + key = {Cory and Hartnoll (1945)}, + lgcode = {Haya [haya1250]}, + title = {Customary Law of the Haya Tribe}, + year = {1945} +} + +@book{rehse1910, + author = {Rehse, H.}, + address = {Berlin}, + key = {Rehse (1910)}, + lgcode = {Haya [haya1250]}, + title = {Kiziba, Land und Leute}, + year = {1910} +} + +@book{weiss1926, + author = {Weiss, M.}, + address = {München}, + key = {Weiss (1926)}, + lgcode = {Haya [haya1250]}, + title = {Wahima (Watussi) und Wanjambo in Deutsch-OstAfrika. 2V}, + year = {1926} +} + +@article{hurel1911, + author = {Hurel, E.}, + glottolog_ref = {eballiso2009:14829}, + journal = {Anthropos}, + key = {Hurel (1911)}, + lgcode = {Kerewe [kere1283]}, + pages = {62-94, 276-301}, + title = {Religion et vie domestique des Bakerewe}, + volume = {6}, + year = {1911} +} + +@article{oberg1938, + author = {Oberg, K.}, + glottolog_ref = {eballiso2009:4072}, + journal = {Africa}, + key = {Oberg (1938)}, + lgcode = {Nyankole [nyan1307]}, + pages = {129-160}, + title = {Kinship Organization of the Banyankole}, + volume = {11}, + year = {1938} +} + +@incollection{oberg1940, + author = {Oberg, K.}, + editor = {Fortes, M. and Evans-Pritchard, E. E.}, + address = {Oxford}, + booktitle = {African Political Systems}, + glottolog_ref = {eballiso2009:4073}, + key = {Oberg (1940)}, + lgcode = {Nyankole [nyan1307]}, + pages = {121-161}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + title = {The Kingdom of Ankole in Uganda}, + year = {1940} +} + +@book{roscoe1923b, + author = {Roscoe, J.}, + address = {Cambridge}, + key = {Roscoe (1923b)}, + lgcode = {Nyankole [nyan1307]}, + title = {The Banyankole}, + year = {1923} +} + +@book{fallers1956, + author = {Fallers, L. A.}, + address = {Cambridge}, + key = {Fallers (1956)}, + lgcode = {Soga [soga1242]}, + title = {Bantu Bureaucracy}, + year = {1956} +} + +@book{fallers1960, + author = {Fallers, M. C.}, + address = {London}, + key = {Fallers (1960)}, + lgcode = {Ganda [gand1255], Soga [soga1242]}, + title = {The Eastern Lacustrine Bantu}, + year = {1960} +} + +@book{roscoe1915, + author = {Roscoe, John.}, + key = {Roscoe (1915)}, + lgcode = {Gisu [masa1299], Soga [soga1242]}, + publisher = {Cambridge University Press}, + title = {The northern Bantu}, + year = {1915} +} + +@incollection{desoignies1903, + author = {Desoignies.}, + editor = {Steinmetz, S. R.}, + address = {Berlin}, + booktitle = {Rechtsverhaltnisse von eingeborenen Volkern in Afrika und Ozeanien}, + glottolog_ref = {eballiso2009:35292}, + key = {Desoignies (1903)}, + lgcode = {Sumbwa [sumb1240]}, + pages = {268-282}, + publisher = {Berlin: Julius Springer-Verlag}, + title = {Die Msalala}, + year = {1903} +} + +@misc{graynd, + author = {Gray, R. F.}, + howpublished = {Manuscript}, + key = {Gray (nd)}, + lgcode = {Mbugwe [mbug1242]}, + title = {Outline of an Anthropological Field Study of the Wambugwe} +} + +@article{mcvicar1934, + author = {McVicar, T.}, + glottolog_ref = {eballiso2009:13044}, + journal = {Prim. Man}, + key = {McVicar (1934)}, + lgcode = {Ngulu [ngul1246]}, + pages = {17-22}, + title = {The Position of Women Among the Wanguru}, + volume = {7}, + year = {1934} +} + +@article{charsleyandmckenny1974, + author = {Charsley, S. R. and McKenny., M. G.}, + journal = {Africa}, + key = {Charsley and McKenny (1974)}, + lgcode = {Nyakyusa [nyak1261]}, + pages = {422-424}, + title = {The social structure of Nyakyusa}, + volume = {44}, + year = {1974} +} + +@article{lehmann1951, + author = {Lehmann, F. R.}, + glottolog_ref = {eballiso2009:18474}, + journal = {Sociologus n. F,}, + key = {Lehmann (1951)}, + lgcode = {Nyakyusa [nyak1261]}, + pages = {138-148}, + title = {Notes on the Daily Life of the Nyakyusa}, + volume = {1}, + year = {1951} +} + +@article{mckenny1973, + author = {McKenny, M. G.}, + journal = {Africa}, + key = {McKenny (1973)}, + lgcode = {Nyakyusa [nyak1261]}, + pages = {91-107}, + title = {The social structure of Nyakyusa: a re-evaluation}, + volume = {43}, + year = {1973} +} + +@article{wilson1936, + author = {Wilson, G.}, + glottolog_ref = {eballiso2009:5823}, + journal = {Bantu Studies}, + key = {Wilson (1936)}, + lgcode = {Nyakyusa [nyak1261]}, + pages = {253-291}, + title = {An introduction to Nyakyusa society}, + volume = {10}, + year = {1936} +} + +@article{wilson1938, + author = {Wilson, G.}, + glottolog_ref = {eballiso2009:7809}, + journal = {Rhodes-Livingstone papers}, + key = {Wilson (1938)}, + lgcode = {Nyakyusa [nyak1261]}, + pages = {1-52}, + publisher = {Livingstone (Northern Rhodesia): Rhodes-Livingstone Inst.}, + title = {Land rights of individuals among the Nyakyusa}, + volume = {1}, + year = {1938} +} + +@incollection{wilson1951a, + author = {Wilson, G.}, + editor = {Colson, Elizabeth and Gluckman, Max}, + address = {London}, + booktitle = {Seven Tribes of British Central Africa}, + glottolog_ref = {eballiso2009:5805}, + key = {Wilson (1951a)}, + lgcode = {Nyakyusa [nyak1261]}, + pages = {253-291}, + publisher = {Oxford Univ. Press; Rhodes-Livingstone Inst.}, + title = {The Nyakyusa of south-western Tanganyika}, + year = {1951} +} + +@book{wilson1951b, + author = {Wilson, M.}, + address = {London}, + key = {Wilson (1951b)}, + lgcode = {Nyakyusa [nyak1261]}, + title = {Good Company}, + year = {1951} +} + +@book{wilson1957, + author = {Wilson, M.}, + address = {London}, + glottolog_ref = {eballiso2009:47141}, + key = {Wilson (1957)}, + lgcode = {Nyakyusa [nyak1261]}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + title = {Rituals of kinship among the Nyakyusa}, + year = {1957} +} + +@book{wilson1959, + author = {Wilson, M.}, + address = {London}, + glottolog_ref = {eballiso2009:47139}, + key = {Wilson (1959)}, + lgcode = {Nyakyusa [nyak1261]}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + title = {Communal rituals of the Nyakyusa}, + year = {1959} +} + +@book{wilson1977, + author = {Wilson, M.}, + address = {London}, + glottolog_ref = {eballiso2009:9560}, + key = {Wilson (1977)}, + lgcode = {Nyakyusa [nyak1261]}, + publisher = {International African Inst. (IAI)}, + title = {For men and elders: change in the relations of generations and of the men and women among the Nyakyusa-Ngonde people, 1875-1971}, + year = {1977} +} + +@book{kagwa1934, + author = {Kagwa, A.}, + address = {New York}, + glottolog_ref = {eballiso2009:5239}, + key = {Kagwa (1934)}, + lgcode = {Ganda [gand1255]}, + publisher = {New York}, + series = {Columbia Univ. contributions to anthropology}, + title = {The Customs of the Baganda}, + volume = {22}, + year = {1934} +} + +@article{kottack1972, + author = {Kottack, C. P.}, + journal = {Comparative Studies in Society and History}, + key = {Kottack (1972)}, + lgcode = {Ganda [gand1255]}, + pages = {351-380}, + title = {Ecological variables in the origin and evolution of African States: the Buganda example}, + volume = {14}, + year = {1972} +} + +@article{lugira1970, + author = {Lugira, A. M.}, + journal = {Cahiers des Religiones Africains}, + key = {Lugira (1970)}, + lgcode = {Ganda [gand1255]}, + number = {8}, + pages = {191-202}, + title = {Political civilization}, + volume = {4}, + year = {1970} +} + +@book{mair1934, + author = {Mair, L. P.}, + address = {London}, + key = {Mair (1934)}, + lgcode = {Ganda [gand1255]}, + note = {2nd ed. 1965 New York; xi: "This book is the outcome of nine month's study on the spot of the effect of European contact upon the village life of the Baganda people."; xiv: "For these reasons the attempt to make a new reconstruction of the past of Baganda culture seemed to me necessary."; [Mair was chosen as primary source because of her critical evaluation of Roscoe's earlier account, s. xiif. Throughout the book, the reconstruction of the past is clearly separated from her own observation made in field research.]}, + title = {An African People in the Twentieth Century}, + year = {1934} +} + +@article{malysevand, + author = {Malyseva, D. B.}, + journal = {Voprosy Istorii}, + key = {Malyseva (nd)}, + lgcode = {Ganda [gand1255]}, + pages = {113-120}, + title = {Buganda}, + volume = {4} +} + +@inbook{murdock1934k, + author = {Murdock, G. P.}, + address = {New York}, + booktitle = {Our primitive contemporaries}, + key = {Murdock (1934k)}, + lgcode = {Ganda [gand1255]}, + pages = {508-550}, + publisher = {Macmillan}, + title = {The Ganda of Uganda}, + year = {1934} +} + +@article{perlman1969, + author = {Perlman, M. L.}, + journal = {Tropical Man}, + key = {Perlman (1969)}, + lgcode = {Ganda [gand1255]}, + pages = {60-106}, + title = {Law and the status of women in Uganda: A Systematic comparison between the Ganda and the Toro}, + volume = {2}, + year = {1969} +} + +@incollection{richards1960a, + author = {Richards, A. I.}, + editor = {Richards, A. I.}, + address = {London}, + booktitle = {East African Chiefs}, + key = {Richards (1960a)}, + lgcode = {Ganda [gand1255]}, + pages = {41-77}, + title = {The Ganda}, + year = {1960} +} + +@book{richards1966, + author = {Richards, A. I.}, + address = {Nairobi}, + key = {Richards (1966)}, + lgcode = {Ganda [gand1255]}, + title = {The Changing Structure of a Ganda Village: Kisozi 1892-1952}, + year = {1966} +} + +@book{roscoe1911, + author = {Roscoe, J.}, + address = {London}, + key = {Roscoe (1911)}, + lgcode = {Ganda [gand1255]}, + title = {The Baganda}, + year = {1911} +} + +@book{rusch1975, + author = {Rusch, W.}, + address = {Berlin}, + key = {Rusch (1975)}, + lgcode = {Ganda [gand1255]}, + title = {Classes and State in Buganda before the Colonial Period}, + year = {1975} +} + +@book{semakulakiwanuka1972, + author = {Semakula Kiwanuka, M. S. M.}, + address = {New York}, + key = {Semakula Kiwanuka (1972)}, + lgcode = {Ganda [gand1255]}, + title = {A History of Buganda from the Foundation of the Kingdom to 1900}, + year = {1972} +} + +@incollection{southwold1965, + author = {Southwold, M.}, + editor = {J. L. Gibbs, Jr.}, + address = {New York}, + booktitle = {Peoples of Africa}, + key = {Southwold (1965)}, + lgcode = {Ganda [gand1255]}, + pages = {81-118}, + title = {The Ganda of Uganda}, + year = {1965} +} + +@incollection{southwold1971, + author = {Southwold, M.}, + editor = {Needham, R.}, + address = {London}, + booktitle = {Rethinking Kinship and Marriage}, + key = {Southwold (1971)}, + lgcode = {Ganda [gand1255]}, + title = {The Meanings of Kinship}, + year = {1971} +} + +@book{brownandhutt1935, + author = {Brown, G. G. and Hutt., A. M. B.}, + address = {London}, + key = {Brown and Hutt (1935)}, + lgcode = {Hehe [hehe1240]}, + title = {Anthropology in Action}, + year = {1935} +} + +@article{dempwolff1914, + author = {Dempwolff, O.}, + glottolog_ref = {hh:e:Dempwolff:Hehe}, + journal = {Baessler-Archiv}, + key = {Dempwolff (1914)}, + lgcode = {Hehe [hehe1240]}, + pages = {87-173}, + title = {Beitrage zur Volksbeschreibung der Hehe}, + volume = {4}, + year = {1914} +} + +@book{nigmann1908, + author = {Nigmann, E.}, + address = {Berlin}, + key = {Nigmann (1908)}, + lgcode = {Hehe [hehe1240]}, + title = {Die Wahehe}, + year = {1908} +} + +@book{lafontaine1959, + author = {La Fontaine, J. S.}, + address = {London}, + glottolog_ref = {eballiso2009:44593}, + key = {La Fontaine (1959)}, + lgcode = {Gisu [masa1299]}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, East Central Africa}, + title = {The Gisu of Uganda}, + volume = {10}, + year = {1959} +} + +@book{winter1956, + author = {Winter, E. H.}, + address = {Cambridge}, + key = {Winter (1956)}, + lgcode = {Amba [amba1263]}, + title = {Bwamba}, + year = {1956} +} + +@incollection{winter1958, + author = {Winter, E.}, + editor = {Middleton, John F.M. and Tait, David}, + address = {London}, + booktitle = {Tribes Without Rulers}, + glottolog_ref = {eballiso2009:58090}, + key = {Winter (1958)}, + lgcode = {Amba [amba1263]}, + pages = {136-166}, + publisher = {Routledge & Kegan Paul}, + title = {The aboriginal political structure of Bwamba}, + year = {1958} +} + +@book{czekanowski1917, + author = {Czekanowski, J.}, + address = {Leipzig}, + glottolog_ref_id = {86631}, + key = {Czekanowski (1917)}, + lgcode = {Banyaruanda [kiny1244]}, + number = {1}, + pages = {103-412}, + series = {WissenschAftliche Ergebnisse der Deutschen Zentral-Afrika Expedition, 1907-1908, unter Führung Adolf Friedrichs Herzog zu Mecklenburg}, + title = {Forschungen im Nil-Kongo Zwischengebiet}, + volume = {6}, + year = {1917} +} + +@incollection{dhertefelt1965, + author = {D'Hertefelt, M.}, + editor = {Gibbs, J. L.}, + address = {New York}, + booktitle = {Peoples of Africa}, + key = {D'Hertefelt (1965)}, + lgcode = {Banyaruanda [kiny1244]}, + pages = {403-440}, + title = {The Rwanda of Rwanda}, + year = {1965} +} + +@book{dhertefeltetal1962, + author = {D'Hertefelt, M. and Trouwborst, A. and Scherer, J.}, + address = {London}, + glottolog_ref = {eballiso2009:23731}, + key = {D'Hertefelt et al. (1962)}, + lgcode = {Banyaruanda [kiny1244], Rundi [rund1242]}, + publisher = {London & Tervuren: Oxford Univ. Press}, + series = {Ethnographic survey of Africa, East Central Africa}, + title = {Les anciens royaumes de la zone interlacustrine meridionale}, + volume = {14; Annales du MRAC (Musée Royal de l'Afrique Centrale): monographies ethnographiques, #6}, + year = {1962} +} + +@article{maquet1955, + author = {Maquet, J. J.}, + address = {Tervueren}, + journal = {Ann. Mus. Congo Belge, Ethnol.}, + key = {Maquet (1955)}, + lgcode = {Banyaruanda [kiny1244]}, + pages = {221}, + title = {Le systeme des relations sociales dans le Ruanda ancien}, + volume = {1}, + year = {1955} +} + +@misc{maquet1967, + author = {Maquet, J.}, + howpublished = {Personal Communication}, + key = {Maquet (1967)}, + lgcode = {Banyaruanda [kiny1244]}, + year = {1967} +} + +@article{pages1933, + author = {Pages, G.}, + journal = {Mem. Inst. Roy. Col. Belge}, + key = {Pages (1933)}, + lgcode = {Banyaruanda [kiny1244]}, + pages = {1-703}, + title = {Un royaume hamite au centre de l'Afrique}, + volume = {1}, + year = {1933} +} + +@article{vanhove1941, + author = {Vanhove, J.}, + journal = {Mem. Inst. Roy. Col. Belge, Sect. Sci. Mor. Pol,}, + key = {Vanhove (1941)}, + lgcode = {Banyaruanda [kiny1244]}, + pages = {1-125}, + title = {Essai de droit coutumier du Ruanda}, + volume = {10}, + year = {1941} +} + +@article{delhaise1909a, + author = {Delhaise, C.}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Delhaise (1909a)}, + lgcode = {Songola [song1300]}, + pages = {34-58, 109-135, 159-214}, + title = {Chez les Wasongola du sud}, + volume = {33}, + year = {1909} +} + +@book{ardener1956, + author = {Ardener, E.}, + address = {London}, + glottolog_ref = {weball:976}, + key = {Ardener (1956)}, + lgcode = {Duala [dual1243], Kpe [mokp1239]}, + pages = {116}, + publisher = {London: International African Institute (IAI)}, + title = {Coastal Bantu of the Cameroons}, + year = {1956} +} + +@article{brutsch1950, + author = {Brutsch, J. R.}, + journal = {Bull. Soc. Et. Camerounaises}, + key = {Brutsch (1950)}, + lgcode = {Duala [dual1243]}, + pages = {211-230}, + title = {Les relations de parente chez les Duala}, + volume = {3}, + year = {1950} +} + +@book{buchner1887, + author = {Buchner, M.}, + key = {Buchner (1887)}, + lgcode = {Duala [dual1243]}, + title = {Kamerun}, + year = {1887} +} + +@article{colle1921, + author = {Colle, P.}, + glottolog_ref = {eballiso2009:5}, + journal = {Congo}, + key = {Colle (1921)}, + lgcode = {Bashi [shii1238]}, + pages = {657-684}, + title = {L'organisation politique des Bashi}, + volume = {2}, + year = {1921} +} + +@article{colle1922a, + author = {Colle, P.}, + journal = {Congo}, + key = {Colle (1922a)}, + lgcode = {Bashi [shii1238]}, + pages = {ii, 535-551}, + title = {Le mariage chez les Bashi}, + volume = {3}, + year = {1922} +} + +@article{colle1922b, + author = {Colle, P.}, + journal = {Congo}, + key = {Colle (1922b)}, + lgcode = {Bashi [shii1238]}, + pages = {i, 337-352}, + title = {Les clans au pays des Bashi}, + volume = {3}, + year = {1922} +} + +@article{roy192425, + author = {Roy, R.}, + journal = {Congo}, + key = {Roy (1924-25)}, + lgcode = {Bashi [shii1238]}, + number = {ii; i}, + pages = {327-347; 83-108}, + title = {Notes sur les Banyabungu}, + volume = {5; 6}, + year = {1924-25} +} + +@book{hertefeltetal1962, + author = {Hertefelt, M. and Trouwborst, A. and Scherer, J.}, + address = {London}, + glottolog_ref = {eballiso2009:23731}, + key = {Hertefelt et al. (1962)}, + lgcode = {Ha [haaa1252]}, + publisher = {London & Tervuren: Oxford Univ. Press}, + series = {Ethnographic survey of Africa, East Central Africa}, + title = {Les anciens royaumes de la zone interlacustrine meridionale}, + volume = {14; Annales du MRAC (Musée Royal de l'Afrique Centrale): monographies ethnographiques, #6}, + year = {1962} +} + +@article{schumacher1949, + author = {Schumacher, P.}, + address = {Bruxelles}, + glottolog_ref = {eballiso2009:41681}, + journal = {Mem. Inst. Roy. Colon. Belge, Sect. Sci. Mor. Polit.}, + key = {Schumacher (1949)}, + lgcode = {Hunde [hund1239]}, + pages = {1-509}, + publisher = {Bruxelles: Inst. Royal Colonial Belge (IRCB)}, + title = {Die physischen und soziale Umwelt der Kivu-Pygmaen}, + volume = {3}, + year = {1949} +} + +@article{viaene1951, + author = {Viaene, L.}, + glottolog_ref = {eballiso2009:43309}, + journal = {Kongo-Overzee}, + key = {Viaene (1951)}, + lgcode = {Hunde [hund1239]}, + pages = {111-156}, + title = {La vie domestique des Bahunde}, + volume = {17}, + year = {1951} +} + +@article{viaene1952, + author = {Viaene, L.}, + glottolog_ref = {eballiso2009:43311}, + journal = {Kongo-Overzee}, + key = {Viaene (1952)}, + lgcode = {Hunde [hund1239]}, + pages = {8-34, 111-121}, + title = {L'organisation politique des Bahunde}, + volume = {18}, + year = {1952} +} + +@article{lietard1929, + author = {Lietard, L.}, + glottolog_ref = {eballiso2009:31973}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Lietard (1929)}, + lgcode = {Lulua [luba1249]}, + pages = {40-43}, + title = {Etude sommaire sur la tribu des Lulua}, + volume = {53}, + year = {1929} +} + +@article{vervaecke1910, + author = {Vervaecke, R.}, + journal = {Rev. Congol.}, + key = {Vervaecke (1910)}, + lgcode = {Lulua [luba1249]}, + pages = {71-86, 324-345}, + title = {Les Bena-Lulua}, + volume = {1}, + year = {1910} +} + +@book{wissmannetal1888, + author = {Wissmann, H. von. and Wolf, L. and von Francois, C. and Mueller, H.}, + address = {Leipzig}, + key = {Wissmann et al. (1888)}, + lgcode = {Lulua [luba1249]}, + title = {Im Innern Afrikas}, + year = {1888} +} + +@article{delhaise1909b, + author = {Delhaise, C.}, + journal = {Coll. Monog. Ethnog.}, + key = {Delhaise (1909b)}, + lgcode = {Rega [lega1249]}, + pages = {1-376}, + title = {Les Warega}, + volume = {5}, + year = {1909} +} + +@article{salmon1953, + author = {Salmon, J.}, + journal = {Bull, Jurisd. Indig. Droit Cout. Congol.}, + key = {Salmon (1953)}, + lgcode = {Rega [lega1249]}, + pages = {121-128, 229-252}, + title = {Le droit matrimonial des Warega}, + volume = {21}, + year = {1953} +} + +@book{vanoverbergh1908, + author = {Van Overbergh, C.}, + address = {Bruxelles}, + key = {Van Overbergh (1908)}, + lgcode = {Songye [song1303]}, + title = {Les Basonge}, + year = {1908} +} + +@article{grevisse193738, + author = {Grevisse, F.}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + key = {Grevisse (1937-38)}, + lgcode = {Garanganze [sang1331]}, + pages = {1-16, 29-40, 65-74, 97-113, 165-175; 200-216, 238-341}, + title = {Les Bayeke}, + volume = {5; 6}, + year = {1937-38} +} + +@incollection{leuschner1903, + author = {Leuschner.}, + editor = {Steinmetz}, + address = {Berlin}, + booktitle = {Rechtsverhaltnisse von eingeborenen Volkern in Afrika und Ozeanien}, + key = {Leuschner (1903)}, + lgcode = {Kpe [mokp1239]}, + pages = {14-26}, + title = {Die Bakwiri}, + year = {1903} +} + +@article{gilliard1925, + author = {Gilliard, L.}, + journal = {Congo}, + key = {Gilliard (1925)}, + lgcode = {Ekonda [ekon1238]}, + pages = {i, 39-76}, + title = {Etude de la societe indigene}, + volume = {6}, + year = {1925} +} + +@article{muller1956, + author = {Muller, E. W.}, + journal = {Zeitschrift für Ethnologie}, + key = {Muller (1956)}, + lgcode = {Ekonda [ekon1238]}, + pages = {188-202}, + title = {Soziologische Terminologie und soziale Organisation der Ekonda}, + volume = {81}, + year = {1956} +} + +@article{philippe1954, + author = {Philippe, R.}, + journal = {Aequatoria}, + key = {Philippe (1954)}, + lgcode = {Ekonda [ekon1238]}, + pages = {87-106, 129-153}, + title = {Le mariage chez les Ntomb'e Njale du Lac Leopold II}, + volume = {17}, + year = {1954} +} + +@article{vanderkerken1944, + author = {Van der Kerken, G.}, + address = {Bruxelles}, + glottolog_ref = {hh:e:vanderKerken:Mongo}, + journal = {Mémoires de l'Institut Royal Colonial Belge}, + key = {Van der Kerken (1944)}, + lgcode = {Ekonda [ekon1238], Lalia [ngan1302], Mongo [long1393], Nkundo [nkun1238], Tetela [tete1250]}, + pages = {1-1143}, + publisher = {Bruxelles: Georges van Campenhout}, + series = {Mémoires de l'IRCB (Inst. Royal Colonial Belge)}, + title = {L'ethnie Mongo}, + volume = {13}, + year = {1944} +} + +@article{empain1922, + author = {Empain, A.}, + glottolog_ref = {eballiso2009:49543}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Empain (1922)}, + lgcode = {Kela [yela1238]}, + pages = {206-265}, + title = {Les Bakela de la Loto}, + volume = {46}, + year = {1922} +} + +@book{vanlaere1900, + author = {Van Laere, A.}, + address = {Anvers}, + key = {Van Laere (1900)}, + lgcode = {Kutsu [kusu1252]}, + title = {Les Basongo-Bankutu}, + year = {1900} +} + +@article{maes1934, + author = {Maes, J.}, + glottolog_ref = {eballiso2009:57961}, + journal = {Congo}, + key = {Maes (1934)}, + lgcode = {Lalia [ngan1302]}, + number = {i}, + pages = {173-179}, + title = {Note sur les populations lalia et yasayama du territoire des Nzalia-Boyela}, + volume = {15}, + year = {1934} +} + +@article{rijek1937, + author = {Rijek, F. de}, + address = {Anvers}, + journal = {Triat d'Union}, + key = {Rijek (1937)}, + lgcode = {Lalia [ngan1302]}, + pages = {93-254}, + title = {Les Lalia-Ngolu}, + volume = {6}, + year = {1937} +} + +@article{gutersohn1920, + author = {Gutersohn, T.}, + journal = {Congo}, + key = {Gutersohn (1920)}, + lgcode = {Mongo [long1393], Nkundo [nkun1238]}, + number = {i}, + pages = {92-105}, + title = {Het economisch leven van den Mongo-neger}, + volume = {1}, + year = {1920} +} + +@book{ruskinandruskin1928, + author = {Ruskin, E. A. and Ruskin., L.}, + address = {London}, + glottolog_ref = {hh:d:RuskinRuskin:Lomongo}, + key = {Ruskin and Ruskin (1928)}, + lgcode = {Mongo [long1393]}, + pages = {656}, + publisher = {London: Christian Literature Soc.}, + title = {Dictionary of the Lomongo Language}, + year = {1928} +} + +@article{heusch1955, + author = {Heusch, L. de}, + journal = {Rev. Inst. Sociol., Inst. Solvay}, + key = {Heusch (1955)}, + lgcode = {Tetela [tete1250]}, + pages = {i, 73-97}, + title = {Valeur, monnaie et structuration sociale chez les Nkutshu}, + volume = {28}, + year = {1955} +} + +@article{torday1911, + author = {Torday, E.}, + journal = {Mitt. Anth. Ges. Wien}, + key = {Torday (1911)}, + lgcode = {Topoke [poke1238]}, + pages = {189-202}, + title = {Der Tofoke}, + volume = {41}, + year = {1911} +} + +@article{bertrand1920, + author = {Bertrand.}, + journal = {Rev. Inst. Sociol., Inst. Solvay}, + key = {Bertrand (1920)}, + lgcode = {Lokele [kele1255]}, + pages = {i, 74-91}, + title = {Quelques notes sur la vie politique, le developpement, la decadence des petites societes Bantou du bassin central du Congo}, + volume = {1}, + year = {1920} +} + +@inbook{smith1911, + author = {Smith, H. S.}, + address = {London}, + booktitle = {The very heart of Africa}, + key = {Smith (1911)}, + lgcode = {Lokele [kele1255]}, + pages = {288}, + publisher = {Marshall Brothers}, + title = {Yakusu}, + year = {1911} +} + +@book{burssens1958, + author = {Burssens, H.}, + address = {London}, + glottolog_ref = {eballiso2009:34309}, + key = {Burssens (1958)}, + lgcode = {Bwaka [ngba1284], Mbandja [mban1263], Ngala [ling1263], Ngbandi [nort2774], Ngombe [binj1250]}, + publisher = {London & Tervuren: Oxford Univ. Press}, + series = {Ethnographic survey of Africa, Congo}, + title = {Les peuplades de l'entre Congo-Ubangi}, + volume = {4; Annales du MRCB (Musée Royal du Congo Belge): monographies ethnographiques, #4}, + year = {1958} +} + +@book{vanoverbergh1907a, + author = {Van Overbergh, C.}, + key = {Van Overbergh (1907a)}, + lgcode = {Ngala [ling1263]}, + pages = {1-458}, + series = {Coll. Monog. Ethnog.}, + title = {Les Bangala}, + volume = {1}, + year = {1907} +} + +@article{weeks190910, + author = {Weeks, J. H.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Weeks (1909-10)}, + lgcode = {Ngala [ling1263]}, + pages = {87-136, 416-459; 360-427}, + title = {Anthropological Notes on the Bangala of the Upper Congo River}, + volume = {39; 40}, + year = {1909-10} +} + +@book{weeks1913, + author = {Weeks, J. H.}, + address = {London}, + key = {Weeks (1913)}, + lgcode = {Ngala [ling1263]}, + title = {Among Congo Cannibals}, + year = {1913} +} + +@article{hutereau1910a, + author = {Hutereau, A.}, + glottolog_ref = {hh:e:Hutereau:Mafoto}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Hutereau (1910a)}, + lgcode = {Poto [luse1252]}, + pages = {138-152, 173-197}, + title = {Documents ethnographiques congolaises: Les MAfoto}, + volume = {34}, + year = {1910} +} + +@article{lindemann1906, + author = {Lindemann, M.}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Lindemann (1906)}, + lgcode = {Poto [luse1252]}, + pages = {16-34, 117-141}, + title = {Les Upotos}, + volume = {30}, + year = {1906} +} + +@book{alexandreandbinet1958, + author = {Alexandre, P. and Binet., J.}, + address = {Paris}, + glottolog_ref = {eballiso2009:47214}, + key = {Alexandre and Binet (1958)}, + lgcode = {Fang [fang1246]}, + publisher = {Presses Universitaires de France; International African Inst. (IAI)}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + title = {Le groupe dit pahouin: fang-boulou-beti}, + volume = {6}, + year = {1958} +} + +@book{tessmann1913, + author = {Tessmann, G.}, + address = {Berlin}, + key = {Tessmann (1913)}, + lgcode = {Fang [fang1246]}, + title = {Die Pangwe}, + year = {1913} +} + +@article{trezenem1936, + author = {Trezenem, E.}, + journal = {Journ. Soc. Africanistes}, + key = {Trezenem (1936)}, + lgcode = {Fang [fang1246]}, + pages = {65-93}, + title = {Notes ethnographies sur les tribus Fan}, + volume = {6}, + year = {1936} +} + +@article{vangeluwe1956, + author = {Van Geluwe, H.}, + glottolog_ref = {eballiso2009:29036}, + journal = {Mem. Inst. Roy. Colon. Belge, Monog. Ethnog.}, + key = {Van Geluwe (1956)}, + lgcode = {Bira [bila1255], Kumu [komo1260], Plains Bira [bera1259], Rumbi [lomb1254]}, + pages = {1-161}, + publisher = {London & Tervuren: Oxford Univ. Press}, + series = {Ethnographic survey of Africa, Congo}, + title = {Les Bira et les peuplades limitrophes}, + volume = {2}, + year = {1956} +} + +@book{vangeluwe1960, + author = {Van Geluwe, H.}, + address = {London}, + key = {Van Geluwe (1960)}, + lgcode = {Budu [budu1250], Ndaka Babali [bali1274]}, + title = {Les Bali et les peuplades apparentees}, + year = {1960} +} + +@article{moeller1936, + author = {Moeller, A.}, + address = {Bruxelles}, + glottolog_ref = {eballiso2009:34152}, + journal = {Mem. Inst. Roy. Colon. Belge, Sect. Sci. Mor. Polit.}, + key = {Moeller (1936)}, + lgcode = {Ndaka Babali [bali1274]}, + pages = {1-578}, + publisher = {Bruxelles: Georges van Campenhout}, + series = {Mémoires de l'ARSOM (Académie Royale des Sciences d'Outre-Mer), collection in-}, + title = {Les grandes lignes des migrations des Bantous de la province orientale du Congo Belge}, + volume = {6}, + year = {1936} +} + +@book{schebesta1934, + author = {Schebesta, P.}, + address = {Leipzig}, + key = {Schebesta (1934)}, + lgcode = {Ndaka Babali [bali1274]}, + title = {Vollblutneger und Halbzwerge}, + year = {1934} +} + +@book{joset1936, + author = {Joset, P. E.}, + address = {Anvers}, + key = {Joset (1936)}, + lgcode = {Plains Bira [bera1259]}, + title = {Les Babira de la plaine}, + year = {1936} +} + +@article{maes1909, + author = {Maes, J.}, + glottolog_ref = {eballiso2009:49714}, + journal = {Anthropos}, + key = {Maes (1909)}, + lgcode = {Rumbi [lomb1254]}, + pages = {607-629}, + title = {Les Warumbi}, + volume = {4}, + year = {1909} +} + +@article{verbeke1928, + author = {Verbeke, A. A. L.}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Verbeke (1928)}, + lgcode = {Bombesa [mbes1238]}, + pages = {49-72}, + title = {Etude sur la peuplade des Bombesa}, + volume = {52}, + year = {1928} +} + +@article{soupart1938, + author = {Soupart, J.}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + key = {Soupart (1938)}, + lgcode = {Budja [budz1238]}, + pages = {269-274, 299-310}, + title = {Les coutumes Budja}, + volume = {6}, + year = {1938} +} + +@book{vandenbergh1934, + author = {Van den Bergh, E.}, + address = {Postel}, + key = {Van den Bergh (1934)}, + lgcode = {Budja [budz1238]}, + title = {Bij de Budja's}, + year = {1934} +} + +@article{wijnant192526, + author = {Wijnant, D.}, + journal = {Congo}, + key = {Wijnant (1925-26)}, + lgcode = {Ndoko [doko1244]}, + pages = {i:206-215, ii:410-426; i:584-595}, + title = {Het Doko volk}, + volume = {6; 7}, + year = {1925-26} +} + +@book{wolfe1961, + author = {Wolfe, A. W.}, + address = {Evanston}, + key = {Wolfe (1961)}, + lgcode = {Ngombe [binj1250]}, + title = {In the Ngombe Tradition}, + year = {1961} +} + +@misc{wolfe1965, + author = {Wolfe, A. W.}, + howpublished = {Personal communication}, + key = {Wolfe (1965)}, + lgcode = {Ngombe [binj1250]}, + year = {1965} +} + +@article{boelaert1940, + author = {Boelaert, E.}, + journal = {Kongo-Overzee}, + key = {Boelaert (1940)}, + lgcode = {Nkundo [nkun1238]}, + pages = {148-161}, + title = {De Nkundo-Maatschappij}, + volume = {6}, + year = {1940} +} + +@article{brepoels1930, + author = {Brepoels, H.}, + journal = {Congo}, + key = {Brepoels (1930)}, + lgcode = {Nkundo [nkun1238]}, + pages = {ii, 332-430}, + title = {Het familiehoofd bij de Nkundo negers}, + volume = {2}, + year = {1930} +} + +@book{hulstaert1938, + author = {Hulstaert, G.}, + address = {Brussels}, + key = {Hulstaert (1938)}, + lgcode = {Nkundo [nkun1238]}, + pages = {1-520}, + series = {Mémoires de l'Institut Royal Colonial Belge}, + title = {Le mariage des Nkundo'}, + volume = {8}, + year = {1938} +} + +@article{hulstaert1971, + author = {Hulstaert, G.}, + journal = {Cahiers des Religion Africaines}, + key = {Hulstaert (1971)}, + lgcode = {Nkundo [nkun1238]}, + number = {9}, + pages = {145-167}, + title = {Sur quelques croyances magiques des Mongo}, + volume = {5}, + year = {1971} +} + +@book{schebesta1936, + author = {Schebesta, P.}, + glottolog_ref = {eballiso2009:52089}, + key = {Schebesta (1936)}, + lgcode = {Nkundo [nkun1238]}, + note = {Transl. of 1934. Vollblutneger und Halbzwerge. Leipzig [focus on the Pygmy vassals of the Ilanga]}, + publisher = {London: Hutchinson & Co.}, + title = {My Pygmy and Negro hosts}, + year = {1936} +} + +@article{allys1930, + author = {Allys}, + journal = {Bulletin de la Société des Recherches Congolaises}, + key = {Allys (1930)}, + lgcode = {Dzem [njye1238]}, + pages = {3-21}, + title = {Monographie de la tribu des Dzems}, + volume = {21}, + year = {1930} +} + +@article{koch1913, + author = {Koch, C. W. H.}, + journal = {Baessler-Arch.}, + key = {Koch (1913)}, + lgcode = {Dzem [njye1238], Sanga [bomw1238]}, + pages = {257-312}, + title = {Die Stamme des Bezirks Molundu}, + volume = {3}, + year = {1913} +} + +@book{andersson1953, + author = {Andersson, E.}, + address = {Stockholm}, + glottolog_ref = {eballiso2009:18840}, + key = {Andersson (1953)}, + lgcode = {Kota [ndas1238]}, + pages = {1-364}, + publisher = {Stockholm: Almqvist & Wiksell}, + series = {Studia ethnographica upsaliensia}, + title = {Contribution à l'ethnographie des kuta}, + volume = {6}, + year = {1953} +} + +@article{conradt1902, + author = {Conradt, L.}, + glottolog_ref = {eballiso2009:724}, + journal = {Globus}, + key = {Conradt (1902)}, + lgcode = {Ngumba [kwas1243]}, + pages = {333-337, 350-354, 369-372}, + title = {Die Ngumba in Sudkamerun}, + volume = {81}, + year = {1902} +} + +@article{dugast1949, + author = {Dugast, I.}, + glottolog_ref = {eballiso2009:52161}, + journal = {Mem. Inst. Franc. Afr. Noire, Cent. Cameroun, Ser. Pop.}, + key = {Dugast (1949)}, + lgcode = {Ngumba [kwas1243]}, + pages = {1-159}, + publisher = {Dakar}, + series = {Mémoires de l'IFAN (Inst. Français de l'Afrique Noire), série 'populations'}, + title = {Inventaire ethnique du Sud-Cameroun}, + volume = {1}, + year = {1949} +} + +@article{burel1910, + author = {Burel, G.}, + journal = {Rev. Ethnog. Sociol.}, + key = {Burel (1910)}, + lgcode = {Sanga [bomw1238]}, + pages = {3-32}, + title = {Les populations de la moyenne Sanga: Les Pomo et les Boumali}, + volume = {1}, + year = {1910} +} + +@book{baumann1888, + author = {Baumann, O.}, + address = {Wien}, + key = {Baumann (1888)}, + lgcode = {Bubi [bube1242]}, + title = {Eine Afrikanische Tropeninsel: Fernando Po und die Bubi}, + year = {1888} +} + +@book{gildelgado1949, + author = {Gil-Delgado, C. C.}, + address = {Madrid}, + key = {Gil-Delgado (1949)}, + lgcode = {Bubi [bube1242]}, + title = {Notas para un estudio antropologico y etnologico del Bubi de Fernando Poo}, + year = {1949} +} + +@book{tessmann1923, + author = {Tessmann, G.}, + address = {Hagen}, + key = {Tessmann (1923)}, + lgcode = {Bubi [bube1242]}, + title = {Die Bubi auf Fernando Poo}, + year = {1923} +} + +@article{bufe1913, + author = {Bufe, E.}, + journal = {Archiv. Anth.}, + key = {Bufe (1913)}, + lgcode = {Kundu [orok1266]}, + pages = {228-239}, + title = {Die Bakundu}, + volume = {40}, + year = {1913} +} + +@article{lessner1904, + author = {Lessner, O.}, + glottolog_ref = {eballiso2009:6167}, + journal = {Globus}, + key = {Lessner (1904)}, + lgcode = {Kundu [orok1266]}, + pages = {273-278, 337-344, 392-397}, + title = {Die Balue oder Rumpiberge und ihre Bewohner}, + volume = {86}, + year = {1904} +} + +@misc{allegret1927, + author = {Allegret, E.}, + howpublished = {published in H. A. Junod, the Life of a South African Tribe 1: 271n}, + key = {Allegret (1927)}, + lgcode = {Mpongwe [myen1241]}, + title = {Correspondence}, + year = {1927} +} + +@book{burton1876, + author = {Burton, R. F.}, + address = {London}, + key = {Burton (1876)}, + lgcode = {Mpongwe [myen1241]}, + title = {Two Trips to Gorilla Land and the Cataracts of the Congo}, + year = {1876} +} + +@article{duchaillu1861, + author = {Du Chaillu, P. B.}, + glottolog_ref = {eballiso2009:7544}, + journal = {Trans. Ethnol. Soc. London, n. s.}, + key = {Du Chaillu (1861)}, + lgcode = {Mpongwe [myen1241]}, + pages = {305-315}, + title = {Observations on the People of Western Equatorial Africa}, + volume = {1}, + year = {1861} +} + +@incollection{oertzen1903, + author = {Oertzen}, + editor = {Steinmetz, S. R.}, + address = {Berlin}, + booktitle = {Rechtsverhaltnisse von Eingeborenenvölkern in Afrika und Ozeanien}, + key = {Oertzen (1903)}, + lgcode = {Puku [bata1285]}, + pages = {27-56}, + title = {Die Banaka und Bapuku}, + year = {1903} +} + +@incollection{zeller1885, + author = {Zeller, H.}, + address = {Berlin and Stuttgart}, + booktitle = {Forschungsreisen in der deutschen Colonie Kamerun}, + key = {Zeller (1885)}, + lgcode = {Puku [bata1285]}, + pages = {42-60}, + volume = {2}, + year = {1885} +} + +@book{mccullochetal1954, + author = {McCulloch, M. and Littlewood, M. and Dugast, I.}, + address = {London}, + glottolog_ref = {eballiso2009:57513}, + key = {McCulloch et al. (1954)}, + lgcode = {Bafia [bafi1243], Bamileke [fefe1239], Bamum [bamu1253], Banen [tune1261], Fungom [mmen1238], Fut [bafu1246], Kom [komc1235], Ndob [band1349], Nsaw [lamn1239], Nsungli [limb1268]}, + publisher = {London: International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {Peoples of the Central Cameroons}, + volume = {9}, + year = {1954} +} + +@book{tessmann1934, + author = {Tessmann, G.}, + address = {Stuttgart}, + glottolog_ref = {eballiso2009:6222}, + key = {Tessmann (1934)}, + lgcode = {Bafia [bafi1243], Banen [tune1261]}, + publisher = {Stuttgart: Strecker & Schröder}, + series = {Ergebnisse der 1913 vom Reichs-kolonialamt ausgesandten völkerkundlichen Forschungsreise nach Kamerun}, + title = {Die BAfia und die Kultur der Mittelkamerunbantu}, + volume = {1}, + year = {1934} +} + +@article{ankermann1910, + author = {Ankermann, B.}, + journal = {Zeitschrift für Ethnologie}, + key = {Ankermann (1910)}, + lgcode = {Bali Nyonga [mung1266]}, + pages = {288-310}, + title = {Bericht uber eine Forschungreise ins Grasland von Kamerun}, + volume = {42}, + year = {1910} +} + +@book{covarrubias1937, + author = {Covarrubias, Miguel.}, + address = {New York}, + key = {Covarrubias (1937)}, + lgcode = {Bali Nyonga [mung1266], Balinese [bali1278]}, + title = {Island of Bali}, + year = {1937} +} + +@article{hutter1899, + author = {Hutter, H.}, + journal = {Globus}, + key = {Hutter (1899)}, + lgcode = {Bali Nyonga [mung1266]}, + pages = {284-289, 303-309}, + title = {Politische und soziale Verhaltnisse bei den Graslandstammen Nordkameruns}, + volume = {76}, + year = {1899} +} + +@book{kaberry1952, + author = {Kaberry, P. M.}, + address = {London}, + key = {Kaberry (1952)}, + lgcode = {Bali Nyonga [mung1266], Fungom [mmen1238], Fut [bafu1246], Kom [komc1235], Ndob [band1349], Nsaw [lamn1239], Nsungli [limb1268], Tigon [tigo1236], Widikum [meta1238]}, + title = {Women of the Grassfields}, + year = {1952} +} + +@book{egerton1939, + author = {Egerton, F. C. C.}, + address = {New York}, + key = {Egerton (1939)}, + lgcode = {Bamileke [fefe1239]}, + title = {African Majesty}, + year = {1939} +} + +@article{hutter1907, + author = {Hutter, F.}, + journal = {Globus}, + key = {Hutter (1907)}, + lgcode = {Bamum [bamu1253]}, + pages = {1-6, 26-32, 44-47}, + title = {Bamum}, + volume = {96}, + year = {1907} +} + +@article{martin1951, + author = {Martin, H.}, + journal = {Bull. Soc. Et. Cameroun.}, + key = {Martin (1951)}, + lgcode = {Bamum [bamu1253]}, + pages = {5-40}, + title = {Le pays des Bamum}, + volume = {4}, + year = {1951} +} + +@book{reinwuhrmann1925, + author = {Rein-Wuhrmann, A.}, + address = {Stuttgart}, + glottolog_ref = {eballiso2009:39650}, + key = {Rein-Wuhrmann (1925)}, + lgcode = {Bamum [bamu1253]}, + publisher = {Stuttgart: Evangelische Miss.-Verlag}, + title = {Mein Bamumvolk im Grasland von Kamerun}, + year = {1925} +} + +@article{dugast1944, + author = {Dugast, I.}, + journal = {Bulletin de la Soci‚t‚ d'Etudes Cameroun, n. s.}, + key = {Dugast (1944)}, + lgcode = {Banen [tune1261]}, + pages = {7-130}, + title = {L'agriculture chez les Ndiki de population Banên}, + volume = {8}, + year = {1944} +} + +@book{dugast1955, + author = {Dugast, I.}, + address = {Paris}, + key = {Dugast (1955)}, + lgcode = {Banen [tune1261]}, + number = {i}, + pages = {1-824}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + title = {Monographie de la tribu des Ndiki: Vie matérielle}, + volume = {58}, + year = {1955} +} + +@misc{dugast1959, + author = {Dugast, I.}, + address = {Paris}, + key = {Dugast (1959)}, + lgcode = {Banen [tune1261]}, + number = {ii}, + pages = {1-635}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + title = {Monographie de la tribu des Ndiki. Vie sociale et familiale}, + volume = {58}, + year = {1959} +} + +@book{nicol1929, + author = {Nicol, Y.}, + address = {Paris}, + key = {Nicol (1929)}, + lgcode = {Koko [bako1249]}, + title = {La tribu des Bakoko}, + year = {1929} +} + +@article{jeffreys1951, + author = {Jeffreys, M. D. W.}, + glottolog_ref = {eballiso2009:21264}, + journal = {Afr. Aff.}, + key = {Jeffreys (1951)}, + lgcode = {Kom [komc1235]}, + pages = {241-249}, + title = {Some Notes on the Fon of Bikom}, + volume = {50}, + year = {1951} +} + +@article{sieberandsieber1938, + author = {Sieber, D. and Sieber, J.}, + journal = {Africa}, + key = {Sieber and Sieber (1938)}, + lgcode = {Nsungli [limb1268]}, + pages = {208-220}, + title = {Das Leben des Kindes im Nsungli-Stamm}, + volume = {11}, + year = {1938} +} + +@article{thorbecke1916, + author = {Thorbecke, F.}, + journal = {Abh. Hamb. Kolonialinst.}, + key = {Thorbecke (1916)}, + lgcode = {Bafute [vute1244], Tikar [tige1238]}, + pages = {1-94}, + title = {Anthropogeographie des Ost-Mbamland}, + volume = {36}, + year = {1916} +} + +@article{thorbeckeandthorbecke1919, + author = {Thorbecke, F. and Thorbecke, M. P.}, + glottolog_ref = {hh:e:ThorbeckeThorbecke:Tikar}, + journal = {Abh. Hamb. Kolonialinst.}, + key = {Thorbecke and Thorbecke (1919)}, + lgcode = {Tikar [tige1238]}, + pages = {13-178}, + publisher = {Hamburg: Friederichsen & Co.}, + series = {Abh. des hamburgischen Kolonial-Inst.}, + title = {Die Kulture der Tikar}, + volume = {41}, + year = {1919} +} + +@book{verhulpen1936, + author = {Verhulpen, E.}, + address = {Anvers}, + glottolog_ref = {hh:ew:Verhulpen:Baluba}, + key = {Verhulpen (1936)}, + lgcode = {Luba [luba1250]}, + pages = {534}, + publisher = {Anvers: L'Avenir belge}, + title = {Baluba et Balubaises du Katanga}, + year = {1936} +} + +@book{halkin1911, + author = {Halkin, J.}, + address = {Bruxelles}, + key = {Halkin (1911)}, + lgcode = {Baboa [bwaa1238]}, + pages = {1-616}, + series = {Collec. Monog. Ethnog.}, + title = {Les Ababua}, + volume = {7}, + year = {1911} +} + +@book{hutereau1909, + author = {Hutereau, A.}, + glottolog_ref = {eballiso2009:38907}, + key = {Hutereau (1909)}, + lgcode = {Baboa [bwaa1238], Mangbetu [nucl1420]}, + pages = {ii,61-84}, + publisher = {Tervuren}, + series = {Annales du Musée du Congo, ethnographie et anthropologie, série 4: documents ethnographiques congolais}, + title = {Notes sur la vie familiale et juridique de quelques populations du Congo Belge}, + volume = {1}, + year = {1909} +} + +@article{vedy1904, + author = {Vedy.}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Vedy (1904)}, + lgcode = {Baboa [bwaa1238]}, + pages = {191-205, 265-294}, + title = {Les A-Babuas}, + volume = {28}, + year = {1904} +} + +@article{bourgeois1954, + author = {Bourgeois, R.}, + glottolog_ref = {eballiso2009:486}, + journal = {Mem. Acad. Roy. Sci. Colon., Cl. Sci. Mor. Polit.}, + key = {Bourgeois (1954)}, + lgcode = {Rundi [rund1242]}, + pages = {1-472}, + publisher = {Bruxelles}, + series = {Mémoires de l'ARSOM (Académie Royale des Sciences d'Outre-Mer), collection in-}, + title = {Banyarwanda et Barundi}, + volume = {35}, + year = {1954} +} + +@article{delacauw1936, + author = {Delacauw, A.}, + journal = {Congo}, + key = {Delacauw (1936)}, + lgcode = {Rundi [rund1242]}, + pages = {i, 332-357, 481-522}, + title = {Droit coutumier des Barundi}, + volume = {17}, + year = {1936} +} + +@book{meyer1916, + author = {Meyer, H. H. J.}, + address = {Leipzig}, + key = {Meyer (1916)}, + lgcode = {Rundi [rund1242]}, + title = {Die Barundi}, + year = {1916} +} + +@article{simons1944, + author = {Simons, E.}, + journal = {Bull. Jurisd. Indig. Droit Coutum. Congolais}, + key = {Simons (1944)}, + lgcode = {Rundi [rund1242]}, + pages = {137-283}, + title = {Coutumes et institutins des Barundi}, + volume = {12}, + year = {1944} +} + +@book{vanderburgt1903, + author = {Van der Burgt, J. M. M.}, + address = {Bois-le-Duc}, + key = {Van der Burgt (1903)}, + lgcode = {Rundi [rund1242]}, + title = {Un grand peuple de l'Afrique equatoriale}, + year = {1903} +} + +@book{argyle1966, + author = {Argyle, W. J.}, + address = {London}, + key = {Argyle (1966)}, + lgcode = {Fon [fonn1241]}, + title = {The Fon of Dahomey}, + year = {1966} +} + +@article{bohannan1949, + author = {Bohannan, L.}, + journal = {Africa}, + key = {Bohannan (1949)}, + lgcode = {Fon [fonn1241]}, + pages = {273-278}, + title = {Dahomean Marriage}, + volume = {19}, + year = {1949} +} + +@article{herskovits1932, + author = {Herskovits, M. J.}, + journal = {Africa}, + key = {Herskovits (1932)}, + lgcode = {Fon [fonn1241]}, + pages = {266-296}, + title = {Some Aspects of Dahomean Ethnology}, + volume = {5}, + year = {1932} +} + +@article{herskovits1937a, + author = {Herskovits, M. J.}, + journal = {Africa}, + key = {Herskovits (1937a)}, + lgcode = {Fon [fonn1241]}, + pages = {335-341}, + title = {A Note on 'Woman Marriage' in Dahomey}, + volume = {10}, + year = {1937} +} + +@book{herskovits1938, + author = {Herskovits, M. J.}, + address = {New York}, + key = {Herskovits (1938)}, + lgcode = {Fon [fonn1241]}, + title = {Dahomey. 2v}, + year = {1938} +} + +@article{herskovitsandherskovits1933, + author = {Herskovits, M. J. and Herskovits, F. S.}, + journal = {Memoirs, American Anthropological Association}, + key = {Herskovits and Herskovits (1933)}, + lgcode = {Fon [fonn1241]}, + pages = {1-77}, + title = {An Outline of Dahomean Religious Belief}, + volume = {41}, + year = {1933} +} + +@book{leheriss1911, + author = {Le Heriss, A.}, + address = {Paris}, + glottolog_ref = {eballiso2009:34285}, + key = {Le Heriss (1911)}, + lgcode = {Fon [fonn1241]}, + publisher = {Paris: Emile Larose}, + title = {L'ancien royaume du Dahomey}, + year = {1911} +} + +@incollection{lombard1967, + author = {Lombard, J.}, + editor = {Forde, D. and Kaberry, P. M.}, + address = {London}, + booktitle = {West African Kingdoms in the Nineteenth Century}, + key = {Lombard (1967)}, + lgcode = {Fon [fonn1241]}, + pages = {70-92}, + title = {The Kingdom of Dahomey}, + year = {1967} +} + +@incollection{mercier1954, + author = {Mercier, P.}, + editor = {Forde, D.}, + address = {London}, + booktitle = {African Worlds}, + key = {Mercier (1954)}, + lgcode = {Fon [fonn1241]}, + pages = {210-234}, + title = {The Fon of Dahomey}, + year = {1954} +} + +@book{skertchley1874, + author = {Skertchley, J. A.}, + address = {London}, + key = {Skertchley (1874)}, + lgcode = {Fon [fonn1241]}, + title = {Dahomey as It Really Is}, + year = {1874} +} + +@incollection{tarditsandtardits1962, + author = {Tardits, C. and Tardits, C.}, + editor = {Bohannan, P. and Dalton, G.}, + address = {New York}, + booktitle = {Markets in Africa}, + key = {Tardits and Tardits (1962)}, + lgcode = {Fon [fonn1241]}, + pages = {89-102}, + title = {Traditional Market Economy in South Dahomey}, + year = {1962} +} + +@article{ardener1954, + author = {Ardener, E. W.}, + glottolog_ref = {weball:975}, + journal = {Africa}, + key = {Ardener (1954)}, + lgcode = {Igbo [nucl1417]}, + pages = {85-99}, + title = {The kinship terminology of a group of southern Ibo}, + volume = {24}, + year = {1954} +} + +@article{egboh1971, + author = {Egboh, E. O.}, + journal = {Civilizations}, + key = {Egboh (1971)}, + lgcode = {Igbo [nucl1417]}, + pages = {269-279}, + title = {The beginning of the end of traditional religion in Iboland, Southeastern Nigeria}, + volume = {21}, + year = {1971} +} + +@article{egboh1972a, + author = {Egboh, E. O.}, + journal = {Numen}, + key = {Egboh (1972a)}, + lgcode = {Igbo [nucl1417]}, + pages = {68-79}, + title = {A reassessment of the concept of Ibo traditional religion}, + volume = {19}, + year = {1972} +} + +@article{egboh1972b, + author = {Egboh, E. O.}, + journal = {Civilizations}, + key = {Egboh (1972b)}, + lgcode = {Igbo [nucl1417]}, + pages = {431-444}, + title = {Polygamy in Iboland, South-eastern Nigeria: with special reference to polygamy practice among Christian Ibos}, + volume = {22}, + year = {1972} +} + +@article{egboh19734, + author = {Egboh, E. O.}, + journal = {Civilizations}, + key = {Egboh (1973/4)}, + lgcode = {Igbo [nucl1417]}, + pages = {305-316}, + title = {The place of women in the Ibo society of Southeastern Nigeria, from earliest times to the present}, + volume = {23-24}, + year = {1973/4} +} + +@book{fordeandjones1950, + author = {Forde, D. and Jones, G. I.}, + address = {London}, + glottolog_ref = {eballiso2009:51522}, + key = {Forde and Jones (1950)}, + lgcode = {Efik [efik1245], Ibibio [ibib1240], Igbo [nucl1417]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {The Ibo and Ibibio-speaking Peoples of South-Eastern Nigeria}, + volume = {3}, + year = {1950} +} + +@book{green1947, + author = {Green, M. M.}, + address = {London}, + key = {Green (1947)}, + lgcode = {Igbo [nucl1417]}, + note = {2nd ed. 1964}, + title = {Ibo Village Affairs}, + year = {1947} +} + +@book{leithross1939, + author = {Leith-Ross, S.}, + address = {New York}, + glottolog_ref = {eballiso2009:14031}, + key = {Leith-Ross (1939)}, + lgcode = {Igbo [nucl1417]}, + title = {African women: a study of the Ibo in Nigeria}, + year = {1939} +} + +@book{uchendu1965, + author = {Uchendu, V. C.}, + address = {New York}, + glottolog_ref = {eballiso2009:12578}, + key = {Uchendu (1965)}, + lgcode = {Igbo [nucl1417]}, + note = {home village in Nisirimi group of villages south of Isu-Ana}, + publisher = {Holt, Rinehart & Winston}, + series = {Case studies in cultural anthropology}, + title = {The Igbo of southeast Nigeria}, + year = {1965} +} + +@article{gaborydubourdeau1926, + author = {Gabory-Dubourdeau, P. M.}, + journal = {Bull Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Gabory-Dubourdeau (1926)}, + lgcode = {Toma [toma1245]}, + pages = {288-475}, + title = {Notice sur les coutumes des Tomas}, + volume = {9}, + year = {1926} +} + +@book{rouet1907, + author = {Rouet, F.}, + address = {Paris}, + key = {Rouet (1907)}, + lgcode = {Toma [toma1245]}, + title = {Les Tomas}, + year = {1907} +} + +@article{schwab1947, + author = {Schwab, G.}, + glottolog_ref = {eballiso2009:32251}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + key = {Schwab (1947)}, + lgcode = {Gbande [band1352], Kpelle [libe1247], Krahn [west2488], Ngere [dann1241], Sapo [sapo1251], Toma [toma1245]}, + pages = {1-526}, + publisher = {Cambridge MA: Harvard Univ. Press}, + series = {Papers from the Peabody Museum of American Archaeology and Ethnology}, + title = {Tribes of the Liberian Hinterland}, + volume = {31}, + year = {1947} +} + +@book{field1949, + author = {Field, M. J.}, + address = {London}, + key = {Field (1949)}, + lgcode = {Akyem [akye1239]}, + title = {Akim Kotoku}, + year = {1949} +} + +@article{mead1937a, + author = {Mead, M.}, + glottolog_ref = {weball:13448}, + journal = {Journ. Roy Anth. Inst.}, + key = {Mead (1937a)}, + lgcode = {Akyem [akye1239]}, + pages = {297-304}, + title = {A Twi Relationship System}, + volume = {67}, + year = {1937} +} + +@incollection{brown1955, + author = {Brown, P.}, + editor = {Forde, D.}, + address = {London}, + booktitle = {Peoples of the Niger-Benue Confluence}, + glottolog_ref = {eballiso2009:51521}, + key = {Brown (1955)}, + lgcode = {Ebira [ebir1243]}, + pages = {53-74}, + publisher = {London: International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {The Igbira}, + volume = {10}, + year = {1955} +} + +@book{wilsonhaffenden1930, + author = {Wilson-Haffenden, J. R.}, + address = {London}, + key = {Wilson-Haffenden (1930)}, + lgcode = {Ebira [ebir1243]}, + title = {The Red Men of Nigeria}, + year = {1930} +} + +@book{hall1938, + author = {Hall, H. U.}, + address = {Philadelphia}, + key = {Hall (1938)}, + lgcode = {Sherbro [sher1258]}, + title = {The Sherbro of Sierra Leone}, + year = {1938} +} + +@book{mcculloch1950, + author = {McCulloch, M.}, + address = {London}, + glottolog_ref = {eballiso2009:57520}, + key = {McCulloch (1950)}, + lgcode = {Mende [mend1266], Sherbro [sher1258], Temne [timn1235], Vai [vaii1241], Yalunka [yalu1240]}, + publisher = {London: International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {Peoples of Sierra Leone Protectorate}, + volume = {2}, + year = {1950} +} + +@book{thomas1916, + author = {Thomas, N. W.}, + address = {London}, + key = {Thomas (1916)}, + lgcode = {Koranko [kura1250], Sherbro [sher1258], Susu [susu1250], Temne [timn1235], Vai [vaii1241], Yalunka [yalu1240]}, + title = {Anthropological Report on Sierra Leone}, + year = {1916} +} + +@article{gibbs1963, + author = {Gibbs, J. L.}, + journal = {American Anthropologist}, + key = {Gibbs (1963)}, + lgcode = {Kpelle [libe1247]}, + pages = {552-573}, + title = {Marital Instability Among the Kpelle}, + volume = {65}, + year = {1963} +} + +@incollection{gibbs1965, + author = {Gibbs, J. L.}, + editor = {Gibbs, J. L.}, + address = {New York}, + booktitle = {Peoples of Africa}, + glottolog_ref = {hh:e:Gibbs:Kpelle}, + key = {Gibbs (1965)}, + lgcode = {Kpelle [libe1247]}, + pages = {197-240}, + publisher = {New York: Holt, Rinehart & Winston}, + title = {The Kpelle of Liberia}, + year = {1965} +} + +@book{westermann1921, + author = {Westermann, D.}, + address = {Gottingen}, + key = {Westermann (1921)}, + lgcode = {Kpelle [libe1247]}, + title = {Die Kpelle}, + year = {1921} +} + +@inproceedings{ruel1956, + author = {Ruel, M. J.}, + address = {Ibadan}, + booktitle = {Proc. Third Ann. Conf. W. Afr. Inst. Soc. Econ. Res.}, + key = {Ruel (1956)}, + lgcode = {Banyang [keny1279]}, + pages = {66-70}, + title = {The Family Structure of Banyang Society}, + year = {1956} +} + +@article{schuster1914, + author = {Schuster, F.}, + journal = {Antrhopos}, + key = {Schuster (1914)}, + lgcode = {Banyang [keny1279]}, + pages = {948-955}, + title = {Die sozialen Verhaltnisse des Banjange-Stammes}, + volume = {9}, + year = {1914} +} + +@article{staschewski1917, + author = {Staschewski, F.}, + journal = {Baessler-Arch., Beihefte}, + key = {Staschewski (1917)}, + lgcode = {Banyang [keny1279]}, + pages = {1-66}, + title = {Die Banjangi}, + volume = {8}, + year = {1917} +} + +@book{mansfeld1908, + author = {Mansfeld, A.}, + address = {Berlin}, + key = {Mansfeld (1908)}, + lgcode = {Boki [boky1238]}, + title = {Urwald-Dokumente}, + year = {1908} +} + +@book{talbot1926, + author = {Talbot, P. A.}, + address = {London}, + key = {Talbot (1926)}, + lgcode = {Boki [boky1238]}, + title = {The Peoples of Southern Nigeria. 4V}, + year = {1926} +} + +@article{bystrom1954, + author = {Bystrom, K.}, + journal = {Orientalia Suecana}, + key = {Bystrom (1954)}, + lgcode = {Ekoi [ejag1239]}, + pages = {3126}, + title = {Notes on the Ekparabong Clan}, + volume = {3}, + year = {1954} +} + +@book{talbot1912, + author = {Talbot, P. A.}, + address = {London}, + glottolog_ref = {eballiso2009:23978}, + key = {Talbot (1912)}, + lgcode = {Ekoi [ejag1239]}, + publisher = {London: William Heinemann}, + title = {In the Shadow of the Bush}, + year = {1912} +} + +@phdthesis{simmons1957, + author = {Simmons, D. C.}, + key = {Simmons (1957)}, + lgcode = {Efik [efik1245]}, + school = {Yale University}, + title = {The Influence of Various Christian Sects on an indigenous African Society}, + year = {1957} +} + +@article{simmons1960, + author = {Simmons, D. C.}, + journal = {Africa}, + key = {Simmons (1960)}, + lgcode = {Efik [efik1245]}, + pages = {153-165}, + title = {Sexual Life, Marriage, and Childhood Among the Efik}, + volume = {30}, + year = {1960} +} + +@article{neel1913, + author = {Neel, H.}, + journal = {Anthropologie}, + key = {Neel (1913)}, + lgcode = {Kissi [nort2765]}, + pages = {445-475}, + title = {Note sur deux peuplades de la frontiere liberienne}, + volume = {24}, + year = {1913} +} + +@book{paulme1954, + author = {Paulme, D.}, + address = {Paris}, + key = {Paulme (1954)}, + lgcode = {Kissi [nort2765]}, + title = {Les gens du riz}, + year = {1954} +} + +@book{talbot1915, + author = {Talbot, D. A.}, + address = {London}, + key = {Talbot (1915)}, + lgcode = {Ibibio [ibib1240]}, + title = {Woman's Mysteries of a Primitive People}, + year = {1915} +} + +@book{talbot1923, + author = {Talbot, P. A.}, + address = {London}, + key = {Talbot (1923)}, + lgcode = {Ibibio [ibib1240]}, + title = {Life in Southern Nigeria}, + year = {1923} +} + +@article{granvilleandroth1898, + author = {Granville, R. K. and Roth., F. N.}, + journal = {Journ. Roy Anth. Inst.}, + key = {Granville and Roth (1898)}, + lgcode = {Ijaw [kala1381]}, + pages = {104-126}, + title = {Notes on the Jekris, Sobos ad Ijos of the Warri District}, + volume = {28}, + year = {1898} +} + +@book{talbot1932, + author = {Talbot, P. A.}, + address = {London}, + glottolog_ref = {eballiso2009:2335}, + key = {Talbot (1932)}, + lgcode = {Ijaw [kala1381]}, + publisher = {London: The Sheldon Press}, + title = {Tribes of the Niger Delta}, + year = {1932} +} + +@book{lloyd1957, + author = {Lloyd, P. C.}, + editor = {Bradbury, R.E.}, + address = {London}, + glottolog_ref = {hh:e:Lloyd:Itsekiri}, + key = {Lloyd (1957)}, + lgcode = {Itsekiri [isek1239]}, + pages = {172-216}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {The Itsekiri}, + volume = {13}, + year = {1957} +} + +@book{omoneukanrin1942, + author = {Omoneukanrin, C. O.}, + key = {Omoneukanrin (1942)}, + lgcode = {Itsekiri [isek1239]}, + title = {Itsekiri Law and Custom}, + year = {1942} +} + +@incollection{ottenberg1960, + author = {Ottenberg, S.}, + editor = {Wallace, A. F. C.}, + address = {Philadelphia}, + booktitle = {Selected Papers of the Fifth International Congress of Anthropological Sciences}, + key = {Ottenberg (1960)}, + lgcode = {Afikpo [afik1238]}, + pages = {473-481}, + title = {Double Descent in an Ibo Village-Group}, + year = {1960} +} + +@incollection{ottenberg1965a, + author = {Ottenberg, P.}, + editor = {Gibbs, J. L.}, + address = {New York}, + booktitle = {Peoples of Africa}, + key = {Ottenberg (1965a)}, + lgcode = {Afikpo [afik1238]}, + pages = {1-39}, + title = {The Afikpo Ibo of Eastern Nigeria}, + year = {1965} +} + +@incollection{ottenberg1965b, + author = {Ottenberg, S.}, + editor = {Derrett, J. D. M.}, + address = {London}, + booktitle = {Studies in the Laws of Succession in Nigeria}, + key = {Ottenberg (1965b)}, + lgcode = {Afikpo [afik1238]}, + pages = {33-90}, + title = {Inheritance and Succession in Afikpo}, + year = {1965} +} + +@book{bradbury1957, + author = {Bradbury, R. E.}, + address = {London}, + glottolog_ref = {eballiso2009:1480}, + key = {Bradbury (1957)}, + lgcode = {Edo [bini1246], Isoko [isok1239], Kukuruku [yekh1238]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {The Benin Kingdom and the Edo-speaking Peoples of Southwestern Nigeria}, + volume = {13}, + year = {1957} +} + +@book{roth1903, + author = {Roth, H. L.}, + address = {Halifax}, + key = {Roth (1903)}, + lgcode = {Edo [bini1246]}, + title = {Great Benin}, + year = {1903} +} + +@book{thomas1910, + author = {Thomas, N. W.}, + address = {London}, + key = {Thomas (1910)}, + lgcode = {Edo [bini1246], Kukuruku [yekh1238]}, + title = {Anthropological Report on the Edo-speaking Peoples of Nigeria. 2V} +} + +@article{welch1934, + author = {Welch, T. W.}, + glottolog_ref = {eballiso2009:25587}, + journal = {Africa}, + key = {Welch (1934)}, + lgcode = {Isoko [isok1239]}, + pages = {160-173}, + title = {The Isoko Tribe}, + volume = {7}, + year = {1934} +} + +@book{fordeetal1955, + author = {Forde, D. and Brown, P. and Armstrong, R. G.}, + address = {London}, + glottolog_ref = {eballiso2009:51521}, + key = {Forde et al. (1955)}, + lgcode = {Eloyi [eloy1241], Idoma [idom1241], Igala [igal1242]}, + publisher = {London: International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {Peoples of the Niger-Benue Confluence}, + volume = {10}, + year = {1955} +} + +@article{tschudi1956, + author = {Tschudi, J.}, + journal = {Baessler-Arch.}, + key = {Tschudi (1956)}, + lgcode = {Eloyi [eloy1241]}, + pages = {147-171}, + title = {Aus dem sozialen Leben der Afo}, + volume = {39}, + year = {1956} +} + +@book{gunnandconant1960, + author = {Gunn, H. D. and Conant, F. P.}, + address = {London}, + key = {Gunn and Conant (1960)}, + lgcode = {Basa [basa1282], Basakomo [basa1282], Gbagyi [gbar1246], Kamuku [cind1241], Koro [ashe1269], Reshe [resh1242]}, + title = {Peoples of the Middle Niger Region}, + year = {1960} +} + +@article{armstrong1954, + author = {Armstrong, R. G.}, + journal = {American Anthropologist}, + key = {Armstrong (1954)}, + lgcode = {Idoma [idom1241]}, + pages = {1051-1075}, + title = {A West African Inquest}, + volume = {56}, + year = {1954} +} + +@book{temple1922, + author = {Temple, O.}, + glottolog_ref = {hh:h:Temple:NNigeria}, + key = {Temple (1922)}, + lgcode = {Idoma [idom1241], Yergum [taro1263], Yungur [bena1260]}, + note = {2nd edit}, + pages = {xiii+577}, + publisher = {Cape Town: Argus}, + title = {Notes on the Tribes, Provinces, Emirates and States of the Northern Provinces of Nigeria Compiled from Official Reports by O. Temple}, + year = {1922} +} + +@book{busia1951, + author = {Busia, K. A.}, + address = {London}, + key = {Busia (1951)}, + lgcode = {Ashanti [asan1239]}, + title = {The Position of the Chief in the Modern Political System of Ashanti}, + year = {1951} +} + +@incollection{busia1954, + author = {Busia, K. A.}, + editor = {Forde, D.}, + address = {London}, + booktitle = {African Worlds}, + key = {Busia (1954)}, + lgcode = {Ashanti [asan1239]}, + pages = {190-209}, + title = {The Ashanti of the Gold Coast}, + year = {1954} +} + +@incollection{fortes1949b, + author = {Fortes, M.}, + editor = {Fortes, M.}, + address = {Oxford}, + booktitle = {Social Structure}, + key = {Fortes (1949b)}, + lgcode = {Ashanti [asan1239]}, + pages = {54-84}, + title = {Time and Social Structure: An Ashanti Case Study}, + year = {1949} +} + +@incollection{fortes1950, + author = {Fortes, M.}, + editor = {Radcliffe-Brown, A. R. and Forde, D.}, + address = {London}, + booktitle = {African Studies of Kinship and Marriage}, + glottolog_ref = {eballiso2009:10091}, + key = {Fortes (1950)}, + lgcode = {Ashanti [asan1239]}, + pages = {252-284}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + title = {Kinship and Marriage Among the Ashanti}, + year = {1950} +} + +@misc{fortes1969, + author = {Fortes, M.}, + address = {Chicago}, + key = {Fortes (1969)}, + lgcode = {Ashanti [asan1239]}, + title = {Kinship and the Social Order}, + year = {1969} +} + +@article{fortesetal1947, + author = {Fortes, M. and Steel, R. W. and Ady, P.}, + journal = {Geographical Journal}, + key = {Fortes et al. (1947)}, + lgcode = {Ashanti [asan1239]}, + pages = {149-179}, + title = {Ashanti Survey, 1945-46}, + volume = {110}, + year = {1947} +} + +@book{lystad1958, + author = {Lystad, R. A.}, + glottolog_ref = {eballiso2009:53569}, + key = {Lystad (1958)}, + lgcode = {Ashanti [asan1239]}, + publisher = {New York}, + title = {The Ashanti}, + year = {1958} +} + +@book{manoukian1950, + author = {Manoukian, M.}, + address = {London}, + glottolog_ref = {eballiso2009:5275}, + key = {Manoukian (1950)}, + lgcode = {Ashanti [asan1239], Fante [fant1241], Ga [gaaa1244]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {Akan and Ga-Adangme Peoples of the Gold Coast}, + volume = {1}, + year = {1950} +} + +@book{rattray1916, + author = {Rattray, R. S.}, + address = {Oxford}, + key = {Rattray (1916)}, + lgcode = {Ashanti [asan1239]}, + title = {Ashanti Proverbs}, + year = {1916} +} + +@book{rattray1923, + author = {Rattray, R. S.}, + address = {Oxford}, + glottolog_ref = {eballiso2009:34737}, + key = {Rattray (1923)}, + lgcode = {Ashanti [asan1239]}, + publisher = {Oxford: Clarendon Press}, + title = {Ashanti}, + year = {1923} +} + +@book{rattray1927, + author = {Rattray, R. S.}, + address = {Oxford}, + glottolog_ref = {eballiso2009:23237}, + key = {Rattray (1927)}, + lgcode = {Ashanti [asan1239]}, + publisher = {Oxford: Clarendon Press}, + title = {Religion and Art in Ashanti}, + year = {1927} +} + +@book{rattray1929, + author = {Rattray, R. S.}, + address = {London}, + glottolog_ref = {eballiso2009:32876}, + key = {Rattray (1929)}, + lgcode = {Ashanti [asan1239]}, + publisher = {Oxford: Clarendon Press}, + title = {Ashanti Law and Constitution}, + year = {1929} +} + +@article{service1963, + author = {Service, E. E.}, + address = {New York}, + journal = {Profiles in Ethnology}, + key = {Service (1963)}, + lgcode = {Ashanti [asan1239]}, + pages = {366-386}, + title = {The Ashanti of West Africa}, + year = {1963} +} + +@incollection{wilks1967, + author = {Wilks, I.}, + editor = {Forde, D. and Kaberry, P. M.}, + address = {London}, + booktitle = {West African Kingdoms in the Nineteenth Century}, + key = {Wilks (1967)}, + lgcode = {Ashanti [asan1239]}, + pages = {206-238}, + title = {Ashanti Government}, + year = {1967} +} + +@book{wilks1975, + author = {Wilks, I.}, + glottolog_ref = {eballiso2009:59790}, + key = {Wilks (1975)}, + lgcode = {Ashanti [asan1239]}, + publisher = {Cambridge Univ. Press}, + title = {Asante in the nineteenth century: the structure and evolution of a political order}, + year = {1975} +} + +@article{clifford1936, + author = {Clifford, M.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Clifford (1936)}, + lgcode = {Igala [igal1242]}, + pages = {393-436}, + title = {A Nigerian Chiefdom}, + volume = {66}, + year = {1936} +} + +@book{mocklerferryman1892, + author = {Mockler-Ferryman, A. F.}, + address = {London}, + key = {Mockler-Ferryman (1892)}, + lgcode = {Igala [igal1242]}, + title = {Up the Niger}, + year = {1892} +} + +@article{seton192930, + author = {Seton, R. S.}, + journal = {Journ. Afr. Soc.}, + key = {Seton (1929-30)}, + lgcode = {Igala [igal1242]}, + pages = {42-52, 149-163}, + title = {The Igala Tribe}, + volume = {29}, + year = {1929-30} +} + +@book{ajisafe1924, + author = {Ajisafe, A. K.}, + address = {London}, + glottolog_ref = {eballiso2009:59283}, + key = {Ajisafe (1924)}, + lgcode = {Egba [egba1238]}, + publisher = {London: George Routledge & Sons}, + title = {The laws and customs of the Yoruba people}, + year = {1924} +} + +@book{forde1951, + author = {Forde, D.}, + address = {London}, + glottolog_ref = {eballiso2009:13680}, + key = {Forde (1951)}, + lgcode = {Egba [egba1238], Ekiti [ekit1244], Ife [ifee1241], Oyo Yoruba [ilaa1245]}, + publisher = {London: International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {The Yoruba-speaking Peoples of Southwestern Nigeria}, + volume = {4}, + year = {1951} +} + +@article{lloyd1955, + author = {Lloyd, P. C.}, + journal = {Africa}, + key = {Lloyd (1955)}, + lgcode = {Ekiti [ekit1244], Oyo Yoruba [ilaa1245]}, + pages = {235-251}, + title = {The Yoruba Lineage}, + volume = {25}, + year = {1955} +} + +@incollection{lloyd1965, + author = {Lloyd, P. C.}, + editor = {Giggs, J. L.}, + address = {New York}, + booktitle = {Peoples of Africa}, + key = {Lloyd (1965)}, + lgcode = {Ekiti [ekit1244]}, + pages = {547-582}, + title = {The Yoruba of Nigeria}, + year = {1965} +} + +@article{ward1937, + author = {Ward, E.}, + journal = {Catholic University of America Anthropological Series}, + key = {Ward (1937)}, + lgcode = {Ekiti [ekit1244]}, + pages = {1-55}, + title = {Marriage Among the Yoruba}, + volume = {4}, + year = {1937} +} + +@article{bascom1942, + author = {Bascom, W. R.}, + journal = {American Anthropologist}, + key = {Bascom (1942)}, + lgcode = {Ife [ifee1241]}, + pages = {37-46}, + title = {The Principle of Seniority in the Social Structure of the Yoruba}, + volume = {44}, + year = {1942} +} + +@article{bascom1944, + author = {Bascom, W. R.}, + glottolog_ref = {eballiso2009:2024}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Bascom (1944)}, + lgcode = {Ife [ifee1241]}, + pages = {1-175}, + publisher = {Menasha WI}, + series = {Memoirs of the American Anthropological Ass.}, + title = {The Sociological Role of the Yoruba Cult-Group}, + volume = {63}, + year = {1944} +} + +@article{daniell1856, + author = {Daniell, W. F.}, + journal = {Journ. Ethnol. Soc. London}, + key = {Daniell (1856)}, + lgcode = {Adangme [adan1247], Ga [gaaa1244]}, + pages = {1-32}, + title = {On the Ethnography of Akkrah and Adampe}, + volume = {4}, + year = {1856} +} + +@article{field1943, + author = {Field, M. J.}, + journal = {Africa}, + key = {Field (1943)}, + lgcode = {Adangme [adan1247]}, + pages = {54-65}, + title = {The AGricultural System of the Manya-Krobo of the Gold Coast}, + volume = {14}, + year = {1943} +} + +@article{halleran1951, + author = {Halleran, T.}, + journal = {Anthropos}, + key = {Halleran (1951)}, + lgcode = {Adangme [adan1247]}, + pages = {996-997}, + title = {Krobo Marriage Customs}, + volume = {46}, + year = {1951} +} + +@article{asmis1911, + author = {Asmis, G.}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + key = {Asmis (1911)}, + lgcode = {Buem [siwu1238], Ewe [aguu1242]}, + pages = {1-133}, + title = {Die Stammesrechte der Bezirke Misahohe, Anecho und Lome-Land}, + volume = {22}, + year = {1911} +} + +@book{klose1899, + author = {Klose, H.}, + address = {Berlin}, + key = {Klose (1899)}, + lgcode = {Basari [ntch1242], Ewe [aguu1242]}, + title = {Togo unter deutscher Flagge}, + year = {1899} +} + +@book{manoukian1952a, + author = {Manoukian, M.}, + address = {London}, + glottolog_ref = {eballiso2009:5274}, + key = {Manoukian (1952a)}, + lgcode = {Ewe [aguu1242]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {The Ewe-speaking People of Togoland and the Gold Coast}, + volume = {6}, + year = {1952} +} + +@book{spieth1906, + author = {Spieth, J.}, + address = {Berlin}, + key = {Spieth (1906)}, + lgcode = {Ewe [aguu1242]}, + title = {Die Ewe-Stamme}, + year = {1906} +} + +@book{spieth1911, + author = {Spieth, J.}, + address = {Berlin}, + glottolog_ref = {eballiso2009:43142}, + key = {Spieth (1911)}, + lgcode = {Ewe [aguu1242]}, + publisher = {Göttingen: Dieterich'sen Buchhandlung}, + series = {Religions-Urkunden der Völker, 4. Abt.}, + title = {Die Religion der Eweer in Sud-Togo}, + volume = {2}, + year = {1911} +} + +@book{westermann1935, + author = {Westermann, D.}, + address = {Berlin}, + key = {Westermann (1935)}, + lgcode = {Ewe [aguu1242]}, + title = {Die Glidyi-Ewe in Togo}, + year = {1935} +} + +@article{hinderling195253, + author = {Hinderling, P.}, + journal = {Tribus}, + key = {Hinderling (1952-53)}, + lgcode = {Buem [siwu1238]}, + pages = {361-378}, + title = {Notizen von den Togo-Restvölkern}, + volume = {1952-53}, + year = {1952-53} +} + +@book{plehn1898, + author = {Plehn, R.}, + address = {Halle}, + key = {Plehn (1898)}, + lgcode = {Buem [siwu1238]}, + title = {Beiträge zur Völkerkunde des Togogebietes}, + year = {1898} +} + +@article{alland1963, + author = {Alland, A.}, + journal = {Ethnology}, + key = {Alland (1963)}, + lgcode = {Abron [abro1238]}, + pages = {276-281}, + title = {Residence, Domicile, and Descent Groups Among the Abrong}, + volume = {2}, + year = {1963} +} + +@book{clozelandvillamur1902, + author = {Clozel, F. J. and Villamur., R.}, + address = {Paris}, + glottolog_ref = {eballiso2009:9396}, + key = {Clozel and Villamur (1902)}, + lgcode = {Abron [abro1238], Alagya [alla1248], Anyi [anyi1245], Avikam [avik1243], Bakwe [bakw1243], Baule [baou1238]}, + publisher = {Paris: Augustin Challamel}, + title = {Les coutumes indigenes de la Cote d'Ivorie}, + year = {1902} +} + +@book{tauxier1921, + author = {Tauxier, L.}, + address = {Paris}, + key = {Tauxier (1921)}, + lgcode = {Abron [abro1238], Diula [dyul1238], Kulango [boun1243]}, + title = {Le noir de Bondoukou}, + year = {1921} +} + +@article{kobben1956, + author = {Kobben, A. J.}, + journal = {Et. Eburneennes}, + key = {Kobben (1956)}, + lgcode = {Anyi [anyi1245], Bete [dalo1238]}, + pages = {7-190}, + title = {Le planteur noir}, + volume = {5}, + year = {1956} +} + +@book{tauxier1932, + author = {Tauxier, L.}, + address = {Paris}, + key = {Tauxier (1932)}, + lgcode = {Anyi [anyi1245]}, + title = {Religion, mocurs et coutumes des Agnis}, + year = {1932} +} + +@book{villamuranddelafosse1904, + author = {Villamur, R. and DelAfosse., M.}, + address = {Paris}, + key = {Villamur and DelAfosse (1904)}, + lgcode = {Anyi [anyi1245]}, + title = {Les coutumes agni}, + year = {1904} +} + +@article{forde1939, + author = {Forde, C. D.}, + journal = {Africa}, + key = {Forde (1939)}, + lgcode = {Yako [loka1252]}, + pages = {129-162}, + title = {Government in Umor}, + volume = {12}, + year = {1939} +} + +@article{forde1941, + author = {Forde, C. D.}, + journal = {London School of Economics Monographs on Social Anthropology}, + key = {Forde (1941)}, + lgcode = {Yako [loka1252]}, + pages = {1-121}, + title = {Marriage and the Family Among the Yako}, + volume = {5}, + year = {1941} +} + +@incollection{forde1950, + author = {Forde, C. D.}, + editor = {Radcliffe-Brown and Forde}, + address = {London, New York & Toronto}, + booktitle = {African systems of kinship and marriage}, + glottolog_ref = {eballiso2009:25048}, + key = {Forde (1950)}, + lgcode = {Yako [loka1252]}, + pages = {285-332}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + title = {Double Descent Among the Yako}, + year = {1950} +} + +@article{forde1952, + author = {Forde, C. D.}, + journal = {Geographical Journal}, + key = {Forde (1952)}, + lgcode = {Yako [loka1252]}, + pages = {24-51}, + title = {Land and Labour in a Cross River Village}, + volume = {90}, + year = {1952} +} + +@book{forde1964, + author = {Forde, C. D.}, + address = {London}, + key = {Forde (1964)}, + lgcode = {Yako [loka1252]}, + title = {Yako Studies}, + year = {1964} +} + +@incollection{loyer1745, + author = {Loyer, G.}, + editor = {Astley, T.}, + addresss = {London}, + booktitle = {New General Collection of Voyages and Travels}, + key = {Loyer (1745)}, + lgcode = {Assini [abur1243]}, + pages = {417-448}, + title = {Abstract of a Voyage to Issini}, + volume = {2}, + year = {1745} +} + +@book{mouezy1942, + author = {Mouezy, H.}, + address = {Paris}, + key = {Mouezy (1942)}, + lgcode = {Assini [abur1243]}, + title = {Assinie et le royaume de Krinjabo}, + year = {1942} +} + +@article{reichenbach1890, + author = {Reichenbach, J. C.}, + journal = {Bull. Soc. Geog. ser. 7}, + key = {Reichenbach (1890)}, + lgcode = {Assini [abur1243]}, + pages = {310-349}, + title = {Etude sur le royaume d'Assinie}, + volume = {11}, + year = {1890} +} + +@article{crosson1900, + author = {Crosson.}, + journal = {Rens. Colon. Doc. Com. Afr. Franc.}, + key = {Crosson (1900)}, + lgcode = {Attie [atti1239]}, + pages = {93-99, 111-118}, + title = {L'thnographie de la Cote d'Ivoire}, + volume = {10}, + year = {1900} +} + +@book{dreyfus1900, + author = {Dreyfus, C.}, + address = {Paris}, + key = {Dreyfus (1900)}, + lgcode = {Attie [atti1239]}, + title = {Six mois dans l'Attie}, + year = {1900} +} + +@article{vincenti1922, + author = {Vincenti, J.}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Vincenti (1922)}, + lgcode = {Attie [atti1239]}, + pages = {58-76}, + title = {Coutumes attie}, + volume = {5}, + year = {1922} +} + +@book{christensen1954, + author = {Christensen, J. B.}, + address = {New Haven}, + glottolog_ref = {eballiso2009:20218}, + key = {Christensen (1954)}, + lgcode = {Fante [fant1241]}, + publisher = {New Haven CN: Human Relations Area Files}, + series = {Behavioral science monographs}, + title = {Double Descent Among the Fanti}, + volume = {4}, + year = {1954} +} + +@article{conolly1897, + author = {Conolly, R. M. V-6.}, + journal = {Anthropological Institute of Great Britain and Ireland, Journal}, + key = {Conolly (1897)}, + lgcode = {Fante [fant1241]}, + pages = {128-53}, + title = {Social life in Fanti-land}, + volume = {26}, + year = {1897} +} + +@article{ffoulkes1908, + author = {Ffoulkes, A.}, + glottolog_ref = {eballiso2009:39270}, + journal = {Journ. Afr. Soc.}, + key = {Ffoulkes (1908)}, + lgcode = {Fante [fant1241]}, + pages = {394-409}, + title = {The Fanti Family System}, + volume = {7}, + year = {1908} +} + +@article{ffoulkes1909, + author = {Ffoulkes, A.}, + journal = {Journ. Afr. Soc.}, + key = {Ffoulkes (1909)}, + lgcode = {Fante [fant1241]}, + pages = {31-48}, + title = {Fanti Marriage Customs}, + volume = {8}, + year = {1909} +} + +@book{sarbah1897, + author = {Sarbah, J. M.}, + key = {Sarbah (1897)}, + lgcode = {Fante [fant1241]}, + title = {Fanti Customary Law}, + year = {1897} +} + +@book{field1937, + author = {Field, M. J.}, + address = {London}, + key = {Field (1937)}, + lgcode = {Ga [gaaa1244]}, + title = {Religion and Medicine of the Ga People}, + year = {1937} +} + +@book{field1940, + author = {Field, M. J.}, + address = {London}, + glottolog_ref = {eballiso2009:32512}, + key = {Field (1940)}, + lgcode = {Ga [gaaa1244]}, + publisher = {Accra: Crown Agents for the Colonies}, + title = {Social Organization of the Ga People}, + year = {1940} +} + +@article{grivot1942, + author = {Grivot, R.}, + journal = {Bull. Inst. Franc. Afr. Noire}, + key = {Grivot (1942)}, + lgcode = {Avikam [avik1243]}, + pages = {1-154}, + title = {Le cercle de Lahous}, + volume = {4}, + year = {1942} +} + +@article{coutouly1920, + author = {Coutouly, F. de.}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Coutouly (1920)}, + lgcode = {Bakwe [bakw1243]}, + pages = {79-98}, + title = {Quelques coutumes des Kroumen du Bas-Cavally}, + volume = {3}, + year = {1920} +} + +@book{beckerdonner1944, + author = {Becker-Donner, E.}, + glottolog_ref = {weball:1957}, + key = {Becker-Donner (1944)}, + lgcode = {Krahn [west2488]}, + pages = {1-70}, + publisher = {Wien}, + series = {Wiener Beiträge zur Kulturgeschichte und Linguisti}, + title = {Über zwei Kruvölkerstämme: Kran und Grebo}, + volume = {6}, + year = {1944} +} + +@book{wilson1856, + author = {Wilson, J. L.}, + address = {New York}, + key = {Wilson (1856)}, + lgcode = {Kru [klao1243]}, + title = {Western Africa}, + year = {1856} +} + +@article{bockani1945, + author = {Bockani, J.}, + journal = {Farm and Forest}, + key = {Bockani (1945)}, + lgcode = {Mende [mend1266]}, + number = {2}, + pages = {104-105}, + title = {Mende Warfare}, + volume = {6}, + year = {1945} +} + +@article{crosby1937, + author = {Crosby, K. H.}, + journal = {Africa}, + key = {Crosby (1937)}, + lgcode = {Mende [mend1266]}, + pages = {249-264}, + title = {Polygamy in Mende Country}, + volume = {10}, + year = {1937} +} + +@article{little1947, + author = {Little, K. L.}, + journal = {Africa}, + key = {Little (1947)}, + lgcode = {Mende [mend1266]}, + pages = {8-23}, + title = {Mende Political Institutions in Transition}, + volume = {17}, + year = {1947} +} + +@article{little1948, + author = {Little, K. L.}, + journal = {Sociological Review}, + key = {Little (1948)}, + lgcode = {Mende [mend1266]}, + pages = {37-56}, + title = {The Mende Farming Household}, + volume = {40}, + year = {1948} +} + +@book{little1951, + author = {Little, K. L.}, + address = {London}, + glottolog_ref = {eballiso2009:45998}, + key = {Little (1951)}, + lgcode = {Mende [mend1266]}, + publisher = {London: Kegan Paul}, + title = {The Mende of Sierra Leone}, + year = {1951} +} + +@incollection{little1954, + author = {Little, K. L.}, + editor = {Forde, D.}, + address = {London}, + booktitle = {African Worlds}, + key = {Little (1954)}, + lgcode = {Mende [mend1266]}, + pages = {111-137}, + title = {The Mende in Sierra Leone}, + year = {1954} +} + +@incollection{little1970, + author = {Little, K. L.}, + editor = {Middleton, J.}, + address = {New York}, + booktitle = {From Child to Adult}, + key = {Little (1970)}, + lgcode = {Mende [mend1266]}, + title = {The Social Cycle and Initiation among the Mende}, + year = {1970} +} + +@book{staub1936, + author = {Staub, J.}, + address = {Solothurn}, + key = {Staub (1936)}, + lgcode = {Mende [mend1266]}, + title = {Beitrage zur Kenntnis der materiellen Kultur der Mendi}, + year = {1936} +} + +@article{chevalier1908, + author = {Chevalier, A.}, + journal = {Geographie}, + key = {Chevalier (1908)}, + lgcode = {Dan [gwee1242]}, + pages = {207-224}, + title = {Les Massifs montagneux du rd-ouest de la Cote d'Ivoire}, + volume = {20}, + year = {1908} +} + +@book{himmelheberandhimmelheber1958, + author = {Himmelheber, H. and Himmelheber., U.}, + address = {Stuttgart}, + key = {Himmelheber and Himmelheber (1958)}, + lgcode = {Dan [gwee1242]}, + title = {Die Dan}, + year = {1958} +} + +@article{vendeix1924, + author = {Vendeix, M.}, + journal = {Rev. Ethnog. Trad. Pop.}, + key = {Vendeix (1924)}, + lgcode = {Dan [gwee1242]}, + pages = {140-169, 287-294}, + title = {Ethnographie du cercle de Man}, + volume = {5}, + year = {1924} +} + +@book{tauxier1924a, + author = {Tauxier, L.}, + address = {Paris}, + key = {Tauxier (1924a)}, + lgcode = {Gagu [gagu1242], Guro [guro1248]}, + title = {Negres gouro et gagou}, + year = {1924} +} + +@book{holas1962, + author = {Holas, B.}, + address = {Paris}, + key = {Holas (1962)}, + lgcode = {Tura [tour1242]}, + title = {Les Toura}, + year = {1962} +} + +@book{germann1933, + author = {Germann, P.}, + address = {Leipzig}, + glottolog_ref = {eballiso2009:16606}, + key = {Germann (1933)}, + lgcode = {Gbande [band1352]}, + publisher = {Leipzig: R. Voigtlanders Verlag}, + title = {Die Volkerstamme im Norden von Liberia}, + year = {1933} +} + +@article{dazevedo1962, + author = {d'Azevedo, W. L.}, + journal = {American Anthropologist}, + key = {d'Azevedo (1962)}, + lgcode = {Gola [gola1255]}, + pages = {504-520}, + title = {Common Principles of Variant Kinship Structure Among the Gola of Western Liberia}, + volume = {64}, + year = {1962} +} + +@book{viard1934, + author = {Viard, L.}, + address = {Paris}, + key = {Viard (1934)}, + lgcode = {Ngere [dann1241]}, + title = {Les Gueres}, + year = {1934} +} + +@article{langley1939, + author = {Langley, E. R.}, + journal = {Sierra Leone Stud.}, + key = {Langley (1939)}, + lgcode = {Temne [timn1235]}, + pages = {64-80}, + title = {The Temne}, + volume = {12}, + year = {1939} +} + +@article{delafosse1899, + author = {DelAfosse, M.}, + journal = {Anthropologie}, + key = {DelAfosse (1899)}, + lgcode = {Vai [vaii1241]}, + pages = {129-250, 294-314}, + title = {Les Vai}, + volume = {10}, + year = {1899} +} + +@book{ellis1914, + author = {Ellis, G. W.}, + address = {New York}, + key = {Ellis (1914)}, + lgcode = {Vai [vaii1241]}, + title = {Negro Culture in West Africa}, + year = {1914} +} + +@article{ronnefeldt1935, + author = {Ronnefeldt, F.}, + journal = {Zeitschrift für Ethnologie}, + key = {Ronnefeldt (1935)}, + lgcode = {Vai [vaii1241]}, + pages = {317-321}, + title = {Die Heiratssitten der Vai}, + volume = {67}, + year = {1935} +} + +@article{schwab1955, + author = {Schwab, W. B.}, + journal = {Africa}, + key = {Schwab (1955)}, + lgcode = {Oyo Yoruba [ilaa1245]}, + pages = {352-374}, + title = {Kinship and Lineage Among the Yoruba}, + volume = {25}, + year = {1955} +} + +@article{dunglas1939, + author = {Dunglas, E.}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + key = {Dunglas (1939)}, + lgcode = {Bete [dalo1238]}, + pages = {361-451}, + title = {Coutumes et moeurs des Bete}, + volume = {10}, + year = {1939} +} + +@article{hallouin1947, + author = {Hallouin, J.}, + journal = {Bull. Inst. Franc. Afr. Noire}, + key = {Hallouin (1947)}, + lgcode = {Bete [dalo1238]}, + pages = {18-55}, + title = {Geographie humaine de la subdivision de Daloa}, + volume = {9}, + year = {1947} +} + +@book{paulme1962, + author = {Paulme, D.}, + address = {Paris}, + glottolog_ref = {eballiso2009:15633}, + key = {Paulme (1962)}, + lgcode = {Bete [dalo1238]}, + publisher = {Paris: Mouton & Co.}, + series = {Monde d'outre-mer = Le monde d'outre-mer, passé et présent, deuxième série, documents}, + title = {Une societe de Cote d'Ivoire hier et aujourdi'hui: Les Bete}, + volume = {8}, + year = {1962} +} + +@book{banfieldandmacintyre1915, + author = {Banfield, A. W. and V-3., J. I. MacIntyre.}, + address = {London}, + glottolog_ref = {hh:g:BanfieldMacintyre:Nupe}, + key = {Banfield and MacIntyre (1915)}, + lgcode = {Nupe [nupe1254]}, + pages = {186}, + publisher = {Society for the Promotion of Christian Knowledge}, + title = {A grammar of the Nupe language}, + year = {1915} +} + +@article{forde1955, + author = {Forde, Daryll}, + address = {London}, + glottolog_ref = {eballiso2009:51521}, + journal = {In Peoples of the Niger-Benve confluence, edited by Daryll Ford, International African Institute, Ethnographic Survey of Africa, Western African, pt.}, + key = {Forde (1955)}, + lgcode = {Nupe [nupe1254]}, + pages = {17-52}, + publisher = {London: International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {The Nupe}, + volume = {10}, + year = {1955} +} + +@incollection{nadel1940, + author = {Nadel, S. F.}, + editor = {Fortes and Evans-Pritchard}, + address = {London}, + booktitle = {African Political Systems}, + key = {Nadel (1940)}, + lgcode = {Nupe [nupe1254]}, + pages = {165-195}, + title = {The Kede}, + year = {1940} +} + +@book{nadel1942, + author = {Nadel, S. F.}, + address = {London}, + key = {Nadel (1942)}, + lgcode = {Nupe [nupe1254]}, + title = {A Black Byzantium}, + year = {1942} +} + +@book{nadel1954, + author = {Nadel, S. F.}, + address = {London}, + key = {Nadel (1954)}, + lgcode = {Nupe [nupe1254]}, + title = {Nupe Religion}, + year = {1954} +} + +@article{labouret1914, + author = {Labouret, H.}, + journal = {Rev. Ethnog. Sociol.}, + key = {Labouret (1914)}, + lgcode = {Baule [baou1238]}, + pages = {83-91, 181-194}, + title = {Notes contributives a l'etude du peuple Baoule}, + volume = {5}, + year = {1914} +} + +@book{menalque1933, + author = {Menalque, M.}, + address = {Paris}, + key = {Menalque (1933)}, + lgcode = {Baule [baou1238]}, + title = {Coutumes civiles des Baoules}, + year = {1933} +} + +@book{dieterlen1951, + author = {Dieterlen, G.}, + address = {Paris}, + glottolog_ref = {eballiso2009:17734}, + key = {Dieterlen (1951)}, + lgcode = {Bambara [bamb1269]}, + publisher = {Paris: Presses Universitaires de France}, + series = {Bibl. de sociologie contemporain}, + title = {Essai sur la religion Bambara}, + volume = {bl. de sociologie contemporaine}, + year = {1951} +} + +@book{dieterlenandcisse1972, + author = {Dieterlen, G. and Cisse., Y.}, + address = {Paris}, + glottolog_ref = {eballiso2009:16502}, + key = {Dieterlen and Cisse (1972)}, + lgcode = {Bambara [bamb1269]}, + publisher = {Paris: Mouton & Co.}, + series = {Cahiers de l'homme: ethnologie, géographie, linguistique, nouvelle série}, + title = {Les fondaments de la société d`initiation du Komo}, + volume = {10}, + year = {1972} +} + +@book{henry1910, + author = {Henry, J.}, + key = {Henry (1910)}, + lgcode = {Bambara [bamb1269]}, + number = {ii}, + pages = {1-240}, + series = {Bibliotheque Anthropos}, + title = {L'ame d'un peuple Africain: Les Bambara. Leur vie psychique, ethique, sociale, religieuse}, + volume = {1}, + year = {1910} +} + +@book{monteil1924, + author = {Monteil, Charles}, + address = {Paris}, + key = {Monteil (1924)}, + lgcode = {Bambara [bamb1269]}, + publisher = {G.P. Maisonneuve et Larose}, + title = {Les Bambara du Ségou et du Kaarta}, + year = {1924} +} + +@incollection{monteil1967, + author = {Monteil, Charles.}, + editor = {Forde, D. and Kaberry, P. M.}, + address = {London}, + booktitle = {West African Kingdoms in the Nineteenth Century}, + key = {Monteil (1967)}, + lgcode = {Bambara [bamb1269]}, + pages = {260-281}, + title = {The Wolof Kingdom of Kayor}, + year = {1967} +} + +@book{paques1954, + author = {Paques, Viviana}, + address = {Paris}, + key = {Paques (1954)}, + lgcode = {Bambara [bamb1269]}, + title = {Les Bambara}, + year = {1954} +} + +@article{froelich1949b, + author = {Froelich, J. C.}, + journal = {Bull. Inst. Franc. Afr. Noire}, + key = {Froelich (1949b)}, + lgcode = {Konkomba [konk1269]}, + pages = {409-437}, + title = {Les Konkomba}, + volume = {11}, + year = {1949} +} + +@book{froelichetal1963, + author = {Froelich, J. C. P. Alexandre and Cornevin., R.}, + address = {Paris}, + glottolog_ref = {eballiso2009:53333}, + key = {Froelich et al. (1963)}, + lgcode = {Basari [ntch1242], Kabre [kabi1261], Konkomba [konk1269], Moba [moba1244], Tem [temm1241]}, + publisher = {Paris & London: Presses Universitaires de France; International African Inst. (IAI)}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + title = {Les populations du Nord-Togo}, + volume = {10}, + year = {1963} +} + +@book{manoukian1952b, + author = {Manoukian, M.}, + address = {London}, + glottolog_ref = {eballiso2009:5277}, + key = {Manoukian (1952b)}, + lgcode = {Kasena [kase1253], Konkomba [konk1269], Kusasi [kusa1250], Manprusi [mamp1244], Nankanse [nank1249]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {Tribes of the Northern Territories of the Gold Coast}, + volume = {5}, + year = {1952} +} + +@article{tait1953, + author = {Tait, D.}, + journal = {Africa}, + key = {Tait (1953)}, + lgcode = {Konkomba [konk1269]}, + pages = {213-223}, + title = {The Political System of the Konkomba}, + volume = {32}, + year = {1953} +} + +@article{tait1956, + author = {Tait, D.}, + journal = {Africa}, + key = {Tait (1956)}, + lgcode = {Konkomba [konk1269]}, + pages = {219-249, 332-342}, + title = {The Family, Household, and Minor Lineage of the Konkomba}, + volume = {26}, + year = {1956} +} + +@incollection{tait1958, + author = {Tait, D.}, + editor = {Middleton, J. and Tait, D.}, + address = {London}, + booktitle = {Tribes Without Rulers}, + key = {Tait (1958)}, + lgcode = {Konkomba [konk1269]}, + pages = {167-202}, + title = {The Territorial Pattern and Lineage System of Konkomba}, + year = {1958} +} + +@article{charles1911, + author = {Charles, L.}, + glottolog_ref = {eballiso2009:45348}, + journal = {Rev. Ethnog. Sociol.}, + key = {Charles (1911)}, + lgcode = {Lobi [lobi1245]}, + pages = {202-220}, + title = {Les Lobi}, + volume = {2}, + year = {1911} +} + +@book{haumant1929, + author = {Haumant, J. C.}, + address = {Paris}, + key = {Haumant (1929)}, + lgcode = {Lobi [lobi1245]}, + title = {Les Lobi et leur coutume}, + year = {1929} +} + +@article{labouret1931, + author = {Labouret, H.}, + glottolog_ref = {eballiso2009:42892}, + journal = {Trav. Mem. Inst. Ethnol.}, + key = {Labouret (1931)}, + lgcode = {Birifor [sout2790], Dorosie [dogo1295], Dyan [dyan1251], Lobi [lobi1245]}, + pages = {1-510}, + publisher = {Univ. de Paris}, + series = {Travaux et mémoires de l'Inst. d'Ethnologie}, + title = {Les tribus du Rameau Lobi}, + volume = {15}, + year = {1931} +} + +@book{rattray1932, + author = {Rattray, R. S.}, + address = {Oxford}, + glottolog_ref = {eballiso2009:32885}, + key = {Rattray (1932)}, + lgcode = {Awuna [awun1244], Birifor [sout2790], Builsa [buli1254], Dagara [sout2789], Dagomba [dagb1246], Isala [tumu1242], Kasena [kase1253], Kusasi [kusa1250], Manprusi [mamp1244], Nankanse [nank1249], Tallensi [taln1239], Vagala [vagl1239]}, + publisher = {Clarendon Press}, + title = {The tribes of the Ashanti hinterland. 2V}, + year = {1932} +} + +@book{tauxier1912, + author = {Tauxier, L.}, + address = {Paris}, + key = {Tauxier (1912)}, + lgcode = {Awuna [awun1244], Bobo [nort2819], Builsa [buli1254], Dagara [sout2789], Diula [dyul1238], Isala [tumu1242], Kasena [kase1253], Kunta [hass1238], Mossi (Ouagadougou) [moss1236], Nankanse [nank1249], Nunuma [sout2795], Zenaga [zena1248]}, + title = {Le noir du Soudan}, + year = {1912} +} + +@article{zwernemann1963, + author = {Zwernemann, J.}, + journal = {Tribus}, + key = {Zwernemann (1963)}, + lgcode = {Kasena [kase1253]}, + pages = {33-103}, + title = {Zur Sozialordnung der Kasena von Po}, + volume = {12}, + year = {1963} +} + +@book{aberle1953, + author = {Aberle, David F.}, + key = {Aberle (1953)}, + lgcode = {Baga [mbul1258], Kalmyk [kalm1243]}, + number = {8}, + pages = {1-48}, + series = {University of New Mexico Publications in Anthropology}, + title = {The Kinship System of the Kalmuk Mongols}, + year = {1953} +} + +@book{krader1963, + author = {Krader, L.}, + address = {The Hague}, + key = {Krader (1963)}, + lgcode = {Baga [mbul1258], Buryat [russ1264], Tu [tuuu1240]}, + title = {Social Organization of the Mongol-Turkic Pastoral Nomads}, + year = {1963} +} + +@article{meo1919, + author = {Meo.}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Meo (1919)}, + lgcode = {Baga [mbul1258]}, + pages = {281-317, 341-369}, + title = {Etudes sur le Rio-Nunez}, + volume = {2}, + year = {1919} +} + +@article{paulme1956, + author = {Paulme, D.}, + journal = {Bull. Inst. Franc. Af. Noire, ser. B, Scien. Hum.}, + key = {Paulme (1956)}, + lgcode = {Baga [mbul1258]}, + pages = {98-118}, + title = {Structures sociales en pays baga}, + volume = {18}, + year = {1956} +} + +@article{paulme1957, + author = {Paulme, D.}, + journal = {Cahiers d'Outre-mer}, + key = {Paulme (1957)}, + lgcode = {Baga [mbul1258]}, + pages = {257-278}, + title = {Des riziculteurs Africaines: Les Baga}, + volume = {10}, + year = {1957} +} + +@book{vladimirtsov1948, + author = {Vladimirtsov, B.}, + key = {Vladimirtsov (1948)}, + lgcode = {Baga [mbul1258]}, + note = {Michel Carsow, Translator}, + series = {Publications due Musee Guimet, Bibliotheque d'Etudes}, + title = {Le Regime Social des Mongols}, + volume = {52}, + year = {1948} +} + +@book{bernatzik1933, + author = {Bernatzik, H. A.}, + address = {Wien}, + key = {Bernatzik (1933)}, + lgcode = {Balanta [bala1301], Banyun [bain1259], Bijogo [bidy1244], Diola [ejam1238], Papel [pape1239]}, + title = {Aethiopien des Westen. 2V}, + year = {1933} +} + +@article{nogueira1947, + author = {Nogueira, A. I. P.}, + glottolog_ref = {weball:15281}, + journal = {Bol. Cultural Guine Port.}, + key = {Nogueira (1947)}, + lgcode = {Banyun [bain1259]}, + pages = {973-1008}, + title = {Monografia sobre a tribo Banhun}, + volume = {2}, + year = {1947} +} + +@article{gomes1946, + author = {Gomes and Barbosa and C., O.}, + glottolog_ref = {hh:ew:Gomes:Biafada}, + journal = {Bol. Cultural Guine Port.}, + key = {Gomes (1946)}, + lgcode = {Biafada [biaf1240]}, + pages = {205-274}, + title = {Breve noticia dos caracteres etnicos dos indigenas da tribo BiAfada}, + volume = {1}, + year = {1946} +} + +@book{bernatzik1944, + author = {Bernatzik, H. A.}, + address = {Innsbruck}, + key = {Bernatzik (1944)}, + lgcode = {Bijogo [bidy1244]}, + title = {Im Reiche der Bidyogo}, + unknown = {Mendes Moreira,. 1946. Beve ensaio etnografico acerca dos Bijagos. Bol. Cultural Guine Port. 1: 69-115.}, + year = {1944} +} + +@article{santoslima1947, + author = {Santos Lima, A. J.}, + journal = {Cent. Estudos Guine Port.}, + key = {Santos Lima (1947)}, + lgcode = {Bijogo [bidy1244]}, + pages = {1-154}, + title = {Organizacao economica e social dos Bijagos}, + volume = {2}, + year = {1947} +} + +@article{cunhataborde1950, + author = {Cunha Taborde, A. de.}, + journal = {Bol. Cultural Guine Port.}, + key = {Cunha Taborde (1950)}, + lgcode = {Diola [ejam1238]}, + pages = {187-223}, + title = {Apontamentos etnograficos sobre as Felupes de Suzana}, + volume = {5}, + year = {1950} +} + +@article{hammond1964, + author = {Hammond, P. B.}, + journal = {Ethnology}, + key = {Hammond (1964)}, + lgcode = {Mossi (Yatenga) [moss1236]}, + pages = {259-267}, + title = {Mossi Joking}, + volume = {3}, + year = {1964} +} + +@book{hammond1966, + author = {Hammond, P. B.}, + address = {New York}, + key = {Hammond (1966)}, + lgcode = {Mossi (Yatenga) [moss1236]}, + title = {Yatenga}, + year = {1966} +} + +@misc{hammondnd, + author = {Hammond, P. B.}, + howpublished = {Unpublished field notes}, + key = {Hammond (nd)}, + lgcode = {Mossi (Yatenga) [moss1236]}, + school = {University of Pittsburgh} +} + +@book{izardheritierandizard1959, + author = {Izard-Heritier, F. and Izard., M.}, + address = {Bordeaux}, + key = {Izard-Heritier and Izard (1959)}, + lgcode = {Mossi (Yatenga) [moss1236]}, + title = {Les Mossi du Yatnga}, + year = {1959} +} + +@book{tauxier1917, + author = {Tauxier, L.}, + address = {Paris}, + key = {Tauxier (1917)}, + lgcode = {Mossi (Yatenga) [moss1236], Samo [sout2844]}, + title = {Le noir du Yatenga}, + year = {1917} +} + +@misc{yatenga1950, + key = {Yatenga (1950)}, + lgcode = {Mossi (Yatenga) [moss1236]}, + note = {Yatenga, Mossi. L: 13N, 2W. T: 1950. P: 700, 000 in 1960. B: I, 125: IV, 248. Additional references.} +} + +@book{lestrange1950, + author = {Lestrange, M. de.}, + address = {Paris}, + key = {Lestrange (1950)}, + lgcode = {Bassari [bass1258], Coniagui [wame1240]}, + title = {Les Coniagui et les Bassari}, + year = {1950} +} + +@article{aujas1931, + author = {Aujas, L.}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Aujas (1931)}, + lgcode = {Serer [sere1260]}, + pages = {293-333}, + title = {Les Sereres du Senegal}, + volume = {14}, + year = {1931} +} + +@article{bourgeau1933, + author = {Bourgeau, J.}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ.}, + key = {Bourgeau (1933)}, + lgcode = {Serer [sere1260]}, + pages = {1-65}, + title = {Notes sur la coutume des Sereres du Sine et du Saloum}, + volume = {16}, + year = {1933} +} + +@article{dulphy1939, + author = {Dulphy, M.}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + key = {Dulphy (1939)}, + lgcode = {Serer [sere1260]}, + pages = {237-321}, + title = {Coutume serere de la Petite-Cote}, + volume = {8}, + year = {1939} +} + +@article{fayet1939, + author = {Fayet, J. C.}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + key = {Fayet (1939)}, + lgcode = {Serer [sere1260]}, + pages = {195-212}, + title = {Coutumes des Sereres N'Doute}, + volume = {8}, + year = {1939} +} + +@book{monteil1915, + author = {Monteil, Charles}, + address = {Paris}, + key = {Monteil (1915)}, + lgcode = {Kasonke [xaas1235]}, + title = {Les Khassonke}, + year = {1915} +} + +@article{chevalier1909, + author = {Chevalier, A.}, + journal = {Geographie}, + key = {Chevalier (1909)}, + lgcode = {Koranko [kura1250]}, + pages = {337-352}, + title = {La region des sources du Niger}, + volume = {19}, + year = {1909} +} + +@article{kamaraanddrummond1930, + author = {Kamara, K. and Drummond., D. B.}, + journal = {Sierra Leone Stud.}, + key = {Kamara and Drummond (1930)}, + lgcode = {Koranko [kura1250]}, + pages = {57-66}, + title = {Marriage Customs Amongst the Kurankos}, + volume = {16}, + year = {1930} +} + +@article{berengerferaud1878, + author = {Berenger-Feraud, L. J. B.}, + journal = {Rev. Anth., ser. 2}, + key = {Berenger-Feraud (1878)}, + lgcode = {Soninke [soni1259]}, + pages = {586-607}, + title = {Etude sur les Soninkes}, + volume = {1}, + year = {1878} +} + +@article{boyer1953, + author = {Boyer, G.}, + journal = {Mem. Inst. Franc. Af. Noire}, + key = {Boyer (1953)}, + lgcode = {Soninke [soni1259]}, + pages = {1-122}, + title = {Les Diawara}, + volume = {29}, + year = {1953} +} + +@article{daniel1910, + author = {Daniel, F.}, + glottolog_ref = {eballiso2009:16000}, + journal = {Anthropos}, + key = {Daniel (1910)}, + lgcode = {Soninke [soni1259]}, + pages = {27-49}, + title = {Etude sur les Soninkes ou Sarakoles}, + volume = {5}, + year = {1910} +} + +@incollection{nicole1903, + author = {Nicole.}, + editor = {Steinmetz, S. R.}, + address = {Berlin}, + booktitle = {Rechtsverhaltnisse von eingeborenen Volkern in Afrika und Ozeanien}, + key = {Nicole (1903)}, + lgcode = {Soninke [soni1259]}, + pages = {93-138}, + title = {Die Diakite-Sarrakolesen}, + year = {1903} +} + +@book{saintpere1925, + author = {Saint-Pere, J. H.}, + address = {Paris}, + key = {Saint-Pere (1925)}, + lgcode = {Soninke [soni1259]}, + title = {Les Sarokolle du Guinimakha}, + year = {1925} +} + +@article{anonymous1939a, + author = {Anonymous}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + key = {Anonymous (1939a)}, + lgcode = {Susu [susu1250]}, + pages = {575-610}, + title = {Coutume soussou}, + volume = {10}, + year = {1939} +} + +@article{aubert1936, + author = {Aubert, M.}, + journal = {Sierra Leone Stud.}, + key = {Aubert (1936)}, + lgcode = {Susu [susu1250]}, + pages = {21-44}, + title = {Laws and Customs of the Susus}, + volume = {2}, + year = {1936} +} + +@book{monteil1932, + author = {Monteil, Charles}, + address = {Paris}, + key = {Monteil (1932)}, + lgcode = {Nononke [jena1242]}, + title = {Djenne}, + year = {1932} +} + +@article{arnaud1921, + author = {Arnaud, R.}, + journal = {Rev. Ethnog. Trad. Pop.}, + key = {Arnaud (1921)}, + lgcode = {Dogon [bank1259]}, + pages = {241-318}, + title = {Notes sur les montagnards Habe}, + volume = {2}, + year = {1921} +} + +@article{dieterlen1956, + author = {Dieterlen, G.}, + journal = {Africa}, + key = {Dieterlen (1956)}, + lgcode = {Dogon [bank1259]}, + pages = {107-148}, + title = {Parente et mariage chez les Dogon}, + volume = {26}, + year = {1956} +} + +@incollection{griauleanddieterlen1954, + author = {Griaule, Marcel and Dieterlen, Germaine}, + editor = {Forde, C. Daryll}, + address = {London}, + booktitle = {African worlds: studies in the cosmological ideas and social values of African peoples}, + key = {Griaule and Dieterlen (1954)}, + lgcode = {Dogon [bank1259]}, + publisher = {Oxford University Press}, + title = {The Dogon}, + year = {1954} +} + +@book{paulme1940, + author = {Paulme, D.}, + address = {Paris}, + key = {Paulme (1940)}, + lgcode = {Dogon [bank1259]}, + title = {Organisation sociale des Dogon}, + year = {1940} +} + +@book{cremer192427, + author = {Cremer, J.}, + address = {Paris}, + key = {Cremer (1924-27)}, + lgcode = {Bobo [nort2819]}, + title = {Les Bobo}, + volume = {2}, + year = {1924-27} +} + +@article{guebhard1911, + author = {Guebhard, P.}, + journal = {Rev. Ethnog. Sociol.}, + key = {Guebhard (1911)}, + lgcode = {Bobo [nort2819]}, + pages = {125-145}, + title = {Notes contributives a l'etude de la religion, des moeurs et des coutumes des Bobo}, + volume = {2}, + year = {1911} +} + +@article{cheron1913, + author = {Cheron, G.}, + journal = {Rev. Ethnog. Sociol.}, + key = {Cheron (1913)}, + lgcode = {Minianka [mama1271]}, + pages = {165-186}, + title = {Les Minianka}, + volume = {4}, + year = {1913} +} + +@book{holas1957, + author = {Holas, B.}, + address = {Paris}, + glottolog_ref = {eballiso2009:20508}, + key = {Holas (1957)}, + lgcode = {Minianka [mama1271], Senufo [ceba1235]}, + publisher = {Paris: Presses Universitaires de France pour l'International African Inst. (IAI)}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + title = {Les Senoufo (y compris les Minianka)}, + volume = {5}, + year = {1957} +} + +@article{delafosse190809, + author = {DelAfosse, M.}, + journal = {Rev. et. Ethnog. Sociol.}, + key = {DelAfosse (1908-09)}, + lgcode = {Senufo [ceba1235]}, + pages = {17-32, 79-92, 151-159, 242-275, 448-457, 483-486; 1-21}, + title = {Le peuple Siena ou Senoufo}, + volume = {1; 2}, + year = {1908-09} +} + +@article{vendeix1935, + author = {Vendeix, M. J.}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Vendeix (1935)}, + lgcode = {Senufo [ceba1235]}, + pages = {578-652}, + title = {Nouvel essai de monographie du pays Senufo}, + volume = {17}, + year = {1935} +} + +@article{tauxier1931, + author = {Tauxier, L.}, + journal = {Journ. Soc. Africanistes}, + key = {Tauxier (1931)}, + lgcode = {Dorosie [dogo1295]}, + pages = {61-110}, + title = {Les Dorhosie et Dorhosie-Fingg}, + volume = {1}, + year = {1931} +} + +@article{goody1956, + author = {Goody, J. R.}, + address = {London}, + glottolog_ref = {eballiso2009:25853}, + journal = {Colonial Research Studies}, + key = {Goody (1956)}, + lgcode = {Birifor [sout2790], Lowiili [sout2790]}, + pages = {1-119}, + publisher = {London: H.M. Stationary Office}, + series = {Colonial research studies}, + title = {The Social Organisation of the LoWiili}, + volume = {19}, + year = {1956} +} + +@article{goody1958, + author = {Goody, J. R.}, + journal = {Cambridge Papers in Social Anthropology}, + key = {Goody (1958)}, + lgcode = {Lowiili [sout2790]}, + pages = {53-91}, + title = {The Fission of Domestic Groups Among the Lo Dagaba}, + volume = {1}, + year = {1958} +} + +@article{labouret1920, + author = {Labouret, H.}, + glottolog_ref = {eballiso2009:21093}, + journal = {Rev. Ethnog. Trad. Pop.}, + key = {Labouret (1920)}, + lgcode = {Dagara [sout2789]}, + pages = {267-283}, + title = {Mariage et polyandrie parmi les Dagari et les Oule}, + volume = {1}, + year = {1920} +} + +@article{fortes1937, + author = {Fortes, M.}, + journal = {Journal of the Royal Anthropological Institute}, + key = {Fortes (1937)}, + lgcode = {Tallensi [taln1239]}, + pages = {131-142}, + title = {Communal Fishing and Fishing Magic in the Northern Territories of the Gold Coast}, + volume = {67}, + year = {1937} +} + +@article{fortes1938, + author = {Fortes, M.}, + journal = {Africa}, + key = {Fortes (1938)}, + lgcode = {Tallensi [taln1239]}, + number = {4}, + pages = {Supplement}, + title = {Social and Psychological Aspects of Education in Taleland}, + volume = {9}, + year = {1938} +} + +@incollection{fortes1940, + author = {Fortes, M.}, + editor = {Fortes, M. and Evans-Pritchard, E. E.}, + address = {London}, + booktitle = {African Political Systems}, + glottolog_ref = {eballiso2009:31988}, + key = {Fortes (1940)}, + lgcode = {Tallensi [taln1239]}, + pages = {239-271}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + title = {The Political System of the Tallensi}, + year = {1940} +} + +@book{fortes1945, + author = {Fortes, M.}, + address = {London}, + key = {Fortes (1945)}, + lgcode = {Tallensi [taln1239]}, + title = {The Dynamics of Clanship Among the Tallensi}, + year = {1945 (new ed. 1967)} +} + +@book{fortes1949a, + author = {Fortes, M.}, + address = {London}, + key = {Fortes (1949a)}, + lgcode = {Tallensi [taln1239]}, + title = {The Web of Kinship Among the Tallensi}, + year = {1949} +} + +@article{fortes1975, + author = {Fortes, M.}, + journal = {Cambridge Anthropology}, + key = {Fortes (1975)}, + lgcode = {Tallensi [taln1239]}, + number = {2}, + pages = {3-31}, + title = {Tallensi Ritual Festivals and the Ancestors}, + volume = {2}, + year = {1975} +} + +@article{fortesandfortes1936, + author = {Fortes, M. and Fortes, S. L.}, + journal = {Africa}, + key = {Fortes and Fortes (1936)}, + lgcode = {Tallensi [taln1239]}, + pages = {237-276}, + title = {Food in the Domestic Economy of the Tallensi}, + volume = {9}, + year = {1936} +} + +@article{lynn1937, + author = {Lynn, C. W.}, + journal = {Bulletins of the Gold Coast Department of Agriculture}, + key = {Lynn (1937)}, + lgcode = {Tallensi [taln1239]}, + pages = {1-93}, + title = {Agriculture in North Mamprusi}, + volume = {34}, + year = {1937} +} + +@book{tauxier1924b, + author = {Tauxier, L.}, + address = {Paris}, + glottolog_ref = {weball:19414}, + key = {Tauxier (1924b)}, + lgcode = {Nunuma [sout2795]}, + pages = {viii+206}, + publisher = {Paris: Emile Larose}, + title = {Nouvelles notes sur le Mossi et le Gourounsi}, + year = {1924} +} + +@book{duncanjohnstoneandblair1932, + author = {Duncan-Johnstone, A. and Blair., H. A.}, + address = {Accra}, + key = {Duncan-Johnstone and Blair (1932)}, + lgcode = {Dagomba [dagb1246]}, + title = {Enquiry into the Constitution and Organisation of the Dagbon Kingdom}, + year = {1932} +} + +@article{fisch1913, + author = {Fisch, R.}, + journal = {Baessler-Arch.}, + key = {Fisch (1913)}, + lgcode = {Dagomba [dagb1246]}, + pages = {132-164}, + title = {Die Dagbamba}, + volume = {3}, + year = {1913} +} + +@article{cartry1966, + author = {Cartry, M.}, + journal = {L'Homme}, + key = {Cartry (1966)}, + lgcode = {Gurma [gour1243]}, + pages = {ii, 53-81}, + title = {Clans, lgnages et groupements familiaux chez les Gourmantche}, + volume = {6}, + year = {1966} +} + +@article{castinel1945, + author = {Castinel, J.}, + journal = {Bull. Inst. Franc. Afr. Noire}, + key = {Castinel (1945)}, + lgcode = {Gurma [gour1243]}, + pages = {148-155}, + title = {Le mariage et la mort dans la region du Yanga}, + volume = {7}, + year = {1945} +} + +@article{menjaud1932, + author = {Menjaud, H.}, + glottolog_ref = {eballiso2009:40989}, + journal = {Journ. Soc. Africanistes}, + key = {Menjaud (1932)}, + lgcode = {Gurma [gour1243]}, + pages = {35-47}, + title = {Documents ethnographiques sur le Gourma}, + volume = {2}, + year = {1932} +} + +@article{dimdelobosom1933, + author = {Dim Delobosom, A. A.}, + journal = {Et. Sociol. Ethnol. Jurid.}, + key = {Dim Delobosom (1933)}, + lgcode = {Mossi (Ouagadougou) [moss1236]}, + pages = {1-308}, + title = {L'empire Mogho-Daba: Coutumes des Mossi de la Haute-Volta}, + volume = {11}, + year = {1933} +} + +@book{mangin1921, + author = {Mangin, E.}, + address = {Paris}, + key = {Mangin (1921)}, + lgcode = {Mossi (Ouagadougou) [moss1236]}, + title = {Les Mossi}, + year = {1921} +} + +@book{marc1909, + author = {Marc, L. A.}, + address = {Paris}, + glottolog_ref = {eballiso2009:4504}, + key = {Marc (1909)}, + lgcode = {Mossi (Ouagadougou) [moss1236]}, + publisher = {Paris: Emile Larose}, + title = {Le pays Mossi}, + year = {1909} +} + +@article{skinner1958, + author = {Skinner, E.P.}, + journal = {American Anthropologist}, + key = {Skinner (1958)}, + lgcode = {Mossi (Ouagadougou) [moss1236]}, + pages = {1102-1119}, + title = {Christianity and Islam among the Mossi}, + volume = {60}, + year = {1958} +} + +@book{skinner1964, + author = {Skinner, E. P.}, + address = {Stanford}, + key = {Skinner (1964)}, + lgcode = {Mossi (Ouagadougou) [moss1236]}, + title = {The Mossi of the Upper Volta}, + year = {1964} +} + +@article{klose1903, + author = {Klose, H.}, + glottolog_ref = {hh:e:Klose:Bassarivolk}, + journal = {Globus}, + key = {Klose (1903)}, + lgcode = {Basari [ntch1242]}, + pages = {309-314, 341-345}, + title = {Das Bassarivolk}, + volume = {83}, + year = {1903} +} + +@article{zech1899, + author = {Zech}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + key = {Zech (1899)}, + lgcode = {Basari [ntch1242]}, + pages = {89-161}, + title = {Vermischte Notizen über Togo und das Togohinterland}, + volume = {11}, + year = {1899} +} + +@article{froelich1949a, + author = {Froelich, J. C.}, + journal = {Bull. Inst. Franc. Afr. Noire}, + key = {Froelich (1949a)}, + lgcode = {Kabre [kabi1261]}, + pages = {77-105}, + title = {Generalites sur les Kabre}, + volume = {11}, + year = {1949} +} + +@book{puig1934, + author = {Puig, F.}, + address = {Toulouse}, + key = {Puig (1934)}, + lgcode = {Kabre [kabi1261]}, + title = {Etude sur les coutumes des Cabrais}, + year = {1934} +} + +@article{asmis1912, + author = {Asmis, G.}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + key = {Asmis (1912)}, + lgcode = {Moba [moba1244]}, + pages = {71-128}, + title = {Die Stammersrechte des Bezirkes Sansane-Mangu}, + volume = {27}, + year = {1912} +} + +@article{mercier1950, + author = {Mercier, P.}, + journal = {Africa}, + key = {Mercier (1950)}, + lgcode = {Somba [dita1238]}, + pages = {219-227}, + title = {Le consentement au mariage et son evolution chez les Betam-maribe}, + volume = {20}, + year = {1950} +} + +@article{mercier1953, + author = {Mercier, P.}, + journal = {Bull. Inst. Franc. Afr. Noire}, + key = {Mercier (1953)}, + lgcode = {Somba [dita1238]}, + pages = {798-817}, + title = {L'habitat et l'occupation de la terre chez les "Somba}, + volume = {15}, + year = {1953} +} + +@book{bernard1966, + author = {Bernard, J.}, + address = {Ouagadougou & Paris}, + glottolog_ref = {eballiso2009:57776}, + key = {Bernard (1966)}, + lgcode = {Bisa [biss1248]}, + pages = {1-247}, + publisher = {Ouagadougou & Paris: Centre Voltaique de la Recherche Scientifique (CVRS); Centre National de la Recherche Scientifique (CNRS)}, + series = {Recherches voltaiques: collection de travaux de sciences humaines sur la Haute-Volta}, + title = {Les bisa du circle de Garango}, + volume = {2}, + year = {1966} +} + +@phdthesis{donald1968a, + author = {Donald, L. H.}, + key = {Donald (1968a)}, + lgcode = {Yalunka [yalu1240]}, + school = {University of Oregon}, + title = {Changes in Yalunka Social Organization}, + year = {1968} +} + +@misc{donald1968b, + author = {Donald, L. H.}, + howpublished = {Personal communication}, + key = {Donald (1968b)}, + lgcode = {Yalunka [yalu1240]}, + year = {1968} +} + +@article{durand1929, + author = {Durand, O.}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Durand (1929)}, + lgcode = {Futajalonke [pula1262]}, + pages = {1-85}, + title = {Moeurs et instuttions d'une famille peule}, + volume = {12}, + year = {1929} +} + +@article{vieillard1939, + author = {Vieillard, G.}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A,}, + key = {Vieillard (1939)}, + lgcode = {Futajalonke [pula1262]}, + pages = {1-127}, + title = {Notes sur les coutumes des Peuls au Fouta Djallon}, + volume = {11}, + year = {1939} +} + +@article{vieillard1940, + author = {Vieillard, G.}, + journal = {Bull. Inst. Franc. Afr. Noire}, + key = {Vieillard (1940)}, + lgcode = {Futajalonke [pula1262]}, + pages = {85-210}, + title = {Notes sur les Peuls du Fouta-Djallon}, + volume = {2}, + year = {1940} +} + +@article{malzy1946, + author = {Malzy, P.}, + journal = {Bull. Inst. Franc. Afr. Noire}, + key = {Malzy (1946)}, + lgcode = {Bozo [tiey1235]}, + pages = {100-132}, + title = {Les Bozos du Niger et leurs modes de peche}, + volume = {8}, + year = {1946} +} + +@article{ortoli1939, + author = {Ortoli, J.}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + key = {Ortoli (1939)}, + lgcode = {Bozo [tiey1235]}, + note = {Reprinted from Bull. Rech. Soudan. 4: 152-172, 1936}, + pages = {161-202}, + title = {Coutume Bozo}, + volume = {9}, + year = {1939} +} + +@article{delacour191213, + author = {Delacour, A.}, + journal = {Rev. Ethnog. Sociol.}, + key = {Delacour (1912-13)}, + lgcode = {Coniagui [wame1240]}, + pages = {287-296, 307-381; 31-53, 105-120, 140-153}, + title = {Les Tenda}, + volume = {3; 4}, + year = {1912-13} +} + +@article{techer1933, + author = {Techer, H.}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Techer (1933)}, + lgcode = {Coniagui [wame1240]}, + pages = {639-666}, + title = {Coutumes des Tendas}, + volume = {16}, + year = {1933} +} + +@article{labouret1934, + author = {Labouret, H.}, + glottolog_ref = {weball:11502}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Labouret (1934)}, + lgcode = {Malinke [kita1249]}, + pages = {1-270}, + title = {Les Manding et leur langue}, + volume = {17}, + year = {1934} +} + +@article{sidibe1932, + author = {Sidibe, M.}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Sidibe (1932)}, + lgcode = {Malinke [kita1249]}, + pages = {72-177}, + title = {Coutumier du cercle de Kita}, + volume = {15}, + year = {1932} +} + +@book{gunn1956, + author = {Gunn, H. D.}, + address = {London}, + glottolog_ref = {eballiso2009:41320}, + key = {Gunn (1956)}, + lgcode = {Kagoro [kago1246], Katab [kata1265], Kurama [kura1249]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {Pagan Peoples of the Central Area of Northern Nigeria}, + volume = {12}, + year = {1956} +} + +@article{meek192829, + author = {Meek, C. K.}, + journal = {Journal of the African Society}, + key = {Meek (1928-29)}, + lgcode = {Katab [kata1265]}, + title = {The Katab and Their Neighbors}, + volume = {27-28}, + year = {1928-29} +} + +@book{meek1931b, + author = {Meek, C. K.}, + address = {London}, + glottolog_ref = {eballiso2009:45691}, + key = {Meek (1931b)}, + lgcode = {Bachama [baca1246], Bata [bata1314], Bolewa [nucl1695], Bura [bura1292], Chamba [samb1305], Chawai [atsa1241], Daka [samb1311], Dera [dera1248], Gude [gude1246], Gure [gbir1241], Hwana [hwan1240], Jibu [jibu1239], Kagoro [kago1246], Kapsiki [psik1239], Karekare [kare1348], Katab [kata1265], Kentu [etky1238], Kurama [kura1249], Longuda [long1389], Mambila [came1252], Margi [marg1265], Mumuye [nucl1240], Ndoro [ndoo1241], Ngizim [ngiz1242], Tigon [tigo1236], Vere [momj1237], Yergum [taro1263], Yungur [bena1260], Zuande [bita1251]}, + publisher = {London: Kegan Paul, Trench, Trübner & Co.}, + title = {Tribal Studies in Northern Nigeria 2}, + year = {1931} +} + +@article{smith1953, + author = {Smith, M. G.}, + journal = {Africa}, + key = {Smith (1953)}, + lgcode = {Katab [kata1265]}, + pages = {298-323}, + title = {Secondary Marriage in Northern Nigeria}, + volume = {23}, + year = {1953} +} + +@book{gunn1953, + author = {Gunn, H. D.}, + address = {London}, + glottolog_ref = {eballiso2009:41321}, + key = {Gunn (1953)}, + lgcode = {Adara [kada1284], Anaguta [igut1238], Birom [bero1242], Chawai [atsa1241]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {Peoples of the Plateau Area of Northern Nigeria}, + volume = {7}, + year = {1953} +} + +@article{bynghall1909, + author = {Byng-Hall, F. F. w.}, + journal = {Journ. Afr. Soc.}, + key = {Byng-Hall (1909)}, + lgcode = {Basakomo [basa1282]}, + pages = {13-20}, + title = {Notes on the Bassa-Komo Tribe}, + volume = {8}, + year = {1909} +} + +@article{clifford1944, + author = {Clifford, M.}, + journal = {Man}, + key = {Clifford (1944)}, + lgcode = {Basakomo [basa1282]}, + pages = {107-116}, + title = {Notes on the Bassa-Komo Tribe}, + volume = {44}, + year = {1944} +} + +@article{harris1938, + author = {Harris, P. G.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Harris (1938)}, + lgcode = {Dakakari [clel1238]}, + pages = {113-152}, + title = {Notes on the Dakarkari Peoples}, + volume = {68}, + year = {1938} +} + +@article{harris1930, + author = {Harris, P. G.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Harris (1930)}, + lgcode = {Reshe [resh1242]}, + pages = {283-324}, + title = {Notes on Yauri}, + volume = {60}, + year = {1930} +} + +@article{fitzpatrick1910, + author = {Fitzpatrick, J. F. J.}, + glottolog_ref = {eballiso2009:29648}, + journal = {Journ. Afr. Soc.}, + key = {Fitzpatrick (1910)}, + lgcode = {Angas [ngas1240], Yergum [taro1263]}, + pages = {16-52, 213-221}, + title = {Some Notes on the Kwolla District and Its Tribes}, + volume = {10}, + year = {1910} +} + +@article{mohr1958, + author = {Mohr, R.}, + journal = {Anthropos}, + key = {Mohr (1958)}, + lgcode = {Angas [ngas1240]}, + pages = {457-472}, + title = {Zur sozialen Organisation der Angas}, + volume = {53}, + year = {1958} +} + +@misc{bestnd, + author = {Best, O. H.}, + howpublished = {Manuscript}, + key = {Best (nd)}, + lgcode = {Burmawa [bogh1241]}, + title = {Burmawa of Kanam} +} + +@misc{smithnda, + author = {Smith, M. G.}, + howpublished = {Undated Manuscript}, + key = {Smith (nd.a)}, + lgcode = {Adara [kada1284], Kagoro [kago1246]}, + title = {Secondary Marriage in Northern Nigeria} +} + +@misc{smithndb, + author = {Smith, M. G.}, + howpublished = {Undated Manuscript}, + key = {Smith (nd.b)}, + lgcode = {Adara [kada1284]}, + title = {The Social Structure of the Northern Kadara} +} + +@book{meek1931a, + author = {Meek, C. K.}, + address = {London}, + key = {Meek (1931a)}, + lgcode = {Jibu [jibu1239], Jukun [juku1254], Yergum [taro1263]}, + title = {A Sudanese Kingdom}, + year = {1931} +} + +@misc{smith1951, + author = {Smith, M. G.}, + howpublished = {Manuscript}, + key = {Smith (1951)}, + lgcode = {Kagoro [kago1246]}, + title = {Social Organization and Economy of Kagoro}, + year = {1951} +} + +@article{tremearne1912, + author = {Tremearne, A. J. N.}, + glottolog_ref = {hh:e:Tremearne:Kagoro}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Tremearne (1912)}, + lgcode = {Kagoro [kago1246]}, + pages = {136-199}, + title = {Notes on the Kagoro and Other Nigerian Headhunters}, + volume = {42}, + year = {1912} +} + +@book{ames1934, + author = {Ames, C. G.}, + glottolog_ref = {hh:he:Ames:Plateau}, + key = {Ames (1934)}, + lgcode = {Yergum [taro1263]}, + pages = {474}, + publisher = {Ms.}, + title = {Gazetteer of the Plateau Province, Nigeria}, + year = {1934} +} + +@article{bohannan1952, + author = {Bohannan, L.}, + journal = {Africa}, + key = {Bohannan (1952)}, + lgcode = {Tiv [tivv1240]}, + pages = {301-315}, + title = {A Genealogical Charter}, + volume = {22}, + year = {1952} +} + +@article{bohannan1953, + author = {Bohannan, P.}, + glottolog_ref = {eballiso2009:22304}, + journal = {Southwestern Journal of Anthropology}, + key = {Bohannan (1953)}, + lgcode = {Tiv [tivv1240]}, + pages = {251-262}, + title = {Concepts of Time Among the Tiv of Nigeria}, + volume = {9}, + year = {1953} +} + +@book{bohannan1954a, + author = {P., Bohannan.}, + address = {London}, + glottolog_ref = {eballiso2009:22303}, + key = {Bohannan (1954a)}, + lgcode = {Tiv [tivv1240]}, + publisher = {London: H.M. Stationary Office}, + series = {Colonial research studies}, + title = {Tiv Farm and Settlement}, + volume = {15}, + year = {1954} +} + +@article{bohannan1954b, + author = {Bohannan, P.}, + journal = {Africa}, + key = {Bohannan (1954b)}, + lgcode = {Tiv [tivv1240]}, + pages = {2-16}, + title = {The Migration and Expansion of the Tiv}, + volume = {24}, + year = {1954} +} + +@article{bohannan1954c, + author = {Bohannan, P.}, + journal = {Man}, + key = {Bohannan (1954c)}, + lgcode = {Tiv [tivv1240]}, + pages = {2-6}, + title = {Circumcision among the Tiv}, + volume = {54}, + year = {1954} +} + +@article{bohannan1955, + author = {Bohannan, P.}, + glottolog_ref = {eballiso2009:22302}, + journal = {American Anthropologist}, + key = {Bohannan (1955)}, + lgcode = {Tiv [tivv1240]}, + pages = {60-70}, + title = {Some Principles of Exchange and Investment Among the Tiv}, + volume = {57}, + year = {1955} +} + +@incollection{bohannan1957a, + author = {Bohannan, L.}, + editor = {Middleton, J. and Tait, D.}, + address = {London}, + booktitle = {Tribes Without Rulers}, + key = {Bohannan (1957a)}, + lgcode = {Tiv [tivv1240]}, + pages = {33-66}, + title = {Political Aspects of Tiv Social Organization}, + year = {1957} +} + +@book{bohannan1957b, + author = {Bohannan, P.}, + address = {London}, + glottolog_ref = {eballiso2009:22299}, + key = {Bohannan (1957b)}, + lgcode = {Tiv [tivv1240]}, + publisher = {Oxford Univ. Press}, + title = {Justice and Judgment among the Tiv}, + year = {1957} +} + +@misc{bohannan1960, + author = {Bohannan, P.}, + howpublished = {Manuscript}, + key = {Bohannan (1960)}, + lgcode = {Tiv [tivv1240]}, + title = {Tiv Trade and Markets}, + year = {1960} +} + +@incollection{bohannan1965, + author = {Bohannan, P.}, + editor = {J. L. Gibbs, Jr.}, + address = {New York}, + booktitle = {Peoples of Africa}, + key = {Bohannan (1965)}, + lgcode = {Tiv [tivv1240]}, + pages = {279-317}, + title = {The Tiv of Nigeria}, + year = {1965} +} + +@book{bohannanandbohannan1953, + author = {Bohannan, L. and Bohannan., P.}, + address = {London}, + glottolog_ref = {hh:e:BohannanBohannan:Tiv}, + key = {Bohannan and Bohannan (1953)}, + lgcode = {Tiv [tivv1240]}, + pages = {100}, + publisher = {London: Oxford Univ. Press for the International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, Western Africa}, + title = {The Tiv of Central Nigeria}, + volume = {8}, + year = {1953} +} + +@article{bohannanandbohannan1957, + author = {Bohannan, P. and Bohannan, L.}, + journal = {New York Academy of Sciences, Transations, series}, + key = {Bohannan and Bohannan (1957)}, + lgcode = {Tiv [tivv1240]}, + pages = {613-621}, + title = {Tiv Markets}, + volume = {2}, + year = {1957} +} + +@book{bohannanandbohannan1958, + author = {Bohannan, P. and Bohannan, L.}, + address = {New Haven}, + glottolog_ref = {eballiso2009:13443}, + key = {Bohannan and Bohannan (1958)}, + lgcode = {Tiv [tivv1240]}, + publisher = {New Haven CN: Human Relations Area Files}, + title = {Three Source Notebooks in Tiv Ethnography}, + year = {1958} +} + +@book{bohannanandbohannan1968, + author = {Bohannan, P. and Bohannan, L.}, + address = {Evanston}, + glottolog_ref = {eballiso2009:35681}, + key = {Bohannan and Bohannan (1968)}, + lgcode = {Tiv [tivv1240]}, + publisher = {Evanston: Northwestern Univ. Press}, + series = {African studies}, + title = {Tiv Economy}, + volume = {20}, + year = {1968} +} + +@book{bohannanandbohannan1969, + author = {Bohannan, P. and Bohannan, L.}, + address = {New Haven}, + key = {Bohannan and Bohannan (1969)}, + lgcode = {Tiv [tivv1240]}, + title = {A Source Notebook on Tiv Religion. 5v}, + year = {1969} +} + +@misc{haughton1912, + author = {Haughton, T. H.}, + howpublished = {Manuscript}, + key = {Haughton (1912)}, + lgcode = {Mumuye [nucl1240]}, + title = {Mumuye Assessment Report}, + year = {1912} +} + +@book{helser1926, + author = {Helser, A. D.}, + address = {New York}, + key = {Helser (1926)}, + lgcode = {Bura [bura1292]}, + title = {In Sunny Nigeria}, + year = {1926} +} + +@book{lembezat1961, + author = {Lembezat, B.}, + address = {Paris}, + glottolog_ref = {eballiso2009:15610}, + key = {Lembezat (1961)}, + lgcode = {Bafute [vute1244], Fali [sout2782], Gisiga [sout3051], Gude [gude1246], Kapsiki [psik1239], Mafa [mafa1239], Masa [masa1322], Mbum [mbum1254], Musgu [musg1254], Podokwo [park1239], Tupuri [tupu1244]}, + publisher = {Paris: Presses Universitaires de France; International African Inst. (IAI)}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + title = {Les populations paiennes du Nord-Cameroun et de l'Adamoua}, + volume = {9}, + year = {1961} +} + +@book{lembezat1950, + author = {Lembezat, B.}, + key = {Lembezat (1950)}, + lgcode = {Kapsiki [psik1239]}, + pages = {1-95}, + series = {Mem. Inst. Franc. Afr. Noire, Centre Cameroun, Serie Populations}, + title = {Kirdi, les populations paiennes du Nord-Cameroun}, + volume = {3}, + year = {1950} +} + +@book{lembezat1952, + author = {Lembezat, B.}, + address = {Paris}, + key = {Lembezat (1952)}, + lgcode = {Podokwo [park1239]}, + title = {Mukulehe}, + year = {1952} +} + +@misc{percival1938, + author = {Percival, D. H.}, + howpublished = {Unpublished manuscript}, + key = {Percival (1938)}, + lgcode = {Mambila [came1252]}, + title = {The Mambila Area}, + year = {1938} +} + +@article{rehfisch1960, + author = {Rehfisch, F.}, + journal = {Africa}, + key = {Rehfisch (1960)}, + lgcode = {Mambila [came1252]}, + pages = {246-261}, + title = {The Dynamics of Multilinearity on the Mambila Plateau}, + volume = {30}, + year = {1960} +} + +@misc{rowling1930, + author = {Rowling, C. W.}, + howpublished = {Unpublished Manuscript}, + key = {Rowling (1930)}, + lgcode = {Margi [marg1265]}, + title = {Marghi District Assessment}, + year = {1930} +} + +@book{dunn1956, + author = {Dunn, H. d.}, + address = {London}, + key = {Dunn (1956)}, + lgcode = {Gure [gbir1241]}, + title = {Pagan Peoples of the Central Area of Northern Nigeria}, + year = {1956} +} + +@article{hinderling1955, + author = {Hinderling, P.}, + journal = {Africa}, + key = {Hinderling (1955)}, + lgcode = {Mafa [mafa1239]}, + pages = {405-426}, + title = {Versuch einer Analyse der sozialen Struktur der Matakam}, + volume = {25}, + year = {1955} +} + +@book{lavergne1949, + author = {Lavergne, G.}, + address = {Paris}, + glottolog_ref = {hh:e:Lavergne:Matakam}, + key = {Lavergne (1949)}, + lgcode = {Mafa [mafa1239]}, + publisher = {Paris: Imprimérie Servant-Crouzet}, + title = {Un peuplade du Haut-Cameroun: Les Matakam}, + year = {1949} +} + +@book{sieber1925, + author = {Sieber, J.}, + address = {Berlin}, + key = {Sieber (1925)}, + lgcode = {Bafute [vute1244]}, + title = {Die Wute}, + year = {1925} +} + +@book{diamond1964, + author = {Diamond, D.}, + address = {Lomax}, + key = {Diamond (1964)}, + lgcode = {Anaguta [igut1238]}, + title = {Personal communication to A}, + year = {1964} +} + +@article{daigre193232, + author = {Daigre}, + journal = {Anthropos}, + key = {Daigre (1932-32)}, + lgcode = {Banda [west2458]}, + pages = {547-695; 153-181}, + title = {Les Bandas de l'Oubangui-Chari}, + volume = {26; 27}, + year = {1932-32} +} + +@article{leynaud1954, + author = {Leynaud, E.}, + journal = {Bull. Inst. Etudes Centrafricaines, n. s.}, + key = {Leynaud (1954)}, + lgcode = {Banda [west2458]}, + pages = {109-159}, + title = {Parente et alliance chez les Bandas}, + volume = {7-8}, + year = {1954} +} + +@book{nadel1947, + author = {Nadel, S. F.}, + address = {London}, + key = {Nadel (1947)}, + lgcode = {Dilling [dill1242], Koalib [koal1240], Korongo [kron1241], Mesakin [ngil1242], Moro [moro1285], Nyimang [amas1236], Otoro [otor1240], Tira [tira1254], Tullishi [tuli1249]}, + title = {The Nuba}, + year = {1947} +} + +@book{vanoverbergh1909, + author = {Van Overbergh, C.}, + address = {Bruxelles}, + key = {Van Overbergh (1909)}, + lgcode = {Mangbetu [nucl1420]}, + title = {Les Mangbetu}, + year = {1909} +} + +@article{foelich1956, + author = {Foelich, J. C.}, + journal = {Et. Camerounaises}, + key = {Foelich (1956)}, + lgcode = {Fali [sout2782]}, + pages = {20-50}, + title = {Le commandement et l'organisation sociale chez des Fali}, + volume = {53-54}, + year = {1956} +} + +@article{malzy1956, + author = {Malzy, P.}, + journal = {Et. Camerounaises}, + key = {Malzy (1956)}, + lgcode = {Fali [sout2782]}, + pages = {3-27}, + title = {Les Fali du Tingelin}, + volume = {51}, + year = {1956} +} + +@article{tessmann1929, + author = {Tessmann, G.}, + journal = {Zeitschrift für Ethnologie}, + key = {Tessmann (1929)}, + lgcode = {Bwaka [ngba1284], Laka [laka1254], Mbum [mbum1254]}, + pages = {305-352}, + title = {Die Mbaka-Limba, Mbum und Lakka}, + volume = {60}, + year = {1929} +} + +@article{brussaux1907, + author = {Brussaux, E.}, + journal = {Bull. Soc. Anth. Paris, ser. 5}, + key = {Brussaux (1907)}, + lgcode = {Mundang [mund1325]}, + pages = {273-295}, + title = {Notes sur les Moundans}, + volume = {8}, + year = {1907} +} + +@book{lembezat1916a, + author = {Lembezat, B.}, + address = {Paris}, + key = {Lembezat (1916a)}, + lgcode = {Mundang [mund1325], Namshi [doya1240]}, + title = {Les populations paiennes du Nord-Cameroun et de l'Adamaoua}, + year = {1916} +} + +@article{martin1947, + author = {Martin, R.}, + journal = {Bull. Inst. Et. Centrafr.}, + key = {Martin (1947)}, + lgcode = {Mundang [mund1325]}, + pages = {09-105}, + title = {Note sur les Mundang de la region de Lere}, + volume = {2}, + year = {1947} +} + +@article{savini1937, + author = {Savini, M.}, + journal = {Bull. Soc. Et. Camerounaises}, + key = {Savini (1937)}, + lgcode = {Namshi [doya1240]}, + pages = {17-48}, + title = {Notes sur les populations namchi}, + volume = {2}, + year = {1937} +} + +@article{fourneau1938, + author = {Fourneau, J.}, + journal = {Journ. Soc. Africanistes}, + key = {Fourneau (1938)}, + lgcode = {Gisiga [sout3051]}, + pages = {163-195}, + title = {Une tribu paienne du Nord-Cameroun: Les Guissiga}, + volume = {8}, + year = {1938} +} + +@book{lebeuf1959, + author = {Lebeuf, A. M. D.}, + address = {Paris}, + glottolog_ref = {eballiso2009:25491}, + key = {Lebeuf (1959)}, + lgcode = {Bagirmi [bagi1246], Buduma [budu1265], Daza [daza1242], Kanembu [kane1243], Kotoko [lagw1237]}, + publisher = {Paris: Presses Universitaires de France; International African Inst. (IAI)}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + title = {Les populations du Tchad}, + volume = {8}, + year = {1959} +} + +@article{hagen1912, + author = {Hagen, G. von.}, + glottolog_ref = {hh:e:vonHagen:Musgu}, + journal = {Baessler-Arch.}, + key = {Hagen (1912)}, + lgcode = {Musgu [musg1254]}, + pages = {117-122}, + title = {Einige Notizen uber die Musgu}, + volume = {2}, + year = {1912} +} + +@incollection{nadel1950, + author = {Nadel, S. F.}, + editor = {Radcliffe-Brown, A. R. and Forde, D.}, + address = {London}, + booktitle = {African Systems of Kinship and Marriage}, + glottolog_ref = {eballiso2009:26324}, + key = {Nadel (1950)}, + lgcode = {Nyaro [kooo1244], Tullishi [tuli1249]}, + pages = {333-359}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + title = {Dual Descent in the Nuba Hills}, + year = {1950} +} + +@article{lamouroux1913, + author = {Lamouroux, R.}, + journal = {Anthropologie}, + key = {Lamouroux (1913)}, + lgcode = {Tupuri [tupu1244]}, + pages = {679-692}, + title = {La region du Toubouri}, + volume = {24}, + year = {1913} +} + +@article{duvallee1925, + author = {Duvallee.}, + journal = {Bulletin de la Société des Recherches Congolaises}, + key = {Duvallee (1925)}, + lgcode = {Bagirmi [bagi1246]}, + pages = {3-76}, + title = {Le Baghirmi}, + volume = {7}, + year = {1925} +} + +@book{gaden1909, + author = {Gaden, Henri}, + address = {Paris}, + key = {Gaden (1909)}, + lgcode = {Bagirmi [bagi1246]}, + publisher = {Ernest Leroux}, + title = {Essai de la grammaire de la langue baguirmienne}, + url = {https://archive.org/details/rosettaproject_bmi_morsyn-1}, + year = {1909} +} + +@book{nachtigal1881, + author = {Nachtigal, G.}, + address = {Berlin}, + key = {Nachtigal (1881)}, + lgcode = {Bagirmi [bagi1246], Daza [daza1242], Kanuri [cent2050]}, + title = {Sahara und Sudan 2}, + year = {1881} +} + +@book{delafosse1897, + author = {DelAfosse, M.}, + address = {Paris}, + glottolog_ref = {eballiso2009:36341}, + key = {DelAfosse (1897)}, + lgcode = {Sara [sarr1246]}, + publisher = {Paris: André'}, + title = {Essai sur le peuple et la langue sara}, + year = {1897} +} + +@article{crabbeck1943, + author = {Crabbeck, G.}, + journal = {Bull. Juris. Indig. Droit Cout. Congol.}, + key = {Crabbeck (1943)}, + lgcode = {Bwaka [ngba1284]}, + pages = {85-108}, + title = {Les Gbwaka}, + volume = {11}, + year = {1943} +} + +@article{poutrin1910, + author = {Poutrin.}, + glottolog_ref = {eballiso2009:8761}, + journal = {Anthropologie}, + key = {Poutrin (1910)}, + lgcode = {Bwaka [ngba1284]}, + pages = {35-54}, + title = {Notes ethnographiques sur les populations M'baka du Congo Francaise}, + volume = {21}, + year = {1910} +} + +@book{gaud1911, + author = {Gaud, F.}, + address = {Bruxelles}, + key = {Gaud (1911)}, + lgcode = {Mandja [manz1243]}, + title = {Les Mandja}, + year = {1911} +} + +@book{vergiat1937, + author = {Vergiat, A. M.}, + address = {Paris}, + glottolog_ref = {eballiso2009:48967}, + key = {Vergiat (1937)}, + lgcode = {Mandja [manz1243]}, + publisher = {Paris: Ed. Payot}, + title = {Moeurs et coutumes des Manjas}, + year = {1937} +} + +@misc{nelson1951, + author = {Nelson, W. D.}, + howpublished = {Manuscript}, + key = {Nelson (1951)}, + lgcode = {Ngbandi [nort2774]}, + title = {Notes on the Religious and Social Life of the Ngbandi People}, + year = {1951} +} + +@book{tanghe1928, + author = {Tanghe, B.}, + address = {Brussel}, + key = {Tanghe (1928)}, + lgcode = {Ngbandi [nort2774]}, + title = {De Ngbandi naar het leven geschetst}, + year = {1928} +} + +@book{nvs1896, + author = {Nvs, F.}, + address = {Anvers}, + key = {Nvs (1896)}, + lgcode = {Abarambo [bara1361]}, + title = {Chez les Abarambos}, + year = {1896} +} + +@article{delhaise1912, + author = {Delhaise, C.}, + glottolog_ref = {hh:ew:Delhaise-Arnould:Bapopoie}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Delhaise (1912)}, + lgcode = {Popoi [popo1291]}, + pages = {86-113, 149-202}, + title = {Les Bapopoïe}, + volume = {XXXVI}, + year = {1912} +} + +@book{baxterandbutt1953, + author = {Baxter, P. T. W. and Butt, A.}, + address = {London}, + glottolog_ref = {hh:he:BaxterButt:Azande}, + key = {Baxter and Butt (1953)}, + lgcode = {Azande [zand1248], Bongo [bong1285], Lendu [lend1245], Logo [logo1259], Lugbara [lugb1240], Madi [madi1260], Moru [moru1253]}, + pages = {152}, + publisher = {International African Institute}, + series = {Ethnographic Survey of Africa: East Central Africa: Part IX}, + title = {The Azande, and related peoples of the Anglo-Egyptian Sudan and Belgian Congo}, + year = {1953} +} + +@article{maenhaut1939, + author = {Maenhaut, M.}, + journal = {Bull. Juris. Indig. Droit Cout. Congol.}, + key = {Maenhaut (1939)}, + lgcode = {Lendu [lend1245]}, + pages = {1-7, 25-38, 65-77, 97-116}, + title = {Les Walendu}, + volume = {7}, + year = {1939} +} + +@book{stuhlmann1894, + author = {Stuhlmann, F.}, + address = {Berlin}, + glottolog_ref = {eballiso2009:53306}, + key = {Stuhlmann (1894)}, + lgcode = {Alur [alur1250], Lendu [lend1245]}, + publisher = {Berlin: Verlag von Dietrich Reimer}, + title = {Mit Emin Pascha ins Herz von Afrika}, + year = {1894} +} + +@article{vandeneynde1923, + author = {Van den Eynde, P.}, + glottolog_ref = {hh:e:vandenEynde:Walendu}, + journal = {Congo}, + key = {Van den Eynde (1923)}, + lgcode = {Lendu [lend1245]}, + pages = {520-530}, + title = {Notes sur les Walendu ou Bale}, + volume = {2}, + year = {1923} +} + +@book{deschlippe1956, + author = {De Schlippe, P.}, + address = {London}, + key = {De Schlippe (1956)}, + lgcode = {Azande [zand1248]}, + title = {Shifting Cultivation in Africa}, + year = {1956} +} + +@article{evanspritchard1932b, + author = {Evans-Pritchard, E. E.}, + journal = {Sociologus}, + key = {Evans-Pritchard (1932b)}, + lgcode = {Azande [zand1248]}, + pages = {400-414}, + title = {Heredity and Gestation, as the Azande See Them}, + volume = {3}, + year = {1932} +} + +@book{evanspritchard1937, + author = {Evans-Pritchard, E. E.}, + address = {Oxford}, + glottolog_ref = {eballiso2009:34997}, + key = {Evans-Pritchard (1937)}, + lgcode = {Azande [zand1248]}, + publisher = {Oxford: Clarendon Press}, + title = {Witchcraft, Oracles and Magic Among the Azande}, + year = {1937} +} + +@book{evanspritchard1956, + author = {Evans-Pritchard, E. E.}, + address = {London}, + key = {Evans-Pritchard (1956)}, + lgcode = {Azande [zand1248]}, + title = {The Azande System of Agriculture}, + year = {1956} +} + +@article{evanspritchard1957, + author = {Evans-Pritchard, E. E.}, + journal = {Zaire}, + key = {Evans-Pritchard (1957)}, + lgcode = {Azande [zand1248]}, + pages = {361-389, 493-511, 687-713}, + title = {The Zande Royal Court}, + volume = {11}, + year = {1957} +} + +@book{evanspritchard1963, + author = {Evans-Pritchard, E. E.}, + address = {London}, + key = {Evans-Pritchard (1963)}, + lgcode = {Azande [zand1248]}, + title = {The Zande State}, + year = {1963} +} + +@book{evanspritchard1971, + author = {Evans-Pritchard, E. E.}, + glottolog_ref = {hh:e:Evans-Pritchard:Azande:History}, + key = {Evans-Pritchard (1971)}, + lgcode = {Azande [zand1248]}, + note = {revision of earlier articles}, + pages = {439}, + publisher = {Oxford: Clarendon Press}, + title = {The Azande: history and political institutions}, + year = {1971} +} + +@book{evanspritchard1974, + editor = {Evans-Pritchard, E. E.}, + address = {London}, + key = {Evans-Pritchard (1974)}, + lgcode = {Azande [zand1248]}, + title = {Man and Woman among the Azande}, + year = {1974} +} + +@article{larkin192627, + author = {Larkin, G. M.}, + journal = {Sudan Notes and Records}, + key = {Larkin (1926-27)}, + lgcode = {Azande [zand1248]}, + pages = {1-56; 85-134}, + title = {An Account of the Azande}, + volume = {9; 10}, + year = {1926-27} +} + +@article{legae1926, + author = {Legae, C. R.}, + journal = {Bibliothque Congo}, + key = {Legae (1926)}, + lgcode = {Azande [zand1248]}, + pages = {1-224}, + title = {Les Azande ou Niam-Niam}, + volume = {18}, + year = {1926} +} + +@book{reining1966, + author = {Reining, C. C.}, + address = {Evanston}, + key = {Reining (1966)}, + lgcode = {Azande [zand1248]}, + title = {The Zande Scheme}, + year = {1966} +} + +@book{schweinfurth1873, + author = {Schweinfurth, G.}, + address = {New York}, + key = {Schweinfurth (1873)}, + lgcode = {Azande [zand1248]}, + title = {The Heart of Africa. 2v}, + year = {1873} +} + +@book{seligmanandseligman1932, + author = {Seligman, C. S. and Seligman, B. Z.}, + address = {London}, + key = {Seligman and Seligman (1932)}, + lgcode = {Acholi [dhop1238], Azande [zand1248], Bari [ligo1238], Dinka [sout2832], Ingassana [gaam1241], Korongo [kron1241], Lotuko [otuh1238], Moru [moru1253], Nuer [nuer1246], Pojulu [poju1239], Shilluk [shil1265], Tira [tira1254]}, + publisher = {George Routledge & Sons, Ltd.}, + title = {Pagan tribes of the Nilotic Sudan}, + year = {1932} +} + +@book{vangeluwe1957, + author = {Van Geluwe, H.}, + address = {London}, + glottolog_ref = {hh:e:vanGeluwe:Mamvu-Mangutu}, + key = {Van Geluwe (1957)}, + lgcode = {Lese [lese1243], Mamvu [mamv1243]}, + pages = {195}, + publisher = {London: International African Institute}, + series = {Ethnographic Survey of Africa: Central Africa}, + title = {Mamvu-Mangutu et Balese-Mvuba}, + volume = {3}, + year = {1957} +} + +@article{mcconnell1925, + author = {McConnell, R. E.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {McConnell (1925)}, + lgcode = {Lugbara [lugb1240]}, + pages = {439-467}, + title = {Notes on the Lugwari Tribe}, + volume = {55}, + year = {1925} +} + +@incollection{middleton1958, + author = {Middleton, J.}, + editor = {Middleton, J. and Tait, D.}, + address = {London}, + booktitle = {Tribes Without Rulers}, + key = {Middleton (1958)}, + lgcode = {Lugbara [lugb1240]}, + pages = {203-229}, + title = {The Political Sytem of the Lugbara}, + year = {1958} +} + +@book{middleton1960, + author = {Middleton, John.}, + address = {London}, + glottolog_ref = {eballiso2009:2657}, + key = {Middleton (1960)}, + lgcode = {Lugbara [lugb1240]}, + publisher = {Oxford Univ. Press}, + title = {Lugbara religion: ritual and authority among an East African people}, + year = {1960} +} + +@book{middleton1965, + author = {Middleton, John.}, + address = {New York}, + glottolog_ref = {eballiso2009:2655}, + key = {Middleton (1965)}, + lgcode = {Lugbara [lugb1240]}, + publisher = {Holt, Rinehart & Winston}, + series = {Case studies in cultural anthropolog}, + title = {The Lugbara of Uganda}, + volume = {se studies in cultural anthropology}, + year = {1965} +} + +@article{middleton1955, + author = {Middleton, J.}, + journal = {African Studies}, + key = {Middleton (1955)}, + lgcode = {Madi [madi1260]}, + pages = {29-36}, + title = {Notes on the Political Organization of the Madi}, + volume = {14}, + year = {1955} +} + +@article{felkin1883, + author = {Felkin, W.}, + glottolog_ref = {eballiso2009:25992}, + journal = {proc. Roy. Soc. Edinburgh}, + key = {Felkin (1883)}, + lgcode = {Moru [moru1253]}, + pages = {303-353}, + title = {Notes on the Moru or Madi Tribe of Central Africa}, + volume = {12}, + year = {1883} +} + +@book{nalder1937, + editor = {Nalder, L. F.}, + address = {London}, + key = {Nalder (1937)}, + lgcode = {Galab [daas1238], Kakwa [kakw1240], Kuku [kuku1285], Lotuko [otuh1238], Mondari [mand1425], Moru [moru1253], Pojulu [poju1239], Toposa [topo1242]}, + title = {A Tribal Survey of Mongalla Province}, + year = {1937} +} + +@article{evanspritchard1929, + author = {Evans-Pritchard, E. E.}, + glottolog_ref = {hh:e:Evans-Pritchard:Bongo}, + journal = {Sudan Notes and Records}, + key = {Evans-Pritchard (1929)}, + lgcode = {Bongo [bong1285]}, + pages = {1-61}, + title = {The Bongo}, + volume = {12}, + year = {1929} +} + +@book{schweinfurth1874, + author = {Schweinfurth, G.}, + address = {London}, + glottolog_ref = {eballiso2009:40912}, + key = {Schweinfurth (1874)}, + lgcode = {Bongo [bong1285]}, + publisher = {Sampson Low, Marston, Low & Searle}, + title = {The heart of Africa}, + url = {https://archive.org/details/heartofafrica01schw}, + volume = {1}, + year = {1874} +} + +@book{bernatzik1936, + author = {Bernatzik, H. A.}, + address = {New York}, + key = {Bernatzik (1936)}, + lgcode = {Jur [luwo1239]}, + title = {Gari-Gari}, + year = {1936} +} + +@book{butt1952b, + author = {Butt, Audrey}, + editor = {Forde, Daryll}, + address = {London}, + glottolog_ref = {eballiso2009:36615}, + key = {Butt (1952b)}, + lgcode = {Acholi [dhop1238], Jur [luwo1239], Shilluk [shil1265]}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, East Central Africa}, + title = {The Nilotes of the Anglo-Egyptian Sudan and Uganda}, + volume = {4}, + year = {1952} +} + +@book{crazzolara1954, + author = {Crazzolara, J. P.}, + address = {Verona}, + key = {Crazzolara (1954)}, + lgcode = {Jur [luwo1239]}, + title = {Lwoo Clans}, + year = {1954} +} + +@article{ghawi1924, + author = {Ghawi, J. B.}, + journal = {Sudan Notes Rec.}, + key = {Ghawi (1924)}, + lgcode = {Jur [luwo1239]}, + number = {ii}, + pages = {71-81}, + title = {Notes on the Law and Custom of the Jur Tribe}, + volume = {7}, + year = {1924} +} + +@article{manuel1965, + author = {Manuel, E. a.}, + address = {Quezon City}, + journal = {Lipunan}, + key = {Manuel (1965)}, + lgcode = {Jur [luwo1239]}, + pages = {73-102}, + title = {Jur Kinship System and Social Organization}, + volume = {1}, + year = {1965} +} + +@article{santandrea194445, + author = {Santandrea, S.}, + journal = {Annali Lateranensi}, + key = {Santandrea (1944-45)}, + lgcode = {Jur [luwo1239]}, + pages = {96-117; 221-258}, + title = {The Luo of the Bahr el Ghazal}, + volume = {8, 9}, + year = {1944-45} +} + +@article{evanspritchard1927, + author = {Evans-Pritchard, E. E.}, + journal = {Sudan Notes and Records}, + key = {Evans-Pritchard (1927)}, + lgcode = {Ingassana [gaam1241]}, + pages = {69-83}, + title = {A Preliminary Account of the Ingassana Tribe}, + volume = {10}, + year = {1927} +} + +@article{stevenson1940, + author = {Stevenson, R. C.}, + glottolog_ref = {eballiso2009:4788}, + journal = {Sudan Notes and Records}, + key = {Stevenson (1940)}, + lgcode = {Nyimang [amas1236]}, + pages = {75-98}, + title = {The Nyamang of the Nuba Mountains}, + volume = {23}, + year = {1940} +} + +@article{bacon1922, + author = {Bacon, C. R. K.}, + glottolog_ref = {eballiso2009:9053}, + journal = {Sudan Notes and Records}, + key = {Bacon (1922)}, + lgcode = {Anuak [anua1242]}, + pages = {113-129}, + title = {The Anuak}, + volume = {5}, + year = {1922} +} + +@article{evanspritchard1940, + author = {Evans-Pritchard, E. E.}, + journal = {London School of Economics Monographs on Social Anthropology}, + key = {Evans-Pritchard (1940)}, + lgcode = {Anuak [anua1242]}, + pages = {1-164}, + title = {The Political System of the Anuak}, + volume = {4}, + year = {1940} +} + +@article{evanspritchard1947, + author = {Evans-Pritchard, E. E.}, + glottolog_ref = {eballiso2009:40844}, + journal = {Sudan Notes and Records}, + key = {Evans-Pritchard (1947)}, + lgcode = {Anuak [anua1242]}, + pages = {62-97}, + title = {Further Observations on the Political System of the Anuak}, + volume = {28}, + year = {1947} +} + +@article{lienhardt195758, + author = {Lienhardt, G.}, + journal = {Africa}, + key = {Lienhardt (1957-58)}, + lgcode = {Anuak [anua1242]}, + pages = {341-355; 23-36}, + title = {Anuak Village Headmen}, + volume = {27; 28}, + year = {1957-58} +} + +@article{evanspritchard1932a, + author = {Evans-Pritchard, E. E.}, + glottolog_ref = {hh:hw:Evans-Pritchard:Fung}, + journal = {Sudan Notes and Records}, + key = {Evans-Pritchard (1932a)}, + lgcode = {Meban [maba1273]}, + pages = {1-61}, + title = {Ethnological Observations in Dar Fung}, + volume = {15}, + year = {1932} +} + +@book{seligman1932, + author = {Seligman and G., C. and ad B. Z. Seligman}, + address = {London}, + key = {Seligman (1932)}, + lgcode = {Meban [maba1273]}, + title = {Pagan Tribes of the Nilotic Sudan}, + year = {1932} +} + +@article{corfield1938, + author = {Corfield, F. D.}, + glottolog_ref = {weball:4554}, + journal = {Sudan Notes and Records}, + key = {Corfield (1938)}, + lgcode = {Koma [komo1258]}, + pages = {123-165}, + title = {The Koma}, + volume = {25}, + year = {1938} +} + +@article{grottanelli1948, + author = {Grottanelli, V. L.}, + journal = {Annali Lateranensi}, + key = {Grottanelli (1948)}, + lgcode = {Koma [komo1258]}, + pages = {282-326}, + title = {I Pre-Niloti}, + volume = {12}, + year = {1948} +} + +@book{cerulli1956, + author = {Cerulli, E.}, + address = {London}, + glottolog_ref = {hh:he:Cerulli:SWEthiopia}, + key = {Cerulli (1956)}, + lgcode = {Anfillo [anfi1235], Arbore [arbo1245], Basketo [bask1236], Burji [burj1242], Darasa [gede1246], Galab [daas1238], Konso [kons1243], Mao [hozo1236], Sidama [sida1246], Suri [suri1267]}, + pages = {148}, + publisher = {London: International African Institute}, + series = {Ethnographic Survey of Africa: North-Eastern Africa}, + title = {Peoples of South-west Ethiopia and Its Borderland}, + volume = {III}, + year = {1956} +} + +@book{grottanelli1940, + author = {Grottanelli, V. L.}, + address = {Rome}, + key = {Grottanelli (1940)}, + lgcode = {Anfillo [anfi1235], Mao [hozo1236]}, + pages = {1-397}, + series = {Mission Etnografica nel Uallega Occidentale}, + title = {I. Mao}, + volume = {1}, + year = {1940} +} + +@misc{grottanelli1972, + author = {Grottanelli, V. L.}, + howpublished = {Personal communication}, + key = {Grottanelli (1972)}, + lgcode = {Mao [hozo1236]}, + year = {1972} +} + +@article{cann1929, + author = {Cann, G. P.}, + journal = {Sudan Notes and Records}, + key = {Cann (1929)}, + lgcode = {Shilluk [shil1265]}, + pages = {251-253}, + title = {A Day in the Life of an Idle Shilluk}, + volume = {12}, + year = {1929} +} + +@book{dempsey1955, + author = {Dempsey, J.}, + address = {London}, + key = {Dempsey (1955)}, + lgcode = {Shilluk [shil1265]}, + title = {Mission on the Nile}, + year = {1955} +} + +@book{evanspritchard1948, + author = {Evans-Pritchard, E. E.}, + address = {Cambridge}, + key = {Evans-Pritchard (1948)}, + lgcode = {Shilluk [shil1265]}, + title = {The Divine Kingship of the Shilluk of the Nilotic Sudan}, + year = {1948} +} + +@book{hofmayr1925, + author = {Hofmayr, Wilhelm}, + address = {Wien}, + key = {Hofmayr (1925)}, + lgcode = {Shilluk [shil1265]}, + title = {Die Schilluk. Geschichte, Religion und Leben eines Nilotenstammes}, + year = {1925} +} + +@article{howell1941, + author = {Howell, P. P.}, + glottolog_ref = {eballiso2009:54993}, + journal = {Sudan Notes and Records}, + key = {Howell (1941)}, + lgcode = {Shilluk [shil1265]}, + pages = {47-66}, + title = {The Shilluk Settlement}, + volume = {24}, + year = {1941} +} + +@incollection{lienhardt1954, + author = {Lienhardt, G.}, + editor = {Forde, D.}, + address = {London}, + booktitle = {African Worlds}, + key = {Lienhardt (1954)}, + lgcode = {Shilluk [shil1265]}, + pages = {138-163}, + title = {The Shilluk of the Upper Nile}, + year = {1954} +} + +@article{pumphrey1941, + author = {Pumphrey, M. E. C.}, + glottolog_ref = {eballiso2009:37167}, + journal = {Sudan Notes and Records}, + key = {Pumphrey (1941)}, + lgcode = {Shilluk [shil1265]}, + pages = {1-45}, + title = {The Shilluk Tribe}, + volume = {24}, + year = {1941} +} + +@book{westermann1912, + author = {Westermann, D.}, + address = {Philadelphia}, + key = {Westermann (1912)}, + lgcode = {Shilluk [shil1265]}, + title = {The Shilluk People}, + year = {1912} +} + +@book{clozel1896, + author = {Clozel, F.}, + address = {Paris}, + key = {Clozel (1896)}, + lgcode = {Gbaya [nort2775]}, + title = {Les Bayas}, + year = {1896} +} + +@article{hartmann1927, + author = {Hartmann, H.}, + journal = {Zeitschrift für Ethnologie}, + key = {Hartmann (1927)}, + lgcode = {Gbaya [nort2775]}, + pages = {1-61}, + title = {Ethnographische Studie uber die Baja}, + volume = {59}, + year = {1927} +} + +@article{poupon1915, + author = {Poupon, A.}, + journal = {Anthropologie}, + key = {Poupon (1915)}, + lgcode = {Gbaya [nort2775]}, + pages = {87-144}, + title = {Etude ethnographique des Baya}, + volume = {26}, + year = {1915} +} + +@book{tessmann193437, + author = {Tessmann, G.}, + address = {Stuttgart}, + key = {Tessmann (1934-37)}, + lgcode = {Gbaya [nort2775]}, + title = {Die Baja. 2v}, + year = {1934-37} +} + +@article{hawkesworth1932, + author = {Hawkesworth, D.}, + glottolog_ref = {eballiso2009:29349}, + journal = {Sudan Notes and Records}, + key = {Hawkesworth (1932)}, + lgcode = {Dilling [dill1242]}, + pages = {159-199}, + title = {The Nuba Proper of Southern Kordofan}, + volume = {15}, + year = {1932} +} + +@book{garine1964, + author = {Garine, I. de.}, + address = {Paris}, + glottolog_ref = {eballiso2009:17802}, + key = {Garine (1964)}, + lgcode = {Masa [masa1322]}, + publisher = {Paris: Presses Universitaires de France}, + title = {Les Massa du Cameroun}, + year = {1964} +} + +@article{vonhagen1912, + author = {von Hagen, G.}, + address = {Berlin}, + glottolog_ref = {eballiso2009:9022}, + journal = {Baessler-Archiv}, + key = {von Hagen (1912)}, + lgcode = {Masa [masa1322]}, + pages = {77-116}, + title = {Die Bana}, + volume = {2}, + year = {1912} +} + +@book{lawrance1957, + author = {Lawrance, J. C. D.}, + address = {London}, + key = {Lawrance (1957)}, + lgcode = {Teso [teso1249]}, + title = {The Iteso}, + year = {1957} +} + +@article{girling1960, + author = {Girling, F. K.}, + address = {London}, + glottolog_ref = {eballiso2009:17156}, + journal = {Colonial Research Studies}, + key = {Girling (1960)}, + lgcode = {Acholi [dhop1238]}, + pages = {1-238}, + publisher = {London: H.M. Stationary Office}, + series = {Colonial research studies}, + title = {The Acholi of Uganda}, + volume = {30}, + year = {1960} +} + +@article{grove1919, + author = {Grove, E. T. N.}, + glottolog_ref = {eballiso2009:26574}, + journal = {Sudan Notes and Records}, + key = {Grove (1919)}, + lgcode = {Acholi [dhop1238]}, + pages = {157-182}, + title = {Customs of the Acholi}, + volume = {2}, + year = {1919} +} + +@article{cummins1904, + author = {Cummins, S. L.}, + glottolog_ref = {eballiso2009:42978}, + journal = {Jounr. Roy. Anth. Inst.}, + key = {Cummins (1904)}, + lgcode = {Dinka [sout2832]}, + pages = {149-166}, + title = {Sub-Tribes of the Bahr-el-Ghazal Dinka}, + volume = {34}, + year = {1904} +} + +@article{howell1951, + author = {Howell, P. P.}, + journal = {Sudan Notes and Records}, + key = {Howell (1951)}, + lgcode = {Dinka [sout2832]}, + pages = {240-293}, + title = {Notes on the Ngork Dinka}, + volume = {32}, + year = {1951} +} + +@incollection{lienhardt1958, + author = {Lienhardt, Godfrey.}, + editor = {Middleton, John F.M. and Tait, David}, + address = {New York}, + booktitle = {Tribes Without Rulers: Studies in African Segmentary Systems}, + glottolog_ref = {eballiso2009:41130}, + key = {Lienhardt (1958)}, + lgcode = {Dinka [sout2832]}, + pages = {97-135}, + publisher = {Humanities Press}, + title = {The western Dinka}, + year = {1958} +} + +@book{lienhardt1961, + author = {Lienhardt, Godfrey.}, + address = {Oxford}, + glottolog_ref = {eballiso2009:41133}, + key = {Lienhardt (1961)}, + lgcode = {Dinka [sout2832]}, + publisher = {Clarendon Press}, + title = {Divinity and experience: the religion of the Dinka}, + year = {1961} +} + +@book{nebel1948, + author = {Nebel, P. A. V-18}, + address = {Verona}, + key = {Nebel (1948)}, + lgcode = {Dinka [sout2832]}, + publisher = {Missioni Africane}, + title = {Dinka grammar}, + year = {1948} +} + +@article{stubbsandmorrison1938, + author = {Stubbs, J. M. and Morrison, C. G. T.}, + journal = {Sudan Notes and Records}, + key = {Stubbs and Morrison (1938)}, + lgcode = {Dinka [sout2832]}, + pages = {251-265}, + title = {The Western Dinkas}, + volume = {21}, + year = {1938} +} + +@article{titherington1927, + author = {Titherington, G. W.}, + journal = {Sudan Notes and Records}, + key = {Titherington (1927)}, + lgcode = {Dinka [sout2832]}, + pages = {159-209}, + title = {The Raik Dinka}, + volume = {10}, + year = {1927} +} + +@article{molinaro194041, + author = {Molinaro, L.}, + journal = {Anthropos}, + key = {Molinaro (1940-41)}, + lgcode = {Lotuko [otuh1238]}, + pages = {166-201}, + title = {Appunti circa gli usi, costumi e idee religiose dei Lotuku}, + volume = {35-36}, + year = {1940-41} +} + +@article{seligmanandseligman1926, + author = {Seligman, C. G. and Seligman, B. Z.}, + journal = {Sudan Notes and Records}, + key = {Seligman and Seligman (1926)}, + lgcode = {Lotuko [otuh1238]}, + pages = {1-45}, + title = {The Social Organization of the Lotuko}, + volume = {8}, + year = {1926} +} + +@book{huntingford1953a, + author = {Huntingford, G. W. B.}, + address = {London}, + glottolog_ref = {eballiso2009:42668}, + key = {Huntingford (1953a)}, + lgcode = {Bari [ligo1238], Kakwa [kakw1240], Kuku [kuku1285], Mondari [mand1425], Pojulu [poju1239]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, East Central Africa}, + title = {The Northern Nilo-Hamites}, + volume = {8}, + year = {1953} +} + +@book{vandenplas1910, + author = {Vanden Plas, J.}, + address = {Bruxelles}, + key = {Vanden Plas (1910)}, + lgcode = {Kuku [kuku1285]}, + title = {Les Kuku}, + year = {1910} +} + +@article{yunis1924, + author = {Yunis, E. Y. N.}, + glottolog_ref = {hh:e:Yunis:Kuku}, + journal = {Sudan Notes and Records}, + key = {Yunis (1924)}, + lgcode = {Kuku [kuku1285]}, + pages = {1-41}, + title = {Notes on the Kuku and other minor tribes inhabiting the Kajo Kaji District}, + volume = {VII}, + year = {1924} +} + +@incollection{buxton1958, + author = {Buxton, J.}, + editor = {Middleton, J. and Tait, D.}, + address = {London}, + booktitle = {Tribes Without Rulers}, + key = {Buxton (1958)}, + lgcode = {Mondari [mand1425]}, + pages = {67-96}, + title = {The Mandari of the Souterhn Sudan}, + year = {1958} +} + +@article{demuenynck1908, + author = {Demuenynck.}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Demuenynck (1908)}, + lgcode = {Alur [alur1250]}, + pages = {36-80, 93-133}, + title = {Au pays de Mahagi}, + volume = {33}, + year = {1908} +} + +@book{southall1956, + author = {Southall, A. W.}, + address = {Cambridge}, + key = {Southall (1956)}, + lgcode = {Alur [alur1250]}, + title = {Alur Society}, + year = {1956} +} + +@article{stirton1925, + author = {Stirton, S.}, + journal = {Bull. Soc. Roy. Belge Geog.}, + key = {Stirton (1925)}, + lgcode = {Alur [alur1250]}, + pages = {210-215}, + title = {Moeurs et coutumes des Alour}, + volume = {49}, + year = {1925} +} + +@book{jensen1959, + editor = {Jensen, A. E.}, + address = {Stuttgart}, + key = {Jensen (1959)}, + lgcode = {Arbore [arbo1245], Bako [aari1239], Banna [hame1242], Basketo [bask1236], Bodi [meen1242], Dime [dime1235], Hamar [hame1242], Male [male1284], Shangama [aari1239], Tsamai [tsam1247], Ubamer [aari1239]}, + title = {Altvölker Süd-Aethiopiens}, + year = {1959} +} + +@article{driberg1922, + author = {Driberg, J. H.}, + glottolog_ref = {eballiso2009:1206}, + journal = {Sudan Notes and Records}, + key = {Driberg (1922)}, + lgcode = {Didinga [didi1258]}, + pages = {208-222}, + title = {A Preliminary Account of the Didinga}, + volume = {5}, + year = {1922} +} + +@article{driberg1925a, + author = {Driberg, J. H.}, + journal = {Sudan Notes and Records}, + key = {Driberg (1925a)}, + lgcode = {Didinga [didi1258]}, + pages = {153-175}, + title = {Didinga Customary Law}, + volume = {8}, + year = {1925} +} + +@book{driberg1932, + author = {Driberg, J. H.}, + address = {New York}, + key = {Driberg (1932)}, + lgcode = {Didinga [didi1258]}, + title = {At Home with the Savage}, + year = {1932} +} + +@book{baumann1894, + author = {Baumann, O.}, + address = {Berlin}, + glottolog_ref = {hh:hew:Baumann:Massailand}, + key = {Baumann (1894)}, + lgcode = {Goroa [goro1270], Maasi [masa1300], Tatoga [dato1239]}, + pages = {385}, + publisher = {Dietrich Reimer}, + title = {Durch Massailand zur Nilquelle: Reisen und Forschungen der Massai-Expedition des deutschen Antisklaverei-Komite in den Jahren 1891-1893}, + year = {1894} +} + +@article{fosbrooke1948, + author = {Fosbrooke, H. A.}, + glottolog_ref = {eballiso2009:23091}, + journal = {Tanganyika Notes and Records}, + key = {Fosbrooke (1948)}, + lgcode = {Maasi [masa1300]}, + pages = {1-50}, + title = {An Administrative Survey of the Masai Social System}, + volume = {26}, + year = {1948} +} + +@book{hollis1905, + author = {Hollis, A. C.}, + address = {Oxford}, + glottolog_ref = {guldemann:2133}, + key = {Hollis (1905)}, + lgcode = {Maasi [masa1300]}, + publisher = {Oxford: Clarendon Press}, + title = {The Masai: Their Language and Folklore}, + year = {1905} +} + +@book{merker1904, + author = {Merker, M.}, + address = {Berlin}, + key = {Merker (1904)}, + lgcode = {Maasi [masa1300]}, + title = {Die Masai}, + year = {1904} +} + +@article{lyth1947, + author = {Lyth, R. E.}, + glottolog_ref = {eballiso2009:3783}, + journal = {Sudan Notes and Records}, + key = {Lyth (1947)}, + lgcode = {Suri [suri1267]}, + pages = {106-114}, + title = {The Suri Tribe}, + volume = {28}, + year = {1947} +} + +@article{pauli1950, + author = {Pauli, E.}, + journal = {Annali Lateranensi}, + key = {Pauli (1950)}, + lgcode = {Suri [suri1267]}, + pages = {61-189}, + title = {Die Splitterstamme nordlich des Rudolfsees}, + volume = {14}, + year = {1950} +} + +@article{gulliver1953, + author = {Gulliver, P. H.}, + journal = {Journ. Roy. Anth. Indy.}, + key = {Gulliver (1953)}, + lgcode = {Jie [jiee1239]}, + pages = {147-168}, + title = {The Age-Set Organization of the Jiye Tribe}, + volume = {83}, + year = {1953} +} + +@book{gulliver1955, + author = {Gulliver, P. H.}, + address = {London}, + key = {Gulliver (1955)}, + lgcode = {Jie [jiee1239], Turkana [turk1308]}, + title = {The Family Herds}, + year = {1955} +} + +@incollection{gulliver1965, + author = {Gulliver, P. H.}, + editor = {Gibbs, J. L.}, + address = {New York}, + booktitle = {Peoples of Africa}, + key = {Gulliver (1965)}, + lgcode = {Jie [jiee1239]}, + pages = {157-196}, + title = {The Jie of Uganda}, + year = {1965} +} + +@book{gulliverandgulliver1953, + author = {Gulliver, P. and Gulliver., P. H.}, + address = {London}, + glottolog_ref = {hh:he:GulliverGulliver:Central-Nilo-Hamites}, + key = {Gulliver and Gulliver (1953)}, + lgcode = {Jie [jiee1239], Karamojong [nucl1430], Labwor [labw1238], Toposa [topo1242]}, + pages = {104}, + publisher = {London: Oxford University Press}, + series = {Ethnographic survey of Africa, East Central Africa}, + title = {The Central Nilo Hamites}, + volume = {7}, + year = {1953} +} + +@article{wayland1931, + author = {Wayland, E. J.}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Wayland (1931)}, + lgcode = {Dorobo [okie1245], Jie [jiee1239], Labwor [labw1238]}, + pages = {187-236}, + title = {Preliminary Studies of the Tribes of Karamoja: The Labwor, the Wanderobo, the Dodotho, and Jie}, + volume = {61}, + year = {1931} +} + +@book{beech1911, + author = {Beech, M. W. H.}, + address = {Oxford}, + glottolog_ref = {eballiso2009:1276}, + key = {Beech (1911)}, + lgcode = {Hill Suk [west2492], Plains Suk [east2420]}, + publisher = {Clarendon Press}, + title = {The Suk: their language and folklore}, + year = {1911} +} + +@article{peristiany1951, + author = {Peristiany, J. G.}, + glottolog_ref = {eballiso2009:19265}, + journal = {Africa}, + key = {Peristiany (1951)}, + lgcode = {Plains Suk [east2420]}, + pages = {188-206}, + title = {The Age-Set System of the Pastoral Pokot}, + volume = {21}, + year = {1951} +} + +@misc{schneider1957a, + author = {Schneider, H. K.}, + howpublished = {Personal communication}, + key = {Schneider (1957a)}, + lgcode = {Hill Suk [west2492], Plains Suk [east2420]}, + year = {1957} +} + +@article{schneider1957b, + author = {Schneider, H. K.}, + journal = {American Anthropologist}, + key = {Schneider (1957b)}, + lgcode = {Plains Suk [east2420]}, + pages = {278-300}, + title = {The Subsistence Role of Cattle Among the Pakot}, + volume = {59}, + year = {1957} +} + +@book{massam1927, + author = {Massam, J. A.}, + address = {London}, + glottolog_ref = {eballiso2009:7781}, + key = {Massam (1927)}, + lgcode = {Keyu [keiy1238]}, + publisher = {London: Seeley, Service & Co.}, + title = {The Cliff Dwellers of Kenya}, + year = {1927} +} + +@article{barton1921, + author = {Barton, J.}, + glottolog_ref = {eballiso2009:25695}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Barton (1921)}, + lgcode = {Hill Suk [west2492]}, + pages = {82-100}, + title = {Notes on the Suk Tribe of Kenia Colony}, + volume = {51}, + year = {1921} +} + +@article{peristiany1954, + author = {Peristiany, J. G.}, + journal = {Africa}, + key = {Peristiany (1954)}, + lgcode = {Hill Suk [west2492]}, + pages = {17-25}, + title = {Pokot Sanctions and Structure}, + volume = {24}, + year = {1954} +} + +@book{roscoe1924, + author = {Roscoe, J.}, + address = {Cambridge}, + key = {Roscoe (1924)}, + lgcode = {Sapei [kups1238]}, + title = {The Bagesu and Other Tribes in the Uganda Protectorate}, + year = {1924} +} + +@article{klima1964, + author = {Klima, G.}, + journal = {Africa}, + key = {Klima (1964)}, + lgcode = {Tatoga [dato1239]}, + pages = {9-20}, + title = {Jural Relations Between the Sexes Among the Barabaig}, + volume = {34}, + year = {1964} +} + +@article{wilson195253, + author = {Wilson, G. M.}, + journal = {Tanganyika Notes Rec.}, + key = {Wilson (1952-53)}, + lgcode = {Tatoga [dato1239]}, + pages = {35-47; 35-54}, + title = {The Tatoga of Tanganyika}, + volume = {23; 24}, + year = {1952-53} +} + +@book{spencer1965, + author = {Spencer, P.}, + address = {Berkeley}, + key = {Spencer (1965)}, + lgcode = {Samburu [samb1315]}, + title = {The Samburu}, + year = {1965} +} + +@incollection{evanspritchard1936, + author = {Evans-Pritchard, Edward Evan}, + editor = {Buxton, L. H. Dudley}, + address = {London}, + booktitle = {Custom is King}, + key = {Evans-Pritchard (1936)}, + lgcode = {Nuer [nuer1246]}, + pages = {291-299}, + series = {Hutchinson's Scientific and Technical Publications}, + title = {Daily life of the Nuer in dry-season camps}, + year = {1936} +} + +@incollection{evanspritchard1940a, + author = {Evans-Pritchard, E. E.}, + editor = {Fortes and Evans-Pritchard}, + address = {Oxford}, + booktitle = {African Political Systems}, + glottolog_ref = {eballiso2009:34993}, + key = {Evans-Pritchard (1940a)}, + lgcode = {Nuer [nuer1246]}, + pages = {272-292}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + title = {The Nuer of the Southern Sudan}, + year = {1940} +} + +@book{evanspritchard1940b, + author = {Evans-Pritchard, E. E.}, + address = {Oxford}, + key = {Evans-Pritchard (1940b)}, + lgcode = {Nuer [nuer1246]}, + title = {The Nuer}, + year = {1940} +} + +@article{evanspritchard1950b, + author = {Evans-Pritchard, Edward Evan.}, + journal = {Sudan Notes and Records}, + key = {Evans-Pritchard (1950b)}, + lgcode = {Nuer [nuer1246]}, + pages = {21-42}, + title = {The Nuer family}, + volume = {31}, + year = {1950} +} + +@article{jackson1923, + author = {Jackson, H. C.}, + glottolog_ref = {eballiso2009:35580}, + journal = {Sudan Notes and Records}, + key = {Jackson (1923)}, + lgcode = {Nuer [nuer1246]}, + pages = {59-107, 123-89}, + title = {Nuer of the Upper Nile Province}, + volume = {6}, + year = {1923} +} + +@article{tucker1933, + author = {Tucker, A. N.}, + glottolog_ref = {eballiso2009:49745}, + journal = {Journal of the Anthropological Institute}, + key = {Tucker (1933)}, + lgcode = {Nuer [nuer1246]}, + pages = {165-87}, + title = {Children's games and songs in the southern Sudan}, + volume = {63}, + year = {1933} +} + +@article{dysonhudson1963, + author = {Dyson-Hudson, N.}, + glottolog_ref = {eballiso2009:32778}, + journal = {Ethnology}, + key = {Dyson-Hudson (1963)}, + lgcode = {Karamojong [nucl1430]}, + pages = {353-401}, + title = {The Karimojong Age System}, + volume = {2}, + year = {1963} +} + +@article{driberg1925b, + author = {Driberg, J. H.}, + journal = {Sudan Notes and Records}, + key = {Driberg (1925b)}, + lgcode = {Pari [pari1256]}, + pages = {47-57}, + title = {LAfon Hill}, + volume = {8}, + year = {1925} +} + +@article{evanspritchard1940c, + author = {Evans-Pritchard, E. E.}, + glottolog_ref = {eballiso2009:35002}, + journal = {Sudan Notes and Records}, + key = {Evans-Pritchard (1940c)}, + lgcode = {Pari [pari1256]}, + pages = {337-340}, + title = {The Relationship Between the Anuak and the Fori}, + volume = {23}, + year = {1940} +} + +@article{walsh1922, + author = {Walsh, R. H.}, + journal = {Sudan Notes and Records}, + key = {Walsh (1922)}, + lgcode = {Pari [pari1256]}, + pages = {47-48}, + title = {The Beri}, + volume = {5}, + year = {1922} +} + +@book{driberg1923, + author = {Driberg, J. H.}, + address = {London}, + key = {Driberg (1923)}, + lgcode = {Lango [lang1324]}, + title = {The Lango}, + year = {1923} +} + +@book{hayley1947, + author = {Hayley, T. T. S.}, + address = {Cambridge}, + key = {Hayley (1947)}, + lgcode = {Lango [lang1324]}, + title = {The Anatomy of Lango Religion and Kin Groups}, + year = {1947} +} + +@article{elmley1927, + author = {Elmley, E. D.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Elmley (1927)}, + lgcode = {Turkana [turk1308]}, + pages = {157-201}, + title = {The Turkana of Kolosia District}, + volume = {57}, + year = {1927} +} + +@book{gulliver1951, + author = {Gulliver, P. H.}, + glottolog_ref = {eballiso2009:43438}, + key = {Gulliver (1951)}, + lgcode = {Turkana [turk1308]}, + pages = {1-281}, + publisher = {Univ. of Cape Town (UCT)}, + series = {Comm. from the School of African Studies, new series}, + title = {A preliminary survey of the Turkana}, + volume = {26}, + year = {1951} +} + +@article{rayne1919, + author = {Rayne, H.}, + journal = {Journal of the African Society}, + key = {Rayne (1919)}, + lgcode = {Turkana [turk1308]}, + pages = {254-65}, + title = {Turkana}, + volume = {18}, + year = {1919} +} + +@article{white1920, + author = {White, R. F.}, + journal = {Sudan Notes and Records}, + key = {White (1920)}, + lgcode = {Turkana [turk1308]}, + pages = {217-22}, + title = {Notes on the Turkana tribe}, + volume = {3}, + year = {1920} +} + +@inbook{butt1952a, + author = {Butt, Audrey}, + address = {London}, + booktitle = {The Nilotes of the Anglo-Egyptian Sudan and Uganda}, + key = {Butt (1952a)}, + lgcode = {Luo [luok1236]}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, East Central Africa}, + title = {The Luo of Kenya}, + volume = {4}, + year = {1952} +} + +@article{evanspritchard1949a, + author = {Evans-Pritchard, E. E.}, + glottolog_ref = {eballiso2009:2793}, + journal = {Rhodes-Liv. Journ.}, + key = {Evans-Pritchard (1949a)}, + lgcode = {Luo [luok1236]}, + pages = {24-40}, + title = {Luo Tribes and Clans}, + volume = {7}, + year = {1949} +} + +@article{evanspritchard1950a, + author = {Evans-Pritchard, E. E.}, + journal = {Africa}, + key = {Evans-Pritchard (1950a)}, + lgcode = {Luo [luok1236]}, + pages = {132-142}, + title = {Marriage Customs of the Kenya Luo}, + volume = {20}, + year = {1950} +} + +@article{hartmann1928, + author = {Hartmann, H.}, + journal = {Anthropos}, + key = {Hartmann (1928)}, + lgcode = {Luo [luok1236]}, + pages = {263-275}, + title = {Some Customs of the Luwo}, + volume = {23}, + year = {1928} +} + +@article{hobley1902, + author = {Hobley, C. W.}, + journal = {Roy. Anth. Inst. Occ. Pap.}, + key = {Hobley (1902)}, + lgcode = {Luo [luok1236]}, + pages = {1-95}, + title = {Eastern Uganda}, + volume = {1}, + year = {1902} +} + +@article{owen1933, + author = {Owen, W. E.}, + journal = {Journal of the East Africa and uganda Natural History Society}, + key = {Owen (1933)}, + lgcode = {Luo [luok1236]}, + pages = {235-249}, + title = {Food production and kindred matters along the Luo}, + volume = {49-50}, + year = {1933} +} + +@article{shaw1932, + author = {Shaw, K. C.}, + address = {Nairobi, Kenya}, + journal = {Journal of the East Africa and Uganda Natural History Society}, + key = {Shaw (1932)}, + lgcode = {Luo [luok1236]}, + pages = {39-50}, + title = {Some preliminary notes on Luo marriage customs}, + volume = {45-46}, + year = {1932} +} + +@article{southall1952, + author = {Southall, A.}, + journal = {Memoranda Int. Afr. Inst.}, + key = {Southall (1952)}, + lgcode = {Luo [luok1236]}, + pages = {1-43}, + title = {Lineage Formation Among the Luo}, + volume = {26}, + year = {1952} +} + +@book{hollis1909, + author = {Hollis, A. C.}, + address = {London}, + key = {Hollis (1909)}, + lgcode = {Nandi [nand1266]}, + title = {The Nandi}, + year = {1909} +} + +@article{huntingford1950, + author = {Huntingford, G. W. B.}, + glottolog_ref = {eballiso2009:5312}, + journal = {Colonial Research Studies}, + key = {Huntingford (1950)}, + lgcode = {Nandi [nand1266]}, + pages = {1-126}, + publisher = {London}, + title = {Nandi Work and Culture}, + volume = {4}, + year = {1950} +} + +@book{huntingford1953c, + author = {Huntingford, G. W. B.}, + address = {London}, + key = {Huntingford (1953c)}, + lgcode = {Nandi [nand1266]}, + title = {The Nandi of Kenya}, + year = {1953} +} + +@book{snell1954, + author = {Snell, G. S.}, + address = {London}, + glottolog_ref = {eballiso2009:55048}, + key = {Snell (1954)}, + lgcode = {Nandi [nand1266]}, + publisher = {London: Macmillan}, + title = {Nandi Customary Law}, + year = {1954} +} + +@article{beaton1936, + author = {Beaton, A. C.}, + journal = {Sudan Notes and Records}, + key = {Beaton (1936)}, + lgcode = {Bari [ligo1238]}, + pages = {109-145}, + title = {The Bari}, + volume = {19}, + year = {1936} +} + +@book{owen1908, + author = {Owen, Roger C. R. V-20.}, + address = {London}, + key = {Owen (1908)}, + lgcode = {Bari [ligo1238]}, + publisher = {J. and E. Bumpus}, + title = {Bari grammar and vocabulary}, + year = {1908} +} + +@article{seligmanandseligman1928, + author = {Seligman, C. G. and Seligman, B. Z.}, + glottolog_ref = {hh:e:SeligmanSeligman:Bari}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Seligman and Seligman (1928)}, + lgcode = {Bari [ligo1238]}, + pages = {409-479}, + title = {The Bari}, + volume = {58}, + year = {1928} +} + +@article{barton1923, + author = {Barton, J.}, + journal = {Jounr. Roy. Anth. Inst.}, + key = {Barton (1923)}, + lgcode = {Kipsigis [kips1239]}, + pages = {42-78}, + title = {Notes on the Kipsikis or Lumbwa Tribe}, + volume = {53}, + year = {1923} +} + +@book{peristiany1938, + author = {Peristiany, J. G.}, + address = {Paris}, + key = {Peristiany (1938)}, + lgcode = {Kipsigis [kips1239]}, + title = {La vie et le droit coutumier des Kipsigis}, + year = {1938} +} + +@misc{hallpike1969, + author = {Hallpike, C. R.}, + howpublished = {Manuscript}, + key = {Hallpike (1969)}, + lgcode = {Konso [kons1243]}, + title = {The Konso of Ethiopia}, + year = {1969} +} + +@book{jensen1936, + author = {Jensen, A. E.}, + address = {Stuttgart}, + glottolog_ref = {eballiso2009:11941}, + key = {Jensen (1936)}, + lgcode = {Darasa [gede1246], Konso [kons1243], Sidama [sida1246]}, + publisher = {Stuttgart: Strecker & Schröder}, + title = {Im Lande des Gada}, + year = {1936} +} + +@incollection{kluckhohn1962, + author = {Kluckhohn, R.}, + editor = {Bohannan, P. and Dalton, G.}, + address = {Evanston}, + booktitle = {Markets in Africa}, + key = {Kluckhohn (1962)}, + lgcode = {Konso [kons1243]}, + pages = {409-428}, + title = {The Konso Economy}, + year = {1962} +} + +@article{hildebrandt1875, + author = {Hildebrandt, N. M.}, + journal = {Zeitschrift für Ethnologie}, + key = {Hildebrandt (1875)}, + lgcode = {Esa [nort3051]}, + pages = {1-15}, + title = {Vorlaufige Bemerkungen uber die Somal}, + volume = {7}, + year = {1875} +} + +@book{lewis1955, + author = {Lewis, I. M.}, + address = {London}, + key = {Lewis (1955)}, + lgcode = {Afar [afar1241], Esa [nort3051], Somali [nort3051]}, + title = {Peoples of the Horn of Africa}, + year = {1955} +} + +@book{paulitschke1888, + author = {Paulitschke, P.}, + glottolog_ref = {eballiso2009:53689}, + key = {Paulitschke (1888)}, + lgcode = {Esa [nort3051], Somali [nort3051]}, + note = {2nd edit.}, + publisher = {Leipzig}, + title = {Beiträge zur Ethnographie und Anthropologie der Somali, Galla und Harari}, + year = {1888} +} + +@book{huntingford1955b, + author = {Huntingford, G. W. B.}, + address = {London}, + glottolog_ref = {eballiso2009:42663}, + key = {Huntingford (1955b)}, + lgcode = {Arusi [bora1271], Gibe [west2721], Kafa [kafa1242], Macha [west2721], Yem [toba1264]}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + series = {Ethnographic survey of Africa, North-Eastern Africa}, + title = {The Galla of Ethiopia: the kingdoms of Kafa and Janjero}, + volume = {2}, + year = {1955} +} + +@book{paulitschke189396b, + author = {Paulitschke, P.}, + address = {Berlin}, + key = {Paulitschke (1893-96b)}, + lgcode = {Arusi [bora1271]}, + title = {Ethnographie Nordost-Afrikas. 2V}, + year = {1893-96} +} + +@book{cecchi188587, + author = {Cecchi, A.}, + address = {Roma}, + key = {Cecchi (1885-87)}, + lgcode = {Gibe [west2721]}, + title = {Da Zeila alle frontiere del Caffa. 3V}, + year = {1885-87} +} + +@book{cerulli193233, + author = {Cerulli, E.}, + address = {Roma}, + key = {Cerulli (1932-33)}, + lgcode = {Gibe [west2721], Kafa [kafa1242]}, + title = {Etiopia occidentale. 2V}, + year = {1932-33} +} + +@book{onnekin1956, + author = {Onnekin, D. A.}, + address = {Frankfurt am Main}, + key = {Onnekin (1956)}, + lgcode = {Gibe [west2721]}, + title = {Die Königskultur Kaffas und der verwandten Königsreiche}, + year = {1956} +} + +@article{knutsson1963, + author = {Knutsson, K. E.}, + journal = {Ethnology}, + key = {Knutsson (1963)}, + lgcode = {Macha [west2721]}, + pages = {506-511}, + title = {Social Structure of the Mecca Galla}, + volume = {2}, + year = {1963} +} + +@book{knutsson1967, + author = {Knutsson, K. E.}, + address = {Göteborg}, + glottolog_ref = {eballiso2009:35639}, + key = {Knutsson (1967)}, + lgcode = {Macha [west2721]}, + pages = {1-239}, + publisher = {Etnografiska muséet}, + title = {Authority and change: a study of the kallu institution among the Macha Galla of Ethiopia}, + year = {1967} +} + +@phdthesis{fleming1965, + author = {Fleming, H. C.}, + key = {Fleming (1965)}, + lgcode = {Banna [hame1242], Burji [burj1242], Hamar [hame1242], Tsamai [tsam1247]}, + school = {University of Pittsburgh}, + title = {The Age-Grading Cultures of East Africa}, + year = {1965} +} + +@article{ricci1950, + author = {Ricci, M.}, + journal = {Rasegna Stud. Etiop.}, + key = {Ricci (1950)}, + lgcode = {Arbore [arbo1245]}, + pages = {5-40}, + title = {Notizie etnografiche sugli Arbore}, + volume = {9}, + year = {1950} +} + +@misc{lewis1957, + author = {Lewis, I. M.}, + address = {Hargeisa}, + howpublished = {Manuscript}, + key = {Lewis (1957)}, + lgcode = {Somali [nort3051]}, + title = {The Somali Lineage System and the Total Geneaology: A General Introduction to Basic Principles of Somali Political Institutions}, + year = {1957} +} + +@book{lewis1961, + author = {Lewis, I. M.}, + address = {London}, + key = {Lewis (1961)}, + lgcode = {Somali [nort3051]}, + title = {A Pastoral Democracy}, + year = {1961} +} + +@book{lewis1962b, + author = {Lewis, I. M.}, + address = {Kampala}, + key = {Lewis (1962b)}, + lgcode = {Somali [nort3051]}, + publisher = {East African Institute for Social and Economic Research}, + series = {East African Studies}, + title = {Marriage and the Family in the Northern Somaliland}, + volume = {15}, + year = {1962} +} + +@incollection{lewis1962c, + author = {Lewis, I. M.}, + editor = {Bohannon, P. and Dalton, G.}, + address = {Evanston}, + booktitle = {Markets in Africa}, + key = {Lewis (1962c)}, + lgcode = {Somali [nort3051]}, + pages = {365-385}, + title = {Trade and Markets in Northern Somaliland}, + year = {1962} +} + +@incollection{lewis1965a, + author = {Lewis, I. M.}, + editor = {J. L. Gibbs, Jr.}, + address = {New York}, + booktitle = {Peoples of Africa}, + key = {Lewis (1965a)}, + lgcode = {Somali [nort3051]}, + pages = {319-360}, + title = {The Northern Pastoral Somali}, + year = {1965} +} + +@book{puccioni1936, + author = {Puccioni, N.}, + address = {Bologna}, + key = {Puccioni (1936)}, + lgcode = {Somali [nort3051]}, + pages = {1-140}, + title = {Antropologia e etnografia delle genti della Somalia}, + volume = {3}, + year = {1936} +} + +@article{hohnel1890, + author = {Hohnel, L. von.}, + journal = {Petermanns Mitt., Erganzungsh.}, + key = {Hohnel (1890)}, + lgcode = {Galab [daas1238]}, + number = {xcix}, + pages = {1-40}, + title = {Ostaquatorial-Afrika}, + volume = {21}, + year = {1890} +} + +@article{ricci1952, + author = {Ricci, M.}, + glottolog_ref = {hh:e:Ricci:Amar}, + journal = {Rasegna Stud. Etiop.}, + key = {Ricci (1952)}, + lgcode = {Hamar [hame1242]}, + pages = {49-95}, + title = {Notizie etnografiche sugli Amar}, + volume = {9}, + year = {1952} +} + +@book{straube1963, + author = {Straube, H.}, + address = {Stuttgart}, + glottolog_ref = {hh:e:Straube:Westkuschitische}, + key = {Straube (1963)}, + lgcode = {Baditu [koor1239], Dorse [dorz1235], Shako [shek1245], Yem [toba1264]}, + publisher = {Stuttgart: W. Kohlhammer}, + series = {Völker Süd-Äthiopiens: Ergebnisse der Frobenius-Expeditionen 1950-52 und 1954-56}, + title = {Westkuschitische Volker Sud-Aethiopiens}, + volume = {III}, + year = {1963} +} + +@misc{fischer1957b, + author = {Fischer, J. L.}, + howpublished = {Personal Communication}, + key = {Fischer (1957b)}, + lgcode = {Tigrinya [tigr1271]}, + year = {1957} +} + +@book{munzinger1864, + author = {Munzinger, W.}, + address = {Schaffhausen}, + glottolog_ref = {eballiso2009:46843}, + key = {Munzinger (1864)}, + lgcode = {Beni-Amer [mans1267], Kunama [kuna1268], Nara [nara1262], Tigre [mans1267], Tigrinya [tigr1271]}, + publisher = {F. Hurter}, + title = {Ostafrikanische Studien}, + year = {1864} +} + +@article{nadel1946, + author = {Nadel, S. F.}, + journal = {Africa}, + key = {Nadel (1946)}, + lgcode = {Tigrinya [tigr1271]}, + pages = {1-22, 99-109}, + title = {Land Tenure on the Eritrean Plateau}, + volume = {16}, + year = {1946} +} + +@book{bieber192023, + author = {Bieber, F. J.}, + address = {Münster}, + key = {Bieber (1920-23)}, + lgcode = {Kafa [kafa1242]}, + title = {Kaffa. 2v}, + year = {1920-23} +} + +@book{flad1860, + author = {Flad, J. M. A.}, + address = {Chrishona}, + key = {Flad (1860)}, + lgcode = {Beta Israel [qima1242]}, + title = {A Short Description of the Falashas and Kemants}, + year = {1860} +} + +@article{leslau1951, + author = {Leslau, W.}, + address = {New Haven CN & London}, + glottolog_ref = {eballiso2009:41756}, + journal = {Yale Judaica Ser.}, + key = {Leslau (1951)}, + lgcode = {Beta Israel [qima1242]}, + pages = {1-122}, + publisher = {New Haven CN & London: Yale Univ. Press; George Cumberlege}, + series = {Yale judaica series}, + title = {Falasha Anthrology}, + volume = {6}, + year = {1951} +} + +@article{leslau1957, + author = {Leslau, W.}, + journal = {Trav. Mem. Inst. Ethnol.}, + key = {Leslau (1957)}, + lgcode = {Beta Israel [qima1242]}, + pages = {1-98}, + title = {Coutumes et croyances des Falachas}, + volume = {61}, + year = {1957} +} + +@book{stern1862, + author = {Stern, H. A.}, + address = {London}, + key = {Stern (1862)}, + lgcode = {Beta Israel [qima1242]}, + title = {Wanderings Among the Falashas in Abyssinia}, + year = {1862} +} + +@book{grottanelliandmassari1943, + author = {Grottanelli, V. I. and Massari., C.}, + address = {Rome}, + key = {Grottanelli and Massari (1943)}, + lgcode = {Kunama [kuna1268], Nara [nara1262]}, + pages = {1-416}, + series = {Missione di Studio al Largo Tana}, + title = {I. Baria, i Cunama e i Beni Amer}, + volume = {2}, + year = {1943} +} + +@book{pollera1913, + author = {Pollera, C.}, + address = {Roma}, + key = {Pollera (1913)}, + lgcode = {Kunama [kuna1268], Nara [nara1262]}, + title = {I Baria e i Cunama}, + year = {1913} +} + +@article{tucci1950, + author = {Tucci, G.}, + address = {Napoli}, + journal = {Rev. Etnog.}, + key = {Tucci (1950)}, + lgcode = {Kunama [kuna1268], Nara [nara1262]}, + pages = {49-75}, + title = {I Baria e i Cunama}, + volume = {4}, + year = {1950} +} + +@book{klunzinger1876, + author = {Klunzinger, C. B.}, + address = {New York}, + key = {Klunzinger (1876)}, + lgcode = {Ababda [abab1239]}, + title = {Upper Egypt}, + year = {1876} +} + +@article{murray1923, + author = {Murray, G. W.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Murray (1923)}, + lgcode = {Ababda [abab1239]}, + pages = {39-53}, + title = {The Northern Beja}, + volume = {57}, + year = {1923} +} + +@book{murray1935, + author = {Murray, G. W.}, + address = {London}, + key = {Murray (1935)}, + lgcode = {Ababda [abab1239], Bisharin [bish1251], Saadi [said1239]}, + title = {Sons of Ishmael}, + year = {1935} +} + +@article{clark1938, + author = {Clark, W. T.}, + journal = {Sudan Notes and Records}, + key = {Clark (1938)}, + lgcode = {Amarar [amar1281], Bisharin [bish1251]}, + pages = {1-30}, + title = {Manners, Customs and Beliefs of the Northern Bega}, + volume = {21}, + year = {1938} +} + +@article{sandars1935, + author = {Sandars, G. E. R.}, + journal = {Sudan Notes and Records}, + key = {Sandars (1935)}, + lgcode = {Amarar [amar1281]}, + pages = {ii, 195-220}, + title = {The Amarar}, + volume = {18}, + year = {1935} +} + +@article{nadel1945, + author = {Nadel, S. F.}, + glottolog_ref = {hh:e:Nadel:Beni-Amer}, + journal = {Sudan Notes and Records}, + key = {Nadel (1945)}, + lgcode = {Beni-Amer [mans1267]}, + pages = {51-94}, + title = {Notes on Beni Amer Society}, + volume = {26}, + year = {1945} +} + +@article{paul1950, + author = {Paul, A.}, + glottolog_ref = {hh:e:Paul:Amer}, + journal = {Sudan Notes and Records}, + key = {Paul (1950)}, + lgcode = {Beni-Amer [mans1267]}, + pages = {223-245}, + title = {Notes on the Beni Amer}, + volume = {31}, + year = {1950} +} + +@book{munzinger1859, + author = {Munzinger, W.}, + address = {Winterthur}, + key = {Munzinger (1859)}, + lgcode = {Blin [bili1260]}, + title = {Ueber die Sitten und das Recht der Bogos}, + year = {1859} +} + +@book{littman1910, + author = {Littman, E.}, + address = {Leiden}, + key = {Littman (1910)}, + lgcode = {Tigre [mans1267]}, + series = {Publ. Princeton Edped Abyssinia}, + title = {Tales, Customs, Names and Dirges of the Tigre Tribes}, + volume = {2}, + year = {1910} +} + +@book{lewis1965b, + author = {Lewis, H. S.}, + address = {Madison}, + key = {Lewis (1965b)}, + lgcode = {Jimma [west2721]}, + title = {A Galla Monarchy}, + year = {1965} +} + +@misc{winter1955, + author = {Winter, E. H.}, + howpublished = {Unpublished Manuscript}, + key = {Winter (1955)}, + lgcode = {Iraqw [iraq1241]}, + title = {Some Aspects of Political Organization and Land Tenure Among the Iraqw}, + year = {1955} +} + +@article{winterandmolyneaux1963, + author = {Winter, E. H. and Molyneaux., L.}, + journal = {Ethnology}, + key = {Winter and Molyneaux (1963)}, + lgcode = {Iraqw [iraq1241]}, + pages = {490-505}, + title = {Population Problems and Patterns Among the Iraqw}, + volume = {2}, + year = {1963} +} + +@article{straube1957, + author = {Straube, H.}, + journal = {Paideuma}, + key = {Straube (1957)}, + lgcode = {Dorse [dorz1235]}, + pages = {342-353}, + title = {Das Dualsystem und die Halaka-Verfassung der Dorse}, + volume = {6}, + year = {1957} +} + +@article{owen1937, + author = {Owen, T. R. H.}, + glottolog_ref = {hh:e:Owen:Hadendowa}, + journal = {Sudan Notes and Records}, + key = {Owen (1937)}, + lgcode = {Hadendowa [hade1248]}, + pages = {183-288}, + title = {The Hadendowa}, + volume = {20}, + year = {1937} +} + +@book{rober1928, + author = {Rober, E. M.}, + address = {Hartford}, + key = {Rober (1928)}, + lgcode = {Hadendowa [hade1248]}, + title = {Tu Bedawie}, + year = {1928} +} + +@article{sandars1933, + author = {Sandars, G. E. R.}, + glottolog_ref = {hh:e:Sandars:Bisharin}, + journal = {Sudan Notes and Records}, + key = {Sandars (1933)}, + lgcode = {Bisharin [bish1251]}, + pages = {119-149}, + title = {The Bisharin}, + volume = {16}, + year = {1933} +} + +@article{lucas1935, + author = {Lucas, M.}, + glottolog_ref = {weball:12433}, + journal = {Journ. Soc. Africanistes}, + key = {Lucas (1935)}, + lgcode = {Afar [afar1241]}, + pages = {181-202}, + title = {Renseignements ethnographiques et linguistiques sur les Danakils de Tadjourah}, + volume = {5}, + year = {1935} +} + +@book{paulitschke189396a, + author = {Paulitschke, P.}, + address = {Berlin}, + key = {Paulitschke (1893-96a)}, + lgcode = {Afar [afar1241]}, + title = {Ethnographie Nordost-Afrikas V}, + year = {1893-96} +} + +@article{scaramucciandgiglioli1884, + author = {Scaramucci, F. and Giglioli., E. H.}, + journal = {Arch. Antr. Etnol.}, + key = {Scaramucci and Giglioli (1884)}, + lgcode = {Afar [afar1241]}, + pages = {17-44}, + title = {Notizie sui Danakil}, + volume = {14}, + year = {1884} +} + +@book{lipsky1962, + author = {Lipsky, G. A.}, + address = {New Haven}, + key = {Lipsky (1962)}, + lgcode = {Amhara [amha1245]}, + title = {Ethiopia}, + year = {1962} +} + +@phdthesis{messing1957, + author = {Messing, S. D.}, + glottolog_ref = {eballiso2009:55532}, + key = {Messing (1957)}, + lgcode = {Amhara [amha1245]}, + school = {University of Pennsylvania}, + title = {The Highland-Plateau Amhara of Ethiopia}, + year = {1957} +} + +@article{leslau1950, + author = {Leslau, W.}, + glottolog_ref = {wals:3568}, + journal = {Viking Fund Publ. Anth.}, + key = {Leslau (1950)}, + lgcode = {Gurage [seba1251]}, + pages = {1-176}, + publisher = {New York: Academic Press}, + series = {Viking Fund Publications in Anthropology}, + title = {Ethiopic Documents: Gurage}, + volume = {14}, + year = {1950} +} + +@article{shack1963, + author = {Shack, W. A.}, + journal = {Africa}, + key = {Shack (1963)}, + lgcode = {Gurage [seba1251]}, + pages = {198-208}, + title = {Religious Ideas and Social Action in Gurage Bond friendship}, + volume = {33}, + year = {1963} +} + +@book{reche1914, + author = {Reche, O.}, + address = {Hamburg}, + glottolog_ref = {eballiso2009:47034}, + key = {Reche (1914)}, + lgcode = {Goroa [goro1270]}, + publisher = {Hamburg: Friederichsen, De Gruyter & Co.}, + series = {Abh. des hamburgischen Kolonial-Inst.}, + title = {Zur Ethnographie des abflusslosen Gebietes Deutsch-OstAfrikas}, + volume = {17; Reihe B: Völkerkunde, Kulturgeschichte und Sprachen, #11}, + year = {1914} +} + +@article{greenberg1946, + author = {Greenberg, J. H.}, + journal = {Monographs of the American Ethnological Society}, + key = {Greenberg (1946)}, + lgcode = {Maguzawa [kano1249], Zazzagawa Hausa [araw1280]}, + pages = {1-73}, + title = {The Influence of Islam on a Sudanese Religion}, + volume = {10}, + year = {1946} +} + +@article{greenberg1947, + author = {Greenberg, J. H.}, + glottolog_ref = {eballiso2009:15210}, + journal = {Southwestern Journal of Anthropology}, + key = {Greenberg (1947)}, + lgcode = {Maguzawa [kano1249], Zazzagawa Hausa [araw1280]}, + pages = {193-211}, + title = {Islam and Clan Organization among the Hausa}, + volume = {3}, + year = {1947} +} + +@article{lampen1925, + author = {Lampen, E.}, + journal = {Sudan Notes and Records}, + key = {Lampen (1925)}, + lgcode = {Midobi [mido1240]}, + pages = {55-67}, + title = {A Short Account of Meidob}, + volume = {11}, + year = {1925} +} + +@article{macmichael1912, + author = {MacMichael, H. A.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {MacMichael (1912)}, + lgcode = {Midobi [mido1240]}, + pages = {335-344}, + title = {Notes on the Zaghawa and the People of Gebel Midob}, + volume = {42}, + year = {1912} +} + +@article{macmichael1918, + author = {MacMichael, H. A.}, + glottolog_ref = {weball:12611}, + journal = {Sudan Notes and Records}, + key = {MacMichael (1918)}, + lgcode = {Midobi [mido1240]}, + pages = {33-53}, + title = {Nubian Elements in Darfur}, + volume = {1}, + year = {1918} +} + +@book{macmichael1922, + author = {MacMichael, H. A.}, + address = {Cambridge}, + key = {MacMichael (1922a)}, + lgcode = {Fur [furr1244], Midobi [mido1240]}, + title = {A History of the Arabs in the Sudan and some account of the people who preceded them and of the tribes inhabiting Dárfur}, + volume = {1}, + year = {1922} +} + +@article{reid1930, + author = {Reid, J. A.}, + journal = {Sudan Notes and Records}, + key = {Reid (1930)}, + lgcode = {Gimma [nort3133], Hasania [khar1296]}, + pages = {149-209}, + title = {Some Notes on the Tribes of the White Nile Province}, + volume = {13}, + year = {1930} +} + +@article{lampen1933, + author = {Lampen, G. D.}, + glottolog_ref = {hh:e:Lampen:Baggara}, + journal = {Sudan Notes Rec.}, + key = {Lampen (1933)}, + lgcode = {Habbaniya [nort3133]}, + pages = {97-118}, + title = {The Baggara Tribes of Darfur}, + volume = {XVI}, + year = {1933} +} + +@article{lagrange1913, + author = {Lagrange.}, + journal = {Geographie}, + key = {Lagrange (1913)}, + lgcode = {Hemat [bath1248]}, + pages = {157-171}, + title = {La circonscription du Batha}, + volume = {28}, + year = {1913} +} + +@article{martine1924, + author = {Martine.}, + journal = {Bulletin de la Société des Recherches Congolaises}, + key = {Martine (1924)}, + lgcode = {Hemat [bath1248]}, + pages = {19-83}, + title = {Essai sur l'histoire du pays Salamat et les mocurs et coutumes de ses habitants}, + volume = {5}, + year = {1924} +} + +@article{cunnison1954, + author = {Cunnison, I.}, + journal = {Sudan Notes}, + key = {Cunnison (1954)}, + lgcode = {Messiria Humr [tama1331]}, + pages = {ii, 50-68}, + title = {The Humr and Their Land}, + volume = {35}, + year = {1954} +} + +@article{henderson1939, + author = {Henderson, K. D. D.}, + glottolog_ref = {eballiso2009:27055}, + journal = {Sudan Notes and Records}, + key = {Henderson (1939)}, + lgcode = {Messiria Humr [tama1331]}, + pages = {49-77}, + title = {A Note on the Migration of the Messiria Tribe into South West Kordofan}, + volume = {23}, + year = {1939} +} + +@book{bouille1937, + author = {Bouillé, R.}, + address = {Paris}, + key = {Bouillé (1937)}, + lgcode = {Buduma [budu1265], Daza [daza1242], Kanembu [kane1243], Shuwa [char1283]}, + title = {Les coutumes familiales au Kanem}, + year = {1937} +} + +@article{devallee1925, + author = {Devallee.}, + journal = {Bulletin de la Société des Recherches Congolaises}, + key = {Devallee (1925)}, + lgcode = {Shuwa [char1283]}, + pages = {3-76}, + title = {Le Baghirmi}, + volume = {7}, + year = {1925} +} + +@incollection{barth1967, + author = {Barth, F.}, + editor = {Firth, R.}, + booktitle = {Themes in Economic Anthropology}, + key = {Barth (1967)}, + lgcode = {Fur [furr1244]}, + pages = {149-174}, + series = {Association for Social Anthropology Monographs}, + title = {Economic Spheres in Darfur}, + volume = {6}, + year = {1967} +} + +@article{beaton1948, + author = {Beaton, A. C.}, + glottolog_ref = {eballiso2009:31938}, + journal = {Sudan Notes and Records}, + key = {Beaton (1948)}, + lgcode = {Fur [furr1244]}, + pages = {1-39}, + title = {The Fur}, + volume = {29}, + year = {1948} +} + +@article{felkin1885, + author = {Felkin, R. W.}, + journal = {Proceedings of the Royal Society of Edinburgh}, + key = {Felkin (1885)}, + lgcode = {Fur [furr1244]}, + pages = {205-265}, + title = {Notes on the Fur Tribe}, + volume = {23}, + year = {1885} +} + +@book{tunisi1845, + author = {Tunisi and 'Umar, Muhammad Ibn and al-.}, + address = {Paris}, + key = {Tunisi (1845)}, + lgcode = {Fur [furr1244]}, + title = {Voyage au Darfour, traduit de l'Arabe par le Dr. Perron}, + year = {1845} +} + +@misc{carbou1912, + author = {Carbou, H.}, + address = {Paris}, + key = {Carbou (1912)}, + lgcode = {Daza [daza1242], Kanembu [kane1243]}, + title = {La region du Tehad et du Quadai 1: 172}, + year = {1912} +} + +@phdthesis{cohen1960, + author = {Cohen, R.}, + glottolog_ref = {eballiso2009:47830}, + key = {Cohen (1960)}, + lgcode = {Kanuri [cent2050]}, + school = {University of Wisconsin}, + title = {The structure of Kanuri society}, + year = {1960} +} + +@article{cohen1961, + author = {Cohen, R.}, + journal = {American Anthropologist}, + key = {Cohen (1961)}, + lgcode = {Kanuri [cent2050]}, + pages = {1231-1249}, + title = {Marriage Instability Among the Kanuri of Northern Nigeria}, + volume = {63}, + year = {1961} +} + +@book{cohen1967, + author = {Cohen, R.}, + address = {New York}, + glottolog_ref = {eballiso2009:47833}, + key = {Cohen (1967)}, + lgcode = {Kanuri [cent2050]}, + publisher = {New York: Holt, Rinehart & Winston}, + title = {The Kanuri of Bornu}, + year = {1967} +} + +@book{denhamandclapperton1826, + author = {Denham, D. and Clapperton., H.}, + address = {London}, + glottolog_ref = {eballiso2009:52947}, + key = {Denham and Clapperton (1826)}, + lgcode = {Kanuri [cent2050]}, + publisher = {London: John Murray}, + title = {Narrative of Travels and Discoveries in Northern and Central Africa}, + year = {1826} +} + +@book{schultze1913, + author = {Schultze, A.}, + editor = {Benton, P. A.}, + address = {London}, + key = {Schultze (1913)}, + lgcode = {Kanuri [cent2050]}, + title = {The Sultanate of Bornu}, + year = {1913} +} + +@phdthesis{ames1953, + author = {Ames, D. W.}, + key = {Ames (1953)}, + lgcode = {Wolof [nucl1347]}, + school = {Northwestern University}, + title = {Plural Marriage Among the Wolof in the Gambia}, + year = {1953} +} + +@incollection{ames1959a, + author = {Ames, D. W.}, + editor = {Bascom, W. R. and Herskovits, M. J.}, + address = {Chicago}, + booktitle = {Continuity and Change in African Cultures}, + key = {Ames (1959a)}, + lgcode = {Wolof [nucl1347]}, + pages = {156-68}, + title = {Selection of Mates}, + year = {1959} +} + +@incollection{ames1959b, + author = {Ames, D. W.}, + editor = {Bascom, W. R. and Herskovits, M. J.}, + address = {Chicago}, + booktitle = {Continuity and Change in African Cultures}, + key = {Ames (1959b)}, + lgcode = {Wolof [nucl1347]}, + pages = {224-237}, + title = {Wolof Co-operative Work Groups}, + year = {1959} +} + +@incollection{ames1962, + author = {Ames, D. W.}, + editor = {Bohannan, P. and Dalton, G.}, + address = {Evanston}, + booktitle = {Markets in Africa}, + key = {Ames (1962)}, + lgcode = {Wolof [nucl1347]}, + pages = {29-60}, + title = {The Rural Wolof of the Gambia}, + year = {1962} +} + +@incollection{falad1963, + author = {Falad, S.}, + editor = {Paulme, D.}, + address = {London}, + booktitle = {Women of Africa}, + key = {Falad (1963)}, + lgcode = {Wolof [nucl1347]}, + pages = {217-229}, + title = {Women of Dakar and the Surrounding Urban Area}, + year = {1963} +} + +@book{gailey1965, + author = {Gailey, H. A.}, + address = {New York}, + key = {Gailey (1965)}, + lgcode = {Wolof [nucl1347]}, + title = {A History of the Gambia}, + year = {1965} +} + +@book{gamble1957, + author = {Gamble, D. P.}, + address = {London}, + key = {Gamble (1957)}, + lgcode = {Wolof [nucl1347]}, + title = {The Wolof of Senegambia}, + year = {1957} +} + +@book{gray1966, + author = {Gray, J. M.}, + address = {New York}, + glottolog_ref = {eballiso2009:51009}, + key = {Gray (1966)}, + lgcode = {Wolof [nucl1347]}, + publisher = {London: Frank Cass & Co.}, + title = {A History of the Gambia}, + year = {1966} +} + +@phdthesis{irvine1973, + author = {Irvine, J. T.}, + key = {Irvine (1973)}, + lgcode = {Wolof [nucl1347]}, + school = {University of Pennsylvania}, + title = {Caste and Communication in a Wolof Village}, + year = {1973} +} + +@book{trimingham1962, + author = {Trimingham, J. S.}, + address = {London}, + glottolog_ref = {eballiso2009:28163}, + key = {Trimingham (1962)}, + lgcode = {Wolof [nucl1347]}, + publisher = {Oxford Univ. Press; Univ. of Glasgow}, + series = {Glasgow Univ. publ}, + title = {A History of Islam in West Africa}, + year = {1962} +} + +@article{dupicq1931, + author = {du Picq., Ardant}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {du Picq (1931)}, + lgcode = {Zerma [zarm1239]}, + pages = {461-704}, + title = {Les Dyerma}, + volume = {14}, + year = {1931} +} + +@article{robin1947, + author = {Robin, J.}, + journal = {Bull. Inst. Franc. Afr. Noire}, + key = {Robin (1947)}, + lgcode = {Zerma [zarm1239]}, + pages = {56-98}, + title = {Description de la province de Dosso}, + volume = {9}, + year = {1947} +} + +@article{pfeffer1936, + author = {Pfeffer, G.}, + journal = {Zeitschrift für Ethnologie}, + key = {Pfeffer (1936)}, + lgcode = {Djafun [adam1253]}, + pages = {150-196}, + title = {Die DjAfun-Bororo}, + volume = {68}, + year = {1936} +} + +@article{coutouly1923, + author = {Coutouly, F. de.}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + key = {Coutouly (1923)}, + lgcode = {Liptako [west2454], Udalan Tuareg [timb1263]}, + pages = {269-301, 471-496, 637-671}, + title = {Les populations du cercle de Dori}, + volume = {6}, + year = {1923} +} + +@article{delmond1953, + author = {Delmond, P.}, + journal = {Mem. Inst. Franc. Afr. Noire}, + key = {Delmond (1953)}, + lgcode = {Liptako [west2454]}, + pages = {9-109}, + title = {Dans la boucle du Niger: Dori, ville peule}, + volume = {23}, + year = {1953} +} + +@article{kane1939, + author = {Kane, A. S.}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + key = {Kane (1939)}, + lgcode = {Tukulor [pula1263]}, + pages = {55-115}, + title = {Coutume civile et penale toucouleur}, + volume = {8}, + year = {1939} +} + +@article{lafont1939, + author = {Lafont.}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A,}, + key = {Lafont (1939)}, + lgcode = {Tukulor [pula1263]}, + pages = {247-301}, + title = {Coutume toucouleur}, + volume = {9}, + year = {1939} +} + +@book{dupire1962a, + author = {Dupire, M.}, + address = {Paris}, + key = {Dupire (1962a)}, + lgcode = {Wodaabe Fulani [boro1274]}, + pages = {1-327}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + title = {Peuls nomades: Etude descriptive des Wodaabe nomades du sahel nigerien}, + volume = {64}, + year = {1962} +} + +@incollection{dupire1962b, + author = {Dupire, M.}, + editor = {Bohannan, P. and Dalton, G.}, + address = {Evanston}, + booktitle = {Markets in Africa}, + key = {Dupire (1962b)}, + lgcode = {Wodaabe Fulani [boro1274]}, + pages = {335-62}, + title = {Trade and Markets in the Economy of the Nomadic Fulani of Niger}, + year = {1962} +} + +@incollection{dupire1963, + author = {Dupire, M.}, + editor = {Paulme, D.}, + address = {Berkeley (and London)}, + booktitle = {Women of Tropical Africa}, + key = {Dupire (1963)}, + lgcode = {Wodaabe Fulani [boro1274]}, + pages = {47-92}, + title = {The Position of Women in a Pastoral Society (Wodaabe)}, + year = {1963} +} + +@book{hopen1958, + author = {Hopen, C. E.}, + address = {London}, + glottolog_ref = {eballiso2009:43426}, + key = {Hopen (1958)}, + lgcode = {Wodaabe Fulani [boro1274]}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + title = {The Pastoral Fulbe Family in Gwandu}, + year = {1958} +} + +@book{johnson1967, + author = {Johnson, H. A.}, + address = {London}, + key = {Johnson (1967)}, + lgcode = {Wodaabe Fulani [boro1274]}, + title = {The Fulani Empire of Sokoto}, + year = {1967} +} + +@book{riesman1977, + author = {Riesman, P.}, + address = {Chicago}, + key = {Riesman (1977)}, + lgcode = {Wodaabe Fulani [boro1274]}, + note = {trans. M. Fuller}, + title = {Freedom in Fulani Social Life}, + year = {1977} +} + +@book{stcroix1972, + author = {St. Croix, F. W. de}, + address = {Farnborough}, + key = {St. Croix (1972)}, + lgcode = {Wodaabe Fulani [boro1274]}, + title = {The Fulani of Northern Nigeria: Some General Notes}, + year = {1972} +} + +@article{stenning1958, + author = {Stenning, D. J.}, + journal = {Cambridge Papers in Social Anthropology}, + key = {Stenning (1958)}, + lgcode = {Wodaabe Fulani [boro1274]}, + pages = {92-119}, + title = {Household Variability Among the Pastoral Fulani}, + volume = {1}, + year = {1958} +} + +@book{stenning1959, + author = {Stenning, Derrick J.}, + address = {London}, + key = {Stenning (1959)}, + lgcode = {Bororo Fulani [boro1274], Wodaabe Fulani [boro1274]}, + publisher = {Oxford University Press}, + title = {Savannah Nomads, A Study of the Wodaabe Pastoral Fulani of Western Bornu Province, Northern Region, Nigeria}, + year = {1959} +} + +@incollection{stenning1965, + author = {Stenning, D. J.}, + editor = {J. L. Gibbs, Jr.}, + address = {New York}, + booktitle = {Peoples of Africa}, + key = {Stenning (1965)}, + lgcode = {Wodaabe Fulani [boro1274]}, + pages = {361-401}, + title = {The Pastoral Fulani of Northern Nigeria}, + year = {1965} +} + +@article{anonymous1939, + author = {Anonymous}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + key = {Anonymous (1939)}, + lgcode = {Tazarawa [haus1257]}, + pages = {261-301}, + title = {Coutumes haoussa et peul}, + volume = {10}, + year = {1939} +} + +@inproceedings{dry1956, + author = {Dry, D. P. L.}, + booktitle = {Proceedings of the International West African Conference (1949)}, + key = {Dry (1956)}, + lgcode = {Zazzagawa Hausa [araw1280]}, + pages = {158-163}, + title = {Some Aspects of Hausa Family Structure}, + year = {1956} +} + +@book{hill1972, + author = {Hill, P.}, + address = {New York}, + key = {Hill (1972)}, + lgcode = {Zazzagawa Hausa [araw1280]}, + title = {Rural Hausa}, + year = {1972} +} + +@article{prothero1957, + author = {Prothero, R. M.}, + journal = {Economic Geography}, + key = {Prothero (1957)}, + lgcode = {Zazzagawa Hausa [araw1280]}, + pages = {72-86}, + title = {Land Use at Soba}, + volume = {33}, + year = {1957} +} + +@book{smith1954a, + author = {Smith, M. F.}, + address = {New York}, + key = {Smith (1954a)}, + lgcode = {Zazzagawa Hausa [araw1280]}, + note = {rev. ed. 1964}, + title = {Baba oæ Karo: A Woman of the Muslim Hausa}, + year = {1954} +} + +@article{smith1955b, + author = {Smith, M. G.}, + journal = {Colonial Office Research Studies}, + key = {Smith (1955b)}, + lgcode = {Zazzagawa Hausa [araw1280]}, + pages = {1-264}, + title = {The Economy of Hausa Communities of Zaria}, + volume = {16}, + year = {1955} +} + +@book{smith1960, + author = {Smith, M. G.}, + address = {London}, + key = {Smith (1960)}, + lgcode = {Zazzagawa Hausa [araw1280]}, + title = {Government in Zazzau 1800-1950}, + year = {1960} +} + +@incollection{smith1962, + author = {Smith, M. G.}, + editor = {Bohannan, P. and Dalton, G.}, + address = {Evanston}, + booktitle = {Markets in Africa}, + key = {Smith (1962)}, + lgcode = {Zazzagawa Hausa [araw1280]}, + pages = {69-81}, + title = {Exchange and Marketing Among the Hausa}, + year = {1962} +} + +@incollection{smith1965, + author = {Smith, M. G.}, + editor = {Jr., J. L. Gibbs}, + address = {New York}, + booktitle = {Peoples of Africa}, + glottolog_ref = {hh:e:Smith:Hausa}, + key = {Smith (1965)}, + lgcode = {Zazzagawa Hausa [araw1280]}, + pages = {119-155}, + publisher = {Holt, Rinehart & Winston}, + title = {The Hausa of Northern Nigeria}, + year = {1965} +} + +@incollection{smith1967, + author = {Smith, M. G.}, + editor = {Forde, D. and Kaberry, P. M.}, + address = {London}, + booktitle = {West African Kingdoms in the Nineteenth Century}, + key = {Smith (1967)}, + lgcode = {Zazzagawa Hausa [araw1280]}, + pages = {93-122}, + publisher = {Oxford University Press}, + title = {A Hausa Kingdom: Maradi under Dan Baskore, c 1854-75}, + year = {1967} +} + +@book{smith1978b, + author = {Smith, M. G.}, + address = {Berkeley}, + key = {Smith (1978b)}, + lgcode = {Zazzagawa Hausa [araw1280]}, + publisher = {University of California Press}, + title = {The Affairs of Daura: History and Changes in a Hausa State 1800-1958}, + year = {1978} +} + +@article{fegan1930, + author = {Fegan, E. S.}, + journal = {Journ. Afr. Soc.}, + key = {Fegan (1930)}, + lgcode = {Bachama [baca1246]}, + pages = {269-279, 376-400}, + title = {Some Notes on the Bachama Tribe}, + volume = {29}, + year = {1930} +} + +@book{jacquemond1959, + author = {Jacquemond, M. S.}, + address = {Paris}, + key = {Jacquemond (1959)}, + lgcode = {Songhai [koyr1242]}, + title = {Les pêcheurs du boucle du Niger}, + year = {1959} +} + +@book{miner1953, + author = {Miner, H.}, + address = {Princeton}, + key = {Miner (1953)}, + lgcode = {Barabish [hass1238], Kel Antessar [timb1263], Songhai [koyr1242]}, + note = {rev. ed. 1965}, + title = {The Primitive City of Timbuctoo}, + year = {1953} +} + +@article{prost1954, + author = {Prost, A.}, + glottolog_ref = {eballiso2009:18356}, + journal = {Bulletin de l'Institut Francais de l'Afrique Noire, ser. 3}, + key = {Prost (1954)}, + lgcode = {Songhai [koyr1242]}, + pages = {167-213}, + title = {Notes sur les songhay}, + volume = {16}, + year = {1954} +} + +@article{prost1970, + author = {Prost, A.}, + journal = {Bulletin de l'Institut fondamental de l'Afrique noire}, + key = {Prost (1970)}, + lgcode = {Songhai [koyr1242]}, + number = {2}, + pages = {486-517}, + title = {Statut du la femme Songhay}, + volume = {32}, + year = {1970} +} + +@book{rouch1954, + author = {Rouch, J.}, + address = {Paris}, + glottolog_ref = {eballiso2009:28159}, + key = {Rouch (1954)}, + lgcode = {Songhai [koyr1242]}, + publisher = {Paris: Presses Universitaires de France; International African Inst. (IAI)}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + title = {Les Songhay}, + volume = {2}, + year = {1954} +} + +@book{rouch1960, + author = {Rouch, J.}, + address = {Paris}, + glottolog_ref = {eballiso2009:28161}, + key = {Rouch (1960)}, + lgcode = {Songhai [koyr1242]}, + publisher = {Paris: Presses Universitaires de France}, + title = {La Religion et la Magie Songhay}, + year = {1960} +} + +@article{sarr1973, + author = {Sarr, M.}, + journal = {Etudes maliennes}, + key = {Sarr (1973)}, + lgcode = {Songhai [koyr1242]}, + pages = {1-74}, + title = {Le Songhay}, + volume = {4}, + year = {1973} +} + +@article{talbot1911, + author = {Talbot, P. A.}, + glottolog_ref = {hh:ew:Talbot:Buduma}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Talbot (1911)}, + lgcode = {Buduma [budu1265]}, + pages = {245-259}, + title = {The Buduma of Lake Chad}, + volume = {41}, + year = {1911} +} + +@misc{woodnd, + author = {Wood, W. M.}, + howpublished = {Manuscript}, + key = {Wood (nd)}, + lgcode = {Tera [tera1251]}, + title = {Tera Notebooks} +} + +@article{faidherbe1882, + author = {Faidherbe, L. L. C. V-8.}, + glottolog_ref = {hh:s:Faidherbe:Poul}, + key = {Faidherbe (1882)}, + lgcode = {Bororo Fulani [boro1274]}, + publisher = {Paris: Miasonneuve et Libraires}, + title = {Grammaire et vocabulaire de la langue Peul}, + year = {1882} +} + +@book{fordeandscott1946, + author = {Forde, D. and Scott, R.}, + address = {London}, + key = {Forde and Scott (1946)}, + lgcode = {Bororo Fulani [boro1274], Hausa Kanawa [kano1249]}, + title = {The Native Economies of Nigeria}, + year = {1946} +} + +@book{stcroix1944, + author = {St. Croix, F. W. de}, + address = {Lagos}, + key = {St. Croix (1944)}, + lgcode = {Bororo Fulani [boro1274], Wodaabe Fulani [boro1274]}, + title = {The Fulani of Northern Nigeria}, + year = {1944} +} + +@article{wilsonhaffenden1925, + author = {Wilson-Haffenden, J. R.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Wilson-Haffenden (1925)}, + lgcode = {Bororo Fulani [boro1274]}, + pages = {275-293}, + title = {Ethnological Notes on the Shuwalbe Group of the Borroro Fulani}, + volume = {57}, + year = {1925} +} + +@book{smith1955a, + author = {Smith, M. F.}, + address = {New York}, + key = {Smith (1955a)}, + lgcode = {Hausa Kanawa [kano1249]}, + title = {Baba of Karo}, + year = {1955} +} + +@article{briggs1958, + author = {Briggs, L. L.}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + key = {Briggs (1958)}, + lgcode = {Chaambra [algi1247], Regeibat [hass1238], Teda [teda1241], Tuareg Ahaggar [hogg1238]}, + pages = {ii, 1-217}, + title = {The Living Races of the Sahara Desert}, + volume = {28}, + year = {1958} +} + +@book{carobaroja1955, + author = {Caro Baroja, J.}, + address = {Madrid}, + glottolog_ref = {eballiso2009:5306}, + key = {Caro Baroja (1955)}, + lgcode = {Delim [hass1238], Regeibat [hass1238]}, + publisher = {Madrid: Júcar}, + title = {Estudios saharianos}, + year = {1955} +} + +@article{cauneille1950, + author = {Cauneille, A.}, + journal = {Trav. Inst. Rech. Sahar. Univ. Alger}, + key = {Cauneille (1950)}, + lgcode = {Regeibat [hass1238]}, + pages = {83-100}, + title = {Les nomades Regueibat}, + volume = {6}, + year = {1950} +} + +@book{jean1909, + author = {Jean, C.}, + address = {Paris}, + key = {Jean (1909)}, + lgcode = {Asben [taya1257]}, + title = {Les Touareg du sud-est}, + year = {1909} +} + +@article{joubert1939, + author = {Joubert}, + journal = {Bull Inst. Franc. Afr. Noire}, + key = {Joubert (1939)}, + lgcode = {Asben [taya1257]}, + pages = {245-281}, + title = {Les coutumes et le droit chez les Kel Tadele}, + volume = {1}, + year = {1939} +} + +@book{nicolaisen1963, + author = {Nicolaisen, J.}, + address = {Copenhagen}, + key = {Nicolaisen (1963)}, + lgcode = {Asben [taya1257], Tuareg Ahaggar [hogg1238]}, + pages = {1-548}, + series = {Nationalmuseets Skrifter, Etnogr. Rackke}, + title = {Ecology and Culture of the Pastoral Tuareg, with particular reference to the Tuareg of Ahaggar and Ayr}, + volume = {9}, + year = {1963} +} + +@article{nicolas1950, + author = {Nicolas, F.}, + glottolog_ref = {hh:e:Nicolas:Twareg-Air}, + journal = {Mem. Inst. Franc. Afr. Noire}, + key = {Nicolas (1950)}, + lgcode = {Asben [taya1257]}, + pages = {461-503}, + publisher = {Paris: Larose}, + series = {Mémoires de l'Institut français d'Afrique noire}, + title = {Contribution a l'etude des Twareg de l'Air}, + volume = {10}, + year = {1950} +} + +@book{rodd1926, + author = {Rodd, F. R.}, + address = {London}, + key = {Rodd (1926)}, + lgcode = {Asben [taya1257]}, + title = {People of the Veil}, + year = {1926} +} + +@book{duveyrier1864, + author = {Duveyrier, H.}, + address = {Paris}, + key = {Duveyrier (1864)}, + lgcode = {Azjer [ghat1242]}, + title = {Les Touareg du nord}, + year = {1864} +} + +@book{cortier1908, + author = {Cortier, M.}, + address = {Paris}, + key = {Cortier (1908)}, + lgcode = {Ifora [tadh1242]}, + title = {D'une rive a l'autre du Soudan}, + year = {1908} +} + +@article{gaalon1939, + author = {Gaalon, R. de.}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A.}, + key = {Gaalon (1939)}, + lgcode = {Udalan Tuareg [timb1263]}, + pages = {217-237}, + title = {Coutume touareg}, + volume = {10}, + year = {1939} +} + +@book{chapelle1957b, + author = {Chapelle, J.}, + address = {Paris}, + key = {Chapelle (1957b)}, + lgcode = {Daza [daza1242]}, + title = {Nomades noirs du Soudan}, + year = {1957} +} + +@book{cline1950, + author = {Cline, W.}, + glottolog_ref = {hh:e:Cline:Teda}, + key = {Cline (1950)}, + lgcode = {Daza [daza1242], Teda [teda1241]}, + pages = {1-52}, + publisher = {Menasha, Wisconsin: George Banta}, + series = {Gen. Ser. Anth.}, + title = {The Teda of Tibesti, Borkou, and Kawar in the Eastern Sahara}, + volume = {12}, + year = {1950} +} + +@book{lecoeur1956, + author = {Le Coeur, Charles. V-17.}, + key = {Le Coeur (1956)}, + lgcode = {Daza [daza1242]}, + series = {Institut Francais d'Afrique Noire, Memoire}, + title = {Grammaire et textes Tada-Daza}, + volume = {46}, + year = {1956} +} + +@article{chapelle1929, + author = {Chapelle, F. de la}, + journal = {Hesperis}, + key = {Chapelle (1929)}, + lgcode = {Drawa [susi1238]}, + pages = {29-42}, + title = {Une cite de l'Quad Dra' sous le protectorat des nomades}, + volume = {9}, + year = {1929} +} + +@article{meunie1947, + author = {Meunie, D. J.}, + journal = {Hesperis}, + key = {Meunie (1947)}, + lgcode = {Drawa [susi1238]}, + pages = {397-420}, + title = {Les oasis des Laktoua et des Mehamid}, + volume = {34}, + year = {1947} +} + +@book{spillmann1931, + author = {Spillmann, G.}, + address = {Paris}, + key = {Spillmann (1931)}, + lgcode = {Drawa [susi1238]}, + pages = {1-201}, + series = {Villes et Tribus du Maroc}, + title = {Districts et tribus de la haute vallee du Dra'}, + volume = {9}, + year = {1931} +} + +@book{darmagnac1934, + author = {d'Armagnac.}, + address = {Alger}, + key = {d'Armagnac (1934)}, + lgcode = {Chaambra [algi1247]}, + title = {LeMzab et les pays Chaamba}, + year = {1934} +} + +@article{lotte1939, + author = {Lotte.}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + key = {Lotte (1939)}, + lgcode = {Delim [hass1238]}, + pages = {1-91}, + title = {Coutume maure}, + volume = {10}, + year = {1939} +} + +@article{salvy1951, + author = {Salvy, G.}, + journal = {Trav. Inst. Rech. Sahariennes}, + key = {Salvy (1951)}, + lgcode = {Kunta [hass1238]}, + pages = {161-186}, + title = {Les Kounta du sud marocain}, + volume = {6}, + year = {1951} +} + +@article{dubie1953, + author = {Dubie, P.}, + journal = {Mem. Inst. Franc. Afr. Noire}, + key = {Dubie (1953)}, + lgcode = {Trarza [hass1238]}, + pages = {111-252}, + title = {La vie materielle des Maures}, + volume = {23}, + year = {1953} +} + +@book{martv1919, + author = {Martv, P.}, + address = {Paris}, + key = {Martv (1919)}, + lgcode = {Trarza [hass1238]}, + title = {L'emirat des Trarzas}, + year = {1919} +} + +@book{chapelle1957a, + author = {Chapelle, J.}, + address = {Paris}, + key = {Chapelle (1957a)}, + lgcode = {Teda [teda1241]}, + title = {Nomades noirs du Sahara}, + year = {1957} +} + +@article{fuchs1956, + author = {Fuchs, P.}, + journal = {Archiv für Völkerkunde}, + key = {Fuchs (1956)}, + lgcode = {Teda [teda1241]}, + pages = {43-66}, + title = {Ueber die Tubbu von Tibesti}, + volume = {11}, + year = {1956} +} + +@article{lecoeur1950, + author = {Le Coeur, C.}, + journal = {Memoires de l'Institut Francais d'Afrique Noire}, + key = {Le Coeur (1950)}, + lgcode = {Teda [teda1241]}, + pages = {1-213}, + title = {Dictionnaire ethnographique Teda}, + volume = {9}, + year = {1950} +} + +@book{nachtigal1879, + author = {Nachtigal, G.}, + address = {Berlin}, + key = {Nachtigal (1879)}, + lgcode = {Teda [teda1241]}, + pages = {377-464}, + title = {Sahara und Sudan}, + volume = {I}, + year = {1879} +} + +@article{adeler1939, + author = {Adeler}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A, 9}, + key = {Adeler (1939)}, + lgcode = {Zenaga [zena1248]}, + pages = {373-400}, + title = {Coutume maure}, + year = {1939} +} + +@article{abdallah1917, + author = {Abd Allah, M. M.}, + glottolog_ref = {eballiso2009:11756}, + journal = {Harvard Afr. Studies 1}, + key = {Abd Allah (1917)}, + lgcode = {Siwans [siwi1239]}, + pages = {1-28}, + title = {Sîwan customs}, + volume = {1}, + year = {1917} +} + +@book{belgrave1923, + author = {Belgrave, C. D.}, + address = {London}, + key = {Belgrave (1923)}, + lgcode = {Siwans [siwi1239]}, + title = {Siwa, the Oasis of Jupiter Ammon}, + year = {1923} +} + +@article{cline1936, + author = {Cline, W.}, + glottolog_ref = {eballiso2009:15831}, + journal = {Gen. Ser. Anth.}, + key = {Cline (1936)}, + lgcode = {Siwans [siwi1239]}, + pages = {1-64}, + publisher = {Menasha WI: George Banta}, + title = {Notes on the People of Siwah and El Garah in the Libyan Desert}, + volume = {4}, + year = {1936} +} + +@book{goichon1927, + author = {Goichon, M.}, + address = {Paris}, + key = {Goichon (1927)}, + lgcode = {Mzab [tumz1238]}, + title = {La vie feminine au Mzab}, + year = {1927} +} + +@book{mercier1922, + author = {Mercier, M.}, + address = {Alger}, + key = {Mercier (1922)}, + lgcode = {Mzab [tumz1238]}, + title = {La civilisation urbaine au Mzab}, + year = {1922} +} + +@book{aymard1911, + author = {Aymard, A.}, + address = {Paris}, + key = {Aymard (1911)}, + lgcode = {Kel Antessar [timb1263]}, + title = {Les Touareg}, + year = {1911} +} + +@article{said1903, + author = {Said, M.}, + glottolog_ref = {eballiso2009:9538}, + journal = {Rev. Tunisienne}, + key = {Said (1903)}, + lgcode = {Kel Antessar [timb1263]}, + pages = {34-49, 116-123, 209-214}, + title = {Les Touareg de la region de Tombouctou}, + volume = {10}, + year = {1903} +} + +@article{zeltner1914, + author = {Zeltner, F. de}, + glottolog_ref = {eballiso2009:30647}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Zeltner (1914)}, + lgcode = {Kel Antessar [timb1263]}, + pages = {351-375}, + title = {Les touareg du sud}, + volume = {44}, + year = {1914} +} + +@article{parkyns1951, + author = {Parkyns, M.}, + journal = {Journ. Roy. Geogr. Soc.}, + key = {Parkyns (1951)}, + lgcode = {Kababish [nort3133]}, + pages = {254-275}, + title = {The Kubbabish Arabs}, + volume = {20}, + year = {1951} +} + +@article{seligmanandseligman1918, + author = {Seligman, C. G. and Seligman, B. Z.}, + journal = {Harvard African Studies}, + key = {Seligman and Seligman (1918)}, + lgcode = {Kababish [nort3133]}, + pages = {105-185}, + title = {The Kababish}, + volume = {2}, + year = {1918} +} + +@book{hourst1899, + author = {Hourst, L.}, + address = {New York}, + key = {Hourst (1899)}, + lgcode = {Aulliminden [ioul1238]}, + title = {The Exploration of the Niger}, + year = {1899} +} + +@book{benhazera1908, + author = {Benhazera, M.}, + address = {Alger}, + key = {Benhazera (1908)}, + lgcode = {Tuareg Ahaggar [hogg1238]}, + title = {Six mois chez les Touareg de Ahaggar}, + year = {1908} +} + +@book{lhote1955and1944, + author = {Lhote, H. 1955 and}, + address = {Paris}, + key = {Lhote (1955 and 1944)}, + lgcode = {Tuareg Ahaggar [hogg1238]}, + title = {Les Touaregs du Hoggar}, + year = {1944} +} + +@article{nicolaisen1959, + author = {Nicolaisen, J.}, + journal = {Folk}, + key = {Nicolaisen (1959)}, + lgcode = {Tuareg Ahaggar [hogg1238]}, + pages = {67-131}, + title = {Political Systems of Pastoral Tuareg in Air and Ahaggar}, + volume = {I}, + year = {1959} +} + +@book{callenderandelguindi1971, + author = {Callender, C. and el Guindi., F.}, + address = {Cleveland}, + key = {Callender and el Guindi (1971)}, + lgcode = {Barabra [kenu1236]}, + series = {Case Western Reserve University Studies in Anthropology}, + title = {Life-Crisis Rituals Among the Kenuz}, + volume = {3}, + year = {1971} +} + +@book{fernea1966, + editor = {Fernea, R. A.}, + address = {New Haven}, + key = {Fernea (1966)}, + lgcode = {Barabra [kenu1236]}, + title = {Contemporary Egyptian Nubia. 2v}, + year = {1966} +} + +@book{herzog1957, + author = {Herzog, R.}, + address = {Berlin}, + key = {Herzog (1957)}, + lgcode = {Barabra [kenu1236]}, + title = {Die Nubier}, + year = {1957} +} + +@book{kennedy1977, + author = {Kennedy, J. G.}, + address = {Palo Alto}, + key = {Kennedy (1977)}, + lgcode = {Barabra [kenu1236]}, + title = {Struggle for Change in a Nubain Community}, + year = {1977} +} + +@article{schafer1935, + author = {Schäfer, H.}, + journal = {Mitteilungen des Seminars fur Orientalische Sprachen zu Berlin}, + key = {SchAfer (1935)}, + lgcode = {Barabra [kenu1236]}, + title = {Nubisches Frauenleben}, + volume = {38}, + year = {1935} +} + +@book{destaing190711, + author = {Destaing, E.}, + address = {Paris}, + glottolog_ref = {eballiso2009:58253}, + key = {Destaing (1907-11)}, + lgcode = {Zekara [chen1266]}, + publisher = {Paris: Ernest Leroux}, + series = {Publ. de l'Ecole des Lettres d'Alger; Bulletin de correspondence de africaine}, + title = {Etude sur le dialecte berbère des Beni Snous}, + volume = {34-35}, + year = {1907-11} +} + +@book{moulieras1905, + author = {Moulieras, A.}, + address = {Paris}, + key = {Moulieras (1905)}, + lgcode = {Zekara [chen1266]}, + title = {Une tribu zenete anti-musulmane au Maroc}, + year = {1905} +} + +@article{cook1900, + author = {Cook, A. C.}, + journal = {American Anthropologist}, + key = {Cook (1900)}, + lgcode = {Guanche [guan1277]}, + pages = {451-493}, + title = {The Aborigines of the Canary Islands}, + volume = {2}, + year = {1900} +} + +@book{espinosa1907, + author = {Espinosa, A. de.}, + editor = {Markham}, + address = {London}, + key = {Espinosa (1907)}, + lgcode = {Guanche [guan1277]}, + title = {The Guanches of Teneriffe}, + year = {1907} +} + +@book{gambier1894, + author = {Gambier, J. W.}, + key = {Gambier (1894)}, + lgcode = {Guanche [guan1277]}, + series = {Ann. Rep. Smiths.}, + title = {The Guanches}, + year = {1894} +} + +@article{bel1908, + author = {Bel, A.}, + journal = {Rev. Et. Ethnog. Sociol.}, + key = {Bel (1908)}, + lgcode = {Algerians [algi1247]}, + pages = {201-225, 417-447}, + title = {La population musulmane de Tlemeen}, + volume = {1}, + year = {1908} +} + +@book{bernard1929, + author = {Bernard, A.}, + address = {Paris}, + key = {Bernard (1929)}, + lgcode = {Algerians [algi1247], Hamyan [oran1236]}, + title = {L'Algerie}, + year = {1929} +} + +@book{villot1875, + author = {Villot, C.}, + address = {Constantine}, + key = {Villot (1875)}, + lgcode = {Algerians [algi1247], Hamyan [oran1236]}, + note = {2nd edit.}, + title = {Moeurs, coutumes et institutions des indigegenes de l'Algerie}, + year = {1875} +} + +@book{vollenhoven1903, + author = {Vollenhoven, J. van.}, + address = {Paris}, + key = {Vollenhoven (1903)}, + lgcode = {Algerians [algi1247]}, + title = {Essai sur le fellah algerien}, + year = {1903} +} + +@book{bardin1944, + author = {Bardin, P.}, + address = {Tunis}, + key = {Bardin (1944)}, + lgcode = {Hamama [sout3114]}, + pages = {1-64}, + series = {Publ. Inst. Belles Lett. Arabes}, + title = {Les populations arabes du ontrole civil de GAfsa et leurs genres de vie}, + volume = {6}, + year = {1944} +} + +@book{despois1940, + author = {Despois, J.}, + address = {Paris}, + key = {Despois (1940)}, + lgcode = {Hamama [sout3114], Sahel [sahi1245]}, + title = {La Tunisie orientale: Sahel et basse steppe}, + year = {1940} +} + +@book{ubachandrackow1923, + author = {Ubach, E. and Rackow., E.}, + address = {Stuttgart}, + key = {Ubach and Rackow (1923)}, + lgcode = {Hamama [sout3114], Nail [cons1245], Sahel [sahi1245], Shluh [susi1238]}, + title = {Sitte und Recht in Nordafrika}, + year = {1923} +} + +@article{michauxbellaire1911, + author = {Michaux-Bellaire, E.}, + journal = {Arch. Marocaines}, + key = {Michaux-Bellaire (1911)}, + lgcode = {Jebala [jebl1238]}, + pages = {1-542}, + title = {Quelques tribus de montagnes de la region du Habt}, + volume = {17}, + year = {1911} +} + +@book{rackow1958, + author = {Rackow, E.}, + address = {Wiesbaden}, + key = {Rackow (1958)}, + lgcode = {Jebala [jebl1238]}, + title = {Beitrage zur Kenntnis der materialen Kultur Nordost-Marokkos}, + year = {1958} +} + +@book{michauxbellaire1932, + author = {Michaux-Bellaire, E.}, + key = {Michaux-Bellaire (1932)}, + lgcode = {Moroccans [sout3117]}, + pages = {1-306; 1-338}, + series = {Villes et Tribus du Maroc}, + title = {Casablanca et les Chaouia}, + volume = {1; 2}, + year = {1932} +} + +@book{kennett1925, + author = {Kennett, A.}, + address = {Cambridge}, + key = {Kennett (1925)}, + lgcode = {Saadi [said1239]}, + title = {Bedouin Justice}, + year = {1925} +} + +@book{ammar1954, + author = {Ammar, H.}, + address = {London}, + key = {Ammar (1954)}, + lgcode = {Egyptians [egyp1253]}, + title = {Growing Up in an Egyptian Village}, + year = {1954} +} + +@book{ayrout1945, + author = {Ayrout, H. H.}, + address = {Cairo}, + key = {Ayrout (1945)}, + lgcode = {Egyptians [egyp1253]}, + title = {The Fellaheen}, + year = {1945} +} + +@book{blackman1927, + author = {Blackman, W. S.}, + address = {London}, + key = {Blackman (1927)}, + lgcode = {Egyptians [egyp1253]}, + title = {The Fellahin of Upper Egypt}, + year = {1927} +} + +@book{harris1957, + editor = {Harris, G. L.}, + address = {New Haven}, + key = {Harris (1957)}, + lgcode = {Egyptians [egyp1253]}, + title = {Egypt}, + year = {1957} +} + +@book{evanspritchard1949b, + author = {Evans-Pritchard, E. E.}, + address = {Oxford}, + key = {Evans-Pritchard (1949b)}, + lgcode = {Sanusi [liby1240]}, + title = {The Sanusi of Cyrenaica}, + year = {1949} +} + +@book{bonniard1934, + author = {Bonniard, F.}, + address = {Paris}, + key = {Bonniard (1934)}, + lgcode = {Tunisians [tuni1260]}, + title = {Le tell septentrional en Tunisie}, + year = {1934} +} + +@book{despois1930, + author = {Despois, J.}, + address = {Paris}, + key = {Despois (1930)}, + lgcode = {Tunisians [tuni1260]}, + title = {Le Tunisie}, + year = {1930} +} + +@article{coon1931, + author = {Coon, C. S.}, + address = {Cambridge MA}, + glottolog_ref = {eballiso2009:6585}, + journal = {Harvard African Studies}, + key = {Coon (1931)}, + lgcode = {Riffians [tari1263]}, + pages = {1-417}, + publisher = {Cambridge MA: Harvard Univ. Press}, + series = {Harvard African studies}, + title = {Tribes of the Rif}, + volume = {9}, + year = {1931} +} + +@article{hart1954, + author = {Hart, D. M.}, + address = {Tetuan}, + journal = {Tamuda}, + key = {Hart (1954)}, + lgcode = {Riffians [tari1263]}, + pages = {55-86}, + title = {An Ethnographic Survey of the Riffian Tribe of Aith Waryaghil}, + volume = {1}, + year = {1954} +} + +@book{hart1976, + author = {Hart, D. M.}, + address = {Tucson}, + glottolog_ref = {hh:e:Hart:Waryaghar}, + key = {Hart (1976)}, + lgcode = {Riffians [tari1263]}, + pages = {556}, + publisher = {Tucson: University of Arizona Press}, + series = {Viking Fund Publications in Anthropology}, + title = {The Aith Waryaghar of the Moroccan Rif}, + volume = {55}, + year = {1976} +} + +@book{moulieras1895, + author = {Moulieras, A.}, + address = {Paris}, + key = {Moulieras (1895)}, + lgcode = {Riffians [tari1263]}, + title = {Le Maroc inconnu, I: Exploration du Rif}, + year = {1895} +} + +@incollection{bourdieu1966, + author = {Bourdieu, P.}, + editor = {Peristiany, J. G.}, + address = {Chicago}, + booktitle = {Honour and Shame: The Values of Mediterranean Society}, + key = {Bourdieu (1966)}, + lgcode = {Kabyle [kaby1243]}, + publisher = {University of Chicago Press}, + title = {The sentiment of honor in Kabyle society}, + year = {1966} +} + +@book{hanoteauandletourneaux1893, + author = {Hanoteau, A. and Letourneaux., A.}, + address = {Paris}, + key = {Hanoteau and Letourneaux (1893)}, + lgcode = {Kabyle [kaby1243]}, + title = {La Kabylie et les coutumes kabyles. 2d edit. 2v}, + year = {1893} +} + +@book{maunier1930, + author = {Maunier, R.}, + address = {Paris}, + key = {Maunier (1930)}, + lgcode = {Kabyle [kaby1243]}, + title = {Melanges de sociologie nord-Africaine}, + year = {1930} +} + +@article{montagne1927, + author = {Montagne, R.}, + journal = {Hesperis}, + key = {Montagne (1927)}, + lgcode = {Shluh [susi1238]}, + pages = {1-32}, + title = {L"Aghbar et les hautes vallees du Grand-Atlas}, + volume = {6}, + year = {1927} +} + +@book{montagne1930, + author = {Montagne, R.}, + address = {Paris}, + glottolog_ref = {hh:e:Montagne:Chleuh}, + key = {Montagne (1930)}, + lgcode = {Shluh [susi1238]}, + pages = {xvi+426}, + publisher = {Paris: Libr. Félix Alcan}, + title = {Les Berberes et le Makhzen dans le sud du Maroc}, + year = {1930} +} + +@book{budge1926, + author = {Budge, E. A. W.}, + address = {London}, + key = {Budge (1926)}, + lgcode = {Ancient Egyptians [egyp1246]}, + title = {Dwellers on the Nile}, + year = {1926} +} + +@book{erman1923, + author = {Erman, A.}, + editor = {Ranke, H.}, + address = {Tübingen}, + key = {Erman (1923)}, + lgcode = {Ancient Egyptians [egyp1246]}, + title = {Aegypten und aegyptisches Leben im Altertum}, + year = {1923} +} + +@book{kees1923, + author = {Kees, H.}, + address = {Munchen}, + key = {Kees (1923)}, + lgcode = {Ancient Egyptians [egyp1246]}, + title = {Aegypten}, + year = {1923} +} + +@book{montet1946, + author = {Montet, P.}, + address = {Paris}, + key = {Montet (1946)}, + lgcode = {Ancient Egyptians [egyp1246]}, + title = {La vie quotidienne en Egypte au tempes des Ramses}, + year = {1946} +} + +@book{bourilly1932, + author = {Bourilly, J.}, + address = {Paris}, + key = {Bourilly (1932)}, + lgcode = {Beraber [cent2194]}, + title = {Elements de l'ethnographie marocaine}, + year = {1932} +} + +@article{celerier1927, + author = {Celerier, J.}, + journal = {Hesperis}, + key = {Celerier (1927)}, + lgcode = {Beraber [cent2194]}, + pages = {53-68}, + title = {La transhumance dans le Moyen-Atlas}, + volume = {7}, + year = {1927} +} + +@article{laoust1915, + author = {Laoust, E.}, + journal = {Arch. Berberes}, + key = {Laoust (1915)}, + lgcode = {Beraber [cent2194]}, + pages = {40-76}, + title = {Le mariage chez les Berberes du Maroc}, + volume = {1}, + year = {1915} +} + +@article{michauxbellaire1920, + author = {Michaux-Bellaire, E.}, + journal = {Villes et Tribus du Maroc}, + key = {Michaux-Bellaire (1920)}, + lgcode = {Beraber [cent2194]}, + pages = {1-372}, + title = {Rabat et sa region}, + volume = {5}, + year = {1920} +} + +@book{piquet1925, + author = {Piquet, V.}, + address = {Paris}, + key = {Piquet (1925)}, + lgcode = {Beraber [cent2194]}, + title = {Le peuple marocain}, + year = {1925} +} + +@article{querleux1915, + author = {Querleux.}, + journal = {Arch. Berberes}, + key = {Querleux (1915)}, + lgcode = {Beraber [cent2194]}, + pages = {ii, 12-61}, + title = {Les Zemmour}, + volume = {1}, + year = {1915} +} + +@book{gaudry1929, + author = {Gaudry, M.}, + address = {Paris}, + key = {Gaudry (1929)}, + lgcode = {Shawiya [tach1249]}, + title = {La femme cahouia de l'Aures}, + year = {1929} +} + +@book{hiltonsimpson1921, + author = {Hilton-Simpson, W. M.}, + address = {London}, + key = {Hilton-Simpson (1921)}, + lgcode = {Shawiya [tach1249]}, + title = {Among the Hill-Folk of Algeria}, + year = {1921} +} + +@book{stuhlmann1912, + author = {Stuhlmann, F.}, + address = {Hamburg}, + key = {Stuhlmann (1912)}, + lgcode = {Shawiya [tach1249]}, + title = {Ein kulturgeschichtlicher Ausflug in den Aures}, + year = {1912} +} + +@article{justinard1908, + author = {Justinard.}, + journal = {Villes et Tribus du Maroc}, + key = {Justinard (1908)}, + lgcode = {Tekna [hass1238]}, + pages = {1-144}, + title = {Les Ait Ba Amran}, + volume = {8}, + year = {1908} +} + +@article{coon1950, + author = {Coon, C. S.}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + key = {Coon (1950)}, + lgcode = {Gheg [gheg1238]}, + pages = {iii, 1-105}, + title = {The Mountain of Giants}, + volume = {23}, + year = {1950} +} + +@book{durham1909, + author = {Durham, M. E.}, + address = {London}, + key = {Durham (1909)}, + lgcode = {Gheg [gheg1238]}, + title = {High Albania}, + year = {1909} +} + +@book{durham1928, + author = {Durham, M. E.}, + address = {London}, + key = {Durham (1928)}, + lgcode = {Gheg [gheg1238]}, + title = {Some Tribal Origins, Laws and Customs of the Balkans}, + year = {1928} +} + +@book{hasluck1954, + author = {Hasluck, M.}, + address = {Cambridge}, + key = {Hasluck (1954)}, + lgcode = {Gheg [gheg1238]}, + title = {The Unwritten Law in Albania}, + year = {1954} +} + +@book{lane1923, + author = {Lane, R. W.}, + address = {New York}, + key = {Lane (1923)}, + lgcode = {Gheg [gheg1238]}, + title = {Peaks of Shala}, + year = {1923} +} + +@article{pisko1896, + author = {Pisko, J. E.}, + journal = {Mitteilungen der Anthropologischen Gesellschaft zu Wien}, + key = {Pisko (1896)}, + lgcode = {Gheg [gheg1238]}, + pages = {141-146}, + title = {Gebrauche bei der Geburt und Behandlung der Neugeborenen bei den Albanesen}, + volume = {26}, + year = {1896} +} + +@incollection{atkinson1953, + author = {Atkinson, William C.}, + editor = {Livermore, H. V.}, + address = {Oxford}, + booktitle = {Portugal and Brazil: an introduction}, + key = {Atkinson (1953)}, + lgcode = {Portuguese [gali1257]}, + publisher = {Oxford University Press}, + title = {Institutions and law}, + year = {1953} +} + +@book{dias1953, + author = {Dias, J.}, + address = {Porto}, + key = {Dias (1953)}, + lgcode = {Portuguese [gali1257]}, + title = {Rio de Onor}, + year = {1953} +} + +@incollection{entwistle1953, + author = {Entwistle, William J.}, + editor = {Livermore, H. V.}, + address = {Oxford}, + booktitle = {Portual and Brazil: an introduction}, + key = {Entwistle (1953)}, + lgcode = {Portuguese [gali1257]}, + publisher = {Oxford University Press}, + title = {Religion}, + year = {1953} +} + +@book{abbott1917, + author = {Abbott, F. F.}, + address = {New York}, + key = {Abbott (1917)}, + lgcode = {Ancient Romans [lati1261]}, + title = {Common People of Ancient Rome}, + year = {1917} +} + +@book{balsdon1963, + author = {Balsdon, J. P. V. D.}, + address = {New York}, + key = {Balsdon (1963)}, + lgcode = {Ancient Romans [lati1261]}, + title = {Roman Women}, + year = {1963} +} + +@book{balsdon1969, + author = {Balsdon, J. P. V. D.}, + address = {New York}, + key = {Balsdon (1969)}, + lgcode = {Ancient Romans [lati1261]}, + title = {Life and Leisure in Ancient Rome}, + year = {1969} +} + +@book{carcopino1940, + author = {Carcopino, J.}, + editor = {Howell, H. T.}, + address = {New Haven}, + key = {Carcopino (1940)}, + lgcode = {Ancient Romans [lati1261]}, + title = {Daily Life in Ancient Rome}, + year = {1940} +} + +@book{davis1959, + author = {Davis, W. St.}, + address = {New York}, + key = {Davis (1959)}, + lgcode = {Ancient Romans [lati1261]}, + title = {A Day in Old Rome}, + year = {1959} +} + +@book{friedlander1908, + author = {Friedlander, L.}, + address = {London}, + key = {Friedlander (1908)}, + lgcode = {Ancient Romans [lati1261]}, + title = {Roman Life and Manners Under the Early Empire}, + year = {1908} +} + +@book{glover1927, + author = {Glover, T. R.}, + address = {London}, + key = {Glover (1927)}, + lgcode = {Ancient Romans [lati1261]}, + title = {Conflict of Religions in the Early Roman Empire}, + year = {1927} +} + +@book{grant1960, + author = {Grant, M.}, + address = {London}, + key = {Grant (1960)}, + lgcode = {Ancient Romans [lati1261]}, + title = {The World of Rome}, + year = {1960} +} + +@book{harrison1913, + editor = {Harrison, F.}, + address = {New York}, + key = {Harrison (1913)}, + lgcode = {Ancient Romans [lati1261]}, + title = {Roman Farm Management: The Treatises of Cato and Varro}, + year = {1913} +} + +@book{maxey1938, + author = {Maxey, M.}, + address = {Chicago}, + key = {Maxey (1938)}, + lgcode = {Ancient Romans [lati1261]}, + title = {Occupations of the Lower Classes in Roman Society as seen in Justinian's Digest}, + year = {1938} +} + +@book{paoli1963, + author = {Paoli, V. E.}, + address = {New York}, + key = {Paoli (1963)}, + lgcode = {Ancient Romans [lati1261]}, + note = {trans. R. D. Macnaghten}, + title = {Rome: Its People, Life and Customs}, + year = {1963} +} + +@book{pellisson1901, + author = {Pellisson, M.}, + address = {Philadelphia}, + key = {Pellisson (1901)}, + lgcode = {Ancient Romans [lati1261]}, + title = {Roman Life in Pliny's Time}, + year = {1901} +} + +@book{pliny1969, + author = {Pliny}, + address = {Cambridge}, + key = {Pliny (1969)}, + lgcode = {Ancient Romans [lati1261]}, + note = {trans. B. Radice}, + title = {Letters and Panegyricus, 2v.}, + year = {1969} +} + +@book{rostovtzeff1945, + author = {Rostovtzeff, M. I.}, + address = {Oxford}, + key = {Rostovtzeff (1945)}, + lgcode = {Ancient Romans [lati1261]}, + note = {Trans. J. D. Duff}, + title = {A History of the Ancient World}, + year = {1945} +} + +@book{carobaroja1944, + author = {Caro Baroja, J.}, + address = {Madrid}, + key = {Caro Baroja (1944)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]}, + title = {La vida rural en Vera de Bidasoa}, + year = {1944} +} + +@book{carobaroja1958, + author = {Caro Baroja, J.}, + address = {Madrid}, + key = {Caro Baroja (1958)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]}, + title = {Los Vascos. 2nd Edition}, + year = {1958} +} + +@book{douglass1969, + author = {Douglass, W. A.}, + address = {Seattle}, + key = {Douglass (1969)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]}, + title = {Death in Murelaga}, + year = {1969} +} + +@misc{greenwood1971, + author = {Greenwood, P. C.}, + howpublished = {Personal Communication}, + key = {Greenwood (1971)}, + lgcode = {French Basques [labo1236]}, + year = {1971} +} + +@book{madariaga1940, + author = {Madariaga, S. de.}, + address = {New York}, + key = {Madariaga (1940)}, + lgcode = {French Basques [labo1236]}, + title = {Spain}, + year = {1940} +} + +@book{parsons1964, + author = {Parsons, A.}, + address = {Lomax}, + key = {Parsons (1964)}, + lgcode = {Neapolitans [neap1235]}, + title = {Personal communuication to A}, + year = {1964} +} + +@book{pittrivers1954, + author = {Pitt-Rivers, J. A.}, + address = {New York}, + key = {Pitt-Rivers (1954)}, + lgcode = {Spaniards [stan1288]}, + title = {The People of the Sierra}, + year = {1954} +} + +@book{firedl1962, + author = {Firedl, E.}, + address = {New York}, + key = {Firedl (1962)}, + lgcode = {Greeks [mode1248]}, + title = {Vasilika, a Village in Modern Greece}, + year = {1962} +} + +@phdthesis{douglass1967, + author = {Douglass, W. A.}, + key = {Douglass (1967)}, + lgcode = {Spanish Basques [west1508]}, + school = {University of Chicago}, + title = {Opportunity, Choice-Making, and Rural Depopulation in Two Spanish Basque Villages}, + year = {1967} +} + +@misc{murdocknd, + author = {Murdock, G. P.}, + howpublished = {Personal observations}, + key = {Murdock (nd)}, + lgcode = {New Englanders [stan1293]} +} + +@book{fisher1900, + author = {Fisher, W. E. G.}, + address = {London}, + key = {Fisher (1900)}, + lgcode = {Boers [afri1274]}, + title = {The Transvaal and the Boers}, + year = {1900} +} + +@book{keane1900, + author = {Keane, A. H.}, + address = {London}, + glottolog_ref = {guldemann:2421}, + key = {Keane (1900)}, + lgcode = {Boers [afri1274]}, + publisher = {London: Methuen and Co}, + title = {The Boer States, Land and People}, + year = {1900} +} + +@incollection{lobb1937, + author = {Lobb, J.}, + editor = {Murdock, G. P.}, + address = {New Haven}, + booktitle = {Studies in the Science of Society}, + key = {Lobb (1937)}, + lgcode = {Boers [afri1274]}, + pages = {395-410}, + title = {Frontier Adjustments in South Africa}, + year = {1937} +} + +@book{walker1928, + author = {Walker, E. A.}, + address = {London}, + glottolog_ref = {eballiso2009:17513}, + key = {Walker (1928)}, + lgcode = {Boers [afri1274]}, + publisher = {London: Longmans, Green & Co.}, + title = {A history of South Africa}, + year = {1928} +} + +@book{munch1945, + author = {Munch, P. A.}, + address = {Oslo}, + key = {Munch (1945)}, + lgcode = {Tristan da Cunha [stan1293]}, + title = {Sociology of Tristan da Cunha}, + year = {1945} +} + +@article{pierson1951, + author = {Pierson, D.}, + journal = {Publ. Inst. Soc. Anth. Smiths. Inst.}, + key = {Pierson (1951)}, + lgcode = {Brazilians [braz1246]}, + pages = {1-226}, + title = {Cruz das Almas: A Brazilian Village}, + volume = {12}, + year = {1951} +} + +@book{miner1939, + author = {Miner, H.}, + address = {Chicago}, + key = {Miner (1939)}, + lgcode = {French Canadians [queb1247]}, + title = {St. Denis}, + year = {1939} +} + +@book{coon1939, + author = {Coon, C. S.}, + address = {New York}, + key = {Coon (1939)}, + lgcode = {Dutch [dutc1256]}, + publisher = {Macmillan and Co.}, + title = {Races of Europe}, + year = {1939} +} + +@article{keurandkeur1955, + author = {Keur, J. Y. and Keur, D. L.}, + journal = {Monogr. Amer. Ethn. Soc.}, + key = {Keur and Keur (1955)}, + lgcode = {Dutch [dutc1256]}, + pages = {1-208}, + title = {The Deeply Rooted}, + volume = {25}, + year = {1955} +} + +@book{dasent1861, + author = {Dasent, G. W.}, + address = {Edinburgh}, + key = {Dasent (1861)}, + lgcode = {Icelanders [icel1247]}, + title = {The Story of the Burnt Njal}, + year = {1861} +} + +@book{johnson1930, + author = {Johnson, E.}, + address = {Boston}, + key = {Johnson (1930)}, + lgcode = {Icelanders [icel1247]}, + title = {Pioneers of Freedom}, + year = {1930} +} + +@article{merrill1964, + author = {Merrill, R. T.}, + journal = {American Anthropologist}, + key = {Merrill (1964)}, + lgcode = {Icelanders [icel1247]}, + pages = {867-872}, + title = {Notes on Icelandic Kinship Terminology}, + volume = {66}, + year = {1964} +} + +@book{arensbergandkimball1940, + author = {Arensberg, C. M. and Kimball, S. T.}, + address = {Cambridge}, + key = {Arensberg and Kimball (1940)}, + lgcode = {Irish [iris1253]}, + title = {Family and Community in Ireland}, + year = {1940 (Revised Edition 1968)} +} + +@book{cresswell1969, + author = {Cresswell, R.}, + address = {Paris}, + key = {Cresswell (1969)}, + lgcode = {Irish [iris1253]}, + pages = {1-571}, + series = {Travaux et Memoires de I'Institut d'Ethnologie}, + title = {Une communaut‚ rurale d'Irlande}, + volume = {74}, + year = {1969} +} + +@book{evans1957, + author = {Evans, E. E.}, + address = {London}, + key = {Evans (1957)}, + lgcode = {Irish [iris1253]}, + title = {Irish Folk-Ways}, + year = {1957} +} + +@phdthesis{kane1970, + author = {Kane, E.}, + key = {Kane (1970)}, + lgcode = {Irish [iris1253]}, + school = {University of Pittsburgh}, + title = {An Analysis of the Cultural Factors Inimical to the Development of the Nationalistic-Revivalistic Industrial Process of Rural Irish Gaeltachts}, + year = {1970} +} + +@misc{kane1972, + author = {Kane, E.}, + howpublished = {Personal communication}, + key = {Kane (1972)}, + lgcode = {Irish [iris1253]}, + year = {1972} +} + +@book{odonoghue1958, + author = {O'Donoghue, J.}, + address = {New York}, + key = {O'Donoghue (1958)}, + lgcode = {Irish [iris1253]}, + title = {In a Quiet Land}, + year = {1958} +} + +@book{bernatzik1938, + author = {Bernatzik, H. A.}, + address = {New York}, + key = {Bernatzik (1938)}, + lgcode = {Sami [nort2671]}, + title = {Overland with the Nomad Lapps}, + year = {1938} +} + +@book{collinder1949, + author = {Collinder, B.}, + address = {Princeton}, + key = {Collinder (1949)}, + lgcode = {Sami [nort2671]}, + title = {The Lapps}, + year = {1949} +} + +@book{haglund1935, + author = {Haglund, S.}, + address = {London}, + key = {Haglund (1935)}, + lgcode = {Sami [nort2671]}, + title = {Life among the Lapps}, + year = {1935} +} + +@book{karsten1955, + author = {Karsten, R.}, + address = {Leiden}, + key = {Karsten (1955)}, + lgcode = {Sami [nort2671]}, + title = {The Religion of the Samek}, + year = {1955} +} + +@article{manker1953, + author = {Manker, E.}, + journal = {Nordiska Museet: Acta Lapponica}, + key = {Manker (1953)}, + lgcode = {Sami [nort2671]}, + pages = {1-261}, + title = {The Nomadism of the Swedish Mountain Lapps}, + volume = {7}, + year = {1953} +} + +@book{minn1955, + author = {Minn, E. K.}, + address = {New Haven}, + key = {Minn (1955)}, + lgcode = {Sami [nort2671]}, + title = {The Lapps}, + year = {1955} +} + +@article{pehrson1951, + author = {Pehrson, R.}, + journal = {American-Scandinavian Review}, + key = {Pehrson (1951)}, + lgcode = {Sami [nort2671]}, + pages = {271-279}, + title = {Reindeer Herding Among the Karesuando Lapps}, + volume = {39}, + year = {1951} +} + +@article{pehrson1954, + author = {Pehrson, R.}, + journal = {American Anthropologist}, + key = {Pehrson (1954)}, + lgcode = {Sami [nort2671]}, + pages = {1076-1080}, + title = {The Lappish Herding Leader}, + volume = {56}, + year = {1954} +} + +@article{pehrson1957, + author = {Pehrson, R. N.}, + journal = {Indiana University Publications, Slavic and East European Series,}, + key = {Pehrson (1957)}, + lgcode = {Sami [nort2671]}, + pages = {1-128}, + title = {The Bilateral Network of Social Relations in Konkama Lapp District}, + volume = {5}, + year = {1957} +} + +@article{whitaker1955, + author = {Whitaker, Ian.}, + journal = {Oslo: Uigitt Af Norsk Folkmuseum}, + key = {Whitaker (1955)}, + lgcode = {Sami [nort2671]}, + pages = {1-178}, + title = {Social Relations in a Nomadic Lappish Community}, + volume = {2}, + year = {1955} +} + +@book{turneyhigh1953, + author = {Turney-High, H. H.}, + address = {Columbia}, + key = {Turney-High (1953)}, + lgcode = {Walloons [wall1255]}, + title = {Chateau-Gerard}, + year = {1953} +} + +@incollection{coon1949, + author = {Coon, Carleton S.}, + editor = {Kerner, Robert J.}, + address = {Berkeley}, + booktitle = {Yugoslavia}, + key = {Coon (1949)}, + lgcode = {Serbs [serb1264]}, + publisher = {University of California Press}, + title = {Racial history}, + year = {1949} +} + +@misc{halpern1956, + author = {Halpern, Joel M.}, + address = {New Haven}, + key = {Halpern (1956)}, + lgcode = {Serbs [serb1264]}, + publisher = {Human Relations Area Files}, + title = {Social and cultural change in a Serbian village}, + year = {1956} +} + +@book{halpern1957, + author = {Halpern, J. M.}, + address = {New York}, + key = {Halpern (1957)}, + lgcode = {Serbs [serb1264]}, + title = {A Serbian Village}, + year = {1957} +} + +@article{cotlarciuc1913, + author = {Cotlarciuc, N.}, + journal = {Zeits. Oesterr. Volkskunde}, + key = {Cotlarciuc (1913)}, + lgcode = {Romanians [baya1255]}, + pages = {16-32, 93-104}, + title = {Beitraege zum lebenden Ehe- und Familienrecht der Rumaenen}, + volume = {19}, + year = {1913} +} + +@book{altandalt1959, + author = {Alt, H. and Alt, E.}, + address = {N. Y.}, + key = {Alt and Alt (1959)}, + lgcode = {Russians [russ1263]}, + title = {Russia's Children}, + year = {1959} +} + +@book{benet1970, + editor = {Benet, S.}, + address = {New York}, + key = {Benet (1970)}, + lgcode = {Russians [russ1263]}, + title = {The Village of Viriatino}, + year = {1970} +} + +@book{black1960, + author = {Black, C. E.}, + address = {Cambridge}, + key = {Black (1960)}, + lgcode = {Russians [russ1263]}, + title = {The Transformation of Russian Society}, + year = {1960} +} + +@incollection{dunn1971a, + author = {Dunn, E.}, + editor = {Millar, J. R.}, + booktitle = {The Soviet Rural Community}, + key = {Dunn (1971a)}, + lgcode = {Russians [russ1263]}, + pages = {346-375}, + title = {The Importance of Religion in the Soviet Rural Community}, + year = {1971} +} + +@incollection{dunn1971b, + author = {Dunn, S. P.}, + editor = {Millar, J. R.}, + address = {Urbana}, + booktitle = {The Soviet Rural Community}, + key = {Dunn (1971b)}, + lgcode = {Russians [russ1263]}, + pages = {325-345}, + title = {Structure and Functions of the Soviet Rural Family}, + year = {1971} +} + +@article{dunnanddunn1963, + author = {Dunn, S. P. and Dunn., E.}, + address = {Urbana}, + journal = {Ethnology}, + key = {Dunn and Dunn (1963)}, + lgcode = {Russians [russ1263]}, + pages = {320-338}, + title = {The Great Russian Peasant}, + volume = {2}, + year = {1963} +} + +@book{dunnanddunn1967, + author = {Dunn, S. P. and Dunn., E.}, + address = {New York}, + key = {Dunn and Dunn (1967)}, + lgcode = {Russians [russ1263]}, + title = {The Peasants of Central Russia}, + year = {1967} +} + +@book{fainsod1958, + author = {Fainsod, M.}, + address = {Cambridge}, + key = {Fainsod (1958)}, + lgcode = {Russians [russ1263]}, + title = {How Russia is Ruled}, + year = {1958} +} + +@book{fitzsimmons1957, + editor = {Fitzsimmons, T.}, + address = {New Haven.}, + key = {Fitzsimmons (1957)}, + lgcode = {Russians [russ1263]}, + title = {RSFSR. 2v}, + year = {1957} +} + +@book{maceandmace1963, + author = {Mace, D. and Mace, V.}, + address = {Garden City}, + key = {Mace and Mace (1963)}, + lgcode = {Russians [russ1263]}, + title = {The Soviet Family}, + year = {1963} +} + +@book{schapiro1960, + author = {Schapiro, K.}, + address = {London}, + key = {Schapiro (1960)}, + lgcode = {Russians [russ1263]}, + title = {The Communist Party of the Soviet Union}, + year = {1960} +} + +@book{kaindl1894, + author = {Kaindl, R. F.}, + address = {Wien}, + key = {Kaindl (1894)}, + lgcode = {Hutsuls [sout2604]}, + title = {Die Huzulen}, + year = {1894} +} + +@phdthesis{koenig1935, + author = {Koenig, S.}, + howpublished = {Unpublished}, + key = {Koenig (1935)}, + lgcode = {Hutsuls [sout2604]}, + school = {Yale University}, + title = {The Ukrainians of Eastern Galicia}, + year = {1935} +} + +@book{szuchiewicz190208, + author = {Szuchiewicz, W.}, + address = {Lwow}, + key = {Szuchiewicz (1902-08)}, + lgcode = {Hutsuls [sout2604]}, + title = {Huculszcyzna. 4v}, + year = {1902-08} +} + +@book{hajda1955, + editor = {Hajda, J.}, + address = {New Haven}, + key = {Hajda (1955)}, + lgcode = {Czechs [czec1258]}, + title = {Czechoslovakia}, + year = {1955} +} + +@misc{pospisilnd, + author = {Pospisil, L.}, + howpublished = {Personal Communication}, + key = {Pospisil (nd)}, + lgcode = {Czechs [czec1258]} +} + +@book{heffner1955, + editor = {Heffner, R. C.}, + address = {New Haven}, + key = {Heffner (1955)}, + lgcode = {Mari [east2328]}, + title = {The Cheremis}, + year = {1955} +} + +@book{wichmann1913, + author = {Wichmann, J.}, + address = {Helsinki}, + key = {Wichmann (1913)}, + lgcode = {Mari [east2328]}, + title = {Beitrage zur Ethnographie der Tscheremissen}, + year = {1913} +} + +@book{sanders1949, + author = {Sanders, I. T.}, + address = {Lexington}, + key = {Sanders (1949)}, + lgcode = {Bulgarians [bulg1262]}, + title = {Balkan Village}, + year = {1949} +} + +@article{vatez1904, + author = {Vatez, S.}, + journal = {Bull. et Mem. Soc. Anthrop. de Paris}, + key = {Vatez (1904)}, + lgcode = {Bulgarians [bulg1262]}, + pages = {437-458}, + title = {Contributions l'etude anthropologique des Bulgares}, + year = {1904} +} + +@misc{ember1954, + author = {Ember, M.}, + howpublished = {Unpublished ethnographic notes}, + key = {Ember (1954)}, + lgcode = {Byelorussians [bela1254]}, + year = {1954} +} + +@misc{friedrich1954, + author = {Friedrich, P. W.}, + howpublished = {Unpublished Manuscript}, + key = {Friedrich (1954)}, + lgcode = {Ukranians [east2270]}, + title = {The Social Organization of a Ukrainian Village}, + year = {1954} +} + +@book{hanzeli1955, + author = {Hanzeli, V. E.}, + address = {New Haven}, + key = {Hanzeli (1955)}, + lgcode = {Magyar [hung1274]}, + title = {The Hungarians}, + year = {1955} +} + +@book{maciuika1955, + editor = {Maciuika, B. V.}, + address = {New Haven}, + key = {Maciuika (1955)}, + lgcode = {Lithuanian Karaim [kara1464], Lithuanians [lith1251]}, + title = {Lithuania}, + year = {1955} +} + +@mastersthesis{adelmannd, + author = {Adelman, F.}, + key = {Adelman (nd)}, + lgcode = {Kalmyk [kalm1243]}, + school = {University of Pennsylvania}, + title = {The Kalmuks of the Lower Volga River and Their Kinship Structure}, + year = {1954} +} + +@book{haxthausen1854, + author = {Haxthausen, A. von.}, + address = {London}, + key = {Haxthausen (1854)}, + lgcode = {Armenians [nucl1235], Georgians [imer1248]}, + title = {Transcaucasia. Transl.}, + year = {1854} +} + +@article{karst190707, + author = {Karst, J.}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + key = {Karst (1907-07)}, + lgcode = {Armenians [nucl1235]}, + pages = {313-422; 14-112}, + title = {Grundriss der Geschichite des armenischen Rechtes}, + volume = {19; 20}, + year = {1907-07} +} + +@article{klidschian1911, + author = {Klidschian, A.}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + key = {Klidschian (1911)}, + lgcode = {Armenians [nucl1235]}, + pages = {252-377}, + title = {Das armenische Eherecht und die Grundzuge der armenische Familienorganisation}, + volume = {25}, + year = {1911} +} + +@article{kohler1906, + author = {Kohler, J.}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + key = {Kohler (1906)}, + lgcode = {Armenians [nucl1235]}, + pages = {385-436; 103-130}, + title = {Das Recht der Armenier}, + volume = {7; 19}, + year = {1906} +} + +@book{barth1953, + author = {Barth, F.}, + address = {Oslo}, + key = {Barth (1953)}, + lgcode = {Kurd [cent1972]}, + series = {Bulletin of the University Ethnographic Museum}, + title = {Principles of Social Organization in Southern Kurdistan}, + volume = {7}, + year = {1953} +} + +@article{hansen1961, + author = {Hansen, H. H.}, + journal = {Copenhagen Ethnographic Museum Record}, + key = {Hansen (1961)}, + lgcode = {Kurd [cent1972]}, + pages = {1-213}, + title = {The Kurdish Woman's Life}, + volume = {7}, + year = {1961} +} + +@article{leach1938, + author = {Leach, E. R.}, + journal = {London School of Economics Monographs on Social Anthropology}, + key = {Leach (1938)}, + lgcode = {Kurd [cent1972]}, + pages = {1-74}, + title = {Social and Economic Organization of the Rowanduz Kurds}, + volume = {3}, + year = {1938} +} + +@book{longrigg1953, + author = {Longrigg, S. H.}, + address = {London}, + key = {Longrigg (1953)}, + lgcode = {Kurd [cent1972]}, + title = {Iraq, 1900-1950. A Political, Social, and Economic History}, + year = {1953} +} + +@phdthesis{masters1953, + author = {Masters, W. M.}, + key = {Masters (1953)}, + lgcode = {Kurd [cent1972]}, + school = {University of Michigan}, + title = {Rowanduz}, + year = {1953} +} + +@incollection{byhan1926, + author = {Byhan, A.}, + editor = {Buschan, G.}, + address = {Stuttgart}, + booktitle = {Illustrierte Völkerkunde}, + key = {Byhan (1926)}, + lgcode = {Abkhaz [abkh1244]}, + number = {ii}, + pages = {749-844}, + title = {Die Kaukasischen Völker}, + volume = {2}, + year = {1926} +} + +@article{dzhanashvili1894, + author = {Dzhanashvili, M. G.}, + address = {Tiflis}, + journal = {Zapiski Kavkazskago Otdiela Inperalorskago Russkago Geograficheskago Obshchestva}, + key = {Dzhanashvili (1894)}, + lgcode = {Abkhaz [abkh1244]}, + pages = {1-59}, + title = {Abkhaziya i Abkhaztsy}, + volume = {16}, + year = {1894} +} + +@book{lotz1956, + author = {Lotz, J.}, + address = {New Haven}, + key = {Lotz (1956)}, + lgcode = {Abkhaz [abkh1244], Chechen [chec1245]}, + title = {The Caucasus. 2v}, + year = {1956} +} + +@book{luzbetak1951, + author = {Luzbetak, L. J.}, + address = {Mödling bei Wien}, + key = {Luzbetak (1951)}, + lgcode = {Abkhaz [abkh1244]}, + title = {Marriage and the Family in Caucasia}, + year = {1951} +} + +@book{grigolia1939, + author = {Grigolia, A.}, + address = {Philadelphia}, + key = {Grigolia (1939)}, + lgcode = {Khevsur [xevs1238], Svan [svan1243]}, + title = {Custom and Justice in the Caucasus}, + year = {1939} +} + +@incollection{gadzhieva1958, + author = {Gadzhieva, S. S.}, + key = {Gadzhieva (1958)}, + lgcode = {Kumyk [kumy1244]}, + pages = {5-90}, + series = {Trudy Instituta Etnografii, n. s., 46: Kavkaszkii. Etnograficheskii Sbornik, ed. M. O. Kosven, 2}, + title = {Kayakentskie Kumyki}, + year = {1958} +} + +@article{castagne1929, + author = {Castagne, J.}, + journal = {Rev. Et. Islamiques}, + key = {Castagne (1929)}, + lgcode = {Cherkess [kaba1278]}, + pages = {245-275}, + title = {Le droit familial des montagnards du Caucase et des Tcherkesses en particulier}, + volume = {3}, + year = {1929} +} + +@article{ladysenskij1929, + author = {Ladysenskij, A.}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + key = {Ladysenskij (1929)}, + lgcode = {Cherkess [kaba1278]}, + pages = {178-208}, + title = {Das Familienrocht der Tscherkessen}, + volume = {45}, + year = {1929} +} + +@book{hanson1955, + author = {Hanson and H., A. and et al.}, + address = {Ankara}, + key = {Hanson (1955)}, + lgcode = {Turks [nucl1301]}, + title = {Studies in Turkish Local Government}, + year = {1955} +} + +@book{lerner1958, + author = {Lerner, D.}, + address = {New York}, + key = {Lerner (1958)}, + lgcode = {Turks [nucl1301]}, + title = {The Passing of Traditional Society}, + year = {1958} +} + +@book{makal1954, + author = {Makal, M.}, + address = {London}, + key = {Makal (1954)}, + lgcode = {Turks [nucl1301]}, + title = {A Village in Anatolia}, + year = {1954} +} + +@book{pierce1964, + author = {Pierce, J. E.}, + address = {New York}, + key = {Pierce (1964)}, + lgcode = {Turks [nucl1301]}, + title = {Life in a Turkish Village}, + year = {1964} +} + +@article{stirling1953, + author = {Stirling, P.}, + journal = {British Journal of Sociology}, + key = {Stirling (1953)}, + lgcode = {Turks [nucl1301]}, + pages = {31-44}, + title = {Social Ranking in a Turkish Village}, + volume = {4}, + year = {1953} +} + +@incollection{stirling1963, + author = {Stirling, P.}, + editor = {Pitt-Rivers, J.}, + address = {Paris}, + booktitle = {Mediterranean Countrymen}, + key = {Stirling (1963)}, + lgcode = {Turks [nucl1301]}, + pages = {201-213}, + title = {The Domestic Cycle and the Distribution of Power in a Turkish Village}, + year = {1963} +} + +@book{stirling1965, + author = {Stirling, P.}, + address = {London}, + key = {Stirling (1965)}, + lgcode = {Turks [nucl1301]}, + title = {Turkish Village}, + year = {1965} +} + +@misc{yasa1957, + author = {Yasa, I.}, + address = {Ankara}, + key = {Yasa (1957)}, + lgcode = {Turks [nucl1301]}, + publisher = {Yeni Mataba}, + title = {Hasanoğlan: socio-economic structure of a Turkish village}, + year = {1957} +} + +@article{kovalevsky1888, + author = {Kovalevsky, M.}, + journal = {Journ. Roy. As. Soc., n. s.,}, + key = {Kovalevsky (1888)}, + lgcode = {Ossetians [osse1243]}, + pages = {344-412}, + title = {The Customs of the Ossetes}, + volume = {20}, + year = {1888} +} + +@book{kovalevsky1893, + author = {Kovalevsky, M.}, + address = {Paris}, + key = {Kovalevsky (1893)}, + lgcode = {Ossetians [osse1243]}, + title = {Droit coutumier ossetien}, + year = {1893} +} + +@book{nioradze1923, + author = {Nioradze, G. K.}, + address = {Berlin}, + key = {Nioradze (1923)}, + lgcode = {Ossetians [osse1243]}, + title = {Die Berg-Ossen und ihr Land}, + year = {1923} +} + +@article{plaetschke1929, + author = {Plaetschke, B.}, + journal = {Veröff. Geog. Inst. Univ. Königsberg}, + key = {Plaetschke (1929)}, + lgcode = {Chechen [chec1245]}, + pages = {1-116}, + title = {Die Tschetschenen}, + volume = {11}, + year = {1929} +} + +@article{abasadse1894, + author = {Abasadse, N. L. von.}, + journal = {Archaeology & Anthropology}, + key = {Abasadse (1894)}, + lgcode = {Georgians [imer1248]}, + number = {2}, + pages = {435-442}, + title = {Die Familiengemeinde bei den Grusinern}, + year = {1894} +} + +@book{allen1932, + author = {Allen, W. E. D.}, + address = {London}, + key = {Allen (1932)}, + lgcode = {Georgians [imer1248]}, + title = {A History of the Georgia People}, + year = {1932} +} + +@article{sweet1960, + author = {Sweet, L. E.}, + journal = {Anth. Pap. Mus. Anth. Univ. Michigan}, + key = {Sweet (1960)}, + lgcode = {Syrians [nort3142]}, + pages = {1-255}, + title = {Tell Toqaan: A Syrian Village}, + volume = {14}, + year = {1960} +} + +@article{salim1962, + author = {Salim, S. M.}, + journal = {London School of Economics Monographs on Social Anthropology}, + key = {Salim (1962)}, + lgcode = {Madan [meso1252]}, + pages = {1-157}, + title = {Marsh Dwellers of the Euphrates}, + volume = {23}, + year = {1962} +} + +@book{thesiger1964, + author = {Thesiger, W.}, + address = {New York}, + key = {Thesiger (1964)}, + lgcode = {Madan [meso1252]}, + title = {The Marsh Arabs}, + year = {1964} +} + +@article{ashkenazi1948, + author = {Ashkenazi, T.}, + journal = {Southwestern Journal of Anthropology}, + key = {Ashkenazi (1948)}, + lgcode = {Rwala [east2690]}, + pages = {222-239}, + title = {The Anazah Tribes}, + volume = {4}, + year = {1948} +} + +@book{musil1928, + author = {Musil, A.}, + address = {New York}, + glottolog_ref = {hh:e:Musil:Rwala}, + key = {Musil (1928)}, + lgcode = {Rwala [east2690]}, + publisher = {New York: American Geographical Society}, + title = {The Manners and Customs of the Rwala Bedouins}, + year = {1928} +} + +@book{raswan1947, + author = {Raswan, C. R.}, + address = {New York}, + key = {Raswan (1947)}, + lgcode = {Rwala [east2690]}, + title = {Black Tents of Arabia}, + year = {1947} +} + +@book{balyn1957, + author = {Balyn, D.}, + address = {New York}, + key = {Balyn (1957)}, + lgcode = {Hebrews [anci1244]}, + title = {The Geography of the Bible}, + year = {1957} +} + +@book{bright1959, + author = {Bright, J.}, + address = {Philadelphia}, + key = {Bright (1959)}, + lgcode = {Hebrews [anci1244]}, + title = {A History of Israel}, + year = {1959} +} + +@book{dalman1932, + author = {Dalman, G.}, + address = {Gütersloh}, + key = {Dalman (1932)}, + lgcode = {Hebrews [anci1244]}, + title = {Arbeit und Sitte in Palestina. 8 v.}, + year = {1932} +} + +@book{devaux1961, + author = {DeVaux, R.}, + address = {New York}, + key = {DeVaux (1961)}, + lgcode = {Hebrews [anci1244]}, + note = {John McHugh, Translator}, + title = {Ancient Israel, Its Life and Institutions}, + year = {1961} +} + +@book{forbes1964, + author = {Forbes, R. J.}, + address = {Leiden}, + key = {Forbes (1964)}, + lgcode = {Hebrews [anci1244]}, + title = {Studies in Ancient Technology. 2d edit. 9v}, + year = {1964} +} + +@misc{holybiblend, + key = {Holy_Bible (nd)}, + lgcode = {Hebrews [anci1244]}, + title = {Holy Bible. Old Testament} +} + +@book{noth1966, + author = {Noth, M.}, + address = {Philadelphia}, + key = {Noth (1966)}, + lgcode = {Hebrews [anci1244]}, + note = {4th edit.}, + title = {The Old Testament World}, + year = {1966} +} + +@book{patai1961, + author = {Patai, R.}, + address = {Garden City}, + key = {Patai (1961)}, + lgcode = {Hebrews [anci1244]}, + title = {Sex and Family in the Bible and the Middle East}, + year = {1961} +} + +@book{contenau1954, + author = {Contenau, G.}, + address = {New York}, + key = {Contenau (1954)}, + lgcode = {Babylonians [akka1240]}, + title = {Everyday Life in Babylon and Assyria}, + year = {1954} +} + +@book{delaporte1925, + author = {Delaporte, L. J.}, + address = {New York}, + key = {Delaporte (1925)}, + lgcode = {Babylonians [akka1240]}, + title = {Mesopotamia}, + year = {1925} +} + +@book{driverandmiles195255, + author = {Driver, G. R. and Miles., J. C.}, + address = {Oxford}, + key = {Driver and Miles (1952-55)}, + lgcode = {Babylonians [akka1240]}, + title = {The Babylonian Laws. 2v}, + year = {1952-55} +} + +@book{gadd1965, + author = {Gadd, C. J.}, + address = {Cambridge}, + key = {Gadd (1965)}, + lgcode = {Babylonians [akka1240]}, + note = {rev. edit., fascicle 35}, + series = {Cambridge Ancient History}, + title = {Hammurabi and the End of His Dynasty}, + year = {1965} +} + +@book{saggs1962, + author = {Saggs, H. W. F.}, + address = {London}, + key = {Saggs (1962)}, + lgcode = {Babylonians [akka1240]}, + title = {The Greatness that was Babylon}, + year = {1962} +} + +@book{saggs1965, + author = {Saggs, H. W. F.}, + address = {New York}, + key = {Saggs (1965)}, + lgcode = {Babylonians [akka1240]}, + title = {Everyday Life in Babylonia and Assyria}, + year = {1965} +} + +@incollection{thompson1923, + author = {Thompson, R. C.}, + address = {New York}, + booktitle = {Cambridge Ancient History I}, + key = {Thompson (1923)}, + lgcode = {Babylonians [akka1240]}, + pages = {494-551}, + title = {The Golden Age of Hammurabi}, + year = {1923} +} + +@book{dickson1949, + author = {Dickson, H. R. P.}, + address = {London}, + key = {Dickson (1949)}, + lgcode = {Mutair [sout3119]}, + title = {The Arab of the Desert}, + year = {1949} +} + +@article{granqvist193135, + author = {Granqvist, H.}, + journal = {Soc. Scient. Fenn., Comm. Hum. Litt.}, + key = {Granqvist (1931-35)}, + lgcode = {Jordanians [sout3123]}, + pages = {8}, + title = {Marriage Conditions in a Palestinian Village}, + volume = {3}, + year = {1931-35} +} + +@book{harris1958, + author = {Harris, G. L.}, + address = {New Haven}, + key = {Harris (1958)}, + lgcode = {Jordanians [sout3123]}, + title = {Jordan}, + year = {1958} +} + +@article{davies1949, + author = {Davies, R. P.}, + journal = {Southw. Journ. Anth.}, + key = {Davies (1949)}, + lgcode = {Lebanese [nort3139]}, + pages = {244-252}, + title = {Syrian Arabic Kinship Terms}, + volume = {5}, + year = {1949} +} + +@article{gulick1953, + author = {Gulick, J.}, + journal = {American Anthropologist}, + key = {Gulick (1953)}, + lgcode = {Lebanese [nort3139]}, + pages = {367-372}, + title = {The Lebanese Village}, + volume = {55}, + year = {1953} +} + +@article{gulick1955, + author = {Gulick, J.}, + journal = {Viking Fund Publications in Anthropology}, + key = {Gulick (1955)}, + lgcode = {Lebanese [nort3139]}, + pages = {1-118}, + title = {Social Structure and Culture Change in a Lebanese Village}, + volume = {21}, + year = {1955} +} + +@incollection{gulick1956, + author = {Gulick, J.}, + editor = {Patai, R.}, + address = {New Haven}, + booktitle = {The Republic of Lebanon}, + key = {Gulick (1956)}, + lgcode = {Lebanese [nort3139]}, + pages = {136-299}, + title = {Village Organization}, + volume = {1}, + year = {1956} +} + +@book{patai1956, + editor = {Patai, R.}, + address = {New Haven}, + key = {Patai (1956)}, + lgcode = {Lebanese [nort3139]}, + title = {The Republic of Lebanon}, + year = {1956} +} + +@book{prothro1961, + author = {Prothro, Edwin T.}, + key = {Prothro (1961)}, + lgcode = {Lebanese [nort3139]}, + series = {Harvard Middle Eastern Monographs}, + title = {Child rearing in the Lebanon}, + volume = {8}, + year = {1961} +} + +@article{tannous1949, + author = {Tannous, A. I.}, + journal = {Middle East Journal}, + key = {Tannous (1949)}, + lgcode = {Lebanese [nort3139]}, + pages = {151-163}, + title = {The Village in the National Life of Lebanon}, + volume = {3}, + year = {1949} +} + +@book{touma1958, + author = {Touma, T.}, + address = {Paris}, + key = {Touma (1958)}, + lgcode = {Lebanese [nort3139]}, + title = {Un village de montagne au Lebanon}, + year = {1958} +} + +@phdthesis{kasdan1961, + author = {Kasdan, L.}, + key = {Kasdan (1961)}, + lgcode = {Druze [sunn1238]}, + school = {University of Chicago}, + title = {Isfiya: Fission and Faction in a Druze Community}, + year = {1961} +} + +@misc{kasdan1965, + author = {Kasdan, L.}, + howpublished = {Personal communication}, + key = {Kasdan (1965)}, + lgcode = {Druze [sunn1238]}, + year = {1965} +} + +@book{hazard1956, + author = {Hazard, H. W.}, + address = {New Haven}, + key = {Hazard (1956)}, + lgcode = {Yemeni [sana1295]}, + title = {Southern Arabia}, + year = {1956} +} + +@misc{bordiend, + author = {Bordie, J. G.}, + howpublished = {Personal communication}, + key = {Bordie (nd)}, + lgcode = {Sindhi [sind1272]}, + school = {University of Texas} +} + +@book{wilber1964, + author = {Wilber, D. N.}, + address = {New Haven}, + key = {Wilber (1964)}, + lgcode = {Sindhi [sind1272]}, + title = {Pakistan}, + year = {1964} +} + +@book{pehrson1966, + author = {Pehrson, R. N.}, + editor = {Barth, F.}, + key = {Pehrson (1966)}, + lgcode = {Marri [east2304]}, + pages = {1-127}, + series = {Viking Fund Publ. Anth.}, + title = {The Social Organization of the Marri Baluch}, + volume = {43}, + year = {1966} +} + +@article{broadfoot1885, + author = {Broadfoot, J. S.}, + journal = {Roy. Geog. Soc. Suppl. Pap.}, + key = {Broadfoot (1885)}, + lgcode = {Ghilzai [ghil1238]}, + pages = {341-400}, + title = {On Parts of the Ghilzi Country}, + volume = {1}, + year = {1885} +} + +@book{wilber1962, + author = {Wilber, D. N.}, + address = {New Haven}, + key = {Wilber (1962)}, + lgcode = {Ghilzai [ghil1238]}, + title = {Afghanistan}, + year = {1962} +} + +@article{garrod1946a, + author = {Garrod, O.}, + journal = {Journ. Roy. Cent. Asian Soc.}, + key = {Garrod (1946a)}, + lgcode = {Qashqui [qash1240]}, + pages = {32-46}, + title = {The Nomadic Tribes of Persia Today}, + volume = {33}, + year = {1946} +} + +@article{garrod1946b, + author = {Garrod, O.}, + journal = {Journ. Roy. Cent. Asian Soc.}, + key = {Garrod (1946b)}, + lgcode = {Qashqui [qash1240]}, + pages = {293-306}, + title = {The Qashqai Tribes of Fars}, + volume = {33}, + year = {1946} +} + +@incollection{callardandwheeler1963, + author = {Callard, K. and Wheeler., R. S.}, + editor = {Kahin, G. McT.}, + address = {Ithaca}, + booktitle = {Major Governments of Asia}, + key = {Callard and Wheeler (1963)}, + lgcode = {Punjabi [west2386]}, + pages = {419-532}, + title = {Pakistan}, + year = {1963} +} + +@book{dass1954, + author = {Dass, A.}, + address = {Lahore}, + key = {Dass (1954)}, + lgcode = {Punjabi [west2386]}, + series = {Punjab Village Surveys}, + title = {An Economic Survey of Gajju Chak}, + volume = {6}, + year = {1954} +} + +@incollection{eglar1957, + author = {Eglar, Z. S.}, + editor = {Maron, S.}, + address = {Chapel Hill}, + booktitle = {Pakistan: Society and Culture}, + key = {Eglar (1957)}, + lgcode = {Punjabi [west2386]}, + pages = {62-80}, + title = {Panjabi Village Life}, + year = {1957} +} + +@book{eglar1960, + author = {Eglar, Z. S.}, + address = {New York}, + key = {Eglar (1960)}, + lgcode = {Punjabi [west2386]}, + title = {A Punjabi Village in Pakistan}, + year = {1960} +} + +@incollection{honigmann1957, + author = {Honigmann, J. J.}, + editor = {Maron, S.}, + address = {New Haven}, + booktitle = {Pakistan: Society and Culture}, + key = {Honigmann (1957)}, + lgcode = {Punjabi [west2386]}, + pages = {154-176}, + title = {Women in West Pakistan}, + year = {1957} +} + +@inbook{honigmann1958, + author = {Honigmann, J. J.}, + address = {Chapel Hill}, + booktitle = {Three Pakistan Villages}, + key = {Honigmann (1958)}, + lgcode = {Punjabi [west2386]}, + pages = {68-95}, + title = {Third Village: Punjab Province, Chak 41MB}, + year = {1958} +} + +@incollection{kennedy1957, + author = {Kennedy, M. J.}, + editor = {Maron, S.}, + address = {New Haven}, + booktitle = {Pakistan: Society and Culture}, + key = {Kennedy (1957)}, + lgcode = {Punjabi [west2386]}, + pages = {81-103}, + title = {Panjabi Urban Society}, + year = {1957} +} + +@book{palmer1961, + author = {Palmer, N. D.}, + address = {Boston}, + key = {Palmer (1961)}, + lgcode = {Punjabi [west2386]}, + title = {The Indian Political System}, + year = {1961} +} + +@book{symonds1950, + author = {Symonds, R.}, + address = {London}, + key = {Symonds (1950)}, + lgcode = {Punjabi [west2386]}, + title = {The Making of Pakistan}, + year = {1950} +} + +@book{wilbur1964, + author = {Wilbur, D. N.}, + address = {New Haven}, + key = {Wilbur (1964)}, + lgcode = {Punjabi [west2386]}, + title = {Pakistan}, + year = {1964} +} + +@article{barth1956a, + author = {Barth, F.}, + journal = {American Anthropologist}, + key = {Barth (1956a)}, + lgcode = {Yusufzai [yusu1238]}, + pages = {1079-1089}, + title = {Ecologic Relationships of Ethnic Groups in Swat}, + volume = {58}, + year = {1956} +} + +@article{barth1959, + author = {Barth, F.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Barth (1959)}, + lgcode = {Yusufzai [yusu1238]}, + pages = {5-21}, + title = {Segmentary Opposition and the Theory of Games: A Study of Pathan Organization}, + volume = {89}, + year = {1959} +} + +@misc{honigmann1953, + author = {Honigmann, J. J.}, + howpublished = {Unpublished Manuscript}, + key = {Honigmann (1953)}, + lgcode = {Yusufzai [yusu1238]}, + title = {Information for Pakistan}, + year = {1953} +} + +@article{bacon1958, + author = {Bacon, E. B.}, + journal = {Viking Fund Publ. Anth.}, + key = {Bacon (1958)}, + lgcode = {Hazara [haza1239]}, + pages = {1-235}, + title = {Obok}, + volume = {25}, + year = {1958} +} + +@incollection{hudsonandbeacon1941, + author = {Hudson, A. E. and Bacon, E.}, + editor = {Spier, L.}, + address = {Menasha}, + booktitle = {Language, Culture, and Personality}, + key = {Hudson and Beacon (1941)}, + lgcode = {Hazara [haza1239]}, + pages = {239-258}, + title = {Social Control and the Individual in Eastern Hazara Culture}, + year = {1941} +} + +@book{schurmann1962, + author = {Schurmann, H. F.}, + address = {'s-Gravenhage}, + key = {Schurmann (1962)}, + lgcode = {Hazara [haza1239], Moghol [mogh1245]}, + title = {The Mongols of Afganistan}, + year = {1962} +} + +@book{wilber1956, + editor = {Wilber, D. N.}, + address = {New Haven}, + key = {Wilber (1956)}, + lgcode = {Hazara [haza1239], Nuristani [kamv1242]}, + title = {Afghanistan}, + year = {1956} +} + +@book{barth1956b, + author = {Barth, F.}, + address = {Oslo}, + key = {Barth (1956b)}, + lgcode = {Kohistani [indu1241]}, + title = {Indus and Swat Kohistan}, + year = {1956} +} + +@book{robertson1896, + author = {Robertson, G. S.}, + address = {London}, + key = {Robertson (1896)}, + lgcode = {Nuristani [kamv1242]}, + title = {The Kafirs of the Hindu-Kush}, + year = {1896} +} + +@book{barth1961, + author = {Barth, F. K.}, + address = {London}, + key = {Barth (1961)}, + lgcode = {Basseri [bass1257]}, + publisher = {George Allen & Unwin}, + title = {Nomads of South Persia. The Basseri Tribe of the Khamseh Confederacy}, + year = {1961} +} + +@incollection{barth1964, + author = {Barth, F. K.}, + editor = {Firth, R. and Yamey, B. S.}, + address = {Chicago}, + booktitle = {Capital, Saving and Credit in Peasant Societies}, + key = {Barth (1964)}, + lgcode = {Basseri [bass1257]}, + pages = {69-81}, + title = {Capital, Investment and Social Structure of a Pastoral Nomadic Group}, + year = {1964} +} + +@book{feilberg1952, + author = {Feilberg, C. G.}, + address = {Copenhagen}, + key = {Feilberg (1952)}, + lgcode = {Bakhtiari [bakh1245]}, + title = {Les Papis}, + year = {1952} +} + +@article{wilson1926, + author = {Wilson, A. T.}, + journal = {Journ. Roy. Centr. Asian Soc.}, + key = {Wilson (1926)}, + lgcode = {Bakhtiari [bakh1245]}, + pages = {205-225}, + title = {The Bakhtiaris}, + volume = {13}, + year = {1926} +} + +@book{vreeland1957, + editor = {Vreeland, H. H.}, + address = {New Haven}, + key = {Vreeland (1957)}, + lgcode = {Iranians [tehr1242]}, + title = {Iran}, + year = {1957} +} + +@article{castagn1930, + author = {Castagn‚, J.}, + journal = {Revue des Etudes Islamiques}, + key = {Castagn (1930)}, + lgcode = {Kazakh [kaza1248]}, + pages = {53-156}, + title = {Magie et exorcisme chez les Kazak-Kirghizes}, + volume = {4}, + year = {1930} +} + +@book{grodekov1889, + author = {Grodekov, N. I.}, + address = {Tashkent}, + key = {Grodekov (1889)}, + lgcode = {Kazakh [kaza1248]}, + note = {The Typolithography of S. I. Lakhtin}, + title = {Kirghizy i Karakirgizy sur Dar'inskoi Oblasti. [Vol. I, Juridical Life. ]}, + year = {1889} +} + +@article{hudson1938, + author = {Hudson, A. E.}, + journal = {Yale University Publications in Anthropology}, + key = {Hudson (1938)}, + lgcode = {Kazakh [kaza1248]}, + pages = {1-109}, + title = {Kazak Social Structure}, + volume = {20}, + year = {1938} +} + +@book{radloff1893, + author = {Radloff, W.}, + address = {Leipzig}, + key = {Radloff (1893)}, + lgcode = {Kazakh [kaza1248]}, + title = {Aus Sibirien. 2v}, + year = {1893} +} + +@article{sedelnikov1903, + author = {Sedel'nikov, A. N. et al.}, + address = {St. Peterburg}, + journal = {Polnoe Geographicheskoe Opisanie nashego etchestva}, + key = {Sedel'nikov (1903)}, + lgcode = {Kazakh [kaza1248]}, + pages = {138-222}, + title = {Kirgizshii Krai}, + volume = {18}, + year = {1903} +} + +@article{schram1954, + author = {Schram, L. M. J.}, + journal = {Trans. Amer. Phil. Soc. n. s.,}, + key = {Schram (1954)}, + lgcode = {Tu [tuuu1240]}, + pages = {i, 1-138}, + title = {The Monguors of the Kansu-Tibetan Border}, + volume = {44}, + year = {1954} +} + +@book{ballis1956, + editor = {Ballis, W. B.}, + address = {New Haven}, + key = {Ballis (1956)}, + lgcode = {Khalka [halh1238]}, + note = {3 vols}, + title = {Mongolian People's Republic}, + year = {1956} +} + +@book{friters1949, + author = {Friters, G. M.}, + address = {Baltimore}, + key = {Friters (1949)}, + lgcode = {Khalka [halh1238]}, + title = {Outer Mongolia and Its International Position}, + year = {1949} +} + +@book{maiskii1921, + author = {Maiskii, I.}, + address = {Ordelenie}, + key = {Maiskii (1921)}, + lgcode = {Khalka [halh1238]}, + title = {Sovremennaia Mongolia}, + year = {1921} +} + +@incollection{rupen1956, + author = {Rupen, R. A.}, + editor = {Ballis, W. M.}, + address = {New Haven}, + booktitle = {Mongolian Peoples' Republic}, + key = {Rupen (1956)}, + lgcode = {Khalka [halh1238]}, + pages = {1-48}, + title = {General Character of the Society}, + volume = {1}, + year = {1956} +} + +@book{vreeland1954, + author = {Vreeland, H. H.}, + address = {New Haven}, + key = {Vreeland (1954)}, + lgcode = {Chahar [peri1253], Dagur [daur1238], Khalka [halh1238]}, + title = {Mongol Community and Kinship Structure}, + year = {1954} +} + +@book{freikin1954, + author = {Freikin, Z. G.}, + address = {Moskva}, + key = {Freikin (1954)}, + lgcode = {Turkmen [turk1304]}, + title = {Turkmenskaia SSR}, + year = {1954} +} + +@book{odonovan1882, + author = {O'Donovan, E.}, + address = {London}, + key = {O'Donovan (1882)}, + lgcode = {Turkmen [turk1304]}, + title = {The Merv Oasis}, + year = {1882} +} + +@article{krader1954a, + author = {Krader, L.}, + journal = {Southw. Journ. Anth.}, + key = {Krader (1954a)}, + lgcode = {Buryat [russ1264]}, + pages = {322-351}, + title = {Buyat Religion and Society}, + volume = {10}, + year = {1954} +} + +@misc{krader1954b, + author = {Krader, L.}, + howpublished = {Unpublished manuscript}, + key = {Krader (1954b)}, + lgcode = {Buryat [russ1264], Chahar [peri1253]}, + title = {Kinship Systems of the Altaic Pastoralists of the Asiatic Steppe}, + year = {1954} +} + +@misc{krader1957, + author = {Krader, L.}, + howpublished = {Personal communication}, + key = {Krader (1957)}, + lgcode = {Buryat [russ1264]}, + year = {1957} +} + +@article{zadykhina1952, + author = {Zadykhina, K. L.}, + address = {Moskva}, + journal = {Khorezmskoi Arkheologo-Etnograficheskoi Eskpeditsii}, + key = {Zadykhina (1952)}, + lgcode = {Uzbek [nort2690]}, + pages = {319-426}, + title = {Uzbeki del'ty Amu-Dar'i}, + volume = {1}, + year = {1952} +} + +@article{chard1961, + author = {Chard, C. S.}, + journal = {Anthropological Papers of the University of Alaska}, + key = {Chard (1961)}, + lgcode = {Nivkh [gily1242]}, + pages = {13-23}, + title = {Sternberg's Materials on the Sexual Life of the Gilyak}, + volume = {10}, + year = {1961} +} + +@book{hawes1903, + author = {Hawes, C. H.}, + address = {London}, + key = {Hawes (1903)}, + lgcode = {Nivkh [gily1242]}, + title = {In the Uttermost East}, + year = {1903} +} + +@incollection{ivanovetal1964, + author = {Ivanov, S. V. and Levin, M. G. and Smolyak, A. V.}, + editor = {Levin, M. G. and Potapuv, L. P.}, + address = {Chicago}, + booktitle = {The People of Siberia}, + key = {Ivanov et al. (1964)}, + lgcode = {Nivkh [gily1242]}, + pages = {767-785}, + title = {The Nevkhi}, + year = {1964} +} + +@book{schrenck1881, + author = {Schrenck, L. von}, + address = {St. Petersburg}, + key = {Schrenck (1881)}, + lgcode = {Nivkh [gily1242]}, + series = {Reisen und Forschungen im Amur-Lande}, + title = {Die Völker des Amur-Landes}, + volume = {3}, + year = {1881} +} + +@article{seeland1882, + author = {Seeland, N.}, + journal = {Russische Revue}, + key = {Seeland (1882)}, + lgcode = {Nivkh [gily1242]}, + pages = {97-130, 222-254}, + title = {Die Ghiliaken}, + volume = {21}, + year = {1882} +} + +@book{shternberg1933a, + author = {Shternberg, L. I.}, + address = {Habarovsk}, + key = {Shternberg (1933a)}, + lgcode = {Negidal [negi1245], Nivkh [gily1242], Oroch [oroc1248], Orok [orok1265]}, + title = {Giljaki, Orochi, Gol'dy, Negidal'tsy, Ajny (The Gilyak, Oroch, Goldi, Negidal, Ainu)}, + year = {1933} +} + +@article{ahlqvist1885, + author = {Ahlqvist, A.}, + journal = {Acta Soc. Scient. Fennicae}, + key = {Ahlqvist (1885)}, + lgcode = {Ob Ostyak [khan1273]}, + pages = {133-307}, + title = {Unter Wogulen und Ostjaken}, + volume = {14}, + year = {1885} +} + +@article{harva193940, + author = {Harva, U.}, + journal = {Finno-Ugrische Forschungen}, + key = {Harva (1939-40)}, + lgcode = {Ob Ostyak [khan1273]}, + pages = {91-120}, + title = {Der Bau des VerwandtschAftsnamensystems und die VerwandtschAftsverhaeltnisse bei den Fenno-Ugrier}, + volume = {26}, + year = {1939-40} +} + +@article{rabot1889, + author = {Rabot, C.}, + journal = {Rev. Ethnog.}, + key = {Rabot (1889)}, + lgcode = {Ob Ostyak [khan1273]}, + pages = {121-148}, + title = {Les Ostiaques, les Samoyedes et les Zirienes}, + volume = {8}, + year = {1889} +} + +@article{steinitz1938, + author = {Steinitz, W.}, + journal = {Ethnos}, + key = {Steinitz (1938)}, + lgcode = {Ob Ostyak [khan1273]}, + pages = {125-140}, + title = {Totemismus bei den Ostjaken in Sibirien}, + volume = {3}, + year = {1938} +} + +@book{donner1932, + author = {Donner, K.}, + address = {Helsinki}, + glottolog_ref = {mpieva:Donner1932Samojedi}, + key = {Donner (1932)}, + lgcode = {Selkup [selk1253]}, + pages = {vi+171}, + publisher = {Helsinki: Suomalais-Ugrilainen Sura}, + series = {Suomalais-Ugrilaisen Seuran Toimituksia}, + title = {Samojedische Woerterverzeichnisse}, + volume = {64}, + year = {1932} +} + +@book{donner1954, + author = {Donner, K.}, + address = {New Haven}, + key = {Donner (1954)}, + lgcode = {Selkup [selk1253], Yurak-Samoyeds [nene1249]}, + note = {Trans}, + title = {Among the Samoyed in Siberia}, + year = {1954} +} + +@book{chodzidlo1951, + author = {Chodzidlo, Teofil.}, + address = {Yakut (Siberia)}, + key = {Chodzidlo (1951)}, + lgcode = {Yakut [yaku1245]}, + series = {Interntionale Schriftenreihe fur Soziale und Politische Wissenschaften, Ethnologische Reihe}, + title = {Die Familie bei den Jakuten}, + volume = {1}, + year = {1951} +} + +@misc{gayton1948b, + author = {Gayton, Ann H.}, + address = {Berkeley}, + key = {Gayton (1948b)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245], Yakut [yaku1245]}, + number = {2}, + pages = {1-302}, + publisher = {University of California Press}, + series = {Anthropological Records}, + title = {Yokuts and Western Mono Ethnography. II. Northern Foothill Yokuts and Western Mono}, + volume = {10}, + year = {1948} +} + +@article{jochelson1933, + author = {Jochelson, W.}, + journal = {Anth. Pap. Amer. Mus. Nat. Hist.}, + key = {Jochelson (1933)}, + lgcode = {Yakut [yaku1245]}, + pages = {35-225}, + title = {The Yakut}, + volume = {33}, + year = {1933} +} + +@incollection{priklonskii1953, + author = {Priklonskii, V. L.}, + address = {New Haven}, + booktitle = {Yakut Ethnographic Sketches}, + key = {Priklonskii (1953)}, + lgcode = {Yakut [yaku1245]}, + publisher = {Behavior Science Translations, Human Relations Area Files}, + title = {Three Years in Yakut Territory}, + year = {1953} +} + +@article{sumner1901, + author = {Sumner, W.C.}, + journal = {(abridged from the Russian of Sieroshevski), Journal of the Royal Anthropological Institute}, + key = {Sumner (1901)}, + lgcode = {Yakut [yaku1245]}, + pages = {65-110}, + title = {The Yakuts}, + volume = {31}, + year = {1901} +} + +@article{bogoras1901a, + author = {Bogoras, W.}, + glottolog_ref = {hh:e:Bogoras:Chukchi}, + journal = {American Anthropologist}, + key = {Bogoras (1901a)}, + lgcode = {Chukchi [chuk1273]}, + pages = {80-108}, + title = {The Chukchee of Northeastern Asia}, + volume = {3}, + year = {1901} +} + +@book{bogoras1901b, + author = {Bogoras, W.}, + key = {Bogoras (1901b)}, + lgcode = {Chukchi [chuk1273]}, + pages = {1-703}, + series = {Memoirs of the American Museum of Natural History}, + title = {The Chukchee}, + volume = {11}, + year = {1901} +} + +@article{krenova1936, + author = {Krenova, J.}, + journal = {Indians at Work}, + key = {Krenova (1936)}, + lgcode = {Chukchi [chuk1273]}, + pages = {35-37}, + title = {The Chukchee Children}, + volume = {3}, + year = {1936} +} + +@article{orlovshii1928, + author = {Orlovshii, P. N.}, + address = {Moskva}, + journal = {Severnaia Aziia}, + key = {Orlovshii (1928)}, + lgcode = {Chukchi [chuk1273]}, + pages = {61-70}, + title = {God Anadrysko-Chukotskoga olenevoda}, + volume = {2}, + year = {1928} +} + +@book{sverdrup1938, + author = {Sverdrup, H. U.}, + address = {Oslo}, + key = {Sverdrup (1938)}, + lgcode = {Chukchi [chuk1273]}, + title = {Hos tendrafolket}, + year = {1938} +} + +@book{castren1853, + author = {Castren, M. A.}, + address = {St. Petersburg}, + key = {Castren (1853)}, + lgcode = {Yurak-Samoyeds [nene1249]}, + title = {Reiseerrinnerungen aus den Jahren 1838-1844}, + year = {1853} +} + +@book{englehardt1899, + author = {Englehardt, E. A.}, + address = {Westminster}, + key = {Englehardt (1899)}, + lgcode = {Yurak-Samoyeds [nene1249]}, + title = {A Russian Province of the North}, + year = {1899} +} + +@article{hajdu1963, + author = {Hajdu, P.}, + journal = {Indiana University Publications, Uralic and Altaic Series}, + key = {Hajdu (1963)}, + lgcode = {Yurak-Samoyeds [nene1249]}, + pages = {1-114}, + title = {Samoyed Peoples and Languages}, + volume = {14}, + year = {1963} +} + +@book{islavin1847, + author = {Islavin, V.}, + address = {St. Petersburg}, + key = {Islavin (1847)}, + lgcode = {Yurak-Samoyeds [nene1249]}, + title = {Samoiedy v domaschnem i obshchestvennom bytu}, + year = {1847} +} + +@book{jackson1895a, + author = {Jackson, F. G.}, + address = {London}, + key = {Jackson (1895a)}, + lgcode = {Yurak-Samoyeds [nene1249]}, + title = {The Great Frozen Land}, + year = {1895} +} + +@article{jackson1895b, + author = {Jackson, F. G.}, + journal = {Journal of the Royal Anthropological Institute}, + key = {Jackson (1895b)}, + lgcode = {Yurak-Samoyeds [nene1249]}, + pages = {388-410}, + title = {Notes on the Samoyeds of the Great Tundra}, + volume = {24}, + year = {1895} +} + +@book{kopytoff1955, + author = {Kopytoff, I.}, + address = {New Haven}, + key = {Kopytoff (1955)}, + lgcode = {Yurak-Samoyeds [nene1249]}, + title = {The Samoyed}, + year = {1955} +} + +@book{rae1875, + author = {Rae, E.}, + address = {London}, + key = {Rae (1875)}, + lgcode = {Yurak-Samoyeds [nene1249]}, + title = {The Land of the North Wind}, + year = {1875} +} + +@book{bergman1927, + author = {Bergman, S.}, + address = {London}, + key = {Bergman (1927)}, + lgcode = {Koryak [kory1246]}, + publisher = {Seeley, Service & Co.}, + title = {Through Kamchatka by dog-sled and skis}, + year = {1927} +} + +@book{czaplieka1914, + author = {Czaplieka, M. A.}, + address = {Oxford}, + key = {Czaplieka (1914)}, + lgcode = {Koryak [kory1246]}, + publisher = {At the Clarendon Press}, + title = {Aboriginal Siberia}, + year = {1914} +} + +@book{jochelson190508, + author = {Jochelson, W.}, + key = {Jochelson (1905-08)}, + lgcode = {Koryak [kory1246]}, + series = {Mem. Amer. Mus. Nat. Hist.}, + title = {The Koryak}, + volume = {10}, + year = {1905-08} +} + +@book{jochelson191926, + author = {Jochelson, W.}, + key = {Jochelson (1919-26)}, + lgcode = {Yukaghir [nort2745]}, + pages = {1-469}, + series = {Memoirs of the American Museum of Natural History}, + title = {The Yukaghir and Yukaghirized Tungus}, + url = {http://hdl.handle.net/2246/26}, + volume = {13}, + year = {1919-26} +} + +@book{batchelor1895, + author = {Batchelor, J.}, + address = {New York}, + key = {Batchelor (1895)}, + lgcode = {Ainu [ainu1240]}, + title = {The Ainu of Japan}, + year = {1895} +} + +@book{batchelor1927, + author = {Batchelor, J.}, + address = {Tokyo}, + key = {Batchelor (1927)}, + lgcode = {Ainu [ainu1240]}, + publisher = {Kyobunkwan}, + title = {Ainu Life and Lore: Echos of a Departing Race}, + year = {1927} +} + +@article{cornell1964, + author = {Cornell, J. B.}, + journal = {Ethnology}, + key = {Cornell (1964)}, + lgcode = {Ainu [ainu1240]}, + pages = {287-304}, + title = {Ainu Assimilation and Cultural Extinction: Acculturation Policy in Hokkaido}, + volume = {3}, + year = {1964} +} + +@book{hilger1971, + author = {Hilger, M. I.}, + address = {Norman}, + key = {Hilger (1971)}, + lgcode = {Ainu [ainu1240]}, + title = {Together with the Ainu}, + year = {1971} +} + +@book{munro1962, + author = {Munro, N. G.}, + editor = {Seligman, B. Z.}, + address = {New York}, + key = {Munro (1962)}, + lgcode = {Ainu [ainu1240]}, + title = {Ainu Creed and Cult}, + year = {1962} +} + +@inbook{murdock1934j, + author = {Murdock, G. P.}, + address = {New York}, + booktitle = {Our primitive contemporaries}, + key = {Murdock (1934j)}, + lgcode = {Ainu [ainu1240]}, + pages = {163-191}, + publisher = {Macmillan}, + title = {The Ainus of Northern Japan}, + year = {1934} +} + +@article{sugiuraandbefu1962, + author = {Sugiura, S. and Befu., H.}, + journal = {Ethnology}, + key = {Sugiura and Befu (1962)}, + lgcode = {Ainu [ainu1240]}, + pages = {287-298}, + title = {Kinship Organization of the Saru Ainu}, + volume = {1}, + year = {1962} +} + +@article{sutherland1948, + author = {Sutherland, I. L. G.}, + journal = {Journal of the Polynesian Society}, + key = {Sutherland (1948)}, + lgcode = {Ainu [ainu1240]}, + pages = {203-226}, + title = {The Ainu People of Northern Japan}, + volume = {57}, + year = {1948} +} + +@article{watanabe1964b, + author = {Watanabe, H.}, + journal = {Journal of the Faculty of Science, University of Tokyo, Anthropology}, + key = {Watanabe (1964b)}, + lgcode = {Ainu [ainu1240]}, + number = {vi}, + pages = {1-164}, + title = {The Ainu}, + volume = {2}, + year = {1964} +} + +@article{shimkin1939, + author = {Shimkin, D. B.}, + journal = {Ethnos}, + key = {Shimkin (1939)}, + lgcode = {Ket [kett1243]}, + pages = {147-176}, + title = {A Sketch of the Ket, or Yenisei "Ostyak"}, + volume = {4}, + year = {1939} +} + +@article{lattimore1933, + author = {O., Lattimore.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Lattimore (1933)}, + lgcode = {Nanai [nana1257]}, + pages = {1-77}, + title = {The Gold Tribe}, + volume = {40}, + year = {1933} +} + +@book{dallet1874, + author = {Dallet, C.}, + address = {Paris}, + key = {Dallet (1874)}, + lgcode = {Koreans [kore1280]}, + title = {Histoire de l'eglise de Coree, v. I.}, + year = {1874} +} + +@book{hewesandkim1952, + author = {Hewes, G. W. and Kim, C. H.}, + address = {Pyongyang}, + key = {Hewes and Kim (1952)}, + lgcode = {Koreans [kore1280]}, + pages = {1-20}, + series = {Research Monographs on Korea, Ser. F}, + title = {Korean Kinship Behavior and Structure}, + volume = {2}, + year = {1952} +} + +@article{heydrich1931, + author = {Heydrich, M.}, + journal = {Abhandlungen und Berichte, Museum fur Tierkunde and Volkerkunde zu Dresden}, + key = {Heydrich (1931)}, + lgcode = {Koreans [kore1280]}, + pages = {1-44}, + title = {Koreanische LandwirtschAft}, + volume = {19}, + year = {1931} +} + +@book{kang1931, + author = {Kang, Y.}, + address = {New York}, + key = {Kang (1931)}, + lgcode = {Koreans [kore1280]}, + title = {The Grass Roof}, + year = {1931} +} + +@book{osgood1951, + author = {Osgood, C. B.}, + address = {New York}, + key = {Osgood (1951)}, + lgcode = {Koreans [kore1280]}, + title = {The Koreans and Their Culture}, + year = {1951} +} + +@book{rutt1964, + author = {Rutt, R.}, + address = {Rutland}, + key = {Rutt (1964)}, + lgcode = {Koreans [kore1280]}, + title = {Korean Works and Days}, + year = {1964} +} + +@book{yang1945, + author = {Yang, M. C.}, + address = {New York}, + key = {Yang (1945)}, + lgcode = {Shantung [mand1415]}, + title = {A Chinese Village}, + year = {1945} +} + +@misc{smith1952, + author = {Smith, A. H.}, + howpublished = {Unpublished Manuscript}, + key = {Smith (1952)}, + lgcode = {Ishigakians [yaey1239]}, + title = {Final Field Report on Anthropological Research in Yaeyama}, + year = {1952} +} + +@book{abadie1924, + author = {Abadie, Maurice}, + address = {Paris}, + key = {Abadie (1924)}, + lgcode = {Man [kimm1245]}, + title = {Les races du Haut-Tonkin}, + url = {https://archive.org/details/McGillLibrary-103431-303}, + year = {1924} +} + +@book{girard1904, + author = {Girard, H.}, + address = {Paris}, + key = {Girard (1904)}, + lgcode = {Man [kimm1245]}, + title = {Les tribes sauvages du Haut-Tonkin: Mans et Meos}, + year = {1904} +} + +@misc{burd1952, + author = {Burd, W. W.}, + howpublished = {Unpublished manuscript}, + key = {Burd (1952)}, + lgcode = {Miyakans [miya1259]}, + title = {Karimata: A Village in the Southern Ryukyus}, + year = {1952} +} + +@book{chien1967, + author = {Ch'ien, Tuan-sheng.}, + address = {Cambridge}, + key = {Ch'ien (1967)}, + lgcode = {Chekiang [wuch1236]}, + title = {The Government & Politics of China}, + year = {1967} +} + +@book{fei1946, + author = {Fei, Hsiao-Tung}, + address = {New York}, + key = {Fei (1946)}, + lgcode = {Chekiang [wuch1236]}, + title = {Peasant Life in China}, + year = {1946} +} + +@book{fried1953, + author = {Fried, M.}, + address = {N. Y.}, + key = {Fried (1953)}, + lgcode = {Chekiang [wuch1236]}, + title = {Fabric of Chinese Society}, + year = {1953} +} + +@book{lang1946, + author = {Lang, O.}, + address = {New Haven}, + key = {Lang (1946)}, + lgcode = {Chekiang [wuch1236]}, + title = {Chinese Family and Society}, + year = {1946} +} + +@book{linebargeretal1956, + author = {Linebarger, P. M. A. and Chu, D. and Burks, A. W.}, + address = {Princeton}, + key = {Linebarger et al. (1956)}, + lgcode = {Chekiang [wuch1236]}, + title = {Far Eastern Governments and Politics: China and Japan}, + year = {1956} +} + +@book{smith1970, + author = {Smith, A. H.}, + address = {Boston}, + key = {Smith (1970)}, + lgcode = {Chekiang [wuch1236]}, + title = {Village Life in China}, + year = {1970} +} + +@misc{davenportnd, + author = {Davenport, W.}, + howpublished = {Unpublished ethnographic notes}, + key = {Davenport (nd)}, + lgcode = {Cantonese [yuec1235]} +} + +@book{dollone1912, + author = {D'Ollone, H. M.}, + address = {Boston}, + key = {D'Ollone (1912)}, + lgcode = {Lolo [sich1238]}, + title = {In Forbidden China}, + year = {1912} +} + +@book{lebaretal1964, + author = {LeBar, F. M. and Hickey, G. C. and Musgrave, J. K.}, + editor = {LeBar, Frank M. and Hickey, Gerald C. and Musgrave, John K.}, + address = {New Haven}, + glottolog_ref = {lapolla-tibeto-burman:1188}, + key = {Le Bar et al. (1964)}, + lgcode = {Burmese [nucl1310], Lawa [west2396], Li [hlai1239], Lolo [sich1238], Muong [muon1246], Rade [rade1240], Semang [kens1248]}, + publisher = {New Haven, HRAF Press, x, 288p., maps, biblio}, + title = {Ethnic Groups of Mainland Southeast Asia}, + year = {1964} +} + +@book{lin1961, + author = {Lin, Y. H.}, + address = {Shanghai}, + glottolog_ref = {lapolla-tibeto-burman:1291}, + key = {Lin (1961)}, + lgcode = {Lolo [sich1238]}, + pages = {159}, + publisher = {transl. by Pan Ju-shu, New Haven}, + title = {The Lolo of Liang Shan}, + year = {1961} +} + +@article{litard1913, + author = {Litard, A.}, + journal = {Anthropos}, + key = {Litard (1913)}, + lgcode = {Lolo [sich1238]}, + pages = {1-272}, + title = {Au Yun-nan: Les Lo-Lo P'o}, + volume = {I}, + year = {1913} +} + +@book{pollard1921, + author = {Pollard, S.}, + address = {Philadelphia}, + key = {Pollard (1921)}, + lgcode = {Lolo [sich1238]}, + title = {In Unknown China}, + year = {1921} +} + +@book{tseng1945, + author = {Tseng, C. L.}, + address = {Chungking}, + key = {Tseng (1945)}, + lgcode = {Lolo [sich1238]}, + title = {The Lolo District in Liang-Shan}, + year = {1945} +} + +@book{shirokogoroff1924, + author = {Shirokogoroff, S. M.}, + address = {Shanghai}, + key = {Shirokogoroff (1924)}, + lgcode = {Manchu [manc1252]}, + pages = {1-194}, + series = {Royal Asiatic Society, North China Branch, Extra}, + title = {Social Organization of the Manchus}, + volume = {3}, + year = {1924} +} + +@article{mark1967, + author = {Mark, L. L.}, + journal = {American Anthropologist}, + key = {Mark (1967)}, + lgcode = {Miao [horn1235]}, + pages = {55-62}, + title = {Patrilateral Cross-Cousin Marriage Among the Magpie Miao}, + volume = {69}, + year = {1967} +} + +@article{ruey1960, + author = {Ruey, Y. F.}, + journal = {Viking Fund Publ. Anth.}, + key = {Ruey (1960)}, + lgcode = {Miao [horn1235]}, + pages = {143-155}, + title = {The Magpie Miao of Southern Szechuan}, + volume = {29}, + year = {1960} +} + +@book{beardsleyetal1959, + author = {Beardsley, R. K. and Hall, J. W. and Ward., R. E.}, + address = {Chicago}, + key = {Beardsley et al. (1959)}, + lgcode = {Japanese [nucl1643]}, + title = {Village Japan}, + year = {1959} +} + +@misc{brownnd, + author = {Brown, L. K.}, + howpublished = {Personal Communication}, + key = {Brown (nd)}, + lgcode = {Japanese [nucl1643]} +} + +@book{buckandmasland1950, + author = {Buck, P. W. and Masland., J. W.}, + address = {New York}, + key = {Buck and Masland (1950)}, + lgcode = {Japanese [nucl1643]}, + title = {The Governments of Foreign Powers}, + year = {1950} +} + +@book{devos1965, + author = {DeVos, G.}, + key = {DeVos (1965)}, + lgcode = {Japanese [nucl1643]}, + series = {University of Michigan Center for Japanese Studies, Occasional Papers}, + title = {Social Values and Personal Attitudes in Primary Human Relations in Niiike}, + year = {1965} +} + +@book{devosandwagatsuma1967, + author = {DeVos, G. and Wagatsuma., H.}, + address = {Berkeley and Los Angeles}, + key = {DeVos and Wagatsuma (1967)}, + lgcode = {Japanese [nucl1643]}, + title = {Japan's Invisible Race}, + year = {1967} +} + +@book{norbeck1954, + author = {Norbeck, E.}, + address = {Salt Lake City}, + key = {Norbeck (1954)}, + lgcode = {Japanese [nucl1643]}, + title = {Takashima}, + year = {1954} +} + +@book{smithandcornell1956, + author = {Smith, R. J. and Cornell, J. B.}, + address = {Ann Arbor}, + key = {Smith and Cornell (1956)}, + lgcode = {Japanese [nucl1643]}, + title = {Two Japanese Villages}, + year = {1956} +} + +@book{kulp1925, + author = {Kulp, D. H.}, + address = {New York}, + key = {Kulp (1925)}, + lgcode = {Min Chinese [chao1239]}, + title = {Country Life in South China}, + year = {1925} +} + +@book{glacken1955, + author = {Glacken, C. J.}, + address = {Berkeley}, + key = {Glacken (1955)}, + lgcode = {Okinawans [cent2126]}, + title = {The Great Loochoo}, + year = {1955} +} + +@incollection{maetzkiandmaetzki1963, + author = {Maetzki, T. W. and Maetzki, H.}, + editor = {Whiting, B. B.}, + address = {New York}, + booktitle = {Six Cultures}, + key = {Maetzki and Maetzki (1963)}, + lgcode = {Okinawans [cent2126]}, + pages = {363-539}, + title = {Taira: An Okinawan Village}, + year = {1963} +} + +@phdthesis{maretzki1957, + author = {Maretzki, T. W.}, + key = {Maretzki (1957)}, + lgcode = {Okinawans [cent2126]}, + school = {Yale University}, + title = {Child Rearing in an Okinawan Community}, + year = {1957} +} + +@book{pittsetal1955, + author = {Pitts, F. R. and Lebra, W. P. and Suttles, W. P.}, + address = {Washington}, + howpublished = {mimeographed}, + key = {Pitts et al. (1955)}, + lgcode = {Okinawans [cent2126]}, + title = {Post-War Okinawa}, + year = {1955} +} + +@book{fitzgerald1941, + author = {Fitzgerald, C. P.}, + address = {London}, + key = {Fitzgerald (1941)}, + lgcode = {Minchia [cent2004]}, + title = {The Tower of Five Glories}, + year = {1941} +} + +@book{odaka1950, + author = {Odaka, K.}, + address = {New Haven}, + key = {Odaka (1950)}, + lgcode = {Li [hlai1239]}, + series = {Yale Southeast Asia Studies}, + title = {Economic Organization of the Li Tribes of Hainan Islands}, + year = {1950} +} + +@book{strubel1937, + author = {Strubel, H.}, + address = {Berlin}, + key = {Strubel (1937)}, + lgcode = {Li [hlai1239]}, + title = {Die Li-Stamme der Insel Hainan}, + year = {1937} +} + +@article{duffsutherlanddunbar1915, + author = {Duff-Sutherland-Dunbar, G.}, + glottolog_ref = {lapolla-tibeto-burman:524}, + key = {Duff-Sutherland-Dunbar (1915)}, + lgcode = {Adi [bori1243]}, + publisher = {Memoirs of the Asiatic Society of Bengal 5 (Extra number)}, + title = {Abors and Galongs}, + volume = {5 (Extra number)}, + year = {1915} +} + +@book{roy1960, + author = {Roy, S.}, + address = {Shillong}, + glottolog_ref = {lapolla-tibeto-burman:1882}, + key = {Roy (1960)}, + lgcode = {Adi [bori1243]}, + publisher = {Shillong: North-East frontier agency}, + title = {Aspects of Padam-Minyong Culture}, + year = {1960} +} + +@article{clark1963, + author = {Clark, J.}, + journal = {Natural History}, + key = {Clark (1963)}, + lgcode = {Burusho [buru1296]}, + pages = {38-45}, + title = {Hunza in the Himalayas}, + volume = {72}, + year = {1963} +} + +@book{lorimer1935, + author = {Lorimer, D. L. R.}, + address = {Oslo}, + glottolog_ref = {hh:g:Lorimer:Burushaski}, + key = {Lorimer (1935)}, + lgcode = {Burusho [buru1296]}, + publisher = {H. Aschehoug & Co}, + title = {The Burushaski language}, + volume = {1}, + year = {1935} +} + +@article{lorimer1938, + author = {Lorimer, E. O.}, + journal = {Antiquity}, + key = {Lorimer (1938)}, + lgcode = {Burusho [buru1296]}, + pages = {5-15}, + title = {The Burusho of Hunza}, + volume = {12}, + year = {1938} +} + +@book{lorimer1939, + author = {Lorimer, E. O.}, + address = {London}, + glottolog_ref = {hh:e:Lorimer:Karakoram}, + key = {Lorimer (1939)}, + lgcode = {Burusho [buru1296]}, + pages = {360}, + publisher = {London: George Allen & Unwin}, + title = {Language Hunting in the Karakoram}, + year = {1939} +} + +@book{rodale1948, + author = {Rodale, J. I.}, + address = {Emmaus, Pa.}, + key = {Rodale (1948)}, + lgcode = {Burusho [buru1296]}, + title = {The Healthy Hunzas}, + year = {1948} +} + +@book{tobe1960, + author = {Tobe, J. H.}, + address = {Emmaus, PA}, + key = {Tobe (1960)}, + lgcode = {Burusho [buru1296]}, + title = {Hunza: Adventures in the Land of Paradise}, + year = {1960} +} + +@book{dasandbanerjee1962, + author = {Das, A. K. and Banerjee., S. K.}, + address = {Calcutta}, + key = {Das and Banerjee (1962)}, + lgcode = {Lepcha [lepc1244]}, + publisher = {Cultural Research Institute}, + title = {The Lepchas of Darjeeling District}, + year = {1962} +} + +@book{gorer1938, + author = {Gorer, G.}, + address = {London}, + key = {Gorer (1938)}, + lgcode = {Lepcha [lepc1244]}, + title = {Himalayan Village}, + year = {1938} +} + +@book{morris1938, + author = {Morris, J.}, + address = {London}, + key = {Morris (1938)}, + lgcode = {Lepcha [lepc1244]}, + title = {Living with Lepchas}, + year = {1938} +} + +@book{bell1924, + author = {Bell, C.}, + address = {Oxford}, + key = {Bell (1924)}, + lgcode = {Central Tibetans [dbus1238]}, + title = {Tibet, Past and Present}, + year = {1924} +} + +@book{bell1928, + author = {Bell, C.}, + address = {Oxford}, + key = {Bell (1928)}, + lgcode = {Central Tibetans [dbus1238]}, + title = {The People of Tibet}, + year = {1928} +} + +@article{benedict1942, + author = {Benedict, P. K.}, + journal = {Harvard Journ. As. Stud.}, + key = {Benedict (1942)}, + lgcode = {Central Tibetans [dbus1238]}, + pages = {313-337}, + title = {Tibetan and Chinese Kinship Terms}, + volume = {6}, + year = {1942} +} + +@book{cammann1951, + author = {Cammann, Schuyler}, + address = {Princeton}, + key = {Cammann (1951)}, + lgcode = {Central Tibetans [dbus1238]}, + publisher = {Princeton University Press}, + title = {Trade Through the Himalyas, The Early British Attempts to Open Tibet}, + year = {1951} +} + +@book{carrasco1959, + author = {Carrasco, P.}, + address = {Seattle}, + key = {Carrasco (1959)}, + lgcode = {Central Tibetans [dbus1238]}, + title = {Land and Polity in Tibet}, + year = {1959} +} + +@book{das1902, + author = {Das, Sarat Chandra}, + address = {London}, + key = {Das (1902)}, + lgcode = {Central Tibetans [dbus1238]}, + publisher = {John Murray}, + title = {Journey to Lhasa and Central Tibet}, + year = {1902} +} + +@article{ekvall1961, + author = {Ekvall, Robert B.}, + journal = {American Anthropologist}, + key = {Ekvall (1961)}, + lgcode = {Central Tibetans [dbus1238]}, + pages = {1250-63}, + title = {The nomadic pattern of living among the Tibetans as preparation for war}, + volume = {63}, + year = {1961} +} + +@article{ekvall1964, + author = {Ekvall, Robert B.}, + journal = {American Anthropologist}, + key = {Ekvall (1964)}, + lgcode = {Central Tibetans [dbus1238]}, + pages = {1119-48}, + title = {Peace and war among the Tibetan nomads}, + volume = {66}, + year = {1964} +} + +@book{kawaguchi1909, + author = {Kawaguchi, E.}, + address = {Benares and London}, + key = {Kawaguchi (1909)}, + lgcode = {Central Tibetans [dbus1238]}, + title = {Three Years in Tibet}, + year = {1909} +} + +@book{ma1947, + author = {Ma, Ho-T'ien.}, + address = {Shanghai}, + key = {Ma (1947)}, + lgcode = {Central Tibetans [dbus1238]}, + note = {L. Wong, Trans}, + publisher = {Commercial Press}, + title = {Kan Ch'ing Tsand pien ch'u k'ao ch'a chi (Diary of travels in the border region of Kansu, Ch'inghai and Tibet). 3 vols}, + year = {1947} +} + +@book{macdonald1929, + author = {MacDonald, David}, + address = {London}, + key = {MacDonald (1929)}, + lgcode = {Central Tibetans [dbus1238]}, + publisher = {Seeley, Service}, + title = {The Land of the Lama}, + year = {1929} +} + +@book{psybikov1919, + author = {Psybikov, Gonobojab T.}, + address = {Petrograd}, + key = {Psybikov (1919)}, + lgcode = {Central Tibetans [dbus1238]}, + note = {R. Shaw, Trans.}, + publisher = {Russian Geographical Society}, + title = {Buddist palomnik u sviatyn' tibeta (A Buddhist pilgrim to the holy places in Tibet)}, + year = {1919} +} + +@incollection{rockhill1895, + author = {Rockhill, William W.}, + address = {Washington}, + booktitle = {Report of the U. S. National Museum for 1893}, + key = {Rockhill (1895)}, + lgcode = {Central Tibetans [dbus1238]}, + pages = {665-747}, + publisher = {Smithsonian Institution}, + title = {Notes on the Ethnology of Tibet}, + year = {1895} +} + +@book{shenandliu1953, + author = {Shen, Tsung-Lien and Liu, S.}, + address = {Stanford}, + key = {Shen and Liu (1953)}, + lgcode = {Central Tibetans [dbus1238]}, + publisher = {Stanford University Press}, + title = {Tibet and the Tibetans}, + year = {1953} +} + +@book{waddell1939, + author = {Waddell, L. A.}, + address = {Cambridge}, + key = {Waddell (1939)}, + lgcode = {Central Tibetans [dbus1238]}, + publisher = {Cambridge University Press}, + title = {The Buddhism of Tibet, or Lamaism}, + year = {1939} +} + +@book{biddulph1880, + author = {Biddulph, J.}, + address = {Calcutta}, + glottolog_ref = {hh:hewtyp:Biddulph:Hindoo-Koosh}, + key = {Biddulph (1880)}, + lgcode = {Shina [shin1264]}, + pages = {364}, + publisher = {Office of Superintendent Printing}, + title = {Tribes of the Hindoo-Koosh}, + year = {1880} +} + +@book{leitner1873, + author = {Leitner, G. W.}, + address = {Lahore}, + key = {Leitner (1873)}, + lgcode = {Shina [shin1264]}, + title = {The Languages and Races of Dardistan}, + year = {1873} +} + +@book{furerhaimendorf1964, + author = {Fürer-Haimendorf, C. von.}, + address = {Berkeley and Los Angeles}, + key = {Fürer-Haimendorf (1964)}, + lgcode = {Sherpa [sher1255]}, + title = {The Sherpas of Nepal}, + year = {1964} +} + +@book{endle1911, + author = {Endle, S.}, + address = {London}, + glottolog_ref = {hh:ew:Endle:Kacharis}, + key = {Endle (1911)}, + lgcode = {Kachari [kach1279]}, + pages = {184}, + publisher = {London: MacMillan}, + title = {The Kacharis}, + year = {1911} +} + +@book{hodgson1847, + author = {Hodgson, B. H.}, + address = {Calcutta}, + glottolog_ref = {hh:es:Hodgson:Kocch-Bodo-Dhimal}, + key = {Hodgson (1847)}, + lgcode = {Kachari [kach1279]}, + pages = {221}, + publisher = {J. Thomas Baptist Mission Press}, + title = {On the Kocch, Bodo and Dhimál tribes}, + year = {1847} +} + +@book{hitchcock1966, + author = {Hitchcock, J. T.}, + address = {New York}, + key = {Hitchcock (1966)}, + lgcode = {Magar [west2418]}, + title = {The Magars of Banyan Hill}, + year = {1966} +} + +@book{culshaw1949, + author = {Culshaw, W. J.}, + address = {London}, + key = {Culshaw (1949)}, + lgcode = {Santal [sant1410]}, + publisher = {Lutterworth Press}, + title = {Tribal Heritage. A Study of the Santals}, + year = {1949} +} + +@article{das1967, + author = {Das, A. K.}, + journal = {Bulletin of the Cultural Research Institute}, + key = {Das (1967)}, + lgcode = {Santal [sant1410]}, + number = {i-ii}, + pages = {5-9}, + title = {Scientific Analysis of "Santal" Social System}, + volume = {6}, + year = {1967} +} + +@article{dattamajumder1956, + author = {Datta-Majumder, Nabendu}, + journal = {Memoirs of the Department of Anthropology, Government of India}, + key = {Datta-Majumder (1956)}, + lgcode = {Santal [sant1410]}, + pages = {1-150}, + title = {The Santal. A Study in Culture Change}, + volume = {2}, + year = {1956} +} + +@book{mukherjea1943, + author = {Mukherjea, C. L.}, + address = {Calcutta}, + glottolog_ref = {stampe:501}, + key = {Mukherjea (1943)}, + lgcode = {Santal [sant1410]}, + publisher = {Calcutta: ??}, + title = {The Santals}, + year = {1943} +} + +@book{grierson1885, + author = {Grierson, G. A.}, + address = {Calcutta}, + key = {Grierson (1885)}, + lgcode = {Bihari [mait1250]}, + title = {Bihar Peasant Life}, + year = {1885} +} + +@book{karve1953, + author = {Karve, I.}, + address = {Poona}, + key = {Karve (1953)}, + lgcode = {Bengali [beng1280], Bihari [mait1250], Indo-Iranian [sans1269], Telugu [telu1262]}, + pages = {1-304}, + series = {Deccan College Monogr. Ser.}, + title = {Kinship Organisation in India}, + volume = {11}, + year = {1953} +} + +@article{mitra1894, + author = {Mitra, S. C.}, + journal = {Journ. Anth. Soc. Bombay}, + key = {Mitra (1894)}, + lgcode = {Bihari [mait1250]}, + pages = {364-371}, + title = {On Some Behari Customs and Practices}, + volume = {3}, + year = {1894} +} + +@article{cohn1958, + author = {Cohn, B. S.}, + journal = {Journal of American Folklore}, + key = {Cohn (1958)}, + lgcode = {Uttar Pradesh [bhoj1244]}, + pages = {412-421}, + title = {Changing Traditions of a Low Caste}, + volume = {71}, + year = {1958} +} + +@misc{cohnnd, + author = {Cohn, B. S.}, + howpublished = {Manuscript}, + key = {Cohn (nd)}, + lgcode = {Uttar Pradesh [bhoj1244]}, + title = {Chamar Family in a North Indian Village} +} + +@article{dube1956, + author = {Dube, S. C.}, + journal = {Journal of Asian Studies}, + key = {Dube (1956)}, + lgcode = {Uttar Pradesh [bhoj1244]}, + pages = {19-30}, + title = {Cultural Factors in Rural Community Development}, + volume = {16}, + year = {1956} +} + +@phdthesis{luschinsky1963, + author = {Luschinsky, M. S.}, + key = {Luschinsky (1963)}, + lgcode = {Uttar Pradesh [bhoj1244]}, + school = {Cornell University}, + title = {The Life of Women in a Village of North India}, + year = {1963} +} + +@misc{luschinsky1971, + author = {Luschinsky, M. S.}, + howpublished = {Personal communication}, + key = {Luschinsky (1971)}, + lgcode = {Uttar Pradesh [bhoj1244]}, + year = {1971} +} + +@article{opler1956, + author = {Opler, M.}, + journal = {Journal of Asian Studies}, + key = {Opler (1956)}, + lgcode = {Uttar Pradesh [bhoj1244]}, + pages = {5-10}, + title = {The Extensions of an Indian Village}, + volume = {16}, + year = {1956} +} + +@article{oplerandsingh1952, + author = {Opler, M. E. and Singh, R. D.}, + journal = {Human Organization}, + key = {Opler and Singh (1952)}, + lgcode = {Uttar Pradesh [bhoj1244]}, + pages = {5-12}, + title = {Economic and Social Change in a Village of North Central India}, + volume = {II}, + year = {1952} +} + +@incollection{oplerandsingh1954, + author = {Opler, M. E. and Singh., R. D.}, + editor = {Coon, C. S.}, + address = {New York}, + booktitle = {A Reader in General Anthropology}, + key = {Opler and Singh (1954)}, + lgcode = {Uttar Pradesh [bhoj1244]}, + pages = {464-496}, + title = {The Division of Labor in an Indian Village}, + year = {1954} +} + +@misc{pandey1972, + author = {Pandey, T. N.}, + howpublished = {Personal communication}, + key = {Pandey (1972)}, + lgcode = {Uttar Pradesh [bhoj1244]}, + year = {1972} +} + +@article{rowe1960, + author = {Rowe, W. L.}, + journal = {Southwestern Journal of Anthropology}, + key = {Rowe (1960)}, + lgcode = {Uttar Pradesh [bhoj1244]}, + pages = {299-311}, + title = {The Marriage Network and Structure Change in a North Indian Community}, + volume = {16}, + year = {1960} +} + +@article{mukherjee1949, + author = {Mukherjee, R.}, + journal = {American Sociological Review}, + key = {Mukherjee (1949)}, + lgcode = {Bengali [beng1280]}, + pages = {415-425}, + title = {The Economic Structure and Social Life in Six Villages of Bengal}, + volume = {14}, + year = {1949} +} + +@phdthesis{nicholas1962, + author = {Nicholas, R. W.}, + key = {Nicholas (1962)}, + lgcode = {Bengali [beng1280]}, + school = {University of Chicago}, + title = {Villages of the Bengal Delta}, + year = {1962} +} + +@misc{nicholas1964, + author = {Nicholas, R. W.}, + howpublished = {Personal communication}, + key = {Nicholas (1964)}, + lgcode = {Bengali [beng1280]}, + year = {1964} +} + +@article{sarma1951, + author = {Sarma, J.}, + journal = {Man in India}, + key = {Sarma (1951)}, + lgcode = {Bengali [beng1280]}, + pages = {51-71}, + title = {Formal and Informal Relations in the Hindu Joint Family of Bengal}, + volume = {31}, + year = {1951} +} + +@article{chatterjeeanddas1927, + author = {Chatterjee, A. and Das., T.}, + journal = {Anth. Pap. Univ. Calcutta, n. s.}, + key = {Chatterjee and Das (1927)}, + lgcode = {Ho [hooo1248]}, + pages = {1-94}, + title = {The Hos of Seraikella}, + volume = {1}, + year = {1927} +} + +@book{majumdar1937, + author = {Majumdar, D. N.}, + address = {London}, + key = {Majumdar (1937)}, + lgcode = {Ho [hooo1248]}, + title = {A Tribe in Transition}, + year = {1937} +} + +@article{boseandray1953, + author = {Bose, U. and Ray., P. C.}, + address = {Delhi}, + journal = {Bulletin of the Department of Anthropology}, + key = {Bose and Ray (1953)}, + lgcode = {Bhil [bhil1251]}, + number = {1}, + pages = {31-58}, + publisher = {Manage of Publications}, + title = {Application of Performance Tests on the Bhils of Central India}, + volume = {1}, + year = {1953} +} + +@article{hendley1875, + author = {Hendley, T. H.}, + journal = {Journ. As. Soc. Bengal}, + key = {Hendley (1875)}, + lgcode = {Bhil [bhil1251]}, + pages = {i, 347-392}, + title = {An Account of the Maiwar Bhils}, + volume = {44}, + year = {1875} +} + +@book{koppers1948, + author = {Koppers, W.}, + address = {Wien}, + glottolog_ref = {hh:e:Koppers:Bhil}, + key = {Koppers (1948)}, + lgcode = {Bhil [bhil1251]}, + pages = {353}, + publisher = {Ferdinand Berger}, + series = {Wiener Beiträge zur Kulturgeschichte und Linguistik}, + title = {Die Bhil in Zentralindien}, + volume = {7}, + year = {1948} +} + +@book{naik1956, + author = {Naik, T. B.}, + address = {Delhi}, + key = {Naik (1956)}, + lgcode = {Bhil [bhil1251]}, + title = {The Bhils}, + year = {1956} +} + +@inbook{roy1915, + author = {Roy, S. C.}, + address = {Ranchi, India}, + booktitle = {Man in India}, + key = {Roy (1915)}, + lgcode = {Kurukh [kuru1302]}, + publisher = {Church Road}, + title = {The Oraons}, + year = {1915} +} + +@book{roy1951, + author = {Roy, S. C.}, + address = {Ranchi}, + key = {Roy (1951)}, + lgcode = {Kurukh [kuru1302]}, + title = {The Oraons of Chota Nagpur}, + year = {1951} +} + +@article{berreman1962a, + author = {Berreman, G. D.}, + journal = {American Anthropologist}, + key = {Berreman (1962a)}, + lgcode = {Pahari [maha1287]}, + pages = {60-75}, + title = {Pahari Polyandry}, + volume = {64}, + year = {1962} +} + +@article{berreman1962b, + author = {Berreman, G. D.}, + journal = {Ethnology}, + key = {Berreman (1962b)}, + lgcode = {Pahari [maha1287]}, + pages = {524-528}, + title = {Sib and Clan Among the Pahari of North India}, + volume = {1}, + year = {1962} +} + +@book{berreman1963, + author = {Berreman, G. D.}, + address = {Berkeley and Los Angeles}, + key = {Berreman (1963)}, + lgcode = {Pahari [maha1287]}, + title = {Hindus of the Himalayas}, + year = {1963} +} + +@book{crane1955, + editor = {Crane, R. L.}, + address = {New Haven}, + key = {Crane (1955)}, + lgcode = {Kashmiri [kash1277]}, + title = {Jammu and Kashmir State}, + year = {1955} +} + +@book{lawrence1895, + author = {Lawrence, W. R.}, + address = {London}, + key = {Lawrence (1895)}, + lgcode = {Kashmiri [kash1277]}, + title = {The Valley of Kashmir}, + year = {1895} +} + +@book{madan1965, + author = {Madan, T. N.}, + address = {Bombay}, + key = {Madan (1965)}, + lgcode = {Kashmiri [kash1277]}, + title = {Family and Kinship: A Study of the Pandits of Rural Kashmir}, + year = {1965} +} + +@article{karve194243, + author = {Karve, I.}, + address = {Poona}, + journal = {Bull. Deccan Coll. Res. Inst.}, + key = {Karve (1942-43)}, + lgcode = {Gujarati [guja1252]}, + pages = {208-226}, + title = {Kinship Terminology and Kinship Usages in Gujarat and Kathiawab}, + volume = {4}, + year = {1942-43} +} + +@book{mukhtyar1930, + author = {Mukhtyar, G. C.}, + editor = {Vakil, C. N.}, + address = {Calcutta}, + key = {Mukhtyar (1930)}, + lgcode = {Gujarati [guja1252]}, + pages = {1-304}, + series = {Studies in Indian Economics}, + title = {Life and Labour in a Southern Gujarat Village}, + volume = {3}, + year = {1930} +} + +@book{furerhaimendorf1943b, + author = {Fürer-Haimendorf, C. von.}, + address = {London}, + key = {Fürer-Haimendorf (1943b)}, + lgcode = {Chenchu [chen1255]}, + publisher = {Macmillan}, + series = {The Aboriginal Tribes of Hyderabad}, + title = {The Chenchus}, + volume = {1}, + year = {1943} +} + +@book{dube1955, + author = {Dube, S. C.}, + address = {Ithaca}, + key = {Dube (1955)}, + lgcode = {Telugu [telu1262]}, + title = {Indian Village}, + year = {1955} +} + +@book{guha1931, + author = {Guha, B. S.}, + address = {Simla}, + key = {Guha (1931)}, + lgcode = {Khasi [khas1269], Telugu [telu1262]}, + publisher = {Government of India Press}, + series = {Census of India, Vol. I, Part III}, + title = {The racial Affinities of the people of India}, + year = {1931} +} + +@article{tyler1965, + author = {Tyler, S. A.}, + journal = {American Anthropologist}, + key = {Tyler (1965)}, + lgcode = {Koya [koya1251]}, + pages = {1428-1440}, + title = {Koya Language Morphology and Patterns of Kinship Behavior}, + volume = {67}, + year = {1965} +} + +@book{elwin1950, + author = {Elwin, V.}, + address = {London}, + glottolog_ref = {hh:e:Elwin:Bondo}, + key = {Elwin (1950)}, + lgcode = {Khond [kuii1252]}, + pages = {290}, + publisher = {Bombay: Oxford Univ. Press}, + title = {Bondo Highlanders}, + year = {1950} +} + +@article{furerhaimendorf1943a, + author = {Fürer-Haimendorf, C. von.}, + journal = {Man in India}, + key = {Fürer-Haimendorf (1943a)}, + lgcode = {Khond [kuii1252]}, + pages = {158-172}, + title = {Avenues to Marriage Among the Bondos of Orissa}, + volume = {23}, + year = {1943} +} + +@book{elwin1957, + author = {Elwin, V.}, + address = {Bombay}, + key = {Elwin (1957)}, + lgcode = {Muria Gond [west2408]}, + title = {The Muria and Their Ghotul}, + year = {1957} +} + +@book{furerhaimendorf1945, + author = {Fürer-Haimendorf, C. von.}, + address = {London}, + key = {Fürer-Haimendorf (1945)}, + lgcode = {Reddi [mukh1238]}, + title = {The Reddis of the Bison Hills}, + year = {1945} +} + +@article{goughaberle1955, + author = {Gough (Aberle), E. K.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Gough (Aberle) (1955)}, + lgcode = {Tamil [tami1289]}, + pages = {36-52}, + title = {The Social Structure of a Tanjore Village}, + volume = {83}, + year = {1955} +} + +@misc{goughaberlend, + author = {Gough (Aberle), E. K.}, + howpublished = {Personal communication}, + key = {Gough (Aberle) (nd)}, + lgcode = {Tamil [tami1289]} +} + +@misc{grigson1938, + author = {Grigson, W. V.}, + address = {London}, + key = {Grigson (1938)}, + lgcode = {Madia [mari1414]}, + note = {Rev. Edit. 1949}, + title = {The Maria Gonds of Bastar}, + year = {1938} +} + +@incollection{emeneau1941, + author = {Emeneau, M. B.}, + editor = {Spier, Hallowell and Newman}, + address = {Menasha}, + booktitle = {Language, Culture, and Personality}, + key = {Emeneau (1941)}, + lgcode = {Toda [toda1252]}, + pages = {158-179}, + title = {Language and Social Forms: A Study of Toda Kinship Terms and Double Descent}, + year = {1941} +} + +@article{fox1963, + author = {Fox, R. G.}, + journal = {Papers of the Michigan Academy of Science, Arts, and Letters}, + key = {Fox (1963)}, + lgcode = {Toda [toda1252]}, + pages = {493-512}, + title = {Caste Dominance and Coercion in the Nilgiris}, + volume = {48}, + year = {1963} +} + +@book{marshall1873, + author = {Marshall, William E.}, + address = {London}, + key = {Marshall (1873)}, + lgcode = {Toda [toda1252]}, + title = {A Phrenologist Amongst the Todas}, + year = {1873} +} + +@article{peter1955, + author = {Peter, Prince.}, + journal = {Man}, + key = {Peter (1955)}, + lgcode = {Toda [toda1252]}, + pages = {89-93}, + title = {The Todas}, + volume = {55}, + year = {1955} +} + +@book{rivers1906, + author = {Rivers, W. H. R.}, + address = {London}, + key = {Rivers (1906)}, + lgcode = {Toda [toda1252]}, + title = {The Todas}, + year = {1906} +} + +@article{emeneau1939, + author = {Emeneau, M. B.}, + journal = {Journ. Roy. As. Soc. Bengal, Letters}, + key = {Emeneau (1939)}, + lgcode = {Kodavas [koda1255]}, + pages = {123-147}, + title = {Kinship and Marriage Among the Coorgs}, + volume = {4}, + year = {1939} +} + +@book{srinivas1952, + author = {Srinivas, M. N.}, + address = {Oxford}, + key = {Srinivas (1952)}, + lgcode = {Kodavas [koda1255]}, + title = {Religion and Society Among the Coorgs of South India}, + year = {1952} +} + +@incollection{gough1961, + author = {Gough, Kathleen}, + editor = {Schneider, D. M. and Gough, K.}, + address = {Berkeley}, + booktitle = {Matrilineal kinship}, + key = {Gough (1961)}, + lgcode = {Kerala [mala1464]}, + publisher = {University of California Press}, + title = {Nayar: Central Kerala}, + year = {1961} +} + +@book{schneiderandgough1961, + author = {Schneider, D. M. and Gough., K.}, + address = {Berkeley and Los Angeles}, + glottolog_ref = {fabreall2009ann:3963}, + key = {Schneider and Gough (1961)}, + lgcode = {Kerala [mala1464]}, + publisher = {UCP}, + title = {Matrilinear kinship}, + year = {1961} +} + +@inbook{roy1935, + author = {Roy, S. C.}, + address = {Ranchi}, + booktitle = {Man in India}, + glottolog_ref = {stampe:628}, + key = {Roy (1935)}, + lgcode = {Hill Bhuiya [oriy1255]}, + title = {The Hill Bhuiyas of Orissa}, + year = {1935} +} + +@book{griffiths1946, + author = {Griffiths, W. G.}, + address = {Calcutta}, + key = {Griffiths (1946)}, + lgcode = {Kol [mund1320]}, + title = {The Kol Tribe of Central India}, + year = {1946} +} + +@book{elwin1939, + author = {Elwin, V.}, + address = {London}, + key = {Elwin (1939)}, + lgcode = {Baiga [chha1249]}, + title = {The Baiga}, + year = {1939} +} + +@book{man1882, + author = {Man, E. H.}, + address = {London}, + key = {Man (1882)}, + lgcode = {Andamanese [akab1249]}, + note = {2nd Edition 1932}, + title = {On the Aboriginal Inhabitants of the Andaman Islands}, + year = {1882} +} + +@book{radcliffebrown1922, + author = {Radcliffe-Brown, A. R.}, + address = {Cambridge}, + key = {Radcliffe-Brown (1922)}, + lgcode = {Andamanese [akab1249]}, + title = {The Andaman Islanders}, + year = {1922} +} + +@article{dubois1938, + author = {Dubois, H. M.}, + journal = {Trav. Mem. Inst. Ethnol.}, + key = {Dubois (1938)}, + lgcode = {Betsileo [bets1235]}, + pages = {1-1510}, + title = {Monographie des Betsileo}, + volume = {34}, + year = {1938} +} + +@book{grandidierandgrandidier190828, + author = {Grandidier, A. and Grandidier., G.}, + glottolog_ref = {eballiso2009:2125}, + key = {Grandidier and Grandidier (1908-28)}, + lgcode = {Merina [meri1243]}, + publisher = {Paris}, + title = {Ethnographie de Madagascar}, + volume = {5 vols}, + year = {1908-28} +} + +@book{sibree1880, + author = {Sibree, J.}, + address = {London}, + key = {Sibree (1880)}, + lgcode = {Merina [meri1243]}, + title = {The Great African Island}, + year = {1880} +} + +@inbook{kardiner1939, + author = {Kardiner, A.}, + address = {New York}, + booktitle = {The Individual and His Society}, + key = {Kardiner (1939)}, + lgcode = {Tanala [tana1285]}, + pages = {291-351}, + title = {The Analysis of Tanala Culture}, + year = {1939} +} + +@article{linton1933, + author = {Linton, R.}, + journal = {Field Museum of Natural History Anthropological Series,}, + key = {Linton (1933)}, + lgcode = {Tanala [tana1285]}, + pages = {1-334}, + title = {The Tanala. A Hill Tribe of Madagascar}, + volume = {22}, + year = {1933} +} + +@incollection{linton1939b, + author = {Linton, R.}, + editor = {Kardiner, A.}, + address = {New York}, + booktitle = {The Individual and His Society}, + key = {Linton (1939b)}, + lgcode = {Tanala [tana1285]}, + pages = {251-290}, + title = {The Tanala of Madagascar}, + year = {1939} +} + +@misc{murdock1959, + author = {Murdock, G. P.}, + address = {New York}, + key = {Murdock (1959)}, + lgcode = {Tanala [tana1285]}, + pages = {212-220}, + title = {Africa. Its People and Their Culture}, + year = {1959} +} + +@article{bailey1863, + author = {Bailey, J.}, + journal = {Transactions of the Ethnological Society of London}, + key = {Bailey (1863)}, + lgcode = {Vedda [vedd1240]}, + pages = {278-320}, + title = {An Account of the Wild Tribes of the Veddahs of Ceylon: Their Habits, Customs and Superstitions}, + volume = {2}, + year = {1863} +} + +@article{ryanetal194950, + author = {Ryan, B. and Aruloragasam, C. and Bible, C.}, + journal = {Eastern Anthropologist}, + key = {Ryan et al. (1949-50)}, + lgcode = {Vedda [vedd1240]}, + pages = {151-160}, + title = {The Agricultural System of a Celon Jungle Village}, + volume = {3}, + year = {1949-50} +} + +@book{seligmannandseligmann1911, + author = {Seligman, C. S. and Seligman, B. Z.}, + address = {Cambridge}, + key = {Seligmann and Seligmann (1911)}, + lgcode = {Vedda [vedd1240]}, + publisher = {Cambridge University Press}, + title = {The Veddas}, + year = {1911} +} + +@book{spittel1945, + author = {Spittel, R. L.}, + address = {Colombo, Ceylon}, + key = {Spittel (1945)}, + lgcode = {Vedda [vedd1240]}, + note = {3rd edit.}, + publisher = {General Publishers}, + title = {Wild Ceylon: Describing in Particular the Lives of the Present-Day Veddahs}, + year = {1945} +} + +@article{man1888, + author = {Man, E. H.}, + journal = {Journal of the Royal Anthropological Institute,}, + key = {Man (1888)}, + lgcode = {Nicobarese [carn1240]}, + pages = {354-394}, + title = {The Nicobar Islanders}, + volume = {18}, + year = {1888} +} + +@book{man1932, + author = {Man, E. H.}, + address = {Guilford}, + key = {Man (1932)}, + lgcode = {Nicobarese [carn1240]}, + note = {titlepage: "Compiled posthumously from papers in the R.A.I. Journal and the Indian Antiquary, and from notes prepared for publication before his death ..." Man held different administrative positions from 1869 (in Port Blair on the Andaman Islands) until his retirement in 1901. [...] Throughout his service, E.H. Man shared with his colleagues the obligation to undertake in rotation tours of duty as officer in charge in the Nicobars; his first tour being undertaken in 1871 soon after his father had left for England. ... Some officers, however, stayed for two or three years, and actually E. H. Man was in residence, at intervals, for some six and a half years.}, + title = {The Nicobar Islands and Their People}, + year = {1932} +} + +@article{svoboda189293, + author = {Svoboda, W.}, + journal = {Internationales Archiv fur Ethnographie}, + key = {Svoboda (1892-93)}, + lgcode = {Nicobarese [carn1240]}, + pages = {149-168, 185-214; 1-40}, + title = {Die Bewohner des Nikobaren-Archipels}, + volume = {5; 6}, + year = {1892-93} +} + +@book{whitehead1924, + author = {Whitehead, G.}, + address = {London}, + glottolog_ref = {stampe:749}, + key = {Whitehead (1924)}, + lgcode = {Nicobarese [carn1240]}, + pages = {276}, + publisher = {London: Seeley, Service}, + title = {In the Nicobar Islands}, + year = {1924} +} + +@book{ariyapala1956, + author = {Ariyapala, M. B.}, + address = {Colombo}, + key = {Ariyapala (1956)}, + lgcode = {Sinhalese [sinh1246]}, + publisher = {K. V. G. de Silva}, + title = {Society in Medieval Ceylon}, + year = {1956} +} + +@book{codrington1926, + author = {Codrington, H. W.}, + address = {London}, + key = {Codrington (1926)}, + lgcode = {Sinhalese [sinh1246]}, + publisher = {MacMillan and Co.}, + title = {A Short History of Ceylon}, + year = {1926} +} + +@book{doyly1929, + author = {D'Oyly, John.}, + address = {Colombo}, + key = {D'Oyly (1929)}, + lgcode = {Sinhalese [sinh1246]}, + publisher = {Government Printer, Ceylon}, + title = {A Sketch of the Constitution of the Kandyan Kingom}, + year = {1929} +} + +@book{hayley1923, + author = {Hayley, F. A.}, + address = {Colombo}, + key = {Hayley (1923)}, + lgcode = {Sinhalese [sinh1246]}, + title = {A Treatise on the Laws and Customs of the Sinhalese}, + year = {1923} +} + +@article{leach1959, + author = {Leach, Edmund R.}, + journal = {Past and Present}, + key = {Leach (1959)}, + lgcode = {Sinhalese [sinh1246]}, + number = {April}, + pages = {2-26}, + title = {Hydraulic Society in Ceylon}, + volume = {15}, + year = {1959} +} + +@article{leach1960, + author = {Leach, E. R.}, + journal = {Viking Fund Publ. Anth.}, + key = {Leach (1960)}, + lgcode = {Sinhalese [sinh1246]}, + pages = {116-126}, + title = {The Sinhalese of the Dry Zone of Northern Ceylon}, + volume = {29}, + year = {1960} +} + +@article{leach1963, + author = {Leach, E. R.}, + journal = {Anth. Inst. Occ. Pap.}, + key = {Leach (1963)}, + lgcode = {Sinhalese [sinh1246]}, + pages = {68-78}, + title = {Did the Wild Veddas have Matrilineal Clans? Roy}, + volume = {16}, + year = {1963} +} + +@article{murphey1957, + author = {Murphey, Rhoads}, + journal = {Journal of Asian Studies}, + key = {Murphey (1957)}, + lgcode = {Sinhalese [sinh1246]}, + pages = {181-200}, + title = {The Ruin of Ancient Ceylon}, + volume = {16}, + year = {1957} +} + +@book{pieris1956, + author = {Pieris, R.}, + address = {Colombo}, + key = {Pieris (1956)}, + lgcode = {Sinhalese [sinh1246]}, + publisher = {Ceylon University Press Board}, + title = {Sinhalese Social Organization}, + year = {1956} +} + +@article{ryan1953a, + author = {Ryan, B.}, + journal = {Eastern Anth.}, + key = {Ryan (1953a)}, + lgcode = {Sinhalese [sinh1246]}, + pages = {143-163}, + title = {The Sinhalese Family System}, + volume = {6}, + year = {1953} +} + +@book{ryan1953b, + author = {Ryan, B.}, + address = {New Brunswick}, + key = {Ryan (1953b)}, + lgcode = {Sinhalese [sinh1246]}, + publisher = {Rutgers University Press}, + title = {Caste in Modern Ceylon}, + year = {1953} +} + +@book{ryan1958, + author = {Ryan, B.}, + address = {Coral Gables}, + key = {Ryan (1958)}, + lgcode = {Sinhalese [sinh1246]}, + title = {Sinhalese Village}, + year = {1958} +} + +@book{singer1964, + author = {Singer, Marshall R.}, + address = {Cambridge}, + key = {Singer (1964)}, + lgcode = {Sinhalese [sinh1246]}, + publisher = {Massachusetts Institute of Technology Press}, + title = {The Emerging Elite. A Study of Political Leadership in Ceylon}, + year = {1964} +} + +@article{tambiah1958, + author = {Tambiah, S. J.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Tambiah (1958)}, + lgcode = {Sinhalese [sinh1246]}, + pages = {21-44}, + title = {The Structure of Kinship and Its Relation to Land Possession and Residence in Pata Dumbara, Central Ceylon}, + volume = {88}, + year = {1958} +} + +@article{yalman1960, + author = {Yalman, N.}, + journal = {Cambridge Papers in Social Anthropology}, + key = {Yalman (1960)}, + lgcode = {Sinhalese [sinh1246]}, + pages = {78-112}, + title = {The Flexibility of Caste Principles in a Kandyan Community}, + volume = {2}, + year = {1960} +} + +@article{yalman1962, + author = {Yalman, N.}, + journal = {American Anthropologist}, + key = {Yalman (1962)}, + lgcode = {Sinhalese [sinh1246]}, + pages = {548-575}, + title = {The Structure of the Sinhalese Kindred}, + volume = {64}, + year = {1962} +} + +@book{decary193033, + author = {Decary, R.}, + address = {Paris}, + key = {Decary (1930-33)}, + lgcode = {Antandroy [tand1256]}, + title = {L'Androy. 2V}, + year = {1930-33} +} + +@book{mcleod1964, + author = {N., McLeod.}, + address = {Lomax}, + key = {McLeod (1964)}, + lgcode = {Antandroy [tand1256], Sakalava [saka1291]}, + title = {Personal communication to A}, + year = {1964} +} + +@article{rajohnson1908, + author = {Rajohnson, H.}, + journal = {Bull. Acad. Malgache, ser. 1}, + key = {Rajohnson (1908)}, + lgcode = {Antandroy [tand1256]}, + pages = {177-196}, + title = {Etude sur les Antanosy et les Antandroy}, + volume = {6}, + year = {1908} +} + +@book{faublee1946, + author = {Faublee, J.}, + address = {Paris}, + key = {Faublee (1946)}, + lgcode = {Sakalava [saka1291]}, + title = {Ethnopgrahie de Madagascar}, + year = {1946} +} + +@article{kurze188689, + author = {Kurze, G.}, + journal = {Mitt. Geog. Ges. Jena}, + key = {Kurze (1886-89)}, + lgcode = {Sakalava [saka1291]}, + pages = {115-128; 106-120}, + title = {Das Volk der Sud-Sakalava}, + volume = {5; 7}, + year = {1886-89} +} + +@book{deschamps1936, + author = {Deschamps, H.}, + address = {Tananarive}, + key = {Deschamps (1936)}, + lgcode = {Antaisaka [tesa1236]}, + title = {Les Antaisaka}, + year = {1936} +} + +@book{burling1963, + author = {Burling, R.}, + address = {Philadelphia}, + glottolog_ref = {sala:1094}, + key = {Burling (1963)}, + lgcode = {Garo [garo1247]}, + pages = {377}, + publisher = {University of Pennsylvania Press}, + title = {Rengsanggri: Family and kinship in a Garo village}, + year = {1963} +} + +@book{playfair1909, + author = {Playfair, A.}, + address = {London}, + key = {Playfair (1909)}, + lgcode = {Garo [garo1247]}, + title = {The Garos}, + year = {1909} +} + +@book{bessaignet1958, + author = {Bessaignet, P.}, + address = {Dacca}, + glottolog_ref = {sala:625}, + key = {Bessaignet (1958)}, + lgcode = {Chakma [chak1266], Mogh [rakh1245]}, + pages = {iii, 109, illus., map}, + publisher = {Asiatic Society of Pakistan.}, + series = {Asiatic Society of Pakistan, Publications}, + title = {Tribesmen of the Chittagong Hill Tracts}, + volume = {1}, + year = {1958} +} + +@article{levistrauss1952, + author = {Lévi-Strauss, C.}, + journal = {Southw. Journ. Anth.}, + key = {Lévi-Strauss (1952)}, + lgcode = {Chakma [chak1266], Kuki [lush1249], Mogh [rakh1245]}, + pages = {40-51}, + title = {Kinship Systems of the Chittagong Hill Tribes}, + volume = {8}, + year = {1952} +} + +@book{lewin1869, + author = {Lewin, T. H.}, + address = {Calcutta}, + key = {Lewin (1869)}, + lgcode = {Chakma [chak1266], Kuki [lush1249]}, + title = {The Hill Tracts of Chittagong and the Dwellers Therein}, + year = {1869} +} + +@article{bose1936, + author = {Bose, J. K.}, + journal = {Journ. Dept. Lett. Univ. Calcutta}, + key = {Bose (1936)}, + lgcode = {Aimol [aimo1244]}, + pages = {vii, 1-24}, + title = {Social Organization of the Aimol Kuki}, + volume = {25}, + year = {1936} +} + +@article{needham1960, + author = {Needham, R.}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + key = {Needham (1960)}, + lgcode = {Aimol [aimo1244]}, + pages = {81-108}, + title = {A Structural Analysis of Aimol Society}, + volume = {116}, + year = {1960} +} + +@book{shakespear1912, + author = {Shakespear, J.}, + address = {London}, + glottolog_ref = {hh:hes:Shakespear:Kuki}, + key = {Shakespear (1912)}, + lgcode = {Aimol [aimo1244], Thado [thad1238]}, + pages = {250}, + publisher = {London: MacMillan & Co.}, + title = {The Lushei Kuki Clans}, + year = {1912} +} + +@book{shaw1929, + author = {Shaw, W.}, + address = {London}, + key = {Shaw (1929)}, + lgcode = {Thado [thad1238]}, + title = {Notes on the Thadou Kukis}, + year = {1929} +} + +@book{hutton1921a, + author = {Hutton, J. H.}, + address = {London}, + key = {Hutton (1921a)}, + lgcode = {Angami [anga1288]}, + title = {The Angami Nagas}, + year = {1921} +} + +@book{mills1926, + author = {Mills, J. P.}, + address = {London}, + glottolog_ref = {wals:4127}, + key = {Mills (1926)}, + lgcode = {Ao [aona1235]}, + publisher = {London: Macmillan and Co. Ltd}, + title = {The Ao Nagas}, + year = {1926} +} + +@book{smith1925b, + author = {Smith, W. C.}, + address = {London}, + key = {Smith (1925b)}, + lgcode = {Ao [aona1235]}, + title = {The Ao Naga Tribe of Assam}, + year = {1925} +} + +@book{mills1937, + author = {Mills, J. P.}, + address = {London}, + glottolog_ref = {lapolla-tibeto-burman:1611}, + key = {Mills (1937)}, + lgcode = {Rengma [sout2732]}, + publisher = {London (Repr. 1980, Gauhati, Spectrum Publications, 381p.)}, + title = {The Rengma Nagas}, + year = {1937} +} + +@book{hutton1921b, + author = {Hutton, J. H.}, + address = {London}, + glottolog_ref = {hh:ew:Hutton:Sema}, + key = {Hutton (1921b)}, + lgcode = {Sema [sumi1235]}, + pages = {586}, + publisher = {London: MacMillan}, + title = {The Sema Nagas}, + year = {1921} +} + +@book{stack1908, + author = {Stack, E.}, + address = {London}, + glottolog_ref = {hh:es:StackLyall:Mikirs}, + key = {Stack (1908)}, + lgcode = {Karbi [karb1241]}, + pages = {230}, + publisher = {London: David Nutt}, + title = {The Mikirs}, + year = {1908} +} + +@book{lowis1906, + author = {Lowis, C. C.}, + address = {Rangoon}, + key = {Lowis (1906)}, + lgcode = {Palaung [shwe1236]}, + title = {A Note on the Palaungs of Hsipaw and Tawnpeng}, + year = {1906} +} + +@book{milne1924, + author = {Milne, I.}, + address = {Oxford}, + key = {Milne (1924)}, + lgcode = {Palaung [shwe1236]}, + title = {The Home of the Eastern Clan}, + year = {1924} +} + +@book{bernotandbernot1958, + author = {Bernot, D. and Bernot., L.}, + address = {Paris}, + glottolog_ref = {hh:d:BernotBernot:Chin}, + key = {Bernot and Bernot (1958)}, + lgcode = {Chin [asho1236]}, + pages = {148}, + publisher = {Librairie Plon}, + series = {L'Homme: Cahiers de d'Éthnologie, de Géographie et de Linguistique}, + title = {Les Khyang des Collines de Chittagong (Pakistan Oriental): Matériaux pour l'étude linguistique des Chin}, + volume = {3}, + year = {1958} +} + +@book{careyandtuck1896, + author = {Carey, B. S. and Tuck., H. P.}, + address = {Rangoon}, + key = {Carey and Tuck (1896)}, + lgcode = {Chin [asho1236]}, + title = {The Chin Hills. 2V}, + year = {1896} +} + +@article{lehman1963, + author = {Lehman, F. K.}, + journal = {Illinois Studies in Anthropology}, + key = {Lehman (1963)}, + lgcode = {Chin [asho1236]}, + pages = {1-244}, + title = {The Structure of Shin Society}, + volume = {3}, + year = {1963} +} + +@book{stevenson1943, + author = {Stevenson, H. N. C.}, + address = {Bombay}, + key = {Stevenson (1943)}, + lgcode = {Chin [asho1236]}, + title = {The Economics of the Central Chin Tribes}, + year = {1943} +} + +@book{mills1922, + author = {Mills, J. P.}, + address = {London}, + key = {Mills (1922)}, + lgcode = {Lhota [loth1237]}, + title = {The Lhota Nagas}, + year = {1922} +} + +@article{brohm1963, + author = {Brohm, J.}, + journal = {Journal of Asian Studies}, + key = {Brohm (1963)}, + lgcode = {Burmese [nucl1310]}, + pages = {155-167}, + title = {Buddhism and Animism in a Burmese Village}, + volume = {22}, + year = {1963} +} + +@article{nash1963, + author = {Nash, M.}, + journal = {American Anthropologist}, + key = {Nash (1963)}, + lgcode = {Burmese [nucl1310]}, + pages = {285-295}, + title = {Burmese Buddhism in Everyday Life}, + volume = {65}, + year = {1963} +} + +@book{nash1965, + author = {Nash, M.}, + address = {New York}, + key = {Nash (1965)}, + lgcode = {Burmese [nucl1310]}, + title = {The Golden Road to Modernity: Village Life in Contemporary Burma}, + year = {1965} +} + +@book{scott1882, + author = {Scott, J. G. (Schway Yoe).}, + address = {London}, + key = {Scott (1882)}, + lgcode = {Burmese [nucl1310]}, + title = {The Burman: His Life and Notions}, + year = {1882} +} + +@incollection{somitandwelsh1956, + author = {Somit, A. and Welsh, J.}, + editor = {Trager, F. M.}, + address = {New Haven}, + booktitle = {Burma}, + key = {Somit and Welsh (1956)}, + lgcode = {Burmese [nucl1310]}, + pages = {899-958}, + title = {The Constitution and Government}, + year = {1956} +} + +@book{trager1956, + editor = {Trager, F. N.}, + address = {New Haven}, + key = {Trager (1956)}, + lgcode = {Burmese [nucl1310]}, + title = {Burma. 3v}, + year = {1956} +} + +@book{parry1932, + author = {Parry, N. E.}, + address = {London}, + glottolog_ref = {lapolla-tibeto-burman:1754}, + key = {Parry (1932)}, + lgcode = {Maras [mara1382]}, + publisher = {London}, + title = {The Lakhers}, + year = {1932} +} + +@article{leach1945, + author = {Leach, E. R.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Leach (1945)}, + lgcode = {Kachin [kach1280]}, + pages = {59-72}, + title = {Jinghpaw Kinship Terminology}, + volume = {75}, + year = {1945} +} + +@book{leach1954, + author = {Leach, E. R.}, + address = {London}, + glottolog_ref = {lapolla-tibeto-burman:1187}, + key = {Leach (1954)}, + lgcode = {Kachin [kach1280]}, + publisher = {London and Atlantic Highlands, NJ: The Athlone Press}, + title = {Political Systems of Highland Burma}, + year = {1954} +} + +@incollection{leach1967, + author = {Leach, E.}, + editor = {Freedman, M.}, + address = {London}, + booktitle = {Social Organization}, + key = {Leach (1967)}, + lgcode = {Kachin [kach1280]}, + pages = {125-152}, + title = {The Language of Kachin Kinship}, + year = {1967} +} + +@book{das1945, + author = {Das, T. C.}, + address = {Calcutta}, + glottolog_ref = {sala:1987}, + key = {Das (1945)}, + lgcode = {Purum [puru1266]}, + title = {The Purums}, + year = {1945} +} + +@article{needham1958, + author = {Needham, R.}, + address = {Purum}, + journal = {Amer. Anth.}, + key = {Needham (1958)}, + lgcode = {Purum [puru1266]}, + pages = {75-101}, + title = {A Structural Analysis of Purum Society}, + volume = {60}, + year = {1958} +} + +@book{marshall1922, + author = {Marshall, H. I.}, + address = {Columbus}, + glottolog_ref = {lapolla-tibeto-burman:1421}, + key = {Marshall (1922)}, + lgcode = {Karen [pwow1235]}, + publisher = {Columbus, The University}, + title = {The Karen People of Burma}, + year = {1922} +} + +@book{mcmahon1876, + author = {McMahon, A. R.}, + address = {London}, + key = {McMahon (1876)}, + lgcode = {Karen [pwow1235]}, + title = {The Karens of the Golden Chersonese}, + year = {1876} +} + +@article{becker1909, + author = {Becker, C.}, + journal = {Anthropos}, + key = {Becker (1909)}, + lgcode = {Khasi [khas1269]}, + pages = {892-902}, + title = {Die Nongkrem-Puja in den Khasi-ergen (Assam)}, + volume = {4}, + year = {1909} +} + +@article{chattopadhyay1941, + author = {Chattopadhyay, K. P.}, + address = {(Calcutta University anthropological papers, n. s. 6.) Calcutta}, + glottolog_ref = {stampe:160}, + journal = {Univ. Calcutta Anth. Papers, n. s.}, + key = {Chattopadhyay (1941)}, + lgcode = {Khasi [khas1269]}, + pages = {1-39}, + publisher = {(Calcutta University anthropological papers, n. s. 6.) Calcutta: Calcutta University}, + title = {Khasi Kinship and Social Organization}, + volume = {6}, + year = {1941} +} + +@article{gurden1904, + author = {Gurden, P. R. T.}, + journal = {Journal of the Asiatic Society of Bengal}, + key = {Gurden (1904)}, + lgcode = {Khasi [khas1269]}, + number = {4}, + pages = {57-75}, + title = {Note on the Khasis, Syntengs, and allied tribes inhabiting Khasi and Janital Hills district in Assam}, + volume = {73, Part 3}, + year = {1904} +} + +@book{gurdon1907, + author = {Gurdon, P. R. T.}, + address = {London}, + glottolog_ref = {stampe:280}, + key = {Gurdon (1907)}, + lgcode = {Khasi [khas1269]}, + pages = {xxvii+227+frontispiece+18 plates}, + publisher = {London: David Nutt}, + title = {The Khasis}, + year = {1907} +} + +@incollection{mccormack1964, + author = {McCormack, Anna P.}, + editor = {Frank M. Lebar, Gerald C. Hickey and Musgrave, John K.}, + address = {New Haven}, + booktitle = {Ethnic groups of mainland Southeast Asia}, + glottolog_ref = {stampe:417}, + key = {McCormack (1964)}, + lgcode = {Khasi [khas1269]}, + pages = {105-112}, + publisher = {Human Relations Area Files Press}, + title = {Khasis}, + year = {1964} +} + +@misc{mccormack1967, + author = {McCormack, A. P.}, + howpublished = {Personal communication}, + key = {McCormack (1967)}, + lgcode = {Khasi [khas1269]}, + year = {1967} +} + +@book{izikowitz1951, + author = {Izikowitz, K. G.}, + address = {Göteborg}, + key = {Izikowitz (1951)}, + lgcode = {Lamet [lame1256]}, + note = {Only after several months of living among the Lamet, did I begin to get some idea of the contours of their social life. Unfortunately, by that time I had only a short while left at my disposal.}, + pages = {1-375}, + series = {Etnologiska Studier}, + title = {Lamet}, + volume = {17}, + year = {1951} +} + +@misc{donoghue1972, + author = {Donoghue, J. D.}, + howpublished = {Personal communication}, + key = {Donoghue (1972)}, + lgcode = {Rade [rade1240]}, + year = {1972} +} + +@book{donoghueetal1962, + author = {Donoghue, J. D. and Whitney, D. D. and Ishino, I.}, + address = {East Lansing}, + key = {Donoghue et al. (1962)}, + lgcode = {Rade [rade1240]}, + title = {People in the Middle: The Rhade of South Vietnam}, + year = {1962} +} + +@book{sabatier1940, + author = {Sabatier, L.}, + address = {Hanoi}, + key = {Sabatier (1940)}, + lgcode = {Rade [rade1240]}, + title = {Recueil des coutumes rhad‚es du Darlac}, + year = {1940} +} + +@article{lafont1964, + author = {Lafont, P. B.}, + glottolog_ref = {sala:5163}, + journal = {Bull. Ec. Franc. Extr. Orient}, + key = {Lafont (1964)}, + lgcode = {Cham [east2563]}, + pages = {157-171}, + title = {Contribution a l'etude des structures sociales des Chams du Vietnam}, + volume = {52}, + year = {1964} +} + +@book{kunstadter1965, + author = {Kunstadter, P.}, + address = {Princeton}, + key = {Kunstadter (1965)}, + lgcode = {Lawa [west2396]}, + title = {The Lau' (Lawa) of Northern Thailand}, + year = {1965} +} + +@article{kunstadter1966, + author = {Kunstadter, P.}, + journal = {Southw. Journ. Anth.}, + key = {Kunstadter (1966)}, + lgcode = {Lawa [west2396]}, + pages = {61-84}, + title = {Residential and Social Organization of the Lawa}, + volume = {22}, + year = {1966} +} + +@book{cusinier1946, + author = {Cusinier, J.}, + key = {Cusinier (1946)}, + lgcode = {Muong [muon1246]}, + series = {Trav. Mem. Inst. Ethnol.}, + title = {Les Mu'o'ng}, + volume = {45}, + year = {1946} +} + +@book{dentan1967, + author = {Dentan, R. H.}, + address = {New York}, + key = {Dentan (1967)}, + lgcode = {Senoi [sema1266]}, + title = {The Semai of West Malaysia}, + year = {1967} +} + +@article{briggs1951, + author = {Briggs, L. P.}, + journal = {Transactions of the American Philosophical Society}, + key = {Briggs (1951)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]}, + pages = {241-250}, + title = {The Ancient Khmer Empire. The Kambuja, or Angkor, period}, + volume = {41}, + year = {1951} +} + +@book{groslier1956, + author = {Groslier, B. P.}, + address = {Paris}, + key = {Groslier (1956)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]}, + title = {Angkor: Hommes et pierres}, + year = {1956} +} + +@book{pelliot1951, + author = {Pelliot, P.}, + address = {Paris}, + key = {Pelliot (1951)}, + lgcode = {Ancient Khmer [oldk1249]}, + title = {Memoires sur les coutumes du Cambodge, v. 3}, + year = {1951} +} + +@article{gulick1958, + author = {Gulick, J. M.}, + journal = {London School of Economics Monographs on Social Anthropology}, + key = {Gulick (1958)}, + lgcode = {Negri Sembilan [nege1240]}, + pages = {1-151}, + title = {Indigenous Political Systems of Western Malaya}, + volume = {17}, + year = {1958} +} + +@phdthesis{lewis1962a, + author = {Lewis, D. K.}, + key = {Lewis (1962a)}, + lgcode = {Negri Sembilan [nege1240]}, + school = {Cornell University}, + title = {The Minangkabau Malay of Negri Sembilan}, + year = {1962} +} + +@incollection{parmer1959, + author = {Parmer, J. N.}, + editor = {Kahin, G. McT.}, + address = {Ithaca}, + booktitle = {Government and Politics of Southeast Asia}, + key = {Parmer (1959)}, + lgcode = {Negri Sembilan [nege1240]}, + pages = {241-312}, + title = {Malaya and Singapore}, + year = {1959} +} + +@article{swift1965, + author = {Swift, M. G.}, + journal = {London School of Economics Monographs on Social Anthropology}, + key = {Swift (1965)}, + lgcode = {Negri Sembilan [nege1240]}, + pages = {1-81}, + title = {Malay Peasant Society in Jelebu}, + volume = {29}, + year = {1965} +} + +@book{wilkinson1911, + author = {Wilkinson, R. J.}, + key = {Wilkinson (1911)}, + lgcode = {Negri Sembilan [nege1240]}, + series = {Papers on Malay Subjects, ser. 1: History}, + title = {Notes on the Negri Sembilan}, + volume = {5}, + year = {1911} +} + +@book{condominas1957, + author = {Condominas, G.}, + address = {Paris}, + key = {Condominas (1957)}, + lgcode = {Mnong Gar [east2333]}, + title = {Nous avons mange la foret}, + year = {1957} +} + +@article{condominas1960, + author = {Condominas, G.}, + journal = {Viking Fund Publ. Anth.}, + key = {Condominas (1960)}, + lgcode = {Mnong Gar [east2333]}, + pages = {15-23}, + title = {Les Mnong Gar du centre Viet-Nam}, + volume = {29}, + year = {1960} +} + +@book{evans1937, + author = {Evans, I. H. N.}, + address = {Cambridge}, + key = {Evans (1937)}, + lgcode = {Semang [kens1248]}, + publisher = {Cambridge University Press}, + title = {The Negritos of Malaya}, + year = {1937} +} + +@book{schebesta1927, + author = {Schebesta, P.}, + address = {London}, + key = {Schebesta (1927)}, + lgcode = {Semang [kens1248]}, + title = {Among the Forest Dwarfs of Malaya}, + year = {1927} +} + +@book{schebesta1954, + author = {Schebesta, P.}, + address = {Wien-Mödling}, + glottolog_ref = {hh:he:Schebesta:Negrito}, + key = {Schebesta (1954)}, + lgcode = {Semang [kens1248]}, + number = {i; ii; iii}, + publisher = {St. Gabriel-Verlag}, + series = {Studia Instituti Anthropos}, + title = {Die Negrito Asiens}, + volume = {6, 12, 13}, + year = {1954} +} + +@book{cadire1953, + author = {Cadire and M., L. and et al.}, + address = {New Haven}, + key = {Cadire (1953)}, + lgcode = {Annamese [viet1252]}, + title = {Vietnamese Ethnographic Papers}, + year = {1953} +} + +@book{coughlin1950, + author = {Coughlin, R. J.}, + address = {New Haven}, + key = {Coughlin (1950)}, + lgcode = {Annamese [viet1252]}, + title = {The Position of Women in Vietnam}, + year = {1950} +} + +@incollection{coughlin1965, + author = {Coughlin, R. J.}, + editor = {D. V. Hart, et al.}, + address = {New Haven}, + booktitle = {Southeast Asian Birth Customs: Three Studies in Human Reproduction}, + key = {Coughlin (1965)}, + lgcode = {Annamese [viet1252]}, + title = {Pregnancy and Childbirth in Vietnam}, + year = {1965} +} + +@book{donoghue1964, + author = {Donoghue, J. D.}, + address = {Lansing}, + key = {Donoghue (1964)}, + lgcode = {Annamese [viet1252]}, + title = {Cam Ani, a Fishing Village in Central Vietnam}, + year = {1964} +} + +@book{gourou1936, + author = {Gourou, P.}, + address = {Paris}, + key = {Gourou (1936)}, + lgcode = {Annamese [viet1252]}, + title = {Les paysans du delta tonkinois}, + year = {1936} +} + +@book{gourou1954, + author = {Gourou, P.}, + address = {Washington}, + key = {Gourou (1954)}, + lgcode = {Annamese [viet1252]}, + title = {Land Utilization in French Indochina. 3v}, + year = {1954} +} + +@book{gourou1955, + author = {Gourou, P.}, + address = {New Haven}, + key = {Gourou (1955)}, + lgcode = {Annamese [viet1252]}, + title = {Peasants of Tonkin Delta, a Study of Human Geography}, + year = {1955} +} + +@book{hickey1964, + author = {Hickey, G. C.}, + address = {New Haven}, + key = {Hickey (1964)}, + lgcode = {Annamese [viet1252]}, + title = {Village in Vietnam}, + year = {1964} +} + +@book{langrand1945, + author = {Langrand, G.}, + address = {Lille}, + key = {Langrand (1945)}, + lgcode = {Annamese [viet1252]}, + title = {Vie sociale et religieuse en Annam}, + year = {1945} +} + +@misc{lintonnd, + author = {Linton, A.}, + howpublished = {Manuscript}, + key = {Linton (nd)}, + lgcode = {Annamese [viet1252]}, + title = {Summary of Vietnamese culture prepared for HRaf} +} + +@article{vankhoan1930, + author = {Van Khoan, Nguyen}, + journal = {Bulletin de l'Ecole Française d'Extreme Orient}, + key = {Van Khoan (1930)}, + lgcode = {Annamese [viet1252]}, + pages = {107-139}, + title = {Essai sur le dinh et le culte du génie tutélaire des villages au Tonkin}, + volume = {30}, + year = {1930} +} + +@book{aymonier190004, + author = {Aymonier, E.}, + address = {Paris}, + key = {Aymonier (1900-04)}, + lgcode = {Khmer [cent1989]}, + title = {Le Cambodge. 3v}, + year = {1900-04} +} + +@article{chou1902, + author = {Chou, Ta-Kuan.}, + editor = {Pelliot, P.}, + journal = {Bulletin de l'Ecole Française d'Extreme-Orient}, + key = {Chou (1902)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]}, + pages = {123-177}, + title = {Mémoires sur les coutumes du Cambodge}, + volume = {2}, + year = {1902} +} + +@book{coedes1968, + author = {Coedes, G.}, + editor = {Vella, W. F.}, + address = {Honolulu}, + key = {Coedes (1968)}, + lgcode = {Khmer [cent1989]}, + title = {The Indianized States of Southeast Asia}, + year = {1968} +} + +@book{delbert1961, + author = {Delbert, J.}, + address = {Paris}, + key = {Delbert (1961)}, + lgcode = {Khmer [cent1989]}, + title = {Le Paysan Cambodgien}, + year = {1961} +} + +@incollection{ebihara1964, + author = {Ebihara, M.}, + editor = {LeBar, Frank M. and Hickey, Gerald C. and Musgrave, John K.}, + address = {New Haven}, + booktitle = {Ethnic Groups of Mainland Southeast Asia}, + glottolog_ref = {sala:2514}, + key = {Ebihara (1964)}, + lgcode = {Khmer [cent1989]}, + pages = {94-105}, + publisher = {Human Relations Area Files Press}, + title = {Khmer}, + year = {1964} +} + +@book{poreandmaspero1938, + author = {Pore, G. and Maspero., E.}, + address = {Paris}, + key = {Pore and Maspero (1938)}, + lgcode = {Khmer [cent1989]}, + title = {Moeurs et coutumes des Khmers}, + year = {1938} +} + +@book{poreemaspero1958, + editor = {Poree-Maspero, E.}, + address = {Phnom-Penh}, + key = {Poree-Maspero (1958)}, + lgcode = {Khmer [cent1989]}, + publisher = {Institut bouddnique}, + title = {Ceremonies privees des Cambodgiens}, + year = {1958} +} + +@book{steinberg1957, + author = {Steinberg and J., David and et al.}, + address = {New Haven}, + key = {Steinberg (1957)}, + lgcode = {Khmer [cent1989]}, + publisher = {HRaf Press}, + title = {Cambodia: Its People, Its Society, Its Culture}, + year = {1957} +} + +@book{carrapiett1909, + author = {Carrapiett, W. J. S.}, + address = {Rangoon}, + key = {Carrapiett (1909)}, + lgcode = {Moken [moke1242]}, + title = {The Salons}, + year = {1909} +} + +@book{white1922, + author = {White, W. J. S.}, + address = {London}, + key = {White (1922)}, + lgcode = {Moken [moke1242]}, + title = {The Sa Gypsies of Malaya}, + year = {1922} +} + +@book{bernatzik1947, + author = {Bernatzik, H. A.}, + address = {Innsbruck}, + key = {Bernatzik (1947)}, + lgcode = {Akha [akha1245]}, + title = {Akha und Meau. 2v}, + unknown = {Young, G. 1962. The Hill Tribes of Northern Thailand. Bangkok: Siam Society.}, + year = {1947} +} + +@book{firth1943, + author = {Firth, Rosmary.}, + address = {London}, + key = {Firth (1943)}, + lgcode = {Malays [mala1479]}, + series = {London School of Economics Monographs on Social Anthropology}, + title = {Housekeeping among Malay peasants}, + volume = {7}, + year = {1943} +} + +@book{firth1946, + author = {Firth, R.}, + address = {London}, + key = {Firth (1946)}, + lgcode = {Malays [mala1479]}, + title = {Malay Fishermen: Their Peasant Economy}, + year = {1946} +} + +@book{fraser1960, + author = {Fraser and M., Thomas and Jr.}, + address = {Ithaca}, + key = {Fraser (1960)}, + lgcode = {Malays [mala1479]}, + publisher = {Cornell University Press}, + title = {Rusembilan: a Malay fishing village in Southern Thailand}, + year = {1960} +} + +@book{fraser1966, + author = {Fraser and M., Thomas and Jr.}, + address = {New York}, + key = {Fraser (1966)}, + lgcode = {Malays [mala1479]}, + publisher = {Holt, Rinehart and Winston}, + title = {Fishermen of South Thailand: the Malay villagers}, + year = {1966} +} + +@book{ginsburgandroberts1958, + author = {Ginsburg, N. and C. F. Roberts, Jr.}, + address = {Seattle}, + key = {Ginsburg and Roberts (1958)}, + lgcode = {Malays [mala1479]}, + title = {Malaya}, + year = {1958} +} + +@book{hebererandlehman1950, + author = {Heberer, G. and Lehmann, W.}, + address = {Göttingen}, + key = {Heberer and Lehman (1950)}, + lgcode = {Malays [mala1479]}, + publisher = {Muster-Schmidt}, + title = {Die Inland-Malaien von Lombok und Sumbawa}, + year = {1950} +} + +@article{lehmann1934, + author = {Lehmann, W.}, + journal = {Zeitschrift für Ethnologie}, + key = {Lehmann (1934)}, + lgcode = {Malays [mala1479]}, + pages = {268-276}, + title = {Anthropologische Beobachtungen auf den kleinen Sunda=Inseln}, + volume = {66}, + year = {1934} +} + +@book{wilkinson1920, + author = {Wilkinson, R. J.}, + address = {Singapore}, + key = {Wilkinson (1920)}, + lgcode = {Malays [mala1479]}, + publisher = {Kelly and Walsh}, + title = {Papers on Malay subjects. Life and customs, Part I. The incidents of Malay Life}, + year = {1920} +} + +@book{anumanrajadhon1961, + author = {Anuman Rajadhon, P.}, + editor = {Gedney, W. J.}, + address = {New Haven}, + key = {Anuman Rajadhon (1961)}, + lgcode = {Thai [thai1261]}, + title = {Life and Ritual in Old Siam}, + year = {1961} +} + +@book{benedict1943, + author = {Benedict, R. F.}, + address = {Ithaca}, + key = {Benedict (1943)}, + lgcode = {Thai [thai1261]}, + title = {Thai Culture and Behavior}, + year = {1943} +} + +@book{bush1964, + author = {Bush, N. F.}, + address = {Princeton}, + key = {Bush (1964)}, + lgcode = {Thai [thai1261]}, + title = {Thailand: An Introduction to Modern Siam}, + year = {1964} +} + +@book{hanks1963, + author = {Hanks, J. R.}, + address = {Ithaca}, + key = {Hanks (1963)}, + lgcode = {Thai [thai1261]}, + title = {Maternity and its Rituals in Bang Chan}, + year = {1963} +} + +@incollection{hanksandhanks1961, + author = {Hanks, L. M. Jr. and Hanks, J. R.}, + editor = {Ward, B. J.}, + booktitle = {Women in the New Asia}, + key = {Hanks and Hanks (1961)}, + lgcode = {Thai [thai1261]}, + pages = {424-451}, + title = {Thailand: Equality Between the Sexes}, + year = {1961} +} + +@book{hauck1958, + author = {Hauck, H. M. et al.}, + address = {Ithaca}, + key = {Hauck (1958)}, + lgcode = {Thai [thai1261]}, + title = {Food Habits and Nutrient Intake in a Siamese Rice Village}, + year = {1958} +} + +@book{insor1963, + author = {Insor, D.}, + address = {New York}, + key = {Insor (1963)}, + lgcode = {Thai [thai1261]}, + title = {Thailand, a Political, Social, and Economic Analysis}, + year = {1963} +} + +@phdthesis{janlekha1955, + author = {Janlekha, K. O.}, + key = {Janlekha (1955)}, + lgcode = {Thai [thai1261]}, + school = {Cornell University}, + title = {A Study of the Economy of a Rice Growing Village in Central Thailand}, + year = {1955} +} + +@book{phillips1965, + author = {Phillips, H. P.}, + address = {Berkeley}, + key = {Phillips (1965)}, + lgcode = {Thai [thai1261]}, + title = {Thai Peasant Personality}, + year = {1965} +} + +@book{sharpandhanks1978, + author = {Sharp, R. L. and L. M. Hanks, Jr.}, + address = {Ithaca}, + key = {Sharp and Hanks (1978)}, + lgcode = {Thai [thai1261]}, + title = {Bang Chan: The Social History of a Rural Community in Thailand}, + year = {1978} +} + +@book{sharpetal1954, + author = {Sharp, R. L. and Hauck, H. M. and Janlekha, K. and Textor, R. B.}, + address = {Bangkok}, + key = {Sharp et al. (1954)}, + lgcode = {Thai [thai1261]}, + title = {Simaese Village}, + year = {1954} +} + +@book{ferrell1969, + author = {Ferrell, R.}, + key = {Ferrell (1969)}, + lgcode = {Atayal [atay1247]}, + series = {Academia Sinica, Institute of Ethnology Monographs}, + title = {Taiwan Aboriginal Groups: Problems in Cultural and Linguistic Classification}, + volume = {17}, + year = {1969} +} + +@article{mabuchi1960, + author = {Mabuchi, T.}, + journal = {Viking Fund Publications in Anthropology}, + key = {Mabuchi (1960)}, + lgcode = {Ami [amis1246], Atayal [atay1247], Bunun [bunu1267], Paiwan [paiw1248], Puyuma [puyu1239], Tao [yami1254]}, + pages = {127-140}, + title = {The Aboriginal Peoples of Formosa}, + volume = {29}, + year = {1960} +} + +@misc{okada1949, + author = {Okada, Y.}, + address = {Tokyo}, + howpublished = {Manuscript (Unpublished translation from the Japanese, Essays Presented to Teizo Toda, pp. 393-433)}, + key = {Okada (1949)}, + lgcode = {Atayal [atay1247]}, + title = {The Social Structure of the Atayal Tribe}, + year = {1949} +} + +@article{ruey1955, + author = {Ruey, Yih-Fu.}, + journal = {Bulletin, Department of Archaeology and Anthropology, National Taiwan University}, + key = {Ruey (1955)}, + lgcode = {Atayal [atay1247]}, + pages = {113-127}, + title = {Ethnographical Investigation of Some Aspects of the Atayal}, + volume = {5}, + year = {1955} +} + +@misc{rueynd, + author = {Ruey, Y. F.}, + howpublished = {Manuscript}, + key = {Ruey (nd)}, + lgcode = {Atayal [atay1247]}, + title = {The Atayal} +} + +@article{chiu1962, + author = {Chiu, C. C.}, + journal = {Bull. Inst. Ethnol. Academia Sinica}, + key = {Chiu (1962)}, + lgcode = {Bunun [bunu1267]}, + pages = {192-193}, + title = {The Kinship Organization of the Take-Bakha Bunun}, + volume = {13}, + year = {1962} +} + +@article{mabuchi1952, + author = {Mabuchi, T.}, + journal = {Intern. Arch. Ethnog.}, + key = {Mabuchi (1952)}, + lgcode = {Bunun [bunu1267]}, + pages = {182-211}, + title = {Social Organization of the Central Tribes of Formosa}, + volume = {46}, + year = {1952} +} + +@book{hart1965, + author = {Hart, D. V.}, + address = {New Haven}, + key = {Hart (1965)}, + lgcode = {Sugbuanon [cebu1242]}, + pages = {1-113}, + title = {From Pregnancy Through Birth in a Bisayan Filipino Village. Southeast Asian Birth Customs}, + year = {1965} +} + +@misc{hartnd, + author = {Hart, D. V.}, + howpublished = {Personal communications to C. O. Frake}, + key = {Hart (nd)}, + lgcode = {Sugbuanon [cebu1242]} +} + +@article{quijano1937, + author = {Quijano, I. T.}, + journal = {Philippine Magazine}, + key = {Quijano (1937)}, + lgcode = {Sugbuanon [cebu1242]}, + pages = {359-360}, + title = {Cebuano-Visayan Kinship Terms}, + volume = {34}, + year = {1937} +} + +@misc{svelmoe1954, + author = {Svelmoe, G.}, + howpublished = {Unpublished Manuscript}, + key = {Svelmoe (1954)}, + lgcode = {Sugbuanon [cebu1242]}, + title = {Cebuano Word List}, + year = {1954} +} + +@book{nimmo1964, + author = {Nimmo, H. A.}, + key = {Nimmo (1964)}, + lgcode = {Badjau Tawi-Tawi [sout2918]}, + publisher = {University of Hawaii}, + title = {Nomads of the Sulu Sea}, + year = {1964} +} + +@article{nimmo1965, + author = {Nimmo, H. A.}, + journal = {Ethnology}, + key = {Nimmo (1965)}, + lgcode = {Badjau Tawi-Tawi [sout2918]}, + pages = {421-439}, + title = {Social Organization of the Tawi-Tawi Badjaw}, + volume = {4}, + year = {1965} +} + +@article{nimmo1968, + author = {Nimmo, H. A.}, + journal = {Philippine Studies}, + key = {Nimmo (1968)}, + lgcode = {Badjau Tawi-Tawi [sout2918]}, + pages = {32-59}, + title = {Reflections on Bajau History}, + volume = {16}, + year = {1968} +} + +@phdthesis{nimmo1969, + author = {Nimmo, H. A.}, + key = {Nimmo (1969)}, + lgcode = {Badjau Tawi-Tawi [sout2918]}, + school = {University of Hawaii}, + title = {The Structure of Badjau Society}, + year = {1969} +} + +@article{nimmo1970, + author = {Nimmo, H. A.}, + journal = {Ethnology}, + key = {Nimmo (1970)}, + lgcode = {Badjau Tawi-Tawi [sout2918]}, + pages = {251-262}, + title = {Badjau Sex and Reproduction}, + volume = {9}, + year = {1970} +} + +@book{kaneandsegawa1956, + author = {Kane, T. and Segawa, K.}, + address = {Tokyo}, + key = {Kane and Segawa (1956)}, + lgcode = {Tao [yami1254]}, + title = {An Illustrated Ethnography of Formosa, V. 1: The Yumi}, + year = {1956} +} + +@article{weiandliu1962, + author = {Wei, H. L. and Liu., P. H.}, + journal = {Inst. Ethnol. Academia Sinica, Monographs}, + key = {Wei and Liu (1962)}, + lgcode = {Tao [yami1254]}, + pages = {1-284}, + title = {Social Structure of the Yami}, + volume = {1}, + year = {1962} +} + +@article{garvan1931, + author = {Garvan, J. M.}, + glottolog_ref = {hh:he:Garvan:Manobos}, + journal = {Mem. Nat. Acad. Sci.}, + key = {Garvan (1931)}, + lgcode = {Manobo [agus1235]}, + pages = {1-231}, + publisher = {Washinton, D.C.: National Academy of Science}, + series = {National Academy of Science Memoirs}, + title = {The Manobo of Mindanao}, + volume = {23}, + year = {1931} +} + +@book{barton1949, + author = {Barton, R. F.}, + address = {Chicago}, + key = {Barton (1949)}, + lgcode = {Kalinga [lubu1243]}, + title = {The Kalingas}, + year = {1949} +} + +@book{dozier1966a, + author = {Dozier, E. P.}, + address = {Tucson}, + key = {Dozier (1966a)}, + lgcode = {Kalinga [lubu1243]}, + title = {Mountain Arbiters}, + year = {1966} +} + +@book{dozier1967, + author = {Dozier, E. P.}, + address = {New York}, + key = {Dozier (1967)}, + lgcode = {Kalinga [lubu1243]}, + title = {The Kalinga of Northern Luzon}, + year = {1967} +} + +@article{cole1913, + author = {Cole, F. C.}, + journal = {Field Mus. Nat. Hist. Anth. Ser.}, + key = {Cole (1913)}, + lgcode = {Bilaan [koro1310]}, + pages = {48-203}, + title = {The Wild Tribes of the Davao District}, + volume = {12}, + year = {1913} +} + +@misc{deananddean1954, + author = {Dean, J. and Dean, G.}, + howpublished = {Unpublished Ms.}, + key = {Dean and Dean (1954)}, + lgcode = {Bilaan [koro1310]}, + title = {Bilaan Word List}, + year = {1954} +} + +@misc{wood1951, + author = {Wood, G.}, + howpublished = {Unpublished Manuscript}, + key = {Wood (1951)}, + lgcode = {Bilaan [koro1310]}, + title = {Notes on the Bilaan of Cotabato}, + year = {1951} +} + +@misc{sibley1959, + author = {Sibley, W. E.}, + howpublished = {Unpublished Manuscript}, + key = {Sibley (1959)}, + lgcode = {Bisayan [akla1241]}, + title = {Kinship in a Philippine Village}, + year = {1959} +} + +@misc{sibley1963, + author = {Sibley, W. E.}, + howpublished = {Personal communication}, + key = {Sibley (1963)}, + lgcode = {Bisayan [akla1241]}, + year = {1963} +} + +@misc{bacdayan1962, + author = {Bacdayan, A. S.}, + howpublished = {Personal communication}, + key = {Bacdayan (1962)}, + lgcode = {Sagada [nort2877]}, + year = {1962} +} + +@article{eggan1960, + author = {Eggan, F.}, + journal = {Viking Fund. Publ. Anth.}, + key = {Eggan (1960)}, + lgcode = {Sagada [nort2877]}, + pages = {24-50}, + title = {The Sagada Igorots of Northern Luzon}, + volume = {29}, + year = {1960} +} + +@article{barton1919, + author = {Barton, R. F.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Barton (1919)}, + lgcode = {Ifugao [tuwa1243]}, + pages = {1-186}, + title = {Ifugao Law}, + volume = {15}, + year = {1919} +} + +@article{barton1922, + author = {Barton, R. F.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Barton (1922)}, + lgcode = {Ifugao [tuwa1243]}, + number = {5}, + pages = {385-446}, + title = {Ifugao Economics}, + volume = {15}, + year = {1922} +} + +@book{barton1930, + author = {Barton, R. F.}, + address = {New York}, + key = {Barton (1930)}, + lgcode = {Ifugao [tuwa1243]}, + title = {The Half-Way Sun}, + year = {1930} +} + +@book{barton1938, + author = {Barton, R. F.}, + address = {London}, + key = {Barton (1938)}, + lgcode = {Ifugao [tuwa1243]}, + title = {Philippine Pagans}, + year = {1938} +} + +@article{barton1946, + author = {Barton, R. F.}, + journal = {Memoirs of the American Anthropological Association}, + key = {Barton (1946)}, + lgcode = {Ifugao [tuwa1243]}, + pages = {1-219}, + title = {The Religion of the Ifugaos}, + volume = {65}, + year = {1946} +} + +@book{christie1909, + author = {Christie, Emerson B.}, + address = {Manila}, + glottolog_ref = {hh:ew:Christie:Subanuns}, + key = {Christie (1909)}, + lgcode = {Subanun [cent2089]}, + number = {1}, + pages = {152}, + publisher = {Manila: Bureau of Science, Division of Ethnology}, + series = {Bureau of Science Division of Ethnology Publications}, + title = {The Subanuns of Sindangan Bay}, + volume = {6}, + year = {1909} +} + +@phdthesis{frake1955, + author = {Frake, C. O.}, + key = {Frake (1955)}, + lgcode = {Subanun [cent2089]}, + note = {Unpublished Ph. D. disertation}, + school = {Yale University}, + title = {Social Organization and Shifting Cultivation Among the Sindangan Subanun}, + year = {1955} +} + +@article{frake1960, + author = {Frake, C. O.}, + journal = {Viking Fund Publ. Anth.}, + key = {Frake (1960)}, + lgcode = {Subanun [cent2089]}, + pages = {51-64}, + title = {The Eastern Subanun of Mindanao}, + volume = {29}, + year = {1960} +} + +@phdthesis{conklin1954, + author = {Conklin, H. C.}, + howpublished = {Unpublished}, + key = {Conklin (1954)}, + lgcode = {Hanunoo [hanu1241]}, + school = {Yale University}, + title = {The Relation of Hanunoo Culture to the Plant World}, + year = {1954} +} + +@article{conklin1955, + author = {Conklin, Harold C. IV-5.}, + journal = {Southwestern Journal of Anthropology}, + key = {Conklin (1955)}, + lgcode = {Hanunoo [hanu1241]}, + pages = {339-344}, + title = {Hanunoo color catgories}, + volume = {11}, + year = {1955} +} + +@article{conklin1957, + author = {Conklin, H. C.}, + journal = {United Nations Food and Agric. Org. Forestry Devel. Pap.}, + key = {Conklin (1957)}, + lgcode = {Hanunoo [hanu1241]}, + pages = {1-209}, + title = {Hanunoo Agriculture}, + volume = {12}, + year = {1957} +} + +@article{okada1960, + author = {Okada and of Pirmitive Society. Wei, Y. Ms. Study. and L., H.}, + journal = {Bull. Inst. Ethnol. Acad. Sinica}, + key = {Okada (1960)}, + lgcode = {Paiwan [paiw1248]}, + pages = {97-108}, + title = {Ambilateral Lineage and Clan System of the Paiwan}, + volume = {9}, + year = {1960} +} + +@article{shih1964, + author = {Shih, L.}, + journal = {Bull. Inst. Ethnol. Academia Sinica}, + key = {Shih (1964)}, + lgcode = {Paiwan [paiw1248]}, + pages = {89-112}, + title = {The Family System of the Paiwan at Su-Paiwan Village}, + volume = {18}, + year = {1964} +} + +@phdthesis{fox1954, + author = {Fox, R. B.}, + key = {Fox (1954)}, + lgcode = {Tagbanua [tagb1258]}, + note = {Unpublished doctoral dissertation}, + school = {University of Chicago}, + title = {Religion and Society Among the Tagbanua of Palawan Island}, + year = {1954} +} + +@book{jenks1905, + author = {Jenks, A. E.}, + address = {Manila}, + glottolog_ref = {hh:e:Jenks:Bontoc-Igorot}, + key = {Jenks (1905)}, + lgcode = {Bontok [cent2292]}, + pages = {308}, + publisher = {Bureau of Printing}, + series = {Ethnol. Surv. Publ.}, + title = {The Bontoc Igorot}, + volume = {1}, + year = {1905} +} + +@article{keesing1949, + author = {Keesing, F. M.}, + journal = {American Anthropologist}, + key = {Keesing (1949)}, + lgcode = {Bontok [cent2292]}, + pages = {578-601}, + title = {Some Notes on Bontok Social Organization}, + volume = {51}, + year = {1949} +} + +@article{wei1961, + author = {Wei, H. L.}, + journal = {Bull. Inst. Ethnol. Academia Sinica}, + key = {Wei (1961)}, + lgcode = {Ami [amis1246]}, + pages = {29-40}, + title = {Matri-Clan and Lineage System of the Ami}, + volume = {12}, + year = {1961} +} + +@article{freeman1955a, + author = {Freeman, J. D.}, + journal = {Colonial Research Studies}, + key = {Freeman (1955a)}, + lgcode = {Iban [iban1264]}, + pages = {1-148}, + title = {Iban Agriculture}, + volume = {18}, + year = {1955} +} + +@book{freeman1955b, + author = {Freeman, J. D.}, + address = {Kuching}, + key = {Freeman (1955b)}, + lgcode = {Iban [iban1264]}, + note = {2nd Edition 1970}, + title = {Report on the Iban of Sarawak}, + year = {1955} +} + +@article{freeman1957, + author = {Freeman, J.}, + journal = {Sarawak Museum Journal}, + key = {Freeman (1957)}, + lgcode = {Iban [iban1264]}, + pages = {53-176}, + title = {Iban Pottery}, + volume = {8}, + year = {1957} +} + +@article{freeman1958a, + author = {Freeman, J. D.}, + journal = {Cambridge Papers in Social Anthropology}, + key = {Freeman (1958a)}, + lgcode = {Iban [iban1264]}, + pages = {15-52}, + title = {The Family System of the Iban}, + volume = {I}, + year = {1958} +} + +@article{freeman1958b, + author = {Freeman, J. D.}, + journal = {Viking Fund Publications in Anthropology}, + key = {Freeman (1958b)}, + lgcode = {Iban [iban1264]}, + pages = {65-87}, + title = {The Iban of Western Borneo}, + volume = {29}, + year = {1958} +} + +@book{gomes1911, + author = {Gomes, E. H.}, + address = {London}, + key = {Gomes (1911)}, + lgcode = {Iban [iban1264]}, + title = {Seventeen Years Among the Sea Dyaks of Borneo}, + year = {1911} +} + +@article{howell190810, + author = {Howell, W.}, + journal = {Sarawak Gazette}, + key = {Howell (1908-10)}, + lgcode = {Iban [iban1264]}, + title = {The Sea Dyak}, + volume = {38-50}, + year = {1908-10} +} + +@book{robertsandkaplan1956, + editor = {Roberts, C. F. and Kaplan, I.}, + address = {New Haven}, + key = {Roberts and Kaplan (1956)}, + lgcode = {Iban [iban1264]}, + title = {North Borneo, Brunei, Sarawak}, + year = {1956} +} + +@article{roth1892, + editor = {Roth, H. L.}, + journal = {Journal of the Royal Anthropological Institute}, + key = {Roth (1892)}, + lgcode = {Iban [iban1264]}, + pages = {110-137}, + title = {The Natives of Borneo}, + volume = {21}, + year = {1892} +} + +@book{sandin1968, + author = {Sandin, B.}, + address = {East Lansing}, + key = {Sandin (1968)}, + lgcode = {Iban [iban1264]}, + title = {The Sea Dayaks of Borneo}, + year = {1968} +} + +@book{dewey1962, + author = {Dewey, A. G.}, + address = {New York}, + key = {Dewey (1962)}, + lgcode = {Javanese [java1254]}, + title = {Peasant Marketing in Java}, + year = {1962} +} + +@book{geertz1960, + author = {Geertz, C.}, + address = {Chicago}, + key = {Geertz (1960)}, + lgcode = {Javanese [java1254]}, + title = {The Religion of Java}, + year = {1960} +} + +@book{geertz1961, + author = {Geertz, H.}, + address = {New York}, + key = {Geertz (1961)}, + lgcode = {Javanese [java1254]}, + title = {The Javanese Family}, + year = {1961} +} + +@book{geertz1963, + author = {Geertz, C.}, + address = {Chicago}, + key = {Geertz (1963)}, + lgcode = {Balinese [bali1278], Javanese [java1254]}, + title = {Peddlers and Princes}, + year = {1963} +} + +@book{geertz1965, + author = {Geertz, C.}, + address = {Cambridge}, + key = {Geertz (1965)}, + lgcode = {Javanese [java1254]}, + title = {The Social History of an Indonesian Town}, + year = {1965} +} + +@book{grant1964, + author = {Grant, B.}, + address = {Melbourne}, + key = {Grant (1964)}, + lgcode = {Balinese [bali1278], Javanese [java1254]}, + title = {Indonesia}, + year = {1964} +} + +@book{jay1963, + author = {Jay, R. R.}, + address = {New Haven}, + key = {Jay (1963)}, + lgcode = {Javanese [java1254]}, + title = {Religion and Politics in Central Java}, + year = {1963} +} + +@book{jay1969, + author = {Jay, R. R.}, + address = {Cambridge, Mass.}, + key = {Jay (1969)}, + lgcode = {Javanese [java1254]}, + title = {Javanese Villagers}, + year = {1969} +} + +@incollection{kahin1963, + author = {Kahin, G. McT.}, + editor = {Kahin, G. McT.}, + address = {Ithaca}, + booktitle = {Major Governments of Asia}, + key = {Kahin (1963)}, + lgcode = {Balinese [bali1278], Javanese [java1254]}, + pages = {535-688}, + title = {Indonesia}, + year = {1963} +} + +@incollection{koentjaraningrat1960, + author = {Koentjaraningrat, R. M.}, + editor = {Murdock, G. P.}, + address = {Chicago}, + booktitle = {Social Structure in Southeast Asia}, + key = {Koentjaraningrat (1960)}, + lgcode = {Javanese [java1254]}, + pages = {88-115}, + title = {The Javanese of South Central Java}, + year = {1960} +} + +@book{koentjaraningrat1961, + author = {Koentjaraningrat, R. M.}, + address = {Ithaca}, + key = {Koentjaraningrat (1961)}, + lgcode = {Javanese [java1254]}, + title = {Some Social Anthropological Observations on Gotong Rojong Practices in Two Villages of Central Java}, + year = {1961} +} + +@incollection{koentjaraningrat1967, + author = {Koentjaraningrat, R. M.}, + editor = {Koentjaraningrat}, + address = {Ithaca}, + booktitle = {Villages in Indonesia}, + key = {Koentjaraningrat (1967)}, + lgcode = {Javanese [java1254]}, + pages = {244-280}, + title = {Tjelapar: A Village in South Central Java}, + year = {1967} +} + +@article{belo1936, + author = {Belo, J.}, + journal = {American Anthropologist}, + key = {Belo (1936)}, + lgcode = {Balinese [bali1278]}, + pages = {12-31}, + title = {A Study of a Balinese Family}, + volume = {38}, + year = {1936} +} + +@book{belo1970, + author = {Belo, J.}, + address = {New York}, + key = {Belo (1970)}, + lgcode = {Balinese [bali1278]}, + title = {Traditional Balinese Culture}, + year = {1970} +} + +@book{frankenetal1960, + author = {Franken, H. J. and Goris, R. and Grader, C. J. and Korn, V. E. and Swellengrebel, J. L.}, + address = {The Hague}, + key = {Franken et al. (1960)}, + lgcode = {Balinese [bali1278]}, + title = {Bali: Studies in Life, Thought, and Ritual}, + year = {1960} +} + +@misc{geertz1959a, + author = {Geertz, C.}, + howpublished = {Manuscript}, + key = {Geertz (1959a)}, + lgcode = {Balinese [bali1278]}, + title = {Balinese Religion in Transition}, + year = {1959} +} + +@article{geertz1959b, + author = {Geertz, C.}, + journal = {American Anthropologist}, + key = {Geertz (1959b)}, + lgcode = {Balinese [bali1278]}, + pages = {991-1012}, + title = {Form and Variation in Balinese Village Structure}, + volume = {61}, + year = {1959} +} + +@incollection{geertz1967, + author = {Geertz, C.}, + editor = {Koentjaraningrat}, + address = {Ithaca}, + booktitle = {Villages in Indonesia}, + key = {Geertz (1967)}, + lgcode = {Balinese [bali1278]}, + pages = {210-293}, + title = {Tihingan}, + year = {1967} +} + +@misc{geertzandgeertz1959, + author = {Geertz, C. and Geertz., H.}, + howpublished = {Manuscript}, + key = {Geertz and Geertz (1959)}, + lgcode = {Balinese [bali1278]}, + title = {The Balinese Kinship System}, + year = {1959} +} + +@book{meadandmacgregor1951, + author = {Mead, M. and MacGregor., F. C.}, + address = {New York}, + key = {Mead and MacGregor (1951)}, + lgcode = {Balinese [bali1278]}, + title = {Growth and Culture: A Photographic Study of Balinese Childhood}, + year = {1951} +} + +@article{bartlett1929, + author = {Bartlett, H. H. IV-1.}, + journal = {Michigan Academy of Science, Arts, and Letters, Papers}, + key = {Bartlett (1929)}, + lgcode = {Toba Batak [bata1289]}, + pages = {1-52}, + title = {Color nomenclature in Batak and Malay}, + volume = {10}, + year = {1929} +} + +@article{bruner1959, + author = {Bruner, E. M.}, + journal = {Trans. N. Y. Acad. Sci., ser. 2}, + key = {Bruner (1959)}, + lgcode = {Toba Batak [bata1289]}, + pages = {118-125}, + title = {Kinship Organization Among the Urban Batak of Sumatra}, + volume = {22}, + year = {1959} +} + +@article{loeb1933a, + author = {Loeb, E. M.}, + journal = {American Anthropologist}, + key = {Loeb (1933a)}, + lgcode = {Toba Batak [bata1289]}, + pages = {16-50}, + title = {Patrilineal and Matrilineal Organization in Sumatra}, + volume = {35}, + year = {1933} +} + +@article{warneck1901, + author = {Warneck, F.}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + key = {Warneck (1901)}, + lgcode = {Toba Batak [bata1289]}, + pages = {432-534}, + title = {Das Eherecht bei den Toba-Batak}, + volume = {52}, + year = {1901} +} + +@book{evans1922, + author = {Evans, I. H. N.}, + address = {London}, + glottolog_ref = {hh:he:Evans:Borneo}, + key = {Evans (1922)}, + lgcode = {Kadazan-Dusun [cent2100]}, + pages = {313}, + publisher = {London: Seeley}, + title = {Among Primitive Peoples in North Borneo}, + year = {1922} +} + +@book{rutter1929, + author = {Rutter, O.}, + address = {London}, + glottolog_ref = {hh:hew:Rutter:Pagans-Borneo}, + key = {Rutter (1929)}, + lgcode = {Kadazan-Dusun [cent2100]}, + pages = {288}, + publisher = {Hutchinson & Co}, + title = {The Pagans of North Borneo}, + year = {1929} +} + +@book{williams1965, + author = {Williams, T. R.}, + address = {New York}, + key = {Williams (1965)}, + lgcode = {Kadazan-Dusun [cent2100]}, + title = {The Dusun}, + year = {1965} +} + +@misc{williamsnd, + author = {Williams, T. R.}, + howpublished = {Unpublished field data}, + key = {Williams (nd)}, + lgcode = {Kadazan-Dusun [cent2100]} +} + +@incollection{bachtiar1967, + author = {Bachtiar, H. W.}, + editor = {Koentjaraningrat}, + address = {Ithaca}, + booktitle = {Villages in Indonesia}, + key = {Bachtiar (1967)}, + lgcode = {Minangkabau [mina1268]}, + pages = {348-385}, + title = {Negeri Taran: A. Minangkabau Village Community}, + year = {1967} +} + +@book{josselindejong1952, + author = {Josselin de Jong, P. E. de}, + address = {The Hague}, + key = {Josselin de Jong (1952)}, + lgcode = {Minangkabau [mina1268]}, + title = {Minangkabau and Negri Sembilan}, + year = {1952} +} + +@article{loeb1934, + author = {Loeb, E. M.}, + journal = {American Anthropologist}, + key = {Loeb (1934)}, + lgcode = {Minangkabau [mina1268]}, + pages = {26-56}, + title = {Patrilineal and Matrilineal Organization in Sumatra}, + volume = {36}, + year = {1934} +} + +@book{willinck1915, + author = {Willinck, G. P.}, + address = {Leiden}, + key = {Willinck (1915)}, + lgcode = {Minangkabau [mina1268]}, + title = {Het rechtsleven bij de Minankabau Maleiers}, + year = {1915} +} + +@article{kruyt1923, + author = {Kruyt, A. C.}, + glottolog_ref = {hh:e:Kruyt:Mentawei}, + journal = {Tijd. Taal. Land. Volkenk.}, + key = {Kruyt (1923)}, + lgcode = {Mentaweians [ment1249]}, + pages = {1-188}, + title = {De Mentaweiers}, + volume = {62}, + year = {1923} +} + +@article{loeb1928, + author = {Loeb, E. M.}, + journal = {American Anthropologist}, + key = {Loeb (1928)}, + lgcode = {Mentaweians [ment1249]}, + pages = {408-433}, + title = {Mentawei Social Organization}, + volume = {30}, + year = {1928} +} + +@article{wallace1951, + author = {Wallace, A. F. C.}, + journal = {American Anthropologist}, + key = {Wallace (1951)}, + lgcode = {Mentaweians [ment1249]}, + pages = {370-375}, + title = {Mentaweian Social Organization}, + volume = {53}, + year = {1951} +} + +@book{hagen1908, + author = {Hagen, B.}, + address = {Frankfurt}, + key = {Hagen (1908)}, + lgcode = {Anak Dalam [kubu1239]}, + number = {2}, + pages = {1-269}, + publisher = {Joseph Baer}, + series = {Veröffentlichungen aus dem Städtischen Völker-Museum}, + title = {Die Orang Kubu auf Sumatra}, + year = {1908} +} + +@book{schebesta1928, + author = {Schebesta, P.}, + address = {Leipzig}, + key = {Schebesta (1928)}, + lgcode = {Anak Dalam [kubu1239]}, + title = {Orang-Utan}, + year = {1928} +} + +@article{needham1955, + author = {Needham, R.}, + glottolog_ref = {hh:e:Needham:Punan-Ba}, + journal = {Journ. Malayan Br. Roy. As. Soc.}, + key = {Needham (1955)}, + lgcode = {Punan [puna1275]}, + pages = {24-36}, + title = {Punan Ba}, + volume = {28}, + year = {1955} +} + +@book{chabot1950, + author = {Chabot, H. T.}, + address = {Groningen}, + key = {Chabot (1950)}, + lgcode = {Macassarese [maka1311]}, + title = {Verwantschap, stand en sexe in Zuid-Celebes}, + year = {1950} +} + +@article{hueting1921, + author = {Hueting, A.}, + journal = {Bijdragen tot de Taal-, Land-, en Volkenkunde}, + key = {Hueting (1921)}, + lgcode = {Tobelorese [tobe1252]}, + pages = {217-358; 137-342}, + title = {De Tobeloreezen in hun denken en doen}, + volume = {77; 78}, + year = {1921} +} + +@article{riedel1885, + author = {Riedel, J. G. F.}, + journal = {Zeitschrift für Ethnologie}, + key = {Riedel (1885)}, + lgcode = {Tobelorese [tobe1252]}, + pages = {58-89}, + title = {Galela und Tobeloresen}, + volume = {17}, + year = {1885} +} + +@article{cooley1962a, + author = {Cooley, F. L.}, + journal = {Yale Univ. Asia Studies, Cult. Rep. Ser.}, + key = {Cooley (1962a)}, + lgcode = {Ambonese [ambo1250]}, + pages = {1-94}, + title = {Ambonese Adat}, + volume = {10}, + year = {1962} +} + +@article{cooley1962b, + author = {Cooley, F. L.}, + journal = {Ethnology}, + key = {Cooley (1962b)}, + lgcode = {Ambonese [ambo1250]}, + pages = {102-112}, + title = {Ambonese Kin Groups}, + volume = {1}, + year = {1962} +} + +@incollection{goethals1967, + author = {Goethals, P. R.}, + editor = {Koentjaraningrat}, + address = {Ithaca}, + booktitle = {Villages in Indonesia}, + key = {Goethals (1967)}, + lgcode = {Sumbawanese [sumb1241]}, + pages = {30-62}, + title = {Rarak: A Swidden Village of West Sumbawa}, + year = {1967} +} + +@article{fischer1957a, + author = {Fischer, H. T.}, + journal = {Intern. Arch. Ethnog.}, + key = {Fischer (1957a)}, + lgcode = {Kodi [kodi1247]}, + pages = {1-31}, + title = {Some Notes on Kinship Systems and Relationship Terms of Sumba, Manggarai and South Timor}, + volume = {48}, + year = {1957} +} + +@article{dubois1940, + author = {Du Bois, C.}, + journal = {Asia}, + key = {Du Bois (1940)}, + lgcode = {Alorese [abui1241]}, + pages = {482-486}, + title = {How They Pay Debts in Alor}, + volume = {40}, + year = {1940} +} + +@incollection{dubois1941, + author = {Du Bois, C.}, + editor = {et al., L. Spier}, + address = {Menasha}, + booktitle = {Language, Culture, and Personality}, + key = {Du Bois (1941)}, + lgcode = {Alorese [abui1241]}, + pages = {272-281}, + title = {Attitudes Toward Food and Hunger in Alor}, + year = {1941} +} + +@book{dubois1944, + author = {Du Bois, C.}, + address = {Minneapolis}, + key = {Du Bois (1944)}, + lgcode = {Alorese [abui1241]}, + title = {The People of Alor}, + year = {1944} +} + +@incollection{dubois1945, + author = {Du Bois, C.}, + editor = {Kardiner, A.}, + address = {New York}, + booktitle = {The Psychological Frontiers of Society}, + key = {Du Bois (1945)}, + lgcode = {Alorese [abui1241]}, + pages = {101-145}, + title = {The Alorese}, + year = {1945} +} + +@book{vroklage1952, + author = {Vroklage, B. A. G.}, + address = {Leiden}, + glottolog_ref = {hh:e:Vroklage:Belu}, + key = {Vroklage (1952)}, + lgcode = {Belu [tetu1245]}, + pages = {916}, + publisher = {Leiden}, + title = {Ethnographie der Belu in Zentral-Timor}, + year = {1952} +} + +@article{kruyt1921, + author = {Kruyt, A. C.}, + journal = {Tijd. Ind. Taal. Land. Volkenk.}, + key = {Kruyt (1921)}, + lgcode = {Rotinese [term1237]}, + pages = {266-344}, + title = {DeRoteneezen}, + volume = {60}, + year = {1921} +} + +@article{wetering1925, + author = {Wetering, F. H. van de.}, + journal = {Tijd. Ind. Taal. Land. Volkenk.}, + key = {Wetering (1925)}, + lgcode = {Rotinese [term1237]}, + pages = {1-37, 589-667}, + title = {Het huwelijk op Rote}, + volume = {65}, + year = {1925} +} + +@book{adrianiandkruijt1912, + author = {Adriani, N. and Kruijt, A. C.}, + address = {Batavia}, + glottolog_ref = {mpieva:Adriani19121914DeBarees}, + howpublished = {reprinted 1950-51 Amsterdam}, + key = {Adriani and Kruijt (1912)}, + lgcode = {Toradja [pamo1252]}, + publisher = {Batavia: Landesdrukkerij}, + title = {De Bare'e-sprekende Toradja's van Midden-Celebes}, + year = {1912} +} + +@book{downs1956, + author = {Downs, R. E.}, + address = {The Hague}, + key = {Downs (1956)}, + lgcode = {Toradja [pamo1252]}, + title = {The Religion of the Bare'e-speaking Toradja}, + year = {1956} +} + +@article{drabbe1940, + author = {Drabbe, P.}, + journal = {Int. Arch. Ethnog.}, + key = {Drabbe (1940)}, + lgcode = {Tanimbarese [sela1259], Toradja [pamo1252]}, + note = {Supplement}, + pages = {1-432}, + title = {Het leven van den Tanembarees}, + volume = {38}, + year = {1940} +} + +@book{vatter1932, + author = {Vatter, E.}, + address = {Leipzig}, + key = {Vatter (1932)}, + lgcode = {Ili-Mandiri [lama1277]}, + title = {Ata Kiwan}, + year = {1932} +} + +@book{pleyte1893, + author = {Pleyte, C. M.}, + key = {Pleyte (1893)}, + lgcode = {Kei [keii1239]}, + title = {Ethnographische beschrijving der Kei-Eilanden}, + year = {1893} +} + +@article{nooteboom1940, + author = {Nooteboom, C.}, + journal = {Verh. Kon. Inst. Taal-, Land- en Volkenkunde}, + key = {Nooteboom (1940)}, + lgcode = {Sumbanese [kamb1299]}, + pages = {1-182}, + title = {Oost-Soemba}, + volume = {3}, + year = {1940} +} + +@misc{spencerandgillen1927, + author = {Spencer, B. and Gillen, F. J.}, + address = {London}, + key = {Spencer and Gillen (1927)}, + lgcode = {Northern Aranda [east2379]}, + publisher = {MacMillan}, + title = {The Aruntas: A Study of Stone Age People}, + year = {1927} +} + +@book{strehlow190711, + author = {Strehlow, C.}, + address = {Frankfurt}, + key = {Strehlow (1907-11)}, + lgcode = {Northern Aranda [east2379]}, + title = {Die Aranda und Loritja Stamme in Zentral-Australien}, + year = {1907-11} +} + +@book{meggitt1962a, + author = {Meggitt, M. J.}, + address = {Sydney}, + key = {Meggitt (1962a)}, + lgcode = {Walbiri [warl1254]}, + title = {Desert People}, + year = {1962} +} + +@book{hiatt1965, + author = {Hiatt, L.R.}, + address = {Canberra}, + key = {Hiatt (1965)}, + lgcode = {Gidjingali [gunn1248]}, + publisher = {Australian National University}, + title = {Kinship and Conflict: A Study of an Aboriginal Community in Northern Arnhem Land}, + year = {1965} +} + +@article{sharp1934, + author = {Sharp, R. L.}, + journal = {Oceania}, + key = {Sharp (1934)}, + lgcode = {Yir Yoront [jirj1239]}, + pages = {404-431}, + title = {The Social Organization of the Yir-Yoront Tribe, Cape York Peninsula, Part I: Kinship and the Family}, + volume = {4}, + year = {1934} +} + +@book{rose1960, + author = {Rose, F. G. G.}, + address = {Berlin}, + key = {Rose (1960)}, + lgcode = {Anindilyagwa [anin1240]}, + publisher = {Akademie-Verlag}, + title = {Classification of Kin, Age Structure, and Marriage Amongst the Groote Eylandt Aborigines}, + year = {1960} +} + +@article{berndt1955, + author = {Berndt, R. M.}, + journal = {American Anthropologist}, + key = {Berndt (1955)}, + lgcode = {Yolngu, Dhuwal [dhuw1249]}, + pages = {84-106}, + title = {"Murngin" (Wulamba) Social Organization}, + volume = {57}, + year = {1955} +} + +@article{elkin1950, + author = {Elkin, A.}, + journal = {Southwestern Journal of Anthropology}, + key = {Elkin (1950)}, + lgcode = {Yolngu, Dhuwal [dhuw1249]}, + pages = {1-20}, + title = {The Complexity of Social Organization in Arnhem Land}, + volume = {6}, + year = {1950} +} + +@book{warner1937, + author = {Warner, W. L.}, + address = {New York}, + key = {Warner (1937)}, + lgcode = {Yolngu, Dhuwal [dhuw1249]}, + title = {A Black Civilization}, + year = {1937} +} + +@article{basedow1913, + author = {Basedow, H.}, + journal = {Journal of the Anthropology Institute}, + key = {Basedow (1913)}, + lgcode = {Tiwi [tiwi1244]}, + pages = {291-323}, + title = {Notes on the Natures of Bathurst Island}, + volume = {48}, + year = {1913} +} + +@phdthesis{goodale1959, + author = {Goodale, J. C.}, + key = {Goodale (1959)}, + lgcode = {Tiwi [tiwi1244]}, + school = {University of Pennsylvania}, + title = {The Tiwi Women of Melville Island}, + year = {1959} +} + +@article{goodale1960, + author = {Goodale, J. C.}, + journal = {Expedition}, + key = {Goodale (1960)}, + lgcode = {Tiwi [tiwi1244]}, + number = {4}, + pages = {4-13}, + title = {Sketches of Tiwi Children}, + volume = {2}, + year = {1960} +} + +@article{goodale1962, + author = {Goodale, J. C.}, + journal = {Ethnology}, + key = {Goodale (1962)}, + lgcode = {Tiwi [tiwi1244]}, + pages = {452-466}, + title = {Marriage Contacts among the Tiwi}, + volume = {1}, + year = {1962} +} + +@book{goodale1971, + author = {Goodale, J. C.}, + address = {Seattle}, + key = {Goodale (1971)}, + lgcode = {Tiwi [tiwi1244]}, + publisher = {University of Washington Press}, + title = {Tiwi Wives. A Study of the Women of Melville Island, North Australia}, + year = {1971} +} + +@book{hartandpilling1960, + author = {Hart, C. W. M. and Pilling, A. R.}, + address = {New York}, + key = {Hart and Pilling (1960)}, + lgcode = {Tiwi [tiwi1244]}, + publisher = {Holt, Rinehart and Winston}, + title = {The Tiwi of North Australia}, + year = {1960} +} + +@book{mountford1958, + author = {Mountford, C. P.}, + address = {London}, + key = {Mountford (1958)}, + lgcode = {Tiwi [tiwi1244]}, + title = {The Tiwi, Their Arts and Ceremony}, + year = {1958} +} + +@phdthesis{pilling1957, + author = {Pilling, A. R.}, + key = {Pilling (1957)}, + lgcode = {Tiwi [tiwi1244]}, + school = {University of California at Berkeley}, + title = {Law and Feud in an Aboriginal Society of North Australia}, + year = {1957} +} + +@article{berndt1953, + author = {Berndt, R. M.}, + journal = {Anthropos}, + key = {Berndt (1953)}, + lgcode = {Diyari [dier1241]}, + pages = {171-201}, + title = {A Day in the Life of a Dieri Man Before Alien Contact}, + volume = {48}, + year = {1953} +} + +@article{elkin1940a, + author = {Elkin, A. P.}, + journal = {Oceania}, + key = {Elkin (1940a)}, + lgcode = {Diyari [dier1241]}, + pages = {419-452}, + title = {Kinship in South Australia}, + volume = {8}, + year = {1940} +} + +@book{gason1874, + author = {Gason, S.}, + key = {Gason (1874)}, + lgcode = {Diyari [dier1241]}, + note = {Reprinted in J. Woods, ed., The Native Tribes of South Australia, Adelaide, 1879.}, + title = {The Dieri Tribe}, + year = {1874} +} + +@article{howitt1891, + author = {Howitt, A. W.}, + glottolog_ref = {hh:e:Howitt:Dieri}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Howitt (1891)}, + lgcode = {Diyari [dier1241]}, + pages = {30-104}, + title = {The Dieri and Other Kindred Tribes of Central Australia}, + volume = {20}, + year = {1891} +} + +@book{howitt1904, + author = {Howitt, A. W.}, + address = {London}, + key = {Howitt (1904)}, + lgcode = {Diyari [dier1241], Kurnai [gana1278], Ngiyambaa [wang1291]}, + publisher = {MacMillan}, + title = {The Native Tribes of Sout-East Australia}, + year = {1904} +} + +@article{radcliffebrown1913, + author = {Radcliffe-Brown, A. R.}, + glottolog_ref = {hh:e:Radcliffe-Brown:WAustralia}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Radcliffe-Brown (1913)}, + lgcode = {Kariyarra [kari1304]}, + pages = {143-194}, + title = {Three Tribes of Western Australia}, + volume = {43}, + year = {1913} +} + +@book{radcliffebrown1930, + author = {Radcliffe-Brown, A. R.}, + address = {Sydney}, + key = {Radcliffe-Brown (1930)}, + lgcode = {Kariyarra [kari1304]}, + series = {Oceania Monograph}, + title = {The Social Organization of Australian Tribes}, + volume = {1}, + year = {1930} +} + +@article{romneyandepling1958, + author = {Romney, A. K. and Epling, P. J.}, + journal = {American Anthropologist}, + key = {Romney and Epling (1958)}, + lgcode = {Kariyarra [kari1304]}, + pages = {59-74}, + title = {A Simplified Model of Kariera Kinship}, + volume = {60}, + year = {1958} +} + +@article{mcconnel1930, + author = {McConnel, U.}, + journal = {Oceania}, + key = {McConnel (1930)}, + lgcode = {Wikmunkan [wikm1247]}, + pages = {99-104, 181-205}, + title = {The Wik-Munkan Tribe}, + volume = {1}, + year = {1930} +} + +@article{mcconnel1934, + author = {McConnel, U.}, + journal = {Oceania}, + key = {McConnel (1934)}, + lgcode = {Wikmunkan [wikm1247]}, + pages = {310-367}, + title = {The Wik-Munkan and Allied Tribes of Cape York Peninsula}, + volume = {4}, + year = {1934} +} + +@article{mcconnel1940, + author = {McConnel, U.}, + journal = {Oceania}, + key = {McConnel (1940)}, + lgcode = {Wikmunkan [wikm1247]}, + pages = {434-455}, + title = {Social Organization of the Tribes of Cape York Peninsula}, + volume = {10}, + year = {1940} +} + +@article{needham1962, + author = {Needham, R.}, + journal = {Ethnology}, + key = {Needham (1962)}, + lgcode = {Wikmunkan [wikm1247]}, + pages = {223-264}, + title = {Genealogy and Category in Wikmunkan Society}, + volume = {1}, + year = {1962} +} + +@article{thomson1935, + author = {Thomson, D. F.}, + glottolog_ref = {ozbib:5675}, + journal = {American Anthropologist}, + key = {Thomson (1935)}, + lgcode = {Wikmunkan [wikm1247]}, + pages = {460-490}, + title = {The Joking Relationship and Organized Obscenity in North Queensland}, + volume = {37}, + year = {1935} +} + +@article{thomson1936, + author = {Thomson, D. F.}, + journal = {American Anthropologist}, + key = {Thomson (1936)}, + lgcode = {Wikmunkan [wikm1247]}, + pages = {374-393}, + title = {Fatherhood in the Wik Monkan Tribe}, + volume = {38}, + year = {1936} +} + +@book{falkenberg1962, + author = {Falkenberg, J.}, + address = {Oslo}, + key = {Falkenberg (1962)}, + lgcode = {Murriny Patha [murr1258]}, + title = {Kin and Totem}, + year = {1962} +} + +@book{roth1890, + author = {Roth, H. L.}, + address = {London}, + glottolog_ref = {ozbib:4903}, + key = {Roth (1890)}, + lgcode = {Tasmanians (northwestern) [port1278]}, + publisher = {King}, + title = {The Aborigines of Tasmania}, + year = {1890} +} + +@article{radcliffebrown1923, + author = {Radcliffe-Brown, A. R.}, + glottolog_ref = {ozbib:4703}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Radcliffe-Brown (1923)}, + lgcode = {Ngiyambaa [wang1291]}, + pages = {424-446}, + title = {Notes on the Social Organization of Australian Tribes}, + volume = {53}, + year = {1923} +} + +@article{pospisil1958, + author = {Pospisil, L.}, + journal = {Yale University Publications in Anthropology,}, + key = {Pospisil (1958)}, + lgcode = {Mee [ekar1243]}, + pages = {1-296}, + title = {Kapauku Papuans and Their Law}, + volume = {54}, + year = {1958} +} + +@article{pospisil1960, + author = {Pospisil, L.}, + journal = {Oceania}, + key = {Pospisil (1960)}, + lgcode = {Mee [ekar1243]}, + pages = {188-205}, + title = {the Kapauku Papuans and Their Kinship Organization}, + volume = {30}, + year = {1960} +} + +@article{pospisil1963a, + author = {Pospisil, L.}, + journal = {Yale University Publications in Anthropology,}, + key = {Pospisil (1963a)}, + lgcode = {Mee [ekar1243]}, + pages = {1-502}, + title = {Kapauku Papuan Economy}, + volume = {67}, + year = {1963} +} + +@book{pospisil1963b, + author = {Pospisil, L.}, + address = {New York}, + glottolog_ref = {hh:e:Pospisil:Kapauku}, + key = {Pospisil (1963b)}, + lgcode = {Mee [ekar1243]}, + pages = {130}, + publisher = {New York: Rineheart and Winston}, + title = {The Kapauku Papuans of West New Guinea}, + year = {1963} +} + +@book{belshaw1957, + author = {Belshaw, C. S.}, + address = {London}, + key = {Belshaw (1957)}, + lgcode = {Motu [motu1246]}, + title = {The Great Village: The Economic and Social Welfare of Hanuabada, an Urban Community in Papua}, + year = {1957} +} + +@article{groves1963, + author = {Groves, M.}, + journal = {Ethnology}, + key = {Groves (1963)}, + lgcode = {Motu [motu1246]}, + pages = {15-30}, + title = {Western Motu Descent Groups}, + volume = {2}, + year = {1963} +} + +@misc{groves1964, + author = {Groves, M.}, + howpublished = {Personal communication}, + key = {Groves (1964)}, + lgcode = {Motu [motu1246]}, + year = {1964} +} + +@book{bowers1964, + author = {Bowers, N.}, + address = {Lomax}, + key = {Bowers (1964)}, + lgcode = {Kakoli [umbu1258]}, + title = {Personal communication to A}, + year = {1964} +} + +@book{whiting1941, + author = {Whiting, J. W. M.}, + address = {New Haven}, + key = {Whiting (1941)}, + lgcode = {Kwoma [kwom1262]}, + title = {Becoming a Kwoma}, + year = {1941} +} + +@article{whitingandreed1938, + author = {Whiting, J. W. M. and Reed., S. W.}, + journal = {Oceania}, + key = {Whiting and Reed (1938)}, + lgcode = {Kwoma [kwom1262]}, + pages = {170-216}, + title = {Kwoma Culture}, + volume = {9}, + year = {1938} +} + +@book{landtman1927, + author = {Landtman, G.}, + address = {London}, + glottolog_ref = {hh:e:Landtman:Kiwai}, + key = {Landtman (1927)}, + lgcode = {Kiwai [sout2949]}, + pages = {485}, + publisher = {London: MacMillan}, + title = {The Kiwai Papuans of British New Guinea}, + year = {1927} +} + +@book{haddon1908, + editor = {Haddon, A. C.}, + address = {Cambridge}, + key = {Haddon (1908)}, + lgcode = {Miriam [meri1244]}, + title = {Reports of the Cambridge Anthropological Expedition to Torres Straits, v. 6}, + year = {1908} +} + +@article{kaberry1941, + author = {Kaberry, P. M.}, + journal = {Oceania}, + key = {Kaberry (1941)}, + lgcode = {Abelam [ambu1247]}, + pages = {233-257}, + title = {The Abelam Tribe}, + volume = {11}, + year = {1941} +} + +@article{williams194041, + author = {Williams, F. E.}, + journal = {Oceania}, + key = {Williams (1940-41)}, + lgcode = {Kutubu [foii1241]}, + pages = {121-257, 259-294, 374-401; 49-74, 134-154}, + title = {Native of Lake Kutubu, Papua}, + volume = {11; 12}, + year = {1940-41} +} + +@article{salisbury1956, + author = {Salisbury, R. F.}, + journal = {American Anthropologist}, + key = {Salisbury (1956)}, + lgcode = {Siane [sian1257]}, + pages = {639-655}, + title = {Asymmetrical Marriage Systems}, + volume = {58}, + year = {1956} +} + +@book{salisbury1962, + author = {Salisbury, R. F.}, + address = {London and New York}, + key = {Salisbury (1962)}, + lgcode = {Siane [sian1257]}, + title = {From Stone to Steel: Economic Consequences of a Technological Change in New Guinea}, + year = {1962} +} + +@book{serpenti1965, + author = {Serpenti, L. M.}, + address = {Assen}, + key = {Serpenti (1965)}, + lgcode = {Kimam [kima1246]}, + title = {Cultivators in the Swamps}, + year = {1965} +} + +@book{vanbaal1966, + author = {Van Baal, J.}, + address = {The Hague}, + key = {Van Baal (1966)}, + lgcode = {Marind-Amin [nucl1622]}, + title = {Dema: Description and Analysis of Marind-amin Culture}, + year = {1966} +} + +@article{schmitz1960, + author = {Schmitz, C. A.}, + journal = {Kolner Ethnol. Mitt.}, + key = {Schmitz (1960)}, + lgcode = {Wantoat [want1252]}, + pages = {1-226}, + title = {Beitrage zur Ethnographie des Wantoat Tales}, + volume = {1}, + year = {1960} +} + +@book{seligmann1910, + author = {Seligmann, C. G.}, + address = {Cambridge}, + glottolog_ref = {hh:he:Seligmann:Melanesians}, + key = {Seligmann (1910)}, + lgcode = {Koita [koit1244], Mekeo [meke1243]}, + pages = {948}, + publisher = {Cambridge: Cambridge University Press}, + title = {The Melanesians of British New Guinea}, + year = {1910} +} + +@article{malinowski1916, + author = {Malinowski, B.}, + journal = {Trans. Proc. Roy. Soc. South Australia}, + key = {Malinowski (1916)}, + lgcode = {Mailu [mail1248]}, + pages = {494-706}, + title = {The Natives of Mailu}, + volume = {39}, + year = {1916} +} + +@article{belshaw1951, + author = {Belshaw, C. S.}, + journal = {Oceania}, + key = {Belshaw (1951)}, + lgcode = {Mekeo [meke1243]}, + pages = {1-23}, + title = {Recent History of Mekeo Society}, + volume = {22}, + year = {1951} +} + +@article{williamson1913, + author = {Williamson, R. W.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Williamson (1913)}, + lgcode = {Mekeo [meke1243]}, + pages = {268-290}, + title = {Some Unrecorded Customs of the Mekeo People}, + volume = {43}, + year = {1913} +} + +@book{schoorl1957, + author = {Schoorl, J. W.}, + address = {Leiden}, + glottolog_ref = {hh:e:Schoorl:Moejoe}, + key = {Schoorl (1957)}, + lgcode = {Muju [sout2940]}, + pages = {298}, + title = {Kultuur en kulturveranderingen in het Moejoe-gebied}, + year = {1957} +} + +@article{chalmers1890, + author = {Chalmers, J.}, + journal = {Rep. Austr. Assoc. Adv. Sci.}, + key = {Chalmers (1890)}, + lgcode = {Koiari [gras1249]}, + pages = {ii, 311-323}, + title = {Toaripi and Koiari Tribes}, + volume = {2}, + year = {1890} +} + +@article{lawes1879, + author = {Lawes, W. G.}, + glottolog_ref = {hh:e:Lawes:Koiari}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Lawes (1879)}, + lgcode = {Koiari [gras1249]}, + pages = {369-377}, + title = {Ethnological Notes on the Motu, Koitapu, and Koiari Tribes of New Guinea}, + volume = {8}, + year = {1879} +} + +@book{williamson1912, + author = {Williamson, R. W.}, + address = {London}, + key = {Williamson (1912)}, + lgcode = {Mafulu [fuyu1242]}, + title = {The Mafulu}, + year = {1912} +} + +@article{read1946, + author = {Read, K. E.}, + journal = {Oceania}, + key = {Read (1946)}, + lgcode = {Ngarawapum [adze1240]}, + pages = {93-118}, + title = {Social Organization in the Markham Valley}, + volume = {17}, + year = {1946} +} + +@article{read1950, + author = {Read, K. E.}, + journal = {Oceania}, + key = {Read (1950)}, + lgcode = {Ngarawapum [adze1240]}, + pages = {183-223}, + title = {The Political System of the Ngarawapum}, + volume = {20}, + year = {1950} +} + +@article{thurnwald1916, + author = {Thurnwald, R.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Thurnwald (1916)}, + lgcode = {Banaro [bana1292]}, + pages = {251-391}, + title = {Banaro Society}, + volume = {3}, + year = {1916} +} + +@article{hogbin194647, + author = {Hogbin, H. I.}, + journal = {Oceania}, + key = {Hogbin (1946-47)}, + lgcode = {Busama [buga1250]}, + title = {Sex and Marriage in Busama}, + volume = {17-18}, + year = {1946-47} +} + +@article{hogbin1946b, + author = {Hogbin, H. I.}, + journal = {Oceania}, + key = {Hogbin (1946b)}, + lgcode = {Busama [buga1250]}, + pages = {38-66}, + title = {Local Government for New Guinea}, + volume = {17}, + year = {1946} +} + +@article{wedgwood1934, + author = {Wedgwood, C.}, + journal = {Oceania}, + key = {Wedgwood (1934)}, + lgcode = {Manam [mana1295]}, + pages = {373-403}, + title = {Report on Research in Manam Island}, + year = {1934} +} + +@misc{wedgwood1937, + author = {Wedgwood, C.}, + journal = {Oceania}, + key = {Wedgwood (1937)}, + lgcode = {Manam [mana1295]}, + pages = {401-428; 170-192}, + title = {Women in Manam}, + volume = {7; 8}, + year = {1937} +} + +@book{mead1935, + author = {Mead, M.}, + address = {New York}, + key = {Mead (1935)}, + lgcode = {Arapesh [buki1249]}, + title = {Sex and Temperament in Three Primitive Societies}, + year = {1935} +} + +@book{mead1937c, + editor = {Mead, Margaret}, + address = {New York}, + key = {Mead (1937c)}, + lgcode = {American Samoans [samo1305], Arapesh [buki1249], Santee [dako1258]}, + publisher = {McGraw-Hill}, + title = {Cooperation and Competition among primitive peoples}, + year = {1937} +} + +@article{mead194049, + author = {Mead, M.}, + journal = {Anth. Pap. Amer. Mus. Nat. Hist.}, + key = {Mead (1940-49)}, + lgcode = {Arapesh [buki1249]}, + pages = {139-349; 317-451; 163-419; 289-390}, + title = {The Mountain Arapesh}, + volume = {36; 37; 40; 41}, + year = {1940-49} +} + +@incollection{mead1950a, + author = {Mead, M.}, + address = {New York}, + booktitle = {Sex and Temperament in Three Primitive Societies}, + key = {Mead (1950a)}, + lgcode = {Arapesh [buki1249]}, + pages = {15-118}, + series = {The New American Library}, + title = {The mountain dwelling Arapesh}, + year = {1950} +} + +@book{mead1950b, + author = {Mead, Margaret}, + address = {New York}, + key = {Mead (1950b)}, + lgcode = {American Samoans [samo1305], Arapesh [buki1249]}, + publisher = {William Morrow & Co.}, + title = {Male and female: a study of the sexes in a changing world}, + year = {1950} +} + +@book{pouwer1955, + author = {Pouwer, J.}, + address = {'s-Gravenhage}, + key = {Pouwer (1955)}, + lgcode = {Mimika [kamo1255]}, + title = {Enkele aspecten van de Mimika-cultur}, + year = {1955} +} + +@book{berndt1962, + author = {Berndt, R. M.}, + address = {Chicago}, + key = {Berndt (1962)}, + lgcode = {Fore [fore1270]}, + title = {Excess and Restraint}, + year = {1962} +} + +@article{groves1934, + author = {Groves, W. C.}, + journal = {Oceania}, + key = {Groves (1934)}, + lgcode = {Sio [sioo1240]}, + pages = {43-63}, + title = {The Natives of Sio Island}, + volume = {5}, + year = {1934} +} + +@book{harding1967, + author = {Harding, T. G.}, + address = {Seattle}, + key = {Harding (1967)}, + lgcode = {Sio [sioo1240]}, + title = {Voyagers of the Vitiaz Strait}, + year = {1967} +} + +@incollection{oosterwal1967, + author = {Oosterwal, G.}, + editor = {Koentjaraningrat}, + address = {Ithaca}, + booktitle = {Villages in Indonesia}, + key = {Oosterwal (1967)}, + lgcode = {Soromadja [nucl1595]}, + pages = {157-188}, + title = {Muremarew: A Dual Organized Village on the Mamberamo}, + year = {1967} +} + +@article{koentjaraningrat1966, + author = {Koentjaraningrat.}, + journal = {Ethnology}, + key = {Koentjaraningrat (1966)}, + lgcode = {Bgu [bong1287]}, + pages = {233-243}, + title = {Bride-Price and Adoption in the Kinship Relations of the Bgu}, + volume = {5}, + year = {1966} +} + +@article{bateson1932, + author = {Bateson, G.}, + journal = {Oceania}, + key = {Bateson (1932)}, + lgcode = {Iatmul [iatm1242]}, + pages = {245-291, 401-451}, + title = {Social Structure of the Iatmul People}, + volume = {2}, + year = {1932} +} + +@book{bateson1936, + author = {Bateson, G.}, + address = {Cambridge}, + glottolog_ref = {hh:e:Bateson:Naven}, + key = {Bateson (1936)}, + lgcode = {Iatmul [iatm1242]}, + pages = {312}, + publisher = {Cambridge University Press}, + title = {Naven}, + year = {1936} +} + +@book{vanderleeden1956, + author = {Van der Leeden, A. C.}, + address = {Leiden}, + glottolog_ref = {hh:he:vanderLeeden:Sarmi}, + key = {Van der Leeden (1956)}, + lgcode = {Samarokena [sama1240]}, + title = {Hoofdtrekken der sociale struktuur in het westelijke binnenland van Sarmi}, + year = {1956} +} + +@article{pouwer1964, + author = {Pouwer, J.}, + editor = {Watson, J. B.}, + journal = {American Anthropologist}, + key = {Pouwer (1964)}, + lgcode = {Star Mountain [ngal1298]}, + number = {iv, pt 2.}, + pages = {133-161}, + title = {A Social System in the Star Mountains New Guinea: The Central Highlands}, + volume = {66}, + year = {1964} +} + +@phdthesis{heider1965, + author = {Heider, K. G.}, + key = {Heider (1965)}, + lgcode = {Dani [midg1235]}, + school = {Harvard University.}, + title = {The Dugum Dani}, + year = {1965} +} + +@misc{heider1967, + author = {Heider, K. G.}, + howpublished = {Personal communication}, + key = {Heider (1967)}, + lgcode = {Dani [midg1235]}, + year = {1967} +} + +@book{williams1940, + author = {Williams, F. E.}, + address = {Oxford}, + key = {Williams (1940)}, + lgcode = {Elema [orok1267]}, + title = {Drama of Orokolo: The Social and Ceremonial Life of the Elema}, + year = {1940} +} + +@article{hogbin1935, + author = {Hogbin, Ian.}, + journal = {Oceania}, + key = {Hogbin (1935)}, + lgcode = {Wogeo [woge1237]}, + pages = {308-37}, + title = {Native culture of Wogeo}, + volume = {5}, + year = {1935} +} + +@article{hogbin193839, + author = {Hogbin, H. I.}, + journal = {Oceania}, + key = {Hogbin (1938-39)}, + lgcode = {Wogeo [woge1237]}, + pages = {127-151, 286-325}, + title = {Tillage and Collection}, + volume = {9}, + year = {1938-39} +} + +@article{hogbin1943, + author = {Hogbin, H. I.}, + journal = {Oceania}, + key = {Hogbin (1943)}, + lgcode = {Wogeo [woge1237]}, + pages = {285-309}, + title = {A New Guinea Infancy}, + volume = {13}, + year = {1943} +} + +@article{hogbin1945, + author = {Hogbin, H. I.}, + journal = {Oceania}, + key = {Hogbin (1945)}, + lgcode = {Wogeo [woge1237]}, + pages = {324-352}, + title = {Marriage in Wogeo}, + volume = {15}, + year = {1945} +} + +@article{hogbin1946a, + author = {Hogbin, H. I.}, + journal = {Oceania}, + key = {Hogbin (1946a)}, + lgcode = {Wogeo [woge1237]}, + pages = {275-296}, + title = {A New Guinea Childhood}, + volume = {16}, + year = {1946} +} + +@article{hogbin1946c, + author = {Hogbin, H. I.}, + journal = {Oceania}, + key = {Hogbin (1946c)}, + lgcode = {Wogeo [woge1237]}, + pages = {185-209}, + title = {Puberty to Marriage}, + volume = {16}, + year = {1946} +} + +@book{williams1936, + author = {Williams, F. E.}, + address = {Oxford}, + glottolog_ref = {hh:he:Williams:Trans-Fly}, + key = {Williams (1936)}, + lgcode = {Keraki [namb1293]}, + pages = {560}, + publisher = {Clarendon Press}, + title = {Papuans of the Trans-Fly}, + year = {1936} +} + +@book{held1947, + author = {Held, G. J.}, + address = {Leiden}, + key = {Held (1947)}, + lgcode = {Waropen [waro1242]}, + title = {Papoea's van Waropen}, + year = {1947} +} + +@article{elkin1953, + author = {Elkin, A. P.}, + journal = {Oceania}, + key = {Elkin (1953)}, + lgcode = {Enga [enga1252]}, + pages = {161-201}, + title = {Delayed Exchange in the Wabag Sub-District}, + volume = {23}, + year = {1953} +} + +@article{goodenough1953, + author = {Goodenough, W. H.}, + journal = {Southw. Journ. Anth.}, + key = {Goodenough (1953)}, + lgcode = {Enga [enga1252]}, + pages = {29-44}, + title = {Ethnographic Notes on the Mae People}, + volume = {9}, + year = {1953} +} + +@article{meggitt1956, + author = {Meggitt, M. J.}, + journal = {Oceania}, + key = {Meggitt (1956)}, + lgcode = {Enga [enga1252]}, + pages = {90-135}, + title = {The Valleys of the Upper Wage and Lai Rivers}, + volume = {27}, + year = {1956} +} + +@article{meggitt1958, + author = {Meggitt, M. J.}, + journal = {Oceania}, + key = {Meggitt (1958)}, + lgcode = {Enga [enga1252]}, + pages = {253-330}, + title = {The Enga of the New Guinea Highlands}, + volume = {28}, + year = {1958} +} + +@article{meggitt1962b, + author = {Meggitt, M. J.}, + journal = {Ethnology}, + key = {Meggitt (1962b)}, + lgcode = {Enga [enga1252]}, + pages = {258-165}, + title = {Growth and Decline of Agnatic Descent Groups Among the Mae Enga}, + volume = {1}, + year = {1962} +} + +@incollection{meggitt1965a, + author = {Meggitt, M. J.}, + editor = {Lawrence, P. and Meggitt, M. J.}, + address = {Melbourne}, + booktitle = {Gods, Ghosts and Men in Melanesia}, + key = {Meggitt (1965a)}, + lgcode = {Enga [enga1252]}, + title = {Mac-Enga Religion}, + year = {1965} +} + +@book{meggitt1965b, + author = {Meggitt, M. J.}, + address = {Edinburgh}, + key = {Meggitt (1965b)}, + lgcode = {Enga [enga1252]}, + title = {The Lineage System of the Mae Enga}, + year = {1965} +} + +@misc{meggitt1967, + author = {Meggitt, M. J.}, + howpublished = {Personal communication}, + key = {Meggitt (1967)}, + lgcode = {Enga [enga1252]}, + year = {1967} +} + +@book{holmes1924, + author = {Holmes, J. H.}, + address = {New York}, + key = {Holmes (1924)}, + lgcode = {Purari [pura1257]}, + title = {In Primitive New Guinea}, + year = {1924} +} + +@book{maher1961, + author = {Maher, R. F.}, + address = {Madison}, + key = {Maher (1961)}, + lgcode = {Purari [pura1257]}, + title = {New Men of Papua}, + year = {1961} +} + +@article{maher1967, + author = {Maher, R. F.}, + journal = {Ethnology}, + key = {Maher (1967)}, + lgcode = {Purari [pura1257]}, + pages = {309-331}, + title = {From Cannibal Raid to Copra Kompani: Changing Patterns of Koriki Politics}, + volume = {6}, + year = {1967} +} + +@book{williams1924, + author = {Williams, F. E.}, + key = {Williams (1924)}, + lgcode = {Purari [pura1257]}, + series = {Terr. Papua Anth. Rep.}, + title = {Natives of the Purari Delta}, + volume = {5}, + year = {1924} +} + +@article{reay1953, + author = {Reay, Marie.}, + journal = {Oceania}, + key = {Reay (1953)}, + lgcode = {Orokaiva [orok1269]}, + pages = {110-118}, + title = {Social Control amongst the Orokaiva}, + volume = {24}, + year = {1953} +} + +@book{waddellandkrinks1968, + author = {Waddell, E. W. and Krinks, P. A.}, + key = {Waddell and Krinks (1968)}, + lgcode = {Orokaiva [orok1269]}, + series = {New Guinea Research Bulletin}, + title = {The Organization of Production and Distribution Among the Orokaiva}, + volume = {24}, + year = {1968} +} + +@book{williams1928, + author = {Williams, F. E.}, + address = {London}, + key = {Williams (1928)}, + lgcode = {Orokaiva [orok1269]}, + title = {Orokaiva Magic}, + year = {1928} +} + +@book{williams1930, + author = {Williams, F. E.}, + address = {London}, + key = {Williams (1930)}, + lgcode = {Orokaiva [orok1269]}, + title = {Orokaiva Society}, + year = {1930} +} + +@book{barnett1949, + author = {Barnett, H. G.}, + address = {Eugene}, + key = {Barnett (1949)}, + lgcode = {Palauans [pala1344]}, + title = {Palauan Society}, + year = {1949} +} + +@book{barnett1960, + author = {Barnett, H. G.}, + address = {New York}, + key = {Barnett (1960)}, + lgcode = {Palauans [pala1344]}, + title = {Being a Palauan}, + year = {1960} +} + +@article{force1960, + author = {Force, R. W.}, + journal = {Fieldiana, Anthropology}, + key = {Force (1960)}, + lgcode = {Palauans [pala1344]}, + pages = {1-211}, + title = {Leadership and Cultural Change in Palau}, + volume = {50}, + year = {1960} +} + +@book{keate1788, + author = {Keate, G.}, + address = {London}, + key = {Keate (1788)}, + lgcode = {Palauans [pala1344]}, + title = {An Account of the Pelew Islands}, + year = {1788} +} + +@book{kramer1929, + author = {Kramer, A.}, + editor = {Thilenius, G.}, + address = {Hamburg}, + key = {Kramer (1929)}, + lgcode = {Palauans [pala1344], Trukese [chuu1238]}, + series = {Ergebnisse aus der Südsee-Expedition 1908-1910}, + title = {Palau}, + volume = {5 vols., B, III}, + year = {1929} +} + +@article{kubary1873, + author = {Kubary, J. S.}, + address = {Hamburg}, + journal = {Journal des Museum Godeffroy}, + key = {Kubary (1873)}, + lgcode = {Palauans [pala1344]}, + note = {Von dem Gründer des Museums, dem Handelsherrn J.C.Godeffroy in Hamburg, wurde Herr J.Kubary nach verschiedenen Inseln der Südsee gesendet, um Naturalien für das Museum Godeffroy zu sammeln. Zu diesem Zwecke kam er auch im Jahre 1871 nach den Palau-Inseln, wo er sich in diesem Augenblicke noch befindet. Von dort aus hat er die Berichte über seine Erlebnisse auf diesen Inseln an das Museum eingesendet und ausserdem auch verschiedene Abhandlungen, die sich sämtlich auf diese Inseln und deren Bewohner beziehen.}, + pages = {177-238}, + title = {Die Palau-Inseln in der Südsee}, + volume = {I}, + year = {1873} +} + +@incollection{kubary1900, + author = {Kubary, J. S.}, + editor = {Bastian, A.}, + address = {Berlin}, + booktitle = {Die Mikronesischen Kolonien aus ethnologischen Gesichtspunkten}, + key = {Kubary (1900)}, + lgcode = {Palauans [pala1344]}, + pages = {1-36}, + title = {Die Verbrechen und das Strafverfahren auf den Pelau-Inseln}, + volume = {2}, + year = {1900} +} + +@misc{murdocketal1944b, + author = {Murdock, G. P. and Ford, C. S. and Whiting, J. W. M.}, + address = {Washington}, + key = {Murdock et al. (1944b)}, + lgcode = {Palauans [pala1344], Yapese [yape1248]}, + number = {7}, + pages = {1-222}, + series = {Civil Affairs Handbook OPNAV 50-E}, + title = {West Caroline Islands}, + year = {1944} +} + +@book{semper1873, + author = {Semper, K.}, + address = {Leipzig}, + key = {Semper (1873)}, + lgcode = {Palauans [pala1344]}, + note = {Semper stayed in Palau in 1861}, + title = {Die Paulau-Inseln im Stillen Ozean}, + year = {1873} +} + +@misc{tolertonandrauch1949, + author = {Tolerton, B. and Rauch, J.}, + howpublished = {Unpublished Manuscript}, + key = {Tolerton and Rauch (1949)}, + lgcode = {Nomoians [mort1237]}, + title = {Social Organization, Land Tenure, and Subsistence Economy of Lukunor, Nomoi Islands}, + year = {1949} +} + +@book{sarfert1919, + author = {Sarfert, E.}, + editor = {Thilenius, G}, + address = {Hamburg}, + glottolog_ref = {hh:e:Sarfert:Kusae:1919}, + key = {Sarfert (1919)}, + lgcode = {Kosraeans [kosr1238]}, + pages = {429}, + publisher = {Friederichsen & Co}, + series = {Ergebnisse der Südsee-Expedition 1908-1910: II. Ethnographie B. Mikronesien}, + title = {Kusae}, + volume = {2}, + year = {1919} +} + +@phdthesis{mason1954, + author = {Mason, L.}, + key = {Mason (1954)}, + lgcode = {Bikinians [rali1241]}, + school = {Yale University}, + title = {Relocation of the Bikini Marshallese}, + year = {1954} +} + +@book{hambruch191415, + author = {Hambruch, P.}, + editor = {Thilenius, G.}, + address = {Hamburg}, + key = {Hambruch (1914-15)}, + lgcode = {Nauruans [naur1243]}, + series = {Ergebnisse der Südsee-Expedition 1908-1910}, + title = {Nauru}, + year = {1914-15} +} + +@article{stephen1936, + author = {Stephen, E.}, + journal = {Oceania}, + key = {Stephen (1936)}, + lgcode = {Nauruans [naur1243]}, + pages = {34-63}, + title = {Notes on Nauru}, + volume = {7}, + year = {1936} +} + +@misc{wedgwood1936, + author = {Wedgwood, C}, + journal = {Oceania}, + key = {Wedgwood (1936)}, + lgcode = {Nauruans [naur1243]}, + pages = {359-391; 1-33}, + title = {Report on Research in Nauru Island}, + volume = {6; 7}, + year = {1936} +} + +@book{finsch1893, + author = {Finsch, O.}, + address = {Wien}, + key = {Finsch (1893)}, + lgcode = {Makin [bana1287], Marshallese - Jaluit Atoll [rali1241]}, + pages = {19-89}, + title = {Ethnologische Erfahrungen und Belegstucke aus der Südsee 3}, + year = {1893} +} + +@article{grimble1921, + author = {Grimble, A.}, + journal = {Journal of the Royal Anthropological Institute}, + key = {Grimble (1921)}, + lgcode = {Makin [bana1287]}, + pages = {25-54}, + title = {From Birth to Death in the Gilbert Islands}, + volume = {51}, + year = {1921} +} + +@book{kramer1906, + author = {Kramer, A.}, + address = {Stuttgart}, + key = {Kramer (1906)}, + lgcode = {American Samoans [samo1305], Makin [bana1287], Upolu Samoans [samo1305]}, + title = {Hawaii, Ostmikronesien und Samoa}, + year = {1906} +} + +@phdthesis{lambert1963, + author = {Lambert, B.}, + key = {Lambert (1963)}, + lgcode = {Makin [bana1287]}, + school = {University of California at Berkeley}, + title = {Rank and Ramage in the Northern Gilbert Islands}, + year = {1963} +} + +@article{lambert1964, + author = {Lambert, B.}, + journal = {Ethnology}, + key = {Lambert (1964)}, + lgcode = {Makin [bana1287]}, + pages = {232-258}, + title = {Fosterage in the Northern Gilbert Islands}, + volume = {3}, + year = {1964} +} + +@incollection{lambert1968, + author = {Lambert, B.}, + editor = {M. J. Schwartz, et al.}, + address = {Chicago}, + booktitle = {Political Anthropology}, + key = {Lambert (1968)}, + lgcode = {Makin [bana1287]}, + pages = {155-172}, + title = {The Economic Activities of a Gilbertese Chief}, + year = {1968} +} + +@incollection{lambert1970a, + author = {Lambert, B.}, + editor = {Carroll, V.}, + address = {Honolulu}, + booktitle = {Adoption in E. Oceania}, + key = {Lambert (1970a)}, + lgcode = {Makin [bana1287]}, + pages = {261-291}, + publisher = {UH Press}, + title = {Adoption, Guardianship, and Social Stratification in the Northern Gilbert Islands}, + year = {1970} +} + +@incollection{lambert1970b, + author = {Lambert, B.}, + editor = {Crocombe, R. G.}, + booktitle = {Land Tenure in the Pacific}, + key = {Lambert (1970b)}, + lgcode = {Makin [bana1287]}, + title = {The Gilbert Islands}, + year = {1970} +} + +@book{josephandmurray1951, + author = {Joseph, A. and Murray, V. F.}, + address = {Cambridge}, + key = {Joseph and Murray (1951)}, + lgcode = {Carolinians [caro1242], Chamorro [cham1312]}, + publisher = {Harvard University Press}, + title = {Chamorros and Carolinians of Saipan: personality tests with an analysis of the Bender Gestalt test by Lauretta Bender}, + year = {1951} +} + +@article{spehr1954, + author = {Spehr, A.}, + journal = {Fieldiana: Anth.}, + key = {Spehr (1954)}, + lgcode = {Carolinians [caro1242]}, + pages = {1-383}, + title = {Saipan}, + volume = {41}, + year = {1954} +} + +@article{alkire1965, + author = {Alkire, W. H.}, + journal = {Illinois Studies in Anthropology}, + key = {Alkire (1965)}, + lgcode = {Lamotrek [lamo1243]}, + pages = {1-180}, + title = {Lamotrek Atoll and Inter-island Socioeconomic Ties}, + volume = {5}, + year = {1965} +} + +@book{erdland1914, + author = {Erdland, P. A.}, + address = {Wien}, + key = {Erdland (1914)}, + lgcode = {Marshallese - Jaluit Atoll [rali1241], Marshallese - Jaluit atoll [rali1241]}, + publisher = {Munster}, + title = {Die Marshall-Insulaner}, + year = {1914} +} + +@article{spoehr1949, + author = {Spoehr, A.}, + journal = {Fieldiana: Anth.}, + key = {Spoehr (1949)}, + lgcode = {Majuro [rata1243], Marshallese - Jaluit atoll [rali1241]}, + pages = {1-266}, + title = {Majuro}, + volume = {39}, + year = {1949} +} + +@book{bollig1927, + author = {Bollig, L.}, + address = {Münster}, + key = {Bollig (1927)}, + lgcode = {Trukese [chuu1238]}, + series = {Anthropos Ethnologische Bibliothek}, + title = {Die Bewohner der Truk-Inseln}, + volume = {3}, + year = {1927} +} + +@book{fischer1950, + author = {Fischer, Ana M.}, + howpublished = {Final SIM Report, Pacific Science Board, National Research Council, imeographed, Washington}, + key = {Fischer (1950)}, + lgcode = {Trukese [chuu1238]}, + title = {The Role of the Trukese Mother and Its Effect on Child Training}, + year = {1950} +} + +@article{gladwinandsarason1953, + author = {Gladwin, T. and Sarason., S. B.}, + journal = {Viking Fund Publications in Anthropology}, + key = {Gladwin and Sarason (1953)}, + lgcode = {Trukese [chuu1238]}, + pages = {1-655}, + title = {Truk:Man in Paradise}, + volume = {20}, + year = {1953} +} + +@book{goodenough1949, + author = {Goodenough, W. H.}, + address = {New Haven}, + key = {Goodenough (1949)}, + lgcode = {Trukese [chuu1238]}, + pages = {1-192}, + series = {Yale University Publications in Anthropology}, + title = {Property, Kin, and Community on Truk}, + volume = {46}, + year = {1949} +} + +@misc{goodenough1969, + author = {Goodenough, W. H.}, + howpublished = {Manuscript}, + key = {Goodenough (1969)}, + lgcode = {Trukese [chuu1238]}, + title = {Changing Social Organization on Romonum, Truk 1947-1965}, + year = {1969} +} + +@article{lebar1964, + author = {LeBar, F. M.}, + journal = {Yale University Publications in Anthropology}, + key = {LeBar (1964)}, + lgcode = {Trukese [chuu1238]}, + pages = {1-185}, + title = {The Material Culture of Truk}, + volume = {68}, + year = {1964} +} + +@book{murdocketal1944a, + author = {Murdock, G. P. and Ford, C. S. and Whiting, J. W. M.}, + address = {Washington}, + key = {Murdock et al. (1944a)}, + lgcode = {Trukese [chuu1238]}, + number = {5}, + pages = {1-213}, + series = {Civil Affairs Handbook OPNAV 50-E}, + title = {East Caroline Islands}, + year = {1944} +} + +@misc{burrows1949, + author = {Burrows, Edwin Grant.}, + howpublished = {Unpublished manuscript submitted as a final report, Coordinated investigation of Micronesian Anthropology. Washington, Pacific Science Board, National Research Council.}, + key = {Burrows (1949)}, + lgcode = {Ifaluk [nucl1479]}, + title = {The people of Ifaluk: a little-disturbed atoll culture}, + year = {1949} +} + +@book{burrowsandspiro1953, + author = {Burrows, E. G. and Spiro., M. E.}, + address = {New Haven}, + key = {Burrows and Spiro (1953)}, + lgcode = {Ifaluk [nucl1479]}, + title = {An Atoll Culture}, + year = {1953} +} + +@book{damm1938, + author = {Damm and Hans and et al.}, + address = {Hamburg}, + key = {Damm (1938)}, + lgcode = {Ifaluk [nucl1479]}, + publisher = {Friederichsen, De Gruyter}, + series = {Ergebnisse der Südsee-Expedition 1908-1910. Section B}, + title = {Zentralkurolinen, Part II: Ifaluk, Aurepik, Faraulip, Sorol, Mogemog (The Central Carolines Part II)}, + volume = {10, Part 2}, + year = {1938} +} + +@misc{spiro1949, + author = {Spiro, Melford E.}, + howpublished = {Unpublished manuscript submitted as a final report, Coordinated Investigation of Micronesian Anthropology. Washington, Pacific Science Board, National Research Council}, + key = {Spiro (1949)}, + lgcode = {Ifaluk [nucl1479]}, + title = {Ifaluk: a South See culture}, + year = {1949} +} + +@article{bascom1965, + author = {Bascom, W. R.}, + journal = {Anth. Rec.}, + key = {Bascom (1965)}, + lgcode = {Ponapeans [pohn1238]}, + pages = {1-149}, + title = {Ponape: A Pacific Economy in Transition}, + volume = {22}, + year = {1965} +} + +@misc{hambruch193236, + author = {Hambruch, P.}, + editor = {Thilenius, G.}, + address = {Berlin}, + key = {Hambruch (1932-36)}, + lgcode = {Ponapeans [pohn1238]}, + series = {Ergebnisse der Südsee-Expedition 1908-1910}, + title = {Ponape}, + volume = {7: i, 1-376; ii, 1-386; iii, 1-127}, + year = {1932-36} +} + +@misc{riesenberg1949, + author = {Riesenberg, S.}, + howpublished = {Unpublished Manuscript}, + key = {Riesenberg (1949)}, + lgcode = {Ponapeans [pohn1238]}, + title = {Ponapean Political and Social Organization}, + year = {1949} +} + +@book{huntetal1949, + author = {Hunt, E. E. Jr. and Schneider, D. M. and Kidder, N. R. and Stevens, W. D.}, + address = {Washington}, + key = {Hunt et al. (1949)}, + lgcode = {Yapese [yape1248]}, + title = {The Micronesians of Yap and Their Depopulation}, + year = {1949} +} + +@book{muller1917, + author = {Muller, W.}, + editor = {Thilenius, G.}, + address = {Hamburg}, + key = {Muller (1917)}, + lgcode = {Yapese [yape1248]}, + pages = {1-380}, + series = {Ergebnisse der Südsee-Expedition 1908-1910}, + title = {Yap}, + volume = {2, B, iii}, + year = {1917} +} + +@book{salesius1906, + author = {Salesius.}, + address = {Berlin}, + key = {Salesius (1906)}, + lgcode = {Yapese [yape1248]}, + title = {Die Karolineninsel Jap}, + year = {1906} +} + +@article{schneider1953, + author = {Schneider, David M.}, + journal = {American Anthropologist}, + key = {Schneider (1953)}, + lgcode = {Yapese [yape1248]}, + pages = {215-236}, + title = {Yap Kinship Terminology and Kin Groups}, + volume = {55}, + year = {1953} +} + +@article{schneider1957c, + author = {Schneider.}, + journal = {American Anthropologist}, + key = {Schneider (1957c)}, + lgcode = {Yapese [yape1248]}, + pages = {791-800}, + title = {Political Organization, Supernatural Sanctions and the Punishment for Incest on Yap}, + volume = {59}, + year = {1957} +} + +@article{schneider1962, + author = {Schneider, D. M.}, + journal = {Journal of the Polynesian Society}, + key = {Schneider (1962)}, + lgcode = {Yapese [yape1248]}, + pages = {1-24}, + title = {Double Descent on Yap}, + volume = {71}, + year = {1962} +} + +@misc{schneidernd, + author = {Schneider, D. M.}, + howpublished = {Unpublished field notes}, + key = {Schneider (nd)}, + lgcode = {Yapese [yape1248]} +} + +@article{senfft1903, + author = {Senfft, A.}, + journal = {Petermanns Mitteilungen}, + key = {Senfft (1903)}, + lgcode = {Yapese [yape1248]}, + pages = {46-60, 83-87}, + title = {Ethnographische Beitrage uber die Carolineninsel Yap}, + volume = {49}, + year = {1903} +} + +@book{tetens1958, + author = {Tetens, A.}, + address = {Stanford}, + key = {Tetens (1958)}, + lgcode = {Yapese [yape1248]}, + note = {Trans. F. M. Spoehr}, + title = {Among the Savages of the South Seas}, + year = {1958} +} + +@article{tetensandkubary1873, + author = {Tetens, A. and Kubary, J.}, + address = {Hamburg}, + journal = {Journal des Museum Godeffroy}, + key = {Tetens and Kubary (1873)}, + lgcode = {Yapese [yape1248]}, + pages = {84-120}, + title = {Die Carolineninsel Yap}, + volume = {1}, + year = {1873} +} + +@misc{goodenough1951b, + author = {Goodenough, W. H.}, + howpublished = {Washington (mimeographed)}, + key = {Goodenough (1951b)}, + lgcode = {Gilbert Onotoa [nuii1237]}, + title = {Progress Report on Ethonographic Phase of Onotoa Project}, + year = {1951} +} + +@article{goodenough1955, + author = {Goodenough, W. H.}, + journal = {American Anthropologist}, + key = {Goodenough (1955)}, + lgcode = {Gilbert Onotoa [nuii1237]}, + pages = {71-83}, + title = {A Problem in Malayo-Polynesian Social Organization}, + volume = {57}, + year = {1955} +} + +@book{knudson1965, + author = {Knudson, K. E.}, + address = {Eugene}, + key = {Knudson (1965)}, + lgcode = {Gilbert Onotoa [nuii1237]}, + title = {Titiana: A Gilbertese Community in the Solomon Islands}, + year = {1965} +} + +@book{lundsgaarde1966, + author = {Lundsgaarde, H. P.}, + address = {Eugene}, + key = {Lundsgaarde (1966)}, + lgcode = {Gilbert Onotoa [nuii1237]}, + title = {Cultural Adaptation in the Southern Gilbert Islands}, + year = {1966} +} + +@article{spoehr1954, + author = {Spoehr, A.}, + journal = {Fieldiana: Anthropology}, + key = {Spoehr (1954)}, + lgcode = {Chamorro [cham1312]}, + pages = {1-383}, + title = {Saipan}, + volume = {41}, + year = {1954} +} + +@misc{lessa1950, + author = {Lessa, W. A.}, + howpublished = {Unpublished Manuscript Ulithi (Micronesia)}, + key = {Lessa (1950)}, + lgcode = {Ulithians [ulit1238]}, + title = {The Ethnography of Ulithi Atoll}, + year = {1950} +} + +@book{william1966, + author = {Lessa, William Armand}, + address = {New York}, + key = {Lessa (1966)}, + lgcode = {Ulithians [ulit1238]}, + publisher = {Holt, Rinehart and Winston}, + title = {Ulithi: A Micronesian design for living}, + year = {1966} +} + +@article{oliver1949, + author = {Oliver, D. L.}, + journal = {Papers of the Peabody Museum, Harvard University}, + key = {Oliver (1949)}, + lgcode = {Siuai [siwa1245]}, + pages = {1-4}, + title = {Studies in the Anthropology of Bougainville}, + volume = {29}, + year = {1949} +} + +@book{oliver1955, + author = {Oliver, D. L.}, + address = {Cambridge}, + key = {Oliver (1955)}, + lgcode = {Siuai [siwa1245]}, + title = {A Solomon Island Society}, + year = {1955} +} + +@book{schwartz1964, + author = {Schwartz, T.}, + address = {Lomax}, + key = {Schwartz (1964)}, + lgcode = {Usiai [lele1270]}, + title = {Personal Communication to A}, + year = {1964} +} + +@book{armstrong1928, + author = {Armstrong, W. E.}, + address = {Cambridge}, + key = {Armstrong (1928)}, + lgcode = {Rossel Islanders [yele1255]}, + title = {Rossel Island}, + year = {1928} +} + +@book{scheffler1965, + author = {Scheffler, H. W.}, + address = {Berkeley and Los Angeles}, + key = {Scheffler (1965)}, + lgcode = {Choiseulese [vagh1249]}, + title = {Choiseul Island Social Structure}, + year = {1965} +} + +@article{hambruch1907, + author = {Hambruch, P.}, + journal = {Mitt. Mus. Voelkerkunde Hamburg}, + key = {Hambruch (1907)}, + lgcode = {Aua [wuvu1239]}, + pages = {1-156}, + title = {Wuvulu und Aua}, + volume = {21}, + year = {1907} +} + +@article{pittrivers1925, + author = {Pitt-Rivers, G. L. F.}, + journal = {Journ. Roy. Anmth. Inst.}, + key = {Pitt-Rivers (1925)}, + lgcode = {Aua [wuvu1239]}, + pages = {425-438}, + title = {Aua Island}, + volume = {55}, + year = {1925} +} + +@article{belshaw1955, + author = {Belshaw, C. S.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Belshaw (1955)}, + lgcode = {Dahuni [suau1242]}, + pages = {1-84}, + title = {In Search of Wealth}, + volume = {80}, + year = {1955} +} + +@book{seligman1910, + author = {Seligman, C. G.}, + address = {Cambridge}, + key = {Seligman (1910)}, + lgcode = {Dahuni [suau1242]}, + title = {The Melanesians of British New Guinea}, + year = {1910} +} + +@misc{goodenough1954a, + author = {Goodenough, W. H.}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1954a)}, + lgcode = {Bakovi [bola1250]}, + title = {Notes on the Ethnography of the Bakovi Tribe}, + year = {1954} +} + +@misc{goodenough1951a, + author = {Goodenough, W. H.}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1951a)}, + lgcode = {Bwaidoga [bwai1242]}, + title = {Notes on the Bwaidoga People}, + year = {1951} +} + +@misc{goodenough1954b, + author = {Goodenough, W. H.}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1954b)}, + lgcode = {Kombe [mudu1242]}, + title = {Notes on the Ethnography of the Koobe}, + year = {1954} +} + +@book{ivens1930, + author = {Ivens, W. G.}, + address = {London}, + key = {Ivens (1930)}, + lgcode = {Kwaio [kwai1243]}, + title = {The Island Builders of the Pacific}, + year = {1930} +} + +@article{keesing1966, + author = {Keesing, R. M.}, + journal = {Southw. Journ. Anth.}, + key = {Keesing (1966)}, + lgcode = {Kwaio [kwai1243]}, + pages = {346-359}, + title = {Kwaio Kindreds}, + volume = {22}, + year = {1966} +} + +@article{keesing1967, + author = {Keesing, R. M.}, + journal = {Ethnology}, + key = {Keesing (1967)}, + lgcode = {Kwaio [kwai1243]}, + pages = {1-16}, + title = {Statistical Models and Decision Models of Social Structure: A Kwaio Case}, + volume = {6}, + year = {1967} +} + +@article{keesing1968, + author = {Keesing, R. M.}, + journal = {Ethnology}, + key = {Keesing (1968)}, + lgcode = {Kwaio [kwai1243]}, + pages = {59-70}, + title = {Step Kin, In-laws, and Ethnoscience}, + volume = {7}, + year = {1968} +} + +@article{chowning1962, + author = {Chowning, A.}, + journal = {Ethnology}, + key = {Chowning (1962)}, + lgcode = {Molima [moli1248]}, + pages = {92-101}, + title = {Cognatic Kin Groups Among the Molima of Fergusson Island}, + volume = {1}, + year = {1962} +} + +@article{goodenough1952, + author = {Goodenough, W. H.}, + journal = {University (of Pennsylvania) Museum Bull.}, + key = {Goodenough (1952)}, + lgcode = {Molima [moli1248]}, + pages = {5-37}, + title = {Ethnological Reconnaisance in New Guinea}, + volume = {17}, + year = {1952} +} + +@misc{fathauer1954a, + author = {Fathauer, G. H.}, + howpublished = {Manuscript}, + key = {Fathauer (1954a)}, + lgcode = {Trobriands [kili1267]}, + title = {Kinship and Social Structure of the Trobriand Islands}, + year = {1954} +} + +@article{malinowski1921, + author = {Malinowski, B.}, + journal = {Economic Journal}, + key = {Malinowski (1921)}, + lgcode = {Trobriands [kili1267]}, + pages = {1-16}, + title = {The Primitive Economics of the Trobriand Islanders}, + volume = {31}, + year = {1921} +} + +@book{malinowski1922, + author = {Malinowski, B.}, + address = {London}, + key = {Malinowski (1922)}, + lgcode = {Trobriands [kili1267]}, + publisher = {George Routledge and Sons}, + title = {Argonauts of the Western Pacific}, + year = {1922} +} + +@book{malinowski1926, + author = {Malinowski, B.}, + address = {London}, + key = {Malinowski (1926)}, + lgcode = {Trobriands [kili1267]}, + publisher = {Harcourt, Brace}, + title = {Crime and Custom in Savage Society}, + year = {1926} +} + +@book{malinowski1927, + author = {Malinowski, B.}, + address = {London}, + key = {Malinowski (1927)}, + lgcode = {Trobriands [kili1267]}, + title = {Sex and Repression in Savage Society}, + year = {1927} +} + +@book{malinowski1929, + author = {Malinowski, B.}, + address = {New York}, + key = {Malinowski (1929)}, + lgcode = {Trobriands [kili1267]}, + title = {The Sexual Life of Savages in Northwestern Melanesia. 2v}, + year = {1929} +} + +@book{malinowski1935, + author = {Malinowski, B.}, + address = {New York}, + key = {Malinowski (1935)}, + lgcode = {Trobriands [kili1267]}, + title = {Coral Gardens and Their Magic. 2v}, + year = {1935} +} + +@article{powell1960, + author = {Powell, H. A.}, + journal = {Journal of the Royal Anthropological Institute}, + key = {Powell (1960)}, + lgcode = {Trobriands [kili1267]}, + pages = {118-145}, + title = {Competitive Leadership in Trobriand Political Organization}, + volume = {90}, + year = {1960} +} + +@book{silas1926, + author = {Silas, E.}, + address = {London}, + key = {Silas (1926)}, + lgcode = {Trobriands [kili1267]}, + title = {A Primitive Arcadia}, + year = {1926} +} + +@book{uburoi1962, + author = {Uburoi, J. P. S.}, + address = {New York}, + key = {Uburoi (1962)}, + lgcode = {Trobriands [kili1267]}, + title = {Politics of the Kula Ring}, + year = {1962} +} + +@book{hogbin1965, + author = {Hogbin, H. I.}, + address = {New York}, + key = {Hogbin (1965)}, + lgcode = {Kaoka [long1395]}, + title = {A Guadalcanal Society: The Kaoka Speakers}, + year = {1965} +} + +@article{bell1934, + author = {Bell, F. L. S.}, + journal = {Oceania}, + key = {Bell (1934)}, + lgcode = {Tangga [tang1348]}, + pages = {290-309}, + title = {Report on Field Work in Tanga}, + volume = {4}, + year = {1934} +} + +@article{bell1938, + author = {Bell, F. L. S.}, + journal = {Oceania}, + key = {Bell (1938)}, + lgcode = {Tangga [tang1348]}, + pages = {401-418}, + title = {Courtship and Marriage Among the Tanga}, + volume = {8}, + year = {1938} +} + +@book{blackwood1935, + author = {Blackwood, B.}, + address = {Oxford}, + key = {Blackwood (1935)}, + lgcode = {Kurtatchi [tinp1237]}, + title = {Both Sides of Buka Passage}, + year = {1935} +} + +@article{powdermaker1931a, + author = {Powdermaker, H.}, + journal = {Oceania}, + key = {Powdermaker (1931a)}, + lgcode = {Lesu [nots1237]}, + pages = {26-43}, + title = {Mortuary Rites in New Ireland}, + volume = {2}, + year = {1931} +} + +@article{powdermaker1931b, + author = {Powdermaker, H.}, + journal = {Human Biology}, + key = {Powdermaker (1931b)}, + lgcode = {Lesu [nots1237]}, + pages = {351-375}, + title = {Vital Statistics in New Ireland}, + volume = {3}, + year = {1931} +} + +@article{powdermaker1932, + author = {Powdermaker, H.}, + journal = {American Anthropologist}, + key = {Powdermaker (1932)}, + lgcode = {Lesu [nots1237]}, + pages = {236-247}, + title = {Feasts in New Ireland}, + volume = {34}, + year = {1932} +} + +@book{powdermaker1933, + author = {Powdermaker, H.}, + address = {New York}, + key = {Powdermaker (1933)}, + lgcode = {Lesu [nots1237]}, + title = {Life in Lesu}, + year = {1933} +} + +@book{fortune1932b, + author = {Fortune, R. F.}, + address = {New York}, + key = {Fortune (1932b)}, + lgcode = {Dobuans [dobu1241]}, + title = {Sorcerers of Dobu}, + year = {1932} +} + +@book{ivens1927, + author = {Ivens, W. G.}, + address = {London}, + key = {Ivens (1927)}, + lgcode = {Ulawans [saaa1240]}, + title = {Melanesians of the South-East Solomon Islands}, + year = {1927} +} + +@phdthesis{chowning1957, + author = {Chowning, A.}, + key = {Chowning (1957)}, + lgcode = {Lakalai [naka1262]}, + school = {University of Pennsylvania}, + title = {Lakalai Society}, + year = {1957} +} + +@article{goodenough1962, + author = {Goodenough, W. H.}, + journal = {Ethnology}, + key = {Goodenough (1962)}, + lgcode = {Lakalai [naka1262]}, + pages = {5-12}, + title = {Kindred and Hamlet in Lakalai, New Brittain}, + volume = {1}, + year = {1962} +} + +@article{hocart1922, + author = {Hocart, A. M.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Hocart (1922)}, + lgcode = {Simboese [simb1256]}, + pages = {71-112, 259-305}, + title = {The Cult of the Dead in Eddystone of the Solomons}, + volume = {55}, + year = {1922} +} + +@book{rivers1914b, + author = {Rivers, W. H. R.}, + address = {Cambridge}, + key = {Rivers (1914b)}, + lgcode = {Simboese [simb1256]}, + title = {The History of Melanesian Society}, + volume = {2}, + year = {1914} +} + +@book{rivers1926, + author = {Rivers, W. H. R.}, + address = {London}, + key = {Rivers (1926)}, + lgcode = {Simboese [simb1256]}, + title = {Psychology and Ethnology}, + year = {1926} +} + +@article{scheffler1962, + author = {Scheffler, H. W.}, + journal = {Ethnology}, + key = {Scheffler (1962)}, + lgcode = {Simboese [simb1256]}, + pages = {135-157}, + title = {Kindred and Kin Groups in Simbo Island Social Structure}, + volume = {1}, + year = {1962} +} + +@article{fortune1935, + author = {Fortune, R. F.}, + journal = {Memoirs of the American Philosophical Society}, + key = {Fortune (1935)}, + lgcode = {Manus [tita1241]}, + pages = {1-391}, + title = {Manus Religion}, + volume = {3}, + year = {1935} +} + +@book{mead1930a, + author = {Mead, M.}, + address = {New York}, + key = {Mead (1930a)}, + lgcode = {Manus [tita1241]}, + title = {Growing Up in New Guiena}, + year = {1930} +} + +@article{mead1930b, + author = {Mead, M.}, + journal = {Natural History}, + key = {Mead (1930b)}, + lgcode = {Manus [tita1241]}, + pages = {115-130}, + title = {Melanesian Middlemen}, + volume = {30}, + year = {1930} +} + +@article{mead1932a, + author = {Mead, M.}, + journal = {Journal of the Royal Anthropological Institute}, + key = {Mead (1932a)}, + lgcode = {Manus [tita1241]}, + pages = {173-190}, + title = {An Investigation of the Thought of Primitive Children with Special Reference to Animism}, + volume = {62}, + year = {1932} +} + +@article{mead1934, + author = {Mead, M.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Mead (1934)}, + lgcode = {Manus [tita1241]}, + pages = {180-358}, + title = {Kinship in the Admirality Islands}, + volume = {34}, + year = {1934} +} + +@incollection{mead1937b, + author = {Mead, M.}, + editor = {Mead, M.}, + address = {New York}, + booktitle = {Cooperation and Competition among Primitive Peoples}, + key = {Mead (1937b)}, + lgcode = {Manus [tita1241]}, + pages = {210-239}, + title = {The Manus of the Admiralty Islands}, + year = {1937} +} + +@book{mead1969, + author = {Mead, M.}, + address = {New York}, + key = {Mead (1969)}, + lgcode = {Manus [tita1241]}, + title = {New Lives for Old}, + year = {1969} +} + +@book{codrington1891, + author = {Codrington, R. H.}, + address = {Oxford}, + key = {Codrington (1891)}, + lgcode = {Mota [mota1237]}, + title = {The Melanesians}, + year = {1891} +} + +@book{rivers1914a, + author = {Rivers, W. H. R.}, + address = {Cambridge}, + key = {Rivers (1914a)}, + lgcode = {Mota [mota1237]}, + pages = {20-176}, + title = {The History of Melanesian Society}, + volume = {1}, + year = {1914} +} + +@book{humphreys1926, + author = {Humphreys, C. B.}, + address = {Cambridge}, + key = {Humphreys (1926)}, + lgcode = {Eromangans [siee1239], Tannese [sout2869]}, + title = {The Southern New Hebrides}, + year = {1926} +} + +@article{deacon1929, + author = {Deacon, A. B.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Deacon (1929)}, + lgcode = {Epi [lame1260]}, + pages = {498-506}, + title = {Notes on Some Islands of the New Hebrides}, + volume = {59}, + year = {1929} +} + +@article{barnard1938, + author = {Barnard, T. T.}, + journal = {Man}, + key = {Barnard (1938)}, + lgcode = {Ranon [nort2839]}, + pages = {133-137}, + title = {The Social Organization of Ambrym}, + volume = {28}, + year = {1938} +} + +@article{deacon1927, + author = {Deacon, A. B.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Deacon (1927)}, + lgcode = {Ranon [nort2839]}, + pages = {325-342}, + title = {The Regulation of Marriage in Ambrym}, + volume = {57}, + year = {1927} +} + +@article{guiart1956a, + author = {Guiart, J.}, + journal = {Journ. Soc. Oceanistes}, + key = {Guiart (1956a)}, + lgcode = {Ranon [nort2839]}, + pages = {201-336}, + title = {Le district du Nord Ambrym}, + volume = {23}, + year = {1956} +} + +@article{laneandlane1958, + author = {Lane, R. and Lane., B.}, + journal = {Southw. Journ. Anth.}, + key = {Lane and Lane (1958)}, + lgcode = {Ranon [nort2839]}, + pages = {107-135}, + title = {The Evolution of Ambrym Kinship}, + volume = {14}, + year = {1958} +} + +@book{deane1921, + author = {Deane, W.}, + address = {London}, + key = {Deane (1921)}, + lgcode = {Mbau Fijians [bauu1243]}, + title = {Fijian Society}, + year = {1921} +} + +@book{ross1953, + author = {Ross, G. K.}, + address = {Melbourne}, + key = {Ross (1953)}, + lgcode = {Mbau Fijians [bauu1243]}, + title = {Fijian Way of Life}, + year = {1953} +} + +@article{spencer1941, + author = {Spencer, D. M.}, + journal = {Monographs of the American Ethnological Society}, + key = {Spencer (1941)}, + lgcode = {Mbau Fijians [bauu1243]}, + pages = {1-82}, + title = {Disease, Religion and Society in the Fiji Islands}, + volume = {2}, + year = {1941} +} + +@book{thomson1908, + author = {Thomson, B.}, + address = {London}, + key = {Thomson (1908)}, + lgcode = {Mbau Fijians [bauu1243]}, + title = {The Fijians}, + year = {1908} +} + +@article{tippett1968, + author = {Tippett, A. R.}, + journal = {Bulletins of the Bernice P. Bishop Museum}, + key = {Tippett (1968)}, + lgcode = {Mbau Fijians [bauu1243]}, + pages = {1-193}, + title = {Fijian Material culture}, + volume = {232}, + year = {1968} +} + +@article{toganivalu1917, + author = {Toganivalu, D.}, + journal = {Transactions of the Fijian Society}, + key = {Toganivalu (1917)}, + lgcode = {Mbau Fijians [bauu1243]}, + title = {Fijian Property and Gear}, + year = {1917} +} + +@article{tonganivalu1911, + author = {Toganivalu, D.}, + journal = {Transactions of the Fijian Society}, + key = {Toganivalu (1911)}, + lgcode = {Mbau Fijians [bauu1243]}, + title = {The Customs of Ban Before the Advent of Christianity}, + year = {1911} +} + +@book{waterhouse1866, + author = {Waterhouse, J.}, + address = {London}, + key = {Waterhouse (1866)}, + lgcode = {Mbau Fijians [bauu1243]}, + title = {The King and People of Fiji}, + year = {1866} +} + +@book{williams1884, + author = {Williams, T.}, + address = {London}, + key = {Williams (1884)}, + lgcode = {Mbau Fijians [bauu1243]}, + note = {Rev. edit.}, + title = {Fiji and the Fijians}, + year = {1884} +} + +@book{deacon1934, + author = {Deacon, A. B.}, + address = {London}, + key = {Deacon (1934)}, + lgcode = {Seniang [sout2857]}, + title = {Malekula}, + year = {1934} +} + +@article{lane1956, + author = {Lane, R. B.}, + journal = {Journal de la Soci‚te des Oceanistes}, + key = {Lane (1956)}, + lgcode = {Bunlap [saaa1241]}, + pages = {139-180}, + title = {The Heathen Communities of Southeast Pentecost}, + volume = {12}, + year = {1956} +} + +@incollection{lane1965, + author = {Lane, R. B.}, + editor = {Lawrence, P. and Meggitt, M. G.}, + address = {London}, + booktitle = {Gods, Ghosts and Men in Melanesia}, + key = {Lane (1965)}, + lgcode = {Bunlap [saaa1241]}, + pages = {250-279}, + title = {The Melanesians of South Pentecost}, + year = {1965} +} + +@misc{laneandlane1957, + author = {Lane, R. B. and Lane., B. S.}, + howpublished = {Unpublished field notes}, + key = {Lane and Lane (1957)}, + lgcode = {Bunlap [saaa1241]}, + year = {1957} +} + +@article{geddes1946, + author = {Geddes, W. R. IV-10.}, + journal = {British Journal of Psychology}, + key = {Geddes (1946)}, + lgcode = {Lau [laua1243]}, + pages = {30-36}, + title = {The color sense of Fijian natives}, + volume = {37}, + year = {1946} +} + +@book{hocart1929, + author = {Hocart, A. M.}, + key = {Hocart (1929)}, + lgcode = {Lau [laua1243]}, + pages = {1-240}, + series = {Bull. Bishop Mus.}, + title = {Lau Islands, Fiji}, + volume = {62}, + year = {1929} +} + +@book{quain1948, + author = {Quain, Buell H.}, + address = {Chicago}, + key = {Quain (1948)}, + lgcode = {Lau [laua1243]}, + publisher = {University of Chicago Press}, + title = {Fijian village}, + year = {1948} +} + +@book{thompson1940a, + author = {Thompson, L.}, + key = {Thompson (1940a)}, + lgcode = {Lau [laua1243]}, + series = {Bull. Bishop Mus.}, + title = {Southern Lau, Fiji}, + volume = {162}, + year = {1940} +} + +@book{thompson1940b, + author = {Thompson, Laura}, + address = {San Francisco}, + key = {Thompson (1940b)}, + lgcode = {Lau [laua1243]}, + number = {4}, + publisher = {Institute of Pacific Relations}, + series = {Studies of the Pacific}, + title = {Fijian frontier}, + year = {1940} +} + +@book{barrau1956, + author = {Barrau, J.}, + address = {Noumea}, + key = {Barrau (1956)}, + lgcode = {Ajie [ajie1238]}, + title = {L'agriculture viviere autochtone}, + year = {1956} +} + +@book{guiart1956b, + author = {Guiart, J.}, + address = {Noumea}, + key = {Guiart (1956b)}, + lgcode = {Ajie [ajie1238]}, + title = {L'organisation sociale et countumiere de la population autochtone de Nouvelle-Calédonie}, + year = {1956} +} + +@article{guiart1963, + author = {Guiart, J.}, + journal = {Travaux et Mémoires de l'Institut d'Ethnologie}, + key = {Guiart (1963)}, + lgcode = {Ajie [ajie1238]}, + pages = {1-688}, + title = {Structure de la chefferie en Mélanésie du Sud}, + volume = {66}, + year = {1963} +} + +@book{leenhardt1930, + author = {Leenhardt, M.}, + address = {Paris}, + key = {Leenhardt (1930)}, + lgcode = {Ajie [ajie1238]}, + pages = {1-340}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + title = {Notes d'ethnologie néo-calédonienne}, + volume = {8}, + year = {1930} +} + +@book{leenhardt1937, + author = {Leenhardt, M.}, + address = {Paris}, + key = {Leenhardt (1937)}, + lgcode = {Ajie [ajie1238]}, + title = {Gens de la Grand Terre, Nouvelle Calédonie}, + year = {1937} +} + +@article{gardner1897, + author = {Gardner, J. S.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Gardner (1897)}, + lgcode = {Rotumans [rotu1241]}, + pages = {396-435, 457-524}, + title = {The Natives of Rotuma}, + volume = {27}, + year = {1897} +} + +@article{howardandhoward1964, + author = {Howard, A. and Howard., I.}, + journal = {American Anthropologist}, + key = {Howard and Howard (1964)}, + lgcode = {Rotumans [rotu1241]}, + pages = {266-283}, + title = {Pre-Marital Sex and Social Control Among the Rotumans}, + volume = {66}, + year = {1964} +} + +@article{russell1942, + author = {Russell, E. W.}, + journal = {Journal of the Polynesian Society}, + key = {Russell (1942)}, + lgcode = {Rotumans [rotu1241]}, + pages = {229-255}, + title = {Rotuma, Its History, Traditions and Customs}, + volume = {51}, + year = {1942} +} + +@book{hadfield1920, + author = {Hadfield, E.}, + address = {London}, + key = {Hadfield (1920)}, + lgcode = {Lifu [dehu1237]}, + title = {Among the Natives of the Loyalty Group}, + year = {1920} +} + +@article{ray1917, + author = {Ray, S.}, + glottolog_ref = {hh:s:Ray:Lifu}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Ray (1917)}, + lgcode = {Lifu [dehu1237]}, + pages = {239-322}, + title = {The People and Language of Lifu, Loyalty Islands}, + volume = {47}, + year = {1917} +} + +@book{quain1949, + author = {Quain, B.}, + address = {Chicago}, + key = {Quain (1949)}, + lgcode = {Vanua Levu [nort2843]}, + title = {Fijian Village}, + year = {1949} +} + +@incollection{davenport1964, + author = {Davenport, W.}, + editor = {Goodenough, W. H.}, + address = {New York}, + booktitle = {Explorations in Cultural Anthropology}, + key = {Davenport (1964)}, + lgcode = {Santa Cruz Islanders [natu1246]}, + pages = {57-93}, + title = {Social Structure of Santa Cruz Island}, + year = {1964} +} + +@article{buck1930, + author = {Buck, P. H.}, + journal = {Bulletins of the Bishop Museum}, + key = {Buck (1930)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]}, + pages = {1-724}, + title = {Samoan Material Culture}, + volume = {75}, + year = {1930} +} + +@article{cook1942, + author = {Cook, P. IV-6.}, + journal = {Rorschach Research Exchange}, + key = {Cook (1942)}, + lgcode = {American Samoans [samo1305]}, + pages = {51-60}, + title = {The application of the Rorschach test to a Samoan group}, + volume = {6}, + year = {1942} +} + +@article{ember1959, + author = {Ember, M.}, + journal = {American Anthropologist}, + key = {Ember (1959)}, + lgcode = {American Samoans [samo1305]}, + pages = {573-577}, + title = {The Nonunilinear Descent Groups of Samoa}, + volume = {61}, + year = {1959} +} + +@article{freeman1965, + author = {Freeman, J. D.}, + journal = {American Anthropologist}, + key = {Freeman (1965)}, + lgcode = {American Samoans [samo1305]}, + pages = {553-568}, + title = {Some observations on Kinship and Political Authority in Samoa}, + volume = {66}, + year = {1965} +} + +@book{grattan1948, + author = {Grattan, F. J. H.}, + address = {Apia}, + key = {Grattan (1948)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]}, + title = {An Introduction to Samoan Custom}, + year = {1948} +} + +@book{kramer190102, + author = {Kramer, A.}, + address = {Stuttgart}, + key = {Kramer (1901-02)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]}, + title = {Die Samoa-Inseln. 2V}, + year = {1901-02} +} + +@book{mead1928, + author = {Mead, Margaret}, + address = {New York}, + key = {Mead (1928)}, + lgcode = {American Samoans [samo1305]}, + publisher = {William Morrow}, + title = {Coming of age in Samoa}, + year = {1928} +} + +@article{mead1930c, + author = {Mead, M.}, + journal = {Bull. Bishop Mus.}, + key = {Mead (1930c)}, + lgcode = {American Samoans [samo1305]}, + pages = {1-218}, + title = {Social Organization of Manua}, + volume = {76}, + year = {1930} +} + +@inbook{murdock1934l, + author = {Murdock, G. P.}, + address = {New York}, + booktitle = {Our primitive contemporaries}, + key = {Murdock (1934l)}, + lgcode = {American Samoans [samo1305]}, + pages = {48-84}, + publisher = {Macmillan}, + title = {The Samoans}, + year = {1934} +} + +@book{stair1897, + author = {Stair, J. B.}, + address = {London}, + key = {Stair (1897)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]}, + title = {Old Samoa}, + year = {1897} +} + +@book{turner1884, + author = {Turner, G.}, + address = {London}, + key = {Turner (1884)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]}, + title = {Samoa}, + year = {1884} +} + +@article{birketsmith1956, + author = {Birket-Smith, K.}, + journal = {Kong. Danske Videnskab. Selskab, Hist. -Filol. Medd.}, + key = {Birket-Smith (1956)}, + lgcode = {Rennell Islanders [renn1242]}, + pages = {iii, 1-222}, + title = {An Ethnological Sketch of Rennell Island}, + volume = {35}, + year = {1956} +} + +@article{beagleholeandbeaglehole1941, + author = {Beaglehole, E. and Beaglehole., P.}, + journal = {Mem. Polynesian Soc.}, + key = {Beaglehole and Beaglehole (1941)}, + lgcode = {Tongans [tong1325]}, + pages = {1-145}, + title = {Pangai Village in Tonga}, + volume = {18}, + year = {1941} +} + +@article{gifford1929, + author = {Gifford, E. W.}, + journal = {Bull. Bishop Mus.}, + key = {Gifford (1929)}, + lgcode = {Tongans [tong1325]}, + pages = {1-366}, + title = {Tongan Society}, + volume = {61}, + year = {1929} +} + +@article{burrows1937, + author = {Burrows, E. G.}, + journal = {Bull. Bishop Mus.}, + key = {Burrows (1937)}, + lgcode = {Uveans [wall1257]}, + pages = {1-176}, + title = {Ethnology of Uvea}, + volume = {145}, + year = {1937} +} + +@book{bulow1971, + author = {Bülow, Werner von}, + howpublished = {Globus, 1971}, + key = {Bülow (1971)}, + lgcode = {Upolu Samoans [samo1305]}, + title = {Der Stammbaum der Könige von Samoa}, + year = {1897} +} + +@article{davidson1948, + author = {Davidson, J. W.}, + journal = {Pacific Affairs}, + key = {Davidson (1948)}, + lgcode = {Upolu Samoans [samo1305]}, + pages = {136-149}, + title = {Political Development in Western Samoa}, + volume = {21}, + year = {1948} +} + +@article{ember1962, + author = {Ember, M.}, + journal = {American Anthropologist}, + key = {Ember (1962)}, + lgcode = {Upolu Samoans [samo1305]}, + pages = {964-971}, + title = {Political Authority and the Structure of Kinship in Aboriginal Samoa}, + volume = {64}, + year = {1962} +} + +@book{keesing1934, + author = {Keesing, F. M.}, + address = {London}, + key = {Keesing (1934)}, + lgcode = {Upolu Samoans [samo1305]}, + title = {Modern Samoa:Its Government and Changing Life}, + year = {1934} +} + +@article{panoff1964, + author = {Panoff, M.}, + journal = {L'Homme}, + key = {Panoff (1964)}, + lgcode = {Upolu Samoans [samo1305]}, + number = {2}, + pages = {63-83}, + title = {L'ancienne organisation ceremonielle et politique des Samoa occidentales}, + volume = {4}, + year = {1964} +} + +@book{firth1936, + author = {Firth, R.}, + address = {London}, + key = {Firth (1936)}, + lgcode = {Tikopia [tiko1237]}, + title = {We, the Tikopia}, + year = {1936} +} + +@book{firth1939, + author = {Firth, R.}, + address = {London}, + key = {Firth (1939)}, + lgcode = {Tikopia [tiko1237]}, + title = {A Primitive Polynesian Economy}, + year = {1939} +} + +@book{firth1940, + author = {Firth, R.}, + key = {Firth (1940)}, + lgcode = {Tikopia [tiko1237]}, + series = {London School of Economics Monographs on Social Anthropology}, + title = {Work of the Gods}, + volume = {1-2}, + year = {1940} +} + +@misc{firth1952, + author = {Firth, R.}, + howpublished = {Manuscript}, + key = {Firth (1952)}, + lgcode = {Tikopia [tiko1237]}, + title = {Conflict and Adjustment in Tikopia Religions Systems}, + year = {1952} +} + +@article{firth1956, + author = {Firth, R.}, + journal = {Oceania}, + key = {Firth (1956)}, + lgcode = {Tikopia [tiko1237]}, + pages = {12-55}, + title = {Ceremonies for Children and Social Frequency in Tikopia}, + volume = {27}, + year = {1956} +} + +@article{firth1960, + author = {Firth, R.}, + journal = {Oceania}, + key = {Firth (1960)}, + lgcode = {Tikopia [tiko1237]}, + pages = {161-180}, + title = {Succession to Chieftainship in Tikopia}, + volume = {30}, + year = {1960} +} + +@article{beagleholeandbeaglehole1938, + author = {Beaglehole, E. and Beaglehole., P.}, + journal = {Bull. Bishop Mus.}, + key = {Beaglehole and Beaglehole (1938)}, + lgcode = {Pukapukans [puka1242]}, + pages = {1-419}, + title = {Ethnology of Pukapuka}, + volume = {110}, + year = {1938} +} + +@article{macgregor1935, + author = {Macgregor, G.}, + journal = {Bishop Mus. Occas. Pap.}, + key = {Macgregor (1935)}, + lgcode = {Pukapukans [puka1242]}, + pages = {vi, 1-52}, + title = {Notes on the Ethnology of Pukapuka}, + volume = {11}, + year = {1935} +} + +@book{kennedy1931, + author = {Kennedy, D. G.}, + key = {Kennedy (1931)}, + lgcode = {Ellice [tuva1244]}, + note = {Ellice Islanders. Addenda to Table 2}, + pages = {1-326}, + series = {Mem. Polyn. Soc.}, + title = {Field Notes on the Culture of Vaitupu}, + volume = {9}, + year = {1931} +} + +@book{white1965, + author = {White, G. M.}, + address = {Eugene}, + key = {White (1965)}, + lgcode = {Ellice [tuva1244]}, + title = {Kioa: An Ellice Community in Fiji}, + year = {1965} +} + +@article{hogbin1931a, + author = {Hogbin, H. I.}, + journal = {Journal of the Polynesian Society}, + key = {Hogbin (1931a)}, + lgcode = {Ontong Java [onto1237]}, + pages = {23-34}, + title = {The sexual life of the natives of Ontong Java}, + volume = {40}, + year = {1931} +} + +@article{hogbin1931b, + author = {Hogbin, H. I.}, + journal = {Oceania}, + key = {Hogbin (1931b)}, + lgcode = {Ontong Java [onto1237]}, + pages = {399-425}, + title = {The Social Organization of Ontong Java}, + volume = {1}, + year = {1931} +} + +@article{hogbin1931c, + author = {Hogbin, H. Ian.}, + journal = {American Anthropologist}, + key = {Hogbin (1931c)}, + lgcode = {Ontong Java [onto1237]}, + pages = {601-14}, + title = {Education at Ontong Java, Solomon Islands}, + volume = {33}, + year = {1931} +} + +@book{hogbin1938, + author = {Hogbin, H. I.}, + address = {London}, + key = {Hogbin (1938)}, + lgcode = {Ontong Java [onto1237]}, + title = {Law and Order in Polynesia}, + year = {1938} +} + +@article{macgregor1937, + author = {Macgregor, G.}, + journal = {Bull. Bishop Mus.}, + key = {Macgregor (1937)}, + lgcode = {Tokelau [toke1240]}, + pages = {1-183}, + title = {Ethnology of Tokelau Islands}, + volume = {146}, + year = {1937} +} + +@book{buck1950, + author = {Buck, P. H.}, + key = {Buck (1950)}, + lgcode = {Kapingamarangi [kapi1249]}, + series = {Bull. Bishop Mus.}, + title = {The Material Culture of Kapingamarangi}, + volume = {200}, + year = {1950} +} + +@book{eilers1934, + author = {Eilers, A.}, + editor = {Thilenius, G.}, + address = {Hamburg}, + key = {Eilers (1934)}, + lgcode = {Kapingamarangi [kapi1249]}, + pages = {1-464}, + series = {Ergebnisse der Suedsee-Expedition 1908-1910}, + title = {Inseln um Ponape}, + volume = {2, B, 8}, + year = {1934} +} + +@article{emory1965, + author = {Emory, K. P.}, + journal = {Bull. Bishop Mus.}, + key = {Emory (1965)}, + lgcode = {Kapingamarangi [kapi1249]}, + pages = {1-357}, + title = {Kapingamarangi}, + volume = {228}, + year = {1965} +} + +@article{burrows1936, + author = {Burrows, E. G.}, + journal = {Bull. Bishop Mus.}, + key = {Burrows (1936)}, + lgcode = {Futunans [east2447]}, + pages = {1-239}, + title = {Ethnology of Futuna}, + volume = {138}, + year = {1936} +} + +@article{loeb1926a, + author = {Loeb, E. M.}, + journal = {Bull. Bishop Mus.}, + key = {Loeb (1926a)}, + lgcode = {Niueans [niue1239]}, + pages = {1-226}, + title = {History and Traditions of Niue}, + volume = {32}, + year = {1926} +} + +@article{buck1934, + author = {Buck, P. H.}, + journal = {Bull. Bishop Mus.}, + key = {Buck (1934)}, + lgcode = {Mangaians [raro1241]}, + pages = {1-207}, + title = {Mangaian Society}, + volume = {122}, + year = {1934} +} + +@article{buck1932b, + author = {Buck, P. H.}, + journal = {Bull. Bishop Mus.}, + key = {Buck (1932b)}, + lgcode = {Tongarevans [penr1237]}, + pages = {1-225}, + title = {Ethnology of Tongareva}, + volume = {92}, + year = {1932} +} + +@book{best1924, + author = {Best, E.}, + address = {Wellington}, + key = {Best (1924)}, + lgcode = {Māori [maor1246]}, + title = {The Maori. 2v}, + year = {1924} +} + +@book{best1925, + author = {Best, E.}, + address = {Wellington}, + key = {Best (1925)}, + lgcode = {Māori [maor1246]}, + title = {Maori Agriculture}, + year = {1925} +} + +@book{best1952, + author = {Best, E.}, + address = {Wellington}, + key = {Best (1952)}, + lgcode = {Māori [maor1246]}, + title = {The Maori as He Was}, + year = {1952} +} + +@book{buck1949, + author = {Buck, P. H.}, + address = {Wellington}, + key = {Buck (1949)}, + lgcode = {Māori [maor1246]}, + title = {The Coming of the Maori}, + year = {1949} +} + +@book{cruise1824, + author = {Cruise, R. A.}, + address = {London}, + key = {Cruise (1824)}, + lgcode = {Māori [maor1246]}, + title = {Journal of a Ten Month's Residence in New Zealand. 2nd edit.}, + year = {1824} +} + +@book{earle1832, + author = {Earle, A.}, + address = {London}, + key = {Earle (1832)}, + lgcode = {Māori [maor1246]}, + title = {A Narrative of Nine Months' Residence in New Zealand in 1827}, + year = {1832} +} + +@book{firth1959, + author = {Firth, R.}, + address = {Wellington}, + key = {Firth (1959)}, + lgcode = {Māori [maor1246]}, + note = {2nd Edition}, + title = {Economics of the New Zealand Maori}, + year = {1959} +} + +@book{gudgeon1885, + author = {Gudgeon, T. W.}, + address = {Auckland}, + key = {Gudgeon (1885)}, + lgcode = {Māori [maor1246]}, + title = {The History and doings of the Maoris}, + year = {1885} +} + +@article{hawthorn1944, + author = {Hawthorn, H. B.}, + journal = {Memoirs of the American Anthropological Association}, + key = {Hawthorn (1944)}, + lgcode = {Māori [maor1246]}, + pages = {1-130}, + title = {The Maori: A Study in Acculturation}, + volume = {64}, + year = {1944} +} + +@book{maning1876, + author = {Maning, F. E.}, + address = {London}, + key = {Maning (1876)}, + lgcode = {Māori [maor1246]}, + title = {Old New Zealand}, + year = {1876} +} + +@book{polack1838, + author = {Polack, J. S.}, + address = {London}, + key = {Polack (1838)}, + lgcode = {Māori [maor1246]}, + title = {New Zealand. 2v}, + year = {1838} +} + +@book{reed1963, + author = {Reed, A. W.}, + address = {New Zealand}, + key = {Reed (1963)}, + lgcode = {Māori [maor1246]}, + title = {Illustrated Encylopedia of Maori Life}, + year = {1963} +} + +@book{shortland1856, + author = {Shortland, E.}, + address = {London}, + key = {Shortland (1856)}, + lgcode = {Māori [maor1246]}, + title = {Traditions and Superstitions of the New Zealanders}, + year = {1856} +} + +@book{wright1959, + author = {Wright, H. M.}, + address = {Cambridge}, + key = {Wright (1959)}, + lgcode = {Māori [maor1246]}, + title = {New Zealand, 1769-1840: Early Years of Western Contact}, + year = {1959} +} + +@book{forster1777, + author = {Forster, J. G. A.}, + address = {London}, + key = {Forster (1777)}, + lgcode = {Marquesans [nort2845]}, + title = {A Voyage Round the World in Britannic Majesty's Sloop Resolution, Commanded by Captain J. Cook, During the Years 1772, 3, 4, and 5}, + year = {1777} +} + +@book{handy1922, + author = {Handy, W. C.}, + address = {Honolulu}, + key = {Handy (1922)}, + lgcode = {Marquesans [nort2845]}, + number = {1}, + series = {Bulletins of the Bernice P. Biship Museum}, + title = {Tattooing in the Marquesas}, + year = {1922} +} + +@article{handy1923, + author = {Handy, E. S. C.}, + journal = {Bulletins of the Bernice P. Bishop Museum.}, + key = {Handy (1923)}, + lgcode = {Marquesans [nort2845]}, + pages = {1-358}, + title = {Native Culture in the Marquesas}, + volume = {9}, + year = {1923} +} + +@misc{labarre1934, + author = {La Barre, R. W.}, + howpublished = {Manuscript}, + key = {La Barre (1934)}, + lgcode = {Marquesans [nort2845]}, + title = {Marquesan Culture}, + year = {1934} +} + +@book{linton1923, + author = {Linton, R.}, + address = {Honolulu}, + key = {Linton (1923)}, + lgcode = {Marquesans [nort2845]}, + number = {5}, + series = {Memoirs of the Bernice P. Bishop Museum}, + title = {The Material Culture of the Marquesas Islands}, + volume = {8}, + year = {1923} +} + +@incollection{linton1939a, + author = {Linton, R.}, + editor = {Kardiner, A.}, + address = {New York}, + booktitle = {The Individual and His Society}, + key = {Linton (1939a)}, + lgcode = {Marquesans [nort2845]}, + pages = {137-196}, + title = {Marquesan Culture}, + year = {1939} +} + +@book{lisiansky1814, + author = {Lisiansky, R.}, + address = {London}, + key = {Lisiansky (1814)}, + lgcode = {Marquesans [nort2845]}, + title = {Voyage Round the World in the Years 1803-06}, + year = {1814} +} + +@article{miranda1964, + author = {Miranda, P.}, + journal = {Ethnohistory}, + key = {Miranda (1964)}, + lgcode = {Marquesans [nort2845]}, + pages = {301-379}, + title = {Marquesan Social Structure}, + volume = {11}, + year = {1964} +} + +@book{porter1823, + author = {Porter, D.}, + address = {London}, + key = {Porter (1823)}, + lgcode = {Marquesans [nort2845]}, + title = {A Voyage in the South Seas in the Years 1812-14}, + year = {1823} +} + +@misc{sheahan1952, + editor = {Sheahan, G. M.}, + howpublished = {Manuscript}, + key = {Sheahan (1952)}, + lgcode = {Marquesans [nort2845]}, + title = {Marquesan Source Materials}, + year = {1952} +} + +@book{suggs1966, + author = {Suggs, Robert C.}, + address = {New York}, + key = {Suggs (1966)}, + lgcode = {Marquesans [nort2845]}, + publisher = {Harcourt, Brace}, + title = {Marquesan Sexual Behavior}, + year = {1966} +} + +@incollection{suggs1971, + author = {Suggs, Robert C.}, + editor = {Marshall, P. S. and Suggs, R. C.}, + address = {Princeton}, + booktitle = {Human Sexual Behavior}, + key = {Suggs (1971)}, + lgcode = {Marquesans [nort2845]}, + pages = {163-186}, + title = {Sex and Personality in the Marquesas}, + year = {1971} +} + +@book{sullivan1923, + author = {Sullivan, L. R.}, + address = {Honolulu}, + key = {Sullivan (1923)}, + lgcode = {Marquesans [nort2845]}, + number = {2}, + series = {Memoirs of the Bernice P. Bishop Museum}, + title = {Marquesan Somatology with Comparative Notes on Samoa and Tonga}, + volume = {9}, + year = {1923} +} + +@article{tautain1896, + author = {Tautain}, + journal = {L'Anthropologie}, + key = {Tautain (1896)}, + lgcode = {Marquesans [nort2845]}, + pages = {443-452}, + title = {Sur l'anthropophagie et les sacrifices humains aux Iles Marquises}, + volume = {7}, + year = {1896} +} + +@article{tautain1897, + author = {Tautain}, + journal = {L'Anthropologie}, + key = {Tautain (1897)}, + lgcode = {Marquesans [nort2845]}, + pages = {538-558}, + title = {Notes sur les constructions et monuments des Marquises}, + volume = {8}, + year = {1897} +} + +@article{buck1932a, + author = {Buck, P. H.}, + journal = {Bull. Bishop Mus.}, + key = {Buck (1932a)}, + lgcode = {Manihikians [raka1237]}, + pages = {1-238}, + title = {Ethnology of Manihiki and Rakahanga}, + volume = {99}, + year = {1932} +} + +@article{danielsson1954, + author = {Danielsson, B.}, + address = {Washington D.C.}, + journal = {Atoll Research Bulletin}, + key = {Danielsson (1954)}, + lgcode = {Raroians [tuam1242]}, + pages = {1-109}, + publisher = {Smithsonian Institution}, + title = {Raroian Culture}, + volume = {32}, + year = {1954} +} + +@book{danielsson1955, + author = {Danielsson, B.}, + address = {Uppsala}, + key = {Danielsson (1955)}, + lgcode = {Raroians [tuam1242]}, + title = {Work and Life on Raroia}, + year = {1955} +} + +@article{buck1957, + author = {Buck, P. H.}, + journal = {Bishop Mus. Spec. Publ.}, + key = {Buck (1957)}, + lgcode = {Hawaiians [hawa1245]}, + pages = {1-606}, + title = {Arts and Crafts of Hawaii}, + volume = {45}, + year = {1957} +} + +@book{handyetal1933, + author = {Handy, E. S. C. et al.}, + address = {Honolulu}, + key = {Handy et al. (1933)}, + lgcode = {Hawaiians [hawa1245]}, + title = {Ancient Hawaiian Civilization}, + year = {1933} +} + +@book{malo1951, + author = {Malo, Davida}, + key = {Malo (1951)}, + lgcode = {Hawaiians [hawa1245]}, + note = {2nd ed.}, + series = {Bernice P. Bishop Museum, Special Publication}, + title = {Hawaiian antiquities}, + volume = {2}, + year = {1951} +} + +@phdthesis{vayda1956, + author = {Vayda, Andrew P.}, + address = {New York}, + key = {Vayda (1956)}, + lgcode = {Hawaiians [hawa1245], Māori [maor1246]}, + school = {Columbia University}, + title = {Maori warfare}, + year = {1956} +} + +@article{buck1938, + author = {Buck, P. H.}, + journal = {Bull. Bishop Mus.}, + key = {Buck (1938)}, + lgcode = {Mangarevans [mang1401]}, + pages = {1-519}, + title = {Ethnology of Mangareva}, + volume = {117}, + year = {1938} +} + +@book{laval1938, + author = {Laval, Honore}, + address = {Braine-le-Compte, Belgium}, + key = {Laval (1938)}, + lgcode = {Mangarevans [mang1401]}, + title = {Mangareva: L'histoire ancienne d'un peuple polynesien}, + year = {1938} +} + +@misc{ellis1905, + author = {Ellis, H.}, + address = {New York}, + key = {Ellis (1905)}, + lgcode = {Tahitians [tahi1242]}, + publisher = {Random House}, + title = {Studies in the psychology of sex (vol 1)}, + year = {1905} +} + +@article{handy1930, + author = {Handy, E. S. C.}, + journal = {Bull. Bishop Mus.}, + key = {Handy (1930)}, + lgcode = {Tahitians [tahi1242]}, + pages = {1-110}, + title = {History and Culture in the Society Islands}, + volume = {79}, + year = {1930} +} + +@article{henry1928, + author = {Henry, T.}, + journal = {Bull. Bishop Mus.}, + key = {Henry (1928)}, + lgcode = {Tahitians [tahi1242]}, + pages = {1-651}, + title = {Old Tahiti}, + volume = {48}, + year = {1928} +} + +@article{metraux1940, + author = {Metraux, A.}, + journal = {Bull. Bishop Mus.}, + key = {Metraux (1940)}, + lgcode = {Easter Islanders [rapa1244]}, + pages = {1-432}, + title = {Ethnology of Easter Island}, + volume = {160}, + year = {1940} +} + +@book{mckennan1959, + author = {McKennan, R. A.}, + key = {McKennan (1959)}, + lgcode = {Nabesna [uppe1437]}, + number = {55}, + pages = {1-223}, + series = {Yale University Publications in Anthropology}, + title = {The Upper Tanana Indians}, + year = {1959} +} + +@book{birketsmith1953, + author = {Birket-Smith, K.}, + address = {Copenhagen}, + key = {Birket-Smith (1953)}, + lgcode = {Chugach [chug1254]}, + pages = {1-262}, + series = {Nationalmuseets Skrifter, Etnografisk Raekkee}, + title = {The Chugach Eskimo}, + volume = {6}, + year = {1953} +} + +@article{hughes1958, + author = {Hughes, C. C.}, + journal = {American Anthropologist}, + key = {Hughes (1958)}, + lgcode = {Sivokakmeit [cent2128]}, + pages = {1140-1147}, + title = {An Eskimo Deviant from the "Eskimo" Type of Social Organization}, + volume = {60}, + year = {1958} +} + +@book{hughes1960, + author = {Hughes, C. C.}, + address = {Ithaca, New York}, + key = {Hughes (1960)}, + lgcode = {Sivokakmeit [cent2128], Sivokamiut Inuit [cent2128]}, + publisher = {Cornell University Press}, + title = {The Eskimo Village in the Modern World}, + year = {1960} +} + +@article{moore1923, + author = {Moore, R. D.}, + journal = {American Anthropologist}, + key = {Moore (1923)}, + lgcode = {Sivokakmeit [cent2128], Sivokamiut Inuit [cent2128], Ungazikmit [cent2128]}, + pages = {339-375}, + title = {Social Life of the Eskimo of St. Lawrence Island}, + volume = {25}, + year = {1923} +} + +@book{gubser1965, + author = {Gubser, N. J.}, + address = {New Haven}, + key = {Gubser (1965)}, + lgcode = {Nunamiut [nort2944]}, + title = {The Nunamiut Eskimos}, + year = {1965} +} + +@article{pospisilandlaughlin1963, + author = {Pospisil, L. and Laughlin., W. S.}, + journal = {Ethnology}, + key = {Pospisil and Laughlin (1963)}, + lgcode = {Nunamiut [nort2944]}, + pages = {180-189}, + title = {Kinship Terminology and Kindred Among the Nunamiut Eskimo}, + volume = {2}, + year = {1963} +} + +@book{spencer1959, + author = {Spencer, R. F.}, + address = {Washington, D.C.}, + key = {Spencer (1959)}, + lgcode = {Nunamiut [nort2944], Tareumiut [nort2944]}, + number = {171}, + pages = {1-490}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The North Alaskan Eskimo: A Study in Ecology and Society}, + year = {1959} +} + +@inbook{boas1888, + author = {Boas, F.}, + address = {Washington, D.C.}, + key = {Boas (1888)}, + lgcode = {Baffin Island Inuit [baff1240]}, + pages = {390-669}, + publisher = {Smithsonian Institution}, + series = {Annual Reports of the Bureau of American Ethnology}, + title = {The Central Eskimo}, + volume = {6}, + year = {1888} +} + +@article{boas190107, + author = {Boas, F.}, + journal = {Bull. Amer. Mus. Nat. Hist.}, + key = {Boas (1901-07)}, + lgcode = {Baffin Island Inuit [baff1240]}, + pages = {1-570}, + title = {The Eskimo of Baffinland and Hudson Bay}, + volume = {15}, + year = {1901-07} +} + +@book{birketsmith1928b, + author = {Birket-Smith, Kaj}, + key = {Birket-Smith (1928b)}, + lgcode = {Iglulik Inuit [west2618], Inughuit (Northern Greenland) [pola1254]}, + number = {iii}, + pages = {1-64}, + series = {Rep. Fifth Thule Exp.}, + title = {Five Hundred Eskimo Words}, + volume = {3}, + year = {1928} +} + +@article{ekblaw192728, + author = {Ekblaw, W. E.}, + journal = {Ann. Assoc. Amer. Geog.}, + key = {Ekblaw (1927-28)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]}, + pages = {147-198; 1-24}, + title = {The Material Response of the Polar Eskimo to Their Far Arctic Environment}, + volume = {17; 18}, + year = {1927-28} +} + +@article{kroeber1899, + author = {Kroeber, A. L.}, + journal = {Bull. Amer. Mus. Nat. Hist.}, + key = {Kroeber (1899)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]}, + pages = {265-327}, + title = {The Eskimo of Smith Sound}, + volume = {12}, + year = {1899} +} + +@book{oswalt1963, + author = {Oswalt, Wendell}, + address = {Tucson}, + key = {Oswalt (1963)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]}, + publisher = {University of Arizona Press}, + title = {Napaskiak, an Alaskan Eskimo community}, + year = {1963} +} + +@book{rasmussen1908, + author = {Rasmussen, K.}, + address = {London}, + key = {Rasmussen (1908)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]}, + title = {The People of the Polar North}, + year = {1908} +} + +@book{steensby1910, + author = {Steensby, H. P.}, + address = {Copenhagen}, + key = {Steensby (1910)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]}, + pages = {253-405}, + publisher = {Bianco Luno}, + series = {Meddelelser om Gronland}, + title = {Contributions to the Ethnology and Anthropogeography of the Polar Eskimos}, + volume = {34}, + year = {1910} +} + +@book{helmandlurie1961, + author = {Helm, J. and Lurie., N. O.}, + address = {Ottawa}, + key = {Helm and Lurie (1961)}, + lgcode = {Tlicho [dogr1252]}, + title = {The Subsistence Economy of the Dogrib Indians of Lac la Martre}, + year = {1961} +} + +@article{osgood1931, + author = {Osgood, C.}, + journal = {Bull. Canada Dep. Mines, Nat. Mus. Canada}, + key = {Osgood (1931)}, + lgcode = {Délįne [nort2942]}, + pages = {31-92}, + title = {The Ethnography of the Great Bear Lake Indians}, + volume = {70}, + year = {1931} +} + +@book{helm1961, + author = {Helm, J.}, + address = {Ottawa}, + key = {Helm (1961)}, + lgcode = {DeneTha [sout2959], Hare [nort2942]}, + number = {53}, + pages = {1-193}, + publisher = {Department of Northern Affairs and National Resources}, + series = {National Museums of Canada Bulletin No. 176. Anthropological Series}, + title = {The Lynx Point People: The Dynamics of a Northern Athapaskan Band}, + year = {1961} +} + +@misc{helmandleacocknd, + author = {Helm, J. and Leacock, E.}, + howpublished = {Manuscript}, + key = {Helm and Leacock (nd)}, + lgcode = {DeneTha [sout2959]}, + title = {The Hunting Tribes of Subarctic Canada} +} + +@article{honigmann1946, + author = {Honigmann, J. J.}, + journal = {Yale University Publications in Anthropology}, + key = {Honigmann (1946)}, + lgcode = {DeneTha [sout2959]}, + pages = {1-169}, + title = {Ethnography and Acculturation of the Fort Nelson Slave}, + volume = {33}, + year = {1946} +} + +@article{macneish1960b, + author = {MacNeish, June Helm.}, + journal = {Anthropologica}, + key = {MacNeish (1960b)}, + lgcode = {DeneTha [sout2959]}, + pages = {131-163}, + title = {Leadership among the Northeastern Athapascans}, + volume = {2}, + year = {1960} +} + +@article{mason1946, + author = {Mason, J. A.}, + journal = {Yale University Publications in Anthropology}, + key = {Mason (1946)}, + lgcode = {DeneTha [sout2959]}, + pages = {1-46}, + title = {Notes on the Indians of the Great Slave Lake Area}, + volume = {34}, + year = {1946} +} + +@incollection{jenness1943, + author = {Jenness, D.}, + address = {Washington, D.C.}, + booktitle = {Smithsonian Institution Anthropological Papers, No. 19-26}, + key = {Jenness (1943)}, + lgcode = {Alkatcho [sout2958], Dakelh [carr1249], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]}, + number = {133}, + pages = {469-586}, + publisher = {U.S. Government Printing Office}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Carrier Indians of the Bulkley River: Their Social and Religious Life}, + year = {1943} +} + +@article{morice1893, + author = {Morice, A. G.}, + journal = {Trans. (Roy. ) Canad. Inst.}, + key = {Morice (1893)}, + lgcode = {Chilcotin [chil1280], Dakelh [carr1249], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]}, + pages = {1-222}, + title = {Notes Archaeological, Industrial, and Sociological on the Western Denes}, + volume = {4}, + year = {1893} +} + +@article{ray1942, + author = {Ray, V. F.}, + journal = {Anthropological Records}, + key = {Ray (1942)}, + lgcode = {Bitterroot Salish [kali1309], Chilcotin [chil1280], Coeur d’Alene [coeu1236], Dakelh [carr1249], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249], Kalispel [kali1309], Klikitat [klik1240], Klikitat [nucl1237], Kutenai [kute1249], Lillooet [lill1248], Lower Chinook [chin1286], Nlaka'pamux [thom1243], Sanpoil [sanp1257], Shuswap [shus1248], Sinkiuse-Columbia [colu1250], Syilx [sout2963], Tenino [teni1238], Umatilla [umat1237], Wenatchi [wena1241]}, + pages = {99-262}, + title = {Plateau}, + volume = {8}, + year = {1942} +} + +@book{chance1966, + author = {Chance, N. A.}, + address = {New York}, + key = {Chance (1966)}, + lgcode = {Tareumiut [nort2944]}, + title = {The Eskimo of North Alaska}, + year = {1966} +} + +@article{murdoch1892, + author = {Murdoch, J.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Murdoch (1892)}, + lgcode = {Tareumiut [nort2944]}, + pages = {5-441}, + title = {Ethnological Results of the Point Barrow Expedition}, + volume = {9}, + year = {1892} +} + +@book{osgood1936, + author = {Osgood, C.}, + address = {New Haven}, + key = {Osgood (1936)}, + lgcode = {Kutchin [gwic1235]}, + number = {14}, + pages = {1-189}, + publisher = {Yale University Press}, + series = {Yale University Publications in Anthropology}, + title = {Contributions to the Ethnography of the Kutchin}, + year = {1936} +} + +@article{slobodin1962, + author = {Slobodin, R.}, + journal = {Bull. Nat. Mus. Canada}, + key = {Slobodin (1962)}, + lgcode = {Kutchin [gwic1235]}, + pages = {1-97}, + title = {Band Organization of the Peel River Kutchin}, + volume = {179}, + year = {1962} +} + +@book{birketsmith1929, + address = {Copenhagen}, + key = {Birket-Smith (1929)}, + lgcode = {Caribou Inuit [cari1277]}, + number = {i; ii}, + pages = {1-306; 1-419}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {The Caribou Eskimos}, + volume = {5} +} + +@book{rasmussen1930, + author = {Rasmussen, K.}, + address = {Copenhagen}, + key = {Rasmussen (1930)}, + lgcode = {Caribou Inuit [cari1277]}, + number = {ii}, + pages = {1-114}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {Observations on the Intellectual Culture of the Caribou Eskimo}, + volume = {7}, + year = {1930} +} + +@article{damas1964, + author = {Damas, D.}, + journal = {Ethnology}, + key = {Damas (1964)}, + lgcode = {Iglulik Inuit [west2618]}, + pages = {377-388}, + title = {The Patterning of the Iglulingmiut Kinship System}, + volume = {3}, + year = {1964} +} + +@book{mathiassen1928, + author = {Mathiassen, T.}, + address = {Copenhagen}, + key = {Mathiassen (1928)}, + lgcode = {Aivilingmiut Inuit [cari1277], Iglulik Inuit [west2618]}, + number = {i}, + pages = {1-242}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {Material Culture of the Iglulik Eskimos}, + volume = {6}, + year = {1928} +} + +@book{rasmussen1929, + author = {Rasmussen, K.}, + address = {Copenhagen}, + key = {Rasmussen (1929)}, + lgcode = {Iglulik Inuit [west2618]}, + number = {i}, + pages = {1-304}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {Intellectual Culture of the Iglulik Eskimos}, + volume = {7}, + year = {1929} +} + +@article{hawkes1916, + author = {Hawkes, M. W.}, + journal = {Mem. Canada Dept. Mines, Geol. Surv}, + key = {Hawkes (1916)}, + lgcode = {Labrador Inuit [labr1244]}, + pages = {1-165}, + title = {The Labrador Eskimo}, + volume = {91}, + year = {1916} +} + +@incollection{turner1894, + author = {Turner, L. M.}, + editor = {Powell, J. W.}, + address = {Washington, D.C.}, + booktitle = {Eleventh Annual Report of the Bureau of American Eshnology}, + key = {Turner (1894)}, + lgcode = {Labrador Inuit [labr1244]}, + pages = {159-350}, + publisher = {Smithsonian Institution}, + title = {Ethnology of the Ungava District, Hudson Bay Territory}, + year = {1894} +} + +@article{holm1911, + author = {Holm, G.}, + journal = {Medd. om Gronland}, + key = {Holm (1911)}, + lgcode = {Tasiilaq [tunu1234]}, + pages = {1-147}, + title = {Ethnological Sketch of the Angmagsalik Eskimo}, + volume = {39}, + year = {1911} +} + +@article{ostermann1938, + author = {Ostermann, H.}, + journal = {Medelelser om Gronland}, + key = {Ostermann (1938)}, + lgcode = {Tasiilaq [tunu1234]}, + pages = {3-214}, + title = {Knud Rasmussen's posthumous notes on the life and doings of the East Greenlanders in olden times}, + volume = {109}, + year = {1938} +} + +@article{rink1911, + author = {Rink, H.}, + journal = {Medd. om Gronland}, + key = {Rink (1911)}, + lgcode = {Tasiilaq [tunu1234]}, + pages = {203-223}, + title = {The East Greenland Dialect}, + volume = {39}, + year = {1911} +} + +@book{thalbitzer1914, + author = {Thalbitzer, W.}, + key = {Thalbitzer (1914)}, + lgcode = {Tasiilaq [tunu1234]}, + pages = {319-741}, + series = {Meddelelser om Gronland}, + title = {Ethnographical Collections from East Greenland}, + volume = {39}, + year = {1914} +} + +@article{thalbitzer191721, + author = {Thalbitzer, W.}, + journal = {Medd. om Gronland}, + key = {Thalbitzer (1917-21)}, + lgcode = {Tasiilaq [tunu1234]}, + pages = {113-739}, + title = {The Ammassalik Eskimo}, + volume = {40}, + year = {1917-21} +} + +@book{birketsmith1924, + author = {Birket-Smith, Kaj}, + key = {Birket-Smith (1924)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + series = {Meddelelser om Gronland}, + title = {Ethnography of the Egedesminde district}, + volume = {66}, + year = {1924} +} + +@article{bugge1952, + author = {Bugge, A.}, + journal = {Arctic}, + key = {Bugge (1952)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + pages = {45-53}, + title = {The native Greenlander--a blending of old and new}, + volume = {5}, + year = {1952} +} + +@book{cranz1767, + author = {Cranz, D.}, + address = {London}, + key = {Cranz (1767)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + publisher = {Brethren's Society}, + title = {The History of Greenland}, + volume = {1}, + year = {1767} +} + +@book{egede1818, + author = {Egede, H.}, + address = {London}, + key = {Egede (1818)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + publisher = {Allman}, + title = {A description of Greenland}, + year = {1818} +} + +@book{nansen1893, + author = {Nansen, F.}, + address = {London}, + key = {Nansen (1893)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + publisher = {Longmans, Green & Co.}, + title = {Eskimo life}, + year = {1893} +} + +@article{porsild1915, + author = {Porsild, M. P.}, + journal = {Meddelelser om Gronland}, + key = {Porsild (1915)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + pages = {115-250}, + title = {Studies on the material culture of the Eskimo in West Greenland}, + volume = {51}, + year = {1915} +} + +@book{rink1877, + author = {Rink, H.}, + editor = {Brown, R.}, + address = {London}, + key = {Rink (1877)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + publisher = {H. S. King}, + title = {Danish Greenland: Its People and Its Products}, + year = {1877} +} + +@book{saabye1818, + author = {Saabye, H. E.}, + address = {London}, + key = {Saabye (1818)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + publisher = {Boosey & Sons}, + title = {Greenland}, + year = {1818} +} + +@article{osgood1933, + author = {Osgood, C.}, + glottolog_ref = {anla:TI931O1933}, + journal = {American Anthropologist}, + key = {Osgood (1933)}, + lgcode = {Dena'ina [tana1289]}, + pages = {695-717}, + title = {Tanaina Culture}, + volume = {35}, + year = {1933} +} + +@book{osgood1937, + author = {Osgood, C.}, + address = {New Haven}, + key = {Osgood (1937)}, + lgcode = {Dena'ina [tana1289]}, + number = {16}, + pages = {1-229}, + publisher = {Yale University Press}, + series = {Yale University Publications in Anthropology}, + title = {The Ethnography of the Tanaina}, + year = {1937} +} + +@book{emmons1911, + author = {Emmons, G. T.}, + address = {Philadelphia}, + key = {Emmons (1911)}, + lgcode = {Tahltan [tahl1239]}, + number = {1}, + pages = {1-120}, + publisher = {University of Pennsylvania Museum}, + series = {University of Pennsylvania Museum Anthropological Publications}, + title = {The Tahltan Indians}, + volume = {4}, + year = {1911} +} + +@article{maclachlan1957, + author = {MacLachlan, B. B.}, + journal = {Anthropologica}, + key = {MacLachlan (1957)}, + lgcode = {Tahltan [tahl1239]}, + pages = {1-11}, + title = {Notes on Some Tahltan Oral Literature}, + volume = {4}, + year = {1957} +} + +@incollection{teit1906a, + author = {Teit, J. A.}, + address = {New York}, + booktitle = {Boas Anniversary Volume}, + key = {Teit (1906a)}, + lgcode = {Tahltan [tahl1239]}, + pages = {337-349}, + title = {Notes on the Tahltan Indians}, + year = {1906} +} + +@article{teit1956, + author = {Teit, J. A.}, + journal = {Anthropologica}, + key = {Teit (1956)}, + lgcode = {Kaska [kask1239], Tahltan [tahl1239]}, + pages = {39-171}, + title = {Field Notes on the Tahltan and Kaska Indians, 1912-1915}, + volume = {3}, + year = {1956} +} + +@book{jenness1937, + author = {Jenness, D.}, + address = {Ottawa}, + key = {Jenness (1937)}, + lgcode = {Dakelh [carr1249], Sekani [seka1250]}, + number = {84}, + pages = {1-82}, + publisher = {Canada Department of Mines and Resources}, + series = {National Museums of Canada Bulletin}, + title = {The Sekani Indians of British Columbia}, + year = {1937} +} + +@article{goddard1916, + author = {Goddard, P. E.}, + address = {New York}, + journal = {Anthropological Papers}, + key = {Goddard (1916)}, + lgcode = {Beaver [beav1236]}, + number = {4}, + pages = {201-293}, + publisher = {American Museum of Natural History}, + title = {The Beaver Indians}, + volume = {10}, + year = {1916} +} + +@article{jenness1917, + author = {Jenness, D.}, + journal = {Geographical Review}, + key = {Jenness (1917)}, + lgcode = {Copper Inuit [copp1244]}, + pages = {81-91}, + title = {The Copper Eskimos}, + volume = {4}, + year = {1917} +} + +@book{jenness1922, + author = {Jenness, D.}, + address = {Ottawa}, + key = {Jenness (1922)}, + lgcode = {Copper Inuit [copp1244], Inupiat [nort2944]}, + pages = {5-277}, + publisher = {Voliza}, + series = {Report of the Canadian Arctic Expedition 1913-1918}, + title = {The Life of the Copper Eskimo}, + volume = {12}, + year = {192} +} + +@book{jenness1928, + author = {Jenness, D.}, + address = {New York}, + key = {Jenness (1928)}, + lgcode = {Copper Inuit [copp1244]}, + title = {People of the Twilight}, + year = {1928} +} + +@misc{rasmussen1932, + author = {Rasmussen, K.}, + address = {Copenhagen}, + key = {Rasmussen (1932)}, + lgcode = {Copper Inuit [copp1244]}, + pages = {1-350}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {Intellectual Culture of the Copper Eskimos}, + volume = {9}, + year = {1932} +} + +@article{stefansson1914, + author = {Stefansson, V.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Stefansson (1914)}, + lgcode = {Copper Inuit [copp1244]}, + pages = {1-395}, + title = {The Stefansson-Anderson Arctic Expedition}, + volume = {14}, + year = {1914} +} + +@book{birketsmith1930, + author = {Birket-Smith, Kaj}, + key = {Birket-Smith (1930)}, + lgcode = {Dene [chip1261]}, + number = {iii}, + pages = {1-113}, + series = {Rep. Fifth Thule Exp.}, + title = {Contributions to Chipewyan Ethnology}, + volume = {5}, + year = {1930} +} + +@article{macneish1960a, + author = {MacNeish, J. H.}, + journal = {American Anthropologist}, + key = {MacNeish (1960a)}, + lgcode = {Dene [chip1261]}, + pages = {279-295}, + title = {Kin Terms of the Arctic Drainage Dene}, + volume = {62}, + year = {1960} +} + +@article{vanstone1965, + author = {Van Stone, J. W.}, + journal = {Bull. Nat. Mus. Canada}, + key = {Van Stone (1965)}, + lgcode = {Dene [chip1261]}, + pages = {1-133}, + title = {The Changing Culture of the Snowdrift Chipeyan}, + volume = {209}, + year = {1965} +} + +@article{skinner1912, + author = {Skinner, A.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Skinner (1912)}, + lgcode = {Eastern Cree [sout2978], Northern Saulteaux [alba1270]}, + pages = {1-177}, + title = {Notes on the Eastern Cree and the Northern Saulteaux}, + volume = {9}, + year = {1912} +} + +@article{burgesse1944, + author = {Burgesse, J. A.}, + journal = {Primitive Man}, + key = {Burgesse (1944)}, + lgcode = {Montagnais [mont1268]}, + pages = {1-18}, + title = {The Woman and Child Among the Lac-St.-Jean Montagnais}, + volume = {17}, + year = {1944} +} + +@book{lane1952, + author = {Lane, K. S.}, + address = {Berkeley, Calif.}, + key = {Lane (1952)}, + lgcode = {Montagnais [mont1268]}, + number = {7}, + pages = {1-62}, + publisher = {Kroeber Anthropological Society}, + series = {Kroeber Anthropological Society Papers}, + title = {The Montagnais Indians 1600-1640}, + year = {1952} +} + +@article{leacock1969, + author = {Leacock, E.}, + journal = {Bulletins of the National Museum of Canada}, + key = {Leacock (1969)}, + lgcode = {Montagnais [mont1268]}, + pages = {1-20}, + title = {The Montagnais-Naskapi Band}, + volume = {228}, + year = {1969} +} + +@article{lips1947a, + author = {Lips, J. E.}, + journal = {Transactions of the American Philosophical Society (Philadelphia)}, + key = {Lips (1947a)}, + lgcode = {Mistissini Cree [sout2978], Montagnais [mont1268], Naskapi [nask1242]}, + number = {4}, + pages = {379-492}, + title = {Naskapi Law: Law and Order in a Hunting Society}, + volume = {37}, + year = {1947} +} + +@article{lips1947b, + author = {Lips, J. E.}, + journal = {Ethnos}, + key = {Lips (1947b)}, + lgcode = {Montagnais [mont1268]}, + pages = {1-78}, + title = {Notes on Montagnais-Naskapi Economy}, + volume = {12}, + year = {1947} +} + +@article{speck1931, + author = {Speck, F. G.}, + journal = {American Anthropologist}, + key = {Speck (1931)}, + lgcode = {Montagnais [mont1268]}, + pages = {557-600}, + title = {Montagnais-Naskapi Bands and Early Eskimo Distributions in the Labrador Peninsula}, + volume = {33}, + year = {1931} +} + +@book{speck1935, + author = {Speck, F. G.}, + address = {Norman}, + glottolog_ref = {hh:e:Speck:Naskapi}, + key = {Speck (1935)}, + lgcode = {Montagnais [mont1268], Naskapi [nask1242]}, + pages = {257}, + publisher = {Norman: University of Oklahoma Press}, + title = {Naskapi}, + year = {1935} +} + +@book{dunning1959b, + author = {Dunning, R. W.}, + address = {Toronto}, + key = {Dunning (1959b)}, + lgcode = {Northern Saulteaux [alba1270], Pekangekum [lacs1238]}, + title = {Social and Economic Change Among the Northern Ojibwa}, + year = {1959} +} + +@article{hallowell1938a, + author = {Hallowell, A. I.}, + journal = {Journal of Social Psychology}, + key = {Hallowell (1938a)}, + lgcode = {Northern Saulteaux [alba1270]}, + pages = {25-47}, + title = {Fear and Anxiety as Cultural and Individual Variables in a Primitive Society}, + volume = {9}, + year = {1938} +} + +@article{hallowell1938b, + author = {Hallowell, A. I.}, + journal = {Journal de la Soci‚t‚ des Am‚ricanistes, n. s.}, + key = {Hallowell (1938b)}, + lgcode = {Northern Saulteaux [alba1270]}, + pages = {128-140}, + title = {Notes on the Material Culture of the Island Lake Saulteaux}, + volume = {30}, + year = {1938} +} + +@article{hallowell1939, + author = {Hallowell, A. I.}, + journal = {British Journal of Medical Psychology}, + key = {Hallowell (1939)}, + lgcode = {Northern Saulteaux [alba1270]}, + pages = {191-197}, + title = {Sin, Sex and Sickness in Saulteaux Belief}, + volume = {18}, + year = {1939} +} + +@article{hallowell1940, + author = {Hallowell, A. I.}, + journal = {Psychiatry}, + key = {Hallowell (1940)}, + lgcode = {Northern Saulteaux [alba1270]}, + pages = {395-407}, + title = {Aggression in Saulteaux Society}, + volume = {3}, + year = {1940} +} + +@article{hallowell1941, + author = {Hallowell, A. I.}, + journal = {American Sociological Review}, + key = {Hallowell (1941)}, + lgcode = {Northern Saulteaux [alba1270]}, + pages = {869-881}, + title = {The Social Function of Anxiety in a Primitive Society}, + volume = {6}, + year = {1941} +} + +@article{hallowell1942, + author = {Hallowell, A. I.}, + journal = {Publications, Philadelphia Anthropological Society}, + key = {Hallowell (1942)}, + lgcode = {Northern Saulteaux [alba1270]}, + pages = {1-96}, + title = {The Role of Conjuring in Saulteaux Society}, + volume = {2}, + year = {1942} +} + +@book{hallowell1955, + author = {Hallowell, A. I.}, + address = {Philadelphia}, + key = {Hallowell (1955)}, + lgcode = {Northern Saulteaux [alba1270]}, + publisher = {University of Pennsylvania Press}, + title = {Culture and Experience}, + year = {1955} +} + +@incollection{hallowell1963, + author = {Hallowell, A. I.}, + editor = {Goldstone, I.}, + address = {New York}, + booktitle = {Man's Image in Medicine and Anthropology}, + key = {Hallowell (1963)}, + lgcode = {Northern Saulteaux [alba1270]}, + pages = {258-315}, + title = {Ojibwa World View and Disease}, + year = {1963} +} + +@article{dunning1959a, + author = {Dunning, R. W.}, + journal = {American Anthropologist}, + key = {Dunning (1959a)}, + lgcode = {Pekangekum [lacs1238]}, + pages = {806-816}, + title = {Rules of Residence and Ecology Among the Northern Ojibwa}, + volume = {61}, + year = {1959} +} + +@incollection{cameron1890, + author = {Cameron, D.}, + editor = {Masson, L. F. R.}, + address = {Quebec}, + booktitle = {Les Bourgeois de la Compagnie du Nord-Ouest}, + key = {Cameron (1890)}, + lgcode = {Nipigon [cent2136]}, + pages = {229-300}, + title = {A sketch of the customs, manners, and way of living of the natives in the barren country about Nipigon}, + volume = {2}, + year = {1890} +} + +@incollection{grant1890, + author = {Grant, P.}, + editor = {Masson, L. F. R.}, + address = {Quebec}, + booktitle = {Les Bouregeois de la Compagnie du Nord-Ouest}, + key = {Grant (1890)}, + lgcode = {Katikitegon [uppe1274], Nipigon [cent2136]}, + pages = {303-366}, + title = {The Saulteaux Indians About 1804}, + volume = {2}, + year = {1890} +} + +@book{barnouw1950, + author = {Barnouw, Victor}, + key = {Barnouw (1950)}, + lgcode = {Minnesota Ojibwa [redl1238]}, + series = {American Anthropological Association, Memoir}, + title = {Acculturation and personality among the Wisconsin Chippewa}, + volume = {72}, + year = {1950} +} + +@article{barrett1911a, + author = {Barrett, S. A.}, + address = {Milwaukee, Wisconsin}, + journal = {Bulletin of the Public Museum of the City of Milwaukee}, + key = {Barrett (1911a)}, + lgcode = {Minnesota Ojibwa [redl1238]}, + number = {2}, + pages = {251-406}, + title = {The dream dance of the Chippewa and Menominee Indians of northern Wisconsin}, + volume = {1}, + year = {1911} +} + +@article{densmore1929, + author = {Densmore, F.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Densmore (1929)}, + lgcode = {Minnesota Ojibwa [redl1238]}, + pages = {1-204}, + title = {Chippewa Customs}, + volume = {86}, + year = {1929} +} + +@article{hesketh1923, + author = {Hesketh, J.}, + journal = {Collections of the North Dakota State Historical Society}, + key = {Hesketh (1923)}, + lgcode = {Bungi [west1510], Minnesota Ojibwa [redl1238]}, + pages = {85-154}, + title = {History of the Turtle Mountain Chipewa}, + volume = {5}, + year = {1923} +} + +@book{hilger1939, + author = {Hilger, M. Inez}, + address = {Washington}, + key = {Hilger (1939)}, + lgcode = {Minnesota Ojibwa [redl1238]}, + publisher = {The Catholic University of America Press}, + title = {A social study of one hundred fifty Chippewa Indian families of the White Earth Reservation of Minnesota}, + year = {1939} +} + +@book{hilger1951, + author = {Hilger, M. I.}, + address = {Washington}, + key = {Hilger (1951)}, + lgcode = {Minnesota Ojibwa [redl1238]}, + number = {146}, + publisher = {Smithsonian Institution}, + series = {Smithsonian Institution, Bureau of American Ethnology, Bulletin}, + title = {Chippewa child life and its cultural background}, + year = {1951} +} + +@book{kinietz1947, + author = {Kinietz, W. V.}, + address = {Bloomfield Hills, Mich.}, + key = {Kinietz (1947)}, + lgcode = {Katikitegon [uppe1274], Minnesota Ojibwa [redl1238]}, + number = {25}, + publisher = {Cranbrook Institute of Science}, + series = {Cranbrook Institute of Science Bulletin}, + title = {Chippewa Village: The Story of Kitikitegon}, + year = {1947} +} + +@article{landes1937a, + author = {Landes, R.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Landes (1937a)}, + lgcode = {Rainy River Ojibwe [rain1239]}, + pages = {1-144}, + title = {Ojibwa Sociology}, + volume = {29}, + year = {1937} +} + +@incollection{landes1937b, + author = {Landes, R.}, + editor = {Mead, M.}, + address = {New York}, + booktitle = {Cooperation and Competition Among Primitive Peoples}, + key = {Landes (1937b)}, + lgcode = {Rainy River Ojibwe [rain1239]}, + pages = {87-126}, + title = {The Ojibwa of Canada}, + year = {1937} +} + +@article{landes1938, + author = {Landes, R.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Landes (1938)}, + lgcode = {Rainy River Ojibwe [rain1239]}, + pages = {1-247}, + title = {The Ojibwa Woman}, + volume = {31}, + year = {1938} +} + +@book{jenness1935, + author = {Jenness, D.}, + address = {Ottawa}, + key = {Jenness (1935)}, + lgcode = {Eastern Ojibwa [east2542]}, + number = {78}, + pages = {1-115}, + publisher = {Canada Department of Mines and Resources}, + series = {National Museums of Canada Bulletin}, + title = {The Ojibwa Indians of Parry Island: Their Social and Religious Life}, + year = {1935} +} + +@book{honigmann1949, + author = {Honigmann, J. J.}, + address = {New Haven, Conn.}, + key = {Honigmann (1949)}, + lgcode = {Attawapiskat Cree [swam1239], Kaska [kask1239]}, + number = {40}, + pages = {1-368}, + publisher = {Yale University Press}, + series = {Yale University Publications in Anthropology}, + title = {Culture and Ethos of Kaska Society}, + year = {1949} +} + +@book{honigmann1954, + author = {Honigmann, J. J.}, + journal = {Yale University Publications in Anthropology}, + key = {Honigmann (1954)}, + lgcode = {Kaska [kask1239]}, + pages = {1-163}, + title = {The Kaska Indians: An Ethnographic Reconstruction}, + volume = {51}, + year = {1954} +} + +@article{underwoodandhonigmann1947, + author = {Underwood, F. W. and Honigmann., I.}, + journal = {American Anthropologist}, + key = {Underwood and Honigmann (1947)}, + lgcode = {Haitians [hait1244], Kaska [kask1239]}, + pages = {557-77}, + title = {A Comparison of Socialization and Personality in Two Simple Societies}, + volume = {49}, + year = {1947} +} + +@article{kinietz1940c, + author = {Kinietz, W. V.}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + key = {Kinietz (1940c)}, + lgcode = {Ottawa [otta1242]}, + pages = {226-307}, + title = {The Indian Tribes of the Western Great Lakes}, + volume = {10}, + year = {1940} +} + +@article{morgan1871, + author = {Morgan, L. H.}, + journal = {Smiths. Cont. Knowl.}, + key = {Morgan (1871)}, + lgcode = {Iowa [iowa1246], Kickapoo [kick1244], Myaamia [miam1252], Ottawa [otta1242], Seneca [sene1264]}, + pages = {281-382}, + title = {Systems of Consanguinity and Affinity of the Human Family}, + volume = {17}, + year = {1871} +} + +@article{bock1966, + author = {Bock, P. K.}, + journal = {Bulletins of the National Museum of Canada}, + key = {Bock (1966)}, + lgcode = {Mi'kmaq [mikm1235]}, + pages = {1-95}, + title = {The Micmac Indians of Restigouche}, + volume = {213}, + year = {1966} +} + +@article{denys1908, + author = {Denys, N.}, + editor = {Ganong, W. F.}, + journal = {Publications of the Champlain Society}, + key = {Denys (1908)}, + lgcode = {Mi'kmaq [mikm1235]}, + pages = {399-452, 572-606}, + title = {The Description and Natural History of the Coasts of North America}, + volume = {2}, + year = {1908} +} + +@article{johnson1943, + author = {Johnson, F.}, + journal = {Primitive Man}, + key = {Johnson (1943)}, + lgcode = {Mi'kmaq [mikm1235]}, + pages = {53-80}, + title = {Notes on Micmac Shamanism}, + volume = {16}, + year = {1943} +} + +@book{leclercq1910, + author = {Le Clercq, C.}, + editor = {Ganong, W. F.}, + key = {Le Clercq (1910)}, + lgcode = {Mi'kmaq [mikm1235]}, + pages = {1-452}, + series = {Publications of the Champlain Society}, + title = {New Relation of Gaspesia}, + volume = {5}, + year = {1910} +} + +@article{speckanddexter1951, + author = {Speck, F. G. and Dexter, R. W.}, + journal = {Journal of the Washington Academy of Sciences}, + key = {Speck and Dexter (1951)}, + lgcode = {Mi'kmaq [mikm1235]}, + number = {8}, + pages = {250-259}, + title = {Utilization of Animals and Plants by the Micmac Indians of New Brunwick}, + volume = {41}, + year = {1951} +} + +@book{wallisandwallis1955, + author = {Wallis, W. D. and Wallis, R. S.}, + address = {Minneapolis}, + key = {Wallis and Wallis (1955)}, + lgcode = {Mi'kmaq [mikm1235]}, + publisher = {University of Minnesota Press}, + title = {The Micmac Indians of Eastern Canada}, + year = {1955} +} + +@article{kinietz1940d, + author = {Kinietz, W. V.}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + key = {Kinietz (1940d)}, + lgcode = {Potawatomi [pota1247]}, + pages = {308-316}, + title = {The Indian Tribes of the Western Great Lakes}, + volume = {10}, + year = {1940} +} + +@article{quimby1940, + author = {Quimby and I., G. and Jr.}, + journal = {Papers of the Michigan Academy of Science, Arts, and Letters}, + key = {Quimby (1940)}, + lgcode = {Potawatomi [pota1247]}, + pages = {553-563}, + title = {Some Notes on Kinship and Kinship Terminology Among the Potawatomi}, + volume = {25}, + year = {1940} +} + +@book{searey1965, + author = {Searey, Ann McElroy}, + key = {Searey (1965)}, + lgcode = {Potawatomi [pota1247]}, + series = {Kansas University, Potawatomi Study Research Report}, + title = {Contemporary and traditional Prairie Potawatomi child life}, + year = {1965} +} + +@article{skinner1924, + author = {Skinner, A.}, + journal = {Bull. Pub. Mus. Milwaukee}, + key = {Skinner (1924)}, + lgcode = {Potawatomi [pota1247]}, + pages = {1-262}, + title = {The Mascoutens or Prairie Potawatomi Indians}, + volume = {6}, + year = {1924} +} + +@article{balikei1963a, + author = {Balikei, A.}, + journal = {L'Homme}, + key = {Balikei (1963a)}, + lgcode = {Netsilik [nets1241]}, + pages = {88-101}, + title = {Le regime matrimonial des Esquimaux Netsilik}, + volume = {1963}, + year = {1963} +} + +@article{balikei1963b, + author = {Balikei, A.}, + journal = {Southw. Journ. Anth.}, + key = {Balikei (1963b)}, + lgcode = {Netsilik [nets1241]}, + pages = {380-396}, + title = {Shamanistic Behavior Among the Netsilik Eskimos}, + volume = {19}, + year = {1963} +} + +@misc{rasmussen1931, + author = {Rasmussen, K.}, + address = {Copenhagen}, + key = {Rasmussen (1931)}, + lgcode = {Netsilik [nets1241], Utkuhikhalingmiut [nets1241]}, + number = {i-ii}, + pages = {1-542}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {The Netsilik Eskimos: Social Life and Spirital Culture}, + volume = {8}, + year = {1931} +} + +@book{graburn1964, + author = {Graburn, N. H. H.}, + address = {Ottawa}, + key = {Graburn (1964)}, + lgcode = {Taqagmiut [queb1248]}, + title = {Taqagmiut Eskimo Kinship Terminology}, + year = {1964} +} + +@article{rogers1963a, + author = {Rogers, E. S.}, + journal = {Bull. Nat. Mus. Canada}, + key = {Rogers (1963a)}, + lgcode = {Mistissini Cree [sout2978], Round Lake Ojibwa [seve1241]}, + pages = {1-95}, + title = {The Hunting Group-Hunting Territory Complex Among the Mistassini Indians}, + volume = {195}, + year = {1963} +} + +@article{rogersandrogers1963, + author = {Rogers, E. S. and Rogers, J. H.}, + journal = {Bull. Nat. Mus. Canada}, + key = {Rogers and Rogers (1963)}, + lgcode = {Mistissini Cree [sout2978], Montagnais [mont1268]}, + pages = {14-36}, + title = {The Individual in Mistassini Society from Birth to Death}, + volume = {190}, + year = {1963} +} + +@article{speck1923, + author = {Speck, F. G.}, + journal = {American Anthropologist}, + key = {Speck (1923)}, + lgcode = {Mistissini Cree [sout2978]}, + pages = {425-471}, + title = {Mistassini Hunting Territories in the Labrador Peninsula}, + volume = {25}, + year = {1923} +} + +@article{speck1930, + author = {Speck, F. G.}, + journal = {Indian Notes}, + key = {Speck (1930)}, + lgcode = {Mistissini Cree [sout2978]}, + pages = {410-457}, + title = {Mistassini Notes}, + volume = {7}, + year = {1930} +} + +@article{strong1929b, + author = {Strong, W. D.}, + journal = {American Anthropologist}, + key = {Strong (1929b)}, + lgcode = {Naskapi [nask1242]}, + pages = {277-288}, + title = {Cross-Cousin Marriage and the Culture of the Northeastern Algonquian}, + volume = {31}, + year = {1929} +} + +@article{turner1890, + author = {Turner, L. M.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Turner (1890)}, + lgcode = {Naskapi [nask1242]}, + pages = {159-184, 267-350}, + title = {Ethnology of the Ungave District}, + volume = {11}, + year = {1890} +} + +@article{lantis1946, + author = {Lantis, M.}, + journal = {Transactions of the American Philosophical Society (Philadelphia)}, + key = {Lantis (1946)}, + lgcode = {Nunivak [kusk1241]}, + number = {3}, + pages = {29-328}, + title = {The Social Culture of the Nunivak Eskimo}, + volume = {35}, + year = {1946} +} + +@article{gmann1953, + author = {gmann, J. J.}, + journal = {Anthropos}, + key = {gmann (1953)}, + lgcode = {Attawapiskat Cree [swam1239]}, + pages = {809-816}, + title = {Social Organization of the Attawapiskat Cree Indians}, + volume = {47}, + year = {1953} +} + +@article{honigmann1956b, + author = {Honigmann, J. J.}, + journal = {Anthropological Papers of the University of Alaska}, + key = {Honigmann (1956b)}, + lgcode = {Attawapiskat Cree [swam1239]}, + pages = {23-82}, + title = {The Attawapiskat Swampy Cree: An Ethnographic Reconstruction}, + volume = {5}, + year = {1956} +} + +@book{osgood1940, + author = {Osgood, C.}, + key = {Osgood (1940)}, + lgcode = {Deg Xit'an [dege1248]}, + number = {22}, + pages = {1-500}, + series = {Yale University Publications in Anthropology}, + title = {Ingalik Material Culture}, + year = {1940} +} + +@book{osgood1958, + author = {Osgood, C.}, + address = {New Haven}, + key = {Osgood (1958)}, + lgcode = {Deg Xit'an [dege1248]}, + number = {53}, + pages = {1-289}, + publisher = {Yale University Press}, + series = {Yale University Publications in Anthropology}, + title = {Ingalik Social Culture}, + year = {1958} +} + +@book{osgood1959, + author = {Osgood, C.}, + key = {Osgood (1959)}, + lgcode = {Deg Xit'an [dege1248]}, + number = {56}, + pages = {1-195}, + series = {Yale University Publications in Anthropology}, + title = {Ingalik Mental Culture}, + year = {1959} +} + +@article{bank1953, + author = {Bank, T. P.}, + journal = {Papers of the Michigan Academy of Science, Arts, and Letters}, + key = {Bank (1953)}, + lgcode = {Aleut [east2533]}, + pages = {415-431}, + title = {Health and Medical Lore of the Aleuts}, + volume = {38}, + year = {1953} +} + +@book{cook1785, + author = {Cook, J.}, + address = {London}, + key = {Cook (1785)}, + lgcode = {Aleut [east2533]}, + title = {A Voyage to the Pacific Ocean}, + year = {1785} +} + +@book{coxe1804, + author = {Coxe, W.}, + address = {London}, + key = {Coxe (1804)}, + lgcode = {Aleut [east2533]}, + title = {Account of Russian Discoveries Between Asia and America}, + year = {1804} +} + +@book{elliott1886, + author = {Elliott, H. W.}, + address = {New York}, + key = {Elliott (1886)}, + lgcode = {Aleut [east2533]}, + title = {Our Arctic Province}, + year = {1886} +} + +@book{golder192225, + author = {Golder, F. A.}, + address = {New York}, + key = {Golder (1922-25)}, + lgcode = {Aleut [east2533]}, + title = {Bering's Voyages. 2v}, + year = {1922-25} +} + +@book{jochelson1925, + author = {Jochelson, W.}, + address = {Washington}, + glottolog_ref = {anla:AL909J1925b}, + key = {Jochelson (1925)}, + lgcode = {Aleut [east2533], Tlingit [tlin1245]}, + number = {367}, + series = {Carnegie Institution of Washington Publication}, + title = {Archeaological Investigations in the Aleutian Islands}, + year = {1925} +} + +@book{langsdorff1817, + author = {Langsdorff, G. H. von.}, + address = {London}, + key = {Langsdorff (1817)}, + lgcode = {Aleut [east2533]}, + title = {Voyages and Travels}, + year = {1817} +} + +@book{lantis1970b, + author = {Lantis, M.}, + address = {Lexington, Ky.}, + key = {Lantis (1970b)}, + lgcode = {Aleut [east2533]}, + title = {Ethnohistory in Southwestern Alaska and the Southern Yukon}, + year = {1970} +} + +@book{sarychev1806, + author = {Sarychev, Gavriil A.}, + address = {London}, + key = {Sarychev (1806)}, + lgcode = {Aleut [east2533]}, + title = {Account of a Voyage of Discovery to the Northeast of Siberia}, + volume = {2}, + year = {1806} +} + +@book{sauer1802, + author = {Sauer, M.}, + address = {London}, + glottolog_ref = {anla:AL791S1802}, + key = {Sauer (1802)}, + lgcode = {Aleut [east2533]}, + title = {An Account of a Geographical and Astronomical Expedition to the Northern Parts of Russia}, + year = {1802} +} + +@misc{veniaminov1840, + author = {Veniaminov, I. E. P.}, + address = {St. Petersburg}, + glottolog_ref = {anla:TL840V1840}, + key = {Veniaminov (1840)}, + lgcode = {Aleut [east2533]}, + note = {3v}, + title = {Zapiski ob ostrovakh Unalashkhinskago Otdela}, + year = {1840} +} + +@article{murdock1934a, + author = {Murdock, G. P.}, + glottolog_ref = {anla:HA934M1934}, + journal = {American Anthropologist}, + key = {Murdock (1934a)}, + lgcode = {Haida [nort2938], Haida (Northern) [nort2938], Haida (Southern) [sout2956]}, + pages = {355-385}, + title = {Kinship and Social Behavior among the Haida}, + volume = {36}, + year = {1934} +} + +@article{murdock1936a, + author = {Murdock, G. P.}, + glottolog_ref = {anla:HA934M1936}, + journal = {Yale University Publications in Anthropology}, + key = {Murdock (1936a)}, + lgcode = {Haida [nort2938], Haida (Northern) [nort2938], Haida (Southern) [sout2956]}, + pages = {1-20}, + title = {Rank and Potlach among the Haida}, + volume = {13}, + year = {1936} +} + +@incollection{niblack1890, + author = {Niblack, A. P.}, + booktitle = {Annual Reports of the Board of Regents, Smithsonian Institution for the year ending June 30, 1888}, + key = {Niblack (1890)}, + lgcode = {Haida [nort2938]}, + pages = {225-386}, + title = {The Coastal Indians of Southern Alaska and Northern British Columbia}, + year = {1890} +} + +@article{swanton1909, + author = {Swanton, J. R.}, + journal = {Memoirs of the American Museum of Natural History}, + key = {Swanton (1909)}, + lgcode = {Haida [nort2938], Haida (Northern) [nort2938], Haida (Southern) [sout2956]}, + pages = {1-300}, + title = {Contributions to the Ethnology of the Haida}, + volume = {8}, + year = {1909} +} + +@incollection{goldman1940, + author = {Goldman, Irving}, + editor = {Linton, R.}, + address = {New York}, + booktitle = {Acculturation in Seven American Indian Tribes}, + key = {Goldman (1940)}, + lgcode = {Achumawi [achu1247], Alkatcho [sout2958], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]}, + pages = {333-386}, + publisher = {D. Appleton-Century}, + title = {The Alkatcho Carrier of British Columbia}, + year = {1940} +} + +@article{goldman1941, + author = {Goldman, I.}, + journal = {American Anthropologist}, + key = {Goldman (1941)}, + lgcode = {Achumawi [achu1247], Alkatcho [sout2958], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]}, + pages = {396-418}, + title = {The Alkatcho Carrier}, + volume = {43}, + year = {1941} +} + +@book{drucker1951, + author = {Drucker, P.}, + address = {Washington, D.C.}, + key = {Drucker (1951)}, + lgcode = {Nuu chah nulth [nuuc1236]}, + number = {144}, + pages = {1-480}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Northern and Central Nootkan Tribes}, + year = {1951} +} + +@book{koppert1930b, + author = {Koppert, V. A.}, + key = {Koppert (1930b)}, + lgcode = {Nuu chah nulth [nuuc1236]}, + pages = {1-124}, + series = {Cath. Univ. Anth. Ser.}, + title = {Contributions to Clayoquot Ethnology}, + volume = {1}, + year = {1930} +} + +@article{barnett1938, + author = {Barnett, H. G.}, + journal = {American Anthropologist}, + key = {Barnett (1938)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Musqueam [musq1240], Squamish [squa1248]}, + pages = {118-141}, + title = {The Coast Salish of Canada}, + volume = {40}, + year = {1938} +} + +@article{barnett1939, + author = {Barnett, H. G.}, + journal = {Anth. Rec.}, + key = {Barnett (1939)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Pentlatch [pent1242], Squamish [squa1248], West Saanich [saan1246]}, + pages = {221-295}, + title = {Gulf of Georgia Salish}, + volume = {1}, + year = {1939} +} + +@book{barnett1955, + author = {Barnett, H. G.}, + address = {Eugene}, + key = {Barnett (1955)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Musqueam [musq1240], Pentlatch [pent1242], Squamish [squa1248], West Saanich [saan1246]}, + title = {The Coast Salish of British Columbia}, + year = {1955} +} + +@article{hilltout1900, + author = {Hill-Tout, C.}, + journal = {Rep. Brit. Assoc. Adv. Sci.}, + key = {Hill-Tout (1900)}, + lgcode = {Squamish [squa1248]}, + pages = {472-549}, + title = {Notes on the Sk. qo'mic of British J952 Columbia}, + volume = {70}, + year = {1900} +} + +@book{curtis1912, + author = {Curtis, E. S.}, + address = {Norwood}, + key = {Curtis (1912)}, + lgcode = {Lummi [lumm1243]}, + pages = {19-195}, + series = {The North American Indian}, + title = {The Salishan tribes of the coast. The Chimakum and the Quilliute. The Willapa.}, + volume = {9}, + year = {1912} +} + +@book{stern1934, + author = {Stern, B. J.}, + address = {New York}, + key = {Stern (1934)}, + lgcode = {Lummi [lumm1243]}, + pages = {1-127}, + publisher = {Columbia University Press}, + series = {Columbia Univ. Contr. Anth.}, + title = {The Lummi Indians of Northwestern Washington}, + volume = {17}, + year = {1934} +} + +@article{suttles1954, + author = {Suttles, Wayne}, + journal = {Brit. Colum. Hist. Quart.}, + key = {Suttles (1954)}, + lgcode = {Lummi [lumm1243]}, + pages = {29-102}, + title = {Post-contact Culture Changes Among the Lummi Indians}, + volume = {18}, + year = {1954} +} + +@article{eells1887b, + author = {Eells, M.}, + journal = {Ann. Rep. Smiths. Inst.}, + key = {Eells (1887b)}, + lgcode = {Klallam [clal1241]}, + pages = {605-681}, + title = {The Twana, Chemakum and Clallum Indians of Washington}, + volume = {1886-87}, + year = {1887} +} + +@article{gunthere1927, + author = {Gunthere, E.}, + journal = {Univ. Wash. Publ. Anth.}, + key = {Gunthere (1927)}, + lgcode = {Klallam [clal1241]}, + pages = {171-314}, + title = {Klallam Ethnography}, + volume = {1}, + year = {1927} +} + +@article{ballard1935, + author = {Ballard, A. C.}, + journal = {American Anthropologist}, + key = {Ballard (1935)}, + lgcode = {Puyallup [sout2965]}, + pages = {111-116}, + title = {Southern Puget Sound Salish Kinship Terms}, + volume = {37}, + year = {1935} +} + +@article{haeberlinandgunther1930, + author = {Haeberlin, H. K. and Gunther., E.}, + journal = {Univ. Wash. Publ. Anth.}, + key = {Haeberlin and Gunther (1930)}, + lgcode = {Puyallup [sout2965]}, + pages = {1-83}, + title = {The Indians of Puget Sound}, + volume = {4}, + year = {1930} +} + +@article{smith1940b, + author = {Smith, N. W.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Smith (1940b)}, + lgcode = {Puyallup [sout2965]}, + pages = {1-336}, + title = {The Puyallup-Nisqually}, + volume = {32}, + year = {1940} +} + +@article{pettitt1950, + author = {Pettitt, G. A.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Pettitt (1950)}, + lgcode = {Quileute [quil1240]}, + number = {1}, + pages = {1-128}, + publisher = {University of California Press}, + title = {The Quileute of La Push: 1775-1945}, + volume = {14}, + year = {1950} +} + +@book{ray1938, + author = {Ray, V.F.}, + address = {Seattle}, + key = {Ray (1938)}, + lgcode = {Lower Chinook [chin1286]}, + number = {2}, + pages = {29-165}, + publisher = {University of Washington Press}, + series = {University of Washington Publications in Anthropology}, + title = {Lower Chinook Ethnographic Notes}, + volume = {7}, + year = {1938} +} + +@article{eells1877, + author = {Eells, M.}, + journal = {Bulletins of the U. S. Geographical and Geological survey of the Territories}, + key = {Eells (1877)}, + lgcode = {Twana [twan1247]}, + pages = {57-114}, + title = {Twana Indians of the Skokomish Reservation}, + volume = {3}, + year = {1877} +} + +@book{elmendorf1960, + author = {Elmendorf, W. W.}, + address = {Pullman}, + key = {Elmendorf (1960)}, + lgcode = {Twana [twan1247], Yurok [yuro1248]}, + pages = {1-576}, + publisher = {Washington State University}, + series = {Research Studies Monographic Supplement}, + title = {The Structure of Twana Culture with Comparative Notes on the Structure of Yurok Culture}, + volume = {28}, + year = {1960} +} + +@article{barnett1937, + author = {Barnett, H. G.}, + journal = {Anth. Rec.}, + key = {Barnett (1937)}, + lgcode = {Alsea [alse1251], Chetco [tolo1259], Coos [coos1249], Siuslaw [sius1254], Taltushtuntede [gali1261], Tillamook [till1254], Tolowa [tolo1259], Tututni [tutu1242]}, + pages = {155-204}, + title = {Oregon Coast}, + volume = {1}, + year = {1937} +} + +@article{boas1923, + author = {Boas, F.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Boas (1923)}, + lgcode = {Tillamook [till1254]}, + pages = {3-16}, + title = {Notes on the Tillamook}, + volume = {20}, + year = {1923} +} + +@article{jacobs1940, + author = {Jacobs, Melville}, + journal = {Univ. Wash. Publ. Anth.}, + key = {Jacobs (1940)}, + lgcode = {Coos [coos1249]}, + pages = {1-260}, + title = {Coos Narrative and Ethnologic Texts}, + volume = {8}, + year = {1940} +} + +@article{durlach1928, + author = {Durlach, T.}, + journal = {Publ. Amer. Ethn. Soc.}, + key = {Durlach (1928)}, + lgcode = {Tlingit [tlin1245]}, + pages = {1-177}, + title = {The Relationship Systems of the Tlingit, Haida and Tsimshian}, + volume = {11}, + year = {1928} +} + +@book{krause1956, + author = {Krause, Aurel}, + address = {Seattle}, + key = {Krause (1956)}, + lgcode = {Haida (Northern) [nort2938], Haida (Southern) [sout2956], North Tlingit [tlin1245], South Tlingit [tlin1245], Tlingit [tlin1245]}, + note = {translated by Erna Gunter}, + publisher = {University of Washington Press}, + title = {The Tlingit Indians: results of a trip to the northwest coast of America and the Bering Straits}, + year = {1956} +} + +@article{oberg1934, + author = {Oberg, K.}, + journal = {American Anthropologist}, + key = {Oberg (1934)}, + lgcode = {Tlingit [tlin1245]}, + pages = {145-156}, + title = {Crime and Punishment in Tlingit Society}, + volume = {36}, + year = {1934} +} + +@article{swanton1908, + author = {Swanton, J. R.}, + glottolog_ref = {anla:HA900S1908b}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Swanton (1908)}, + lgcode = {North Tlingit [tlin1245], South Tlingit [tlin1245], Tlingit [tlin1245]}, + pages = {391-485}, + title = {Social Condition, Beliefs, and Linguistic Relationship of the Tlingit Indians}, + volume = {26}, + year = {1908} +} + +@article{boas1938, + author = {Boas, F.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Boas (1938)}, + lgcode = {Heiltsuk [bell1263]}, + pages = {1-291}, + title = {Bella Bella Texts}, + volume = {5}, + year = {1938} +} + +@article{drucker1950, + author = {Drucker, P.}, + journal = {Anthropological Records}, + key = {Drucker (1950)}, + lgcode = {Gitxsan [gitx1241], Haida (Northern) [nort2938], Haida (Southern) [sout2956], Haihais [oowe1239], Haisla [hais1244], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], North Tlingit [tlin1245], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], South Tlingit [tlin1245], Tsimshian [nucl1649]}, + pages = {157-294}, + title = {Northwest Coast}, + volume = {9}, + year = {1950} +} + +@article{olson1955, + author = {Olson, R. L.}, + journal = {Anth. Rec.}, + key = {Olson (1955)}, + lgcode = {Heiltsuk [bell1263]}, + pages = {319-348}, + title = {Notes on the Bella Bella Kwakiutl}, + volume = {14}, + year = {1955} +} + +@book{colson1953, + author = {Colson, E.}, + address = {Minneapolis}, + key = {Colson (1953)}, + lgcode = {Makah [maka1318]}, + title = {The Makah Indians}, + year = {1953} +} + +@book{swan1868, + author = {Swan, J. G.}, + address = {Washington, D.C.}, + key = {Swan (1868)}, + lgcode = {Makah [maka1318]}, + number = {ccxx}, + pages = {1-106}, + publisher = {Smithsonian Institution}, + series = {Smithsonian Contributions to Knowledge}, + title = {The Indians of Cape Flattery}, + volume = {16}, + year = {1868} +} + +@book{olson1936a, + author = {Olson, R. L.}, + address = {Seattle}, + key = {Olson (1936a)}, + lgcode = {Quinault [quin1251]}, + number = {1}, + pages = {1-190}, + publisher = {University of Washington Press}, + series = {University of Washington Publications in Anthropology}, + title = {The Quinault Indians}, + volume = {6}, + year = {1936} +} + +@article{willoughby1889, + author = {Willoughby, C.}, + journal = {Ann. Rep. Smiths. Inst.}, + key = {Willoughby (1889)}, + lgcode = {Quinault [quin1251]}, + pages = {i, 267-282}, + title = {The Indians of the Quinaielt Agency}, + volume = {1886}, + year = {1889} +} + +@misc{lane1963a, + author = {Lane, B. S.}, + howpublished = {Personal communication}, + key = {Lane (1963a)}, + lgcode = {Cowichan [cowi1241]}, + year = {1963} +} + +@misc{duff1952, + author = {Duff, Wilson}, + address = {Victoria}, + key = {Duff (1952)}, + lgcode = {Stó:lō [chil1281]}, + number = {1}, + pages = {1-136}, + publisher = {British Columbia Provincial Museum}, + series = {Anthropology in British Columbia Memoir}, + title = {The Upper Stalo Indians of the Fraser River of B. C.}, + year = {1952} +} + +@article{hilltout1902, + author = {Hill-Tout, C.}, + journal = {Rep. Brit. Assoc. Adv. Sci.}, + key = {Hill-Tout (1902)}, + lgcode = {Cowichan [cowi1241], Musqueam [musq1240], Stó:lō [chil1281]}, + pages = {355-490}, + title = {Ethnological Studies of the Mainland Halkomelem}, + volume = {72}, + year = {1902} +} + +@article{hilltout1904, + author = {Hill-Tout, C.}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Hill-Tout (1904)}, + lgcode = {Cowichan [cowi1241], Stó:lō [chil1281]}, + pages = {311-376}, + title = {Ethnological Report on the Stseelis and Skaulits Tribes of the Halokmelem Division of the Salish of British Columbia}, + volume = {34}, + year = {1904} +} + +@article{drucker1939, + author = {Drucker, P.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Drucker (1939)}, + lgcode = {Alsea [alse1251]}, + number = {7}, + pages = {81-101}, + publisher = {University of California Press}, + title = {Contributions to Alsea Ethnography}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp035-009.pdf}, + volume = {35}, + year = {1939} +} + +@article{frachtenberg1914, + author = {Frachtenberg, Leo J.}, + address = {New York}, + glottolog_ref = {mpieva:Frachtenberg1914LowerUmp}, + journal = {Columbia University Contributions to Anthropology}, + key = {Frachtenberg (1914)}, + lgcode = {Siuslaw [sius1254]}, + pages = {1-156}, + publisher = {New York: Columbia Univ. Press}, + series = {Columbia University Contributions to Anthropology}, + title = {Lower Umpqua Texts and Notes on the Kusan Dialects}, + volume = {4}, + year = {1914} +} + +@book{benedict1934, + author = {Benedict, Ruth.}, + address = {Boston}, + key = {Benedict (1934)}, + lgcode = {Kwakwaka'wakw [kwak1269], Zuni [zuni1245]}, + publisher = {Houghton Mifflin Company}, + title = {Patterns of Culture}, + year = {1934} +} + +@article{boas1895b, + author = {Boas, F.}, + journal = {Rep. U. S. Nat. Mus.}, + key = {Boas (1895b)}, + lgcode = {Kwakwaka'wakw [kwak1269]}, + pages = {311-738}, + title = {The Social Organization and the Secret Societies of the Kwakiutl Indians}, + volume = {1895}, + year = {1895} +} + +@article{boas1909, + author = {Boas, F.}, + journal = {Mem. Amer. Mus. Nat. Hist.}, + key = {Boas (1909)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269]}, + pages = {307-515}, + title = {The Kwakiutl of Vancouver Island}, + volume = {8}, + year = {1909} +} + +@book{boas1966, + author = {Boas, F.}, + editor = {Codere, H.}, + address = {Chicago}, + key = {Boas (1966)}, + lgcode = {Kwakwaka'wakw [kwak1269]}, + title = {Kwakiutl Ethnography}, + year = {1966} +} + +@article{codere1950, + author = {Codere, H.}, + journal = {Monog. Amer. Ethn. Soc.}, + key = {Codere (1950)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269]}, + pages = {1-143}, + title = {Fighting with Property}, + volume = {18}, + year = {1950} +} + +@book{ford1941, + author = {Ford, C. S.}, + address = {New Haven}, + key = {Ford (1941)}, + lgcode = {Kwakwaka'wakw [kwak1269]}, + title = {Smoke from Their Fires}, + year = {1941} +} + +@incollection{goldman1937a, + author = {Goldman, Irving}, + editor = {Mead, Margaret}, + address = {New York}, + booktitle = {Cooperation and Competition among Primitive Peoples}, + key = {Goldman (1937a)}, + lgcode = {Kwakwaka'wakw [kwak1269]}, + pages = {180-209}, + publisher = {McGraw-Hill}, + title = {The Kwakiutl Indians of Vancouver Island}, + year = {1937} +} + +@article{rohner1965, + author = {Rohner, R. P.}, + journal = {Bull. Nat. Mus. Canada}, + key = {Rohner (1965)}, + lgcode = {Kwakwaka'wakw [kwak1269]}, + title = {The people of Gilford: a contemporary Kwakiutl village}, + volume = {225}, + year = {1965} +} + +@article{sapir1907, + author = {Sapir, E.}, + journal = {American Anthropologist}, + key = {Sapir (1907)}, + lgcode = {Takelma [take1257]}, + pages = {251-275}, + title = {Notes on the Takelma Indians of Southwestern Oregon}, + volume = {9}, + year = {1907} +} + +@article{drucker1936a, + author = {Drucker, P.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Drucker (1936a)}, + lgcode = {Tolowa [tolo1259], Tututni [tutu1242]}, + pages = {221-300}, + title = {The Tolowa and Their Southwest Oregon Kin}, + volume = {36}, + year = {1936} +} + +@incollection{dubois1936, + author = {Du Bois, C.}, + address = {Berkeley}, + booktitle = {Essays in Anthropology Presented to A. L. Kroeber}, + key = {Du Bois (1936)}, + lgcode = {Tolowa [tolo1259], Tututni [tutu1242]}, + pages = {49-65}, + title = {The Wealth Concept as an Integrative Factor in Tolowa-Tututni Culture}, + year = {1936} +} + +@article{dixon1907, + author = {Dixon, R. B.}, + journal = {Bulletin of the American Museum of Natural History}, + key = {Dixon (1907)}, + lgcode = {Shasta [shas1239], Shasta (East) [shas1239], Shasta (West) [shas1239]}, + pages = {381-498}, + title = {The Shasta}, + volume = {17}, + year = {1907} +} + +@article{holt1946, + author = {Holt, C.}, + journal = {Anth. Rec.}, + key = {Holt (1946)}, + lgcode = {Shasta [shas1239], Shasta (East) [shas1239], Shasta (West) [shas1239]}, + pages = {299-350}, + title = {Shasta Ethnography}, + volume = {3}, + year = {1946} +} + +@inbook{kroeber1925d, + author = {Kroeber, A. L.}, + key = {Kroeber (1925d)}, + lgcode = {Shasta [shas1239]}, + pages = {279-304}, + series = {Bull. Bur. Amer. Ethn.}, + title = {Handbook of the Indians of California}, + volume = {78}, + year = {1925} +} + +@article{voegelin1942, + author = {Voegelin, E. W.}, + journal = {Anthropological Records}, + key = {Voegelin (1942)}, + lgcode = {Achumawi (East) [achu1247], Achumawi (West) [achu1247], Atsugewi [atsu1245], Foothill Maidu [nort2951], Klamath [klam1254], Maidu [nort2952], Modoc [klam1254], Nisenan [nise1244], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244], Shasta [shas1239], Shasta (East) [shas1239], Shasta (West) [shas1239], Valley Maidu [vall1252], Wintu [nucl1651], Wintu (McCloud River) [nucl1651], Wintu (Sacramento River) [nucl1651], Wintu (Trinity River) [nucl1651]}, + pages = {47-251}, + title = {Northeast California}, + volume = {7}, + year = {1942} +} + +@article{dixon1910, + author = {Dixon, R. B.}, + journal = {Univ. Calif. Publ. Amer. Arch. Ethn.}, + key = {Dixon (1910)}, + lgcode = {Chimariko [chim1301]}, + number = {5}, + pages = {293-380}, + title = {The Chimariko Indians and Language}, + url = {https://archive.org/details/chimarikoindians00dixorich}, + volume = {5}, + year = {1910} +} + +@article{driver1939, + author = {Driver, H. E.}, + journal = {Anth. Rec.}, + key = {Driver (1939)}, + lgcode = {Cahto [kato1244], Chimariko [chim1301], Coast Yuki [yuki1243], Hupa [hupa1239], Karuk [karo1304], Mattole-Bear River [matt1238], Nongatl [wail1244], Sinkyone [wail1244], Tolowa [tolo1259], Wiyot [wiyo1248], Yurok [yuro1248]}, + pages = {297-433}, + title = {Northwest California}, + volume = {1}, + year = {1939} +} + +@article{gifford1922, + author = {Gifford, E. W.}, + address = {Berkeley, Calif.}, + glottolog_ref = {mpieva:Gifford1922Californ}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1922)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cupeño [cupe1243], Huchnom [yuki1243], Karuk [karo1304], Kumeyaay [kumi1248], Lake Miwok [lake1258], Lassik [wail1244], Maidu [nort2952], Northern Pomo [nort2966], Serrano [serr1255], Southern Pomo [sout2984], Wappo [wapp1239], Western Mono [mono1275], Wintu [nucl1651], Wiyot [wiyo1248], Yuki [yuki1243]}, + pages = {1-285}, + publisher = {Univ.of California Press}, + title = {California Kinship Terminologies}, + volume = {18}, + year = {1922} +} + +@inbook{kroeber1925c, + author = {Kroeber, A. L.}, + booktitle = {Handbook of the Indians of California}, + key = {Kroeber (1925c)}, + lgcode = {Karuk [karo1304]}, + pages = {98-108}, + series = {Bull. Bur. Amer. Ethn.}, + title = {The Karok}, + volume = {78}, + year = {1925} +} + +@article{goddard1903, + author = {Goddard, P. E.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Goddard (1903)}, + lgcode = {Hupa [hupa1239]}, + pages = {1-88}, + title = {Life and Culture of the Hupa}, + volume = {1}, + year = {1903} +} + +@article{kroeber1934, + author = {Kroeber, A. L.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Kroeber (1934)}, + lgcode = {Hupa [hupa1239]}, + pages = {15-22}, + title = {Yurok and Neighboring Kin Term Systems}, + volume = {35}, + year = {1934} +} + +@article{taylor1947, + author = {Taylor, E.}, + journal = {Proceedings of the Indiana Academy of Science}, + key = {Taylor (1947)}, + lgcode = {Hupa [hupa1239]}, + pages = {24-27}, + title = {Hupa birth rites}, + volume = {57}, + year = {1947} +} + +@article{wallace1947b, + author = {Wallace, W. J.}, + journal = {Educational Administration and Supervision}, + key = {Wallace (1947b)}, + lgcode = {Hupa [hupa1239]}, + pages = {13-25}, + title = {Hupa child training--a study in primitive education}, + volume = {33}, + year = {1947} +} + +@book{kroeber1925a, + author = {Kroeber, A. L.}, + address = {Washington, D.C.}, + key = {Kroeber (1925a)}, + lgcode = {Cahuilla (Desert) [cahu1264], Hupa [hupa1239], Kumeyaay [kumi1248], Serrano [serr1255], Southern Valley Yokuts [vall1251], Wiyot [wiyo1248], Yurok [yuro1248]}, + number = {78}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {Handbook of the Indians of California}, + year = {1925} +} + +@article{essene1940, + author = {Essene, F.}, + journal = {Anth. Rec.}, + key = {Essene (1940)}, + lgcode = {Lassik [wail1244]}, + pages = {1-97}, + title = {Round Valley}, + volume = {8}, + year = {1940} +} + +@article{nomland1938, + author = {Nomland, G. A.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Nomland (1938)}, + lgcode = {Mattole-Bear River [matt1238]}, + number = {2}, + pages = {91-125}, + publisher = {University of California Press}, + title = {Bear River Ethnography}, + volume = {2}, + year = {1938} +} + +@article{nomland1935, + author = {Nomland, G. A.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Nomland (1935)}, + lgcode = {Sinkyone [wail1244]}, + pages = {149-178}, + publisher = {University of California Press}, + title = {Sinkyone Notes}, + volume = {36}, + year = {1935} +} + +@article{erickson1943, + author = {Erickson, E. H.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Erickson (1943)}, + lgcode = {Yurok [yuro1248]}, + pages = {257-302}, + title = {Observations on the Yurok: Childhood and World Image}, + volume = {25}, + year = {1943} +} + +@book{heizerandmills1952, + author = {Heizer, R. F. and Mills, J. E.}, + address = {Berkeley}, + key = {Heizer and Mills (1952)}, + lgcode = {Yurok [yuro1248]}, + publisher = {University of California Press}, + title = {The Four Ages of Tsurai: A Documentary History of the Indian Village on Trinidad Bay}, + year = {1952} +} + +@inbook{kroeber1925b, + author = {Kroeber, A. L.}, + booktitle = {Handbook of the Indians of California}, + key = {Kroeber (1925b)}, + lgcode = {Yurok [yuro1248]}, + pages = {1-97}, + series = {Bulletins of the Bureau of American Ethnology}, + title = {The Yurok}, + volume = {78}, + year = {1925} +} + +@article{kroeber1960, + author = {Kroeber, A. L.}, + journal = {Washington State University Research Studies, Monographic Supplement}, + key = {Kroeber (1960)}, + lgcode = {Yurok [yuro1248]}, + pages = {1-576}, + title = {Comparative Notes on the Structure of Yurok Culture}, + volume = {2}, + year = {1960} +} + +@article{loeffelholz1893, + editor = {Loeffelholz, K. von}, + journal = {Mitteilungen der Anthropologischen Gesellschaft zu Wien}, + key = {Loeffelholz (1893)}, + lgcode = {Yurok [yuro1248]}, + pages = {101-123}, + title = {Die Zoreisch-Indianer der Trinidad-Bai}, + volume = {23}, + year = {1893} +} + +@article{watermanandkroeber1934, + author = {Waterman, T. T. and Kroeber, A. L.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Waterman and Kroeber (1934)}, + lgcode = {Yurok [yuro1248]}, + pages = {1-14}, + title = {Yurok Marriages}, + volume = {35}, + year = {1934} +} + +@book{birketsmithanddelaguna1938, + author = {Birket-Smith, K. and Laguna, F. De}, + address = {Copenhagen}, + key = {Birket-Smith and De Laguna (1938)}, + lgcode = {Eyak [eyak1241]}, + publisher = {Levin and Munksgaard}, + title = {The Eyak Indians of the Copper River Delta, Alaska}, + year = {1938} +} + +@article{dubois1932, + author = {Du Bois, C. A.}, + journal = {American Anthropologist}, + key = {Du Bois (1932)}, + lgcode = {Tolowa [tolo1259]}, + pages = {248-262}, + title = {Tolowa Notes}, + volume = {34}, + year = {1932} +} + +@article{garfield1939, + author = {Garfield, Viola E.}, + glottolog_ref = {anla:TS928G1939}, + journal = {Univ. Wash. Publ. Anth.}, + key = {Garfield (1939)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]}, + pages = {167-340}, + title = {Tsimshian Clan and Society}, + volume = {7}, + year = {1939} +} + +@article{garfieldetal1951, + author = {Garfield, Viola E. and Wingert, Paul S. and Barbeau, Marius}, + journal = {Publ. Amer. Ethn. Soc.}, + key = {Garfield et al. (1951)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]}, + pages = {1-290}, + title = {The Tsimshian: Their Arts ad Music}, + volume = {18}, + year = {1951} +} + +@article{lopatin1945, + author = {Lopatin, I. A.}, + journal = {Univ. Sou. Calif. Soc. Sci. Ser.}, + key = {Lopatin (1945)}, + lgcode = {Haisla [hais1244], Heiltsuk [bell1263]}, + pages = {1-107}, + title = {Social Life and Religion of the Indians in Kitimat, British Columbia}, + volume = {26}, + year = {1945} +} + +@article{olson1940, + author = {Olson, R. L.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Olson (1940)}, + lgcode = {Haisla [hais1244]}, + number = {5}, + pages = {169-200}, + publisher = {University of California Press}, + title = {The Social Organization of the Haisla of British Columbia}, + volume = {2}, + year = {1940} +} + +@article{boas1891b, + author = {Boas, F.}, + journal = {Annual Report of the British Association for the Advancement of Science}, + key = {Boas (1891b)}, + lgcode = {Nuxalk [bell1243]}, + pages = {408-424}, + title = {The Bilqula}, + volume = {61}, + year = {1891} +} + +@book{mcilwraith1948, + author = {McIlwraith, T. F.}, + address = {Toronto}, + key = {McIlwraith (1948)}, + lgcode = {Nuxalk [bell1243]}, + title = {The Bella Coola Indians. 2 vols}, + year = {1948} +} + +@article{smith1925a, + author = {Smith, H. I.}, + journal = {American Anthropologist}, + key = {Smith (1925a)}, + lgcode = {Nuxalk [bell1243]}, + pages = {116-121}, + title = {Sympathetic Magic and Witchcraft Among the Bellacoola}, + volume = {27}, + year = {1925} +} + +@article{goldschmidt1951, + author = {Goldschmidt, Walter R.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Goldschmidt (1951)}, + lgcode = {Nomlaki [noml1242]}, + pages = {303-443}, + title = {Nomlaki Ethnography}, + volume = {42}, + year = {1951} +} + +@article{gifford1928, + author = {Gifford, E. W.}, + journal = {American Anthropologist}, + key = {Gifford (1928)}, + lgcode = {Yana [yana1271]}, + pages = {675-684}, + title = {Notes on Central Pomo and Northern Yana Society}, + volume = {30}, + year = {1928} +} + +@article{giffordandkroeber1936, + author = {Gifford, E. W. and Klimek., S.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford and Kroeber (1936)}, + lgcode = {Yana [yana1271]}, + pages = {71-100}, + title = {Yana}, + volume = {37}, + year = {1936} +} + +@article{sapir1918, + author = {Sapir, E.}, + address = {Berkeley}, + glottolog_ref = {mpieva:Sapir1918Yanaterm}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Sapir (1918)}, + lgcode = {Yana [yana1271]}, + pages = {153-173}, + publisher = {Berkeley: Univ. of California Press}, + series = {University of California publications in American archaeology and ethnology}, + title = {Yana Terms of Relationship}, + volume = {13}, + year = {1918} +} + +@article{sapirandspier1943, + author = {Sapir, E. and Spier., L.}, + journal = {Anth Rec.}, + key = {Sapir and Spier (1943)}, + lgcode = {Yana [yana1271]}, + pages = {239-298}, + title = {Notes on the Culture of the Yana}, + volume = {3}, + year = {1943} +} + +@article{dixon1905, + author = {Dixon, R. B.}, + journal = {Bulletin of the American Museum of Natural History}, + key = {Dixon (1905)}, + lgcode = {Foothill Maidu [nort2951], Maidu [nort2952], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244], Valley Maidu [vall1252]}, + pages = {119-346}, + title = {The Northern Maidu}, + volume = {17}, + year = {1905} +} + +@article{beals1933, + author = {Beals, R. L.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Beals (1933)}, + lgcode = {Nisenan [nise1244], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244]}, + pages = {335-414}, + title = {Ethnology of the Nisenan}, + volume = {31}, + year = {1933} +} + +@incollection{faye1923, + author = {Faye, P.L.}, + editor = {Kroeber, A. L.}, + address = {Berkeley}, + booktitle = {Phoebe Apperson Hearst Memorial Volume}, + key = {Faye (1923)}, + lgcode = {Nisenan [nise1244]}, + pages = {35-53}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Notes on the Southern Maidu}, + volume = {20}, + year = {1923} +} + +@book{dubois1935, + author = {Du Bois, C. A.}, + address = {Berkeley}, + key = {Du Bois (1935)}, + lgcode = {Wintu [nucl1651], Wintu (McCloud River) [nucl1651], Wintu (Sacramento River) [nucl1651], Wintu (Trinity River) [nucl1651]}, + number = {1}, + pages = {1-148}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Wintu Ethnography}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-002.pdf}, + volume = {36}, + year = {1935} +} + +@article{lee1940, + author = {Lee, D. D.}, + journal = {Speech. Amer. Anth.}, + key = {Lee (1940)}, + lgcode = {Wintu [nucl1651]}, + pages = {604-616}, + title = {The Place of Kinship Terms in Wintu}, + volume = {42}, + year = {1940} +} + +@article{washington1909, + author = {Washington, F. B.}, + journal = {Journal of American Folklore}, + key = {Washington (1909)}, + lgcode = {Wintu [nucl1651]}, + pages = {92-95}, + title = {Notes on the northern Wintun Indians}, + volume = {22}, + year = {1909} +} + +@article{gifford1939, + author = {Gifford, E. W.}, + journal = {Anthropos}, + key = {Gifford (1939)}, + lgcode = {Coast Yuki [yuki1243]}, + pages = {292-375}, + title = {The Coast Yuki}, + volume = {34}, + year = {1939} +} + +@article{foster1944, + author = {Foster, G. M.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Foster (1944)}, + lgcode = {Huchnom [yuki1243], Yuki [yuki1243]}, + number = {3}, + pages = {155-244}, + publisher = {University of California Press}, + title = {A Summary of Yuki Culture}, + volume = {5}, + year = {1944} +} + +@article{essene1942, + author = {Essene, F.}, + journal = {Anth. Rec.}, + key = {Essene (1942)}, + lgcode = {Cahto [kato1244], Northern Pomo [nort2966], Yuki [yuki1243]}, + pages = {1-97}, + title = {Round Valley}, + volume = {8}, + year = {1942} +} + +@article{giffordandkroeber1937a, + author = {Gifford, E. W. and Kroeber., A. I.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford and Kroeber (1937a)}, + lgcode = {Eastern Pomo [east2545], Lake Miwok [lake1258], Northern Pomo [nort2966], Patwin [patw1250], Southern Pomo [sout2984]}, + pages = {117-254}, + title = {Pomo}, + volume = {37}, + year = {1937} +} + +@book{aginskyandaginsky1967, + author = {Aginsky, B. W. and Aginsky., E. G.}, + address = {N. Y.}, + key = {Aginsky and Aginsky (1967)}, + lgcode = {Eastern Pomo [east2545]}, + title = {Deep Valley}, + year = {1967} +} + +@book{barrett1908, + author = {Barrett, S. A.}, + key = {Barrett (1908)}, + lgcode = {Central Sierra Miwok [cent2140], Eastern Pomo [east2545], Kashaya Pomo [kash1280], Northern Pomo [nort2966], Patwin [patw1250], Wappo [wapp1239], Wintu [nucl1651]}, + pages = {1-332}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {The Ethno-geography of the Pomo and Neighboring Indians}, + url = {https://archive.org/details/ethnogeographyp02barrgoog}, + volume = {6}, + year = {1908} +} + +@inbook{barrett1916, + author = {Barrett, S. A.}, + address = {Washington}, + booktitle = {Holmes Anniversary Volume}, + key = {Barrett (1916)}, + lgcode = {Eastern Pomo [east2545]}, + pages = {1-17}, + title = {Pomo Buildings}, + year = {1916} +} + +@article{barrett1917a, + author = {Barrett, S. A.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Barrett (1917a)}, + lgcode = {Eastern Pomo [east2545]}, + pages = {397-441}, + title = {Ceremonies of the Pomo Indians}, + volume = {12}, + year = {1917} +} + +@article{barrett1952, + author = {Barrett, S. A.}, + journal = {Bulletin, Public Museum of the City of Milwaukee}, + key = {Barrett (1952)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]}, + pages = {1-508}, + title = {Material Aspects of Pomo Culture}, + volume = {20}, + year = {1952} +} + +@article{freeland1923, + author = {Freeland, L. S.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Freeland (1923)}, + lgcode = {Eastern Pomo [east2545]}, + pages = {57-73}, + title = {Pomo Doctors and Poisoners}, + volume = {20}, + year = {1923} +} + +@article{gifford1926a, + author = {Gifford, E. W.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1926a)}, + lgcode = {Clear Lake Pomo [east2545], Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]}, + number = {2}, + pages = {287-390}, + publisher = {Univ.of California Press}, + title = {Clear Lake Pomo Society}, + volume = {18}, + year = {1926} +} + +@article{giffordandkroeber1937b, + author = {Gifford, E. W. and Kroeber., A. L.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford and Kroeber (1937b)}, + lgcode = {Eastern Pomo [east2545]}, + pages = {117-254}, + title = {Culture Element Distributions IV: Pomo}, + volume = {37}, + year = {1937} +} + +@book{kroeber1953, + author = {Kroeber, A. L.}, + address = {Berkeley}, + key = {Kroeber (1953)}, + lgcode = {Eastern Pomo [east2545]}, + title = {Handbook of Indians of California}, + year = {1953} +} + +@article{loeb1926b, + author = {Loeb, E. M.}, + address = {Berkeley and Los Angeles}, + glottolog_ref = {hh:e:Loeb:Pomo}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Loeb (1926b)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]}, + pages = {149-405}, + publisher = {Berkeley and Los Angeles: University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Pomo Folkways}, + volume = {19}, + year = {1926} +} + +@article{aginsky1935, + author = {Aginsky, B. W.}, + doi = {10.1525/aa.1935.37.3.02a00080}, + issn = {1548-1433}, + journal = {American Anthropologist}, + key = {Aginsky (1935)}, + lgcode = {Southern Pomo [sout2984]}, + number = {3}, + pages = {450-457}, + publisher = {Blackwell Publishing Ltd}, + title = {The Mechanics of Kinship}, + url = {https://doi.org/10.1525/aa.1935.37.3.02a00080}, + volume = {37}, + year = {1935} +} + +@article{gifford1917, + author = {Gifford, E. W.}, + address = {Berkeley}, + glottolog_ref = {mpieva:Gifford1917Tubatula}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1917)}, + lgcode = {Kawaiisu [kawa1283], Southern Paiute (Kaibab) [sout2969], Tübalulabal [tuba1278], Uintah Ute [utee1244]}, + pages = {219-248}, + publisher = {Berkeley: Univ. of California Press}, + series = {University of California publications in American archaeology and ethnology}, + title = {Tubatulabal and Kawaiisu Kinship Terms}, + volume = {12}, + year = {1917} +} + +@book{voegelin1938, + author = {Voegelin, E. W.}, + address = {Berkeley}, + key = {Voegelin (1938)}, + lgcode = {Kawaiisu [kawa1283], Tübatulabal [tuba1278]}, + number = {1}, + pages = {1-84}, + publisher = {University of California Press}, + series = {Anthropological Records}, + title = {Tübatulabal Ethnography}, + volume = {2}, + year = {1938} +} + +@article{driver1936, + author = {Driver, H. E.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Driver (1936)}, + lgcode = {Wappo [wapp1239]}, + pages = {179-220}, + publisher = {University of California Press}, + title = {Wappo Ethnography}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-004.pdf}, + volume = {36}, + year = {1936} +} + +@article{radin1924, + author = {Radin, P.}, + address = {Berkeley and Los Angeles}, + glottolog_ref = {hh:t:Radin:Wappo}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Radin (1924)}, + lgcode = {Wappo [wapp1239]}, + pages = {1-147}, + publisher = {Berkeley and Los Angeles: University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Wappo Texts}, + volume = {19}, + year = {1924} +} + +@misc{kroeber1932, + author = {Kroeber, A. L.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Kroeber (1932)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Patwin [patw1250], Southern Pomo [sout2984]}, + number = {4}, + pages = {253-391}, + publisher = {University of California Press}, + title = {The Patwin and Their Neighbors}, + volume = {29}, + year = {1929} +} + +@article{mckern1922, + author = {McKern, W. C.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {McKern (1922)}, + lgcode = {Patwin [patw1250]}, + pages = {235-258}, + title = {Functional Families of the Patwin}, + volume = {13}, + year = {1922} +} + +@article{mckern1924, + author = {McKern, W. C.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {McKern (1924)}, + lgcode = {Patwin [patw1250]}, + pages = {159-171}, + title = {Patwin Houses}, + volume = {20}, + year = {1924} +} + +@article{aginsky1943, + author = {Aginsky, B. W.}, + journal = {Anth. Records}, + key = {Aginsky (1943)}, + lgcode = {Central Sierra Miwok [cent2140], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Miwok [nort2968], Southern Miwok [sout2985], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]}, + pages = {393-468}, + title = {Central Sierra}, + volume = {8}, + year = {1943} +} + +@article{driver1937, + author = {Driver, H. E.}, + journal = {Anth. Rec.}, + key = {Driver (1937)}, + lgcode = {Eastern Mono [mono1275], Kawaiisu [kawa1283], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], Koso [pana1305], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Paiute (Las Vegas) [sout2969], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Tübalulabal [tuba1278], Tümpisa Shoshone (Panamint) [pana1305], Tümpisa Shoshone (Saline and Panamint) [pana1305], Western Mono [mono1275], Wukchumni [tule1245]}, + pages = {53-154}, + title = {Southern Sierra Nevada}, + volume = {1}, + year = {1937} +} + +@article{gayton1930, + author = {Gayton, Ann H.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gayton (1930)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]}, + pages = {361-420}, + title = {Yokuts-Mono Chiefs and Shamans}, + volume = {24}, + year = {1930} +} + +@article{gayton1945, + author = {Gayton, Ann H.}, + journal = {American Anthropologist}, + key = {Gayton (1945)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]}, + pages = {409-426}, + title = {Yokuts and Western Mono Social Organization}, + volume = {47}, + year = {1945} +} + +@book{gayton1948a, + author = {Gayton, Ann H.}, + address = {Berkeley}, + key = {Gayton (1948a)}, + lgcode = {Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]}, + note = {The years 1885 to 1860 cover the youth span of my older informants, the years 1860 to 1830 the mid-span of their parents' lives, and 1830 to 1800 the mid-span of their grandparents' lives. The bulk of cultural detail recalled was seen, experienced, or heard about in the years 1840 to 1890 approximately; fieldwork 1925-28}, + number = {1}, + pages = {1-302}, + publisher = {University of California Press}, + series = {Anthropological Records}, + title = {Yokuts and Western Mono Ethnography. I. Tulare Lake, Southern Valley, and Central Foothill Yokuts}, + volume = {10}, + year = {1948} +} + +@article{bealsandhester1958, + author = {Beals, R. L. and Hester., J. A.}, + address = {Mexico}, + journal = {Miscellanea Paul Rivet Octogenario Dictata}, + key = {Beals and Hester (1958)}, + lgcode = {Southern Valley Yokuts [vall1251], Wukchumni [tule1245]}, + pages = {211-217}, + title = {A Lacustrine Economy in California}, + volume = {1}, + year = {1958} +} + +@article{cook1955, + author = {Cook, S. F.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Cook (1955)}, + lgcode = {Central Sierra Miwok [cent2140], Lake Miwok [lake1258], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Wukchumni [tule1245]}, + number = {2}, + pages = {31-81}, + publisher = {University of California Press}, + title = {The Aboriginal Population of the San Joaquin Valley, California}, + volume = {16}, + year = {1955} +} + +@incollection{gayton1936, + author = {Gayton, Ann H.}, + editor = {Lowie, R. H.}, + address = {Berkeley}, + booktitle = {Essays in Anthropology presented to A. L. Kroeber}, + key = {Gayton (1936)}, + lgcode = {Southern Valley Yokuts [vall1251], Wukchumni [tule1245]}, + pages = {67-85}, + title = {Estudillo Among the Yokuts}, + year = {1936} +} + +@inbook{kroeber1925e, + author = {Kroeber, A. L.}, + booktitle = {Handbook of the Indians of California}, + key = {Kroeber (1925e)}, + lgcode = {Northern Foothill Yokuts [nort2937], Southern Valley Yokuts [vall1251], Wukchumni [tule1245]}, + pages = {474-534}, + series = {Bull. Bur. Amer. Ethn.}, + title = {The Yokuts}, + volume = {78}, + year = {1925} +} + +@book{latta1949, + author = {Latta, F. F.}, + address = {Oildale}, + key = {Latta (1949)}, + lgcode = {Kings River Yokuts [sout2955], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Wukchumni [tule1245]}, + title = {Handbook of Yokuts Indians}, + year = {1949} +} + +@article{powers1877, + author = {Powers, S.}, + glottolog_ref = {hh:hew:Powers:California}, + journal = {Contributions to North American Ethnology}, + key = {Powers (1877)}, + lgcode = {Southern Valley Yokuts [vall1251], Wukchumni [tule1245]}, + pages = {369-392}, + publisher = {Washington, D.C.}, + series = {Contributions to North American Ethnology}, + title = {Tribes of California}, + volume = {3}, + year = {1877} +} + +@article{harrington1942, + author = {Harrington, J. P.}, + journal = {Anth. Rec.}, + key = {Harrington (1942)}, + lgcode = {Chumash [cruz1243], Salinan [sali1253], Tongva [tong1329]}, + pages = {1-46}, + title = {Central California Coast}, + volume = {7}, + year = {1942} +} + +@article{mason1912, + author = {Mason, J. A.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Mason (1912)}, + lgcode = {Salinan [sali1253]}, + pages = {97-240}, + title = {The Ethnology of the Salinan Indians}, + volume = {10}, + year = {1912} +} + +@inbook{kroeber1925f, + author = {Kroeber, A. I.}, + booktitle = {Handbook of the Indians of California}, + key = {Kroeber (1925f)}, + lgcode = {Chumash [cruz1243]}, + pages = {550-568}, + series = {Bull. Bur. Amer. Ethn.}, + title = {The Chumash}, + volume = {78}, + year = {1925} +} + +@book{johnston1964, + author = {Johnston, Bernice Eastman}, + key = {Johnston (1964)}, + lgcode = {Tongva [tong1329]}, + pages = {1-198}, + series = {Frederick Webb Hodge Anniversary Publication Fund}, + title = {California's Gabrielino Indians}, + volume = {8}, + year = {1964} +} + +@inbook{kroeber1925h, + author = {Kroeber, A. I.}, + booktitle = {Handbook of the Indians of California}, + key = {Kroeber (1925h)}, + lgcode = {Tongva [tong1329]}, + pages = {620-635}, + series = {Bulletins of the Bureau of American Ethnology}, + title = {The Gabrielino}, + volume = {78}, + year = {1925} +} + +@article{reid1926, + author = {Reid, H.}, + journal = {Bull. Essex Inst.}, + key = {Reid (1926)}, + lgcode = {Tongva [tong1329]}, + note = {Reprinted, Los Angeles, 1926}, + pages = {1-33}, + title = {Account of the Indians of Los Angeles County}, + volume = {17}, + year = {1885} +} + +@article{benedict1924, + author = {Benedict, R. F.}, + journal = {American Anthropologist}, + key = {Benedict (1924)}, + lgcode = {Serrano [serr1255]}, + pages = {366-392}, + title = {A Brief Sketch of Serrano Culture}, + volume = {26}, + year = {1924} +} + +@article{drucker1937, + author = {Drucker, P.}, + journal = {Anth. Rec.}, + key = {Drucker (1937)}, + lgcode = {Akwa’ala [paip1241], Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Chemehuevi [chem1251], Cupeño [cupe1243], Kumeyaay [kumi1248], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253], Quechan [quec1382], San Juan [sout2969], Serrano [serr1255], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]}, + pages = {1-52}, + title = {Southern California}, + volume = {1}, + year = {1937} +} + +@book{gifford1918, + author = {Gifford, E. W.}, + key = {Gifford (1918)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cupeño [cupe1243], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253], Serrano [serr1255]}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Clans and Moieties in Southern California}, + volume = {14}, + year = {1918} +} + +@book{strong1929a, + author = {Strong, W. D.}, + address = {Berkeley}, + key = {Strong (1929a)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Cupeño [cupe1243], Luiseño [luis1253], Serrano [serr1255]}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Aboriginal Society in Southern California}, + volume = {26}, + year = {1929} +} + +@article{hooper1920, + author = {Hooper, L.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Hooper (1920)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Cupeño [cupe1243]}, + pages = {316-380}, + title = {The Cahuilla Indians}, + volume = {16}, + year = {1920} +} + +@article{dubois1908, + author = {Du Bois, C. G.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Du Bois (1908)}, + lgcode = {Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253]}, + pages = {69-186}, + title = {The Religion of the Luiseno Indians}, + volume = {8}, + year = {1908} +} + +@article{harrington1934, + author = {Harrington, J. P.}, + journal = {Smiths. Misc. Coll.}, + key = {Harrington (1934)}, + lgcode = {Luiseño [luis1253]}, + pages = {iv, 1-62}, + title = {A New Original Version of Boscana's Historical Account of the San Juan Capistrano Indians}, + volume = {92}, + year = {1934} +} + +@article{kroeber1917a, + author = {Kroeber, A. L.}, + glottolog_ref = {mpieva:Kroeber1917Californ}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Kroeber (1917a)}, + lgcode = {Kidutokado [nort1551], Luiseño [luis1253]}, + pages = {339-396}, + publisher = {Berkeley: Univ. of California press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {California Kinship Systems}, + volume = {12}, + year = {1917} +} + +@book{malccot1964, + author = {Malccot, A.}, + address = {Philadelphia}, + key = {Malccot (1964)}, + lgcode = {Luiseño [luis1253]}, + title = {Luiseno}, + year = {1964} +} + +@book{sparkman1908, + author = {Sparkman, P. S.}, + address = {Berkeley}, + key = {Sparkman (1908)}, + lgcode = {Luiseño [luis1253]}, + pages = {187-234}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {The Culture of the Luiseno Indians}, + volume = {8}, + year = {1908} +} + +@article{white1963, + author = {White, R. C.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {White (1963)}, + lgcode = {Luiseño [luis1253]}, + pages = {91-194}, + title = {Luiseno Social Organization}, + volume = {48}, + year = {1963} +} + +@book{meigs1939, + author = {Meigs, P.}, + address = {Berkeley}, + key = {Meigs (1939)}, + lgcode = {Kiliwa [kili1268]}, + pages = {1-113}, + publisher = {University of California Press}, + series = {Ibero-Americana}, + title = {The Kiliwa Indians of Lower California}, + volume = {15}, + year = {1939} +} + +@article{garth1944, + author = {Garth, T. R.}, + journal = {American Anthropologist}, + key = {Garth (1944)}, + lgcode = {Atsugewi [atsu1245]}, + pages = {348-361}, + title = {Kinship Terminology, Marriage Practices and Behavior Toward Kin Among the Atsugewi}, + volume = {46}, + year = {1944} +} + +@article{garth1953, + author = {Garth, T. R.}, + journal = {Anth. Records}, + key = {Garth (1953)}, + lgcode = {Atsugewi [atsu1245]}, + pages = {129-212}, + title = {Atsugewi Ethnography}, + volume = {14}, + year = {1953} +} + +@article{barrettandgifford1933, + author = {Barrett, Samuel A. and Gifford, Edward W.}, + journal = {Bulletin of the Milwaukee Public Museum}, + key = {Barrett and Gifford (1933)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]}, + number = {4}, + pages = {117-276}, + title = {Miwok Material Culture: Indian Life of the Yosemite Region}, + url = {http://www.yosemite.ca.us/library/miwok_material_culture/miwok_material_culture.pdf}, + volume = {2}, + year = {1933} +} + +@article{gifford1916, + author = {Gifford, E. W.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1916)}, + lgcode = {Central Sierra Miwok [cent2140]}, + number = {4}, + pages = {139-194}, + publisher = {University of California Press}, + title = {Miwok Moieties}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp012-006.pdf}, + volume = {12}, + year = {1916} +} + +@article{gifford1926c, + author = {Gifford, E. W.}, + journal = {American Anthropologist}, + key = {Gifford (1926c)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]}, + pages = {389-401}, + title = {Miwok Lineages and the Political Unit in Aboriginal California}, + volume = {28}, + year = {1926} +} + +@article{gifford1955, + author = {Gifford, E. W.}, + journal = {Anth. Rec.}, + key = {Gifford (1955)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]}, + pages = {261-318}, + title = {Central Miwok Ceremonies}, + volume = {14}, + year = {1955} +} + +@article{luomala1963, + author = {Luomala, K.}, + journal = {Ethnology}, + key = {Luomala (1963)}, + lgcode = {Kumeyaay [kumi1248]}, + pages = {282-301}, + title = {Flexibility in Sib Affiliation Among the Diegueno}, + volume = {2}, + year = {1963} +} + +@article{spier1923, + author = {Spier, L.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Spier (1923)}, + lgcode = {Kumeyaay [kumi1248], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248]}, + pages = {297-358}, + title = {Southern Diegueno Customs}, + volume = {20}, + year = {1923} +} + +@book{gatschet1890, + author = {Gatschet, A. S.}, + glottolog_ref = {mpieva:Gatschet1890TheKlama}, + key = {Gatschet (1890)}, + lgcode = {Klamath [klam1254]}, + pages = {711}, + publisher = {Washington: Gov. Print. Office}, + series = {Contributions to North American Ethnology}, + title = {The Klamath indians of Southwestern Oregon}, + volume = {2, 2}, + year = {1890} +} + +@article{pearsall1950, + author = {Pearsall, M.}, + journal = {Anthropological Records}, + key = {Pearsall (1950)}, + lgcode = {Klamath [klam1254]}, + pages = {339-353}, + title = {Klamath Childhood and Education}, + volume = {9}, + year = {1950} +} + +@book{spier1930, + author = {Spier, L.}, + address = {Berkeley}, + key = {Spier (1930)}, + lgcode = {Klamath [klam1254]}, + pages = {1-338}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnography}, + title = {Klamath Ethnography}, + volume = {30}, + year = {1930} +} + +@book{stern1965, + author = {Stern, T.}, + address = {Seattle}, + key = {Stern (1965)}, + lgcode = {Klamath [klam1254]}, + title = {The Klamath Tribe}, + year = {1965} +} + +@book{ray1963, + author = {Ray, V.F.}, + address = {Seattle}, + key = {Ray (1963)}, + lgcode = {Modoc [klam1254]}, + publisher = {University of Washington Press}, + title = {Primitive Pragmatists: The Modoc Indians of Northern California}, + year = {1963} +} + +@article{murdock1958, + author = {Murdock, G. P.}, + address = {Mexico}, + journal = {Miscellanea Paul Rivet}, + key = {Murdock (1958)}, + lgcode = {Tenino [teni1238]}, + pages = {299-315}, + title = {Social Organization of the Tenino}, + volume = {1}, + year = {1958} +} + +@incollection{teit1900, + author = {Teit, J. A.}, + address = {New York}, + booktitle = {Publications of the Jessup North Pacific Expedition}, + key = {Teit (1900)}, + lgcode = {Nlaka'pamux [thom1243], Shuswap [shus1248]}, + number = {2}, + pages = {163-392}, + publisher = {American Museum of Natural History}, + series = {Memoirs of the American Museum of Natural History}, + title = {The Thompson Indians of British Columbia}, + volume = {1}, + year = {1900} +} + +@article{teit1909, + author = {Teit, J. A.}, + glottolog_ref = {hh:e:Teit:Shuswap}, + journal = {Mem. Amer. Mus. Nat. Hist.}, + key = {Teit (1909)}, + lgcode = {Shuswap [shus1248]}, + pages = {447-758}, + publisher = {Leiden: Brill}, + series = {Memoirs of the American Museum of Natural History}, + title = {The Shuswap}, + volume = {4}, + year = {1909} +} + +@incollection{teit1930, + author = {Teit, J. A.}, + address = {Washington, D.C.}, + booktitle = {FortyFifth Annual Report of the Bureau of American Ethnology to the Secretary of the Smithsonian Institution, 1927-1928}, + key = {Teit (1930)}, + lgcode = {Bitterroot Salish [kali1309], Coeur d’Alene [coeu1236], Kalispel [kali1309], Sanpoil [sanp1257], Syilx [sout2963]}, + pages = {23-395}, + publisher = {Smithsonian Institution}, + title = {The Salishan Tribes of the Western Plateaus}, + year = {1930} +} + +@book{turneyhigh1937, + author = {Turney-High, H. H.}, + address = {Menasha, Wisc.}, + key = {Turney-High (1937)}, + lgcode = {Bitterroot Salish [kali1309]}, + number = {48}, + pages = {1-161}, + publisher = {American Anthropological Association}, + series = {Memoirs of the American Anthropological Association}, + title = {The Flathead Indians of Montana}, + year = {1937} +} + +@incollection{clineetal1938, + author = {Cline, W. and Commons, R. S. and Mandelbaum, M. and and. L. V. W. Walters, R. H. Post}, + editor = {Spier, L.}, + address = {Menasha, Wisconsin}, + booktitle = {Contributions from the Laboratory of Anthropology, No. 2}, + key = {Cline et al. (1938)}, + lgcode = {Sinkaitk [sout2963], Syilx [sout2963]}, + number = {6}, + pages = {1-262}, + publisher = {George Banta}, + series = {General Series in Anthro-pology}, + title = {The Sinkaietk or Southern Okanagon of Washington}, + year = {1938} +} + +@article{teit1928, + author = {Teit, J. A.}, + editor = {Boas, F.}, + journal = {University of Washington Publications in Anthropology}, + key = {Teit (1928)}, + lgcode = {Sinkiuse-Columbia [colu1250], Wenatchi [wena1241]}, + number = {4}, + pages = {83-128}, + title = {The Middle Columbia Salish}, + volume = {2}, + year = {1928} +} + +@article{jacobs1932, + author = {Jacobs, Melville}, + journal = {American Anthropologist}, + key = {Jacobs (1932)}, + lgcode = {Klikitat [nucl1237]}, + pages = {688-693}, + title = {Northern Sahaptin Kinship Terms}, + volume = {34}, + year = {1932} +} + +@book{spierandsapir1930, + author = {Spier, L. and Sapir, E.}, + key = {Spier and Sapir (1930)}, + lgcode = {Wishram [wasc1239]}, + pages = {151-300}, + series = {Univ. Wash. Publ. Anth.}, + title = {Wishram Ethnography}, + volume = {3}, + year = {1930} +} + +@article{ray1939, + author = {Ray, V. F.}, + journal = {Publ. F. W. Hodge Anniv. Publ. Fund}, + key = {Ray (1939)}, + lgcode = {Klikitat [klik1240], Umatilla [umat1237]}, + pages = {1-154}, + title = {Cultural Relations in the Plateau of Northewestern America}, + volume = {3}, + year = {1939} +} + +@misc{rigsby1963, + author = {Rigsby, B. J.}, + howpublished = {Personal communication}, + key = {Rigsby (1963)}, + lgcode = {Umatilla [umat1237]}, + year = {1963} +} + +@article{gifford1940, + author = {Gifford, E. W.}, + journal = {Anth. Rec.}, + key = {Gifford (1940)}, + lgcode = {Chiricahua [mesc1238], Chiricahua (Huachuca) [mesc1238], Chiricahua (Warm Springs) [mesc1238], Jicarilla [jica1244], Lipan Apache [lipa1241], Mescalero [mesc1238], Santa Ana [sant1426], Southern Ute [utee1244], Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615], Zuni [zuni1245]}, + pages = {1-207}, + title = {Apache-Pueblo}, + volume = {4}, + year = {1940} +} + +@article{hillandhill1970, + author = {Hill, J. H. and 1-9., K. C. Hill.}, + journal = {Anthropological Linguistics}, + key = {Hill and Hill (1970)}, + lgcode = {Southern Ute [utee1244]}, + pages = {231-38}, + title = {A note on Uto-Aztecan color terminologies}, + volume = {12}, + year = {1970} +} + +@book{lowie1924, + author = {Lowie, R. H.}, + address = {New York}, + key = {Lowie (1924)}, + lgcode = {Bear Creek Northern Paiute [nort1551], Chemehuevi [chem1251], Kuyuidokado [sout2967], Moapa [sout2969], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Ute [utee1244], Uintah Ute [utee1244], Uncompahgre Ute [utee1244], White Knife Shoshoni [west2622], Wind River Eastern Shoshone [nort2955]}, + number = {3}, + pages = {185-314}, + publisher = {American Museum of Natural History}, + series = {Anthropological Papers}, + title = {Notes on Shoshonean Ethnography}, + volume = {20}, + year = {1924} +} + +@incollection{opler1940a, + author = {Opler, M. K.}, + editor = {Linton, R.}, + address = {New York}, + booktitle = {Acculturation in Seven American Indian Tribes}, + key = {Opler (1940a)}, + lgcode = {Southern Ute [utee1244]}, + pages = {119-203}, + title = {The Southern Ute of Colorado}, + year = {1940} +} + +@article{stewart1942, + author = {Stewart, Omer C.}, + journal = {Anthropological Records}, + key = {Stewart (1942)}, + lgcode = {Antarianunts [utee1244], Chemehuevi [chem1251], Gosiute [gosi1242], Moache [utee1244], Moanunts [utee1244], Pahvant [utee1244], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Paiute (Kaibab) [sout2969], Southern Ute [utee1244], Taviwatsiu [utee1244], Uintah Ute [utee1244], Uncompahgre Ute [utee1244]}, + pages = {231-360}, + title = {Ute - Southern Paiute}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar006-005.pdf}, + volume = {6}, + year = {1942} +} + +@book{curtis1911, + author = {Curtis, E. S.}, + address = {Norwood}, + key = {Curtis (1911)}, + lgcode = {Nez Perce [nezp1238]}, + pages = {3-195}, + series = {The North American Indian}, + title = {The Nez Perces. Wallawalla. Umatilla. Cayuse. The Chinookan tribes.}, + volume = {8}, + year = {1911} +} + +@misc{elmendorf1963, + author = {Elmendorf, W. W.}, + howpublished = {Personal communication}, + key = {Elmendorf (1963)}, + lgcode = {Nez Perce [nezp1238]}, + year = {1963} +} + +@book{haines1955, + author = {Haines, F.}, + address = {Norman}, + key = {Haines (1955)}, + lgcode = {Nez Perce [nezp1238]}, + title = {The Nez Perces}, + year = {1955} +} + +@article{spiden1908, + author = {Spiden, H. J.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Spiden (1908)}, + lgcode = {Nez Perce [nezp1238]}, + pages = {165-274}, + title = {The Nez Perce Indians}, + volume = {2}, + year = {1908} +} + +@article{stewart1941, + author = {Stewart, Omer C.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Stewart (1941)}, + lgcode = {Atsakudokwa [nort1551], Kidutokado [nort1551], Kuyuidokado [sout2967], Sawakudokwa [nort1551], Tagotoka [nort1551], Toedokado [sout2967], Uintah Ute [utee1244], Wadadokado [nort1551], Washo [wash1253]}, + number = {3}, + pages = {361-446}, + publisher = {University of California Press}, + title = {Culture Element Distributions. XIV: Northern Paiute}, + volume = {4}, + year = {1941} +} + +@article{stewart1937, + author = {Stewart, Omer C.}, + journal = {Anthropological Records}, + key = {Stewart (1937)}, + lgcode = {Wadadokado [nort1551]}, + pages = {127-149}, + title = {Northern Paiute Bands}, + volume = {2}, + year = {1937} +} + +@book{whiting1950, + author = {Whiting, B. B.}, + address = {New York}, + key = {Whiting (1950)}, + lgcode = {Wadadokado [nort1551]}, + number = {15}, + pages = {1-110}, + publisher = {Viking Fund}, + series = {Viking Fund Publications in Anthropology}, + title = {Paiute Sorcery}, + year = {1950} +} + +@article{anguloandfreeland1929, + author = {Angulo, J. de and Freeland, L. S.}, + journal = {Journ. Soc. Americ.}, + key = {Angulo and Freeland (1929)}, + lgcode = {Kidutokado [nort1551]}, + pages = {313-335}, + title = {Notes on the Northern Paiute of California}, + volume = {21}, + year = {1929} +} + +@article{kelly1932, + author = {Kelly, I.T.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Kelly (1932)}, + lgcode = {Kidutokado [nort1551]}, + number = {3}, + pages = {67-210}, + publisher = {University of California Press}, + title = {Ethnography of the Surprise Valley Paiute}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp031-004.pdf}, + volume = {31}, + year = {1932} +} + +@article{steward1941, + author = {Steward, J. H.}, + journal = {Anth. Rec.}, + key = {Steward (1941)}, + lgcode = {Beatty [pana1305], Eastern Mono [mono1275], Elko Shoshoni [west2622], Ely Shoshoni [west2622], Lida Shoshoni [west2622], Mahaguaduka [west2622], Railroad Valley Shoshoni [west2622], Sawakudokwa [nort1551], Southern Paiute (Las Vegas) [sout2969], Spring Valley Shoshoni [west2622], Tunava (Deep Springs and Fish Lake) [mono1275], Tümpisa Shoshone (Panamint) [pana1305], Wadaduka [west2622], White Knife Shoshoni [west2622], Wiyambituka [west2622], Yahanduka [west2622]}, + pages = {209-259}, + title = {Nevada Shoshone}, + volume = {4}, + year = {1941} +} + +@book{riddell1960, + author = {Riddell, F. A.}, + address = {Carson City}, + key = {Riddell (1960)}, + lgcode = {Wadatkuht [sout2967]}, + number = {4}, + pages = {1-87}, + publisher = {Nevada State Museum}, + series = {Nevada State Museum Anthropological Papers}, + title = {Honey Lake Paiute Ethnography}, + year = {1960} +} + +@article{park1934, + author = {Park, W. Z.}, + journal = {American Anthropologist}, + key = {Park (1934)}, + lgcode = {Kuyuidokado [sout2967]}, + pages = {98-368}, + title = {Paviotso Shamanism}, + volume = {36}, + year = {1934} +} + +@article{park1937, + author = {Park, W. Z.}, + journal = {Amer. Anth.}, + key = {Park (1937)}, + lgcode = {Kuyuidokado [sout2967]}, + pages = {367-368}, + title = {Paviotso Polyandry}, + volume = {39}, + year = {1937} +} + +@article{park1938a, + author = {Park, W. Z.}, + journal = {Northw. Univ. Stud. Soc. Sci.}, + key = {Park (1938a)}, + lgcode = {Kuyuidokado [sout2967]}, + pages = {1-166}, + title = {Shamanism in Western North America}, + volume = {2}, + year = {1938} +} + +@book{steward1938, + author = {Steward, J. H.}, + address = {Washington, D.C.}, + key = {Steward (1938)}, + lgcode = {Agaiduka [nort2955], Antelope Valley Shoshoni [west2622], Bannock [bann1248], Beatty [pana1305], Bohogue [nort2955], Eastern Mono [mono1275], Elko Shoshoni [west2622], Ely Shoshoni [west2622], Gosiute [gosi1242], Hukundika [nort2955], Kawaiisu [kawa1283], Kawich Mountain Shoshoni [west2622], Koso [pana1305], Lida Shoshoni [west2622], Mahaguaduka [west2622], Pahvant [utee1244], Railroad Valley Shoshoni [west2622], Southern Paiute (Las Vegas) [sout2969], Spring Valley Shoshoni [west2622], Tubaduka [west2622], Tukudika [nort2955], Tunava (Deep Springs and Fish Lake) [mono1275], Tunava (Deep Springs) [mono1275], Tunava (Fish Lake) [mono1275], Tümpisa Shoshone (Death Valley) [pana1305], Tümpisa Shoshone (Panamint) [pana1305], Tümpisa Shoshone (Saline and Panamint) [pana1305], Tümpisa Shoshone (Saline) [pana1305], Wadaduka [west2622], White Knife Shoshoni [west2622], Wiyambituka [west2622], Yahanduka [west2622]}, + number = {120}, + pages = {1-346}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {Basin-Plateau Aboriginal Sociopolitical Groups}, + year = {1938} +} + +@article{cushing1882, + author = {Cushing, F. H.}, + journal = {Atlantic Monthly}, + key = {Cushing (1882)}, + lgcode = {Havasupai [hava1249]}, + pages = {362-374, 541-559}, + title = {The Nation of the Willows}, + volume = {50}, + year = {1882} +} + +@book{iliff1954, + author = {Iliff, F. G.}, + address = {New York}, + key = {Iliff (1954)}, + lgcode = {Havasupai [hava1249]}, + title = {People of the Blue Water}, + year = {1954} +} + +@book{james1903, + author = {James, G. W.}, + address = {Boston}, + key = {James (1903)}, + lgcode = {Havasupai [hava1249]}, + title = {The Indians of the Painted Desert Region}, + year = {1903} +} + +@article{smithson1959, + author = {Smithson, C. L.}, + journal = {Department of Anthropology. University of Utah,. Anthropological Papers}, + key = {Smithson (1959)}, + lgcode = {Havasupai [hava1249]}, + pages = {1-170}, + title = {the Havasupai Woman}, + volume = {38}, + year = {1959} +} + +@article{spier1928, + author = {Spier, L.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Spier (1928)}, + lgcode = {Havasupai [hava1249]}, + pages = {81-408}, + title = {Havasupai Ethnography}, + volume = {29}, + year = {1928} +} + +@article{wpawp1940, + author = {Works Projects Administration, Writers Program.}, + journal = {Arizona State Teachers College Bulletin}, + key = {WPAWP (1940)}, + lgcode = {Havasupai [hava1249]}, + pages = {v, 1-18}, + title = {The Havasupai and the Huyalapai}, + volume = {21}, + year = {1940} +} + +@book{steward1933, + author = {Steward, J. H.}, + address = {Berkeley}, + key = {Steward (1933)}, + lgcode = {Eastern Mono [mono1275]}, + number = {3}, + pages = {233-350}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Ethnography of the Owens Valley Paiute}, + volume = {33}, + year = {1933} +} + +@book{ray1932, + author = {Ray, V.F.}, + address = {Seattle}, + key = {Ray (1932)}, + lgcode = {Sanpoil [sanp1257]}, + pages = {1-237}, + publisher = {University of Washington Press}, + series = {University of Washington Publications in Anthropology}, + title = {The Sanpoil and Nespelem: Salishan Peoples of Northeastern Washington}, + volume = {5}, + year = {1932} +} + +@article{steward1943, + author = {Steward, J. H.}, + journal = {Anth. Rec.}, + key = {Steward (1943)}, + lgcode = {Agaiduka [nort2955], Bannock [bann1248], Bohogue [nort2955], Gosiute [gosi1242], Hukundika [nort2955], Tubaduka [west2622]}, + pages = {263-292}, + title = {Northern and Gosiute Shoshoni}, + volume = {8}, + year = {1943} +} + +@incollection{harris1940, + author = {Harris, J.}, + editor = {Linton, R.}, + address = {New York}, + booktitle = {Acculturation in Seven American Indian Tribes}, + key = {Harris (1940)}, + lgcode = {White Knife Shoshoni [west2622]}, + pages = {39-166}, + publisher = {D. Appleton-Century}, + title = {The White Knife Shoshoni of Nevada}, + year = {1940} +} + +@article{murphyandmurphy1960, + author = {Murphy, R. F. and Murphy, Y.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Murphy and Murphy (1960)}, + lgcode = {Agaiduka [nort2955], Bannock [bann1248], Bohogue [nort2955], Wind River Eastern Shoshone [nort2955]}, + number = {7}, + pages = {293-338}, + publisher = {University of California Press}, + title = {Shoshone-Bannock Subsistence and Society}, + volume = {16}, + year = {1960} +} + +@article{lowie1909, + author = {Lowie, R. H.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Lowie (1909)}, + lgcode = {Agaiduka [nort2955], Eastern Mono [mono1275], Tukudika [nort2955]}, + number = {2}, + pages = {169-306}, + title = {The Northern Shoshone}, + volume = {2}, + year = {1909} +} + +@article{hultkrantz1957, + author = {Hultkrantz, A.}, + journal = {Annals of Wyoming}, + key = {Hultkrantz (1957)}, + lgcode = {Tukudika [nort2955]}, + pages = {125-149}, + title = {The Indians of Yellowstone Park}, + volume = {29}, + year = {1957} +} + +@article{malouf1950, + author = {Malouf, C.}, + journal = {Univ. Utah Anth. Pap.}, + key = {Malouf (1950)}, + lgcode = {Gosiute [gosi1242]}, + pages = {34-42}, + title = {The Gosiute Indians}, + volume = {3}, + year = {1950} +} + +@book{kelly1964, + author = {Kelly, I. T.}, + address = {Salt Lake City}, + key = {Kelly (1964)}, + lgcode = {Antarianunts [utee1244], Chemehuevi [chem1251], Panguitch [utee1244], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Paiute (Kaibab) [sout2969]}, + number = {69}, + publisher = {University of Utah Press}, + series = {Glen Canyon Series No. 21. University of Utah Anthropological Papers}, + title = {Southern Paiute Ethnography}, + year = {1964} +} + +@article{hoebel1939, + author = {Hoebel, E. A.}, + journal = {American Anthropologist}, + key = {Hoebel (1939)}, + lgcode = {Hukundika [nort2955]}, + pages = {440-457}, + title = {Comanche and Hukandika Shoshone Relationship Systems}, + volume = {41}, + year = {1939} +} + +@article{watkins1945, + author = {Watkins, F. E.}, + journal = {Masterkey}, + key = {Watkins (1945)}, + lgcode = {Moapa [sout2969]}, + pages = {13-18}, + title = {Moapa Paiute Wickiup}, + volume = {19}, + year = {1945} +} + +@article{drucker1941, + author = {Drucker, P.}, + journal = {Anth. Rec.}, + key = {Drucker (1941)}, + lgcode = {Chemehuevi [chem1251], Cocopa [coco1261], Hualapai [wala1270], Kamia [kumi1248], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Maricopa [mari1440], Mojave [moha1256], Pima [akim1239], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Tohono O'odham [toho1246], Yaqui [yaqu1251], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]}, + pages = {91-230}, + title = {Yuman-Piman}, + volume = {6}, + year = {1941} +} + +@article{kelly1938, + author = {Kelly, I. T.}, + journal = {American Anthropologist}, + key = {Kelly (1938)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Paiute (Kaibab) [sout2969]}, + pages = {633-634}, + title = {Band Organization of the Southern Paiute}, + volume = {40}, + year = {1938} +} + +@inbook{kroeber1925g, + author = {Kroeber, A. L.}, + booktitle = {Handbook of the Indians of California}, + key = {Kroeber (1925g)}, + lgcode = {Chemehuevi [chem1251]}, + pages = {593-600}, + series = {Bull. Bur. Amer. Ethn.}, + title = {The Chemehuevi}, + volume = {78}, + year = {1925} +} + +@article{barrett1917b, + author = {Barrett, S. A.}, + journal = {Bull. Publ. Mus. Milwaukee}, + key = {Barrett (1917b)}, + lgcode = {Washo [wash1253]}, + pages = {1-52}, + title = {The Washo Indians}, + volume = {2}, + year = {1917} +} + +@book{downs1966, + author = {Downs, J. F.}, + address = {New York}, + key = {Downs (1966)}, + lgcode = {Washo [wash1253]}, + publisher = {Holt, Rinehart and Winston}, + title = {The Two Worlds of the Washo: An Indian tribe of California and Nevada}, + year = {1966} +} + +@article{freed1960, + author = {Freed, Stanley A.}, + journal = {Anth. Records}, + key = {Freed (1960)}, + lgcode = {Washo [wash1253]}, + number = {6}, + pages = {349-418}, + title = {Changing Washo Kinship}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar014-007.pdf}, + volume = {14}, + year = {1960} +} + +@article{lowie1939, + author = {Lowie, R. H.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Lowie (1939)}, + lgcode = {Washo [wash1253]}, + pages = {301-352}, + title = {Ethnographic Notes on the Washo}, + volume = {36}, + year = {1939} +} + +@article{lowie1930, + author = {Lowie, R. H.}, + journal = {American Anthropologist}, + key = {Lowie (1930)}, + lgcode = {Bannock [bann1248]}, + pages = {294-299}, + title = {The Kinship Terminology of the Bannock Indians}, + volume = {32}, + year = {1930} +} + +@article{hultkrantz1958, + author = {Hultkrantz, A.}, + journal = {Proc. Intern. Congr. Americ.}, + key = {Hultkrantz (1958)}, + lgcode = {Wind River Eastern Shoshone [nort2955]}, + pages = {148-154}, + title = {Tribal Divisions Within the Eastern Shoshoni of Wyoming}, + volume = {32}, + year = {1958} +} + +@article{shimkin1947a, + author = {Shimkin, D. B.}, + journal = {Anth. Rec.}, + key = {Shimkin (1947a)}, + lgcode = {Wind River Eastern Shoshone [nort2955]}, + pages = {289-326}, + title = {Childhood and Development Among the Wind River Shoshone}, + volume = {5}, + year = {1947} +} + +@article{shimkin1947b, + author = {Shimkin, D. B.}, + journal = {Anth. Rec.}, + key = {Shimkin (1947b)}, + lgcode = {Wind River Eastern Shoshone [nort2955]}, + pages = {245-288}, + title = {Wind River Ethnogeography}, + volume = {5}, + year = {1947} +} + +@misc{kniffenetal1935, + author = {Kniffen, F. and MacGregor, G. and McKennan, R. and Mekeel, S. and Mook, M.}, + editor = {Kroeber, A. L.}, + address = {Menasha, Wisc.}, + key = {Kniffen et al. (1935)}, + lgcode = {Hualapai [wala1270]}, + number = {42}, + pages = {1-295}, + publisher = {American Anthropological Association}, + series = {American Anthropological Association Memoir}, + title = {Walapai Ethnography}, + year = {1935} +} + +@article{gifford1936, + author = {Gifford, E. W.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1936)}, + lgcode = {Tolkepaya [yava1252], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]}, + pages = {247-354}, + title = {Northeastern and Western Yavapai}, + volume = {34}, + year = {1936} +} + +@article{boas1918, + author = {Boas, F.}, + address = {Washington, D.C.}, + glottolog_ref = {hh:t:Boas:Kutenai}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Boas (1918)}, + lgcode = {Kutenai [kute1249]}, + pages = {1-387}, + publisher = {Washington, D.C.: Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {Kutenai Tales}, + volume = {59}, + year = {1918} +} + +@article{chamberlain1892, + author = {Chamberlain, A. F.}, + journal = {Reports of the British Association forthe Advancement of Science}, + key = {Chamberlain (1892)}, + lgcode = {Kutenai [kute1249], Shuswap [shus1248]}, + pages = {539-617}, + title = {Report on the Kootenay Indians of South-Eastern British Columbia}, + volume = {62}, + year = {1892} +} + +@book{turneyhigh1941, + author = {Turney-High, H. H.}, + address = {Menasha, Wisc.}, + key = {Turney-High (1941)}, + lgcode = {Kutenai [kute1249]}, + number = {56}, + pages = {1-202}, + publisher = {American Anthropological Association}, + series = {Memoirs of the American Anthropological Association}, + title = {Ethnography of the Kutenai}, + year = {1941} +} + +@misc{lane1963b, + author = {Lane, R. B.}, + howpublished = {Personal communication}, + key = {Lane (1963b)}, + lgcode = {Chilcotin [chil1280]}, + year = {1963} +} + +@article{teit1907, + author = {Teit, J. A.}, + journal = {Mem. Amer. Mus. Nat. Hist.}, + key = {Teit (1907)}, + lgcode = {Chilcotin [chil1280]}, + pages = {759-789}, + title = {Notes on the Chilcotin Indians}, + volume = {4}, + year = {1907} +} + +@article{hilltout1905, + author = {Hill-Tout, C.}, + journal = {Journ. Roy. Anth. Inst.}, + key = {Hill-Tout (1905)}, + lgcode = {Lillooet [lill1248]}, + pages = {126-218}, + title = {Report on the Ethnology of the Stlatlumh}, + volume = {35}, + year = {1905} +} + +@book{teit1906b, + author = {Teit, J. A.}, + address = {New York}, + booktitle = {Publications of the Jessup North Pacific Expedition}, + glottolog_ref = {hh:e:Teit:Lillooet}, + key = {Teit (1906b)}, + lgcode = {Lillooet [lill1248]}, + pages = {193-300}, + publisher = {American Museum of Natural History}, + series = {Memoirs of the American Museum of Natural History}, + title = {The Lillooet Indians}, + volume = {II:V}, + year = {1906} +} + +@article{cooper1956, + author = {Cooper, J. M.}, + journal = {Catholic University of America Anthropological Series}, + key = {Cooper (1956)}, + lgcode = {Gros Ventre [gros1243]}, + pages = {1-491}, + title = {The Gros Ventre of Montana: Religion and Ritual}, + volume = {16}, + year = {1956} +} + +@book{flannery1953, + author = {Flannery, R.}, + address = {Washington, D.C.}, + key = {Flannery (1953)}, + lgcode = {Arapaho [arap1274], Gros Ventre [gros1243]}, + pages = {1-221}, + publisher = {Catholic University of America Press}, + series = {Catholic University of America Anthropological Series}, + title = {The Gros Ventres of Montana, Pt. I: Social Life}, + url = {https://hdl.handle.net/2027/uc1.32106008103498}, + volume = {15}, + year = {1953} +} + +@article{kroeber1908c, + author = {Kroeber, A. L.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Kroeber (1908c)}, + lgcode = {Gros Ventre [gros1243]}, + pages = {141-281}, + title = {Ethnology of the Gros Ventre}, + volume = {1}, + year = {1908} +} + +@book{curtis1909b, + author = {Curtis, E. S.}, + address = {Cambridge}, + key = {Curtis (1909b)}, + lgcode = {Arikara [arik1262]}, + series = {The North American Indian}, + title = {The Mandan. The Arikara. The Atsina.}, + volume = {5}, + year = {1909} +} + +@article{gilmore1927, + author = {Gilmore, M. R.}, + journal = {Indian Notes}, + key = {Gilmore (1927)}, + lgcode = {Arikara [arik1262]}, + pages = {332-350}, + title = {Some Notes on Arikara Tribal Organization}, + volume = {4}, + year = {1927} +} + +@article{lowie1912a, + author = {Lowie, R. H.}, + journal = {American Anthropologist}, + key = {Lowie (1912a)}, + lgcode = {Arikara [arik1262]}, + pages = {60-71}, + title = {Some Problems in the Ethnology of the Crow and Village Indians}, + volume = {14}, + year = {1912} +} + +@article{macgowan1942, + author = {Macgowan, E. S.}, + journal = {Minnesota Archaeologist}, + key = {Macgowan (1942)}, + lgcode = {Arikara [arik1262]}, + pages = {83-122}, + title = {The Arikara Indians}, + volume = {8}, + year = {1942} +} + +@book{willandhyde1917, + author = {Will, G. F. and Hyde, G. E.}, + address = {St. Louis}, + key = {Will and Hyde (1917)}, + lgcode = {Arikara [arik1262]}, + title = {Corn Among the Indians of the Upper Missouri}, + year = {1917} +} + +@incollection{denig1930, + author = {Denig, E. T.}, + editor = {Hewitt, J. N. B.}, + address = {Washington, D.C.}, + booktitle = {Forty-Sixth Annual Report of the Bureau of American Ethnology}, + key = {Denig (1930)}, + lgcode = {Assiniboine [assi1247]}, + pages = {375-628}, + publisher = {Smithsonian Institution}, + title = {Indian Tribes of the Upper Missouri}, + year = {1930} +} + +@article{lowie1910, + author = {Lowie, R. H.}, + journal = {Anth. Publ. Amer. Mus. Nat. Hist.}, + key = {Lowie (1910)}, + lgcode = {Assiniboine [assi1247]}, + pages = {1-270}, + title = {The Assiniboine}, + volume = {4}, + year = {1910} +} + +@book{rodnick1938, + author = {Rodnick, D.}, + address = {New Haven}, + key = {Rodnick (1938)}, + lgcode = {Assiniboine [assi1247]}, + title = {The Fort Belknap Assiniboine of Montana}, + year = {1938} +} + +@book{ewers1958, + author = {Ewers, John C.}, + address = {Norman}, + key = {Ewers (1958)}, + lgcode = {Blackfoot [pieg1239]}, + title = {The Blackfeet}, + year = {1958} +} + +@article{hanksandrichardson1945, + author = {Hanks, L. M. and Richardson., J.}, + journal = {Monogr. Amer. Ethn. Soc.}, + key = {Hanks and Richardson (1945)}, + lgcode = {Blackfoot [pieg1239]}, + pages = {1-31}, + title = {Observations on Northern Blackfoot Kinship}, + volume = {9}, + year = {1945} +} + +@article{wissler1910, + author = {Wissler, C.}, + journal = {Anth. Publ. Amer. Mus. Nat. Hist.}, + key = {Wissler (1910)}, + lgcode = {Blackfoot [pieg1239], Kainai [bloo1239]}, + pages = {1-175}, + title = {Material Culture of the Blackfoot Indians}, + volume = {5}, + year = {1910} +} + +@article{wissler1911, + author = {Wissler, C.}, + address = {New York}, + journal = {Anthropological Papers}, + key = {Wissler (1911)}, + lgcode = {Blackfoot [pieg1239], Kainai [bloo1239], Piegan [pieg1239]}, + number = {1}, + pages = {1-64}, + publisher = {American Museum of Natural History}, + title = {The Social Life of the Blackfoot Indians}, + volume = {7}, + year = {1911} +} + +@book{ewers1955, + author = {Ewers, John C.}, + address = {Washington, D.C.}, + key = {Ewers (1955)}, + lgcode = {Bitterroot Salish [kali1309], Blackfoot [pieg1239], Crow [crow1244], Gros Ventre [gros1243], Kainai [bloo1239], Kiowa Apache [kiow1264], Piegan [pieg1239], White Knife Shoshoni [west2622]}, + number = {159}, + pages = {1-374}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Horse in Blackfoot Indian Culture}, + year = {1955} +} + +@article{goldfrank1945a, + author = {Goldfrank, E. S.}, + journal = {Monogr. Amer. Ethn. Soc.}, + key = {Goldfrank (1945a)}, + lgcode = {Kainai [bloo1239]}, + pages = {1-73}, + title = {Changing Configurations in the Social Organization of a Blackfoot Tribe}, + volume = {7}, + year = {1945} +} + +@article{howard1961, + author = {Howard, J. H.}, + journal = {Plains Anthropologist}, + key = {Howard (1961)}, + lgcode = {Bungi [west1510]}, + pages = {xiii, 171-178}, + title = {The Identity and Demography of the Plains-Ojibwa}, + volume = {67}, + year = {1961} +} + +@article{howard1965a, + author = {Howard, J. H.}, + journal = {Anth. Pap. South Dakota Mus.}, + key = {Howard (1965a)}, + lgcode = {Bungi [west1510]}, + pages = {1-165}, + title = {The Plains-Ojbiwa or Bungi}, + volume = {1}, + year = {1965} +} + +@article{skinner1914b, + author = {Skinner, A.}, + journal = {American Anthropologist}, + key = {Skinner (1914b)}, + lgcode = {Bungi [west1510]}, + pages = {314-318}, + title = {The Cultural Position of the Plains Ojibway}, + volume = {16}, + year = {1914} +} + +@article{bowers1965, + author = {Bowers, A. W.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Bowers (1965)}, + lgcode = {Hidatsa [hida1246]}, + pages = {1-528}, + title = {Hidatsa Social and Ceremonial Organization}, + volume = {194}, + year = {1965} +} + +@book{curtis1909, + author = {Curtis, E. S.}, + address = {Cambridge}, + key = {Curtis (1909)}, + lgcode = {Hidatsa [hida1246]}, + pages = {129-172, 180-196}, + series = {The North American Indian}, + title = {The Apsaroke, or Crows. The Hidatsa.}, + volume = {4}, + year = {1909} +} + +@article{matthews1877, + author = {Matthews, W.}, + address = {United States Geological and Geographical Survey, Washington}, + glottolog_ref = {hh:sd:Matthews:Hidatsa}, + journal = {U. S. Geological and Geographical Survey Miscellaneous Publication}, + key = {Matthews (1877)}, + lgcode = {Hidatsa [hida1246]}, + pages = {1-239}, + publisher = {United States Geological and Geographical Survey, Washington: Department of the Interior}, + series = {Miscellaneous Publications}, + title = {Ethnography and Philology of the Hidatsa Indians}, + volume = {7}, + year = {1877} +} + +@incollection{wiedneuwied1906, + author = {Wied-Neuwied, M. zu}, + editor = {Thwaites, R. G.}, + booktitle = {Early Western Travels}, + key = {Wied-Neuwied (1906)}, + lgcode = {Hidatsa [hida1246]}, + pages = {357-366; 252-385}, + title = {Travels in the Interior of North America}, + volume = {22: 23}, + year = {1906} +} + +@article{wilson1917, + author = {Wilson, G. L.}, + journal = {University of Minnesota Studies in the Social Sciences}, + key = {Wilson (1917)}, + lgcode = {Hidatsa [hida1246]}, + pages = {1-129}, + title = {Agriculture of the Hidatsa Indians}, + volume = {4}, + year = {1917} +} + +@article{gatschet1891, + author = {Gatschet, A. A.}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + key = {Gatschet (1891)}, + lgcode = {Karankawa [kara1289]}, + pages = {ii, 5-103}, + title = {The Karankawa Indians}, + volume = {1}, + year = {1891} +} + +@article{schaedel1949, + author = {Schaedel, R. P.}, + journal = {Southwestern Journal of Anthropology}, + key = {Schaedel (1949)}, + lgcode = {Karankawa [kara1289]}, + pages = {117-137}, + title = {The Karankawa of the Texas Gulf Coast}, + volume = {5}, + year = {1949} +} + +@article{lowie1923, + author = {Lowie, R. H.}, + journal = {American Anthropologist}, + key = {Lowie (1923)}, + lgcode = {Kiowa [kiow1266]}, + pages = {279-281}, + title = {A Note on Kiowa Kinship Terms and Usages}, + volume = {25}, + year = {1923} +} + +@article{mooney1898, + author = {Mooney, J.}, + glottolog_ref = {hh:ew:Mooney:Kiowa}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Mooney (1898)}, + lgcode = {Kiowa [kiow1266]}, + pages = {129-460}, + title = {Calendar History of the Kiowa Indians}, + volume = {17}, + year = {1898} +} + +@article{richardson1940, + author = {Richardson, J.}, + journal = {Mem. Amer. Ethn. Soc.}, + key = {Richardson (1940)}, + lgcode = {Kiowa [kiow1266]}, + pages = {1-136}, + title = {Law and Status Among the Kiowa Indians}, + volume = {1}, + year = {1940} +} + +@article{josselindejong1912, + author = {Josselin de Jong, J. P. B. de.}, + journal = {Int. Arch. Ethnog.}, + key = {Josselin de Jong (1912)}, + lgcode = {Piegan [pieg1239]}, + pages = {191-197}, + title = {Social Organization of the Southern Piegans}, + volume = {20}, + year = {1912} +} + +@incollection{michelson1916, + author = {Michelson, T.}, + address = {Washington}, + booktitle = {Holmes Anniversary Volume}, + key = {Michelson (1916)}, + lgcode = {Piegan [pieg1239]}, + pages = {320-333}, + title = {Notes on the Piegan System of Consanguinity}, + year = {1916} +} + +@article{mandelbaum1940, + author = {Mandelbaum, D. G.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Mandelbaum (1940)}, + lgcode = {Plains Cree [plai1258]}, + number = {2}, + pages = {155-316}, + title = {The Plains Cree}, + volume = {37}, + year = {1940} +} + +@article{skinner1914a, + author = {Skinner, A.}, + journal = {American Anthropologist}, + key = {Skinner (1914a)}, + lgcode = {Plains Cree [plai1258]}, + pages = {68-87}, + title = {Notes on the Plains Cree}, + volume = {16}, + year = {1914} +} + +@incollection{mcallister1937, + author = {Mcallister, J. G.}, + editor = {Eggan}, + address = {Chicago}, + booktitle = {Social Anthropology of North American Tribes}, + key = {Mcallister (1937)}, + lgcode = {Kiowa Apache [kiow1264]}, + pages = {97-169}, + title = {Kiowa-Apache Social Organization}, + year = {1937} +} + +@book{riggs1893, + author = {Riggs, R. S.}, + address = {Washington}, + glottolog_ref = {wals:5060}, + key = {Riggs (1893)}, + lgcode = {Santee [dako1258]}, + pages = {1-232}, + publisher = {U.S. Government Printing Office}, + series = {U. S. Geol. Surv., Contr. N. Amer. Ethn.}, + title = {Dakota Grammar, Texts, and Ethnography}, + volume = {9}, + year = {1893} +} + +@article{skinner1919, + author = {Skinner, A.}, + journal = {American Anthropologist}, + key = {Skinner (1919)}, + lgcode = {Santee [dako1258]}, + pages = {164-174}, + title = {A Sketch of Eastern Dakota Ethnology}, + volume = {21}, + year = {1919} +} + +@article{wallis1947, + author = {Wallis, W. D.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Wallis (1947)}, + lgcode = {Santee [dako1258]}, + pages = {i, 1-225}, + title = {The Canadian Dakota}, + volume = {41}, + year = {1947} +} + +@article{driverandmassey1957, + author = {Driver, H. E. and Massey., W. C.}, + journal = {Trans. Amer. Phil. Soc., n. s.}, + key = {Driver and Massey (1957)}, + lgcode = {Coahuilteco [coah1252]}, + pages = {ii, 165-456}, + title = {Comparative Studies of North American Indians}, + volume = {47}, + year = {1957} +} + +@book{garcia1760, + author = {Garcia, B.}, + address = {Mexico}, + key = {Garcia (1760)}, + lgcode = {Coahuilteco [coah1252]}, + publisher = {Rivera}, + title = {Manual para administrar los santos sacramentos}, + year = {1760} +} + +@misc{romneynd, + author = {Romney, A. K.}, + howpublished = {Pers. Comm.}, + key = {Romney (nd)}, + lgcode = {Coahuilteco [coah1252]}, + title = {Kinship data} +} + +@article{gladwin1948, + author = {Gladwin, T.}, + journal = {American Anthropologist}, + key = {Gladwin (1948)}, + lgcode = {Comanche [coma1245]}, + pages = {73-94}, + title = {Comanche Kin Behavior}, + volume = {50}, + year = {1948} +} + +@article{hoebel1940, + author = {Hoebel, E. A.}, + journal = {Memoirs of the American Anthropological Association}, + key = {Hoebel (1940)}, + lgcode = {Comanche [coma1245]}, + pages = {1-149}, + title = {The Political Organization and Law-Ways of the Comanche Indians}, + volume = {54}, + year = {1940} +} + +@book{lee1957, + author = {Lee, N.}, + address = {Norman}, + key = {Lee (1957)}, + lgcode = {Comanche [coma1245]}, + title = {Three Years Among the Comanches}, + year = {1957} +} + +@book{rister1955, + author = {Rister, C. C.}, + address = {Glendale}, + key = {Rister (1955)}, + lgcode = {Comanche [coma1245]}, + title = {Comanche Bondage}, + year = {1955} +} + +@book{wallaceandhoebel1952, + author = {Wallace, E. and Hoebel, E. A.}, + address = {Norman}, + key = {Wallace and Hoebel (1952)}, + lgcode = {Comanche [coma1245]}, + publisher = {University of Oklahoma Press}, + title = {The Comanches, Lords of the South Plains}, + year = {1952} +} + +@incollection{denig1953, + author = {Denig, E. T.}, + editor = {Ewers, J. C.}, + address = {Washington, D.C.}, + booktitle = {Smithsonian Anthropological Papers No. 33. Bureau of Amerian Ethnology Bulletin No. 151}, + key = {Denig (1953)}, + lgcode = {Crow [crow1244]}, + pages = {1-74}, + publisher = {Smithsonian Institution}, + title = {Of the Crow Nation}, + year = {1953} +} + +@article{lowie1912b, + author = {Lowie, T. H.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Lowie (1912b)}, + lgcode = {Crow [crow1244]}, + pages = {179-248}, + title = {Social Life of the Crow Indians}, + volume = {9}, + year = {1912} +} + +@article{lowie1917b, + author = {Lowie, T. H.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Lowie (1917b)}, + lgcode = {Crow [crow1244]}, + pages = {53-99}, + title = {Supplementary Notes on the Social Life of the Crow}, + volume = {21}, + year = {1917} +} + +@article{lowie1919, + author = {Lowie, R. H.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Lowie (1919)}, + lgcode = {Crow [crow1244]}, + pages = {101-200}, + title = {The Tobacco Society of the Crow Indians}, + volume = {21}, + year = {1919} +} + +@article{lowie1922, + author = {Lowie, T. H.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Lowie (1922)}, + lgcode = {Crow [crow1244]}, + pages = {201-270}, + title = {The Material Culture of the Crow Indians}, + volume = {21}, + year = {1922} +} + +@book{lowie1935, + author = {Lowie, T. H.}, + address = {New York}, + key = {Lowie (1935)}, + lgcode = {Crow [crow1244]}, + title = {The Crow Indians}, + year = {1935} +} + +@book{wagnerandallen1933, + author = {Wagner, Glendolin D. and Allen, William A.}, + address = {Caldwell, Idaho}, + key = {Wagner and Allen (1933)}, + lgcode = {Crow [crow1244]}, + publisher = {Caxton Printers}, + title = {Blankets and moccasins}, + year = {1933} +} + +@misc{anderson1949, + author = {Anderson, R.}, + howpublished = {Manuscript}, + key = {Anderson (1949)}, + lgcode = {Cheyenne [chey1247]}, + title = {Northern Cheyenne field notes}, + year = {1949} +} + +@incollection{eggan1937b, + author = {Eggan, F.}, + editor = {Eggan}, + address = {Chicago}, + booktitle = {Social Anthropology of North American Tribes}, + key = {Eggan (1937b)}, + lgcode = {Arapaho [arap1274], Cheyenne [chey1247]}, + pages = {33-95}, + title = {The Cheyenne and Arapaho Kinship System}, + year = {1937} +} + +@article{grinnell1918, + author = {Grinnell, George B.}, + journal = {American Anthropologist}, + key = {Grinnell (1918)}, + lgcode = {Cheyenne [chey1247]}, + pages = {359-380}, + title = {Early Cheyenne villages}, + volume = {20}, + year = {1918} +} + +@book{grinnell1923, + author = {Grinnell, G. B.}, + address = {New Haven}, + key = {Grinnell (1923)}, + lgcode = {Cheyenne [chey1247]}, + title = {The Cheyenne Indians. 2v}, + year = {1923} +} + +@article{hilger1946, + author = {Hilger, Sister M. Inez.}, + journal = {American Anthropologist}, + key = {Hilger (1946)}, + lgcode = {Cheyenne [chey1247]}, + pages = {60-69}, + title = {Notes on Cheyenne child life}, + volume = {48}, + year = {1946} +} + +@book{hoebel1960, + author = {Hoebel, E. A.}, + address = {New York}, + key = {Hoebel (1960)}, + lgcode = {Cheyenne [chey1247]}, + title = {The Cheyennes}, + year = {1960} +} + +@book{mooney190507, + author = {Mooney, James}, + key = {Mooney (1905-07)}, + lgcode = {Cheyenne [chey1247]}, + series = {American Anthropological Association Memoirs}, + title = {The Cheyenne Indians}, + volume = {6}, + year = {1905-1907} +} + +@book{bowers1950, + author = {Bowers, A. W.}, + address = {Chicago}, + key = {Bowers (1950)}, + lgcode = {Mandan [mand1446]}, + title = {Mandan Social and Ceremonial Organization}, + year = {1950} +} + +@article{lowie1917a, + author = {Lowie, R. H.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Lowie (1917a)}, + lgcode = {Mandan [mand1446]}, + pages = {7-16}, + title = {Social Life of the Mandan}, + volume = {21}, + year = {1917} +} + +@article{willandspinden1906, + author = {Will, G. F. and Spinden, H. J.}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + key = {Will and Spinden (1906)}, + lgcode = {Mandan [mand1446]}, + pages = {81-219}, + title = {The Mandans}, + volume = {3}, + year = {1906} +} + +@article{honigmann1956a, + author = {Honigmann, J. J.}, + address = {Ottawa}, + journal = {Anthropologica}, + key = {Honigmann (1956a)}, + lgcode = {Sarcee [sars1236]}, + pages = {17-38}, + title = {Notes on Sarsi Kin Behavior}, + volume = {2}, + year = {1956} +} + +@book{jenness1938, + author = {Jenness, D.}, + address = {Ottawa}, + key = {Jenness (1938)}, + lgcode = {Sarcee [sars1236]}, + number = {90}, + pages = {1-98}, + publisher = {Canada Department of Mines and Resources}, + series = {National Museums of Canada Bulletin}, + title = {The Sarcee Indians of Alberta}, + year = {1938} +} + +@book{curtis1908, + author = {Curtis, E. S.}, + address = {Cambridge}, + key = {Curtis (1908)}, + lgcode = {Teton [lako1247]}, + pages = {3-118, 137-190}, + series = {The North American Indian}, + title = {The Teton Sioux. The Yanktonai. The Assiniboin.}, + volume = {3}, + year = {1908} +} + +@article{deloria1932, + author = {Deloria, E.}, + address = {New York}, + glottolog_ref = {mpieva:Deloria1932Dakotate}, + journal = {Publ. Amer. Ethn. Soc.}, + key = {Deloria (1932)}, + lgcode = {Teton [lako1247]}, + pages = {1-279}, + publisher = {New York: Stechert}, + series = {Publications of the American Ethnological Society}, + title = {Dakota Texts}, + volume = {14}, + year = {1932} +} + +@article{dorsey1894, + author = {Dorsey, J. O.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Dorsey (1894)}, + lgcode = {Teton [lako1247]}, + pages = {218-222}, + title = {Siouan Sociology}, + volume = {15}, + year = {1894} +} + +@article{erikson1939, + author = {Erikson, Erik H.}, + journal = {Journal of Psychology}, + key = {Erikson (1939)}, + lgcode = {Teton [lako1247]}, + pages = {101-56}, + title = {Observations on Sioux education}, + volume = {7}, + year = {1939} +} + +@book{erikson1950, + author = {Erikson, Erik H.}, + address = {New York}, + key = {Erikson (1950)}, + lgcode = {Teton [lako1247]}, + publisher = {W. W. Norton}, + title = {Childhood and society}, + year = {1950} +} + +@book{ewers1937, + author = {Ewers, John C.}, + address = {Berkeley}, + key = {Ewers (1937)}, + lgcode = {Teton [lako1247]}, + publisher = {National Park Service}, + title = {Teton Dakota ethnology and history}, + year = {1937} +} + +@article{goldfrank1943, + author = {Goldfrank, Esther}, + journal = {American Anthropologist}, + key = {Goldfrank (1943)}, + lgcode = {Teton [lako1247]}, + pages = {67-83}, + title = {Historic Change and Social Character: A Study of the Teton Dakota}, + volume = {45}, + year = {1943} +} + +@article{hassrick1944, + author = {Hassrick, R. B.}, + journal = {American Anthropologist}, + key = {Hassrick (1944)}, + lgcode = {Teton [lako1247]}, + pages = {338-347}, + title = {Teton Dakota Kinship Terminology}, + volume = {46}, + year = {1944} +} + +@book{hassrick1964, + author = {Hassrick, R. B.}, + address = {Norman}, + key = {Hassrick (1964)}, + lgcode = {Teton [lako1247]}, + title = {The Sioux}, + year = {1964} +} + +@book{macgregor1946, + author = {MacGregor, Gordon}, + address = {Chicago}, + key = {MacGregor (1946)}, + lgcode = {Teton [lako1247]}, + publisher = {University of Chicago Press}, + title = {Warriors without weapons}, + year = {1946} +} + +@book{mckeel1936, + author = {Mckeel, H. S.}, + key = {Mckeel (1936)}, + lgcode = {Teton [lako1247]}, + number = {6}, + series = {Yale University Publications in Anthropology}, + title = {The Economy of a Modern Teton Dakota Community}, + year = {1936} +} + +@article{mekeel1936, + author = {Mekeel, Scudder}, + journal = {Progressive Education}, + key = {Mekeel (1936)}, + lgcode = {Teton [lako1247]}, + pages = {151-59}, + title = {An anthropologist's observation on American Indian education}, + volume = {13}, + year = {1936} +} + +@incollection{mirsky1937b, + author = {Mirsky, Jeannette}, + editor = {Mead, Margaret}, + address = {New York}, + booktitle = {Cooperation and Competition among Primitive Peoples}, + key = {Mirsky (1937b)}, + lgcode = {Teton [lako1247]}, + pages = {382-427}, + publisher = {McGraw-Hill}, + title = {The Dakota}, + year = {1937} +} + +@book{niehardt1951, + author = {Niehardt, J. G.}, + address = {New York}, + key = {Niehardt (1951)}, + lgcode = {Teton [lako1247]}, + title = {When the Tree Flowered}, + year = {1951} +} + +@incollection{elkin1940b, + author = {Elkin, H.}, + editor = {Linton, R.}, + address = {New York}, + booktitle = {Acculturation in Seven American Indian Tribes}, + key = {Elkin (1940b)}, + lgcode = {Arapaho [arap1274]}, + pages = {207-258}, + title = {The Northern Arapaho of Wyoming}, + year = {1940} +} + +@book{hilger1952, + author = {Hilger, M. I.}, + address = {Washington, D.C.}, + key = {Hilger (1952)}, + lgcode = {Arapaho [arap1274]}, + number = {148}, + pages = {1-253}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {Arapaho Child Life and Its Cultural Background}, + year = {1952} +} + +@article{kroeber190207, + author = {Kroeber, A. L.}, + journal = {Bull. Amer. Mus. Nat. Hist.}, + key = {Kroeber (1902-07)}, + lgcode = {Arapaho [arap1274]}, + pages = {1-466}, + title = {The Arapaho}, + volume = {17}, + year = {1902-07} +} + +@article{michelson1934, + author = {Michelson, T.}, + journal = {American Anthropologist}, + key = {Michelson (1934)}, + lgcode = {Arapaho [arap1274]}, + pages = {137-139}, + title = {Some Arapaho Kinship Terms and Social Usages}, + volume = {36}, + year = {1934} +} + +@article{skinner1926, + author = {Skinner, A.}, + journal = {Bull. Pub. Mus. Milwaukee}, + key = {Skinner (1926)}, + lgcode = {Iowa [iowa1246]}, + pages = {181-354}, + title = {Ethnology of the Ioway Indians}, + volume = {5}, + year = {1926} +} + +@article{whitman1937, + author = {Whitman, W.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Whitman (1937)}, + lgcode = {Otoe [otoo1241]}, + pages = {1-132}, + title = {The Oto}, + volume = {28}, + year = {1937} +} + +@article{dorsey1897, + author = {Dorsey, J. O.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Dorsey (1897)}, + lgcode = {Ponca [ponc1241]}, + pages = {205-244}, + title = {Siouan Sociology}, + volume = {15}, + year = {1897} +} + +@article{howard1965b, + author = {Howard, J. H.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Howard (1965b)}, + lgcode = {Ponca [ponc1241]}, + pages = {1-191}, + title = {The Ponca Tribe}, + volume = {195}, + year = {1965} +} + +@book{trowbridge1939, + author = {Trowbridge, C. C.}, + editor = {Kinietz, V. and Voegelin, E. W.}, + key = {Trowbridge (1939)}, + lgcode = {Shawnee [shaw1249]}, + pages = {1-71}, + series = {Occas. Contr. Mus. Anth. Univ. Michigan}, + title = {Shawnese Traditions}, + volume = {9}, + year = {1939} +} + +@article{parsons1941, + author = {Parsons, Elsie C.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Parsons (1941)}, + lgcode = {Caddo [cadd1256]}, + pages = {1-76}, + title = {Notes on the Caddo}, + volume = {107}, + year = {1941} +} + +@article{swanton1942b, + author = {Swanton, J. R.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Swanton (1942b)}, + lgcode = {Caddo [cadd1256], Hasinai [cadd1256]}, + pages = {1-332}, + title = {Source Material on the History and Ethnology of the Caddo Indians}, + volume = {132}, + year = {1942} +} + +@misc{hockett1938, + author = {Hockett, C. F.}, + howpublished = {Unpublished field notes}, + key = {Hockett (1938)}, + lgcode = {Kickapoo [kick1244]}, + year = {1938} +} + +@article{jones1913, + author = {Jones, W.}, + journal = {American Anthropologist}, + key = {Jones (1913)}, + lgcode = {Kickapoo [kick1244]}, + pages = {332-335}, + title = {Kickapoo Ethnological Notes}, + volume = {15}, + year = {1913} +} + +@article{michelson1935, + author = {Michelson, T.}, + journal = {American Anthropologist}, + key = {Michelson (1935)}, + lgcode = {Ho Chunk [hoch1243]}, + pages = {446-449}, + title = {Some Notes on Winnebago Social and Political Organization}, + volume = {37}, + year = {1935} +} + +@article{oestreich1948, + author = {Oestreich, Nancy.}, + journal = {Wisconsin Archeologist, N. S.}, + key = {Oestreich (1948)}, + lgcode = {Ho Chunk [hoch1243]}, + pages = {39-140}, + title = {Trends of change in patterns of child care and training among the Wisconsin Winnebago}, + volume = {29}, + year = {1948} +} + +@article{radin1923, + author = {Radin, P.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Radin (1923)}, + lgcode = {Ho Chunk [hoch1243]}, + pages = {35-560}, + title = {The Winnebago Tribe}, + volume = {37}, + year = {1923} +} + +@article{dorsey1884, + author = {Dorsey, J. O.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Dorsey (1884)}, + lgcode = {Omaha [omah1248]}, + pages = {205-320}, + title = {Omaha Sociology}, + volume = {3}, + year = {1884} +} + +@article{fletcherandlaflesche1911, + author = {Fletcher, A. C. and Flesche., F. La}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Fletcher and La Flesche (1911)}, + lgcode = {Omaha [omah1248]}, + pages = {17-672}, + title = {The Omaha Tribe}, + volume = {27}, + year = {1911} +} + +@article{fortune1932a, + author = {Fortune, R. F.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Fortune (1932a)}, + lgcode = {Omaha [omah1248]}, + pages = {1-193}, + title = {Omaha Secret Societies}, + volume = {14}, + year = {1932} +} + +@article{mead1932b, + author = {Mead, M.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Mead (1932b)}, + lgcode = {Omaha [omah1248]}, + pages = {1-313}, + title = {The Changing Culture of an Indian Tribe}, + volume = {15}, + year = {1932} +} + +@article{kinietz1940b, + author = {Kinietz, W. V.}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + key = {Kinietz (1940b)}, + lgcode = {Myaamia [miam1252]}, + pages = {161-225}, + title = {The Indians of the Western Great Lakes}, + volume = {10}, + year = {1940} +} + +@book{curtis1930, + author = {Curtis, E. S.}, + address = {Norwood}, + key = {Curtis (1930)}, + lgcode = {Wichita [wich1260]}, + series = {The North American Indian}, + title = {The Indians of Oklahoma. The Wichita. The southern Cheyenne. The Oto. The Comanche. The Peyote cult.}, + volume = {19}, + year = {1930} +} + +@book{dorsey1904a, + author = {Dorsey, G. A.}, + address = {Washington}, + key = {Dorsey (1904a)}, + lgcode = {Wichita [wich1260]}, + title = {The Mythology of the Wichita}, + year = {1904} +} + +@article{schmitt1952, + author = {Schmitt, Karl.}, + journal = {The Chronicles of Oklahoma}, + key = {Schmitt (1952)}, + lgcode = {Wichita [wich1260]}, + pages = {200-206}, + title = {Wichita death customs}, + volume = {30}, + year = {1952} +} + +@book{schmittandschmitt1953, + author = {Schmitt, K. and Schmitt., I. O.}, + address = {Norman}, + key = {Schmitt and Schmitt (1953)}, + lgcode = {Wichita [wich1260]}, + title = {Wichita Kinship Past and Present}, + year = {1953} +} + +@article{dorsey1904b, + author = {Dorsey, G. A.}, + journal = {Memoirs of the American Folk-Lore Society}, + key = {Dorsey (1904b)}, + lgcode = {Pawnee [pawn1254]}, + pages = {1-366}, + title = {Traditions of the Skidi Pawnee}, + volume = {8}, + year = {1904} +} + +@article{dorseyandmurie1940, + author = {Dorsey, G. A. and Murie., J. R.}, + journal = {Field Museum of Natural History Anthropological Series}, + key = {Dorsey and Murie (1940)}, + lgcode = {Pawnee [pawn1254]}, + pages = {67-119}, + title = {Notes on Skidi Pawnee Society}, + volume = {27}, + year = {1940} +} + +@article{lounsbury1956, + author = {Lounsbury, F. G.}, + journal = {Language}, + key = {Lounsbury (1956)}, + lgcode = {Pawnee [pawn1254]}, + pages = {158-194}, + title = {A Semantic Analysis of the Pawnee Kinship Usage}, + volume = {32}, + year = {1956} +} + +@book{weltfish1965, + author = {Weltfish, G.}, + address = {New York}, + key = {Weltfish (1965)}, + lgcode = {Pawnee [pawn1254]}, + title = {The Lost Universe}, + year = {1965} +} + +@incollection{joffe1940, + author = {Joffe, N.}, + editor = {Linton, R.}, + address = {New York}, + booktitle = {Acculturation in Seven American Indian Tribes}, + key = {Joffe (1940)}, + lgcode = {Fox [mesk1242]}, + pages = {259-332}, + title = {The Fox of Iowa}, + year = {1940} +} + +@book{linton1940, + author = {Linton, Ralph}, + address = {London}, + key = {Linton (1940)}, + lgcode = {Fox [mesk1242]}, + title = {Acculturation in Seven American Indian Tribes}, + year = {1940} +} + +@article{michelson1938, + author = {Michelson, T.}, + journal = {American Anthropologist}, + key = {Michelson (1938)}, + lgcode = {Fox [mesk1242]}, + pages = {177-179}, + title = {Tax on the Social Organization of the Fox Indians}, + volume = {40}, + year = {1938} +} + +@incollection{tax1937, + author = {Tax, S.}, + editor = {Eggan, F.}, + address = {Chicago}, + booktitle = {Social Anthropology of North American Tribes}, + key = {Tax (1937)}, + lgcode = {Fox [mesk1242]}, + pages = {243-282}, + title = {The Social Organizatin of the Fox Indians}, + year = {1937} +} + +@article{griffith1954, + author = {Griffith, W. J.}, + journal = {Mid. Amer. Res. Inst., Tulane Univ. Philol. Doc. St.}, + key = {Griffith (1954)}, + lgcode = {Hasinai [cadd1256]}, + pages = {45-165}, + title = {The Hasinai Indians of East Texas as seen by Europeans, 1687-1772}, + volume = {2}, + year = {1954} +} + +@article{parson1941, + author = {Parson, Elsie C.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Parson (1941)}, + lgcode = {Hasinai [cadd1256]}, + pages = {1-75}, + title = {Notes on the Caddo}, + volume = {57}, + year = {1941} +} + +@article{spier1924, + author = {Spier, L.}, + journal = {American Anthropologist}, + key = {Spier (1924)}, + lgcode = {Hasinai [cadd1256]}, + pages = {258-263}, + title = {Wichita and Caddo Relationship Terms}, + volume = {26}, + year = {1924} +} + +@article{hoffman1893, + author = {Hoffman, W. J.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Hoffman (1893)}, + lgcode = {Menominee [meno1252]}, + pages = {i, 11-328}, + title = {The Menomini Indians}, + volume = {14}, + year = {1893} +} + +@article{keesing1939, + author = {Keesing, F. M.}, + journal = {Mem. Amer. Phil Soc.}, + key = {Keesing (1939)}, + lgcode = {Menominee [meno1252]}, + pages = {1-261}, + title = {The Menomini Indians of Wisconsin}, + volume = {10}, + year = {1939} +} + +@article{skinner1913, + author = {Skinner, A.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Skinner (1913)}, + lgcode = {Menominee [meno1252]}, + pages = {1-165}, + title = {Social Life and Ceremonial Bundles of the Menomini Indians}, + volume = {13}, + year = {1913} +} + +@article{spindler1962, + author = {Spindler, L.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Spindler (1962)}, + lgcode = {Menominee [meno1252]}, + pages = {1-113}, + title = {Menomini Women and Culture Change}, + volume = {91}, + year = {1962} +} + +@article{kinietz1940a, + author = {Kinietz, W. V.}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + key = {Kinietz (1940a)}, + lgcode = {Huron [wyan1247]}, + pages = {1-427}, + title = {The Indians of the Western Great Lakes, 1615-1760}, + volume = {10}, + year = {1940} +} + +@article{tooker1964, + author = {Tooker, E.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Tooker (1964)}, + lgcode = {Huron [wyan1247]}, + pages = {1-183}, + title = {An Ethnography of the Huron Indians, 1615-1649}, + volume = {190}, + year = {1964} +} + +@book{trigger1969, + author = {Trigger, B. G.}, + address = {New York}, + key = {Trigger (1969)}, + lgcode = {Huron [wyan1247]}, + title = {The Huron. Farmers of the North}, + year = {1969} +} + +@incollection{fenton1940, + author = {Fenton, William N.}, + address = {Washington, D. C.}, + booktitle = {Annual Report of the Smithsonian Institution}, + key = {Fenton (1940)}, + lgcode = {Seneca [sene1264]}, + pages = {397-429}, + publisher = {Government Printing Office}, + title = {Masked medicine societies of the Iroquois}, + year = {1940} +} + +@article{goldenweiser191213, + author = {Goldenweiser, A. A.}, + journal = {Summ. Rep. (Canada) Geol. Surv., Dep. Mines}, + key = {Goldenweiser (1912-13)}, + lgcode = {Seneca [sene1264]}, + pages = {464-475; 365-372}, + title = {On Iroquois Work}, + volume = {1912; 1913}, + year = {1912-13} +} + +@book{hunt1940, + author = {Hunt, George T.}, + address = {Madison}, + key = {Hunt (1940)}, + lgcode = {Seneca [sene1264]}, + publisher = {University of Wisconsin}, + title = {The Wars of the Iroquois: A Study in Intertribal Trade Relations}, + year = {1940} +} + +@book{morgan1877, + author = {Morgan, Lewis Henry.}, + address = {New York}, + key = {Morgan (1877)}, + lgcode = {Seneca [sene1264]}, + publisher = {Holt}, + title = {Ancient society}, + year = {1877} +} + +@book{morgan1901, + author = {Morgan, L. H.}, + editor = {Lloyd, H. M.}, + address = {New York}, + key = {Morgan (1901)}, + lgcode = {Seneca [sene1264]}, + note = {2V}, + title = {League of the Ho-De-No-Sau-Nee or Iroquois}, + year = {1901} +} + +@book{noon1949, + author = {Noon, John A.}, + address = {New York}, + key = {Noon (1949)}, + lgcode = {Seneca [sene1264]}, + series = {Viking Fund Publications in Anthropology}, + title = {Law and government of the Grand River Iroquois}, + volume = {12}, + year = {1949} +} + +@incollection{quain1937, + author = {Quain, B. H.}, + editor = {Mead, Margaret}, + address = {New York}, + booktitle = {Cooperation and competition among primitive peoples}, + key = {Quain (1937)}, + lgcode = {Seneca [sene1264]}, + publisher = {McGraw-Hill}, + title = {The Iroquois}, + year = {1937} +} + +@article{eggan1937a, + author = {Eggan, F.}, + journal = {American Anthropologist}, + key = {Eggan (1937a)}, + lgcode = {Choctaw [choc1276], Yuchi [yuch1247]}, + pages = {34-52}, + title = {Historical Changes in the Choctaw Kinship System}, + volume = {39}, + year = {1937} +} + +@article{speck1909, + author = {Speck, F. G.}, + glottolog_ref = {hh:e:Speck:Yuchi}, + journal = {Anth. Publ. Univ. Penn. Mus.}, + key = {Speck (1909)}, + lgcode = {Yuchi [yuch1247]}, + pages = {1-154}, + title = {Ethnology of the Yuchi Indians}, + volume = {1}, + year = {1909} +} + +@article{swanton1946, + author = {Swanton, J. R.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Swanton (1946)}, + lgcode = {Catawba [cata1286], Cherokee [cher1273], Chickasaw [chic1270], Choctaw [choc1276], Muscogee [cree1270], Yuchi [yuch1247]}, + pages = {1-943}, + title = {The Indians of the Southeastern United States}, + volume = {137}, + year = {1946} +} + +@article{swanton1931, + author = {Swanton, J. R.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Swanton (1931)}, + lgcode = {Choctaw [choc1276]}, + pages = {1-282}, + title = {Source Material for the Social and Ceremonial Life of the Choctaw Indians}, + volume = {103}, + year = {1931} +} + +@article{hallowell1926, + author = {Hallowell, A. I.}, + journal = {Proc. Intern. Congr. Americanists}, + key = {Hallowell (1926)}, + lgcode = {Abenaki [peno1243]}, + number = {ii}, + pages = {97-145}, + title = {Recent Changes in the Kinship Terminology of the St. Francis Abenaki}, + volume = {22}, + year = {1926} +} + +@article{speck1818, + author = {Speck, F. G.}, + journal = {American Anthropologist}, + key = {Speck (1818)}, + lgcode = {Abenaki [peno1243]}, + pages = {143-161}, + title = {Kinship Terms and the Family Band Among the Northeastern Algonkian}, + volume = {20}, + year = {1818} +} + +@book{vetromile1866, + author = {Vetromile, E.}, + address = {New York}, + key = {Vetromile (1866)}, + lgcode = {Abenaki [peno1243]}, + title = {The Abnakis and Their History}, + year = {1866} +} + +@article{swanton1928b, + author = {Swanton, J. R.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Swanton (1928b)}, + lgcode = {Chickasaw [chic1270]}, + pages = {169-273}, + title = {Social and Religious Beliefs and Usages of the Chickasaw Indians}, + volume = {44}, + year = {1928} +} + +@article{haas1939, + author = {Haas, M. r.}, + journal = {American Anthropologist}, + key = {Haas (1939)}, + lgcode = {Chitimacha [chit1248]}, + pages = {597-610}, + title = {Natchewz and Chitimacha Clans and Kinship Terminology}, + volume = {41}, + year = {1939} +} + +@article{swanton1911, + author = {Swanton, J. R.}, + glottolog_ref = {hh:he:Swanton:Atakapa}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Swanton (1911)}, + lgcode = {Chitimacha [chit1248], Natchez [natc1249]}, + pages = {1-274}, + publisher = {Washington: Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {Indian Tribes of the Lower Mississippi Valley and Adjacent Coast of the Gulf of Mexico}, + volume = {43}, + year = {1911} +} + +@article{spoehr1941, + author = {Spoehr, A.}, + journal = {Field Mus. Nat. Hist. Anth. Series}, + key = {Spoehr (1941)}, + lgcode = {Seminole [mika1239]}, + pages = {1-27}, + title = {Camp, Clan, and Kin among the Cow Creek Seminole}, + volume = {33}, + year = {1941} +} + +@article{spoehr1942, + author = {Spoehr, A.}, + journal = {Ibid.}, + key = {Spoehr (1942)}, + lgcode = {Seminole [mika1239]}, + pages = {31-113}, + title = {Kinship System of the Seminole}, + volume = {33}, + year = {1942} +} + +@article{spoehr1944, + author = {Spoehr, A.}, + journal = {Ibid.}, + key = {Spoehr (1944)}, + lgcode = {Seminole [mika1239]}, + pages = {117-150}, + title = {The Florida Seminole Camp}, + volume = {33}, + year = {1944} +} + +@article{bartram1953, + author = {Bartram, W.}, + journal = {Transactions of the American Ethnological Society}, + key = {Bartram (1953)}, + lgcode = {Muscogee [cree1270]}, + pages = {1-81}, + title = {Observations on the Creek and Cherokee Indians}, + volume = {3}, + year = {1953} +} + +@incollection{murdock1956, + author = {Murdock, G. P.}, + editor = {White, L. D.}, + address = {Chicago}, + booktitle = {The State of the Social Sciences}, + key = {Murdock (1956)}, + lgcode = {Muscogee [cree1270]}, + pages = {133-147}, + title = {Political Moieties}, + year = {1956} +} + +@article{speck1907, + author = {Speck, F. G.}, + journal = {Memoirs of the American Anthropological Association}, + key = {Speck (1907)}, + lgcode = {Muscogee [cree1270]}, + pages = {99-164}, + title = {The Creek Indians of Taskigi Town}, + volume = {2}, + year = {1907} +} + +@article{swanton1928a, + author = {Swanton, J. R.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Swanton (1928a)}, + lgcode = {Muscogee [cree1270]}, + pages = {473-672}, + title = {Religious Beliefs and Medical Practices of the Creek Indians}, + volume = {42}, + year = {1928} +} + +@article{swanton1928c, + author = {Swanton, J. R.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Swanton (1928c)}, + lgcode = {Muscogee [cree1270]}, + pages = {23-472, 859-900}, + title = {Social Organization and Social Usages of the Indians of the Creek Confederacy}, + volume = {42}, + year = {1928} +} + +@article{speck1918, + author = {Speck, F. G.}, + journal = {American Anthropologist}, + key = {Speck (1918)}, + lgcode = {Penobscot [peno1243]}, + pages = {143-161}, + title = {Kinship Terms and the Family Band Among the Northeastern Algonkian}, + volume = {20}, + year = {1918} +} + +@book{speck1940, + author = {Speck, F. G.}, + address = {Philadelphia}, + key = {Speck (1940)}, + lgcode = {Penobscot [peno1243]}, + title = {Penobscot Man}, + year = {1940} +} + +@article{gearing1962, + author = {Gearing, F.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Gearing (1962)}, + lgcode = {Cherokee [cher1273]}, + pages = {1-124}, + title = {Priests and Warriors}, + volume = {93}, + year = {1962} +} + +@incollection{gilbert1937, + author = {Gilbert, W. H.}, + editor = {Eggan}, + address = {Chicago}, + booktitle = {Social Organization of North American Tribes}, + key = {Gilbert (1937)}, + lgcode = {Cherokee [cher1273]}, + pages = {285-338}, + title = {Eastern Cherokee Social Organization}, + year = {1937} +} + +@article{gilbert1943, + author = {Gilbert and H., William and Jr.}, + journal = {Bulletin of the Bureau of American Ethnology}, + key = {Gilbert (1943)}, + lgcode = {Cherokee [cher1273]}, + pages = {227-338}, + title = {The Eastern Cherokees}, + volume = {133}, + year = {1943} +} + +@article{harrington1913, + author = {Harrington, M. R.}, + journal = {American Anthropologist}, + key = {Harrington (1913)}, + lgcode = {Delaware [unam1242]}, + pages = {208-235}, + title = {A Preliminary Sketch of Lenape Culture}, + volume = {15}, + year = {1913} +} + +@article{herman1950, + author = {Herman, M. W.}, + journal = {Koreber Anth. Soc. Pap.}, + key = {Herman (1950)}, + lgcode = {Delaware [unam1242]}, + pages = {45-77}, + title = {A Reconstruction of Aboriginal Delaware Culture from Contemporary Sources}, + volume = {1}, + year = {1950} +} + +@article{newcomb1956, + author = {Newcomb and W., W. and Jr.}, + journal = {Anth. Pap. Mus. Anth. Univ. Michigan}, + key = {Newcomb (1956)}, + lgcode = {Delaware [unam1242]}, + pages = {1-141}, + title = {The Culture and Acculturation of the Delaware}, + volume = {10}, + year = {1956} +} + +@article{wallace1947a, + author = {Wallace, A. F. C.}, + journal = {Pennsylvania Archaeologist}, + key = {Wallace (1947a)}, + lgcode = {Delaware [unam1242]}, + pages = {1-35}, + title = {Woman, Land, and Society: Three Aspects of Aboriginal Delaware Life}, + volume = {17}, + year = {1947} +} + +@article{macleod1924, + author = {MacLeod, William C.}, + journal = {American Anthropologist}, + key = {MacLeod (1924)}, + lgcode = {Natchez [natc1249]}, + pages = {201-229}, + title = {Natchez Political Evolution}, + volume = {26}, + year = {1924} +} + +@article{whiteetal1971, + author = {White, Douglas R. and Murdock, G. P. and Scaglion, R.}, + journal = {Ethnology}, + key = {White et al. (1971)}, + lgcode = {Natchez [natc1249]}, + pages = {369-88}, + title = {Natchez Class and Rank Reconsidered}, + volume = {10}, + year = {1971} +} + +@book{brinton1859, + author = {Brinton, D. G.}, + address = {Philadelphia}, + key = {Brinton (1859)}, + lgcode = {Timucua [timu1245]}, + title = {Notes on the Floridian Peninsula}, + year = {1859} +} + +@article{ehrmann1940, + author = {Ehrmann, W. W.}, + journal = {Florida Hist. Quart.}, + key = {Ehrmann (1940)}, + lgcode = {Timucua [timu1245]}, + pages = {168-191}, + title = {The Timucua Indians of Sixteenth Century Florida}, + volume = {18}, + year = {1940} +} + +@inbook{swanton1916, + author = {Swanton, J. R.}, + address = {Washington}, + booktitle = {Holmes Anniversary Volume}, + key = {Swanton (1916)}, + lgcode = {Timucua [timu1245]}, + pages = {451-463}, + title = {Terms of Relationship in Timucua}, + year = {1916} +} + +@article{swanton1942a, + author = {Swanton, J. R.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Swanton (1942a)}, + lgcode = {Timucua [timu1245]}, + pages = {320-380}, + title = {Early History of the Creek Indians and Their Neighbors}, + volume = {73}, + year = {1942} +} + +@article{speckandschaeffer1942, + author = {Speck, F. G. and Schaeffer, C. E.}, + journal = {American Anthropologist}, + key = {Speck and Schaeffer (1942)}, + lgcode = {Catawba [cata1286]}, + pages = {555-575}, + title = {Catawba Kinship and Social Organization and a Resume of Tutelo Kinship Terms}, + volume = {44}, + year = {1942} +} + +@misc{sturtevant1965, + author = {Sturtevant, W. C.}, + howpublished = {Personal communication}, + key = {Sturtevant (1965)}, + lgcode = {Catawba [cata1286]}, + year = {1965} +} + +@article{opler1936b, + author = {Opler, M. E.}, + journal = {American Journal of Psychiatry}, + key = {Opler (1936b)}, + lgcode = {Chiricahua [mesc1238]}, + pages = {1371-1387}, + title = {Some Points of Comparison and Contrast between the Treatment of Functional Disorders by Apache Shamans and Modern Psychiatric Practice}, + volume = {92}, + year = {1936} +} + +@article{opler1936c, + author = {Opler, M. E.}, + journal = {Journal of Social Psychology}, + key = {Opler (1936c)}, + lgcode = {Chiricahua [mesc1238]}, + pages = {82-116}, + title = {An Interpretation of Ambivalence of Two American Indian Tribes}, + volume = {7}, + year = {1936} +} + +@incollection{opler1937, + author = {Opler, M.}, + editor = {Eggan, F.}, + address = {Chicago}, + booktitle = {Social Anthropology of North American Tribes: Essays in Social Organization, Law and Religion}, + key = {Opler (1937)}, + lgcode = {Chiricahua [mesc1238], Chiricahua (Huachuca) [mesc1238], Chiricahua (Warm Springs) [mesc1238]}, + note = {Second Edition 1955}, + pages = {173-242}, + publisher = {University of Chicago Press}, + title = {An Outline of Chiricahua Apache Social Organization}, + year = {1937} +} + +@book{opler1941, + author = {Opler, Morris E.}, + address = {Chicago, Illinois}, + key = {Opler (1941)}, + lgcode = {Chiricahua [mesc1238], Chiricahua (Huachuca) [mesc1238], Chiricahua (Warm Springs) [mesc1238], Western Apache [west2615]}, + publisher = {University of Chicago}, + title = {An Apache Life-Way: The Economic, Social, and Religious Institutions of the Chiricahua Indians}, + year = {1941} +} + +@misc{opler1971c, + author = {Opler, M. E.}, + howpublished = {Personal communication}, + key = {Opler (1971c)}, + lgcode = {Chiricahua [mesc1238]}, + year = {1971} +} + +@article{parsons1932a, + author = {Parsons, Elsie C.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Parsons (1932a)}, + lgcode = {Isleta [sout2961]}, + pages = {193-466}, + title = {Isleta, New Mexico}, + volume = {47}, + year = {1932} +} + +@article{trager1943, + author = {Trager, G. L.}, + journal = {American Anthropologist}, + key = {Trager (1943)}, + lgcode = {Isleta [sout2961], Picuris [picu1248], Taos [taos1236]}, + pages = {557-571}, + title = {The Kinship and Status Terms of the Tiwa Languages}, + volume = {45}, + year = {1943} +} + +@article{dozier1954, + author = {Dozier, E. P.}, + glottolog_ref = {hh:e:Dozier:Hopi-Tewa}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Dozier (1954)}, + lgcode = {Hano [ariz1237], Nambé Pueblo [namb1296], Ohkay Owingeh [sanj1276], San Ildefonso [sani1273]}, + number = {3}, + pages = {259-376}, + title = {The Hopi-Tewa of Arizona}, + volume = {44}, + year = {1954} +} + +@incollection{dozier1961, + author = {Dozier, E. C.}, + editor = {Spicer, Edward H.}, + address = {Chicago}, + booktitle = {Perspectives in American Indian Culture Change}, + key = {Dozier (1961)}, + lgcode = {San Ildefonso [sani1273]}, + pages = {94-186}, + publisher = {University of Chicago Press}, + title = {Rio Grande Pueblos}, + year = {1961} +} + +@article{parsons1929, + author = {Parsons, Elsie C.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Parsons (1929)}, + lgcode = {Nambé Pueblo [namb1296], Ohkay Owingeh [sanj1276], San Ildefonso [sani1273], Santa Clara [sant1421]}, + pages = {1-309}, + title = {The Social Organization of the Tewa of New Mexico}, + volume = {36}, + year = {1929} +} + +@book{robbinsetal1916, + author = {Robbins, Wilfred William and Harrington, John Peabody and Freire-Marreco, Barbara}, + key = {Robbins et al. (1916)}, + lgcode = {San Ildefonso [sani1273]}, + series = {U. S. Bureau of American Ethnology, Bulletin}, + title = {Ethnobotany of the Tewa Indians}, + volume = {55}, + year = {1916} +} + +@incollection{whitman1940, + author = {Whitman, W.}, + editor = {Linton, R.}, + address = {New York}, + booktitle = {Acculturation in Seven American Indian Tribes}, + key = {Whitman (1940)}, + lgcode = {San Ildefonso [sani1273]}, + pages = {390-462}, + title = {The San Ildefonso of New Mexico}, + year = {1940} +} + +@article{white1942, + author = {White, L. A.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {White (1942)}, + lgcode = {Santa Ana [sant1426]}, + pages = {1-360}, + title = {The Pueblo of Santa Ana, New Mexico}, + volume = {60}, + year = {1942} +} + +@book{eggan1950, + author = {Eggan, F.}, + address = {Chicago}, + key = {Eggan (1950)}, + lgcode = {Acoma [acom1246], Hopi [hopi1249], Laguna [acom1246], Zuni [zuni1245]}, + title = {Social Organization of the Western Pueblo}, + year = {1950} +} + +@article{mickey1956, + author = {Mickey, B. H.}, + journal = {Southw. Journ. Anth.}, + key = {Mickey (1956)}, + lgcode = {Acoma [acom1246]}, + pages = {249-256}, + title = {Acoma Kinship Terms}, + volume = {12}, + year = {1956} +} + +@article{miller1959, + author = {Miller, W. R.}, + journal = {Southw. Journ. Anth.}, + key = {Miller (1959)}, + lgcode = {Acoma [acom1246]}, + pages = {179-184}, + title = {Some Notes on Acoma Kinship Terminology}, + volume = {15}, + year = {1959} +} + +@article{white1932, + author = {White, L. A.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {White (1932)}, + lgcode = {Acoma [acom1246]}, + pages = {17-192}, + title = {The Acoma Indians}, + volume = {47}, + year = {1932} +} + +@article{white1943, + author = {White, L. A.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {White (1943)}, + lgcode = {Acoma [acom1246]}, + pages = {301-359}, + title = {New Material from Acoma}, + volume = {136}, + year = {1943} +} + +@article{parson1923, + author = {Parson, Elsie C.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Parson (1923)}, + lgcode = {Laguna [acom1246]}, + pages = {133-292}, + title = {Laguna Genealogies}, + volume = {19}, + year = {1923} +} + +@article{castetterandopler1936, + author = {Castetter, E. F. and Opler., M. E.}, + journal = {Univ. New Mex. Bull., Biol. Ser.}, + key = {Castetter and Opler (1936)}, + lgcode = {Mescalero [mesc1238]}, + pages = {v, 3-63}, + title = {The Ethnobiology of the Chiricahua and Mescalero Apache}, + volume = {4}, + year = {1936} +} + +@article{flannery1932, + author = {Flannery, R.}, + journal = {Prim. Man}, + key = {Flannery (1932)}, + lgcode = {Mescalero [mesc1238]}, + pages = {26-33}, + title = {The Position of Woman Among the Mescalero Apache}, + volume = {5}, + year = {1932} +} + +@article{opler1936a, + author = {Opler, M. E.}, + journal = {American Anthropologist}, + key = {Opler (1936a)}, + lgcode = {Lipan Apache [lipa1241], Mescalero [mesc1238]}, + pages = {620-633}, + title = {The Kinship Systems of the Southern Athabaskan-speaking Tribes}, + volume = {38}, + year = {1936} +} + +@book{bellah1952, + author = {Bellah, R. N.}, + address = {Cambridge}, + key = {Bellah (1952)}, + lgcode = {Jicarilla [jica1244]}, + title = {Apache Kinship Systems}, + year = {1952} +} + +@article{opler1936d, + author = {Opler, M. E.}, + journal = {American Anthropologist}, + key = {Opler (1936d)}, + lgcode = {Jicarilla [jica1244]}, + pages = {202-223}, + title = {A Summary of Jicarilla Apache Culture}, + volume = {38}, + year = {1936} +} + +@article{opler1946, + author = {Opler, M. E.}, + journal = {Publ. F. W. Hodge Anniv. Publ. Fund}, + key = {Opler (1946)}, + lgcode = {Jicarilla [jica1244]}, + pages = {1-170}, + title = {Childhood and Youth in Jicarilla Apache Society}, + volume = {5}, + year = {1946} +} + +@article{goodwin1935, + author = {Goodwin, Grenville}, + journal = {American Anthropologist}, + key = {Goodwin (1935)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]}, + pages = {55-64}, + title = {The Social Divisions and Economic Life of the Western Apache}, + volume = {37}, + year = {1935} +} + +@book{goodwin1942, + author = {Goodwin, Grenville}, + address = {Chicago}, + key = {Goodwin (1942)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]}, + title = {The Social Organization of the Western Apache}, + year = {1942} +} + +@article{kaut1957, + author = {Kaut, Charles R.}, + key = {Kaut (1957)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]}, + number = {9}, + pages = {99}, + series = {Univ. N. Mex. Publ. Anth.}, + title = {The Western Apache Clan System}, + year = {1957} +} + +@book{lockwood1938, + author = {Lockwood, Frank}, + address = {New York}, + key = {Lockwood (1938)}, + lgcode = {Western Apache [west2615]}, + publisher = {Macmillan}, + title = {The apache Indians}, + year = {1938} +} + +@article{beaglehole1937, + author = {Beaglehole, E.}, + journal = {Yale Univ. Publ. Anth.}, + key = {Beaglehole (1937)}, + lgcode = {Hopi [hopi1249]}, + pages = {1-88}, + title = {Notes on Hopi Economic Life}, + volume = {15}, + year = {1937} +} + +@book{beagleholeandbeaglehole1935, + author = {Beaglehole, Ernest and Beaglehole, Pearl}, + key = {Beaglehole and Beaglehole (1935)}, + lgcode = {Hopi [hopi1249]}, + series = {American Anthropological Association Memoir}, + title = {Hopi of the second mesa}, + volume = {44}, + year = {1935} +} + +@book{dennis1940, + author = {Dennis, W.}, + address = {New York}, + key = {Dennis (1940)}, + lgcode = {Hopi [hopi1249]}, + title = {The Hopi Child}, + year = {1940} +} + +@article{hrdlicka1935, + author = {Hrdlicka, Ales.}, + journal = {American Journal of Physical Anthropology}, + key = {Hrdlicka (1935)}, + lgcode = {Hopi [hopi1249]}, + pages = {235-460}, + title = {The pueblos, with comparative data on the bulk of the tribes of the southwest northern Mexico}, + volume = {30}, + year = {1935} +} + +@article{lowie1929, + author = {Lowie, R. H.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Lowie (1929)}, + lgcode = {Hopi [hopi1249]}, + pages = {303-388}, + title = {Notes on Hopi Clans; Hopi Kinship}, + volume = {30}, + year = {1929} +} + +@inbook{murdock1934n, + author = {Murdock, George P.}, + address = {New York}, + booktitle = {Our primitive contemporaries}, + key = {Murdock (1934n)}, + lgcode = {Hopi [hopi1249]}, + pages = {324-358}, + publisher = {Macmillan}, + title = {The Hopi of Arizona}, + year = {1934} +} + +@book{simmons1942, + author = {Simmons, Leo W.}, + address = {New Haven}, + howpublished = {Published for the Institute Human Relations}, + key = {Simmons (1942)}, + lgcode = {Hopi [hopi1249]}, + publisher = {Yale University Press}, + title = {Sun Chief: the autobiography of a Hopi Indian}, + year = {1942} +} + +@article{titiev1944, + author = {Titiev, Mischa}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + key = {Titiev (1944)}, + lgcode = {Hopi [hopi1249]}, + pages = {i, 1-273}, + title = {Old Oraibi}, + volume = {22}, + year = {1944} +} + +@article{voegelinandvoegelin1957, + author = {Voegelin, Carl F. and Voegelin, Florence M.}, + journal = {International Journal of American Linguistics, Memoir}, + key = {Voegelin and Voegelin (1957)}, + lgcode = {Hopi [hopi1249]}, + pages = {1-18}, + title = {Hopi domains}, + volume = {14}, + year = {1957} +} + +@article{gifford1933, + author = {Gifford, E. W.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1933)}, + lgcode = {Cocopa [coco1261]}, + pages = {257-334}, + title = {The Cocopa}, + volume = {31}, + year = {1933} +} + +@article{gifford1931, + author = {Gifford, E. W.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Gifford (1931)}, + lgcode = {Kamia [kumi1248]}, + pages = {1-88}, + title = {The Kamia of Imperial Valley}, + volume = {97}, + year = {1931} +} + +@incollection{devereaux1950, + author = {Devereaux, G.}, + editor = {Roheim, Gez}, + address = {New York}, + booktitle = {Psychoanalysis and the Social Sciences (vol. 2)}, + key = {Devereaux (1950)}, + lgcode = {Mojave [moha1256]}, + publisher = {International. Universities Press}, + title = {Heterosexual behavior of the Mohave Indians}, + year = {1950} +} + +@article{kroeber1902, + author = {Kroeber, A. L.}, + journal = {Anth.}, + key = {Kroeber (1902)}, + lgcode = {Mojave [moha1256]}, + pages = {276-285}, + title = {A Preliminary Sketch of the Mohave Indians Amer}, + volume = {4}, + year = {1902} +} + +@inbook{kroeber1925i, + author = {Kroeber, A. L.}, + booktitle = {Handbook of the Indians of California}, + key = {Kroeber (1925i)}, + lgcode = {Achumawi (East) [achu1247], Achumawi (West) [achu1247], Cahto [kato1244], Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Central Sierra Miwok [cent2140], Chemehuevi [chem1251], Eastern Pomo [east2545], Karuk [karo1304], Kawaiisu [kawa1283], Klamath [klam1254], Luiseño [luis1253], Modoc [klam1254], Mojave [moha1256], Nongatl [wail1244], Northern Miwok [nort2968], Northern Pomo [nort2966], Quechan [quec1382], San Juan [sout2969], Serrano [serr1255], Shivwits [sout2969], Southern Miwok [sout2985], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Pomo [sout2984], Tongva [tong1329], Wiyot [wiyo1248], Yurok [yuro1248]}, + pages = {726-780}, + series = {Bull. Bur. Amer. Ethn.}, + title = {The Mohave}, + volume = {78}, + year = {1925} +} + +@article{bee1963, + author = {Bee, R. L.}, + journal = {Ethnology}, + key = {Bee (1963)}, + lgcode = {Quechan [quec1382]}, + pages = {207-227}, + title = {Changes in Yuma Social Organization}, + volume = {2}, + year = {1963} +} + +@article{forde1931, + author = {Forde, C. D.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Forde (1931)}, + lgcode = {Quechan [quec1382]}, + pages = {83-278}, + title = {Ethnography of the Yuma Indians}, + volume = {28}, + year = {1931} +} + +@article{halpern1942, + author = {Halpern, A. M.}, + journal = {American Anthropologist}, + key = {Halpern (1942)}, + lgcode = {Quechan [quec1382]}, + pages = {425-441}, + title = {Yuma Kinship Terms}, + volume = {44}, + year = {1942} +} + +@article{gifford1932a, + author = {Gifford, E. W.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1932a)}, + lgcode = {Kewyipaya [yava1252], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]}, + pages = {177-252}, + publisher = {University of California Press}, + title = {The Southeastern Yavapai}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp029-004.pdf}, + volume = {29}, + year = {1932} +} + +@article{hawleyetal1943, + author = {Hawley, F. and Pijoan, M. and Elkin, C. A.}, + journal = {American Anthropologist}, + key = {Hawley et al. (1943)}, + lgcode = {Sia [ziaa1251]}, + pages = {547-556}, + title = {An Inquiry into Food Economy and Body Economy in Zia Pueblo}, + volume = {45}, + year = {1943} +} + +@article{stevenson1894, + author = {Stevenson, M. C.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Stevenson (1894)}, + lgcode = {Sia [ziaa1251]}, + pages = {3-157}, + title = {The Sia}, + volume = {11}, + year = {1894} +} + +@article{white1962, + author = {White, L. A.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {White (1962)}, + lgcode = {Sia [ziaa1251]}, + pages = {1-358}, + title = {The Pueblo of Sia, New Mexico}, + volume = {184}, + year = {1962} +} + +@article{harrington1912, + author = {Harrington, J. P.}, + journal = {American Anthropologist}, + key = {Harrington (1912)}, + lgcode = {Santa Clara [sant1421]}, + pages = {472-498}, + title = {Tewa Relationship Terms}, + volume = {14}, + year = {1912} +} + +@article{parsons1924, + author = {Parsons, Elsie C.}, + journal = {American Anthropologist}, + key = {Parsons (1924)}, + lgcode = {Nambé Pueblo [namb1296], Santa Clara [sant1421]}, + pages = {333-339}, + title = {Tewa Kin, Clan, and Moiety}, + volume = {26}, + year = {1924} +} + +@article{white1935, + author = {White, L. A.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {White (1935)}, + lgcode = {Kewa [sant1425]}, + pages = {1-210}, + title = {The Pueblo of Santo Domingo}, + volume = {43}, + year = {1935} +} + +@book{franciscanfathers1910, + author = {I-4., Franciscan Fathers.}, + address = {St. Michaels, Arizona}, + key = {Franciscan Fathers (1910)}, + lgcode = {Navajo [nava1243]}, + title = {An ethnological dictionary of the Navaho language}, + year = {1910} +} + +@article{goldfrank1945b, + author = {Goldfrank, E. S.}, + journal = {American Anthropologist}, + key = {Goldfrank (1945b)}, + lgcode = {Navajo [nava1243]}, + pages = {262-277}, + title = {Irrigation Agriculture and Navaho Community Leadership}, + volume = {47}, + year = {1945} +} + +@article{hill1938, + author = {Hill, W. W.}, + journal = {Yale Univ. Publ. Anth.}, + key = {Hill (1938)}, + lgcode = {Navajo [nava1243], Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]}, + pages = {1-194}, + title = {The Agricultural and Hunting Methods of the Navaho Indians}, + volume = {18}, + year = {1938} +} + +@article{kluckhohn1947, + author = {Kluckhohn, Clyde}, + address = {New York}, + journal = {Psychoanalysis and the Social Sciences}, + key = {Kluckhohn (1947)}, + lgcode = {Navajo [nava1243]}, + pages = {37-86}, + publisher = {International Universities Press}, + title = {Some aspects of Navaho infancy and early childhood}, + volume = {1}, + year = {1947} +} + +@book{kluckhohnandleighton1946, + author = {Kluckhohn, C. and Leighton., D. C.}, + address = {Cambridge}, + key = {Kluckhohn and Leighton (1946)}, + lgcode = {Navajo [nava1243]}, + title = {The Navaho}, + year = {1946} +} + +@book{leightonandkluckhohn1947, + author = {Leighton, D. C. and Kluckhohn., C.}, + address = {Cambridge}, + key = {Leighton and Kluckhohn (1947)}, + lgcode = {Navajo [nava1243]}, + title = {Children of the People}, + year = {1947} +} + +@article{reichard1928, + author = {Reichard, G. A.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Reichard (1928)}, + lgcode = {Navajo [nava1243], Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]}, + pages = {1-239}, + title = {Social Life of the Navajo Indians}, + volume = {7}, + year = {1928} +} + +@article{bunzel1930, + author = {Bunzel, R.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Bunzel (1930)}, + lgcode = {Zuni [zuni1245]}, + pages = {837-1086}, + title = {Zuni Katcinas}, + volume = {47}, + year = {1930} +} + +@article{bunzel1932, + author = {Bunzel, R.}, + address = {Washington}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Bunzel (1932)}, + lgcode = {Zuni [zuni1245]}, + number = {i}, + pages = {467-544}, + title = {Introduction to Zuni Ceremonialism}, + volume = {47}, + year = {1932} +} + +@article{cushing1920, + author = {Cushing, F. H.}, + journal = {Indian Notes and Monographs}, + key = {Cushing (1920)}, + lgcode = {Zuni [zuni1245]}, + pages = {1-673}, + title = {Zuni Breadstuffs}, + volume = {8}, + year = {1920} +} + +@article{kroeber1917b, + author = {Kroeber, A. L.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Kroeber (1917b)}, + lgcode = {Zuni [zuni1245]}, + pages = {ii, 39-204}, + title = {Zuni Kin and Clan}, + volume = {18}, + year = {1917} +} + +@book{leightonandadair1966, + author = {Leighton, D. C. and Adair., J.}, + address = {New Haven}, + key = {Leighton and Adair (1966)}, + lgcode = {Zuni [zuni1245]}, + title = {People of the Middle Place: A Study of the Zuni Indians}, + year = {1966} +} + +@article{parsons1919, + author = {Parsons, Elsie C.}, + journal = {Man}, + key = {Parsons (1919)}, + lgcode = {Zuni [zuni1245]}, + note = {Article 86}, + pages = {168-173}, + title = {Mothers and Children at Zuni, New Mexico}, + volume = {19}, + year = {1919} +} + +@book{roberts1956, + author = {Roberts, J. M.}, + address = {Lincoln}, + key = {Roberts (1956)}, + lgcode = {Zuni [zuni1245]}, + number = {i}, + pages = {1-23}, + series = {New Haven University of Nebraska Laboratory of Anthropology Monographs, Note Book}, + title = {Zuni Daily Life}, + volume = {3}, + year = {1956} +} + +@misc{robertsnd, + author = {Roberts, J. M.}, + howpublished = {Personal communication}, + key = {Roberts (nd)}, + lgcode = {Zuni [zuni1245]} +} + +@article{smith1954b, + author = {Smith, W. and Roberts, John M.}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + key = {Smith (1954b)}, + lgcode = {Zuni [zuni1245]}, + pages = {1-185}, + title = {Zuni Law}, + volume = {43}, + year = {1954} +} + +@article{stevenson1904, + author = {Stevenson, M. C.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Stevenson (1904)}, + lgcode = {Zuni [zuni1245]}, + pages = {1-634}, + title = {The Zuni Indians}, + volume = {23}, + year = {1904} +} + +@article{stevenson1909, + author = {Stevenson, M. C.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Stevenson (1909)}, + lgcode = {Zuni [zuni1245]}, + pages = {31-102}, + title = {Ethnobotany of the Zuni Indians}, + volume = {30}, + year = {1909} +} + +@book{spier1933, + author = {Spier, L.}, + address = {Chicago}, + key = {Spier (1933)}, + lgcode = {Maricopa [mari1440]}, + title = {Yuman Tribes of the Gila River}, + year = {1933} +} + +@article{parsons1936b, + author = {Parsons, Elsie C.}, + journal = {Gen. Ser. Anth.}, + key = {Parsons (1936b)}, + lgcode = {Taos [taos1236]}, + pages = {1-121}, + title = {Taos Pueblo}, + volume = {2}, + year = {1936} +} + +@article{dumarest1919, + author = {Dumarest, N.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Dumarest (1919)}, + lgcode = {Cochiti [coch1273]}, + pages = {137-237}, + title = {Notes on Chochiti}, + volume = {27}, + year = {1919} +} + +@article{goldfrank1927, + author = {Goldfrank, E. S.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Goldfrank (1927)}, + lgcode = {Cochiti [coch1273]}, + pages = {1-129}, + title = {The Social and Ceremonial Organization of Cochiti}, + volume = {33}, + year = {1927} +} + +@article{parsons1932b, + author = {Parsons, Elsie C.}, + journal = {American Anthropologist}, + key = {Parsons (1932b)}, + lgcode = {Cochiti [coch1273], Jemez [jeme1245]}, + pages = {377-389}, + title = {The Kinship Terminology of the Pueblo Indians}, + volume = {34}, + year = {1932} +} + +@article{hawley1964, + author = {Hawley Ellis, Florence}, + journal = {Univ. New Mexico Publ. Anth.}, + key = {Hawley (1964)}, + lgcode = {Jemez [jeme1245]}, + pages = {1-69}, + title = {A Reconstruction of the Basic Jemez Pattern of Social Organization: With Comparisons to Other Tanoan Social Structures}, + volume = {11}, + year = {1964} +} + +@book{parsons1925, + author = {Parsons, Elsie C.}, + address = {New Haven}, + key = {Parsons (1925)}, + lgcode = {Jemez [jeme1245]}, + title = {The Pueblo of Jemez}, + year = {1925} +} + +@article{parsons1939, + author = {Parsons, Elsie C.}, + journal = {American Anthropologist}, + key = {Parsons (1939)}, + lgcode = {Picuris [picu1248]}, + pages = {206-222}, + title = {Picuris, New Mexico}, + volume = {41}, + year = {1939} +} + +@book{bennettandzingg1935, + author = {Bennett, W. C. and Zingg., R. M.}, + address = {Chicago}, + key = {Bennett and Zingg (1935)}, + lgcode = {Tarahumara [cent2131]}, + title = {The Tarahumara}, + year = {1935} +} + +@article{passin1943, + author = {Passin, H.}, + journal = {Acta Americana}, + key = {Passin (1943)}, + lgcode = {Tarahumara [cent2131]}, + pages = {360-383, 471-495}, + title = {The Place of Kinship in Tarahumara Social Organization}, + volume = {1}, + year = {1943} +} + +@book{castetterandbell1942, + author = {Castetter, E. F. and Bell., W. H.}, + address = {Albuquerque}, + key = {Castetter and Bell (1942)}, + lgcode = {Pima [akim1239], Tohono O'odham [toho1246]}, + pages = {1-245}, + series = {University of New Mexico Inter-American Studies}, + title = {Pima and Papago Indian Agriculture}, + volume = {1}, + year = {1942} +} + +@book{josephetal1949, + author = {Joseph. A., R. B. Spicer and Chesky., J.}, + address = {Chicago}, + key = {Joseph et al. (1949)}, + lgcode = {Tohono O'odham [toho1246]}, + title = {The Desert People}, + year = {1949} +} + +@book{lumholtz1912, + author = {Lumholtz, C.}, + address = {New York}, + key = {Lumholtz (1912)}, + lgcode = {Tohono O'odham [toho1246]}, + title = {New Trails in Mexico}, + year = {1912} +} + +@article{underhill1936, + author = {Underhill, Ruth M.}, + journal = {Memoirs of the American Anthropological Association}, + key = {Underhill (1936)}, + lgcode = {Tohono O'odham [toho1246]}, + pages = {1-64}, + title = {The Autobiography of a Papago Woman}, + volume = {46}, + year = {1936} +} + +@article{underhill1939, + author = {Underhill, Ruth M.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Underhill (1939)}, + lgcode = {Tohono O'odham [toho1246]}, + pages = {1-280}, + title = {Social Organization of the Papago Indians}, + volume = {30}, + year = {1939} +} + +@article{grimesandgrimes1962, + author = {Grimes, J. E. and Grimes, B. F.}, + glottolog_ref = {sil16:10902}, + journal = {American Anthropologist}, + key = {Grimes and Grimes (1962)}, + lgcode = {Huichol [huic1243]}, + pages = {104-14}, + title = {Semantic distinctions in Huichol (Uto-Aztecan) kinship}, + volume = {64}, + year = {1962} +} + +@incollection{grimesandhinton1969, + author = {Grimes, J. E. and Hinton, T. B.}, + editor = {Wauchope, R.}, + address = {Austin}, + booktitle = {Handbook of Middle American Indians}, + key = {Grimes and Hinton (1969)}, + lgcode = {Huichol [huic1243]}, + number = {ii}, + pages = {792-813}, + title = {The Huichol and Cora}, + volume = {7}, + year = {1969} +} + +@article{klineberg1934, + author = {Klineberg, O.}, + journal = {American Anthropologist}, + key = {Klineberg (1934)}, + lgcode = {Huichol [huic1243]}, + pages = {446-460}, + title = {Notes on the Huichol}, + volume = {36}, + year = {1934} +} + +@article{lumholtz1898, + author = {Lumholtz, C.}, + journal = {Bulletins of the American Museum of Natural History}, + key = {Lumholtz (1898)}, + lgcode = {Huichol [huic1243]}, + pages = {x, 1-14}, + title = {The Huichol Indians}, + volume = {5}, + year = {1898} +} + +@book{lumholtz1902, + author = {Lumholtz, C.}, + address = {New York}, + key = {Lumholtz (1902)}, + lgcode = {Huichol [huic1243]}, + title = {Unknown Mexico. 2v}, + year = {1902} +} + +@book{zingg1938, + author = {Zingg, R. M.}, + key = {Zingg (1938)}, + lgcode = {Huichol [huic1243]}, + number = {1}, + pages = {1-826}, + series = {University of Denver Contributions to Anthropology}, + title = {The Huichols: Primitive Artists}, + year = {1938} +} + +@article{ascher1962, + author = {Ascher, R.}, + journal = {Ethnology}, + key = {Ascher (1962)}, + lgcode = {Seri [seri1257]}, + pages = {360-369}, + title = {Ethnography for Archeology: A Case from the Seri Indians}, + volume = {1}, + year = {1962} +} + +@book{kroeber1931, + author = {Kroeber, A. L.}, + address = {Los Angeles}, + key = {Kroeber (1931)}, + lgcode = {Seri [seri1257]}, + number = {6}, + pages = {1-60}, + publisher = {Southwest Museum}, + series = {Southwest Museum Papers}, + title = {The Seri}, + year = {1931} +} + +@incollection{mcgee1898, + author = {McGee, M. J.}, + address = {Washington, D.C.}, + booktitle = {Seventeenth Annual Report of the Bureau of American Ethnology to the Secretary of the Smithsonian Institution, 1895-1896}, + key = {McGee (1898)}, + lgcode = {Seri [seri1257]}, + pages = {1-344}, + publisher = {Smithsonian Institution}, + title = {The Seri Indians}, + year = {1898} +} + +@book{driveranddriver1963, + author = {Driver, H. E. and Driver., W.}, + address = {Bloomington}, + glottolog_ref = {hh:e:DriverDriver:Chichimeca-Jonaz}, + key = {Driver and Driver (1963)}, + lgcode = {Chichimeca [chic1272]}, + pages = {x+265}, + publisher = {Bloomington: Indiana University}, + title = {Ethnography and Acculturation of the Chichimeca-Joanaz of Northeast Mexico}, + year = {1963} +} + +@article{parsons1928, + author = {Parsons, Elsie C.}, + journal = {American Anthropologist}, + key = {Parsons (1928)}, + lgcode = {Pima [akim1239]}, + pages = {445-464}, + title = {Notes on the Pima}, + volume = {30}, + year = {1928} +} + +@article{russell1908, + author = {Russell, F.}, + journal = {Annual Reports of the Bureau of American Ethnology}, + key = {Russell (1908)}, + lgcode = {Pima [akim1239]}, + pages = {3-390}, + title = {The Pima Indians}, + volume = {26}, + year = {1908} +} + +@article{beals1943, + author = {Beals, R. L.}, + journal = {Ibero-Americana}, + key = {Beals (1943)}, + lgcode = {Yaqui [yaqu1251]}, + pages = {1-86}, + title = {Aboriginal Culture of the Cahita Indians}, + volume = {19}, + year = {1943} +} + +@article{johnson1950, + author = {Johnson, J. B.}, + journal = {Univ. New Mex. Publ. Anth.}, + key = {Johnson (1950)}, + lgcode = {Opata [opat1246]}, + pages = {1-50}, + title = {The Opata}, + volume = {6}, + year = {1950} +} + +@article{mason1948, + author = {Mason, J. A.}, + journal = {America Indigena}, + key = {Mason (1948)}, + lgcode = {Tepehuán [nort2959]}, + pages = {289-300}, + title = {The Tepehuan}, + volume = {8}, + year = {1948} +} + +@article{radin1931, + author = {Radin, P.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Radin (1931)}, + lgcode = {Tepehuán [nort2959]}, + pages = {1-14}, + title = {Mexican Kinship Terms}, + volume = {33}, + year = {1931} +} + +@article{merrifield1959, + author = {Merrifield, W. R.}, + journal = {American Anthropologist}, + key = {Merrifield (1959)}, + lgcode = {Chinantec [ojit1237]}, + pages = {875-881}, + title = {Chinantec Kinship in Palantla}, + volume = {61}, + year = {1959} +} + +@inbook{weitlaner1951, + author = {Weitlaner, R. J.}, + address = {Mexico}, + booktitle = {Homenaje a Don Alfonso Caso}, + key = {Weitlaner (1951)}, + lgcode = {Chinantec [ojit1237]}, + pages = {441-455}, + title = {Notes on the Social Organization of Ojitlan}, + year = {1951} +} + +@book{weitlanerandcastroguevara1954, + author = {Weitlaner, R. J. and Guevara., C. A. Castro}, + address = {Mexico}, + key = {Weitlaner and Castro Guevara (1954)}, + lgcode = {Chinantec [ojit1237]}, + title = {Papeles de la Chinantla}, + year = {1954} +} + +@book{fuente1949, + author = {Fuente, J. de la.}, + address = {Mexico}, + key = {Fuente (1949)}, + lgcode = {Zapotec [yala1267]}, + title = {Yalagag: una villa zapoteca serrana}, + year = {1949} +} + +@article{nader1964, + author = {Nader, L.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Nader (1964)}, + lgcode = {Zapotec [yala1267]}, + pages = {195-296}, + title = {Talea and Juquila: A Comparison of Zapotec Social Organization}, + volume = {48}, + year = {1964} +} + +@book{parsons1936a, + author = {Parsons, Elsie C.}, + address = {Chicago}, + key = {Parsons (1936a)}, + lgcode = {Zapotec [yala1267]}, + title = {Mitla}, + year = {1936} +} + +@article{guiterasholmes1948, + author = {Guiteras Holmes, C.}, + journal = {Acta Americana}, + key = {Guiteras Holmes (1948)}, + lgcode = {Huastec [huas1242]}, + pages = {152-172}, + title = {Sistema de parentesco huasteco}, + volume = {6}, + year = {1948} +} + +@article{schuller1927, + author = {Schuller, R.}, + journal = {American Anthropologist}, + key = {Schuller (1927)}, + lgcode = {Huastec [huas1242]}, + pages = {231-240}, + title = {The Native Country of the Maya-K'ice Indians}, + volume = {19}, + year = {1927} +} + +@article{stresserpeau195253, + author = {Stresser-Peau, G.}, + journal = {Rev. Mex. Est. Anth.}, + key = {Stresser-Peau (1952-53)}, + lgcode = {Huastec [huas1242]}, + number = {ii-iii}, + pages = {213-324}, + title = {Les Indiens Huasteques}, + volume = {13}, + year = {1952-53} +} + +@incollection{romneyandromney1963, + author = {Romney, A. K. and Romney, R.}, + editor = {Whiting, B.}, + address = {New York}, + booktitle = {Six Cultures}, + key = {Romney and Romney (1963)}, + lgcode = {Mixtec [juxt1235]}, + pages = {541-692}, + title = {The Mixtecans of Juxtlahuaca, Mexico}, + year = {1963} +} + +@article{soustelle1937, + author = {Soustelle, J.}, + address = {Paris}, + glottolog_ref = {hh:hvld:Soustelle:Otomi-Pame}, + journal = {Trav. Mem. Inst. Ethnol.}, + key = {Soustelle (1937)}, + lgcode = {Otomí [mezq1235]}, + pages = {1-571}, + publisher = {Paris: Institut d'Ethnologie}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + title = {La famille Otomi-Pame du Mexique Central}, + volume = {26}, + year = {1937} +} + +@article{turnerandolmstead1966, + author = {Turner, P. R. and Olmsted, D. L.}, + journal = {Ethnology}, + key = {Turner and Olmstead (1966)}, + lgcode = {Tequistlatec [high1242]}, + pages = {245-250}, + title = {Tequistlatecan Kinship and Limitations on the Choice of Spouse}, + volume = {5}, + year = {1966} +} + +@article{holtker1930, + author = {Holtker, G.}, + journal = {Anthropos}, + key = {Holtker (1930)}, + lgcode = {Aztec [clas1250]}, + pages = {465-526}, + title = {Die Familie bei den Azteken in Altemexiko}, + volume = {25}, + year = {1930} +} + +@book{prescott1922, + author = {Prescott, W. H.}, + address = {New York}, + key = {Prescott (1922)}, + lgcode = {Aztec [clas1250]}, + title = {The Conquest of Mexico. 2v}, + year = {1922} +} + +@book{sahagun195057, + author = {Sahagun, B. de}, + address = {Santa Fe}, + key = {Sahagun (1950-57)}, + lgcode = {Aztec [clas1250]}, + note = {Translated from the original Aztec by A. J. O. Anderson and C. F. Dibble}, + number = {2, 3, 4, 8, 9, 13, 14}, + series = {Monographs of the School of American Research}, + title = {Florentine Codex: General History of the Things of New Spain}, + volume = {14}, + year = {1950-57} +} + +@book{selersachs1919, + author = {Seler-Sachs, C.}, + address = {Berlin}, + key = {Seler-Sachs (1919)}, + lgcode = {Aztec [clas1250]}, + title = {Frauenleben im Reiche der Aztken}, + year = {1919} +} + +@book{soustelle1961, + author = {Soustelle, J.}, + address = {New York}, + key = {Soustelle (1961)}, + lgcode = {Aztec [clas1250]}, + title = {Daily Life of the Aztecs}, + year = {1961} +} + +@book{thompson1933, + author = {Thompson, J. R.}, + address = {New York}, + key = {Thompson (1933)}, + lgcode = {Aztec [clas1250]}, + title = {Mexico before Cortez}, + year = {1933} +} + +@book{vaillant1941, + author = {Vaillant, G. C.}, + address = {New York}, + key = {Vaillant (1941)}, + lgcode = {Aztec [clas1250]}, + title = {Aztecs of Mexico}, + year = {1941} +} + +@article{foster1940, + author = {Foster, G. M.}, + glottolog_ref = {hh:s:Foster:Popoluca-Veracruz}, + journal = {Publicaciones del Instituto Panamericano de Geografia e Historia}, + key = {Foster (1940)}, + lgcode = {Sierra Popoluca [high1276]}, + pages = {1-41}, + publisher = {México, DF: Instituto Panamericano de Geografía e Historia}, + title = {Notes on the Popoluca of Veracruz}, + volume = {51}, + year = {1940} +} + +@article{foster1942, + author = {Foster, G. M.}, + journal = {Monographs of the American Ethnological Society}, + key = {Foster (1942)}, + lgcode = {Sierra Popoluca [high1276]}, + pages = {1-115}, + title = {A Primitive Mexican Economy}, + volume = {5}, + year = {1942} +} + +@article{foster1943, + author = {Foster, G. M.}, + glottolog_ref = {hh:w:Foster:Popoluca}, + journal = {American Anthropologist}, + key = {Foster (1943)}, + lgcode = {Sierra Popoluca [high1276]}, + pages = {531-546}, + title = {The Geographical, Linguistic, and Cultural Position of the Popoluca of Veracruz}, + volume = {45}, + year = {1943} +} + +@article{foster1945, + author = {Foster, G. M.}, + journal = {niversity of California Publications in American Archaeology and Ethnology}, + key = {Foster (1945)}, + lgcode = {Sierra Popoluca [high1276]}, + pages = {177-250}, + title = {Sierra Popoluca Folklore and Beliefs}, + volume = {42}, + year = {1945} +} + +@article{kellyandpalerm1952, + author = {Kelly, I. and Palerm., A.}, + journal = {Publ. Inst. Soc. Anth., Smiths, Inst.}, + key = {Kelly and Palerm (1952)}, + lgcode = {Totonac [papa1238]}, + pages = {1-369}, + title = {The Tajin Totonac}, + volume = {13}, + year = {1952} +} + +@article{kriekenberg1918, + author = {Kriekenberg, W.}, + journal = {Baessler-Arch.}, + key = {Kriekenberg (1918)}, + lgcode = {Totonac [papa1238]}, + pages = {1-55}, + title = {Die Totonaken}, + volume = {7}, + year = {1918} +} + +@article{palerm195253, + author = {Palerm, A.}, + journal = {Rev. Mex. Estud. Antr.}, + key = {Palerm (1952-53)}, + lgcode = {Totonac [papa1238]}, + number = {ii-iii}, + pages = {163-173}, + title = {Etnografia antigua totonaca en el oriente de Mexico}, + volume = {13}, + year = {1952-53} +} + +@article{cowan1946, + author = {Cowan, F. H.}, + glottolog_ref = {sil16:10450}, + journal = {America Indigena}, + key = {Cowan (1946)}, + lgcode = {Mazateco [huau1238]}, + pages = {27-39}, + title = {Notas etnograficas sobre los Mazateco de Oaxaca}, + volume = {6}, + year = {1946} +} + +@article{cowan1947, + author = {Cowan, F. H.}, + glottolog_ref = {sil16:10451}, + journal = {Southw. Journ. Anth.}, + key = {Cowan (1947)}, + lgcode = {Mazateco [huau1238]}, + pages = {247-256}, + title = {Linguistic and Ethnological Aspects of Mazateco Kinship}, + volume = {3}, + year = {1947} +} + +@article{diebold1966, + author = {Diebold and R., A. and Jr.}, + journal = {Ethnology}, + key = {Diebold (1966)}, + lgcode = {Huave [sanm1287]}, + pages = {37-79}, + title = {The Reflection of Coresidence in Mareno Kinship Terminology}, + volume = {5}, + year = {1966} +} + +@article{beals1945, + author = {Beals, R. L.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Beals (1945)}, + lgcode = {Mixe [isth1238]}, + pages = {1-176}, + title = {Ethnology of the Western Mixe}, + volume = {42}, + year = {1945} +} + +@article{foster1948, + author = {Foster, G. M.}, + journal = {Publ. Inst. Soc. Anth., Smithsonian Inst.}, + key = {Foster (1948)}, + lgcode = {Tarasco [pure1242]}, + pages = {1-297}, + title = {Empire's Children}, + volume = {6}, + year = {1948} +} + +@phdthesis{nutini1962, + author = {Nutini, H. G.}, + key = {Nutini (1962)}, + lgcode = {Tlaxcalans [cent2132]}, + school = {University of California at Los Angeles}, + title = {Marriage and the Family in a Nahuatl-speaking Village}, + year = {1962} +} + +@article{nutini1965, + author = {Nutini, H. G.}, + journal = {Ethnology}, + key = {Nutini (1965)}, + lgcode = {Tlaxcalans [cent2132]}, + pages = {123-147}, + title = {Polygyny in a Tlaxcalan Community}, + volume = {4}, + year = {1965} +} + +@article{depuydt1868, + author = {De Puydt, L.}, + journal = {Journal of the Royal Geographic Society}, + key = {De Puydt (1868)}, + lgcode = {Guna [bord1248]}, + pages = {69-110}, + title = {Account of Scientific Explorations in the Isthmus of Darien in the Years 1861 and 1865}, + volume = {38}, + year = {1868} +} + +@article{holloman1969, + author = {Holloman, R.}, + journal = {Field Museum of Natural History Bulletin}, + key = {Holloman (1969)}, + lgcode = {Guna [bord1248]}, + number = {7}, + pages = {4-9}, + title = {Acculturation and the Cuna}, + volume = {40}, + year = {1969} +} + +@article{holmer1951, + author = {Holmer, N. M.}, + address = {Göteborg}, + glottolog_ref = {fabreall2009ann:Chibcha_kuna074}, + journal = {Etnologiska Studier}, + key = {Holmer (1951)}, + lgcode = {Guna [bord1248]}, + pages = {1-191}, + publisher = {Göteborg: Etnogrfiska Muséet}, + series = {Etnologiska Studier}, + title = {Cuna Chrestomathy}, + volume = {18}, + year = {1951} +} + +@article{krieger1926, + author = {Krieger, H. W.}, + journal = {Bulletins of the United States National Museum}, + key = {Krieger (1926)}, + lgcode = {Guna [bord1248]}, + pages = {1-133}, + title = {Material Culture of the People of Southeastern Panama}, + volume = {134}, + year = {1926} +} + +@book{nordenskiold1938, + author = {Nordenskiold, E.}, + editor = {Wassen, H.}, + address = {Goeteborg}, + key = {Nordenskiold (1938)}, + lgcode = {Guna [bord1248]}, + pages = {1-686}, + series = {Comparative Ethnographic Studies}, + title = {An Historical and Ethnological Survey of the Cuna Indians}, + volume = {10}, + year = {1938} +} + +@article{stout1947, + author = {Stout, D. C.}, + journal = {Viking Fund Publications in Anthropology,}, + key = {Stout (1947)}, + lgcode = {Guna [bord1248]}, + pages = {1-124}, + title = {San Blas Cuna Acculturation}, + volume = {9}, + year = {1947} +} + +@incollection{wafer1934, + author = {Wafer, L.}, + editor = {Joyce, L. E. E.}, + address = {Oxford}, + key = {WAfer (1934)}, + lgcode = {Guna [bord1248]}, + pages = {1-220}, + series = {Hakluyt Society, ser. 2}, + title = {A New Voyage and Description of the Isthmus of America}, + volume = {73}, + year = {1934} +} + +@article{baerandbaer1949, + author = {Baer, P. and Baer., M.}, + glottolog_ref = {sil16:10140}, + journal = {Southw. Journ. Anth.}, + key = {Baer and Baer (1949)}, + lgcode = {Lacandon [laca1243]}, + pages = {101-6}, + title = {Notes on Lacandon marriage}, + volume = {5}, + year = {1949} +} + +@book{tozzer1907, + author = {Tozzer, A. M.}, + address = {New York}, + key = {Tozzer (1907)}, + lgcode = {Lacandon [laca1243]}, + title = {A Comparative Study of the Mayas and Lacandones}, + year = {1907} +} + +@book{stoll1889, + author = {Stoll, O.}, + address = {Leiden}, + glottolog_ref = {hh:he:Stoll:Guatemala}, + key = {Stoll (1889)}, + lgcode = {Kaqchikel [kaqc1270]}, + pages = {128}, + publisher = {P. W. M. Trap}, + series = {Supplement zum Internationalen Archiv für Ethnographie}, + title = {Die Ethnologie der Indianerstämme von Guatemala}, + volume = {1}, + year = {1889} +} + +@article{stone1948, + author = {Stone, D.}, + editor = {Steward, Julian H.}, + address = {Washington D.C.}, + glottolog_ref = {fabreall2009ann:Lenca46}, + journal = {Bull. Bur. Amer. Ethn. 143}, + key = {Stone (1948)}, + lgcode = {Lenca [lenc1242]}, + pages = {205-217}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians}, + title = {The northern highland tribes: the Lenca}, + volume = {4}, + year = {1948} +} + +@article{bunzel1952, + author = {Bunzel, R.}, + journal = {Publications of the American Ethnological Society}, + key = {Bunzel (1952)}, + lgcode = {K'iche' [kich1262]}, + pages = {1-438}, + title = {Chichicastenanago}, + volume = {22}, + year = {1952} +} + +@book{schultzejena1933, + author = {Schultze-Jena, L.}, + address = {Jena}, + key = {Schultze-Jena (1933)}, + lgcode = {K'iche' [kich1262]}, + title = {Indiana I: Leben, Glaube und Sprache der Quiche von Guatemala}, + year = {1933} +} + +@book{alphonse1956, + author = {Alphonse, E. S.}, + address = {Washington}, + glottolog_ref = {wals:145}, + key = {Alphonse (1956)}, + lgcode = {Ngäbe [ngab1239]}, + number = {162}, + pages = {1-128}, + publisher = {Washington: United States Government Printing Office}, + series = {Bulletin of the Bureau of American Ethnology}, + title = {Guaymi Grammar and Dictionary}, + url = {https://repository.si.edu/handle/10088/15456}, + year = {1956} +} + +@article{johnson1938, + author = {Johnson, F.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Johnson (1938)}, + lgcode = {Ngäbe [ngab1239]}, + pages = {iv, 231-251}, + title = {The Caribbean Lowland Tribes}, + volume = {143}, + year = {1938} +} + +@article{lafargeandbyers1931, + author = {La Farge, O. and Byers., D.}, + journal = {Tulane Univ. Middle Amer. Ser.}, + key = {La Farge and Byers (1931)}, + lgcode = {Jakaltek [popt1235]}, + pages = {1-379}, + title = {The Year Bearer's People}, + volume = {3}, + year = {1931} +} + +@book{hagen1943, + author = {Hagen, V. W. von.}, + key = {Hagen (1943)}, + lgcode = {Tolupan [toll1241]}, + series = {Indian Notes Monogr., Misc. Ser}, + title = {The Jicaque Indians of Honduras}, + volume = {53}, + year = {1943} +} + +@article{kirchhoff1948a, + author = {Kirchhoff, Paul.}, + address = {Washington, D.C.}, + glottolog_ref = {fabreall2009ann:Misumalpa43}, + key = {Kirchhoff (1948a)}, + lgcode = {Miskito [misk1235], Tolupan [toll1241]}, + pages = {219-229}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin No. 143}, + title = {The Caribbean lowland tribes: The Mosquito, Sumo, Paya, and Jicaque}, + volume = {4}, + year = {1948} +} + +@article{gillin1951, + author = {Gillin, J. P.}, + journal = {Publ. Middle Amer. Res. Inst., Tulane Univ.}, + key = {Gillin (1951)}, + lgcode = {Poqomam [poqo1253]}, + pages = {1-128}, + title = {The Culture of Security in San Carlos}, + volume = {16}, + year = {1951} +} + +@book{reina1966, + author = {Reina, R. E.}, + address = {Indianapolis and New York}, + key = {Reina (1966)}, + lgcode = {Poqomam [poqo1253]}, + title = {The Law of the Saints: A Pokomam Pueblo and Its Community Culture}, + year = {1966} +} + +@article{guiterasholmes1947, + author = {Guiteras Holmes, C.}, + journal = {Acta Americana}, + key = {Guiteras Holmes (1947)}, + lgcode = {Tzeltal [tzel1254]}, + pages = {1-17}, + title = {Clanes y sistema de parentesco de Cancuc}, + volume = {5}, + year = {1947} +} + +@article{redfieldandvillarojas1939, + author = {Redfield, R. and Rojas., A. Villa}, + journal = {Publ. Carnegie Inst. Wash.}, + key = {Redfield and Villa Rojas (1939)}, + lgcode = {Tzeltal [tzel1254]}, + pages = {107-119}, + title = {Notes on the Ethnography of Tzeltal Communities of Chiapas}, + volume = {509}, + year = {1939} +} + +@article{villarojas1947, + author = {Villa Rojas, A.}, + journal = {American Anthropologist}, + key = {Villa Rojas (1947)}, + lgcode = {Tzeltal [tzel1254]}, + pages = {578-587}, + title = {Kinship and Nagualism in a Tzeltal Community}, + volume = {49}, + year = {1947} +} + +@book{wisdom1940, + author = {Wisdom, C.}, + address = {Chicago}, + key = {Wisdom (1940)}, + lgcode = {Ch'orti' [chor1273]}, + title = {The Chorti Indians of Guatemala}, + year = {1940} +} + +@article{faron1961a, + author = {Faron, L. C.}, + glottolog_ref = {fabreall2009ann:Choco11}, + journal = {Southw. Journ. Anth.}, + key = {Faron (1961a)}, + lgcode = {Emberá [nort2972]}, + pages = {94-102}, + title = {A Reinterpretation of Choco Society}, + volume = {17}, + year = {1961} +} + +@article{faron1962, + author = {Faron, L. C.}, + glottolog_ref = {fabreall2009ann:Choco12}, + journal = {Ethnology}, + key = {Faron (1962)}, + lgcode = {Emberá [nort2972]}, + pages = {13-38}, + title = {Marriage residence and domestic groups among the Panamanian Chocó}, + volume = {1}, + year = {1962} +} + +@article{reicheldolmatoff1960, + author = {Reichel-Dolmatoff, G.}, + journal = {Rev. Colomb. Antr.}, + key = {Reichel-Dolmatoff (1960)}, + lgcode = {Emberá [nort2972]}, + pages = {74-158}, + title = {Notas etnograficas sobre los Indios del Choco}, + volume = {9}, + year = {1960} +} + +@incollection{stout1948, + author = {Stout, D. B.}, + editor = {Steward, Julian H.}, + address = {Washington D.C.}, + glottolog_ref = {hh:e:Stout:Choco}, + key = {Stout (1948)}, + lgcode = {Emberá [nort2972]}, + pages = {269-276}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians, The Choco. Bull. Bur. Amer. Ethn. 143}, + title = {The Choco}, + volume = {4}, + year = {1948} +} + +@article{gabb1876, + author = {Gabb, W. M.}, + journal = {Proceedings of the American Philosophic Society}, + key = {Gabb (1876)}, + lgcode = {Bribri [brib1243]}, + pages = {483-602}, + title = {On the Tribes and Languages of Costa Rica}, + volume = {14}, + year = {1876} +} + +@article{johnson1948, + author = {Johnson, F.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Johnson (1948)}, + lgcode = {Bribri [brib1243]}, + pages = {iv, 231-251}, + title = {The Caribbean Lowland Tribes: The Talamancan Division}, + volume = {143}, + year = {1948} +} + +@book{pittierdefabrega1938, + author = {Pittier de Fabrega, H.}, + address = {San Jos}, + key = {Pittier de Fabrega (1938)}, + lgcode = {Bribri [brib1243]}, + number = {1}, + series = {Museo Nacional, Series Etnologica}, + title = {Apuntaciones etnologicas sobre los indios Bribri}, + volume = {1}, + year = {1938} +} + +@article{skinner1920, + author = {Skinner, A.}, + glottolog_ref = {hh:e:Skinner:Bribri}, + journal = {Indian Notes and Monographs}, + key = {Skinner (1920)}, + lgcode = {Bribri [brib1243]}, + number = {3}, + pages = {41-106}, + publisher = {New York: Museum of the American Indian}, + title = {Notes on the Bribri of Coasta Rica}, + volume = {6}, + year = {1920} +} + +@book{stone1962, + author = {Stone, D.}, + glottolog_ref = {fabreall2009ann:Chibcha85}, + key = {Stone (1962)}, + lgcode = {Bribri [brib1243]}, + number = {2}, + pages = {1-108}, + publisher = {Cambridge}, + series = {Papers of the Peobody Museum of Archaeology and Ethnology}, + title = {The Talamanca tribes of Costa Rica}, + volume = {43}, + year = {1962} +} + +@incollection{carrasco1967, + author = {Carrasco, Pedro.}, + editor = {Cohen, Ronald and Middleton, John}, + address = {Garden City}, + booktitle = {Comparative Political Systems: Studies in the Politics of Pre-Industrial Societies}, + key = {Carrasco (1967)}, + lgcode = {Yucatec Maya [yuca1254]}, + pages = {397-414}, + publisher = {Natural History Press}, + title = {The Civil Religious Hierarchy in Meso American Communities: Pre-Spanish Background and Colonial Development}, + year = {1967} +} + +@book{chamberlain1951, + author = {Chamberlain, Robert S.}, + key = {Chamberlain (1951)}, + lgcode = {Yucatec Maya [yuca1254]}, + number = {10}, + series = {University of Miami Hispanic-American Studies}, + title = {The Pre-Conquest Tribute and Service System of the Maya as Preparation for the Spanish Repartimiento-Ecomienda in Yucatan}, + year = {1951} +} + +@book{gannandthompson1931, + author = {Gann, T. W. F. and Thompson., J. E.}, + address = {New York}, + key = {Gann and Thompson (1931)}, + lgcode = {Yucatec Maya [yuca1254]}, + title = {The History of the Maya}, + year = {1931} +} + +@book{redfieldandvillarojas1934, + author = {Redfield, Robert and Rojas, A. Villa}, + key = {Redfield and Villa Rojas (1934)}, + lgcode = {Yucatec Maya [yuca1254]}, + series = {Carnegie Institution of Washington Publication}, + title = {Chan Kom, a Mayan village}, + volume = {448}, + year = {1934} +} + +@article{roys1943, + author = {Roys, R. L.}, + journal = {Carnegie nst. Wash. Publ.}, + key = {Roys (1943)}, + lgcode = {Yucatec Maya [yuca1254]}, + pages = {1-244}, + title = {The Indian Background of Colonial Yucatan}, + volume = {548}, + year = {1943} +} + +@book{roys1951, + author = {Roys, Ralph L.}, + address = {Washington D. C.}, + key = {Roys (1951)}, + lgcode = {Yucatec Maya [yuca1254]}, + publisher = {Carnegie Institution of Washington}, + title = {The Indian Background of Colonial Yucatan}, + year = {1951} +} + +@book{roys1957, + author = {Roys, Ralph L.}, + address = {Washington D. C.}, + key = {Roys (1957)}, + lgcode = {Yucatec Maya [yuca1254]}, + publisher = {Carnegie Institution of Washington}, + title = {The Political Geography of the Yucatan Maya}, + year = {1957} +} + +@article{thompson1927, + author = {Thompson, J. E.}, + journal = {Field Mus. Nat. Hist. Anth. LeAfl.}, + key = {Thompson (1927)}, + lgcode = {Yucatec Maya [yuca1254]}, + pages = {1-110}, + title = {The Civilization of the Mayas}, + volume = {25}, + year = {1927} +} + +@article{tozzer1941, + editor = {Tozzer, A. M.}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + key = {Tozzer (1941)}, + lgcode = {Yucatec Maya [yuca1254]}, + pages = {1-394}, + title = {Landa's Relacion de las cosas de Yucatan}, + volume = {18}, + year = {1941} +} + +@book{vonhagen1957, + author = {Von Hagen, Victor W.}, + address = {Cleveland}, + key = {Von Hagen (1957)}, + lgcode = {Yucatec Maya [yuca1254]}, + publisher = {The World Publishing Co.}, + title = {The Ancient Sun Kingdoms of the Americas}, + year = {1957} +} + +@article{solien1960a, + author = {Solien, N. L.}, + journal = {Southw. Journ. Anth.}, + key = {Solien (1960a)}, + lgcode = {Garifuna [gari1256]}, + pages = {144-159}, + title = {Changes in Black Carib Kinship Terminology}, + volume = {16}, + year = {1960} +} + +@article{solien1960b, + author = {Solien, N. L.}, + journal = {American Anthropologist}, + key = {Solien (1960b)}, + lgcode = {Garifuna [gari1256]}, + pages = {578-583}, + title = {The Nonunilineal Descent Groups of the Caribbean and Central America}, + volume = {61}, + year = {1960} +} + +@article{taylor1951, + author = {Taylor, D. M.}, + glottolog_ref = {fabreall2009ann:Arawak_caribe_isleno175}, + journal = {Viking Fund Publ. Anth.}, + key = {Taylor (1951)}, + lgcode = {Garifuna [gari1256]}, + pages = {1-176}, + publisher = {New York: Viking Fund Publications in Anthropology, no. 17}, + series = {Viking Fund Publications in Anthropology}, + title = {The Black Carib of British Honduras}, + volume = {17}, + year = {1951} +} + +@article{wagley1941, + author = {Wagley, C.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Wagley (1941)}, + lgcode = {Mam [mamm1241]}, + pages = {1-85}, + title = {Economics of a Guatemalan Village}, + volume = {58}, + year = {1941} +} + +@article{wagley1949b, + author = {Wagley, C.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Wagley (1949b)}, + lgcode = {Mam [mamm1241]}, + pages = {1-150}, + title = {The Social and Religious Life of a Guatemalan Village}, + volume = {71}, + year = {1949} +} + +@article{conzemius1932, + author = {Conzemius, E.}, + glottolog_ref = {fabreall2009ann:Misumalpa_miskito027}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Conzemius (1932)}, + lgcode = {Miskito [misk1235]}, + pages = {1-191}, + publisher = {Washington: BAE 106}, + title = {Ethnographic Survey of the Miskito and Sumu Indians of Honduras and Nicaragua}, + volume = {106}, + year = {1932} +} + +@article{helms1969, + author = {Helms, M. W.}, + glottolog_ref = {fabreall2009ann:Misumalpa_miskito074}, + journal = {Ethnology}, + key = {Helms (1969)}, + lgcode = {Miskito [misk1235]}, + pages = {76-84}, + title = {The Cultural Ecology of a Colonial Tribe}, + volume = {8}, + year = {1969} +} + +@book{helms1971, + author = {Helms, M. W.}, + address = {Gainesville}, + key = {Helms (1971)}, + lgcode = {Miskito [misk1235]}, + title = {Asang: Adaptations to culture contact in a Miskito community}, + year = {1971} +} + +@book{pijoan1946, + author = {Pijoan, Michel}, + address = {Mexico}, + key = {Pijoan (1946)}, + lgcode = {Miskito [misk1235]}, + publisher = {Instituto Indigena Interamericano}, + title = {The Health and Customs of the Miskito Indians of North Nicaragua: Interrelationships in a Medical Program}, + year = {1946} +} + +@book{bouton1640, + author = {Bouton, J.}, + address = {Paris}, + key = {Bouton (1640)}, + lgcode = {Callinago [isla1278]}, + title = {Relation de l'establissement des Français depuis l'an 1635 en l'isle de Martinique}, + year = {1640} +} + +@book{breton1665, + author = {Breton, R.}, + address = {Auxerre}, + glottolog_ref = {fabreall2009ann:Caribe_kari'na038}, + key = {Breton (1665)}, + lgcode = {Callinago [isla1278]}, + publisher = {Besada, Marina et al}, + title = {Observations of the Island Carib}, + year = {1665} +} + +@article{bretonanddelapaix1929, + author = {Breton, R. and de la Paix., A.}, + editor = {Rennard, J.}, + address = {Paris}, + journal = {Histoire Coloniale}, + key = {Breton and de la Paix (1929)}, + lgcode = {Callinago [isla1278]}, + pages = {45-74}, + title = {Relation de l'ile de la Guadeloup}, + volume = {1}, + year = {1929} +} + +@book{dutertre1667, + author = {Du Tertre, J. B.}, + address = {Paris}, + key = {Du Tertre (1667)}, + lgcode = {Callinago [isla1278]}, + title = {Histoire générale des Antilles habitées par les Français, v. 2, 2d edit.}, + year = {1667} +} + +@article{hodgeandtaylor1957, + author = {Hodge, W. H. and Taylor., D. M.}, + address = {Firenze}, + journal = {Webbia}, + key = {Hodge and Taylor (1957)}, + lgcode = {Callinago [isla1278]}, + number = {ii}, + pages = {513-644}, + title = {The Ethnobotany of the Island Caribs of Dominica}, + volume = {12}, + year = {1957} +} + +@article{rouse1948b, + author = {Rouse, I.}, + address = {Washington 1946-1950}, + glottolog_ref = {fabreall2009ann:Arawak_caribe_isleno162}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + key = {Rouse (1948b)}, + lgcode = {Callinago [isla1278]}, + pages = {547-565}, + title = {The Carib}, + volume = {4}, + year = {1948} +} + +@article{taylor1938, + author = {Taylor, D.}, + glottolog_ref = {fabreall2009ann:Arawak_caribe_isleno171}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Taylor (1938)}, + lgcode = {Callinago [isla1278]}, + pages = {103-159}, + publisher = {Washington, D.C.: Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Caribs of Dominica}, + volume = {119}, + year = {1938} +} + +@article{taylor1946, + author = {Taylor, D.}, + journal = {Southwestern Journal of Anthropology}, + key = {Taylor (1946)}, + lgcode = {Callinago [isla1278]}, + pages = {180-212}, + title = {Kinship and Social Structure of the Island Carib}, + volume = {2}, + year = {1946} +} + +@article{taylor1949, + author = {Taylor, D.}, + journal = {Southwestern Journal of Anthropology}, + key = {Taylor (1949)}, + lgcode = {Callinago [isla1278]}, + pages = {379-392}, + title = {The Interpretation of Some Documentary Evidence on Carib Culture}, + volume = {5}, + year = {1949} +} + +@article{park1946, + author = {Park, W. Z.}, + address = {Washington 1946-1950}, + glottolog_ref = {fabreall2009ann:Chibcha71}, + journal = {Bull. Bur. Amer. Ethn. 143}, + key = {Park (1946)}, + lgcode = {Cágaba [cogu1240]}, + pages = {865-886}, + title = {Tribes of the Sierra Nevada de Santa Marta, Colombia}, + volume = {2}, + year = {1946} +} + +@book{reicheldolmatoff194951, + author = {Reichel-Dolmatoff, G.}, + address = {Bogota}, + key = {Reichel-Dolmatoff (1949-51)}, + lgcode = {Cágaba [cogu1240]}, + title = {Los Kogi. 2v}, + year = {1949-51} +} + +@article{holder1947, + author = {Holder, Preston.}, + journal = {Washington Academy of Sciences Journal}, + key = {Holder (1947)}, + lgcode = {Barí (Motilon) [yukp1241]}, + pages = {417-27}, + title = {The Motilones}, + volume = {37}, + year = {1947} +} + +@article{reicheldolmatoff1945, + author = {Reichel-Dolmatoff, G.}, + address = {Bogota}, + journal = {Rev. Inst. Etn. Nac.}, + key = {Reichel-Dolmatoff (1945)}, + lgcode = {Barí (Motilon) [yukp1241]}, + number = {i}, + pages = {15-115}, + title = {Los Motilones}, + volume = {2}, + year = {1945} +} + +@article{reicheldolmatoffandclark1950, + author = {Reichel-Dolmatoff, G. and Clark., A. F.}, + glottolog_ref = {fabreall2009ann:Caribe_yukpa14}, + journal = {Journ. Soc. Americanistes, n. s.}, + key = {Reichel-Dolmatoff and Clark (1950)}, + lgcode = {Barí (Motilon) [yukp1241]}, + pages = {97-109}, + title = {Parentesco, parentela y agresión entre los Iroka}, + volume = {39}, + year = {1950} +} + +@article{schwein1963, + author = {Schwein, K. H.}, + journal = {America Indigena}, + key = {Schwein (1963)}, + lgcode = {Cariña [taba1267]}, + pages = {201-209}, + title = {Family Among the Karinya of Eastern Venezuela}, + volume = {23}, + year = {1963} +} + +@article{schwerin1966, + author = {Schwerin, K. H.}, + address = {Los Angeles}, + glottolog_ref = {fabreall2009ann:Caribe_kari'na134}, + journal = {Latin American Studies}, + key = {Schwerin (1966)}, + lgcode = {Cariña [taba1267]}, + pages = {I-273}, + publisher = {University of California}, + title = {Oil and steel. Processes of Karinya culture change in response to industrial development}, + volume = {4}, + year = {1966} +} + +@misc{schwerin1967, + author = {Schwerin, K. H.}, + howpublished = {Personal communication}, + key = {Schwerin (1967)}, + lgcode = {Cariña [taba1267]}, + year = {1967} +} + +@article{wilbert1957a, + author = {Wilbert, J.}, + journal = {Antropologica}, + key = {Wilbert (1957a)}, + lgcode = {Cariña [taba1267]}, + pages = {53-61}, + title = {El sistema de parentesco de los Carina}, + volume = {3}, + year = {1957} +} + +@article{jahn1914, + author = {Jahn, A.}, + address = {Braunschweig}, + glottolog_ref = {fabreall2009ann:Arawak_wayu068}, + journal = {Zeitschrift für Ethnologie}, + key = {Jahn (1914)}, + lgcode = {Paraujano [para1316]}, + pages = {267-283}, + title = {Paraujanos und Goajiros und die Pfahlbauten am See von Maracaibo}, + volume = {46}, + year = {1914} +} + +@article{wilbert1959c, + author = {Wilbert, J.}, + address = {Braunschweig}, + glottolog_ref = {fabreall2009ann:Arawak_anun21}, + journal = {Zeitschrift für Ethnologie}, + key = {Wilbert (1959c)}, + lgcode = {Paraujano [para1316]}, + pages = {81-87}, + title = {Zur Soziologie der Paraujano}, + volume = {84}, + year = {1959} +} + +@article{armstrongandmetraux1948, + author = {Armstrong, J. M. and M‚traux., A.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Armstrong and Metraux (1948)}, + lgcode = {Wayuu [wayu1243]}, + pages = {iv, 360-383}, + title = {The Goajiro}, + volume = {143}, + year = {1948} +} + +@article{bolinder1957, + author = {Bolinder, G.}, + journal = {Zeitschrift für Ethnologie}, + key = {Bolinder (1957)}, + lgcode = {Wayuu [wayu1243]}, + note = {English translation: 1957. Indians on Horseback. London.}, + pages = {164-168}, + title = {Verwandtschaftssystem der Goajiro}, + volume = {82}, + year = {1957} +} + +@book{gutierrezdepineda1948, + author = {Gutierrez de Pineda, V.}, + address = {Bogota}, + key = {Gutierrez de Pineda (1948)}, + lgcode = {Wayuu [wayu1243]}, + number = {ii}, + pages = {1-255}, + series = {Revista del Instituto Etnologico Nacional}, + title = {Organizacion social en la Guajira}, + volume = {3}, + year = {1948} +} + +@article{pinedagiraldo1950, + author = {Pineda Giraldo, R.}, + address = {Bogota}, + glottolog_ref = {fabreall2009ann:Arawak_wayu164}, + journal = {Revista del Instituto Etnologico Nacional}, + key = {Pineda Giraldo (1950)}, + lgcode = {Wayuu [wayu1243]}, + number = {i}, + pages = {1-163}, + title = {Aspectos de la magia en la Guajira}, + volume = {3}, + year = {1950} +} + +@article{santacruz1941, + author = {Santa Cruz, A.}, + journal = {Primitive Man}, + key = {Santa Cruz (1941)}, + lgcode = {Wayuu [wayu1243]}, + pages = {1-13}, + title = {Aspects of the Avunculate in Guajiro Culture}, + volume = {14}, + year = {1941} +} + +@article{santacruz1960, + author = {Santa Cruz, A.}, + journal = {Anthropological Quarterly}, + key = {Santa Cruz (1960)}, + lgcode = {Wayuu [wayu1243]}, + pages = {115-127}, + title = {Acquiring Status in Goajiro Society}, + volume = {33}, + year = {1960} +} + +@article{simons1885, + author = {Simons, F. A. A.}, + glottolog_ref = {fabreall2009ann:Arawak_wayu172}, + journal = {Proceedings of the Royal Geographical Society, n. s.,}, + key = {Simons (1885)}, + lgcode = {Wayuu [wayu1243]}, + pages = {781-796}, + title = {An Exploration of the Goajira Peninsula}, + volume = {7}, + year = {1885} +} + +@article{watson1973, + author = {Watson, L.}, + glottolog_ref = {fabreall2009ann:Arawak_wayu192}, + journal = {Ethnology}, + key = {Watson (1973)}, + lgcode = {Wayuu [wayu1243]}, + pages = {153-62}, + title = {Marriage and Sexual Adjustment in Goajiro Society}, + volume = {12}, + year = {1973} +} + +@article{wilbert1962, + author = {Wilbert, J.}, + address = {Caracas}, + glottolog_ref = {fabreall2009ann:Arawak_wayu200}, + key = {Wilbert (1962)}, + lgcode = {Wayuu [wayu1243]}, + pages = {103-115}, + title = {Literatura oral y creencias de los indios Guajiros}, + volume = {22}, + year = {1962} +} + +@article{wilbert1961b, + author = {Wilbert, J.}, + address = {Wien}, + journal = {Arch. Volkerk.}, + key = {Wilbert (1961b)}, + lgcode = {Yupa [yukp1241]}, + pages = {80-153}, + title = {Zur Kenntnis der Pariri}, + volume = {15}, + year = {1961} +} + +@article{rouse1948a, + author = {Rouse, I.}, + address = {Washington 1946-1950}, + glottolog_ref = {fabreall2009ann:Arawak110}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + key = {Rouse (1948a)}, + lgcode = {Taíno [tain1254]}, + pages = {507-546}, + title = {The Arawak}, + volume = {4}, + year = {1948} +} + +@phdthesis{bastien1951, + author = {Bastien, Rémy}, + key = {Bastien (1951)}, + lgcode = {Haitians [hait1244]}, + school = {Universidad Nacional Autonoma de Mexico}, + title = {La familia rural haitiana, Valle de Marbial}, + year = {1951} +} + +@book{courlander1960, + author = {Courlander, H.}, + address = {Berkeley and Los Angeles}, + key = {Courlander (1960)}, + lgcode = {Haitians [hait1244]}, + title = {The Drum and the Hoe: Life and Lore of the Haitian People}, + year = {1960} +} + +@book{herskovits1937b, + author = {Herskovits, M. J.}, + address = {New York}, + key = {Herskovits (1937b)}, + lgcode = {Haitians [hait1244]}, + title = {Life in a Haitian Valley}, + year = {1937} +} + +@book{leyburn1941, + author = {Leyburn, J. G.}, + address = {New Haven}, + key = {Leyburn (1941)}, + lgcode = {Haitians [hait1244]}, + title = {The Haitian People}, + year = {1941} +} + +@book{metraux1959, + author = {Métraux, A.}, + address = {New York}, + key = {Métraux (1959)}, + lgcode = {Haitians [hait1244]}, + title = {Voodoo in Haiti}, + year = {1959} +} + +@book{metraux1960, + author = {Métraux, A.}, + address = {Neuchatel}, + key = {Métraux (1960)}, + lgcode = {Haitians [hait1244]}, + title = {Haiti Black Peasants and Their Religion}, + year = {1960} +} + +@incollection{mintz1963, + author = {Mintz, S. W.}, + editor = {Firth, R. and Yamey, B. S.}, + address = {Chicago}, + booktitle = {Capital, Saving and Credit in Peasant Societies}, + key = {Mintz (1963)}, + lgcode = {Haitians [hait1244]}, + pages = {256-286}, + title = {The Employment of Capital by Market Women in Haiti}, + year = {1963} +} + +@misc{rawsonnd, + author = {Rawson, I.}, + howpublished = {Personal communication}, + key = {Rawson (nd)}, + lgcode = {Haitians [hait1244]} +} + +@phdthesis{romain1955, + author = {Romain, J. B.}, + key = {Romain (1955)}, + lgcode = {Haitians [hait1244]}, + school = {Paris}, + title = {Quelques moeurs et coutumes des paysans haitians}, + year = {1955} +} + +@article{simpson1940a, + author = {Simpson, G. E.}, + journal = {Journal of Negro History}, + key = {Simpson (1940a)}, + lgcode = {Haitians [hait1244]}, + pages = {498-519}, + title = {Haitian Peasant Economy}, + volume = {25}, + year = {1940} +} + +@article{simpson1943, + author = {Simpson, G. E.}, + journal = {American Anthropologist}, + key = {Simpson (1943)}, + lgcode = {Haitians [hait1244]}, + pages = {655-674}, + title = {Sexual and Familial Institutions in Northern Haiti}, + volume = {44}, + year = {1943} +} + +@article{underwood1960, + author = {Underwood, F. W.}, + journal = {Yale University Publications in Anthropology}, + key = {Underwood (1960)}, + lgcode = {Haitians [hait1244]}, + pages = {3-33}, + title = {A Survey of Haitian Markets}, + volume = {60}, + year = {1960} +} + +@book{hill1956, + author = {Hill, G. W. et al.}, + address = {Caracas}, + key = {Hill (1956)}, + lgcode = {Warao [wara1303]}, + title = {Los Guarao del delta Amacuro}, + year = {1956} +} + +@article{kirchhoff1948b, + author = {Kirchhoff, Paul.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Kirchhoff (1948b)}, + lgcode = {Warao [wara1303]}, + pages = {iii, 869-881}, + title = {The Warrau}, + volume = {143}, + year = {1948} +} + +@book{moreno1945, + author = {Turrado Moreno, A.}, + address = {Caracas}, + key = {Moreno (1945)}, + lgcode = {Warao [wara1303]}, + title = {Etnographia de los Indios Guaranos}, + year = {1945} +} + +@book{suarez1968, + author = {Suarez, M. M.}, + address = {Caracas}, + key = {Suarez (1968)}, + lgcode = {Warao [wara1303]}, + title = {Los Warao}, + year = {1968} +} + +@article{wilbert1958b, + author = {Wilbert, J.}, + journal = {Kolner Zeitschrift fur Soziologie und Sozialpsychologie, n. s.}, + key = {Wilbert (1958b)}, + lgcode = {Warao [wara1303]}, + pages = {272-291}, + title = {Die soziale und politische Organisation der Warrau}, + volume = {10}, + year = {1958} +} + +@book{wilbert1964, + author = {Wilbert, J.}, + address = {Caracas}, + glottolog_ref = {mpieva:Wilbert1964Waraoora}, + key = {Wilbert (1964)}, + lgcode = {Warao [wara1303]}, + pages = {199}, + publisher = {Caracas: Ed. Sucre}, + series = {Monography / Instituto Caribe de Antropología y Sociología, Fundación La Salle de Ciencias Naturales}, + title = {Warao oral literature}, + volume = {9}, + year = {1964} +} + +@article{coll1903, + author = {Coll, C. van.}, + glottolog_ref = {fabreall2009ann:2116}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + key = {Coll (1903)}, + lgcode = {Lokono [araw1276]}, + pages = {451-640}, + title = {Gegevens over land en volk van Suriname}, + volume = {55}, + year = {1903} +} + +@article{geoje1910, + author = {Geoje, C. H. de.}, + journal = {Int. Arch. Ethnog.}, + key = {Geoje (1910)}, + lgcode = {Lokono [araw1276]}, + pages = {1-28}, + title = {Beitrage zur Volkerkunde von Surinam}, + volume = {19}, + year = {1910} +} + +@article{kirchhoff1931, + author = {Kirchhoff, Paul.}, + glottolog_ref = {fabreall2009ann:5236}, + journal = {Zeitschrift für Ethnologie}, + key = {Kirchhoff (1931)}, + lgcode = {Lokono [araw1276], Macushi [macu1259]}, + pages = {101-117}, + title = {Die VerwandtschAftsorganisation der Urwaldstamme Sudamerikas}, + volume = {63}, + year = {1931} +} + +@article{taylor1957, + author = {Taylor, D.}, + journal = {Int. Journ. Amer. Ling.}, + key = {Taylor (1957)}, + lgcode = {Lokono [araw1276]}, + pages = {284-290}, + title = {Marriage, Affinity, and Descent in Two Arawakan Tribes}, + volume = {23}, + year = {1957} +} + +@article{simpson1940b, + author = {Simpson, G. G.}, + address = {Caracas}, + glottolog_ref = {fabreall2009ann:Caribe_pemon61}, + key = {Simpson (1940b)}, + lgcode = {Camaracoto [cama1252]}, + pages = {201-660}, + series = {Rev. Fomento (Venezuela)}, + title = {Los indios Kamarakotos}, + volume = {III}, + year = {1940} +} + +@misc{wilbert1961a, + author = {Wilbert, J.}, + howpublished = {Personal communication}, + key = {Wilbert (1961a)}, + lgcode = {Camaracoto [cama1252]}, + year = {1961} +} + +@article{farabee1924, + author = {Farabee, W. C.}, + glottolog_ref = {mpieva:Farabee1924Thecentr}, + journal = {Univ. Penn. Mus. Anth. Pap.}, + key = {Farabee (1924)}, + lgcode = {Macushi [macu1259]}, + pages = {13-152}, + publisher = {University of Pennsylvania}, + series = {Anthropological Publications of the University Museum}, + title = {The Central Caribs}, + volume = {10}, + year = {1924} +} + +@article{riley1954, + author = {Riley, C. L.}, + glottolog_ref = {fabreall2009ann:Caribe_panare57}, + journal = {Pap. Kroeber Anth. Soc.}, + key = {Riley (1954)}, + lgcode = {Panare [enap1235]}, + pages = {10-24}, + title = {Notes on the Panare Indians of Venezuela}, + volume = {10}, + year = {1954} +} + +@article{wilbert1959a, + author = {Wilbert, J.}, + address = {Caracas}, + glottolog_ref = {fabreall2009ann:Caribe_panare71}, + journal = {Antropologica}, + key = {Wilbert (1959a)}, + lgcode = {Panare [enap1235]}, + pages = {47-62}, + title = {Aspectos sociales de la cultura Panare}, + volume = {7}, + year = {1959} +} + +@article{wilbert1963, + author = {Wilbert, J.}, + address = {Caracas: Fundación La Salle de Ciencias Naturales}, + glottolog_ref = {fabreall2009ann:Hoti19}, + key = {Wilbert (1963)}, + lgcode = {Curripaco [curr1243], Guahibo [guah1255], Panare [enap1235], Piapoco [piap1246], Piaroa [piar1243], Sanema [sanu1240], Ye'kuana [maqu1238]}, + title = {Indios de la región Orinoco-Ventuari}, + volume = {8}, + year = {1963} +} + +@book{coudreau1893, + author = {Coudreau, H. A.}, + address = {Paris}, + key = {Coudreau (1893)}, + lgcode = {Rucuyen [waya1269]}, + title = {Chez nos Indiens}, + year = {1893} +} + +@book{kochgrunberg1923a, + author = {Koch-Grunberg, T.}, + address = {Stuttgart}, + key = {Koch-Grunberg (1923a)}, + lgcode = {Taulípang [taul1252]}, + title = {Vom Roroima zum Orinoco 3}, + year = {1923} +} + +@article{soaresdiniz1965, + author = {Soares Diniz, E.}, + glottolog_ref = {fabreall2009ann:Caribe_makuxi19}, + journal = {Boletim do Museu Paraense Emílio Goeldi}, + key = {Soares Diniz (1965)}, + lgcode = {Taulípang [taul1252]}, + pages = {1-16}, + title = {Breves notas sobre o sistema de parentesco Makuxi}, + volume = {28}, + year = {1965} +} + +@article{ule1913, + author = {Ule, E.}, + journal = {Zeitschrift für Ethnologie}, + key = {Ule (1913)}, + lgcode = {Taulípang [taul1252]}, + pages = {278-298}, + title = {Unter den Indianern am Rio Branco}, + volume = {45}, + year = {1913} +} + +@article{barandiaran1962, + author = {Barandiaran, D. de.}, + journal = {Antropologica}, + key = {Barandiaran (1962)}, + lgcode = {Ye'kuana [maqu1238]}, + pages = {1-29}, + title = {Activadades vitales de subsistencia de los Indios Yekuana o Makitare}, + volume = {11}, + year = {1962} +} + +@book{kochgrunberg1923b, + author = {Koch-Grunberg, T.}, + address = {Stuttgart}, + key = {Koch-Grunberg (1923b)}, + lgcode = {Ye'kuana [maqu1238]}, + pages = {250-355}, + title = {Vom Roroima zum Orinoco}, + volume = {3}, + year = {1923} +} + +@article{wilbert1958c, + author = {Wilbert, J.}, + glottolog_ref = {fabreall2009ann:Caribe_yekuana59}, + journal = {Southw. Journ. Anth.}, + key = {Wilbert (1958c)}, + lgcode = {Ye'kuana [maqu1238]}, + pages = {51-60}, + title = {Kinship and social organization of the Ye'kuana and Goajiro}, + volume = {14}, + year = {1958} +} + +@article{geyskes1954, + author = {Geyskes, D. C.}, + journal = {West-Indische Gids}, + key = {Geyskes (1954)}, + lgcode = {Ndyuka [ndyu1242]}, + pages = {135-153}, + title = {De landbouw bij de Bosnegers van de Marowijne}, + volume = {35}, + year = {1954} +} + +@misc{kobben1967a, + author = {Kobben, A. J. G.}, + howpublished = {Personal communication}, + key = {Kobben (1967a)}, + lgcode = {Ndyuka [ndyu1242]}, + year = {1967} +} + +@article{kobben1967b, + author = {Kobben, A. J. G.}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + key = {Kobben (1967b)}, + lgcode = {Ndyuka [ndyu1242]}, + pages = {10-52}, + title = {Unity and Disunity: Cottica Djuka Society as a Kinship System}, + volume = {123}, + year = {1967} +} + +@book{thodenvanvelzen1966, + author = {Thoden van Velzen, H. U. E.}, + address = {Leiden}, + key = {Thoden van Velzen (1966)}, + lgcode = {Ndyuka [ndyu1242]}, + title = {Politieke beheersing in de Djuka-maatschappij. 2v}, + year = {1966} +} + +@article{vanderkuyp1962, + author = {Van der Kuyp, E.}, + journal = {Nieuwe West-Indische Gids}, + key = {Van der Kuyp (1962)}, + lgcode = {Ndyuka [ndyu1242]}, + pages = {205-271}, + title = {Literatuuroverzicht betreffende de voeding en de voedingsgewoonten van de Boslandcreool in Suriname}, + volume = {41}, + year = {1962} +} + +@misc{leedsnd, + author = {Leeds, A.}, + howpublished = {Unpublished field notes}, + key = {Leeds (nd)}, + lgcode = {Pumé [pume1238]} +} + +@book{gillin1936, + author = {Gillin, J. P.}, + address = {Cambridge}, + glottolog_ref = {fabreall2009ann:Caribe_kari'na057}, + key = {Gillin (1936)}, + lgcode = {Barama River Carib [mura1272]}, + number = {ii}, + pages = {1-274}, + series = {Papers of the Peabody Museum of Archeology and Ethnology, Harvard University}, + title = {The Barama river Caribs of British Guiana}, + volume = {14}, + year = {1936} +} + +@article{gillin1948, + author = {Gillin, J. P.}, + address = {Washington 1946-1950}, + glottolog_ref = {fabreall2009ann:Caribe_chikena0}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + key = {Gillin (1948)}, + lgcode = {Barama River Carib [mura1272]}, + pages = {799-860}, + title = {Tribes of the Guianas}, + volume = {3}, + year = {1948} +} + +@misc{gillinnd, + author = {Gillin, J. P.}, + howpublished = {Personal communication}, + key = {Gillin (nd)}, + lgcode = {Barama River Carib [mura1272]} +} + +@book{roth1924, + author = {Roth, W. E.}, + glottolog_ref = {fabreall2009ann:8497}, + key = {Roth (1924)}, + lgcode = {Barama River Carib [mura1272]}, + publisher = {Thirty-eighths Annual Report of the BAE, 1916-1917: 25-745. Washington}, + title = {An introductory study of the arts, crafts, and customs of the Guiana Indians}, + year = {1924} +} + +@article{wilbert1957b, + author = {Wilbert, J.}, + address = {Albuquerque}, + glottolog_ref = {fabreall2009ann:Guahib039}, + journal = {Southw. Journ. Anth.}, + key = {Wilbert (1957b)}, + lgcode = {Guahibo [guah1255]}, + pages = {88-98}, + title = {Notes on Guahibo Kinship and Social Organization}, + volume = {13}, + year = {1957} +} + +@article{farabee1918, + author = {Farabee, W. C.}, + glottolog_ref = {hh:hew:Farabee:CArawaks}, + journal = {Univ. Penn. Mus. Anth. Publ.}, + key = {Farabee (1918)}, + lgcode = {Wapishana [wapi1253]}, + pages = {13-121}, + publisher = {Philadephia: University Museum}, + series = {University Museum Anthropological Publication}, + title = {The Central Arawaks}, + volume = {9}, + year = {1918} +} + +@book{herskovitsandherskovits1934, + author = {Herskovits, M. J. and Herskovits, F. S.}, + address = {New York}, + key = {Herskovits and Herskovits (1934)}, + lgcode = {Saramaccan [sara1340]}, + title = {Rebel Destiny. Among the Bush Negroes of Dutch Guiana}, + year = {1934} +} + +@article{hurault1959, + author = {Hurault, J.}, + journal = {Population}, + key = {Hurault (1959)}, + lgcode = {Saramaccan [sara1340]}, + pages = {509-534}, + title = {Etude demographique comparee des Indiens Oayana et des noirs refugies Boni de Haut-Mnaroni}, + volume = {14}, + year = {1959} +} + +@article{neumann1967, + author = {Neumann, P.}, + journal = {Abhandlungen und Berichte des Staatlichen Museums fur Völkerkunde zu Dresden}, + key = {Neumann (1967)}, + lgcode = {Saramaccan [sara1340]}, + pages = {1-181}, + title = {Wirtschaft und materielle Kultur der Buschneger Surinames. Ein Beitrag zur Erforschung afroamerikanischer Probleme}, + volume = {26}, + year = {1967} +} + +@book{price1975, + author = {Price, R.}, + key = {Price (1975)}, + lgcode = {Saramaccan [sara1340]}, + pages = {1-181}, + publisher = {University of Puerto Rico}, + series = {Caribbean Monograph Series}, + title = {Saramaka Social Structure. Analysis of a Maroon society in Surinam}, + volume = {12}, + year = {1975} +} + +@book{wilbert1959b, + author = {Wilbert, J.}, + glottolog_ref = {fabreall2009ann:Caribe_yabarana14}, + key = {Wilbert (1959b)}, + lgcode = {Yabarana [yaba1248]}, + publisher = {Caracas: Antropológica, suplemento 1}, + title = {Zur Kenntnis der Yabarana}, + year = {1959} +} + +@article{wilbert1958a, + author = {Wilbert, J.}, + address = {Caracas}, + glottolog_ref = {fabreall2009ann:Saliba_piaroa108}, + journal = {Mem. Soc. Cienc. Nat. LaSalle}, + key = {Wilbert (1958a)}, + lgcode = {Piaroa [piar1243]}, + pages = {155-183}, + title = {Datos antropologicos de los Indios Piaroa}, + volume = {18}, + year = {1958} +} + +@incollection{wilbert1960a, + author = {Wilbert, J.}, + editor = {Fröhlich, W.}, + address = {Köln}, + glottolog_ref = {hh:w:Wilbert:Curipaco}, + key = {Wilbert (1960a)}, + lgcode = {Curripaco [curr1243]}, + pages = {508-521}, + publisher = {E. J. Brill}, + series = {Ethnologica, N.F.}, + title = {Nachrichten über die Curipaco}, + volume = {2}, + year = {1960} +} + +@article{frikel1959, + author = {Frikel, P.}, + journal = {Boletim do Museu Paraense Emílio Goeldi}, + key = {Frikel (1959)}, + lgcode = {Munduruku [mund1330]}, + pages = {1-35}, + title = {Agricultura dos Indios Munduruku}, + volume = {4}, + year = {1959} +} + +@article{kruse1937, + author = {Kruse, A.}, + journal = {Primitive Man}, + key = {Kruse (1937)}, + lgcode = {Munduruku [mund1330]}, + pages = {51-57}, + title = {Mundurucu Moieties}, + volume = {7}, + year = {1937} +} + +@book{martius186367, + author = {Martius, C. F. P. von}, + address = {Leipzig}, + key = {Martius (1863-67)}, + lgcode = {Munduruku [mund1330]}, + title = {Beiträge zur Ethnographie und Sprachenkunde Amerika's, zumal Brasiliens, 2v}, + year = {1863-67} +} + +@article{murphy1956, + author = {Murphy, R. F.}, + address = {Washington}, + glottolog_ref = {fabreall2009ann:Tupi_munduruku51}, + journal = {American Anthropologist}, + key = {Murphy (1956)}, + lgcode = {Munduruku [mund1330]}, + pages = {414-434}, + title = {Matrilocality and Patrilineality in Mundurucu Society}, + volume = {58}, + year = {1956} +} + +@article{murphy1957, + author = {Murphy, R. F.}, + glottolog_ref = {fabreall2009ann:6928}, + journal = {American Anthropologist}, + key = {Murphy (1957)}, + lgcode = {Munduruku [mund1330]}, + pages = {1018-1035}, + title = {Intergroup Hostility and Social Cohesion}, + volume = {59}, + year = {1957} +} + +@article{murphy1958, + author = {Murphy, R. F.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Murphy (1958)}, + lgcode = {Munduruku [mund1330]}, + pages = {1-250}, + title = {Mundurucu Religion}, + volume = {49}, + year = {1958} +} + +@book{murphy1960, + author = {Murphy, R. F.}, + address = {Berkeley}, + key = {Murphy (1960)}, + lgcode = {Munduruku [mund1330]}, + title = {Headhunter's Heritage}, + year = {1960} +} + +@article{tocantins1877, + author = {Tocantins, Antonio Manuel}, + address = {Rio de Janeiro}, + journal = {Quarterly Review of the Historical, Geographical, and Ethnographic Institute of Brazil}, + key = {Tocantins (1877)}, + lgcode = {Munduruku [mund1330]}, + publisher = {R. L. Garnier}, + title = {Studies on the Mundurucu Tribe}, + year = {1877} +} + +@article{wagley1943, + author = {Wagley, C.}, + journal = {Bol. Mus. Nac., n. s., Anthropologia}, + key = {Wagley (1943)}, + lgcode = {Tapirapé [tapi1254]}, + pages = {41-94}, + title = {Tapirape Shamanism}, + volume = {3}, + year = {1943} +} + +@incollection{wagleyandgalvao1948a, + author = {Wagley, C. and Galvao, E.}, + editor = {Steward, Julian H.}, + address = {Washington}, + glottolog_ref = {hh:e:WagleyGalvao:Tapirape}, + key = {Wagley and Galvao (1948a)}, + lgcode = {Tapirapé [tapi1254]}, + pages = {167-178}, + publisher = {Smithsonian Institution: Bureau of American Ethnology}, + series = {Handbook of South American Indians}, + title = {The Tapirapé}, + volume = {3}, + year = {1948} +} + +@book{nimuendaju1926, + author = {Nimuendaju, C.}, + key = {Nimuendaju (1926)}, + lgcode = {Palikur [pali1279]}, + number = {ii}, + pages = {1-144}, + series = {Gotebor Kungl. Vetens. Vitter. Samh. Handlingar, ser. 4}, + title = {Die Palikur-Indianer und ihre Nachbarn}, + volume = {31}, + year = {1926} +} + +@article{barker1953, + author = {Barker, J.}, + address = {Caracas}, + glottolog_ref = {fabreall2009ann:Yanomami_yanomami003}, + journal = {Bol. Indig. Venez.}, + key = {Barker (1953)}, + lgcode = {Guaica [yano1262]}, + pages = {433-490}, + title = {Memoria sobre la cultura de los Guaika}, + volume = {1}, + year = {1953} +} + +@article{zerries1954, + author = {Zerries, O.}, + journal = {Bol. Indig. Venez.}, + key = {Zerries (1954)}, + lgcode = {Guaica [yano1262]}, + pages = {61-74}, + title = {Los Indios Guaika y su situacion cultural}, + volume = {2}, + year = {1954} +} + +@article{lecock1964, + author = {Lecock, S.}, + journal = {Boletim do Museu Paraense Emílio Goeldi}, + key = {Lecock (1964)}, + lgcode = {Sateré Mawé [sate1243]}, + pages = {1-30}, + title = {Economic Life of the Maue Indians}, + volume = {19}, + year = {1964} +} + +@article{nimuendaju1948, + author = {Nimuendaju, C.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Nimuendaju (1948)}, + lgcode = {Sateré Mawé [sate1243]}, + pages = {iii, 245-254}, + title = {The Maue and Arakium}, + volume = {143}, + year = {1948} +} + +@article{migliazza1964, + author = {Migliazza, E.}, + glottolog_ref = {fabreall2009ann:Yanomami_yanam06}, + journal = {Boletim do Museu Paraense Emílio Goeldi}, + key = {Migliazza (1964)}, + lgcode = {Shiriana [nina1238]}, + pages = {1-22}, + title = {Notas sobre a organizacao social dos Xiriana do Rio Uraricaa}, + volume = {22}, + year = {1964} +} + +@book{fock1963, + author = {Fock, N.}, + address = {Copenhagen}, + glottolog_ref = {hh:e:Fock:Waiwai}, + key = {Fock (1963)}, + lgcode = {Wai-wai [waiw1244]}, + pages = {316}, + publisher = {Copenhagen: The National Museum}, + series = {Nationalmuseets Skrifter: Etnografisk Række}, + title = {Waiwai: Religion and Society of an Amazonian Tribe}, + volume = {VIII}, + year = {1963} +} + +@misc{chagnon1967, + author = {Chagnon, N. A.}, + howpublished = {Manuscript}, + key = {Chagnon (1967)}, + lgcode = {Yanomami [yano1261]}, + title = {Yanomamo Social Organization and Warfare}, + year = {1967} +} + +@misc{chagnon1968a, + author = {Chagnon, N. A.}, + howpublished = {Manuscript}, + key = {Chagnon (1968a)}, + lgcode = {Yanomami [yano1261]}, + title = {Personal Fierceness and Headmen in Yanomamo Disputes}, + year = {1968} +} + +@book{chagnon1968b, + author = {Chagnon, N. A.}, + address = {New York}, + glottolog_ref = {hh:e:Chagnon:Yanomamo:1968}, + key = {Chagnon (1968b)}, + lgcode = {Yanomami [yano1261]}, + pages = {164}, + publisher = {New York: Holt, Rinehart and Winston}, + series = {Case studies in cultural anthropology}, + title = {Yanomamo: The Fierce People}, + year = {1968} +} + +@book{holmberg1950, + author = {Holmberg, A. R.}, + address = {Washington, D.C.}, + key = {Holmberg (1950)}, + lgcode = {Sirionó [siri1273]}, + number = {10}, + pages = {1-104}, + publisher = {U.S. Government Printing Office}, + series = {Smithsonian Institution Institute of Social Anthropology Publication}, + title = {Nomads of the Long Bow: The Siriono of Eastern Bolivia}, + year = {1950} +} + +@book{espinosa1935, + author = {Espinosa, L.}, + address = {Madrid}, + key = {Espinosa (1935)}, + lgcode = {Cocama [coca1259]}, + title = {Los Tupi del oriente peruano}, + year = {1935} +} + +@article{metraux1948b, + author = {Metraux, A.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Metraux (1948b)}, + lgcode = {Cocama [coca1259]}, + pages = {iii, 687-703}, + title = {Tupian Tribes of the Upper Amazon River}, + volume = {143}, + year = {1948} +} + +@book{tessmann1930, + author = {Tessmann, G.}, + address = {Hamburg}, + glottolog_ref = {fabreall2009ann:Cholon10}, + key = {Tessmann (1930)}, + lgcode = {Amahuaca [amah1246], Cocama [coca1259], Witoto [muru1274]}, + publisher = {Hamburg}, + title = {Die Indianer Nordost-Perus}, + year = {1930} +} + +@misc{prost1965, + author = {Prost, M. D.}, + howpublished = {Manuscript}, + key = {Prost (1965)}, + lgcode = {Chácobo [chac1251]}, + title = {Material Culture and Life Cycle of the Chacobo}, + year = {1965} +} + +@article{fulop1955, + author = {Fulop, M.}, + address = {Bogotá}, + glottolog_ref = {fabreall2009ann:Tukano_tucano08}, + journal = {Rev. Colomb. Antr.}, + key = {Fulop (1955)}, + lgcode = {Tucano [tuca1252]}, + pages = {121-164}, + title = {Notas sobre los terminos y el sistema de parentesco de los Tukano}, + volume = {4}, + year = {1955} +} + +@incollection{leeds1961, + author = {Leeds, A.}, + editor = {Wilbert, J.}, + address = {Caracas}, + booktitle = {The Evolution of Horticultural Systems in Native South America}, + key = {Leeds (1961)}, + lgcode = {Ticuna [ticu1245]}, + pages = {13-46}, + title = {Yaruro Incipient Tropical Forest Agriculture}, + year = {1961} +} + +@article{nimenuendaju1952, + author = {Nimenuendaju, C.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Nimenuendaju (1952)}, + lgcode = {Ticuna [ticu1245]}, + pages = {1-209}, + title = {The Tukuna}, + volume = {45}, + year = {1952} +} + +@phdthesis{harner1960, + author = {Harner, M. J.}, + key = {Harner (1960)}, + lgcode = {Shuar [shua1257]}, + school = {University of California at Berkeley}, + title = {Machetes, Shotguns, and Society: An Inquiry into the Social Impact of Technological Change among the Jivaro Indians}, + year = {1960} +} + +@article{harner1962, + author = {Harner, M. J.}, + journal = {American Anthropologist}, + key = {Harner (1962)}, + lgcode = {Shuar [shua1257]}, + pages = {258-272}, + title = {Jivaro Souls}, + volume = {64}, + year = {1962} +} + +@book{karsten1935, + author = {Karsten, Rafael}, + address = {Helsingfors}, + glottolog_ref = {fabreall2009ann:Jivaro17}, + key = {Karsten (1935)}, + lgcode = {Shuar [shua1257]}, + pages = {1-588}, + publisher = {Helsingfors: Societas Scientiarum Fennica}, + series = {Societas Scientiarum Fennica, Commentationes Humanarum Litterarum}, + title = {The Headhunters of Western Amazonas. The Life and Culture of the Jibaro Indians of Eastern Ecuador and Peru}, + url = {http://onlinelibrary.wiley.com/doi/10.1525/aa.1937.39.1.02a00240/pdf}, + volume = {7}, + year = {1935} +} + +@article{rivet190708, + author = {Rivet, P.}, + journal = {L'Anthropologie}, + key = {Rivet (1907-08)}, + lgcode = {Shuar [shua1257]}, + pages = {333-368, 583-618; 68-87, 235-259}, + title = {Les Indiens Jibaros}, + volume = {18; 19}, + year = {1907-08} +} + +@article{stirling1938, + author = {Stirling, M. W.}, + address = {Washington: Smithsonian Institution}, + glottolog_ref = {fabreall2009ann:Jivaro27}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Stirling (1938)}, + lgcode = {Shuar [shua1257]}, + pages = {1-148}, + title = {Historical and Ethnographical Material on the Jivaro Indians}, + volume = {117}, + year = {1938} +} + +@book{updegraff1923, + author = {Up de Graff, F. W.}, + address = {New York}, + key = {Up de Graff (1923)}, + lgcode = {Shuar [shua1257]}, + title = {Head Hunters of the Amazon}, + year = {1923} +} + +@article{fejos1943, + author = {Fejos, P.}, + glottolog_ref = {fabreall2009ann:Peba-Yagua_yawa33}, + journal = {Viking Fund Publ. Anth.}, + key = {Fejos (1943)}, + lgcode = {Yagua [yagu1244]}, + pages = {1-144}, + publisher = {New York: The Viking Fundation}, + series = {Viking Fund publications in anthropology}, + title = {Ethnography of the Yagua}, + volume = {1}, + year = {1943} +} + +@article{goldman1948, + author = {Goldman, I.}, + address = {Washington 1946-1950}, + glottolog_ref = {fabreall2009ann:Arawak_baniva03}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + key = {Goldman (1948)}, + lgcode = {Cubeo [cube1242]}, + pages = {763-798}, + title = {Tribes of the Uaupés-Caquetá region}, + volume = {3}, + year = {1948} +} + +@article{goldman1963, + author = {Goldman, I.}, + journal = {Illinois Studies in Anthropology}, + key = {Goldman (1963)}, + lgcode = {Cubeo [cube1242]}, + note = {field research 1939-40}, + pages = {1-305}, + title = {The Cubeo Indians}, + volume = {2}, + year = {1963} +} + +@article{murdock1936b, + author = {Murdock, G. P.}, + journal = {American Anthropologist}, + key = {Murdock (1936b)}, + lgcode = {Witoto [muru1274]}, + pages = {525-527}, + title = {The Witoto Kinship System}, + volume = {38}, + year = {1936} +} + +@book{whitten1915, + author = {Whitten, T.}, + address = {London}, + key = {Whitten (1915)}, + lgcode = {Witoto [muru1274]}, + title = {The North-West Amazons}, + year = {1915} +} + +@phdthesis{heath1959, + author = {Heath, D. B.}, + key = {Heath (1959)}, + lgcode = {Camba [chiq1248]}, + school = {Yale University}, + title = {Camba: A Study of Land and Society in Eastern Bolivia}, + year = {1959} +} + +@article{carneiro1962, + author = {Carneiro, R. L.}, + journal = {Explorers Journal}, + key = {Carneiro (1962)}, + lgcode = {Amahuaca [amah1246]}, + pages = {iv, 28-37}, + title = {The Amahuaca Indians}, + volume = {40}, + year = {1962} +} + +@article{carneiro1964a, + author = {Carneiro, R. L.}, + address = {Hannover}, + journal = {Niedersächsisches Landesmuseum, Völkerkundliche Abhandlungen}, + key = {Carneiro (1964a)}, + lgcode = {Amahuaca [amah1246]}, + pages = {9-18}, + title = {Shifting Cultivation Among the Amahuaca}, + volume = {1}, + year = {1964} +} + +@article{carneiro1964b, + author = {Carneiro, R. L.}, + glottolog_ref = {fabreall2009ann:Pano-Takana_amahuaca02}, + journal = {Ethnology}, + key = {Carneiro (1964b)}, + lgcode = {Amahuaca [amah1246]}, + pages = {6-11}, + title = {The Amahuaca and the Spirit World}, + volume = {3}, + year = {1964} +} + +@misc{carneiro1968, + author = {Carneiro, R. L.}, + howpublished = {Manuscript}, + key = {Carneiro (1968)}, + lgcode = {Amahuaca [amah1246]}, + title = {Hunting and Hunting Magic Among the Amahuaca}, + year = {1968} +} + +@misc{dole1961, + author = {Dole, G. E.}, + howpublished = {Paper presented at American Anthropological Association meeting, Philadelphia}, + key = {Dole (1961)}, + lgcode = {Amahuaca [amah1246]}, + title = {The Influence of Population Density on the Development of Social Organization Among the Amahuaca of East Peru}, + year = {1961} +} + +@article{dole1962, + author = {Dole, G. E.}, + journal = {Transactions of the New York Academy of Sciences, ser. 2}, + key = {Dole (1962)}, + lgcode = {Amahuaca [amah1246]}, + pages = {567-573}, + title = {Endocannibalism Among the Amahuaca Indians}, + volume = {24}, + year = {1962} +} + +@book{huxley1964, + author = {Huxley, M. and Capa., C.}, + address = {New York}, + key = {Huxley (1964)}, + lgcode = {Amahuaca [amah1246]}, + title = {Farewell to Eden}, + year = {1964} +} + +@article{stcricq1853, + author = {Cricq, St.}, + address = {Paris}, + journal = {Bull. Soc. Geog., ser. 4}, + key = {St. Cricq (1853)}, + lgcode = {Shipibo-Conibo [ship1254]}, + pages = {273-295}, + title = {Indiens Conibos}, + volume = {6}, + year = {1853} +} + +@article{stewardandmetraux1948a, + author = {Steward, J. H. and Metraux, A.}, + journal = {Bull. Bur. Amer. Ethn. 143}, + key = {Steward and Metraux (1948a)}, + lgcode = {Shipibo-Conibo [ship1254]}, + pages = {555-595}, + title = {The Panoan Tribes of Eastern Peru}, + volume = {iii}, + year = {1948} +} + +@book{baudin1961, + author = {Baudin, L.}, + address = {New York}, + key = {Baudin (1961)}, + lgcode = {Inca [cusc1236]}, + title = {A Socialist Empire: The Incas of Peru}, + year = {1961} +} + +@book{baudin1962, + author = {Baudin, L.}, + address = {New York}, + key = {Baudin (1962)}, + lgcode = {Inca [cusc1236]}, + title = {Daily Life in Peru}, + year = {1962} +} + +@book{brundage1963, + author = {Brundage, B. C.}, + address = {Norman}, + key = {Brundage (1963)}, + lgcode = {Inca [cusc1236]}, + title = {Empire of the Inca}, + year = {1963} +} + +@book{ciezadeleon1554, + author = {Cieza de Leon, P. de.}, + address = {Antwerp}, + key = {Cieza de Leon (1554)}, + lgcode = {Inca [cusc1236]}, + title = {Parte primera de la cronica del Peru}, + year = {1554} +} + +@book{cobo189095, + author = {Cobo, B.}, + address = {Seville}, + key = {Cobo (1890-95)}, + lgcode = {Inca [cusc1236]}, + title = {Historia del Nuevo Mundo. 4v}, + year = {1890-95} +} + +@book{mason1957, + author = {Mason, J. A.}, + address = {London}, + key = {Mason (1957)}, + lgcode = {Inca [cusc1236]}, + title = {The Ancient Civilizations of Peru}, + year = {1957} +} + +@book{means1931, + author = {Means, P. A.}, + address = {New York}, + key = {Means (1931)}, + lgcode = {Inca [cusc1236]}, + title = {Ancient Civilizations of the Andes}, + year = {1931} +} + +@book{metraux1969, + author = {Metraux, A.}, + address = {New York}, + key = {Metraux (1969)}, + lgcode = {Inca [cusc1236]}, + title = {History of the Incas}, + year = {1969} +} + +@article{molima1915, + author = {Molima, C. de}, + editor = {Ojeda, T. Thayer}, + journal = {Revista Chilena de Historia y Geografia}, + key = {Molima (1915)}, + lgcode = {Inca [cusc1236]}, + pages = {117-190}, + title = {Relacion de las fabulas y ritos de los Inca}, + volume = {5}, + year = {1915} +} + +@incollection{rowe1946, + author = {Rowe, J. H.}, + editor = {Steward, Julian H.}, + glottolog_ref = {hh:e:Rowe:Inca}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + key = {Rowe (1946)}, + lgcode = {Inca [cusc1236]}, + pages = {183-330}, + publisher = {Smithsonian Institution, Washington: Bureau of American Ethnology}, + series = {Handbook of South American Indians}, + title = {Inca Culture at the time of the Spanish Conquest}, + volume = {2}, + year = {1946} +} + +@article{bouronclecarreon1964, + author = {Bouroncle Carreon, A.}, + journal = {America Indigena}, + key = {Bouroncle Carreon (1964)}, + lgcode = {Aymara [cent2142]}, + pages = {129-169, 233-269}, + title = {Contribucion al estudio de los Aymaras}, + volume = {24}, + year = {1964} +} + +@article{labarre1948, + author = {LaBarre, W.}, + journal = {Memoirs of the American Anthropological Association,}, + key = {LaBarre (1948)}, + lgcode = {Aymara [cent2142]}, + pages = {1-250}, + title = {The Aymara Indians of the Lake Titicaca Plateau, Bolivia}, + volume = {68}, + year = {1948} +} + +@article{tschopik1946, + author = {Tschopik and H. and Jr.}, + editor = {Steward, Julian H.}, + address = {Washington}, + glottolog_ref = {hh:e:Tschopik:Aymara}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + key = {Tschopik (1946)}, + lgcode = {Aymara [cent2142]}, + pages = {501-574}, + publisher = {Smithsonian Institution, Bureau of American Ethnology}, + series = {Handbook of South American Indians}, + title = {The Aymara}, + volume = {2}, + year = {1946} +} + +@article{tschopik1951, + author = {Tschopik and H. and Jr.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Tschopik (1951)}, + lgcode = {Aymara [cent2142]}, + pages = {137-308}, + title = {The Aymara of Chucuito, Peru}, + volume = {44}, + year = {1951} +} + +@article{altschuler1965a, + author = {Altschuler, M.}, + glottolog_ref = {fabreall2009ann:Barbacoa_cha05}, + journal = {Ethnology}, + key = {Altschuler (1965a)}, + lgcode = {Chachi [chac1249]}, + pages = {440-447}, + title = {Notes on Cayapa kinship}, + volume = {4}, + year = {1965} +} + +@phdthesis{altschuler1965b, + author = {Altschuler, M.}, + key = {Altschuler (1965b)}, + lgcode = {Chachi [chac1249]}, + school = {University of Minnesota}, + title = {The Cayapa}, + year = {1965} +} + +@incollection{altschuler1971, + author = {Altschuler, M.}, + editor = {Marshall, D. S. and Suggs, R. C.}, + address = {Princeton}, + booktitle = {Human Sexual Behavior}, + key = {Altschuler (1971)}, + lgcode = {Chachi [chac1249]}, + pages = {38-58}, + title = {Cayapa Personality and Sexual Motivation}, + year = {1971} +} + +@article{barrett1925, + author = {Barrett, S. A.}, + glottolog_ref = {fabreall2009ann:Barbacoa_cha07}, + journal = {Indian Notes and Monographs}, + key = {Barrett (1925)}, + lgcode = {Chachi [chac1249]}, + pages = {1-476}, + publisher = {New York: Haye Foundation}, + title = {The Cayapa Indians of Ecuador}, + volume = {40}, + year = {1925} +} + +@article{heimann1932, + author = {Heimann, M.}, + journal = {Zeitschrift für Ethnologie}, + key = {Heimann (1932)}, + lgcode = {Chachi [chac1249]}, + pages = {281-287}, + title = {Die Cayapa Indianer}, + volume = {63}, + year = {1932} +} + +@article{murra1948, + author = {Murra, J.}, + address = {Washington 1946-1950}, + glottolog_ref = {fabreall2009ann:Barbacoa_tsafiqui21}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Murra (1948)}, + lgcode = {Chachi [chac1249]}, + number = {4}, + pages = {277-291}, + title = {The Cayapa and Colorado}, + volume = {143}, + year = {1948} +} + +@article{rochereau1919, + author = {Rochereau, H. J.}, + glottolog_ref = {fabreall2009ann:Chibcha_uwa74}, + journal = {Journ. Soc. Amer. Paris, n. s.,}, + key = {Rochereau (1919)}, + lgcode = {U'wa [cent2150]}, + pages = {513-524}, + title = {Les Indiens Tunebos et Pedrazas}, + volume = {11}, + year = {1919} +} + +@article{rochereau1961, + author = {Rochereau, H. J.}, + journal = {Rev. Colomb. Antr.}, + key = {Rochereau (1961)}, + lgcode = {U'wa [cent2150]}, + pages = {371-20}, + title = {Los Tunebos}, + volume = {10}, + year = {1961} +} + +@article{wilbert1960b, + author = {Wilbert, J.}, + address = {Caracas}, + glottolog_ref = {fabreall2009ann:Chibcha_uwa94}, + journal = {Antropologica}, + key = {Wilbert (1960b)}, + lgcode = {U'wa [cent2150]}, + pages = {39-53}, + title = {Zur Socialstruktur der Tunebo}, + volume = {10}, + year = {1960} +} + +@article{bernalvilla1954, + author = {Bernal Villa, A.}, + address = {Bogotá}, + glottolog_ref = {fabreall2009ann:Nasa3}, + journal = {Rev. olomb. Antr.}, + key = {Bernal Villa (1954)}, + lgcode = {Páez [paez1247]}, + pages = {291-367}, + title = {Economía de los Páez}, + volume = {3}, + year = {1954} +} + +@article{pittierdefabrega1907, + author = {Pittier de Fabrega, H. F.}, + journal = {Mem. Amer. Anth. Assoc.}, + key = {Pittier de Fabrega (1907)}, + lgcode = {Páez [paez1247]}, + pages = {301-356}, + title = {Ethnographie and Linguistic Notes on the Paez Indians}, + volume = {5}, + year = {1907} +} + +@book{ghisletti1954, + author = {Ghisletti, L. V.}, + address = {Bogota}, + key = {Ghisletti (1954)}, + lgcode = {Muisca [chib1270]}, + title = {Los Mwiskas}, + year = {1954} +} + +@article{kroeber1946, + author = {Kroeber, A. L.}, + address = {Washington 1946-1950}, + glottolog_ref = {fabreall2009ann:Chibcha57}, + journal = {Bull. Bur. Amer. Ethn. 143}, + key = {Kroeber (1946)}, + lgcode = {Muisca [chib1270]}, + pages = {887-909}, + title = {The Chibcha}, + volume = {2}, + year = {1946} +} + +@book{restrepo1895, + author = {Restrepo, V.}, + address = {Bogota}, + key = {Restrepo (1895)}, + lgcode = {Muisca [chib1270]}, + title = {Los Chibehas antes de la conquista espanola}, + year = {1895} +} + +@article{caldwellandcalhoun1932, + author = {Caldwell, M. G. and Calhoun., J.}, + journal = {Sci. Monthly}, + key = {Caldwell and Calhoun (1932)}, + lgcode = {Asháninka [ajyi1238]}, + pages = {238-242}, + title = {The Culture of the Campas Indians}, + volume = {1932}, + year = {1932} +} + +@article{craig1967, + author = {Craig, A. K.}, + journal = {America Indigena}, + key = {Craig (1967)}, + lgcode = {Asháninka [ajyi1238]}, + pages = {223-235}, + title = {Brief Ethnology of the Campa Indians}, + volume = {27}, + year = {1967} +} + +@article{nordenskiold1924, + author = {Nordenskiold, E.}, + journal = {Meddel. Geog. Foren. Goteborg}, + key = {Nordenskiold (1924)}, + lgcode = {Asháninka [ajyi1238]}, + pages = {3-26}, + title = {Explorations chez les Indiens Campas dans le Perou}, + volume = {3}, + year = {1924} +} + +@article{stewardandmetraux1948b, + author = {Steward, J. H. and Metraux., A.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Steward and Metraux (1948b)}, + lgcode = {Asháninka [ajyi1238]}, + pages = {iii, 535-551}, + title = {Tribes of the Peruvian and Ecuadorian Montana}, + volume = {143}, + year = {1948} +} + +@article{matteson1954, + author = {Matteson, E.}, + glottolog_ref = {fabreall2009ann:Arawak_piro29}, + journal = {Pap. Kroeber Anth. Soc.}, + key = {Matteson (1954)}, + lgcode = {Piro [yine1238]}, + pages = {25-99}, + title = {The Piro of the Urubamba}, + volume = {10}, + year = {1954} +} + +@article{labarre1941, + author = {LaBarre, W.}, + address = {Washington}, + glottolog_ref = {fabreall2009ann:Uru-Chipaya87}, + journal = {American Anthropologist}, + key = {LaBarre (1941)}, + lgcode = {Uru [uruu1244]}, + pages = {493-522}, + title = {The Uru of the Rio Desaguadero}, + volume = {43}, + year = {1941} +} + +@article{cooper1917, + author = {Cooper, J. M.}, + address = {Washington}, + glottolog_ref = {fabreall2009ann:2223}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Cooper (1917)}, + lgcode = {Alacaluf [qawa1238], Yahgan [yama1264]}, + pages = {1-233}, + title = {Analytical and Critical Bibliography of the Tribes of Tierra del Fuego and Adjacent Territory}, + volume = {63}, + year = {1917} +} + +@incollection{cooper1946a, + author = {Cooper, J. M.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Cooper (1946a)}, + lgcode = {Yahgan [yama1264]}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {81-106}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians}, + title = {The Yahgan}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + volume = {1}, + year = {1946} +} + +@book{gusinde1937b, + author = {Gusinde, M.}, + key = {Gusinde (1937b)}, + lgcode = {Yahgan [yama1264]}, + publisher = {Mödling bei Wien}, + title = {Die Feuerland Indianer, 2: Yamana}, + year = {1937} +} + +@article{faron1961b, + author = {Faron, L. C.}, + glottolog_ref = {fabreall2009ann:Mapuche415}, + journal = {Illinois Studies in Anthropology}, + key = {Faron (1961b)}, + lgcode = {Mapuche [mapu1245]}, + pages = {1-247}, + publisher = {Urbana: University of Illinois Press}, + title = {Mapuche Social Structure}, + volume = {1}, + year = {1961} +} + +@book{faron1964, + author = {Faron, L. C.}, + address = {Pittsburgh}, + glottolog_ref = {fabreall2009ann:Mapuche421}, + key = {Faron (1964)}, + lgcode = {Mapuche [mapu1245]}, + publisher = {Pittsburgh}, + title = {Hawks of the Sun}, + year = {1964} +} + +@book{faron1968, + author = {Faron, L. C.}, + address = {New York}, + glottolog_ref = {fabreall2009ann:Mapuche422}, + key = {Faron (1968)}, + lgcode = {Mapuche [mapu1245]}, + publisher = {New York: Holt, Rinehart and Winston}, + title = {The Mapuche Indians of Chile}, + year = {1968} +} + +@article{hilger1957, + author = {Hilger, M. I.}, + address = {Washington: Smithsonian Institution}, + glottolog_ref = {fabreall2009ann:Mapuche645}, + journal = {Smithsonian Miscellaneous Collection}, + key = {Hilger (1957)}, + lgcode = {Mapuche [mapu1245]}, + pages = {1-495}, + title = {Araucanian Child Life and Its Cultural Background}, + volume = {133}, + year = {1957} +} + +@misc{nutini1972, + author = {Nutini, H. G.}, + howpublished = {Personal communication}, + key = {Nutini (1972)}, + lgcode = {Mapuche [mapu1245]}, + year = {1972} +} + +@article{titiev1951, + author = {Titiev, Mischa}, + glottolog_ref = {fabreall2009ann:Mapuche1122}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + key = {Titiev (1951)}, + lgcode = {Mapuche [mapu1245]}, + pages = {1-164}, + publisher = {Ann Arbor: University of Michigan Press}, + title = {Araucanian Culture in Transition}, + volume = {15}, + year = {1951} +} + +@article{baerandschmitz1964, + author = {Baer, G. and Schmitz, C. A.}, + doi = {10.3406/jsa.1965.1271}, + journal = {Journal de la Société des Américanistes}, + key = {Baer and Schmitz (1964)}, + lgcode = {Ona [onaa1245]}, + number = {1}, + pages = {23-29}, + title = {On the Social Organization of the Ona (Selk'nam)}, + url = {http://www.persee.fr/doc/jsa_0037-9174_1965_num_54_1_1271}, + volume = {54}, + year = {1965} +} + +@book{bridges1949, + author = {Bridges, E. Lucas.}, + address = {New York}, + key = {Bridges (1949)}, + lgcode = {Ona [onaa1245]}, + publisher = {E. P. Dutton}, + title = {Uttermost part of the earth}, + year = {1949} +} + +@book{gallardo1910, + author = {Gallardo, C. R.}, + address = {Buenos Aires}, + glottolog_ref = {fabreall2009ann:Chon_selknam41}, + key = {Gallardo (1910)}, + lgcode = {Ona [onaa1245]}, + publisher = {Cabaut y Cía}, + series = {Tierra del Fuego}, + title = {Los Onas}, + year = {1910} +} + +@book{gusinde1931a, + author = {Gusinde, M.}, + glottolog_ref = {fabreall2009ann:Chon_selknam42}, + key = {Gusinde (1931a)}, + lgcode = {Ona [onaa1245]}, + publisher = {Mödling bei Wien}, + title = {Die Feuerland Indianer, I. Die Selk'nam}, + year = {1931} +} + +@book{lothrop1928, + author = {Lothrop, Samuel K.}, + key = {Lothrop (1928)}, + lgcode = {Alacaluf [qawa1238], Ona [onaa1245], Tehuelche [tehu1242], Yahgan [yama1264]}, + pages = {48-105}, + series = {Contributions from the Museum of the American Indian, Heye Foundation}, + title = {The Indians of Tierra del Fuego}, + volume = {10}, + year = {1928} +} + +@article{lowie1948, + author = {Lowie, R. H.}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + key = {Lowie (1948)}, + lgcode = {Ona [onaa1245]}, + pages = {313-367}, + title = {Social and Political Organization of the Tropical Forest and Marginal Tribes}, + volume = {V}, + year = {1948} +} + +@article{steward1949, + author = {Steward, J. H.}, + glottolog_ref = {fabreall2009ann:9335}, + journal = {Bull. Bur. Amer. Ethn. 143}, + key = {Steward (1949)}, + lgcode = {Ona [onaa1245]}, + pages = {669-772}, + title = {South American cultures: an interpretatve summary}, + volume = {5}, + year = {1949} +} + +@book{bourne1874, + author = {Bourne, B. F.}, + address = {Boston}, + key = {Bourne (1874)}, + lgcode = {Tehuelche [tehu1242]}, + title = {The Captive in Patagonia}, + year = {1874} +} + +@incollection{cooper1946c, + author = {Cooper, J. M.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Cooper (1946c)}, + lgcode = {Tehuelche [tehu1242]}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {127-168}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians}, + title = {The Patagonian and Pampean hunters}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + volume = {1}, + year = {1946} +} + +@book{musters1871, + author = {Musters, G. C.}, + address = {London}, + key = {Musters (1871)}, + lgcode = {Tehuelche [tehu1242]}, + note = {2nd Ed. 1873}, + title = {At Home with the Patagonians}, + year = {1871} +} + +@article{musters1972, + author = {Musters, G. C.}, + journal = {Journal of the (Royal) Anthropological Institute}, + key = {Musters (1972)}, + lgcode = {Tehuelche [tehu1242]}, + pages = {193-207}, + title = {On the Races of Patagonia}, + volume = {1}, + year = {1972} +} + +@incollection{viedma1837, + author = {Viedma, A. de}, + editor = {de Angelis, P.}, + address = {Buenos Aires}, + booktitle = {Coleccion de obras y documentos relativos a la historia antigua y moderna de la provincias del Rio de la Plata}, + key = {Viedma (1837)}, + lgcode = {Tehuelche [tehu1242]}, + pages = {63-81}, + title = {Descripcion de la costa meridional del sur}, + volume = {6}, + year = {1837} +} + +@incollection{bird1946, + author = {Bird, J. B.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Bird (1946)}, + lgcode = {Alacaluf [qawa1238]}, + number = {1}, + pages = {55-80}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Alacaluf}, + volume = {143}, + year = {1946} +} + +@book{karsten1932, + author = {Karsten, Rafael}, + address = {Helsingfors}, + key = {Karsten (1932)}, + lgcode = {Choroti [iyow1239], Toba [toba1269], Wichí [wich1264]}, + number = {i}, + pages = {1-236}, + series = {Societas Scientiarum Fennica, Commentationes Humanarum Litterarum}, + title = {Indian Tribes of the Argentine and Bolivian Chaco}, + volume = {4}, + year = {1932} +} + +@article{pelleschi1896, + author = {Pelleschi, J.}, + glottolog_ref = {hh:g:Pelleschi:Matacos}, + journal = {Bol. Inst. Geog. Argent.}, + key = {Pelleschi (1896)}, + lgcode = {Wichí [wich1264]}, + pages = {559-622, 173-350}, + title = {Los indios Matacos y su lengua}, + volume = {XVII, XVIII}, + year = {1896} +} + +@article{oberg1948a, + author = {Oberg, K.}, + address = {Washington}, + glottolog_ref = {fabreall2009ann:Arawak_terena42}, + journal = {American Anthropologist}, + key = {Oberg (1948a)}, + lgcode = {Terena [tere1279]}, + pages = {283-289}, + title = {Terena Social Organization and Law}, + volume = {50}, + year = {1948} +} + +@article{oberg1949, + author = {Oberg, K.}, + glottolog_ref = {fabreall2009ann:Arawak_terena43}, + journal = {Publ. Inst. Anth. Smiths. Inst.}, + key = {Oberg (1949)}, + lgcode = {Kadiwéu [kadi1248], Terena [tere1279]}, + pages = {1-72}, + publisher = {Washington: Smithsonian Institution}, + series = {Institute of Social Anthropology: Publication}, + title = {The Terena and the Caduveo of Southern Mato Grosso}, + volume = {9}, + year = {1949} +} + +@book{dobrizhoffer1822, + author = {Dobrizhoffer, M.}, + address = {London}, + key = {Dobrizhoffer (1822)}, + lgcode = {Abipón [abip1241]}, + title = {An Account of the Abipones. 3v}, + year = {1822} +} + +@article{metraux1946chaco, + author = {Metraux, A.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Metraux (1946chaco)}, + lgcode = {Abipón [abip1241], Lengua [leng1262]}, + pages = {i, 197-370}, + title = {Ethnography of the Chaco}, + volume = {143}, + year = {1946} +} + +@book{nordenskiold1919, + author = {Nordenskiold, E.}, + address = {Goeteborg}, + key = {Nordenskiold (1919)}, + lgcode = {Choroti [iyow1239]}, + series = {Comp. Ethn. Stud.}, + title = {An Ethno-Geographical Analysis of the Material Culture of Two Indian Tribes in the Gran Chaco}, + volume = {1}, + year = {1919} +} + +@book{rosen1924a, + author = {Rosen, E. von}, + address = {Stockholm}, + key = {Rosen (1924a)}, + lgcode = {Choroti [iyow1239]}, + title = {Ethnographical Research Work During the Swedish Cahco-Cordillera Expedition}, + year = {1924} +} + +@book{baldus1931, + author = {Baldus, H.}, + glottolog_ref = {fabreall2009ann:714}, + key = {Baldus (1931)}, + lgcode = {Chamacoco [cham1315], Lengua [leng1262]}, + pages = {1-239}, + publisher = {Leipzig}, + series = {Forschungen zur Völkerpsychologie und Soziologie}, + title = {Indianerstudien im nordöstlichen Chaco}, + volume = {II}, + year = {1931} +} + +@book{boggiani1894, + author = {Boggiani, G.}, + address = {Roma}, + glottolog_ref = {hh:ew:Boggiani:Ciamacoco}, + key = {Boggiani (1894)}, + lgcode = {Chamacoco [cham1315]}, + pages = {132}, + publisher = {Roma: Società Romana per l'Antropologia}, + title = {I Ciamacoco}, + year = {1894} +} + +@article{campana1902, + author = {Campana, D. del.}, + address = {Florencia}, + glottolog_ref = {fabreall2009ann:Tupi_chiriguano021}, + journal = {Arch. Antr. Ethnol.}, + key = {Campana (1902)}, + lgcode = {Guaraní [east2555]}, + pages = {17-139}, + title = {Notizie intorno ai Ciriguani}, + volume = {32}, + year = {1902} +} + +@article{metraux1930, + author = {Metraux, A.}, + journal = {Rev. Inst. Etn. Univ. Nac. Tucuman}, + key = {Metraux (1930)}, + lgcode = {Guaraní [east2555]}, + pages = {295-493}, + title = {Etudes sur la civilisation des Indiens Chiriguano}, + volume = {1}, + year = {1930} +} + +@book{nordenskiold1912, + author = {Nordenskiold, E.}, + address = {Leipzig}, + key = {Nordenskiold (1912)}, + lgcode = {Guaraní [east2555]}, + title = {Indianerleben}, + year = {1912} +} + +@book{rosen1924b, + author = {Rosen, E. von.}, + address = {Stockholm}, + glottolog_ref = {fabreall2009ann:8462}, + key = {Rosen (1924b)}, + lgcode = {Guaraní [east2555]}, + publisher = {Estocol-mo: Fritu}, + title = {Ethnographical Work During the Swedish Chaco-Cordillera Expedition 1901-1902}, + year = {1924} +} + +@article{metraux1937, + author = {Metraux, A.}, + journal = {Anthropos}, + key = {Metraux (1937)}, + lgcode = {Toba [toba1269]}, + pages = {171-194, 378-401}, + title = {Etudes d'ethnographie Toba-Pilaga}, + volume = {32}, + year = {1937} +} + +@misc{miller1965, + author = {Miller, E.}, + howpublished = {Personal communication}, + key = {Miller (1965)}, + lgcode = {Toba [toba1269]}, + year = {1965} +} + +@article{miller1966, + author = {Miller, E. S.}, + journal = {Ethnology}, + key = {Miller (1966)}, + lgcode = {Toba [toba1269]}, + pages = {194-201}, + title = {Toba Kin Terms}, + volume = {5}, + year = {1966} +} + +@article{niklison1916, + author = {Niklison, J. E.}, + journal = {Bol Dep. Nac. Trabajo}, + key = {Niklison (1916)}, + lgcode = {Toba [toba1269]}, + pages = {iii}, + title = {Investigacion en los territorios federales del Chaco y Formosa}, + volume = {34}, + year = {1916} +} + +@incollection{palavecino1955, + author = {Palavecino, E.}, + editor = {Levene, R.}, + address = {Buenos Aires}, + booktitle = {Historia de la Nacion Argentina}, + key = {Palavecino (1955)}, + lgcode = {Toba [toba1269]}, + note = {2nd edit.}, + pages = {365-393}, + title = {Las culturas aborigenes del Chaco}, + volume = {1}, + year = {1955} +} + +@book{grubb1911, + author = {Grubb, W. B.}, + address = {London}, + key = {Grubb (1911)}, + lgcode = {Lengua [leng1262]}, + title = {An Unknown People in an Unknown Land}, + year = {1911} +} + +@article{hawtrey1901, + author = {Hawtrey, S. H. C.}, + address = {Londres}, + glottolog_ref = {fabreall2009ann:Enlhet-Enenlhet_enxet12}, + journal = {Journal of the Royal Anthropological Institute}, + key = {Hawtrey (1901)}, + lgcode = {Lengua [leng1262]}, + pages = {280-299}, + title = {The Lengua Indians of the Paraguayan Chaco}, + volume = {31}, + year = {1901} +} + +@article{fricandradin1906, + author = {Fric, V. A. and Radin., P.}, + journal = {Journal of the Royal Anthropological Institute}, + key = {Fric and Radin (1906)}, + lgcode = {Bororo [boro1282]}, + pages = {382-406}, + title = {Contributions to the Study of the Bororo Indians}, + volume = {36}, + year = {1906} +} + +@article{levistrauss1936, + author = {Lévi-Strauss, C.}, + journal = {Journal de la Societe des Americanistes de Paris (n.s.)}, + key = {Lévi-Strauss (1936)}, + lgcode = {Bororo [boro1282]}, + pages = {269-304}, + title = {Contribution a l'Etude de l'Organisation Sociale des Indiens Bororo}, + volume = {28}, + year = {1936} +} + +@article{oberg1953, + author = {Oberg, K.}, + address = {Washington, D.C.}, + glottolog_ref = {fabreall2009ann:Nambikwara_nambikwara_del_sur18}, + journal = {Smithsonian Institute of Social Anthropology Publication}, + key = {Oberg (1953)}, + lgcode = {Aché [ache1246], Aweti [awet1244], Bacairi [baka1277], Bororo [boro1282], Kamayurá [kama1373], Nambikwara [sout2994], Umotina [umot1240]}, + publisher = {Smithsonian Institution}, + title = {Indian tribes of northern Mato Grosso, Brazil}, + volume = {15}, + year = {1953} +} + +@book{steinen1894, + author = {Steinen, K. ven den.}, + address = {Berlin}, + key = {Steinen (1894)}, + lgcode = {Bororo [boro1282]}, + title = {Unter den Naturvolkern Zentral Brasiliens}, + year = {1894} +} + +@article{carneiro1958, + author = {Carneiro, R.}, + journal = {Revista do Museu Paulista, n. s.}, + key = {Carneiro (1958)}, + lgcode = {Kuikuru [kuik1246]}, + pages = {135-142}, + title = {Extra-marital Sex Freedom Among the Kuikuru Indians}, + volume = {10}, + year = {1958} +} + +@article{carneiroanddole1957, + author = {Carneiro, R. and Dole., G. E.}, + address = {Buenos Aires}, + journal = {Runa: Archivo para las Ciencias del Hombre}, + key = {Carneiro and Dole (1957)}, + lgcode = {Kuikuru [kuik1246]}, + number = {ii}, + pages = {169-202}, + title = {La cultura de los indios Kuikurus}, + volume = {8}, + year = {1957} +} + +@article{dole1958, + author = {Dole, G. E.}, + journal = {Revista do Museu Paulista, n. s.}, + key = {Dole (1958)}, + lgcode = {Kuikuru [kuik1246]}, + pages = {125-133}, + title = {Ownership and Exchange Among the Kuikuru Indians}, + volume = {10}, + year = {1958} +} + +@article{levistrauss1948c, + author = {Lévi-Strauss, C.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Lévi-Strauss (1948c)}, + lgcode = {Aweti [awet1244], Trumai [trum1247]}, + pages = {iii, 321-348}, + title = {Tribes of the Upper Xingu River}, + volume = {143}, + year = {1948} +} + +@article{murphyandquain1955, + author = {Murphy, R. F. and Quain., B.}, + journal = {Monographs of the American Ethnological Society}, + key = {Murphy and Quain (1955)}, + lgcode = {Trumai [trum1247]}, + pages = {1-108}, + title = {The Trumai Indians of Central Brazil}, + volume = {24}, + year = {1955} +} + +@article{oberg1948b, + author = {Oberg, K.}, + address = {Albuquerque}, + glottolog_ref = {fabreall2009ann:Caribe_bakairi29}, + journal = {Southw. Journ. Anth.}, + key = {Oberg (1948b)}, + lgcode = {Bacairi [baka1277]}, + pages = {305-319}, + title = {The Bacairi of Northern Matto Grosso}, + volume = {4}, + year = {1948} +} + +@book{steinen1892, + author = {Steinen, Karl von den}, + address = {Leipzig}, + key = {Steinen (1892)}, + lgcode = {Bacairi [baka1277]}, + publisher = {K. F. Koehler's Antiquarium}, + title = {Die Bakairi-Sprache}, + year = {1892} +} + +@article{levistrauss1944, + author = {Lévi-Strauss, C.}, + journal = {Transactions of the New York Academy of Sciences, ser. 2}, + key = {Lévi-Strauss (1944)}, + lgcode = {Nambikwara [sout2994]}, + pages = {1642}, + title = {The Social and Psychological Aspects of Chieftainship in a Primitive Tribe}, + volume = {7}, + year = {1944} +} + +@article{levistrauss1948a, + author = {Lévi-Strauss, C.}, + journal = {Journal de la Societe des Americanistes de Paris (n.s.)}, + key = {Lévi-Strauss (1948a)}, + lgcode = {Nambikwara [sout2994]}, + pages = {1-132}, + title = {La Vie Familiale et Sociale des Indiens Nambikwara}, + volume = {37}, + year = {1948} +} + +@incollection{levistrauss1948b, + author = {Lévi-Strauss, C.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Tropical Forest Tribes}, + key = {Lévi-Strauss (1948b)}, + lgcode = {Nambikwara [sout2994]}, + pages = {361-370}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians, Vol. 3. Bureau of American Ethnology Bulletin No. 143}, + title = {The Nambicuara}, + year = {1948} +} + +@book{levistrauss1955, + author = {Lévi-Strauss, C.}, + address = {Paris}, + key = {Lévi-Strauss (1955)}, + lgcode = {Nambikwara [sout2994]}, + title = {Tristes tropiques}, + year = {1955} +} + +@article{roquettepinto1935, + author = {Roquette-Pinto, E.}, + glottolog_ref = {fabreall2009ann:8452}, + journal = {ed. Edit. Brasiliana}, + key = {Roquette-Pinto (1935)}, + lgcode = {Nambikwara [sout2994]}, + pages = {1-401}, + publisher = {São Paulo: Cia. Ed. Nacional}, + title = {Rondonia}, + volume = {39}, + year = {1935} +} + +@book{schmidt1905, + author = {Schmidt, M.}, + address = {Berlin}, + glottolog_ref = {hh:es:Schmidt:Guato:1905}, + key = {Schmidt (1905)}, + lgcode = {Guató [guat1253]}, + pages = {506}, + publisher = {Berlin: Dietrich Reimer}, + title = {Indianerstudien in Zentralbrasilien}, + year = {1905} +} + +@article{schmidt1942, + author = {Schmidt, M.}, + journal = {Revista de la Sociedad Cientifica del Paraguay}, + key = {Schmidt (1942)}, + lgcode = {Guató [guat1253]}, + number = {6}, + pages = {41-75}, + title = {Resultados de mi tercera expedicion a los Guatos efectuada en el ano de 1928}, + volume = {5}, + year = {1942} +} + +@article{metraux1948a, + author = {Metraux, A.}, + journal = {Bull. Bur. Amer. Ethn.}, + key = {Metraux (1948a)}, + lgcode = {Paresi [pare1272]}, + pages = {iii, 349-360}, + title = {The Paressi}, + volume = {143}, + year = {1948} +} + +@article{schmidt1914, + author = {Schmidt, M.}, + address = {BA 4, 4-5: 167-250}, + glottolog_ref = {fabreall2009ann:Arawak_parecis27}, + journal = {Baessler-Arch.}, + key = {Schmidt (1914)}, + lgcode = {Paresi [pare1272]}, + pages = {164-250}, + title = {Die Paressi-Kabisi}, + volume = {4}, + year = {1914} +} + +@misc{dietschy1962, + author = {Dietschy, H.}, + howpublished = {Personal communication}, + key = {Dietschy (1962)}, + lgcode = {Carajá [kara1500]}, + year = {1962} +} + +@misc{dietschynd, + author = {Dietschy, H.}, + howpublished = {Manuscript}, + key = {Dietschy (nd)}, + lgcode = {Carajá [kara1500]}, + title = {Le systeme de parente et la structure des Indiens Caraja} +} + +@article{ehrenreich1891, + author = {Ehrenreich, P.}, + address = {Leipzig}, + glottolog_ref = {fabreall2009ann:3137}, + journal = {Veröffentlichungen aus dem Koniglichen Museum fur Völkerkunde}, + key = {Ehrenreich (1891)}, + lgcode = {Carajá [kara1500]}, + pages = {1-80}, + title = {Beiträge zur Völkerkunde Brasiliens}, + volume = {2}, + year = {1891} +} + +@book{krause1911, + author = {Krause, F.}, + address = {Leipzig}, + glottolog_ref = {fabreall2009ann:5368}, + key = {Krause (1911)}, + lgcode = {Carajá [kara1500], Kayapo [kaya1330]}, + title = {In den Wildnissen Brasiliens}, + volume = {1908}, + year = {1911} +} + +@incollection{lipkind1948, + author = {Lipkind, W.}, + editor = {Steward, Julian H.}, + address = {Washington 1946-1950}, + glottolog_ref = {fabreall2009ann:Karaja57}, + key = {Lipkind (1948)}, + lgcode = {Carajá [kara1500]}, + pages = {179-192}, + publisher = {Smithsonian Institution, Washington: Bureau of American Ethnology}, + series = {Handbook of South American Indians}, + title = {The Carajá}, + volume = {3}, + year = {1948} +} + +@article{ambrosetti1895, + author = {Ambrosetti, J. B.}, + journal = {Boletin del Instituto Geografico Argentino}, + key = {Ambrosetti (1895)}, + lgcode = {Cayua [mbya1239]}, + pages = {661-744}, + title = {Los Indios Caingua del alto Parana}, + volume = {15}, + year = {1895} +} + +@article{keonigswald1908, + author = {Keonigswald, G. von.}, + journal = {Globus}, + key = {Keonigswald (1908)}, + lgcode = {Cayua [mbya1239]}, + pages = {376-381}, + title = {Die Cayuas}, + volume = {93}, + year = {1908} +} + +@article{muller193435, + author = {Muller, F.}, + journal = {Anthropos}, + key = {Muller (1934-35)}, + lgcode = {Cayua [mbya1239]}, + pages = {177-208, 441-460, 695-702; 151-164, 433-450, 767-783}, + title = {Beiträge zur Ethnographie der Guarani-Indianer im östlichen Waldgebiet von Paraguay}, + volume = {29; 30}, + year = {1934-35} +} + +@book{rengger1835, + author = {Rengger, J. R.}, + address = {Aarau}, + glottolog_ref = {hh:e:Rengger:Paraguay}, + key = {Rengger (1835)}, + lgcode = {Cayua [mbya1239]}, + pages = {495}, + publisher = {Aarau: H. R. Sauerlænder}, + title = {Reise nach Paraguay in den Jahre 1818 bis 1828}, + year = {1835} +} + +@article{strelnikov1928, + author = {Strelnikov, I. D.}, + journal = {Proceedings of the International Congress of Americanists}, + key = {Strelnikov (1928)}, + lgcode = {Cayua [mbya1239]}, + pages = {ii, 333-366}, + title = {Les Kaa-iwaua de Paraguay}, + volume = {22}, + year = {1928} +} + +@article{watson1952, + author = {Watson, J. B.}, + journal = {Memoirs of the American Anthropological Association}, + key = {Watson (1952)}, + lgcode = {Cayua [mbya1239]}, + pages = {1-144}, + title = {Cayua Culture Change}, + volume = {73}, + year = {1952} +} + +@book{mayburylewis1967, + author = {Maybury-Lewis, D.}, + address = {Oxford}, + key = {Maybury-Lewis (1967)}, + lgcode = {Shavante [xava1240]}, + title = {Akwe-Shavante Society}, + year = {1967} +} + +@article{nimuendaji1942, + author = {Nimuendaji, C.}, + journal = {Publications of the Frederick Webb Hodge Anniversary Publications Fund}, + key = {Nimuendaji (1942)}, + lgcode = {Shavante [xava1240]}, + pages = {1-106}, + title = {The Serente}, + volume = {4}, + year = {1942} +} + +@book{nimuendaju1942, + author = {Nimuendaju, C.}, + key = {Nimuendaju (1942)}, + lgcode = {Sherente [xere1240]}, + number = {1}, + pages = {1-106}, + series = {Publ. F. W. Hodge Anniv. Fund}, + title = {The Serente}, + volume = {4}, + year = {1942} +} + +@book{henry1941, + author = {Henry, J.}, + address = {New York}, + key = {Henry (1941)}, + lgcode = {Aweikoma [xokl1240]}, + title = {Jungle People}, + year = {1941} +} + +@article{metraux1946caingang, + author = {Metraux, A.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Metraux (1946caingang)}, + lgcode = {Aweikoma [xokl1240]}, + pages = {i, 445-475}, + title = {The Caingang}, + volume = {143}, + year = {1946} +} + +@article{paula1924, + author = {Paula, J. M. de.}, + journal = {Proceedings of the International Congress of Americanists}, + key = {Paula (1924)}, + lgcode = {Aweikoma [xokl1240]}, + pages = {i, 117-138}, + title = {Memoria sobre os Botocudos do Parana e Santa Catharina}, + volume = {20}, + year = {1924} +} + +@book{arnaud1964, + author = {Arnaud, E.}, + key = {Arnaud (1964)}, + lgcode = {Canela [cane1242]}, + number = {20}, + series = {Antropologia}, + title = {Noticia sobre los Indios Gavioes de Oeste}, + year = {1964} +} + +@article{crocker1961, + author = {Crocker, W. H.}, + journal = {Anthropological Quarterly}, + key = {Crocker (1961)}, + lgcode = {Canela [cane1242]}, + pages = {69-84}, + title = {The Canela since Nimuendaji}, + volume = {23}, + year = {1961} +} + +@article{kissenberth1912, + author = {Kissenberth, W.}, + journal = {Baessler-Archiv}, + key = {Kissenberth (1912)}, + lgcode = {Canela [cane1242]}, + pages = {45-54}, + title = {Bei den Canella-Indianern in Zentral Maranhas}, + volume = {2}, + year = {1912} +} + +@article{lowie1946, + author = {Lowie, R. H.}, + address = {Washington 1946-1950}, + glottolog_ref = {fabreall2009ann:Je24}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + key = {Lowie (1946)}, + lgcode = {Canela [cane1242]}, + pages = {477-517}, + title = {The Northwestern and Central Ge}, + volume = {1}, + year = {1946} +} + +@article{nimuendaju1946, + author = {Nimuendaju, C.}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Nimuendaju (1946)}, + lgcode = {Canela [cane1242]}, + pages = {1-357}, + title = {The Eastern Timbira}, + volume = {41}, + year = {1946} +} + +@article{snethlage1930, + author = {Snethlage, E. H.}, + glottolog_ref = {fabreall2009ann:9165}, + journal = {Zeitschrift für Ethnologie}, + key = {Snethlage (1930)}, + lgcode = {Canela [cane1242], Tenetehara [temb1276]}, + pages = {111-205}, + title = {Unter nordostbrasilianischen Indianern}, + volume = {62}, + year = {1930} +} + +@article{ehrenreich1887, + author = {Ehrenreich, P.}, + journal = {Zeitschrift für Ethnologie}, + key = {Ehrenreich (1887)}, + lgcode = {Aimoré [kren1239]}, + pages = {1-46, 49-82}, + title = {Über die Botocudos der Brasilianischen Provinzen Espiritu Santo and Minas Geraes}, + volume = {19}, + year = {1887} +} + +@article{keane1883, + author = {Keane, A. H.}, + journal = {Journal of the (Royal) Anthropological Institute}, + key = {Keane (1883)}, + lgcode = {Aimoré [kren1239]}, + pages = {199-213}, + title = {On the Botocudos}, + volume = {13}, + year = {1883} +} + +@incollection{metraux1946botocudo, + author = {Metraux, A.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Metraux (1946botocudo)}, + lgcode = {Aimoré [kren1239]}, + pages = {531-540}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians, Vol. 1, Bureau of American Ethnology Bulletin No. 143}, + title = {The Botocudo}, + year = {1946} +} + +@book{sainthilaire193033, + author = {Saint-Hilaire, A.}, + address = {Paris}, + key = {Saint-Hilaire (1930-33)}, + lgcode = {Aimoré [kren1239]}, + title = {Voyages dans l'int‚rieur du Brésil}, + year = {1930-33} +} + +@book{wiedneuwied182021, + author = {Wied-Neuwied, M. zu}, + glottolog_ref = {fabreall2009ann:10311}, + key = {Wied-Neuwied (1820-21)}, + lgcode = {Aimoré [kren1239]}, + publisher = {Frankfurt am Main}, + title = {Reise nach Brasilien in den Jahren 1815 bis 1817, I-II}, + year = {1820-21} +} + +@article{wagley1949a, + author = {Wagley, C.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Wagley (1949a)}, + lgcode = {Tenetehara [temb1276]}, + pages = {1-200}, + title = {The Tenetehara Indians of Brazil}, + volume = {35}, + year = {1949} +} + +@article{wagleyandgalvao1948b, + author = {Wagley, C. and Galvao, E.}, + journal = {Bulletins of the Bureau of American Ethnology}, + key = {Wagley and Galvao (1948b)}, + lgcode = {Tenetehara [temb1276]}, + pages = {iii, 137-148}, + title = {The Tenetehara}, + volume = {143}, + year = {1948} +} + +@article{mayburylewis1960, + author = {Maybury-Lewis, D.}, + address = {Albuquerque}, + glottolog_ref = {fabreall2009ann:Je_apinaje-kayapo105}, + journal = {Southw. Journ. Anth.}, + key = {Maybury-Lewis (1960)}, + lgcode = {Apinaye [apin1244]}, + pages = {191-216}, + title = {Parallel Descent and the Apinaye Anomaly}, + volume = {16}, + year = {1960} +} + +@article{nimuendaju1939, + author = {Nimuendaju, C.}, + journal = {Catholic University of America Anthropological Series}, + key = {Nimuendaju (1939)}, + lgcode = {Apinaye [apin1244]}, + pages = {1-189}, + title = {The Apinaye}, + volume = {8}, + year = {1939} +} + +@book{abbeville1614, + author = {Abbeville, C. d'.}, + address = {Paris}, + glottolog_ref = {hh:ew:dAbbeville:Maragnan}, + key = {Abbeville (1614)}, + lgcode = {Tupinambá [tupi1273]}, + publisher = {L'Imprimérie de François Huby}, + title = {Histoire de la Mission des Peres Capucins en l'Isle de Maragnan et terres circonuoisines}, + year = {1614} +} + +@article{cardim1906, + author = {Cardim, F.}, + address = {Glasgow}, + journal = {Haklyutus Posthumus or Purchas His Pilgrimes}, + key = {Cardim (1906)}, + lgcode = {Tupinambá [tupi1273]}, + pages = {417-517}, + title = {A Treatise on Brasil}, + volume = {16}, + year = {1906} +} + +@book{devreux1864, + author = {d'Evreux., Yves}, + editor = {Denis, F.}, + address = {Leipzig and Paris}, + glottolog_ref = {hh:ew:dEvreux:Nord-Bresil}, + key = {d'Evreux (1864)}, + lgcode = {Tupinambá [tupi1273]}, + pages = {526}, + publisher = {Leipzig & Paris: Librairie A. Franck}, + title = {Voyage dans le nord du Brésil fait durant les années 1613 et 1614}, + year = {1864} +} + +@book{lery1880, + author = {Lery, J. de.}, + editor = {Gaffarel, P.}, + address = {Paris}, + key = {Lery (1880)}, + lgcode = {Tupinambá [tupi1273]}, + title = {Histoire d'un voyage faict en la terre du Brésil}, + year = {1880} +} + +@incollection{lery1906, + author = {Lery, J. de.}, + editor = {Purchas, S.}, + address = {Glasgow}, + key = {Lery (1906)}, + lgcode = {Tupinambá [tupi1273]}, + pages = {518-579}, + series = {Hakluytus Posthumus or Purchas His Pilgrimes}, + title = {Extracts out of the Historie of John Lerius}, + volume = {16}, + year = {1906} +} + +@article{magalhaesdegandavo1922, + author = {Magalhaes de Gandavo, P. de}, + address = {New York}, + journal = {Documents and Narratives Concerning the Discovery and Conquest of Latin America: The Histories of Brazil}, + key = {Magalhaes de Gandavo (1922)}, + lgcode = {Tupinambá [tupi1273]}, + pages = {11-121}, + title = {History of the Province of Santa Cruz}, + volume = {2}, + year = {1922} +} + +@misc{metraux1948c, + author = {Metraux, Alfred}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + key = {Metraux (1948c)}, + lgcode = {Tupinambá [tupi1273]}, + pages = {95-133}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians, Vol. 3, Bureau of American Ethnology Bulletin No. 143}, + title = {The Tupinamba}, + year = {1948} +} + +@article{soaresdesouza1851, + author = {Soares de Souza, G.}, + journal = {Revista do Instituto Historico e Geographico do Brazil}, + key = {Soares de Souza (1851)}, + lgcode = {Tupinambá [tupi1273]}, + pages = {1-423}, + title = {Tratado descriptivo do Brazil em 1587}, + volume = {14}, + year = {1851} +} + +@book{staden1928, + author = {Staden, H.}, + editor = {Lotts, M.}, + address = {London}, + key = {Staden (1928)}, + lgcode = {Tupinambá [tupi1273]}, + title = {The True Story of His Captivity}, + year = {1928} +} + +@book{thevet1878, + author = {Thevet, A.}, + editor = {Gaffarel, P.}, + address = {Paris}, + key = {Thevet (1878)}, + lgcode = {Tupinambá [tupi1273]}, + title = {Les singularitez de la France antarctique}, + year = {1878} +} + +@book{dreyfus1963, + author = {Dreyfus, S.}, + address = {Paris and La Haye}, + key = {Dreyfus (1963)}, + lgcode = {Kayapo [kaya1330]}, + title = {Les Kayapo du nord}, + year = {1963} +} + +@article{soatesdiniz1962, + author = {Soates Diniz, E.}, + journal = {Boletim do Museu Paraense Emílio Goeldi}, + key = {Soates Diniz (1962)}, + lgcode = {Kayapo [kaya1330]}, + pages = {1-40}, + title = {Os Kayapo-Gorotire}, + volume = {18}, + year = {1962} +} + +@book{bikbulatov1964, + author = {Bikbulatov, N. V.}, + address = {Moscow}, + key = {Bikbulatov (1964)}, + lgcode = {Bashkir [bash1264]}, + title = {Sistema rodstva bashkir (Kin System of the Bashkir)}, + year = {1964} +} + +@incollection{bikbulatov1980, + author = {Bikbulatov, N. V.}, + editor = {Kuzeev, R. G. and Bikbulatov, N. V.}, + address = {Ufa}, + booktitle = {Obychai i kul'tumo-bytovye traditsii bashkir (Customs and Everyday Life Cultural Traditions of the Bashkir)}, + key = {Bikbulatov (1980)}, + lgcode = {Bashkir [bash1264]}, + pages = {3-23}, + title = {Istoricheskoer azvitieb ashkirskojs istemyr odstva (Historical Development of the Bashkir Kin System)}, + year = {1980} +} + +@book{bikbulatov1980a, + author = {Bikbulatov, N. V.}, + address = {Ufa}, + key = {Bikbulatov (1980a)}, + lgcode = {Bashkir [bash1264]}, + title = {Bashkirskij aul. Ocherk obshchestvennoj i kul'tumoj zhizni (Bashkir Aul: An Essay on Social and Cultural Life)}, + year = {1980} +} + +@book{bikbulatov1981, + author = {Bikbulatov, N. V.}, + address = {Moscow}, + key = {Bikbulatov (1981)}, + lgcode = {Bashkir [bash1264]}, + title = {Bashkirskajas istemar odstva (BashkirK in System)}, + year = {1981} +} + +@book{bikbulatovandkuzeev1976, + editor = {Bikbulatov, N. V. and Kuzeev, R. G.}, + address = {Ufa}, + key = {Bikbulatov and Kuzeev (1976)}, + lgcode = {Bashkir [bash1264]}, + title = {Etnografija Bashkirii (Ethnography of Bashkiria)}, + year = {1976} +} + +@incollection{bikbulatovandpimenov1998, + author = {Bikbulatov, N. V. and Pimenov., V. V.}, + editor = {Tishkov, V. A.}, + address = {Moscow}, + booktitle = {Narody i religii mira. Entsiklopedija (Peoples and Religions of the World. Encyclopedia)}, + key = {Bikbulatov and Pimenov (1998)}, + lgcode = {Bashkir [bash1264]}, + pages = {85-88}, + title = {Bashkiry (The Bashkir)}, + year = {1998} +} + +@book{janguzin1987, + author = {Janguzin, R. Z.}, + address = {Ufa}, + key = {Janguzin (1987)}, + lgcode = {Bashkir [bash1264]}, + title = {Sotsial'najas trukturab ashkirskogoo bshchestvav XVIII-XIX vv. (Social Structure of the Bashkir Society in the Eighteenth and Nineteenth Centuries)}, + year = {1987} +} + +@book{karlov1990, + author = {Karlov, V. V.}, + address = {Moscow}, + key = {Karlov (1990)}, + lgcode = {Bashkir [bash1264], Chuvash [chuv1255], Erzya Mordvins [erzy1239], Estonians [esto1258], Kazan tatar [midd1325], Latvians [latv1249], Moldovans [mold1248], Udmurt [sout2681]}, + title = {Vvedenie v etnografiju narodov SSSR (Introduction to the Ethnography of the Peoples of the USSR)}, + volume = {1}, + year = {1990} +} + +@book{kazantsev1866, + author = {Kazantsev, N.}, + address = {St. Petersburg}, + key = {Kazantsev (1866)}, + lgcode = {Bashkir [bash1264]}, + title = {Opisanie bashkirtsev (A Description of the Bashkir)}, + year = {1866} +} + +@article{kinkov1927, + author = {Kinkov, A.}, + journal = {Bashkirskij kraevedcheskij sborik}, + key = {Kinkov (1927)}, + lgcode = {Bashkir [bash1264]}, + pages = {54-61}, + title = {K istorii sem'i i braka u bashkir, tatar, mordvy, chuvash (History of Family and Marriage among the Bashkir, Tatar, Mordva, Chuvash)}, + volume = {2}, + year = {1927} +} + +@book{kozlova1964, + author = {Kozlova, K. I.}, + address = {Moscow}, + key = {Kozlova (1964)}, + lgcode = {Bashkir [bash1264], Chuvash [chuv1255], Erzya Mordvins [erzy1239], Kazan tatar [midd1325], Udmurt [sout2681]}, + title = {Etnografija narodov Povolzh'ja (Ethnography of the Volga Region Peoples)}, + year = {1964} +} + +@incollection{kozlova1982, + author = {Kozlova, K. I.}, + editor = {Bromlej, Ju. V. and Markov, G. E.}, + address = {Moscow}, + booktitle = {Etnografija (Ethnography)e}, + key = {Kozlova (1982)}, + lgcode = {Bashkir [bash1264], Chuvash [chuv1255], Erzya Mordvins [erzy1239], Estonians [esto1258], Karelians [livv1243], Kazan tatar [midd1325], Latvians [latv1249], Moldovans [mold1248], Udmurt [sout2681], Veps [veps1250]}, + pages = {244-256}, + title = {Neslavjanskie narody evropejskoj chasti SSSR (Non- Slavic Peoples of the European Part of the USSR)}, + year = {1982} +} + +@inbook{maksimov1997a, + author = {Maksimov, A. N.}, + address = {Moscow}, + booktitle = {Izbrannye trudy (Selected Works)}, + key = {Maksimov (1997a)}, + lgcode = {Bashkir [bash1264], Chuvash [chuv1255], Erzya Mordvins [erzy1239], Kazan tatar [midd1325], Udmurt [sout2681]}, + pages = {113-140}, + title = {Iz istorii sem'i u russkih inorodtsev (From the History of Family of the Non-Russian Peoples of Russia)}, + year = {1997} +} + +@inbook{maksimov1997b, + author = {Maksimov, A. N.}, + address = {Moscow}, + booktitle = {Izbrannye trudy (Selected Works)}, + key = {Maksimov (1997b)}, + lgcode = {Bashkir [bash1264], Chuvash [chuv1255], Erzya Mordvins [erzy1239], Kazan tatar [midd1325], Udmurt [sout2681]}, + pages = {159-216}, + title = {Ogranichenijao tnoshenijm ezhduo dnim iz suprugovi rodstvennikami drugogo (The Limitation of the Contacts between One of the Spouses and Relatives of the Other)}, + year = {1997} +} + +@article{nazarov1890, + author = {Nazarov, P. S.}, + journal = {Etnograficheskoe obozrenie}, + key = {Nazarov (1890)}, + lgcode = {Bashkir [bash1264]}, + number = {4}, + pages = {164-192}, + title = {K etnografiib ashkir (To the Ethnography of the Bashkir)}, + volume = {1}, + year = {1890} +} + +@phdthesis{nikolskij1899, + author = {Nikol'skij, D. P.}, + address = {St. Petersburg}, + key = {Nikol'skij (1899)}, + lgcode = {Bashkir [bash1264]}, + school = {Imperatorskajav oennajam editsinskaja akademija}, + title = {Bashkiry. E tnograficheskoei sanitamo-antropologicheskoeis sledovanie (Bashkirs: Ethnographic and Medical-Anthropological Study)}, + year = {1899} +} + +@book{rudenko1925, + author = {Rudenko, S. I.}, + address = {Leningrad}, + key = {Rudenko (1925)}, + lgcode = {Bashkir [bash1264]}, + series = {Bashkiry. Opyt etnologicheskoj monografii (The Bashkirs. An Ethnological Monograph)}, + title = {Everyday Life of the Bashkir}, + volume = {2}, + year = {1925} +} + +@book{rudenko1953, + author = {Rudenko, S. I.}, + address = {Moscow}, + key = {Rudenko (1953)}, + lgcode = {Bashkir [bash1264]}, + title = {Bashkiry. Istoriko-etnograficheskie ocherki (The Bashkir. Historical and Ethnographic Essays)}, + year = {1953} +} + +@article{shakirova1988, + author = {Shakirova, N. F.}, + journal = {Sovetskaja etnografija}, + key = {Shakirova (1988)}, + lgcode = {Bashkir [bash1264]}, + pages = {99-109}, + title = {Dikorastushchier astenijav traditsionnomp itanii bashkir (Wild Plants in Traditional Diet of the Bashkir)}, + volume = {3}, + year = {1988} +} + +@misc{tolstov1964, + editor = {Tolstov, S. P.}, + address = {Moscow}, + key = {Tolstov (1964)}, + lgcode = {Bashkir [bash1264], Chuvash [chuv1255], Erzya Mordvins [erzy1239], Estonians [esto1258], Gagauz [gaga1249], Ingrians [ingr1248], Karelians [livv1243], Latvians [latv1249], Livs [livv1244], Moldovans [mold1248], Udmurt [sout2681], Veps [veps1250], Votes [voti1245]}, + title = {Narody evropejskoj chasti SSSR (Peoples of the European Part of the USSR)}, + volume = {2}, + year = {1964} +} + +@book{vangennep1960, + author = {van Gennep, A.}, + address = {Chicago}, + key = {van Gennep (1960)}, + lgcode = {Bashkir [bash1264]}, + title = {The Rites of Passage}, + year = {1960} +} + +@article{miheev1901, + author = {Miheev, I. S.}, + journal = {Izvestija Obshchestva istorii, arheologii i etnografii (Kazan')}, + key = {Miheev (1901)}, + lgcode = {Besermyan [nort2676]}, + number = {17}, + pages = {51-60}, + title = {Neskol'ko slov o besermjanah (A Few Words on the Besermyan)}, + volume = {1}, + year = {1901} +} + +@incollection{popova1992, + author = {Popova, E. V.}, + editor = {Shkljaev, G. K.}, + address = {Izhevsk}, + booktitle = {Traditsionnoe povedenie i obshchenie udmurtov (Traditional Behavior and Communication of the Udmurt)}, + key = {Popova (1992)}, + lgcode = {Besermyan [nort2676]}, + pages = {61-74}, + title = {Prazdnichnoe obshchenie molodezhi: igry i razvlechenija (po kalendarym obrjadam besermjan) (Celebratory Communication of the Youth: Games and Entertainments [On Calendar Rituals of the Besermyan])}, + year = {1992} +} + +@book{shkljaev1997, + editor = {Shkljaev, G. K.}, + address = {Izhevsk}, + key = {Shkljaev (1997)}, + lgcode = {Besermyan [nort2676]}, + title = {O besermjanah (About the Besermyan)}, + year = {1997} +} + +@book{stejnfeld1894, + author = {Stejnfel'd, N. P.}, + address = {Vjatka}, + key = {Stejnfel'd (1894)}, + lgcode = {Besermyan [nort2676]}, + title = {Besermjane:O pyt Etnograficheskogoi sseldovanija (The Besrmyan: An Ethnographic Study)}, + year = {1894} +} + +@incollection{vladykinandpanova1998, + author = {Vladykin, V. E. and Panova, E. V.}, + editor = {Tishkov, V. A.}, + address = {Moscow}, + booktitle = {Narody i religii mira (Peoples and Religions of the World)}, + key = {Vladykin and Panova (1998)}, + lgcode = {Besermyan [nort2676]}, + pages = {96-97}, + title = {Besermjane (The Besermyan)}, + year = {1998} +} + +@book{aleksandrov1899, + author = {Aleksandrov, N. A.}, + address = {Moscow}, + key = {Aleksandrov (1899)}, + lgcode = {Chuvash [chuv1255]}, + title = {Cheremisy i chuvashi. (Lesnaja okraina) (The Mari and Chuvash. Forest Province)}, + year = {1899} +} + +@incollection{denisova1984, + author = {Denisova, N. P.}, + editor = {Egorov, N. E. and Prohorova, V. A.}, + address = {Cheboksary}, + booktitle = {Voprosy istorii dorevoljutsionnoj Chuvashii (Issues of the History of pre-Revolution Chuvashia)}, + key = {Denisova (1984)}, + lgcode = {Chuvash [chuv1255]}, + pages = {46-71}, + title = {Administrativno-fiskal'nyei pravovye funktsii obshchiny u chuvashej (IX - nachaloX X v. ) (Administrative-Fiscal and Jurisdictional Functions of the Chuvash Community in the Nineteenth and early Twentieth Centuries)}, + year = {1984} +} + +@book{fuks1840, + author = {Fuks, A.}, + address = {Kazan'}, + key = {Fuks (1840)}, + lgcode = {Chuvash [chuv1255]}, + title = {Zapiski o chuvashah i cheremisah Kazanskoj gubemii (Notes on the Chuvash and Mari of the Kazanskaja Guberia)}, + year = {1840} +} + +@incollection{guzenkovaandivanov1998, + author = {Guzenkova, T. S. and Ivanov, V. P.}, + editor = {Tishkov, V. A.}, + address = {Moscow}, + booktitle = {Narody i religii mira (Peoples and Religions of the World)}, + key = {Guzenkova and Ivanov (1998)}, + lgcode = {Chuvash [chuv1255]}, + pages = {631-633}, + title = {Chuvashi (The Chuvash)}, + year = {1998} +} + +@book{jagafova1998, + author = {Jagafova, E.}, + address = {Samara}, + key = {JagAfova (1998)}, + lgcode = {Chuvash [chuv1255]}, + title = {Samarskie chuvashi (istoriko-etnograficheskie ocherki). Konets XVII-nachalo XX vv. (The Chuvasho f Samara[ Historical-Ethnographic Essays]. From the Late Seventeenth to the Early Twentieth Century)}, + year = {1998} +} + +@book{komissarov1911, + author = {Komissarov, G. I.}, + address = {Kazan'}, + key = {Komissarov (1911)}, + lgcode = {Chuvash [chuv1255]}, + title = {Chuvashi Kazanskogo Zavolzh'ja (The Chuvash of the Kazan' Trans-Volga Region)}, + year = {1911} +} + +@book{mihajlov1882, + author = {Mihajlov, S. M.}, + address = {Kazan'}, + key = {Mihajlov (1882)}, + lgcode = {Chuvash [chuv1255]}, + title = {Chuvashskie svad'by (Chuvash Weddings)}, + year = {1882} +} + +@book{nikolskij1908, + author = {Nikol'skij, N. V.}, + address = {Kazan'}, + key = {Nikol'skij (1908)}, + lgcode = {Chuvash [chuv1255]}, + title = {Konspekt po etnografii Chuvash (Synopsis of Chuvash Ethnography)}, + year = {1908} +} + +@book{rittih1870, + author = {Rittih, A. F.}, + address = {Kazan}, + key = {Rittih (1870)}, + lgcode = {Chuvash [chuv1255], Kazan tatar [midd1325], Udmurt [sout2681]}, + title = {Materialy dlja etnografii Rossii. Kazanskaja gubernija (Materials for the Ethnography of Russia. Kazanskaja Guberia). Part. 2}, + year = {1870} +} + +@misc{sboevnd, + author = {Sboev, V. A.}, + key = {Sboev (nd)}, + lgcode = {Chuvash [chuv1255]}, + title = {Zametki o chuvashah (Notes on the Chuvash)} +} + +@book{semenov1900b, + editor = {Semenov, V. P.}, + address = {St. Petersburg}, + key = {Semenov (1900b)}, + lgcode = {Chuvash [chuv1255]}, + series = {Rossija. Polnoe geograficheskoe opisanie nashego otechestva. Nastol'naja i dorozhnaja kniga dlja russkih ljudej (Russia: Complete Geographic Description of Our Fatherland. Guide for the Russian People)}, + title = {Sredneei Nizhnee Povolzh'e i Zavolzh'e (The Middle and Lower Volga and Trans-Volga Regions)}, + volume = {6}, + year = {1900} +} + +@book{skvortsov2001, + editor = {Skvortsov, M. I.}, + address = {Cheboksary}, + key = {Skvortsov (2001)}, + lgcode = {Chuvash [chuv1255]}, + title = {Hrestomatija po kul'ture Chuvashskogo kraja: dorevoljutsionnyj. (Reading Book on the Culture of the Chuvash Kraj: Prerevolutionary Period)}, + year = {2001} +} + +@book{vorobevandromanov195670, + author = {Vorob'ev, N. I. and L'vova, A. N. and Romanov, N. R. and Simonova, A. R.}, + address = {Cheboksary}, + key = {Vorob'ev and Romanov (1956-70)}, + lgcode = {Chuvash [chuv1255]}, + note = {Parts land 2}, + title = {Chuvashi: Etnograficheskoe issledovanie (The Chuvash: An Ethnographic Study)}, + year = {1956-1970} +} + +@book{balashov1995, + editor = {Balashov, V. A.}, + address = {Saransk}, + key = {Balashov (1995)}, + lgcode = {Erzya Mordvins [erzy1239]}, + title = {Mordva: istoriko-kul'turye ocherki (The Mordva: Historical-Cultural Essays)}, + year = {1995} +} + +@book{belitserandkotkova1963, + editor = {Belitser, V. N. and Kotkova, K. A.}, + address = {Moscow}, + key = {Belitser and Kotkova (1963)}, + lgcode = {Erzya Mordvins [erzy1239]}, + title = {Issledovanija po material'noj kul'ture mordovskogo naroda (The Mordva Material Culture)}, + year = {1963} +} + +@book{fedjanovich1997, + author = {Fedjanovich, T. P.}, + address = {Moscow}, + key = {Fedjanovich (1997)}, + lgcode = {Erzya Mordvins [erzy1239], Udmurt [sout2681]}, + title = {Semejnye obychai i obrjady finno-ugorskih narodov Uralo-Povolzh'ja (konets XIX veka - 1980-e gody)}, + title_english = {Family Customs and Rites of the Finno-Ugric Peoples of the Ural-Volga Region (from the Late Nineteenth Century to the 1990s)}, + year = {1997} +} + +@book{jurchenkov1995, + author = {Jurchenkov, V.}, + address = {Saransk}, + key = {Jurchenkov (1995)}, + lgcode = {Erzya Mordvins [erzy1239]}, + title = {Vzgljad so storony. Mordovskij narod i kraj v sochinenijah zapadnoevropejskih avtorov VI-XVIII stoletij (Look from the Outside: The Mordva People and Land in the Works of West European Authors of the Sixth to Eighteenth Centuries)}, + year = {1995} +} + +@book{kozlov1981, + editor = {Kozlov, V. I.}, + address = {Saransk}, + key = {Kozlov (1981)}, + lgcode = {Erzya Mordvins [erzy1239]}, + title = {Mordva: istoriko-etnograficheskieo cherki (Mordva: Historical-Ethnographic Essays)}, + year = {1981} +} + +@book{majnov1885, + author = {Majnov, V. N.}, + address = {St. Petersburg}, + key = {Majnov (1885)}, + lgcode = {Erzya Mordvins [erzy1239]}, + title = {Ocherk juridicheskogo byta mordvy (An Essay on Legal Customs of the Mordva)}, + year = {1885} +} + +@article{markelov1928, + author = {Markelov, M.}, + journal = {Etnografija}, + key = {Markelov (1928)}, + lgcode = {Erzya Mordvins [erzy1239]}, + pages = {44-78}, + title = {Sistemy rodstva u ugro-finskih narodnostej (Kin Systems of the Ugro-Finnish Peoples)}, + volume = {1}, + year = {1928} +} + +@book{melnikov1981, + author = {Mel'nikov, P. I. (Andrej Pecherskij).}, + address = {Saransk}, + key = {Mel'nikov (1981)}, + lgcode = {Erzya Mordvins [erzy1239]}, + title = {Ocherki mordvy (The Mordva Essays)}, + year = {1981} +} + +@book{mokshin1990, + editor = {Mokshin, N. F.}, + address = {Saransk}, + key = {Mokshin (1990)}, + lgcode = {Erzya Mordvins [erzy1239]}, + title = {Bytovaja kul'tura mordvy (Everday Life Culture of the Mordva)}, + year = {1990} +} + +@incollection{mokshinandfedjanovich1998, + author = {Mokshin, N. F. and Fedjanovich, T. P.}, + editor = {Tishkov, V. A.}, + address = {Moscow}, + booktitle = {Narody i religii mira. Entsiklopedija (Peoples and Religions of the World. Encyclopaedia)}, + key = {Mokshin and Fedjanovich (1998)}, + lgcode = {Erzya Mordvins [erzy1239]}, + pages = {353-6}, + title = {Mordva (The Mordva)}, + year = {1998} +} + +@incollection{petruhinandhelimskij1982, + author = {Petruhin, V. Ja. and Helimskij., E. A.}, + editor = {Tokarev, S. A.}, + address = {Moscow}, + booktitle = {Mify narodov mira (Myths of the Peoples of the World)}, + key = {Petruhin and Helimskij (1982)}, + lgcode = {Erzya Mordvins [erzy1239], Udmurt [sout2681]}, + pages = {563-568}, + title = {Finno-ugorskaja mifologija (Finno-Ugric Mythology)}, + volume = {2}, + year = {1982} +} + +@phdthesis{serkina2002, + author = {Serkina, S. S.}, + address = {Saransk}, + key = {Serkina (2002)}, + lgcode = {Erzya Mordvins [erzy1239]}, + school = {NII gumanitamyh nauk pri Pravitel'stve Respubliki Mordovija}, + title = {Obshchina i obychnoe pravo udel'nyh krest'jan Simbirskoj gubemii v kontse XVIII - pervoj polovine XIX veka}, + title_english = {Community and Traditional Law System of Appanage Peasants of the Simbriskaja Guberia in the Late Eighteenth to Early NineteenthC enturies}, + year = {2002} +} + +@book{smimov1895, + author = {Smimov, I. N.}, + address = {Kazan'}, + key = {Smimov (1895)}, + lgcode = {Erzya Mordvins [erzy1239]}, + title = {Mordva}, + year = {1895} +} + +@phdthesis{tumajkin1974, + author = {Tumajkin, V. P.}, + key = {Tumajkin (1974)}, + lgcode = {Erzya Mordvins [erzy1239]}, + school = {Moscow State University. Moscow}, + title = {Sosedskaja obshchina zavolzhskoj mordvy v poreformennyj period (po materialam Samarskoj gubemii) (Neighbor Community of the Mordva in the Trans-Volga Region before the Reforms [based on the Materials from the Saranskaja Gubemia])}, + year = {1974} +} + +@book{aleksandrovandshlygina1971, + editor = {Aleksandrov, V. A. and Shlygina, N. V.}, + address = {Moscow}, + key = {Aleksandrov and Shlygina (1971)}, + lgcode = {Estonians [esto1258], Latvians [latv1249]}, + title = {Sel'skie poselenija Pribaltiki (XIII-XX vv. )}, + title_english = {Rural Settlements of the Baltic Region (from the Eighteenth to the Twentieth Century)}, + year = {1971} +} + +@book{feoktistova1980, + author = {Feoktistova, L. H.}, + address = {Moscow}, + key = {Feoktistova (1980)}, + lgcode = {Estonians [esto1258]}, + title = {Zemledelie u estontsev: XVIII- nachalo XX v.}, + title_english = {Agriculture among the Estonians: From the Eighteenth to the Early Twentieth Century}, + year = {1980} +} + +@article{luts1959, + author = {Luts, A.}, + journal = {Sovetskaja etnografija}, + key = {Luts (1959)}, + lgcode = {Estonians [esto1258]}, + pages = {26-46}, + title = {Estonskoe morskoe rybolovstvo v XIX-XX vekah (Estonian Sea Fishing in the Nineteenth and Twentieth Centuries)}, + volume = {3}, + year = {1959} +} + +@book{rejsner1916, + editor = {Rejsner, M.}, + address = {Moscow}, + key = {Rejsner (1916)}, + lgcode = {Estonians [esto1258], Latvians [latv1249]}, + title = {Esty i latyshi, ih istorija i byt (The Estonians and Latvians. Their History and Everyday Life)}, + year = {1916} +} + +@book{sedov1987, + author = {Sedov, V. V. (ed. ).}, + address = {Moscow}, + key = {Sedov (1987)}, + lgcode = {Estonians [esto1258], Ingrians [ingr1248], Latvians [latv1249], Veps [veps1250], Votes [voti1245]}, + title = {Finno-ugry i balty v epohu srednevekov'ja (Finno-Ugric and Baltic Peoples in the Medieval Epoch)}, + year = {1987} +} + +@article{tijk1977, + author = {Tijk, A. M.}, + journal = {Sovetskaja pedagogika i shkola}, + key = {Tijk (1977)}, + lgcode = {Estonians [esto1258]}, + pages = {69-81}, + title = {Zimnie narodnye igry estontsev (Winter Folk Games of the Estonians)}, + volume = {12}, + year = {1977} +} + +@phdthesis{viaari1953, + author = {Viaari, E.}, + address = {Tartu}, + key = {Viaari (1953)}, + lgcode = {Estonians [esto1258]}, + school = {Tartuskijg osudarstvennyj universitet}, + title = {Terminologijar odstvav pribaltijsko-f inskihjazykah (Kin Terms in the Baltic-Finnish Languages)}, + year = {1953} +} + +@book{vulfson1908, + author = {Vul'fson, E. S.}, + address = {Moscow}, + key = {Vul'fson (1908)}, + lgcode = {Estonians [esto1258]}, + title = {Esty, ih zhizn' i nravy (Estonians, Their Life and Morals)}, + year = {1908} +} + +@book{wiedemann1876, + author = {Wiedemann, F. J.}, + address = {St. Petersburg}, + key = {Wiedemann (1876)}, + lgcode = {Estonians [esto1258]}, + title = {Aus dem innem und ausem Leben der Ehsten}, + year = {1876} +} + +@incollection{guboglo1998, + author = {Guboglo, M. N.}, + editor = {Tishkov, V. A.}, + address = {Moscow}, + booktitle = {Narody i Religii mira. Entsiklopedija (Peoples and Religions of the World)}, + key = {Guboglo (1998)}, + lgcode = {Gagauz [gaga1249]}, + pages = {129}, + title = {Gagauzy}, + year = {1998} +} + +@article{moshkov1900, + author = {Moshkov, V. A.}, + journal = {Etnograficheskoe obozrenie 1900}, + key = {Moshkov (1900)}, + lgcode = {Gagauz [gaga1249]}, + number = {44, 48; 49; 51; 54}, + pages = {1-89, 98-160; 1-49; 1-66; 1902, 1-80; 1-91.}, + title = {Gagauzy Benderskogo uezda. Etnograficheskie ocherki i materialy (Gagauzy of the Benderskij Uezd: Ethnographic Essays and Materials)}, + volume = {1; 2; 3; 4}, + year = {1900-1902} +} + +@book{semenov1900c, + editor = {Semenov, V. P.}, + address = {St. Petersburg}, + key = {Semenov (1900c)}, + lgcode = {Gagauz [gaga1249], Moldovans [mold1248]}, + series = {Rossija. Polnoe geograficheskoe opisanie nashego otechestva. Nastol'naja i dorozhnaja kniga dlja russkih ljudej (Russia: Complete Geographic Description of Our Fatherland. Guide for the Russian People)}, + title = {Novirossija i Krym (Novorossija and Crimea)}, + volume = {14}, + year = {1900} +} + +@article{keppen1853, + author = {Keppen, P.}, + journal = {Uchjonye zapiski imperatorskoj Akademii nauk po I i III otdelenijam}, + key = {Keppen (1853)}, + lgcode = {Ingrians [ingr1248]}, + number = {3}, + pages = {412-422}, + title = {Selenija, obitaemye izhorami, v Sankt Peterburgskoj Gubemii (Settlements Inhabited by the Ingrians in the St. Petersburg Gubemia)}, + volume = {2}, + year = {1853} +} + +@incollection{kiuru1993, + author = {Kiuru, E. S.}, + editor = {Kiuru, E. S. and Krinichnaja, N. A.}, + address = {Petrozavodsk}, + booktitle = {Fol'kloristika Karelii (Folklore Studies of Karelia)}, + key = {Kiuru (1993)}, + lgcode = {Ingrians [ingr1248]}, + pages = {22-38}, + title = {Motivy svatovstva i dobyvanija zheny v svadebnoj poezii i epicheskih runah izhorov (Motifs of Match-Making and Wife-Getting in Wedding Poetry and Epic Runas of the Ingrians)}, + year = {1993} +} + +@article{konkova1995, + author = {Kon'kova, O.}, + journal = {Zametki o narode, kotoryj zhil rjadom s nami, no ostalsja nam neznakom (The Izhora: Notes on an Ethnic Group Which Lived Near Us but Remained Unknown to Us). Rossijskaja provintsija}, + key = {Kon'kova (1995)}, + lgcode = {Ingrians [ingr1248]}, + pages = {152-7}, + title = {Izhora}, + volume = {6}, + year = {1995} +} + +@article{laanest1974, + author = {Laanest, A. H.}, + journal = {Voprosy istorii}, + key = {Laanest (1974)}, + lgcode = {Ingrians [ingr1248]}, + pages = {217-9}, + title = {Izhora}, + volume = {3}, + year = {1974} +} + +@book{semenov1900a, + editor = {Semenov, V. P.}, + address = {St. Petersburg}, + key = {Semenov (1900a)}, + lgcode = {Ingrians [ingr1248], Karelians [livv1243], Veps [veps1250], Votes [voti1245]}, + series = {Rossija. Polnoe geograficheskoe opisanie nashego otechestva. Nastol'naja i dorozhnaja kniga dlja russkih ljudej (Russia: Complete Geographic Description of Our Fatherland. Table Road Book for Russian People)}, + title = {Ozeraja oblast'}, + volume = {3}, + year = {1900} +} + +@incollection{shlygina1998a, + author = {Shlygina, N. V.}, + editor = {Tishkov, V. A.}, + address = {Moscow}, + booktitle = {Narody i religii mira. Entsiklopedija (Peoples and Religions of the World. Encyclopedia)}, + key = {Shlygina (1998a)}, + lgcode = {Ingrians [ingr1248]}, + pages = {180}, + title = {Izhortsy (The Ingrians)}, + year = {1998} +} + +@book{sjogren1833, + author = {Sjogren, A.}, + address = {St. Petersburg}, + key = {Sjogren (1833)}, + lgcode = {Ingrians [ingr1248], Votes [voti1245]}, + title = {Über die finnische Bevölkerung des St. Petersburgischen Gouvemements und über den Ursprung des Namens Ingermanland}, + year = {1833} +} + +@incollection{ushakov1990, + author = {Ushakov, N. V.}, + editor = {Fishman, O. M.}, + address = {Leningrad}, + booktitle = {Sovremennoe finno-ugrovedenie. Opyt i problemy (Contemporary Finno-Ugric Studies: Experience and Problems)}, + key = {Ushakov (1990)}, + lgcode = {Ingrians [ingr1248], Veps [veps1250]}, + pages = {1-19}, + title = {Traditsionnoe zhilishche finnojazyshnyh narodov Leningradskoj oblasti nachala v. (Traditional Houses of the Finnish-Speaking Peoples of the Leningradskaja Oblast' in the Early Twentieth Century)}, + year = {1990} +} + +@article{uspenskij1845, + author = {Uspenskij, D.}, + journal = {Finskij vestnik}, + key = {Uspenskij (1845)}, + lgcode = {Ingrians [ingr1248], Votes [voti1245]}, + pages = {1-19}, + title = {Ingry, vaty, jagrjamja i savolaksy (The Ingrians and Votes)}, + volume = {2}, + year = {1845} +} + +@article{zolotarev1927, + author = {Zolotarev, D. A.}, + journal = {Trudy Leningradskogo obshchestva izuchenija mestnogo kraja}, + key = {Zolotarev (1927)}, + lgcode = {Ingrians [ingr1248]}, + pages = {1-42}, + title = {U izhor (Among the Ingrians)}, + volume = {1}, + year = {1927} +} + +@book{cheremin1909, + author = {Cheremin, N. A.}, + address = {Moscow}, + key = {Cheremin (1909)}, + lgcode = {Karelians [livv1243]}, + title = {Ozeryj kraj (The Lake Region)}, + year = {1909} +} + +@book{efimenko1877, + author = {Efimenko, A.}, + address = {St. Petersburg}, + key = {Efimenko (1877)}, + lgcode = {Karelians [livv1243]}, + title = {Narodnye juridicheskie obychai loparej, karelov i samoedov Arhangel'skoj Guberii (Traditional Legal Customs of the Saami, Karelians, and Samoyeds of the Arhangel'skajaG uberia)}, + year = {1877} +} + +@book{kiuru1993b, + author = {Kiuru, E. S.}, + address = {Petrozavodsk}, + key = {Kiuru (1993b)}, + lgcode = {Karelians [livv1243]}, + title = {Tema dobyvanija zheny v epicheskih runah. K semantike poeticheskih obrazov (Wife-Getting Motif in the Epic Runas: Towards the Semantics of Poetic Images)}, + year = {1993} +} + +@book{klementev1983, + author = {Klement'ev, V. I.}, + address = {Petrozavodsk}, + key = {Klement'ev (1983)}, + lgcode = {Karelians [livv1243]}, + title = {Karely. Etnograficheskij ocherk (The Karelians: Ethnographic Essay)}, + year = {1983} +} + +@incollection{klementev1998, + author = {Klement'ev, V. I.}, + editor = {Tishkov, V. A.}, + address = {Moscow}, + booktitle = {Narody i religii mira. E ntsiklopedija (Peoples and Religions ofthe World. Encyclopedia. )}, + key = {Klement'ev (1998)}, + lgcode = {Karelians [livv1243]}, + pages = {225-7}, + title = {Karely}, + year = {1998} +} + +@book{kochkurkina1986, + author = {Kochkurkina, S. I.}, + address = {Leningrad}, + key = {Kochkurkina (1986)}, + lgcode = {Karelians [livv1243]}, + title = {Korela i Rus' (Karelia and Russia)}, + year = {1986} +} + +@book{lennrot1985, + author = {Lennrot, E.}, + address = {Petrozavodsk}, + key = {Lennrot (1985)}, + lgcode = {Karelians [livv1243]}, + title = {Puteshestvija E. Lennrota. Putevki, zametki, dnevniki, pis'ma 1828-1842 (Lennrot's Journeys: Travel Notes, Diaries, Letters. 1828-1842)}, + year = {1985} +} + +@book{majnov1877, + author = {Majnov, V. N.}, + address = {St. Petersburg}, + key = {Majnov (1877)}, + lgcode = {Karelians [livv1243]}, + title = {Poezdka v Obonezhje i Korelu (Travel to Onezhje and Karelia)}, + year = {1877} +} + +@inbook{maksimov1997c, + author = {Maksimov, A. N.}, + address = {Moscow}, + booktitle = {Izbrannye trudy (Selected Works)}, + key = {Maksimov (1997c)}, + lgcode = {Karelians [livv1243]}, + pages = {279-311}, + title = {Proishozhdenie olenevodstva (Origins of Reindeer Husbandry)}, + year = {1997} +} + +@book{malmi1987, + author = {Mal'mi, V. V.}, + address = {Petrozavodsk}, + key = {Mal'mi (1987)}, + lgcode = {Karelians [livv1243]}, + title = {Narodnye igry Karelii (Folk Games of Karelia)}, + year = {1987} +} + +@book{nikolskaja1976, + editor = {Nikol'skaja, R. F. and Klement'ev, E. I.}, + address = {Petrozavodsk}, + key = {Nikol'skaja (1976)}, + lgcode = {Karelians [livv1243]}, + title = {Etnografija Karelii (Ethnography of Karelia)}, + year = {1976} +} + +@book{surhasko1977, + author = {Surhasko, Ju. Ju.}, + address = {Leningrad}, + key = {Surhasko (1977)}, + lgcode = {Karelians [livv1243]}, + title = {Karel'skaja svadebnaja obrjadnost' (konets XIX-nachalo v. ) (Karelian Wedding Rituals [Late Nineteenth to Early Twentieth Century])}, + year = {1977} +} + +@book{surhasko1985, + author = {Surhasko, Ju. Ju.}, + address = {Leningrad}, + key = {Surhasko (1985)}, + lgcode = {Karelians [livv1243]}, + title = {Semejnye obrjady i verovanija karel, konets XIX- nachalo XX v. (Family Rituals and Beliefs of Karelians, Late Nineteenth to Early Twentieth Century)}, + year = {1985} +} + +@book{taroeva1965, + author = {Taroeva, R. F.}, + address = {Moscow}, + key = {Taroeva (1965)}, + lgcode = {Karelians [livv1243]}, + title = {Material'naja kul'tura karel (Karel'skaja ASSR). Etnograficheskij ocherk (Material Culture of Karelians [ Karel'skaja ASSR]. Ethnographic Essay)}, + year = {1965} +} + +@book{zherbin1983, + editor = {Zherbin, A. S.}, + address = {Petrozavodsk}, + key = {Zherbin (1983)}, + lgcode = {Karelians [livv1243]}, + title = {Karely Karel'skoj ASSR}, + title_english = {The Karelians of the Karelian ASSR [Autonomous Soviet Socialist Republic]}, + year = {1983} +} + +@book{ahmarov1907, + author = {Ahmarov, G. N.}, + address = {Kazan}, + key = {Ahmarov (1907)}, + lgcode = {Kazan tatar [midd1325]}, + title = {Svadebnye obrjady kazanskiht tatar}, + title_english = {Wedding Rituals of the Kazan Tatars}, + year = {1907} +} + +@incollection{ishakovetal1998, + author = {Ishakov, D. M. and Muhametshin, Ju. G. and Suslova, S. V. and Urazmanova, R. K. and Halikov, N. A.}, + editor = {Tishkov, V. A.}, + address = {Moscow}, + booktitle = {Narody i religii mira (Peoples and Religions of the World)}, + key = {Ishakov et al. (1998)}, + lgcode = {Kazan tatar [midd1325], Lithuanian Tatar [west2405]}, + pages = {515-20}, + title = {Tatary}, + year = {1998} +} + +@book{pinegin1891, + author = {Pinegin, M. N.}, + address = {St. Petersburg}, + key = {Pinegin (1891)}, + lgcode = {Kazan tatar [midd1325]}, + title = {Svadebnye obychai kazanskih tatar (Wedding Customs of the Kazan Tatar)}, + year = {1891} +} + +@book{putsykovich1900, + author = {Putsykovich, F. F.}, + address = {St. Petersburg}, + key = {Putsykovich (1900)}, + lgcode = {Kazan tatar [midd1325]}, + title = {Tatary}, + year = {1900} +} + +@book{ramazanova1991, + author = {Ramazanova, D. B.}, + address = {Kazan'}, + key = {Ramazanova (1991)}, + lgcode = {Kazan tatar [midd1325]}, + title = {Terminy rodstva i svojstva v tatarskom jazyke (Kin and Affinity Terms in the Tatar Language)}, + volume = {1, 2}, + year = {1991} +} + +@book{speranskij1914, + author = {Speranskij, A.}, + address = {Kazan'}, + key = {Speranskij (1914)}, + lgcode = {Kazan tatar [midd1325]}, + title = {Kazanskie tatary (istoriko-etnograficheskij ocherk) (The Kazan Tatar:A Historical-EthnographiEc ssay)}, + year = {1914} +} + +@book{suharev1904, + author = {Suharev, A. A.}, + address = {St. Petersburg}, + key = {Suharev (1904)}, + lgcode = {Kazan tatar [midd1325]}, + title = {Kazanskie tatary. Opyt Etnograficheskogo i mediko-antropologicheskogo issledovanija (The Kazan Tatar: An Ethnographic and Medical Anthropological Study)}, + year = {1904} +} + +@book{vorobev1953, + author = {Vorob'ev, N. I.}, + address = {Kazan'}, + key = {Vorob'ev (1953)}, + lgcode = {Kazan tatar [midd1325]}, + title = {Kazanskie tatary (Etnograficheskoe issledovanie material'noj kul'tury dooktjabr'skogo perioda) (The Kazan Tatar: An Ethnographic Study of the Material Culture of the pre-Revolution Period)}, + year = {1953} +} + +@book{vorobevandhisamutdinov1967, + editor = {Vorob'ev, N. I. and Hisamutdinov, G. M.}, + address = {Moscow}, + key = {Vorob'ev and Hisamutdinov (1967)}, + lgcode = {Kazan tatar [midd1325]}, + title = {Tatary Srednego Povolzh'ja i Priural'ja (The Tatar of the Middle Volga and Ural Region)}, + year = {1967} +} + +@book{znamenskij1910, + author = {Znamenskij, P. V.}, + address = {Kazan'}, + key = {Znamenskij (1910)}, + lgcode = {Kazan tatar [midd1325]}, + title = {Kazanskie tatary}, + year = {1910} +} + +@book{aleksandrov1900a, + author = {Aleksandrov, N. A.}, + address = {Moscow}, + key = {Aleksandrov (1900a)}, + lgcode = {Latvians [latv1249]}, + title = {Inorodtsy lesov}, + title_english = {Non-Russian Woodland Peoples}, + year = {1900} +} + +@article{anonymous1869, + author = {Anonymous}, + journal = {Vilenskij sbornik}, + key = {Anonymous (1869)}, + lgcode = {Latvians [latv1249]}, + pages = {223-43}, + title = {Zametkio latyshaht rehi nfljandskihu ezdov Vitebskoj gubemii}, + title_english = {Notes on the Latvians of the Three Infliandian Uezds of the Vitebskaja Guberia}, + volume = {1}, + year = {1869} +} + +@book{cheshihinvetrinskijv1901, + author = {Cheshihin-VetrinskijV, . E.}, + address = {Moscow}, + key = {Cheshihin-VetrinskijV (1901)}, + lgcode = {Latvians [latv1249]}, + title = {Sredi latyshej (Among the Latvians)}, + year = {1901} +} + +@book{efremova1982, + author = {Efremova, L. S.}, + address = {Riga}, + key = {Efremova (1982)}, + lgcode = {Latvians [latv1249]}, + title = {Latyshskajak rest'janskajase m'jav Latgale, 1860-1939 (Latvian Rural Family in Latgal)}, + year = {1982} +} + +@book{novoselov1911, + author = {Novoselov, Ju.}, + address = {Riga}, + key = {Novoselov (1911)}, + lgcode = {Latvians [latv1249]}, + title = {Latyshi. Ocherki po etnografii i sovremennoj kul'ture latyshej (The Latvians. Essays on Ethnography and Modem Culture of the Latvians)}, + year = {1911} +} + +@incollection{shtraus1994, + author = {Shtraus, V. P.}, + editor = {Tishkov, V. A.}, + address = {Moscow}, + booktitle = {Narody i religii mira. Entsiklopedija (Peoples and Religions of the World. Encyclopedia)}, + key = {Shtraus (1994)}, + lgcode = {Latvians [latv1249]}, + pages = {220-223}, + title = {Latyshi (The Latvians)}, + year = {1994} +} + +@book{trejland1881, + editor = {Trejland, F. Ja.}, + address = {Moscow}, + key = {Trejland (1881)}, + lgcode = {Latvians [latv1249]}, + title = {Materialy po etnografii latyshskogo plemeni (Materials on the Ethnography of the Latvians)}, + year = {1881} +} + +@book{volter1890, + author = {Vol'ter, E. A.}, + address = {St. Petersburg}, + key = {Vol'ter (1890)}, + lgcode = {Latvians [latv1249]}, + title = {Materialy dlja etnografii latyshskogo plemeni Vitebskoj Guberii (Materials for Ethnography of the Latvians of the Vitebskaya Gubemia)}, + year = {1890} +} + +@book{eljashevish1994, + author = {Eljashevish, B. S.}, + address = {Moscow}, + key = {Eljashevish (1994)}, + lgcode = {Lithuanian Karaim [kara1464]}, + title = {Istoriko-Etnograficheskioec herki (1926-1929) (Historical-Ethnographic Essays [1926-1929])}, + year = {1994} +} + +@book{firkovich1969, + author = {Firkovich, R.}, + address = {Trakaj}, + key = {Firkovich (1969)}, + lgcode = {Lithuanian Karaim [kara1464]}, + title = {Karaimika v Litve}, + title_english = {The Karaim Studies in Lithuania}, + year = {1969} +} + +@misc{hafuz1994, + author = {Hafuz, M. E.}, + address = {Moscow}, + key = {Hafuz (1994)}, + lgcode = {Lithuanian Karaim [kara1464]}, + publisher = {In- t etnol. i antrop. RaN}, + title = {Karaimy. Istoriko-etnograficheskieo cherki (The Karaim: Historical- Ethnographic Essays)}, + year = {1994} +} + +@book{kefeli1992, + author = {Kefeli, V. I.}, + address = {Pushchino}, + key = {Kefeli (1992)}, + lgcode = {Lithuanian Karaim [kara1464]}, + title = {Karaimy (The Karaim)}, + year = {1992} +} + +@article{muhlinskij1862, + author = {Muhlinskij, A.}, + journal = {Supplementt o the "Gakarmel" Magazine}, + key = {Muhlinskij (1862)}, + lgcode = {Lithuanian Karaim [kara1464]}, + number = {38}, + pages = {1-14}, + title = {O karaimah v Imperii i Tsarstve Pol'skom (About the Karaim in the Russian Empire and Polish Kingdom)}, + volume = {2}, + year = {1862} +} + +@book{muhlinskij1902, + author = {Muhlinskij, A.}, + address = {Odessa}, + key = {Muhlinskij (1902)}, + lgcode = {Lithuanian Karaim [kara1464], Lithuanian Tatar [west2405]}, + note = {2nd ed.}, + title = {Issledovanie oproishozhdenii i sostojanii litovskih tatar (Origins and Current Life of the Lithuanian Tatar)}, + year = {1902} +} + +@inbook{shapshal1995, + author = {Shapshal, S. M.}, + address = {Moscow}, + booktitle = {Karaimskaja narodnaja entsiklopedija, 1 (The Karaim Folk Encyclopedia)}, + key = {Shapshal (1995)}, + lgcode = {Lithuanian Karaim [kara1464]}, + title = {Karaimy v Krymu, Litve i Pol'she (The Karaim in the Crimea, Lithuania, and Poland)}, + year = {1995} +} + +@book{tuhanbaranowski1896, + author = {Tuhan-Baranowski, M.}, + address = {Warszawa}, + key = {Tuhan-Baranowski (1896)}, + lgcode = {Lithuanian Karaim [kara1464], Lithuanian Tatar [west2405]}, + title = {O muslimach litewskich (On the Lithuanian Muslims)}, + year = {1896} +} + +@book{vjartsinkjavjachus1989, + author = {Vjartsinkjavjachus, Ju.}, + address = {Vil'njus}, + key = {Vjartsinkjavjachus (1989)}, + lgcode = {Lithuanian Karaim [kara1464]}, + title = {Etnograficheskaja vystavka araimov (Ethnographic Exhibition of the Karaim)}, + year = {1989} +} + +@book{grishin1995, + author = {Grishin, Ja. Ja.}, + address = {Kazan'}, + key = {Grishin (1995)}, + lgcode = {Lithuanian Tatar [west2405]}, + title = {Pol'sko-litovskie tatary (Nasledniki Zolotoj Ordy) (The Polish-Lithuanian Tatar. Heirs to the Golden Horde)}, + year = {1995} +} + +@book{shimelevich1905, + author = {Shimelevich, M.}, + address = {Vil'na}, + key = {Shimelevich (1905)}, + lgcode = {Lithuanian Tatar [west2405]}, + title = {Litovskie tatary (Etnograficheskij ocherk) (The Lithuanian Tatar [An Ethnographic Essay])}, + year = {1905} +} + +@book{beitipa1995, + author = {Beitipa, L.}, + address = {Turaida}, + key = {Beitipa (1995)}, + lgcode = {Livs [livv1244]}, + title = {The Livs of the River Gauja}, + year = {1995} +} + +@article{hillner1847, + author = {Hillner, W.}, + journal = {Bulletin de la Classe historico-philologique de l'Academie Imperiale de sciences de Saint Petersbourg}, + key = {Hillner (1847)}, + lgcode = {Livs [livv1244]}, + pages = {201-6}, + title = {Die Liven an der Nordkiiste von Kurland}, + volume = {3}, + year = {1847} +} + +@article{koppen1847, + author = {Koppen, P.}, + journal = {Bulletin de la Classe historico-philologique de l'Academie Imperiale de sciences de Saint Petersbourg}, + key = {Koppen (1847)}, + lgcode = {Livs [livv1244]}, + pages = {257-61}, + title = {Die Bewohner Kur- und Livlands im Allgemeinen und die Liven ins besondere}, + volume = {3}, + year = {1847} +} + +@book{sjogren1847, + author = {Sjogren, A. J.}, + address = {Weimar}, + key = {Sjogren (1847)}, + lgcode = {Livs [livv1244]}, + title = {Reise nach Livland und Kurland zur Genauen Untersuchung der Reste der Liwen und Krewingen}, + year = {1847} +} + +@article{sjogren1849, + author = {Sjogren, A. J.}, + journal = {Bulletin de la Classe historico-philologique de l'Academie Imperiale de sciences de Saint Petersbourg}, + key = {Sjogren (1849)}, + lgcode = {Livs [livv1244]}, + pages = {1-26, 33-45, 49-70}, + title = {Zur Ethnographie Livlands}, + volume = {7}, + year = {1849} +} + +@article{sjogren1855, + author = {Sjogren, A. J.}, + journal = {Sjogren sur son voyage. Bulletin de la Classe historicophilologique de l'Academie Imperiale de sciences de Saint Petersbourg}, + key = {Sjogren (1855)}, + lgcode = {Livs [livv1244]}, + pages = {268-72}, + title = {Rapport de M}, + volume = {10}, + year = {1855} +} + +@book{videman1870, + author = {Videman, F. I.}, + address = {St. Petersburg}, + key = {Videman (1870)}, + lgcode = {Livs [livv1244]}, + title = {Obzor prezhnej sud'by i nyneshnego sostojanija livov (Review of the Past and the Present of the Livs)}, + year = {1870} +} + +@book{aleksandrov1900b, + author = {Aleksandrov, N. A.}, + address = {Moscow}, + key = {Aleksandrov (1900b)}, + lgcode = {Moldovans [mold1248]}, + title = {Stepi. Bessarabija. Moldavane (rumyny)}, + title_english = {Steppes. Bessarabia. Moldovans (Rumanians)}, + year = {1900} +} + +@book{kantemir1973, + author = {Kantemir, D. K.}, + address = {Kishinev}, + key = {Kantemir (1973)}, + lgcode = {Moldovans [mold1248]}, + title = {Opisanie Moldavii (Description of Moldova)}, + year = {1973} +} + +@book{pljusnin1899, + author = {Pljusnin, P.}, + address = {St. Petersburg}, + key = {Pljusnin (1899)}, + lgcode = {Moldovans [mold1248]}, + title = {Bessarabija}, + year = {1899} +} + +@book{postolaki1987, + author = {Postolaki, E. A.}, + address = {Kishinev}, + key = {Postolaki (1987)}, + lgcode = {Moldovans [mold1248]}, + title = {Moldavskoe narodnoe tkachestvo (XIX- nachalo XX v. ) (Moldovan Traditional Weaving [Nineteenth to Early Twentieth Century])}, + year = {1987} +} + +@article{salmanovich1947, + author = {Salmanovich, M. Ja.}, + journal = {Sovetskaja etnografija}, + key = {Salmanovich (1947)}, + lgcode = {Moldovans [mold1248]}, + pages = {209-33}, + title = {Zhilishche korennogo naselenija MSSR (Houses of the Native Population of the MSSR [Moldovan Soviet Socialist Republic])}, + volume = {4}, + year = {1947} +} + +@book{zashchuk1859, + author = {Zashchuk, A. O.}, + address = {St. Petersburg}, + key = {Zashchuk (1859)}, + lgcode = {Moldovans [mold1248]}, + title = {Materialy dlja geografii i statistiki Rossii, sobrannye ofitserami general'nogo shtaba. Bessarabskaja oblast'. (Materials for Geography and Statistics of Russia Collected by the Officers of the General StAff. The Bessarabia Region)}, + volume = {I-II}, + year = {1859} +} + +@book{buch1882, + author = {Buch, M.}, + address = {Helsingfors}, + key = {Buch (1882)}, + lgcode = {Udmurt [sout2681]}, + title = {Die Wotjaken. Eine ethnologische Studien}, + year = {1882} +} + +@book{busyginandzorin1984, + author = {Busygin, E. P. and Zorin, N. V.}, + address = {Kazan'.}, + key = {Busygin and Zorin (1984)}, + lgcode = {Udmurt [sout2681]}, + title = {Etnografija narodov Srednego Povolzh'ja (Ethnography of the Peoples of the Middle Volga Region). Part. 1}, + year = {1984} +} + +@book{dolganovaetal1995, + author = {Dolganova, L. N. and Morozov, I. A. and Minasenko, E. N.}, + address = {Moscow}, + key = {Dolganova et al. (1995)}, + lgcode = {Udmurt [sout2681]}, + title = {Igry i razvlechenija udmurtov: istorija i sovremennost' (Games and Entertainments of the Udmurt: History and Modernity)}, + year = {1995} +} + +@book{haruzina1898, + author = {Haruzina, V. N.}, + address = {Moscow}, + key = {Haruzina (1898)}, + lgcode = {Udmurt [sout2681]}, + title = {Votjaki}, + year = {1898} +} + +@book{hristoljubova1981, + editor = {Hristoljubova, L. S.}, + address = {Izhevsk}, + key = {Hristoljubova (1981)}, + lgcode = {Udmurt [sout2681]}, + title = {Sel'skie poselenija Udmurtii v XIX-XX vv (Rural Settlements of the Udmurt in the Nineteenth and Twentieth Centuries)}, + year = {1981} +} + +@book{ivanova1999, + editor = {Ivanova, M. G.}, + address = {Izhevsk}, + key = {Ivanova (1999)}, + lgcode = {Udmurt [sout2681]}, + title = {Finno-ugry Povolzh'ja i Priural'jav srednie veka (Finno-Ugric Peoples of the Volga and Ural Region in the Middle Ages)}, + year = {1999} +} + +@book{majer1985, + editor = {Majer, V. E.}, + address = {Ustinov}, + key = {Majer (1985)}, + lgcode = {Udmurt [sout2681]}, + title = {Semejnyji obshchestvennyj byt udmurtov v XVIII- XX vv. (Family Life and Everyday Life of the Udmurt in the Eighteenth to Twentieth Centuries)}, + year = {1985} +} + +@book{pimenov1993, + editor = {Pimenov, V. V.}, + address = {Izhevsk}, + key = {Pimenov (1993)}, + lgcode = {Udmurt [sout2681]}, + title = {Udmurty. Istoriko-etnograficheskie ocherki (The Udmurt. Historical-Ethnographic Essays)}, + year = {1993} +} + +@book{shkljaev1992, + editor = {Shkljaev, G. K.}, + address = {Izhevsk}, + key = {Shkljaev (1992)}, + lgcode = {Udmurt [sout2681]}, + title = {Traditsionnoe povedenie i obshchenie udmurtov (Traditional Behavior and Communication of the Udmurt)}, + year = {1992} +} + +@book{simchenko1990, + editor = {Simchenko, Ju. B.}, + address = {Moscow}, + key = {Simchenko (1990)}, + lgcode = {Udmurt [sout2681]}, + title = {Udmurty}, + year = {1990} +} + +@book{smimov1890, + author = {Smimov, I. N.}, + address = {Kazan'}, + key = {Smimov (1890)}, + lgcode = {Udmurt [sout2681]}, + title = {Votjaki (The Udmurt)}, + year = {1890} +} + +@book{vasilev1902, + author = {Vasil'ev, I.}, + address = {Helsingfors}, + key = {Vasil'ev (1902)}, + lgcode = {Udmurt [sout2681]}, + title = {Übersicht über die heidnischen Gebräuche, Aberglauben und Religion der Wotjaken in den Gouvemements Wjatka und Kasan}, + year = {1902} +} + +@book{vereshchagin1886, + author = {Vereshchagin, G. E.}, + address = {St. Petersburg}, + key = {Vereshchagin (1886)}, + lgcode = {Udmurt [sout2681]}, + title = {Votjaki Sosnovskogo kraja (The Votiak of the Sosnovskij Kraj)}, + year = {1886} +} + +@book{vereshchagin1889, + author = {Vereshchagin, G. E.}, + address = {St. Petersburg}, + key = {Vereshchagin (1889)}, + lgcode = {Udmurt [sout2681]}, + title = {Votjaki Sarapul'skogo uezda Vjatskoj gubernii (The Votiak of the Sarapul'skij Uezd of Viatskaja Gubernia)}, + year = {1889} +} + +@book{vladykinandhristoljubova1984, + author = {Vladykin, V. E. and Hristoljubova, L. S.}, + address = {Izhevsk}, + key = {Vladykin and Hristoljubova (1984)}, + lgcode = {Udmurt [sout2681]}, + title = {Ocherki etnografii udmurtov (Essays on Ethnography of the Udmurt)}, + year = {1984} +} + +@incollection{vladykinandhristoljubova1985, + author = {Vladykin, V. E. and Hristoljubova, L. S.}, + editor = {Kuzeev, R. G.}, + address = {Moscow}, + booktitle = {Narody Povolzhja i Priural'ja. Istoriko-Etnograficheskie ocherki (Peoples of the Volga and Ural Region)}, + key = {Vladykin and Hristoljubova (1985)}, + lgcode = {Udmurt [sout2681]}, + pages = {75-107}, + title = {Udmurty}, + year = {1985} +} + +@book{vladykinandhristoljubova1997, + author = {Vladykin, V. E. and Hristoljubova, L. S.}, + address = {Izhevsk}, + key = {Vladykin and Hristoljubova (1997)}, + lgcode = {Udmurt [sout2681]}, + title = {Etnografijau dmurtov (Ethnography of the Udmurt)}, + year = {1997} +} + +@incollection{vladykinandhristoljubova1998, + author = {Vladykin, V. E. and Hristoljubova, L. S.}, + editor = {Tishkov, V. A.}, + address = {Moscow}, + booktitle = {Narody i religii mira (Peoples and Religions of the World)}, + key = {Vladykin and Hristoljubova (1998)}, + lgcode = {Udmurt [sout2681]}, + pages = {559-61}, + title = {Udmurty}, + year = {1998} +} + +@incollection{borisova1924, + author = {Borisova, A.}, + editor = {Bogoraz-Tan, V. G.}, + address = {Leningrad}, + booktitle = {Staryj i novyj byt (Old and New Everyday Life Styles)}, + key = {Borisova (1924)}, + lgcode = {Veps [veps1250]}, + pages = {59-79}, + title = {Vzaimootnoshenija polov u chuharej (Gender Relations among the Veps)}, + year = {1924} +} + +@incollection{etoeva1977, + author = {Etoeva, Z. I.}, + editor = {Shennikov, A. A.}, + address = {Leningrad}, + booktitle = {Etnografija narodov Vostochnoj Evropy (Ethnography of the East European Peoples)}, + key = {Etoeva (1977)}, + lgcode = {Veps [veps1250]}, + pages = {125-39}, + title = {Poselenija i zhilishcha vepsov kontsa XIX- nachala XX v. (Settlements and Homes of the Veps in the Late Nineteenth and Early Twentieth Centuries)}, + year = {1977} +} + +@article{makarev1929, + author = {Makar'ev, S. A.}, + journal = {Karelo- Murmanskikj raj}, + key = {Makar'ev (1929)}, + lgcode = {Veps [veps1250]}, + pages = {6-10, 31-2, 38-42}, + title = {Vepsy}, + volume = {1; 2; 11/12}, + year = {1929} +} + +@book{makarev1932, + author = {Makar'ev, S. A.}, + address = {Leningrad}, + key = {Makar'ev (1932)}, + lgcode = {Veps [veps1250]}, + title = {Vepsy. Etnograficheskijo cherk (The Veps: An Ethnographic Essay)}, + year = {1932} +} + +@incollection{malinovskaja1930, + author = {Malinovskaja, Z. P.}, + editor = {Bartol'd, V. V.}, + address = {Leningrad}, + booktitle = {Zapadno-finskij sbomik (West-Finnish Edited Volume)}, + key = {Malinovskaja (1930)}, + lgcode = {Veps [veps1250]}, + pages = {163-200}, + title = {Iz materialov po etnografii vepsov (From Materials on Veps Ethnography)}, + year = {1930} +} + +@incollection{morev1924, + author = {Morev, N.}, + editor = {Bogoraz-Tan, V. G.}, + address = {Leningrad}, + booktitle = {Staryj i novyj byt (Old and New Styles of Everyday Life)}, + key = {Morev (1924)}, + lgcode = {Veps [veps1250]}, + pages = {45-57}, + title = {"Staroe i novoe" (ocherk iz byta chuharej) ("Old and New" [An Essay on Everyday Life of the Veps])}, + year = {1924} +} + +@book{pimenov1965, + author = {Pimenov, V. V.}, + address = {Moscow}, + key = {Pimenov (1965)}, + lgcode = {Veps [veps1250]}, + title = {Vepsy. Ocherke tnicheskoji storii i genezisa kul'tury (The Veps: An Essay on Ethnic Culture, History and Origins)}, + year = {1965} +} + +@incollection{ravdonikas1926, + author = {Ravdonikas, V. I.}, + editor = {Ravdonikas, V. I.}, + address = {Tihvin}, + booktitle = {Tihvinskij kraj. Kraevedsheskij sbomik po Tihvinskomu uezdu (Tihvinskij kraj. Local Studies Volume on the Tihvinskij Uezd)}, + key = {Ravdonikas (1926)}, + lgcode = {Veps [veps1250]}, + pages = {242-261}, + title = {Chuhari (The Veps)}, + year = {1926} +} + +@article{jazykov1840, + author = {Jazykov, D. I.}, + journal = {Russkij istoricheskij sborik}, + key = {Jazykov (1840)}, + lgcode = {Votes [voti1245]}, + note = {translation of Sjogren 1833}, + pages = {300-325}, + title = {O finskih zhiteljah S. Peterburgskoj Gubemii (About the Finnish Residents of the St. Petersburg Gubemia)}, + volume = {1}, + year = {1840} +} + +@article{keppen1851, + author = {Keppen, P.}, + journal = {Zhural ministerstva narodnogo prosveshchenija}, + key = {Keppen (1851)}, + lgcode = {Votes [voti1245]}, + pages = {41-67, 100-46}, + title = {Vod' i votskaja pjatina (The Votes and Votes' Region)}, + volume = {70}, + year = {1851} +} + +@article{konkova1996, + author = {Kon'kova, 0.}, + journal = {Rossijskaja provintsija}, + key = {Kon'kova (1996)}, + lgcode = {Votes [voti1245]}, + pages = {164-7}, + title = {Vod': <_cC#{fKoJZceZzOx3@8+@U(DsvvG3dVCH7#V4|>gcXxKLfS>r=T%nGMt@C@5J8F%9pWvs|z5iyB)&+rYMrlK^9Q0^du? zk&qzDXxz!Q`iv2ecJBS+C7R+Io^YM}`7_vh*e5`ueBPuZI8gU(JIDjE$$hH~8N_9TCKh zYQ2#A|NC^&bM)hFu8F`eB{mj?+i7c~;14q*U^rfB-?J+!A%RxpLpn!Ex{SHk#f*@c zC;d}mN(!hZYgo&RgupWzqP1DlvA$ zg(d`M=4`mPYL$CSLd(d-H0k^^84M-+mzaGH+^;I?T!Rr+OHPpif+#RX?YSwzqN?U< z>U$?!LZn3vdmY?Z^Z$H92~d!vib9ws{a@aQ{L=+B#9z_A;eUc&Vt&cQzwAox*#0*5 zoy}~`o)9uQ>t#GvIc#BpA1~o(FF1R%!DD+RUYA$x`pmn#yK4^1HV@uVWeZ~ZIZfF3 z=ql>i{gzE^?$$gxN{l1S#A$Hwrl2iD5P~~>6c_Wr=wAkuEd0=mA=@UZ`Ch|OV^%Eu zBMF3oLJKaOPWJjW{@zqsw1NnjAW<&h#T_E0RIE5Oz?p&hw+!Bm*5q+ACV&tF2mm2@ zXMG_sXB|G@ha&r5A#jEU`fTR~#VIOYsE|Qdg-7QLCHY{&Rte;d`whF+NPvVh9jQ|@ znC~-Zft}eQi=&Y>2mW>Cs|KV<#JGD2++M1uLR7mZ%67Pi)(UQ!zTu6EbXORatE`e& z0f$fH8QdZP*erh1LHYMmP*b<;AC{W3dpMTfy$sn`r8<9Be58~T1W@h#rec%B8YQhs z2@994DJlJ9#m>%7Amr=brT7I8S-mu;Kbe}5pE_lP*L!8pP8a|igLi<9Q~|}L*9sSu z4?txSy1zXz<(y+Bkio(Inj#qRwQ{x1i_mgvD zB%S*mZk+pg%3@`iil=-5f9lKgEM-MhborA(8fQ0+iu+}DA>?rIV#Yg-OC(`VkBm_k z9A^XBpnz4U^)laF-PGwBDjiexpdbrN1&6S0Jz>FS#Ms)V!-;|*xFfK<{da09pFwig z53$duwzAN{3M=13XidlL8z|5FF)SN&5nu;3G}>Ld-rDuQ;YiX52t@t7* zSPDblFIVT2ph!ScSoWvgB4V6E7)rG>uQ*Jzuhy@QYfa3}uf67+3Ti=#mJ;KK0l!B6 zC($%KBx20B==s^Rc(<-I6a6}-{nV#LK1jEqmbj7aE?0lC;mfh6v8L#x6fAc02c=dz z<%{`&=Loh&x$6md9~MgAoD$kjr>(YqB&kU1008TMxA;rTii-fZo04!5Bf>FKd<2$~ z+1E&5b@^BsTZpE|j?7JD3uIyf=;-J;Z^nOZ|0BK2?#p4N$exH2^rbzsun<)tm)}1E z6c{T)>!)G;@FETyis^elMS(THqV;zu{Z|?Tk98xQWqnM%2(Vuj@2pr?UhGM=`@wDiT)bifrj5c18YS5>6; z=YodZx!xf`oc~Gwd!qSbDj5<4>c!!_DG9vUu|Ron2ty|Z0j~4nZ%P4N@!lSoXO$a zKdL(-=eV$S5y}QgJZ!{%@BfC;GzPxEcE#^|YsG}hqmM{rBQ5szB2g!v$S`GD6wa5; zu9&p^tAXu7jg`uIHXBK=Y|2@5=fzM!CC?A9BaIc3?-<|1;g|iKnEso}=0XbH3v$b~6UUttZ1YO` zIcYKyW)2lUJ1OajVzytOyMk9u_a2*Scb<+esJOV&`rgjhM(uY&2!~UdLnRsdQ;7g^ z-f!R(s(6)b(%j{H+3bQ-{zek@zaKiQ6=zo^CGzWvz8Gj#)dqSJ7A3?PS)y~_qe@p+ zR9p8Uk#wdgL5!_Oyj?iQ_SeupoZ@N;p~sapNTEi$WVB}IUjC5^K4jRztCm1OdCaV^ z&?gGH8U#(FKoB{-#E1WA%sSY%T`Nkl(})I2rao&-V77tB$vl?$B758^dJH{6LFJAh z1)JuG__ZIr^~aGM*(d5hFd`JMS~CJ*sQ)RPoU(Vk)x@|i=U=^kCfQ1}yIhS>vGrr= z58omyUR#;512f5`b1MN50i9M^@wD77zNHw;1>IZ0Pr2lE&ujH$R}ov zX8Q|@p4RVpQhxjZWiVI3f*33g9GUPqDrr=>f=6tnmWvuQMKA`eIrDAjE7joP6r>P! zun17uX+pu9(3unLh%T1)+#HQ0*)I>&j%^WBQzimaWPOm}IMn#+NB5;h92ed;)Y29P zuUog8Q#F>rFC!g0ullnpC%NpEl)0?9HAC{8ih1xVLh{@kSc0{XVuBqo9Vt?cfk(rs zptxOyF}?JuA-FpUt!d-$d>?hk0Z6`_fD0YX45N%Kva7Z9Dp9q_cQ>}lgiEr9t+Tc* z`_|Iw&lT*7)|us|B}?TlMIo?|-V^QVSN!^yabN-0$PYPErew3|1jur+j{s@_3kv0> zbW^F;lg3go=sMAxbfZ*j#IcAv?JfKN{IF-d*+UMZ$wWAj8qC53&^sWffGA>E@Bc`R zCd?R%i=h(tbRbN~Aj1tPQJjh~C9%V@C#$d>8{%wko0<#$Eq~`F!2`;g&QP-827`0k zm70yDUU|E#CS<%=&1HCcpDg)2S^>w69@{>#T(uGR@9l=F-I;Jky zdDr;9s6;Wp(*+m(YnC1bMJpdJBj2mOdBwnFUq~*65_q61sYe34lq@STBQ_P(lBo_o z`|wxmKz?qNn7Dl+Q^|2yk{6qcha(XDEywZ603p_uAc9RIN0OQk&DVULl@1yJOXl=F zItxLQ8C6+j6rURd6OVJXG1quYR`CrWCY=>1iU2GyMaDOs6O=h7;jYDxy3#Tyw6zs{ zy?>#>Qu|f@k3c4}DKU)++i5{o&NZKI{)h|#{B+TkMi7UDO^fEZ(c4GITx)XjYg+X7 z9;TEeq_p~Nt?VrtLxwVhN^QJd)j%ei!&n3MTVP}*13EP|*YDrYa~@)9Y9!(jcgE+V zL`X3K){VFZjS?SP)$>GycSo?MZYB^!;i>TEZG!4Ff<^DZCh%~Yp{S*WH8QgJd+GUj zODHZim6ucT-z0e&&N3k)adKh$v6Q6i0*Mo%!``t8x7^R3YQ`p$rf~^>4;e~O+XZ22 zXN|^-LM}>!ZKnJPp?0XM8_&Cl@Yd+#)f<$zRc%ZppyT|8n@)iEWi8pgBr&oob!W&g zF)dAo7rKOtD2-W6H7r`dbX!Sh>lQ^1*pE$0M+YYRlE#E6>PXZ@oM6}G^cj8nN5&kR ztz)C29^du&x0jZ$pE+J6|EsUB*OR_Xc-V$ciIJ5%Ew>d$-S%agv5*9FWK+tPaf<*y z9kzf&$+Mtv>8LbSS}IG86J2lXz~=!V#x>-?VoDL1t1p&uS zv=!McQ^2a2!+Z)W4)7?^{&Ul-prFaJrVgOO`x2B1U$3yhTY-bkS59>CPWjsjHZ%KM zU0etns@B2=A=uh>^O9(RF;X+S#%G-rNI<5AxsTog$)@H39k?v?0{?zln{D4aHbROv zFKpzun?|z!^3Fs_V5ep>TUIO`JWQ}?v0-^CMslo5b$N2j6^hF{E(AMIWPwMBG|8ki zBCU<*-u8jsvXe5SmJg zbjVirUfJ_k({!&ues`?%kjT>dni-IUlWRam@v-;WZJp&SW`L}WwazFriIz@VZ|pCA zIL(ZP)fx%TU{NW2_D&UqaF0PuR2}rBWMhhX`jlghdL8rKJ*Ig!!$>?NcYx?ZK_iW* zYKy`*HtT4!vb>2rLO*AifKH-unFK1f`G##&l+VQfP1+Oa_1{qC=m&DY-HGCGB96Qv zF4br)C2S*tDJs6%oS*`KDGz*T?0h+ACnFrR2{)cET@8oY35PUoYQXX6U70w7=vclF zE1hv$W@MYZ`y^}P578oLPgZOMah*6N)e^ZD=}}_t0v?>G?IAYbKwF}`u=s^Pv?F9d zoL}Xhr^l{6)CTOFFF&*Bga0NSl;_vUpVNzFIbbuuV@lx%6-(gn(yjZ94ELT8u%VGk zH1(}%H+r#ZjXiy(1j0$1BK^n*Ni<^qigRcF;kS&_D!^>iW*{hl)ri;6q_3Td;8_*? z$jbo_x1=$Qt*VzEoqh*JLk}K80@QtO5-aga0AlUo#5T^9Dq27?Jpw#cEJ>!cloV*M zVZazxGD#H&u}@^<`}b)_9&8kwYHb|_ov;YrvP>7VPBYGNx@ZN7#R?b6f3U#x+FBap zpNA^+CYz6bNTfwt5#o$RMn6)To4t2;s|AF`Vo4i~z@BwH_1tQQ_ApF~7C&v_5~yve|4tAqmEmih zQV;4W!@-_@zo3XRhvXPE z|6$MV8$%MOI9So+^6z>yEdq0Cj}Ft4=RZ+VWj*!UGUgH`U}ekaVO^8K`8%|ct#J(E zsPijy;@%``$x{7AsL9v@fO`sR0)fE3;3?-|V354`7 zF{2=O1)Wzzg3pJ~$kLvN3~Z((e>pqqv%wkO;-rXLA3 zxS8VJ<>sFVtQWNUDI1)M8k$3>nIb|(ByJrr8w0c?9)US&5$HBS4750KkbzJ+N^@E2 zsoZfB{fMx%G&GuL;y~emFR(RtH2RMsi=J#v)n7)fhm{Q1sd*FeG8qUvx@7j2x1)2x zRVZgySAyT_41lEM;*yc`h2o9~b^+?b%%!`~-Vez{BYQ(LM^%JCyg}!s= z|NF`D>zCXtd#b`=b#3k73G-s*JnP1mFyxGXztved{O;SVv*7zxrQ`PgR?Sh_6M;DNec zD7lUB-Vlxca_`NV0pKCCqsxhynM`Kl?!~j&RU+CI(xJp!t*W&%a*Din1=}D{4Wu3c zOsHm@HR_7F#D%cvUlQI~=}7a$My=0MPs9Dw3h@dEcM}4uR#9ZG$~#Xj!4+uj*EM<&EY9}d*QvN96UNJ=LCer}|h7l|&UV3adEBkGj1 zQI+gj&w)Rd5tWjH-s~)a{`a@)lFjY#{Ptoq+wZa~!LY|yT}$`pXU=@&6bppILDdPrZ6@`z(NVzK>}dP1F%f0ow@IV8J>kbhORIt#UpbSl&2sPZksl^V_OAY2rP ziq(Lb&(p*}f`ib7;30;^MKUaGQUrCuur#c&G^9#a65ePNS+SAuwvL&7(G$H`@gEM^ zTI$^vq{+afbvsr<1HX$)W>Wv(ftRwS{PDzQW7aDjPDTh~6c{FUI*AUNDu?prb$MGv zRr}N-CAn<%RMaLfFTiH&Uz4M#@F6>_o~v+bNDedu>lY~VeL!=};qpaFAG=IGHf7^sqsDmX8P;nQrY>7T|=g6F(ac#^UZv=%#NciOb z9K2({5WOYPbjd$OGT03%rXg^Cfn&~7qAN7f3IKCq3!h`i&e6z9q)ITjW4j$WnC>T{ zB&T@Qay}M7a$8+kKU%$oyhU03W`%@%UH3H-cXnLl8HM#v${9x>qvU`wdwqq5V@*#q zglFjshRAeGRS$@ZVknWV^C< z-DZSizUXmZpVl>@6WG0UdW_g_Xu}6>I$F-nvvK4^2GoV%>1 zjI$KunEw^A#!FTUEiDCMT7NxTtdTO@F0bb zZb8SWvx!XoOT%X#_LKT%se|@eeDjgNYPPouwxOtaC#BjRgkt{2a77VTkOsYfFzmFV z@_vuQi^^VMy}+*vEQ)2)co0VtU|y$n)4WY?dVx;-Z}nMXau<=cl8YBaoP=R+LCx;( zoxpu5xon~nJX+}>Mf4@5;i^08dAp&iC&WyO786O*)7QbXd`^XE$y!6Z)gC!ml%Q{W zRubQ!*{W&m<9c!#C-vC7`fdGK@@*_IvK>4e*>Stx zysTCk$pw#ZpV&DfTpl(*Ob)r0o7WvLHac>?tyM7Ta%PK#K408=+{1$qUf)@@s%$dA zH}?qeL;tbW5kqnx?*{kB9qS+j1gU=P#DB2)GqkEF>E*8S$CSPfl6dCSNb$#Y4QB~) zkS=D9?N7tKnEHK>rO|x1Hst}qqApNFO%3~Gljn2W*AepHh;~?*nv~VDU`iDoQqc?) zgb4yvKqAUr$%ZGznf#q>2Bdh(YB9gZ<6rcIm<&Z+CG>rSn$aprEO7R|UdxjOp0RP` z;y6zWIn5Vc{(IY83=J`_h?Lz+7O2_B0oB`E&}Z9`C|>N|?FAS55H3hl(hfydkj4av z$$~xL9CvGo5Iv)qGtqYUil7_Eu=m&VS~1y+F}Q(dl%g5D=x<$mk;?TcMg;o_AY$Fn zMID52i?3|uUZAG;fhDB0Cp#~5F2}>@+74E0$K*X6DRiYl6Q^}`Q3P$HKbAVdhEA!G zNSieDLDcPO!aW=a;c!*a4#&wh5q1=a7$7P@dlo&mpNV~uV--foVpYsacL|c-y=Wz) zU43{Ak@Rv=0$I?|{C(%>!S&5vf}M-b=K}is(roLcy5k&`a8VlJFDXQQQHg8yG<@~3 z%zin(s*QoZq-d)nqj451=a%t&G^IFa2yN@iCMLL^UBP0Z@f%I6dv303vWg4zSMU`# z$G@M=p({ItC-g%P>1pc6BIgN#1t#gQD90uMp0+#bN*n%YGLR-(@qnRmB1nN?siDdp zGH|8|MILS0Hg6Uh&4){mzC2u^hf(P|nEXPWWt6h>znEJt5YmK^O)zscU=B%`w2-xW zz=efG(b2Y0GKz6#EA;dxMs<>9oqc6e5-7zkr*eH+Qck_K5HrK!{|C=wdqcl4wQyjDAe}7lx2s#ke z3BK~YzYY4EQ>VZAcqQJlCSO<_R6@x{aVMvc4v%=)I~X;v_5b|KJn!KqZps0u598*j z&sMNBmFt2Q5KUmB5^79d-#BvqPAJ4nXs}$rst=@DOFBp$eS7QFla*K3@8Q8Z#o{N-|FQ%lZsk1`Li%>|lvOK2_e7O#)G{S{v><_+~@<-F^c$Hl?gI zmV}62A+>&ZK=^D6$oxQ+SN_B|@*msiK>qgv<9?DXyIlKLe~1cGKox_bB@X7T>en=g z6MHaC53$Zt^6!pggBdXYg$VXQiWaY4`vb6-sa2i{NF?M5Lql+NphmgOR&uB@-Wz3y z^j`8Aj-`GNoG9>NDs&+WHk9tA2*asd66}wI1H01v4VfJ?p3fJ`(@%pg%_3?8 zCG0f|#>6>+0d1-?rU;(#d+fR1YM{=AshOf{ie|SV45Mrar&Z#QOnzO~{=%A*-Kmxokz=ZtW~*y5q94_`^{MLl$i< z?jd(`J1?#9Lok!}M|%vjftoJq!x*_mYP&7Q_@g2pSb^~Kc8F8nf;n!it8@65SME#o zkZ&yLBCj&Y!9Ab4HfKW7g@)Or$w&TD-w<#Qt{OZbS;zl*E?QGCm?<*hF0vBdpEPxonCD@Aq;Hsoc z#khqKfrf@sT|%}PDgu;TWKs_Z4ekBWY-({_`ry@^&C1R8Pk3_pm5)Q`)B$!b2gle+ zvEW!6`&$`%18wm(4UtZw!a~8R!=L;bBeD`v;@^{PNJ3A?ws?!san%E^1yqeT&80_? z5jCTRF5Dr*KkAqeJ~Pp{F{sW2(LCx5GwoMY)^?B2&WcC5hFJPuXJQFI^4r@}zr8&t zeg8hrv;8XL;P54dHgL2$gABk&9}kaNSx5=;Xpt~9tkZ(7ScJ_gL-A`z(rd@i^n@gT zY;{W!xj&Rap-ABw1*&!D{+lrW#!H42DE>=Va?>{k;wT- z>sF2T6jTMj)aOsSoRiv>5fFW3&~)xQuL~;#j-C7)`o&7^$T&Yha$m97BV1K!;5jcK zB(vQOCZ!2{@pVab?Q61NBAuhEh#!KNOc|_R-?h3*FO{%}J_HEYcP@6gx~e(zGVSjd zH=jJ$o{In zf|qz>0%3h?W9QnLKaQ#elb7f>r)wDN8;Ixa$;ddAn zf-z48kQca13J=P{%up_zVSylV%w$Z-2h(^B(XR^NVGCm0ZS?yw>-on|9Vd*=o->f$o z8viSl)%SYW8}PeH90oC1bWoQ1ibjOXFe=hqoQHSL`d^lfJjSL{R6FUC3SdcwUOasN zSBssU-0eoZRfy@v=Yd`oi zx#_<@15mJ`Vq1ZiLXMp$d9kDdu?ZqS!UpD^SP_Cc`N>5-y2+s0N<=CFXtENCcNp}D zQa~Y@jv+ zz-RuH<2g8(2M*GtOjVRAZ8u$9p^|G2f0v4q**m3XMkA+7A#p06siFeNG*)T6;G&Uu zZ4tc0N-3JC_gqN@Ym`IuG97T@9V>-O8ZYPSlKpjv_)(9Ix3Hof*nHURJi+MUW zwI!S+<~YLczOA6HzdP&pR|HbYhxrk;(WHn2O4(e!6(uqY6SIZ{BOcv3Vlz)TxR$8Y zw|%o;2w}aO_QkYtbQRGmr*MRE5@!4$gpCVPGt223y(%b3XVXFto@@k&tDQx~VM*al&8?uDA7hV0CFh@sxmW*(`arj>^cNV30++E;WS8aY{WBBVU z7JC=HMv-N(BZ78X|fVOFNT=V}KExp4W& zRU?y0OIE$EB8jIqxtyG>tg@GBgN#N8^pugll7y^;=I)yE>&kO&VkE=f@O^LD=bAG8 zQ0M$2lTq5KN6_b!p5@u0B$c53DNgSLUzq{y^#0#V zL}fKrYrfe!XnU-Zk!?2Sv?B#JF5XljxKEBC0BV7BJslBRHl)@L?9>}K5D<@5uIb`C z_1v*J^}QilSm5&JdX_5Xj+bQo5KkcM7+%G#_YyQZ1lqkyVc;SQd5>YJtsZ$#sDE zqOQGNQrb{hFbkCoTKTTDLU32D!HFLKM{22##pL!_yeuRPBLsqt=;a|xuYZ9=z=bly(3QT&@1eA~8O*cg z9f~gU7^JSm_v5QkfFMotrJ0s}l8!nMTdU|YX^4_wL7qyWHAV2(mE)MCfC{oB>Te)eadFjLJ%j$-1o|_&&)%c>y8!ha#z&dos%H^ zjFGTDw4l5_35TCEU*T4nW&DOGLL5!$%|+X3Utx4PH1mEh)|YW~*^}cj`OWe%GD#uF zo5?pId6>&?$@wS!*v(JI1QT}2W$;e@&$SjwduFuVhFh`mQM6jZx0=|&h*cG%yv-x= z1lXiIiYTS9qWI(0zgGG!wnAp33I}&QTYpm3l^ohGQ)m^3?bE$K-taSdoVcJ7v!^At zg>@jBifd!hX8ZGfdCgs;jXEEcg@uQ8GNPhq{)85jOBAdIw%DQy%Q*Q8nO3?pVsa!D zR;M{Ae58s&x%jfsFp(J>vfyZJvg37Zo?Xhey)Y+m}RQ7cjW2w5-j_lXv+&AY? zrzT>oPF9Ti`xTpDg9Uf!THAU~y?=oPKtv>Y5Yx$@GdF#@>)wH|9_ z%6M8;Q6VAMcusy1 zI!(jOBW4mEiK5Vg9X>y;DA2$dH0~ZJFTM}A)jjSdq?wzWH#645&_xfrjFHa{8sVMY zKB2;g6$3xZ$_iX^BdLmQ6$A}YCJ{LmTHzDm{eHBbfA^jp@w}PdBKmkgbCcI_PQ68l zz8InatxWTuAgXkFFk(TdgU*zIp(lkO{%CGTGY9Q^@pd-~mwgXp9v&Y0?(^=~*F>Xh z={^$Ia&nJ%56~f)VN*F|`P!n%Nq4Mh*|9X{g2C3Pr=r6_(G_nw$RMY^y)-luK(Xp4 z0MA=rgEAIP3le}{B6axw=-2?q^ntUpSjE6#x~6SQZuW_|%mBM&Ne9gWHYb z$Nt|cCxDPp8f4~eBaS%fuwbswP{u=5=muMV*)j;i%T-dp4wA*qZV$Zi5I7t9?CVBz z*ZfIQ7BL$HBgVa4w%;%dKkWzVd!CfM?va1&W?B`R5YwatzrS@gdaScoCz-w;UNqMQ z#V}}5CZ|L)|AU7eM>MW@_%`=v`f1+05CN4+Ori1T;N>?Meq zxbD<95<&j0RXw^$gi5I_Eft408CXEaj*D9>b*b{{kx2;g@c~5HSwTg~OMMFF|6(N| zm4R8v3qH>?FncP`RW`;=&#g8x0ztIaGP6V+$x-7tyG8|sfuBZwmQUy`Zad0-+^qs< z^{P`je4#1Ij()1Egd}LlZ!cbuDgLphOU}nf-<6Z={(Otgw-;Nne}u21sw%0UlLDdH zTJ0*L8@%XhlfJjfiKQERqsM(SaQ9UE>?TS9o9pX^BWZ)X+t62jV>=&s<~)V_<$bN^ zN+)QpUV_1SbPQ9C8dMp=fWwKyp9gyG$M}9v1j>)3;JY&H1WJ$pROmNv^~5<06|21r>f)k+^jV2K8^?iZ%b}FmQF*XALWs5U^M@{H99? zCRY~5*+ z*z7T2z^RQih8TF%st7pi88 zE{I8)!dxbXfdwt~t^rseZ%Nsh@~LNcd@9mvt9#q~^@^7FqJ7WXWr^wRo+k6^Uf|-- zD6!KYNFpha&rqOI;Pn^r{B~*5l&Pn&S5b4k{xSb;PU zsi3W1cy&0}aYPS`#W3UsgL2$pcFNNqant=M3kB@;enGVCyW`y(jWZjS#9t`#^FnHK zJXri{v{ObNxF5}E>HM(C0~u8>220-2fw0=4zYgq^ZR6(Di1Ei|S5~!XH+>%gBR)q4 zLxYkr1g!bzzAc@#9Hx(~kjEnW8S4aF6Z}@PBH{b$zS7sET!krqNtTqQjFpVaAD^Fk zPsZ_R!gVZG8S&=;?(4jToms26kCln;n|VsjMVY z61u}mXEqoamQ8^W0hC##HwXAlPbX!0yocY1d@g&e8rJm~%#8fbVg6%?KEc2{Pn2Z* z>N5&tU}W?;t>Jn4TUEzoiHIb_xfiVt`*-NCWcmh(yh9HEpCdi<6fgiKRiA zcI6Qr1L>vUYAuCQxP#4OYYnIoWy>KHeXK62R0|qm&DD5pENo+AvM6_b2d}6hKJtmp z44zxcCX(YnIpf%b2Ar?g){w*Yra5^xzXA~w*Jj0)zZE^ zdbIUe{Z~jFLpwB^tqON4iz}wZZmHh(F3YoLx!aH>!1uxQ+GWh;@b(0vl462XcA79% zcju`&I_)d#c6v`Q3xwK}f_wHF*6d$9y$LyHo{%qlK0c|JD%d=Hx1r6IPz}pIC4X;! z!(L9{i#{A7Ta)lD9Q?N@U@|1q%{#hUCG3>Ls5c#P7Smyy>U zT8JtSfj1@Jr)!2tJPeLj%n|@IHYWFH%lG0D=qMYG=$V;A_tk!{*QTGfs&cgz??WSf zgB9m{iZksZy?+vNbkb_s5iw`v=`?MbOe9ka-b@AZeT2{q_@A}AtmtiW%l8oKaydavGj{lx(0ZC8Bsfx-FEm}Dn`@2Yg{twwe7PPYpOl2A zL{D4N;zf$pPeOJXavjq60X>-q<}U+A$ruFMYRBfAhwN(8TqNAwbp#;7E&YVp<(3YFNLS*+*!v@j z@V!r}pj@}msdeTbS)kIXubYyf3+2g4g&@QZ)_wi6%7LNyKR9H+)*N;8qsvR=ww_B0 zZuBmJ8I{w(Vrw?cTTmEBXuQ3lM@II9S0o67p+JUH%Mc_jHDs#AN@VU%idW~^P_aga zdr>ffYY5#}A~4BqU#Q13|5yz~WU?fT=>Tj;HEwRJ?z&Fh&e-VU{Oy#A6Od_SaydtRQtXe-F4%-a(>v-RR#!`YJk0ib{1du5m37DMwdEqsNx1iKp!cxNC?OadR?MF|tn60;B zb$U*(MdWVwSrer$ikXBN>**XF7Ui~?48z`qhWdU+F4B@F!Brs18#=A~2&%NrVYMIt zAzXAExd^|U5i1FuH{(J3!6XA+W_up4@0Q&l`P%_f)^lW2W-MPH**3hkr}ceLjMjQy zcSk1an3?ywF1PG9Jdbietea{E@-gtOEOr}0A-+IJYSU%<7N&w&^#>WL(l#VjOPbCr z8xcvMEBDFM$eP7#(JlX~of~Wa_s6nL%KCZlG)jj}Vm1v7dvN{FCAk$1%JO@{BD~gf z)91u~TB|=X#q3OlJ7>nQC)tF?iWP(1%2sTi8|{$0b*p_^--ax5r$eT&fi%F6 zZ-97S%ER<;bPX+Xrg~{psxTU^>gXt6uQo@lIsYT%Tuw@OFpk_^$8x=rvxr(KBZf@2 z{2mNy``-CW6$Rp5_N2~^wpyh?7|xnp%sBi-GAY3N?}dSdj^~Qo^-M!6VrWt)^#u|Z zHo*!KU;l3Q!mL=Z41IRj2h}x=H%iEbM5V$Wt2;ebd&227iWQAIMKa(%MB07)pkT;h z>_nH0(xtXQ#L-E#MxAGrrxaM|ke?l~ZE+revvTLRyzMyJ%9qbz7Q8+-bBOPQ;2Qqz zzz3mO;TQg8eK*yzNyBp_@<73u+gqB9K%MY?@30|wX*XWj5EE|P2>L2q*g=eFneRBL zI}8$-VzBJ=LJ_LUO83c}BMKDp6DyqnewT-k=EePW}z|=6H z!H9ilHcV(666OSdVHid0b-=_88S2cecN`?OnFCUD-uNH?*|cv}&S0X0=lDT-i`>5l zaq#CY_SViUgRC=vQMCr@<1QrzlRLZcp3ALSW+|xDKiUE1tF!Yd;3Nw1+$~w9x(@*s#s(wJ0i(e-TCysd{WWzo4 z7IxsL=E(k6ZA9WfFyDTh7EIbpnK;B+k1EF zvg~W4Qh|Kqw>g9}R0sh>4+a4sG3B`Bd-`RR+y}^Al{ONCudb>(kZGl~w`z4MVmt)e z-E;UaV1+zYB7SfQgi?xcGtV)~mvw7V4KUYdp~|T3lJN!l0mm2>$OwBPM72xuHOxlB zp)jd?Ge5!;Jhire#C}Z4?tBotzV7&6vLR}!b8ypRxTe-cV@_5q48o6JMbiY5_ zG3mF1ulB~yTHaBJmpo-;VYFff`vn=-+pr2ngpCmLSR{0_`pNN9m*gNe_7qxlF@)gN z4IkvAUWsH1z5xkWkl%p;u7;-BT_^iengAlb;&v=^W;ya=0#$UFA&m6RKm@t-{0M%V zUk|#lH+jsW)W^ldN+@w61b_ebEr|dPCqkZFif7izUIIFJ?|Kjcjz!El$$PFbARXU- zl+&vHbk<_EK~vTqjWRSuTi}sSr{0bI_9{l+`cDguc$qXstT3<^V@48|Vk@Ed}|1~b-imtXypNX{dgyP4DwS8aV z^!>y7#&b128s~`8TxwXc^rMG3*OCWurnkA5eQW&eYSmX7h(Od-A}FegoBEqhf|Zmv zillAGJid0s&d!eC{_9u0&l0$?f!s?qjHUVY@$~@2E)KMqMG23V&!{k+_EJN!%!CC# z9f#*V!Ct#wF^K08(1isQvC-7};ksXgh^}1rf4g*lyt6|h8qxPYXOZ%L!?xw$mfx)F zlFrxp9>0Y985Gfki_LjX)QriYin3Pn&&@)XO_?9>4;~j?mmhR=+K~$#c7%!RLna)o zjeRMYZ?KDtj&gSHNR0W+_6eP89;4BQP8B?V$x6u`hR&DinXXmN@ie>@%EKSy6P(z- zBjw=5#d_y5S71$`#Raj*`1?~DIw4%Hu?9zqX2eRk!!-d0%eRpDD$YHc24bMXQD+K` zSV5Y(#F~xC*))L3F5w_z)VVK;kS+g2MXRc*LtjM=dy~7d%zEgcm%5XArQL-XBS4zJ zP_OOyTf&&Qt?lpYf=Z&67Q-{oNoLyg7?(eL_d{)rIBI*adoMNu!he*7lP0-8ogu`N3ginK*y{IO!_Qo!?3p%Ul*v+Zi4%E7Cstt2z?dp0U)*4L9 zrYJ;gw4*7GGLxnj2eIZXW6|2dApOt1qLCJMo2ea&k5ST*xkd`-+{qzd6NdCqvnvM} zI!=;^ik*1;BB)s&fCI*n#;nale0_Rtj!?gU|2|)Q7rYu~l8Pf5+==iy+wBoDtV{6P zeoG|}eC4u@toJ%P#-5Q%c4Z}lb(_dQ{#lXYDrz%?+e5gg%$t`%-WfhC{FZ7%o44^- zaK1k0h`{5vB5?(sx}GTXLOPj(gChyT6B=_9SJd7&+MAJ%~52Q-j$z4R9I2Y>ke%xIXP2`JpVC)do4Rr5dy2NHPK*jH{OJ+UC4dw zvJc33iGk0*yk;7S3nFZy5Ocpy5j*)$30!`Y6pPBv>5Xu?-~LgomsgOhUXK(EJSkoo z;$wlF0y+Iq70;%x>#EG`w8^emEs4rPp>k7yBEhhFC*GId95%d`0CU1J~ zevVld;MV*<9GzuURb3Z_6%py~?oKbA(j_I*-3Ul`zS7;D0us{FjdX)_cXMfwj&J)p zhGX~x2lt%2&)I9O`OLX5kdAaR&j+2M3ps9U9wAdoc5736D{gBPOiTga-aH(2uW|t+ zqto8=0QfAjdRY-YJ+OsJB5@|sd}Vre`T@GYkfhavFm#Q7u{E;y>cN&k0JZFoAH1@%-$dK;yG+%x zVni;wKf_`Y61q6UImS~>&opb*TD~E5QljjeHaAeJK`6bGpyk9YVC4owhAr`_aR^ZK;5k|D zNf?^RGDiD$QVhmam4qY#cmkT;Hzxg2;_#gS$NAljCNuz)*S-+4_CG&e3Yg`$ck7>p zFPiah^OfIGG$^xb{zZ%?`bx!G;WJ#ZV!JiOG``h(IktYYV}>2noHuOFFN7ywE8NLVGuJO#VvQA5y>eA7OGBJv3Al7} zhjGP%6D{8c`aFpteTy904(mVLynNY-Sg1+!+zcyEXVGqqZCLZoAhK(9tPEbPmG}nQFz~#xWO$iwdh~vgMz2gnb-cV2U4*Lk zDw@Uk9R;XqekGyH4Rau;Q062XTfgsX%vxUl{7JPuF**74&)<)8F2Sf-BWD=-9tQ;} zOYQ#X#N4*bD=ij4ydOXL#0FTN9Bgdt_iiUGEVL2!nmZYG$-p8A#_DlYm)FHaUy|g{ zb|#}?S1eoIgMS8|eDVJajR2fvox!0pyrU}R6*Mn_m@WS(xb9*6KlHrbQx&zHz8%CW zN0V1EP4CDr_Z6mOm8#BmGz{vzvcb0%)VzqeJN^<1hW2360syrNr0Qx+S((tJWI;`Y z!1a7dI5@W{g3Kkp0_8}2^eBkX)79|pP700S{rpy@Lmxrv$BA?A;bfL&S11cmVN(FJ z74b3Md0R23W9(hVkm;;VlsV~|2t2irSoMNrI#nd0{l@vNtZWz+6I0yPRiKb(ojhw( zwqysZ#lhsxF)iZ5L!IANX=S_N@uJ69TIiyI_x-_Krq{{Gu~gwKkj!D*?0f+8fgOK4 zt6^<7hvzBb8&%9kd`8aK%!WLKt=~52)A!U}B@%O{S^0350#~$4SeE>OloKT=s7Nh| z-m385N)VkzIeXrGo3Q+lO!HZ7=cI*fF9>h7YwH}7j4Wgh3Rdk|H?6~}*<74CN?s`W ztEMIfWWwq8xI!uzimXstBOZC@SQAveIq<&memI7CzRZzcXmmj0&LGj7gNF;)-ub(J zP;|OGK((ZC<(7PLh<>Rt4C_J^PfEL@+*2$n8+CF`s`TGXX+vC6l0*vYV7VYRRms>Q z3|VQ!s01}pR`O8b2V7C=TncI$ZB-I}?CkQ~@+%nxc4LYDY}TyY*4FTbwdd4RKQQDD zr?VS?4US9;?5wqGb$wNq%YwXLa(U{v)(n*R`aa|_GkKJDc_Sla;AgYWDz@ZG5NYfD$A|J~|A7N15i zDhWtT^ON_Yun(kafv}IH6&b?zAq!h3Vh^H`44)LE^9gHYrQ)eUYwrYxI1ynnr;m2G z%TAR}-6$^`L3kDpvsxB)^K^mhB5p4k(xe`N0w=cuJZpkZDfb8G?g+4AKMH6X<}0B7 zy%9XhYCEq#B$VBb>T%#B4}|-7|A;4kr}fkP6Bf=Q1H&R~^M7g?V$4j7akM-ovcpv~ z9KNw}cctIE=0=W7(um@zI|;Tvmp!;1Eo{NR=F$fiz`#&eYEy*6M@*d|&cjy1_&<3I zxxmMcmJn}RP`DUGs{>Co^~If5-tRda@1!N(>$EM#`uVy+ea`dwZm;n?n8^KZr=J&E z_T}MG-{i>8cZt5{*XKfmM{Rwt9hQI73_()1FJBly6EdjleZF97UU+(H+sFGGj0sMG z1U7tkmLHQQ=;2uUlwRm?$Uvv6u0C?w;ny^bXrLFuv&R(Wa2g*9{FF7`4g7ohRUrkI|V`iaQZTeQ4#Dzb_z~L>L@U1e_&7XxFzp=Z$ zoPH8F-Qg%6{WhJs#RSXrzTe-l@YxO7Pg@`KGi=L2ErkJLZH;~LxyA)==T57IAV5no)>*xuFvDFyGj3#W3{^0`J!Rx>Ly7dJ7-9WH6Bl z-v1ZDDx9)a^s(oQb?N=^*w(pwn$UyJ&=8{o|1q)O;{+gRdn-F^zgJJLkBhue45w6z$CI_i&}(-D^gG+Qom*8NU5OFjE48Vk3R)p z9s@w`$*(DkDVMC$ism4IYKHz)EpmLm!;4KzlJxZzW*ha4lZ?RSa6Pg=>3G4FiXp9+ z7iz!TeYibtF!R0~75Hj(t)^x&oGh1Y>;GSq)~C2*IHCaTPIGt@9!Yy`&QF_W&E}d! z))6r7PlPmTMnl%l^)m~~922zzR*aQcECiG9XWuWW^#7tdhJURy)K$h3e;$H!L>t9R z1hP0xX$E^<2BW%qxiICq8K&>F{hZ*mVz-qYG}I^$@yeS`B~qf`k>O>(g#WaX08j_o z*`2_+!}Nr-(|Ir6RJo2DC=IuPKDERF~tLwUhnvsp7^1daxub zE4y)2GfqK874Z1@*ZZvV9ewzS*Qrp8G&36qDygEt@h3(`y^)+3la{Z$<2n7ZblC%Q z1|6dq(h|cuLEVf1gaQU~a90Ciy)sVfQ1pqC0<1AwNbR9SCog=t%QUv^{ zYU1o#G^S$QUC}{yqol|NK^mmX^Lg#=j@1DUTdpFk&a-6=P1lP81j5F=DSDoKPw$Yw z=jHh~ta$?X0Q3}7w3qi#C0EUAYbAEGp{7iq>p@-jjWhup0gExTOy7I6M|L}5Dydq% zFj4r<0gP?}!A73Sj%U-By%Kv_<~2%HZ6*qNdv}AVlLG<8*q;XzznJGg^4IVrQ5mBiC+?m{x(`F=ns&kQp>{t*zaS_mz;Qr)z=5uWn$Re11_{>9}UyVa%z0 zoi5lM6L?)5OBKfM_(T>6F#kM?yKm_J7kLV>-lUlbgFj5SIR#pG3Q*GDMd*vCAR|fk zvIYWbxiEid>L-1v9m?%)62D&_OZhm zC{aTUu~4`ZTXW)Ts+dl)c-dO(9|8fUMN6)X2#b>irJ4=4RC}3DaxGsG5fK45XWGlp zgV02!f->=~Sb<5}$0PoJ3^)S9f8-he948-l9s0gc%?N#6y%j(oF2T-Re69nJ6*W;E zs;ww889m8(KHMo8g=hX^OTF+DQr4mv4k27B3fu3RF^)`LL4c$Btlmt|=7xb<>Mr=2 zov%2~3w$;DP3)pYu z@DSu2B`q(r{`euWN1emgGs_qz!i|ZNzqrxWk@ib$pT0TAv_;M{Pa?$`3(1cycPw_! zv2A*Nv3zzDS!!>aRWE*UdAoTTcKporp+WMwUz zd&q%nj}a;FrE#G!9kGmi^F7W-O-Kx$8pB98JEoP`t7uN7q=ds_?EU8jT$ZQVKW?(- z(7vQ)zvD1aGMfNYcBedghBInPNg&GK-`m#jN{BM~NXSEai6S;ouGLR+nn=|j1kS`~ z9#Ipk|I&4v3~elk4vzkyh{b4Vhw*=-L-NXHXexju7Q zzK3*_3EDxj<)XM0rWmvW-Leh`<}h-IYrY---5IpXIvDwG89m+K>;acLC4~uk$)*JN zf^2Q@!OF~k3*<6#L%$7`@j1xjE-v_eHHk{6mKg#+Og!=WLkEYW=;(@=P(y;OE1FO! zV8PD#)RM^w3O@4@-UuYt)Uizw?u%|RVH;T>R1LyX%zq}u@sx)mm&GyTgRGQnLZgxY z#t=@sgHe81&oKiuZ*fTb<@q7!64>W2`^lJy8c+zQV=meFVVu}_6iqsvInbN1c)?$KX6C%Y!swnJ_huLC4r2L8@en{|C3mBV zWP-A^c19vQHukrUT}O9pXTa^LpTX9z{*y(ewn&HX6KRqL;^oW1^*b)>9Intekq}@-TW+ac1BC zylv9LeIE~J!cOnCoaNCK*qz3{VJ{~?%)nIIvr#owW6|K#{HOilgvjka_4u-^cCiC% z1IZPMnjaRpmHz6Y|0i7v<8^(&(#FVd3})eT%Hn)$?(03?(Sb{C}=ad9I|- zJPN*e{R4#5!EK$8ChMk(5gt<0(C=(^Av#!Uu&^NOWThC!^tpfZure(zkpkrAtMo!u z9q5~XP!IQ4#(rat__Q>c2HP*dkQay!lvsNrFZ6h5he9rv9^~X5pLjgGG~-YD3L3Ve zOB@N{ibBAGyEx9fe{VH<-@ZP~GdMJ~n-{UjdR|12_;2$`pd}ryR=Y#SZ{i7ZMfmoO ze@WSsdO9`>-TZtrD$2|2X6%RCsn0`uQp(&fqZ%Y5=W5TaO4WYO`MQEPJxg9UlrDja zz&tTOUu$3KWZeUe@c5f1pjBn~nhqE+uwqt~)YWl`cx(-4%d~VMmr}MJPp4pmZ!$HV zkKLI)!3d{JNJ|^wof*#aX3^HRu52lJB={K<5|(I!ghxrSzW}M>c-Y2}jn$3-l zD=#s)vLH}`Itkvcm%sabQHuW%Lm_?-*(eEhTn*(}CFMS3h_^Gsi2& z!bRnM&(u%EvvK>5x4lWef{4iLt;_k^%FOKF(37;cw;@0*ZVE(XMl6vo$+0bhcaF=;8%^8M_ z4q%91uRUa^rM0hJ$YSH-VvvzZi-|oX7r_BT*asIEu8x;yfqbdDtgrfWF74Tn5TovU zw`R0{6tx9SM%Aq(`tqbfwzyatQBQwzI?33CJf7Vu*)XghoY0bz&I=aIRYOjm$ca}j z?fV@fcW2@tu9EL=TXnJRn!qBnlcZs-4_fIr;B&LGd>~AQnEDZ}P?1EDx6JrG!P!GM zC^o^;?%uh;LYA6uZSo(@V0wi<;9lmVk_2aGBszYDo-u?R3a4U;Hh_oee@&9ALzpDi z=WJ!&kP9^~iWK9{NXzdtKbtWYF|vuOo|t_!`^aY`7os&U9Yd-hXGNHCnF2A~=E!Q_ zWu=fMH$~L_X;WI!`^}&E0H|H$J<&KeUNCxiASv>*+Ft+8>&HGpcscq()H3dOPP^VS zxdlFB8cy~-G_k48dydRUs4c9uJn+_Hb_5};3}DC9^?f{-*7v+KD^#)zmn7u0L@&y8 zWJD9XBEMO7Ld%yzpBBGgb1s>F&j(R34@Eh?qb4zJzkO~*evhOn zAe_LV5)UL|DX!Ont{~moJf3fzs!w6L;@RXo6U+g@^9d760qU1nYRa>w~LGIC)I|V zsxSw7ioox!%e~u!35_SsI%yCK)PE?`jG~$vsmCqF{mrR@lq*}ip04yy9ttZ2J7Son zoN?!ck=YO2ool*3c;7axxeLwAxQt{p{HNcRQD!0@jBL~w838)~8uwiTh%)w@*By9T z$rCOlHN8XgVN-m^n@j9zETg;1Z$wSF!6e_|8&?)8ld4)&{Cl7Ni6p-~?&Tok|M|t`IQiq;89JNvj;t}~M&!0i!K7E3%x3^N z#N4kJy!cn}5?VlP~;Xqc+M`PZ#sW5-g{* zZ+`R~xWB=~DUbwxdZYO3VUUzy`1{rFm>y`hS5mpZI-213b@~^60kbQmGVMB4aGyDh z(YN|z4ieevWHHU1KIfV>Wc*qhH8rONgP7dHK6!HV!s24W*T8i-p{$cf%BraPU-vzc zLu&UnUWlwKVz{2Ub7YGVIkt=^e1dkwig_1-g=CbayPz*+E_(c*Ds9t1++4d;&i9{2 zG$X~`2IXm2X&q)&q!5Rw9-B!&8%f~Zqv9;aQyXy-VrcKp?X^fgIYrVV@IoB<9Nh&= zHSmD>g@K4W@x86CU3|igzW?RF`oy4`Af|w=_Ff)ciDkkpz(yNFcZDUkM8!e+a;stkwK{ zG!X8e{>u;eR<;@>VL5*#XA_^{yW+U`Wr+|7iXAUc_-I1T0(vdx=Od6x2Y{P4pwDMG zZA21ypZD7A`dnk0#0a(Ryke8ZcNP(EhMWI{+gG#*zZps^V_oU6U{kb7CV(?tc3mn5 zNpWHoO;A4HRozpJMpZLj8emfm8wVwc4*2*v?$=FwIzV%ux8c@z-*|g}106Qn>N}sF zQc6fj5C?Ox%C>7pCBbLdf*@#`#|@MP@4xuK-=V|8iKnxrn%u$msUQ>)6B&uJIWii9 z1+(i%6Z_(({m*mwrorxCt%ROlVn2FbnhIPgVE=87N`mKOg_O6tC%H5MM009(io9@iPJOLI}z-F8E zhGPuQfji4rFHd$a+&T~UHmcx#X+2})LBRx_0KcDhBzsp6>u{%Gd9bOLEy_|wQbxG`9~W77Vmi8#?RNJ8;C?3^-H9t!^vNJ`ul+jM;enN z?BjVcK;_16)U_etqbM5>f&f4o>ET6e+*Ht8rneME)~lhmUnc6-*9EZxpecjRs0DQx zvtOf>ci-o7nMPHL6m~-~zos+daaftY4-1?4(fdsPS)BpIoCU-pPw%&3gomxoC7Dcw zt9-`Ot4_e@E<3(y-tr1+Mcz*aIBy9#lR(O8$3wd~(lsb^8CV$1ts2?|eA-sT{0Y%U z(rU_t2}}}$kS+a9!UmT_?&F}Im`HY6Jvpo+PPz4^( z`r_@7a7Qda+nLI&NSp1sKzh1VQSC+5N?qp}ht!btNn5uk2*P@_&K`zjF|rP=+}k*J zCu(>Q_s1c6<9!~H(%`4;@q&kCEoY-*#I%cRpmb%{u&=g_&ofb@L%h|01JDBFx^$4} z`MtO}u|U3KfeNOD_4{{Z?$0#N^NO=nJ=ROSw%;?RVib&q0!dR{^AzP=Tv&R0&GwrW zJv?xLUo;hoHFIKv187}6vkKP5%nM>|l?q$JYSq<+zhmriCVN|>oMNU^|A>5u!6rMW zC0j{oBj%y*0hNc+?oit(khei5$y2~axAc3vXPA0hro!UJKqZlf%$^=>MgA{vB9CYC z5hf#2_=|cLKEK2Y1g_h9=XpSaTPo-#0MfOBy43b?(sD(>8DCzfNO>rHs2lkvo>XXZ zf36YdqD)_@=G zF+B>gBjMr$CaVyFNEoaGCI|HfqAvdY=6}_+?1pZX_Uotrq3+(Fqz~+=}YkSX4US6>O!R}mbN0_;;rWT#; zdQ*|H)t{S)BCZ`A= zamLh}i!)1me1r)`$rwp7@ae^nu00I{&=_Jg?<2eLv8qRKhwllI=URe zG*zXnN&IFElW`|#IojEz{3-h$veK->Z&z6T?p?`C=GdblAg$KdzBE+Cmjha+PYnMgRZBA{@6 z@+OjL=0(3f$E9Q3Xr@Gsq`u|6k4Tf5ixqPM_|g>Z367-bqFrS2cxNzSDni7p0+lpP=rFumMNPi49;eu;v% zEG}vTR!cwI?}Tsc<)Iq{r1hI&-w47uHNtwi>ue?Kx4qw=vN)ygxpaqN)~)>}*MydC zV|T-YC06BoH_oiZPL$Jt+5(AFkygl``~K^J`F!{J=M*ZoomRh)pHOtn%MCCH)f=Ea zg5|se_}|?LHx0vI3t)j^jvHyI#>=17pyksTAZv&fAZ31zO*N$9;zBLD96yzt)dFTE zJ|G!=nXS-Ka&%n!)d6(*t$}mtvy+x_$4Ob0C~JwJ$`pcF>dtA57P8ZASFgsiu8zx5 zp3A|(L8I+~xJDt;-SLc&&hH@9^5*DQCX$ywi%vaI`8BFszX}Jyq2y_tt|lfYR@rZe zO-`wLfGn;05?geWae$Mgz26Z;M6ADv@zWjm*vpZ&vLXa;_U(cc^Yi7JamPLax{FEq z7$FNwd|R12u%iLYEkXE7|dQoCut@cH^WN^i`WV zEx9DDt--%08m9Ig)!0v`#9uS8=AqmIMUWGq4Bs2~z&|^z{Qa2D2@VKY^M2w2R&RPH zb>=X#mFL5OaFWvDvx9AVaO4HUDWekKR*NP}T5bUe<1=r9ci#vA;iK}+txy{u1pa`oUl+aPoh8)dRp--j&j zrTyly#$P7CsCVq|%EwRlFG9!_-UNv{#o3flKt%g(8^GGbc*Ve=7>ojqUa;vozCQc? zX54;C!Ec3Tw7CNMc{Wh1YFgn>Z1ne4o4O}?eG&UKDzkYp9X?kvKbv|X6Q9p&N&hCi zz}`d+fn=R;DM==edfz;u9W#si-7z;WhQ@$0}iD5E>7t!CufU!HxySi;*Q89%H4 z_}cz*^ahYXIT*;ngbD66G&J_WkLq+e3elMkR_7{qmcJEWN0TjEWSnAAV6PY#maB3K zr3_qOcCr8lic62}IBC9zOeglVJblNVot?+M6F;C{R{jeGaN13yJKkIEO70@`UBnJy z)pE7oP}fuGA;BZ-+)@(k1Yhf4STHha52!RdCGi?qTWYOl7*WC5KYqgZ2rCb+ zVz1{Zf0pRyL=kKz5>n@0oD#9-=Q%ThyfMLk5)K6rUTv*ERg54?5hNQ=KeM;WNa3c#^_Z}t@ey&h(x895gZYQWc>Qq3+W^t`lT*O^ z=?6R$ehV6UYc%!haw7)if9P~9oZs;o<1%aZfL}0PZC0vdL&oQb4Jc%`EmVQB84iPy z>`}hGOa0o1MAcj>JkY6uc)N2 z_tGp*te4eQHo8vHwmybhT+Z?%4v||fO3Hurd2d18lpy98&^YbeBEvgi!lTfys@LT- zE;9Z@79`OPZ*Cetdu&Dh-UzE=H#2{I}-sHS8U9Jni_1JSqbN_HE% z+?@;3{xE^O8WwXE>G2BnR+rx8hu_248q<07QXqhTcq3t)|ATJZ+i+4-a6GNR{~xZr&3;~Cf9AFK^VMC>a7+3=@l0UWfsmzgZe|r*2<>uv?hd8bID4p+SC>r4^4*>Ko$h6O*&3fLzinJ0 z1=~{^=fMDX!Z<;qrQSCEMDt(-5B=59v~1W?E-QZ@>%}lz$0g8DFNc5*eSg5hF?}2-oMjZH(xx2)n+uS3{kRQIUmPM%rVnxr8#6K=br6|@%UoQxpKuR z#%9h2ftkqfEVtFcvkfYIerL;wr+*m>-V-1nH6hK{e5s;H{^j-!m;rn|mhdqKDFH5~ zG$qrYTU5*hXd|L1R)DsnD12+k4V`1QI9awMfVkR3h(jQde~94EijvJ}0aD|OZK|6H zV=v&ks{hK=`G0^tX9Ep3jpwCEJuUs=FLc}jFhKJh`5xOFAs#1p^-+Ad5pNR)r;S(n zl?P>UkWUJ0ydy@cPCO%;PsHHcpRT3#z0X;IVnipF%bu2YaJ3)T4e*@V-G&+B5D0%q zOPf(Oe=HXliJTR6cu9WUrVB-`m5R}d>3<^EI zuqnCk(v9C885+;kwDGWMEkEA6jyG&sKMKD%)o)iCu0Fm+CR?qhlyi0Eu55eer^{py zQZn$W63-Q~k)g2pXg0=(l5o=J9|9{Mt0G>rKLrV@(4z1)XbLJ{tt~!dWthNR{)8w$ zEIK*G`>;qiK{NH*(k%IpDbldq=zQ1fk+}D8Xk#lstKGh;sBVF9Cqm%q#FrReyCFA< zK{|f5MVlo%v0JBm6XSQ*5%bdj7EfPBU7ePQ+h)BWMc;fUd?(Xor{jRjek5AS^$%5^ zf3tRgY$(x`7Ugk?3np*l=RnZqv4s#u{Tm5S&&+(%*H=tAvWZtsf4@#gO>N(c zqu~g`NgQ9^pv9)9&L6gdVwnmbIX)$&Md`%EEi9N?9(zuPnh$oOAaniHuOkB3kU?^= zD436ufGOYQ!)eE5=eyHg

F++ADFp_2WHET(M+cIf zZ?G_h-)b>?u2Yo>|2o#KQ;wB=BKRmFBe!*}{#DYN=_JOWt+OXAK^x%+1s@p>K$lQn z=*R)~E*n+DTx|WrT3Mv4rXo2r&3d#9HVf(&=e?}`2XAA_5Q|c5jh1;`=m*YW7FJV} zTK&h@bX7d)3TFpAZrz4Tom&W-_Ni{e`1I6ap%l5#SMLsePD#Ba|9R&QQr0B(UsOhN zo)7^nCA)Pknonnc>|;0OHZYdr$cxWW%u1ZAFhH5Uau$dcjDc#6kL*}vunN{)N^NbT z9_FGRW!Bi2JZk6OzUD5%;J+(gVh=A*Yx00{8GbzP=UH~1G9VE4MhEB>BE;euClt{O zH6-94_n?w5#YO72V3zXl#yj1ADSB_xw{~|mrE#rIhUU!Ly#I04eM`JORVX8&u#V-i z_2Oa}WO^DrJ6dgV=f6gU=5yq|v-uf2$d+{HTkyI_&Hn0Do#fL3$uCbA;k~RihvjMD z7jWP`D${TC?La&RB2Z$AhT~D7iGYpU(Jw5O8KS}QHEgU!v=9Cp#lw$djH#$<&U)Y+ zATaWfk)XkxD6Tj+;Utt%asrwO1?$*iN$|-~5;S#wWT%D&4vqAqloTA3M#ajOm=`^E zZXx&Y$t(z5})1qn1J0I z&}|a1Z{jDj-3Qa}=md z2GH+WO#-qqYYO`J;zFLyY1)C#gj?qvE_aNrrVepLN>no`v>2Sq#Bhk1lTBWg-f8oP zgDAgXpC7u6iyETU?2O~<7khMs?0IwYYiZo9FS5q{ytm6+HuggpcR`TgIV`gEuov`e9+taTvPQ z^g-T8zAk_hC0ck_24HsaAVve1Rkv%w!k|}GNn{1cT85yXe_T^la(MRG`{jJV7>r`= z*XhI#@w{UH_a6Xz3e(cv8Hj*IcyrJU7Ffrq-?I~shOUEeMpw}Syic_Y*aAL#QR7x< z++Lu)@u_x(+jbuNs-JA;T)s7LOaYrd+s^a5J#Ry8_A2^e$zJ54rGrB|&q@XFj{y(; z0Or-{qVJ<6GCZtWa%FizEu)M?>K__Nx{YKC2|UBwK&i*(Bzj7jPw@fWsL&~Q8?&U8 z4>IC&0=|9V08PC$s>{F%q{BmR8|I0H&qiWN;FvStTxJBzjZX^`f3HU}&FbfQZSU1S z@*g`|mCA#ItO9>Hf5c^C!t?7ddsk7Ybh?`9a;*hw8fldY?p2RH56PDY7ScQ&#R}g#NOlJK@Cbsr7%75TW zhF#kz5TjLQEDwshSTc0rk2ma7K`$D5v*s0Jk=@jw2R-^0+>JOT^%J&B844fnC~;k^F}gh^n|Js;ck z^!7qLF1B$wmj0bK3-THSAm*7tw9JW?gCyoJt6t9DZLzkLgpid#iem9UNGf~?S1(0{ zm_L$LD(fGctYV^3m=L1i?vq?wKhUD!zPwp%UKRFLWtEzdOkw>>r*y*XIq>FFSN6g5 z>j7bcyG=}0wAk%;@4#72v3U_6W#j)qt?^hjtKk0geX0gWwCwLAmpAStKY+4bhW6ur zCZ4$O;8;s8yx!Yun~_^!y}In5v-(^VC-`v5qQ%D$lq9;cd)+f09jw?Jh0 zvh3&A?}1K@@M#maA5B%OPQhF+?xRE0$ameSk)CKg7{FeFRMqzNXn|8Jw~c4;YQ%zv z1=ZHT$?}OUunEfCobUlP7Z1c-FdWxs2zhbiM(`zv+KQlu|2Mpr=sZRSWAL=br4KA; z12TUI)(n=)b&=l*EDec2*3NziWM=2y{`75^>4R+i`I6`6S-I6n!6)65y%-b>E2=Ql zEBv8MK7-5k0JJ(8cEZ z%SU_-kRlt-8u#f3g~BLZj!*cUUce}6{~49i&H&aJ9ZL(tmIp8X`auh;Av73Amv>8S zO!$Eq^ekGxjQPfe9*C!k3_9~;RtJ+b>h(m;dO|z@3D)32$vM70FJI`cVVKbqmZm^vZ@s>U0$B|PRLL*GO0a?gJ&p=lgj zWh?C|K2bBUv(%k-BECv`Ur{vl9n4z3)>K!gavz%t1Gee@>SPp*u*Fg;^yum7*DuF~ zyG`pIyM1cxe_WaB;Ou+WDmHv(gVON9GC25GFz}z(>m{tgd?N?DDu;Y>*}6Yc#_A{- zm4oJU!tF9n`eeJLbg}ZJh6)UHRmOzeXs5<`vpNIbK^!)zITf}*8)*orM&N}C({+1V zyEO}N5kWX2QK>YH)s9eZY72S)5V7!hylA~7bRWT%=Q1rF85$jPFi1Pb%N?hnGXzd( zq_P~zbL#Ta(G!Txo>C;2Z7hGI*_fC3+~f=LjAPAyIy@Ca{o~^a!Er(-D>`1^KXB4b z6*Bhcs5?v$JQE)d1z;;wlS??iU(U{|Q+5~B|JT$-3szrxz*J*#l?=OlD6EOd!48@I z*`zB zwCYn~7Y+Tgwp7RSlfZN}5i%U04wPhNJ&I2D3~5-$2KRD0h5)ql|DAU|z)cxDD2^)R ztn2ay;(BzZ*kK~|1{qp0MWtY|YV}5>oC{=2x!+K%I4{!E0C+iTIE+sJH$cgz&298~ ziFb3~ks1E^?i)!^<2PJ9SUp0MlG(lDCNc(2`5FH2b$OBy4$cl3rCox!PfS@^gopNo zcduN8fyc*`ApS_jZCEI(@LQ!m`3)>J;|gXHD}vki13j(*m<$4&UCT&I+Y&|f$qF`Q zw6~ljAc`%os*iN#Pi$;!l!E~|MyKMR)J{9560O#SV2yI6by`_sm#(*h&QJZVm)A@G zB8SSO=UlS>VLF+aHvj1Mq6fx6L!F;7Tsm))zVY_F)VR$WsoCfe`|f3S=jup&5S8pa z`S&Nt?c%E}5!F}{qO6EEKynY0Qkh35?P@0JfK**8EE?q#MecpcZx+7YDt zaSJ}(8&rMWE#o{8^ry{I&a#%y8|m zV$sBW_KwxLmMU!%mFm{}%S|{W{K)IKzf7jfHP{x;u`n@H1?*4@AVBFUQAQ zzRk@|kYYG)adgzaO0~a-7aA9b(X=wDf6MZ@7~NtlJJ)ykL|4cyvJtY!QCC|a8Y04= zQ$wS!K3mLr?-BozHV^Bq#8uM~w>hOp&EYK_e`f;i=+-EXs50r7Cav$LBczmBjjfzf0Pls2@*keGEy@#Ow7y_43)`4DU+EsGGP?@)!LkQ?2x^w`MdDBAlVt)Yr>B-JkZKW0BoJJx zQR#SlCdCL2Ah3DKQTX_gnairSb4?`m4hi>9l@S#(@|74X9-F@5zk)q4n*A!7{N)lUBn$@_@JUxGV1DHgtmmK!^J63) zjtjPjYG!=P3PKe?!mx(4{d%@bVz_6^n+kJp58KVHB(Rz|TM};UP{5W{>EC_Z-Q;xs z3Zzx%%Fk7VjbB6OD$@kNP`*PWH9eTr!e-NladVS4HpUJN>Bq#tkk-sZ4zm3AiM>0O zUKdh2xMd!rShTfTBjZh}AhRA2yKi?dN!Qc=zR>9l7}O7gf?3rjf5wU-R)oyf*7oWk z|7HY?up?t*Ep1mW#EPbVnGI`?Wwi`VcRc5bheW5QAL5yvtaXg1PUJVbowD}F*cF%# zQW~sCXDNozcdhj2x=We97PWgT=PXCej8z4RmL$MaP*%oPS1**1>H{Ibc(jU{Al>%O zt2Wo6Ke^)WPrEGK+&@c$ZVpy5o*r(DtgT0bkXpdQh4eQ|*ayMFg6_S=SYS|)R!JO* zNVwan_x_AEwMOM?*W@G&6B82*49x5O$pV}j^C($nw^UMY+bhH0|2f>=-_Z#}7&u%< z@UM@TMu$^URIJHqUw4_nVon?0ZamQ?_nZ?O?^=vZ6l#uZ*nEV&rf6;HZ| z#veXr2xrxQT{1GxBO^auZtC7wp#s$?2c43wl2fNRotSQGdMZARD8;W<<4`LKljU zE6dCKrI+K*{3Ld(t^G4IJEekGuCBO=Y_CrrA3aFEL}{~AnI(;&!NZW#=-2Lkfp7im zBcEMnXl)^$DYw1@{c!Jk9QrGcf{5p<9H)0zclSc;7c794ZfqWO%g|t&k7UX|T$5DQ z)>2bYd;?zy#P$du&e^K(FiRSpL^n=WqL%;9AuRJp39FfsuBvYV?$3_|9+$iFzap}; z$D904g#(^tbYNKm?8MQ3FXM-A|3O+@zK+kEuu3RDMDqW=Sm%V#J>q{34ioWNG}s=^ zNJ&k_7Zeh5u&=Usd3Nat>_jC`Au=>K7yI}TS&!eXZ)^;_3>`7i@&6ltxWOkNFtV^n zFh2OThEoSe>M8GjLe;s9&$vCaZb*|iaX=UAi-DWJDhe5X}|H29voQL2N{SB*7HJ=SKGMTX*mj!~_NLy$M$8o&QC7+UkRV7)B#! z=HK@lE@@h}vX6N`rl2qIp_5-fB#<)Y5PpWA*7hOm+}j;T(wjMpzd%?~w&2rZo!xji z4wI(-z*{0Bh*;NVlPldTginar14H0^O9D+ zuaC3=BP^Bosuk7!+jV_Z}rYqN8y?OJdtE+3i)`1ET z72V@(|B(nJ7kP2ynvcrKP-6-Ty3#U*JYv*okDjcw6dM>+N}7qEjO)%{*R(-j>@wQeU_?sB%nOOujIp8Jvm;O` z_NM=3@w-p^1OrKijifAdj_L=8eJ^CNDGle zek37#xK#V%YUg@;yc%5XFs1AUALyS%mv*(;=fum$;4=$$*7SwWyNy3asFA$IN8R>+^a;nu7wD}7)rVM9m4@MT0MOL$pGnM); zMRWGAsHGbAJL3XHj>iiQw6t{R3kO1ylCZlNyR3FISTGV2ztu}*|0dl4bIDZ4>MCKF zFdW144Ro{k$3PwD?Z1U21^*G2WAMI^@?Oq0zU(_hhhZ`%g>#xu85$SfrD&&yy-}K6 zy`lV)-+p;Q7Vb_g{-9Du_o=Fut-BZ5L>baux|vGQ%RlM;ycjE%cd%51&nE43Uo3|V zt=QE80%M?XUt!N$hJbejatDWG0qV*XW}ajs`(WhtnVC@0v zV>c|G3#|rNUvdmXbGE6f?N+sd5b%e8i;PdeLGSb5e}z&Cs3#5K-eLI?FLi!}ti#v-VH}fzk%Pm0D+mFo)3GY&?W^kL_%d2GDl>JOeWI&n6v)?L z{N*EMF~fB}?cGdkqmS$bsTY`mQEdRMa6FpJQT>H3B$P9fR-f=&?eEsf$zKrE?tXJf z2QfF7!@jUloi>l?kC+T(r8G$2 zHhbZ;>TS9T<-#o{bAA2@tT)&`IbH3(m(Svo0n>-#ZP3JGhvLZrw7@%-wcb-}&alvU z#u*zsxv-=){aZ~WjlDcPR%xkO>Wk7l*L6wQs5k>-a^=Pp^2Mj8t&z7g!VU0&2ea0k zU0-srunXEH+YDbk02C}LJM#C8TK3a_C-}pCjfm?vDFUCBL@VG5oGUEAeHa|A06|VJ zKJ!~GRjZ!5=&9N3dY_ENykc|bZ?c8+yN0hSFZAp6YonVVUb%atH<=^&*?tBy+imO;y)-IUE zJ40@|r6e#;M2fW96Q@oj3L{1$YzSK#w`-I zQRU3zNjBU33HJ$ymvhkt6f$`t7*;dILvyyv%6wx9L-CqT-@dpK>X3&A;1~La@3(r~ zut(y$l4(?|fIs=URBufJ`;J0B!(g)egPVKXX6KKajtH1Lr%YaVp{rfKi<_Gw;Xrr~ zQ$qp$u`Hh8$VfH<0vaDHx>frfH9tM2wO-_~7OSDyhYnpdZFDi|gyP_IZM_D&Udy;gB08FAs1e+PVMTl4Lx?#w z!%gZxPwT4hyNaNT<>qdNMns6@DCSLCgvvnVJF;?9QI|v2%lns9e^lObMt?Y_9;@Bd zPjb050~3>xSsIOnR(CYiP{DAF8_jwv8VroxnKCt85)qOLowkvd#6ub(7$sGQL)F8r{&l!dpTLF3-rG+N5~GCbtX6S8e*Ad4*4A@r`j^w=nzGH))!=Mx z3skcz^;&E-+@?Dx%N#oGUf2{AFt?|=B3=IO?QZmM-+r(}o2XJ{cX7qPKB!t=OW$@W zy>pO`k-51NO;r^o?!5V%ygy$~qfx0_WY9GeNGcJH(|5YcLUoO^KyIUIVsZ{?!uZq)lO;DEPNuUt+ zEMdR6xtyU^R5Vj+RNy&WIAriTyb}|CC)W~DC|;XD!pnT`Is_a2#y|vHY|;=a-cn$C z2q#&&KHzv&fF3#WE+0b_dpF0W?KFWw1w@}dD&|Z27@;HMGyI21k6ek)$bw3hp&KlO zv+kH7{I>_Q`kn?~O6$+&-{M(mXDvEtM-n~0_E7QiTo9y7b+`UE{Qll8jmgA)fgJHh(q(E5`oBZ*%T#);ihn9M%r`)Z5&-?n z;oCQpw^xy-y$9C+_z7|?TU1$7=uBklA>DjbZo0uX?Jv=Mhl(Ud6K5l-8QV1w}E!@pCEGxpi z>)xrV85;RhZ>?GNO)1P4;1CN9wzy=a1v&#-$g`qQk9p4QJBbSK?EUk%N6LiglVf{? zH$cJo->oREqLVW+y@@bOP* zw@)9Dzs75eo1OMlsk2b}<9Z}sFr1jm@_C@(1e#sB?!fk;-HI&gbZ_Dz-6C}DvLL+cH?F{?W zn93Y-saalIO4$dHT6~XLRDR=+l0goMK!XcKg$+khEQV6W@h*1>J>SR@6{Loof8MF8 zuQgs>Vgm|W&OYmq=xFn&TU+Pjl-s?la;OgjFELxMZr6VlxJI6-)COPEqieh#$iW#h zp4Ah~VzZDXbvh~%j5t-~N;o%qtgs$>B%q=(U+tk~|GdU)wkMBtI9Hn7L`O~@l*(dO zWiq6Xg`KXPW7p#ARe=4>V}f<^#>^ecWEIK<{RgXVX}jJYO_f+9v-l#q#y{G)j3|5d z_oO6U?BETOQ!8rbqhyE-vZ8gD;NwPM1}&-d_US6eJ(P6_$8ey!5foOeUVv`t?6;?G zA$r2)f6Xey;7(An>f;o{$x=g(LRNd7-88wB+aKaDkPyasb*nCfB5R4#roU}LZ!%bI ztnGHO$p(-w;xOVs_??&Ec#T=3;OLyR`i{r>Ek@SGW#5^*P(HQ0P!1OkVRl|HQMzE} z_iU1Gi@I`!&L#JC$Gf{VNk!{y$=mfF0~qgoxcs*@)zVpkRt15$XuXRnte1{+O~~d? z@Z3j(nOwF?&7YJh$mK`ti*Wom%dUfhj&ZF{3KwW^#FYxg_+Rke4IT@TlOu?|K?mqg zlu#wIK;9iokw`mp$KoROT!huhWVu-a0Ei_jJX zTCB>@EG*y`g03I<-o6qx1eFF^?DPS`zjJlI8jBn%C#HpjN!j5z%1@jerpCaZSnYkS zD1ot^yGI_Q^Osq#O@Nio!jn?cQyq@x z=;q3FMGOp(z56TW%)kDJ1RXXLfwk4jdccQkIzh75j*w$DtCc{bk*ZPY4~u}X(;taD z@{5BZwCfdRSvGZ{&i$iUIC}r;DBmRIJ8!nwO~P9#8eY84-UTQn^hvAw1NJ4z;}aH8 z@A8_B;q`zJE-6XH&CR$(X4A0A@?}OFTieB2S3)y0sVo5wS64(lPRUTzzOSurd@N>B zB$U!bM8a?MNTE}{{PZr5s-zv?Ae~5J|C59bP0F1^<8j^w?iY0mD@A8N)`ohm# zlJMiDh0*;|2Q)DXM{`n`Dqv>X{#rQ=92~sI?K4w9eD$Z(4n^$6+)UTkHkc ztmkBFvYMN@rVAA)XlWxzmUop3J)BG~2^C+-0tn@UCNo3szs8L#)QOA6V#PmW!Nc3} zMiyx5VQVRgYt~5$rr@l@ia6&A)%=(ew3BT_31^%T&7KY|W_vslcdSYZU(gO)_!>sF z%@hg+EuPCf@zRKClnkzH9`y-8-D5r~V)HaVK}25#5@ zuuCjhafTD<`~D^~Q0e7D<%vi4FD<3P+!0o}Uy&cq9CU(!ul;F?ouQ?UzGWgv1pz8C zCktPip0T+(cx!8!3f&g*w#Sk^a=jLh&qBz9sna_Yx2I3pv%-S;KFW7f`u@`IlgJH> z>Eo7#BoICEp|Kx!*MDl2?@X=2K7UR{evp=nA@o0wyg+=EDvG7|hkxi~lDSlEx^m6E z2(ML`olX;aELqG&67sR%pKQZTXSd7OZE;yxSUBImAepON7u2-C;u|RI9P8prB-tmq zK|SLT5)>4Ln(?QyGIm84tMl^s`Y|`?GH^r%y(KavWUHd+T_7*a+l-*&@TvSjmy_kH zIW^OyAyN10UkOf6BU~QWV~FdIm}J!K+0!9woThJ%#dmvNv}%-CTE_c2fu(2lgEn$Z zbN$)qvpRnqphZMPmg+3i51DjybxXABaavs5NojObXp-B}=Wnd%i`TP-eh)M`?!eR2 zf9?31)i*YlL@swo`bvO-(e?T=kjiT5$Qk8V0^Pr z#$vvL4tybyRro#Bb~uSDGCCRw^iSRFDuo?{1O>`ceej<{B0g>199iqnHtJ*B+v{KM zly<+qhbhr(;~q_8-#K1n0XlM!8Nf|yiHnafccf0&?63u$On*`!8Eaqqm2b+l7Zvhi;tfrnkRid05qV}wN zI8T+LsjQwidAY_ABvCorYZM@V`Q`8wW_5u3S5y@dA*&Ucdc#*n_7|Ur`>ef=GhGgZ z$|rNT>wTp(Pmr3M0L}o%m;O2U)jo#*dD22yvuY9W zUz6MGQ2;!(`Hnb~0ung&I|be=iIVrL`%tCE+b&`hScsc zFj-AHeCp*SN3xOafkptumMz+yCNh}G$G2gMjGre=@$lze<|N7& z9f8_(sd#cSmIX*WJUjqZ(U3`_Q!rA745<_{8r^>be1T|#&7#}G<_9JwCZJWE2DM^? z&8j%Sg;DR25a4q3-+WrV9{hLy7Wt~J`+Vn@k5Q%mTwPtQ^T#>XZncF1d@?O9?LxaT z#p$VC1P)sO8ig|E$A{3 z1Sjw`VDk0rPRyrv1R-R~ugxfAG#tVxn32+{exc1|(9r9?Vsg1EinUsL`O0u#HmC_a z$dFOZL(*gkssDISkt2&DDBIF<3%wdTyggxEqJ~281QUKPxu#m}U6{$Js!~jlHcdNx ze)W0P)GD-rjlvbkER+M``L6c6Bfr8E6V*1^6~_0RE!GKmcyK}DP-ghsW}h{9`~%g- z=AhVkT!VWDBGZgEdvii_yL|VyHvOavq_3m}?8bK}))M^n=Kak7%QGA{&{)iv#5euXjm6Fe=A(+35AFgC#qG7RF|8YTT}|9 zKf9bRi~&#xTfh!)wdH%?!U8yT$4QcLvnMS84ZQ-dO9ELGkhLgOTj>zt$3{}iUkwpRs(X~5DEE3U!V~HyRdZ-PodN57K_J~0f=Xo zhK4z*ThIG*?3=^yolE^mi%z?Wm3rQ!sBq@;S!RIwo+(=l3V`9rr!+e}Jq=4t{1A*t zAj^dL1~?J|Qfn}>1;0c0_}IFtj&)#)`Qe#^o4~7wbTI$X%gxjJrTaWukQ#+DNo1(J z(brf11z19$5^7|1eDOphnGZOYKxS8e1{Y0}=bhc}J3r-;Z4gXRXY&<_gJS^c>GRIQ zWFDANg_}xi%JbiF;$KlwQSjZ!jQrP)sa258uaAmS%+5nU<>|&46eEh2sG?ye`<0ZS z?7)-#+6c=XJkWM{)1&*U6ij5rnArPYrd=Wx(n!f-J$ZM4AW`)_6uBf zV4FEO{S7TI|A_itqD~-Z02`Rw``vi9EW-AZkWtP0XDO_@6U{>WX&>$x!uFxCtx7&u z2Q?#;Ir``ZP}<^UIK@|5h=CSM0zipzvmy$TlG#97DM=cq8u_^MHwgt7_wT_pPcvxa zC89HTF7lo@IZez~|G2Z-YEh(O>X*(=<@5+TZhzaE*dUQ=y~pSIp6ectQD-xmaeD&u z-+?>R;ww3M|3BP5GM#;*-1E-l1={WL8m`6l%xI?A=k1V33tfo9KlX>DjlW-Hb4YyT zy-3mEm$P+Z4W3-)!JpYG#zaa+#M9YxQlaxWM`uT@zj2>&fA;$7E(ndLC4O@l8rJuf zGab)tqr&-*CW(Q9m6cU0uppCfxz=Heey&1SB#YlW{v=PiB!$VF+s>{6yxF9uyY<4-$1Y=(Upd1L!;pKPL>Ve(eLYO%9Jgez8`)5QEk?XyYsBE2H8LC zidFg^vRI`EHuDTU)bK*8dl3p&(R}N;d0?hY34(;gJ#63#P8kjF?uLMv#8`!xgha7) z)-tRD3g!cVezd{$EDRV&K94%n?w?;|v)WUH0?4z~tp|VcaKHzqrKD&Aqp8WmCAMm* z`fKUqRcWpLIukJG3xE4YSy52|Rx#kX!J+t`h?F#CBvnP93<(bLfi8lagv(@$D^ zl1T$Ux{Zw2i=uB)K6sR2|Amc>Eyrn3-T5@*QuI_~$2LYVL%Fj{OJc|CfM&jM`T(Gx z{4&XQf~B*u;G6_@H_!>=gLdI-vm<#Tb>hS24<9F1t)>^@p3>~`_4JPZpXW!&v4^OX z$5=vZD_>EkU8Xjt3UGn6A4;#yL!?kPm60`JYi|$mz#qOZBNjOJ&|3z5GdpKE|KdF+ zh#MNq?RO6)BG2b6N>L3X>g`>bfDBcK%2J0~`*!bLQ8Yc_PKz}g1~8V1JWnJX4om;) zSd`>S9bnx_Z1uiFj1(8C%;dusFeLu)5o3Eh6b+BZC*tYu^a7khAhklY*^vx@v{1nH z_qNG}gx5Th&asxk*T~dY<%x!d1_aci7n^+x9dA&!ORVxMw@gP4_vh_+0zOfHzFV;v z@5&y|+xz|a0SN~Ocf8(_HJK;AxtkQv@2wo|@r?bm54II?CS1>~0evX`W*|J3o5#GH zhzP5wj2o{;lPDhh-D4n9r1;+_Kdk2-(e5o1(GppKgr#R!OwF5(=K~4q#2Sl9^fZn$ zsZw>iR7OK$u`qPV>m{YXN%W={n_{2vmuNzfonna}4yKFHNF*YNI4MK;y`SQ^YF~oG zlwAKQTsZ94wkL8BAnu-H5+V5 zdV*f0vf90?8|QIL?@m{ZFY`lnnjHgQp5~S6t(q$jrz?lo+9VEUERiE|*o?q%KOk~I z^1C}*XK~v7)L_5d4@@pt%+3~JPu8qBm%9!FQ&R~~cM2~f6>r~Wv=$r|{g~}=R`7h= z7$4rK2TrBnB9j!m)nwXj4#JJFfFR&#?!*AdO|JpE%F{C9VOYlFn!@Vv?%&fo--uKN zjRVZx>->&)$YA{*s;bt3JyXe$A&P9D(Lp#?v-1HoV6O5^hTJd(JY!K4_2YxK_6jGmN?U)Lr2l6y7S`lOOHhD-F zebI>f|1fH)KY2j5#Zxd`4iIhuDvrW4>KF?f=K>V%5fPt2ULOaE__d5n^no+?>!USF zIA*0t-eeq&2L0yN*7+?knAM`usE_1JC)N-yh3Ry>hRy$OHG!RadCJ!aq3^K>?rn7u znlZ}tP$;;p;Pu*F5_|nvsx-UOGkBQ&_AaX}?7xaiHsYG?H5a9i{^+9k zax%R}c6JearO0+qW^;QT6t_>y>i8n>TT`bRxo>Z8Gq^kvB_sw&m)UR-_&l8VK&ip& z@%$6e7Y?t_?(&%{^7U49sZ357FHaQuCF-TKtd>(Ld*hkswG>Td)=NRwr4ByHU@Eo=p^` z+xUwR*?%|BUv8{8j9>jfT<=e^eAP~r7VCk&2?emh?MdF-koiRxGC{%al2hzC)O4lC z*-@QV=4#7eBHA+CwR@l{HA#yn6ZP!bPnlDHfu?zV!I{ZoO+57^%lS;`m+i`L8)=+e zT(xhVLfelFidHrchtvbq!iwm2zx>&$jgX11BxSwAhzZW{~B`qv27J6i|+diUVU<`!DTQW2> z+RrCtS6LL&Er!U?ShuI(fP^Z&M;XQ9>vfHvZ%%sa0%5Yap}&41&}p#}xt>-kd{L!D zU1+((T5dd}U}S`Ha#F!zEtW5mFRyA;(4!;c^ZFF6AkjJ25vE?c)%}a|dDB*4B-U5` zzBNR&G+Xvo(y_Tvf%NeVfQwOt0^{}8gevil6Tj8+7{=a+iF41-IYW|@IUJiI!38JJ zwsSJuVsYB0n#Wod5RF6jX1?`ODHt^Q%H~z*Pczv+UGW<|RMcNQkBnM8K%S9EK4+^U zSu$gHZ*HSr+D$r8Ico6JCr-Cz#;^2g)t7u`ag?gmY)XZF5R6kn#L2kGrAc{c?a?-O z(>$1(+|?|pEJtk)@1Z~CTh^Lk;o<@o#x#jew;!m=7Md*4z=5*?@_$t+^$|5RFoA-R z_s%QUO7rC(n5Wx<0fSUg6zvp^+yeW`NZ_xY-it5+*>a_Y}%}(Z2+6|nUnR>mwy+GoDucK3Q1?m#{Oy1DI zKx{z4tDx6BOoHc@uT14n^zGqN4vbf|oD|ky)+wDO$3>sPX?l za^}|K_4i6YYoiN(4#2Wf7f98<+8O-pEQRony#0O^=Zb#o5r4h&ZW-DLtbSuhe|*Z6$! zFar1F@4Ibu%u63$V(~w)T52-u_uhvyVrlFrV+SneRJz>3k!rpX4RV>colu?iiNodu@ zTgMUU%{V zXXQvMB4cBS`V*f{6AI|(Aq(Ix@ITv-MFZv$8MA2n=15SF*EhICN6rNX`$h(r=yRPH z4sr)WSd&F=cYtCkD!&Wz8I}qG-)+}CMN0bKEi%S-eEu7}yLxV)Y%lg7@}L1SNt@6) zt$mowvy1;iiS0Aj$$)rLr_~wT56nGKEH;32+;c3jPNv7g8Rl}^M+S==GFvf6*km;A zvp|O+4!cc?8G%=7jcGM#b?3@qfDA7L<%Loy_gvu2l{+Ldl7xsT<=(B&m1}J@{cbQz z!1p&ak040%{fDsnLwv-f&le5d+;;q4U>d%=((WC9dy;;6Urhlj#NC71J)8CFcx)E) z8sj1ug-m`D-&cQD>$w1+TJ}xmFA5Zn6%-U?gaD5pol-H`7>E2vRHETtUN|hV2b^?laaU z65QDq zEe)QJ$6e3!eB)@n^BD10Drb!Q4ajdEA)ziPC}_uvDN||<%D+G_&FN{dx_lgrQ3^niW2+DHv$k&WvP?N-1XL509EAkxF({dO{m`L|C0O{;1l@{ zdE%O1zdGEldEcJ>3w^Bxp*bYueEP~QF8JKeSc8COgY?cfFfahwl_z=n9ZalNGa*$~ zi~z()up%7G5{OPt#sta^IfoXa{d$A;;4T7mbm^WTT}F<^&C^v+JYF}-3lF_kFEIdl z{8OYS)4#lqSCv#p@Gi;~Ypq0JBt}}O=|z@2;wzUEf3-AM^Y<@4k8Tk0*rUm9?~X4f z3;#igARYDw7l7Y6F#$1;m->w{ypQ=5(ortNC!iRUe)PZjjYjm`D-VzKE13C<|N5zb zxWb=EF!C>hKz(v14m#BA?lJy{ zwn`$BIrTbiMLxLVB8e$&zs?%#@YaL^w&I-u5l6mgL6EBT3Vx)xTtYJ>*XXv5F8hy$ z7jwm1W6I57tyAd$+N_r`jcd8*DoRRHoae0h)z9C#p&(6`G@-sjIf{s6WMq7EamaDp zp{}!B#)#CCtI%ow=H#m2;{3iDPYIn#@=M*N6O_=sBBFe_D6!#xopwKif{N~l+e1M; z2iSJ;v5ZLuVbCe!u>J1q{Gm&w_Isa$P$O@WSRoibCA5SJ49qmy>i=M~)*1{{-Isf= zMPlK=P{oIei>vM8aojyZTcVYomq$X-;-d0LRcd!!fAqInZF_Sil>-oNxg2wXw{OhE z%nagO1mKXOHy5huIJr!7#KNIX#>$Y2(%GzSj1ZQ9TV!MBCMi2xvBu;99e&q@CT>xA zpamH+R5T2zkY#r}^j?>J6RWWPv8!bbB?`2nC|<%Jx{a>Ugdib*$%n7}_jkNN)-2{8 z|80!dJ+GH#h3R{21;hFNu4U$WhyOsuD$pyj4Y8M~N&{6oSfVBun`El?Q)ntzmE#W2 z=CHk%a+3$5qz6sn^;!Y3u@{)r#Ig~QlUB3qrSTnnxs)}g8(B@wJG=K6TT*LhU>u8S zPk$sRq=1uFH7ub#u>3_r&D{IMSrkRdC`A2PHko|OG|evROjGjp-G_xL2NGy#=#@Y2 zAA#VWTD=Ua^H7aOi4q-;(~U7zv8=qD?r6?FTl~ff1VTlFK)sspM|#90d5~3gHMx$7 zzk7T8nVkob9e17O(2<`8|6(%iFBfr;$zVKCX??MtwyGb#~rKPNLXca04)ggAh^Tt@8_#gz~lRt+6b1m=7D%EZ2Q%)zLJ!#EwjeFw@`Q zP2os7jPaOtZQ|MyEY%?TO3Uj?4Q1Oi%LhW1o}y0WMpK2tqsQW77qy4$#q{)#efFb*S^)~B?|losa-mw zA>z^ek#%=^db-2SA%1uFbvSuX(9K3=hd6`>WLC#3PAqBBXO-Nm&IFUhWr43czkNANUYWh1JwpaIjisR+ zby=C2n(xTigx{~%8lDn?Ra+qcYoG~j`c-rx)`}J)0q*9m$3k@}?-F#$rHV`yZ z8+&`nR=7&&&EP0=L43U3akvh&AGX?!HO2#oAQDbGmARn0hS_`| zYDZwD7zluGj`%D9fAxgMF8QMj<~{twI5CgTGY*Z`;7= z%4)OVcjNT>pRM9MB!bqwZ~QP;yP?@B#>mi1gQV{pRWTJ@{xX(*+PV(%gtvqM>g{TJ zbcukw85(r4^xr`M;$=oa@(SD6kr3Q%(OrWNY0B)|rC6~!uv4y3ji6#d+h~Z?0p(cj_ zP+^nN(h^TDJQKLN;Tg@9naZXzCxW7H5{#ny_dodkc;Ec}2_yhI8+Q6tue7?KrAMtd z*rI{e0)j3S>PN@$d0^q;3uThGP5ZpOo&gM#K$qMQ=ksv6^A8C)!aeWf2Z^Zxk#hXt zvi-2%v()k(H>rt_o}QnHk4T@N!)~4bAFTudE{SZ-YKD&%QlzL*LY>RY$zYG8;+N~o zrm$M_FE^f$`Lg57{k14oR}_(LO)6N3Y28{ZqFE@#=U{#)b~+Fo8YC{WHswDode|!)Nl}u0yWq zVo*x)`!_R|^<^1T_$3gZsZ}MNYLd8W`M4bapyK`avPDlz2lYea46S_y5eO}?9Gk%e zH#(X6QLs;e@Sg1RVcm-!-}8yP&l__?Lu#>df%I=%Svfh&iR>>71Uj$BmBMk9O`qB` zk>48qe2$+b!4V9Kl1os<=H}+Y!olUNVD{@_Vq!upHQ36O&Xt#FR}#=^)tNj+{lepS z{0XQ47y<#Yd189{OmOH8C&{#A*gaf+hB&|U zc+wp|LnHt1fMO#s>s2d&!D-@0T%Ny>04!Vs2?aK;*Jkf zrehh+!s+ahllxHH;%53f^>b3&Lsm=uy_6y6z5yc(u#vsTr7)_$)c-yNSX<6l@Zs~2 zRW?#3|NYwLf$(s-yEC=HwtX-aB$J$}^jno4zG>0G2)!rWPjOrLU9;{8aEu6(Plsbt zCQ!@kBkf&|7D3&+O;#zPg*D^Gj;}5JOn*DO2lk>+-Xx>_n$F1R=)ru4fVlW$hDfA%KyWY&5QhpO zLwR|>rvwm4+zY~|>u3{U;U%uy3wW`(+Y$%R?}Lifcz1+pd!$666kMuwtAFaHY*_5q zdMjH7SuJLYF(Ps2<)2>;XW#esQE@tMvoGc9bU>}zP)XPN0{6&Uq$Es!!o#>f`HR3wn)-_1wQd5_Sb9qM6p^*N}A84 z1xq8NMBXc3grEM0P}#Q?s!aj0bl@mQf`NhgH=Qq6Ec|BqGZll4y9dAd%7Q}%f4N4G zKHyrwi_JF~QkKnN{fDNiR2z|jVTL{b2)WB`Du8vOMgQUfN>FwN{dTBqjYX$pg^2s8*KAJ8~#A*lXemTwI4Zh{js4!U@ z4#S^xZJv$hy&*nXkLlSam)j3EOLghR#rwStx3@0WNAsyUBA(uNV$ozWbMXxN{6MJw zEBA!a>mHU~|IbMCi#4TsJAtpYALZc1N4d@uT9#mzeV^(dphu!(=a=6oPa;K~8UcJ4xpms{N*1tl=tbIeKts4l zP^3iNpSS-6yj zYVky^C8FTb4NOjcnUu`paV0C)z5@r#a}58hUF+?okzi5M&qvQ{pnYF!zal4Mga!RZ zbv?WJW=ur}p94COGIB`Zi$gy?t@Id^{kz(~AE_r$>dC(8xSalM(Y8~s(CGr2`hyuN zgwIEng6LxOdaapQQR{gFSrPc98uIGYYR*UOtV-v0KzRlt{;mnUuD=S5{KA*gmSvsQDLc!c_!~S4Xr&7mNiHi|HUk zf%f>n*Lt*V21P&a?}v_$GgL-K$_g6IK=Ih#&foNAEnXqmI`=7(yjlDQK%`l9x@zZ{ zGFq_3L*_!c%VCsj-R%LFFVo)Yj?KG|1ms{s%{8W$Yh_gOT<{atBg1btl=~e*g|uU! zS=u~1%Q9=xZnQIuPZ`hby6ar5hX@kyKNdK*v|(dpH0bV?I$mr`2YiA`wjku~nGAu@ zJz!a_X3K`sIqWt6IAgD!d7mS}ngDM!tiND%b zHbP#TWcLj8a$t^;!jE^eKsbUMt3>_$+>OO<1K;eJ2uu!HS>iX%_=aX?qNgi}z`2)_ z#`ZCmL0_E~#PqT=cj~!GN$pYM$#wG|7@D4|+}ldGe|YLJHX0xPSK$mNmgX;=F4h($ zQ0b;Q?YZQzG5Bl5@Rk(mqE|>27Yl15ZO#!u{rq`6R2x2_28m1Y zAgwcGrOi2{zV`LMwrB=*b@h@4fO7J9d)yK8K3nEeaJP9~H^KRz>r$u#7_&^jBmQr) zJveG*B_*-4IiMW(#=7b(N#aAx0I(W~dj}?9!c^*elEe>z01R|+eaf?vzm4^U&o_gP zQM>VUYpGrYNRXcMe88a)@aH>E{?{mk|7J>n=VdJdlYzcqsc{DER#t_~_KoLb*UOILt;DT#i2tMk!X0HC%f+B`YlJ-2bWJ8IV$%ceJk1b&+U zulK(K55arEEdD%TAmwMXQhnaNvaZ*H$0(EE9YMt7b>{raUoBk#qQlu&n!V$b87d8o zav5?yfBxJv_6x=hXtV&r*z}DbsI(&j1AXwo%Rysj|9Wq|pXbKqoASe-H+q2E_dCOI81`+aAf2%^9 zn@e!J*j$KFh`G6uf)ZLMgNiDdlJ$GaW78_-);_V^;*w24`+D*b{1ka z8&|~j@bIA2tSknq$a`He+q^tu&5i@2yHmcc#ahf(x7(Ca?FR5Y@=R=_3Alt?Tx@|O z3SLO)%gC>mumBh&r3$ahs#l=XpUm^*09F@Z${32iVFT{sTF*N}P;K=CEdrPGJ)_!h zRk`{XAXlW+{f+KBwis^RzP;m8U}2%b^+Mdj=ZR=OU(xf-W{U$_%f4RGw-@lem`pE8 zU5*#J`XfJDF4lB$=&m;cL#;yABfv3!);bkBFCuu32cb~ZQ}isqj!W7PHR{`wzeQrD z?o${-LjJI9xVoCI{3bz32dj=n-Z2gp!s6T|e;DjpA=|V!oUnTl5xHZ+c0&RUH#iz9 z6_Y#RW!NY8la|~gTGqfoFipIrBa1L7C@3^1R6js3)Ef_2kH84nTm3d)E0e#wgT0|5 zkZntDtAFsD9JXNX>`FeO!ubn=k`t{*q2p&|rNGURtI>2}Ag@<3rd)VfSQltvg##~r zR5}FY>p)z=6zkG^em9|!(GH&Iyfy*F);@~*-I{;=GWpm){E{x1NuIYd4OD?d?SN%(y*)85`xjeh(E6{ z&2=X#y_%~vG9t^w!XlOd3b7=bm3L{mDWZ}c|4(*EKHgOpiie%5XR&9jd=Wj2~Q z3NQ-JCRZeIT*%kxB13^dnwy@)2oSG7nlB}ScGmOm1AnLnynl=ZsjtmbHNBTttN;0V zh^mPCH1I!S{&Tl)71~n4`wi_lf+z=x*zUlEwkOzMJdHqXCHD`a{Ru@D2!GV3sNHaE z3bKr3GkGKUy}1ny4Wl|b1OWPKx^#^lLBJLlGl2|-6$-a|JqUbl!8kpoJyq-U?IjpJOWnR=bSG&BdIL7 zsXrj;(m2e!e}+2mFT{cYgO{6qAEWREGDi$x+8TXMTiv%uoqmElIv4Fb@YMn@@DJNU zS=kg$Cb2CF;1&jPQb|AF!<_F=(jXG>4n<(g98Bb3f5eoR-^~X^WwVn8BS1y#wD1Gr zF@;MftALKKKO(iS?5lBgO-;7%TlGJ)E+`4M9k~EtrcS5L=<^K4?Q-}N(4EwYVW5X& zw%mmJgkTCD>~)KGKWMqlHhbNH^ckI62R2m{oHZVIhoMCV42=#!P&b?gokY76DzupjU`RL`_~74b!j8fJmO-sq}uw4`C?z}aTCA+SHv z+PAi7WoCxd;lr7PVzDAW0B+H6aZ5>kk>KED&`F*!fJ4vY<~I;OlK>X%)4xsDs*xjwh|Hx zM@L6FU2HxARfEw)w!pX1)Bw-}Y^1TkfFXy4(mTv}e1FJhk?(qf6{gF+BH^%?4ek7W zdUN>M9W9DXWKACX`$OH&0r(Z)r-Q`pGeTfXkZ`-~z0yD4h~DXs^jt@WrVq=W>TD0# z8!|DMh{P%J+y-VkK=C3DL>KueyjnmB8T5tGfmg6!ddtGZWHw)+#%iN^MfmHjH}qpu zbF)&b+hKUnzfdzEcKRo}1HBrH*S+de{aNR<`FOM21v7x5|8cg!dzoa|Q&?rQD2~HX z(FYjge_jV5k}yB`pQP&!=X!nr4Ji~Eku7@**&=)Iy|XtVvN>e$kiD|9Np{Fy*?W_{ zvp2un_jg_AuXDN%y+5D#^W67q4jF56dZn^tOGWpvQ8D&SnvImcx_gN^6|2h&<9He^!(jI0DK2k3sR%NwT{D8opLp4NSI0cfY!*sv zr=yh88$G?5bHcLHO2hTSS#{$+fr#B%cmzD>hbv^CcD4Vc@WioUb3|JC-DElYmzosfB6^whHL$L%R>-f1hS@!WBh^Ke(|Zw9kIzD zE7cBbjN`@g3(aj(ydEdX4<4bg*!_jk&OZD7f9}hF76q${b-JR+=uG>zTbo`PS6r1C zPyPr4>y00~^)y8T2XJKV@QBUF8{UGl@cqV6cGrpJbR{9^X31Z_j<2*r1WQY$W?nTVFN~C*b`?J(3@n}xf<;2K#NMOAf+z9sp89L z+MBq;$-^^T?9tu#M&S8NW_v8qTM@iW+S=4ckRmILB?8kp5^DH2 z@u+PY|IUZPVjT{fnlJZ7xsEq?XqIa%*(`|WdD}8klH%8wP@WX3mnA0`b8W!NIy4tZ z>LruXoHTB$UT3n(;YkXo+e^6CO#5~9;kV{>J$mX*DsnIkOEmc947PX^PPS!cCKR14XK@YZcb*c@J&y_J=}H-xo!?|+EFvHvMDsUl>8dN;?~OQtCC_2FDH!}dQ}3N4~<%qCuIBxOs*LF@^G z)1L0JOqy5%OB;{`{4KWx?RS%Hl^plW_V)InMm;^qJI&K5$7u1F$d{^`t0KqW*F@&bTm$ zkiLr|;MUeDKU^Qw2n{`oCQ`uiD!7`AjC^e|X4UeyO=*3q;u$Ox@R%vUD=VGd8gJ&}{;5Fdz(bz8<-vO!0&t%%cbda_?mJaM=XHEz zXSYuyO6pGjhWs;wR^>l1!^LzXgcI_JLDXad7pr;aci@^)u<1wEnq}i#hI7~Mh_v6{ zH`}vSX|gFi!#UPk@Ta>&aG2yN$w5{xi%`R*g70*`>FMQ#FrrA;Oh(#iU@P(Avwuhg zh(qg>UMl?C1KY9L@E((-nq_+%S<>W>*@s1T^~Q3}hj6+ItSf!W9q^n0VZmV1 zZ2)oZ6Pz`x$M?4)VS*6=i_4)F z0_nr{XixBnh`K%_Ijj#?F_oM4OZ?~^9E^gDF~j%oe=kd5LXxBPm(%?<{^_j!)SF*L zf*B-i3dRsE1uuX`l?@fV{vwpoiVf}(+>RDaol#zc@LW}kFW!9Go-QFKgw{O;VTN)+hVs8ZIJ8d?9oih8{!}ne<>1zA%9iSn5-;K-pgl*p zxN3Sf!&#SfT9T%iuS}y^Wg{i%^X1{=6INi-#|m|OzqLuhmuGDwnhGM`gMlG>Z9Vnf zR+0HO5JWz(23ETq5`o+*SEF1NHeu-f$)k=yDtgV~U1u)lV>&X02)-s)T zDr0C>V)B&4KJ5RUBVX%Ip8WbJ;h4$l;X~Y;5EGV>dAv74yJFaMNR;RhwIk64VUT*8L>R< zOMQEnpYreYbZMfjsB;A|na?AL-5T%Vhnp)lQ0!rNJ-#zWEHveztYr(IA5hTf)KUYE z0Y7pz$Z^ce@xXZaRq%(?u+L_G@6LIrgnd1lKXbuDnJDvp$?u5@QA+3iV`zFH?FPBX zH|Yce?M6>d<^Vg`EbiD89Ht`!Gl$i}bjUeW&O4B(mM*#c*H$qf-4E0%%b;Te|W8Nl7~_O=Bw>6=kQMMG$O{LdFtN-bS9D7msaqIt@c zZsV|QMLAhd-$6Pf)yz#zP1=o4VT)dvds0cfVPQx(8?#jtI~4b~cS07rPYM1R+< zM|3${Ua1(j9J8JF7tAyM*GjAx$8|04Olah-R{Dh_gVLSe_QI=$=|hnZNhGVSo&Bne zUadOfJn`eTnLJmSBG!##!e6@etxZk$ZTCLGvIxmxZ;FHqMp>K(NZ75X#37&xm*pdM zyJ$NkOvQfwi~#X#663|QAM7PvGOl-~t3Xn@u&^F^R(0_VFY>LM)5Q@k1O(-Rr~jAB zr9WtGZq5wlgFDa>{u|8fD0S#SMcp1}BDzWW@8RwH(e7CBY!-jCy`h5FNDMOV!0!xg-q2QNX63IUc~(H-VFOnfd^FUiP+tgH%^W{B|c zWJ9p)t35978+XTKIBr$K%uT@O9$2Jx?9dG-7=;Tlhs8*|=k?{`TB&|erEft2ou_95 zAn8FmL_|NWCL_eI`mQ-p35d7Dl~) zk`#_y>aF~(!Z|sTu~(fdcT2{rSA+3M_++t?V5bCpfKk^|01K7+**3p4GM{JR1EhUB z>1_@4JYl1b6GDjtM@XIol5nYCzvT;WGPq(*)(3PYx=lTLO`j7G_}6<-ayt^WMzxqu zRNG-5Z;s2kD+GP(g!OTKGV?Km=7{O>=A@oSDoFh75!KX8LqkJ5zxM8joDZX;D?s|0 z7}&;~|1Ho!^sM3b1V6RLk0)S``Q7x26|7@&<24~K3S_{bq0#8+S$kP9YM}vd2&^}- zM|14&0i48YCXWW$R|gSP6AcYFfO@?|i)aa|5YJYmd4@k`1W=cRy(_%I z26RSK;lN3?G?=;eC$&CQrNHF&2hDvLT)=szSYhD;-DQzRT9BXj-+!-QzVN3GRxTL( z0x5cfReQO~90~~8cv!Uc`$Pl;f;AW~09dvEA~CQwQ|}g+uR>eyuomn^U~*FdBhhfh z)_b_cu2ghWe*b=MU|>*IQ6Vc`e@+#J4NOpm*`Q{jdQI?2njbmj4~1H&6e#9@G#@L` zihw=!0AeHRH)@s&TSro%>y5e0$9MJ`*onJHIdi2`TVZR`_+dmt z$n7M3;OPoMoniQF0LdrgbJ%9b$ML$3P($W%bJ-Hr-RuvsPyjgxXtG(#7pPjR7Hj&& z#=d}Mr1{TCjP>-fgD)HdSJ&53;^ZJ4qadm?@H@bwQw^Xt|qXKKxXTglsnR6;gsA|PueJAXrjp#aS>0D@YN^94{c zEDvQ*^SU2#s@PsaU?sIy&Qq;Q`W%gNSDMQ6!OtT3HUH#glKZZFSr4Lh9=;c)MlNF3 z+~63g?IA(hc=7FWC-fvD@LS;g^jfQEfT5Lz1pD~ahJ5V{^p6%SJ?=D0oS3$Ah)XXF zp0Z#ThG7W{7eJ!ffMn>PWT?Q|bj!&kxwtI7sy`Cv#FLQ%)!5F??{7wFsN@n`A*5)s z+U|ah!`hjcZY%h%VI?M#O`Z_#`f{w^;Qr|Dqb%Ejx9%mk(US<`GzwGMxDswiM)d@> z#8&_Vs9b;lFmcRsJ7quGncm3#Y|QU|7W&J@AwxMoFhnVmA_U4KM=dIN;om|A1&i^I zjCc1>_x?UpDj0=5A_4F&Sz%!;fG~64-M>p!YE+L_$yNkmtjq0O#DhoqWriIro8u({ zYkj`XAd!q?+7p8*c%roHXnQghIJwu3n}Y0C{}$Rpq^#yWp$kEDY02R+K0cjh)vgeT zk8zlGul;yE^eE{O``&)d81pWwiC<1j4}-k}D@7KJnaAcpYhzMAUEDX66Ag|3pWCOr z94v%fPl;xh>hjY0J-4BmObL{~xG?j>U5(@5P~Q6JWsz!X#rET#LOp&6v64f7@j?g+ z(!tJuqo&q<&O^w9O3tg@l+hwKWHk;c4D^3`Cx1BN&&|yNU6MRrQja0^tJ{br7>lO4 zc($%9W@FfW7t&b4AWL9tYx`5vV^UJAgB~J){5`L^4fXZ=f-rH+=6*dEiy(yOEJ>5< zbyaN#L6_K&tEu!RTv#E?Ji7g}KO#tdKO*Dw#hLNImEi8tQdU(ZoayJVmP(SI>3+_u zu9-*@m9876Ntna=Q zHh=a0`m3_3)jV`RT$bzaE8mi(+c~paY{&`~&J}(a5G5`2tNnS(QD%PGzdX-N97;W( z?-}}K&V}^HmtSdy@1;<$OjY3L$?5`_+!e=x=CBriOPPHt5xu&&5ScJn&x3)72QHNe z&QH6@pd4SRSqo7fU3-E2sK%jYs6dSe;4#+OwL5S7Gkhlj(x{;tDI8k0Vvtb$9cc31 zo?7`YNlP}IXf|0oeOIi^dfF3)tgg$`sVJb$6&diKpSQDt7-z5L7wXNypW6P+BEqll-g>Wzb$?^`RIwxaL zT{d=IHkc3Fj99RN*Z0o8@ZZA@7RxbpShX<|yB&6-(c<0sI20nNk52Hs@NpX<N&zeJ{1 z;datPACP!@b}K>9PvU#ahgqxE+B=%yad|oni!#{dh1!B&nEw;dw(sAa<#pQ)$~4^E z8^aqdu!DdsV9=xhY6BHgQ;Q*01TjCQ+sXFT@%WoU>%tnhHO2z9lIH&Y2$#b(szEM1 zHVdGftXl>Ko`BU34AXh4^>}z;U%{pWV~Q+fsyJVsFbtdi5ziSwb@eTGF8kKnE{cwY z1z`ykAaQ&0h$$=~*!`wE_I92HtMN_ciw zv$Zck;8^RlBYKR-HegXfz~dBStyKkqVNeM8*k$JM185^r|ugdF%D^duaMcfeir-_ zCALTuq|w7oC0^BZ6SWJe$e;F@b7a!MBA0@R6Lx)loxp9(0+@hdi~pma7O~oHG!!su zqv^F{5HJX3->*>h3H+zuIylX!C=j5XBQlWxI?{sqt8Y!2x3tYW?FZB`=|hr8A#s_l zp;&FQ!sw>wmfPFb)muq?O}kGU{@m(xRe7~OMysLj9FWZRepg8CgY{*mRPQKe-S&f! z%xlW_G}Sb644Q1oEQYhMaI8X{MPCxfUgHMFgNH&GYF4ap$I7PA0vqZJ(xMy<#y-dm z0nYefb5sl78DOWq1_z|Y<%hnBFo7f9@ z-N7_$z4rURXJ_ZLEi+eXeos9Zr(&7(HqU?ikdOxtBl$#F&z z6Vs-DAw3+FPe2qpZaKa0j#<2$>FYib1Dzo?n!lpRYy08D%gRbsSQBjKJtNg=2bx|v ze7QXTw z_bkW$$c$KVI&P9$PoFIHCgHs8b)+SY;>H+B<2)nz*pl=Cf)X}{A5dil zD;t~k#TNWKo2TWN6;k*9)^W9^9gg#EmO4RMc>EUQx!?T0+%}V;udk1L-E-VpFL+vEKFr?c3C<<&@e(~lQ_~LrFnl;P z(d}!JA;8~hccv*T2-9q+HH}P+9sKflpUA6M`s(WOa0O&DalhyOWYYy`l6sB(BQmjY z$ujWS&`HQsb9!EJ+Sd?(UKTh#fv@ywb72sDmVO(srBP=B1RFBktq`Wi1=6<41io1P zVvTaj>xQD;;(yP*aV|2te|Ev$jEAI^M0eI%nRFI!-?d)KM&s?*q95o8efTstX`d? zytcl0dgu8CDNy5v>yR&XaG_3Jiu-x~P{2ZGLgXB?0F5_r}Ii#qt}sq_9F$YgbbOiEi|7A?Rp} zBT>-L0{Gc+;tLOaT<^@Vxz|ilQexTenie>NL*EMhFWN?p$}nn{DD>x_;WAy3i)UX% zvcPLsV0j|k@(Gj=(g_DN4}`M8-2OZ%)1VzJX@WVJnciVKVuPc069;gEhv4|f(w|m*;*%xI7`_X`?YW27=i4EC*BkBSzlw~;^O$I z+-7UZ!NmhYs$QQ*C}59pbe<0=&R3`6ej z$qs)f=t0e9YdLIeUYN~$!Y&~ToQ6WA zZqwEI6`Lci@8eUW(_Ix14y%@EB(=W34FtF@1e-xLTanrG>OEYPTO3y62Blu)pkVrw z%ocJt^A2wWhRF15LwY!e?Q=rHl(W-2s1n*kJJHFY6ow5>b#tP%Gy~ubei#o!Lf=zA z+gJ|~^q}wQ z+MYsl7n}TsLMrzVHwT{jUQ>NRC%S$1g!{!eVbpKfHIxK3lusX8V;yh3kYN@E4L}V5 z^UwNmN?x-{arIw9JQPHQ$HD0s4gDQ3(&d7AdZSxF#gar8De<%T!AempC|Wk=8&SX# zX9~J?06$}_CKa(eoq_g-6j+m$ZVgDD_s68_bJ!YVhD6RT|7S$n4ZnyLuz; zAp?-^1s!`^>qxMn`IB&Ra`H$XHCaT|?e6u#hmFq9=9~4r7@&|Y8|;=}J+Cj6sz2xh zUFm?f#Nh=6>6|jiA4BO2ZOpX7{JSNljE1{ zg>rwJe|N_whxkW5o9#{h9X$Fm7@j;kW&k3%cL&PY|1Rhz$T(DWHRKb4*HunjVe=-d&rI8&k1Va;YEAhbSO4G!XXsCF5N+kr+XgNANCFMuSd+@RM)Lg($hbM z+b&-@&nGAd3GQ*on}F;D+=sU>TeBphm1gvEhokuQbfHseectQdtlJTZSU3T~;kyr2))Uf7j!~FsbCSr&O~Qqj=)zY;3shqNY=sbSeCk zZc|Wj`i8&j3xS3kXkq1I?MLv-f&k5m+Tlny>pxz6}CUhm*Pvr=dk z-2XhK;_z*B^U1R?(Y%p=M=}rg{riGK#(iY{s5|*Ei+f(L4-1LPUVeJD@;Yi;)E2Jl z7V&)HY-K|elfdk3^L#Fb3l=k#yC>%*ll0Y!v{0VfOumt5aq-n%P#V0Kte#g^fg2fUyul7U_?rMJbTL%=7uVTTsvuKU?9BM%=TTQfPHJ+R-Cdmchq8I zBI9AMTw3$=CFSa>34kELd&Tp6u>mRsL2SHG0u~5!GL2pXxyFx)#Z}e+@Ypu9Xq^tC zhO#B$i_z6udL(y^Q{!^T$McCu{Ar`bOf@^?u1QvXx&YWqIe#P+-T>z9{^gppo12@F z@48_i5?EL)W9h04!dz2Ke@CQQX%$)QklhBUahzT^cwRS?RD^;7x7KqF9&#CiZ0pli z#CI#EldXS1fKr{ROktrk+;yjoBT~-)RGZ0cX}DOnzQ;2eGX;Wz6jEFuzrz@~B*8pyx|n)6}N z9ll@KI5_ocOaCemNMmxm=niSVNDv9ceiPlUe>E=m{yG02Jr?C@*3N}Spc8%_|LWKs zRr=>~_!)2w%$HcL<+*ZQ39MAP{mC+__DWbHU>|7?|E>V9~4 zcVifJ60N7JsDi^}5?B%-o6hdyj|MXKh-J`7iCWyBlM}0nQs!Py)jaK>($e>}j+QN8 z>IF>^VugjuH}m1zJJxoK!zPm7>p!g1+5Z<%8$epY8>Mpr8-Se%1VJ7EC zv$x=x|9i3%aPi3JY8T?M5jm=o%~RLh4(yt)_5}Ti!Km_rEnh8DArp^YkME%Zmdif3 z56@oF0MdcnQfC0O$n%O$3JX%7`Wkl&wEGQn(2h2P{58X9l=3B>M`h%z&7-9;oDQ=3 zMeD2siUJLC@S##!F76RG?Ob|ta`G%DYc%gn+Xk}tg{WGHLYO!oi~ZCs(l^vRMxvTX z@Bfs^bs2=Hm?hlB1xYJnn9RME6C03hDy_o*#4{&Gk>#Sl#DW$;A!_x~g~ug(<|ci~ zeTSy~cX~9CKxc}IfS@mardq8DiXwFHUvQ75<1BSs(R?8*{~E}7AG1YMnqUM`h>T1! zmcdur2WcL;&riZee%UVz^R>AGW!eW1AA)f4UAAHwr0Kzi=?}$})>B6-5G`C? z&AF6F$B~*U2lXas#l?(p?ea=+{T#Wo0Kg0Ml!%4AZ6`cD{EEw+Qz+nRQ%47X(39~F zmA`vU@Y-{^96W$2?QBDLB&`>e@@1v3O|L#9(J)d@PE5SkZx)6q_YP1=z!g2;I3RV+ z`qwBk(>*l{@e;Iklci0*;8{|rcYPF2I4w90^Vh?dJ{0sj z6gLgd`y;JsGBPsXRg2su>#{pRDF{wXZG+k-{uM)E-;xM9kOxPUph3nhN=Qs*ET3w) z^J!lIs44+{QGlv$YFVZY3<%!3DfUd(3An8n)F zywL$M#Kv4b_$)@=6^+SPi=!776+-6pE6CaIfOvG^+M=M_8Q1|%Hzyn@3tsc!F75!$ zN__kTQy&K;kKNqd2W4(5$UInVW~3iHczD-q1KBb6id1_*3mMO4$ld?;twyyI54#g; zC}EO)!bn;h;95|T_Z$>}5_WE&B-r48e-AEV{lBgH2%npm(xn5xpq=(S_ML8)mnf#! zwC4`I;4N0;*Js}o=EUQn#=wucAY*L97vXT!UkVba>G=%lVd#^t%sDt;?wEL&T zFSOX_C7=JP|Cdf(kC7FUBAz#+$)XYH{*^nTJVpE!4&kFuB@1C*4{kCv5u&Z0U?2ss z_kxHeF+L%QEciJNzAq#!`ih2{{Qchd@})SGY~%HOwKn=QQFgR3%%O1q4JT(HjKSru zqqMTg)!x2BCXmhQS5?Kq$Vd|x#N&PjLO1j`)|wFzv^rFGD$f1UtPgxGpfEA)pYs^` zuJ8~964b$W% zw4(L&5A2S^!*{7x|$LIJN$ zj?6?O@ce*&1Fpi^l@F%%UoF>rJc^$LDJu@l}h}o9g7rj1qQSa1l*WiS%3iQvk4w!z334bPOnO8 z|1h#=fiCyx_N4*{^j29Q>`G=>VE}&DJKTbTE@DwN4@LaQK{qeGZBzhKDj#4|DjFD$ zLWf|;bd@cu>8>{S$MtwlwZoGWlcCn2!nC)~6aILUu54zxHjtB_Nd4~WLKJElk?QyO zg_s}>i^HiR1RKs~+8}79^_ss{9a_hDZ4Izk$(P=0D zffVG6oF%{?zpV8$!Nls5A><0V*YBX>u6MNHF~&2e`bcr6J2H39cdh1BwE0pV3C$*% z0<*+SLssa1z=!7Rw^2PuD>Qe2F6@!_fLLYNt0z(_|4Ep#Wvag#IQ4WxC8Rt~uH1B9 zR5X0OXF&ftzTWJ0$aeTuj_T4KDmC~UET(lBh;eQf#0EZ`o6+V$zt@%aa4HXvqN7UifQ_#^rE3CBx)E;r|`k2P*9- zz_;^+k}?OPbC-MO6?|AUIH%^B+1T2C|Mo5|4HUL(AbRURnBBAR(Os(xULl9IVsQ2H z|1f0|f|fM!46%XEAq$wf^^dOEhk=3LZMknsWL^0j5~TeT61X7t)x7dDDyF+gg!K0y z4-4u{Oxd3QeKlTV?fo~+Iqz}Ysrv_c6z{5q0!NuBBXAENul4UW4GcWj)AO=lr3W(_ z&YAsz{3hsTOD#sRyJIawqm`hYqi3*S{K@W&%h@&K2^EMr{4B>&AsmKhdmH(O{ffyw zh{BLdV0ji476wV1(5!3) zF;i235kZWdu{=SDL_5eS!sPeldp5RNc8<}@ZCs;&mv<7{5f`kE2tvc=&qyH5f}S^@ zq$K=LyK@j$O98hsDnJ83YX_4&;dMQ`=WS=$@rA7b6IBBO-A999#5FLF{b3WFolUVd zRGew>H zY10d11_;*?{6b<$IO*>qaeT8ROoH&~ z5RJ#M@wV*Kn4N<47O|&^zw9Gnbe`Y$nrzTpe+w!+ZH2;nUMCKy52%_5Ho$?Xop01b zI+&NI9qZHq@^Uk7o@)p0e5c)$mOB;WbF6M-uH&xrdpri*dvhWzj+;-ClV`X*-Kik% zGea8JSh7ecfSuWT3Ii7B{vs_Z80i6x@;*PL8mzJf0x4PGc=Ky0!6ehXunaKl4^Ow)kF9Q0Ba^yxOZ3R#wIg-^8|J7Y7zr zRxZZ_a<|jn3~}^_zv`zx^!wd1X-j^=N8ZoH?f)2i>^lZ4^1r;CQ=SD$Xkq_l_sLPE(&PM`#NU-#*+Uy)r# zPYJnSFqK3@gm+kYU!R$|h28KTrCN!0)1N^1V7Jl1Vj8}q0Q&L#elayrPh4s_~ z1oi(;7l>B>X|^fnSL;3W!v42+(4C6X)YNpw?G*lUp$iKn&;|i}Q5E##vOw-VLn$FZ z{IRr7KP^W6kMR%2XVlAG*lZa)9Fjf;necZYp}p9tcAwR9gnTBCD4VKc2x(qgKutsMd&?4#pH$c}yu zXt_f2Uj!-CNE4 zO!(W@m^aYqyzc{jA*?RlSUGZOQF|W5T=wyhM|^m74kjJ0bPJ&+CTc=q>PxYXuid;mrv0T*tMIdeZU6Y~yBhm!$fl;8 zt$jwu!-LPm!;{ESB}N-<52d!c4bJ~nhBGFirsir-Dw0zPvzj~eH~aX0_-F;SF*2Q< ze->KzmjI<4&dEe+VtVL;k1Yt_+Mjy^M2>8Zuul7=r4b)*jl)fNQK(%L3wYS#=2RFg z8V5%km~df;KuS8NoxvJYP|<2YS=ozS$VZ~wa7w**|K2?bVFBf{U2l5=d^UUX$Ee#K zLqCvHbhtCK^Ze!+_=~k0LbHuU`ckIlR8_IFB@^J-1pMy-8u6opv;ATB<5;Lj{OsYt zBl>67&#@kxe|MpOv*Zc#$TCf!pY)H>*m*if4T6h=3~>s?EVJ8BzZh@%6{v+zIno)W z-Z8O$cCxmraXJ|Vh8^g zS)rWlKYxG3`LtAq>3rhzfbhh(6^gLr6&1!S6mo6Z5K9)sf?=NYfX z%X7l=REr)!B(C!@Z47MDPzmiax|tQFfIc%@2fO`q49sW=8JSGsAOmr73&4KT;G`LB z5W13@*ARuIZ>-}h)`O1{ob5<3iQLV1*c(6s^vDk{lVW=GER*uo0%%%+{{Fu7qnp*m9f^W^Er7oRe~w zL*4dJ+()T7<_yk9&Ed~8H`^AMz2N8-7%UbP|=OHnMK8efy0T(c8Ew%SeOmmp*|ILHO zplC)NL@3*41MhZwAUZ1uf8%Mfm5t#w1+5W)@&u|SsXYT3^|v!Jw=E!9j)_tJ z`SZ=-zyJvwTi8+u(?H#)IO5a-dFqL>B@*!Fl94Z0Y*vTKID%pqNX;I!7uWnA!8wZA zq7XwcT&Yv%z6B+yK8Sh;5sE|{&|FH4LAB-vi*BDh&l~tF5Cs=#o0?sf~AoJ9!jk&qL7y^pE z()#qBoLq#r_r1h7Hm$pF-GElJOdaR^uyC&>;Mq!(Z-BaLUNb1{G#adM`S|AYl^yOd z859(ERN^l5;+Mq4a`Sv1&j0?s!eLBHcM7w=d%|<|9dPzYz^FuHZX*kUE@$WG8QIx> zuqof~e|QLrMQW^{78`*%Ie{oRF^8>y{`}qX2(CW+{9trUtwi}y-A8Vi}dP_Mti!_9os5y4tpjP{w6z<)ua1eEPA_|fNp|MWxEcmkgx;%wcgeq;6N zsi_}s{Y0S3@lTugpp+$$eD|BqM~KY%i1a_H(`YVNt%d#EzvL*Co#Yqfw88uI`7fE4 zq%ab#`j#RnKYMlZKi=g3Pc}u<&|D)(*XHdLB-B0y$|nylPj?J=rr7R=EjeGE4DSge zbSBbPUQe>cL3|`MJt^li%|F-j%n^DaNI_WW*c7C^n!=r8==T@9fAk0Od#(wSqF33b zK{&bHJplcJ*eq8Sei+$}jE?UAQ;#Bhk&-B!a9S@b@`!M=`-3%gw!{nEudB#-n%#Eh zB$>X3FWf!QhJF~Ar+LakxDW{o3vFBzYB$o@84~9DXiv%uy2_i^C1PD>B%+0#-(K^(z4E)NdrfW7>`k*3)nx>+S=?&k z>L28v)6mdB+ek8*7^+gfvbodFT&CnD9Y)aekT#gd61A$X>?^#0m!_0S{vQs6Xl!Bv znoR~3Y9i_mtN?5Vd*l7PP>skqoZ4D$f{7(0=mqO_KHfx>`YKJveL)7h)*?7n@+-kd zn5Q!Ql}gUupWWElm|6dd^DYE1OQJ=&qw!=(tT9(IC32>N4knD%-bUyRA_NJkbf&1I zxRlfyr*@(Qm{eCG4Fq0=GOydg2Ycsg zP;rXS%sl9=sP`V+tI~YZ!l z_hS6L(>rrt-<~M1d0uOglPcAd?+rD8O76V?PZ*3z*NlwA6u?W7LIl&&<*? zv#6-6HRy2vgs<(6K^rl@*PlkG#;Z zgq4Nm%i8_^JO#4c=fQB(Ta5l_@9zGRA(YEvJ|qa3aua00*Vqk56irt~N70DM$b^O9 zc%Zmr1IQiNW+2!y_wBiPRE9>Pa<3$UsJJuUm%b(MPoO}0C?wNiIMjpwfgBqC~$bMx$jHSE39Ed8m1MvWLrMfdy4et3%mI{Ik3Ku>dUPKXq_8 z#Bg>k&Xjy%Tzqu0Lzuu~+{#pe1G~n*#bHjnzoa@kbx`i{s92{FvbY?;1A=sNQhavF z|L1VVpe^(@E8We~d;&^?nVFe<*7sL9D4n+`3tMjYb#!!uMe?tgmxV|~Ed(k3;S`)d zSjScre|1ayr$?o!W=|QkOaO1{g#V~_I~@Y-4%B~~ups&(qN#?-+=CQ~w$|3qAS50b z>q5$9hXiIvlqTG(1fXnWQ(AWMt96UDzE@IWp?h{`t2^ z##!pc&pho^A{NyRaK&&$)-$wX8sP&HoZe(`a4gl7C4l!9VHIw`EW(|I~| z?8lAH3M*}quY~TRtGT}LFzkT434nBy*3K)Agu8skks4OFldGDal`z9tZsp%ayyQEiDP?W-M^PD>6zl1?)po;ZX)R)_N}a zid%0-1TiKKzR*Un%V!(p2c*ka`X#0FVPQV%5A!q!1<`98;{{L8_!k*IN&{{ zGwcXmUCg|s*Dg!=hoCbwRQ{S)H~+VT@)Km*M3bRv*PG4cTP#JT;eY#Fy)ef>PD^HS zvFvcp@k^FgLY_Lrny1^M4%p=>~RzQ3+;58gMJf#bnnb!B{dvCyRCdi1iXE#z^YdfALzilL2e2ofgcT2lBw zI?8s@tCQ(B{?9JUs;BtjWVB7shB^?FX8?*ksujJVEiM+S_Tu+GTw{8#ku4eiV`N0R z_LIX(TgcikcbB(v5qEhY$r(1Tdhy|lDsK2mzWt4pG~?o(6GCDy0i8E{4M zs?Dyi_rI|k@U}SC95!qvz3Kc+$;=+ScFGhTl^WcT!OZ?lD2ip;GhG3oYs%-(YBk+@^~l)*zNp|a ziw2l-Rnw@^^_X^6yN<^V)GI&I9OBR$UG24xw};^!Yz&LRo&o28$|Fx*HVgHo z?QQ8xryZBGb#xy=f!KVNAm`I?yQTIo@iE#9q%EtxN%8!)jAdp20SBPssiiX>TS&rQmBQF6&pn z5bTviQ$l{vP*0D`zf(o{JWktx92xus!OJ7J%kSRpj>g|Q&u=R5PA1Anc1%n0XFf@w zXLDv@WMfP-?~WJUg9jMkVa`;}(+dgfi|9*90UW;#=h#~3==d1sXRy~zkYEI@54LEi za4`8^8;jHTx4e>?#S+#$O7VyZ+;*1zqt)B&7Y$}XRytLyR}>VVb7UHe1R1s1qyPOw zgL<&94cE2IZYT6V%FA)NtzKSSNVf2@Q~JjisQzea@r|WhTQ)D1%2ot?7>q6+2ca4` zA#IRrdv7hA&}@7xNG7T3y{&D@#i9$ur^7o+NkI{7KAg+!*p2lC^BeOU+T!4-`)0$| zSn&A?kYhx}#!7S^K0ZqO6*N}dJ7)gigDy#!9+8dFs;A@4x+@h1}Th^BXRGgK&rhn8e0pI#C!H7`}W#?jwo( z`qf{V_FDhqhZiz4vt2UpMhNVNu)psga0h7@r)!iWdgV3UTsU%qpdXgHqMD~p^1B4q zrxX7HN=v}~(dU)WjKe7OjiJrW<(kd+1%)M54uCOp)a??21KPuJWn5kHqA8zce%gb` zPPYW7o#ct1cC2A|9IDywbzXZ!&=)V5|9r695uwqdG&h@kvECRv!Zzh0!pDz}5;77^ zZd+D(RZf`>x8~pT*03k(vtZHpQut9wk=M1qJyYfjF2RhP9Dj9sN*ZP)8JU$|Wc!~C zeJU%liTOR@El=r7(OI9Fr0B0yQc^SbR-(e!On>lO1?)fxY9)gEGj$yON45~$wmnf6omdH*USr|Aw-|(k zgpluwM#P&g7O@K*;ew+%%CsvmQ@}of4BB0Hjzsv%MSxtza;&&#n69s>=|7-9fo8DL ztw;X5olp)1T+9K3j87g&NCW}wef?oug&K>Tio$MvK>)z)5Xe5p2>J}?th7ul>2Oz9 z*CW~uDhi6crw65_A4DTk+W;*9wB?oTaB;hS)i`i@?GpIr*xs0wq9C^lVq=IP)@s;xDbo3q(7r*r?ZUcXxIz~uZ53pf zOYhwOcjM0?$=F0$=Bdr*N@MzjuSc~6lP8ug;;sqfZpgzWFz9_W~ZQ~Mdok3(n)}3A1<$( z2P&2xVIGX{ebOQvq)a4tN2ulx|Bt1!49Ifpy0r=-B1%X|NQp=zDa{7y4(XC^X^<}I z?(PNw0qGJc1*8NCk?!t}Z$9rifA==mfYq5<0T@;GuW;cF(rjB;DO9AOxsz?fknST^-K9iwoDI?ahnd z<$D5B{%A%Bp?-MSmd$j?2L>&qUiW4As{TAo!(&LXSqh4jq^4$yAXaJoGx>KlJ@Kl| z2Uxt2I)v@!GAGL3{-Oz$tX5XYE8XUggiTJk&8hohoK9Q3uCA{24nMteOh0^(?Mq+) z-j`O!vZ$yCm>)?Y;n&q*@W9f_e5fY$5n_|lpv{_-!*4hL{VtUpi7a@2IlVjurZhG< zxoWaMq)$0)F9`Wv9K!}AdWns|Ad&cck=l;-nL8FT%SenmPcBdPT~GRRtB3Qu6hUEE z;x^*cfEMl8z2dKBA_&mRXrnXu-w1#dt>&vn-#t1CDDYbB^ZlpLGrh1j`~sZ%O4<4% z01UKG`<>(e0@^FVD_M75OGJ#*3D$uh{rx#`Ieu4~aGT>`tE4n`Hr{r72fnp{meXqT z^cx%=7WRnf{=52m|DojICVhciUmHI)IW<`$-i9+C~kV==~ROvBYP$$KIQgAcqN~DEQ~DEL4JeC8@RozZmmMu z-+KP0PCZUNprD3#wecwdLC1i0Q_$5}@F^+(0T}kcituB!I5hc{Q(vAa4BL zWT?$9$3fSdg;kyjJW@T5OLdjc)%cxxi8w6h))Z!mbI80^hK=u z-*YDQMwT|0ncR2&=HfVJYRaQjbabbkoOE=dIxV6Kjne9jI*rm|CMKY|pgw-wwK+t- zu(&{@UPTFIKL#uP%cf>#BfrMt6CxtmET)iq@SZpTG3w&08SHfs(mA~BX44n1oH9iy zdI|D>_i{gf^%vbdQ6^s_*pN1nZo)`KRrP_RqoZ=hP>sbZ+@9+0W-I2~(d#smn5^D_ zMzpx?vB7lt;f8>1EL)Q1{>u=wXB((q=Dd4HywaB^9?B^DbL}lfn&T%G>!x>6eSKYz zEtxqO(WqO9sic!CXirc0^Dndl(AT?~oUuOZ)-ev&g2@PmEE?$6Ewr4>M9)0Kz$Cfx z;rHl1SnyXg9O~Po1RMhZ{y&$MViKGOrLdRXdCkgt-G?uJ2P7h9h7TdNwN5_Ay>Sdu zLPGkj%V6w=I9eEZ5y??mMn{+61C_k;i>S(Jn^&1u()(b!&*pT;Og8f*PtcE0d~_)( zuB5-{JfnZgJs3Nm_Ig1ZRZE~b?b8|t!e{__IrPWzyH3H_FX6UFrK2;0%wOM|-si>0 zSQRCNcD{Sau}0qAO{LXl8>_Rk10oWu=^iG($3@VR_;cGDt&b_ZuLqqZ?PY8qHc4vhdr|zCNkhvBx=mZ zpgZbmMur<=f>>WCI6M1zxG^RLettMn;L?Y}%395VRi&j**nCtnt8>I*2JY z*WHi7-X5$*FG`86(B|pU-0T4o>~m6U>wB52eE49@dIW*kf_!^x(TJ4LY&|SS-G-1- zi#KfS>@HC7qNAe&tK-h^-(wJ)GqCPgRmG*sX9~PxHt0qN(K-m)CaI{f@7>d}x%m1@ zR@MpZ5n08>KeyCbl|wO#i;I64R*~`-vgl?gRVcJ6jAs*7n(0?{q8yQMroaI{lrQBb zEtN=4rq$nq`t(C92bB(W_`6?ceNWu7D{tfqUl+988BxTZ-2ZFin{lpGYsqD4X^x4H z9|$m4SPVlpAPo>RB`P&@d-G*5-t0X(exap>LXI8G={kyZr$KAZNR5J7;{6AT93eB0 z(Xqn}>fJV4RWuUZ|IE@&w>EKKa&g`F7s?WkwzhqWC?B3_9&1KJ%TcRrJ{ljDTPm`uVEzC*cwDJXu;4%H4y4g8rk&djYl{W0Szz1U$G( zlQYUTuughR+)Hs@(|oVndSekqAY91Np#A$`p*LO=K@wl=ab9WYy#Q&V(V4XS@|3h# zyO3k$p19vz(Fu%zpdt77vM!Nu_M6yUHll z<$A>`!z{3M1V)VYb&0bJytEt^9v;o*k_*;ODnq;FSz z|H{jra&u#YVLY2V0lv82cb|d<5gU5q;IlK8mshahthDYwQJTopm%tPS^XVxln2F3N~9} z+48U5{?K!Lm`1d)gBB^69c91REd%bIq4DwM_1}F-DTFWvOZ6tO_xvbAh265QVtm3| zis-%d-zIRJ3|Gv4?EfXj433Pnv?;{`2O8tS45ciUf$`n;CFP!CLj~MT7Q4^1rZxj_ zqR@kB)XlrFIyWT!&xCyHy>R?#W^X7*wxl@*H+xot$eNp*UGOl!-5@>S@@h}?UiIPR z{5l6oY1prZe6}Qjc>Tb<%7xfO^ZA?RW{zBW>K{Mi>=&HysxO z40ezB)$dqdsnUyq8!}s%8j}{&1#esuACC!RkHz>ExcyyPq0$t>a1s1hY!5)D$fQ9w(bDn-FRz)OCWJ-$y%5muN1E(1pm$a`C;kN zR`F;$1dEYW%g-v!$F#t|BAgoli6@SnJoSfQf(VaSUiJ!We?k^3k<4NB5X4}ZRg3kH z!8_R-gynH-fWqS)8v1m7eZ6GQrx^~yIhY)v%B0Qh)qk)}>P;vsL^C_XVt%OTo@svd z&`(=ps|f~@7@O@sW#3%O|1};m(nlSQ`Wn1`M3Wcg#dwqG0SKw9sCb);Q> z|7C`Dle3wUm>^%RHLH?i&we_$jgAzn9tHYH?bjV@2FL8CSQ z^SQit|HJ#NNbnwwaatIwr2Q#NwO^0H@9qZs&n)R-j4`a(;fGhxI$eU-kJ?xzfOc7W zZCF~m#%@EaAyM2nfgyQgMbhs%+T)Yko~yyFuYGxwyseISZT6QR@eAI$(`#oF%A`#f z8;sv|JWlhKcV;Bj+f519YHI73}<<22Rv~!nQ0C_KOtve z2n`FP4+}p&oK^?^#oIknZbYjX8*b) ziTWS}2d*9Lmy$!(g+xdX9_NhWC*C4mo&weTwJ-%Uw=2p7hh@0-C4XGGX?!)g;5X@4 zPkLNYyngOX&9%pZq<#0sd1r+t4V!>K0=&3is;cHT#ySAW@|HG!er_lUn8%{wDIy?v zLbKPC4}qc(?#WKv-&mg2X|K ztgN%XinI%Uu)HJT?!F*kjFl}Gi8bAL>|MP&U|iKCPbSb>^aQ$PuCxr80K}kpqI-otN`L!#?C)2^~T*+MVo5G z4Z^EurY5$*{%7FXCt;`EsV>-=Kx0mBZ@9rqo%4=6WBVXnF1VfTRv-_@>*Xo( zGQoBJyCd}WRf@xccIetMUyGxB)4L`Z-a(vBYzvRgibCkzC)1tDSApcMg>(#{^S zYUf?%(6;0evVUG*nhw7I2!G`~`3YoH-pub3yfJw> zxN{ku79+~ur+BnEEX^)3^+gZ=5q|li(x?fzREzYix?m5S{F>RC=>1Kz3q(FMhK4lZ zxR1`r@TohMaN62iSnk8@)W>q%oMJH)XMzDIAN!-n#St#a?vk}y214poKAa9j;Uad zvfWz45_)@WcfDq4^b-|5WLf(ihhilOOCK?@4k+WOKGF@;Hr; ziU&dXrPlaL{X!Id6;zf#<=P$VN`)WKX{l#9E8u$dxvT{7%mJ*^-1f3R87j2ppz<`q zC!ggrq*xu+N7$h5ea^?v{pwlpW>mw3b3e_%D{MnH>ZdZxAzhv&v)~fkvdkYjJN2^# z88e=i-FT&6{eGh~BL4d#u;t;SCYd(RMRB>or8C>*5UWxZKJavLg7^UIJ6wSDrV_o0 zxLIy0wQJBCGj?zw76~Q1dR@RM04sKuEqrr_g?fBMSl`fGxqmKIvYcWf-S zkfCoH7>+g8yYdfJ4gU{${ibU;{1`DA?fK+NNcBR`M|IEo@mz4p*={{dw(GNK%c z0Cc+GY7Iu(_iCL{ffyuqOF#6G1+!#QIVN~Gqmq&kz+0E+c->ioelB}^;2_KxE^)Nb z_-YCQ?rQ(K(%B{5eY4$vZE|BJV|K^Pu(%`qqXLcK_fKb9g2RKsvfp z>{l&RD@L*e--7AW7eZi&k_!7*CO~qU2Z|y(F=sRYqF7A#-kYn9lR^9BTb)2o`wO-| zf7mgDg`r>h6L|O3Ys{Z0mrhlF_~&|Ye9O_c0SsSK0a3ff0^QckaY(5asnnpAs#FZv z$HEcw-a^TbN@nA=&3B<`o|^n@Z42Xpz+)+^Ahm$)`*4~OE+G9VBv|2D?MmigEwHt{JEZLONnND z=PX^|Teb{qWmS1QWC$UIi>8p7JJDuM3TE>>g}x6*gw;5eXPZ}L-h0DBHwrj}+uz31 z%_2pvQ9bs9;HtM2qUW+VcUQZqUjAPRE!`VSa&l!dO~wMvP1pX^H<{5d?0by7UV==h zPt|QX+4vadC)mJ~Q+8t5+p{Xeb^hCGf;alIc|PjhyV1QLQHJY+7sl&XN#`mJpOFt< z?VaproBd7;NrTZWCsfKrT1xY^@jkimc|$wuJv;xje|@4O&1Oi%+w`_}8$V$ov9`9A zwn{_v#`682&&g_-K*RpxK603$X(?u-XXYCk`M#nC<*gL_Ia7;qs*M|5sY*v~c5} z5u;JCvp=@7D$^46>Pz4Q=pu7M0DHf*(Oo;G+4haznj zdi-pzPJ#l07kHt?TE!H}$;q()us@ox1*Z=eBp_IgrB^{>{H#-r;(Q8QHI$h6WQlba zBiL;gO5x-4i-}a4{WcDhk%o;1f_tXTmMF26Tv@Pt{l3wL@CsvvpU&h zZ!!q=#m;bzq*lm5&N|WngyRc0r(G)8bKPNJu!1}N$E%4qs>O^S6od~hHIz(Ql9h?-7ypuMXrIQEqXY?tWktOev< zXkh;d6!E+8;(x+=aRJU5RCf>SxdoP}#0uYcGZA~g+|~gQ#`a-^a*%%@l_wESOYD=2 za7nTww}CYNa4;j3>m0Y&e`RpP$msa*!B@3v^e#AVR zOQDtiVrgWtHFcUR7|Q5>L47Mn)BpR%Khhe>#r>3fQOgKYf*4Bccs=n%^u*6c;YX z{o<}$%hcUMwzux_EYdpDr0b-c&aR$ugs=4(GcnRzBnY0|Iynl?!M+U9KL!7E@lLton9weY>3`Y~ z4kd&y3PgBaZVl(!4C;frdRM`*KlJ;z0YtiCXpKU{rIjx^igZ3*wrl8p)DBrqqz6y* zt(3tiRtp?kG$Wl~Orex8^3v;6eFCnd?fQ?EG|?vUPu|@7>evec!4I$FK3N=I>2|>i zVzR*=HzmboxBGgn`i%QdNSD5Y!-48@ZDnylxC}dJ12S+0hrrUR<{PHw7CC0qA!iPIIM5BF?4mQViDzx>mx5=o6>u@DhTUgY-i_XM)7K6 zM)=qSIBw#}L+sD}FDU6qZP&FRhswn!7msEQ4Gn#RPd!+9ZsYc^#6S@<*cgqLPUD0` zk$9dW!OF@@G>1S8)Q?>t3=^<)rss+=&ATx~p|4A!$XN7@&rY!wQ;qA~Oi`E#qTX9G z36LLA3u|b=x*P49){rWb>ElN*ZH);n3*Z5Fq&=1KPD(O$1*S6}>!Uzfm%v3Fgnv>O zGq<2XG_hQpfYs^qhN-bJ70C4;FNwRSwHnAaCaPZMibdwg&9(}A2IXmt(SlZ6GEiAl z7OX|}f{H2tTy6Hx%I@$u?erRbL3)PAOv%hlKE7WO)EZVXJBSN-h-BE!z~Yshg5q9- zbO6X2u+Ige@$?~irP{kWtwo5Z!!`%Z?-^PknO!rH2VGyBECVk9#N%uTiqvmEQ!1cW z{I_~4TIl1$|Kv&dGajec>=vF<&ZjlKyO+Nq!eKsM{1)`Cy@QjVSX1Enny5B;WAW!R z>^kN*H$zKHEh0AmHM{u1q_VI!5r>A`o0I>_*!1?vv&~181;MDn$n5Mt83&T1NC zuxRv9Q`1nam7dXWgG&{hU6odw9B`jhdR`%)eb2|o2Y#~UH9rvALV-37f$vdM<`{~X zVfJB42^`^HzM2V3DiRk<*qWMeDvWl19#Xp{o!2cFC0qEDZ;*sTC%QUtzDok!PalYB z0j#4=xe69%T+Zcl#PPa)7Jt4jPfu3EIS%uRk>{lq(j72-H*z{dh1{ms6&~_kM|BGB zgF)|a|LDY+Sy&2SP1R6Bi-QKqjUTY~DTW_0SM-U=#n<9@b@ZX936u0h;~DjXZBHpL z4{|PbxsFB1X9FUhbI-lE9t0R-vVb+o@#dJ(f44W#9(>os!^7A2d;Q1ZH;GZxr^xqP z7Jz^UW`>SVVVcH-=;&X8KL+!taML2Mc5{Ty9kD1? z{N>?t`0&Y-0^?uS-8sNvfeYI*5T6afLcgEG#BMS6E2D-twto3ORoNQ^hZ2ynbLhKZnDKx`e}^$7`TDe)8*xB*rOEC3MoZ>H_ZV-_eg(~+)&e@D`n63d zV0=cB@Ed}x>EP%Hwel7)E+$$1jsLI?E0LTke>+~w*=(d&a_I%yO()PG`tZSnK;Fyu zS=RqaOQQoA^JjH4Y*5b!a3M|t=2Hs1gapJLd}EB^5S_17{db7{>c9%!Jz(2=LQu`8 z+P;vt?=EO05DAFcnr(|@NPPoy&reyY_h2ZWZt^0%<#7fCJYGRpsDY(rSW62MbkHb1 z%=he?YNUmSQNxZHMfBX_q95?=o}BzL`(3~etY=t|PEJgXzMr0`bXXhlqhgq1F`c`! zF;>=b<#GtmLM+5Doh^U<=Z`XUGmtxOaN1t2*|Lq2EyX51V2Vv*u_Y`VoPEin)8B_* zf$E9%U&Y-HNZ)i1?ot67j_U%p2+z13P?ZX$+o2#Lwon!-x(pyW)(%Fi?6)Ya&I4&$ zgFk6!5r>+Ux#l3@r6^Or? zme5Ra7BY=&O?R8=ProuBEARTLRJea|P#```K|Ik$N=j-Cz`gIu)h6JK!-r%Xti~j? zw1`PaTuSpHl4dQHApbe(A?Q*a-32dweA?I6Ob?D$1QX=!&i&+ssQ)9s?J-|yya*UI z`x6Z_1lH51;o_9~P?Pr&&}|R{{(E41ijVA*FXhz%y*uLza*tC9DPO*<1dBRcrXlq^ zv@d*kxR@BZm`{asG4bnb;a!i93db`ya$v0Vh?q5vusRqau=eg)^4K< zuAI!Qbh42o16zB0Ke8z=`LeUKKf1ZG+Psf+KYri|-11T`TYdaYfgZg2s*IEr6zbVb z#KV7M^d*S$Z!7h??>MXt#V{M(Ov~!Kx}xam&EJ6<6XXW1{W_u$uLonLnnMlMu^Vmp z3@JjH{Js8lVDvvYSa#ePRq#}WO}G0&m-{5vq%5blQMK2>=bfqPYpyt94o!u#6+ z;qos-@=jaR{)MYLz*&@#km&CI!;xs45Eb=pM;mdi5>--)&2PI-SWU9}@F4DXre*=!H3m`N5r>BLG4$a_q>jw6d%MrD= z%b`l~6cpR$zYRj$_izcL4}-A*SOjaYT~1B=yuCCIo%4wcyJ ze*RnnG>}(cYsU5txWBcwxKV4odtklGkjB3#QR^zJJR7B&_3rA*h;0RK$bFzwP-I{Jd0;`78&QuqPoE*Gh#g=-4sT@{& zT<)J{6BrQ@zceln?j9G2!oMp~3(ia0BQ^G?UGfU`YH@Q7OM@M@87>CaoOX++ykOs4EpmaqG<6?5T2^4 zHkx)%5pC{7Vb~U^LrW;uN$W>9n$B+wz_W!2#k<1%{7SuRSJAL%Kfn3-*~P2Ye)-nZ z6L@jFv48f5YlCNrEp2S9CMYr#5woh@o*IUDua*^H#)S0mF+3-N1!7n-Ye8&6LNDZ3 zXf)mtEJ8=#0E{SH0MG`!+2Rzt*Gy|T*~^!>-ZZf&iUk^>x;8S(0Vr^D<~AotBBUNt zjLnw+p+Jpns7NqeNnluURbadrm?v=BH7v^Tv%_AHJXMI3~=#f+`Fo(3l-Xjuc)cxVAan| zlc4#!5(?5SC+dT#!ij8mrlIS>@>uM{ZXs;D0B5Jz>TU-7uh7UrGZ68C$(TipC$N;8 zME{HBj@qc{QQgTZ9a=O>Fn29#5LRcK?lU|+OAWNuRwbJqo@IfNOvITX5GpKlKGW0F zQ>?g>0jrm=F!ZsrTigce2r^Vqu?hY%p0#6VT;DShsyiqyOF!aX<(s{kgaR@&A{SypSTS(CH zL8x_dax#tA#TSU6a5H=CdaO9`c(yhC{o0V(G~fgH`1p>FMCN6$0ZWXp+#A692OA34ZVnl!#N01BsT5ILoOsaQ}N@+kMo_%Qb1Dw_G|mE ztht5;Hx!scYoR^tA93K(ufMqP@i`tG$Q*DM!DSJ?1biT?MJE~k2wbC&84)q0{Tko& z+H3#O>FDjfzjzp3yMMNc>6+l3)t?w5N9M)opN}|p<91s6)>Dt(eY=v+^6c)1w8_5t z?L%0AE8=<`yMdo3(%{hpFwICLv%D-;>Ujt!6ueO!92|y*hM1U`-mR@9WtwkRw_e$cZ<|2;RaIpVh%riVH!_NU#gtqL!93F}ueiZ#M09C%aWoh|}>pXq6A zZE1wNBpzNSf2%rl+l!tE(=SZsYP+I1C?h0@X+ORKGA?j8WGN^ z(D7fcFW3E#%6jqWrYSb9jZC%`u~)tA7>jMw&*qMTG-w zF|AThYklBhaClBOZ)M9STSEkd%zIqBa2Z$&m zz<5fp0XAwY6)e7KhMR3pypFBY}Vwg2PP7$e1A+ zPpfBcE(v@XW@ct^Y^G^9sVL5`awZVA#*fRoL@~eMh z8l3ex`T4(^&kwL<0~+Q-bo8aO;MlLG(Ozha73;novm!+tp*v@nzZ)It zy6LB-#!_S+9hTf;$OEh8{@;Ky8hy*&xSs$b*!ozWJ^~#f1=7i3m6ceGj8^t>>l+(i ztY=*z_zcy^V$gH)R8*AvU5RM~2sYsAgX_C=nZ}=KuV^9pFh*2vNuGUts@(H~Yh-!( zI~1QcdGswcV&ILmzv_JG;1Fk9380tv`ud7l0Q_unveLOE&iN|Ho2huzS~T@&)PAjB zV$euBgYDs9i<^D^qNI$B(MH_Qwarb1G7TeO-1z|2@#3Pf$ig&+p(xv0!$&9AO&-#? z`@>kz;%W?z!jSsYN8{_y*dRHH6>XZ;T)0aTDI6Uj933H^6QL&av{>sLN%;@8--SwJ zk%R+U^D7w{N67@X9773eg9PbXHlMmo!_K^-Xxj0&M5E?2SSk8h6P*C23=uN6x)1+W&-M@Dd{wG0 zxDVx|LQ+zpLql)cnt95~%KS?$-0rZju)NE_h74_jQ z0yuTanJq-kzkdB%{6RS#77Eqi1t;Ni2f4Th?&}1sCi`o{Zxa}_d)xhp5R2-qNjkWz z0oBtH?sCF#1&7K8ayB;TiR<{;-@h`kAFHMb{G)+1F2BN6l7y?;IE7r%;tMKp?fz?I zulsOmV5X1^d0U&KiAvtpDbPv34-MVX{A-RwquBgyl@>b~sELJe^XK)vNg-H2 z2!~FqNYYC?s2h<5Iyfx895+>RO$KGTc#&88bpnKQy1O9%x^bR0J)Fs5#XVM{(($ha zU%ROm@~-S6$5}-g|M@R;dov3>^`rseo70y1`qFuIu6Q6+Wan>2C*PJ=Lp)pL&v z8I8V^t_~YJ^NusyMO)M1dk|g+z+s;l4jZQPCprGK^-oyZW5{JPPIGFJdMhM6kgaKC(qNw^HK3h(I z$%t8|H~Z`1(4LNm0~9S`efA|&GDXAe+@O5Vc#1o;iw$INWht?TznXcZaFk`1es*72XZB+i`^SKmHvzTn`moVou8>>s9^e&mXSHY<-gF_Z4Z6ts~@swqF4uv z!@E+8oDS?Fd4-{<65_%oC;3eNIEp{oNci3wz@H8zHEV08J9vy5!VpDMuUdLz+@Az* zEhE!@VaA4@35g1w4+t@> z@pz*c{RH4IYb#UX{r%|XQ&S^QF9}D2je~=*rdS})%?$#L1h;R9cmo5Ij$WJF56D<| z@);#>Zx*?ncW5D2oiErSnv{}a4_l!WcB|g+BB8;-5ysH86-TcgGv8s4w&MX*&!C^N zgLb2Gz!`_(V#hSv8vrUw!72wF|2m)IQSF~Lq^K<|r}90ZYIy)_8-!*{+7UN|u0g%OTrf{W6? z!p-l?&=)Pe*jbn~LLd?XQ7B-YRT&?fQ_Oh1-@>lAojTL~A&>~-0WWG&iI`pv!O#BW zz6QrlorsZu$D6=VSR&rfZ2P`iPtS;A`hx66lPXMKgo>}#(CM%t!(Up)>{-hrkAdKS zQmC#gnYpd2Gc67~X>~)Iuw4TF#Yl_T1M|9c(b_D3yX^VD7;pDjy=1qw2U4@rX!C&I zVm4Vt0~IVr&}kr@%&olq9fmA$#v;E6h|B^PFnVUw=3k8c-D#0A!-qlgWalv)vf3H{ z^@+ZO9VI1?W=KInw}8;YL-4$&rC%cdizUW+Z_OcY6ml#aylqRTQM66FY&5e?n7ys%fYBAncapC|^kE*t26D!(KS}1^u zh3zalp=&mPY^Ye47Ue<%cEK&)ltS2c7I*%)GL+35p)WWtk#W^P0|){Y9S@P$El-IZ z^q<0`QBp05#jk%Hr@dwRpZZrDtZu5_bEr-MY2P16isY#GDrTF1z07i7>~>7!aWdSG znSI7(M+s;Kz@dp(>URZ&hQhheK6^e14M)@(qo@W3NLSZ#z%B#3DBOoSXK%59=9X;6}5>;$!GtCp*wIc}h>hileHg*ineom6z!GX8|g2iH2u%5+H`+`*a{+PT3U@++2sgK1K54^^sbi! z&-(1K$lqJP%#RD!iQw06CI0r!M{57LB?1PXi3wC^XM8X{-}Ws!c==a^OcWFpd{%FY za5==c*`88XR8pkT$w7wEN(>H=T(Nkwd!)Raffc)sBm$nYFz+Lj@qYSxOtqsXmBaH0 zR5X^?b0UU#1+EfnsYKT=Pov`Edl^a}wR3-!?>fVkfCxNyjqO`mRPYYUlyvmQvI?NQ`AB~`nN zqc_{YOR2UPCr_wQiW`bkl{Oi%FLSe*XpuOr%PcXkL zafpBj?kcqxWZvL92b&}F*3kc)GrFIq?1@YtUe1aM{zq@9(BweTE%Lbjf;xQy=V7vM ztzxK91qG>Mh)ugdM#*wbgUdNF)XY=zUhz>xqY7ez^J27UH)u1;Nk%T^6J2%3j&HrjuL3JFO+^9Fq^+Bf}8vC_QKGEXl3~t4M+wH&2kd%V$ zjv^>nU`0qXc%=;M?X|TZK#R7qoc}gN?l)QECieuXN+PxZ)z^C`@yn0=Him5IrsU+V zHSBp3nVFLL)3D%Ziz@~&+C?i|keF=f3y9K9`&}Rd&G5?k zi^|lV+7jBd$}@}O@*`J6!+!)B6HE1PZ_&CVo(s>m8X%ev4SK@+_SIo?4X9O7d3nsT z#wUe_>W_NWC-lv4R`0t%IzK(wJ!!#2{`yI{TS<56anPf|TH@zypMpqt=#OP&rtz||naKgYWI#|M^nkzAF3MYAK}a?EJ58AmTc9N2$)Fnew>-pUtG ztJ=Lg?PL9*jni(;sF{M5d84W0-tPj2Y^B1xP+`ykkNC;je}3SgpKmxteN5=^ZE$yH zmua7Lv2-uF?bhl)E^pZS5P%~S9&h=y$nCSUnSi_k&xoYHK1(9g<#0hbALzBnfrZ!8 z&WoXiekr`kdwWT3dAHHgnNT53XTS2fv({J}EZe;o$3$RHGnlS#0E3BcyyUite8|7> zrGHHr5Mz@EzB&Z?z2DKkc)dpmo-}&R+K1lV;hSIdyHvh+%p!d;4u8OIQTufScr z_(`7oUOw7Q%>c8@(QUgq|3koG$q5^3AdKF?0P+}Q)mD#9khZcV7DdA#g#b=4yPGQ) z#5)eA@Voc<`8AcF4u0xHCwY*MwI|xWy{i6+3P)*b#HAU@`~W8hdu|EoF+U|yRPYY| zzPQZ>a|%k?bnpP+_F}8Qyn|d0dzb*<0L@gPQeOn5l2!FxIwl?Dn4~1(e97e^ z6`A7F#g#u?f$dKut^GOz>nLK46$+ggpvUGLm|PHkycYo&g=W90AkJ9{u*d(n2Ja1V zTsZpG>UUMxH~3!e?C#1z^zxPk+D#oT9&k4~7!9ON0=Lx!7LgEv2rkpC8~P%MRQq94 z=v42~+Nd?{@fHt0;gyY-$i%|BtkvwmH8`CMG{T9|BEekI8t8h#2eA6unp%H<$RRCT#;e_9uZ45ZdH9wH zX9VPy{b#$Vi&=j89Q-=K>IAlRCv2$gw_|4ZPZ35(@W}-fu4?T3a})AIsX=pi2&9vz z@YW#^WMjTvAkok$_o7FO3!9r0($EwqCF8!LponSp=&AC&ra%};H~)AT4`>BII;=Z9 zm)HF)46b(|ALf0~PHl6Dy1M;ubpQzt@71V8Ri9&x8izcg`>edYDp!H738|f(h9I!_ z45T9>)c3MJ?(2h6nXcDy@g5lMXu)Tgfq`;l$t+k@T~Y=r1$MG>B)DzP27|L@d@Q_4 zA}=(VLC}PT`qWZhTG|jGPQQN5Fj#c%cDq$}LoVz~oQR_6P!m5p-{iCYsdGhE?;YYv z;-=2m6_1u50u`j8YV^j#IbC6d>6(4Ue{0JS^UOs3*}a~>@pLL*?3U4R(EQC430i-x zLPBc-PB0&&3j`7Y;-^3LNJ+u&d0?f4i41s%4iR15mHu>q0$CGlat=+;WGwgDM=--{ z4q7X#*9HNm|3uIoE z55mD+`j&)WJ7-+T;>+wdF>w#t#IoIZ$%KmQGvbaI@FvGkQJ`tyJ6IWeB9Y$p93LM8 zDWgA)Ymr8g^7g?ApJ+fzQD1CS3GTJ+vOo|S>NMwWS4}L>IWfV__EeYTP-pQQcz*Ti zHK!)f_Y~cC3%+?KyLQ<0!%$ILDxsrF^hKv`*oy}7(93yq-79)eL-`Q-Ahu{ToEMt3 z4Dy`F|D~jdi(m1)kfs#+PiQHS(|j@sj3a8*#t-=18kr4$3~5<`zFBR3d$&Zj^n1kf zz@#_U3m6w?r>_mVslmM56V>jg-eUY%Bm_qxz6GKnbs2n7Kl2Pt`rZxZ%cSZ+yAJ8) zhwA81uaWl;#y;d}<@5!veG)MGs@uASsHCg6X@3K3)}b#7FQD$tiMrMjp-qx zD|LTGnMpy2pzyNg$NZ_}2{4EOUj?1RM!iY)+f!J|>akSEdk0g#5Z5VDu_|Y|iL**# zb^mA$-EVsWFB$X7M6KBAjVN0(8+o0RyLiV3o`K4tY7ZYu&}-Ev zcw9zCXCxGGSLoMFeO>1#Eag7oBI-BFUA^_3=54}P`n@0xg};LbkWhPVaDg6xK`Po` z=#0a9iBWhT2f6(XcHT8#S1jdNhkJFY1=LSGo9S*`v$5YZH|(>{t2=#G@(d zk2mrO$3Z^WJGWl~59{7Qq@`JH2`?oZ+`t;25@HLPo6|xV+5qI3{&Nb$SFw@+=n~47 zU*Zwq`M5_0UW9pwb=;9o<%ZrG6M*t%7%2RQi3}3%FYvUzV?MhBM8$ls+q+;ng^{4K z8nUuLEG(o2D1afb8;QYe4Yts$uW!rLISo~St}&9fJwinZNN5rB<_dsCt4->XRxj9mffY%CGHqTXJCG#Pi z=VO<^ZXdsHCka6R$sgj)n_|=u6A?Z_A@sZXT8(4-@?)nur?C( zw5s}hbAtUTT(Ka;6`5JQwX|f*$k^nx?|uqfLtzTN^MlEwjpZC-&fB>qZC#$-#q4Zr z$l#A)3<}uHajK}Ouvx}=^*377eZZm72SuB(?nAmf!Pax06NA-(w+$Po+keA<#vZDK zU-$anw=f$mGAKV4!$e*g)cy5Yz0YjwGgoUX{=^ zA1cc`2L~fzoN?b278c%H+JCw+UUxm{`1uYnM2w9K;9;aHL$$boZ8}-?3b<;B+cMZ% zC?Q7T*C?Ad@Ny0nWXnBVh>p z&0n3n|HVf3fswJ8K`35-8na)efvAC=0-`aJ*&0F(kL@n=O;llFXEN|Hr<^ed zexJk6Qhz@I>ob1KX9;-mpa^56axio^7)Y6`z8e}5m9>3)_o>JIWocZTH}B*J-mSmZ zVk70LmmzY4`EUTTR+U9s!Fq24S?s&fL8Hi$O`k$+&<(n!0ok7mpLQ>9w!^Vf@jPs# zk*~D($dp;X-|i3{)rkB*&mR6k;JI^CkC&jfcy3_}3OTuTk@o*_be2(7tz8sGtSh1* z2uO$02+|GGDUE;(yUDDkp-QC^YAYIb+t@Hi6-Z2c$+53H0%=ygfC)bx~ zpGG%FD{W4Gxc`9ZKNjrwv|+z@zYO<+%ZvNjXMWa4${njUc2;qPIB0Sm`p+4ZgSmRS zR_x51h2o!??O{wtZ@j?6$}l~Wsc|{~MJOd!h%i#2z4(*b4Kvk>#oCk7=4?swKqBt=bsA`*Vx!osX-e46bu@QB21?(%<3mPR z+k?J2#5C)o`PdLyk7PZ=SElf82uA|!`==@)xH@j?T1VKd`8ZMyH(6MA~+C}cIoBk6ab(;)?5(mKSE^EhP^?6VtBc$Qcib%inZ z54wQohg!J`8Hkf~`*qvfF*-)N;Bk~(#H&>AgWmv5WqJsq0Vdpl)k=r1Uts;X-v4`DX$ zPt5;RR#tY+wDNGP$l*uBA3kebRvjwE3>n(OY#@u6R0TB-t`?XZUHSC6A%zEEeo+P>MJS+5Q&Ttbl%gu)CH$j@woghC3i2;5aj zqJk=pt2F5YtKUoj)<}Xh^?H6SrSfI}#%HMgn)|ETZ)IQX=;&3jyp8Wd#?Enh717l zipb2&u#W&;=I7oIeXt7vcRz?0f?;e5+~chGy~t=mSQAt4Z<|jYZ*MR`X$m$tc~F!u z_C!lb$8jBI^j*IQZ(3FH()#x_te=OM)yH{@;%K{1#LDUzP+wpHiAik{&K~_LnQ)N9 z$imcGX7}oS1O1T#-mpZ-@=)GrTAPCD%6Wy=`I zixKtzD+Tf+rs&^pcPU{Wp$sx~Ms{{et_x=1WKB%6!ZIs7j7nRw)?tTAxr#?DaD^dz zZLT{2(nyGSI4*<4&rfYjOlO~d?osV(5O9xrqn*6T3v)%?jiLGdgOkr&WBLH>SgoHK zt~vil9YdoWQ)JhP0X1i^L0nIdG}x~dtL<^Bo?cxLVj`LI9qe+d@g==frVVfE?&hB7 z0x2>0=R!e@uUKseK_=Jw{~=?LhEA;x710$GT;yw3BnVi=XeOa+K*JW446YT9a)tt; zdA;^Njf$!&CcTbNfkd25uw3}Nz4XJ8fgN&h2gk-BCLDp_l`n|5a3^JC4Cbx2Wp=&c zxhL=zLYUy61sNUSi&%vl0lowT4ON;#NLDN1&j<^sQQojK!0n9zvCq$`KZFI~vq8n= zf-qge$_mgWE_KVBE1jYH6Lo}88wn=81>g|CMq%|z4VFLnT`*r!ga}rE2QXL4yB86%yiJEGL8Ap#S`GF96njpziF3QNny`wB^hQg#9x0(w6HJIn3t{~ADn*n{EqcQ^YNu~H@^k`-V+Hk2W59*e z9^aj9aYohc{bS1GY8Kvh9E*XC9S9;jc2ff7Rux>lP2De<>MXSK$u9&1*g=+Y9|?ih zg^VAV+5iL1Z27_(!rXp+yS=(HJ%oOL^c=+#`Qvni@x06TU%%K1IL!PT-5ueLX*}7v z%=%dV8r;X9z}|qw@^vKG>k0SL-tDjBE%yD3-j76l4n14!i`xhPUa@Qw_Qq81g9t;j z4mHVkZ|*){f#z;4B*l1)7tCLe99`e`O%%C9g6dOm=b9o=U%|LCOQrm2>DMWX^C1z$ zghuy?4U*QpQOBx==8fhG=!p9=Nb&B)UiLMvZnk?#FTO)$%h5e-Lqz)8`FVZJDw3(A#9 z@Ok>j>`83+zDFfu`6Y1o;ll1N7!P>W{(K>YwGhZ?k&9G&;21h1xQ>npd|jBO{qEYq z8c~TtN`jMwvynfrwyMEyd!=ztHsL<_VU>^^POO>%F=lAP=7;^7Z2K5L{{B70X9OO7 zU%>N#?U+F%QuQixG0pazDBqPZHolTQCg;^vz77!b*BSIa);5glmwEKCnD81?Cb5A4B2G&&MZ#5v_qEo zFfXZpKy7QjeRjaJ%!JR9DJ$s2Q~vEzSAp&nWe%EopqD&@`Uk?K9plGQA3aTns^4F0 z^ZGS=)nQxx6|JB~n5Q(oAbQUF^l5@9x}2-uLjRA!TC&H-|Jt z;ox%pVK+B_^qa%n&HZ5z6m1V;ShA#I*>({lQK`rRIe^2cJ6D1^3{WXbIj1KlC(^Ne z?g*R`ryIyE9>FNyVr$HY|26W_t$UU1Ap)(WJ)q)SDXeKEW?CvCdDhtIaH z)A*wlSiJOwb6r@ps^u<(!Nf%1-Ra#zQ*-+1?!oeisfhju)h)+<&p##XpsxYJN%ZZ3 z#K75P%4QNkpD1c}_rat9n5W*9%|^fbzE<~5@bU*-L!Jtk5HWVykob_FW$~n?_~q&O zLMnf(pFE>2rpm$hEKMVYSkW4p_hr9dmWymZwD1 z<(LH9Vh2kUNQiJixEioI_$>>+$yog};B)HGqTC2VN2gyitni3gT~&?j%?bq>gPrND zi!k-kP)mDzaCEq*R}~j5(BK!Apk{SiH|X7oSy~%=1TK>8$>pQgSuITXPiUB4ibcHi z6eQu{iHT(3|COxvD66Vd%OS|~>XK^4@V3kL!4Cm>#UDaH9_JDf5rNtl8{%`sr6lwg z{e7efcz^5*=OI5iiIUw@<;iB{jtpp$6B4!Vw$S^W&TKnZ!}H`MGm}d2hdVC6wqQI! z;N0Es!n3XG?JZV!{RBlJ{S$YoEqU}t*8F@$c7cL`&_>s-iZqo7St=J+VIi^TDQU@H zPAAf*eRo~@K0SO(qESLX_~3P8rk&b{a?{rT2ZcU<3G5O$+6Q1}fX(nh*n1AsXZ-7r zy*OdOOpKb0?vrc*151n}Z8Y-4x|k_!s@SEv<1l=%#hNa@NspOIkgY`N5OpNT2V zHw$JGL!i={tG#?1$Hn>|%AxK`hYLLJ;JcGXxW{^8SR-gvoH%T97dQ@TASv}Xw>5$X zx5i0=grLUUxqi6+cg>u_fA^;Q0e9jM?nJRZ1ElCK!ZY^A%GfO^2+h2xNLWN zjDv$kR+}@NU@ML6#^pDq)2Oy-?CAK99fGI-Z3vl}y?ITrjr%5%UrkM|ey?iN@ydGO zR!acF2LK&e=y1&QKL58+fo9z8!2@op;kvYp49sWGF3(%#QB!Tq4D*+B)I!Hsp6(kv-r(=XoL{MBn9V{C}ya zEli@MKU(_A-2I%%bP2@D<=x#t^?VXGHf$3U6Ijteo!gE|$c75ME}%b~Zwz69>I80x z0;Y*OJiMo%A#DUC-Q?mTEHO%>xeeH0DnQOk?&%eP2drnq_jFo)HI`J zgW$@f&+%e}8r)=EklqKzLboa}u!>>nPV6rt(g`3v)*f#=QM#4QYT^wH_nzRhq(W*c zSPwtJ9|3}Nu#3o#LZmh^V1r(pxv-gBSYcpba5`VKFIDmTk-Qbo9m*XX?&G9@oYn~F znlUj6Q$FN&boHdd2@cMOfzli!w08VuCXU#Z1GNaiI|*4PI)s1B2*`uIuzTPR>Qyrk<6R_I2lU z#2}lMrU1#QqMP$Bqz*xDW4EH(NA!DTj>hdnLm~Zp?l1%v=F4A5t{;0X_DT@lC=uQ0 z+M!xYhp*K7$&1Ta9P4d$AiOX`wWg47j5}3s)E@f%)5SY=p=l!Bx34I;a$b0wN=`Ux zGzsuq!&VdXkOqBSrY~FLBM@?dRGO7Fk4+EDk)PtPlBJ_VV37JS(RPo1rqUA6Wak^Q z9b)HRvi{$56p^~N;$lKeDC7VjCHdv=bVA)~X66@oX}_10Sh^jP0c1N=sarP%XTwY!6y?%%W zS&gqjxP$3GtLjH!I{byl0qmL} zXym#v%?ISS#&!&QJB;wTZFkY1JrgKX@}19{KGUpefp=-Lq&;-ummC7w1=j^oj+5X| z-9G;J3bc3p^|AkUroBN9gZ}(^4{)=Cf3||^$SrI|4~BfM9AXtpS_^&-*~OvJrU0C}lOzjEFeUaT&3e$d*(V_R0D5z) zy}5vab=#uM!TliK#M?JhTo+cvbx7dW`ws#zwsTQ^UqmL>==c8a-;s(x-IMPCko{Mf zA>+f5(v#%=5U8CG65$*}KxJW+073J=B#*}LA;G=^7v_P9a#Su+wCXhBL-`uSBO|W> z)cxUvfkpSKUes{3dJ;56hq>miVRpb2~H;s;o*?oRAegG6mP?R}2 z7g#PdJc2#GBUW@VMt?piKb9Pr9|J9rnyLfaW z*-u`Z@(GkE@fQ=bTsF3}Hs5uS9%TOXeO;!b<8}vmXsEY#{j^<~z)Q~H_gU|0T|aX_ zb9_mEpe5S+cIoMd1ZARcdnFSSRyPUgDVMhh2j5FEE|3#YfCf?POGtEBm`95H-LIQ? zs(<)+loM7Wo6*)(214j&x4(4BjP6SOBRr5J}fH|JUR5GFOv zTYnj2*bG~yO1UShZ8hAEfB{cNPk*00*o)`AJcKEF$_)>s3v9)o*&B;0i+I-5@H~J1 z9OOMZfTWa)pkD>cBnKyFa(1$$jLg%wNx58|5)x5SQ4j_Q0vCulMg$q8N!~B90IGD6 z?z&9V%O%M<4y%N3`Zk8KE{E`*$RgQBCAK|zkd@b zDeEu8HeXp;8StA&-H(3AW#;3vBTv+s-~+7s+kx}JQ?oY&3>Qo`xpcyZ-A*~F=h5Zm?4+cP>Sz^>4E0wE3%|kg2Mx!X zuHGxD2;_3 zlj_PrXt#b75Eku>`c0OsKd;DlxxN5xTL=u(mzRpM?wW|4>)EoVq;@_)VXTqUS@iF(s>HMZ8*lbbmCp$f(LV?Kqbi9XnbjTIRHNBcX;eNqg~;! z*8UkkHfFUubl=kQF>)W#O{nb#+Ww^mg#g9Wzgk+q?9G@FCqwzyCb3-?Z@%#xEl6f$w4HSZuYy1dUzOkbbxQ^#vBC3_*s`xDC7uZ4HUf zL86wdNa+YA?zQ5s`|oBcqH2LyG*{w@9EGgJKbecaL$mwdCaF5+M+x#_omy);!Sdwc~1O znaRvav&^jOl-(ftRgesB_ly|DH8TaP^OBD|mwF)UfTr(PfE>3P4hvJwm_)eSsS zu#YktFIc^u*6+rKoe7{*W*b_q}mhMQVwt%E06OVH3t z250pDh+;Kj<8?UE`&q(_L$9gRjg12oZ$O%f6&)jDw&2TO+H&-PRD`6=%%3T`-)3gf zp8v=C=;w$$O^9z0#0{E6z29oZAuFNkQUq*4Vc(>n34*iSj z^ski_)O=0nK8f2?g4*9rKHR=Fm#N1Ao_C@jS0^dZ?HK6|q>q-?l!X{UL z`1(T`O!>XrgS3|SZas{~wb1cik}Id7NNify(;jC)>v6*_uRNZrZG?ZaJ1G^%Wli<5 zj1J<_Y0^0eT(y1H6eSY`r-YP#HnocDUGuM{p>*c}jXIz{#L6ztIfHfiT$IS}xv z_~z!oinF|E?g3h~PhY=wHH!stF77nL@sB7U^xf*7m=j5YHW-Yqx(f{gkTLgbVj_wR zMiS9J@L28(%OljTfrQ-65Yh5DPPX&=uOJc71i$F?Q8Ozbp8)My|z}?;OpxW`&5s&4|_v~yM zQqsL($@>--hv?|RX-W|UX$j?Kuh(5;Z~r(tIef*K%crey9rgabO$V>kFY&rHH%NO% zkWnCT#;N}-yka;eJX-m!9Gn|2(6YqtOwU5Lxt=}_3;2#$qBxIKKol5ISH}k`*FM{C zk&bc-2n3|9SeQQ>pQqSn zp@T45&tM&z@=oZ=P%3BcpyKgFfo6RX)}b#&{pn7K($dl_cW1Er;;IGHBq>mdX3#`L z7+lnNg@HIWVBp^w@j8EHWd(|JM&LXg zc2kh2CFXpriCNbF_Zpdvs1xRDxdNZEik zGa43vNpLgIyIdna|5{@c$e(!yJNzWsgt_gxT5rfhNJ+_&0)i4)e#wxc)uMsZlyHnc zcC@?m@%z=)juw?h6${8V4Isf#DVJ(G{PtSVZo13_(o0zTgdUVwjDA&8QYtJeYwI=P z$5zf+i}dsL)fveQhB;?MbbVjbSX&GnZb`YhO<~lb@^W&YW~<_0s1zC%#W7cp_7Gs+ zl~gn|Lm()`rc+n_d&z+9r&gpxUT!)E#4u;LmfrkfCR=)0VojU;C&_KQItRCWBozkGYts~69!Vo zq-#U%z!lv~-rA1J-fx}V-Q8%e`<%p*WnYyou&h>04=h}0ZYRUO8B+TgpOrG;QXjx* zd|`D109_CoE0YW&a1vP5G~H)2nP~vyT{LtJ;47vprq5D>?Xh*1N&yjsUat|mo*&*1 zz-LVcyCo{BbUEh2ANLfB%kOV~_bmxjk^=xExgaMbK@) z5ZpgFm=p%%kb~$5u8iPNN)4!w2x}dltS+T>!=@{<1Mxa4lxE*Qp8iMAr*h%y;Wt-( zFjr1MPEP)z?5k%;GDi8{41`+-CpCK&!Ac))0(&6G!vYB&<-r^km6;i~mG)fdMloNU zg+Y%7wkdmidy(v`NDsiOfC3xrWxC(?8VVPiiwX-#D7f%!ZEYb&LE!qLl+)gV7|tyo z`@7Epb$o6al@E>oWS zQ689^M@1`tK3aPXuXV))pPilE8=bQ^@qD#Eqt#lkmW{@D7vL$mchBy2(ec2*M*_oq zBMZ69H!+DOF$o2a1{sg$SJ)kS9~}i|5hb>Ww73j$KR$)95CDB)wQeMs*6g5czDV`2ws$5$qpmeNJ2%zkRUqpE=v>}moWwmNLdWP zWXxNZsibC2Q&Ru!shmW<6zi)G8d#v*R^Y2lzz&K9<_&c`0^@EiT9&Wn}aPsxFrEfC%&`8ucjHO@{015{DPl+4VbnzhFEX19C=?m|?` z*@X@ju{pGu6#nh=x5)2eTr?hqiNE^0vH3<%+*MtJm(!&QpO!X9a6IAPK^uGthgdX_ z1pgBtfqg>1LA{9!g*D_6a9RH$O24DEY?{sx zUxrT>3xVVisV>k~DqBjZce_={|83D~v@QshNBciq=0n#4P-&=ZoH9a_1E7+Q^xk4Z zqr2A%6O&IGX0MT;n9}Y*=SG6uk7mfevb#LNo|+QjAO1G)WwG)TjhMd;LAfXCP@i>o zpJ#HZVTNaKVmhd`Ri73DJ7}z~^&coZA|%#(~AsI^sR$ zKA@+k?}~Y^ZlBh~#r1sO9yPt}rTar!yNiG1 zeSJ2rhk;k-OvR)u@1<>sQVo2>`+xj1ezq~0n1!Nmm8QgkO_fLM7%rKHekRk?{oj2W zJc+E25=pKRR zU+#5dffmq9j6T@ldmJa?x{9^0b_5?0lXKI$$4QByx?{Hp?`M9 zh(}0B2#>ootgXz6xLEjw6oiHEnN0toU}ulSVbDs-&+h}@q2X|qaxk)K{pv~HM=*E= zH#AtPe(18P;CBM4zK?u^U4mQ)qN_CjhV@A9z0z_1`gYiUN-<>V5$e7^yv!h7hM{fa zl=T)0?ly_vNvGw_@N=3KjPM(qDvTm;4W&dOSE z=-GMY@@gsbe4HjI!j_8t5e7yh-R4g}J#`0(gH!_!h& z`1oVds$i>rl2=sJ?TISN{ZNaiqN1W%?;rxZZx{uzn2he+w&i4R_6gwDJ?}R(hb{4)g^fi4 zKoOB#{+zFMjGU`Ae)QjepN7|7-{<=dhJ-XArdCur3{_fweEz%z<`amj0>)Vc+Yk3a zxAfV*(L9`n-X~yHxPA<*;kUI6x6&@ppg}{%s!l0&2MqL066! z^kRX(Z|P{VHz%G(Lp(1J9Pwwz<7(;^cF$l)GFARfw%TS#PT_sJt1EXr@8c!sFE7Lb z?Gkfy{gr6+o7>*qt9JDm+5&vc&;X90CFdp#33dM=7U^9)DG0VQrjqK}wShUux_9 z2oc=K46?GDBl#k*1})6}>K3m25cw|g!cJ{unMv%O;@`grxt}&nUmCl7gukMB+L7Ve zvm{kD>%?r&N@MlXuNM0Q&m7R=gxD`7TsyC?%FS*!C5lU!qPVO-6zM-eBSK_}IG*e- z0vwu(ntCuxS8RKS@TaeDCk||-2a_ekeLeI0`})#t_nv_R(j9R$Bxj4BAFgs*U$8Wi zlFn4v`>}tUFVbG7fPGF;xh+*uKV+T(8R^-Jvu)XcYseB_#XjD&PPX1khxx%9SJG@M zAcX#ep#%gRCCfnYUAEfYlCJQ=&4KuV!Z(2l`{`gIxStQ*_QW)|8Nd%`W@x z%;l0xT>Sq0Ltk}=?1qvzYR1)ShIeAy?4!aXEZBwJxEpV)y&U7Z_$PVmUI+^kb=en1 z8Hwo(3x*%k5TifR(j{drp8xeLOEg~GosOkrIIHn2%^T>e&%iv{oNJ-K2?soE1wfts zYPDzcjiD#yW{gNqcQ-gy`-0>eb03UumFgU(cJeq<#Nt@(4c z?{9^QidttMP*lW-MH2?`ifdG~wBT;&OA;b3EVunMcXi(r^+YU)sK|a;^Z{z2h?rPe zOohcN9WcEh1E3L}KeBL1a|;WdwSp3`YHQD&9iW=qv_W|H!osKL&#~-)3>f?@=^V5W zN;Gn{RU%0vTJQobcZNPzuX)k1GwtRf;$Hyz*IxhE=_ISYG24hq>GjKkNs;NPE;9Pd+NE)QU^Kk)K; z;evf$Qv6jz2cL+D5_m3r>;0D{MyK>j%1Ru7nz^XA_kyzJ|K%g)yQ{U5Yn=CS(1oCE_%3sbp$MvVMwEc8u<_Q0z!w1s<)}P-C_C#h*h#T74 z(kEt);cs18T|Kxu*Qa^U0wT?PrTiJlQ0OrnEGB1&=cfdmtM#!ky?RAMl90EV85K_> zVlr4)R|ok;sdBf70s$IFnRuT57N2I9xhEH$RMg+=BEtNQpUDcg@}S`;ru+!=6;+5) z6=xj4s5t)ctmr?yC<$sE%mscCm_4-zU79a6Fp`n+CBs9qy7|s`L2$YV2KylefSm#DKE>lDq z?T21L!lx*33{f;J|1Jp7YgROj<#n6e@&{I5nrqgf3XpZ`ZiJA-bJ-{RZGB_05fn`v zu53KSF+ zI!&Iq&QLM4vkq$0hjo{Lf4T@tNhIqwvV>Q^6yfZa5 zEfUm)P8t3m7y_i&Og{W}tst5*7KsWqIBcv;(HJ4*Cz5sejiWtMBUGiiox0I+%Ng*W9MDr zLAcBSBOhQvh{EjyVenw1&ER?L;PvB&AgT4xJggM7xooz@^-H>b|2xngTp|~7$+WVv z0)GSLUwiaf$A47G6u1HjDnqWf__w2=USc$vqC&!Eh=*kF9DC?t5GbV2c^?phJopuC zGa=O5WUW8JKPHAoMy8gLy}$$BLa@a6u}%oEl_{kC%Tyh_hs01Y46XU{;)e1kZ4vZ) z6#m5hf8}3RS{;xH{q~lF`5d2zXVGng3lA?(VM)p7{RJ1#DTt5vtiEKVkfr~9c|Gq@ z#>J9HoxMVX{SRIAdEoa^DGoGO0*(WxLL4fq)<^P_FDuU$XvA#C6s$sQ59cGbhmEsOI4vmt6vW8`SSx<9e073A~TVs2P1! z3N+29#v`MdKkxtR40U3xNL&|SF(s4IzvQ9%2{L6Ehry~zAKthydJVjyAIO0G9LZPo zE;E@5i3{!BP|V=48z2NB7&r&qPJJ*lv$L1}u6V>`g6Y_%aDf6w-rVdeN)g)_&7nmM zv%n1a$7nvj(LGK=T)bh_niwR9IU0dmK;q9P*Ch>2yRnc9%VUn%6zUwoHQ=H>#N{Nvuv^XYS0l)=^2 zwKx5hoDl8Q&{l>6BDO}8TNjw)Yv|e6GaD3^Z1s=kw11h{k3?RF)1vw6+~{$|dUkd; zd|A=&ViAp)jJi5N=p0UOQNXg=+($~Qc}8O1@#E`2v2QbSJ)Omgg7fgP2^R5 z`5FH34|?Ms*G<~p9}A-Ww4GcjRd7Jln8Jm2;78!TeEAZ90)Ef2|GX)Hg+TZLr+r9QI8Cw5 ztOG=O`Y6Q+xj(R;fb1bSEFo)SD6x^@1%9{x;mnM>m32;$zTe~3uE>nYyeF~=oqRt< z7+q#K=+*bvJBJN2GoQZ?ha47se4~)iC6ufLO3DmaID3?pVW&xMxE$48KO4)P49w4G zYxd?gTk;@=KzS&p3Wzm?gzf^641A<7l$7gFv?5+7VX}T5S^R$4NVX*-C6xlzHwWi2 z5J=RJ{0TTiBMV??u=*kC5Jt?7r}QwOiAYF(kf_s&0xtDmjJgk2`5_J+7s%lIo1^%M zc~M93(}^kU>(c{Ubo|)2qM~rsfJN=fMT(me4cz08oM=V0q!OK9KiZfyyY?ij#P~Z% zf)-9JrMh1L_b_B5nV|bU-{1e2_@Q+3d>uf!2zSDCnQ5zi+h@G8vYRa~vX#MlwWoVz zOclg8CbG2uzXK`3RF>PraxW|FSE6G@KCW0V9_!!9;TV8^U=Tf%*c!{TyZZaA&Y;ii zd`KU3%t8Z4II15{g~dMNCxm9GmfO6B=`tei0ZiV3aM)Wk%*L^q)OnS`)VoNx-6n$J zBaD{Xy1IPt?mj%yn7c2q01GHoyuacwwC1qxdhOa*>3B+-F0IxQn$ZvDr`HyAkJtJQ zAXK}?{_-gnR`}J#Hz6S*o4vVS*g+o#-GO0q%VZ@#w=EGUXX9Rq@t~x}bOUM)URhuf zW2&&Td!Z8bM7*Xa|D5dO>zkbI$r&H7X|?geZmtjz_pn6jYVuTsj23-2WA=KW>b4qB zZwiWcytA_U^PfvX&#YWr|D@ba=wPeG4e3pW=ij-SiXg8DdT%u1bgg+l(En1%M7{m= z=~GfM7^(Ha`V7jI=bWVDgM$=&H<+55-1`TU?J!}qySYMfJjoRi5+X!WQIW;K429=7 z`+MX6_2=omv49dHhsjPqKM@|DZ)nQhwYBh#!IZ)!$gk6uj`{Qb3BC=?{KR&q2s1yH zW75;-Lq*SQvu#{c+aGR6+@h2DHCu9Bl;%o-{=8k~{(ZOZ_A$kr&+lyZCO6Ob#R9Cbf&7 z@9QJv7MGD}8|{4p;{aH#!7`VOgClBlw3qP>mFNFq=}b;%RwsL>UG*nYGv&!47@)^U zY+*4=Y4@j~rw;_%cJMi8>CFDx94~)O?Wx7$kB5zooSdFP#3@JZxtVf*jsl@%lEgX^ByR5te+T!kzbYLC)n8V) zv|3tHNm;-CNweKsgxyMr<7xcLEs-mZLe_KJ)8#+LhEi#g0sOb`pP1XkH>HS?@3A=v zs6ERLj~v>-dE{eArYZb$aMd z)t8u!PdSK>0u<%MSZR!q!qWrSe2c3k+aylG+gdHY%a&L6GA$?l?AzbxhIr+s}wnd+1N zzZS;nG;5;Zd(P#uNrg4zPxQq-*P9YKjn`ykP3C5W+N)iYNHdj3phd6)?yor9k06O^ zEmO<;03IgOewZcszP1FO^2O;^cTaTvA>TjVIZ7G1d?(z#vt5Sg)h>H;FO7}8K#J0q z*ywIJmdlB|u>m8+-w=TK1w8Ch5j_9|(W>JP6eSC`pd;}%7C5R7I6eD|)`LG4Ldb2a z{q38UaV1zqz(pqd<*x=D42C1AIBb2End7<4B>Q}4)bx)Zq@*YJps$m%7>)hT?U9zT zOK6y$jy(*|4vmYJQMeMjINcM2MGP!&7Y@^;2+a7uCl_<2b*n5M4}Y}Uo$Oq0rA8_ngBtH4WFhCpn}+na^_ZBU@=8i? zrKCXmbBgi&UktY`a@Ks}qyNLS@?yY`kk?{m$XjI#ASEQIZ_LchQb8UhEFxCqdh3Fy zKJ_|L0e^o7Iu%ox&xV1rin(Pnx+}c*r~l7Sw=V3vbG6<7Hc~*3xM_RM#@_@0S`Mp@ z*f?&L>j7&&oNu2-v-2Q5ZTatC4;U@=C-AQiB)J2=VYt%L0MZ0~i;Kw&`Un;Pj0=0^ zV3h**!EuJO(_-`H2T(q@Ggxmi>FuM_DCf6$7ot^ERvv;46Z-qM=}Q7p(KZflv^3LN z2gn{;GGF-*v`;DK%T+LE$ZQb_OYj7k$VA}=tXi6~b;TZ_zJM44i0b9j->c&l78PDv zE4yQ~B{Q$FUW?9{RHSpk)-CkvhuB`rJ!f>?St>M><9f3I=F$a>UH|F&F^XQKWQl4x?^WY z&^X+D7wR7nFnyW&1IsiwDjI6}6458nbOor=t*H%I!u+x!v^}WumINK>Zctex$T2Xs z^QxnmA74{_T3qXL%!R1mw{v(?xlA|f^PEum?uA9gVq z))^LEnPe|>+Sw;q+TCF7QDi3}AfE%9I5_qCqM7SpMgds3OtlgUA@3*6eWplv;|Syx zLKap_F~1uQV_P1rIh)S&Y3Rgisb|-RKjvm+e5QyQZJwW+E4}qT0OVLd<24&+w^mk^ zzK$8g0#zAU8=7BiFL&d(q1H)-xd&`y4!w6}btH*wwbp)xWeEo+(!}oPxz>M;@F9i zKsZXoQ_=7Fm0+?X^Wei-sa2p~6-Iai#EjTI)=KQS<4M>iT551lc%YbbL9>OGp zAR;}zREP|OB&~9N@O<`MUg0C1U0x1n*fON|N6Cw$$^vSqFRuAL4i0qGEq82Bk!f#{ z;LX(iuHl;fp0&B#=wUcb^woK+0LnY{x;oEP6pR~ep9LMr# z50mEdOroVV!}m`?xEQCi+l1b;bt30$TM2}6@@Vbu;h_a1bB_4Y8b5_YX!Ko%rq-5> zpW^-4!Lbh&1lArUW>A096qU4hUX<+>;Y({w%kcHzHtkGq^?Lz2rXqcEj7JVtTpTj0 zB1bYdt~G-pXNPK`vW0L%AKm_%#tB+3GQrm1vi%HkK`dViRRPfs^_WES08vQaeCIx=a{9j9x3>MyF;CM7L6!Xd24JWM=L?rM`EVN z8sA_&2@!__;#~C^%I$4YNDGFDK9?kpm1I!ozJ(2EMErZ5N(RXUQBhG)|Hn9Aj^Qv( z2z=&&P}rri+qa~^Su_u&0J<_7T2LsI#;zr<^&+w#gZlzTi;Pk{oM|8B<*dskDLwT~ z?xzlRDR)UpJQHF4qqlnWr++;>JiMc$14IE4Haiz@^g8s?Wi+HMij8^d*(dbJsX}8z zn}MPPJ5h**=7J$P+?gJTAH@asjqD&K#RZVl5f0reKEA+b&E7y#V=XgQJACI(2&p3x zkQc;gXXXlilD~6#w7gZPFfurum^`KgVR8L-B*7Z5qg94+r3J!X3vMyYlf}D_5-@xM zeMH{9dqPfbt)QrHdi1euI|XE>B6!4C96QJV9`dMcSJg;MUlY*()eir(6Hx3cf)*>At7 z9~3Ou?lt|Lb>sjKqi)O34Sxuwk%`*|brv(F%$c)Fb)~)8fe#s}ypB?MM63kgxQBgPXg zS?h(+hgYvSq6SX)j@DDS%f4j*_S$%=rm~}EHBd(8-`0Erj99TzRJuCE+lPu#U=D@6 z0QrQ_gM89U?eB@!wLd?^>+CELmvMn@aef$0S~o<3O)M4Xi4&42Dk_$lPK(M7&~kwe z01D%+@ja6N1nZ`p%$?5D;j0aUeP7}3WZXygZ`l9MK1M@pheaO9cOZV~zVS@OBM6@V zP;Sy5fPVuT!ADr5#rJA&JZ{6$hlcdDe?tWeY&|a=hWxdl_HkSOv9Y*AYn#KvR0!2t zr+_MB_R7HjTZxvBGU zl&7Nko)!GF%=-C@0m($6USk$4*OGk_acE#bWQk1~NK9Ll4-f$P>M}Z)Qtjq^m?$1? z6_h-(KZ<}?4z}Y4G+>@xDHW@&0iB~&@DEbpQLIbI$~N2o9nhH`9~(=DYO|uc8gY$e zt9?L#;y{rq<>a))zAG#MT|6L=nC$I2rK8>uft(5m>moZJSU2YK@Zq6PvoA?kwf=%g z0)s@Sbdd6$kJD09n=gxgr;GckuhKU!y|6uc3e${m(s?^JZ!R?QH~ZAz<~(lX68u0g z#AGssu{-a2)jYln*)I6(PWuO(vLJjdEG>OK###%h)1U?X4|a$U&K(SIT`?pC(B;G+ zR$+(&_Gm!6HSl_3Fy&u)iI7x|9RtyN66m-4+UDl4i4%?xAs#@}f)SKVD8;OgtlKbJ z*#2WB5;B2*-T|i&0)&Z=-#&m5&ko)k0s?}Ae>}&t$G*Y?GYZ&|u3O>AWQjF(VG}FK zdlKRuj#Fhj?K$Inlf|u`utI-DLB4EzLKjXOyS&2U1|rGGiO(`b>W>siUO(o#2@%`E z!`O_K$kL}t^YRJ1_^ePh7CKPq>!A{iVmGh6WSodxS^qzl&N86NZR^4+DhNtR2!bF8 zNOyNPNOyM#N=qu;NJ|LPA)V6F4I)ZPOLt3ubD#U&pPq9)%6|8H*Bo<3iRTVd`bc9PJHPuwc$9;{laX*a$mRX;-o1M~u6FH7tQSgZ zYTzhUV6&O>hoqG8OeJ!)_1OG%lZTr-aSlW@z!uA5`NPm|rm;8cTd1ywgnu^P?jPpO@;ALX!B9MGyuv$NmFylj}b?u|Zl-7l3nqeQv$e0XPX zZH$|RRe5BL{fm;0PM=1h`WAcAI`y9>PhSm1JFr81z(86bYkCTUi+Dn*F@s}4NK{le zlv;oTAF84e=Ig1dXiJ-$Zx=W4mgeG#Tm|#QQ58c`FcASkFHGrHBbm>en_+Rie<|X5 zNtMh&&z<-UI3(xi=N;WX=L^kv0aAC(9(7FAyn4>Y61~Uu0XA_oam5|-9y%vmlMzjR zCeb@m2<;sHdyp#n)EUP4F*UU>2Mml5kR+8Yh3=dyiq_sM{{7r^)Z6Iz?=op*=%kxdQjbB!ZumQZf z&`|-q^HFt1fH=d@aSX`lM9YxizomLD;WIEWASLw=ti50ba&U0q@;bk>dW94mI-D6}#oZOL5fRWi z{`PBu5UcEi#B}Nd8f76_c|2r&Rf(>VEFW>jQk?5+eAH|r+mTEP==nB0KeB=}1SaiQ z^-sxo15+Q9saebB#6o)Gg&MT6WvuW76RekW;(o`*d}3JalD%iwtops8G46=&+nG$X za`GL$4H>Ck|NdbdZfAq&3imr!T4dOx;=jJqW#op~F0vZ?Bf*)mvX>!xPg%$Nxd20C z_2!uJS0mn|NBy`wjIg@{zx&V3(OZS8_B}D>#DW$s1(HyzyF1q;3dJi}?UJw%5X+Ky z#LU5AeskLu)(u@hDP(*4`p$RWbwiToo6{M#y~ym|(WDBrUzJtH4q8M+JOYI{f>M41 zS7#U;iTSGK${|l5gG;uOMh%+uu)&Yr4n-`-PdS*r51}(MGJ+~%um*gwCmgmDLRl-X zrFwpJRb&!oNkkcL#A!iATS!kZ3M4Ql0gvQ$aV)BGxY<2a6iQIXJqfF|FC{QttC6Ww z$yd`*F?b7UseLxJqQ<1&uZCS=ScN! zIHZi{nvW?6w<^4?u&@Y}jFSM(1AgU^5o&>*g(y;(g;n)q)t#%EsPp_FJ~ov40J782 zYbFWH#^nZTijHoCtag69E!*HSSYE!~vCuvnPQc4CXNU|_p@HrHTwZ|XmAe-Y$Z*3y{LvVGcp3Joh@qY^z;{jRd4&o+_9Z23mufDa&+r2&F%`o!jJ7)8MIUVIu^*hgpd7Zle*eQXC!YJ z1x$@HwzjBH3zMT&nf5DxBtbq!S6Y7XoG&fr;xQJ%hsa0{_;cBe+o=?5KfRBh+7nCF z`Zqi8&ElHU#@Kdn?C4zca()ydzLSIWAXnq6Ze2;9PP=L z0p$7Vw5y)b)61Xi@W=S@abn!j?{OJ05DTW(k@@1`#~1G0vhDIE>o#u0T|(99gXj9; zHzwkC&B`4Enljx6ri<@*HhvU)KVzqn>g`2hH~WBIZFX}l0-renTRx*nSGf6g<2(PL zer2;2h|er`ye%r?`IwL#+Ws;6pf?J>(SJRWb7)nKzE7BmNk}NScKGvqoH}f~-$GoS zyn;>uHu?$XaG*|0fQe13#`7Nd0KuJl$Xrpza&CXdvI|^3J_endy?qnY=0L@->P-it z<=RyrxAoKc-U$faJ4oDPdmk6a1`oFEA7)^r!Phf9LiTX8NUMVHpn8+Z@I61dI~nCq3um#20=Q$1yyIJAh)Ur2fo-Vl{o$z^ICD^C-vl*;^i7QAb1ylZ;o#XzIp!%gK?5?{6kTA>CW_R3k=5zGY+J!^TWkuS_Zx5 zfq*dlcf>?(K$6jHvc^Tjr+fKp?8B8^et!Os@+{o#shWk(Fbm*tv;oiT=FJVHr!P*5 zftlNCJJ}dwouI~CY8+S~eGlY}zyNUy2EBu9xui_j8=tTUc?(a)bjs(?GbUKzI^5IS zd-nWzLr|tbxgIX4pClrzS)p%@MvbkrF_Zw*CCzeUZgljfy`w+EhV!h-Dx+na2Cp>x zy1MQQ3JNYR8iy6lbxj2Z@4YF}tyBK{j+T}dH2=w#x#9@{b1?mbDhkm%sHnUL*(f2f z%IWECi>wcL$2}L_;&OMwhk*dVCBTW|1&b~sHUwz;yFrbuyIb5Px=nqcg2CpHP+FfM zWZys~({dv&(|SAiTRhYKkNhbK2`ie~cqf+s$OqB|L9{`CRbTadWaKTMI}WtJ(iIyy zIM7&IS3IFd@>6EBQf9mXDX@VVwyn2pUpHVrecE4FX%Y5%b*8~px5b-SXPV(&B$U(l z#$Nw|_#e{6DZWQjb;Kh?ijel}o5JsmTXVaC;F5$DD-6fV4KCG}ZmjQB@-8QvuWpTv zaqzu64~Lfyf>^ANj9h8jtBn3^?~6y`_1eZdP?FepW_;f75(w%ydUoD+b%g|WfpTX! ztG5Mc>h$F;kjf!)5|nCJ*PD3v7i)~8y)0ilg4cByHYW6!mzOB$=ti4kui+z#Kqubn z>A$c}8ZUS$PUpM!V)8EOm8-rhK7+2LtZe1PN32_*&bgmdwa(q}_}+TkOEz?u20NNG zGerEESIY9pfU>W;(Nza_IUQAJh8jb{@(VVO#2@gh2llCkakvYKGRi!^<9}pC`d8$j zqE3W}k?HCtFgvawh*R>#$?W;Y>I5pWs6ed?{+V;ERc3fwB8T>tk5V7!f6L#f5qMz- z%FT&=A8e?y9Z7}qtxu}?LgNg2ZWjzV#Cm!>-eXq;;DBXd&;il5^|!M@NZ=7X+Tiwt zn-jLL=lp8BAdP{c5wH`mBAKMKC=4SH#1cG?@8i(5OZVt02i+TevS=o|ttWi^{0|=TovQrl3xhft zYJfkt!Dj-=Fo@hbX0X7U5E90Cd5>f-AhcAD|=?GMMr-sxS3vGq|Q|ce}fz-lp=e8c3y(va`nvGL zAuvkm3mFMAGDgA9SE=EIkw{=s>HDXfwhvbq1e|ts%@&t1WvXQy8mPLgGHN1*#5$jw zX8=Qq`#GLx5tWA6gMew|qfE}gC+5!x#Hz_YB?oeq_r!^%#Tuz_e-N3DQtj+fTGLIU55~xighqR)65nPN=Vl`<;}>> z4lLazc=+%UT2(wIi6VsP;j+CVY)A_KeMl_P8I+S5)Co{f1gKCcVxKW%v#YVg<=>m&2!cR96Eii>l?wcBYV-rpMb$agg~!RMq41fn_xlI0iJI4)7&&t1 z4ctE0gh=%`RAJ|EsAITyGOxA*bEe0`< z)5|wIKXYUsmTg8saFkp!BJMypIYC;bsYmLl)V_8^O3>1FC!ouo>V-#Vg`}-?sdm0whXV4~C z@8WDan%fEB;_aZ)sNjE6-H|8Rx#shHPA~c0kHoaJLTD39%WTHcVQ=OiHLOp_nb6tr z!1rUiIR#)IMcb7JQtQHtb!OK7)UkpmP`N-^ysb^3Y;F+Oz`y{O+cJ=T*tk>QM5Xu)ehaU9 z*WLH&b7t@mufh2NbzEd*dEVPjvvgkf%bdQtUy9MSw49iJ3X8^yUh+uRA4DH0Nr$Y(Rs<0ad&TfO~> z&z;s6?*=1kVj;mI0X@1qf3%=XL|$M28Th8)cXkGsj6!Tz#Qxr1woPr@VGL|8>F5Tm zrh2h9Ka8S%PLw*BsC0NZyrZA3IM>X@!vh5J0l1yOk$}%>ch_)}FD$Z261ViJfR<>fFIimnDX` zOVFd1lU4Y9RjcU)*vETg1-Q6*DpvN$6`pB|I+$W|+RxCG+fhj(BhVIr@z(srZ1=|y zq>=02_b>3l7~fT>HobS)5J$4BR~YvU3Hik6{AgrtOo$XMsS|3nFd-`^KfCkJhs@?t>v*Z z@)wkz5%#4@E$lNF=th^{1J~9sxi$XnLRm%HuhO|s@+q}(nnM+Z6xBMKCj6EXAC^u_ z&fiR0a2h=qKI;Z5BjSR6{nLV#pC1Xx4rFARz!4N|TzW=K+`aL88V13XU#eQ4LStgE zYijh~xYV?FuhK#1ZreZ+8Lw+S^vl!M*q$ZNDq!A4Cpj^Ks5_s>2}{c?K!u<_m-IgR zmMnaM#!6;-b7XIyt@g(;cYzTtmMZFHS(wj-3n_q%I;K4^K&I{fz5Np2Ezc<^?m zkS_ErA42|c5f;jS>b>%Q)IoX$lr5Ew>jN}+uMeH#fx9}9(V*;2s|ehGz*LmWW~Ym+ zI6PWqKbHn*g^|&VdbfmxgsxA_S={SO?YViQD$$Tg^WNu4dQ}eFhefbwmOeh7axdB;_0RX?k zCk`)nZyvaybiLj9MJ+PhNUgl)(vtEN*5@W8J2p?^i#1JkltcV!VS%&b`hFtHVDun) z+)~J6I{KH@)PBm<6@M**+d}hO9^eE(JC^~P>EHv{k^8hX!xgH+c$o(LQz7rRSHe>p zHiM?YfmQ2SI&wYywcCedzIoX=lQiLTBC7Jg#;{X*FuR%cJ&FGKF*tAagv3GRCJ#1R zcxh?V;5=Mz4?=+x4|;9yi{0>m8Lhks9(QxNBGYMq`&f6lf;$ny!Ol)W&yEXwKbIX{ zap;c&tUuoz=IH3C(cwxbohH}kVoAYQqc0N2BIMBA9>c~kZS|@fi{L!;Ppa+F!+zzy zGCGty_#`<$8{*$784hMDKuG{A1DFr$p>r4MHgt*S zxI2g4LBj+A4jEZzYx^|{x_5V;qV(E^wTYD$MT_oNb$P^I7z>LeBsdt{%}L4ZU-6Qx zORPrE|DDzKvq;>9`v!MFGJD}_y8Uzw{Zg0W_r5-wn@^f_3>-D^E5(-9mQbhu7LK!? z{(h6)S$;%3aNaN}r5@Z0yK_PN*IrLTLqidCRrq)ANHpZ;Qo{9dX*moZy3rzFuk;x6 z4KXBk-|X=sc!~|Xn0OZ6j!}XZVc#p`Vb!Y^cC4D ztlJOcRR{$BeE9uU-N?>P0Wuy3EzU4pgAs6~T89%d@sdEmOxD&`E!8KU8_g5^+GRj( zSmsk_2lQ|MfWU>tih!b`UDIe?Q&_U@>tx^o zTgl^RDYDeB@5%LBT^lW#&eWgf=f|Zs7r$U*XNQ0l$1QMV#KgzT1HOjO{crkQ-uh@a zjz<&tO09p#j26T*8gK}T>qtWz^S8H-b#E4UpquI;A={__$3}opWNoIO!$4GsCf=cS zE}atG`-N0gRLD_a@8Y(`(bm>RxDbByhE!TyA~ask|LYp#U^2tQzq?CHU3e>+)`1l~>rts0RoTH1sc6D}0XlfZ@zR!Et$_>z#x zAuzO$s;*`)q$vct-w^ywxZWM`2?$&?^KQ=>w2ppsa)?9q5cFhpWgxb=Ij26_weQ~I zc0}m+w;;g*8d%a`%J|2`6j6+BYQeAl|7{9)mk&?Xm12CG-SNWk+1S}kHE03I=bi?3(&Mt}ca`9;lHR2($_ zckTV_QhiX16i*%<9U-<$RlBzB4XzngHq(L7mpIzmhgu-!yGvlO^QT$<*uD5oYT0?i z)ML0obXs~}9dW!>B6-3)Ry@IiOQZTFubO=a`NVN)g??oqZIIqa@jOEJU*2>g`Kr$4 z($4;^290n^<^x<#yIC>WuWzoPxaf;gdtg;Hfr9Hr2pbKF_}3NUH%^2-P|g!pG}_r2 zFj?un+!jDyq*EIPmdY}x^?~%+)0VKme{o!P1>{^@(BYev0VF=?DZd$=p^1@<@|~#O zByDa^lu}GwZgY84);T%3(|~g%nDYTNU?=vwJY&%SoA6DaqkzqqbnkEB;Ue;6o*Yzz zmndwkvN@r>7&7KJw*c<}1C+qlpX!v`NT_IC4}8D>$QaUXaS5ozzx;-Ot);oo8*Z!i zJjvbMu!su2&-X&a=B=c7N(E?Qsm6LrMK!3C(gtt7O=*gCNS^Ep_Dz(FHuu|*v#_B0 z+}LF2n7x9ijb42fIn49-AJzW=ztH9w?$FOYSBOPCreJjORHfGQgLy7tMFm0OG*4E9QfDYt$4*`Dqe8VM2V33XZ2kNRYDz`xd~% zki!bq(DXD~^z{%PxzKo8*`m3&M%2j2F*jEP-_aVB~h2Yw$>f zp1-V&V#O3Yq!E?i&YypR!2q?tS=z6pq;Ayrt00bsf^`w*!N~>-3~08=f~Oc<%^#r~ ze5C=E7}`UA{CEScW=A(|@hkwZdv`bnCO2u=9fG6-bgsv6s*5b!eW=bk||S^})oA+dgdyAM7Q%^D|a#Qtr(gk4jeI-uVC{_SCLsSfKo zwm+3WR>pX-$ev@UDG}EB(!9%5CS~}hlOFd~6q3m2Jad8)!k8!+H^Cv&+zyV1nl0Y= zuq95ktOCCt1eotAq&I`34&rDr(a|3uT0}0vRbkX_43qZNjMu*;sT^eh8m|9ta0O4B zDepNNK0V++5y~fQ{E_D&T)#ElfM2c|4u`DGSjo~5u~xW;j0`GR`L-sTQn1J+jV&#E zKpEdV;z1a)n3&k0JxPzvek_h63_m(H)(-%1Kt4r?wvOW^WG2VjRhGR7K6;rqe_vmK z^AkBaIn5TM$4wrSF|!HMgUk~IfQ zL1%MicU1cKgh3q?E|2_=k^Ts2>@pEcEY!1)bzUX(HjPBzw+0=o&!o@ibG}clUx5LF z7nGJS5K1`P{Q*`4SaOO&4n4#f(2pP<95~kApg?d7QAqlX-yJ+_)o7-#xHm}rVq#F` zr%rRFFJ=XGPYpi&T-|*OwV*saotr?u$^LTiZZ;7}JTWo4D&j+P?JZ=A9$G4BUG#5P zoqKozGZ6%&1PB01Rhkc$Rcr_`^vP+uqdXR6-X`n`4}ZH92nVzrd4CxwNh>f?vV&_gQ=OjnB zI~&9T4Po$z2-VslNy}b%*XFb&L%RmNv)){|%%>MhYS5?neGPILn+^+!rF=|u5SYLA z1n!8#&~x_AvmHP2OyRHT4M%M)3U%mRzTTJ2jO*!8qF3&?DucMOW`{g3FxQH|zB)&^ zS$@;e@9%N>hV?5G5!v2mqAr$`U;4K@Wp$%0fk_<`g8q&y{!aHH)?Hun7lOZb!M8h7 zk@Ep|x)swF=b1iM+qk|t_{$A} zXrQOxgWZeZuXMqFP<-G(h=Ys|1lwO=Gh6N%W@cp(2zVl@aIl`@4+rg`sF!GW0)YX1 zC4~QZx0T!aM`IzqvA;e_1)zxmQ1_?-u0+g>$7rqsfPJ_^O4i!VxSj6s!$$SW|m^z0q#WeFh*%gXk!?b$rnAY(z@DHEij3JzDQp~54OCi zYWv}lEQ?V3!^+;?-lf45%Y%*$Q`-347k+wVy-N%7f*gYc-|s$kT*0vEYzlj(S^YXN zOOK@ECulfysNbBgp8?4lk`A((J)V?g^=%|;k}dQ5#R}lo8%u?e=e$V? z7Kya}M26@X>|rn!L5W-pt%hAD$jl%wK+=+&LY(plq#h=Sdp`t4j{sGY-!6pR8(+Q=>b( zGt2&`4?tu4TzcQm(6R^4B?KL0!9MM+?eO9p%7*`sVokS;s$;;&`mK@0FJo6XI-waM(GX){DJBLT`Js5!O8@9;~z*f_*rSO zA05dszaD&$Tf`%?PV)#QOd9!^g-da6pxJ90vVi80D-*YKf}^&~ZA8TTEQb=_y40D) zyIUix5s;)Lo2;_J04mykSPr@{M#<#@&kgF)!@gGyZ;{7}v}9FPN9Ml48x0E^+qd%Y z72L5SLX+=5nx62S)jb>kr0Q^;bxHeYsRd&GB3T?9Y}O`+DOq>i7d2_(8B=5V_%6v2 zJe#o^G+4CeSqv*YdHNJ;;6aE>=nNTyg)uaL8JZrkUtjd2{T(PYLJ#vEmy_jYdZ8%hUAUTyDcaa**Vw9= zCP6)rvAz8;fH3~yJZ=4vq~nuSOS&TLMjif$Wn}znb0?(k9Yq4;&2h?d;U`N>9P)e7 zTLE_YPvmuHqe2|i@-2l4Mu&HX$*|t}vb3fjJ-D_#4Dsjth08MXs!v!)J~Z>AxD^sb zUm`7(0HWg3s(=4g#kaoBjS}3`Gq5z8$9DH_RW*B0bg;C1;>U!086?L02M1<=neE)M zJK3E}hYb0fvjh4x{)S6YlQRO(x0@JfX!Jjwuh5K)GJ-o7$*NhPnv{UojtKU1E61C) zV9zi2O4*uxg!V`rss#7;FepONed!*B7lcS(w*WIZs;P2o035cq zj+-&~e&9;*QuN78gGPohR@XT`Kv{z$Bgp{NC)Uo-Mi;J};}phkfCI^B>)-0?MQ?!0 zlVm=aLXI5*UeySA=|E5FD`07;XG;R-mMp0c*X_*(kKHC!bnIt&Fq$wk7a&TsJpZV_ z9dbm&rQg8Dy9_qzR)juvC)hL$0f89RO+@XhJ~8kyLDgsCU~n&|hLFSNI8y%aq6>@& z1ZUsj+9O!##o|o2u8d9YA+tR4VR8gh>14i8!BL~>eV!;&FnEiJNie-#e6cZBEDNyx z=H@&tFnC~LE&RJ6IisE}$jw~_)d&yF?FnXEJ)X;37A zEBOQOt7M4&m06tH!ED_Nudlkd5S`IOPU$P}@P7hw#au0;YY)>B%I zdQ!YFkcn=am}uE8!)=+#{pkB;h1az$`gY1rIi{iNPt1n*!tKYwIJ2Gpge>r ze0}vtY7Kgs^MScR&cKlN<;%E_%CL+CCYX*`z>s<2vS1t>98C7&FaOoKx5?Jkd2~uj z|3xCkM7i6Om`2^nkYU=iTEAvS@m_<7nq2JP5rVsyVPbL2|7OL>Ci`3os_$xF9`KH| z&It~aiT}(=?l4bWl#h8{8bkZ$ID#3O!BnMMo0oEcx2u)*4%N=rr7I!7!(r!dBx;e! zO3QVZ+EGvKo!qe1LTf{E+%Cydx3-Gx1wF3LL7kEZ5dy?R@Vp(kMs5znI@Eb!kal5X zL)(@>81s#za}HbyEG==al;AZ<0uf>;x=c%h=%)+ZZ5K9HWOfC-{{7o0zrMcitl8h1 zWPNu3{?D(jt)Cj3ug>AD?A#m|ztO9&tAp^S48)AW_y7uP*49oATPdCL*GLHVF-+Wz zO-*6+kMZ!jmSq#+pV)*rU!_&s)PhSy0vam@zK*x1axDx(y4np~KOkj53WF034+rlK z?%fZL<7Dp+Xi~jwx=i$QP{)z%-fW%_^YQUNfHw<>X(pzY-&0mylYk5X+_*-Miv;*> zaNISfCm#s`heG}-C*HJ%>nRdMmPaaNjl7Wl^J%1uVoJ#mXF2OR2X|)qMF*4Bz>^M$I5Ly20YoL7 zrjF}5K@(#_PtVJf?Zdx4SR}^Ai%@u(Er~%Z5&q_j%eJ+tMgKzu`r?@1P0j)h^gj0J zgDuI~**JZPrNayDIyZa#mn?Y2_9$CcHvJuffD`D-mX3AvoK8Qd7ktW1CN-okf$8rP z;4REA>#W})qAf#4wWF6MBbsvg`7{$t2$N|fIK#PJna!@^me(lcIxDOEZM-=ZqEX62 z@nrSvVV7}t|MVU4-<7^L@zANy*Ys0UJTQ?tI6Bt3AEN^Wmz0z9)P7$V(E$nIIq6tD zL$lxIAD`&Kni{UE575z9;6()qr38tHr>ve6Z+N^o;)c_CyT@MZfJcgyoIDn8^Dv_u zuQ5rw>`X|*3m@SEg@-!>U>gXp?o~1-$#8x&InWQ_0r%}XPPAa9XRm%WXFvO`wZ7U0 zL6)J)+nd{l7w0EFt2@V=R z8R8reAP%WaBf!sxgoROYaz;tVQnLDZw{G16O%XyPNWz$!&9($t65L89x&$wX&(9?QZ@ z!ocTqr|-Q(rSVr5iyhKu!{(3*M@HYWSP3U!+clLWh+P~F{7(nJc}RvuP$y$*W)$yoVv(fO?UM5CL4*3N6)Q&Kq8D)Q*YST7Li0$+ObN#J~m)?A!agy;yW-n zk!h`FY+?-GL?%1Cv?4v;C}F>IAT~)D&Lb5S6@?aW!f12rQ}Q+MPa-SJ{Brv_cbFiL zx7#`q9ygFm?+T#MjqyJNQrZQ?>JW6AyhMB;;21=>h)Lm8p}0K}%}SoiFTAXbst3Qh zV2KV^KRF^=c^tE4CGz_i1R|1OfxdtZwz)U1b3pOO3qr5+9KU$II-~}Bb*U7N zVuZd7R&W~7mw_Yc<#7s@`o7-S3mLgnfM4Sh5qD?7)!C=vwtrBN<9^#cN`+L-Eq27N zb1Co<05@4&cV3j}J|Lse2y;?HTg)U62}8}Y7*0dPfGR3jfE$Y9E2OH51LIL+-)?tBEjCO6kSqXtn_} z>E&yYuO*RlJ|9R)@hYN2)&A9nZ1tYm@0Iq9>f=mm5oAmL$O48C9&K2lmjR$x4m=Qw-9*g)Fie4-h6`jC@2$D1*4ySb1G?{%AO5^7Wm?{I{nR zT_6Exq19A2^ZomQsk}aE$D3p2E;IMX-1yGqsc&OG$E&c?rg&V5dgJ*=$FXTMSYQnXTc0<3^Uv!~ zUw*qF!od+^)Oq@=>e0H9O@HJgTCBTkW5u*kSTT$rsiLadF)|WjHJWE)th_f9o01}1 znJXV09-b{8mZ00{_FPc6qsmykP@{B6OHfcwuJ31oqYhtW>I-%?%D94@;{K1VUhw(2 z-6oFA1d13H4-dMtGdqlygFr`s#}e!5Q{?wR`~sYrMPFR>rxbj~iBqs3OjWJRUz`w6 zRJxK75)wjcJ1%(d&Cq8?0k&IT6nFJsQcF*Kdq+Q>_TVqgI?^4^VUM?O4#$7lfF;hP zqbFKZQxnYAILIfvRHXAfVD*A;<3+3JLnjAQV5{9nCsZ}n@g;o)Z;PLm_hbm-A=370 z>{m>J-WGshWkRmv0B4?hBkw<~@?48Y>vq86Dh4nM*ph0hzf?urHpe9bgN1x<@v>5lHJ%orMhsuJ^o?HYD91kL+AI(7 zNQ{h5V{oKbQ&r72YUhC&5rFEwF%(Y`8F|ED15HDrp%h-~wX%!!)qTZM(zL_D6^KO$qm&;biB(wA!lHe*|c<0Zd|_}vLTE^b2;`|@fg za?-^vKnC8OY*Ax}#D(D_fj-_TxPzMZ`Ex|=DR(lby%a3oZ{G03KLzOeeID)#k70c% zq(2;nUJ7RO0n1rvyI}lFfg*y1mQsPF9L>Tx_cEg}S(>}u$HiF#?rkO8bf1`vQ6#3w ztX(bT2}IdnD1SH#*R80aP<>e(YE@TSG651*$HW9Ck{5mb@8OlcEGOlh98;3U%eOa; zb9%u4@3gxEovDAv4J<0$_G9jl1;Nh|;Z}nu9%73xl|rte1qX`hK11ALE!e0pP8@+n0X4#5~PyS45 ze23qfW6{S}s27RHE{o0x5*-b|wf>G3Uz~Nz$@jB*enS!##s}j7C8MGUd>}urC4wJ( zhZQ^|hPqzge7Ky`dV%f5N`4!do0zB6DYA^!m^dw-3Sz-x6*qT<4gcmV6=_%3zcXj^wu zl$SCw5P+rBQx3POml7-SMNjmturi> z_1EGsGWW&?-Ha?mCnib;pgsaQ^#vLp16|D@sImg)$9$TsJbamY7(6N&=dD$D0U_VBljO zVMOI{0jTE2NzMbD`nkCg0Dt+rro?zx7-~5MR0~x@Kp-IEbqNOs8xiqmKz?HY!T-&h zGAeqFqzAGXxOxRppYTy)SDhlS>%0NXBv-k@@o=UpDA+~Y4N_Zii*=bEG7HPt*7MZm zUmdA!+B75Y{b5d5K0k+wSqxDmQ6P~F6{t{w1-}(sR?eGaFW^DZPs36B?c23dpmP0? zh$|Ynv@8yPUlMXyOMxj@GRpn!j~QZFS=OOc?mfN0ZDrb8~ZbLTY&&h5cM3)gaqR2>w!Cd)ydlWwESJ|EAw%KwQcbI(yMX+6nA3#HS(=x(Jx=cEez92SIm zaCzIs1*z<*VGy(%0Uym|e2AFOZSOt3P6CdM{ROb@Apb5VEF7IXnEV!wA}CG)cTpB# zh6H-0d)?gMIsCXHT^_V%^6nK@RSm- zg_dS76jb-2Lwv>q*8;_~BcmVRKhPOm(=K)M-k5pmG`bQa)5CFWHPRNyZnFYGX;%2UO3BH!0g~W< zVK`>5b7Q+%zK{g<1+F{F) zHd8~p|LEDk#&7W(0pPitU)3MeIW`0+6!->Sl`Lny^W3BZ7`)-1Z*Mzme85))>`O>Y zC4FviQ3As+rDAdqNK^nA7gdvw$nFqR{mo`+!yjjN5*w;_>m%H;h`8rkIr)whwseN7 zNA27$-0*+m#>nJ=m>Lfgj>F-KG~kF65JcUfm(&Fn&YK)OE>)SX=>oRXHN@hbz6wo< z>Ql+nonJO)5m(=qeL7KYUR3<(E4`r;kzK=BL+g!JA)2$Py0I}AjLs-^JN}0UtU*SW z-3lNdOuKHq;N}j2NAIk=xcK$j+#I|X{-AxEzqAF8R;qm&SkhpLuYO3pNqp~>T6|p^ zrMC=Sxvp}|R%3E@A#cXzeh-qngXPX~gW$fc1 zkb!Dy%NS3$pyRfpxT`}kB#v4o5Yz?n`F2VFKri5KPz|KFyhp{Q`8$_)?{IabOq$i2 z-P*uZJJ$0qb(H80dlX+%k`}zV?vj%y(Uw7Jpmy!f=NsMaNylIaX#7L$Puzd0;#%sk zV%((`D&P8Wchm^@6S6+GqO*)|z~{ENx4;SjYcPj( zg4HDqhmDn;-RvwB7mD2Ac-6N}36Ty77B?2~y4G=abQFJqy-?x&6u!xjVg{4+CuS2$ zj5{O;&-r|F`V$T)U-%1nUHq)J;dI%W(BI-EqoENT-WI_0@AAg;*?~fyqy@fo$$T}mO6~c-{D+G!#89z~8&wpT+o->s=+cFCa zvp0vASY6=+D%qH2fVhI9doZ^r>oqjHbLcld5t8cR<#;{Y2Fx!I4UI>02Lm3uyoa)3 zCg%;+9en`>ck6>;!ijXrk0H0depK4~Cgor5z(#EIVzgWW70x?&#%9A7%>pgK^r6poLSzo9Sa+hoC!-7|hvF8qhjW#PaOfTr=dqWZ<;( ze`J$4TJD05`WN%;8UgJ@H6X?I`!|=RS(umCUhj-{Fj@$Pjl{!MjMb-}Gaa z`(@978PBYm6EDu=^VPUO%3n$g97p}iP3~uR@}LS<8s1B?a!*(1=l8UjuZ%+mQ@P$I zbVWP`%P*MWpjaZy^XveO)1%-c6Iq}1mW93i$k@p9qpJ(DVXBU91f*k`2CvcQ2EncL zY-}p8s6ce!aGA>zA=HpWhY^)l8;PSxbDn?{F=0%`W1UwBGxK;HeKQUZrQ91IQxT z-^(4A&F+gTEB9ekYt`6V)w{fof>RL)6;Oii3tJS>A)r|4t1)f~K!##&ZUD;!D;fH+ zQiJ!P?IkkK{e`|-kYV5lECJCMK#ULJ{~_f5d7CQlft$Pg&laB>5obj5sma52Y0EY! zd1`!q43HtP#e!N{EU?Kd<;r0dE{Q`eac91gf^MAynuZ2OjqO{bAM>qetMPGhkir-L znow*xUGoS`Bb{w+;ZRfJrE%2)PS`|$f3d}-$05PrLLfh%nfWZExEQqN&ETk;jwDv( zTkwCvpw$>M|0_jhH|H(1JKGKcFFc7ZiI@2sP~%DnwI4h#baXgwPcgu}9|deZOFQBeSBa@x0j0t<{{TB8t@QotSyggBw) zK9+V~Zf=Sj`$jHAaG*bd0xmtMxH3a8Ag$+L9*w13Q1ycw057GL=Fd^)*-SXm0;|s( zM~P&iRS2-&2*WU?eDcSHv>`CWBtdmeoEhd1k@Vih0nUtBj;MG$=XLgUa z``tb{0dgVhO)YMS*iHAWR*+fzYoE)*W+(D5?}`00^EF9BQE4a*NjWBFW`$s^e|atR_DNgPMaoE>;~8JnaFgSZz{Qp$*DklmcJ-JmRFPrd zJf?c`qlE71#~cC%SEt{j3-bC8UTx1dx0C;IluvfhQjBOP%_gzo`R2Z7kEw|>bts* z)|aGgML^~!9DO~{M#syQQJ5iaWx1&)8k63e;fGAXZtYYsT-q&+0a+6XQ{28TZCRmsbLS2qjtPojrKqk}tD3zgAgb6-bCg9d@ze-`l96c zlCh-W7|DyVh{x||k*6O38>oVH^wsYlx$k(9j|#`mtP<6ST7rDSAH>GSL$|VKMP+5b zEj});nw%E&7oy&Jy^ZQ~-UxRpXg1@1L7A&mCnLYO)H1)tmn0Fvb8z|YA4b%0U*B`s z|72&Ig60$8*ZxYsF<7L<;nBfCfZXT$yX0A80ShGnus8bgWj36U+ZSpNz_>$9S~LWWx9uL9+u_P1h>HU$v=Vwu+_|_&aZs(Ms_qr*=s-y` zl-DQ*hq^0z>!Xh=kStzDjCOV`zXa2Ys&HS$(| zZLIpg2qPr{D6iC@MS>>&V4)ou5$OB=0ja>`XZYk(MHZ(Ob6bxn>QO^v_;N78PZJ8rA11up^lEt#?U7x}XltW5J)x?M7&YVlY-NG&?lNz4Ms>yVrG@IH z7u|ddV|9MtB5REDHp_g}t%bO6a4*TjUH*@yvy94e?YcJVMnW2-OAu5#BqgMz1f->< zTO_412x;kVNok}@I;D~BljhqXR2IFmpRX8?q)#J$rDiNjShiyVZ)fWNXFA!YdeQXw*u07}-S?kKI7BAss1 z)goTrk&!Auw-7A?6ti~Q)@Utt3P10eZkqljGf(|*w`A>&k~v7RUK-2@bXb1}mNe4X zIIgE#FdDWXCLUq3nyRwB7WHw%#N_JjCB-2rdTEr1bLlk7>(-tm9pP&WNm>xHD=wxJ zeE(Q(90bPT#h^WKBuLhsB^Owh7GJi6=co%7*&j$a{zGwlfmJ29I5Cr+rmpmvd{^lD zlz6+ZF9K%6GI7?kp1mtFvFJ)o3O9TY{#%w^;qy?Jat|QRC0L9ot#%iFP*&l=yWsT& z?z$M)seKC&1_28L_t~70qM|?afC*R$ae{2#QcD!9`H3XP!WW z6Vv|wK4_e5FHfwS_39bQ3m||sE-tQK9^>*eRn?n zO}ZFvt|0>D39AhiAP^eZ#tW0U%1rwg)(2_fJ+zzdPw@+-w4d&$0=>53t}gsRlmU>A z5U_!gNlndqV3fIDB{{5wJu3_0)MEcIFTUERBLRxMdI}0z!TYI|8K8sm9v~u-V$kGl z+2-xeLmnhEC_#NDDqb4z{yKc`sX*YeJ9DdDJVrv<*N_myecokh{IYhloS*tiMZnsz zYODK-zodix=*evdBWtXNQE6jnx{Y3Kv$eduQ=PwS3&?sQ)&Qj=gklMhALN2g ziSQdLf%zgVqr73=t=D+t?I-yGAobHT*n7)e%60V~&Q#~$bb2Id2ygu|qcg*sZ&mS( z6g30`EgsqpDEEj+;DrV~-ekqlBOJwkDC zNxHVD9zk4M+m4_cI3ZjABH!!m>bnYTSMIyLd;87#DG7i_%izhaNe0O5yfWuDiR%PS92c^zw{uI)cT_8$(; z2Xy;GLaXs&KOjNf0X_gpt&@x0!LkbnXW77rN=H{0CD;(t(`Ru>U5UhKGiW^Eq{OsI zX>r&ZNT!qhYkyP6BbxSIqpY1B0?%0Vu;?N06&Q~Yt@!8Pun1h4P(#WAFIvfB_96vz zBMeVFd(!fhYVPuVD$So-mO#3Lgd{C4qEgBMFTvH7ySM101a6Ph02}z0G9(rD4_1zE zo%iP@-MhRcZMXl<2_ zK)5jB4ioS=N&NBS@m&G6;neCsr>0^IbdN;|J*=O}px;`p^n-5Vhmv`2y65@1!J<&6 z-C8-RaJTa16b>qmta0_8IMyA5A46Y?H=~m-?3-+OARM`AtdiR5suC6kk+o@QOd5;b z-v0QXzg+A>40Q`gzu_WSutC(Z0f1+nRWJbR6hvMBCf~=0J3K)>I1f zWp$GQQQ~KNV1&f~kde^*^6K0k#`9m}<4ONaP7Y^Hy_;=t^%iFmZLHDvUvTlKni~L* zC18&Qr{}}{4ETR~pw;FN76$Qvk?SI4+_dEC|q5O`G zjorJszHFAFh!Wl-yWbg|M_ZKRoma!%al*7R%jGqsto&X5%@5lid53K?iP8HM=u{-| zfNi1lr*G#EROUsN5iD|FnE6zh1d^@|lIA@QkrwFki!73Q0lD=2;-IDV1A>i}w zP2!A!UeM5FqFO+^IMMC~>%Y6O08LIXF?jdJ4>15ABxUF1g!sZcc`CWhkPK!%GDJvG zU#c9`eSS*wB>QE;4$IbDWf-^hB*9My#M(A?Faz))@0L41zx+%K=%)nqhtJnX%TVAj z11E`<)ujDWyCc*cudS?@MAL9U7UAw*$7jF#JR~F}h*XdiKjLD1Vk)CBEkx&ZN1*Xz z)GI=Y+oSR0QG2!mIh z28>O6$o7=;A^m@>tio9edNL4DLCkB$rpllWvK(|)Rt4A`Bd97OBAE{?D1<$O^u_!R z_7;!)&w`A!q7@xMuN?-1Ah z4m()c0$DRfeE~N!S{zYGjCX!V{ET_3j9WDyO()|GiMh@8>%&w6N?#KOTL!S_=+?aH z7A7eX54ioKU7C3tbl^ybyZ_ufN!BkzRpcw2TElfN4~B+^5J7xktrvx%bmy2Nn2!)) z2oUEe4Ob1I4>SBV@EhFEzf@N8=D3HwnL9e zrWiCB`l{#?Xu7*W|@y%cRACKEgY>s(>T1G5j#s*|?_kdgP?Cd81 z=Ez(ds2=CPsgLlfOSF2gv$qm->S||S`aLQt6WpD@Ab$xeXxr-xt{_rPHm5MR>Tzwp zl`A=MpBdAc-r2KrB2&;5JPHu(C3%5O z{3$w`yFW$HaPFqQ)$?0hiy=IvNdOyy9?HAkt)3l3d~l_K9R;4Gd+zS;o&EjUp4S%; z7)Su=IEgyiK(~V9wxOw~?A=YB{n(CZa5j90VNc!|*KIZlbD8j!{+lZ_@>6P%YWAPk zw)^s{CO-{K{+nCaP^9O&;`1iDN~2hVS0Jv1)|qU|@!U9yNm7x;JpU=&d3d zykAIluE+5}p#w2AHIjj$FuT(hc~H;>L_WVJr>Ipd-$?0KD9}#({U%hNAkyp?ggFe< zxg2s(nL#d`<}bE23d;%S2fcKF34t#ACF-4E_`;t0IO9oFcMSAKcliPzDLYu)wLCzjapj~c)U3ci@iIk?{&mTpR;8tW#%Cq zevz@?pzIsTHT*qj*nuuM`agKP#Gwg5jiEu6g2n~X8i4pyc?WrAHZk!6dL=(-Jfj%? z?X3^mSL}{Uj|UP#49L6Ttl*a-$A}b$eY)cZxVS~;`ZI^vI)3S;3{=9NOl1JSq=(x@ zWq^TF$i{G(lBbdjWOUG!`JEG`Q0d0z1XkCU~e5fWX)Auc>sVPB{~}NAK;S($LW4nvZ;YG|V$JlJ}z2?lv(GYbEl~W@%;V z9fQh1Iw;XID-Zy=zP{x7frOXUgEx&qZ(jMPaq=h^`9I|8qcm7o-#37H5QyV@TgAxO zIW3WX!&Dvk4GEB(x5!~6wV-WLT*mo;km-l=6D>f3HUqZER;#k1(;bio)vx1uKeJ~@ zDwdhZfs4U>Zq^q_m4_E?f)>PF;_^EkgINZOlqF%OsNMaN3PpIBq{KvV!-8%}(pZ|p z%*5<0{9h9DUxO92+sf3&v>#VbuY%QSbtPk-W|Fl=)ndr;w~FSk&3&HGio{#`8^u>I zUdpT8r!q7=yE=Efaex%fi3vVP(Zp2fFL?YUJ2fv)DHdCYl!PP>6e+=CejyKY9jz@i zski6|qmpLrYd(I*muV;;ihJ*`$sXZ%`Y3N8_aom-?`^n z>QReQ?{?Zcc8Yqu;n9EF-_@lLjvVlsk$ybI6xN>MoUa3;?XY=UakLHu8lurzePb@L#6BD&V$k71rkqF*69DMx1lsOGj?&nPd#m)tr z>t|m$Xs@;ePK5n+x$fOB(rODS2$YhN5)~1l6s(s4u4vfu^4-BMz@3G~#rf~z&e7a| zLGUz|@n_B+pFpB=w!$#_;*7R!txDp`WhC``SgDz+cd$dh`jn41J|aNZs4`>6rV?6S zETM=k-}o|b;~MhVfL;CWiT!o2Ncf^K!TTcZ8Kgig4>NfAsVd*8$wQeWe(nM=jjO$> z!mL8yr?ju$45N(zJ$pBxt^=|_`il5BVk9|TGW#l7a2(Z2^W?2RdRIL*%>Fi zO^JYTkFZCy{{*2W&4jKNwx-jVn8rPSnaMvSynbcD!F?ju$if@x#dte*F8Sw7xT9m9 zd*<_Ztw%7z41|p(prGw5-p{mOp6-uNBG^@k0MBc``)*(j2b-43t}Yem`FsD&YYBMa z`o_fYSXexS>wX2u`^G1>7Y-r~mq`P)05VJb{(b6KWeE(AifOh%fJzM3(cKiB;;19OmH-JPd;h(iq{qz8~L_qNoTU722?8A>^zW)wSZe`$`H4n3>TWQdZ1 z$XZN4>=aNm_TBEEA*nP>5;iJ~OZEF6h8le@8uy0D3m%?KPSZ_PYwLfaVq%abrcs5O>$)TGju)4-bk~049v)i{mGHk0HBUnvR7Ol7>rRU|Zw3`RaH>!d?W@bY3`FA=WyC ztI?3bl}x11%I9>&tEo8&YOff8=aqeEx(j`r>@d9?F_+zcg03e<1ylT=nolEPatx5N z-)sH;v0U%Hm8m4Pfr8b1wogn(0y$GH^UpSO#;UkJ7A3vw9C*}*abiOd=}IPcw7KRU z#G++=D=a|+!ZvPyd=xePsRm|n2ri!ovdJe2$sN*T?#=T1Wz@z*<}m5WLwV@9zOF{g zvO`-^(&ppn)iYCjIxtjl67fp4&+FdZ&q$61GOf}Z2hU|h)lN<&l2TL2fEC0JBLlq9 z;K0D8)nGF48f1+i(?WywDwq{AU!td>i?O4Z(Xe*I4Fn-w91TS zGr%g%(JW_x4_b^naiBcLMfZ98%gP_NFZfU77tdxhjanO#8lsOfuiVZXdxg7)cS=0b z^STcpu3Q{8$qy>W@-^_Y8$3vOKOg~dYkBl1nVDJSHc1kv>BF!v8@`V>qG8|RQTS8HKg6enr+R2J+|EQHoCaPe}35}A7AMgBbp{99!g3c9*y{s3 z?qG9UvpCyoX=sEcCH-kS9?pSENG7V0tW|-g%zXIA^3~!k0j!MR8vtc2M9bUm&9lD> zCiMoZ1H7t_o*zBJ#kFz1Ji!7RA;@W%m_pS_!*)5GuXK~G{P}O0S$BU#F8c1wH`Qy@ zIM7M&@IXhft1E!8;o9Cd=n#K6cXD7u1htWcMZk&%owMX<`6Kd2v9*qftt zaFww6y#qFoa5(UD<&4 zkGhWi`0z>I$nzWJ)8)_)+gpz)XV8}i9w~%JM1XDx1DaSM+X0>oFTbE5j>CoH{;}4; z$j0u2LDuZVTgUi{e<5=XnFv-Gh-9M1>5uv-D21x}W0Bpw4%WNR*Jxide5cz8dHeX57;FkfDJ2$mAKl%thGzV+SovG<4o22sTYpZ(O4&ZfgM^PydvSc3yt%lu z)6?qzpqs!S$EuM)~ky zc3z&c=U7^Bn)SYp{$neyh(%a*U@&t)he5#~Ny2FgV!O}k)b#Z5Zccyr_|fzaM5j@_ z2>Fx1y|7X9AFu@B0RpH57$IWE$KR@`jFLQ`2yTx~y7R1bh}>12&}XD-ihBs3bawMeT)SnTSi)8AIN0h z+V9bKlU{gDbTA*B>#&f|bO)mFpjSR)$o-xYBev9TlJ97r0Y@w9e|HfaRW6IiM6BAW z;21n3KVdGPgQWx@#!W^yMvr!dkzlh9lfkr)J8U0!$Z2Sr(a;ata^CB-;-LlD-BnU* zNG;I$+@GQhTGJSZv^%=BYGF91$uc#ro!zM52!zoMeCum$o>ylEfs~^QYH)?9HKm-l&MyQkFgZ9qx*j@pRtioqSxH|HD zUQe>?xj*!Md;po&Mu4l6NW?kNofLs3vhxLK95lV#={x;Y-eg};^aA&J!9>QP?R*hNG!&wkz4kzg& zf`?IEQn#W}464$vU;j4l{H{d73oyx^Xu{6C4R(`3FUrh|6ue88L`P27p5)Gocpo9YvuoherW?9vkf%PX?DJy)KdH-928S>wo} zmA!=-#7{%fLcPfC?l3c3^MCw@h$xF<98MEMkxxQrC<7id8I+eCK%K!VuC)vo~FBz*n(KNJvafYzC+>tFpmm087Ae&S#Xbl82r%_o|KG^5d7m+ zW`$${S^ToAl znPZDbB8)F>I9z;qhX0ZqmXCR474WrRhVDZz(VlNh3x$AK(j*t3+bYKS`8kG@)3Y)? zQzH0#*~f7^GPJ+C@6%saU@f_bFI+b4!K!hNe&*9z{P&vgA;ZX8tIrpLBnXo()^A~{ zU`mh@%$S6V=e3d1 zeeT#zK+5yJbx|VlZM`dE8JGbtJHe;}aqZd5>L%SjY#bydA*0QR!Vx?Y4GkNuDTM!y!43U+dS~Tiwa6AwTR2}g(yrg~ylbik>9SNq3>VKgJMvCRHDB5c&m;W8Ik#aq6o9zoJF>D`5 z6LVwI()=Em6c~_a5qJN^rz{iXh97JD^qF_rpH+k57YS9VT=wr1KDNCE%juq^kx^B2*PWo*K12lObj-}Hf= zC?G}w&nho(uEiL!*c%QX z*spz_u6g)!sr@)`D=^5tr@=!AMjOOoQsVWlz8F-qp@hu6IH><2P8|K_yIb4au<|bJ z6lCMzHW}Ly%&|0s3&FzmbmvuDz~m7H?>BsuzXNF=ZVYN8B9LQeb@l##9}M3d zD@@DIRyXmwa7B(HlutUC-llE?0BHFhsGcxOAd4YP*`zUqX1%s$+)e=AuukAQ4M(Qm2c`;puiNsa(*{s*h;0e zc3lRtu{x@U1O#a4H7Y+0e86-9p1o{aLr(r*mFJT}_*}uIjxvZB@s=D~l1AGe_R4>4 z!DY$h2PYCtc#63)*1mnyK^i|8>aS8vFzG`BOs>4sDivY!^{wJN0l*F!(d814*!0<*PE9x321r)k z^>;bLQ^mA?)i)#Z-ibar!4!-Ymj;@=jVps0k}5f8f;v?LxcgHsLu0p$4?7>)sP{Dn zcm-wa$SM1cV^hgIw7Y!e?95wJW9)~oo~QDzvp$4L>mBG@AJ)`71aBL35BbfLlXy^~ zl5#N!uBkr8!zCf{2c|ESxh4lc{DX*v$f1Y>r?viKs}BeOp}139SgrU3+#^{n!} zFf?%fp4aW5<_~W4qVDQ?#-v&IqgCPosIkBVfs6VdxxiZ-(S#>=nYRNFEsO222|~aQ z=X@aX7LpB+8HI&YWNO-oY+ywXVg%VhgU959g8bHouataHf9!i_WS9qPEK^$yjPSkS9m{%^|YMfrIkC@?$EC=bfepS zhJ9fg?vf)J%;@MpZ!4?_H>ao9=ZaWiu|f-bW^k|lt*+J|t0$|esR2WM(h2w9vvZ0k z5CqXLElqy3_q#?%YgSxh!FG=tBnf*(R1VfNdBU3qINhBCsnuNaVy5%!<4I6a5)0O( z-ggxj7mw@k_4A{}K{XpMrUY@|^6$^V4#n(}dRm`_3LXc2H1{cLWW`!l(u`FzxFK*O z{ri1>+siNRkQ*iiJ?U+-GCJD8zhVGK>(*p-1SCKavTAxKB~iepZm@i=wed<9N$N3j z|LHeeS{WvGv;pw)y1wA20l8hB!GtC(8bHiJ1&Y#bS2;v$+k@?0+eME$-xK|J(lL;Fz^0M||=-|>rL?~c? z`FO`N_wU!uY(o6fOSh-7n}NnET`|l9apCGJ%|jKepv>VgOcFLE+{u*QeE+;;BP6_( z!OdxxrMz+vQt<3nIGA6YT#Kz;D|Gh!Suk|?uVlBmtLvs8V7})rSF}ub{NDzd+mj){ z1$IAP3C$uVtb?d& zXuiPKJkoW#`u9uVkhM0{yO|q~#)F~&-lWL&Q+D#x!?l0I>b!ix&ql``?X^H$pF%Tb z(nl@^dPE=uXC|M5+yZRC-#o8n3O6wZ$|PAuMJXezY}x`QwkFHtV_0dWJ;{a|{kJirSr-T+K|5W4R6ZQqi!u#&_T3HtkDX0Wu5*1&253=ubspql0u?YJ1YL zikLv9YP`a0P6$*)#ZJU0oP~v`N+c2>4|)X46;RL?gG1uB!6TF5his-2SV;ZK%jvqi zWqd%=kkp%2ANWS?)5ZPCaYqZ^yo1xHKibP5Cmy`*8tvhMNi8}IsF@vK!?Ycme;<(Z z4*xR8ciNqi{K;~UWY-my?_BsM|AwSFWf}_cg@FvoxNX;yb!kseA@;ETn`qlBeB8hT zw1c^pnz(um&e1!e$I8+{fj6Tq4A}@}7>u{fI6eN@Zg5-oZ@|>iMkzE;mBDbV{slIr zkf@?!7)WzLz&2j_k(F?DRV6oHfw3n#5gqjO_JRUVq)Szfp$ce+RW_%ZdT@FJNG$`)!NuHD{aZ>&`RS% zdwZ&DBbnB(X54KLP z)YPJFmsSzcBQ;Lt`n|-a`31~@zW`tGZkpE=A}s={tNH5PUJy>Cz^*DVkn`>x46?tW z@F{7j)S*SY@}xY4{fOKKd-`H2L8ni}#YC?Yc@Zt-^xx{V4COFbRuQ>Y0Y{W?`JaD% z5`~Be&%fzvov`-Bw$?V1dtzezjx6>0 z@#*0-=jUyL@t}@o)f>urBa-ofT|_!}SzyV=ol`(|WA_xqr0{q~>@Vqnv6DYH_aD4~ z27u{l^G5O!eFPS9&=<2=t-s;_Siw@xq&m3&H0+8lqDR44G2Cx*^m$i*e}~K7JFLqK z!iIrHTL$V+V3y?YXb(~vElYdpsLgb<&4rGG7P-fFNKngN1J&*$(3RDGbhEv=QiT<* zcWEgeSVIhlv+geZqIiLIaJK&dG$rS00k^whQa_mVJU(q}Rg~Nes2Zs*lM^aEjJHYLGa8oJjaN{#Mif; z9xgBxfPs}v6sducil1V}{l%@Vwy{rzZ)JC^R?prLkkj~1&wtHCl)dZI1S(zzjUzD z^E#Fn*V2*HhGXtK+>=)qsw*sGW|NPK&dgj#r_e>Hz6G+H+|J*}4T7ywN1bRk8 zt46@5_LN|8e&F6Gpo6hz=+VOAmc=|dTycrB5m$bn8jRbfA6X;9E=WL{w!u^OO0~YK zcveqt>?T55PX1l9_dZxoF*}4po-+Q#A$9cwn?pu{Rur0S{de^<%SN;me4%3V_reGE zLnK00s6gtKcuIih@C^0zdPktzBe{#wW1#5$QA~1W;;nGwYrz}yb-I%x%22qbw0*1I z85oGZevJXhL3&Qk2sk;H1~O0r(9yMPJuz)qS)qr_Q7eG_)?m@6v|nSgpMcia^yW&s zH-RTt>K2B2iWw#gn`AFxdI7X6s`&VLP}F}D`=8*UX)vP})LC@UN{LBJe`ZiUasgdt zMa6aFD&1*YMFcZ^IuO}xo9C#Y5T38L|7B&avFIqBsWe$pl5S_r3@$R|DnT9|BDc#& z7!;F5u{abjU-wGJ^X$r~sd1m2oWO%92JJ9p*Uc|2iNOg9YvOmme}B%L9TvHVvbQSt zUs{^PX8+|S3gA5rxUKEly1U8meN}_#tuHWnkC_}RHI|)#+%KEC+4F_g7yK9ZLP9de z%S@R~Ofbhm`ar@Ny$^jo^t5!8w1k1?)13s&%#OPC0gI~6;{F>MNHBK*qCHUrp$;*Z zHQF}mxAlp7>~oq&VYs;PWWe()3St*2Ik}ZiT)jdlfe|4Z>2om_zkqv(ObbWHagvm2 z_U@@D6X62?Wc>Rirh&mh187nq#QYn0&;Taa13^T*4tv!8{{G|wRcLOPi!Pd8-bcOe z@^kp%$x#ZLc6V!3Ef0%IhP?c6*zZlrbZaA~Yd-vrOeH1e{XP%Ya`hU8`dC<0erg8u z*v!r^EQqL#Si*{@t@h(Cd^!E`y@gnAwiPHrzy^))x`ySdy2<8s*+#Wtctv4mB$OV& z0`je|V6Eo-F#odR{X{e5QRk=^QTDNjftHFNW?uS-(SN>4(2!GH4x|~P0K{zVZoeIb z!$1#ew-Je=sTrS{y!k2?1LbsQVZDK?4%JOMih(Z1B2p&vIXkCVt>!)Gzpi+6Toh?i z{7P-*_5RjWKg>dlY*iYg1Fm}5L&}c>0}NVUmm8B3*07gq4TS(L)EoE051v?%v~?6{ zHCas;BLb}RM$LaG%4K`O#rVG$d`|TH-21B;bptDHAPzi&ZOi!huWa?*S;)Ha-*Iw+ zSWu0{lBM<#*uwRIf;=3&=MlT47KH z{05N0#p;~*6Z<@#P~-Ze3hm0Nnef}eCSh&mQBkVYp_AYT@)8^g<59fJtDn$Lcnen} zdQNcxOcAEO>~v2|ChJT6*@ja+-4a>ocAVk`!>3gseMs-^=YM42js<2)((=e_!tEL* zme=PIXBiv&jjd+4M~?zj@oNn%r*J_l5a6t7Z)dkY`tu14pb30`Z>r>fQ>J>tpk5dR z=od7!{X~9``<$Gduo~$Y$}Fs^wMn(nyQEnI)d>g(qXpgS(9o)}5f~&WPT@L@X|Cx2 zvCDMBHN?WQGU=8k2OTj1PXrZ}SEDLD8@3bG)yQxNEP=1nSaKC;yyR_jJccrIaHd=dA;L3G%tq{qZ78vvm z!S8_31rTvu+FhP_fTB#Xx|DKtH5d)6L9!#n8VO>S@Iq7S7EiWc(2@Rn_Usvgt4=9s zHBn_N9XFdi^lT}CraUGEYwn?Bcuh@Pl zw=g-B%McyA?ae>4o;+GK*<)5xZY;K3lfQfK9{d5|X*1ZJ|2D}iR13S- z&SIO_ak(&=HOG(A$BNGz+tejy}$kF&pg;@y51+O$NbFwIY@ho%x9} z#Gc>WGQ?o~_Z4gXa%t?wTWk+O!5wekXyOU@+kMekdbRBTdwVYFwdmHjC~4QrW=y~n#u1B(D_Yil7dmK;)` z&-To?oyv{~!viNb#-fu0TcPa!L}vO)LI9s(qqrfE#~n>#naN&@-e};n2?EwAZIq10 z+G;!8zJP+$ANtXSK_-+4S8GIMY$wQmK4?{j$f$0xxvc0D+(^VT7U@lcY^KA&_@`G- zrCl-fco|`BRKsQrV0{vd_iGQ;vMji@nHEM=d48I6Sh5as1RdgPnXx$ zV&YRSf)l3`MKfR^2;A~#i%SvUTGh@4tyNCwJ)e!SH`MOgxoJ%x9jtO)L64x9U+#&4 z5J0!1bzGvtg3{S{uw*^J#}#e(8*WND@jbsEQef z#^AhPpZWQOMv)R|vWj;i?Y8g2+J;f)fjakRVKP$b!)+ZKO#c;i3` zERB){KErXQI}3B&k3bBlAy__z$ehK;nffihR^wG+uulS6dESV<>IhD$`4WefD~2K1 zmGbo}3p;Cp+-AqZhCmd(X*Acu*r3-UFm@%3&VR`e*um70k`e zJtC{z$`097|FG2i$gZ^PZMB^$`&SC|X5JWPz0Uw`_}n1;gfty`yk~2s`Xj}38LPYc zWw(qQ-0y=mBIsM)zey-7<3pU3>+x0-M6CsqAA*hpYMIY(nN~k_G~ucK{qyIKM!hTM z6Zyn>IE6Elg`e=COcd!F!i>GJkOgU0$WH@SqvMtGZ2=HumIO2aq59DItHEurL5efe zz4>ijK*1f&GX5%^Rr#6Wf{NxA)y8C2AbdM7y$RKfNY?`i8c$#CEYOLLHX4v;s8Y zQ1g_|%_PB43E`kTL&Jw0Lcf~!R|v8nSZoJjBo76rsG8ch5?gDvg2`9FpQ!d+q95Ef ztg_{deLu4Ww*V)&;($OK8~?Yh--Z=7s=t5e>RcQ<8o*8;tbP%%Fy&yMMUgG<@}|tB zT&aVMDn%Uh-N652WVFvyIoEZ~Fz(4h*s;n?GXrIfO-%3{_U{rBnlS0`e_d#~FK~%sKKV%C%On3sz>*4AMw)VoLD=+3 zNCgG%${MG^8Dg1Z3}btQ7T47=I8Ml#R5Xq0&lI78Dv~qRapJeVu^?i;(h*DW(Zi+| z2jrn=Vhor5T@&6y{l9l#v52s$bVix|U!$6nS`b>7&T%n{@n&q~T+8p)567J-C08YraCqhl=c(Bugd~pU zsUa)?h`d86&|uzBQfi@Wq3+~#g20xw_$frYbQe-26u(<|&Ho~}1LUEO!NJ7B@5zB^ zk*QIZb+o-HK5P<9Ea=vvfW2PqNG|qM{$3SCS{!eX4j1X^foDn{8wCXlv(91Dejr73 z&(V|~DlF|MJphNF!9<>Ft~ETNCEFwZ%ih?+wni|ql;;!1=5vwQ;I?S{L&gI^KUGy2 zB20u}j7F%d#+|l0ff+{3?|=&53My8Ee_R}iT>SHA<^4kP@;SM=Q4B^&pf>V3Tm#K3 z68hG6INsh(<>KqqI6T`YhI;G%3vBx3bk_8%y4zcyTQSgcW`gie*x~(1zG6~-&`8Sj zJiD8x!h#x)gn9h7@-c!oqqSrBLGtn^q4KGc`sFEvJp2djB>^ngfofTzjlayDhU^?1 zi;HcW{~^z$+OIi1ruXC_t+dj31&Ea7WKTd$e1V1N2dJUy>gxWzKdoO@^Fe>e#yJ%L zx$G=`eXy@*Hy<*ZEH9(qT498X++?EE7}0XIem`q(@Nk1G!f>|EA2wW2^?m^^0~cI? zaN&Vz_BZU}Iy-s5y);y6jE~5Y4eTLsa6Cp8_(;iIuxns~(CN$%e1)dVZhc;4$9uM| zf0q{|6U(6XkB>)onb)b+EVE8P`9DzMU1Mix_#k>AAV3C+ao}X$m5q51vS5De$+tL! zPD$`c%&&b6`M9f_0jP=!>mE>@6~4x0`UDye@b^CFd4C3_-4)Fxu&_cK8dzj?V&>hJ z&B7#NY@k{A3_c{F%OM0&3Eb5~)%GvQDI{@;iN67PhFMFq)TZ$TTvn3QI0HpqURI!= z8v218M6wiAe~kmzoGWD4*efbNkrE2w>}dVr8FvkZ zhH|-us!*E;gY9iJbHX_!0oGHv-P;5AC#WLWT)HDUE*y{y`fE>bd7_noP!dh5GeX5bY4 zkc}y1a&&|o2NKXGgyZ4Es(EogL-Gi~ibs7(&Grbr7oosr(zzUxAu_zhtg!r>FSWxtU7q+nI%SR0} zvmAC<=8A~;RexmtZogJX%<*Fv8`B91lz>&$%uKd;4A3TnO%W9xJ-tXdh31jM?pz}f z4$bp*%6xquWWTAuIF-KqlkgGP;cNfO)~0Jb5@y^^24D=^Y(J8t_!Vd__B+$6Kt+>p z^u!7x5e$IuYL73Mx)h4nQo~Db;MhAutP7|p>pU)f5o72usk1Y7LP*>O4_^~VkH3X_ zboBU*d3{8_OF)2b_hCuaMZOW2iYoLa^-GCNv%dG94Y7fhcvTlN!Q&Wmc9}Ab>_fMb z*(-PN;N^bOVwDM%0jLE=6oWY;^cvn(khC_Te+0z2ZgR52_9XI*#r6*wn0F;OumIpir}MS1EjPZ>Hqa zS?KQINd70=nVOuu+zSX%i#zH3{-WF?TL!Aeg;C~6y0kK zHnFZbe6%VU!x|$*1peqp{mDXU8VPpRQC_6NGiF5SKF>LJKV@f|`d2SpT)5V`AD2pD z9qhuz2<~m^%AFYyQt5BSLg4hq!TbVkawDo?=Rg|3I>Q||o$h>?|HKNOurzp91w0Q3 z=4d5BH*fU&w}^3w<3Os&^2$ny&8{v4U5d?DzXV?K-r?bzp*A_JpAltLJU4p_{0GsE zLzu(*aEJe|Ul<{m=Z63inAduQL8(pc%MF9&X5EHGr%n)-y7q2=fAQQ>ZC<*subah@ zNi|O;&AQg;)2FC>OV^-C$ z(18GyUXGs@@46~cOPT=nYu7t{Mb|2&7#42w7ZpH*P96lwSQh4MGlRdx!}pK*7Tsb; zf3C4x{;i_vfaOTsY`trYM*5!;1uA&+AySkSNZ|TM>rMHZ)p&-6wDDZlq6P6>u{<`E z!K6H^-J_NW`+`=b7;5M@qo!sbxK0V8ODqS|k>ThTX!J-Qcd>|jE+VGg<((v6tsTY<+yDIXQRDpJgk1SlGE@#6=H0xFp^LUOH=lgdSN%P$8$;pTRr&7D; zi%sVHS;RV?$1)&I#2P?hvcWZf;(kq|NMtU$G~GT#{qMQ?)K>`Y#U;U2v?v>R@$nl7 z6Z#5iA!$l~p}8DhgCKANpjG2{U!!1GyX{g&M;E{(2e&+E1D9aF1@cotT?&X#h2@o> zySs7l6Pf+}gOHtb{kgJLSLi%NbO&`2WWM0M3xfZo{>EkZX7JIWPda zQ`s(-^<*k)?}n3JZa|moFInl z=$J}a=~0K?lnAmWf5kXBIDm2z93_{=A^S~Z$e+BF#ounb{>d?(j(w&~e~1uST;k&` zk_fs!hnsgWRpXz_?#dOZr@yQFS;Ul8{8&m`U<@1VUT7}=zZDrw0^^g>+A^E1XkOZh zNr=ZxCW>Kjs2MS?0BpmbX6{1S=wdKi?#yETkV{BD+S%^>Ydr;u1$dFaJ6TVC0K8f} z==Z&X=-SwCmk(@vqSM=Ymdl`gmeIx zlPig)W3T}quKoeA0Eu#zJhKyJ$=lad9kXEC3^482gD{M*&@DEfA38fb;{brw$%zmq zYH+i`7Xmts7|iHc^%_!vwFeV+3yTe?Od!Zrra-eCwZ@@Z{N6a!bz*)PO{0$YIZYyU zLvo)-Gf%ZPc+3iTxW?6fq$=}jWL;QLgeRN$0Fb$W7ynXh2N5}t@P&ry;SFiLx`OwB z;M`PdoKWq&&ksvpsZ2b8jlwJp5mm|bwz#T?=3msxnNZiqsTZY4cESvWWVRJVx`OHqZ#B(${5 zm%$&{|K-ykzWTJJmA{x@uXJ~Hzq=WT{snekFoCwMIwFSETLTFGJd0j+ciRIZfCGWf z2CRy-01)ZNRM(*bJdm>IxR`qq~A9>@w)Fy|`S%#Y{Q+z{n<{96gdPKOfjS5O{1p=q>O<|#At4|9)v-5+F{$R2(w9s# z)i}Fu13D`^_RW-IxwT>2LQ4b01@L8(z`i zW@Khc*hosk-Vk~!Y6Nb~#)fKZOBTyIOeQn7(oEjM0=-CYj^UVJW@(|t6e#16go%kr zP!aihA67RZ({UE1j1!}ukLgcAkSjMo>Ks1Mve!y$u(B?yCl zf5XalBzwgv0lbK5Q2}gm=p_D?Y6(uC`794fXCqa+I{5Z@8=8GIB^-4|qDf<$If<5MN z9mt+P@PG69uFXQ@@cbELwVj=C$0;)$f%n|pP{0#f^>LTw0AAiyR zLv{|0jxr%3qOF>C3blG&b~5G*2Lk#63tdEG%s)9vLl}sLAvAtkduRhO9@f&^?)2}&+>4CVa*fvXJHXf-E#Kbo$Znf%^i`E)X#8@P&fRVgrsz3OWz3)OB-Tia zWb%pknu_)0GEfvETRWoLSh)x3u1v0_U#uy(-JOVeW}m**nu2QY9{hW}jvEBvd&P*aBeYM@^*VPMZg_0l z<%Ru7M6y%r^6sb708(ZvSHn%-RT~Yar`ZlS`>$U7UJTprlvkh;6s-S{P*K4xFE6j% zX!{i`3GhIzj}H=pLg?K)>a{*(gTFt}Zf>5SV;jTu>hTDz)mmj3s8##Yl%&1ClS^nZ5D*e_Wk+AlK_3 z_EkqJ(z1n8QASp>DJ!GQtn5vNqKvGDJ(D6ko9wK}$}A%p$(AUQP4;-M@9%m3dj31- zbSl0+pZk7~>v~<7^7C4L89bhMfsHMI#Ui+`{GqO~`#kDV6Sa0Pq{c(M=Ou~t|l$BqI zvz}qsEx%^p5b%qzrUV7%!GnN_jzDSV<0m8_+{?Tv|KXDu@YB5mM@BzBvwY7aDCbMg zaER4>q&c%Kj?Y)fp|Q~Dxv|0XG_Y;?q4|QZ~n-oN=CAXTVSFWCThJR zzt7?66m-70K?L9$Jo*T(iX6o|n9(b!bxzc7Yuu*ktom+s%kf^ypvvx;m%&1l>Gn;Q z>#sinRs^CGiwG+T0|SFWmD}f}p8s=MG{?}uKy~W+j3!N8kUb@tc|2R7T>ZCMp zYW3Hhi||lq$MgkecmL;BQOUFWR+5yMY3i{i7qxBThY)|T>DOuOLN(aO~`_6y_-ZfnKUdWop9vGI~^7b(d^l;^O=XIQZe>~J3#gArAHT^Km7(w(C7%?dB zKN24#&D_vYa0J~$y+_b507+6((|DW%21ZP{q3h~Ymk8fE=g*+%^G5wD1HdE9dj|o~ zY>gKqWwNuwag=`5A*R~xB+;36B@;lvoCHJU#rw4eZdAEY#TshqDz>4A-;zP>)he^^joHGo`Er~xQvX<;?feW;2Q~) zq$&j_9UGH-_OK#}^$f0|VEWZ}@E<5Ct<*O(B&VmhV+wWIws*cR|GEpY%e!}lLZfr- zeqm>#gd8*rE`zr@`fEl8d(?aVvKePp9>cO;J9`u>G3vc6@^sbk*2@!;dSU z?Q47(JURF|0y8xt;;B5qK+Ly&4ln;5piaC})2xy8TF7+2xH#+4L*5voFedlZabGIl znl$yapJ2w;8;2&d5|~j5P+2)$DOf zyB;4@V!$uF%u(rPfhJR3Ne2eqRxfjdY#KYo?fw4>@~u99VHlYFo+p81Ar762*GNw5 z$kp!c#xshiee-MEkLyW`nY2MrgrTAqjrK{d7Hjg^f{u;4q zWd4gZcm`j&F11^k%a`z8C*tVKkX8LR@}8i2hKx~5%Mx)@kk6m^Q@CKq*Z*srvLowO zg_^R^?sbpM^r44EhZDr53370(d@q(rfYROk>K~5(qqeqx1Dqv213zqfq}_;X4$P0l zSi*;v5SV3B3q=KjyvPff#1Xf36wJt&P3vF+wHhktuY9yBtE1yBa=KLL(eimhlvxyCWS_%t3Pu6@ z@dFr4Hr4rtD)65NXj5@ame}VF_9a?*+Xfw5BJgTovN35yet@dF*4X0@B3K)0>*}63 zdGa~}EH+m^bY(d$xNZdJ>I*MH;Eh3OYuK5p|MV;5p#E?MkKV8Qys7l{;(Pn?G7qRD^1p z9{g!S3`I)>r;y_ytbrs8c#!4giP^RZbex9oN5{vSLXdZ?<~%p?CC2y4sTz1S&@yNj z*i+(&UA{lPEtRwP&R<7SkL3de+O1=(%J_Vj^~O=^oeImV>6O{Mu$r;Ei!LiJCot9; zpBl7-wLK*#l-wa6`Z|tj0|p&eP?a<`KE&}8EAFuWjMP5ZT^f>7iAe^JK)JFvy+e_J z@KSH8GT$L$%cxmjqE@h3S~REm&3TLa_VC5lTa?`%ZE`m(hL0j`NLwW-o|s}hgPxYQ zbFk5WxNc%eSM_p&&62;Hn|FSG{poeXz{IcjF%^6+Ng> zZPAwjVhaEpdjYAfKG#RqN}Z2Zg@r}8>P=8_=$8Z?JfWaOOQikYXwT-5nD(R#wNTk{ zHQ${Eq1oO2U)Jvaobng*s&vya`E}y4{|T0RQ`15bGu8jP6v-n9x7tM@_bl6+J3x{J z74=h`h!ad#{~h|>c=_^WLBZuKS5?F4zvnrCSVcG^@vu70`IuOnH$*+wKbQ8_!gAvN zPfc-V+TiM~58>!UzogdrxjFjg4wZL&aIyo|<%Ta}+RE-|Wj4i;lBL)gvi`O?m~t!b zo#M!=rI8kTjv7O8BDRY?YsZMX->eC#R$IwA?X;npWW77`R{H&OGsc6GE`I` zB4fH7E1;_S-+!?j{|xR97r}xFB^D(|h z%QTX+gD@+}pB$?6(o){3psL$-nvOvHQD2&Y*aq)KoT{3ajN0tKy%=8wCnlcGGrY#k zn)g^IE7yEwY4`NX5W9isds+Tx`=N z@$?k2&#li_CN-ozDA7aDvzC@Q_CJGQ+0A)#QR~QLc>~htc^i%<%GX}LEw2lb5|0WwA7VjMpIl4P} zf^+wWfY|AkHbe0=`<>0T)X@b=fcP zCm0xl;Tv4Z)_HyT?kCh00kki1kE6S?-)?-U7y15YdHt)5jHgUx*v#@-w$+ZbA3>Py z{v(X79j4d%itd|+iQn$YhNpxaziqgZVRC5T7{-_Iyd)<5stY+X`E_`Iy1099l_?2s z&bq9|?7@2fc{ zr*s2-(=P}J9^8TF&j;i!Js;U zn3USY+WIqSuDzA6NAUC_XoDJlPv{P{r^>z1h410^aJxFI_A2kROrMSp76bY9-(DGG zTw*gtLB(mHmf?Epl>#;ldy{2D-k7&oAOJOBW`LAz=Uwe&VPT=%4f$~xm0sPUdDWkL zw~B63jpvm5{K)RJVJUy}sPNIE#ptSU}~fF8JZ4^V9RMCNIK zEdKi)!=l3roFhud<%U=?uQl z(M%U_8|deA?=O0~<1zoCWkg_v0TP)7RoQ!nD?(tu(go)O94+&Vu8? zpJzzHncVfJ>L6l}QgCv458yC?tO&q$I&j(BC%<>(*0i`%9~7UHdc8zZ{*Uf@RqW+z z;pTJvLh*yKcZVz7YP`?ru2XDM;Zp<)4FuJF;c3gXGYSv)br}kONw}fV$$EV%a%MYo z_o3(1#99JR3PDz7sFd2wf1j@SwfGt8u!Kn6*C8y;?NUmF4gkHBtdi1`tt~w-Nm?_r zD)-1#J=Y6Y4Au8a>KyM%q0xwVlS`)4$9#0_UsY=nm;7Ma&nDQo4?Qf!RBrE+AHEKg zb|Vj-sAw~~Xnx82SHymv4S1E7gPyxDR@u*=I(mRc#F68;KSfqgj+LEhT`!O6pN_gG z=xLm{)(#SEh^XqQxeU00Fyj%(Aaz@6dh#Xz(Z{_@!N(q<_<)w`7y9e~Jn!0+y z?WIbxD7eSAH&!R0WJho{a5wb;OY>ajO#xm3+u&%68!??(mPhacuxnFyb9B1W@Q(iUO!`4< z|6sbVCuczL!Jnf99TB=MQ`yioe;w1<4Z+TQV|~~Pa9L1c_;YXj(WLbORI`M?OXqZU z!nc?scC`vNn{j*hiJkpJBe1vf3Y)CK%cl|C@s5p?87-EJS%;q+dIM(6LB$8DhS~ry zqn+5o0PuhU-eGQ7KilKX#S8dx^SB8@adD1syG5Di;hu+d+DGs45{1bvYp{;-0elYi zCv{2Ly&dpZbZDYI4287RzcUL6_yTeKqMUOa3F8^JUry(o6n)5m83%B|fe8tQQQK>q z>ja4s=02pQ(2&{h3<@Cun_#^N2nc{@cq&wHg$dlmn7h#eL>ewUzM^8JBQdiiU^CyHs z#B;?a9g%M#LeF&boy~N~ZC}gQ?U#*}@O+Ze{`oA6dt+A%sZ5mHeq)G^7R^e zCB5K9}trOMhWK+qy6Ia-bzuGa+;%!6ow6^;rW_Dsi>y7%k&s$Xs zO*(DAwiMS>Wj|!co`hLrdax|HUfu@B2~GymzzC>2kDwrW@Q|J0ZpIyj94nNq@}Zc8 zgz|8o|B(BmbTAUAWoX4H4MA*q`!)dSiKk?s5h}6Kg)lVenbZ+%sW8Jz#T3wXi2SO) zeq3slm*OE@r-&FJ28Ol5bu|L?ZrM;;DU9)_ zx-*}_2Z9W`v*P0MHoBz|y`BI-0Vt9V*=Z57dOnFGqY_h8Og?Dn=}j^1B;;C3IE8=^ z1^Z+RRuSN})V*IgfvsE=CSM)tp=Suq#*e?17Y^f0BwVB4-o7F%;b)@x&y}=*BA)p_ zFcQR~jWutkJ@_wO%D}sb1{Y88@q1I3kU2R4S(K>ry##Ckx$pGcwcS4g9$f&3&O5L9 z`Fm-~35{TNLv-WJC|r-^%smJY@B)(x`|!IsBM9lfsG$IWsrqmKBele*`{90uSY%HGfOk4)e%)HwqFq(I(pi**`GY5_Tj+61>-q!FYs&0 zfD!xy1XmvE5>@wGoqbZzgfXvlfjqG<) zP&m{S%9QT%f$`jIWVpIfZ+6ZDdcjw^A3uVOms{@$go)We3Fy3ih1|k>jN)SGF-Rk0 zxJ-r-BY<7cd#0JKz932 zf%TFFXcPAw?~lSXpj~p?8*dQGB@$o8|A>iItE&$BUcS!B&p$EZXB`-_#<(J*=aZiZ zGMxS5p>DoHw&ELvdB>M_DWbi5KI_;!&)hSg`AK`q+pAa3t)y)XlsW=w`HTqlv31d9 z-?;~>9*kJXeROR(DcYm_tLXcF@g~nwYhJbR%r~j}H2)3}zls130)$+0!j-Z0jUC2u zL|~tJ&FgX;5eG=Di@@WJ(#2X;E8^;m^s-&tHO`rL$vYm355@~?|1J!bJ@-pLZDyW! zf4lWGxlQ!PkB7U;+)S9FCND_LX2%+S;o|RSznT41n*;fs{z@ebLYOw-ye4u}QmA#W z79lENG7ZC0V))~pgt{ucZM0bBlFRY0Q(=e0!q#g(n zr4MZhoB60H`Dx!H=EEZX(zSR}JHF@DBi)lQID~QO96tCrHGB_|%=1XF*8%$U5}T2b za-aQ7W8x8gc92Iw5`mXiT2Af&ULnGXu>&ohq z=~4tI0Ru3!`%hp?E5KyuK;_&0R$6asF%9D8<{p3SO9G}^Lqi`immL=nNM~WW-x<@Q z5>ir?_wLc(|IVew;!A>rVfILC>viDPubhXTc)R)JGn=`BOSXOfSPcDyiyS4^n^Vl= zy#>h+tn8j?Geh%mf#}%iXb_V?2(IS>Gk=zr49q?z;NpH!W|cns%wJ zzW+~g;<>1Y--z zh6MM`p@pSY*7Z9F+Yn9`N%J`sd>Sm5`~&@&w^;vjZYlITIX}*e( zqh47mS;=^-wMKk~K436^jzEF9#B21jb5!sXZ_a^n@&q<91Ky1T5J z%CoX2dJp{FE8Hkrp=awYeI%M-8ZW7NQlOpDX!IVts6ZP;Ce$+K8n7%qk6Itny@(nF z*A~d#pac710&)M(*Q>)QdI*U-sI1=KKLZg17Sf1ZIYaR{Hk&BR$Ns!r6>Xo|bASE~V?Lh-Px1gbvNrRfT< z-kw|*yt2Eqttd8uP%=V>dGGs+L~$P;T(yWst2=CEZEbw_?)98osgW-CrUoKY74;92 zk|t}lGvY?Xq70A5NxJB04#TRa{^2Zpj#5xa10RaX)qlkLXD?oy&AL{79^(N7RoO56 zlmWl0HmM;nQzdcl-<~|vxp=Xgo!`!hum{3+KzGTirmx1Kp|*EvX$iGo090iQJ2qQRSnhCXU}?l^7CWnO{UWh(4VD#k z4<|cK)_)&7NbCa7O0Ws=;)tEu1N{VIoR#1@@a`+LP{sZpgJ6iV;9q?a5kb%aH8+na z5@XE?w{As#DHFk~b&37v6&-nh2sx5;68GY1G}+Sn^|vP{CqpmwP##mPxmDi&?ryE5 zD-l;BBsTa0f+){W?yP<@-pS&&v3(X>u{S16~DIi=2$Ld~tL$ z0*0IX;^I`hYLASpJM%w2x|6?W`k{E6Etz^&N=mV`mFIxD8I8Cr{mv{q`gzVQ&D<1| zR0V9zz_)&ad_~+USPuK+pYGqkZ*}KRq4AikY|#1hr3gADnzXiltwZ&lVolk_W9|@V zYa56O%kKygLa)2+Y63UETYdjhUcdT7pp}y&Lnn*MZiI?M+hd1fU$BDBP9&Ve?>#n% zo{@-*E%P@c3##P-&P=}B&Jl_?{EmGOIo%%}HeAc{z4bqJ97E=RGMz3bBfPass4zTbVP$19965u8WgOSE zD2oVU;;EOJcVoxuv;Xa}n)*ZOh>QItL$1{S5kCT~&#m||UhKjPKPtDhp zzvmOL&FD4~(!+%B(y06poa!%T2Q*&_ys3ZmmpikxxG)dETRw=+4Vwl+#NgYvhiv*^ zQ`1(J6+DmZ@IT12E_QrAbT|Gxld2M(xVZ1+U@9q^rRkv$k&|6% zFi5v%_c zub}G+$0Y3}9$xGKoAMK-Ju=) z+5>nA?D5kC8IePe2=uU2*nqKGq&s73`oQB94Y3Ne1Gm5Bw!skssbL+2om1cVKKA!V zhqEew&DGa6k#IZ3$$1!V;98l$`}w7&t$$S47=>=7G>TFj(9V4OmKR?c0B=EP9>Q6a zEygo2)ctQB(|hn`FkT2bOfNvm*9+^U!|zs>)2E+!Y;Qm*?~EekQ(GIS=4Qd!qT(Xd zgV!Mb1!Q(?VlFiLma6g~HfgVU-0A*J(IR~1>X%vUBQrH`B*cqdQ~BU%lbvJ3UCNz) zBc{ZAwRGeA(RFy+e@_0=Z#{v4!iE&eK-3Q9{634i>+e^z&_6Z6icDt$}xtR5fda&}q2 zzjhDSF?qOXk`PA$_lkh6+xI(u+Z^Y$k8RU?DecfBcQMIDmjrYUV;fWT6bm7WEpl`@ z3Sb7cL~y~r={exJ*~5AB8^4ZV>x(I$;QT4!17kiB=C^gWJmqdEomy@_h>5QzH2gjh z5mW{S!&rngSKis9{g770tQze^^6weu@lGDw{f~I>T3sy@c5xwY9S||;GF@ZJ4QFF# z4ek1K?!k;il~AMEDWle-%W?V_E>3tP14FkM)_-OXbsn5Fu`I#CP+!Ix_^YrX3+C}@qj;yt@)inI&JWM~ocJ>gW2uGpN{4hrdz`#)3qAi-oWL)l6X^CXk zQ!2ZpLlpDMuI0!6-~!dS)AhECh^}<{=6TU&r}>R_{TC-BC_4-=T$drpy2o(mp&x_? zWVfVX`^03oB?l$jl*7Uw$LX2rL#6C&7rF+^sm1gx60_efkY3aN-&rB@AIQ5`O6-ZT zwP9vq3HhO0dPvb z(1gW=OF_eM-_g+moNKt}D6%d-vobSo=}c9${`Qtqwz2WbldrbuN2s4&M5dF$cm*2D ziPpX=*|$oWPoHKymzqSL5UuetQzzBAC_3}W@xlq4-wtkM=v>)EweZ6Yq`GK?YW!}0 zMd~LW5H?Nv7Jq&E+){AAP8L@A#7zB?6N#~gbzC`Jht&ZjS704xNh3qMO5LB~4;hUb$+7!Z=iXWKsNl^#_Qh;a!XbNe% z`n1A#1>t94xxBKEL`-ykbv6C=x7#owSNM?#Ks-WtUw$@_F8}*SP}yb%{KR#EUE_6p z9)!jh)DrL%ItsP8z&ruBIqlAO+e_RwSKx7K3T0sB;TH1@Rw=W9EMY2ZX zUI=`Q+h>Qoe0)so=4!yvmcMaB>gv^altbO!-F_ZS&$91+{>%42HpQJFzziO(Ov$t} zlH)HS>__@bORt_i?yxdVyD~itiudzCYWEEN53*sK9XT<4r%xZrFDbF8_Y3RJf!}G( zxuUXi;h)&`e^akqR%iEN9Th|`5RZaB>{VRbK~GQQLZxF$0FC1lm~8$BsJ0uC1&gES z^5xf1+l9q{^gppv-$<1rkCZuzrTzpFr;yVZzW}WZD+%F_>*(rAcCx$H-Tm!A<%wog zJkPO9gWII2u;e#>86z(OVP$!F*_o12_3db6e0)e);vPQB5aZvi1>OU5!|u{^!^v{W z?KNM98PP$DH#Ce+Ok9JT#&xy4qcl%U?ZU}}R4-U}TyeJOLVEuHX^K>|CO+2r0)6%j zt(B>9hu8DxB+Jv^NU0-F6QVl_Q(2q-o3Q@yfD%d0Abg6-AEP29YmQ#JW7__Fl71&b z_^Xx@!>JlmN-Twd!qU0@K|G|==;6i?`aq34?C%`x4+y$Eb>Cb)lb7-Ze}u=MZ@YYJcN5wN zECrlbrge-pf=0rDaz$W_M zCBi+c>Dab-+SfvHGe6QigQ~ORN>-V3e&ge2LBT2%N%W*N(Xm%aG9(tz}-|_@4>WlL{K@TH}c2 zqB+gh*V~*Jf?0Mo1_v?n`P|XUTUfS!^2e&(pi*#j4n99|G1q^Rn7bjO&SAYXHIGhr z@5|ylyjGobC0u`QG*6uMA)}Q=tmb4-F)6yM1&RAf-Ajzi^F}}G5B^8Y(AfFTC3B|A zFqG!Ri96XjBKhu3A+<9&42*kPqd+9l`D46G@M+V~(n0G+Q-1jTYRT^P9jmw%L))T# zSQgIz_^tD_-R0PlMxri9vn5)70ul)0wh#ufW2zd}5Wn z7$&p?V-%M`#reDJtgP3D${(WB7(=7qAo_K3a`Jk@WlAiK5txW%ywc-MQ)6Rw2#d4o z$<{FzDwQFnhAuS|&cbV<3|!1buQ2a;O1#up=qk|P-;d~b;>?@3UQ2NPPuedFBec<| zBv=HEFx(yTc1IB#W(mcizZjtvrKwkO3>j3#tn4$G1#(IlF1Jj^JKMNi|2H zxOd1Gr{cfitnG#O#|&mic5~zPa&A%j96=Cma=Kse4LA?>`Ae(4=1Ydw2W#pm{yUfP z!L z>P200u@7qq0LN>2sxKT7tF>pCAy7SwUff(U@*O6P5C_yjnW#{qjJn5Yc(AO(%_W#k zMtsHLgIGyF(`5eB8vBl4AR?8_lvP^{9vW_Ql zSyvyEz5~R5Aazjk4SEOUZke@|NYyt|jE7+vj7gJDsfQSxf*e8rp)3YeB?xHFu6L$} z`-2P@B0~j!Jf~N-iyzlm%iA>JMMJ)>tmCQ7z1oXvB?W$VMKV-ri$!{%zoC6bfgD(PoM zR6lT#f3lbOkcYDU*0tYQ-=whZ2{7052cku@*1qjfA=+`^y8Rv%lv@$5K)#wpLKTM2*&6qi8)R6om`) zQgKnn&CKK2Y1e!Ghirl`2;9&qFo|&6s;@UYej*&uix+wFd&E6M(lt5p(+utW=gXTl zYuY%Eii4T!WtI4Shliu;0j~=JD|QB--JCC7(@EamQxoVRwBjcJ9R}}!>knoIliy2^G_$ec%OnN?6!1Z% z2M;bqMMaI=tY=Ej&JK#nVsBE8J^xZG6OeWzT-VnZ zg-gIoL4g4KU!5BU!Ikyu$B#60R0d|q^ewa~Jy zU_C_@Smw6Qi<;6Dc>IPmweB3<(3-KPg7uOP0#1?eeU-Qg@$hiKk@VDa1uaEzP@lL@a{D24RAIpE-ISuEeI#DW3v~GYLjG7sc$D}gzO%B zc$l;NNWA=akMOnmDcbdQmzR7QkDnAA{FjpgKPX-AKQn_N9qm|(aIA9aRo-k zphR4F|NcF%_2OAiI>JUh=88OlV>FN{&adl=){d@{>2EJOyUtm{;zCqpI~0w!iw|6ltx#f$4V&km z&0rbLH)*iHB}~R)me1A*I`g`pYEbWxyMXw?`2N*Y#&zJ&aML*^ASV!lZW$Wv!;6*V+Wg8{$tkU<7bjj=ge#N;?#W}6W-z&I^(v!6@?#7r)LcjR+mj( ztjaI|OUY=wGTmvivbDKkYkScmtr%TQs_yFS^5hT+WI;*^l`yug@mhp%BpjAe@wP_N=IA?9#-S#N_0<)D|rOJ*hxN zOI|PSya$!zH&S&_a{5g0W7*8L8StB)NHKKNg?~^y}joxzUY0fa=&JUZ(tt@ zd3}Aa7ql5GGfU&Jp29T}JwH#1G)qMG7D#>w7IO_bb>TvI;jxJf-KN;wkPt}P%X%%l z;ey9fT8Q%at-G6Gf1sD#$5T)Mx!^nK@sz zIWoI6yKQ%S9X5!xtY^>kPNqDJxjYW^EIIj4D7ha@bw@uVDNRaE{Y(HOxGXV3_KwMa zkaAW~$u|i;zIlPjOwDWWg~RMAOY_O(LN3grREJ0Z1#Z4CFaJ3; z(t1(}-Jh&UnfcYbL#U4z{f$tpa2{HZqW9fHeIYl`WVy9@k*vc(n?xkHduSNDoz zZH0ARXYt5Q;c}{PU28+Zd-pDDsQod?@qYK>aiD zr~Iz7oZ+|>1R0m{tr5Ca@6Gv_?r7mlKRQ)f=VRMV+l|@ghPJ?aLXER>t68%-W z{5qCaw=!J}4hcQpot0T*B7K90Po_Uluk1Re6L`smxDp0`WF%Bq7@A1#y_kD(u-YjU zO)yFqdg*oMr%F_RLM|0MS=Q7Nu`@h`doZX}D4GYZyp zBzrtqXQ7IQ-8OV~$Yo*iu%cKV#Vu#zM;9kd{G6WTt4w_H{vC%l7Z))sMdx5(viG5+ zEv-+No_Q(~seIq4>(Wav$#P-GhOb|rrz^+XuOpA=`de;W|0A-y^P39H$4=n0wA|-t zKjwA{i#&^<43 z+6%ajen@`xP+}T-dYwf|LxWORLgE`rwCX=5k}5MwMEDlpwz7I26BGD0nvPSqCiUP3IBhV) z(0DhQZaP9y1$MtoonTw*by{vCA`IO*R%kue7ro0Lwnp(dumFyjtlmUU$hBfh*oPTz z0c_Phd4^4!N0gOWhkcA%u;89&73l^<)ghtoTOEE#BKVJ!4~q zKS|B-@fAXUOB*Nr@7Mh3nFh94&k5|7yGt{gyi!Rr270TyT`s(NbJzb0(I>(8E-Xj# zyzld#&v-6JdId{uJdvZbaUy6C{p^3Wz;Z%=^IsN^)#8SsIA>^sl%MBjP~ov-AeZ#M z#x{$vvxM@pu=Vd$!Xb(8$I`y$cvGoml8v7yAlUy2>>7RU;U{Jx{sWQ$G#$@D=C0wHj)P+T}7 zfLW2!H9d>rmHCADyz4Bc>%HWcir+Q?8Kf{R0I}*9S%b!ufD7%j2KC?Cf^pmN1eoJwIKH3k%>E!ybdKk zlGJ==J?_rAvNkBrMX zyt0zhS9XV*XrR>2vSHEOZD+B#y8v}@-HMIw`r3kR*k#L!)6%jAsh+z#cL!!w>rXJA zq^PfXvJV@OiRH;>Mb=}DkQ``#aMTaGVTTEcY$zQlRr@93s+-Zi}@@<^WC#vVcXbZCfx)x^1ZK|PJveCno) zvpp(k0|SHB7!eYH@5&Ng_}K!WfVqb-qjldQ93GH|w?%cOgDfXNFJN;P(P&Fy)PIKC zqE1Wspl4o|BrTZYzs>#N(@}({%7HN}RA>nc=%-Ju=l>b-@*e6Jc{tljcpjE)u5t14 zsaIKb_Vl2|9u{@kdQHt!Kto3dkUnbHMIk}~hoXnucuH@UOeqMv|s6okFk+{WkQL{`%++v8=( z9M2!H)W;t+@kJ&d>mG8ZVe*<3c~Tr8;Kb+Ru=Q>Yx=z#>#Q1EaBUw<`(R?*`NPD37 z(_G8Q+<)App>0+~N!x?M^~QN(}d7sg4OcLvf`#slqzW{U&<9`hLg_501+G@tWaNBAEe zzAL+ALS*O&80O?t0xg)qJR+;($@Is@Ei6AfFa_4t)Eu3# z9rE)NR0Ia$F#V-dQ_IK7m!niN4F7}$U$X9h2}BBo&e`ag@1tfaM}s*y{e>O8zElR# z0Tn$seZ7Q}=2O%6_CHeD1wBq?-VBgtPLwxg z#}H2{p~^i9n@^y^{rnDGG^minW&sjF7#+Ng>wF8_yTZLmskt4ejgZau1TK6h!<41z zLh=J=iw39KK-_T|DF8_1M~K^3V44nC85|8WscRUda(mydGPxk=OGg zK3?fc4G)V_Y(1D)eaHa+ZISlAth_VNjtN4cC_YyzUF;5Mv{wPuR76 z?d(3w%}s=9s!4|Ry?aN&m^3|eW^ZW1sdN0n^(kf{#Q&**c5(Lj!OhA_`RfY5`tZB_%sLyHnKDLwdCZEPp)Sxn$Gtg(3s3Pn-W(6RH37c07_;_st`{Zv)KJj7$1Z zf?&Fg?8ck^6Nok1yEkNElPKJDPZOv+X)=KpGVw0=UtUO-0*xYIJ7`O;rohzdc4Xr1 znf<9N>ME~&zt@Gy;}+t6Q!oCjIkE{)4B?MhTQD^-kT$i|DLOll_a>-nPgl?W&J1%W z$Jzd1TsNA*9JCT1CnY(h(y~{QJqjH?J&c|_J{!h(#N?govGm;y|6P;%b!JBn+Q#4m z5{PE14ScPQ`J3~x6D=4+ygxSD6w)AdEHJR$pRcfJ%+2hqyubfBgE3eIA>oUL!Eyf2 z!ioKd=~~l*>1laP5Oer4JDWpNN|LAW?t1#~_ynza54M~h;m7d?S3hXSDsM8L(Rshg zOzJ4j?NBGLIbGeD@~X! z8lKgr78bH@Zlcgd052MtW$8{@?CG}jRI7cK_kL~t@g;h8jkjJgG4xvPCohz2kHt`X zF$^^y%+rXK7?rf6&Zm@D*FJytT>z3M$0fbWF;*hCX%u7nu+EiN`^z!Ah zof5m1N$wLF@9Va*@kX1qSN~WaoL^ZO#Y1g7RMm!OqRjK0UofBkr|XIr?;9NQVA$=6 zcOW>b^EP>Qs#>n zL&DDZbiLDH2dw88V=w$S1r}|$eaILTP+d;;brH{P55obB%NmD0#ZYYA{KCpblcE(S z?#JkLI;-?`q5Z_F?I#Ek|NVEe?i=)4VqoD#pr{@F`BS0Ho;dz}M%MQXJL8Yg&;6PF z$-LSKYiid!na_b8_4U%2C_}?!K3uU5gHH(BAYLF4ncWeqrBmQ0gkvu@v_eHrzEVA1 zsmQv^N8J4p!LT%{-hY)e^>rZrA}P#$uMAmyZzR!{d9B~`KcSp z`Fh6@g5056duQ?QHWinSB&<|rpnt%oySC2otE)-5zVeZGaq;06t?V~8F+F$tDriCQ zb8~ZZ-u}&RotZg45r|#OI3fJ-?OWzBxq#LzOnZC#`U)T+=`XU@o&M>D;>&G&gYx0O z5w8e5bjvf*43Nsf-RNmH{%HsP%0TcmO*F2V8dMnNO&CO%I>_9pT#M5rZU~Qxf0~;c zzqP4$9ADU2|FxuqqYe_Ffm}^?Yk+}<)hNJaU%!rZ>(WFSz#+Le^}#^e=I$nwl2t0hE{S^aSnMw*f>UH6-BDnwl(}BCFf# z4qVB0k6*mtMM_UiPwseIobM4v*n-9%-bVHd<=g0;%sYEfT6_}VRb*xrp(mnzHG-Nk zDyqWIV90g|3nBA1<8b8a}(Y z*r(3H$$3zMURBzwM7AxOhL*O_zQMk~)Xs4FRs-5e@rvD=Phr~uMZYE{!o$MkgYEwI z0zz&N{$Q2cPEc9|6>O;=KYxybdSVYTJrOuR7FTvX&a<<34ffNqvRand4JgQ2oi7s- zS}f}CbFk=w9i!y#P%|(A^GhPl{^6|FUw;Tpgkjuy*{)9^uKXdY1>rzy*;+oVMU-?o$ryZN?ie1*5BV-I9_TylBhgVg%G}2Z$vW9>VKqxXL-%pl|Z-ik~{}% zAQ^@83sh6hm^7=XX{JeSIy%pdD8o*IO-qIQYDxV>ShU(3lgiuwZb$RmeZjGz^ZwqR z6RbfKG7qlGvw{AEny0_?P79i}g~17pyK#=_2Q>3;-M}E{>eZ`@V>rAp%?&HGZ4Pl7qB&|_ZvkmMT1|&{eR!l{`bs)0DMk`n3hLh zvaWrZsjgFU_X04=zdwc5AqN73kQOL}`~u3KMnqg@4m*&jqCM@<|IVBpGP4I(BOx_4 zMAAunLk%A+JFo;XwL^^$AN`e=3CiffFg;3<+AKNXoo~@Ls5ZB>x;!%w{ODinpMi7% z3?U|#CZ2A!LVUY2-FE|Xzxr0 zej)GNFU=Gt%q@S{q)p5Ak z`s7$oIIBQyFL&2rOcjKX?}BIXHyC1z$6rIc@!;XTADHM)4;Q9?6=^~JGd-ir2bKuN z{0i-(OBXC}mh}p~^hzta7(6Xp=+tho?mD^(UyS3-@QrN?n-0#+C3@#-FpiCGRSTi? zPF*1tWh7t(dwMP};)!QCE5c41vy!`LdN{gN>eNw$4~!mfLS`BBsZ&G~c69VQeLCnE zy%eg&n&w7AV+T7A{}>#MeY#Wo)S>G|^}G9N>`|YwXIU7)}LdH1EpR0SKWamfU8oEBe8n`_C;(T z%@LVLa1*87;N;=ELzs#?uU=%N)ZoNULlGlVNKH9j)ZW56@ONumU1bLM?<2)yCeK+P zy>+o-H$P@?waU}EcFyWu~sjf9DjVJnh9otDfA)ou+Ad8`JTl>{xfvyoBe1h!IY zY1e7v#a(3~tmNkBWADy|Yyzj${bRC#Pm z*6sh7d9z?|&aILkJ#8`5gT(-H+7ZYs_5LR^)XI)4Cy0*TyvL1!Qp0d04EMi(KLqZY zk%*L<)8t^nPK#bJ@oNQkB^AiZd$YHumSJ+-1-`)~J^1$7Z*{jQeG)l3epVvQ;B8KWe5)zW1W7Y3) zHsc}`n)<7#si_&ZDdc*2F9xnYQ!EM{))Kg<~PLPah$fRaYQ zmII-qXL&nA4^ajwRf7XJX@Cm%LXm3S(4;ZtD-+nyjFx|wI$HvVk~P0Tc{ zx{7GT<+$gc&wrD{y7jlS(J4vuhb$Z-er4u?o}*-*hq0xF5TZ6+KzTvv-eXqfgk#QI zf+(u@6Gjyf_nq0A*1@{{V<0sTK}zr;^4UTkcd=Y_lZ5=wiBha5Bk%!6_UCEk4f{#E z#FCSmw#Qdqj}m^Rk)?HF`zLX7Q_!fz_^Ci;hCBB3rDe>Q-!(gXp|q@n8N|S>H*Rv_n-Q zl%=Kr6LT&9BvA7Y;}r=H(LGQ0NK5$r?D2ll)YdE~b1nUP;(?4O`}Q9{dM{{g?S<5| z(`@e(WAC@!xpw+fv6O_)MoX<)2k5;8mf0cd*pm#fD=&~(b~FR`d<<=uzNJ6Y-S%(1ako^8h-8#iNJ2tZW=dov zWoDBi86hJ(JDHhT**nS3$jrp}k z!xa#gTcQKT*MFZXeeI>+s(F_%Z$N~sPVVP6N>tJ~nkSoM>wLl~U0hs`963HAxq4K} zpIY?Q6c@d#3`MN+lEs!RFuJ%7$9B!p;L5vBC|>{V5AO-=MrXq}{@s>)Ap?JaCQ1)!(tk7A7{ zw3?VE00hg-#YHMBD@&+-q>U&s@wljxMZN#vv6^^ChwGN>vVQjUKSc=xmUaX)(b2Vr zHb;VZyiaR5K~n6wy1L!lcY&hoeN|dt7L&eSe=#ivl8OE{a%BcSzz}G#={rNJ$w0n-=p6bb0tsb@ZOxS=21MB`c%f(-Q6GL7Ql05^2`T z7S>-dkEAZWx)zP)DKd~kWLjwnIsnY-AN9l^5D*l6?c>8RI>--0*j;Sn_@39OXhtsI z#Mg28vXJfO;w8w71&fFcNZ1a zcN=W7W54B>OdUCXyt<4?g@4GWzLEX9Q4Qo)141|>7=@} zc#~FLz_q8?3sQm()b?pA*)1i7i+rOm-Bv$Z9+Z1{H@_QkpXhl`jA;}$1uqp#~*@>#LEd7fDK-d4;|ZD-uQhZ0@jq^@6*|Meo#);=V@IBuh0LcB(XP`gGe^V znHRN$MLm3Pcg;TPZp&(Wxv)|~86)!9n@=QQ*(1cbqm+OD_0WZ!haZjhpS?CW+A+Z< z+07>}&s0~gETgEXXtTj8=U9sS8}=28jYe{m`hWvLnsmCg>}3%&BO4p^7}V!J>3j{W z7Pr$6!N)z<2y$pQ&sY#8j$#Wav9Xbomh$M4k@R4?N@u2tca|x?oV(lUNJBaxo&TD) zAOyn;<{yjE8uPbGiYF($FjdgTTK##!KRSZe6ZN0=gmdJs*|qTsfnD;M-y(|Xno6Oz z8WSx^j}|of-Isg*qb|9g^Q@g7gS`M`2f_V8Ei}^v;sq8DSD*C0fjSrN4YjnYgsd1^ zlU2_SKVYJ`MFkr?PPUSbru$q1*=-u*;j=|}m= zT~NRDWDi$2HhM!JD*x%pLkuo`@IT7U<$ThYcLv1j9BqejAc-D5qC`;Zw{ZUSHjA0I zxcxp99I!-4LXxKQ$mmr>F%_J{1UiF5%*#|HB5Kgk_(Z3p&gTBm`d%ii1wK{zq}$|> z%~nG7@{CU4G+TNtNFAe#QvrY#La@!SwC+WJmhOcqMQ0N=w}E_a&j!fx`Ffjcm?Rjm zhxXs^x5=-LDhqL8r)nZ?|u-fJBG{xsLy3eD)$hX&iayGP(yhEF5%@1h7W zVGB-oUAG4`Q*Ox1Ur9=Aj!gOPiDUKYdH1dSkrDg#CFkm!_A+GASpVq*NvcjPw8X*P z|EKXxLSo`K2=Z?8^e+yT_@G-Y-I@%*@i$oKpY(!*SGdAKbf|VMm?y2K>zP)f;;mE{ zJ=FB#N-~FJGv7M3IUbZ5Xt~r&QaO<$zP>?sfkEiNQyQU5YL*Eh)q8x|y0*qd9rwXK z)ixc;KT;Nf)*;8bnd;bazgw-+4BQORY8G6{dR$w+{p0X|VrdcA^ycU}W_V0BQiL~O ze6+NDSKJ@l#t_*zRuq7?v0*^ZRY>c+oq}x{1?6HTK&4T_%YyRWJVgOJQbv?N>XVK~4z0 zr4?v!zusO-oEVhg!NN2=F_Pd(*rMFK*Vf)G#T@i|b^0iF0~gyh;q+pM zWBCy*>5vGa=rChdNxL&R%jdtb`TgT9-BJhQHf%D*retGD|a#Dkco);omFhh`RTx8A<~`qm9j-PQITY(r6AgE6C$&-w&@F`&q zY?GAd>`%}L*7xQv41zizBet~Gd^RJ43c;V1sMF2>(1wdi_fJHD`!!*3E5K1aS7Y>`X!lQejfF0MsjrKjD~qVf7`MQTm^&IjwDb~~C%+zre9^_*n~Q~|Ri>2q zhN&s7qhlo@*Wxmt^&GVa@x1K!51~vkD?FT@`2jp{jsz>%^z91U7WGL`4_6l~F(fjc zc57p0VfkL4#Z9ALE1z_Kdw1$gsGBcq@iZgj6n$taJxLk^dCI;jF{UBrwJZ8C0=qxH zmyM*_vX^U1tP57DDhL*27CmqHFlS{;#Ol=Z=N5Sw7uNky)@{E}@qB8bOs9zzd$){8 z-s-9v`b?2kAm#G;(X+r>44N0tt`uxqFHq z^uu;mDX%9>_<1H~FY@OYQ*j2E#VdU{W@q;gwuUqBjy(}rt+MJAD@xvNn3onjePY6P z^(gE8OZ?e_SFXH@6Zgnz-{quYdXhmsC>ZV8BX^37THR>u0t<^5o?cL*ys(|QiZDCH zlJorUQfnl4Lszmiq)yDPl|B2#9am$52H{5KE(cd*I^)Qr;u(nVv>?)jvtrB>(y7Re-s>y z54XEm`2=1hz`-^*yeJDx>Bz{)w{T%U2mv6725I736#xDpB69CJBh(tdr@vot6N@Xg z-mEz?hS;;3ALUkY<>*5V32}SB+Qm(Cl9Q9am%Zc#KLytC7H}<%e+))o3PS$y&g}H` z$n4ADf2aTa>PQk{W|qRq5mgrui&XLk@0E(-3$Ud^zfpKkd0cGUUF`o60)+AgLixVJ zR!Ds#K)Sa<#wJw+m8A7iFv+~2d&7?!A9{2UVu03 z`wRE+*IiDx*wB=geO8r?Sx2>gRE+=5Tp6D*aB6Z`^bVDqUhH@-74j~xKlVg+ z?8^EiKfJ8DEGE*YUQW@c9`YbR`eOoCAa?T=3PKJ+S)NCVu~ArW-P2XlQIYZwsCYgX ze;%Eg^zi?54T8^_fx1XR1>vz!>T?$aXtH@urKn}oqT+fR_Ut&e<=NYtUXIV)8`!pY zmW2P;ukX4F{Ef|dQAR;R5;kG-0}~=H9SITUJCv$A4bAlR32WY=uXeUJxP^sPf3ohhE$%>HYrl#knNRvj= zY@S6=7X4^9fgQ2A-iF%`lhsCeK?yAk^x|kD!SmYRYHP{u(tldkxW^&b{<~&n>k8eh z@vaaSNh=-?bPWfhWGFZw#(8F8f!S6>spCq7_@NU31sV;0<|NiAp}+B^FMkAjyZyk4 zA_t%q;7=UG*Y^C_{7abp6Vv@p(i#?CT^J(JX)P@q?U35L{W_&3bWMP-zHK>Ige zd%~BN_V|vvxf_)g(NupjQ(eBp$hmSyn_G7&DApF(Gd=(l1mGAYW)${*0 zEC>q;6!NICl9iHM>fgZQUppl5LLTs|-B)`%Q#4&ae^y!Fq`3HqnDWXiL?LT;)svdh z(b=sb{IHKh?NhMd*=sOaHBkP|UH|uw)OLp&TQ63f(rm3lf7CpWObqKVQtd4@K9!rB z3*gn;e8Xx^Uf!wNW;G^{22DTjcsxj`Q51`AlXoa8ZQu)sl9>Sl70enimxbRy9&?w^ ze`X}lL~{+6S_S2_$>a4zaBsXq!u3mP*G?TjZpEr{S$!)WiroM8LU%&5UAh1daR~yYDH1Ob3;zu2|NFI_dp85<8q{Y|Y`u#aZofB0+}Y z5Ljg-B!+!uCcLSsEPO9!r5Ku|N^Lg}RwQ84-Vld{*>6_w#F7G7_h3YcuVVi3 zx`MyWH%S0Kp#9O+c~XUrl?^{ zrFy8UvnWWNyjMwvMkY9{$^GXxq zPc>n(m#TE(F|ScW&btA}Az4PdU84CUE!W9mJjJZNIj5?QC^Wyz zBPDR7&Dl!A{ok|E@muutEzjqAIo}4o1@z%-U(s2l9V5kiAEdVEAK{DATYpU=XtVT+ zJ(722&h{#z0BUM$JBpNU&hQ$2nf=W7-@fxOJ`38fQl^Lc3s$^%_ia^APjR}C=ITSy zdfgS`Rche?F1xQ&+*3Z!fA`%xNozCzKlu;Y?I7pA4LV#=lcSk<-CRpa;4(nxdU z3Eb&uJzqm*Jlmb64++)1RMimE7CF?}5}IszeC0m0U(4;?0|ON*4eH`tIzWh63_SaD zSn?9q5>0b`77znoP0@;l>V(96K`?|(nGu>Ms9S!nWzzGf=os$z2ai9R*WmqrIzj*R6G|Sq3c@tQ|gq*st#%VgJj&#tfVyhJ# zC%h+U1>qy#v3a>UHeZ%n|3_x5`}>{vQ)C4f$;pyRRjD%1roB&n_-L-C^!DibR}MiZ z%gE2aHV1u(m>3y@@2?&3p2jE!8=9P)6y)nAeD(0z+}PlJUi0ij_R&OxA!a8NN9b4r zOrse_#?A(#=rMUDo<#NM0Z;DHG#7ihSbimmoJ%a6B!@gN1F0YP;e+>$6t{~A9joN# zFV+>_EG>Oz!8Q}(=jVm=xKCF-2pT8CwGov==oE|o;1JEO;Kw2XL4=uZAL~%hX6h; zH%D7t+s~V+u4g}6Hu{A3K0x$`mf75oG9Pega;s*k>?WMbXFOp=B-;wIx7~d^F?PKj zef_7We=m*>`Fj_OwbBYva>jEQ81Nv4?L5V0O&oGklC@}~sxVUu4i14kBXr9qGlB;y z)niCbfhHPhqbf(EFOUM5{_iUK090h|m{>zTP}}!JMLSzWZ61C!Mq2e zlEGS35yUcYfqI}Ia@a*wpjK6`iHbo>)K}!J_DxN=W8f1fjNu{Fa(Q-Ltjw21?nF!N z+J-ne^6Umly);neGD)@)*Ek?3D40`d<_9<(*6*{EvM?du1n-~ln5-2)P)%w_^T3$Mto> zuXf!E_EHlOo28SOz9U(J(=;o~erM|)n}Wh~@p9v!T5Mn;LvVp_!*s3niY=CTed5QkMO(i=I)uBpHI~_MRM=8$ZKYmU0upCx@WPc%y`Jn@3cV8Amz^p ze^a^rMiut;y&sKFefs2ggs8vudopKu#C<}`Pr~qFY?1EU%2XIAjw!G18w)zTs~m!v zS8$Gqqr_$Sd=P@4D=Vvx4n+k8g*a@QXlVs-r8DteeC@pd zP}}#f?zoy8$RAoff6iyKw8z4rH7-up(4%=!HO)qC`ukgRmKslP#{p@XTM`JuMHT~Q z4p&kYBU=}Buz_Izv_(Z$nmwmhpjYdACVb!zv&w_h&hqunvfn>jjr_N;pnC=aSpaPj zuNJ~^lQ`eHS+&!uk;_Wl2sv&uSiqucIo z;XABNb=L2nvY7~4&t1&D3y3~8Z zW^y5bF1GHgJ|lS0kD9tOF$%i)qDBY-EbxjxpK5tpqjLmTi{Y;vZ9t!ZqBlo;;%#tr z6_k|5eg`ElTfIu2(u5vD5@I~NfAEM+!a?f_7y)FF&_f$FBekYG&-OdBu;V}VIeQJe zwei0EWc#i4z_y$#Fc&G0ZaZZ!D`E&3!CPn$tMdDY!@E0DM+F4jB0PK_K6rk8XqN~t zkH8Jskk>M(n+JO9(6T-$RL1U@p!Fea=wZNn{`2Sgef#(I7F+oU zdTKBS<=THGg5LGsTsYUeV{GYC_FGHN>uwSozfWE8hi~>#e}P%+w=>+vrW)@ZZPBD6 z@8=6r8f{nBp2oFB2$#LYPE@VsrskKyZ@$>d=0ERBBVDZPYY3d1qqYzD*HP{OyjNbh zh|^yFBK}L79}gpjB}7@*bf~zYRyLB7Qzvn25O{+;gd$?vW89ws!_3{f;Z`~n2dGxH z`%*|yw+@zB975d(YSibKi^2p*%Xwh}fMgkIY*@YDL?wV@Y@~8~6S^UY$7PX$goO;e zDbTbz$7$PMVxJ{FnN!$CoFYL#(w%vzx0j60U!64jhru)UtYcixq(rV7q7C)y|1L+c zTWmfuGO8K0U3q3{NjNim!zl#?KaEXHxO;dUgw~2c4c;A?dcYdek@3*t>Q$c4PK&gV zl0eq2UDdJwVmcYQ>*hnTfG6k2m!u97Q`fk8ow~xCO-Nm|d_Xx?8z6r3rsoBbO9#CZ z+@skijvqIVTpkF>x<`Nho7vegx%ms+LgdOkJQB9HxcGIus+=`-L*q51NJ5rlrKMC! zdl>wG|EhiX+=A<3f|>Nnr^^otp52iA)00x%dUh}h^2IA=KeiM%l~dK;frjxffPdpk;^nx&g0<8A+ zcibqqeIbiC|98jcd^H}j_QYKB)2C0nHwy1cKa)SX|KRFP8JVLhD!ianYL1ruS?md` zub0NRyVLe%INy*L_Hsj|FWjA-JTh~CE57Vzv=bkos|veoX1=L&@{I8eX7Kic;S|mW? zgxiT)gjO1-01Sau?d>Gl+dm{144Wgm<_2?JdCi8&ukVy;{+nc1vsw9foG=Btv;L6k z+LH(4#lscfUar}ZT1^mXYsX1we!h4j`L2vibkPZ)EytY~0bXTg zLa=;~Z(zR5u7``Lx4&OovC{2Y=D^Rk0yYc-w7WiYmY3h0i20L~BTvW-MiGyw0f|ee z6A~FAWICX$D-Lg0ibe_GXC-i_Tj_DV8$5~Bq@zcUG+cf1AWWpGsc?GGCduz!ig(o` zm8F|cB5*|!mW!U{jtU7@O_R;A&d`;dW=~Ns;)1_69%!-u4jnMxXwrh^Le?0MPIA9!5jw-pZ>vF@w4)x7VU!E=t>s_Si zut5E|Jicbz@peq%dt1EbShtfvjRrx(an3t(YX7afvNvSKBR#rlj0Zau6o}@|LMt&? zMlIGkU0v$*hwK$=0lQIqk%*t#^_@(=7^eg2%vMRa_H&my*x#NzMYl`-y}w|Z*OA;h z`rp=3!(@WD@myo`Wao(AU=g*;gJ7S$wCl2J{1zjfjszs>uXf$rf-0;b@yTijPXv%3 zJJWIY6|9QS)|Za_sMwWOR3xGgqy+HI*YEiBK;hXBA9(m|uDl5kS0TKcy1J6da!-vq zQy5O4{?nId#m27I%W1MUr^74A&CNaCQFIEj9GS4}`kpU{N7S42J>!0CZgF<4ekBmw zqxVUfvd|3Ozwc+ewN9d~ojgJOg^vHl0yX@}sW4z*?d%k;x~WlN_@`3sS18Xv?ttA2 z|6RL3>m8`y32k78k;2WM(F*C^8PfmoxO2W-Vey~W{FX2fNMNQoIf?86t?KvcU>yQB zkgam9`lfG9d&4`h5WdGb2z-!@1@XjzP%z$&6(%gr2`bX0B&OCF5zvTtuIA;5F^2#= z167w~?%9(NA15X!2Sr7xOUstQ1n5g86oJVn=d+(T((Yw?>#7|3aOYj)7t#GJT0dSP z!nAa4zPehM;5to!-0V&SpYt@g0olK|0GDwY_zIv}PSiO7(t##PQ%aCLcRZpBU?HB!{-qiLGO2ec;YpkHmd1V+5rxs!R0L#j|L-Nx|LxHsoKs@qXW zDKD}dd6=hny}(4}5K+3>kD`^==f#;o7zKap^o0wJn8qZLCb22%aEw zt?@r*Wg9;_%gLI~1E?zxK@f-kC>=t#52PU)x1qiJ}w#9D$nbICv3C2dK2;LIv z2TYYo>RzCJpuc;99Sh;3jYXmCn**xv6&Q{_w^;erV@3^6cW-a6d{z`E@ZN0+biAV#Dp+CnJ|vuunnoJYdE_onv#%A5!hu&Ai0-yFEH<)U2p$`vDud}tK2+ALE(v+ zq)L3&^XU$KC>Z<;3JL`2*8Tz!0u>3rWzI8clv$64ivM7+7{zVavb5F54U782V#^~u zCY|py%4z*Boy`O58XJg{0VP(O*RXh&{O>|JNL-%i>np-k;w;@T5L5*Jccwe@g2>uP z^`TMCvZ}7H1@(NO0xG%Ezge3Qd2E zZ>&tM&P=#HiLw=ek8shq%4nDOeUyU!lm3#9cndAN5{|D= zJL&!ZowgY&C~#VN4e^6H3UsJGTUsQwO+fqy31GAN(B|-R-6Ky zozFwQhh6prOrQz!k$7}LUJs9mAdq8x(%INlGC!c#zG^xcj!gl!w8v<K!!2B`gCTL7-hZ;vG!^6TMR*UBl_I=sG~QP0^n`eK z0l=GY-vz?Z=&<3EVCyi|HEDu4)z*f=1uMo~I)il!qp8|(PE>Y=|(UmME@`}RQ_sD!0t-2 z<-~~-hIPazqy4>+w@54&n>(E-4wC9}|ZT7KUJF{ENQ6K3t4odKfry zido{WvbC5ZJ+{HbwawW1`RbH3Id4qL5V4iNq5#)NDV>I{5A9Q z22{Xt7Lb!r3fdgTwSwQeP+slM9cs4wPtLQYk88AlT%{JvPF&*3ry^yNC95rV5s|SS zW7RXzTiV*lSKI_b$`ykR)E26V@b(}TS|V8aUaqOuRicR#femeJhHjDR+_lWigX=?5 zLj++AHvYHJ5?t$Ue#fax@KC9j+Bg?kOg?%#0<2N_Up`vO#-%YKCgjTm1JQ%O`?ynd6`pVK9gy6}CX3%RtL)LG?MvnzWG%|zfg4UCOF@e1!_R+j0V zC_WNy3ky8q1j{8FVZoQQ&7X4@)XVMPLEi`sAKuL={K=iEYGFA!-@i^)%2A5=|NQyL zdT!9`ucKK@%<(Xvs>}zuZ-1X+uHP&UI8%)aKf4`BnQKU%Yae%u>#{N?$XQZK%EtGiL7#1=xgeYWY7HGfYu#1=23eBuCnCkNvR1V( z&kppKTDK$BSFY`3GXJfvqqE&m5DQhcx*;zeys-Jl*=3B&xM3x%fhal>V_dRAJEm^O z-4-Ca2p}VKnbKUNj>&-7I;S%NVg6qpsNA^m^S9zAzW{$=Om<~`k-%;)z>Rj1)oO;z z6XMh!Qnf(yFE7lW1^M~cuj`>LWwqOusa42_$m>wVnoBa>cSq~8c?zNLbMoBmX~{AC zYSa?rhqL!Xjbl%?MgmOC*f$c+%%+|$tJw(7$M;0+{#s8?f2Tx<98O*)W@chgDX{7Z zpXo{u<6H1LRd+_v=p--;VlpzWXL(&PJ=LD+{EAMO^4*=EvbVi@+Ol74g z!TD0|u-RUyB?8=FPLBm0bXB#Gkd8R_*Zk#*x~S@uejeC!UmTpK_OVbC`!*_ zb4}di&g9Pa@UrId!1N;b&~1~mO_QKQil)8FaQx=6G`+sK+`xxf?ST5?*U zKvfwXsp>^0T__YWd))IXBjX9COb-hlGZ7Xce^Uoi4g{(EQ_MFFsRl_jJo#2}*(UtK zkkFF&9JIYKtvb*u0*{{r%Y);l<=yB?SfX?9$&N*R;?DUR*y@{_=grZg+6a--7jE7KYqhV=;Ss z`iO`b0+rFO;LzmcT4K`nho1JtTh*~=|Eg^+2*semz9U`FZ@2oZsw0UTt0s}B{hvFM zUzmX;(DwPa*#s>7oS0$gO!?Emn4I_EkaC%w!3|Njd$(fN7XPjdu_R|@)h6Cz07Hb5 zPS~EAR*ZKbbifzY|B7W><>ccpWBqkf8&xD_Unjuh{-~9ZUz`R?x!W89?5#8Oa z0AA~d!PMJ0K+S)3mkD4>H$LVW5G8244~aL}8C%YE9cShXtkiDU|H^4{k`@978YMhf#VJq zhi*LRbltvSq{`%VorlQU+-%tKOK+})?b;;|yr&(5{Sk2E5QNEuZ~-oTvZm1Hb(Yr2 zcW2MkO#KSG&g*>7?al+SA0>BOSo>bP@wNk`($1mfoaaHlyPjCl&|E)eV-{XDRPs0F>0{L=v4G6z z43+XT7`$xzoHWJ}>-ztkq6XDLFf|<_%NQHhNFW}yT=IHid8sngIJ{EHAZ}fEBxjOI`h9j zgs}8`m6dh9E?}2=ZEd{aX#YoZ24sDLHU_R=Lqp5R`tKXUPCIuJq)ww8DD9Q*#R#!2 zUh;)M?Vsv6li$i(kl(;n_oXKBlC$&6-I^daUunk4s(G^VNtN{`-L1mkA{xot6`*gE z-M?$i$i`0c|3seY?o0ut4{}Lj?k*>`VPWKRn7oQT-bGSP@SlJ})U8@Ke?9`pt2)8; z*&1^hXDn3v@CDQZeVWvgq}&t=ZLT}CxfI4LtAkCQEJ}R#HDRLr4*}RL4wngpmUm)* ztGz1*%hjJ+*cbASSP>^F`oK3)QNDnwP*Fvoc_2CL&dAIN1h8sM&+zA4r?7S6GaqHd zBX`xL-)-;ygL(S1-SixBxYawl;*Jg#TN(DRPGj_<^yAAb$nMBE#Y`c_%vVyuOWmYk5-aHkScxmR*l2l1GGCz(Z8{Y=QpkCcXy|p@k72MaJML z-KeFF$ZAtr0GlTkZ)s92}gYo=*!&tN5+d^>aK5nwJgtzc8QwMxyxE@jFwBN!MFB z(=nuMUQJwH*$i`|?!WQ4L#6ZTN27@=CuJfmN5Gy;=AXYHhI;8JPyYgOxZ#0QcAa8J*%}`RmhhWd-P{p_q$*= zHGc@a6mk_MM@L7O{`_IOAP}aV{|QE#>g>+lg|h0SLbP@V9RUxi$RN#>gQs?imIe~|XVs?4R`ongK@KTy{BGQaSJs0UZ_ zT~BCQG!uoe-9V*rlJeKBsg}&$b!~D4e$Xl?v@;T!oWI}A_Llf>g*OHx9Orp2_#_BS zT42Z1*mygbO)KVO=RITtO(VJlc`b~~Tegs;dBIr$NjXAN1O20~$6?d~3JK!95G8Yt ztjhi9UP91x!Hid)Hx>TsILxV67rJ}|6*L3Ym*@f;^kAF9sE+Z<(&xd*AVA6ptKCal zEnh@kDX&{nX3igdEF8+F;!jK?kY{+eq2xJWCo^4XT*e)GglrT}CnvyF0Xd@T$r^qi zs4q?c0QiJcl)m<#gw5w0(j+16vZdXQ?+rWp1&|ofxcL9s{R8;(JgHYW=y@0`vg%N? zBV|tZEN@3&+$oxa*^;v2X9@G@*vX~tzEV3&ujJO4xD55u^PfQxwzhdPRdYmZ^m+3e zqRySsfT&{{<)cru*21O^(3PJPrN8)3=$o|6cw6X0!D3rtSy^@hN>NN~-^QqY#K-6H zi@oG2COhUE*A+~OBd6BRGwrYwOug7n;e|QLgsL2c9a>+A2PXYW3G5U2XvwO;Sl z+=+rcZ^uNQFC<>*X{BZ2O}_D7QC9XiIk_?bC2j3&H?8ueeuZ*NsSLj{cv`IcNHL^z z@X03*>YB~4fHPO#i(oJ%dRHp|KZP)Dq7|~Qf6sE(=*OoEd;0p$WW;s{Wz%V*E#|y( z1!+3bb8{JHL^GQy3d!ciO6+2*t`|Y*k;0$>P9@gpa>@JA{1y?oMoG2>Bg|zSu4I~R zC)aL2tnxRVXk_8|QT|e8#_&mFaD!WHNtIwgzKGD8k7rNs^$L;w2Z{B@YGvJ7IRU}v zBbiz9I^?{#=V<{`3?d3lx-dLDgyI!ZfK2V=#+2$Ov`&_rDWyqJ@n5wFEufLE*e+!brfKghPmu>Wo6tbA6=lw!$A~+?_#k z=!9vUViFN}FyGTcj-q&@2W|9r2wOr%Vhx%Jn}2isXRsxmu@~eQ#boxwNdTo~vWGr&3h(7-busg@pwuFcNll z#ar(3MfmyU4oyue*`IMEW86B@JwLEI*S`OP;S~M!9+9`RNGQZipA&C!D;)f~o$vC@8gQ^pH`iZ&bp-1C0 z?qLq-jp-?FK5V-PtAnpTVUN_m275IHyidEoRXY%XB4Z?9n+U42Wc8xu&Xk8i>)Bei zn`_6()4C1TGidIm{42?M_AYoa-e!V_OZ411ei`!A8%e!1J15Lrdp|web6f08wFhxR zNSP2!X@srnT(}4-N*odZLB0wM zFQSq%v?Wg;GZB?DU`6!Mqqd)wgs%a%wN#}_!sE2=_TPuhBZ+CoBY9#@HR*;g4lirU z&V3(n_mAv0llyz#BE|GaiW~Q?@Oe*O^9vmTSOO_-Hb--NetCc8^n&-+bZ#LBwSigQvfiT!!;dB?yJ;lfD z>m9HCH>#=&)5cRN<3e}IEvkEe9uISmKK)-_I=v@deL`ncOSiLDc?we z%Xh;n;~%BAforfDf&LW#@-MABSt=~1O-tJ14fWEJGBT&o9e|9OqL@T4?y*YG#pPWV zQ!Wux0Us|_-CgPn=Y^e>l3k1kvS@H_TvjX;LzW4wJ)-kn(CXy_b9u0KDY8SSyP;S_;MiA%0rm+|*v9t4z} zgT@+y@u=wNGdy<3Alo1anH*wb0Gx&*f=wamz5`X^**nd4vbzz5>dfNoyGO~dk{b6d zw@#hfjX9O9+i)-4{Z2~NB7@StznMR!+&IE6YqDOe`v>0%Bo2Y5u7>U9b@lY~Ouwg} z9^+*Q2nt;$x3YQ)ypA^9v`Z`NYxy6T<-Xidd4-h}E7fTmgReR)X2J%`tI@Bn{x-8+ z--uT~9q?FI^3;A8R~Mh)RjkiB;peZ#XI$y(`D}Uo2xPt_Udyi?Hb_$?sxtcW5jA3+ zyV3$0?YGWg5B8GtrzgxOR<&V@doS)8KQf3lc)a9Mf&UsKV7FFJktMi%*AJe^@(hX$ zx^+fqe?-Bwf?oCLSfr6~4S6tShWhvTUmmq0U*>&8Z89V4hhF~maeKAHw;Rf?damuN z-nV_NI-6TD!8NVlXr44@4ZZw@qtHkPEX&QYf?$_FR^K-2aMoI{TpdL zK(`3aT3|e7Wuvhp;kK!NgvI+9hCvcHwQB2A);lbm4ng}q{hi|V>(6)KJA-sn@8=Db zw0j#S{g=4T2s%Z!mhtUXbf!|Z%~n8o!O2&yuH?AP(B{2$7~7vD`VXG=$nx!f+K(SM0?dj$ z<16s8U^RY&IQ!@90OynL%bf+c9g8S@Zrq4TJF+OzuQ&0! zy<>e=Wbcbu#-KROsm(9${SvlCgM3r1XcJ|~Bu)B1vLKP>=km1p$N6hp$<_0$_jr=( z+D4D-@(-66+BQzCN4)d8bUB*n-~|4ri)=?zl?#sb_tUos?>znSH@-?*Zv9TpyEYw@ zC7_*SdD44+E(m)F6q*qz%QHRMchv{kpitWb7iVG(3)FAWD{Bb~36Zd}Xb%@#0bzOr z-$(cr$9=GVO~M96seGx8Wn+1VDJH#c`FHbCR+UtjxHyu+MJZCpCx;H!Dz~wjxp=2h zbv0)iwWnqalI?1_Cq2DjY1x!#)pVL56nhejn`jx%FTgx@rp=W|iSGSoXFnU-pB<+! z4yq$p$6GR~639SzNHUs<$hr>^TS~HqpmL`tC<}iKdT{Am!d-vb-`_Q-;Avxfg1|+s z@=H)0V?CjOnImbP!|%}p{r%S;JbVcLQle>xP#%4rUS{+cmZXq{3&u{qW*YF%TC7e*GGLf+}td=xG`{<+rQ^= z8dq@AJ4>U7?vN25JRTuovn~l}hO?g^JEW0O$N!AX<1wrnS-c&(aezm`a#i~Wg~4+r%- ztg!6JxJ{ATd4yQl9W4_ycgZeZoXV^!RYMNPm}~Xna)Ku=1#<18(FK_luO?$zK zf4i}9ZlEv#VvxA>beX>kLLh=E{`vufaeGfsGUTW&WA$3gSC{#j&WB z_i{rTxIx0MvpakE3k*dMKiY5tpF@zIAP$`qZL5xs7C}`(Bkev@f4ZXOFU++~Flc)7F6MSXOj1P!qH!8}0?efE`tMGg zIN5ARG0?6&;E&^m6#3C2>x-D-0M?y{hlA@WLPvD{IkQD3$R9V}mfib~3{rCVUeze% z+Vb?%NqNugfk34l${BF@MJtng7e+*Tr@7HD9*UEH4WowF)V_Ne_l|f;+>x_BeOXB3 z_WVGC;aw;Q3OQo_JNLUu0AVA3pNcUWlgE^*5zpppFTbxAu@ts_sf-TZNoj$nDdZOP ze_T;(S%0~7s?xIJ7`d_)^*`C#y1GcHy5B@cvzrAq=poJCU)1%W&g1r|;`?8Zc9DCg zsXD)UeEaz{T|ewoX4|`bLxg-0q8*}J(_9ktoQF=tJeun*ItH89FA7d-K}*U28UbiR zu3eBj2nqsqR#pNQU!vG(eyK~Y;S_P)s(;6wOyI;j?$p`PZtuH!^Cr$og5i29O9Q&J z!)TWXa!bDTxr)`HooJT=>uccGdL@3jSg|JN6@GW$bIAh^&n2Gy_9DGtnzl6ON~+)a zyuHCu%=RI*>{+VspE3{VH=N3)Rywz66hDI|YGJ6X2_bHn z`|jN=U85lV2}>&OjAzSwC&ACa>xnr#?TLW-2Wo0#zsB8)iuegJ4iKA$cV9mF4=0l( zBdd)rNH$csQSstx%tlo&UyIff*gv)@b_U;}n*j zB#J!QgH14-*Rf?Wt-BBc2as)CZq(z75qT*!T)yoc9D>2NrIn>#Md1nP5xvTt+>8C3 zeyned&@+CRR7$AQ+B||YQ0%_9e1e4flJGxGv0TQha|1Gg%iC&!?(RLJReeSKmYi~jLDe0HlB!PX4!ZSCm^ zW96AuklNiX94ELBc3w6#2aP&$hDrMHwnKvm8;Gi2<`7aRFa}N#_goXSC2fAS_i_d- z`L(iC6sZ}3Z{JqEcivAp;_k+l@4;u4J3QbihtboMX|5J2iF0H`1lrr}s(p1R?Ox>M zo3PSd5IVce^gfAr#+_Sz_uAsHlMYsf>(qzen8kFPb&!^{xEl3+652YJ4VTzh z5e;f;qUdxa+jQtRN#DLbIzHmpYyC`I@{f~l!hOshBI6TOh-KMnvb0L1>in6)c8l!( zu;Nk2w=pvHB3Rs$m@x0U_Ea@DZb-i|SoGYPQ3llS$ClK*Y}!~bnrUPo@t=7;5fYC?bLAa^_y_m&h< z2??5IZ)NH<%Bb8uK3uzQchJeES$>#3N~9h;qeTXn#!hdN zl?4oMZ|`)S!br~TUewKD$8AJO^3V2Ug8h9Wn2^niy2tWYoAbwymiT-Kw)ckxc09$! z#WwQ;b@h3@R#Q%1F;FI}wzcPXB-I!lQL?+l|_=3ZngEg4RCyeZD@d+4x zy@G;H#k~B>g>YFQN$*G*9K=|uDoZKW$@sI)l;)VxV22kFG)3l%*GY3JU5R+YKk8^I zY&*x^xOMB@>F7<1nip&Uz<=#-$&!wRmA9%jDsFgP+500iCfZxv^?HIn98D|93ijK} zUJXjbq3h+wrceF+GTCEd%A@#lfnO0BnH!gYnjXSoNw}sVoO|~3)d|H^-?0mFWQ~UR zv9pIs;TRR)8>rvG;RGSjpa(jNLOPhl(aHJ>| z8bxE;MoxD4KY|GX{qK7P-@*%USfORdC_Itt3}A8JVz@oAD1|M3>G$tii$zV3W3<4= z?iO2`KdLBv5w~ozu&{89hRf~e`*XG_Aa6_{G4#TvOTPEll3pGj`1n-Z$mnoHLszP?5CK7?6{L~wQt9qa0qG9uP>}`^l#uRD>6Y&92I=muckTZ(-t*}U$2lr{ z-`9PuHP>9f`S;5-oO6n{e2^IDEBjEOA_xjb1i?Fl~$!&$ow? zR)pXNtJ0=_+GI1It9yd4p;2{ZnFNNAF298)3~*->^L>SR^5W)Z*A}N8d}&m+gwVH_ zfx}fnVRf%;?%=eVi!0(Hwu+0(1`2c#;vtwsxARxl*5T38Xv@zMTT0%5c@+@jy@{Gu zuKw&#RtNoSX`+O6+}^YQ7IB$AQo`Tt9{`3BXB^04h}1m`SWDcBMkwL3epdC)3A3$< z`9MCBZ{LM@hbQr_jxfU!{xGkNM)3Fpj5<&+l`o_e6n=sP&g8IFq37ucRNDLKAXut{{Ms&g|&oBp(YOZLPy4?-7HbgT`_YQTBFsWXr{wLaj zDXXmE^P1u=P9#K4n|(>Be+#3XgF4takGOpZGr-@t%&qd}e~x5OYE^O!KdaIL9h6<^ z0x&Iuoplyj_=TlXQjqaPvc79MR3}Yi-)W3_O&(dkFK_#itNlUCH~cH#F>jTnl3RSh zTUs9+v_Ko-1)E9OrV^5(A0Wp7fo6v)Lf6CuQmZgwTUm(qxkB4CoKEtvUy2;`8ft2| zuyY5`JS1k)1HBFq{AYW2*;Q}=d~`>(>LVizm<%8z4+gIQF?qpi%EE3nvvM3$4kpq_ z+vQGdMyOCBx$&(-(04*^dAR7HA;ElhiK)WQe#e=^RcvY5e`&Vl$_){A&QJTi*se|5 za;{1U_Cg^;i^@SD1#ZhA8%Gg1P>Jv5_DP`FW3!m$hh5s^O^qM7ZyrE%^u~{@zietx zel`7FgANGfUoLoWPfp=N2k8E-@40F6)z@9$fB?)-GyykDPeboK5EuPr->xz$lAJ1) z-Tj~*rSeQmi7Xzkrh|p#EaHbg#(%Lqr@vE|XwN5P65QX>4yUKinER^=3Jt9wxFa6! zmtj9-IgGABd_;VpThly~pKkS+&!%v^e)t{Q5Np^vQrCr8{Xz zSJ2_%anO@1pmV7*Fg71~oZ#iVHowukH$n6`{KkVy;D005CuB*0c>XF#LRFd|`Z}z> z90vBdjLF38RuD+vBXtKZ!EPvU#HT5H`{-3EXlSrKP6Gwcm&ATC7Em@+W<{|*$27(3 zqSO%kpJ!tCFj-rB z54KJ7Sox2Jn>ZK)V+)2@oW7!`-=&{u3a5z#;7=o!6iiQ-ZodS-{MiBWm#(rx0&*+Y znlbf2N&a)XlgT3ssx*rk$&DB3{h788%S!DE3w}x*|5<Fq}gED5v8_tXHme4swsEcww(#juj{^2R|(B1EVM z(x~L46L~}&JVaW^fGG-md$4KLJIm_|K!@*MUiaZ8L=Hg<0Q`W$*XSsU(R{89GU#cA zLu}~(Op&2K27^Dv>m{rm{kG?uVwb(JA#Uwp`w!5o5STKQD)zoITcM!=^vcEh)7=IkF#PbVP2@In4cZ&{?yBPa!sFYp6Kj>A#cGcs!% znF?7xJ#A}@Qrug|c$ju10mlO3Z7_^TouJ_U?Ti$k1n=tFVE5*G#190^68 z7vJ6xU(?7cDP)Xg3UNG*YK3rt_Fi!y`*Lommdg9}0VjN3=QHZZ4^~?E^)n>BKE8|n zrDprQ227y-8;^GX>9>J>)GzNjquH$lRaIZ??2uUrKSDx6SOb(6TMzU>aEj$46c%~( zD0-N7wm2{M!JAF-eou|UUdm$$oT zjE|UR<*KFdx1l`9MN(u^ObOFnh(1sXW-03ISnW*V`B&WKrm=Ii>NJZTf8uGEJ(}P5 zuQqax*@4rBIE>R~12rUN?jMi!!{F`eBBQ=nK=&60wk}xFphX0yKhVX0cb&J30$l6& zg@EOj!3| z1(hqY^=c_-fhXD-rrU#d*9Prp%*OgN3BX0N-HNg*vV$uaF>j|;ugPS%w=@QUk};5y z?DK?%;i5QA9Bawu`tE~!0iHDvUZQ_}_cv1Wjb+UMiJIm`+hu3gwNrkKAb!_#&02@J ziZdr|p_+8~DK)Fy`~iZAaX}rhu$XSMyrE|L;`i0?_i|C`_*@;z&`4oJW%6VzBL9N& z1F8+|KoRvK{SH}Mh2$T8EyFoFwimKp%6S#`=S)4_-BFMl1>UbjL@tBVR$EI;xWxO& z01E;b#J{4T5P^%Hmw>>D;NTk!8Gr|kMC8k}FucyZrZQ-Bdvl$uUK$41*xkLIZEld! zphaGQ!2<#vqHvRe-bp1p*Zd9oru#@JCBK=|ad;kuLIj)$lgE`4n3)A0K5ebiU6H}iG_)euVYvZ6XEZ=J<)`czyJ6lp^P5PH$3w} zT^BJor-lBXc0U?4a>UM0p8819A8M`GlGlpiLiQH<{2Gf`OQ~wN)CJYuLpSvA#MHt^ zXEcpxdeYi$=4K#%V)!FazR9TfN5K|~%WTACv7yN4apeapcAHzsJqQMuxxOF=>#`4{ zek)cr8y#JK`z^f~2E=wiDJh$3A=cc2ef0x28Kjwu4FPdgWWO%YWp6AqMi-}6WJ?B5 zGo&#8T zM@L6!v|uy*+3c(~AaeG>U+lugf#Ci^V8^|8n$t#*ZrU)(YKAZcr>7&e8kL>x4(m`l zt8g*ykhVF{>kY3Bz`}nr0~hplzIjt+#iqx20ORzR5^bsZiSI9_gD!d)itKrX%fw@ATYI@r^iBbmV+fd<%vuZ1nNiO%+$FQy^Ig zG12%*A)T0>E_}LEWsCZ?#gwBdNau6Li+L8_Q0Y$Sqer4K~Gg?%w- z&OxFjxI9YtttEs%3BVwWc1w@nXp}7tuMc^1{-~_1jODQT>i?{@*ucY+obL4fYnA!h z$CZSByZPR*1{v=i`25v{kkk2e<>3ns>pRsEPmEf9;8e3-EzF7gpyD#!#5`t@b@P{M zBLZCzwx$lDI6&f_+M(61`L+UcWc0_73Wjodx~&iS(Ga}tHJTR_Ij-TzjlaQu+}1JR z50;;Wtu4gF5Ew~NbTQ~(u)tAQt;l>g&BDeOVF4Msx=k+R(gZ$5HhBrrr9Q|dSrp{- z#Cl;5GO78If{F37@BT>uX!-scpGILa{ zG9YiNqUuC%v>Vq=O!UK2X6V|+^IwYYFnx!tu2onOish+1Wmh6OCmW&8O3sStIe(P3 zBwr=m_x8UpM-*XWa9sg#=VRQi-7lq^2UPsHp2&y3Wes(%IB=9yOk<#mL(Ntc1`s6# zVL|-RkI2Zjh9nAC;M*Nn5uG>yMGO2!K-$x9YLy}@v)dYid2Mo~^QJ@AR}5xD$+n@U z`v9PTBY}X-kTU-S(>CaQg7AukniF<60uhvn;$i@tCnb9bjpk`}9bnS{gXA^aDC~V* zb3yB7I9FF2%jq87kE83IlvHmB+h|~>i7ec+{&w#bV6^l`I>Rd}D!}im3-Gv2jeE^^7 zO%~o&pPU31RJ7&jXnRKoV*3;TT-{NOupXxgI+R4@o2H2gB(QyfTPT! zf$eoHC{988lP%4@yRm@>&FMo}7U)mv1^!=(;2TW;2l>AKPQ)=yBTdB|8;j5bBg4>u z6uOVIv$Muy8(1NPAqIlEOi9_!?0jIIE<=1BsoXJMeaf)d+LH$Mg;b-D=y(^&!&dXq zW2)9TVH9XYfWwmTp#Phg--)6X&id(k8ns*)5(Xb%b#4H zUj9g+Z-tod?p#TdIU!h|A}h1h5^wvSce__>_;Jbh#)A#_YI^z>`47`j)NtE3n8T4^ zKkx`fTtDO#+|RUT{%j6p=i~rdkAK8;#M*kT12V8+!ya57`bRrM84Rd5+f(IRQ`M1B z6NLdb8ipaz4nyaKM!@kIYzyAh5%sC+$ELAwiT^^tki^mWT&7cL>KJ+FcmY|*xNT|S?PdPs~KQEurG{Awz$LT>qvh1p2b2&(=ThxIwIGaeXp zfzt~SiwX)y)0Oj~YL&TK(P?+rp7m(1nm`|neS#oTfazDbQic7xt*)wmbB@Z^M76I5 zyA=Wi{Beo9%6>bb`m(=~^B27i5m3@W4=nui2VoF}x!u2&(fVPdp)?5`c!LNlDq?~B z2gf?nxbVKJdKn-szd~DCj|w&0rt0?h*s#zIGq1Iz@d8x9#DES6Zy;)Bk7wH24(^7!On(fgdAMB-l-pk-0Y80@XFSbA{ zBA%10`-&ET9MIhC_D)LyL=3T#QX3lcOU45-31P>TM(@B9OY>6A8{L*FN}`yezf?h7DQr8FFGReE%wuDgAm zni(eASGM8V-W3;xW<=Z$@zUR19%6z>+`cp8J6>wW>f(a!G2Nik4Ja0{24K@SHUfZK zf2u4GaM*-7-w7dE_G75kJbWsQ4E+=gd+6%w(QkQu(hQ#3+f&<6APX`mtb!*7p6HFfY$ zh?1_C&OCmzGw6wttkSK=PI+>k(O)>eaFeFd86)<)?1x>W9rG>%L*{{aIA-#(W12A1 z`Fx4os*#8UV|Az{kquVTgzR}9_};lQWGW{3UQs(KGl?4O`O$6O)dceeH8sv)wWEoJ zjSaaMHw$*~@_w%-<@GD|jF^tRUPx9cQ}zp)#B+Tsqc$LYcCt*?oA_T{;NB{T1%)j9 z^`ZLaJuRpt6=xeA-Q427au!ckvauw(t9y9!YYh|8_P^yvp1|~;)7s$X<^B1?k5-$) zI9W>?Ekzt@E*&hL*CyGUo(~;&cv1lrvbK&bnDrfx75aUeVjzctqOUYAt*!k9#xLMI z(1l-~>Hqfi>bRsNsL=tsW24Q{L8ZgHTU*<|AsOfW`>`laJ0zv-7wFbEBv9Yen*T&6 z?u%kfS%)eRhmN4JJ9l8WX7k?C(zoHPeclmS39?|6SGbTOqBzXr>3DOM;N5L}i!+q0 zPfSNJB@7ciPKPb0qA=8(8xO>Ty}wAo@Ui^^Ow}qe3A(EtLpeB48oIl$%wBvaJY1ot z9Ib~HH^?0S4Q8rAxPZSBmTymqNr?%8867Msuv0+>7*;5jn)5t8VYt>d!E6NE4NNle zJi24~ad7cKM^{)_0+Uf#e8FXQAb{$jt-Cwuz1JfgTy}WsZ?0$HNFaiH!1{m)JaXYU zLZC9CIXO$N$9sI%g~Kg5Uz6{_YaA6%Q#Mdb zLL;VTdQQ1b)hEdFK|ShJn7G`t*FRz?gh+mn$|$0tTc7lE!Ma-qTrB~9L3f99RETdC zGK>dP8QJLxlI#jFT725OdR7L4?P{KQep4h#l4m9Dp5jhSR<>7}0d7qh-HT=@;Z0_$ zr2L0w0FXz*>D)azdH2T)904E{QkzCY=@~y;De9p7MWv+3n>Bl*#c>DbgHYL}TP}v# zO~_*|RyZ!d1}I-jW@tN(0LgEq!wdH_ygiWh8#%pnrsYY-_x! zsMjP(fwlAil6ZbT9Uz7n$ViwPfXoFNrRt|bYUOG+Dk_XSNJv8PB_ejb1*T^Z#HvsS zps+#Hv$(MCT^siXECR{@m!2GP_x__lHj57d1tksla|jVHH5Ta=E9^g#bDSafB(9)vEfH`b`Ekp?K3Z?JgXl_A`uockg9=^D7s7F*-~= z{o)1#p7e>jnZUn)KY;s>gp+e?iz|iQ@a3mXJlpL_Lhu23M^C<8yrzCGAq)P9@LKn$ zTU%Ss7e`bBa&nYZG{u(Nct=Mpoh;*h2~Q2%(C8uU^5JLDy2{E3?*;_#o7D*g0nhJ? z8zRK}no=jp_%%NgAt6s~jmcQq6TqY_pY6}opLxz8su+0UyZocMbEXBIPk%9mr zcAQCjJ0Y>OqxRN%Of{#g`q)zpnF+3fx1uc-6;-g1APjGDK9TR%mnRmIl9Hl*?ehZm zEOA_pt!)|acs&r^bhKKbUybXoc2cLc*l?bHH}ooZ5%Q;cDKZufu-}e1N74iy(ZDVi zINA&*OR^BY2C#WUsRpsobP(c#P(Oh$cd|Vf0zW-`N($+chNt;jET+Scaa2@bGU9x4 zgbR8WG#lWH)rHSYMp*bEcwb?_ssMuN7zPGNNBUM)GB7Fv@AiZEr+??>h+)tR)TOnd zwxZ!ngy)<(oBHfB;a;NqrNa_3D=w?&T*4ks=&MCf0oL#kRkoqKSy)N3f7`}Ud$s*P z4EFN@B1*yZjoN4M;n<#Uym`J;r@VA_{lU}Cv4`Rf*?)^%pWs%b;Mqcg<5I;HoMzC* zSA$k7;-O8a&K15lRsXewo|xm`qE}_5v+i4{7G<73h1dfboVEcF7eZ(^l#85@K_jL?KQTL+>3)#*IHKn1h#KdWQawe z5&C+kK}G4p3(!-&NU`(>?3b-c0=|epafi8Vpybo~t?`Aq&d^z<^?+C-q1LC4(zcMklm(Dd7aX=*I5Dr{mo zoWHKEJvBI~w{ExxK7QDIZ5|m3mx?LJir1)h!G?xorJ+d#Aqy;t{Twf}A@!DE z2p&#U0+z=BJ0Kw;xs$0i^@9ka#g6vgK@i-^b~R>`>dthX6ilQztmj`koSY!U;FIl1 zCbtu5ywVNz+*+uhojfpdC@4A-%~CW=N>LoXKrtY3d$Z^ta3kAIdL>cA!;8yo$f6-# z`~Ec+oZ0J~jPY_)TCff3oy2m!zXk&>#jrR$!+_0Np#(|!=Wr+KW zs@kWI%h^f*yugR^yeb{%bjt_H9DTaR9~D1t_4ms{OgPHlahpXb=0k4SXTo@^A(G&4 z;d_+WHd>Ja+ljAVZp{W2enzn-asoZv@L#G}T3K;%DH#`CI8}~BU&a;vkN7ar;Y}mI zmh&~GtYhC#G&h#b|J>qds+$9SRX~eQuaP!Tx8L&m?y;Ul05#^Z=zHYl2ML8HT126l zOF!0sQrx%xMA#KuX$Q-}>Y-MVf+WD=q1u|LjbSxg87xR>(xGEGErwVOeZ9diXq{^G)a>UvihwBKMTM$ z8QISo7oXxSEq&eXbq3E+;58AE&~tqGtY2M`^oYeqAOn3((I*}rVRbs2zpGJZxv=${ zIjY?8CF43X$nGMPVJU_)hDW%y5x<%_9NyqJ{A-bbO)h@j1PGH)5_$RvK7d09!Nma$qRw z5eN(E>c< z{C}`r1oaE)|FCe-0fLva3*FK2WM@L)Z)ndE5tpxuj3wBm8Km&olVRx@6fqcIb;-@? zx1c(F2D|R!`f~73ePTAN*~Sf}9OOQ1!MCCaeZG? zZA&yX-ma5G$b0w+aEGvj$V&w|0)x=77j1bceBbzL__d|kpaL--D0=#&JMYG5;Z*Fu z1dip>Xdv?ch>THis*z4n9_Nrrc5pAg?WplUDG=CQEHWg}`KQOgln;ou<%<26es>aj zqRKbF9FAjCQr>X0JpXt#hW`0ZSXT4UULQ+-ftFs*6a15YAVKIoI%26tamX^sl; zdP$YC*KYL>CUaES|IW<(20CG4Zm!_%&3)vq+U1p%Kag(zoHnX&Z^4obZwsCn#BYOO zhr(}T+=ghEK=fvGJ7egLD$sZ6zci zkkbF6+}PmDT*uEVro!ZKZ>070b=WZqpEQDj6NOAH?9Im8Eczs7WHiB7l&NptKHuOK z#SU65c&<-ji5BDZ)lS+;T4Lg7joTZTKVbC=XbE`j?OBt|)e2~7)kZm9{cAx1Y!(7R z4o>+@^-^j=ZV&dt@bGYyCk~&{2)SfSO_ij9dKs!~@$kq|zk6)}vZTaie2D;xrZ+U> z^X2}d50;j#t9?cGc6c;h7QglrUa4fhH!ow8(f@SznnC1s7!8&MZ7>W|Kj`WTyOUaE zXL~L{pO>2Un$fj4RxdDE>=^~jH6->%%z}t`@dydEU>X5!>k`;y5$D!bMOr@JjjZZ~ zurK$`DlW?>Qr1m2va=%(fR<3|72bv|G>LpL7zqWV(E-S*h^BR_eAn+B3-S0WW~qL+ zKzU^IcD%m*(^#*|K&H)4l82YU!~Nv&Z*E@jWFMt|P(N1YZF2YyNf4pR4G&IL244 zHGHz#_Xy$;c|m6B8!uX{u(!p@-cX0|Ei9$ruR=@k#;SBZr33eUI=nyAdXwP!8_tyb zdElailCln?u}>SL2F-q<07D6Zz6BEpyEQtC*WV3S-c;vS0wx)EGBYV7C#26e*#!;) zDMRO)X1XY%n8&}O)M+s0DFjPzYmjtGfb~u{H>y7l+C|UI+qtI5zJc8MX|M7=D<;QY zf_NVH)-Dwcm>xV8`ZLavLoBl!ano~4fqu^Pt;bG_F<;BeY|LtJzTrOXnmZj+e?7)$ z+XLu2-1Gasw;ph>GNuZ;MTpSS(K%dPe0mMe*M=E)<1G9#C{#|91YkY4rNiVk5fPu~ z@i$N4ZLR#CIkG%2aT>4t~kG^t5^ zTjw?A0$+0+h=-FUWvSqO2_j_n;d6IUD6k~V*Q#zEOzT>kuB3r-F_y>XPxpB|ht0iD zpIGr&G7m*8V@O4=z?Ej{&&4qZt5xq+3P>Cae(`41-}^mqL!2VdDv&*v-xaXjB?gWq z9=_(8II#3DE*@T|^_M`#6su|TpEQYf0DTqJgN}IsNrIDQ7VsmXaXaMBPZUd_67O`j zJ+=A|#r12Nkb+?!-Q#L@>V}_(5@3bsXm9`9(t_K@=PoKHEi5M&3Mwnkf5q2usBEAY zfzX)3!ot7(?U|Ct!id$qB1YIU0&)Y$lGyzGM5I^&ncB5nVBZGg!8ZhkqClJXm(qxd z#kTxPELfKuU(LtZ))+eT;+1YSwg$)e1zu|EZGQfI2O=@NwF;ouHWCPfkvL{FtNdXq`D=*>A4K#tZr>#Llz*r%(RK)h!Eo#Zi;x7&H`@C7Q$bG;gh$85 zBz9l|w!j4RKX(itaEYO;^wG0UCh6!NcA$*uLJOd>=ZG-V}FGZrvqX zJe{v}Ai*;ghX_9}$hnhG5q<(28KCnm!KA@{douhwr!6cr;;OuNv)tNkS8roDt4Zu_ zJqZy9_;#RRYy9H%$l2o-S!VaTn4K6dMT{SB`u`1XkLxLk|NDn|hk=EOcD<1wo;=W* zk8JEe!m?#W)pvt~CGQ7FTJ%K+9dn3eT7MLXU_j1Yafq&64_4yO3>USQK84ilGs;XeRu z0$dTY0I8P97fU^updJ5c5Mj{_^eyx-<*@Mp(bsy=CbattPNVY3J86YZ_Y zpj9P#)}=zLTKEI}yJc?(Gz~p(QI2x(^o;dd!TBRG{lMpIe;28UTjAQjgKD!k5^3_i zP6g=}Qx4`cRe7o=auA4dB_03zq)B7vT4?qKJf`D|n-9*+7p6m{cq;8e0nvtz;gVng z`iSa7Wo_;F;21WN-o8bLAGA$lc=u*-43jk;J?5Xj@ zeD+Kq(pj3rY3elVwz{Cdh7~>Y)mR_lhT2=>+M9KShT6AoXF)~!Z9oBZhx)P&Hk^uuN-0fQo=#L>t+5af@#dm`J1t>$7mY3IOawvdDnPN$(e|3EgKn8Qw`tMbrfQg$L(N_Ftpc%1R&63u+0B05XVbafyTGA6d$f) z8g;g!Rk95Qom5{G6$#-G{8m!~i(XRti95Rn;2S)yIKYV5ShPqnUgOLR!>u(^YKom6CX(VH~ywQ}E2{@b{lj<)v zI)Jz)8O!1i?h_0mTd#H%nSdkG=c~_bH+g)^dt1$#uzCq+MfIlJgf& z@7G3h0NAVk?HdnxFatBQ!c#QZalpfMvk`NqU@|@a;J#O#4e^;m76(*-u0L$FqYP#)ZiE;nwd z{CudGo7p#AIfoPoQ&wE2RC?FbEh?LR+Hi5TIyYQIE)BdLAsMDKqDMou$QB7NI+}pb z-Vauc7Z>fY%5SdMrwWLP;^V=$0S|*9^wMk7X(%IR!yo>A+lTXsjZX?;=I{o3Nl)L` zAm9scC_Xwmx|+u*ZB0YZC^G7dP0UDPgIGm&>DQR}_gyu9P01ylVOP3fG@;H)Kj9vA061lFd@#3(1fI_BJA zhRLPD3H%rgzyl;Dy$>A(cxKVRfBz0M{kSJO30CI^LO2ivb-p!S>BZ+x0P+_ZC+F`W zqh8oDO=x`l_{+O@Kqvl>!;=X9O<0)gQ%ngJo5ywfc7Kj$9JGU>QBkT}Zm=|`-xibv zwT=DuXmDcUOQ<~o+HaV(5Rz|cshF?nZC1Z$U+3cBd%lx5QEAVSpgl*yzE7xf<-qLd zNA`$KisCJOdH3p(kzCvG*9HZ4P>@4Hlfa&cY6#&@M}_4XkO0~2DW<#i?|w`3BTtkf z;@La>pfWH`m4bVAe2v|p%$a!q*G!iP(@ZH9cw=-M3QuTXj7FfeIsS-LaVuUszwR>E z;_&108Tk*j=I>=D<*bk};%UvDEGK1V_Gi;-kW6FAeu-6hP496XJ$vo zG_L@`aK`W%359$hM@5BPhNyS34QKCkE~Kt*CxHnLV=qMiFoM$t96kYYGJYXOpam;t z8~PQQtUK>|Vly4*-QIC_=A5pxexSlWMpF72cpGq;c$YeY+`;M8A4n#VzObV`U97LG z>*MW>OUQMU1d9XCdL&5XB*d_yRyaBL;2?gUJX{X~d3)`(oqNDM;%tH`pV2;N7 zxDynRef4O4QB>LC`HhE%le6<+nwbincE#tkG$c}y?~O$vr2L_9D8C{C zsX+~f@)AV3HrS?Kv(y(blRyy;dLagb<99D#?p-;TnNLUx3zI`0mi_jiH~dHa)iR)5 zj({U`bujH^qjt^T=H_p7TGe5{qS|4GQ?XS3s0{-J62$-N?2W<6Ob`f(Mw?b6^Qx^J3VI2G1Z0*3wfm6X3Fa!iTFLSanEoT;aK2bCQ!A ze`P5knDoGFOVqASwu5jcl!k@|M7}q`fK7i_ffZ0L|LSya4($H_@oj&By*p^A;pR%{ z?v~6}%;&cdK(I@NtoN{myJrrEUJXD~RsLU&EKsoAFUt=hZ(BH+NDAPYqGDnVtL+&4 zM83fFQB3D@gPH)At;nTdtqcbd6XNcRCMYCg$MAP*J7_#*5X-=e!EHAdg=%ib=b4EZPOpVqq)vtkgVWI)aZ;c%lDg(%<6?>pv;Rm-V4CxWbP3Gc3>{f&aXvTsA-wEk6JN-_vfwreQi&gL7 zq6o_2kD12z1c9&0si{5&r=UHTG%>~8ae7C;c5wa~NPRdUcxb-(P znXI}bRwle9*Nldgp>%Z{X$R@h#}PV*OT9uTxi5r{O-EFV^pN27M+%8kDI)G1E44m_ zzACt!o}LSCh@tB&M>q&`HfMVnOG|b13!p)KJN&(3cDum zuU;*5J#8Al6>t4c_^tld8Pv(Z;$jpa@~^36g9Wt!@kJsEpO!R=va&eUQd4}upk%-@ zMB2$IBw!)+~Pts&PuH zIxIP6s9a-w`~<^Fx0|yFq^3!`l`Sc39@VJBlvyd*Dq1zRXy!>GQ z;Gm#JH9>UrC)G+*Yyk1lmlnVlK(x+{=B@j)IU}rXud@OkarkxKD$$(Q*Q`U zy|XwTwWtId(BNTYUF!(UJwoMt)dp~LcJyBC1P}H1f9RPkJ=(tHMTPC%Kv02-!FM@r zWS(NOIk@?*6Fjv4fmkuog#RB$4dA+2b91>~Qqar%t-Qm;G&oUW!i<2=PW(x8a&|d5 zPUv*c+iYK~+=8g;gpJq60pz!p<2@lk| zh2es_hC0?|t;fw?MCp*r&)@NyuM^bXzrS0g$`4O2gVpX{b$kodaQ_|6bOPlQB_zwt zRM*_J!^1qsn^Jr)}N2FTW<*V&5llIeMog6+TsNX}3M8 zls%j)F()Tc;c;^3sa5QoBbTm@4$`onDFr{D#gv=h{jk!F>*V5u^>{lqLqSd^#N#@4 zeI`RjcY>QT^Ubd33W;6$qaxenH_NP89G-mWLP9Nihli)9O+6#wMS-x0i^ zc7LzV`fN`*&i~s`H-!zzsW4Jm{qE#{um1Sk5UX+2+=tCL!+Kv4MyYQx?3VNM^Y0G7 zyRUKEGTu4$x}GR^K`cXLNXJ!?egBP447tr1z)YnqnjQ?qNh&d(jfJ~hcQoIr)cckd zJ_77T3x>?hmUU*M0CPzF82_Qr`HKBbCiK z=-GBhYbIct&Qz6)gvQkNc!Q9L=keKfIY~G)s1nM`Xb8Kg`urPK*5DsMWcdYjfHOgY z8XP1lBS8~JVQFqI3E~ALUn5KlHj68A)n$x)A`+t$ke&25)r0rqq|{&}o3s8h-UG#m zjz@Q-%Kh6kvLG#8q1X~O7QFem*?OO4$`&2{s+jZ2mA(eh=?A);NaDh?cGW^ZP>qpXx0VJCF`n;a zLjhxt-SPn$f~N~Wp*I?()T3=tjQVGLucCqIl$@RJlM{%-Hd75*5DZLAE7O(5k}uxE z<#RI7Kl}?AWeV^$pX|)E1z^)uIG)lSuJlo?EQ)~N%g4tD;YSDxYVYlAoSDJ(7yMd& zYGXN9sUf+q4$&PzQaCv2!M}%QmFS;#eEacK5`1uYQ0wgUJ~JLEdOCI=4fE!J5lYka zZGv`DDZS~6BG3-KpiV<*#b8_jAD*Ab-p<)`TfoP@U^{a4ZwH*~bG!`9qHnNi!Dus> zO7dzFyejaRV!L}yvY4LpVp1~mdh^nVyn2}cIhXwf3Cs}hvnnR~7`6?Y`*uGTu|$Q0 z(w}1;BZGX(N~+MgsZ8~$_c*#NO?#-U+1*V#4WuSAD z)oeur%=f`u4nWPXninv7(6z7-cV*2j!y^I}+i(TM2|x*_V;8l=m$6K6?{Rhfb$yK^k;yYf`nIe506W~{Kd@)~+u z2o426ia+3DrDv+v);BPo6ScxV9-^V4kd9B)uDyVdA8ci!X&ayX+>XCNkE*upnk(o< z__w#0=-JPQn%tX0c`iLpFp^aJZDRZ@=d-TY^V_Ph7_N&E29wbUuy1~VJv)DlR~c8= z&PQvnNLRPt6oqWweI%!-_yI6+WC1VKRn?iCJ3m4d6bQp}${fhDoFLp7&C$tjK$Cqh z;#;;o3A&w1w=q3B`&I~aI(TYV*XL1hK{rfnOZ;vA`z_#|9v0e;P*bbW?J&dh*2 z^q#~I2neVNbQ1wca}xSgx#MENP%-$b-?XaHFo=lcIG_{E#eF+V`0UvtW&z57&b`2bcRHc1>E9;@2Tya(y=@u+0RdQi z@KKnn1CaA~DAwn?W{ zL_ww5t>0LU)f@bwi;>hlx0{|1VvgaU-b#%39uNyZUF zOMpK2(hpS@1vsV%RaC)k6-=bI?|)&FwCRsWdfXO$JM-px>mVp|ZPf{d9GW zypbKE<@Wi&WsZFw%{;odnES3~jZ-MZru*I&sMSWpe3QxGm=UJK88yoLTu1Li*)Ej8 zwXX7x7RI{8_YAiQjYnH|e3OP@%3}U|EFmOx0Z4xOBSoa}Y6QL54#YEf+N_&bjWPE5 z?m!GBv}TC7KG1(4qvQ*0gAWy}&?A-DJf4 zkpl&D>k335lezpi0!Ef8{ssfa$!qLMwD?9+yR+^b&Ib=_U5*X6t3C-0yTYDQAaGRR z)0wVt4&-*U1X-@L8Jn-U#(se5=-+xo&}oP_t;B)kXXa0J_i#o--)zPo#O8?p%P~eheMY9-9>@rQdgk-k1=Uho z%__`S40`kGV`y$}Zs4);C*mcLl~?|EQECQ8ORoSI&Q>~3KkemcgOmMw@+F6t+MDE| zF+aW249rSOI`=tVe>)8g9cHxfzU(H<%r?8JAcgu`I`!N>JJP34d*IX^#`Xff(u->Y z3b3-D@N{4R#(NOgE_jJX2*$<5t=~iNP$KXMApAn~Cmlc(nVkAx67eE8w`Y<=y963G z*wQ$inGm$?#jSrqkPiw1>DEj!!ZO6*RQSyOVq8ym|8R2xIv4mBds+g=3QJ2{1_u7? zv5n?&+xr2x9W0EuEi_F*+Lv+3us4c|jV<1nuzXJO1v6zn{O9m`p{$x=;k28oy|}K4Qw26NB$kw(Z^jn?iI&7AjYW+?I)Ey_3qz+aip-2!w@D&(g3pp+~2=r zd0oF#DcYQjcW+hBb3jA2dScjk7s^ zhewj?A}Bf9Z}*!GV7o1NeklHID@tU{a)yH#{T+B2SWE^}RjVPV&pfvpI^^!S>Qiyn z!QNQD;9|SCrekKU)se4YMnkQfLPKS>L5&;YfCm4$LMP z2ia9MPh9;>NEOH>qY$D~CHjl@OgSiGUW1Y-n`KL;?Nh(h8Qx{Al-Zt%MD(^ht_P-> zJIl|eA9MWmZI65z4j8r<>>fPDhCOsEV(!-$tlN{NX|{R7u=^ows7?Yh7d(lnIt7Gm zZX9paOA_m2@ZsWtJh}?iRCI{l;{u$-OK$EMP{AeQ^do!Y#5zLtxBmSLsKfcbJ6|$p zipOf%-4gho3~$cHCc)&RsrZz`Hf)qI38zPZ^*nHXi0I6jmV%EjX}I1jA)=@= z=#DA^54U`gUQ5Awa5bm(-=)}-Q6YKEz&97NOyOiXYKQ6|8Rd7;#zaQ@r*IC;MDoM{}u<_@Sf${NX zufM{33RmE0UI$!AooC1kNmTeZgk9Ql&;2 zKEmr6^=g=#29Y2uR9g$}xFRCwbew6x!_gAU^^1)4hde0^gh>1P4dGUaO2`uqd>yNe zVdE}kYT5_Ra3*dGA_OA}90t%eW>BiCj`Y^#48d5)kG0dkaMB_xn*QN@3e7&)qy4rq z4H6oB4NieO6%}BGk9&Yd@cDS-J)*_2`s-I=umt`|%!gr}L6L}%(c~4?bwH34J!;s-L6Z6o72e!4R_h!SozG&tmkzYW)Wz4WL81-g(oplDINeEA=o zV=ii|OYEjN%*?mJ!wQs@p8`-{-5`tv3gv5X#6A}BxOe~lGmc>xU@M)8pg(B{fNd;E zkg7O{!QI;41=j#g)1*C3W(X~u(_TjWasr~+Y7l%T!~K^Neo-s0;;NynQ%P2`}z!4 z1D}Jt6OY>oX$$%7rI0KV9P%{1W*7e+m+EC^CFkY@s1ow#5^~a>SXMy7$H0uMrFKt( z&;7HZAL^X*4$6x?hS;h26+!Ipr(o@CN2stMwulTi#L8i6(@8z;GDGN`?#se{O zp$7A=%q+vAxt7xC<|jxQWMlan-Cu965h^6eS%7d2hLfokT!_ITTw#9rr?~mdm=q1$di+^+n%G_f>PlrF% z>iL8WehZyN&j9dW+H9^cz?A6n)CGri{O-lE&4d3?NjSnKg6=VM{5l>wyiEgdddHNW zImXTPgG)=H4+qZS4s_k}xgB{oQ#cMZ zLW&$(ilxAJdtzS!HodMUz|C$9Bm&3+g!&TQRYo1b_K@&+;nz)0FdF+I_j2K^SXb=A z1iEy=#RByxwZr>>r3cg>AiJIs30h%+h7RxI-=c4ifWH0-zFycTuCA{TMl7&+;`2FT z1Q5n70C2$x2}$PSJS;R;{KzXPU$fK`ZYs>~Hv}KcS<>FcJtg8@kyaI=Xb&V2p~liS z8oc7=|GI@P{daEl#waT&t>@52Kn(iW$4Y&Fl^(uVPZD#}ZD#zkK zB>{4Kfd~8h&8c~;!Xay3%SqNHkN;58g%>?MqkzlkEiFn}!$6T*u?}}zTN~um@qmPg zusK7+9G2A+Wf_;NBO449q->g{60>b_KxF824rbsJjAq(zPb%eojDQ)6Tuvkn_J=bZ zf-SkC<_QpvV50$Ui!g+F__wxSadNib4jY3@dfjN`uHOfSXKY5K3A}cxpuzAt?%jdY z>*%PypHXH;1{sx>b)VB!*6E!xllS(I;yx67glb>e+edkihaR93mc5=!erh_F&rnRS z2`(`g`(1;*;1^=3Ct8EQMCIR;(x>kOh4? zX)sL5&;&aW!{l;zSZu6Rt8Wedvk^TgVSXFO5ei97Ol<6KU>Zo(Yr-fAM9KYq?$+)o z{iygW@z+hbgF~$Nd{swo>}+gnGqs!z4TdN|&$+EpfU8Xa2FndQNEHBu^Bx?KbtY=q z#oH)WTkmsmalsvnl1e6Aopz^iVcQVHZ@9sE;ro!ZeUie^5&6$b@aabyN0FhSVCr znLu~l&H|4cZYNF7_~axMSfu?nrNDXwa?U+JV)6`S*pGjEQgPu&cul&unwuk6s2%K(p=TxG>6E;8W)i})tg z6YVWR_JV(Pj@BH)mjFJUrOr~hj}A5lJ!F>FHr7=b_$nLIU}{3yh>TKDK8YKb7Z;zv zlvIsDB7B*uh2M_!Te}px>aZZV$)Lb4N)}S&G(-u*g+^z2srJ?hkD}nXB?H5ViJd4o z1pkbz;JE()mAJ^35NeE4~jbreC=mcvlZ!o#98x?C2a48B+3&uKsDzhZe6$Zp}>##-*hd z7M-&_vfRPBDyPKmsaots`X`NCK{r%z0|NbRqSx(XnRw% z_hJP#zAmMw7;%kICL@)Qi7N8`qhr|cMKV>qw`6P%4690c9|8c117)@>4i?Q96K$E~ zAavbN77r*X=P?=07lZR4tbgi`S5ZuoV0nA$M$)~(`C|UkRbNj}VKcA8L=sH@;LB|g z$4|#5!E1+%xs+Wh7#-wu6qd`_y(-fuF4 z&qQshZd5s93X)yJg<94#bC#=(%+A9`I1%A%0}ar0vCSw?gGdy^%@FZtgVorjhW#nZ zyR(QUThOBr`D-14wpSKcTp)8I{LjF}qSvYjhZHyhYGdv|7)h_;8zSG#s1D*C7=bK9 ztUvE*#}JN^n>A02&t zZTN((+!4ws5Nb|HJ_w1cKA0kt3X2#l`6$NTQc#x?5?pAyVbKfE4QS1HjC-4KH0PmTT zs?G;StsuFoN40l{)<4}&ZFHHKY|ir;(C{PoFKHH$0Qu$Le3%?ggi^6pqPJL7gBSppw{E1R%*Zw?m+}3?$3ViGj?Gic^~lDhvz=N^ZDw`3Pz6KuL}82(Bd5Q z28Q1eO|u1HQw2hph!?cAD#$kg$)zcX{6#}Te{ZL-kYsgF#oQUrbD_M*0yza*4SG2> zHNqkB0B;}X_gm`fZ(ok}IUQ0S5likf>ltPi8;tak(P#q*2^_@QW@i3kc^}kI<|IrM zh$@+gGb|h3K*g7kvStCMNhTyh>w><>CeIODBntlVc5;ypm>nD~==o=?HeRZO!w}2a z?wZXDa|YZ|W2o}rD&LHmf8_`PB~dc&3t4p$Q&YTO3Hu96IfrjDu)zMuYSC%7!B!IN zGy*%17Wvl!Sres#@Nbc$rwTEU1pachm*W5UG3tygGjo~ojOSn7wj%pplSsw{p=xUa zkKG!G_C;2mT(^0l{{_=miLs(kbw`03KdiI5`wO8%Kf5A^NU5m2&d#{Nge1Mqc_G3E zKI<=WZ~=P*%MnDLDJsy=Tm$|59$U`UrP!N`Y{W(HtsI;3e6&jz^ZRbX-1sD?A7ZE+ z92KAa8$+421~EE2F>%O5zw_NL6`fgj(EHvJD9{KS3ory&TiI^)LB!r^?_aHyH3;M| zgY$~Yl8BiB4R0Xx-Q!$HsI&|r3h}`4{0`(KDKmGttw7uywugskgt06JJx00j*^@uM zzYk-%pzq)Bf$@TklQYY?JQrUn#~(sF{|UdiyV{?YlOtq%k)7~h{sq^*zr~dj5n7uKc5<{2jeMAWP-yDYKt#ml_Z0K%x zg|kzsR9zC3av*u}(nEA!JS2wun`{da>D>>5^$?`)30c^N;u*_C{$XDOt(9)bj2$Mv5 zdXEoSa5NwVs2{Y4a&aF+GgDj~=i^*%n2HhM;_CD9okTg;!{lzN8ynfn!pI1xPBufq zcwT`Gsyt1{c5vLN?$p?u2Ze@`B@!oQoWvn$Zt^5VL^W17Utaa~rR6|o0U9l+=(nJF z+j6d0D3=`MNkwuRyrq;0pJfj(*V`OJKhvN2+K znBHRAXX&b*h=n5e_6+f64KLm*zLE65Z1VD&Re$*KrNGVOi3#rPoV>-|)ga?E@jGz$ zg<@fR`1`*3<(U?1a#&9O0U!9@{)CL)60$*$ia4jKspe15gQJNTPLTWm`!9ac?vE)f=fy>3=>Xum12p-!ek+-x67KNOD1);NdH_@! zbSS_y!N`#ql|==YaK>ZenZ$=Bs7x;l4X{uzxR1jSb}PS^2Y*$h#rCgA{RB&irsP5)Z!Am%?}2B(SbEJv=AcK zUFlhd->UuhU?}WK;H-VdYe9q<_}LMyLYDwk6vC4KR@F8B<8dr*;^hH%Y_-ToR)?KB z1^!`dDw%)(np@~kYrH~zKl+&8pbCh4+URZ4Yc@K1r>0_|_@bm|WGcw0MOj?84Yk!Q zoi1^L@T0<7PK8271M63NbMsva3JReN?IO(c_MpX6)Q z27-#7oKeu*8RkZDlK=)wX7lmj$;|D~#I;vhyWCBNkG~1TIpJc;=Z>vIf{o4W)Az&Z zWfl8vQ1BJ2ElOyP_xxkDjtO z$mKaVU(!HL=*97r?k73eGohDg^gqD50@YUe=!h1}b{z|jO^B5>YgOF&lyQJTwZ@h_ z?}PcOcfUN3!;ZSGXihi`ni0sX?>~b6=EoQptHSgo5js6Eo?qY5*QXG0mw7EB5@0+O zxv=T-;8qdI=@bUAuw}M`737iARh68(h>%bs0Qx5k7vH2JX|R1t4-$LLuh^6e%T#?ZKGI@;oez&;Nq>FGw(miCcc)^S}IE zB3*N%(IM4vEx0sMFTJI~je_Ll1ek?)#~bVb;_HX5qmHhwRLIHzFY5^;$NxN9eDvs1 zGh7&;MpWn1r=}@R%kkafBxxa`w=pc=JsxL~hP?Ugkn}yMp9UoIc_yutEM>l3UT_+7 z6fkhxUx|i90VL@JV((T0d%`(~fdK&-fyJ0`7~-+pz(@*yt)N2&5rsv-9;?`Gb^H_h z0r-A{Z&D>$$lxW*fC)a|6DNgS!};^W)iM)R(l5g$`qDi18%O2#OR69%8);8GU6tew zQNF5{>q!!)6?-kPy_u<)kxGzdsUH@8*pF8QU+vtVZNCOb%lNLvV5(ty3W--#R0!`l z6hMQ!n+E(bFBush2@1MHfI}M$un5E|>&&J^W(dCdDg z2v+93I&W`Bm^qphZ>Es?|3!EnP_@n~vp-2RK3X0r<@IiLTH8?0`c^$6tK9lV#(TLb z(->l}z9l6nvCCZ{7$jb=sZ-w@QaM-m(>x{6!s_4EGT8hsG+pfy1ykC^-CeJ^JUU>E zX!lJ!iJ=aHfevy#q64kcJ>!l9*SX??u7x1-^$?GTV!{Sy=47R-1;%wqq=GEe!cyo0 z^Tyz~gx0NZ44`GaHwicb=P5)FsTJICP(&5Cx6Ke73P|#^=x-=x$}ng|xGj33(W{qv z%H0RYZo$gv)Kzi+Z<^uws8m`Aw0K2b z)q{cosd?yPVz;)j`8$}~{!1edyg!dmPJTFEafJis6Ptjb3y``wmO8)N(MjIO%C=8V zdIC5vI6mILa918dK?Wwl-PJyM5aSySiu3{MY2Y}coK5^C+!e%-j* z=9;boiF;~lYCzd0hrK=U!*ifa zazpP5B3lJ@V$DC0RqBi|BO@cLj(26xx^pLE4;OoK!wTyBc@ zb8%|w^wZykRs?cdw>@xiW5w4^3;{y)0k%zy>O@ul^hq45{T(!h=P-5F?T*ZV6e5e& zpkD5W0u-F^7Bv8ufuOi9XvN?wMSF*@0r$1IGYSw(n98+4F9vAPc%!8yW*R??I$%Qw z^c*SRVEst4x7AcWLUvtRXBrt~%ln~?UslY=?*k?SEZ$+c<%Au=*ZNn;7^I!uG}h^o zU_z<3M&+z5hFQ;7ShDUW=j2EV8X5w;4k$vzVDbV~onltt3j>1y1SfpF$oM5y76#7J zkEk(b`(1%Q@+3*W8>Y&Pn>)i?)~Bn@=ZoR4f=QC(oteoql1B*W-W=7^PhlS+sifO( z|F=k6V_~uJmE8uI?3}wM%WLm&Ij+5eCU`L|t)#Suc3(4#{y4!T7(o?7d#`vPL90j8 zYj9kssEnk7u&OT*1AbTQe_uHhcs{0NWcb9XF=c|o!ULt1|InSoiR@jl)Qz2d5lh;& z;BOCI-~wj~I+7ip6r6w@s898qKBLM_4IWX0I>t32^CWFOICz0o;QysKOKhe_$@) z?935TIV}lOl~!9rgmb#>e#0risx+Ib!G$Cew9@lURINUK(;|w!#p5s?rW?v@#P;mx(M-XYKo}4B#Qt_JvCT;>GOa{T?Y`lm6d2oAN zTsZ%Sd}+P+?-6`+{z*wB@b!Y$JMD#PFer*v)*VH4GDHPW3Zyo5W-gB5Re=UU%qyvE zN;-11Z~qManQ10s*0ow`=93s5)0C?z6I=q$X2$5;-`)52@kxPAfC&0~TwNZsNr4ig zH!+An>jKp)_>J~Xh2PqT+?(3Ajd2@%>jM;`6U`P_ikVq{{Qxy@VMH1V-0``b_tj=h47)!e~<}L5lGSMy1L>emo9xy*PTrWXYt&-hFt~iG8P}i&`IL?ikCBV{rbK zTx&t#v(B!9umv(1rr+Zr<%0JlK-Xk5o85Qk;)OMXTA@U2xw98HEqPBvxdnU)RI)p* zJv~6#LsJ3YjR83737g zj+h22YJ(|j0zcuOwt!2N!}+^!-)*v5>$$6IxR7Bygn^Ci=7*vi5D*EGpTxs4wE%n` zAsV%(7`V8t;34KFaZLFvazqHTLU2?Cz>{DN{+dL7bP66?UtoUZYgL|j&8=Fl_Q&t1 zIvuuUXJ2*77v2ipXsDsGNWCOy@M!1kXSH1`(g7?0e8TuVX84>I(}+AHq6c$*-S0JN z6Z|VzRsy8i#v84!&Q#MCipooM$K@QrN6-w4=>*I&WdZ}?)(t#*WLH;L4vXoplGo0F z@eTsLCM7LRL|vT-9M1YTS4ip&SUuHW@6=39V&T|gg6{yB8sA|d`v6@{Su!&^i(^oB z0i&kCGa?F@Lo~?9gcr(vLnjd!01*cIIQ6<$df^kmR~+)}iDkzIMhk~IZT+-|pC6sc z#>VuG5KS`TEF>TpA~h+drSx&*b_=Nn5JzttTt*`fbk>bur22V0;b4d`PLBF2)azX5 z{0vZZdO7?EbQv^JzkS!})tr-;$E+jjPAq^*%6?2CAi#?ls||I>J;J737-;$Cbhv_j zK?dhU2k=~dho|n<-n|G@+=43T7JCOO8Hkw~ee*EGh9qBTLQG&R>AvZoCU>>?5*c#o z@b|-ed*ib1oSYydd#7ldUtP&!o(uT4zmNro8YRq};cdaoQNDFCGUN@;NOV}|GQ2_lC}8(|IcQ~*$thAXCmUX5sg)6n3D z(K3B$5ZrL&WYkU_EZ`P|~P#?n0b)8Ntt2uP>H69(oa9d5UUm+ZM~MY_e8NvE!n zfL!~2r&!J-`7%e(5Zr5uISOJ|S10@Hil~8suF-tPSfKW5H(#Ac4;S{wj^q`WZuYG7 zUUv5N(Wwg}{}*ovY7U<(L11+?JKzmiOT|Ij8Of`hU*o!$qZG*Ra*Fxom;e&(;#zZG zG08Jo?YE|Nc3(rF3}T^vP!H(r?2PCUwPcbt+urhhw$-Qy^G1Y83#j{Y_2Ou4{?7tn z$^3>VCF_Uu5EV6DDniO*!P%Wk$~VA2=SrJUI5B`@%Kql zWn~55*Zz=hojbr$f6ziU1;LyG7ECWVPCNR$TL2u6M#!bZubFbLh#WY0j!_D*IlPA!O0oD^3 z=63)mOio@t1zOLkX=vd=PZ0K43q|}1puWDGtCxH{uoRPt|8C`>Cz_h7qezfTCb~p+ z6BQl~%W%@SJInE>YJIgkvM=<~F*4yNZU}vFyNP&GO(tra|9?^r7ay2NEDsICl;qM!Dho(zV^3+FD&wG9voO)_!-g_3RP06p`+X za*#;E1_4*ud#aaLkNb7YgHc4Ul;@D8XieBk$_$3u0s!B~s{LE^DdR__HPyd^gF2)6 z6GuBEgmigN5Vs3&?%Lb&=&oE9dz$mzD`}Gv*2S$9G)M(vKbG#snnJu>7e~fyY-~m& zxwt9)Nhy|cagVwKlQYzOYNG-%Z`YrL-NRt5NSh6~*(xO3+Du%wdl=^156Gzs_q=wt z8@s**C{kyoNXf}z)YQz`sPNit{EUdeU2F?j{+GEvY^?X~!=vS=aB{B<4$kV1;q|d) zMSdT#8^Q_44ac)RKImQGcHH~V&5cSGEW1TMs~~-I^M3uO7U+j4UkAtHdjT57sMT<;s0)MJ z(AZc{CE8ZN|3f?ywt{y(St`FYYx|O$e}HyH!A^lICg!B0BT#C3YO%tka;GVg-$lCT zG9UCNFjCq8zw0NNeDMK#Bcj1-E1w?0!T^%QZd$63?Ah=3XxTrlfHo2Eg{c$FM$JK4 za(C2%(s@COd?g-*U@7@NpH%Z1qF6ST*VI=H7_x7>{@jXF=2~-KDdVky?Esg03EZ(5 zvLm$1avvBijpga)(rvD3?|yxmF?%*7Sq`s<+K~IN;wK1um+bH9B&BQX?z7au_uw;FM-!S zxu75*G7@1tZ?o%8c}YFPdaFfB#~R?kM4Sv1AZWG)PdgK{(qPAU^!kwD-qsEUD9AUF z)g$oyGzc-k@lYu`_t><;V&XUKq!_dj5*fnp#Czx3;|uTx3e@jAIf;pb$|2GC0Csp4 zhs`eVW570k2j%B6K=Rf{%LylO^9FOq_8ONPZp^>)$Ipm9>AdXOE7mx{PK?K`#q}xAngpzw8hfC2g<_m za#rF@Qo#4=#-XcghrW;Em|dIiGZdC-&n}1=N@wIrNDx$fnBndn^Gj7*e+0tB{M9*~ zz9urlG6;1;ptsVNzXSIij5EZgrLoP;&B4*cWp(u*;1SYvS_d~7d3m@Itzq!RxKYVQ z)&$?+X4lJOy7zZ-f4oPA-YX%vrR2EsyWhm`72yq=Pi78tWGH^hC-)-L%Ob;CH8pXsFcM&!T&km2UcbwLgGcrSW*v&nMec@S!{) zhx}e&v`}|oVAVSn4YRvSl~$%YIy(3)e-dEw_Q_1o`-ccR0vMp!9u3ORE0bX(1eCDk zVrL}c^78p(ce+ZZi%<+g55Tg33zd#_At$Mn6*`-#D(~M8b1$u~9Q@m$`QGn{`SgH4 z_bqM2V6KfI_^Z62NWRi?hE}~wTuh7^a%jNjLLf@ts@fn@G=H0>QRbQIga|(Jyj64X z{ieu4rXZ&c8rX2QW`MKZCh$}2AcrRMe$fCC6cbdlqB?0I1R`@Y%`Uq-|DxE1@_uvD z@_BuCc5cp4eXV(pIV{sfrKOAKKf2v*Yv5(x#e9fC-e2!v5?>c0qOP-F{!8wm`G!wU zE;&TY^K92Xy*DtbfxIJdd0_QM{u&<624RIZhy!%@(2#H$y_%oL{ORddh$rZN^DJ%)7(sDWjCDn5~QT8uLz$Tm+YP0-hoE!Z}*7+MvM)Lce35)g7_NT zhY-kn7-PZW`xu}bq-%rvqrX&p2U3QhRPI}-!aA{`&0$+~?5N>QT{YP8>r^D+oYDo8 z>^HLgAT#HtXRVS!Y5gwkIx*IFB2_a-|K$az+tjEoDwwEUTw^ zgh=1+a2s=^UMY3a7z{QzEh}gR=5`6cxxFB{{eATet{<8xZd$(QkIF2xke$v41?33{ zkWBuOiyyWB{rkjnS9iLRMA)qX^7GU9Y#lyuIKMptPTtf&ftt$~S6Q2#E3^e{8zb{= z@w`4)8ZBQreem$cAAA&pptfwHK+Dt=#IsVs4_Wcb`8`V3{&8HHBTy=X&o#_8BiHXBtoUF`W zlD!wb=S0`O{r{7ar)yncVcwy*U@1Ma7SzOL*s*rdLztgsyI!9YHT-^6;-4Wyh0)dMzQ3EAm;C*EwtD z@$qlj*x5p&nAFk>p;&ooS?^kPC<;!rZ=0nB8Dt|4Wz&`9Wt;N@`8G^i-C3QS&Xo$~ z>w9JayEZT~M9y7J8hWB8YF2I{R@mLsvlLy(1Px%FT~MJ?KpMcx%$!ryTRHp+%#fa* z1c*M8o^h))V*aiQ^C^6&L@M4FbiMckkU;3vlz8{`c*5Ldc zRDXF7lT4DbxVRG^U+FA|v8=qC*{$x9B+)lF7v(-O5A)|_>^qMnxz!)z1}9Q6SPi{X zeSd#!KW_pUwlLxc)MpGZAHh%lkk6f1S=lgA(4{X&@zT#R&ThE1PVx%MMPX~2o=H>tZc1+kBs2*L-UQ6XQ}C`%rC9R zuf@g8$czuPXY073#SGC#aD91l2pJq;Ql}^uVp7vYY5p#J*|quX>P7jr`(qlPBvsye zPSBQWPq#88f{5WpctG*uE;>4TB$Jkm!WYz*)h*$dv@T9L?}d`8s#F#h1fuYXZv$YX zP06_)8#RLqoTUWmo&UbPp=)nLcdNvUN=r~TM=FZMvMXm~&ds^#nE*;F7JE$>J z*n+@e1N^6C7Y8~H3zZq1pL-RBn81Y-C{6Cg-F6iVQ8`VImQO<{qU7(ar{2gB!J&H5TdZKy$CY-^tP7}4?Z za&{pTNJ7k}CuRUO><(@9yW{P14q_r%aWP48X?cdQlesNzcsulb{VC%EgDYSf@{(LS z?%fsVSy!o)Ys=2XIyex-nI=EbIsPx*~cvQ&+QVJGlbHGy}Y~%zFU}^>p^J-pX-VL1tle4{c{zSehqOe8K(lzD>FC? zc!z~4YL~|z;L^Tw>cV+K!u=acXRAoIZd)2+RqTN^s|(T2jEYC-=!+X8pMXYum^JeQ zrZ&|7-AfmC5-`}XzKNk#CV3earH8bnFDM z;z3Y52$ir$cGl_DPBs8;6o=xTC&WBG@b2#Ib9YTu{)MyZ3*K7N{syf^VsMN5(I|>r z!vn6Mhz&q@5o#RkwE-bO8^}1BGtjOp>%nP?&1j%V^v5-9@{pihAIiGaI-GX<1_po; zJNhWbnNO#Q^?c~A%_%JsTy__zpxv)on6?MM2-`npdee;MN3rw<=bY2C=25y}u8Z(D zl_+pMZhlF+H9Rc68F_P9Y#ja5N0K-2`BZ?9B$)AIJ7#Kw21W{iXexr?`xD%`0f7lT zxQ`_^XJocOYHeC`M zI2POu?SXjMLyn+>kIvMDLUw<&KzgFeiV1iY;2wlFtRH~o5kZy)0X;`C3oR_` zEe-P*;!lX4AI);#`pXmMFXOMaoKI5y4&Mrkw49wWqJD#9ZHuQ8C(AVhI(`USR3bww zFl-FQeu+R0V=!pA;^OQGNDtIzyna`Z?LbMT?BD;+>EB#+8n`&M0+oCvTlItmb4YP% z$-?y(C+Cx5_O1mug4P_FL$tz!-z@uHXL<}0<@)YmKRrR@ctP2QWRcMNb*rA$aR%+f zo0!u}iE*HN9c+-*)z=%3mOTUa^BEDpZ{&x+0nwJUZHO2$Blh~J!}RWxn4aD~J(EUp zFr$|ihbtt(*m`Bf07{@2UH^Rwu|aHavwe}0bgs;7G`ty`65fZ0jv&rdGF}AZoMLi2 ziEXf1h-_N)-A)#r`s}kiQV~c z^{zo=t1u`msw^dEpbO$wV*PNgcogTDx}^L07ppTQ3+!B|8uL_M42)0=(SiYt8yfj)-{31>HGjmHt9h~aCFQ0DgnjOQ6o9rsU=1GNAaJHwhfmt!V+}2 zqk#jkBS5&G-1%}7{}m2V(4G!C34t$XqTn;VK8FpN9R6poz0PAL08$ zHO2Pi`S|z|6$i%?4Gj&z+zddsCAh*>R8)dvB3e7Kskoeny#NG)@$~6~uO1#q92_&4 zzCYD#Y<-gb@Bn%B^ZIgZaos5#1b&R0gZDlZFYf?J?p3~qAM7d{u@!n}SJ&WM+LLe? zMlD~QsMF!Nx%mcd=cusYQPa{`Ur)04CGz`)$TP@5*JOs&9MWm1q7C=)TBV2T|L_zH z%S2{zkE{3pu`>G%)FrZv5HYttFP$0zl~>8k$PkQ2Uk(dx{{QY&FU{YFDre1R(pA?g?T|5&2Wf}aj-;#==~{A z_<#G3LD*a#$x4Oa;o*3r!9DcCq?DMLXOMIi7gLQ*pi^%7(b3ppu~wW1N#%WKs%aXLklud5p!mI_&7oy_q?{^%Fb)vUy^xLo>M7%X4Fa_Tfkwc9 z-i2uamBX$8BirOu#kORn#rFDaJrq({#_%~|&d$bF0Zr!V)81^wtfzf_Prh8>NC*p) zX=`KJZjC>1xfFu1p2+#ZfXipE(pDOVBhtP`WB-F?&RZQ{NqRbINA~Cu!q18QzE1cl1B9|D|AO53^pr zIge9+Pe;3;qS+IsoKqKs_X6W}eV5a4!SNJl8GHD_n|F(i2BkyU@0AIn?V4IAV$L5w z#eno!P!KxEv(O)N9~$DJ6d9UjOIPnf>`w<|8-!kiU3!8a%XZtVo0)|Z?tf_)y;7K? zp1}g4TcAsj&4u3Er$9TfX^hhK_48SpBxhh&^hUQS-W z-b3{lf`0$<#-K$>a=v=RbQFO(sxVIof}nEG)bUyG=~<&FeIGJ)xlT7{`1|n3ldG$@ z14ekAowr&p4$q&qo;>(`#ak=Q`EcCF7X~>{%ku1Sg#WHn`zULqN*W}X%*2}mu`=w?$M5x~v zAQ?QB4ATG_Y2Z)#XGND%TprRNbWeB6*vuyrAauv#H29KKho%Am_wp$AB0VNz6_WJa=&^kNPj%7^U~#m_m{7DD|VpqadK9C!^Mvk3T= z$ZzGlOL|g%AV1?Uqwb9xYw4t+y90%~O;fyNaZB?pS;ZwKdh3H|^cn=r;Q-XySNnIkM!DO^Cx6{ReO?@KPCGX0w{7vm)*R}TG1dgV@ zdx_WA=LAG?256aC=m;4CW686xhP!2*Cw@X0SU`un{nrgRUGUlnGvP3!e}Ye%bJP-@=$DYTcfx;Wl$&_pq6QCez7QD1^& z5Y3`bixB>sE+%jol$lu6Y^?V(Dlg&50kMR7)EXcne|;?wQ#0wo%Q{upTpL*onH zpg%xe``sO7`S9^juz>5NQOqQEtZ<6Ajbsheku!hdtoFEWl9^@oLL4(i@XIT8i&oE2H@z>ti>^EI%)G$iu$TJzL-Y>Xn>)qniX^QaX;Fu>#nhV6{&x8PXS9<5tl& ztG`0IZJgCL4sFf`Uf9-n{~-Xc&XT=7B`8iIcQ0X!J%g%IkH@v*rh=k%NU%!LB?&m$ z9B<&()z|458f5*C@@@ zEDa2um)+4h!rAIuk#kKlDGr_zEFo`$HM;dT3N*snG4 zOXHH7pFH&CUs(P5cC@IJo?i{E(y3O{w6#&@s}%E%vV1H6fXfGHXb&?oZHL1Xk)(oL zzVLncj}4D|?m`KdH_QlFT`y1(?hhDqIvt%oVmDDTJTIHAb9SbZdX5)lfdKOTy?0_+ zSgh4}im#=clEY^=#V^)(>zn@II=N3j+D$tyX(po z<7X1yKJU?s4pcA(q2PA4!)Fdm_A`s7CvsJv1t33`-3Jo@u;)<1FR}>Sg?yFj(4tpp z0R$YMM!Ilu7~_+gnn+E?EZRNMcmeD8+-|c?AiV*st6V%hB^ERG;ZhV}ad{z|81F+| zB=X0On9uQRm4ORXRDoNKl!$eCWwWeeN#YA{CMnZ(kJJ7O6WOwu7#d!CdMNSCpvK_= z9s>eF|B6MS$Y#~L!c5iQM{@W-Ch&6W4KcBZ=NBky9Cp8z+7P2WrSFJlcDFj2b}IWA^P%A4^XBMtc!zsEk2iJAN;L}& z50)gO(}Z88&>}OTAt=| zxC2;LHiCEY%a3vC|4db4S~9!dx68JpOpVfbgR3b}-4ar8TjbtC#Q1#fCLvk6?F~w% zknw&00EJVA4)!1+s8EJah;AndpOYc$z}a-WS4C1)0XQ*n$Up zyN$Pl1*XbZS68W9hkJY8Di21-!>!9FU%tDK^a3fA0#|z;lUy#5zg83~UW07UBTGxM z;qJT)_OPv~%A{)d{+nFQWL0I)%(t79M~40Kx>ikaz-q{i1} zcyV(qz$z{DlU`!ARDe(bJGjFP+5@A*j7`fw0@zd>N}$|~H%4|vQG;Y9^`1GPKUWKYR3ia1`}96?p#H^C$Z!s}-Sr;|>CrG|U2#g;M6AV@kvLAv zVEvd@>BzRT3MQMC9vBaLAn0ct1^g%;-@$1#zqu*hE|WkOM(^n8_{w5S3#>}0s*!L@ z($9Zn@#V`G2o#dTs6=--J7n#M2b`-!)eU)Bs}ewe>=k^BH(0dzxu;-3Q;?rg=x&2q zv>?u@v;;F7+wZ|HEG;dP1FqFfSWtRm`FY!%Tm=LKLeL!@l8j$-UJKv0;)(1+t5ryIn!DZP_QOZfeC78vgUl_n@TDQjBif}$i-Rqn zgqQl~R6Eaj7nj4P_^cb>I6C5!Xt{je9MpcDY4kTWy_BvMD!UP;F!!r-Dj*E`*}Gdc zE(hl1Jga0PNi*vm6?DCkaqnB5$!mwA4X<7`4n&>`kjhRlZ0?R?Se#%**Hc|7WY(ot z{za6cow7As9tZ1zLWwmtfjz$X*IgD0W^EpkcIsgu5x>)F0~og(*dbF&|wpJ-0Ydu?sSa}xLO|JXZ4PljYxxUF9z zhD?gwD_AX0wr9Gxr%orT4>2I6FyA-BTlZ!Epw|50c>jgQq}d!p)Ie7xgV17I`TE~_ zUcdsRYSf;D^sm8;Q3t+TNXsW`)PBIArr2G5f?1aJGW2I-8;)h;r>%T)=YCjuL{|HL zln)w=+oB-$c%{MsRX@N$0PL`C(+o@6)PH?MHDrTPKh9X$QCGnPT=M(D`ZLbDRyJ@8-I0*Iy2m3MsMsY)#YVK^|9aeNL^NqFh{NmHe*J z7>;M?B8ytxyQB|=w*(wbJJvAvQ!QZ_re1x(?CNU(bOLkmXYOi_hucXFRt}o8$Bkq15WKuh{ z!GH^k3@AQS)YKRbr&H;Yy6y0obVT=h&@uIf9{X9rBguuOyyGdC=g)li?zf{|LC+P2 zk43iYB^_Q5B}1t{Pe-?RxJpKn)I{m(dG zy=waV7gM%BNUtZ_2hQg#&?JbMYJ)P^icKF^?fB-w3FP{KxgTaZqCIFa0uSZWb1&R{y(jC3`nXuQJ6g9!Volb26XdDUQj{?B>>BmAKly_xXNW z;oR}ENu_?@-czu01_Fey)v*Wuf)2%OHe=S6vzYD+W0G0N&nN$!riF#u zhR;)mw>fIw-m*v`F224t*LWX|Knc0?>vO!LP64mC2Nv}h2`}dhiks)OdRKZ~^0VM>iYCjS*fxP${t2 z83VAXz5Wd{UO2}3S?)+)Q4986bO7r?Y)Pyzk-u|w z;deJ46F$EIDs*1A6-W&^8pr8+nsHU*1Ys4q-$oOqTlI7R27iIR(y7~E(6G;^;Cc*s zA^u!ip~m^~#mRO{Rk5zq>CSTu=A@f}6cMFD%>)M$fx)uNDy`aN65HcpM#__1&&zZE zGPBvAFaR6Ob~9&uuG)V_98qm^Ec!iB3*+Y*#i89&-iN&9nOgKY{hr}`1 zFMWkmNa0l-E7a08GwbPkpI7zyh7ZcMVGN>?Jz_F!!VWaAbg5-27|}ke*OUz*V;`?D zzjd#zat!CTc_1FR)!!9S3Qe7~h&jW+fVbifPZ@q#ym(Qo=zrTZ!TGP2R&?17`!zFR z0%Fww>nH=EhlU2X%Zb!dg+cE|vDbb+POmRMkTHQbgt379$%(PiLi~LyIY+J-P93M5OXFmedZx71SUdm_Z_KxeXQSJ=t;2SKlk*cjBorL5|$-XYP-&I zvMt!ea5}}syP6{OLuR`El3IT1nDwoHI8M*WW#gI4`O=eq;#s{TC{<7q)kAA=+N6X* zVC$^F$*i@hsp<5zl-1QZGoxlr2Z{StCzM|y2uiBfEA7>C)1A{;p~5-oZ+khQdNRTf zPp5Cs4emB@Dw2+gEl4wL+U1WidFN8Rm*oDrGtP?-5H-EA9xJ`EsiU;d*vxs?S=#xQ z*aY|*Y+~3;k^k0-*+3AZ2O!GpfGmMed}ThZ9qM>I^c9^CRwl0hGyOsOa9>jVhH`vs z#Pq-3*kf;2HJ;ZQQW?dirTUPWERF;*UK^~YRn^rgO0=rwEU9K5D7X`lw0J;^yFFRa z`nQ=_0@-D<($uT5QP3-hXt{If|7d#4s4BO%ZI~@8B1kvV-2&1A(%p#CN{51UgCgA> zN(llY(jW~IF1ov=8>Ab)lly(XG4|N;W4qS6V$OLUnG3vJlyd5Q$N|qgtscJn{z~jg zT2oGk(bD8e(EJ`#O!p?Gu87xuOZVZ0gqo6)BI<(&VVBi1k-vWGRQT`A)RewGdx-uh z>o{WlND!t_GQo25xrVFg1N_GKE-vOv-?1SnD_+D)u+*f(U9jA?Eh4qHxTGXl{TQ^< zVWdI?^#&^&BVWeHUuo32QZZ{XN>$s_761BWvfSBod3EABEgzo=S{k*8m-!s)(Oq7c|)Pw2KP#-G$j~Ds95N4G8)RLMZf+BLdNRzqRX`a$HZHB@4 zxb7xT$@ibo;CeZv^hsaXociRL9%CYMrfSi z=&vq!vvg*x+?otGB8<)kLZckCVKGoViltP>7}B{{sD=-5uS20PsL8@Hu{UYSdZ6- zuv3*!W_Gm!UUNTw+ZD%z#;B2lezeIKR4NMV3{(N(5)dGK{crkff1Opr30&EZQ&jlYpGw*%-(?B@zcpF8vJctDt z8U&r82yl@QNluds@x5j}w_RpmsHOD4m&>-yqDjg6G!8WI#U5kq5V_eCLpKC_9H`(- zhl}Q-sSEur#|nkB9)zy5_ezND}W z?fv?o6qLfby}uCwzdx0EZwf0U%|Z4vV1&I5UKdFxCwgXA6G?A;D1LKFbQAC0qnbFo zG;1s_6P^;MiIF2<*W({ufFZ8AgGs@tA_C5QT1B(c`J?YL?`;{vZHB;MOz8-srnX1} ze!(2M^5d(Y3vNoTo69m8y&IKVbp2K>oV>gdF{bs;ukS#HCyFfx$JSu$<;3~Lg~ML+ zJ=h<>ElI6!#z5jsBA550=Ls)QiVbRHSz4vFIYi&Gh>f48>#&M?`bnh0k*3=04ftTWP zy*qlsO`j)_QBfaexCZ0!kLx&WA~=Vxiq*rGv^=|Im~$Xg%?^)k`oGajE#+Nomikmqyx#}>+PB&ldgnt zr%k>nHfsXFD?;+~S%6`0>g@bX%2!xs*K+?U$s>rhibNl$GLoG6@bQy{Y9sl}!s%}& z9aXrl*FWLm)S4>APSwU_efN?p@XX1bIc-^3qyE} zKBfqC6`OAUvdFS;I9i*RfakmuWFr=n<-EjPmz9LxsOxDmPxuUU8JxI{92ckmOHkSV z12)u-?Je{Vm5D$rRIkGs66#DN_o|pQ=%HHRDLt!bWPB>J{POOUPX-3+((KXDU6k`T zHkP3Z0}mVDWn64EJu*YLY|ZXUw6hDYe|ZMXEp&G!?sfGUrL*rD{Gclj+#!7Rq=szd z$4leM@^#o?@q?0(>&*LXpff_I=BL{_-y5$|J$n_|Y!hMzAs>1C)ARbp9q)8h+?8Up zo;kHU6Cz&H_E+cc*bQe^5}AQViTK0H3o0cBvF>)x&9`?dKAPhgyKZp$d*GlbprLm7f=wTWmW(n_CU$B!4f zr>A?kNFbIdw@^zL`&1K6*L4zWY4udFaQfxJ^w@c&=lT_!lPu+@&nqo+bE5XzTS=D< zF7orD+?-`FJw}V(Tp}y5D8OWaNBnH#$Q|U8x9;SU%F4);$WwpiTo~VrtwtW-LH-1b zVM}*++*8YjLZ37$2|?((K|omi>0t+Hwz~hPPx?#!h_RwMPVdXd&RhJqOY)MPX(!(5 zyaeVC%{;`QshS}k(kmUE(l?9rDGsYfe?pW1M@MyV;MV!|_V;XkKHz)({Z9tJmHcUK zP3md$9B3Uf*UECEfYr{A_nl6e>%an|uoNhgvh=5Z!ND$y$(SCrU;rn1hc$V@d}P+0 zB9#^J$o2T|eSv*~@LYn2;?yzA?O*f}Y{b44*AK311<8!K7cNs^lTNRm&oIOwn1L&r*9HNS;%H-s7|yM%rI>QU1q!{WB#w z{OlzAzV;iU<=sUW)eIAS)`IO<#jpQ6AY?`Q&8|cOdAx|zy+uHu4>#ee>%_s0Mp!$1 z_#6m8?w>q4C5g+|WQLqM->fXi*&1CM&CbGO(iKA0WqBYf7E@dnA!v_iZ6&G@3{y$3 z3-5u=lq=3K6bZHep z6&Lw^W@I?(^!$itnW)%&a&b}=?9kdI!@<+GOZ2rxFx#;d8FuV}QlVP=lSx#l-BE;n zIr*s_^^5!$5(&3j2@qXfUv`AuTXk~5fCMcIMsu@XTXT)++d{v} zOgfB|(;He#jKB1+J5D#=5Gg32ZH3Pl?2IKoIM+%@xwpn^kJ^=cOkL?Wz939XoJ z@bZ9Lw!D-#q*v{k3>k+IJMRE1JpOLW#WjlrGMyWlm)qVXW_V}X`}m#{OnKV-_od-c zO5{;M#4tI~-$y43`udgXQy{vSv{~m;2kWaR6nvHHfHSh|*Z4_ieU&~C8MYRp&HIwR z@U8DNsqO{%=S!0ZO^sAmD%}puxJ>&##lO3p=JP?}AfH)?Zxc3CnIi^5Q7f6tlxckh zQ7y44)z41L;+&xN=~%D2)Zy=MokByGT-!M{7!yDF+z5;BObfK93K7sC8jTOS4TD@uEc|R7T9rr31aOu!eQQCH~O=4vL3|_(;>< zAiJ2XW2qv+=5vxb-Uz#pw%;H1?Oa5aH%A{;xgSxZU~DywziOJS@Nu}lWFO3pbTe=h zhZC3M&U6fTuHHjgJ5g7i$4LZ!SK?5n6x#ku&n-W~51l0U9^!p_kw2>@eea4rq-wlB z!;0YZORg5heH8EX?tT0X=M3lk{}fZ6e5`ZZf8zR&5)n?;wFgZuRux2FwD*`Ecn&i& z^KCS>z97t-+ri{CW&97&aQQKd9++eyURyove=qbryve%x??TRnTn{cqfTV%Z42E*| zij6w_R!5`_)T}SAj)cJ@-&hxUE+du)!CSKe%n0A09vU`Ljn#a;(Sw*UiiS)J>r*`GVAGai9PV!WYx8kH?JH@^)&sM_rU9I#R3q*FCZ;sXvXgTbi zV45r<^dTZ7XfRs=j&hEWI1sFrYYN1|Qaknl&27jWq^5^R<8rRfY#eaAD~foX`z7Zw zm9j#^jw!r}O=affZ{gM(6gsss8!l*(JbH6%U^VvlnvguRm=NC9Z_aSh^!6U z#pk`sb|+gGI#qGrnHIbDWUq>673;wH!=zb^1iTjHUduV|JQi*#kj{Fu&|2MCp0GDt zF9Ycbum}C%+~IiH@Qj|G9@6lsMg@WC1qL_Mtl;~>8+e;P%4dsnbm1|oegLSw)UAtv zfX$%!jOGi!kL!?1C7*IBIYk9Fz!uqZu{Qk6jw{3K+%OoDfY=Fqb=aFHg3)li(T5G-&u_Y8>`R^NlI!X=OOBml2WCog#)$#oJC*GC zfQF5EhfY53^;|=i-0(idV$2AZ97bgK(oJo96b~PpyYlP9Ox!R-?}!FmngGhs55jiD zL?lBV(|@#QaclJNW4>K!>sq{hOLaE*s@!oi!bUi@4HaF>wCNCwNn@nVk?DkLZf z2@h-wHEhtMpb!N~(Z88x6KD&Rmd!A1#mu99jWRHlw%@@uvhnNnVLvaFWn#LVT*$^q z&NXa**D84Iar_v!av%yohry*YklE$nfOe-*`z1LT*+w4=x<+wdXsP8$ zce#=s=MFUgZpdPU2LsUa=h^CTXzEB6f-n;&6X+l@>A>MZ-i6j8A`v70!ffm8?^|`^ z%+y`q_%K^LFIN*@osj`#1&A&exrk@yXu$wjC+B~kqV&bN%x312vCGCA zn}~>$=U@uE2*k%ZAa;cA(bzA1H_I>!eb;1;AQuALKX;PIJCYYaG{bon4H8UY!w9Xc z*Q*`Z1wWxgwzaoMp%V|Pms|V?fqb7ryCN~aRQ~$4 z1THGSz`(Z8U+(-}&QDDG+$KUznJq6|#GuZCTK5SbBx-<&!>UZ&wl!hgk-&y46*{^U zDN1kj=8b|}W$AbH?zI^Y+Oz!^3j;KmI507A2I7O&x7_Rf#2 z-@bkOU9Fx3LKuFxv>+QA8uq3NDQs%7-A-dPGU1tkUaLiT-CPR;?Zb&tYYRy)wuT}r zSNRO0Gb`hADFRNPZ|5DeZo_E9Fkn~TO}S8Zas3G)`07$*0MB4NsK)!Ds~Nic>Pa?ZoRI<#QXXtQ*Cu%x@K7!ivQsM6I(hiE`Bmvq${(j zRq&okJ?)b22kje{d-LY9uRgb4lG#Ees(KzZtt8pvHOEP*Ok`$65)UWmS9pdYIW7JK zT%T~K^z`;Q9T1AQ*G9b>2dKnFSZYqs&+S1*Ov3Z_Hwco5c-`?*1K5o&Th+kwO#pa# z+A{&-Cx1D9Xj*;@FJOc5oX+Q(dTYkRcj1pUr|Uo0L-#98{dd6F@9pm|{B1%mNw`h^ zBkWDjmF3bNp%DpAJH}I?*0e>mMP7eXvVJ5<>uxb!#R8j?amS$PHhpBJ`{6@4=eQX%^5M$3z|LAscn0Qo*Mj)0%a0(hj^*VWC=?ym`;(cyOf@ zTP@3Lf%gDH8)zn@g)!OOmA;uQBbcn@$f)9@X`g-SK}8*T4ffklCxEFOoXmCIR>VOI zcSK1yXlZVH!nw__MGg)YjoyCCaJC!w8Hhwmtyr@oR2ODQG&&@&4H@A^QLTH$`4ErQ zuOc2F)X^|Le4#eo?05bhhR4VAT(*f8RYT%koRXCjBg{UT5N2UVA6oco;E{}s2bilm zryEzLrfz^Ho^A9|xw?<7!9O%U<#0G|hqyi>EHmphS@1)RHhqMS4iv*(IxEN4#ZO^P ze2wDJW4GA1H1^ZClOR=LsWkl#Z8+FN9FU6&!B@VM)cJT#20Qir%LlbsAfDOy6u*ygDBt=CQg9uV%P&O71EH z5-h>VJl4FC%yAAOa8#a$@sf1u9>JbmQ(V?K0qVHNt|qz#51lN&7ccMX;Vg zA}i^WEd+zz$0Tl^@i+m$91k!n=B<}4aRn1Pcelht-tR=LT=;uC+yt>nb1A)qry1#{my>_xS5&EVjklW{)`I&J2 z;@cwWtmXaXwx`xZX!XrW5OV+>9Z%Tx>)IiID_Ow!KAaK$&SxDs{z%dR@)${eHTY5%WuNJf&eeWb$1J z_1{&S!hNojn_*7{`MprC@;jOQ5$JGKdi$;*Ppjf#h1E!=!PR{@!oPmX>RS~D`jJVk^sd-Pv9~id@FJ?HK>!!R=iqo(7lLLe9WV$V zbFT!oVPb;P`0sF9{Ow^HotUfj6(|@Wsa10Fr~kqc*bE&_qG(0#>;6M%C`kt{dDXtE zcgFzqG}p7b6dKbbbt*P9G@1FmxA=ve-!f?AIKrp#Pq2N;)|4G)H2b~7@@6f2_ymjQ z!HtUPYuS?hBStNeWAx#?p2exeSG?H_O&`7Em^295Sd(4B?t*r+@jPeCZJpCy;1>p` z=-dN2+0keOg0VB_c3R$F(z0LaKAvfTv8}VroMU|=OUPQQDATk{YkYk2{nSh-Pb!Q0=I{D_q7KP@z`2^n=R6G6&Td}gFJr#niv6<*bPBLnz^L~ZYc$6}anrR2U4HGeUd zhC{at8ss+Fzr=W)iQ7=g1^W;vt4LR=AkEx(C5#x4O(#eqa8w3$+)0oO2v-1)`R(1} zeedZrzSy9{;+*qTB(*GxseWfnZodIh{7j ziMqDtDkE3>(gvz>lUmrn;TifwP79ZJh*(rsRIIEGC_&djylEG2v4gqfubJ*-?kAqE z6g7^P{uLFb<%j1Ur^QBV#)LKWg+3%y5oYt6T1bH0QW4nr9F=@Qczh}wxbSpBcHS;9UT<^O2 z`$F@#T7ixm0f&JMl;$A87M%McKLFy3${@k{R=rwL;Z(i|@_^gsLY|G`OvTtn*?iB( zrZ>P2y?1a3<+g-A2QrWhE$$gdGEVKz`E-LYQY}vtEE)!MHyhX;$dlXmeu(QGB^lI{nt0}2Y*VA5@c40|*}j%Z-$z{V~Q)Vs8_G#trFUtfDdEI!z?8P*50Sp-t- z|E(ys3T_j!r{o&dE90qrSRM&e>d70Z@r9oYNgFNW{FyQeMPm-HZ@l3;DPJ4K zx2NS=)TJ9@L0?NcmkmBZ0f##?9}Vg!fzSvu;4rqdBwq||(5>8oLzkj*3O}K#$H2g+*$2S)hAI@yJ-xgb^-7Sd%XHM3e1;S6F~{%M?%kDaeQbE= z0@UtLY^L9`>z~({l&a@JF4lgW#9P#rq(mgKB3+T@=_>23DaXU&F|Nnb;cz(o z^=ou%qF$(X0cuzflanFP3kx)g*~UnyEMp?bUf~FJnJ1tcL;J?YCIFuGB|^mtt7YwK zd)`{-omK%Cc3|YYQYOkkzM#Bx-T{aO=#dqbXjU?gK=uVgh~4fil;Unn6hOZBXa!p3 zwCzyMuI6WF(%9D$y7|02$~^>L$xpnWf!8Hd=41zbZ7!0!u&~@_CgiPK=z!&#uL)nd z7FI*s)2(}^``>;FM8a2j^ClubUMj4y40JRZRwD#;KD#}ce-vCHVy-W}5%MzWfaQe% z4Bhw3osDw+`{TsKLA&H|xAxEfg?Nmq3;|MetKBIz?^BLNDDnGPcrC5T&AU(h}40~dQsIAv--qBI`QHlz==n6Q_;#k)^KO(o~Y2*se&*NB+6)gVg zdil(4qY0b~u(~r1-B=(3$L#t>RC;L7P`o9O@7yUaEj2p+RhyKgLn~eDcS_%7QvNSX zUClu{EU9y2L|4G+{B3y!(SOr3GkI{5rja=YR&PhI);SbbTJRSAya6FR2L*)kLAV0P ztydyP(JqA0#dHyo`dGmJ^Owq|!*gNY>a<)(=*HG*tHK!=)wCp5cQ?ltIXO zC&bh8R0`to!by3S{)C!CA_Q~qn~%Zk*9WSFjd&;KVpt6|9^15NZO%&|6&b+6^nt+C z0>_=mT&FL=TAcIR62NU;C|)kJm36CweOEr~Di zKE!dZsGW+S&feF_z!(DC7AC;HQavOi$sqZ8MDp}^dwURIXTRRfbgm81bZo|i{&>*^ zgRLZB&LFw$=SbHn8ao&>X;NdmsU&T|88>e#&m!qgim1-j74i6rR$H1Y(@6|kR24a-UX`20bM;KZi(jYNg zROdGah&d76+GR}3S}|bA1qJP4JbR3d zXn%HRU3)=1S0s$&4$GbYb$5GTnYu&z4wQD90f`3MlPDnR{1jV65>ONm7s**GnW8jnzk>2hrY z-WVJA%(sv-s#5al*E%AYWO((^2%DK?oB1usR&Cwi0bdU+wcYl%ZOC`YMwpkRu^q$}+c<1W`0CHquEa>#j_v>chGrD)=@c&F%)!8*?76#QL2;ZO z266KEaQKQWn+CH0pkRde1ElQ|aB-q(-&hm#Sb!Xu3C8hrmH%p4yBv2#;=rZ{Rq;gR z!rsjj4un;1U8x$meNjBt7#m}|t;r62r+;&Q3w(+I-1*@{DmmR>DrUKAHdYd z<#BBI_*oUjShGK4)SSO3yBniM4PK?qRTm;0&9Xn^KBR`i`uGFPB8bUffQ%dO{%zl8 zY4bTdS1%nNaH5ukr^sK&Za;t`K4e_2$bbjD(9yK_8XB%aQmg=@bUWBK0oSFG;f-N= zdAK}eGw1!g)ReUP{XB_I0RcnqPapz(NqCs0dt=WQMhiS3`1E6Pnb|;r?g`@s40;er zrVEPg|0-=}K><;K$F|TJ)$~dGv`=(k!~Oh_394)|Uw2rIPqvA4D`5G#(ssFeszxz< zNnv((kPsh+Z*enYZ@IONih&{LM{q@yEl#Z>$m1fCla`0>OWE4fIr_0V+q(31llW&q zLsL`r%ef%H^zYw~$WJ#pMP59TyRPr}-XFtl+-lzgzY63Bu}m87T&Cx?eT}QV`fp&S zVAXB#1;kxu;^jA4Z0DUxCD^H;-0hiHE*WKbc34S?T3px>NR1*bvRPr#XMjzkIhJ7+ z7)UG_E+Z8A^~=ouv>O}&3^`Hy$IJEwBOV~a*f|*2Dq~6N!5PB%?xZF?!TIU8juvop z5pzq+phjI?Ay>N}(Z9$~2(?dP?Fu8|Nv(EBygl=53>Sn3m!J}|r{!vwk;gHrCB2(U zFfu=Jatnd;XAG6ZeTa~MY^?(BcGO zkiz~O{?F%tV-z2)RVNX|;u|9$L8}1GI+9%pkBr#9z)9a_cP6;(-N%m~>)g+9R&kEJ z*L2iLLE)~xE55ZhU4T-ZI*6oNWPtLSuSf-WEA2X0HZ;P*m8MVJY5{+{Q>v5T%5qu` zLRiffG2MSd{s*g|#p3Dt?6f*w(i0ub3|Y`p;h%YoQyTZB_7?uwy?_4~fID;wkvk|T z9=GnI+z2w7E*L6}Y~ll&xSd~{y&>yM51@Qt7ehOH{-b}xM6)w)1{VM_;{^7Z-(Zi; z)2OrwGsPh1{|y>u%NfDz#H34(=7qFh%n!twP14!XkaKNJ|CG-T=jnd|SZwj{-`_yl z{5v}OnxV@xiJ9X6HG1!a1sBKPFF{sPO|Q{AHB-vifZS~n@yIX0U%k%g6U7hi z3T!bCD>}KVM%5U$G6K06J7?#Rl>EV37Zf<3KBjw(2{|6eTiKAd{-xpSTq?g1=+U3r zwF!b1)(%_aFi>+~eo)T6v2iw)i+S?o$@AQy|5U$^&8S z$lc%%`dBeRTD(geS4i^9DibY5p?FNs&-QI@okWVs+#1ENn;0)3culU++Y5?g(f!d@ z6*9FDTk{84QQ^VA*dr+)qFh812W(*Ilb z^T6tfvFLY&g=dQeHX!-yq}=(Z5WF0^ zBoit(?wh?b0b^$8^{uJFeb^%8r9}{^=0u%2^THlXYOn>XW(!BAd&F>5vO!!>$h0w> zg{$3$=|pcOD5|PYKw=bJfw;|gEPgGfRXF{axO}zeOYBgtGF6xTPunAMVb6AW5a8of z;Rq2~jNtfbO2xP?CJMS6LH?EuU|39sg{&}`e*>{3V2#l< zfv~4Nf$L)2^SN4XrrScqKgl;}?4DTAM_Re1PQw_zGX;7l4Zq#~uhdVTJg~Or?oFv~ zg=Yo8ZyJM*-dKi(YESUYmfRZPNSd0!74g_fdkuszKu?2gA5GZ((iLE|p*PUtAw5&G z&7@WS;1LP$H_z&Qi)J2}5CXZ)m1D;$9?-*%P80{Wp#ga< z3u*60ManUZYNfP*B8E(lW-BNF#n2ArtwzrPH8JZ+^M_C}@P9rFgkrx6h%DF0kSVbC!wAy*xYvycAf-Z|y~Z_4S#?gXsIA2!Dd`*T%n?_-j* zlJ-3p#7I^sYSap`B(cL1-p>0h$w=_b6JIio)$V4Wn1lrD@nanGNP*|F?;ivN7zVZ^ z0-y{~owJSFfaBBitOn(N zBs|vAD_{4I_l>#@jUjTE5{;lQavCFwNkb6Mc_5a)`+I1J)Wc&cUB~YC7++FG#`~1i zP%d|8V{tsoD7;R_Rcs>$k!($sl@$jX5G1=)!mkF^DF;v-q}IgX;P{Aq!Su3Fa*0i>`s0m;kN4l94-XoTQ+o^9NQvD6zM zDu#@rUZ-xXbNCs{_9g3s=AwbDh2^%S)v9b0`D`wOJI7#(=>I17^6fja@oH${sv5_2Mc_H@oO^o`dcIf+y#@vJXxKAwVi=p4w6;a=z`BJB!%l@2 z8(0_-DybJULWW4?54oGs2QxK^gFaj_1gS8O#P)YG_fC%@w12#vzyT4z$@F;1_mK^v zuG=UK;DK)Mr)e!1nH^Rmpt`#B7GFGA?Omk6`W+>D4S;FeZ6!PkCWSf#H2}H-lC+kC zMVbAYC7?PREg4_fF_hunrNVCKdP#90p<(6s9TZn^ObKg$fKfORfY%={UU;~PQ zr!CU9slbG4w$5AH!UCy9`q2Csp)hPceK+4$UH9EgO(f)hO3i)&gqavZ046IVU-8;p zou_uE);{a?NG!6&N=v(5qcy%0?$EY*^o_vCwGJt!_2Rh(c|8V|OHR@!V|XaaEx0PI zDzdc-NWvZqe1-z=ud0l$muuJ{Ts7XFs3{=($d*UJ*z?^hht+S_1=Ny z&hz(-kDXqAMGdrft6*%XPKOmJ6=2WTM*B_;XO#-|^{#s%5Fdj$uOr98f`lNY6=MEZY{-q2vn%bON#Zxk*>%xAOZ#hrl$@G*Oxhb`>P1cKn( z$iyTpH}{suhU9vR8W&sA>`NH;8TD&K+zx7P>&hWuMs~)XlOY9}h{v85z^X;CPvEtu zr*EBg4b;pHyH<;fVJ&=QHMYc({KO@f$V#tCbFh_~uu9>0`aL|F?o;2)4OevZW+KWR zZE10t`}wamE#$0i!!)E@7%^#szedU;HaIA?xR(()xC;W*Ufp2OLc<4SVU5I^jF&Ewo_jJ zi`Kmx9e~xs`hj-m#f=OZPJ2eq*{$bmaFA=%9^w{G6{+=5-0Q=rBXTE<{yelh+ZTak zxDLoG?6;~|>P}9ramsH^lCy8}eF5muL1d+~%A_eEGw7h?^pQ9<3&uBeQ{|&a)QnQNivM^e?@$qql;5{bZ8}~ISj#_Yr zhEQT>hOa#ra^7NvBt@f>op@Bi4b6g&k=_qGmmvQj(BI!~YupVK%0XGipT~8ts=ao0 zPEJqegd8_V?;9J_9J&)5X5-E?f4OVzV@2ibJkL!mS0q*RGDEdhI7~B!RzATo+eB`R zzso-`u*`DE#{GCB9Hfd!AOHIg(m8&%-91G?DmFW^(m6_2%z4Z%>P803z*GN2rAX&H z|Ih{Hr_$6golUCDTAXmJqli^Zm;j%9>tP)=|oM64+J`NL{m z4B^Z}5Ekwu{JSrTifw17azXDSh=9`pn;*!O+NSuSksB-EF%wEDP_R~gy8=@+J7M?D z1L_JQ1Y9B_ziiXya7T=rl+jMw0Nv@XL<&f(6Uu+tmt{GmGgn}})<4@`8YZ3f-{0#{ zRqWz6+~^=>xbvx|513zE_FNnuJ)&e}BpPcj#A8y&LqkLRWiv&x3Y6AcMDt)k!{V6w zFSAWo>rk*CNhWaep{qpwF!Xw0yl9zRKNjvfZys)N&ZRGNzH+mNo#I`vI4~82EnQN5 z#UI4bG~xR1bjU~07|dc2lEX{Lp%+xqT~lE_VDS`m&^NV5md!_7g1IXdg7pu^?}=fl zqZ4z#Xtl^!&kiYdKT5g#X#BtK@FrQhgQa?Eoy>{iC&_dQ2~jj{kqnU@aK!U}_+oLX zBXrusShh9PWxf$C{#arOdqX;H*75Z8*b){%fkMzmhH1VQt8Pu43?>EQm3Lp-3>;(9 za%S41D`n4I-`)N$rfb{Zx6-7q7zLLCs*&%iJTBAXRIJc2^wEPjH@9P7TBV%|WV}qm z$~?109{QohrZC@pwlfCLj@& z&mQ7G81sWs%?6TPl~V;@0C{}qvbleZy6`S4-gTS(fp64cJJ&G*cO z8PC)13ccf%Ax6%Q2#t)}s>!6T%~CX*Qia$exrCp|c^c-Em}A+RB!9Kck^U3RziVx4 zMO)g2rk3O{@>T2XFzIrxl|VZn>WS+jo85_j#NYQ>--T{Zkg<>$JTSxNhh7V64C zK?=x2-?T?HLHGh%s&XJC&stTG(9jq&^R9`fjv}iu|EZ-FJ0+8If3%$XsUv0fvewj8 zdu5o%aQ5!hCp-y9rcLAVv|@+lMcS^XtcB8fn#DJz398*RlQf_FA_gbCI@11}i>A}l zN0#{LZ1W#~eEmY2lhptge5q*8I0*|q>EMrI zgRB}q2AX4C9_}=%WsJ(EOf=qS`SLW3R23VotmPr}LXC{9mghwXbbl86OOOrc#inW~jaV+mZ=^EJxkfmmb$h!tRIP6vhf+ic3Yo z+~J0NEyx-5%?_uLFxzSEM2P%XBoA&?$_|~BA%8X6M5+)XBRi+>2?{PFr*~OUqhrT( zk9{#HTvu84a)6@ zKf)UfK^gj|nAGlx=*!Qa#+>=2=|bltf0Y}#`Ee0F<8RDt^md0n} zLJyS|`QV#>hXuGVuUtt}=<$zAeaOAAhk^jw^uv>ksTgK@92V}>T4N2MRHl?Q6qCH5 zSH9#Pn4;<866y=UV%7Dj#im7-U_zJ3PIyv)qtK$N81`2`L%>~|sUhD-J;WeaSP!@J ziqstS-$C>Ea7ta_GH02rfv{jBA1ZCXY{^Z_8S%sH7{LM*^#VDS9eq)$59x&TW&~Au zc^{Jfo$68~u>2(9kY@F$YH9CgvxP|P4hKr&>xO40?I9LZP7k?}#EYp}6+^Z1Tc)2K zn=atUTUhW@+)<*mlvbjTzR{iKKv?464mzn}_Y7X?dXZ@rs^=w%c;O{;T}e_WyVAJ`lk_IEJ`Aup44{;A4I~yL!oG-^-xjTw)e@^U$X)z5dJi7R&q$)_ z?b`v;h`8^=Nz$n@MsJN0{Mhgoj4VtP=LdPfL;+w+n zj{EnRy`GrLuQns-?RNRhZT&Me#-q1H7t;wi&%5|9g-Zv6o@DE*^W7eTygO9+bKjIl z>y7-N+qROImS*n6`<40pJ^w|KoP}viU(*@iHlFZiF!e-T;ppbk&t%~sWYX2aAEpjA z)2Dz`-u|i3UOsn3za|cXN}{!T)^+ z`GcNMAz;t$L?gXK<_UH_&$Y!pp=+|0i9w=E%%e6nt zU3@VaVw@WCg4EJqQRS#6?ryJQ{LJ<|dk8Kje#8}c6>=onF!V%z`M+1PpsrNDJxK`D zn&9bqMY*1k^gaJH%*T9vBZpJ^O+3H!j>(}r8RoTc*IynIU39csxdar=_kcIR zes|XR(A_JOXJoR|uX|nbk1S-%u;L8(2TC29!D+HpyLWO@Ftbj&+XWZ?JRGg>vq@2^ zk8%*G7uQ01EHbQF3`mq+?gT0~v12N>W$!L9K;%l0TxSV{5X}5RpldREYo%O3a1~Qk z0l&m9nkkBA;{-C5CrZjf$qycbDpSBA!ESwUjOyUl*fUxH*-_y-(hJAnk*Bw7WJS!IUHs&8I#b0k?=32X zs48*{4$DCjMPYM`(=+evm8|qT1sI21FkWESZy5?#d&FPxaTJ481vXl8({%8eT%Dh^ z4GqO+cM+(S*q|tOFPNXH!`gMKl^;bS)b+h97Y15Nooe{HV4Hdhw&#`&9&53be$dES97=ChF_!FlQmPnOpDvMwDHD2C8OeT6V`I28;m{IR z|1!SLZIR6M^cQQ(5lYirq1;u3HRM_4-5RkL6d_`#Z zELtXiLgJxhBN|{WPM4j1Kg%qgm9<8l^3so0gmhm`u*;D(f6k%ad_dBvwDNCk^ojE# z2@epxCTa#P!uQc~7n};!+xNza7Pa2wgKgEL#An_7j%}aA&Eww+k#)y=G~M-I`?o(- zauFh#L~T@+#mZD|&lg0Bibc9MaSP5B=?zQdSBOMO#H=Rr=*U?q^~ZZChFRy5Ne@2g6wvx6&&yXUyd{g z>;3%1WRv^^^*%}$Npg_-n&5GwE8g8~^fz(h>(Zz~&mtsS1#QUIL}Mt@+@quN0fnxCJDo4brC zRKM0a9Q2%nPYi=4Z89hyG-Jl#c|HgdO!w;fTmXKV$#ToPA0i_ufWrg%bgT9YP*MK} zaagB2mUAAP4-(#?9^c&L>CM&YMR>Nc?kF{en&6isk5A_28cb3BKPwmY1Nb`7q8doE zr+T<(^7-k{juJ8jIQY^VBQEg^!1nd#vdV5ew@Y!B8Xu?e_REV(UZ+egZ3_QIgbOjo zhqPzRG&iF|8h@JGv(T~}b8>PdPP5b-pNS#4IuFF^`b%+ps_S2{n%$*B1uJ(+!f9U& zt>dVF-k9?fZu9O8!#NS4xbT9AaD3)3-AJHy4xVSr5f|o%{;qJl=3VHbN19nW6TrC& z8N%c3=^#Y47%#pLMF7&dLw|IJIw4v&nubLx1n+c5yTvhJj*aHhJ4Rmx267mFUv5M_ zXD6FN__vU{-JCPUh>KyEzw8{f3bme?G{QJ`kvfzev6v+^#zk|sO>P0ZT}KipvXv9j z?5x4Jo}^Tf#j%*$*Lk!y`LJTVH99#WpJ`$Id;ZCir6E2wEn7uI20gf;zR(U`|dxK;SrMdEP2Vfy~3 zi%it9VwXMxt=_e^_*fyZ5i-FMMQ&zzt}QY80jDC>chySaN2H^ar`vAqdJTPTuhHz6 z*a95BR&jUTqI?3xTLr)S|5-EgI?z$w)IpP$#fv4L{)9d7mPd-;!8N`)gY)Q;kr9BN%2vOI%_4ZcpYWJyi3R;=$|j!^lo+yctj>&tE~T<%jHL;D4jqGBKz->lWkoE z2IXe72^-gaN;$?utF%V7gXuQCyIXKAg%S{gzP^rr0aoC<#beRpm+!l{ad2Sq{i2I~ zd4;@peB1=y4HT4Gi{(2bTsrYit(Y-)d{Pty9%07zNQm)mOQyS)`5uS!P+Ow)X@1cv zUJM_0IXrz2#P4uF;X-sxvGj7e*OS}YQpA~I+>9y2gtT)#)K)r*Ss^0!?upu3B<$Rq zVm65jqSVLoGf_%VTlZBZHKUhJCifX?_G4jVdf6LZpi3yzg>h2`8C|vE6c4?|R}Z|% z2{>r2|A$oo(jLMO3ox+|^%{=EN?2{tZd&x?yzv154lDj9EALDZin z@i~lf%s>f+Y2}Cinj0HSoNoz?W%3}0_wDmtHbtY-Fk0&p&AFD5<;|Kum}#zMi**sI z^?A1dku0a9{6P`T4->L``de#rKIkutWrwUF62Roik5$F7m4fMkhuC>t(F&O z@lajG79gn7aLi}2YAld#ksWqcMl~O^opPM-cvYOIYSny^9~WuqqXk!9Tzl_ z-N>Pf=o8+QR)0WTAn~5%wZHft&ugF4Q{1uHaVnNFsr$!p>6jvZM(X)0Jv^ad?M}M7 zh_v5Z;DNlE4~dDGT?z00uJqI*eN$MK%~kG!0mkX4LcJGu4xz+?2KE0vtkhjeY?#Dl z%W@lLwCvi5=M>Ki7Vf{&Cb}~~!AjA%xcOKSbZ`GddE~vGFzZv2ypa4ywzdu2E*Cya zLXPA50_6Kef(}-r!s^BKSuP)f9+4vI5&^JuvHKD4G31IA>TyPPx*v6hJ`aDy*m`0v z|9?v<7EbRfxx?bWN=&JLhEdM8=Uz9zWF(N0j6jS{J6 z`}J!jj%nxv3T9fV?Tt53oD^<~vGhvBf^YecHb%dyWwC>p`T+d43EL;( z|10dw!c4ZcsuOU&{vR!qE}hTebB44S8QP)H~TygAG2mm{}pd76MaTDia!B{qKotk!952EG5DdXouM5y%ZwXL|sLcoc}f zuz&Fa3YjwJoh~pCg(^UIf}w^bRLDtKBdR+2yY931;Tlc#J+h(yTB5^d-2|;_UWzWk zUzGS!2??zdNn2&A?l@N@X2-?OFnHIkTSuV`e^!fZy_9Sw(H1&!M?g%&^UTqYvMVd2 z2*NzY#=c;ksfeI3hS?((O>1lxBp+?qi}uo_?lT##I|daLbCP=dxl4L6vgm>)*ZS60 zfw;Ih8lA2V2*oOqck|Qoz{~JcVDkk~zUUwxRKS#gL6j`a(_Fx!x3I`&ZAg@kOe__P ztkTTpE)PYzN-QCV-r=8h1@3eTLj~#jcd>7LP-n>|z@lu$M9IFsTdf;249>K!doH=2 zP8X~{8mv8#fYzVe1_dR~#KqT7FSB&MxuC_)K%hlAFx0I}EZDvO3OJ9{ zpHES~i0-;1$oonuI{Mj;lJg5QiU2$H=%sGKCkJx8mSrbi4TDe?IN}8`fS|)y1c_ul zJg*;?r3=nYo;3Hj9k`m-n()5zyVczdNJN4{%h$*zTL5i9;JGijeC??hpf`JwI}sRqP)A4l zuC21PafQaM<&8t(@rv$pq4<*EVLJk((YWEj+THS0(t2*N*B?1T7EYrY6=eY=MW1** zVp0W~W9%`l{n;<&bEReZ87n;AuH5b*J_pCid46b4ypx8B?Sc3v)xqLERuV;YoYD?H z?rl;^0S68B%(#F8j@F>qZN(fNm7s+km!1|RrE%xhk8*vl6W+K4f?Vj5&FV-j|>DB*uvcinfuTJ()c|ioAiBcqo1Aqbg#*fwh|{?V)HHiNnPBB3A_d_;Sd@E z5N4n&6$ce`vVAETnrvm+5Kvq^Zo>^+I9`Wfo$WK*Ww0M02|!@#KB18pP`*zQpI*~W@>;t=o} ztS1Z-)yj4mca^p$CsLNHEi$t|@DeE*Z_x_dRvu6*p-?7~+5f1rvZ&-gE)*ZJ_52k9 z-5=)J-JCrd5Dlz>b{zEpt(>3h*kE9w=+?FjS!MUwnZBr?Ti8u>{fP_$Pm->f*DDtS zeb89dPHA{{F!9eT9fVvRD>~sii?%fthj+)o?zbT4YkmfTvd{g?C9Vyot~JqDtiuJ@ zRDK)Z`FD+C?#IZ+o-T}A-)#p;WABnYAMY3O*5vWgf$%K~9ZicmB8R!}THF!Em=!X& zpin{3i5oXWOY%~MdNau9>jreyCi}vTi0?X%p*IySr&J~F6Q1h#s*V4dqvk?_O;u>q zO(&_P2R}c9kG-Vj>FcpHC^bL1A;~Xpb69Vj#4t1Ue^G;JaiGXWY#Qe%6+>0oG~sO+ z20dArqlpmdsEZkTB)Ye083)wx#}P{h<&O}c9YrYc3Ui^AN$|%RWuBOUvd>d`2zDr5 z;m`Fi>Za{ozxEKm#c!XAxB`vj_)j(a#MIc0?sX=OxR#sS?EmG7_~5skT-o>^oo0{{gL2} zY61*WY4?5h(2~yjyt{`N>%s*0Xz|xtuOC_Hb+WzfmOBsLK<#sx zv7oew5>o{Kh<+1br|op4N&)MXH9cuI7QMt6alT^7bRnt*?oc?86D*e)k#W*I>$!Gs zdd|f%OC%BrrpUk6f58zzhIIMQQ)OLA+Gi&fK{ln|x2X)&dvM3MgiYJ?i5F_F5}O&& z6OlzhtEvhCD|o-aLhOK?Jfey0>S_6VI)oqXmKhx@?1;HYkO!iP)>LfK8dxqwk{`v zkjJBoAqq-}BF*wzhdhC6%{)0r3iATe4;-t>icVe47C6!OoEJxXy`9%10ma$VJ*{X4 z3N44`T(p&=-%e<_=-b~{QDTvI@%lS=>Zmdgk>{Q_sY^`)(Qd^*S+u=laOT%!hJ9Ch zh3mG>g#)jENE-rHaX@Wn`j!iD%v7KtN~^hWNZy!m-TKbQ+Xg(B9yib)EOg8{6Mg2N zvXrm}24E_e1~lAU+eS_qclB7?dDEhWJ=(@0<5j#A=ART1eH^Hn9~F4@S71Xz;|o^( z5P?r$kiVxCe6Lh9@88iRf*;KJW8nCPv=x6p#9=|UNL|SnRz5cN*h=QT^4tIW*CpZU We~|h4jqRt`zz@#I((pdkJ@LQz=~a^e literal 0 HcmV?d00001 diff --git a/metadata.json b/metadata.json new file mode 100644 index 0000000..bbd1275 --- /dev/null +++ b/metadata.json @@ -0,0 +1,8 @@ +{ + "id": "dplace-dataset-ea", + "title": "D-PLACE dataset derived from Murdock et al. 1999 'Ethnographic Atlas'", + "description": "The Ethnographic Atlas (EA) describes cultural practices for 1291 societies, ranging from societies with complex agricultural economies and political systems to small hunter-gatherer groups. The societies are globally distributed with especially good coverage of Africa and western North America.", + "license": "CC-BY-NC-4.0", + "url": null, + "citation": "Murdock, G. P., R. Textor, H. Barry, III, D. R. White, J. P. Gray, and W. T. Divale. 1999. Ethnographic Atlas. World Cultures 10:24-136 (codebook)" +} \ No newline at end of file diff --git a/raw/README.md b/raw/README.md new file mode 100644 index 0000000..bc23a38 --- /dev/null +++ b/raw/README.md @@ -0,0 +1 @@ +The Ethnographic Atlas (EA) describes cultural practices for 1291 societies, ranging from societies with complex agricultural economies and political systems to small hunter-gatherer groups. The societies are globally distributed with especially good coverage of Africa and western North America. diff --git a/raw/codes.csv b/raw/codes.csv new file mode 100644 index 0000000..d2ac337 --- /dev/null +++ b/raw/codes.csv @@ -0,0 +1,757 @@ +var_id,code,description,name +EA001,0,Zero to 5 percent dependence,0-5% +EA001,1,6 to 15 percent dependence,6-15% +EA001,2,16 to 25 percent dependence,16-25% +EA001,3,26 to 35 percent dependence,26-35% +EA001,4,36 to 45 percent dependence,36-45% +EA001,5,46 to 55 percent dependence,46-55% +EA001,6,56 to 65 percent dependence,56-65% +EA001,7,66 to 75 percent dependence,66-75% +EA001,8,76 to 85 percent dependence,76-85% +EA001,9,86 to 100 percent dependence,86-100% +EA001,NA,Missing data,Missing data +EA002,0,Zero to 5 percent dependence,0-5% +EA002,1,6 to 15 percent dependence,6-15% +EA002,2,16 to 25 percent dependence,16-25% +EA002,3,26 to 35 percent dependence,26-35% +EA002,4,36 to 45 percent dependence,36-45% +EA002,5,46 to 55 percent dependence,46-55% +EA002,6,56 to 65 percent dependence,56-65% +EA002,7,66 to 75 percent dependence,66-75% +EA002,8,76 to 85 percent dependence,76-85% +EA002,9,86 to 100 percent dependence,86-100% +EA002,NA,Missing data,Missing data +EA003,0,Zero to 5 percent dependence,0-5% +EA003,1,6 to 15 percent dependence,6-15% +EA003,2,16 to 25 percent dependence,16-25% +EA003,3,26 to 35 percent dependence,26-35% +EA003,4,36 to 45 percent dependence,36-45% +EA003,5,46 to 55 percent dependence,46-55% +EA003,6,56 to 65 percent dependence,56-65% +EA003,7,66 to 75 percent dependence,66-75% +EA003,8,76 to 85 percent dependence,76-85% +EA003,9,86 to 100 percent dependence,86-100% +EA003,NA,Missing data,Missing data +EA004,0,Zero to 5 percent dependence,0-5% +EA004,1,6 to 15 percent dependence,6-15% +EA004,2,16 to 25 percent dependence,16-25% +EA004,3,26 to 35 percent dependence,26-35% +EA004,4,36 to 45 percent dependence,36-45% +EA004,5,46 to 55 percent dependence,46-55% +EA004,6,56 to 65 percent dependence,56-65% +EA004,7,66 to 75 percent dependence,66-75% +EA004,8,76 to 85 percent dependence,76-85% +EA004,9,86 to 100 percent dependence,86-100% +EA004,NA,Missing data,Missing data +EA005,0,Zero to 5 percent dependence,0-5% +EA005,1,6 to 15 percent dependence,6-15% +EA005,2,16 to 25 percent dependence,16-25% +EA005,3,26 to 35 percent dependence,26-35% +EA005,4,36 to 45 percent dependence,36-45% +EA005,5,46 to 55 percent dependence,46-55% +EA005,6,56 to 65 percent dependence,56-65% +EA005,7,66 to 75 percent dependence,66-75% +EA005,8,76 to 85 percent dependence,76-85% +EA005,9,86 to 100 percent dependence,86-100% +EA005,NA,Missing data,Missing data +EA006,NA,Missing data,Missing data +EA006,1,"Bride-price or bride-wealth, i.e., transfer of a substantial consideration in the form of livestock, goods, or money from the groom or his relatives to the kinsmen of the bride",Bride-wealth +EA006,2,"Bride-service, i.e., a substantial material consideration in which the principal element consists of labor or other services rendered by the groom to the bride's kinsmen",Bride-service +EA006,3,"Token bride-price, i.e., a small or symbolic payment only",Token bride-wealth +EA006,4,"Gift exchange, i.e., reciprocal exchange of gifts of substantial value between the relatives of the bride and groom, or a continuing exchange of goods and services in approximately equal amounts between the groom or his kinsmen and the bride's relatives",Gift exchange +EA006,5,"Exchange, i.e., transfer of a sister or other female relative of the groom in exchange for the bride",Woman exchange +EA006,6,"Absence of any significant consideration, or bridal gifts only",Insignificant +EA006,7,"Dowry, i.e., transfer of a substantial amount of property from the bride's relatives to the bride, the groom, or the kinsmen of the latter",Dowry +EA007,NA,Missing data,Missing data +EA007,1,"Bride-price or bride-wealth, i.e., transfer of a substantial consideration in the form of livestock, goods, or money from the groom or his relatives to the kinsmen of the bride",Bride-wealth +EA007,2,"Bride-service, i.e., a substantial material consideration in which the principal element consists of labor or other services rendered by the groom to the bride's kinsmen",Bride-service +EA007,3,"Token bride-price, i.e., a small or symbolic payment only",Token bride-wealth +EA007,4,"Gift exchange, i.e., reciprocal exchange of gifts of substantial value between the relatives of the bride and groom, or a continuing exchange of goods and services in approximately equal amounts between the groom or his kinsmen and the bride's relatives",Gift exchange +EA007,5,"Exchange, i.e., transfer of a sister or other female relative of the groom in exchange for the bride",Woman exchange +EA007,6,"Absence of any significant consideration, or bridal gifts only",Insignificant +EA007,7,"Dowry, i.e., transfer of a substantial amount of property from the bride's relatives to the bride, the groom, or the kinsmen of the latter",Dowry +EA007,8,"No alternate mode or supplementary practices, see ""Mode of marriage (primary)""",No alternate +EA008,NA,Missing data,Missing data +EA008,1,Independent nuclear families with monogamy,"Nuclear, monogamous" +EA008,2,Independent nuclear families with occasional or limited polygyny,"Nuclear, limited polygyny" +EA008,3,Independent polyandrous families,Polyandrous +EA008,4,"Independent polygynous families, unusual co-wives pattern (either polygyny is preferentially sororal, with cowives in separate quarters or it is typically non-sororal, with cowives in same quarters","Polygyny, atypical cowives pattern" +EA008,5,"Independent polygynous families, usual co-wives pattern (either polygyny is preferentially sororal, with cowives in same quarters, OR typically non-sororal, with cowives in separate quarters)","Polygyny, typical cowives pattern" +EA008,6,"Minimal extended or ""stem"" families, i.e., those consisting of only two related families of procreation (disregarding polygamous unions), particularly of adjacent generations",Minimal extended +EA008,7,"Small extended families, i.e., those normally embracing the families of procreation of only one individual in the senior generation but of at least two in the next generation. Such families usually dissolve on the death of the head",Small extended +EA008,8,"Large extended families, i.e., corporate aggregations of smaller family units occupying a single dwelling or a number of adjacent dwellings and normally embracing the families of procreation of at least two siblings or cousins in each of at least two adjacent generations",Large extended +EA009,NA,Missing data,Missing data +EA009,1,Monogamous,Monogamous +EA009,2,"Polygynous, with polygyny occasional or limited",Limited polygyny +EA009,3,"Polygynous, with polygyny common and preferentially sororal, and co-wives not reported to occupy separate quarters","Polygyny, sororal cohabit" +EA009,4,"Polygynous, with polygyny common and preferentially sororal, and co-wives typically occupying separate quarters","Polygyny, sororal separate quarters" +EA009,5,"Polygynous, with polygyny general and not reported to be preferentially sororal, and co-wives typically occupying separate quarters","Polygyny, non-sororal separate quarters" +EA009,6,"Polygynous, with polygyny general and not reported to be preferentially sororal, and co-wives not reported to occupy separate quarters","Polygyny, non-sororal cohabit" +EA009,7,Polyandrous,Polyandrous +EA010,NA,Missing data,Missing data +EA010,1,"Avunculocal, i.e., normal residence with or near the maternal uncle or other male matrilineal kinsmen of the husband",Avunculocal +EA010,2,"Ambilocal, i.e., residence established optionally with or near the parents of either the husband or the wife, depending upon circumstances or personal choice, where neither alternative exceeds the other in actual frequency by a ratio greater than two to one.",Ambilocal +EA010,3,"Optionally uxorilocal or avunculocal. This may be the case in a uxorilocal society where many men marry a MoBrDa and thus, in fact, live avunculocally",Avuncu-uxorilocal +EA010,4,Optionally patrilocal (or virilocal) or avunculocal,Avuncu-virilocal +EA010,5,"Matrilocal, i.e., normal residence with or near the female matrilineal kinsmen of the wife. Cf. U Uxorilocal",Matrilocal +EA010,6,"Neolocal, i.e., normal residence apart from the relatives of both spouses or at a place not determined by the kin ties of either",Neolocal +EA010,7,"Nonestablishment of a common household, i.e., where both spouses remain in their natal households, sometimes called ""duolocal"" or ""natolocal"" residence",Separate +EA010,8,"Patrilocal, i.e., normal residence with or near the male patrilineal kinsmen of the husband. Cf. V Virilocal",Patrilocal +EA010,9,"Uxorilocal. Equivalent to ""matrilocal"" but confined to instances where the wife's matrikin are not aggregated in matrilocal and matrilineal kin groups",Uxorilocal +EA010,10,"Virilocal. Equivalent to ""patrilocal"" but confined to instances where the husband's patrikin are not aggregated in patrilocal and patrilineal kin groups",Virilocal +EA010,11,"Ambilocal, with a marked preponderance of uxorilocal practice (i.e., uxorilocal option exceeds virilocal option in actual frequency by a ratio greater than two to one).",Ambi-uxo +EA010,12,"Ambilocal, with a marked preponderance of virilocal practice (i.e., virilocal option exceeds uxorilocal option in actual frequency by a ratio greater than two to one).",Ambi-viri +EA201,NA,Missing data,Missing data +EA201,1,Pattern of marital residence differs in the first years of marriage relative to later years.,Different +EA201,2,Pattern of marital residence in the first years of marriage not different from later years.,Same +EA011,NA,Missing data,Missing data +EA011,1,"Wife to husband's group (patrilocal, virilocal) or wife to husband's mother's brother's household (avunculocal)",Wife to husband +EA011,2,Couple to either group or neolocal,Ambi/neo-local +EA011,3,Husband to wife's group,Husband to wife +EA011,9,"Nonestablishment of a common household, i.e., where both spouses remain in their natal households, sometimes called ""duolocal"" or ""natolocal"" residence",Separate +EA012,NA,Missing data,Missing data +EA012,1,"Avunculocal, i.e., normal residence with or near the maternal uncle or other male matrilineal kinsmen of the husband",Avunculocal +EA012,2,"Ambilocal, i.e., residence established optionally with or near the parents of either the husband or the wife, depending upon circumstances or personal choice, where neither alternative exceeds the other in actual frequency by a ratio greater than two to one.",Ambilocal +EA012,3,"Optionally uxorilocal or avunculocal. This may be the case in a uxorilocal society where many men marry a MoBrDa and thus, in fact, live avunculocally",Avuncu-uxorilocal +EA012,4,Optionally patrilocal (or virilocal) or avunculocal,Avuncu-virilocal +EA012,5,"Matrilocal, i.e., normal residence with or near the female matrilineal kinsmen of the wife. Cf. U Uxorilocal",Matrilocal +EA012,6,"Neolocal, i.e., normal residence apart from the relatives of both spouses or at a place not determined by the kin ties of either",Neolocal +EA012,7,"Nonestablishment of a common household, i.e., where both spouses remain in their natal households, sometimes called ""duolocal"" or ""natolocal"" residence",Separate +EA012,8,"Patrilocal, i.e., normal residence with or near the male patrilineal kinsmen of the husband. Cf. V Virilocal",Patrilocal +EA012,9,"Uxorilocal. Equivalent to ""matrilocal"" but confined to instances where the wife's matrikin are not aggregated in matrilocal and matrilineal kin groups",Uxorilocal +EA012,10,"Virilocal. Equivalent to ""patrilocal"" but confined to instances where the husband's patrikin are not aggregated in patrilocal and patrilineal kin groups",Virilocal +EA012,11,"Ambilocal, with a marked preponderance of uxorilocal practice (i.e., uxorilocal option exceeds virilocal option in actual frequency by a ratio greater than two to one).",Ambi-uxo +EA012,12,"Ambilocal, with a marked preponderance of virilocal practice (i.e., virilocal option exceeds uxorilocal option in actual frequency by a ratio greater than two to one).",Ambi-viri +EA013,NA,Missing data,Missing data +EA013,1,"Wife to husband's group (patrilocal, virilocal) or wife to husband's mother's brother's household (avunculocal)",Wife to husband +EA013,2,Couple to either group or neolocal,Ambi/neo-local +EA013,3,Husband to wife's group,Husband to wife +EA013,4,No common residence,Separate +EA013,9,No alternate form,No alternate +EA014,NA,Missing data,Missing data +EA014,1,"Avunculocal, i.e., normal residence with or near the maternal uncle or other male matrilineal kinsmen of the husband",Avunculocal +EA014,2,"Ambilocal, i.e., residence established optionally with or near the parents of either the husband or the wife, depending upon circumstances or personal choice, where neither alternative exceeds the other in actual frequency by a ratio greater than two to one.",Ambilocal +EA014,3,"Optionally uxorilocal or avunculocal. This may be the case in a uxorilocal society where many men marry a MoBrDa and thus, in fact, live avunculocally",Avuncu-uxorilocal +EA014,4,Optionally patrilocal (or virilocal) or avunculocal,Avuncu-virilocal +EA014,5,"Matrilocal, i.e., normal residence with or near the female matrilineal kinsmen of the wife. Cf. U Uxorilocal",Matrilocal +EA014,6,"Neolocal, i.e., normal residence apart from the relatives of both spouses or at a place not determined by the kin ties of either",Neolocal +EA014,7,"Nonestablishment of a common household, i.e., where both spouses remain in their natal households, sometimes called ""duolocal"" or ""natolocal"" residence",Separate +EA014,8,"Patrilocal, i.e., normal residence with or near the male patrilineal kinsmen of the husband. Cf. V Virilocal",Patrilocal +EA014,9,"Uxorilocal. Equivalent to ""matrilocal"" but confined to instances where the wife's matrikin are not aggregated in matrilocal and matrilineal kin groups",Uxorilocal +EA014,10,"Virilocal. Equivalent to ""patrilocal"" but confined to instances where the husband's patrikin are not aggregated in patrilocal and patrilineal kin groups",Virilocal +EA014,11,No alternate form,No alternate +EA015,NA,Missing data,Missing data +EA015,1,"Demes, i.e., communities revealing a marked tendency toward local endogamy but not segmented into clan-barrios",Demes +EA015,2,"Segmented communities, i.e., those divided into barrios, wards, or hamlets, each of which is essentially a localized kin group, a clan or ramage, in the absence of any indication of local exogamy. Large extended families (see ""Domestic organization""), are treated as clan-barrios if they are integrated by a rule of ambilineal, matrilineal, or patrilineal descent.","Segmented, no exogamy" +EA015,3,Agamous communities without localized clans or any marked tendency toward either local exogamy or local endogamy,Agamous +EA015,4,"Exogamous communities, i.e., those revealing a marked tendency toward local exogamy without having the specific structure of clans",Exogamous +EA015,5,Segmented communities where a marked tendency toward local exogamy is also specifically reported,"Segmented, exogamy" +EA015,6,"Clan-communities, each consisting essentially of a single localized exogamous kin group or clan (see ""Organization of clan communities"" for more detail)",Clans +EA016,NA,Missing data,Missing data +EA016,1,Clan communities not segmented into clan barrios,Clans +EA016,2,Clan communities segmented into clan barrios,Clans with barrios +EA016,9,Communities not organized as exogamous clan communities,No exogamous clans +EA017,NA,Missing data,Missing data +EA017,1,None,None +EA017,2,"Absence of true patrilineal kin groups, but presence of patrilineal exogamy",Exogamy only +EA017,3,"Lineages of modest size, i.e., patrilineal kin groups whose core membership is normally confined to a single community or a part thereof",Lineages +EA017,4,"Sibs (""clans"" in British usage), i.e., lineages whose core membership normally comprises residents of more than one community",Sibs +EA017,5,"Phratries, i.e., maximal lineages when there are more than two in the society and when sibs are also present. Segmentary lineage systems in which segments of a lower order of magnitude are equivalent to sibs are also included in this category.",Phratries +EA017,6,"Moieties, i.e., maximal lineages when there are only two such in the society",Moieties +EA018,NA,Missing data,Missing data +EA018,1,No patrilineal exogamy,No exogamy +EA018,2,"Extension of incest taboos to known patrilineal kinsmen, provided such extension does not apply generally to bilateral kinsmen of equal remoteness",Extended taboo +EA018,3,"Lineages of modest size, i.e., patrilineal kin groups whose core membership is normally confined to a single community or a part thereof",Lineages +EA018,4,"Sibs (""clans"" in British usage), i.e., lineages whose core membership normally comprises residents of more than one community",Sibs +EA018,5,"Phratries, i.e., maximal lineages when there are more than two in the society and when sibs are also present. Segmentary lineage systems in which segments of a lower order of magnitude are equivalent to sibs are also included in this category.",Phratries +EA018,6,"Moieties, i.e., maximal lineages when there are only two such in the society",Moieties +EA019,NA,Missing data,Missing data +EA019,1,None,None +EA019,2,"Absence of true matrilineal kin groups, but presence of matrilineal exogamy",Exogamy only +EA019,3,"Lineages of modest size, i.e., matrilineal kin groups whose core membership is normally confined to a single community or a part thereof",Lineages +EA019,4,"Sibs (""clans"" in British usage), i.e., lineages whose core membership normally comprises residents of more than one community",Sibs +EA019,5,"Phratries, i.e., maximal lineages when there are more than two in the society and when sibs are also present. Segmentary lineage systems in which segments of a lower order of magnitude are equivalent to sibs are also included in this category.",Phratries +EA019,6,"Moieties, i.e., maximal lineages when there are only two such in the society",Moieties +EA020,NA,Missing data,Missing data +EA020,1,No matrilineal exogamy,No exogamy +EA020,2,"Extension of incest taboos to known matrilineal kinsmen, provided extension does not apply generally to bilateral kinsmen of equal remoteness.",Extended taboo +EA020,3,"Lineages of modest size, i.e., matrilineal kin groups whose core membership is normally confined to a single community or a part thereof",Lineages +EA020,4,"Sibs (""clans"" in British usage), i.e., lineages whose core membership normally comprises residents of more than one community",Sibs +EA020,5,"Phratries, i.e., maximal lineages when there are more than two in the society and when sibs are also present. Segmentary lineage systems in which segments of a lower order of magnitude are equivalent to sibs are also included in this category.",Phratries +EA020,6,"Moieties, i.e., maximal lineages when there are only two such in the society",Moieties +EA021,NA,Missing data,Missing data +EA021,1,"Bilateral descent as inferred from the absence of reported ambilineal, matrilineal, or patrilineal kin groups, kindreds being absent or unreported",Bilateral inferred +EA021,2,"Kindreds: bilateral descent with specifically reported kindreds, i.e., Ego-oriented bilateral kin groups or categories",Bilateral kindreds +EA021,3,"Ambilineal descent inferred from the presence of ambilocal extended families, true ramages being absent or unreported",Ambilineal +EA021,4,"Ramages, i.e., ancestor-oriented ambilineal kin groups, if they are agamous, endogamous, or not specifically stated to be exogamous",Ramages +EA021,5,Exogamous ramages specifically reported,Exogamous ramages +EA021,6,"Bilateral descent with reported or probable quasi-lineages, i.e., cognatic groups approximating the structure of lineages but based on filiation rather than on unilineal or ambilineal descent",Quasi-lineages +EA021,9,Absence of cognatic kin groups as inferred from the presence of unilineal descent,No cognatic kin +EA022,NA,Missing data,Missing data +EA022,2,"Kindreds: bilateral descent with specifically reported kindreds, i.e., Ego-oriented bilateral kin groups or categories",Kindreds +EA022,4,"Ramages, i.e., ancestor-oriented ambilineal kin groups, if they are agamous, endogamous, or not specifically stated to be exogamous",Ramages +EA022,9,No secondary cognatic groups,No secondary groups +EA023,NA,Missing data,Missing data +EA023,1,"Duolateral cross-cousin marriage permitted, i.e., marriage allowed with either MoBrDa or FaSiDa but forbidden with a parallel cousin",Cross-cousin +EA023,2,Duolateral marriage permitted with paternal cousins only (FaBrDa or FaSiDa),Paternal only +EA023,3,Duolateral marriage permitted with maternal cousins only (MoBrDa or MoSiDa),Maternal only +EA023,4,Duolateral marriage permitted with an uncle's daughter only (FaBrDa or MoBrDa),FaBrDa/MoBrDa only +EA023,5,Duolateral marriage permitted with an aunt's daughter only (FaSiDa or MoSiDa),FaSiDa/MoSiDa only +EA023,6,"Unilateral: only matrilateral cross-cousin marriage permitted, i.e., with a MoBrDa",Matrilateral cross only +EA023,7,"Nonlateral marriage, i.e., unions forbidden with any first or second cousin",No first/second cousins +EA023,8,"Nonlateral marriage, evidence available only for first cousins",No first cousins +EA023,9,"Unilateral: only patrilateral cross-cousin marriage permitted i.e., with a FaSiDa",Patrilateral cross only +EA023,10,"Quadrilateral marriage, i.e., marriage allowed with any first cousin",Any first cousins +EA023,11,Nonlateral marriage in which all first cousins and some but not all second cousins are forbidden as spouses,Some second only +EA023,12,Nonlateral marriage in which unions are forbidden with any first cousin but are permitted with any second cousin (or at least any who is not a lineage mate),Only second cousins +EA023,13,"Trilateral marriage, i.e., marriage allowed with any first cousin except an orthocousin or lineage mate",Trilateral +EA024,NA,Missing data,Missing data +EA024,1,"Quadrilateral marriage, i.e., marriage allowed with any first cousin",Quadrilateral +EA024,2,"Trilateral marriage, i.e., marriage allowed with any first cousin except an orthocousin or lineage mate",Trilateral +EA024,3,Two of four first cousins marriageable,Duolateral +EA024,4,One of four first cousins marriageable,Unilateral +EA024,5,Nonlateral marriage in which unions are forbidden with any first cousin but are permitted with any second cousin (or at least any who is not a lineage mate),Only second cousins +EA024,6,Nonlateral marriage in which all first cousins and some but not all second cousins are forbidden as spouses,Some second only +EA024,7,Nonlateral marriage when evidence is available only for first cousins,No first cousins +EA024,8,"Nonlateral marriage, i.e., unions forbidden with any first or second cousin",No first/second cousins +EA025,NA,Missing data,Missing data +EA025,1,"Duolateral, symmetrical preference for MoBrDa or FaSiDa",Cross-cousin: either +EA025,2,"Duolateral, matrilateral preference (MoBrDa)",Cross-cousin: matri +EA025,3,"Duolateral, patrilateral preference (FaSiDa)",Cross-cousin: patri +EA025,4,"Duolateral, with maternal cousins only and MoBrDa preferred",Maternal: MoBrDa +EA025,5,Unilateral: matrilateral cross-cousin marriage to MoBrDa preferred rather than merely permitted,Uni: MoBrDa +EA025,6,Unilateral: patrilateral cross-cousin marriage to FaSiDa preferred rather than merely permitted,Uni: FaSiDa +EA025,7,"Quadrilateral, where FaBrDa is the preferred mate",All: FaBrDa +EA025,8,"Quadrilateral, symmetrical preference (FaSiDa or MoBrDa)",All: cross +EA025,9,"Quadrilateral, matrilateral preference (MoSi__ or MoBr__)",All: matri +EA025,10,"Nonlateral, with preference for particular second cross-cousins only, notably MoMoBrDaDa or FaMoBrSoDa, often reported of societies with subsection systems",Some second only +EA025,11,"Nonlateral, with second-cousin marriage preferred rather than merely permitted",Second cousins preferred +EA025,12,"Trilateral marriage, with preference for a bilateral cross-cousin (MoBrDa = FaSiDa).",Tri: bilateral +EA025,13,"Trilateral marriage, with preference for a matrilateral cross-cousin (MoBrDa)",Tri: matrilateral +EA025,14,"Trilateral marriage, with preference for a patrilateral cross-cousin (FaSiDa)",Tri: patrilateral +EA025,15,No preferred cousin marriages,None preferred +EA026,NA,Missing data,Missing data +EA026,1,A symmetrical cross-cousin is preferred spouse,Cross-cousin +EA026,2,MoBrDa is preferred spouse,MoBrDa +EA026,3,FaSiDa is preferred spouse,FaSiDa +EA026,4,FaBrDa is preferred spouse,FaBrDa +EA026,5,A second-cousin is preferred spouse,Second cousin +EA026,9,No preferred cousin marriage,None preferred +EA027,NA,Missing data,Missing data +EA027,1,"Crow, i.e., FaSiCh equated with Fa or FaSi and/or MoBrCh with Ch or BrCh(ws)",Crow +EA027,2,"Descriptive or derivative, rather than elementary, terms employed for all cousins",Descriptive +EA027,3,"Eskimo, i.e., FaBrCh, FaSiCh, MoBrCh, and MoSiCh equated with each other but differentiated from siblings",Eskimo +EA027,4,"Hawaiian, i.e., all cousins equated with siblings or called by terms clearly derivative from those for siblings",Hawaiian +EA027,5,"Iroquois, i.e., FaSiCh equated with MoBrCh but differentiated from both siblings and parallel cousins",Iroquois +EA027,6,"Omaha, i.e., MoBrCh equated with MoBr or Mo and/or FaSiCh with SiCh(ms) or Ch",Omaha +EA027,7,"Sudanese, i.e., FaSiCh and MoBrCh distinguished alike from siblings, parallel cousins, and each other but without conforming to either the Crow, the descriptive, or the Omaha patterns",Sudanese +EA027,8,"Mixed or variant patterns not adequately represented by any of the foregoing symbols. The details are given under ""Classification by Clusters.""",Mixed +EA028,NA,Missing data,Missing data +EA028,1,Complete absence of agriculture,No agriculture +EA028,2,"Casual agriculture, i.e., the slight or sporadic cultivation of food or other plants incidental to a primary dependence upon other subsistence practices",Casual +EA028,3,"Extensive or shifting cultivation, as where new fields are cleared annually, cultivated for a year or two, and then allowed to revert to forest or brush for a long fallow period",Extensive/shifting +EA028,4,"Horticulture, i.e., semi-intensive agriculture limited mainly to vegetable gardens or groves of fruit trees rather than the cultivation of field crops",Horticulture +EA028,5,"Intensive agriculture on permanent fields, utilizing fertilization by compost or animal manure, crop rotation, or other techniques so that fallowing is either unnecessary or is confined to relatively short periods",Intensive +EA028,6,Intensive cultivation where it is largely dependent upon irrigation,Intensive irrigated +EA029,NA,Missing data,Missing data +EA029,1,No agriculture,No agriculture +EA029,2,"Non-food crops only, e.g., cotton or tobacco",Non-food +EA029,3,"Vegetables, e.g., cucurbits, greens, or legumes, when more important than other crops",Vegetables +EA029,4,"Tree fruits, e.g., bananas, breadfruit, coconuts, or dates, when more important than cereal grains and root crops. Sago, unless specifically reported to be cultivated, is treated as a gathered product rather than a cultivated one",Tree-fruits +EA029,5,"Roots or tubers, e.g., manioc, potatoes, taro, or yams, when more important than cereal grains and at least as important as tree crops or vegetables",Roots/tubers +EA029,6,"Cereal grains, e.g., maize, millet, rice, or wheat, when at least as important as any other type of crop",Cereals +EA030,NA,Missing data,Missing data +EA030,1,Fully migratory or nomadic bands,Nomadic +EA030,2,"Seminomadic communities whose members wander in bands for at least half of the year but occupy a fixed settlement at some season or seasons, e.g., recurrently occupied winter quarters",Seminomadic +EA030,3,"Semisedentary communities whose members shift from one to another fixed settlement at different seasons or who occupy more or less permanently a single settlement from which a substantial proportion of the population departs seasonally to occupy shifting camps, e.g., during transhumance",Semisedentary +EA030,4,"Compact but impermanent settlements, i.e., villages whose location is shifted every few years",Impermanent +EA030,5,Neighborhoods of dispersed family homesteads,Dispersed homesteads +EA030,6,Separated hamlets where several such form a more or less permanent single community,Hamlets +EA030,7,"Compact and relatively permanent settlements, i.e., nucleated villages or towns",Villages/towns +EA030,8,Complex settlements consisting of a nucleated village or town with outlying homesteads or satellite hamlets. Urban aggregations of population are not separately indicated since EA031 deals with community size,Complex permanent +EA031,NA,Missing data,Missing data +EA031,1,Fewer than 50 persons,<50 +EA031,2,From 50 to 99 persons,50-99 +EA031,3,From 100 to 199 persons,100-199 +EA031,4,From 200 to 399 persons,200-399 +EA031,5,"From 400 to 1,000 persons",400-1000 +EA031,6,"More than 1,000 persons in the absence of indigenous urban aggregations of more than 5,000",1000-5000 +EA031,7,"One or more indigenous towns of more than 5,000 inhabitants but none of more than 50,000",5000-50000 +EA031,8,"One or more indigenous cities with more than 50,000 inhabitants",50000+ +EA032,NA,Missing data,Missing data +EA032,2,Independent families (may be nuclear or polygynous),Independent families +EA032,3,Extended families,Extended families +EA032,4,Clan-barrios,Clan-barrios +EA033,NA,Missing data,Missing data +EA033,1,"No political authority beyond community (e.g., autonomous bands and villages)",Acephalous +EA033,2,"One level (e.g., petty chiefdoms)",One level +EA033,3,"Two levels (e.g., larger chiefdoms)",Two levels +EA033,4,"Three levels (e.g., states)",Three levels +EA033,5,"Four levels (e.g., large states)",Four levels +EA034,NA,Missing data,Missing data +EA034,1,A high god absent or not reported in substantial descriptions of religious beliefs,Absent +EA034,2,A high god present but otiose or not concerned with human affairs,Otiose +EA034,3,A high god present and active in human affairs but not offering positive support to human morality,"Active, but not supporting morality" +EA034,4,"A high god present, active, and specifically supportive of human morality","Active, supporting morality" +EA035,NA,Missing data,Missing data +EA035,1,No games of any of the three types,No games +EA035,2,"Games of physical skill only, whether or not they may also involve incidental elements of chance or strategy, e.g., foot racing, wrestling, the hoop-and-pole game",Physical skill only +EA035,3,"Games of chance only, with no significant element of either physical skill or strategy involved, e.g., dice games",Chance only +EA035,4,Games of physical skill and of chance both present,Physical skill and chance +EA035,5,"Games of strategy only, involving no significant element of physical skill, e.g., chess, go, poker. Whether or not an element of chance is also involved is considered irrelevant",Strategy only +EA035,6,"Games of physical skill and of strategy present, but not games of chance",Strategy and physical skill +EA035,7,"Games of chance and of strategy present, but not games of physical skill",Strategy and chance +EA035,8,Games of all three types present,All types +EA036,NA,Missing data,Missing data +EA036,1,"No taboo, especially where the husband is expected to have intercourse with his wife as soon as possible after childbirth for the alleged benefit of the child",No taboo +EA036,2,"Short post-partum taboo, lasting not more than one month",Up to one month +EA036,3,Duration of from more than a month to six months,One to six months +EA036,4,Duration of from more than six months to one year,Six months to a year +EA036,5,Duration of from more than one year to two years,A year to two years +EA036,6,Duration of more than two years,More than two years +EA037,NA,Missing data,Missing data +EA037,1,Absent or not generally practiced,Absent +EA037,2,"Performed shortly after birth, i.e., within the first two months",Shortly after birth +EA037,3,"Performed during infancy, i.e., from two months to two years of age",Infancy +EA037,4,"Performed during early childhood, i.e., from two to five years of age",Early childhood +EA037,5,"Performed during late childhood, i.e., from six to ten years of age",Late childhood +EA037,6,"Performed during adolescence, i.e., from eleven to fifteen years of age",Adolescence +EA037,7,"Performed during early adulthood, i.e., from sixteen to 25 years of age",Early adulthood +EA037,8,"Performed during maturity, i.e., from 25 to 50 years of age",Maturity +EA037,9,"Performed in old age, i.e., after 50 years of age",Old age +EA037,10,"Circumcision customary, but the normal age is unspecified or unclear","Customary, age unclear" +EA038,NA,Missing data,Missing data +EA038,1,"Absence of segregation, adolescent boys residing and sleeping in the same dwelling as their mothers and sisters",No segregation +EA038,2,"Partial segregation, adolescent boys residing or eating with their natal families but sleeping apart from them, e.g., in a special hut or in a cattle shed",Partial +EA038,3,"Complete segregation, in which adolescent boys go to live as individuals with relatives outside the nuclear family, e.g., with grandparents or with a maternal or paternal uncle",Complete: outside nuclear family +EA038,4,"Complete segregation, in which adolescent boys go to live as individuals with non-relatives, e.g., as retainers to a chief or as apprentices to specialists",Complete: outside kin +EA038,5,"Complete segregation, in which boys reside with a group of their own peers, e.g., in bachelor dormitories, military regiments, or age-villages",Complete: own peers +EA039,NA,Missing data,Missing data +EA039,1,Absent (no plow animals),Absent +EA039,2,Plow cultivation not aboriginal but well established at the period of observation,Not aboriginal but present +EA039,3,Animals employed in plow cultivation prior to the contact period,Present +EA040,NA,Missing data,Missing data +EA040,1,"Absence or near absence of domestic animals other than bees, eats, dogs, fowl, guinea pigs, or the like",Absence or near absence +EA040,2,Pigs the only domestic animals of consequence,Pigs +EA040,3,Sheep and/or goats when larger domestic animals are absent or much less important,Sheep/goats +EA040,4,"Equine animals, e.g., horses, donkeys",Equine +EA040,5,"Deer, e.g., reindeer",Deer +EA040,6,"Camels or other animals of related genera, e.g., alpacas, llamas",Camelids +EA040,7,"Bovine animals, e.g., cattle, mithun, water buffaloes, yaks",Bovine +EA041,NA,Missing data,Missing data +EA041,1,Absence or near absence of milking,Absence or near absence +EA041,2,Domestic animals milked more often than sporadically,More than sporadically +EA042,NA,Missing data for at least one subsistence activity,Missing for at least 1 activity +EA042,1,Gathering contributes most,Gathering +EA042,2,Fishing contributes most,Fishing +EA042,3,Hunting contributes most,Hunting +EA042,4,Pastoralism contributes most,Pastoralism +EA042,5,Casual agriculture contributes most,Casual agriculture +EA042,6,Extensive agriculture contributes most,Extensive agriculture +EA042,7,Intensive agriculture contributes most,Intensive agriculture +EA042,8,Two or more sources contribute equally,Two or more sources +EA042,9,"Agriculture contributes most, type unknown","Agriculture, type unknown" +EA043,NA,Missing data,Missing data +EA043,1,"Patrilineal (EA017 > 1, EA019 = 1, EA021 = 9)",Patrilineal +EA043,2,"Duolateral (EA017 > 1, EA019 > 1, EA021 = 9 or EA021 = 0)",Duolateral +EA043,3,"Matrilineal (EA017 = 1, EA019 > 1, EA021 = 9)",Matrilineal +EA043,4,"Quasi-lineages (EA017 = 1, EA019 = 1, EA021 = 6)",Quasi-lineages +EA043,5,"Ambilineal (EA017 = 1, EA019 = 1, EA021 = 3 or EA021 = 4 or EA021 = 5)",Ambilineal +EA043,6,"Bilateral (EA017 = 1, EA019 = 1, EA021 = 1 or EA021 = 2)",Bilateral +EA043,7,"Mixed (EA017 and/or EA019 > 1,and EA021 not equal to 9)",Mixed +EA044,NA,Missing data,Missing data +EA044,1,"Males alone perform the activity, female participation being negligible",Males alone +EA044,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA044,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA044,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA044,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA044,6,"Females alone perform the activity, male participation being negligible",Females alone +EA044,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA044,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA044,9,The activity is absent or unimportant in the particular society,Activity is absent +EA045,NA,Missing data,Missing data +EA045,1,"Males alone perform the activity, female participation being negligible",Males alone +EA045,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA045,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA045,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA045,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA045,6,"Females alone perform the activity, male participation being negligible",Females alone +EA045,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA045,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA045,9,The activity is absent or unimportant in the particular society,Activity is absent +EA046,NA,Missing data,Missing data +EA046,1,"Males alone perform the activity, female participation being negligible",Males alone +EA046,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA046,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA046,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA046,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA046,6,"Females alone perform the activity, male participation being negligible",Females alone +EA046,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA046,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA046,9,The activity is absent or unimportant in the particular society,Activity is absent +EA047,NA,Missing data,Missing data +EA047,1,"Males alone perform the activity, female participation being negligible",Males alone +EA047,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA047,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA047,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA047,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA047,6,"Females alone perform the activity, male participation being negligible",Females alone +EA047,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA047,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA047,9,The activity is absent or unimportant in the particular society,Activity is absent +EA048,NA,Missing data,Missing data +EA048,1,"Males alone perform the activity, female participation being negligible",Males alone +EA048,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA048,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA048,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA048,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA048,6,"Females alone perform the activity, male participation being negligible",Females alone +EA048,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA048,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA048,9,The activity is absent or unimportant in the particular society,Activity is absent +EA049,NA,Missing data,Missing data +EA049,1,"Males alone perform the activity, female participation being negligible",Males alone +EA049,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA049,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA049,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA049,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA049,6,"Females alone perform the activity, male participation being negligible",Females alone +EA049,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA049,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA049,9,The activity is absent or unimportant in the particular society,Activity is absent +EA050,NA,Missing data,Missing data +EA050,1,"Males alone perform the activity, female participation being negligible",Males alone +EA050,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA050,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA050,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA050,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA050,6,"Females alone perform the activity, male participation being negligible",Females alone +EA050,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA050,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA050,9,The activity is absent or unimportant in the particular society,Activity is absent +EA051,NA,Missing data,Missing data +EA051,1,"Males alone perform the activity, female participation being negligible",Males alone +EA051,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA051,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA051,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA051,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA051,6,"Females alone perform the activity, male participation being negligible",Females alone +EA051,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA051,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA051,9,The activity is absent or unimportant in the particular society,Activity is absent +EA052,NA,Missing data,Missing data +EA052,1,"Males alone perform the activity, female participation being negligible",Males alone +EA052,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA052,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA052,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA052,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA052,6,"Females alone perform the activity, male participation being negligible",Females alone +EA052,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA052,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA052,9,The activity is absent or unimportant in the particular society,Activity is absent +EA053,NA,Missing data,Missing data +EA053,1,"Males alone perform the activity, female participation being negligible",Males alone +EA053,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA053,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA053,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA053,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA053,6,"Females alone perform the activity, male participation being negligible",Females alone +EA053,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA053,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA053,9,The activity is absent or unimportant in the particular society,Activity is absent +EA054,NA,Missing data,Missing data +EA054,1,"Males alone perform the activity, female participation being negligible",Males alone +EA054,2,"Both sexes participate, but males do appreciably more than females","Both, males more" +EA054,3,Differentiation of specific tasks by sex but approximately equal participation by both sexes in the total activity,Differentiated but equal +EA054,4,Equal participation by both sexes without marked or reported differentiation in specific tasks,Equal participation +EA054,5,"Both sexes participate, but females do appreciably more than males","Both, females more" +EA054,6,"Females alone perform the activity, male participation being negligible",Females alone +EA054,7,"Sex participation irrelevant, especially where production is industrialized",Sex irrelevant +EA054,8,"The activity is present, but sex participation is unspecified in the sources consulted","Activity present, sex diff. unspecified" +EA054,9,The activity is absent or unimportant in the particular society,Activity is absent +EA055,NA,Missing data,Missing data +EA055,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA055,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA055,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA055,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA055,9,"Normally performed by many or most adult men, women, or both",Most adults +EA055,10,The activity is absent or unimportant in the particular society,Activity is absent +EA056,NA,Missing data,Missing data +EA056,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA056,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA056,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA056,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA056,9,"Normally performed by many or most adult men, women, or both",Most adults +EA056,10,The activity is absent or unimportant in the particular society,Activity is absent +EA057,NA,Missing data,Missing data +EA057,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA057,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA057,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA057,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA057,9,"Normally performed by many or most adult men, women, or both",Most adults +EA057,10,The activity is absent or unimportant in the particular society,Activity is absent +EA058,NA,Missing data,Missing data +EA058,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA058,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA058,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA058,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA058,9,"Normally performed by many or most adult men, women, or both",Most adults +EA058,10,The activity is absent or unimportant in the particular society,Activity is absent +EA059,NA,Missing data,Missing data +EA059,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA059,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA059,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA059,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA059,9,"Normally performed by many or most adult men, women, or both",Most adults +EA059,10,The activity is absent or unimportant in the particular society,Activity is absent +EA060,NA,Missing data,Missing data +EA060,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA060,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA060,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA060,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA060,9,"Normally performed by many or most adult men, women, or both",Most adults +EA060,10,The activity is absent or unimportant in the particular society,Activity is absent +EA061,NA,Missing data,Missing data +EA061,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA061,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA061,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA061,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA061,9,"Normally performed by many or most adult men, women, or both",Most adults +EA061,10,The activity is absent or unimportant in the particular society,Activity is absent +EA062,NA,Missing data,Missing data +EA062,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA062,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA062,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA062,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA062,9,"Normally performed by many or most adult men, women, or both",Most adults +EA062,10,The activity is absent or unimportant in the particular society,Activity is absent +EA063,NA,Missing data,Missing data +EA063,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA063,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA063,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA063,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA063,9,"Normally performed by many or most adult men, women, or both",Most adults +EA063,10,The activity is absent or unimportant in the particular society,Activity is absent +EA064,NA,Missing data,Missing data +EA064,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA064,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA064,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA064,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA064,9,"Normally performed by many or most adult men, women, or both",Most adults +EA064,10,The activity is absent or unimportant in the particular society,Activity is absent +EA065,NA,Missing data,Missing data +EA065,1,"Junior age specialization, i.e., the activity is largely performed by boys and/or girls before the age of puberty",Junior age +EA065,2,"Senior age specialization, i.e., the activity is largely performed by men and/or women beyond the prime of life",Senior age +EA065,3,"Craft specialization, i.e., the activity is largely performed by a small minority of adult males or females who possess specialized skills. Occupational castes are treated as instances of craft specialization",Craft +EA065,4,"Industrial specialization, i.e., the activity is largely removed from the domain of a division of labor by sex, age, or craft specialization and is performed industrialized mainly by techniques of production",Industrial +EA065,9,"Normally performed by many or most adult men, women, or both",Most adults +EA065,10,The activity is absent or unimportant in the particular society,Activity is absent +EA066,NA,Missing data,Missing data +EA066,1,"Absence of significant class distinctions among freemen (slavery is treated in EA070), ignoring variations in individual repute achieved through skill, valor, piety, or wisdom",Absence of distinctions +EA066,2,"Wealth distinctions, based on the possession or distribution of property, present and socially important but not crystallized into distinct and hereditary social classes",Wealth distinctions +EA066,3,"Elite stratification, in which an elite class derives its superior status from, and perpetuates it through, control over scarce resources, particularly land, and is thereby differentiated from a property-less proletariat or serf class",Elite stratification +EA066,4,"Dual stratification into a hereditary aristocracy and a lower class of ordinary commoners or freemen, where traditionally ascribed noble status is at least as decisive as control over scarce resources",Dual stratification +EA066,5,Complex stratification into social classes correlated in large measure with extensive differentiation of occupational statuses,Complex stratification +EA067,NA,Missing data,Missing data +EA067,1,"Absence of significant class distinctions among freemen (slavery is treated in EA070), ignoring variations in individual repute achieved through skill, valor, piety, or wisdom",Absence of distinctions +EA067,2,"Wealth distinctions, based on the possession or distribution of property, present and socially important but not crystallized into distinct and hereditary social classes",Wealth distinctions +EA067,3,"Elite stratification, in which an elite class derives its superior status from, and perpetuates it through, control over scarce resources, particularly land, and is thereby differentiated from a property-less proletariat or serf class",Elite stratification +EA067,4,"Dual stratification into a hereditary aristocracy and a lower class of ordinary commoners or freemen, where traditionally ascribed noble status is at least as decisive as control over scarce resources",Dual stratification +EA067,5,Complex stratification into social classes correlated in large measure with extensive differentiation of occupational statuses,Complex stratification +EA067,9,No secondary type,No secondary type +EA068,NA,Missing data,Missing data +EA068,1,Caste distinctions absent or insignificant,Absence of distinctions +EA068,2,"One or more despised occupational groups, e.g., smiths or leather workers, distinguished from the general population, regarded as outcastes by the latter, and characterized by strict endogamy",Despised occupation groups +EA068,3,"Ethnic stratification, in which a superordinate caste withholds privileges from and refuses to intermarry with a subordinate caste (or castes) which it stigmatizes as ethnically alien, e.g., as descended from a conquered and culturally inferior indigenous population, from former slaves, or from foreign immigrants of different race and/or culture",Ethnic stratification +EA068,4,Complex caste stratification in which occupational differentiation emphasizes hereditary ascription and endogamy to the near exclusion of achievable class statuses,Complex caste stratification +EA069,NA,Missing data,Missing data +EA069,1,Caste distinctions absent or insignificant,Absence of distinctions +EA069,2,"One or more despised occupational groups, e.g., smiths or leather workers, distinguished from the general population, regarded as outcastes by the latter, and characterized by strict endogamy",Despised occupation groups +EA069,3,"Ethnic stratification, in which a superordinate caste withholds privileges from and refuses to intermarry with a subordinate caste (or castes) which it stigmatizes as ethnically alien, e.g., as descended from a conquered and culturally inferior indigenous population, from former slaves, or from foreign immigrants of different race and/or culture",Ethnic stratification +EA069,4,Complex caste stratification in which occupational differentiation emphasizes hereditary ascription and endogamy to the near exclusion of achievable class statuses,Complex caste stratification +EA069,9,No secondary type,No secondary type +EA070,NA,Missing data,Missing data +EA070,1,Absence or near absence of slavery,Absence of slavery +EA070,2,"Incipient or nonhereditary slavery, i.e., where slave status is temporary and not transmitted to the children of slaves","Slavery, nonhereditary" +EA070,3,Slavery reported but not identified as hereditary or nonhereditary,"Slavery, no info on heritability" +EA070,4,Hereditary slavery present and of at least modest social significance,"Slavery, hereditary" +EA071,NA,Missing data,Missing data +EA071,1,Slavery never practiced,Slavery never practiced +EA071,2,"Slavery present in past, but not currently in existence",Past slavery +EA071,3,Slavery present currently and in past,Past and present slavery +EA072,NA,Missing data,Missing data +EA072,1,Patrilineal heir,Patrilineal heir +EA072,2,Matrilineal heir,Matrilineal heir +EA072,3,Nonhereditary succession through appointment by some higher authority,Nonhered: appointed by auth. +EA072,4,Nonhereditary succession on the basis primarily of seniority or age,Nonhered: seniority +EA072,5,"Nonhereditary succession through influence, e.g., of wealth or social status",Nonhered: influence +EA072,6,Nonhereditary succession through election or some other mode of formal consensus,Nonhered: election +EA072,7,Nonhereditary succession through informal consensus,Nonhered: inf. consensus +EA072,9,Absence of any office resembling that of a local headman,Absence of office +EA073,NA,Missing data,Missing data +EA073,1,Hereditary succession by a son,Son +EA073,2,Hereditary succession by a patrilineal heir who takes precedence over a son,Patrilineal heir +EA073,3,Hereditary succession by a sister's son,Sister's son +EA073,4,"Hereditary succession by a matrilineal heir who takes precedence over a sister's son, e.g., a younger brother",Matrilineal heir +EA073,5,Nonhereditary,Nonhereditary +EA073,9,Absence of any office resembling that of a local headman,Absence of office +EA074,NA,Missing data,Missing data +EA074,1,Absence of individual property rights in land or of any rule of inheritance governing the transmission of such rights,No inher. of real property +EA074,2,Matrilineal inheritance by a sister's son or sons,Matrilineal by sister's sons +EA074,3,Inheritance by matrilineal heirs who take precedence over sisters' sons,Matrilineal by heirs +EA074,4,"Inheritance by children, but with daughters receiving less than sons","Children, less for daughters" +EA074,5,Inheritance by children of either sex or both,Children +EA074,6,Inheritance by patrilineal heirs who take precedence over sons,Patrilineal by heirs +EA074,7,Patrilineal inheritance by a son or sons,Patrilineal by sons +EA075,NA,Missing data,Missing data +EA075,1,Equal or relatively equal distribution among all members of the category,Equally distributed +EA075,2,"Exclusive or predominant inheritance by the member of the category adjudged best qualified, either by the deceased or by his surviving relatives",Best qualified +EA075,3,"Ultimogeniture, i.e., predominant inheritance by the junior member of the category",Ultimogeniture +EA075,4,"Primogeniture, i.e., predominant inheritance by the senior member of the category",Primogeniture +EA075,9,Absence of inheritance of real property,No inher. of real property +EA076,NA,Missing data,Missing data +EA076,1,"Absence of individual rights to movable property or of any rule of inheritance governing the transmission of such rights. This includes the destruction, burial, or giving away of movable property",No inher. of mov. property +EA076,2,Matrilineal inheritance by a sister's son or sons,Matrilineal by sister's sons +EA076,3,Inheritance by matrilineal heirs who take precedence over sisters' sons,Matrilineal by heirs +EA076,4,"Inheritance by children, but with daughters receiving less than sons","Children, less for daughters" +EA076,5,Inheritance by children of either sex or both,Children +EA076,6,Inheritance by patrilineal heirs who take precedence over sons,Patrilineal by heirs +EA076,7,Patrilineal inheritance by a son or sons,Patrilineal by sons +EA077,NA,Missing data,Missing data +EA077,1,Equal or relatively equal distribution among all members of the category,Equally distributed +EA077,2,"Exclusive or predominant inheritance by the member of the category adjudged best qualified, either by the deceased or by his surviving relatives",Best qualified +EA077,3,"Ultimogeniture, i.e., predominant inheritance by the junior member of the category",Ultimogeniture +EA077,4,"Primogeniture, i.e., predominant inheritance by the senior member of the category",Primogeniture +EA077,9,"Absence of inheritance of movable property; includes the destruction, burial, or giving away of movable property",No inher. of mov. property +EA078,NA,Missing data,Missing data +EA078,1,Premarital sex relations precluded by a very early age of marriage for females,Precluded by early marriage +EA078,2,"Insistence on virginity; premarital sex relations prohibited, strongly sanctioned, and in fact rare","Prohibited, strongly sanctioned" +EA078,3,Premarital sex relations prohibited but weakly sanctioned and not infrequent in fact,Prohibited but weakly sanctioned +EA078,4,Premarital sex relations allowed and not sanctioned unless pregnancy results,"Permitted, sanction if pregnancy" +EA078,5,"Trial marriage; monogamous premarital sex relations permitted with the expectation of marriage if pregnancy results, promiscuous relations being prohibited and sanctioned",Trial marriage +EA078,6,Premarital sex relations freely permitted and subject to no sanctions,"Permitted, no sanctions" +EA079,NA,Missing data,Missing data +EA079,1,Semicircular,Semicircular +EA079,2,Circular,Circular +EA079,3,Elliptical or elongated with rounded ends,Elliptical +EA079,4,Polygonal,Polygonal +EA079,5,Rectangular or square,Rectangular +EA079,6,Quadrangular around (or partially around) an interior court,Quadrangular around interior +EA080,NA,Missing data,Missing data +EA080,1,"Subterranean or semi-subterranean, ignoring cellars beneath the living quarters",Subterranean +EA080,2,Floor formed by or level with the ground itself,Floor level with ground +EA080,3,"Elevated slightly above the ground on a raised platform of earth, stone, or wood",Elevated slightly +EA080,4,"Raised substantially above the ground on piles, posts, or piers",Raised substantially +EA081,NA,Missing data,Missing data +EA081,1,"Stone, stucco, concrete, or fired brick","Stone, stucco or brick" +EA081,2,"Plaster, mud and dung, or wattle and daub","Plaster, clay or similar" +EA081,3,"Wood, including logs, planks, poles, bamboo, or shingles","Wood, incl. bamboo" +EA081,4,Bark,Bark +EA081,5,Hides or skins,Hides or skins +EA081,6,"Felt, cloth, or other fabric",Fabric +EA081,7,"Mats, latticework, or wattle",Mats +EA081,8,"Grass, leaves, or other thatch","Grass, leaves or thatch" +EA081,9,"Adobe, clay, or dried brick","Adobe, clay or brick" +EA081,10,"Open walls, including cases where they can be temporarily closed by screens",Open walls +EA081,11,"Walls indistinguishable from roof or merging into the latter (see ""Roofing materials"" for details)",Walls not diff. from roof +EA082,NA,Missing data,Missing data +EA082,1,Rounded or semi-cylindrical,Rounded or semi-cylindrical +EA082,2,Dome shaped or hemispherical,Hemispherical +EA082,3,Beehive shaped with pointed peak,Beehive shaped +EA082,4,Conical,Conical +EA082,5,Semi-hemispherical,Semi-hemispherical +EA082,6,"Shed, i.e., with one slope",One slope +EA082,7,Flat or horizontal,Flat +EA082,8,"Gabled, i.e., with two slopes",Two slopes +EA082,9,"Hipped or pyramidal, i.e., with four slopes",Four slopes +EA083,NA,Missing data,Missing data +EA083,1,Stone or slate,Stone or slate +EA083,2,"Plaster, clay, mud and dung, or wattle and daub","Plaster, clay or similar" +EA083,3,"Wood, including logs, planks, poles, bamboo, or shingles","Wood, incl. bamboo" +EA083,4,Bark,Bark +EA083,5,Hides or skins,Hides or skins +EA083,6,"Felt, cloth, or other fabric",Fabric +EA083,7,Mats,Mats +EA083,8,"Grass, leaves, brush, or other thatch","Grass, leaves or thatch" +EA083,9,Earth or turf,Earth or turf +EA083,10,Ice or snow,Ice or snow +EA083,11,Tile or fired brick,Tile or fired brick +EA084,NA,Missing data,Missing data +EA084,1,Semicircular,Semicircular +EA084,2,Circular,Circular +EA084,3,Elliptical or elongated with rounded ends,Elliptical +EA084,4,Polygonal,Polygonal +EA084,5,Rectangular or square,Rectangular +EA084,6,Quadrangular around (or partially around) an interior court,Quadrangular around interior +EA085,NA,Missing data,Missing data +EA085,1,"Subterranean or semi-subterranean, ignoring cellars beneath the living quarters",Subterranean +EA085,2,Floor formed by or level with the ground itself,Floor level with ground +EA085,3,"Elevated slightly above the ground on a raised platform of earth, stone, or wood",Elevated slightly +EA085,4,"Raised substantially above the ground on piles, posts, or piers",Raised substantially +EA086,NA,Missing data,Missing data +EA086,1,"Stone, stucco, concrete, or fired brick","Stone, stucco or brick" +EA086,2,"Plaster, mud and dung, or wattle and daub","Plaster, clay or similar" +EA086,3,"Wood, including logs, planks, poles, bamboo, or shingles","Wood, incl. bamboo" +EA086,4,Bark,Bark +EA086,5,Hides or skins,Hides or skins +EA086,6,"Felt, cloth, or other fabric",Fabric +EA086,7,"Mats, latticework, or wattle",Mats +EA086,8,"Grass, leaves, or other thatch","Grass, leaves or thatch" +EA086,9,"Adobe, clay, or dried brick","Adobe, clay or brick" +EA086,10,"Open walls, including cases where they can be temporarily closed by screens",Open walls +EA086,11,"Walls indistinguishable from roof or merging into the latter (see ""Roofing materials"" for details)",Walls not diff. from roof +EA087,NA,Missing data,Missing data +EA087,1,Rounded or semi-cylindrical,Rounded or semi-cylindrical +EA087,2,Dome shaped or hemispherical,Hemispherical +EA087,3,Beehive shaped with pointed peak,Beehive shaped +EA087,4,Conical,Conical +EA087,5,Semi-hemispherical,Semi-hemispherical +EA087,6,"Shed, i.e., with one slope",One slope +EA087,7,Flat or horizontal,Flat +EA087,8,"Gabled, i.e., with two slopes",Two slopes +EA087,9,"Hipped or pyramidal, i.e., with four slopes",Four slopes +EA088,NA,Missing data,Missing data +EA088,1,Stone or slate,Stone or slate +EA088,2,"Plaster, clay, mud and dung, or wattle and daub","Plaster, clay or similar" +EA088,3,"Wood, including logs, planks, poles, bamboo, or shingles","Wood, incl. bamboo" +EA088,4,Bark,Bark +EA088,5,Hides or skins,Hides or skins +EA088,6,"Felt, cloth, or other fabric",Fabric +EA088,7,Mats,Mats +EA088,8,"Grass, leaves, brush, or other thatch","Grass, leaves or thatch" +EA088,9,Earth or turf,Earth or turf +EA088,10,Ice or snow,Ice or snow +EA088,11,Tile or fired brick,Tile or fired brick +EA090,NA,Insufficient information or not coded,Missing data +EA090,1,"Absence of any politicdal organization even at local level, e.g., where family heads acknowledge no higher political authority","Absence, even locally" +EA090,2,"Autonomous local communities, i.e., politically independent groups which do not exceed 1500 in average population",Autonomous communities +EA090,3,"Peace groups transcending the local community where the basis of unity is other than political, e.g., derived from reciprocal trade relations, defensive military agreements, or a common cult or age-grade organization",Peace groups among communities +EA090,4,"Minimal states, i.e., political integration even at the local level, e.g., where family heads acknowledge no higher political authority (1500 ヨ 10,000)",Minimal states +EA090,5,"Little states, i.e., political integration in independent units averaging between 10,000 and 100,000 in population",Little states +EA090,6,"States, i.e., political integration in large independent units averaging at least 100,000 in population",States +EA090,8,"Dependent societies lacking any political organization of their own, e.g., those forming an integral part of some larger political system and those governed exclusively and directly by agents of another and politically dominant society. Colonial governments operating through indirect rule are ignored.",Dependent societies +EA094,NA,Insufficient information or not coded,Missing data +EA094,11,Patrilineal succession where a son is preferred to a younger brother,"Patrilineal, son" +EA094,12,Patrilineal succession where a younger brother is preferred to a son,"Patrilineal, younger brother" +EA094,13,"Patrilineal succession other than younger brother or son, or where preference is unspecified","Patrilineal, other/unspecified" +EA094,24,Matrilineal succession where a sister's son is preferred to a younger brother,"Matrilineal, sister's son" +EA094,25,Matrilineal succession where a younger brother is preferred to a sister's son,"Matrilineal, yonger brother" +EA094,26,"Matrilineal succession other than sister's son or younger brother, or where preference is unspecified","Matrilineal, other/unspecified" +EA094,39,Nonhereditary succession through appointment of headmen by some higher political authority,"Nonhered, appointed by auth." +EA094,49,Nonhereditary succession through election or some other method of formal consensus,"Nonhered, election" +EA094,59,Nonhereditary succession through informal consensus or personal influence,"Nonhered, informal" +EA094,69,"Councils, i.e., absence of true headmen, political authroity at the local level being exercised exclusively by a council or other collective body","Nonhered, council" +EA094,99,"Absence of any indigenous political authority, as in societies lacking political integration even at the local level and in some dependent societies",Absence of political auth. +EA112,NA,Missing data,Missing data +EA112,1,"Trance behavior is known to occur, but there is no belief in possession.","Trance, no possession" +EA112,2,A belief in possession exists.,Possession +EA112,3,Trance behavior is known to occur and is explained as due to possession. There is no possession belief referring to other experiences and there are no trance states with other explanations.,T due to P only; P causes T only +EA112,4,"Two types of trance states are known to occur. One which is explained as due to possession and one which is given another type of explanation. In addition to explaining trance, possession belief also refers to one or more other phenomena.","Two T states, one due to P; P expl. T and others" +EA112,5,"There is both a trance state and a belief in possession, but this belief refers to phenomena other than trance, which is explained through other categories.","T and P, but T not due to P" +EA112,6,"Trance explained as due to possession is known to occur, and there are no other trance states, but cases of possession outside of trance are also believed to occur.",T due to P only; P explains T and others +EA112,7,"Trance states of two kinds are known to occur, some of which are explained by possession. No other phenomena are explained by possession.","Two T states, one due to P; P explains T only" +EA112,8,"No trance states of any kind are known to occur, and there is no belief in possession.",No trance or possession +EA113,NA,Missing data,Missing data +EA113,1,"Rigid, characterized as: non-egalitarian, ascriptive status distinctions, autocratic, hierarchical political system, fixed residence and group membership, central authority, fixed religious rites.",Rigid +EA113,2,"Flexible, characterized as: egalitarian, achieved status distinctions, autocratic, democratic, federated or stateless political system, ease in residence and group changes, individualized or flexible religious rites.",Flexible +EA202,NA,Missing data,Missing data diff --git a/raw/data.csv b/raw/data.csv new file mode 100644 index 0000000..3c0e965 --- /dev/null +++ b/raw/data.csv @@ -0,0 +1,121356 @@ +soc_id,sub_case,year,var_id,code,comment,references,source_coded_data,admin_comment +Aa1,Nyai Nyae region,1950,EA001,8,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA001,4,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA001,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA001,4,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA001,3,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA001,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA001,7,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA001,5,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA001,6,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA001,1,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA001,0,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA001,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA001,0,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA001,0,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA001,1,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA001,0,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA001,1,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA001,0,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA001,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA001,0,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA001,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA001,0,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA001,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA001,0,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA001,0,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA001,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA001,0,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA001,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA001,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA001,0,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA001,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA001,0,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA001,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA001,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA001,0,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA001,0,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA001,1,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA001,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA001,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA001,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA001,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA001,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA001,0,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA001,1,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA001,0,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA001,0,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA001,1,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA001,0,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA001,0,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA001,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA001,0,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA001,0,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA001,0,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA001,0,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA001,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA001,0,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA001,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA001,0,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA001,0,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA001,0,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA001,0,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA001,0,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA001,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA001,0,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA001,0,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA001,0,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA001,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA001,0,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA001,0,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA001,0,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA001,0,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA001,0,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA001,0,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA001,0,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA001,0,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA001,0,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA001,0,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA001,0,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA001,0,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA001,0,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA001,0,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA001,0,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA001,0,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA001,0,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA001,0,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA001,0,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA001,0,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA001,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA001,0,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA001,0,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA001,0,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA001,0,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA001,0,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA001,0,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA001,0,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA001,0,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA001,0,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA001,0,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA001,0,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA001,0,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA001,0,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA001,0,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA001,0,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA001,0,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA001,0,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA001,0,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA001,0,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA001,0,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA001,0,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA001,0,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA001,0,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA001,0,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA001,0,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA001,0,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA001,0,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA001,0,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA001,0,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA001,0,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA001,0,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA001,0,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA001,0,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA001,0,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA001,0,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA001,0,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA001,0,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA001,0,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA001,1,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA001,0,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA001,1,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA001,0,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA001,0,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA001,0,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA001,0,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA001,0,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA001,0,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA001,0,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA001,0,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA001,0,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA001,0,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA001,0,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA001,0,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA001,0,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA001,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA001,0,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA001,0,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA001,0,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA001,0,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA001,0,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA001,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA001,0,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA001,0,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA001,0,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA001,0,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA001,0,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA001,0,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA001,0,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA001,0,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA001,0,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA001,0,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA001,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA001,0,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA001,1,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA001,0,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA001,0,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA001,0,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA001,0,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA001,0,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA001,0,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA001,0,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA001,0,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA001,0,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA001,0,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA001,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA001,0,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA001,0,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA001,0,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA001,0,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA001,0,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA001,0,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA001,0,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA001,0,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA001,1,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA001,0,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA001,0,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA001,0,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA001,0,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA001,0,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA001,0,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA001,0,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA001,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA001,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA001,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA001,0,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA001,0,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA001,0,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA001,0,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA001,0,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA001,0,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA001,0,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA001,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA001,1,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA001,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA001,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA001,0,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA001,0,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA001,1,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA001,0,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA001,0,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA001,0,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA001,0,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA001,0,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA001,0,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA001,0,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA001,0,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA001,0,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA001,0,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA001,0,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA001,0,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA001,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA001,0,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA001,0,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA001,0,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA001,0,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA001,0,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA001,0,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA001,0,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA001,0,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA001,0,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA001,0,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA001,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA001,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA001,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA001,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA001,1,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA001,0,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA001,0,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA001,0,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA001,0,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA001,1,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA001,0,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA001,0,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA001,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA001,0,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA001,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA001,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA001,2,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA001,0,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA001,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA001,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA001,0,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA001,0,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA001,1,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA001,1,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA001,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA001,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA001,0,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA001,1,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA001,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA001,1,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA001,0,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA001,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA001,0,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA001,1,But the economy is primarily mercantile,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA001,1,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA001,1,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA001,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA001,0,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA001,1,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA001,2,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA001,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA001,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA001,1,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA001,1,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA001,0,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA001,0,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA001,0,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA001,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA001,0,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA001,0,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA001,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA001,0,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA001,0,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA001,0,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA001,0,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA001,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA001,0,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA001,0,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA001,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA001,0,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA001,0,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA001,0,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA001,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA001,0,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA001,0,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA001,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA001,2,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA001,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA001,2,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA001,0,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA001,0,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA001,0,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA001,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA001,0,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA001,0,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA001,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA001,1,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA001,1,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA001,0,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA001,0,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA001,0,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA001,1,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA001,0,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA001,0,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA001,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA001,0,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA001,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA001,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA001,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA001,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA001,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA001,0,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA001,0,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA001,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA001,0,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA001,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA001,0,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA001,0,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA001,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA001,0,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA001,0,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA001,0,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA001,0,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA001,1,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA001,0,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA001,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA001,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA001,0,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA001,0,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA001,0,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA001,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA001,0,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA001,0,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA001,0,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA001,0,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA001,0,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA001,0,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA001,0,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA001,0,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA001,0,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA001,1,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA001,0,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA001,0,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA001,0,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA001,0,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA001,0,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA001,0,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA001,0,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA001,0,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA001,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA001,0,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA001,0,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA001,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA001,0,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA001,0,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA001,2,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA001,0,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA001,0,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA001,0,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA001,0,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA001,0,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA001,0,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA001,0,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA001,0,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA001,0,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA001,0,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA001,0,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA001,0,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA001,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA001,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA001,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA001,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA001,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA001,0,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA001,0,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA001,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA001,0,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA001,0,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA001,0,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA001,0,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA001,0,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA001,0,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA001,0,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA001,0,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA001,0,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA001,0,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA001,0,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA001,0,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA001,0,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA001,0,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA001,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA001,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA001,0,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA001,0,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA001,0,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA001,0,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA001,0,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA001,0,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA001,0,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA001,0,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA001,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA001,0,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA001,0,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA001,0,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA001,0,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA001,0,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA001,0,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA001,0,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA001,0,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA001,0,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA001,0,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA001,0,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA001,0,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA001,0,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA001,0,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA001,0,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA001,0,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA001,0,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA001,0,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA001,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA001,0,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA001,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA001,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA001,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA001,1,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA001,0,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA001,0,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA001,0,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA001,1,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA001,0,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA001,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA001,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA001,0,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA001,0,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA001,0,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA001,0,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA001,0,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA001,0,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA001,0,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA001,0,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA001,0,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA001,0,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA001,1,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA001,0,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA001,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA001,0,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA001,0,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA001,0,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA001,0,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA001,1,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA001,0,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA001,0,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA001,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA001,0,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA001,0,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA001,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA001,0,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA001,0,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA001,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA001,0,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA001,0,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA001,0,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA001,0,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA001,0,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA001,0,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA001,0,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA001,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA001,0,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA001,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA001,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA001,0,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA001,0,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA001,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA001,0,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA001,1,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA001,0,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA001,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA001,0,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA001,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA001,1,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA001,2,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA001,2,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA001,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA001,0,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA001,0,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA001,0,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA001,2,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA001,0,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA001,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA001,0,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA001,0,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA001,0,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA001,0,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA001,0,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA001,0,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA001,0,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA001,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA001,0,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA001,0,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA001,0,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA001,0,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA001,0,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA001,0,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA001,0,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA001,0,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA001,0,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA001,0,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA001,0,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA001,0,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA001,0,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA001,0,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA001,0,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA001,0,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA001,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA001,0,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA001,0,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA001,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA001,0,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA001,0,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA001,0,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA001,0,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA001,0,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA001,0,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA001,0,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA001,0,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA001,0,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA001,0,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA001,0,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA001,1,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA001,0,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA001,0,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA001,0,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA001,0,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA001,0,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA001,0,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA001,0,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA001,0,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA001,0,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA001,0,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA001,0,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA001,0,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA001,0,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA001,0,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA001,0,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA001,0,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA001,0,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA001,0,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA001,0,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA001,0,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA001,0,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA001,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA001,0,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA001,0,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA001,0,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA001,0,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA001,0,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA001,0,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA001,0,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA001,0,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA001,0,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA001,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA001,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA001,0,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA001,0,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA001,0,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA001,0,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA001,0,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA001,0,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA001,0,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA001,0,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA001,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA001,0,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA001,0,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA001,0,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA001,0,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA001,0,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA001,1,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA001,0,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA001,0,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA001,0,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA001,0,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA001,0,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA001,0,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA001,0,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA001,0,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA001,0,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA001,0,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA001,0,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA001,0,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA001,0,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA001,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA001,0,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA001,0,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA001,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA001,0,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA001,0,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA001,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA001,1,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA001,2,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA001,0,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA001,0,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA001,0,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA001,0,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA001,0,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA001,0,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA001,0,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA001,0,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA001,0,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA001,0,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA001,0,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA001,0,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA001,0,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA001,0,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA001,0,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA001,0,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA001,0,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA001,0,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA001,0,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA001,0,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA001,0,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA001,0,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA001,0,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA001,0,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA001,0,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA001,0,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA001,0,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA001,0,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA001,0,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA001,0,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA001,0,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA001,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA001,0,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA001,0,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA001,1,But the Pandit themselves do not engage in food production,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA001,0,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA001,8,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA001,0,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA001,1,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA001,0,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA001,1,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA001,2,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA001,0,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA001,2,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA001,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA001,0,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA001,0,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA001,1,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA001,1,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA001,1,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA001,4,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA001,0,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA001,0,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA001,0,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA001,4,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA001,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA001,0,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA001,2,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA001,0,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA001,0,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA001,0,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA001,0,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA001,0,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA001,0,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA001,0,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA001,0,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA001,0,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA001,0,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA001,0,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA001,0,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA001,0,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA001,1,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA001,0,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA001,0,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA001,0,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA001,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA001,0,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA001,0,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA001,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA001,0,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA001,1,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA001,0,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA001,0,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA001,0,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA001,0,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA001,1,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA001,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA001,0,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA001,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA001,4,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA001,0,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA001,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA001,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA001,1,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA001,0,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA001,0,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA001,0,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA001,0,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA001,0,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA001,0,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA001,0,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA001,0,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA001,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA001,0,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA001,0,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA001,0,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA001,0,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA001,0,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA001,0,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA001,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA001,0,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA001,0,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA001,0,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA001,0,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA001,0,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA001,0,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA001,0,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA001,0,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA001,0,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA001,0,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA001,0,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA001,3,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA001,0,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA001,0,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA001,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA001,0,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA001,0,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA001,0,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA001,2,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA001,0,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA001,0,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA001,0,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA001,1,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA001,0,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA001,1,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA001,0,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA001,6,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA001,6,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA001,5,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA001,5,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA001,3,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA001,5,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA001,5,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA001,7,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA001,3,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA001,4,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA001,7,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,1830,EA001,4,,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA001,3,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA001,0,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA001,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA001,1,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA001,3,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA001,1,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA001,0,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA001,2,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA001,4,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA001,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA001,2,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA001,1,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA001,0,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA001,1,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA001,1,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA001,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA001,1,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA001,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA001,0,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA001,1,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA001,2,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA001,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA001,0,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA001,2,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA001,4,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA001,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA001,0,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA001,6,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA001,5,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA001,0,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA001,5,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA001,1,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA001,0,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA001,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA001,2,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA001,0,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA001,3,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA001,0,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA001,4,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA001,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA001,0,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA001,0,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA001,0,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA001,0,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA001,0,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA001,0,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA001,0,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA001,0,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA001,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA001,0,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA001,0,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA001,0,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA001,0,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA001,0,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA001,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA001,0,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA001,0,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA001,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA001,2,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA001,3,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA001,1,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA001,0,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA001,0,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA001,2,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA001,0,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA001,0,Primarily traders,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA001,0,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA001,0,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA001,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA001,0,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA001,0,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA001,1,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA001,0,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA001,0,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA001,0,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA001,2,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA001,0,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA001,0,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA001,0,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA001,0,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA001,0,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA001,0,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA001,0,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA001,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA001,0,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA001,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA001,0,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA001,0,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA001,0,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA001,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA001,0,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA001,0,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA001,0,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA001,0,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA001,0,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA001,0,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA001,0,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA001,0,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA001,0,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA001,0,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA001,0,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA001,0,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA001,0,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA001,0,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA001,0,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA001,0,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA001,0,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA001,3,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA001,0,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA001,0,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA001,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA001,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA001,0,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA001,0,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA001,0,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA001,2,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA001,0,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA001,0,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA001,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA001,0,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA001,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA001,2,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA001,1,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA001,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA001,2,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA001,0,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA001,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA001,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA001,0,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA001,0,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA001,0,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA001,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA001,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA001,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA001,1,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA001,3,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA001,0,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA001,0,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA001,2,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA001,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA001,2,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA001,2,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA001,2,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA001,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA001,3,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA001,3,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA001,3,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA001,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA001,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA001,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA001,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA001,0,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA001,0,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA001,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA001,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA001,1,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA001,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA001,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA001,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA001,2,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA001,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA001,2,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA001,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA001,2,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA001,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA001,3,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA001,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA001,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA001,1,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA001,2,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA001,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA001,2,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA001,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA001,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA001,2,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA001,2,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA001,2,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA001,2,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA001,3,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA001,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA001,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA001,3,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA001,4,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA001,3,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA001,4,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA001,4,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA001,4,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA001,4,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA001,4,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA001,3,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA001,3,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA001,4,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA001,4,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA001,2,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA001,4,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA001,2,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA001,2,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA001,2,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA001,6,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA001,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA001,5,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA001,5,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA001,5,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA001,3,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA001,4,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA001,4,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA001,5,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA001,4,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA001,4,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA001,5,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA001,5,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA001,4,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA001,5,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA001,5,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA001,5,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA001,4,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA001,5,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA001,5,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA001,4,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA001,4,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA001,4,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA001,6,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA001,6,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA001,6,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA001,6,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA001,4,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA001,4,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA001,6,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA001,5,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA001,4,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA001,3,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA001,5,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA001,3,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA001,2,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA001,3,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA001,3,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA001,3,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA001,3,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA001,3,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA001,3,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA001,3,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA001,3,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA001,3,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA001,3,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA001,3,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA001,4,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA001,5,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA001,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA001,4,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA001,5,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA001,6,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA001,5,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA001,6,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA001,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA001,3,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA001,5,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA001,6,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA001,6,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA001,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA001,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA001,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA001,7,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA001,7,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA001,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA001,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA001,3,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA001,6,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA001,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA001,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA001,5,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA001,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA001,3,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA001,3,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA001,3,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA001,5,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA001,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA001,5,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA001,6,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA001,6,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA001,5,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA001,7,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA001,6,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA001,6,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA001,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA001,3,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA001,3,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA001,3,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA001,4,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA001,4,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA001,3,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA001,4,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA001,3,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA001,3,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA001,6,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA001,6,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA001,6,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA001,3,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA001,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA001,2,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA001,2,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA001,0,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA001,2,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA001,2,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA001,2,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA001,2,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA001,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA001,3,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA001,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA001,2,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA001,2,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA001,2,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA001,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,1760,EA001,4,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968, +Ne3,Comanche Tribe,1870,EA001,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA001,2,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA001,2,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA001,0,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA001,2,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA001,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA001,2,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA001,0,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA001,0,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA001,2,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA001,1,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA001,2,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA001,2,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA001,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA001,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA001,2,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA001,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA001,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA001,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA001,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA001,4,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA001,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA001,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA001,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA001,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA001,1,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA001,0,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA001,2,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA001,NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA001,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA001,2,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA001,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA001,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA001,0,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA001,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA001,0,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA001,6,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA001,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA001,0,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA001,1,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA001,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA001,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA001,4,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA001,3,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA001,3,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA001,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA001,2,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA001,0,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA001,2,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA001,3,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA001,2,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA001,6,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA001,6,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA001,0,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA001,0,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA001,0,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA001,2,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA001,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA001,4,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA001,0,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA001,0,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA001,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA001,0,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA001,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA001,3,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA001,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA001,2,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA001,5,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA001,3,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA001,2,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA001,2,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,1920,EA001,0,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968, +Nj1,Ojitlan,1940,EA001,0,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA001,0,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA001,0,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,1950,EA001,0,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968, +Nj13,,1900,EA001,0,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA001,0,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA001,0,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA001,0,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA001,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA001,0,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA001,0,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA001,0,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA001,0,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA001,0,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA001,0,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA001,0,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA001,0,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA001,1,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA001,0,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA001,2,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA001,0,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA001,0,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA001,0,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA001,0,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA001,0,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA001,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA001,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA001,0,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA001,0,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA001,0,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA001,3,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA001,0,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA001,0,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA001,4,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA001,0,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA001,3,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA001,0,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA001,3,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA001,1,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA001,0,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA001,4,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA001,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA001,0,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA001,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA001,0,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA001,1,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA001,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA001,2,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA001,0,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA001,0,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA001,2,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA001,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA001,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA001,2,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA001,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA001,1,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA001,2,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA001,0,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA001,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA001,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA001,0,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA001,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA001,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA001,3,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA001,1,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA001,3,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA001,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA001,3,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA001,0,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA001,2,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA001,0,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA001,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA001,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA001,0,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA001,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA001,2,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA001,0,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA001,0,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA001,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA001,0,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA001,0,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA001,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA001,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA001,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA001,0,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA001,0,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA001,0,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA001,0,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA001,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA001,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA001,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA001,2,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA001,1,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA001,2,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA001,2,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA001,2,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA001,0,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA001,4,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA001,6,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA001,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA001,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA001,2,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA001,4,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA001,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA001,2,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA001,0,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA001,4,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA001,2,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA001,4,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA001,2,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA001,2,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,1940,EA001,2,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA001,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA001,2,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA001,4,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA001,2,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA001,4,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA001,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA001,5,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA001,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA001,2,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA001,2,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA001,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA001,0,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA001,0,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA001,0,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA001,0,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA001,0,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA001,0,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA001,0,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA001,0,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA001,0,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA001,0,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA001,0,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA001,0,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA001,0,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA001,0,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA001,0,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA001,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA001,0,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA001,0,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA001,3,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA001,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA001,2,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA001,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA001,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA001,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA001,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA001,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA001,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA010,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA010,8,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA010,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA010,9,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA010,12,"Entry follows Schebesta; Czekanowski reports Uxorilocal (code ""9""); Turnbull reports Ambilocal (code ""2"")",deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA010,2,"Initial residence alternates between Uxorilocal (code ""9"") and Patrilocal (code ""8"")",dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA010,2,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA010,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA010,2,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA010,10,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA010,8,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA010,8,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA010,8,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA010,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA010,8,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA010,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA010,8,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA010,8,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA010,8,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA010,2,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA010,8,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA010,10,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA010,8,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA010,8,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA010,8,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA010,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA010,8,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA010,8,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA010,8,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA010,10,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA010,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA010,8,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA010,10,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA010,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA010,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA010,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA010,1,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA010,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA010,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA010,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA010,10,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA010,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA010,10,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA010,10,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA010,1,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA010,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA010,1,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA010,10,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA010,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA010,1,"Entry follows Richards; Beaucorps reports Virilocal (code ""10"")",beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA010,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA010,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA010,4,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA010,1,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA010,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA010,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA010,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA010,9,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA010,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA010,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA010,9,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA010,8,"Formerly, early residence classified as 'Uxorilocal' (code ""9"")",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA010,9,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA010,5,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA010,5,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA010,10,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA010,5,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA010,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA010,3,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA010,9,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA010,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA010,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA010,5,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA010,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA010,12,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA010,9,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA010,8,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA010,9,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA010,8,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA010,8,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA010,5,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA010,8,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA010,6,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA010,8,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA010,8,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA010,8,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA010,8,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA010,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA010,8,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA010,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA010,8,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA010,8,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA010,8,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA010,8,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA010,5,At least initially,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA010,5,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA010,8,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA010,8,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA010,8,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA010,8,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA010,8,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA010,8,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA010,8,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA010,8,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA010,8,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA010,8,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA010,8,Inferential from distributional evidence,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA010,8,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA010,8,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA010,8,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA010,8,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA010,8,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA010,8,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA010,8,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA010,8,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA010,8,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA010,8,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA010,8,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA010,8,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA010,8,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA010,5,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA010,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA010,6,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA010,6,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA010,8,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA010,8,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA010,8,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA010,8,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA010,8,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA010,8,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA010,8,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA010,8,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA010,8,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA010,8,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA010,8,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA010,8,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA010,9,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA010,8,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA010,8,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA010,8,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA010,8,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA010,8,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA010,8,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA010,8,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA010,8,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA010,8,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA010,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA010,8,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA010,8,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA010,8,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA010,8,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA010,8,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA010,8,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA010,8,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA010,8,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA010,8,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA010,8,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA010,4,The relative incidence of avunculocal and virilocal residence is unclear,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA010,8,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA010,8,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA010,8,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA010,8,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA010,8,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA010,8,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA010,8,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA010,8,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA010,10,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA010,8,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA010,8,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA010,8,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA010,8,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA010,8,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA010,8,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA010,8,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA010,8,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA010,10,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA010,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA010,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA010,8,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA010,8,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA010,8,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA010,8,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA010,8,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA010,8,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA010,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA010,8,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA010,8,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA010,8,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA010,NA,"Mix of Avunculocal (code ""1""), Nonestablishment of a common household (code ""7""), and Virilocal (code ""10"") with relative incidence unspecified",field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA010,8,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA010,10,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA010,8,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA010,8,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA010,8,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA010,8,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA010,8,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA010,8,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA010,8,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA010,10,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA010,8,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA010,8,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA010,8,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA010,8,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA010,10,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA010,8,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA010,8,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA010,8,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA010,7,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA010,8,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA010,8,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA010,8,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA010,8,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA010,8,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA010,8,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA010,7,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA010,8,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA010,10,But a married woman commonly remains in her natal household instead of joining her husband,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA010,7,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA010,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA010,10,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA010,10,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA010,7,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA010,7,But most married women continue to reside in their natal household,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA010,9,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA010,10,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA010,8,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA010,8,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA010,8,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA010,8,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA010,8,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA010,8,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA010,8,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA010,8,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA010,8,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA010,8,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA010,8,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA010,8,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA010,8,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA010,8,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA010,8,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA010,8,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA010,8,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA010,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA010,8,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA010,8,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA010,10,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA010,8,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA010,8,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA010,8,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA010,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA010,8,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA010,8,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA010,5,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA010,8,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA010,8,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA010,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA010,8,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA010,8,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA010,8,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA010,8,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA010,8,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA010,8,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA010,8,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA010,8,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA010,8,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA010,8,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA010,8,"Entry follows Tauxier; Cremer also reports early residence as Uxorilocal, but later residence as Patrilocal (i.e., EA012 would be code ""9"")",cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA010,8,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA010,8,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA010,8,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA010,8,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA010,4,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA010,8,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA010,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA010,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA010,8,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA010,8,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA010,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA010,8,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA010,8,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA010,8,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA010,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA010,8,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA010,8,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA010,8,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA010,8,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA010,8,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA010,8,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA010,8,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA010,8,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA010,8,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA010,8,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA010,8,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA010,8,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA010,8,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA010,10,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA010,8,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA010,8,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA010,8,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA010,8,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA010,8,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA010,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA010,8,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA010,8,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA010,9,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA010,8,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA010,8,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA010,8,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA010,4,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA010,8,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA010,8,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA010,9,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA010,9,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA010,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA010,8,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA010,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA010,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA010,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA010,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA010,10,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA010,9,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA010,9,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA010,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA010,9,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA010,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA010,9,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA010,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA010,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA010,8,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA010,8,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA010,10,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA010,8,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA010,1,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA010,8,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA010,8,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA010,8,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA010,8,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA010,8,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA010,10,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA010,8,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA010,8,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA010,8,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA010,8,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA010,8,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA010,8,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA010,8,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA010,8,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA010,9,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA010,8,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA010,8,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA010,8,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA010,8,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA010,8,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA010,NA,,,, +Ai26,,1920,EA010,8,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA010,8,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA010,8,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA010,8,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA010,10,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA010,8,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA010,8,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA010,8,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA010,8,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA010,9,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA010,8,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA010,8,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA010,8,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA010,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA010,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA010,9,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA010,8,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA010,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA010,8,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA010,8,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA010,8,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA010,8,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA010,8,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA010,8,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA010,8,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA010,8,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA010,8,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA010,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA010,8,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA010,8,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA010,9,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA010,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA010,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA010,8,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA010,9,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA010,8,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA010,8,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA010,8,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA010,NA,,,, +Aj19,,1920,EA010,8,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA010,8,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA010,8,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA010,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,,EA010,NA,,,, +Aj23,,1950,EA010,8,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA010,8,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA010,8,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA010,8,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA010,8,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA010,8,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA010,8,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA010,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA010,8,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA010,8,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA010,8,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA010,8,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA010,8,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA010,8,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA010,9,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA010,8,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA010,6,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA010,8,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA010,8,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA010,8,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA010,8,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA010,8,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA010,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA010,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA010,8,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA010,8,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA010,8,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA010,8,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA010,8,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA010,8,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA010,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA010,8,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA010,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA010,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA010,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA010,8,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA010,8,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA010,8,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA010,7,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA010,8,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA010,10,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA010,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA010,9,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA010,9,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA010,9,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA010,8,"In the noble class; among serfs pattern is Uxorilocal early in marriage (this variable would be code ""9""); Patrilocal as prevailing pattern (EA012 code ""8""); and Uxorilocal as alternate (EA014 code ""9"")",munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA010,8,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA010,8,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA010,8,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA010,8,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA010,8,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA010,8,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA010,8,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA010,9,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA010,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA010,8,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA010,12,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA010,8,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA010,8,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA010,8,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA010,9,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,,EA010,NA,,,, +Cb12,,1920,EA010,8,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA010,8,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA010,8,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA010,8,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA010,8,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA010,7,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA010,10,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA010,10,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA010,8,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,,EA010,NA,,,, +Cb21,,1930,EA010,9,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA010,8,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA010,8,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA010,7,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA010,8,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA010,8,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA010,8,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA010,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA010,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA010,8,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA010,9,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA010,8,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA010,9,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA010,8,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA010,10,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA010,8,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA010,8,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA010,10,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,,EA010,NA,,,, +Cc12,,1944,EA010,9,Ultimate residence is unclear and may be avunculocal,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA010,10,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA010,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA010,NA,,,, +Cc16,,1930,EA010,8,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA010,8,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA010,8,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA010,8,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA010,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA010,8,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA010,8,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA010,8,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA010,10,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA010,8,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA010,8,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA010,NA,,,, +Cc9,Ahaggaren tribe,1920,EA010,9,"Virilocal (code ""10"") after an initial period until death of HuFa, then Avunculocal (code ""1"")",benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA010,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA010,8,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA010,10,Suggested rather than attested,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA010,8,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA010,8,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA010,8,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA010,8,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA010,8,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA010,8,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA010,8,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA010,8,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA010,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA010,8,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA010,8,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA010,8,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA010,8,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA010,8,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA010,6,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA010,8,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA010,8,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA010,8,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA010,8,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA010,10,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA010,6,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA010,2,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA010,6,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA010,6,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA010,10,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA010,12,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA010,6,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA010,10,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA010,6,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA010,6,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA010,6,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA010,2,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA010,10,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA010,10,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA010,12,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA010,6,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA010,8,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA010,6,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA010,10,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA010,10,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA010,10,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA010,6,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA010,10,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA010,2,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA010,10,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA010,10,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA010,10,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA010,8,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA010,12,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA010,8,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA010,8,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA010,7,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA010,6,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA010,8,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA010,8,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA010,8,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA010,8,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA010,8,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA010,8,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA010,8,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA010,8,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA010,8,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA010,8,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA010,2,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA010,8,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA010,8,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA010,8,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA010,8,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA010,8,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA010,8,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA010,8,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA010,8,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA010,8,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA010,7,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA010,8,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA010,8,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA010,8,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA010,8,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA010,8,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA010,8,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA010,8,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA010,10,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA010,8,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA010,8,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA010,8,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA010,8,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA010,8,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA010,8,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA010,8,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA010,8,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA010,8,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA010,8,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA010,8,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA010,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA010,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA010,8,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA010,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA010,9,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA010,12,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA010,10,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA010,8,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA010,8,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA010,8,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA010,8,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA010,8,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA010,8,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA010,6,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA010,8,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA010,7,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA010,8,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA010,8,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA010,10,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA010,8,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA010,8,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA010,8,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA010,7,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA010,10,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA010,8,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA010,8,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA010,8,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA010,8,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA010,8,Uxorilocal only if wife has no brothers,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA010,8,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA010,8,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA010,8,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA010,8,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA010,8,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA010,8,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA010,8,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA010,8,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA010,8,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA010,8,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA010,8,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA010,8,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA010,8,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA010,2,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA010,8,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA010,8,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA010,8,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA010,8,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA010,8,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA010,8,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA010,8,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA010,8,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA010,8,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA010,7,Entry pertains to the Nayar; predominantly Matrilocal among the Mappilla and Virilocal or Neolocal among the Tiyyar,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA010,8,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA010,8,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA010,8,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA010,2,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA010,8,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA010,10,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA010,8,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA010,5,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA010,11,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA010,12,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA010,8,"But McLeod reports Ambilocal (code ""2"")",decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA010,8,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA010,8,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA010,5,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA010,8,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA010,8,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA010,8,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA010,8,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA010,8,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA010,8,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA010,8,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA010,8,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA010,10,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA010,8,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA010,9,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA010,8,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA010,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA010,8,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA010,8,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA010,9,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA010,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA010,5,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA010,8,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA010,9,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA010,5,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA010,5,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA010,8,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA010,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA010,2,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA010,6,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA010,5,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA010,5,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA010,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA010,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA010,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA010,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA010,8,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA010,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA010,2,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA010,12,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA010,8,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA010,11,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA010,6,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA010,2,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA010,10,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA010,9,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA010,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA010,6,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA010,6,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA010,2,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA010,2,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA010,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA010,11,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA010,12,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA010,11,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA010,12,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA010,5,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA010,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA010,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA010,8,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA010,8,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA010,12,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA010,7,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA010,12,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA010,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,,,EA010,NA,,,, +Ic1,Borongloe,1940,EA010,2,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA010,12,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA010,10,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA010,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA010,8,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA010,12,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA010,5,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA010,8,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA010,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA010,9,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA010,8,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA010,8,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA010,8,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA010,8,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA010,8,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA010,8,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA010,9,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA010,9,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA010,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA010,12,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA010,10,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA010,8,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA010,8,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA010,8,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA010,NA,,,, +Id9,,1910,EA010,8,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA010,8,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA010,8,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA010,8,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA010,8,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA010,8,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA010,8,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA010,8,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA010,7,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA010,7,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA010,12,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA010,7,But normally patrilocal,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA010,8,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA010,8,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA010,8,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA010,8,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA010,8,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA010,8,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA010,2,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA010,8,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA010,8,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA010,10,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA010,8,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA010,8,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA010,5,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA010,8,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA010,8,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA010,8,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA010,2,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA010,8,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA010,8,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA010,8,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA010,10,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA010,8,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA010,8,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA010,8,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA010,8,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA010,8,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA010,8,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA010,8,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA010,10,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA010,5,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA010,10,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA010,5,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA010,5,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA010,12,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA010,5,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA010,5,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA010,5,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA010,5,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA010,2,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA010,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA010,5,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA010,8,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA010,12,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA010,6,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA010,12,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA010,10,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA010,8,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA010,12,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA010,12,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA010,7,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA010,4,"Or possibly Ambilocal (code ""2"")",belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA010,8,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA010,10,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA010,8,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA010,8,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA010,10,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA010,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA010,10,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA010,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA010,2,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA010,5,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA010,3,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA010,10,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA010,10,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA010,9,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA010,8,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA010,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA010,8,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA010,NA,,,, +Ih12,,1920,EA010,8,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA010,8,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA010,8,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA010,8,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA010,8,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA010,7,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA010,8,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA010,5,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA010,8,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA010,8,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA010,10,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA010,2,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,,EA010,NA,,,, +Ii12,Pangai,1920,EA010,10,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA010,12,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA010,12,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA010,8,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA010,8,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA010,12,Residence rule inferred from data on inheritance,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA010,11,Virilocal for part of the year in families possessing coconut groves in the outer islands,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to codes for post-marital residence (Col 16), not Col 19 as stated in Gray (1999)" +Ii6,with special reference to Atafu,1900,EA010,11,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA010,10,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA010,2,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA010,12,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA010,12,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA010,12,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA010,10,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA010,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA010,12,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA010,2,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA010,2,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA010,12,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA010,2,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA010,12,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA010,9,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA010,9,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA010,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA010,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA010,9,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA010,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA010,9,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA010,9,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA010,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA010,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA010,2,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA010,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA010,2,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA010,12,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA010,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA010,12,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA010,12,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA010,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA010,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA010,9,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA010,9,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA010,6,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA010,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA010,11,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA010,10,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA010,12,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA010,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA010,9,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA010,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA010,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA010,10,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA010,9,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA010,5,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA010,NA,,,, +Na41,Mainland division,1700,EA010,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA010,8,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA010,12,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA010,9,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA010,12,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA010,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA010,9,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA010,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA010,11,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA010,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA010,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA010,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA010,12,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA010,12,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA010,10,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA010,12,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA010,12,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA010,10,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA010,12,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA010,10,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA010,10,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA010,10,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA010,12,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA010,12,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA010,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA010,12,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA010,10,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA010,12,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA010,12,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA010,12,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA010,12,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA010,12,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA010,12,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA010,10,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA010,8,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA010,12,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA010,2,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA010,12,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA010,12,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA010,12,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA010,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA010,12,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA010,9,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA010,12,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA010,9,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA010,8,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA010,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA010,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA010,12,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA010,9,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA010,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA010,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA010,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA010,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA010,12,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA010,9,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA010,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA010,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA010,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA010,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA010,12,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA010,2,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,,EA010,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA010,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA010,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA010,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA010,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA010,8,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA010,9,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA010,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA010,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA010,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA010,8,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA010,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA010,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA010,8,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA010,8,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA010,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA010,8,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA010,8,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA010,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA010,12,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA010,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA010,12,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA010,12,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA010,10,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA010,12,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA010,12,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA010,10,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA010,10,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA010,10,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA010,11,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA010,12,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA010,10,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA010,11,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA010,12,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA010,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA010,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA010,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA010,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA010,11,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA010,9,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA010,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA010,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA010,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA010,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA010,9,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA010,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA010,9,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA010,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA010,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA010,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA010,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA010,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA010,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA010,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA010,10,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA010,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA010,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA010,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA010,11,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA010,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA010,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA010,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA010,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA010,11,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA010,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA010,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,,EA010,NA,,,, +Nd51,,1860,EA010,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA010,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA010,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA010,2,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA010,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA010,11,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA010,11,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA010,11,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA010,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA010,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA010,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA010,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA010,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA010,11,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA010,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA010,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA010,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA010,9,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA010,9,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA010,12,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA010,12,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA010,12,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA010,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA010,12,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA010,12,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA010,10,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,,EA010,NA,,,, +Ne15,Hidatsa Village,1860,EA010,5,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA010,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA010,12,"Entry follows Richardson; Mooney reports prevailing pattern as Uxorilocal (code ""9"") with Virilocal as alternate (EA014 would be code ""10"")",lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA010,10,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA010,10,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA010,11,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA010,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA010,NA,,,, +Ne3,Comanche Tribe,1870,EA010,2,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA010,10,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA010,11,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA010,5,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA010,10,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA010,12,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA010,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA010,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA010,9,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA010,8,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA010,8,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA010,9,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA010,8,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA010,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA010,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA010,8,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA010,11,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA010,5,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA010,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA010,11,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA010,8,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA010,5,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA010,5,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA010,6,"At a late period, but probably originally Matrilocal (code ""5"")",eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA010,5,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA010,9,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA010,5,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA010,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA010,5,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA010,5,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA010,9,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA010,5,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA010,5,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA010,10,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA010,5,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA010,6,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA010,11,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA010,6,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA010,6,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA010,2,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA010,2,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA010,5,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA010,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA010,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA010,5,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA010,5,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA010,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA010,5,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA010,9,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA010,2,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA010,8,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA010,2,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA010,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA010,6,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA010,6,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA010,2,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA010,5,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA010,5,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA010,8,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA010,6,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA010,5,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA010,2,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA010,6,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA010,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA010,10,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA010,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA010,10,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA010,11,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA010,10,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA010,10,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA010,6,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,,EA010,NA,,,, +Nj1,Ojitlan,1940,EA010,10,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA010,10,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA010,10,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,,EA010,NA,,,, +Nj13,,1900,EA010,6,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA010,8,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA010,10,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA010,10,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA010,10,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA010,10,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA010,12,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA010,10,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA010,10,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA010,10,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA010,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA010,8,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA010,8,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA010,9,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA010,8,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA010,5,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA010,8,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA010,6,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA010,8,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA010,9,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA010,2,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA010,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA010,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA010,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA010,6,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA010,8,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA010,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA010,5,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA010,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA010,11,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA010,11,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA010,2,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA010,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA010,9,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA010,10,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA010,6,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA010,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA010,5,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA010,10,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA010,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA010,11,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA010,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA010,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA010,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA010,9,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA010,5,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA010,9,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA010,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA010,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA010,9,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA010,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA010,9,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA010,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA010,10,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA010,11,But men sleep apart from their wives in a men's house,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA010,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA010,2,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA010,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA010,8,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA010,9,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA010,9,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA010,9,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA010,10,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA010,9,"The entry assumes that the matrilocal extended families are organized around matrilineage cores; if there are actually no lineages, the entry should be Uxorilocal; Holmberg does not report lineages but admits, in personal discussion, that he may conceivably have overlooked their existence",holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA010,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA010,9,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA010,8,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA010,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA010,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA010,9,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA010,8,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA010,8,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA010,6,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA010,10,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA010,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA010,10,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA010,8,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA010,12,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA010,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA010,6,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA010,10,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA010,12,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA010,9,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA010,6,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA010,10,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA010,8,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA010,10,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people""",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA010,10,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA010,9,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA010,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA010,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA010,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA010,9,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA010,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA010,11,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA010,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA010,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA010,11,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA010,5,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA010,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA010,10,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA010,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA010,12,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA010,9,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA010,6,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA010,11,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA010,9,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA010,NA,,,, +Sj1,,1950,EA010,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA010,10,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA010,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA010,9,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA010,2,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA010,5,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,,,EA010,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA010,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA010,5,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA010,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA010,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA010,7,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA010,8,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA010,10,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA010,10,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA010,12,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA010,6,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA010,10,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA010,8,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA010,7,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA010,10,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA010,10,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA010,12,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA010,10,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA010,10,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA010,7,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA010,10,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA010,10,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA010,10,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA010,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA010,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA010,10,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA010,10,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA010,10,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA010,10,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA010,10,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA010,10,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA010,10,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA011,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA011,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA011,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA011,2,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Aa5,"Epulu net-hunters, Ituri forest",1930,EA011,2,"Entry follows Schebesta; Czekanowski reports Uxorilocal (code would be ""3""); Turnbull reports Ambilocal (code would be ""2"")",deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Aa6,,1920,EA011,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA011,2,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Aa8,,1850,EA011,2,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA011,2,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA011,1,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA011,1,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA011,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA011,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA011,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA011,1,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA011,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA011,1,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA011,1,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA011,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA011,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA011,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA011,1,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA011,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA011,1,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA011,1,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA011,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA011,1,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA011,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA011,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA011,1,,langandtastevin1937,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ab8,Basuto,1860,EA011,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA011,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA011,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA011,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac11,,1930,EA011,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac12,,1920,EA011,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac13,,1950,EA011,1,,tew1950; velsen1964,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac14,,1900,EA011,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac15,,1900,EA011,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac16,,1940,EA011,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac17,Feshi territory lineage center,1910,EA011,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA011,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac19,,1880,EA011,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA011,1,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac20,,1920,EA011,1,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac21,,1910,EA011,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac22,,1930,EA011,1,,mertens1935,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac23,with special reference to the western Lele,1950,EA011,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac24,,1910,EA011,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA011,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac26,,1920,EA011,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac27,,1930,EA011,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac28,,1930,EA011,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ac29,,1930,EA011,1,,brau1942,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac3,Zambia branch,1900,EA011,2,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""uxorilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). THerefore, we have recoded this as ""2"", couple to either group (uxorilocal >> wife's group; avunculocal >> husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ac30,,1940,EA011,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ac31,,1910,EA011,1,,colle1913,Ethnology_Vol7_No2_Apr_1968,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac32,,1920,EA011,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac33,,1940,EA011,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac34,,1940,EA011,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac35,,1900,EA011,1,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac36,,1920,EA011,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA011,2,,bruwer1958,Ethnology_Vol5_No1_Jan_1966,"This code is based on variable EA012, which for this society is coded as ""uxorilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). THerefore, we have recoded this as ""2"", couple to either group (uxorilocal >> wife's group; avunculocal >> husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ac38,,1910,EA011,3,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA011,3,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA011,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac40,,1900,EA011,3,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA011,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac42,,1900,EA011,2,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966,"This code is based on variable EA012, which for this society is coded as ""uxorilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). THerefore, we have recoded this as ""2"", couple to either group (uxorilocal >> wife's group; avunculocal >> husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ac43,,1910,EA011,1,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA011,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""uxorilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). THerefore, we have recoded this as ""2"", couple to either group (uxorilocal >> wife's group; avunculocal >> husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ac6,,1930,EA011,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac7,,1920,EA011,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA011,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA011,2,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ad1,,1950,EA011,2,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA011,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA011,2,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA011,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA011,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA011,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA011,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA011,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA011,1,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA011,1,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA011,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA011,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA011,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA011,1,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA011,1,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA011,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA011,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA011,1,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA011,1,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA011,3,At least initially,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA011,3,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA011,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA011,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA011,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA011,1,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA011,1,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA011,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA011,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA011,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA011,1,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA011,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA011,1,Inferential from distributional evidence,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA011,1,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA011,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA011,1,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA011,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA011,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA011,1,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA011,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA011,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA011,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA011,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA011,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA011,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA011,1,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA011,3,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA011,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ad6,Age villages of Mwaya and Masoko,1930,EA011,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA011,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA011,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA011,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA011,1,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA011,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA011,1,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA011,1,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA011,1,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA011,1,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA011,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA011,1,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA011,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA011,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA011,1,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA011,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA011,1,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA011,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA011,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA011,1,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA011,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA011,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA011,1,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA011,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA011,1,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA011,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA011,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA011,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA011,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA011,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA011,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA011,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA011,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA011,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA011,1,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA011,1,The relative incidence of avunculocal and virilocal residence is unclear,wijnant192526,EthnographicAtlas_1967_p66,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ae39,,1920,EA011,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA011,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA011,1,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA011,1,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA011,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA011,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA011,1,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA011,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA011,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA011,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA011,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA011,1,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA011,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA011,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA011,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA011,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA011,1,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA011,1,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ae55,,1950,EA011,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA011,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA011,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA011,1,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA011,1,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA011,1,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA011,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA011,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA011,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA011,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA011,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA011,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA011,NA,"Residence pattern is a mix of 'Avunculocal', 'Nonestablishment of a common household', and 'Virilocal'with relative incidence unspecified; so, this variable would be either 'wife to husband's group' (code ""1"" or 'no common residence' (code ""9"")",field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA011,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA011,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA011,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA011,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA011,1,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA011,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA011,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA011,1,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA011,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA011,1,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA011,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA011,1,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA011,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA011,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA011,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA011,1,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA011,1,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA011,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA011,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Af30,,1920,EA011,1,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA011,1,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA011,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA011,1,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA011,1,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA011,1,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA011,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA011,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA011,1,But a married woman commonly remains in her natal household instead of joining her husband,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA011,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA011,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA011,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA011,1,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA011,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Af43,,1930,EA011,9,But most married women continue to reside in their natal household,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA011,1,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Af45,,1900,EA011,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA011,1,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA011,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA011,1,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA011,1,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA011,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA011,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA011,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA011,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA011,1,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA011,1,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA011,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA011,1,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA011,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA011,1,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA011,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA011,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA011,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA011,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ag1,Segou to Bamako on Niger River,1920,EA011,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA011,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA011,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA011,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA011,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA011,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA011,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA011,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA011,1,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA011,3,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA011,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA011,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA011,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA011,1,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA011,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA011,1,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA011,1,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA011,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA011,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA011,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA011,1,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA011,1,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA011,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA011,1,"Entry follows Tauxier; Cremer reports prevailing pattern of residence as Patrilocal (i.e., EA012 would be code ""9""), so this code would be ""Husband to wife's group"" (code ""3"")",cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA011,1,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA011,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA011,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA011,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA011,1,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,Ethnology_Vol5_No3_Jul_1966,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ag36,,1950,EA011,1,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA011,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA011,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA011,1,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA011,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA011,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA011,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA011,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA011,1,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA011,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA011,1,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA011,1,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA011,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA011,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA011,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA011,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA011,1,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA011,1,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA011,1,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA011,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA011,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA011,1,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA011,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA011,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ag9,,1930,EA011,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA011,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA011,1,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA011,1,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA011,1,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA011,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA011,1,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA011,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA011,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA011,1,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA011,1,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA011,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA011,1,,meek1931a,EthnographicAtlas_1967_p74,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ah20,,1920,EA011,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA011,1,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA011,1,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA011,3,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA011,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA011,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA011,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ah27,,1920,EA011,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA011,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ah29,,1920,EA011,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA011,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA011,1,,meek1931b,EthnographicAtlas_1967_p74,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ah31,,1910,EA011,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA011,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ah33,,1920,EA011,1,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA011,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA011,1,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA011,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA011,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA011,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA011,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA011,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA011,1,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA011,1,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ah7,,1940,EA011,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA011,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA011,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA011,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA011,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA011,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA011,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA011,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA011,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA011,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA011,1,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA011,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA011,1,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA011,1,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA011,1,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA011,1,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA011,1,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA011,1,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA011,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA011,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA011,NA,,,, +Ai26,,1920,EA011,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA011,1,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA011,1,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA011,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA011,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA011,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA011,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA011,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA011,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA011,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA011,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA011,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA011,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA011,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ai39,,1940,EA011,1,,nadel1947,EthnographicAtlas_1967_p74,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ai4,,1920,EA011,2,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA011,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA011,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA011,1,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA011,1,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA011,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA011,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA011,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA011,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA011,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA011,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA011,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA011,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA011,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA011,1,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA011,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA011,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA011,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA011,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA011,1,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA011,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA011,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA011,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA011,NA,,,, +Aj19,,1920,EA011,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA011,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA011,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA011,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,,EA011,NA,,,, +Aj23,,1950,EA011,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA011,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA011,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA011,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA011,1,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA011,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA011,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA011,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Aj30,,1950,EA011,1,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA011,1,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA011,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA011,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA011,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA011,1,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA011,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA011,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA011,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA011,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA011,1,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA011,1,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA011,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA011,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA011,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA011,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA011,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA011,1,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA011,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA011,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA011,1,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA011,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA011,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA011,1,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA011,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA011,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA011,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA011,1,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA011,1,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA011,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA011,1,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA011,1,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA011,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA011,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA011,2,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA011,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA011,1,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA011,1,"In the noble class; among serfs prevailing pattern is Patrilocal (EA012 code ""8""), so this would be ""Wife to husband's group"" (code ""1"")",munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA011,1,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA011,1,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA011,1,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA011,1,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA011,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA011,1,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA011,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA011,1,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA011,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA011,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA011,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p78,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ca8,,1940,EA011,1,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA011,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA011,1,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA011,1,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,,EA011,NA,,,, +Cb12,,1920,EA011,1,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA011,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA011,1,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA011,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA011,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA011,9,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA011,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA011,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA011,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,,EA011,NA,,,, +Cb21,,1930,EA011,1,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA011,1,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA011,1,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA011,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA011,1,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA011,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA011,1,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA011,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA011,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA011,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA011,1,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA011,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA011,1,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA011,1,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA011,1,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA011,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA011,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA011,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,,EA011,NA,,,, +Cc12,,1944,EA011,1,Ultimate residence is unclear and may be avunculocal,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA011,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Cc14,,1880,EA011,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA011,NA,,,, +Cc16,,1930,EA011,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA011,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA011,1,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA011,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA011,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA011,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA011,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA011,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA011,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA011,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA011,1,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA011,NA,,,, +Cc9,Ahaggaren tribe,1920,EA011,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Cd1,Kenuzi Nubians of Dahmit,1920,EA011,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA011,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA011,1,Suggested rather than attested,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA011,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA011,1,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA011,1,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA011,1,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA011,1,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA011,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA011,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA011,1,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA011,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA011,1,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA011,1,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA011,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA011,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA011,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA011,2,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA011,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA011,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA011,1,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA011,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA011,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA011,2,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA011,2,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA011,2,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA011,2,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA011,1,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA011,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Cf1,Small City in Connecticut,1920,EA011,2,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA011,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA011,2,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA011,2,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA011,2,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA011,2,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA011,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA011,1,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA011,2,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Cg5,,1950,EA011,2,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA011,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA011,2,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA011,2,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA011,2,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA011,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA011,2,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA011,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA011,2,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA011,1,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA011,1,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA011,1,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA011,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA011,2,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ci11,,1940,EA011,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA011,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA011,1,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA011,2,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA011,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA011,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA011,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA011,1,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA011,1,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA011,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA011,1,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA011,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA011,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA011,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA011,2,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA011,1,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA011,1,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA011,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA011,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA011,1,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA011,1,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA011,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA011,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA011,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA011,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA011,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA011,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA011,1,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA011,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA011,1,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA011,1,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA011,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA011,1,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA011,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA011,1,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA011,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA011,1,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA011,1,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA011,1,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA011,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA011,1,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA011,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA011,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA011,1,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA011,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA011,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ec4,Yurak Tribe,1900,EA011,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA011,2,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ec6,Upper Kolyma River,1850,EA011,2,,jochelson191926,EthnographicAtlas_1967_p86,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Ec7,Saru Basin in Hokkaido,1900,EA011,2,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ec8,,1900,EA011,1,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA011,1,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA011,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA011,1,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA011,1,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA011,1,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA011,1,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA011,2,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA011,1,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA011,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA011,1,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA011,1,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA011,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA011,1,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA011,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA011,1,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA011,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA011,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA011,1,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA011,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA011,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA011,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA011,1,Uxorilocal only if wife has no brothers,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA011,1,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA011,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA011,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA011,1,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA011,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA011,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA011,1,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA011,1,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA011,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA011,1,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA011,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA011,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA011,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA011,2,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA011,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA011,1,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA011,1,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA011,1,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA011,1,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA011,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA011,1,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA011,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA011,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA011,9,Entry pertains to the Nayar; predominantly Matrilocal among the Mappilla and Virilocal or Neolocal among the Tiyyar,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA011,1,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA011,1,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA011,1,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA011,2,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA011,1,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA011,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA011,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA011,3,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA011,2,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Eh6,with special reference to the Kandyan Sinhalese,1950,EA011,2,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Eh7,,1900,EA011,1,"But McLeod reports Ambilocal (code ""2"")",decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA011,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA011,1,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA011,3,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA011,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA011,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA011,1,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA011,1,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA011,1,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA011,1,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA011,1,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA011,1,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA011,1,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA011,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA011,1,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA011,1,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA011,2,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA011,1,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA011,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA011,1,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA011,3,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA011,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA011,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA011,1,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA011,3,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA011,3,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA011,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA011,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA011,2,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA011,2,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA011,3,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA011,3,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA011,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA011,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA011,2,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA011,2,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA011,1,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA011,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA011,2,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA011,2,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ia10,,1930,EA011,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA011,2,,mabuchi1960,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Ia12,,1950,EA011,2,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA011,2,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA011,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA011,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA011,3,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA011,2,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA011,2,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA011,2,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA011,2,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA011,2,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA011,2,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Ia6,Su-Paiwan Village,1930,EA011,2,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA011,2,,fox1954,EthnographicAtlas_1967_p90,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Ia8,,1900,EA011,2,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ia9,with special reference to the southern Ami,1930,EA011,3,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA011,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA011,2,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA011,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA011,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA011,2,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ib6,,1920,EA011,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA011,2,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ib8,with special reference to the Ridan group,1900,EA011,2,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,,,EA011,NA,,,, +Ic1,Borongloe,1940,EA011,2,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA011,2,,hueting1921; riedel1885,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ic11,Allang,1950,EA011,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA011,2,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA011,1,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA011,2,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ic3,with special reference to the Mountain Belu,1950,EA011,3,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA011,1,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA011,3,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA011,1,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA011,1,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA011,1,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA011,1,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA011,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA011,1,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA011,1,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA011,1,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA011,1,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA011,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA011,2,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Id4,,1900,EA011,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA011,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA011,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA011,1,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA011,NA,,,, +Id9,,1910,EA011,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA011,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA011,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA011,1,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA011,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA011,1,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA011,1,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA011,1,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA011,9,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA011,9,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA011,2,,serpenti1965,EthnographicAtlas_1967_p94,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ie19,with special reference to the coastal inhabitants,1910,EA011,9,But normally patrilocal,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA011,1,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA011,1,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA011,1,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA011,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA011,1,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA011,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA011,1,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA011,1,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA011,1,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA011,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA011,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA011,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA011,3,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA011,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA011,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA011,1,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA011,2,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA011,1,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA011,1,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA011,1,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA011,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA011,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA011,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA011,1,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA011,1,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA011,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA011,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA011,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA011,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA011,3,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA011,1,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA011,3,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA011,3,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA011,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +If15,,1930,EA011,3,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA011,3,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA011,3,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA011,3,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA011,2,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA011,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA011,3,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA011,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA011,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +If8,with special reference to those of Saipa,1950,EA011,2,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA011,2,,lessa1950; william1966,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ig1,Northeastern group,1940,EA011,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p98,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ig10,,1950,EA011,1,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA011,2,,armstrong1928,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ig12,with special reference to the Varisi,1900,EA011,2,,scheffler1965,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ig13,,1900,EA011,9,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA011,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ig15,,1950,EA011,1,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA011,1,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA011,1,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA011,1,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA011,1,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA011,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ig20,with special reference to the village of Longgu,1920,EA011,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ig21,with special reference to Boieng Island,1930,EA011,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ig3,,1930,EA011,2,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA011,3,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA011,2,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""uxorilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). THerefore, we have recoded this as ""2"", couple to either group (uxorilocal >> wife's group; avunculocal >> husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ig6,,1900,EA011,1,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA011,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""patrilocal, virilocal or avunculocal"". Gray coded avunculocal residence as a case where the husand moves to wife's group, but we understand it to be the opposite (wife moves to husband, who is living with his mother's brother's family). Therefore, we have recoded this as ""1"", wife to husband's group (patrilocal, virilocal >> husband's group; avunculocal >> (special case of) husband's group). In cases where preferred marriage is to MoBrDa, users may wish to recode." +Ig8,,1910,EA011,2,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA011,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA011,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Ih10,Whitsands,1920,EA011,1,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA011,NA,,,, +Ih12,,1920,EA011,1,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA011,1,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA011,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA011,1,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA011,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA011,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA011,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA011,3,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA011,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA011,1,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA011,1,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA011,2,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,,EA011,NA,,,, +Ii12,Pangai,1920,EA011,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA011,2,,burrows1937,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ii14,,1829,EA011,2,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ii2,Ravenga District,1930,EA011,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA011,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA011,2,Residence rule inferred from data on inheritance,kennedy1931; white1965,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA011,2,Virilocal for part of the year in families possessing coconut groves in the outer islands,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". Assume Murdock comment on Virilocality refers to codes for post-marital residence (Col 16), not Col 19 as stated in Gray (1999)" +Ii6,with special reference to Atafu,1900,EA011,2,,macgregor1937,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Ii7,,1910,EA011,2,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA011,2,,burrows1936,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ii9,,1840,EA011,2,,loeb1926a,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ij1,,1820,EA011,2,,buck1934,EthnographicAtlas_1967_p98,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ij10,,1900,EA011,2,,buck1932b,Ethnology_Vol6_No1_Jan_1967,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ij2,Nga Puhi Tribe,1820,EA011,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA011,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA011,2,,buck1932a,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ij5,,1900,EA011,2,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA011,2,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA011,2,,buck1938; laval1938,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ij8,,1900,EA011,2,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA011,2,,metraux1940,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na1,,1930,EA011,2,,mckennan1959,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Na10,,1930,EA011,1,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA011,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA011,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA011,2,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA011,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA011,1,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA011,2,,osgood1931,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na17,"Lynx Point band, Fort Simpson",1860,EA011,2,"Entry follows Helm; Honigmann reports prevailing pattern as Uxorilocal (EA012 would be code ""9""), which would change this code to 'Husband to wife's group' (code ""3"")",helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA011,3,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA011,2,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA011,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na21,,1900,EA011,2,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA011,2,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na23,with special reference to the Koksoagmiu,1890,EA011,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA011,2,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA011,2,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na26,with special reference to the Iliamna,1870,EA011,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA011,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Na28,,1880,EA011,1,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA011,3,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA011,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA011,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA011,2,,skinner1912,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Na32,Lake St. John & Mistassini Band,1880,EA011,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA011,2,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA011,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA011,2,,cameron1890; grant1890,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na36,with special reference to the Red Lake and White Earth bands,1860,EA011,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA011,2,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA011,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA011,2,,jenness1935,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na4,Upper Liard and Dease River Group,1920,EA011,3,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA011,NA,,,, +Na41,Mainland division,1700,EA011,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA011,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA011,2,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na44,,1910,EA011,2,,graburn1964,Ethnology_Vol4_No4_Oct_1965,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na45,,1900,EA011,2,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA011,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA011,1,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA011,2,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Na8,Shageluk Village,1880,EA011,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Na9,Unalaska Branch (Eastern Aleut),1830,EA011,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA011,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Nb10,,1865,EA011,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb11,with special reference to the Central Nootka,1880,EA011,2,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb12,,1880,EA011,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb13,,1880,EA011,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA011,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb15,,1880,EA011,2,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb16,,1860,EA011,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA011,2,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb18,,1880,EA011,1,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA011,1,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA011,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA011,2,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb21,,1860,EA011,2,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb22,with special reference to the Chilkat,1880,EA011,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Nb23,,1880,EA011,2,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb24,,1860,EA011,1,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA011,2,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb26,,1880,EA011,2,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb27,with special reference to the Tait,1880,EA011,2,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb28,,1860,EA011,2,,barnett1937; drucker1939,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb29,,1860,EA011,2,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb3,,1890,EA011,2,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb30,,1860,EA011,1,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA011,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA011,2,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb33,,1860,EA011,2,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA011,2,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb35,,1860,EA011,2,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb36,,1860,EA011,2,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb37,,1860,EA011,2,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA011,2,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb39,,1860,EA011,2,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA011,2,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nb5,Eyak Tribe,1890,EA011,1,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Nb6,,1870,EA011,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA011,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Nb8,,1880,EA011,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p102,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Nb9,"Central group, lower B.C. River",1880,EA011,2,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nc1,,1850,EA011,1,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA011,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nc11,,1860,EA011,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA011,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA011,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nc14,with special reference to the northeastern Wintu,1860,EA011,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nc15,,1860,EA011,2,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA011,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA011,2,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA011,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA011,3,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA011,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nc20,,1860,EA011,2,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,,EA011,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA011,2,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA011,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA011,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA011,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA011,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA011,1,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA011,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA011,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA011,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA011,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA011,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA011,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA011,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA011,1,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA011,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA011,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA011,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA011,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA011,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nc9,,1860,EA011,2,,ray1963; voegelin1942,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd1,,1850,EA011,2,,murdock1958; ray1942,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd10,,1860,EA011,2,,ray1942; teit1900,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd11,with special reference to the southeastern Shuswap,1850,EA011,1,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA011,2,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd13,,1860,EA011,2,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd14,,1860,EA011,1,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA011,2,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA011,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA011,2,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd18,,1860,EA011,2,,spierandsapir1930,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd19,,1860,EA011,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA011,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd20,,1850,EA011,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd21,,1870,EA011,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA011,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd23,,1870,EA011,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA011,2,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA011,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd26,,1870,EA011,2,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA011,3,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA011,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA011,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA011,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA011,2,,driver1937; steward1933,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd31,,1850,EA011,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA011,3,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA011,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA011,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA011,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd36,,1870,EA011,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA011,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA011,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA011,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA011,1,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA011,3,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA011,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA011,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA011,2,,harris1940; steward1941,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd44,,1850,EA011,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd45,,1860,EA011,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA011,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA011,2,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd48,with special reference to those of Deep Creek,1860,EA011,2,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd49,including the Kaiparowits band,1860,EA011,3,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA011,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,,EA011,NA,,,, +Nd51,,1860,EA011,3,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA011,2,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA011,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA011,2,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA011,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA011,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd57,,1860,EA011,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd58,,1860,EA011,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd59,,1860,EA011,3,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA011,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA011,3,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA011,3,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA011,3,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA011,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nd64,with special reference to the Kucundika,1860,EA011,3,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA011,2,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA011,2,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA011,2,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA011,2,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA011,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nd9,,1860,EA011,2,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ne1,Gros Ventre Tribe,1880,EA011,2,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ne10,,1860,EA011,3,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA011,2,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ne12,,1850,EA011,2,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ne13,,1850,EA011,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,,EA011,NA,,,, +Ne15,Hidatsa Village,1860,EA011,3,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA011,2,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA011,2,"Entry follows Richardson; Mooney reports prevailing pattern as Uxorilocal (EA012 would be code ""9""), which would change this code to 'Husband to wife's group' (code ""3"")",lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ne18,,1850,EA011,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA011,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA011,2,,mcallister1937,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Ne20,,1850,EA011,2,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ne21,,,EA011,NA,,,, +Ne3,Comanche Tribe,1870,EA011,2,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA011,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA011,2,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Ne6,,1830,EA011,3,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA011,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA011,2,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Ne9,,1860,EA011,3,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA011,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA011,1,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA011,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA011,1,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA011,3,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA011,1,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA011,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA011,1,"In hunting camps, but possibly Uxorilocal in the villages, which would make this 'Husband to wife's group' (code ""3"")",dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA011,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA011,2,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nf6,Skidi Band or subtribe,1867,EA011,3,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA011,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA011,2,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nf9,,1870,EA011,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA011,3,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA011,3,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA011,2,"At a late period, but probably originally Matrilocal, which would make this 'Husband to wife's group' (code ""3"")",eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA011,3,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA011,1,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA011,3,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA011,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA011,3,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA011,3,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA011,2,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA011,3,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA011,3,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA011,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA011,3,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA011,2,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA011,2,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Nh10,,1920,EA011,2,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA011,2,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA011,2,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA011,2,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA011,3,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA011,3,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA011,3,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA011,3,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA011,3,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA011,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA011,3,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA011,1,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA011,2,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA011,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA011,2,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA011,3,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA011,2,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA011,2,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA011,2,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA011,3,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA011,3,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA011,1,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA011,2,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA011,3,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA011,2,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA011,2,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA011,2,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA011,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA011,2,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA011,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA011,2,,driveranddriver1963,EthnographicAtlas_1967_p114,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Ni6,,1840,EA011,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA011,1,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA011,2,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,,EA011,NA,,,, +Nj1,Ojitlan,1940,EA011,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA011,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA011,1,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,,EA011,NA,,,, +Nj13,,1900,EA011,2,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA011,1,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA011,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA011,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA011,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA011,1,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA011,2,,diebold1966,Ethnology_Vol5_No4_Oct_1966,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Nj7,with special reference to Ayutla,1930,EA011,1,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA011,1,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA011,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA011,3,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA011,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA011,1,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA011,2,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA011,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA011,3,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA011,1,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA011,2,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA011,1,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA011,1,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA011,2,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA011,2,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA011,2,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA011,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA011,2,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA011,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA011,3,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA011,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA011,3,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA011,2,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Sb4,with special reference to the Cachama group,1950,EA011,2,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Sb5,,1950,EA011,2,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA011,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code." +Sb7,with special reference to the Pariri,1950,EA011,3,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA011,1,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA011,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA011,3,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA011,3,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA011,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA011,3,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA011,2,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Sc14,,1890,EA011,3,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA011,3,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA011,3,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA011,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA011,3,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA011,3,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA011,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA011,3,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA011,1,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA011,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Gray (1999) coded all cases of avunculocal residence as ""3""; we have recoded as ""1"" (Wife to husband's group), because in avunculocal residence the couple moves to the husband's mother's brother's residence. However, if preferred marriage is to MoBrDa, user may wish to revise the code. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA011,2,,wilbert1959b,EthnographicAtlas_1967_p118,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Sc8,,1950,EA011,3,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA011,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA011,2,But men sleep apart from their wives in a men's house,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA011,3,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA011,1,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA011,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA011,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA011,3,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA011,2,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA011,2,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA011,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA011,3,"The entry assumes that the matrilocal extended families are organized around matrilineage cores; if there are actually no lineages, the entry should be Uxorilocal; Holmberg does not report lineages but admits, in personal discussion, that he may conceivably have overlooked their existence",holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA011,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA011,1,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA011,1,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA011,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA011,2,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA011,1,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA011,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA011,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA011,2,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA011,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA011,3,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA011,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA011,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA011,2,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Sf4,,1950,EA011,2,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Sf5,,1900,EA011,2,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA011,1,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA011,2,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Sf8,,1950,EA011,3,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA011,2,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA011,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA011,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA011,1,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people""",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA011,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA011,2,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA011,2,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Sh2,,1850,EA011,2,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA011,2,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA011,3,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA011,3,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA011,2,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Sh7,,1900,EA011,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA011,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA011,2,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Si1,Kejara,1920,EA011,3,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA011,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA011,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA011,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA011,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +Si5,,1940,EA011,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA011,2,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA011,2,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Si8,,1940,EA011,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA011,NA,,,, +Sj1,,1950,EA011,3,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA011,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA011,3,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA011,1,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA011,2,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA011,3,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,,,EA011,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA011,3,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA011,3,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA011,2,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of uxorilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""uxorilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of uxorilocal"". " +Sj9,,1950,EA011,3,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA011,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA011,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA011,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA011,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA011,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +ch17,with special reference to those of the Benderskij Uezd,1894,EA011,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA011,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA011,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA011,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA011,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA011,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA011,2,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +ch24,with special reference to the Northwest Courland,1847,EA011,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA011,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA011,2,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005,"This code is based on variable EA012, which for this society is coded as ""ambilocal with a preponderance of virilocal"", a code present in Murdock but not Gray (1999), where it was combined with the code for ""virilocal"". We have recoded this variable as ""couple to either group"" to reflect Murdock's more general ""ambilocal, with a preponderance of virilocal"". " +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA011,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA011,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA011,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA011,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA011,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA011,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA011,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA011,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA011,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA011,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA011,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA011,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Aa2,with special reference to Central Dorobo,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Aa3,Gei/Khauan tribe,1840,EA112,8,,,Gray (1999); Bourguignon (1973), +Aa4,,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Aa5,"Epulu net-hunters, Ituri forest",1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Aa6,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Aa7,,,EA112,NA,,,, +Aa8,,,EA112,NA,,,, +Aa9,,,EA112,NA,,,, +Ab1,,1900,EA112,3,,,Gray (1999); Bourguignon (1973), +Ab10,,1936,EA112,1,,,Gray (1999); Bourguignon (1973), +Ab11,,1850,EA112,3,,,Gray (1999); Bourguignon (1973), +Ab12,,1830,EA112,4,,,Gray (1999); Bourguignon (1973), +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA112,3,,,Gray (1999); Bourguignon (1973), +Ab14,,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Ab15,,,EA112,NA,,,, +Ab16,,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Ab17,,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Ab18,with special reference to the Zezuru,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ab19,with special reference to the Kuanyama,1910,EA112,6,,,Gray (1999); Bourguignon (1973), +Ab2,,1880,EA112,6,,,Gray (1999); Bourguignon (1973), +Ab20,,,EA112,NA,,,, +Ab21a,,,EA112,NA,,,, +Ab21b,,,EA112,NA,,,, +Ab22,,,EA112,NA,,,, +Ab3,Ruling Luyana,1890,EA112,6,,,Gray (1999); Bourguignon (1973), +Ab4,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ab5,,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Ab6,,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Ab8,Basuto,1860,EA112,4,,,Gray (1999); Bourguignon (1973), +Ab9,,1870,EA112,1,,,Gray (1999); Bourguignon (1973), +Ac1,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ac10,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ac11,,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Ac12,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ac13,,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ac14,,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Ac15,,,EA112,NA,,,, +Ac16,,,EA112,NA,,,, +Ac17,,,EA112,NA,,,, +Ac18,,,EA112,NA,,,, +Ac19,,,EA112,NA,,,, +Ac2,,1920,EA112,2,,,Gray (1999); Bourguignon (1973), +Ac20,,,EA112,NA,,,, +Ac21,,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Ac22,,,EA112,NA,,,, +Ac23,with special reference to the western Lele,1950,EA112,2,,,Gray (1999); Bourguignon (1973), +Ac24,,,EA112,NA,,,, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Ac26,,,EA112,NA,,,, +Ac27,,1930,EA112,5,,,Gray (1999); Bourguignon (1973), +Ac28,,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Ac29,,,EA112,NA,,,, +Ac3,Zambia branch,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Ac30,,1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Ac31,,,EA112,NA,,,, +Ac32,,,EA112,NA,,,, +Ac33,,,EA112,NA,,,, +Ac34,,,EA112,NA,,,, +Ac35,,,EA112,NA,,,, +Ac36,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ac37,,,EA112,NA,,,, +Ac38,,1910,EA112,2,,,Gray (1999); Bourguignon (1973), +Ac39,,,EA112,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA112,2,,,Gray (1999); Bourguignon (1973), +Ac40,,,EA112,NA,,,, +Ac41,,,EA112,NA,,,, +Ac42,,,EA112,NA,,,, +Ac43,,,EA112,NA,,,, +Ac5,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ac6,,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Ac7,,1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Ac8,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA112,7,,,Gray (1999); Bourguignon (1973), +Ad1,,,EA112,NA,,,, +Ad10,,,EA112,NA,,,, +Ad11,,,EA112,NA,,,, +Ad12,,1940,EA112,3,,,Gray (1999); Bourguignon (1973), +Ad13,,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Ad14,,,EA112,NA,,,, +Ad15,,,EA112,NA,,,, +Ad16,,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Ad17,,,EA112,NA,,,, +Ad18,,,EA112,NA,,,, +Ad19,,1910,EA112,4,,,Gray (1999); Bourguignon (1973), +Ad2,,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Ad20,,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Ad21,,,EA112,NA,,,, +Ad22,,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ad23,,,EA112,NA,,,, +Ad24,,,EA112,NA,,,, +Ad25,,,EA112,NA,,,, +Ad26,,,EA112,NA,,,, +Ad27,,,EA112,NA,,,, +Ad28,,,EA112,NA,,,, +Ad29,,1930,EA112,5,,,Gray (1999); Bourguignon (1973), +Ad3,,1910,EA112,2,,,Gray (1999); Bourguignon (1973), +Ad30,,1890,EA112,4,,,Gray (1999); Bourguignon (1973), +Ad31,,,EA112,NA,,,, +Ad32,,1900,EA112,2,,,Gray (1999); Bourguignon (1973), +Ad33,,,EA112,NA,,,, +Ad34,,,EA112,NA,,,, +Ad35,,,EA112,NA,,,, +Ad36,,,EA112,NA,,,, +Ad37,,,EA112,NA,,,, +Ad38,,,EA112,NA,,,, +Ad39,,,EA112,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA112,5,,,Gray (1999); Bourguignon (1973), +Ad40,,,EA112,NA,,,, +Ad41,,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Ad42,,,EA112,NA,,,, +Ad43,,,EA112,NA,,,, +Ad44,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ad45,,,EA112,NA,,,, +Ad46,,1950,EA112,6,,,Gray (1999); Bourguignon (1973), +Ad47,,1900,EA112,4,,,Gray (1999); Bourguignon (1973), +Ad48,,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ad49,,,EA112,NA,,,, +Ad5,,,EA112,NA,,,, +Ad50,,,EA112,NA,,,, +Ad51,,,EA112,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Ad7,Kyaddondo district (V: Kampala),1880,EA112,6,,,Gray (1999); Bourguignon (1973), +Ad8,with special reference to the northern or Iringa group,1910,EA112,5,,,Gray (1999); Bourguignon (1973), +Ad9,,1900,EA112,3,,,Gray (1999); Bourguignon (1973), +Ae1,with special reference to those of Bwamba in Uganda,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Ae10,,1910,EA112,3,,,Gray (1999); Bourguignon (1973), +Ae11,,,EA112,NA,,,, +Ae12,,1940,EA112,2,,,Gray (1999); Bourguignon (1973), +Ae13,,,EA112,NA,,,, +Ae14,,,EA112,NA,,,, +Ae15,,,EA112,NA,,,, +Ae16,,,EA112,NA,,,, +Ae17,,,EA112,NA,,,, +Ae18,,1900,EA112,2,,,Gray (1999); Bourguignon (1973), +Ae19,,,EA112,NA,,,, +Ae2,,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Ae20,,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Ae21,,,EA112,NA,,,, +Ae22,with special reference to the Bankutu,1900,EA112,2,,,Gray (1999); Bourguignon (1973), +Ae23,,,EA112,NA,,,, +Ae24,,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Ae25,,,EA112,NA,,,, +Ae26,,,EA112,NA,,,, +Ae27,,,EA112,NA,,,, +Ae28,,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Ae29,,,EA112,NA,,,, +Ae3,,1910,EA112,5,,,Gray (1999); Bourguignon (1973), +Ae30,,,EA112,NA,,,, +Ae31,,,EA112,NA,,,, +Ae32,,,EA112,NA,,,, +Ae33,,,EA112,NA,,,, +Ae34,,,EA112,NA,,,, +Ae35,,,EA112,NA,,,, +Ae36,,,EA112,NA,,,, +Ae37,,,EA112,NA,,,, +Ae38,,,EA112,NA,,,, +Ae39,,,EA112,NA,,,, +Ae4,,,EA112,NA,,,, +Ae40,,,EA112,NA,,,, +Ae41,,,EA112,NA,,,, +Ae42,,,EA112,NA,,,, +Ae43,,,EA112,NA,,,, +Ae44,,,EA112,NA,,,, +Ae45,,,EA112,NA,,,, +Ae46,,,EA112,NA,,,, +Ae47,,,EA112,NA,,,, +Ae48,,,EA112,NA,,,, +Ae49,,,EA112,NA,,,, +Ae5,,1910,EA112,2,,,Gray (1999); Bourguignon (1973), +Ae50,,,EA112,NA,,,, +Ae51,,,EA112,NA,,,, +Ae52,,,EA112,NA,,,, +Ae53,,,EA112,NA,,,, +Ae54,,,EA112,NA,,,, +Ae55,,,EA112,NA,,,, +Ae56,,,EA112,NA,,,, +Ae57,,,EA112,NA,,,, +Ae58,,,EA112,NA,,,, +Ae59,,,EA112,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Ae7,,1910,EA112,1,,,Gray (1999); Bourguignon (1973), +Ae8,,1910,EA112,2,,,Gray (1999); Bourguignon (1973), +Ae9,,,EA112,NA,,,, +Af1,City and environs of Abomey,1890,EA112,7,,,Gray (1999); Bourguignon (1973), +Af10,,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Af11,,1920,EA112,5,,,Gray (1999); Bourguignon (1973), +Af12,,,EA112,NA,,,, +Af13,,1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Af14,,,EA112,NA,,,, +Af15,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Af16,,,EA112,NA,,,, +Af17,,,EA112,NA,,,, +Af18,,,EA112,NA,,,, +Af19,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Af2,,1950,EA112,7,,,Gray (1999); Bourguignon (1973), +Af20,,1910,EA112,7,,,Gray (1999); Bourguignon (1973), +Af21,with special reference to the Kalabari,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Af22,,1940,EA112,5,,,Gray (1999); Bourguignon (1973), +Af23,,,EA112,NA,,,, +Af24,,1900,EA112,3,,,Gray (1999); Bourguignon (1973), +Af25,,,EA112,NA,,,, +Af26,,,EA112,NA,,,, +Af27,,,EA112,NA,,,, +Af28,,1910,EA112,3,,,Gray (1999); Bourguignon (1973), +Af29,,,EA112,NA,,,, +Af3,Kumasi State,1900,EA112,7,,,Gray (1999); Bourguignon (1973), +Af30,,,EA112,NA,,,, +Af31,,,EA112,NA,,,, +Af32,Abeouta Province and Benin,1920,EA112,7,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,,,EA112,NA,,,, +Af34,,,EA112,NA,,,, +Af35,,,EA112,NA,,,, +Af36,with special reference to the Glidyi,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Af37,,,EA112,NA,,,, +Af38,,,EA112,NA,,,, +Af39,with special reference to the Ndenie,1900,EA112,4,,,Gray (1999); Bourguignon (1973), +Af4,,,EA112,NA,,,, +Af40,,,EA112,NA,,,, +Af41,,,EA112,NA,,,, +Af42,,1900,EA112,1,,,Gray (1999); Bourguignon (1973), +Af43,,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Af44,,,EA112,NA,,,, +Af45,,,EA112,NA,,,, +Af46,,,EA112,NA,,,, +Af47,,,EA112,NA,,,, +Af48,,,EA112,NA,,,, +Af49,,1940,EA112,2,,,Gray (1999); Bourguignon (1973), +Af5,,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Af50,,,EA112,NA,,,, +Af51,,,EA112,NA,,,, +Af52,,,EA112,NA,,,, +Af53,,,EA112,NA,,,, +Af54,,1930,EA112,5,,,Gray (1999); Bourguignon (1973), +Af55,,,EA112,NA,,,, +Af56,,,EA112,NA,,,, +Af57,,,EA112,NA,,,, +Af58,,,EA112,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA112,7,,,Gray (1999); Bourguignon (1973), +Af7,,,EA112,NA,,,, +Af8,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Af9,,1900,EA112,4,,,Gray (1999); Bourguignon (1973), +Ag1,Segou to Bamako on Niger River,1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Ag10,,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Ag11,,,EA112,NA,,,, +Ag12,,,EA112,NA,,,, +Ag13,,,EA112,NA,,,, +Ag14,,,EA112,NA,,,, +Ag15,,,EA112,NA,,,, +Ag16,,,EA112,NA,,,, +Ag17,,,EA112,NA,,,, +Ag18,,,EA112,NA,,,, +Ag19,,,EA112,NA,,,, +Ag2,,,EA112,NA,,,, +Ag20,,,EA112,NA,,,, +Ag21,,,EA112,NA,,,, +Ag22,,,EA112,NA,,,, +Ag23,,,EA112,NA,,,, +Ag24,,,EA112,NA,,,, +Ag25,,,EA112,NA,,,, +Ag26,,,EA112,NA,,,, +Ag27,,,EA112,NA,,,, +Ag28,,,EA112,NA,,,, +Ag29,,,EA112,NA,,,, +Ag3,,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Ag30,,,EA112,NA,,,, +Ag31,,,EA112,NA,,,, +Ag32,,,EA112,NA,,,, +Ag33,,,EA112,NA,,,, +Ag34,,,EA112,NA,,,, +Ag35,,,EA112,NA,,,, +Ag36,,,EA112,NA,,,, +Ag37,,1910,EA112,3,,,Gray (1999); Bourguignon (1973), +Ag38,,,EA112,NA,,,, +Ag39,,,EA112,NA,,,, +Ag4,Tallensi Tribe,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ag40,,,EA112,NA,,,, +Ag41,,,EA112,NA,,,, +Ag42,,,EA112,NA,,,, +Ag43,,,EA112,NA,,,, +Ag44,,,EA112,NA,,,, +Ag45,,,EA112,NA,,,, +Ag46,,,EA112,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA112,8,,,Gray (1999); Bourguignon (1973), +Ag48,,,EA112,NA,,,, +Ag49,,,EA112,NA,,,, +Ag5,,,EA112,NA,,,, +Ag50,,,EA112,NA,,,, +Ag51,,,EA112,NA,,,, +Ag52,,,EA112,NA,,,, +Ag53,,,EA112,NA,,,, +Ag54,,,EA112,NA,,,, +Ag6,,,EA112,NA,,,, +Ag7,,,EA112,NA,,,, +Ag8,,,EA112,NA,,,, +Ag9,,,EA112,NA,,,, +Ah1,,,EA112,NA,,,, +Ah10,,,EA112,NA,,,, +Ah11,,,EA112,NA,,,, +Ah12,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ah13,,,EA112,NA,,,, +Ah14,,,EA112,NA,,,, +Ah15,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ah16,,,EA112,NA,,,, +Ah17,,,EA112,NA,,,, +Ah18,,,EA112,NA,,,, +Ah19,,,EA112,NA,,,, +Ah2,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ah20,,,EA112,NA,,,, +Ah21,,,EA112,NA,,,, +Ah22,,,EA112,NA,,,, +Ah23,,,EA112,NA,,,, +Ah24,,,EA112,NA,,,, +Ah25,,,EA112,NA,,,, +Ah26,,,EA112,NA,,,, +Ah27,,,EA112,NA,,,, +Ah28,,,EA112,NA,,,, +Ah29,,,EA112,NA,,,, +Ah3,Tar of Benue Province,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ah30,,,EA112,NA,,,, +Ah31,,,EA112,NA,,,, +Ah32,,,EA112,NA,,,, +Ah33,,,EA112,NA,,,, +Ah34,,,EA112,NA,,,, +Ah35,,,EA112,NA,,,, +Ah36,,,EA112,NA,,,, +Ah37,,,EA112,NA,,,, +Ah38,,,EA112,NA,,,, +Ah39,,,EA112,NA,,,, +Ah4,,,EA112,NA,,,, +Ah5,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ah6,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ah7,,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Ah8,,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Ah9,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ai1,,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Ai10,Nuba Hills,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Ai11,,,EA112,NA,,,, +Ai12,,,EA112,NA,,,, +Ai13,,,EA112,NA,,,, +Ai14,,,EA112,NA,,,, +Ai15,,,EA112,NA,,,, +Ai16,,,EA112,NA,,,, +Ai17,,,EA112,NA,,,, +Ai18,,1880,EA112,6,,,Gray (1999); Bourguignon (1973), +Ai19,,,EA112,NA,,,, +Ai2,,,EA112,NA,,,, +Ai20,,,EA112,NA,,,, +Ai21,,1880,EA112,3,,,Gray (1999); Bourguignon (1973), +Ai22,,,EA112,NA,,,, +Ai23,,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Ai24,,,EA112,NA,,,, +Ai25,,,EA112,NA,,,, +Ai26,,,EA112,NA,,,, +Ai27,,1890,EA112,6,,,Gray (1999); Bourguignon (1973), +Ai28,,,EA112,NA,,,, +Ai29,,,EA112,NA,,,, +Ai3,,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Ai30,,,EA112,NA,,,, +Ai31,,,EA112,NA,,,, +Ai32,,1920,EA112,7,,,Gray (1999); Bourguignon (1973), +Ai33,,,EA112,NA,,,, +Ai34,,,EA112,NA,,,, +Ai35,,1870,EA112,3,,,Gray (1999); Bourguignon (1973), +Ai36,,,EA112,NA,,,, +Ai37,,1940,EA112,5,,,Gray (1999); Bourguignon (1973), +Ai38,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ai39,,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Ai4,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ai40,,1940,EA112,3,,,Gray (1999); Bourguignon (1973), +Ai41,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ai42,,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Ai43,,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Ai44,,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Ai45,,,EA112,NA,,,, +Ai46,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ai47,Northern division,1939,EA112,5,,,Gray (1999); Bourguignon (1973), +Ai5,,,EA112,NA,,,, +Ai6,Shilluk Kingdom,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Ai7,,1910,EA112,6,,,Gray (1999); Bourguignon (1973), +Ai8,,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Ai9,,,EA112,NA,,,, +Aj1,,,EA112,NA,,,, +Aj10,,,EA112,NA,,,, +Aj11,,1900,EA112,4,,,Gray (1999); Bourguignon (1973), +Aj12,,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Aj13,,,EA112,NA,,,, +Aj14,,,EA112,NA,,,, +Aj15,,,EA112,NA,,,, +Aj16,,,EA112,NA,,,, +Aj17,,1890,EA112,6,,,Gray (1999); Bourguignon (1973), +Aj18,,,EA112,NA,,,, +Aj19,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA112,1,,,Gray (1999); Bourguignon (1973), +Aj20,,,EA112,NA,,,, +Aj21,,,EA112,NA,,,, +Aj22,,,EA112,NA,,,, +Aj23,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Aj24,,,EA112,NA,,,, +Aj25,,,EA112,NA,,,, +Aj26,,,EA112,NA,,,, +Aj27,,,EA112,NA,,,, +Aj28,,,EA112,NA,,,, +Aj29,,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Aj3,,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Aj30,,,EA112,NA,,,, +Aj31,,,EA112,NA,,,, +Aj4,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Aj5,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Aj6,,1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Aj7,,1910,EA112,1,,,Gray (1999); Bourguignon (1973), +Aj8,,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Aj9,,1920,EA112,5,,,Gray (1999); Bourguignon (1973), +Ca1,Town of Buso,1930,EA112,2,,,Gray (1999); Bourguignon (1973), +Ca10,,,EA112,NA,,,, +Ca11,,1890,EA112,3,,,Gray (1999); Bourguignon (1973), +Ca12,,,EA112,NA,,,, +Ca13,,,EA112,NA,,,, +Ca14,,,EA112,NA,,,, +Ca15,,1930,EA112,2,,,Gray (1999); Bourguignon (1973), +Ca16,,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Ca17,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca18,,,EA112,NA,,,, +Ca19,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca2,Dolbahanta clan or subtribe,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Ca20,,,EA112,NA,,,, +Ca21,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca22,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca23,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca24,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca25,,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ca26,,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ca27,,,EA112,NA,,,, +Ca28,,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ca29,,,EA112,NA,,,, +Ca3,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca30,Kafa Kingdom,1890,EA112,3,,,Gray (1999); Bourguignon (1973), +Ca31,,1860,EA112,3,,,Gray (1999); Bourguignon (1973), +Ca32,,1860,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca33,,1860,EA112,3,,,Gray (1999); Bourguignon (1973), +Ca34,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca35,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca36,,1860,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca37,,,EA112,NA,,,, +Ca38,,,EA112,NA,,,, +Ca39,,,EA112,NA,,,, +Ca4,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ca40,,,EA112,NA,,,, +Ca41,,,EA112,NA,,,, +Ca42,,,EA112,NA,,,, +Ca43,,,EA112,NA,,,, +Ca5,,1930,EA112,2,,,Gray (1999); Bourguignon (1973), +Ca6,,1880,EA112,3,,,Gray (1999); Bourguignon (1973), +Ca7,Gondar district,1950,EA112,6,,,Gray (1999); Bourguignon (1973), +Ca8,,1940,EA112,2,,,Gray (1999); Bourguignon (1973), +Ca9,,,EA112,NA,,,, +Cb1,,1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Cb10,,,EA112,NA,,,, +Cb11,,,EA112,NA,,,, +Cb12,,,EA112,NA,,,, +Cb13,,,EA112,NA,,,, +Cb14,,,EA112,NA,,,, +Cb15,,,EA112,NA,,,, +Cb16,,,EA112,NA,,,, +Cb17,Jebel Marra,1880,EA112,8,,,Gray (1999); Bourguignon (1973), +Cb18,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Cb19,,,EA112,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA112,6,,,Gray (1999); Bourguignon (1973), +Cb20,,,EA112,NA,,,, +Cb21,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Cb22,,,EA112,NA,,,, +Cb23,,,EA112,NA,,,, +Cb24,Wodaabe of Niger,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Cb25,,,EA112,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA112,6,,,Gray (1999); Bourguignon (1973), +Cb27,,,EA112,NA,,,, +Cb28,,,EA112,NA,,,, +Cb29,,,EA112,NA,,,, +Cb3,Bamba division,1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Cb4,,,EA112,NA,,,, +Cb5,,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Cb6,,,EA112,NA,,,, +Cb7,,,EA112,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Cb9,"Hausa, with special reference to the Kanawa",1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Cc1,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Cc10,,,EA112,NA,,,, +Cc11,,,EA112,NA,,,, +Cc12,,,EA112,NA,,,, +Cc13,,,EA112,NA,,,, +Cc14,,1880,EA112,8,,,Gray (1999); Bourguignon (1973), +Cc15,,,EA112,NA,,,, +Cc16,,,EA112,NA,,,, +Cc17,,,EA112,NA,,,, +Cc18,,,EA112,NA,,,, +Cc19,,,EA112,NA,,,, +Cc2,Nomads of Tibesti,1950,EA112,2,,,Gray (1999); Bourguignon (1973), +Cc20,,,EA112,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Cc4,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Cc5,,1910,EA112,3,,,Gray (1999); Bourguignon (1973), +Cc6,,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Cc7,,,EA112,NA,,,, +Cc8,,,EA112,NA,,,, +Cc9,Ahaggaren tribe,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Cd1,Kenuzi Nubians of Dahmit,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Cd10,,,EA112,NA,,,, +Cd11,,1500,EA112,8,,,Gray (1999); Bourguignon (1973), +Cd12,,1870,EA112,4,,,Gray (1999); Bourguignon (1973), +Cd13,,,EA112,NA,,,, +Cd14,,,EA112,NA,,,, +Cd15,,,EA112,NA,,,, +Cd16,,,EA112,NA,,,, +Cd17,,,EA112,NA,,,, +Cd18,,,EA112,NA,,,, +Cd19,,,EA112,NA,,,, +Cd2,Town and environs of Silwa,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Cd20,,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Cd21,,1930,EA112,1,,,Gray (1999); Bourguignon (1973), +Cd3,Entirety: Moroccan,1920,EA112,5,,,Gray (1999); Bourguignon (1973), +Cd4,,1890,EA112,6,,,Gray (1999); Bourguignon (1973), +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Cd6,with special reference to the New Empire,-1400,EA112,2,,,Gray (1999); Bourguignon (1973), +Cd7,,,EA112,NA,,,, +Cd8,,,EA112,NA,,,, +Cd9,,,EA112,NA,,,, +Ce1,,,EA112,NA,,,, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ce3,City and environs of Rome,100,EA112,2,,,Gray (1999); Bourguignon (1973), +Ce4,Labourd,1930,EA112,8,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,,,EA112,NA,,,, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ce7,with special reference to the village of Vasilika,1950,EA112,5,,,Gray (1999); Bourguignon (1973), +Ce8,,,EA112,NA,,,, +Cf1,,,EA112,NA,,,, +Cf2,,,EA112,NA,,,, +Cf3,,,EA112,NA,,,, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Cf5,,,EA112,NA,,,, +Cg1,,,EA112,NA,,,, +Cg2,,1100,EA112,1,,,Gray (1999); Bourguignon (1973), +Cg3,County Clare,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Cg4,Konkama District,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Cg5,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ch1,with special reference to the village of Orasac,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Ch10,,,EA112,NA,,,, +Ch11,,,EA112,NA,,,, +Ch2,,1890,EA112,8,,,Gray (1999); Bourguignon (1973), +Ch3,,,EA112,NA,,,, +Ch4,,1900,EA112,5,,,Gray (1999); Bourguignon (1973), +Ch5,with special reference to the village of Dragelevtsy,1940,EA112,1,,,Gray (1999); Bourguignon (1973), +Ch6,,,EA112,NA,,,, +Ch7,,,EA112,NA,,,, +Ch8,,,EA112,NA,,,, +Ch9,,,EA112,NA,,,, +Ci1,,,EA112,NA,,,, +Ci10,Vicinity of Erevan,1900,EA112,8,,,Gray (1999); Bourguignon (1973), +Ci11,,1940,EA112,5,,,Gray (1999); Bourguignon (1973), +Ci12,,,EA112,NA,,,, +Ci2,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA112,8,,,Gray (1999); Bourguignon (1973), +Ci4,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ci5,Northern Anatolian Plateau,1950,EA112,5,,,Gray (1999); Bourguignon (1973), +Ci6,,1880,EA112,1,,,Gray (1999); Bourguignon (1973), +Ci7,,1900,EA112,8,,,Gray (1999); Bourguignon (1973), +Ci8,,1850,EA112,8,,,Gray (1999); Bourguignon (1973), +Ci9,,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Cj1,with special reference to the village of Tell Toqaan,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Cj10,with special reference to the village of ech-Chibayish,1950,EA112,6,,,Gray (1999); Bourguignon (1973), +Cj2,Unspecified,1920,EA112,7,,,Gray (1999); Bourguignon (1973), +Cj3,,-800,EA112,4,,,Gray (1999); Bourguignon (1973), +Cj4,City and environs of Babylon,-2000,EA112,6,,,Gray (1999); Bourguignon (1973), +Cj5,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Cj6,,,EA112,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Cj9,,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Ea1,,,EA112,NA,,,, +Ea10,,,EA112,NA,,,, +Ea11,,,EA112,NA,,,, +Ea12,,,EA112,NA,,,, +Ea13,,,EA112,NA,,,, +Ea2,with special reference to the Yusufsai of Swat,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ea3,with special reference to the Urazgani,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Ea4,,,EA112,NA,,,, +Ea5,,1890,EA112,7,,,Gray (1999); Bourguignon (1973), +Ea6,,,EA112,NA,,,, +Ea7,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ea8,,,EA112,NA,,,, +Ea9,,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Eb1,Great Horde,1910,EA112,6,,,Gray (1999); Bourguignon (1973), +Eb2,,1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Eb3,Narobanchin Territory,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Eb4,with special reference to the Botaha area,1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Eb6,,,EA112,NA,,,, +Eb7,,,EA112,NA,,,, +Eb8,,,EA112,NA,,,, +Ec1,Sakhalin Island,1920,EA112,5,,,Gray (1999); Bourguignon (1973), +Ec10,with special reference to those on the Ob River,1880,EA112,1,,,Gray (1999); Bourguignon (1973), +Ec11,,,EA112,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA112,4,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA112,1,,,Gray (1999); Bourguignon (1973), +Ec4,Yurak Tribe,1900,EA112,1,,,Gray (1999); Bourguignon (1973), +Ec5,with special reference to the Maritime Koryak,1900,EA112,4,,,Gray (1999); Bourguignon (1973), +Ec6,Upper Kolyma River,1850,EA112,5,,,Gray (1999); Bourguignon (1973), +Ec7,Saru Basin in Hokkaido,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Ec8,,1900,EA112,5,,,Gray (1999); Bourguignon (1973), +Ec9,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ed1,Kanghwa Island,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Ed10,with special reference to the village of Taitou,1930,EA112,2,,,Gray (1999); Bourguignon (1973), +Ed13,,,EA112,NA,,,, +Ed14,,,EA112,NA,,,, +Ed15a,,,EA112,NA,,,, +Ed15b,,,EA112,NA,,,, +Ed16,,,EA112,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Ed3,Aigun District,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA112,1,,,Gray (1999); Bourguignon (1973), +Ed5,Okayama,1950,EA112,6,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Ed7,,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Ed8,,1930,EA112,2,,,Gray (1999); Bourguignon (1973), +Ed9,,,EA112,NA,,,, +Ee1,,,EA112,NA,,,, +Ee2,,,EA112,NA,,,, +Ee3,Lingthem and vicinity,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Ee4,with special reference to Central Tibet,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Ee5,with special reference to the Shina tribe,1870,EA112,1,,,Gray (1999); Bourguignon (1973), +Ee6,with special reference to those of Khumbu,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ee7,,,EA112,NA,,,, +Ee8,,,EA112,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA112,3,,,Gray (1999); Bourguignon (1973), +Ef10,,,EA112,NA,,,, +Ef11,,,EA112,NA,,,, +Ef2,,,EA112,NA,,,, +Ef3,,,EA112,NA,,,, +Ef4,,,EA112,NA,,,, +Ef5,,1900,EA112,3,,,Gray (1999); Bourguignon (1973), +Ef6,,1940,EA112,4,,,Gray (1999); Bourguignon (1973), +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA112,6,,,Gray (1999); Bourguignon (1973), +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Ef9,,,EA112,NA,,,, +Eg1,with special reference to the forest group,1940,EA112,8,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA112,6,,,Gray (1999); Bourguignon (1973), +Eg11,,,EA112,NA,,,, +Eg12,,,EA112,NA,,,, +Eg13,,,EA112,NA,,,, +Eg14,with special reference to those of the Bison Hills,1940,EA112,7,,,Gray (1999); Bourguignon (1973), +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA112,6,,,Gray (1999); Bourguignon (1973), +Eg3,Hill Maria,1938,EA112,4,,,Gray (1999); Bourguignon (1973), +Eg4,Toda Tribe,1900,EA112,3,,,Gray (1999); Bourguignon (1973), +Eg5,,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Eg6,with special reference to Northern Kerala,1799,EA112,6,,,Gray (1999); Bourguignon (1973), +Eg7,,,EA112,NA,,,, +Eg8,,,EA112,NA,,,, +Eg9,,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Eh1,,1870,EA112,8,,,Gray (1999); Bourguignon (1973), +Eh10,,,EA112,NA,,,, +Eh2,,,EA112,NA,,,, +Eh3,Menabe subtribe,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Eh4,with special reference to the Rock Vedda,1900,EA112,3,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA112,5,,,Gray (1999); Bourguignon (1973), +Eh6,with special reference to the Kandyan Sinhalese,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Eh7,,,EA112,NA,,,, +Eh8,,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Eh9,,,EA112,NA,,,, +Ei1,Rengsanggr,1900,EA112,2,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA112,NA,,,, +Ei11,,,EA112,NA,,,, +Ei12,,,EA112,NA,,,, +Ei13,,1910,EA112,4,,,Gray (1999); Bourguignon (1973), +Ei14,,,EA112,NA,,,, +Ei15,,,EA112,NA,,,, +Ei16,,,EA112,NA,,,, +Ei17,,,EA112,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Ei19,,1940,EA112,1,,,Gray (1999); Bourguignon (1973), +Ei2,,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Ei20,,,EA112,NA,,,, +Ei3,Nondwin Village,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Ei4,Lakher Tribe,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Ei5,with special reference to the Jinghpaw,1940,EA112,4,,,Gray (1999); Bourguignon (1973), +Ei6,,,EA112,NA,,,, +Ei7,,1910,EA112,1,,,Gray (1999); Bourguignon (1973), +Ei8,with special reference to those of the Jaintia Hills,1900,EA112,2,,,Gray (1999); Bourguignon (1973), +Ei9,,,EA112,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA112,5,,,Gray (1999); Bourguignon (1973), +Ej10,Ko-Sier Village,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ej12,,,EA112,NA,,,, +Ej13,,,EA112,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA112,4,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA112,NA,,,, +Ej16,,,EA112,NA,,,, +Ej2,with special reference to the village of Sar Luk,1940,EA112,1,,,Gray (1999); Bourguignon (1973), +Ej3,Jehai Group or subtribe,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Ej4,Red River Delta in Tonkin,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Ej5,,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ej6,of the Mergui Archipelago,1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Ej7,,1950,EA112,3,,,Gray (1999); Bourguignon (1973), +Ej8,with special reference to those of Trengganu,1940,EA112,4,,,Gray (1999); Bourguignon (1973), +Ej9,,1940,EA112,4,,,Gray (1999); Bourguignon (1973), +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA112,1,,,Gray (1999); Bourguignon (1973), +Ia10,,,EA112,NA,,,, +Ia11,,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Ia12,,1950,EA112,5,,,Gray (1999); Bourguignon (1973), +Ia13,,,EA112,NA,,,, +Ia14,,1930,EA112,5,,,Gray (1999); Bourguignon (1973), +Ia15,with special reference to those of the Agusan Valley,1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Ia16,with special reference to the northern Kalinga,1910,EA112,4,,,Gray (1999); Bourguignon (1973), +Ia17,,,EA112,NA,,,, +Ia18,,,EA112,NA,,,, +Ia2,,1950,EA112,5,,,Gray (1999); Bourguignon (1973), +Ia3,Kiangan Group,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ia4,with special reference to the Eastern Subanun,1950,EA112,7,,,Gray (1999); Bourguignon (1973), +Ia5,,,EA112,NA,,,, +Ia6,Su-Paiwan Village,1930,EA112,5,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA112,NA,,,, +Ia8,,1900,EA112,2,,,Gray (1999); Bourguignon (1973), +Ia9,with special reference to the southern Ami,1930,EA112,1,,,Gray (1999); Bourguignon (1973), +Ib1,"Ulu Ai Group, Baleh",1950,EA112,5,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA112,4,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Ib4,with special reference to the Toba group,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Ib5,with special reference to the village of Sensuron,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Ib6,,1920,EA112,7,,,Gray (1999); Bourguignon (1973), +Ib7,with special reference to those of North Pageh,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Ib8,with special reference to the Ridan group,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Ib9,,,EA112,NA,,,, +Ic1,Borongloe,1940,EA112,1,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA112,1,,,Gray (1999); Bourguignon (1973), +Ic11,Allang,1950,EA112,6,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA112,1,,,Gray (1999); Bourguignon (1973), +Ic13,,,EA112,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Ic3,with special reference to the Mountain Belu,1950,EA112,5,,,Gray (1999); Bourguignon (1973), +Ic4,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ic5,Bare'e subgroup,1910,EA112,4,,,Gray (1999); Bourguignon (1973), +Ic6,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Ic8,,1890,EA112,8,,,Gray (1999); Bourguignon (1973), +Ic9,,,EA112,NA,,,, +Id1,Alice Springs and environs,1900,EA112,5,,,Gray (1999); Bourguignon (1973), +Id10,,1930,EA112,2,,,Gray (1999); Bourguignon (1973), +Id11,,,EA112,NA,,,, +Id12,,,EA112,NA,,,, +Id13,,,EA112,NA,,,, +Id2,,1930,EA112,5,,,Gray (1999); Bourguignon (1973), +Id3,Tiwi Tribe: Melville Island,1920,EA112,5,,,Gray (1999); Bourguignon (1973), +Id4,,1900,EA112,1,,,Gray (1999); Bourguignon (1973), +Id5,,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Id6,,,EA112,NA,,,, +Id7,,,EA112,NA,,,, +Id8,,1830,EA112,6,,,Gray (1999); Bourguignon (1973), +Id9,,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA112,4,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA112,2,,,Gray (1999); Bourguignon (1973), +Ie11,,,EA112,NA,,,, +Ie12,Hongwam subtribe; Rumbima,1930,EA112,6,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA112,5,,,Gray (1999); Bourguignon (1973), +Ie14,,,EA112,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA112,3,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA112,5,,,Gray (1999); Bourguignon (1973), +Ie17,,1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Ie18,Bamol Village,1940,EA112,1,,,Gray (1999); Bourguignon (1973), +Ie19,with special reference to the coastal inhabitants,1910,EA112,7,,,Gray (1999); Bourguignon (1973), +Ie2,,1920,EA112,8,,,Gray (1999); Bourguignon (1973), +Ie20,,1900,EA112,7,,,Gray (1999); Bourguignon (1973), +Ie21,,1900,EA112,7,,,Gray (1999); Bourguignon (1973), +Ie22,,1900,EA112,8,,,Gray (1999); Bourguignon (1973), +Ie23,,,EA112,NA,,,, +Ie24,,,EA112,NA,,,, +Ie25,,,EA112,NA,,,, +Ie26,,,EA112,NA,,,, +Ie27,,,EA112,NA,,,, +Ie28,,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Ie29,,,EA112,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA112,3,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA112,NA,,,, +Ie31,,,EA112,NA,,,, +Ie32,,,EA112,NA,,,, +Ie33,,,EA112,NA,,,, +Ie34,,,EA112,NA,,,, +Ie35,,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Ie36,,,EA112,NA,,,, +Ie37,,,EA112,NA,,,, +Ie38,,,EA112,NA,,,, +Ie39,,,EA112,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA112,8,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ie6,,,EA112,NA,,,, +Ie7,with special reference to the Mae group,1950,EA112,5,,,Gray (1999); Bourguignon (1973), +Ie8,with special reference to the Koriki,1910,EA112,2,,,Gray (1999); Bourguignon (1973), +Ie9,,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +If1,"Ulimang, Badeldaob Island",1940,EA112,4,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA112,NA,,,, +If11,,,EA112,NA,,,, +If12,,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +If13,,,EA112,NA,,,, +If14,,,EA112,NA,,,, +If15,,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +If16,,,EA112,NA,,,, +If17,,,EA112,NA,,,, +If2,Romonum Island,1940,EA112,4,,,Gray (1999); Bourguignon (1973), +If3,With special reference to the inhabitants of Majuro,1940,EA112,5,,,Gray (1999); Bourguignon (1973), +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA112,4,,,Gray (1999); Bourguignon (1973), +If5,,1910,EA112,6,,,Gray (1999); Bourguignon (1973), +If6,Island,1910,EA112,3,,,Gray (1999); Bourguignon (1973), +If7,,,EA112,NA,,,, +If8,with special reference to those of Saipa,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +If9,,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Ig1,Northeastern group,1940,EA112,2,,,Gray (1999); Bourguignon (1973), +Ig10,,1950,EA112,7,,,Gray (1999); Bourguignon (1973), +Ig11,,,EA112,NA,,,, +Ig12,,,EA112,NA,,,, +Ig13,,,EA112,NA,,,, +Ig14,,,EA112,NA,,,, +Ig15,,,EA112,NA,,,, +Ig16,,,EA112,NA,,,, +Ig17,,,EA112,NA,,,, +Ig18,,,EA112,NA,,,, +Ig19,,,EA112,NA,,,, +Ig2,Kiriwina Island,1910,EA112,1,,,Gray (1999); Bourguignon (1973), +Ig20,,,EA112,NA,,,, +Ig21,,,EA112,NA,,,, +Ig3,,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Ig4,Lesu Village,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Ig5,,1920,EA112,5,,,Gray (1999); Bourguignon (1973), +Ig6,,1900,EA112,4,,,Gray (1999); Bourguignon (1973), +Ig7,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Ig8,,1910,EA112,1,,,Gray (1999); Bourguignon (1973), +Ig9,Peri Village,1920,EA112,7,,,Gray (1999); Bourguignon (1973), +Ih1,,1890,EA112,6,,,Gray (1999); Bourguignon (1973), +Ih10,Whitsands,1920,EA112,8,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA112,NA,,,, +Ih12,,,EA112,NA,,,, +Ih13,,,EA112,NA,,,, +Ih14,,,EA112,NA,,,, +Ih2,Malekula Island,1930,EA112,1,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA112,NA,,,, +Ih4,Lau Island,1920,EA112,4,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA112,5,,,Gray (1999); Bourguignon (1973), +Ih6,,1890,EA112,4,,,Gray (1999); Bourguignon (1973), +Ih7,,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Ih8,with special reference to the village of Nakaroka,1940,EA112,3,,,Gray (1999); Bourguignon (1973), +Ih9,,,EA112,NA,,,, +Ii1,with special reference to American Samoa,1920,EA112,6,,,Gray (1999); Bourguignon (1973), +Ii10,,,EA112,NA,,,, +Ii12,Pangai,1920,EA112,6,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA112,4,,,Gray (1999); Bourguignon (1973), +Ii14,,,EA112,NA,,,, +Ii2,Ravenga District,1930,EA112,6,,,Gray (1999); Bourguignon (1973), +Ii3,,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA112,2,,,Gray (1999); Bourguignon (1973), +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Ii6,with special reference to Atafu,1900,EA112,3,,,Gray (1999); Bourguignon (1973), +Ii7,,1910,EA112,3,,,Gray (1999); Bourguignon (1973), +Ii8,,1840,EA112,3,,,Gray (1999); Bourguignon (1973), +Ii9,,1840,EA112,4,,,Gray (1999); Bourguignon (1973), +Ij1,,1820,EA112,3,,,Gray (1999); Bourguignon (1973), +Ij10,,1900,EA112,3,,,Gray (1999); Bourguignon (1973), +Ij2,Nga Puhi Tribe,1820,EA112,4,,,Gray (1999); Bourguignon (1973), +Ij3,,1900,EA112,4,,,Gray (1999); Bourguignon (1973), +Ij4,,1850,EA112,8,,,Gray (1999); Bourguignon (1973), +Ij5,,1900,EA112,8,,,Gray (1999); Bourguignon (1973), +Ij6,,1800,EA112,6,,,Gray (1999); Bourguignon (1973), +Ij7,,1900,EA112,6,,,Gray (1999); Bourguignon (1973), +Ij8,,1900,EA112,4,,,Gray (1999); Bourguignon (1973), +Ij9,,1860,EA112,6,,,Gray (1999); Bourguignon (1973), +Na1,,1930,EA112,5,,,Gray (1999); Bourguignon (1973), +Na10,,,EA112,NA,,,, +Na11,,,EA112,NA,,,, +Na12,,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Na13,,1880,EA112,8,,,Gray (1999); Bourguignon (1973), +Na14,,1880,EA112,5,,,Gray (1999); Bourguignon (1973), +Na15,,,EA112,NA,,,, +Na16,,,EA112,NA,,,, +Na17,,,EA112,NA,,,, +Na19,with special reference to the Hwitsowitenne,1880,EA112,6,,,Gray (1999); Bourguignon (1973), +Na2,,1880,EA112,1,,,Gray (1999); Bourguignon (1973), +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA112,1,,,Gray (1999); Bourguignon (1973), +Na21,,1900,EA112,4,,,Gray (1999); Bourguignon (1973), +Na22,,,EA112,NA,,,, +Na23,with special reference to the Koksoagmiu,1890,EA112,4,,,Gray (1999); Bourguignon (1973), +Na24,,1880,EA112,7,,,Gray (1999); Bourguignon (1973), +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA112,7,,,Gray (1999); Bourguignon (1973), +Na26,with special reference to the Iliamna,1870,EA112,5,,,Gray (1999); Bourguignon (1973), +Na27,,1870,EA112,5,,,Gray (1999); Bourguignon (1973), +Na28,,1880,EA112,2,,,Gray (1999); Bourguignon (1973), +Na29,,,EA112,NA,,,, +Na3,Coronation Gulf,1920,EA112,4,,,Gray (1999); Bourguignon (1973), +Na30,,,EA112,NA,,,, +Na31,with special reference to those of Albany and Moose Creek,1850,EA112,7,,,Gray (1999); Bourguignon (1973), +Na32,Lake St. John & Mistassini Band,1880,EA112,1,,,Gray (1999); Bourguignon (1973), +Na33,Berens River band,1870,EA112,5,,,Gray (1999); Bourguignon (1973), +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA112,5,,,Gray (1999); Bourguignon (1973), +Na35,,1800,EA112,1,,,Gray (1999); Bourguignon (1973), +Na36,with special reference to the Red Lake and White Earth bands,1860,EA112,7,,,Gray (1999); Bourguignon (1973), +Na37,,,EA112,NA,,,, +Na38,with special reference to the Lac Vieux Desert band,1800,EA112,1,,,Gray (1999); Bourguignon (1973), +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA112,1,,,Gray (1999); Bourguignon (1973), +Na4,Upper Liard and Dease River Group,1920,EA112,5,,,Gray (1999); Bourguignon (1973), +Na40,,,EA112,NA,,,, +Na41,Mainland division,1700,EA112,5,,,Gray (1999); Bourguignon (1973), +Na42,,,EA112,NA,,,, +Na43,,,EA112,NA,,,, +Na44,,,EA112,NA,,,, +Na45,,,EA112,NA,,,, +Na5,,,EA112,NA,,,, +Na6,,1930,EA112,5,,,Gray (1999); Bourguignon (1973), +Na7,,,EA112,NA,,,, +Na8,Shageluk Village,1880,EA112,5,,,Gray (1999); Bourguignon (1973), +Na9,Unalaska Branch (Eastern Aleut),1830,EA112,5,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA112,4,,,Gray (1999); Bourguignon (1973), +Nb10,,1865,EA112,8,,,Gray (1999); Bourguignon (1973), +Nb11,with special reference to the Central Nootka,1880,EA112,1,,,Gray (1999); Bourguignon (1973), +Nb12,,,EA112,NA,,,, +Nb13,,,EA112,NA,,,, +Nb14,,,EA112,NA,,,, +Nb15,,1880,EA112,5,,,Gray (1999); Bourguignon (1973), +Nb16,,1860,EA112,5,,,Gray (1999); Bourguignon (1973), +Nb17,,,EA112,NA,,,, +Nb18,,1880,EA112,7,,,Gray (1999); Bourguignon (1973), +Nb19,,1850,EA112,4,,,Gray (1999); Bourguignon (1973), +Nb2,Twana Tribe,1850,EA112,4,,,Gray (1999); Bourguignon (1973), +Nb20,,,EA112,NA,,,, +Nb21,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nb22,with special reference to the Chilkat,1880,EA112,4,,,Gray (1999); Bourguignon (1973), +Nb23,,1880,EA112,4,,,Gray (1999); Bourguignon (1973), +Nb24,,1860,EA112,2,,,Gray (1999); Bourguignon (1973), +Nb25,,1860,EA112,4,,,Gray (1999); Bourguignon (1973), +Nb26,,1880,EA112,7,,,Gray (1999); Bourguignon (1973), +Nb27,,,EA112,NA,,,, +Nb28,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nb29,,,EA112,NA,,,, +Nb3,,1890,EA112,7,,,Gray (1999); Bourguignon (1973), +Nb30,,1860,EA112,2,,,Gray (1999); Bourguignon (1973), +Nb31,,1870,EA112,7,,,Gray (1999); Bourguignon (1973), +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA112,7,,,Gray (1999); Bourguignon (1973), +Nb33,,,EA112,NA,,,, +Nb34,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nb35,,1860,EA112,4,,,Gray (1999); Bourguignon (1973), +Nb36,,1860,EA112,7,,,Gray (1999); Bourguignon (1973), +Nb37,,,EA112,NA,,,, +Nb38,,,EA112,NA,,,, +Nb39,,,EA112,NA,,,, +Nb4,,1850,EA112,5,,,Gray (1999); Bourguignon (1973), +Nb5,Eyak Tribe,1890,EA112,1,,,Gray (1999); Bourguignon (1973), +Nb6,,1870,EA112,7,,,Gray (1999); Bourguignon (1973), +Nb7,,1880,EA112,6,,,Gray (1999); Bourguignon (1973), +Nb8,,1880,EA112,4,,,Gray (1999); Bourguignon (1973), +Nb9,"Central group, lower B.C. River",1880,EA112,4,,,Gray (1999); Bourguignon (1973), +Nc1,,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc10,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc11,,,EA112,NA,,,, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc13,,,EA112,NA,,,, +Nc14,with special reference to the northeastern Wintu,1860,EA112,2,,,Gray (1999); Bourguignon (1973), +Nc15,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc16,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc17,with special reference to those of Kalekau,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc18,,,EA112,NA,,,, +Nc19,,,EA112,NA,,,, +Nc2,,,EA112,NA,,,, +Nc20,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc21,,,EA112,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc23,,1870,EA112,5,,,Gray (1999); Bourguignon (1973), +Nc24,,,EA112,NA,,,, +Nc25,,,EA112,NA,,,, +Nc26,,,EA112,NA,,,, +Nc27,,,EA112,NA,,,, +Nc28,,,EA112,NA,,,, +Nc29,,,EA112,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc30,,,EA112,NA,,,, +Nc31,with special reference to the Desert Cahuilla,1870,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc32,,,EA112,NA,,,, +Nc33,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc34,,,EA112,NA,,,, +Nc4,,1860,EA112,4,,,Gray (1999); Bourguignon (1973), +Nc5,with special reference to the Central Sierra group,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc6,with special reference to the Southern Diegueno,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc7,,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Nc8,Klamath Tribe,1860,EA112,7,,,Gray (1999); Bourguignon (1973), +Nc9,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nd1,,1850,EA112,5,,,Gray (1999); Bourguignon (1973), +Nd10,,,EA112,NA,,,, +Nd11,,,EA112,NA,,,, +Nd12,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nd13,,,EA112,NA,,,, +Nd14,,,EA112,NA,,,, +Nd15,,1880,EA112,4,,,Gray (1999); Bourguignon (1973), +Nd16,,,EA112,NA,,,, +Nd17,,,EA112,NA,,,, +Nd18,,1860,EA112,4,,,Gray (1999); Bourguignon (1973), +Nd19,,,EA112,NA,,,, +Nd2,,1860,EA112,2,,,Gray (1999); Bourguignon (1973), +Nd20,,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Nd21,,,EA112,NA,,,, +Nd22,,,EA112,NA,,,, +Nd23,,,EA112,NA,,,, +Nd24,,,EA112,NA,,,, +Nd25,,,EA112,NA,,,, +Nd26,,,EA112,NA,,,, +Nd27,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nd28,,,EA112,NA,,,, +Nd29,,,EA112,NA,,,, +Nd3,Havasupai Tribe,1870,EA112,6,,,Gray (1999); Bourguignon (1973), +Nd30,,1870,EA112,1,,,Gray (1999); Bourguignon (1973), +Nd31,,,EA112,NA,,,, +Nd32,,,EA112,NA,,,, +Nd33,,,EA112,NA,,,, +Nd34,,,EA112,NA,,,, +Nd35,,,EA112,NA,,,, +Nd36,,,EA112,NA,,,, +Nd37,,,EA112,NA,,,, +Nd38,,,EA112,NA,,,, +Nd39,,,EA112,NA,,,, +Nd4,,1870,EA112,5,,,Gray (1999); Bourguignon (1973), +Nd40,,,EA112,NA,,,, +Nd41,,,EA112,NA,,,, +Nd42,,,EA112,NA,,,, +Nd43,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nd44,,,EA112,NA,,,, +Nd45,,,EA112,NA,,,, +Nd46,,,EA112,NA,,,, +Nd47,,,EA112,NA,,,, +Nd48,,,EA112,NA,,,, +Nd49,,,EA112,NA,,,, +Nd5,,,EA112,NA,,,, +Nd50,,,EA112,NA,,,, +Nd51,,,EA112,NA,,,, +Nd52,,,EA112,NA,,,, +Nd53,,,EA112,NA,,,, +Nd54,,,EA112,NA,,,, +Nd55,,,EA112,NA,,,, +Nd56,,,EA112,NA,,,, +Nd57,,,EA112,NA,,,, +Nd58,,,EA112,NA,,,, +Nd59,,,EA112,NA,,,, +Nd6,,1850,EA112,5,,,Gray (1999); Bourguignon (1973), +Nd60,,,EA112,NA,,,, +Nd61,,,EA112,NA,,,, +Nd62,,,EA112,NA,,,, +Nd63,,,EA112,NA,,,, +Nd64,with special reference to the Kucundika,1860,EA112,5,,,Gray (1999); Bourguignon (1973), +Nd65,,1870,EA112,1,,,Gray (1999); Bourguignon (1973), +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA112,1,,,Gray (1999); Bourguignon (1973), +Nd67,,,EA112,NA,,,, +Nd7,,,EA112,NA,,,, +Nd8,,,EA112,NA,,,, +Nd9,,,EA112,NA,,,, +Ne1,Gros Ventre Tribe,1880,EA112,1,,,Gray (1999); Bourguignon (1973), +Ne10,,1860,EA112,8,,,Gray (1999); Bourguignon (1973), +Ne11,,1870,EA112,5,,,Gray (1999); Bourguignon (1973), +Ne12,,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Ne13,,,EA112,NA,,,, +Ne14,,,EA112,NA,,,, +Ne15,Hidatsa Village,1860,EA112,5,,,Gray (1999); Bourguignon (1973), +Ne16,,1800,EA112,1,,,Gray (1999); Bourguignon (1973), +Ne17,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Ne18,,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Ne19,,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Ne2,,1870,EA112,5,,,Gray (1999); Bourguignon (1973), +Ne20,,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Ne21,,,EA112,NA,,,, +Ne3,Comanche Tribe,1870,EA112,5,,,Gray (1999); Bourguignon (1973), +Ne4,,1870,EA112,5,,,Gray (1999); Bourguignon (1973), +Ne5,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Ne6,,1830,EA112,1,,,Gray (1999); Bourguignon (1973), +Ne7,,1880,EA112,8,,,Gray (1999); Bourguignon (1973), +Ne8,,1870,EA112,4,,,Gray (1999); Bourguignon (1973), +Ne9,,1860,EA112,5,,,Gray (1999); Bourguignon (1973), +Nf10,,1870,EA112,1,,,Gray (1999); Bourguignon (1973), +Nf11,,,EA112,NA,,,, +Nf12,,1850,EA112,5,,,Gray (1999); Bourguignon (1973), +Nf13,with special reference to the Kiskopotha band,1820,EA112,1,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA112,NA,,,, +Nf15,,,EA112,NA,,,, +Nf2,,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Nf3,Omaha Tribe,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Nf4,,,EA112,NA,,,, +Nf5,,1860,EA112,1,,,Gray (1999); Bourguignon (1973), +Nf6,Skidi Band or subtribe,1867,EA112,5,,,Gray (1999); Bourguignon (1973), +Nf7,Tama Reservation,1830,EA112,1,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA112,1,,,Gray (1999); Bourguignon (1973), +Nf9,,1870,EA112,1,,,Gray (1999); Bourguignon (1973), +Ng1,Bear and Cord Subtribes,1640,EA112,4,,,Gray (1999); Bourguignon (1973), +Ng10,with special reference to the Seneca tribe,1750,EA112,4,,,Gray (1999); Bourguignon (1973), +Ng11,,,EA112,NA,,,, +Ng12,,1760,EA112,8,,,Gray (1999); Bourguignon (1973), +Ng13,,,EA112,NA,,,, +Ng14,,,EA112,NA,,,, +Ng15,,,EA112,NA,,,, +Ng2,,,EA112,NA,,,, +Ng3,Upper division in Alabama,1750,EA112,1,,,Gray (1999); Bourguignon (1973), +Ng4,,,EA112,NA,,,, +Ng5,,1750,EA112,2,,,Gray (1999); Bourguignon (1973), +Ng6,with special reference to the Munsee,1700,EA112,5,,,Gray (1999); Bourguignon (1973), +Ng7,Natchez Kingdom,1700,EA112,1,,,Gray (1999); Bourguignon (1973), +Ng8,,,EA112,NA,,,, +Ng9,,,EA112,NA,,,, +Nh1,Central band,1880,EA112,1,,,Gray (1999); Bourguignon (1973), +Nh10,,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA112,1,,,Gray (1999); Bourguignon (1973), +Nh12,,,EA112,NA,,,, +Nh13,,1920,EA112,3,,,Gray (1999); Bourguignon (1973), +Nh14,,,EA112,NA,,,, +Nh15,,1870,EA112,5,,,Gray (1999); Bourguignon (1973), +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA112,1,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA112,8,,,Gray (1999); Bourguignon (1973), +Nh18,Old Oraiibi,1920,EA112,5,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,,EA112,NA,,,, +Nh2,,,EA112,NA,,,, +Nh20,,,EA112,NA,,,, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA112,6,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA112,7,,,Gray (1999); Bourguignon (1973), +Nh23,,,EA112,NA,,,, +Nh24,,1880,EA112,1,,,Gray (1999); Bourguignon (1973), +Nh25,,,EA112,NA,,,, +Nh26,,,EA112,NA,,,, +Nh27,,,EA112,NA,,,, +Nh3,,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Nh4,Pueblo,1910,EA112,5,,,Gray (1999); Bourguignon (1973), +Nh5,,,EA112,NA,,,, +Nh6,,1890,EA112,1,,,Gray (1999); Bourguignon (1973), +Nh7,,,EA112,NA,,,, +Nh8,,,EA112,NA,,,, +Nh9,,,EA112,NA,,,, +Ni1,,1930,EA112,1,,,Gray (1999); Bourguignon (1973), +Ni2,,1930,EA112,1,,,Gray (1999); Bourguignon (1973), +Ni3,Huichol Tribe,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Ni4,,,EA112,NA,,,, +Ni5,,1570,EA112,1,,,Gray (1999); Bourguignon (1973), +Ni6,,1840,EA112,8,,,Gray (1999); Bourguignon (1973), +Ni7,,1870,EA112,8,,,Gray (1999); Bourguignon (1973), +Ni8,,,EA112,NA,,,, +Ni9,,,EA112,NA,,,, +Nj1,Ojitlan,1940,EA112,1,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA112,1,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA112,NA,,,, +Nj12,,,EA112,NA,,,, +Nj13,,,EA112,NA,,,, +Nj14,,,EA112,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA112,1,,,Gray (1999); Bourguignon (1973), +Nj3,Town and environs of Soteapan,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Nj4,,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Nj5,,1940,EA112,1,,,Gray (1999); Bourguignon (1973), +Nj6,,,EA112,NA,,,, +Nj7,with special reference to Ayutla,1930,EA112,8,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA112,1,,,Gray (1999); Bourguignon (1973), +Nj9,,,EA112,NA,,,, +Sa1,San Blas Archipelago,1940,EA112,2,,,Gray (1999); Bourguignon (1973), +Sa10,,,EA112,NA,,,, +Sa11,,,EA112,NA,,,, +Sa12,,,EA112,NA,,,, +Sa13,Town of Chichicastenango,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Sa14,,,EA112,NA,,,, +Sa15,,,EA112,NA,,,, +Sa16,,,EA112,NA,,,, +Sa17,with special reference to the village of Chinantla,1950,EA112,7,,,Gray (1999); Bourguignon (1973), +Sa2,,,EA112,NA,,,, +Sa3,,,EA112,NA,,,, +Sa4,with special reference to those of Panama,1960,EA112,5,,,Gray (1999); Bourguignon (1973), +Sa5,,,EA112,NA,,,, +Sa6,,1520,EA112,1,,,Gray (1999); Bourguignon (1973), +Sa7,,1940,EA112,6,,,Gray (1999); Bourguignon (1973), +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA112,8,,,Gray (1999); Bourguignon (1973), +Sa9,Vicinity: Cape Gracias a Dios,1920,EA112,5,,,Gray (1999); Bourguignon (1973), +Sb1,Dominica Island,1650,EA112,4,,,Gray (1999); Bourguignon (1973), +Sb2,,1940,EA112,8,,,Gray (1999); Bourguignon (1973), +Sb3,,,EA112,NA,,,, +Sb4,,,EA112,NA,,,, +Sb5,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Sb6,Goajiro Tribe,1940,EA112,3,,,Gray (1999); Bourguignon (1973), +Sb7,,,EA112,NA,,,, +Sb8,,1520,EA112,1,,,Gray (1999); Bourguignon (1973), +Sb9,,1930,EA112,3,,,Gray (1999); Bourguignon (1973), +Sc1,,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Sc10,,1900,EA112,5,,,Gray (1999); Bourguignon (1973), +Sc11,,1930,EA112,5,,,Gray (1999); Bourguignon (1973), +Sc12,,1910,EA112,2,,,Gray (1999); Bourguignon (1973), +Sc13,,,EA112,NA,,,, +Sc14,,,EA112,NA,,,, +Sc15,,1910,EA112,4,,,Gray (1999); Bourguignon (1973), +Sc16,with special reference to the Makitare,1920,EA112,7,,,Gray (1999); Bourguignon (1973), +Sc17,,,EA112,NA,,,, +Sc18,,,EA112,NA,,,, +Sc2,,1950,EA112,4,,,Gray (1999); Bourguignon (1973), +Sc3,Barama River,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Sc4,,,EA112,NA,,,, +Sc5,,1900,EA112,2,,,Gray (1999); Bourguignon (1973), +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA112,3,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Sc8,,,EA112,NA,,,, +Sc9,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +Sd1,Cabrura village,1950,EA112,1,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA112,1,,,Gray (1999); Bourguignon (1973), +Sd3,,1920,EA112,7,,,Gray (1999); Bourguignon (1973), +Sd4,,,EA112,NA,,,, +Sd5,,,EA112,NA,,,, +Sd6,,,EA112,NA,,,, +Sd7,,1950,EA112,5,,,Gray (1999); Bourguignon (1973), +Sd8,,,EA112,NA,,,, +Sd9,,,EA112,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA112,2,,,Gray (1999); Bourguignon (1973), +Se10,,1670,EA112,5,,,Gray (1999); Bourguignon (1973), +Se11,,,EA112,NA,,,, +Se12,,,EA112,NA,,,, +Se2,,1940,EA112,7,,,Gray (1999); Bourguignon (1973), +Se3,,1930,EA112,4,,,Gray (1999); Bourguignon (1973), +Se4,,1940,EA112,5,,,Gray (1999); Bourguignon (1973), +Se5,,,EA112,NA,,,, +Se6,,1910,EA112,5,,,Gray (1999); Bourguignon (1973), +Se7,,,EA112,NA,,,, +Se8,Upper Inuya River,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Se9,,1920,EA112,1,,,Gray (1999); Bourguignon (1973), +Sf1,City and environs of Cuzco,1530,EA112,5,,,Gray (1999); Bourguignon (1973), +Sf2,Chucuito Clan community in Peru,1940,EA112,2,,,Gray (1999); Bourguignon (1973), +Sf3,Rio Cayapas Basin,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Sf4,,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Sf5,,1900,EA112,2,,,Gray (1999); Bourguignon (1973), +Sf6,,1540,EA112,1,,,Gray (1999); Bourguignon (1973), +Sf7,,1900,EA112,1,,,Gray (1999); Bourguignon (1973), +Sf8,,1950,EA112,2,,,Gray (1999); Bourguignon (1973), +Sf9,,,EA112,NA,,,, +Sg1,Eastern and central,1870,EA112,1,,,Gray (1999); Bourguignon (1973), +Sg2,,,EA112,NA,,,, +Sg3,with special reference to the Shelknam,1880,EA112,7,,,Gray (1999); Bourguignon (1973), +Sg4,Equestrian,1870,EA112,4,,,Gray (1999); Bourguignon (1973), +Sg5,with special reference to the southern bands,1900,EA112,8,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA112,4,,,Gray (1999); Bourguignon (1973), +Sh2,,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Sh3,Those in contact with mission,1800,EA112,1,,,Gray (1999); Bourguignon (1973), +Sh4,,1940,EA112,1,,,Gray (1999); Bourguignon (1973), +Sh5,,,EA112,NA,,,, +Sh6,,1890,EA112,2,,,Gray (1999); Bourguignon (1973), +Sh7,,1900,EA112,8,,,Gray (1999); Bourguignon (1973), +Sh8,with special reference to those of the Argentine Chaco,1964,EA112,4,,,Gray (1999); Bourguignon (1973), +Sh9,,,EA112,NA,,,, +Si1,Kejara,1920,EA112,4,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,,EA112,NA,,,, +Si2,Village of Vanivani,1930,EA112,1,,,Gray (1999); Bourguignon (1973), +Si3,Simao Lopes,1940,EA112,1,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA112,5,,,Gray (1999); Bourguignon (1973), +Si5,,1940,EA112,1,,,Gray (1999); Bourguignon (1973), +Si6,,1900,EA112,8,,,Gray (1999); Bourguignon (1973), +Si7,with special reference to the Cozarimi,1910,EA112,8,,,Gray (1999); Bourguignon (1973), +Si8,,1940,EA112,2,,,Gray (1999); Bourguignon (1973), +Si9,,,EA112,NA,,,, +Sj1,,1950,EA112,1,,,Gray (1999); Bourguignon (1973), +Sj10,Taquapiri,1950,EA112,8,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,,,EA112,NA,,,, +Sj2,,1850,EA112,1,,,Gray (1999); Bourguignon (1973), +Sj3,Duque de Caxias Reservation,1910,EA112,1,,,Gray (1999); Bourguignon (1973), +Sj4,Ramcocamecra or Canella,1930,EA112,2,,,Gray (1999); Bourguignon (1973), +Sj5,Naknenuk subtribe,1880,EA112,8,,,Gray (1999); Bourguignon (1973), +Sj6,with special reference to the Guajajara subgroup,1930,EA112,6,,,Gray (1999); Bourguignon (1973),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA112,5,,,Gray (1999); Bourguignon (1973), +Sj8,Hinterland of Rio de Janeiro,1600,EA112,5,,,Gray (1999); Bourguignon (1973), +Sj9,,1950,EA112,8,,,Gray (1999); Bourguignon (1973), +ch12,,,EA112,NA,,,, +ch13,,,EA112,NA,,,, +ch14,,,EA112,NA,,,, +ch15,,,EA112,NA,,,, +ch16,,,EA112,NA,,,, +ch17,,,EA112,NA,,,, +ch18,,,EA112,NA,,,, +ch19,,,EA112,NA,,,, +ch20,,,EA112,NA,,,, +ch21,,,EA112,NA,,,, +ch22,,,EA112,NA,,,, +ch23,,,EA112,NA,,,, +ch24,,,EA112,NA,,,, +ch25,,,EA112,NA,,,, +ch26,,,EA112,NA,,,, +ch27,,,EA112,NA,,,, +ch28,,,EA112,NA,,,, +ec12,,,EA112,NA,,,, +ec13,,,EA112,NA,,,, +ec14,,,EA112,NA,,,, +ec15,,,EA112,NA,,,, +ec16,,,EA112,NA,,,, +ec17,,,EA112,NA,,,, +ec18,,,EA112,NA,,,, +ec19,,,EA112,NA,,,, +ec20,,,EA112,NA,,,, +ec21,,,EA112,NA,,,, +Aa1,Nyai Nyae region,1950,EA113,2,,,Gray (1999); Greenbaum (1973), +Aa2,,,EA113,NA,,,, +Aa3,,,EA113,NA,,,, +Aa4,,,EA113,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA113,2,,,Gray (1999); Greenbaum (1973), +Aa6,,,EA113,NA,,,, +Aa7,,,EA113,NA,,,, +Aa8,,,EA113,NA,,,, +Aa9,,,EA113,NA,,,, +Ab1,,,EA113,NA,,,, +Ab10,,,EA113,NA,,,, +Ab11,,,EA113,NA,,,, +Ab12,,1830,EA113,1,,,Gray (1999); Greenbaum (1973), +Ab13,,,EA113,NA,,,, +Ab14,,1930,EA113,1,,,Gray (1999); Greenbaum (1973), +Ab15,,,EA113,NA,,,, +Ab16,,,EA113,NA,,,, +Ab17,,,EA113,NA,,,, +Ab18,,,EA113,NA,,,, +Ab19,,,EA113,NA,,,, +Ab2,,,EA113,NA,,,, +Ab20,,,EA113,NA,,,, +Ab21a,,,EA113,NA,,,, +Ab21b,,,EA113,NA,,,, +Ab22,,,EA113,NA,,,, +Ab3,,,EA113,NA,,,, +Ab4,,,EA113,NA,,,, +Ab5,,,EA113,NA,,,, +Ab6,,1900,EA113,1,,,Gray (1999); Greenbaum (1973), +Ab7,,,EA113,NA,,,, +Ab8,,,EA113,NA,,,, +Ab9,,,EA113,NA,,,, +Ac1,,,EA113,NA,,,, +Ac10,,,EA113,NA,,,, +Ac11,,,EA113,NA,,,, +Ac12,,,EA113,NA,,,, +Ac13,,,EA113,NA,,,, +Ac14,,1900,EA113,2,,,Gray (1999); Greenbaum (1973), +Ac15,,,EA113,NA,,,, +Ac16,,,EA113,NA,,,, +Ac17,,,EA113,NA,,,, +Ac18,,,EA113,NA,,,, +Ac19,,,EA113,NA,,,, +Ac2,,,EA113,NA,,,, +Ac20,,,EA113,NA,,,, +Ac21,,,EA113,NA,,,, +Ac22,,,EA113,NA,,,, +Ac23,,,EA113,NA,,,, +Ac24,,,EA113,NA,,,, +Ac25,,,EA113,NA,,,, +Ac26,,,EA113,NA,,,, +Ac27,,,EA113,NA,,,, +Ac28,,,EA113,NA,,,, +Ac29,,,EA113,NA,,,, +Ac3,Zambia branch,1900,EA113,1,,,Gray (1999); Greenbaum (1973), +Ac30,,,EA113,NA,,,, +Ac31,,,EA113,NA,,,, +Ac32,,,EA113,NA,,,, +Ac33,,,EA113,NA,,,, +Ac34,,,EA113,NA,,,, +Ac35,,,EA113,NA,,,, +Ac36,,,EA113,NA,,,, +Ac37,,,EA113,NA,,,, +Ac38,,,EA113,NA,,,, +Ac39,,,EA113,NA,,,, +Ac4,,,EA113,NA,,,, +Ac40,,,EA113,NA,,,, +Ac41,,,EA113,NA,,,, +Ac42,,,EA113,NA,,,, +Ac43,,,EA113,NA,,,, +Ac5,,,EA113,NA,,,, +Ac6,,,EA113,NA,,,, +Ac7,,1920,EA113,1,,,Gray (1999); Greenbaum (1973), +Ac8,,,EA113,NA,,,, +Ac9,,,EA113,NA,,,, +Ad1,,,EA113,NA,,,, +Ad10,,,EA113,NA,,,, +Ad11,,,EA113,NA,,,, +Ad12,,,EA113,NA,,,, +Ad13,,1930,EA113,2,,,Gray (1999); Greenbaum (1973), +Ad14,,,EA113,NA,,,, +Ad15,,,EA113,NA,,,, +Ad16,,,EA113,NA,,,, +Ad17,,,EA113,NA,,,, +Ad18,,,EA113,NA,,,, +Ad19,,,EA113,NA,,,, +Ad2,,1950,EA113,1,,,Gray (1999); Greenbaum (1973), +Ad20,,,EA113,NA,,,, +Ad21,,,EA113,NA,,,, +Ad22,,,EA113,NA,,,, +Ad23,,,EA113,NA,,,, +Ad24,,,EA113,NA,,,, +Ad25,,,EA113,NA,,,, +Ad26,,,EA113,NA,,,, +Ad27,,,EA113,NA,,,, +Ad28,,,EA113,NA,,,, +Ad29,,,EA113,NA,,,, +Ad3,,,EA113,NA,,,, +Ad30,,,EA113,NA,,,, +Ad31,,,EA113,NA,,,, +Ad32,,,EA113,NA,,,, +Ad33,,,EA113,NA,,,, +Ad34,,,EA113,NA,,,, +Ad35,,,EA113,NA,,,, +Ad36,,,EA113,NA,,,, +Ad37,,,EA113,NA,,,, +Ad38,,,EA113,NA,,,, +Ad39,,,EA113,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA113,2,,,Gray (1999); Greenbaum (1973), +Ad40,,,EA113,NA,,,, +Ad41,,,EA113,NA,,,, +Ad42,,,EA113,NA,,,, +Ad43,,,EA113,NA,,,, +Ad44,,,EA113,NA,,,, +Ad45,,,EA113,NA,,,, +Ad46,,,EA113,NA,,,, +Ad47,,,EA113,NA,,,, +Ad48,,,EA113,NA,,,, +Ad49,,,EA113,NA,,,, +Ad5,,,EA113,NA,,,, +Ad50,,,EA113,NA,,,, +Ad51,,,EA113,NA,,,, +Ad6,,,EA113,NA,,,, +Ad7,Kyaddondo district (V: Kampala),1880,EA113,1,,,Gray (1999); Greenbaum (1973), +Ad8,with special reference to the northern or Iringa group,1910,EA113,2,,,Gray (1999); Greenbaum (1973), +Ad9,,1900,EA113,2,,,Gray (1999); Greenbaum (1973), +Ae1,with special reference to those of Bwamba in Uganda,1950,EA113,2,,,Gray (1999); Greenbaum (1973), +Ae10,,,EA113,NA,,,, +Ae11,,,EA113,NA,,,, +Ae12,,,EA113,NA,,,, +Ae13,,,EA113,NA,,,, +Ae14,,,EA113,NA,,,, +Ae15,,,EA113,NA,,,, +Ae16,,,EA113,NA,,,, +Ae17,,,EA113,NA,,,, +Ae18,,,EA113,NA,,,, +Ae19,,,EA113,NA,,,, +Ae2,,1950,EA113,2,,,Gray (1999); Greenbaum (1973), +Ae20,,,EA113,NA,,,, +Ae21,,,EA113,NA,,,, +Ae22,,,EA113,NA,,,, +Ae23,,,EA113,NA,,,, +Ae24,,,EA113,NA,,,, +Ae25,,,EA113,NA,,,, +Ae26,,,EA113,NA,,,, +Ae27,,,EA113,NA,,,, +Ae28,,,EA113,NA,,,, +Ae29,,,EA113,NA,,,, +Ae3,,,EA113,NA,,,, +Ae30,,,EA113,NA,,,, +Ae31,,,EA113,NA,,,, +Ae32,,,EA113,NA,,,, +Ae33,,,EA113,NA,,,, +Ae34,,,EA113,NA,,,, +Ae35,,,EA113,NA,,,, +Ae36,,,EA113,NA,,,, +Ae37,,,EA113,NA,,,, +Ae38,,,EA113,NA,,,, +Ae39,,,EA113,NA,,,, +Ae4,,,EA113,NA,,,, +Ae40,,,EA113,NA,,,, +Ae41,,,EA113,NA,,,, +Ae42,,,EA113,NA,,,, +Ae43,,,EA113,NA,,,, +Ae44,,,EA113,NA,,,, +Ae45,,,EA113,NA,,,, +Ae46,,,EA113,NA,,,, +Ae47,,,EA113,NA,,,, +Ae48,,,EA113,NA,,,, +Ae49,,,EA113,NA,,,, +Ae5,,1910,EA113,2,,,Gray (1999); Greenbaum (1973), +Ae50,,,EA113,NA,,,, +Ae51,,,EA113,NA,,,, +Ae52,,,EA113,NA,,,, +Ae53,,,EA113,NA,,,, +Ae54,,,EA113,NA,,,, +Ae55,,,EA113,NA,,,, +Ae56,,,EA113,NA,,,, +Ae57,,,EA113,NA,,,, +Ae58,,,EA113,NA,,,, +Ae59,,,EA113,NA,,,, +Ae6,,,EA113,NA,,,, +Ae7,,,EA113,NA,,,, +Ae8,,,EA113,NA,,,, +Ae9,,,EA113,NA,,,, +Af1,,,EA113,NA,,,, +Af10,,1930,EA113,2,,,Gray (1999); Greenbaum (1973), +Af11,,,EA113,NA,,,, +Af12,,,EA113,NA,,,, +Af13,,,EA113,NA,,,, +Af14,,,EA113,NA,,,, +Af15,,,EA113,NA,,,, +Af16,,,EA113,NA,,,, +Af17,,,EA113,NA,,,, +Af18,,,EA113,NA,,,, +Af19,,,EA113,NA,,,, +Af2,,1950,EA113,1,,,Gray (1999); Greenbaum (1973), +Af20,,,EA113,NA,,,, +Af21,,,EA113,NA,,,, +Af22,,,EA113,NA,,,, +Af23,,,EA113,NA,,,, +Af24,,,EA113,NA,,,, +Af25,,,EA113,NA,,,, +Af26,,,EA113,NA,,,, +Af27,,,EA113,NA,,,, +Af28,,,EA113,NA,,,, +Af29,,,EA113,NA,,,, +Af3,Kumasi State,1900,EA113,2,,,Gray (1999); Greenbaum (1973), +Af30,,,EA113,NA,,,, +Af31,,,EA113,NA,,,, +Af32,,,EA113,NA,,,, +Af33,,,EA113,NA,,,, +Af34,,,EA113,NA,,,, +Af35,,,EA113,NA,,,, +Af36,with special reference to the Glidyi,1900,EA113,2,,,Gray (1999); Greenbaum (1973), +Af37,,,EA113,NA,,,, +Af38,,,EA113,NA,,,, +Af39,,,EA113,NA,,,, +Af4,,,EA113,NA,,,, +Af40,,,EA113,NA,,,, +Af41,,,EA113,NA,,,, +Af42,,,EA113,NA,,,, +Af43,,,EA113,NA,,,, +Af44,,,EA113,NA,,,, +Af45,,,EA113,NA,,,, +Af46,,,EA113,NA,,,, +Af47,,,EA113,NA,,,, +Af48,,,EA113,NA,,,, +Af49,,,EA113,NA,,,, +Af5,,1930,EA113,2,,,Gray (1999); Greenbaum (1973), +Af50,,,EA113,NA,,,, +Af51,,,EA113,NA,,,, +Af52,,,EA113,NA,,,, +Af53,,,EA113,NA,,,, +Af54,,,EA113,NA,,,, +Af55,,,EA113,NA,,,, +Af56,,,EA113,NA,,,, +Af57,,,EA113,NA,,,, +Af58,,,EA113,NA,,,, +Af6,,,EA113,NA,,,, +Af7,,,EA113,NA,,,, +Af8,,1930,EA113,2,,,Gray (1999); Greenbaum (1973), +Af9,,,EA113,NA,,,, +Ag1,,,EA113,NA,,,, +Ag10,,,EA113,NA,,,, +Ag11,,,EA113,NA,,,, +Ag12,,,EA113,NA,,,, +Ag13,,,EA113,NA,,,, +Ag14,,,EA113,NA,,,, +Ag15,,,EA113,NA,,,, +Ag16,,,EA113,NA,,,, +Ag17,,,EA113,NA,,,, +Ag18,,,EA113,NA,,,, +Ag19,,,EA113,NA,,,, +Ag2,,,EA113,NA,,,, +Ag20,,,EA113,NA,,,, +Ag21,,,EA113,NA,,,, +Ag22,,,EA113,NA,,,, +Ag23,,,EA113,NA,,,, +Ag24,,,EA113,NA,,,, +Ag25,,,EA113,NA,,,, +Ag26,,,EA113,NA,,,, +Ag27,,,EA113,NA,,,, +Ag28,,,EA113,NA,,,, +Ag29,,,EA113,NA,,,, +Ag3,,1930,EA113,1,,,Gray (1999); Greenbaum (1973), +Ag30,,,EA113,NA,,,, +Ag31,,,EA113,NA,,,, +Ag32,,,EA113,NA,,,, +Ag33,,,EA113,NA,,,, +Ag34,,,EA113,NA,,,, +Ag35,,,EA113,NA,,,, +Ag36,,,EA113,NA,,,, +Ag37,,,EA113,NA,,,, +Ag38,,,EA113,NA,,,, +Ag39,,,EA113,NA,,,, +Ag4,Tallensi Tribe,1930,EA113,2,,,Gray (1999); Greenbaum (1973), +Ag40,,,EA113,NA,,,, +Ag41,,,EA113,NA,,,, +Ag42,,,EA113,NA,,,, +Ag43,,,EA113,NA,,,, +Ag44,,,EA113,NA,,,, +Ag45,,,EA113,NA,,,, +Ag46,,,EA113,NA,,,, +Ag47,,,EA113,NA,,,, +Ag48,,,EA113,NA,,,, +Ag49,,,EA113,NA,,,, +Ag5,,,EA113,NA,,,, +Ag50,,,EA113,NA,,,, +Ag51,,,EA113,NA,,,, +Ag52,,,EA113,NA,,,, +Ag53,,,EA113,NA,,,, +Ag54,,,EA113,NA,,,, +Ag6,,,EA113,NA,,,, +Ag7,,,EA113,NA,,,, +Ag8,,,EA113,NA,,,, +Ag9,,,EA113,NA,,,, +Ah1,,,EA113,NA,,,, +Ah10,,,EA113,NA,,,, +Ah11,,,EA113,NA,,,, +Ah12,,,EA113,NA,,,, +Ah13,,,EA113,NA,,,, +Ah14,,,EA113,NA,,,, +Ah15,,,EA113,NA,,,, +Ah16,,,EA113,NA,,,, +Ah17,,,EA113,NA,,,, +Ah18,,,EA113,NA,,,, +Ah19,,,EA113,NA,,,, +Ah2,,1920,EA113,1,,,Gray (1999); Greenbaum (1973), +Ah20,,,EA113,NA,,,, +Ah21,,,EA113,NA,,,, +Ah22,,,EA113,NA,,,, +Ah23,,,EA113,NA,,,, +Ah24,,,EA113,NA,,,, +Ah25,,,EA113,NA,,,, +Ah26,,,EA113,NA,,,, +Ah27,,,EA113,NA,,,, +Ah28,,,EA113,NA,,,, +Ah29,,,EA113,NA,,,, +Ah3,Tar of Benue Province,1920,EA113,2,,,Gray (1999); Greenbaum (1973), +Ah30,,,EA113,NA,,,, +Ah31,,,EA113,NA,,,, +Ah32,,,EA113,NA,,,, +Ah33,,,EA113,NA,,,, +Ah34,,,EA113,NA,,,, +Ah35,,,EA113,NA,,,, +Ah36,,,EA113,NA,,,, +Ah37,,,EA113,NA,,,, +Ah38,,,EA113,NA,,,, +Ah39,,,EA113,NA,,,, +Ah4,,,EA113,NA,,,, +Ah5,,,EA113,NA,,,, +Ah6,,,EA113,NA,,,, +Ah7,,,EA113,NA,,,, +Ah8,,,EA113,NA,,,, +Ah9,,,EA113,NA,,,, +Ai1,,,EA113,NA,,,, +Ai10,,,EA113,NA,,,, +Ai11,,,EA113,NA,,,, +Ai12,,,EA113,NA,,,, +Ai13,,,EA113,NA,,,, +Ai14,,,EA113,NA,,,, +Ai15,,,EA113,NA,,,, +Ai16,,,EA113,NA,,,, +Ai17,,,EA113,NA,,,, +Ai18,,,EA113,NA,,,, +Ai19,,,EA113,NA,,,, +Ai2,,,EA113,NA,,,, +Ai20,,,EA113,NA,,,, +Ai21,,,EA113,NA,,,, +Ai22,,,EA113,NA,,,, +Ai23,,,EA113,NA,,,, +Ai24,,,EA113,NA,,,, +Ai25,,,EA113,NA,,,, +Ai26,,,EA113,NA,,,, +Ai27,,,EA113,NA,,,, +Ai28,,,EA113,NA,,,, +Ai29,,,EA113,NA,,,, +Ai3,,1920,EA113,1,,,Gray (1999); Greenbaum (1973), +Ai30,,,EA113,NA,,,, +Ai31,,,EA113,NA,,,, +Ai32,,,EA113,NA,,,, +Ai33,,,EA113,NA,,,, +Ai34,,,EA113,NA,,,, +Ai35,,,EA113,NA,,,, +Ai36,,,EA113,NA,,,, +Ai37,,,EA113,NA,,,, +Ai38,,,EA113,NA,,,, +Ai39,,,EA113,NA,,,, +Ai4,,,EA113,NA,,,, +Ai40,,,EA113,NA,,,, +Ai41,,,EA113,NA,,,, +Ai42,,,EA113,NA,,,, +Ai43,,1930,EA113,1,,,Gray (1999); Greenbaum (1973), +Ai44,,,EA113,NA,,,, +Ai45,,,EA113,NA,,,, +Ai46,,,EA113,NA,,,, +Ai47,,,EA113,NA,,,, +Ai5,,,EA113,NA,,,, +Ai6,,,EA113,NA,,,, +Ai7,,,EA113,NA,,,, +Ai8,,,EA113,NA,,,, +Ai9,,,EA113,NA,,,, +Aj1,,,EA113,NA,,,, +Aj10,,,EA113,NA,,,, +Aj11,,1900,EA113,1,,,Gray (1999); Greenbaum (1973), +Aj12,,,EA113,NA,,,, +Aj13,,,EA113,NA,,,, +Aj14,,,EA113,NA,,,, +Aj15,,,EA113,NA,,,, +Aj16,,,EA113,NA,,,, +Aj17,,,EA113,NA,,,, +Aj18,,,EA113,NA,,,, +Aj19,,,EA113,NA,,,, +Aj2,,,EA113,NA,,,, +Aj20,,,EA113,NA,,,, +Aj21,,,EA113,NA,,,, +Aj22,,,EA113,NA,,,, +Aj23,,,EA113,NA,,,, +Aj24,,,EA113,NA,,,, +Aj25,,,EA113,NA,,,, +Aj26,,,EA113,NA,,,, +Aj27,,,EA113,NA,,,, +Aj28,,,EA113,NA,,,, +Aj29,,,EA113,NA,,,, +Aj3,,1930,EA113,2,,,Gray (1999); Greenbaum (1973), +Aj30,,,EA113,NA,,,, +Aj31,,,EA113,NA,,,, +Aj4,,,EA113,NA,,,, +Aj5,,1920,EA113,2,,,Gray (1999); Greenbaum (1973), +Aj6,,,EA113,NA,,,, +Aj7,,,EA113,NA,,,, +Aj8,,,EA113,NA,,,, +Aj9,,,EA113,NA,,,, +Ca1,,,EA113,NA,,,, +Ca10,,,EA113,NA,,,, +Ca11,,,EA113,NA,,,, +Ca12,,,EA113,NA,,,, +Ca13,,,EA113,NA,,,, +Ca14,,,EA113,NA,,,, +Ca15,,,EA113,NA,,,, +Ca16,,,EA113,NA,,,, +Ca17,,,EA113,NA,,,, +Ca18,,,EA113,NA,,,, +Ca19,,,EA113,NA,,,, +Ca2,,,EA113,NA,,,, +Ca20,,,EA113,NA,,,, +Ca21,,,EA113,NA,,,, +Ca22,,,EA113,NA,,,, +Ca23,,,EA113,NA,,,, +Ca24,,,EA113,NA,,,, +Ca25,,,EA113,NA,,,, +Ca26,,,EA113,NA,,,, +Ca27,,,EA113,NA,,,, +Ca28,,,EA113,NA,,,, +Ca29,,,EA113,NA,,,, +Ca3,,,EA113,NA,,,, +Ca30,,,EA113,NA,,,, +Ca31,,,EA113,NA,,,, +Ca32,,,EA113,NA,,,, +Ca33,,,EA113,NA,,,, +Ca34,,,EA113,NA,,,, +Ca35,,,EA113,NA,,,, +Ca36,,,EA113,NA,,,, +Ca37,,,EA113,NA,,,, +Ca38,,,EA113,NA,,,, +Ca39,,,EA113,NA,,,, +Ca4,,,EA113,NA,,,, +Ca40,,,EA113,NA,,,, +Ca41,,,EA113,NA,,,, +Ca42,,,EA113,NA,,,, +Ca43,,,EA113,NA,,,, +Ca5,,,EA113,NA,,,, +Ca6,,,EA113,NA,,,, +Ca7,,,EA113,NA,,,, +Ca8,,,EA113,NA,,,, +Ca9,,,EA113,NA,,,, +Cb1,,,EA113,NA,,,, +Cb10,,,EA113,NA,,,, +Cb11,,,EA113,NA,,,, +Cb12,,,EA113,NA,,,, +Cb13,,,EA113,NA,,,, +Cb14,,,EA113,NA,,,, +Cb15,,,EA113,NA,,,, +Cb16,,,EA113,NA,,,, +Cb17,,,EA113,NA,,,, +Cb18,,,EA113,NA,,,, +Cb19,,,EA113,NA,,,, +Cb2,,,EA113,NA,,,, +Cb20,,,EA113,NA,,,, +Cb21,,,EA113,NA,,,, +Cb22,,,EA113,NA,,,, +Cb23,,,EA113,NA,,,, +Cb24,,,EA113,NA,,,, +Cb25,,,EA113,NA,,,, +Cb26,,,EA113,NA,,,, +Cb27,,,EA113,NA,,,, +Cb28,,,EA113,NA,,,, +Cb29,,,EA113,NA,,,, +Cb3,,,EA113,NA,,,, +Cb4,,,EA113,NA,,,, +Cb5,,,EA113,NA,,,, +Cb6,,,EA113,NA,,,, +Cb7,,,EA113,NA,,,, +Cb8,,,EA113,NA,,,, +Cb9,,,EA113,NA,,,, +Cc1,,,EA113,NA,,,, +Cc10,,,EA113,NA,,,, +Cc11,,,EA113,NA,,,, +Cc12,,,EA113,NA,,,, +Cc13,,,EA113,NA,,,, +Cc14,,,EA113,NA,,,, +Cc15,,,EA113,NA,,,, +Cc16,,,EA113,NA,,,, +Cc17,,,EA113,NA,,,, +Cc18,,,EA113,NA,,,, +Cc19,,,EA113,NA,,,, +Cc2,,,EA113,NA,,,, +Cc20,,,EA113,NA,,,, +Cc3,,,EA113,NA,,,, +Cc4,,,EA113,NA,,,, +Cc5,,,EA113,NA,,,, +Cc6,,,EA113,NA,,,, +Cc7,,,EA113,NA,,,, +Cc8,,,EA113,NA,,,, +Cc9,,,EA113,NA,,,, +Cd1,,,EA113,NA,,,, +Cd10,,,EA113,NA,,,, +Cd11,,,EA113,NA,,,, +Cd12,,,EA113,NA,,,, +Cd13,,,EA113,NA,,,, +Cd14,,,EA113,NA,,,, +Cd15,,,EA113,NA,,,, +Cd16,,,EA113,NA,,,, +Cd17,,,EA113,NA,,,, +Cd18,,,EA113,NA,,,, +Cd19,,,EA113,NA,,,, +Cd2,,,EA113,NA,,,, +Cd20,,,EA113,NA,,,, +Cd21,,,EA113,NA,,,, +Cd3,,,EA113,NA,,,, +Cd4,,,EA113,NA,,,, +Cd5,,,EA113,NA,,,, +Cd6,,,EA113,NA,,,, +Cd7,,,EA113,NA,,,, +Cd8,,,EA113,NA,,,, +Cd9,,,EA113,NA,,,, +Ce1,,,EA113,NA,,,, +Ce2,,,EA113,NA,,,, +Ce3,,,EA113,NA,,,, +Ce4,,,EA113,NA,,,, +Ce5,,,EA113,NA,,,, +Ce6,,,EA113,NA,,,, +Ce7,,,EA113,NA,,,, +Ce8,,,EA113,NA,,,, +Cf1,,,EA113,NA,,,, +Cf2,,,EA113,NA,,,, +Cf3,,,EA113,NA,,,, +Cf4,,,EA113,NA,,,, +Cf5,,,EA113,NA,,,, +Cg1,,,EA113,NA,,,, +Cg2,,,EA113,NA,,,, +Cg3,,,EA113,NA,,,, +Cg4,,,EA113,NA,,,, +Cg5,,,EA113,NA,,,, +Ch1,,,EA113,NA,,,, +Ch10,,,EA113,NA,,,, +Ch11,,,EA113,NA,,,, +Ch2,,,EA113,NA,,,, +Ch3,,,EA113,NA,,,, +Ch4,,,EA113,NA,,,, +Ch5,,,EA113,NA,,,, +Ch6,,,EA113,NA,,,, +Ch7,,,EA113,NA,,,, +Ch8,,,EA113,NA,,,, +Ch9,,,EA113,NA,,,, +Ci1,,,EA113,NA,,,, +Ci10,,,EA113,NA,,,, +Ci11,,,EA113,NA,,,, +Ci12,,,EA113,NA,,,, +Ci2,,,EA113,NA,,,, +Ci3,,,EA113,NA,,,, +Ci4,,,EA113,NA,,,, +Ci5,,,EA113,NA,,,, +Ci6,,,EA113,NA,,,, +Ci7,,,EA113,NA,,,, +Ci8,,,EA113,NA,,,, +Ci9,,,EA113,NA,,,, +Cj1,,,EA113,NA,,,, +Cj10,,,EA113,NA,,,, +Cj2,,,EA113,NA,,,, +Cj3,,,EA113,NA,,,, +Cj4,,,EA113,NA,,,, +Cj5,,,EA113,NA,,,, +Cj6,,,EA113,NA,,,, +Cj7,,,EA113,NA,,,, +Cj8,,,EA113,NA,,,, +Cj9,,,EA113,NA,,,, +Ea1,,,EA113,NA,,,, +Ea10,,,EA113,NA,,,, +Ea11,,,EA113,NA,,,, +Ea12,,,EA113,NA,,,, +Ea13,,,EA113,NA,,,, +Ea2,,,EA113,NA,,,, +Ea3,,,EA113,NA,,,, +Ea4,,,EA113,NA,,,, +Ea5,,,EA113,NA,,,, +Ea6,,,EA113,NA,,,, +Ea7,,,EA113,NA,,,, +Ea8,,,EA113,NA,,,, +Ea9,,,EA113,NA,,,, +Eb1,,,EA113,NA,,,, +Eb2,,,EA113,NA,,,, +Eb3,,,EA113,NA,,,, +Eb4,,,EA113,NA,,,, +Eb5,,,EA113,NA,,,, +Eb6,,,EA113,NA,,,, +Eb7,,,EA113,NA,,,, +Eb8,,,EA113,NA,,,, +Ec1,,,EA113,NA,,,, +Ec10,,,EA113,NA,,,, +Ec11,,,EA113,NA,,,, +Ec2,,,EA113,NA,,,, +Ec3,,,EA113,NA,,,, +Ec4,,,EA113,NA,,,, +Ec5,,,EA113,NA,,,, +Ec6,,,EA113,NA,,,, +Ec7,,,EA113,NA,,,, +Ec8,,,EA113,NA,,,, +Ec9,,,EA113,NA,,,, +Ed1,,,EA113,NA,,,, +Ed10,,,EA113,NA,,,, +Ed13,,,EA113,NA,,,, +Ed14,,,EA113,NA,,,, +Ed15a,,,EA113,NA,,,, +Ed15b,,,EA113,NA,,,, +Ed16,,,EA113,NA,,,, +Ed2,,,EA113,NA,,,, +Ed3,,,EA113,NA,,,, +Ed4,,,EA113,NA,,,, +Ed5,,,EA113,NA,,,, +Ed6,,,EA113,NA,,,, +Ed7,,,EA113,NA,,,, +Ed8,,,EA113,NA,,,, +Ed9,,,EA113,NA,,,, +Ee1,,,EA113,NA,,,, +Ee2,,,EA113,NA,,,, +Ee3,,,EA113,NA,,,, +Ee4,,,EA113,NA,,,, +Ee5,,,EA113,NA,,,, +Ee6,,,EA113,NA,,,, +Ee7,,,EA113,NA,,,, +Ee8,,,EA113,NA,,,, +Ef1,,,EA113,NA,,,, +Ef10,,,EA113,NA,,,, +Ef11,,,EA113,NA,,,, +Ef2,,,EA113,NA,,,, +Ef3,,,EA113,NA,,,, +Ef4,,,EA113,NA,,,, +Ef5,,,EA113,NA,,,, +Ef6,,,EA113,NA,,,, +Ef7,,,EA113,NA,,,, +Ef8,,,EA113,NA,,,, +Ef9,,,EA113,NA,,,, +Eg1,,,EA113,NA,,,, +Eg10,,,EA113,NA,,,, +Eg11,,,EA113,NA,,,, +Eg12,,,EA113,NA,,,, +Eg13,,,EA113,NA,,,, +Eg14,,,EA113,NA,,,, +Eg2,,,EA113,NA,,,, +Eg3,,,EA113,NA,,,, +Eg4,,,EA113,NA,,,, +Eg5,,,EA113,NA,,,, +Eg6,,,EA113,NA,,,, +Eg7,,,EA113,NA,,,, +Eg8,,,EA113,NA,,,, +Eg9,,,EA113,NA,,,, +Eh1,,,EA113,NA,,,, +Eh10,,,EA113,NA,,,, +Eh2,,,EA113,NA,,,, +Eh3,,,EA113,NA,,,, +Eh4,,,EA113,NA,,,, +Eh5,,,EA113,NA,,,, +Eh6,,,EA113,NA,,,, +Eh7,,,EA113,NA,,,, +Eh8,,,EA113,NA,,,, +Eh9,,,EA113,NA,,,, +Ei1,,,EA113,NA,,,, +Ei10,,,EA113,NA,,,, +Ei11,,,EA113,NA,,,, +Ei12,,,EA113,NA,,,, +Ei13,,,EA113,NA,,,, +Ei14,,,EA113,NA,,,, +Ei15,,,EA113,NA,,,, +Ei16,,,EA113,NA,,,, +Ei17,,,EA113,NA,,,, +Ei18,,,EA113,NA,,,, +Ei19,,,EA113,NA,,,, +Ei2,,,EA113,NA,,,, +Ei20,,,EA113,NA,,,, +Ei3,,,EA113,NA,,,, +Ei4,,,EA113,NA,,,, +Ei5,,,EA113,NA,,,, +Ei6,,,EA113,NA,,,, +Ei7,,,EA113,NA,,,, +Ei8,,,EA113,NA,,,, +Ei9,,,EA113,NA,,,, +Ej1,,,EA113,NA,,,, +Ej10,,,EA113,NA,,,, +Ej11,,,EA113,NA,,,, +Ej12,,,EA113,NA,,,, +Ej13,,,EA113,NA,,,, +Ej14,,,EA113,NA,,,, +Ej15,,,EA113,NA,,,, +Ej16,,,EA113,NA,,,, +Ej2,,,EA113,NA,,,, +Ej3,,,EA113,NA,,,, +Ej4,,,EA113,NA,,,, +Ej5,,,EA113,NA,,,, +Ej6,,,EA113,NA,,,, +Ej7,,,EA113,NA,,,, +Ej8,,,EA113,NA,,,, +Ej9,,,EA113,NA,,,, +Ia1,,,EA113,NA,,,, +Ia10,,,EA113,NA,,,, +Ia11,,,EA113,NA,,,, +Ia12,,,EA113,NA,,,, +Ia13,,,EA113,NA,,,, +Ia14,,,EA113,NA,,,, +Ia15,,,EA113,NA,,,, +Ia16,,,EA113,NA,,,, +Ia17,,,EA113,NA,,,, +Ia18,,,EA113,NA,,,, +Ia2,,,EA113,NA,,,, +Ia3,,,EA113,NA,,,, +Ia4,,,EA113,NA,,,, +Ia5,,,EA113,NA,,,, +Ia6,,,EA113,NA,,,, +Ia7,,,EA113,NA,,,, +Ia8,,,EA113,NA,,,, +Ia9,,,EA113,NA,,,, +Ib1,,,EA113,NA,,,, +Ib2,,,EA113,NA,,,, +Ib3,,,EA113,NA,,,, +Ib4,,,EA113,NA,,,, +Ib5,,,EA113,NA,,,, +Ib6,,,EA113,NA,,,, +Ib7,,,EA113,NA,,,, +Ib8,,,EA113,NA,,,, +Ib9,,,EA113,NA,,,, +Ic1,,,EA113,NA,,,, +Ic10,,,EA113,NA,,,, +Ic11,,,EA113,NA,,,, +Ic12,,,EA113,NA,,,, +Ic13,,,EA113,NA,,,, +Ic2,,,EA113,NA,,,, +Ic3,,,EA113,NA,,,, +Ic4,,,EA113,NA,,,, +Ic5,,,EA113,NA,,,, +Ic6,,,EA113,NA,,,, +Ic7,,,EA113,NA,,,, +Ic8,,,EA113,NA,,,, +Ic9,,,EA113,NA,,,, +Id1,,,EA113,NA,,,, +Id10,,,EA113,NA,,,, +Id11,,,EA113,NA,,,, +Id12,,,EA113,NA,,,, +Id13,,,EA113,NA,,,, +Id2,,,EA113,NA,,,, +Id3,,,EA113,NA,,,, +Id4,,,EA113,NA,,,, +Id5,,,EA113,NA,,,, +Id6,,,EA113,NA,,,, +Id7,,,EA113,NA,,,, +Id8,,,EA113,NA,,,, +Id9,,,EA113,NA,,,, +Ie1,,,EA113,NA,,,, +Ie10,,,EA113,NA,,,, +Ie11,,,EA113,NA,,,, +Ie12,,,EA113,NA,,,, +Ie13,,,EA113,NA,,,, +Ie14,,,EA113,NA,,,, +Ie15,,,EA113,NA,,,, +Ie16,,,EA113,NA,,,, +Ie17,,,EA113,NA,,,, +Ie18,,,EA113,NA,,,, +Ie19,,,EA113,NA,,,, +Ie2,,,EA113,NA,,,, +Ie20,,,EA113,NA,,,, +Ie21,,,EA113,NA,,,, +Ie22,,,EA113,NA,,,, +Ie23,,,EA113,NA,,,, +Ie24,,,EA113,NA,,,, +Ie25,,,EA113,NA,,,, +Ie26,,,EA113,NA,,,, +Ie27,,,EA113,NA,,,, +Ie28,,,EA113,NA,,,, +Ie29,,,EA113,NA,,,, +Ie3,,,EA113,NA,,,, +Ie30,,,EA113,NA,,,, +Ie31,,,EA113,NA,,,, +Ie32,,,EA113,NA,,,, +Ie33,,,EA113,NA,,,, +Ie34,,,EA113,NA,,,, +Ie35,,,EA113,NA,,,, +Ie36,,,EA113,NA,,,, +Ie37,,,EA113,NA,,,, +Ie38,,,EA113,NA,,,, +Ie39,,,EA113,NA,,,, +Ie4,,,EA113,NA,,,, +Ie5,,,EA113,NA,,,, +Ie6,,,EA113,NA,,,, +Ie7,,,EA113,NA,,,, +Ie8,,,EA113,NA,,,, +Ie9,,,EA113,NA,,,, +If1,,,EA113,NA,,,, +If10,,,EA113,NA,,,, +If11,,,EA113,NA,,,, +If12,,,EA113,NA,,,, +If13,,,EA113,NA,,,, +If14,,,EA113,NA,,,, +If15,,,EA113,NA,,,, +If16,,,EA113,NA,,,, +If17,,,EA113,NA,,,, +If2,,,EA113,NA,,,, +If3,,,EA113,NA,,,, +If4,,,EA113,NA,,,, +If5,,,EA113,NA,,,, +If6,,,EA113,NA,,,, +If7,,,EA113,NA,,,, +If8,,,EA113,NA,,,, +If9,,,EA113,NA,,,, +Ig1,,,EA113,NA,,,, +Ig10,,,EA113,NA,,,, +Ig11,,,EA113,NA,,,, +Ig12,,,EA113,NA,,,, +Ig13,,,EA113,NA,,,, +Ig14,,,EA113,NA,,,, +Ig15,,,EA113,NA,,,, +Ig16,,,EA113,NA,,,, +Ig17,,,EA113,NA,,,, +Ig18,,,EA113,NA,,,, +Ig19,,,EA113,NA,,,, +Ig2,,,EA113,NA,,,, +Ig20,,,EA113,NA,,,, +Ig21,,,EA113,NA,,,, +Ig3,,,EA113,NA,,,, +Ig4,,,EA113,NA,,,, +Ig5,,,EA113,NA,,,, +Ig6,,,EA113,NA,,,, +Ig7,,,EA113,NA,,,, +Ig8,,,EA113,NA,,,, +Ig9,,,EA113,NA,,,, +Ih1,,,EA113,NA,,,, +Ih10,,,EA113,NA,,,, +Ih11,,,EA113,NA,,,, +Ih12,,,EA113,NA,,,, +Ih13,,,EA113,NA,,,, +Ih14,,,EA113,NA,,,, +Ih2,,,EA113,NA,,,, +Ih3,,,EA113,NA,,,, +Ih4,,,EA113,NA,,,, +Ih5,,,EA113,NA,,,, +Ih6,,,EA113,NA,,,, +Ih7,,,EA113,NA,,,, +Ih8,,,EA113,NA,,,, +Ih9,,,EA113,NA,,,, +Ii1,,,EA113,NA,,,, +Ii10,,,EA113,NA,,,, +Ii12,,,EA113,NA,,,, +Ii13,,,EA113,NA,,,, +Ii14,,,EA113,NA,,,, +Ii2,,,EA113,NA,,,, +Ii3,,,EA113,NA,,,, +Ii4,,,EA113,NA,,,, +Ii5,,,EA113,NA,,,, +Ii6,,,EA113,NA,,,, +Ii7,,,EA113,NA,,,, +Ii8,,,EA113,NA,,,, +Ii9,,,EA113,NA,,,, +Ij1,,,EA113,NA,,,, +Ij10,,,EA113,NA,,,, +Ij2,,,EA113,NA,,,, +Ij3,,,EA113,NA,,,, +Ij4,,,EA113,NA,,,, +Ij5,,,EA113,NA,,,, +Ij6,,,EA113,NA,,,, +Ij7,,,EA113,NA,,,, +Ij8,,,EA113,NA,,,, +Ij9,,,EA113,NA,,,, +Na1,,,EA113,NA,,,, +Na10,,,EA113,NA,,,, +Na11,,,EA113,NA,,,, +Na12,,,EA113,NA,,,, +Na13,,,EA113,NA,,,, +Na14,,,EA113,NA,,,, +Na15,,,EA113,NA,,,, +Na16,,,EA113,NA,,,, +Na17,,,EA113,NA,,,, +Na19,,,EA113,NA,,,, +Na2,,,EA113,NA,,,, +Na20,,,EA113,NA,,,, +Na21,,,EA113,NA,,,, +Na22,,,EA113,NA,,,, +Na23,,,EA113,NA,,,, +Na24,,,EA113,NA,,,, +Na25,,,EA113,NA,,,, +Na26,,,EA113,NA,,,, +Na27,,,EA113,NA,,,, +Na28,,,EA113,NA,,,, +Na29,,,EA113,NA,,,, +Na3,,,EA113,NA,,,, +Na30,,,EA113,NA,,,, +Na31,,,EA113,NA,,,, +Na32,,,EA113,NA,,,, +Na33,,,EA113,NA,,,, +Na34,,,EA113,NA,,,, +Na35,,,EA113,NA,,,, +Na36,,,EA113,NA,,,, +Na37,,,EA113,NA,,,, +Na38,,,EA113,NA,,,, +Na39,,,EA113,NA,,,, +Na4,,,EA113,NA,,,, +Na40,,,EA113,NA,,,, +Na41,,,EA113,NA,,,, +Na42,,,EA113,NA,,,, +Na43,,,EA113,NA,,,, +Na44,,,EA113,NA,,,, +Na45,,,EA113,NA,,,, +Na5,,,EA113,NA,,,, +Na6,,,EA113,NA,,,, +Na7,,,EA113,NA,,,, +Na8,,,EA113,NA,,,, +Na9,,,EA113,NA,,,, +Nb1,,,EA113,NA,,,, +Nb10,,,EA113,NA,,,, +Nb11,,,EA113,NA,,,, +Nb12,,,EA113,NA,,,, +Nb13,,,EA113,NA,,,, +Nb14,,,EA113,NA,,,, +Nb15,,,EA113,NA,,,, +Nb16,,,EA113,NA,,,, +Nb17,,,EA113,NA,,,, +Nb18,,,EA113,NA,,,, +Nb19,,,EA113,NA,,,, +Nb2,,,EA113,NA,,,, +Nb20,,,EA113,NA,,,, +Nb21,,,EA113,NA,,,, +Nb22,,,EA113,NA,,,, +Nb23,,,EA113,NA,,,, +Nb24,,,EA113,NA,,,, +Nb25,,,EA113,NA,,,, +Nb26,,,EA113,NA,,,, +Nb27,,,EA113,NA,,,, +Nb28,,,EA113,NA,,,, +Nb29,,,EA113,NA,,,, +Nb3,,,EA113,NA,,,, +Nb30,,,EA113,NA,,,, +Nb31,,,EA113,NA,,,, +Nb32,,,EA113,NA,,,, +Nb33,,,EA113,NA,,,, +Nb34,,,EA113,NA,,,, +Nb35,,,EA113,NA,,,, +Nb36,,,EA113,NA,,,, +Nb37,,,EA113,NA,,,, +Nb38,,,EA113,NA,,,, +Nb39,,,EA113,NA,,,, +Nb4,,,EA113,NA,,,, +Nb5,,,EA113,NA,,,, +Nb6,,,EA113,NA,,,, +Nb7,,,EA113,NA,,,, +Nb8,,,EA113,NA,,,, +Nb9,,,EA113,NA,,,, +Nc1,,,EA113,NA,,,, +Nc10,,,EA113,NA,,,, +Nc11,,,EA113,NA,,,, +Nc12,,,EA113,NA,,,, +Nc13,,,EA113,NA,,,, +Nc14,,,EA113,NA,,,, +Nc15,,,EA113,NA,,,, +Nc16,,,EA113,NA,,,, +Nc17,,,EA113,NA,,,, +Nc18,,,EA113,NA,,,, +Nc19,,,EA113,NA,,,, +Nc2,,,EA113,NA,,,, +Nc20,,,EA113,NA,,,, +Nc21,,,EA113,NA,,,, +Nc22,,,EA113,NA,,,, +Nc23,,,EA113,NA,,,, +Nc24,,,EA113,NA,,,, +Nc25,,,EA113,NA,,,, +Nc26,,,EA113,NA,,,, +Nc27,,,EA113,NA,,,, +Nc28,,,EA113,NA,,,, +Nc29,,,EA113,NA,,,, +Nc3,,,EA113,NA,,,, +Nc30,,,EA113,NA,,,, +Nc31,,,EA113,NA,,,, +Nc32,,,EA113,NA,,,, +Nc33,,,EA113,NA,,,, +Nc34,,,EA113,NA,,,, +Nc4,,,EA113,NA,,,, +Nc5,,,EA113,NA,,,, +Nc6,,,EA113,NA,,,, +Nc7,,,EA113,NA,,,, +Nc8,,,EA113,NA,,,, +Nc9,,,EA113,NA,,,, +Nd1,,,EA113,NA,,,, +Nd10,,,EA113,NA,,,, +Nd11,,,EA113,NA,,,, +Nd12,,,EA113,NA,,,, +Nd13,,,EA113,NA,,,, +Nd14,,,EA113,NA,,,, +Nd15,,,EA113,NA,,,, +Nd16,,,EA113,NA,,,, +Nd17,,,EA113,NA,,,, +Nd18,,,EA113,NA,,,, +Nd19,,,EA113,NA,,,, +Nd2,,,EA113,NA,,,, +Nd20,,,EA113,NA,,,, +Nd21,,,EA113,NA,,,, +Nd22,,,EA113,NA,,,, +Nd23,,,EA113,NA,,,, +Nd24,,,EA113,NA,,,, +Nd25,,,EA113,NA,,,, +Nd26,,,EA113,NA,,,, +Nd27,,,EA113,NA,,,, +Nd28,,,EA113,NA,,,, +Nd29,,,EA113,NA,,,, +Nd3,,,EA113,NA,,,, +Nd30,,,EA113,NA,,,, +Nd31,,,EA113,NA,,,, +Nd32,,,EA113,NA,,,, +Nd33,,,EA113,NA,,,, +Nd34,,,EA113,NA,,,, +Nd35,,,EA113,NA,,,, +Nd36,,,EA113,NA,,,, +Nd37,,,EA113,NA,,,, +Nd38,,,EA113,NA,,,, +Nd39,,,EA113,NA,,,, +Nd4,,,EA113,NA,,,, +Nd40,,,EA113,NA,,,, +Nd41,,,EA113,NA,,,, +Nd42,,,EA113,NA,,,, +Nd43,,,EA113,NA,,,, +Nd44,,,EA113,NA,,,, +Nd45,,,EA113,NA,,,, +Nd46,,,EA113,NA,,,, +Nd47,,,EA113,NA,,,, +Nd48,,,EA113,NA,,,, +Nd49,,,EA113,NA,,,, +Nd5,,,EA113,NA,,,, +Nd50,,,EA113,NA,,,, +Nd51,,,EA113,NA,,,, +Nd52,,,EA113,NA,,,, +Nd53,,,EA113,NA,,,, +Nd54,,,EA113,NA,,,, +Nd55,,,EA113,NA,,,, +Nd56,,,EA113,NA,,,, +Nd57,,,EA113,NA,,,, +Nd58,,,EA113,NA,,,, +Nd59,,,EA113,NA,,,, +Nd6,,,EA113,NA,,,, +Nd60,,,EA113,NA,,,, +Nd61,,,EA113,NA,,,, +Nd62,,,EA113,NA,,,, +Nd63,,,EA113,NA,,,, +Nd64,,,EA113,NA,,,, +Nd65,,,EA113,NA,,,, +Nd66,,,EA113,NA,,,, +Nd67,,,EA113,NA,,,, +Nd7,,,EA113,NA,,,, +Nd8,,,EA113,NA,,,, +Nd9,,,EA113,NA,,,, +Ne1,,,EA113,NA,,,, +Ne10,,,EA113,NA,,,, +Ne11,,,EA113,NA,,,, +Ne12,,,EA113,NA,,,, +Ne13,,,EA113,NA,,,, +Ne14,,,EA113,NA,,,, +Ne15,,,EA113,NA,,,, +Ne16,,,EA113,NA,,,, +Ne17,,,EA113,NA,,,, +Ne18,,,EA113,NA,,,, +Ne19,,,EA113,NA,,,, +Ne2,,,EA113,NA,,,, +Ne20,,,EA113,NA,,,, +Ne21,,,EA113,NA,,,, +Ne3,,,EA113,NA,,,, +Ne4,,,EA113,NA,,,, +Ne5,,,EA113,NA,,,, +Ne6,,,EA113,NA,,,, +Ne7,,,EA113,NA,,,, +Ne8,,,EA113,NA,,,, +Ne9,,,EA113,NA,,,, +Nf10,,,EA113,NA,,,, +Nf11,,,EA113,NA,,,, +Nf12,,,EA113,NA,,,, +Nf13,,,EA113,NA,,,, +Nf14,,,EA113,NA,,,, +Nf15,,,EA113,NA,,,, +Nf2,,,EA113,NA,,,, +Nf3,,,EA113,NA,,,, +Nf4,,,EA113,NA,,,, +Nf5,,,EA113,NA,,,, +Nf6,,,EA113,NA,,,, +Nf7,,,EA113,NA,,,, +Nf8,,,EA113,NA,,,, +Nf9,,,EA113,NA,,,, +Ng1,,,EA113,NA,,,, +Ng10,,,EA113,NA,,,, +Ng11,,,EA113,NA,,,, +Ng12,,,EA113,NA,,,, +Ng13,,,EA113,NA,,,, +Ng14,,,EA113,NA,,,, +Ng15,,,EA113,NA,,,, +Ng2,,,EA113,NA,,,, +Ng3,,,EA113,NA,,,, +Ng4,,,EA113,NA,,,, +Ng5,,,EA113,NA,,,, +Ng6,,,EA113,NA,,,, +Ng7,,,EA113,NA,,,, +Ng8,,,EA113,NA,,,, +Ng9,,,EA113,NA,,,, +Nh1,,,EA113,NA,,,, +Nh10,,,EA113,NA,,,, +Nh11,,,EA113,NA,,,, +Nh12,,,EA113,NA,,,, +Nh13,,,EA113,NA,,,, +Nh14,,,EA113,NA,,,, +Nh15,,,EA113,NA,,,, +Nh16,,,EA113,NA,,,, +Nh17,,,EA113,NA,,,, +Nh18,,,EA113,NA,,,, +Nh19,,,EA113,NA,,,, +Nh2,,,EA113,NA,,,, +Nh20,,,EA113,NA,,,, +Nh21,,,EA113,NA,,,, +Nh22,,,EA113,NA,,,, +Nh23,,,EA113,NA,,,, +Nh24,,,EA113,NA,,,, +Nh25,,,EA113,NA,,,, +Nh26,,,EA113,NA,,,, +Nh27,,,EA113,NA,,,, +Nh3,,,EA113,NA,,,, +Nh4,,,EA113,NA,,,, +Nh5,,,EA113,NA,,,, +Nh6,,,EA113,NA,,,, +Nh7,,,EA113,NA,,,, +Nh8,,,EA113,NA,,,, +Nh9,,,EA113,NA,,,, +Ni1,,,EA113,NA,,,, +Ni2,,,EA113,NA,,,, +Ni3,,,EA113,NA,,,, +Ni4,,,EA113,NA,,,, +Ni5,,,EA113,NA,,,, +Ni6,,,EA113,NA,,,, +Ni7,,,EA113,NA,,,, +Ni8,,,EA113,NA,,,, +Ni9,,,EA113,NA,,,, +Nj1,,,EA113,NA,,,, +Nj10,,,EA113,NA,,,, +Nj11,,,EA113,NA,,,, +Nj12,,,EA113,NA,,,, +Nj13,,,EA113,NA,,,, +Nj14,,,EA113,NA,,,, +Nj2,,,EA113,NA,,,, +Nj3,,,EA113,NA,,,, +Nj4,,,EA113,NA,,,, +Nj5,,,EA113,NA,,,, +Nj6,,,EA113,NA,,,, +Nj7,,,EA113,NA,,,, +Nj8,,,EA113,NA,,,, +Nj9,,,EA113,NA,,,, +Sa1,,,EA113,NA,,,, +Sa10,,,EA113,NA,,,, +Sa11,,,EA113,NA,,,, +Sa12,,,EA113,NA,,,, +Sa13,,,EA113,NA,,,, +Sa14,,,EA113,NA,,,, +Sa15,,,EA113,NA,,,, +Sa16,,,EA113,NA,,,, +Sa17,,,EA113,NA,,,, +Sa2,,,EA113,NA,,,, +Sa3,,,EA113,NA,,,, +Sa4,,,EA113,NA,,,, +Sa5,,,EA113,NA,,,, +Sa6,,,EA113,NA,,,, +Sa7,,,EA113,NA,,,, +Sa8,,,EA113,NA,,,, +Sa9,,,EA113,NA,,,, +Sb1,,,EA113,NA,,,, +Sb2,,,EA113,NA,,,, +Sb3,,,EA113,NA,,,, +Sb4,,,EA113,NA,,,, +Sb5,,,EA113,NA,,,, +Sb6,,,EA113,NA,,,, +Sb7,,,EA113,NA,,,, +Sb8,,,EA113,NA,,,, +Sb9,,,EA113,NA,,,, +Sc1,,,EA113,NA,,,, +Sc10,,,EA113,NA,,,, +Sc11,,,EA113,NA,,,, +Sc12,,,EA113,NA,,,, +Sc13,,,EA113,NA,,,, +Sc14,,,EA113,NA,,,, +Sc15,,,EA113,NA,,,, +Sc16,,,EA113,NA,,,, +Sc17,,,EA113,NA,,,, +Sc18,,,EA113,NA,,,, +Sc2,,,EA113,NA,,,, +Sc3,,,EA113,NA,,,, +Sc4,,,EA113,NA,,,, +Sc5,,,EA113,NA,,,, +Sc6,,,EA113,NA,,,, +Sc7,,,EA113,NA,,,, +Sc8,,,EA113,NA,,,, +Sc9,,,EA113,NA,,,, +Sd1,,,EA113,NA,,,, +Sd2,,,EA113,NA,,,, +Sd3,,,EA113,NA,,,, +Sd4,,,EA113,NA,,,, +Sd5,,,EA113,NA,,,, +Sd6,,,EA113,NA,,,, +Sd7,,,EA113,NA,,,, +Sd8,,,EA113,NA,,,, +Sd9,,,EA113,NA,,,, +Se1,,,EA113,NA,,,, +Se10,,,EA113,NA,,,, +Se11,,,EA113,NA,,,, +Se12,,,EA113,NA,,,, +Se2,,,EA113,NA,,,, +Se3,,,EA113,NA,,,, +Se4,,,EA113,NA,,,, +Se5,,,EA113,NA,,,, +Se6,,,EA113,NA,,,, +Se7,,,EA113,NA,,,, +Se8,,,EA113,NA,,,, +Se9,,,EA113,NA,,,, +Sf1,,,EA113,NA,,,, +Sf2,,,EA113,NA,,,, +Sf3,,,EA113,NA,,,, +Sf4,,,EA113,NA,,,, +Sf5,,,EA113,NA,,,, +Sf6,,,EA113,NA,,,, +Sf7,,,EA113,NA,,,, +Sf8,,,EA113,NA,,,, +Sf9,,,EA113,NA,,,, +Sg1,,,EA113,NA,,,, +Sg2,,,EA113,NA,,,, +Sg3,,,EA113,NA,,,, +Sg4,,,EA113,NA,,,, +Sg5,,,EA113,NA,,,, +Sh1,,,EA113,NA,,,, +Sh2,,,EA113,NA,,,, +Sh3,,,EA113,NA,,,, +Sh4,,,EA113,NA,,,, +Sh5,,,EA113,NA,,,, +Sh6,,,EA113,NA,,,, +Sh7,,,EA113,NA,,,, +Sh8,,,EA113,NA,,,, +Sh9,,,EA113,NA,,,, +Si1,,,EA113,NA,,,, +Si10,,,EA113,NA,,,, +Si2,,,EA113,NA,,,, +Si3,,,EA113,NA,,,, +Si4,,,EA113,NA,,,, +Si5,,,EA113,NA,,,, +Si6,,,EA113,NA,,,, +Si7,,,EA113,NA,,,, +Si8,,,EA113,NA,,,, +Si9,,,EA113,NA,,,, +Sj1,,,EA113,NA,,,, +Sj10,,,EA113,NA,,,, +Sj11,,,EA113,NA,,,, +Sj2,,,EA113,NA,,,, +Sj3,,,EA113,NA,,,, +Sj4,,,EA113,NA,,,, +Sj5,,,EA113,NA,,,, +Sj6,,,EA113,NA,,,, +Sj7,,,EA113,NA,,,, +Sj8,,,EA113,NA,,,, +Sj9,,,EA113,NA,,,, +ch12,,,EA113,NA,,,, +ch13,,,EA113,NA,,,, +ch14,,,EA113,NA,,,, +ch15,,,EA113,NA,,,, +ch16,,,EA113,NA,,,, +ch17,,,EA113,NA,,,, +ch18,,,EA113,NA,,,, +ch19,,,EA113,NA,,,, +ch20,,,EA113,NA,,,, +ch21,,,EA113,NA,,,, +ch22,,,EA113,NA,,,, +ch23,,,EA113,NA,,,, +ch24,,,EA113,NA,,,, +ch25,,,EA113,NA,,,, +ch26,,,EA113,NA,,,, +ch27,,,EA113,NA,,,, +ch28,,,EA113,NA,,,, +ec12,,,EA113,NA,,,, +ec13,,,EA113,NA,,,, +ec14,,,EA113,NA,,,, +ec15,,,EA113,NA,,,, +ec16,,,EA113,NA,,,, +ec17,,,EA113,NA,,,, +ec18,,,EA113,NA,,,, +ec19,,,EA113,NA,,,, +ec20,,,EA113,NA,,,, +ec21,,,EA113,NA,,,, +Aa1,Nyai Nyae region,1950,EA012,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA012,8,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA012,8,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA012,12,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA012,12,"Entry follows Schebesta; Czekanowski reports Uxorilocal (code ""9""); Turnbull reports Ambilocal (code ""2"")",deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA012,8,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA012,12,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA012,2,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA012,2,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA012,10,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA012,8,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA012,8,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA012,8,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA012,8,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA012,8,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA012,8,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA012,8,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA012,8,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA012,8,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA012,10,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA012,8,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA012,10,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA012,8,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA012,8,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA012,8,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA012,10,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA012,8,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA012,8,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA012,8,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA012,1,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA012,8,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA012,8,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA012,10,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA012,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA012,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA012,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA012,1,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA012,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA012,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA012,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA012,10,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA012,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA012,10,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA012,1,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA012,1,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA012,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA012,1,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA012,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA012,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA012,1,"Entry follows Richards; Beaucorps reports Virilocal (code ""10"")",beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA012,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA012,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA012,4,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA012,1,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA012,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA012,4,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA012,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA012,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA012,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA012,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA012,1,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA012,8,"Formerly classified as 'Avunculocal' (code ""1"")",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA012,3,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA012,5,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA012,5,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA012,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA012,5,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA012,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA012,3,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA012,8,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA012,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA012,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA012,5,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA012,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA012,12,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA012,6,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA012,8,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA012,6,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA012,8,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA012,8,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA012,5,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA012,8,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA012,6,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA012,8,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA012,8,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA012,8,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA012,8,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA012,10,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA012,8,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA012,10,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA012,8,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA012,8,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA012,8,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA012,8,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA012,5,At least initially,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA012,5,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA012,8,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA012,8,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA012,8,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA012,8,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA012,8,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA012,8,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA012,8,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA012,8,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA012,8,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA012,8,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA012,8,Inferential from distributional evidence,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA012,8,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA012,8,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA012,8,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA012,8,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA012,8,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA012,8,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA012,8,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA012,8,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA012,8,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA012,8,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA012,8,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA012,8,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA012,8,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA012,5,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA012,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA012,6,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA012,6,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA012,8,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA012,8,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA012,8,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA012,8,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA012,8,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA012,8,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA012,8,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA012,8,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA012,8,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA012,8,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA012,8,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA012,8,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA012,10,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA012,8,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA012,8,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA012,8,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA012,8,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA012,8,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA012,8,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA012,8,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA012,8,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA012,8,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA012,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA012,8,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA012,8,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA012,8,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA012,8,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA012,8,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA012,8,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA012,8,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA012,8,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA012,8,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA012,8,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA012,4,The relative incidence of avunculocal and virilocal residence is unclear,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA012,8,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA012,8,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA012,8,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA012,8,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA012,8,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA012,8,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA012,8,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA012,8,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA012,10,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA012,8,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA012,8,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA012,8,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA012,8,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA012,8,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA012,8,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA012,8,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA012,8,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA012,1,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA012,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA012,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA012,8,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA012,8,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA012,8,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA012,8,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA012,8,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA012,8,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA012,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA012,8,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA012,8,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA012,8,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA012,NA,"Mix of Avunculocal (code ""1""), Nonestablishment of a common household (code ""7""), and Virilocal (code ""10"") with relative incidence unspecified",field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA012,8,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA012,10,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA012,8,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA012,8,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA012,8,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA012,8,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA012,8,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA012,8,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA012,8,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA012,10,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA012,8,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA012,8,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA012,8,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA012,8,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA012,10,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA012,8,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA012,8,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA012,8,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA012,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA012,8,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA012,8,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA012,8,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA012,8,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA012,8,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA012,8,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA012,8,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA012,8,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA012,10,But a married woman commonly remains in her natal household instead of joining her husband,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA012,10,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA012,8,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA012,10,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA012,10,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA012,4,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA012,7,But most married women continue to reside in their natal household,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA012,1,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA012,10,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA012,8,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA012,8,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA012,8,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA012,8,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA012,8,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA012,8,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA012,8,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA012,8,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA012,8,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA012,8,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA012,8,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA012,8,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA012,8,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA012,8,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA012,8,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA012,8,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA012,8,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA012,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA012,8,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA012,8,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA012,10,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA012,8,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA012,8,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA012,8,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA012,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA012,8,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA012,8,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA012,5,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA012,8,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA012,8,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA012,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA012,8,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA012,8,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA012,8,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA012,8,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA012,8,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA012,8,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA012,8,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA012,8,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA012,8,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA012,8,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA012,8,"Entry follows Tauxier; Cremer also reports early residence as Uxorilocal, but prevailing pattern of residence as Patrilocal (i.e., this would be code ""9"")",cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA012,8,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA012,8,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA012,8,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA012,8,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA012,4,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA012,8,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA012,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA012,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA012,8,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA012,8,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA012,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA012,8,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA012,8,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA012,8,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA012,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA012,8,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA012,8,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA012,8,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA012,8,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA012,8,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA012,8,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA012,8,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA012,8,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA012,8,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA012,8,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA012,8,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA012,8,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA012,8,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA012,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA012,8,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA012,8,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA012,8,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA012,8,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA012,8,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA012,8,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA012,8,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA012,8,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA012,8,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA012,8,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA012,8,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA012,8,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA012,4,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA012,8,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA012,8,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA012,8,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA012,9,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA012,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA012,8,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA012,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA012,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA012,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA012,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA012,10,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA012,1,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA012,8,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA012,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA012,8,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA012,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA012,8,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA012,8,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA012,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA012,8,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA012,8,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA012,10,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA012,8,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA012,1,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA012,8,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA012,8,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA012,8,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA012,8,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA012,8,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA012,10,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA012,8,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA012,8,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA012,8,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA012,8,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA012,8,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA012,8,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA012,8,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA012,8,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA012,8,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA012,8,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA012,8,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA012,8,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA012,8,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA012,8,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA012,NA,,,, +Ai26,,1920,EA012,8,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA012,8,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA012,8,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA012,8,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA012,10,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA012,8,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA012,8,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA012,8,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA012,8,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA012,8,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA012,8,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA012,8,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA012,8,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA012,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA012,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA012,2,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA012,8,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA012,8,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA012,8,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA012,8,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA012,8,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA012,8,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA012,8,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA012,8,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA012,8,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA012,8,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA012,8,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA012,8,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA012,8,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA012,8,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA012,8,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA012,8,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA012,8,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA012,8,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA012,8,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA012,8,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA012,8,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA012,8,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA012,NA,,,, +Aj19,,1920,EA012,8,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA012,8,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA012,8,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA012,8,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,,EA012,NA,,,, +Aj23,,1950,EA012,8,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA012,8,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA012,8,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA012,8,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA012,8,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA012,8,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA012,8,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA012,12,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA012,8,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA012,8,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA012,8,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA012,8,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA012,8,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA012,8,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA012,8,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA012,8,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA012,6,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA012,8,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA012,8,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA012,8,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA012,8,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA012,8,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA012,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA012,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA012,8,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA012,8,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA012,8,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA012,8,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA012,8,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA012,8,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA012,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA012,8,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA012,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA012,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA012,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA012,8,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA012,8,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA012,8,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA012,8,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA012,8,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA012,10,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA012,6,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA012,6,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA012,8,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA012,8,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA012,8,"In the noble class; among serfs prevailing pattern is Patrilocal (code ""8"")",munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA012,8,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA012,8,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA012,8,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA012,8,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA012,8,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA012,8,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA012,8,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA012,8,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA012,8,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA012,8,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA012,12,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA012,8,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA012,8,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA012,8,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA012,8,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,,EA012,NA,,,, +Cb12,,1920,EA012,8,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA012,8,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA012,8,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA012,8,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA012,8,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA012,7,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA012,10,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA012,10,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA012,8,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,,EA012,NA,,,, +Cb21,,1930,EA012,8,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA012,8,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA012,8,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA012,8,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA012,8,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA012,8,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA012,8,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA012,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA012,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA012,8,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA012,8,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA012,8,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA012,8,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA012,8,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA012,10,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA012,8,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA012,8,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA012,10,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,,EA012,NA,,,, +Cc12,,1944,EA012,10,Ultimate residence is unclear and may be avunculocal,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA012,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA012,8,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA012,NA,,,, +Cc16,,1930,EA012,8,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA012,8,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA012,8,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA012,8,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA012,8,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA012,8,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA012,8,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA012,8,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA012,10,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA012,8,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA012,8,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA012,NA,,,, +Cc9,Ahaggaren tribe,1920,EA012,4,"Virilocal (code ""10"") after an initial period until death of HuFa, then Avunculocal (code ""1"")",benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA012,8,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA012,8,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA012,10,Suggested rather than attested,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA012,8,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA012,8,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA012,8,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA012,8,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA012,8,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA012,8,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA012,8,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA012,8,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA012,8,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA012,8,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA012,8,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA012,8,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA012,8,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA012,8,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA012,6,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA012,8,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA012,8,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA012,8,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA012,8,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA012,10,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA012,6,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA012,2,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA012,6,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA012,6,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA012,10,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA012,12,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA012,6,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA012,10,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA012,6,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA012,6,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA012,6,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA012,2,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA012,10,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA012,10,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA012,12,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA012,6,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA012,8,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA012,6,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA012,6,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA012,6,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA012,10,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA012,6,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA012,10,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA012,2,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA012,10,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA012,10,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA012,10,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA012,8,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA012,12,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA012,8,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA012,8,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA012,8,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA012,6,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA012,8,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA012,8,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA012,8,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA012,8,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA012,8,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA012,8,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA012,8,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA012,8,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA012,8,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA012,8,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA012,2,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA012,8,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA012,8,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA012,8,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA012,8,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA012,8,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA012,8,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA012,8,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA012,8,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA012,8,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA012,8,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA012,8,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA012,8,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA012,8,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA012,8,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA012,8,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA012,8,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA012,8,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA012,10,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA012,8,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA012,8,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA012,8,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA012,8,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA012,8,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA012,8,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA012,8,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA012,8,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA012,8,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA012,8,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA012,8,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA012,8,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA012,12,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA012,8,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA012,12,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA012,11,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA012,12,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA012,10,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA012,8,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA012,8,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA012,8,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA012,8,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA012,8,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA012,8,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA012,6,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA012,8,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA012,8,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA012,8,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA012,8,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA012,10,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA012,8,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA012,8,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA012,8,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA012,8,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA012,10,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA012,8,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA012,8,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA012,8,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA012,8,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA012,8,Uxorilocal only if wife has no brothers,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA012,8,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA012,8,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA012,8,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA012,8,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA012,8,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA012,8,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA012,8,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA012,8,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA012,8,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA012,8,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA012,8,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA012,8,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA012,8,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA012,2,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA012,8,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA012,8,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA012,8,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA012,8,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA012,8,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA012,8,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA012,8,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA012,8,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA012,8,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA012,7,Entry pertains to the Nayar; predominantly Matrilocal among the Mappilla and Virilocal or Neolocal among the Tiyyar,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA012,8,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA012,8,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA012,8,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA012,2,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA012,8,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA012,10,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA012,8,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA012,5,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA012,11,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA012,12,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA012,8,"But McLeod reports Ambilocal (code ""2"")",decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA012,8,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA012,8,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA012,5,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA012,8,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA012,8,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA012,8,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA012,8,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA012,8,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA012,8,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA012,8,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA012,8,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA012,10,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA012,8,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA012,8,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA012,8,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA012,6,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA012,8,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA012,8,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA012,8,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA012,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA012,5,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA012,8,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA012,8,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA012,5,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA012,5,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA012,8,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA012,8,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA012,2,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA012,6,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA012,5,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA012,5,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA012,10,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA012,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA012,6,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA012,6,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA012,8,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA012,10,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA012,6,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA012,12,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA012,8,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA012,11,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA012,6,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA012,2,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA012,10,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA012,10,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA012,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA012,6,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA012,6,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA012,2,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA012,2,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA012,2,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA012,11,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA012,12,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA012,11,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA012,12,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA012,5,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA012,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA012,6,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA012,8,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA012,8,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA012,12,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA012,7,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA012,12,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA012,2,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,,,EA012,NA,,,, +Ic1,Borongloe,1940,EA012,2,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA012,12,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA012,10,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA012,6,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA012,8,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA012,12,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA012,5,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA012,8,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA012,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA012,8,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA012,8,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA012,8,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA012,8,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA012,8,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA012,8,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA012,8,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA012,8,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA012,8,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA012,8,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA012,12,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA012,10,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA012,8,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA012,8,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA012,8,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA012,NA,,,, +Id9,,1910,EA012,8,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA012,8,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA012,8,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA012,8,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA012,8,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA012,8,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA012,8,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA012,8,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA012,7,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA012,7,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA012,12,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA012,7,But normally patrilocal,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA012,8,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA012,8,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA012,8,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA012,8,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA012,8,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA012,8,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA012,8,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA012,8,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA012,8,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA012,10,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA012,8,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA012,8,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA012,5,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA012,8,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA012,8,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA012,8,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA012,2,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA012,8,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA012,8,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA012,8,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA012,10,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA012,8,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA012,8,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA012,8,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA012,8,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA012,8,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA012,8,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA012,8,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA012,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA012,5,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA012,10,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA012,5,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA012,5,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA012,12,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA012,5,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA012,5,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA012,5,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA012,5,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA012,2,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA012,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA012,5,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA012,8,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA012,12,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA012,6,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA012,12,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA012,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA012,8,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA012,12,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA012,12,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA012,7,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA012,4,"Or possibly Ambilocal (code ""2"")",belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA012,8,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA012,10,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA012,8,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA012,8,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA012,10,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA012,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA012,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA012,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA012,2,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA012,5,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA012,3,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA012,10,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA012,4,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA012,2,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA012,8,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA012,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA012,8,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA012,NA,,,, +Ih12,,1920,EA012,8,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA012,8,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA012,8,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA012,8,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA012,8,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA012,8,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA012,8,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA012,5,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA012,8,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA012,8,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA012,10,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA012,2,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,,EA012,NA,,,, +Ii12,Pangai,1920,EA012,10,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA012,12,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA012,12,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA012,8,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA012,8,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA012,12,Residence rule inferred from data on inheritance,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA012,11,Virilocal for part of the year in families possessing coconut groves in the outer islands,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to codes for post-marital residence (Col 16), not Col 19 as stated in Gray (1999)" +Ii6,with special reference to Atafu,1900,EA012,11,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA012,2,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98,"Corrected Gray 1999, v12 was coded as ""1""" +Ii8,,1840,EA012,12,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA012,12,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA012,12,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA012,12,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA012,10,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA012,10,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA012,12,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA012,2,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA012,2,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA012,12,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA012,2,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA012,12,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA012,11,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA012,10,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA012,8,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA012,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA012,6,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA012,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA012,10,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA012,12,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA012,12,"Entry follows Helm; Honigmann reports prevailing pattern as Uxorilocal (code ""9"") with Virilocal as alternate (EA014 would be code ""10"")",helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA012,5,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA012,2,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA012,12,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA012,2,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA012,12,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA012,10,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA012,12,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA012,12,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA012,10,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA012,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA012,10,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA012,9,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA012,6,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA012,10,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA012,11,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA012,10,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA012,12,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA012,8,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA012,12,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA012,6,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA012,2,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA012,10,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA012,12,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA012,5,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA012,NA,,,, +Na41,Mainland division,1700,EA012,10,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA012,8,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA012,12,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA012,12,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA012,12,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA012,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA012,10,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA012,12,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA012,11,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA012,10,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA012,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA012,12,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA012,12,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA012,12,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA012,10,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA012,12,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA012,12,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA012,10,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA012,12,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA012,10,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA012,10,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA012,10,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA012,12,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA012,12,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA012,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA012,12,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA012,10,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA012,12,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA012,12,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA012,12,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA012,12,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA012,12,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA012,12,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA012,10,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA012,8,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA012,12,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA012,2,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA012,12,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA012,12,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA012,12,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA012,2,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA012,12,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA012,2,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA012,12,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA012,1,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA012,8,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA012,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA012,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA012,12,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA012,8,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA012,12,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA012,10,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA012,12,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA012,12,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA012,12,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA012,2,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA012,10,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA012,2,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA012,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA012,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA012,12,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA012,2,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,,EA012,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA012,2,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA012,8,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA012,8,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA012,8,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA012,8,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA012,10,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA012,10,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA012,8,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA012,8,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA012,8,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA012,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA012,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA012,8,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA012,8,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA012,10,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA012,8,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA012,8,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA012,10,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA012,12,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA012,12,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA012,12,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA012,12,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA012,10,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA012,12,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA012,12,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA012,10,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA012,2,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA012,10,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA012,11,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA012,12,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA012,10,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA012,11,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA012,12,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA012,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA012,11,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA012,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA012,2,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA012,11,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA012,2,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA012,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA012,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA012,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA012,10,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA012,12,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA012,10,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA012,9,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA012,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA012,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA012,12,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA012,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA012,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA012,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA012,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA012,10,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA012,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA012,12,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA012,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA012,11,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA012,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA012,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA012,10,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA012,12,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA012,11,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA012,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA012,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,,EA012,NA,,,, +Nd51,,1860,EA012,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA012,2,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA012,10,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA012,2,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA012,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA012,11,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA012,11,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA012,11,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA012,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA012,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA012,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA012,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA012,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA012,11,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA012,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA012,12,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA012,2,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA012,2,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA012,12,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA012,12,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA012,12,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA012,12,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA012,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA012,12,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA012,12,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA012,10,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,,EA012,NA,,,, +Ne15,Hidatsa Village,1860,EA012,5,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA012,2,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA012,12,"Entry follows Richardson; Mooney reports prevailing pattern as Uxorilocal (code ""9"") with Virilocal as alternate (EA014 would be code ""10"")",lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA012,10,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA012,10,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA012,11,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA012,12,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA012,NA,,,, +Ne3,Comanche Tribe,1870,EA012,2,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA012,10,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA012,11,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA012,5,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA012,10,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA012,12,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA012,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA012,8,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA012,8,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA012,8,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA012,8,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA012,9,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA012,8,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA012,8,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA012,8,"In hunting camps, but possibly Uxorilocal in the villages (code ""9"")",dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA012,8,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA012,11,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA012,5,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA012,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA012,11,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA012,8,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA012,5,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA012,5,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA012,6,"At a late period, but probably originally Matrilocal (code ""5"")",eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA012,5,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA012,10,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA012,5,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA012,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA012,5,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA012,5,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA012,2,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA012,5,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA012,5,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA012,10,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA012,5,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA012,6,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA012,11,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA012,6,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA012,6,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA012,2,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA012,2,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA012,5,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA012,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA012,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA012,5,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA012,5,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA012,8,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA012,5,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA012,8,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA012,2,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA012,8,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA012,2,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA012,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA012,6,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA012,6,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA012,2,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA012,5,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA012,5,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA012,8,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA012,6,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA012,5,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA012,6,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA012,6,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA012,6,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA012,10,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA012,2,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA012,10,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA012,11,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA012,10,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA012,10,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA012,6,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,,EA012,NA,,,, +Nj1,Ojitlan,1940,EA012,10,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA012,10,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA012,10,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,,EA012,NA,,,, +Nj13,,1900,EA012,6,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA012,8,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA012,10,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA012,10,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA012,10,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA012,10,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA012,12,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA012,10,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA012,10,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA012,10,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA012,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA012,8,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA012,8,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA012,6,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA012,8,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA012,5,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA012,8,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA012,6,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA012,8,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA012,8,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA012,2,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA012,6,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA012,6,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA012,10,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA012,6,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA012,8,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA012,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA012,5,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA012,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA012,11,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA012,11,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA012,2,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA012,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA012,9,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA012,10,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA012,6,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA012,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA012,5,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA012,10,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA012,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA012,11,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA012,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA012,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA012,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA012,10,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA012,5,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA012,9,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA012,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA012,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA012,10,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA012,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA012,11,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA012,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA012,10,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA012,11,But men sleep apart from their wives in a men's house,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA012,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA012,8,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA012,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA012,8,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA012,9,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA012,2,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA012,2,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA012,10,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA012,9,"The entry assumes that the matrilocal extended families are organized around matrilineage cores; if there are actually no lineages, the entry should be Uxorilocal; Holmberg does not report lineages but admits, in personal discussion, that he may conceivably have overlooked their existence",holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA012,10,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA012,10,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA012,8,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA012,8,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA012,6,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA012,8,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA012,8,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA012,8,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA012,6,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA012,10,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA012,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA012,10,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA012,8,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA012,12,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA012,12,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA012,6,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA012,10,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA012,12,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA012,9,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA012,6,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA012,10,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA012,8,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA012,10,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people""",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA012,10,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA012,2,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA012,11,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA012,2,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA012,6,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA012,9,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA012,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA012,11,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA012,10,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA012,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA012,11,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA012,5,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA012,10,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA012,10,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA012,10,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA012,12,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA012,10,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA012,6,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA012,11,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA012,10,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA012,NA,,,, +Sj1,,1950,EA012,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA012,10,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA012,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA012,8,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA012,2,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA012,5,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,,,EA012,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA012,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA012,5,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA012,11,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA012,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA012,10,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA012,8,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA012,10,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA012,10,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA012,12,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA012,6,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA012,10,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA012,8,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA012,10,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA012,10,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA012,10,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA012,12,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA012,10,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA012,10,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA012,12,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA012,10,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA012,10,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA012,8,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA012,8,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA012,8,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA012,10,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA012,10,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA012,10,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA012,10,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA012,10,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA012,10,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA012,10,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA013,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA013,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA013,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA013,3,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA013,3,"Note that Turnbull reports Ambilocal (code would be ""2"")",deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA013,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA013,3,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA013,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA013,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA013,9,,irle1906; vedder1928,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ab10,,1936,EA013,9,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA013,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA013,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA013,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA013,9,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA013,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA013,9,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA013,9,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA013,3,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA013,2,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA013,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA013,9,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA013,9,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA013,9,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA013,9,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA013,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ab4,,1920,EA013,9,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA013,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ab6,,1900,EA013,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA013,9,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA013,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA013,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA013,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac10,,1920,EA013,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA013,9,,mcculloch1951; white1955,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac12,,1920,EA013,9,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA013,9,,tew1950; velsen1964,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac14,,1900,EA013,9,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA013,9,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac16,,1940,EA013,9,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA013,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac18,,1910,EA013,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA013,9,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac2,,1920,EA013,9,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac20,,1920,EA013,9,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA013,9,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA013,9,,mertens1935,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac23,with special reference to the western Lele,1950,EA013,2,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA013,9,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA013,9,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac26,,1920,EA013,9,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac27,,1930,EA013,9,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA013,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA013,9,,brau1942,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac3,Zambia branch,1900,EA013,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA013,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA013,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA013,9,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac33,,1940,EA013,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA013,2,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA013,3,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA013,9,"Formerly, alternate pattern was reported as 'Uxorilocal' (EA014 code ""9""), which would make this 'Husband to wife's group' (code ""3"")",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA013,9,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA013,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac39,,1920,EA013,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA013,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA013,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac41,,1900,EA013,9,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA013,9,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA013,9,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA013,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA013,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac7,,1920,EA013,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ac8,,1930,EA013,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA013,3,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA013,3,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA013,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA013,3,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA013,9,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA013,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA013,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ad15,,1900,EA013,9,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA013,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA013,2,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA013,9,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA013,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA013,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA013,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ad21,,1930,EA013,9,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA013,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ad23,,1910,EA013,9,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA013,2,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA013,9,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA013,9,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA013,9,At least initially,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA013,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA013,9,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA013,2,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA013,3,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA013,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA013,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA013,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA013,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA013,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA013,9,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA013,3,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA013,9,Inferential from distributional evidence,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA013,9,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA013,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA013,9,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA013,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA013,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA013,2,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA013,9,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA013,2,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA013,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA013,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA013,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA013,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA013,9,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA013,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ad51,,1930,EA013,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA013,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA013,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA013,2,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA013,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA013,9,,winter1956; winter1958,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ae10,,1910,EA013,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA013,9,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA013,9,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA013,9,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA013,9,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA013,9,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA013,9,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA013,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA013,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA013,9,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA013,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ae20,,1940,EA013,9,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ae21,,1920,EA013,9,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA013,9,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA013,9,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ae24,,1920,EA013,9,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ae25,with special reference to the northern Tetela,1920,EA013,9,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA013,9,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA013,9,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA013,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA013,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA013,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA013,9,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA013,9,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA013,9,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA013,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA013,9,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA013,9,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA013,9,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA013,9,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA013,9,The relative incidence of avunculocal and virilocal residence is unclear,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA013,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA013,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ae40,,1910,EA013,9,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA013,9,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA013,9,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA013,9,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA013,9,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA013,9,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA013,9,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ae47,,1900,EA013,9,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA013,9,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ae49,,1900,EA013,9,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA013,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA013,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA013,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA013,9,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA013,9,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA013,9,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ae55,,1950,EA013,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA013,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA013,9,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA013,9,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA013,9,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA013,9,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA013,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA013,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA013,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA013,3,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA013,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA013,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA013,NA,"Residence pattern is a mix of 'Avunculocal', 'Nonestablishment of a common household', and 'Virilocal'with relative incidence unspecified; so, this variable would be either 'wife to husband's group' (code ""1"" or 'no common residence' (code ""9"")",field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA013,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA013,9,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af15,,1920,EA013,3,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA013,9,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA013,9,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA013,9,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA013,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA013,9,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA013,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA013,9,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af22,,1940,EA013,2,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA013,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA013,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA013,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA013,9,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af27,,1950,EA013,9,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA013,9,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA013,9,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA013,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af30,,1920,EA013,9,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA013,9,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA013,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA013,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA013,9,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA013,9,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA013,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA013,9,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA013,9,But a married woman commonly remains in her natal household instead of joining her husband,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af39,with special reference to the Ndenie,1900,EA013,9,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af4,,1930,EA013,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA013,9,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af41,,1890,EA013,9,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af42,,1900,EA013,2,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA013,1,But most married women continue to reside in their natal household,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA013,9,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af45,,1900,EA013,9,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af46,,1900,EA013,9,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA013,9,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA013,9,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA013,9,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA013,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af50,,1920,EA013,9,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA013,9,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA013,9,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA013,9,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA013,9,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA013,3,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA013,9,,schwab1947; viard1934,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af57,,1910,EA013,9,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Af58,,1900,EA013,9,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA013,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA013,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA013,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA013,9,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag1,Segou to Bamako on Niger River,1920,EA013,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA013,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA013,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag12,,1910,EA013,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag13,,1910,EA013,9,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA013,9,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA013,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA013,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA013,9,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA013,9,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA013,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA013,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA013,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA013,9,,lestrange1950,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag22,with special reference to those of Sine,1920,EA013,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag23,,1910,EA013,9,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA013,9,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA013,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA013,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA013,2,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA013,9,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA013,9,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA013,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA013,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA013,9,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA013,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA013,9,,labouret1931,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag34,,1930,EA013,9,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag35,,1910,EA013,9,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA013,9,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag37,,1910,EA013,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA013,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA013,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA013,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA013,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA013,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA013,9,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA013,9,,rattray1932,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag44,,,EA013,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA013,2,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA013,9,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA013,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag48,,1890,EA013,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA013,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA013,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag50,,1910,EA013,9,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA013,9,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA013,9,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA013,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA013,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA013,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA013,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA013,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ag9,,1930,EA013,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA013,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember. " +Ah10,,1920,EA013,9,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA013,9,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA013,3,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA013,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA013,9,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA013,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA013,9,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA013,9,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA013,9,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA013,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah2,,1920,EA013,9,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA013,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah21,,1920,EA013,9,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah22,,1900,EA013,9,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah23,,1920,EA013,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah24,,1920,EA013,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA013,9,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA013,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah27,,1920,EA013,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA013,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA013,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah3,Tar of Benue Province,1920,EA013,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah30,,1920,EA013,9,,meek1931b,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah31,,1910,EA013,9,,haughton1912; meek1931b,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah32,,1920,EA013,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA013,9,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA013,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA013,9,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA013,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA013,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah38,,1930,EA013,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA013,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA013,9,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah5,,1930,EA013,9,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah6,,1920,EA013,9,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA013,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA013,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ah9,,1920,EA013,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA013,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA013,2,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA013,2,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA013,9,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA013,9,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA013,9,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA013,9,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA013,9,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA013,9,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA013,9,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA013,9,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA013,9,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA013,9,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA013,9,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA013,9,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA013,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA013,9,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA013,NA,,,, +Ai26,,1920,EA013,9,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ai27,,1890,EA013,9,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA013,9,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA013,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA013,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA013,9,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA013,9,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA013,9,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA013,9,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA013,9,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA013,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA013,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA013,9,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA013,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ai39,,1940,EA013,9,,nadel1947,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ai4,,1920,EA013,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ai40,,1940,EA013,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA013,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA013,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA013,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA013,9,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ai45,,1930,EA013,9,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA013,9,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA013,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA013,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA013,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA013,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA013,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA013,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA013,9,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA013,9,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA013,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA013,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA013,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA013,9,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA013,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA013,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA013,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA013,NA,,,, +Aj19,,1920,EA013,2,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA013,2,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA013,9,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA013,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,,EA013,NA,,,, +Aj23,,1950,EA013,2,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA013,9,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA013,2,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA013,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA013,9,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA013,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA013,3,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA013,3,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA013,2,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA013,9,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA013,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA013,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA013,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA013,2,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA013,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA013,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA013,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA013,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA013,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA013,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA013,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA013,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA013,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA013,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA013,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA013,9,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA013,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA013,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA013,9,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA013,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA013,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA013,9,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA013,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA013,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA013,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA013,9,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA013,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA013,9,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA013,9,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA013,9,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA013,2,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA013,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA013,9,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA013,9,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA013,9,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA013,9,"In the noble class; among serfs prevailing pattern is Patrilocal (EA012 code ""8""), with Uxorilocal as alternate (EA014 code ""9""), so this would be 'Husband to wife's group' (code ""3"")",munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA013,9,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA013,9,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA013,9,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA013,2,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA013,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA013,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA013,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA013,9,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA013,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA013,9,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA013,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA013,9,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA013,9,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA013,9,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA013,9,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,,EA013,NA,,,, +Cb12,,1920,EA013,9,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA013,9,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA013,9,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA013,9,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Cb16,,1920,EA013,9,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA013,9,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA013,9,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA013,2,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA013,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Cb20,,,EA013,NA,,,, +Cb21,,1930,EA013,9,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA013,9,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA013,9,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA013,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA013,9,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA013,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA013,9,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Cb28,,1920,EA013,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Cb29,,1920,EA013,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA013,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA013,9,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA013,9,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA013,9,,woodnd,EthnographicAtlas_1967_p78,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Cb7,,1920,EA013,9,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA013,9,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA013,2,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA013,9,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA013,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Cc11,,,EA013,NA,,,, +Cc12,,1944,EA013,9,Ultimate residence is unclear and may be avunculocal,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA013,9,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Cc14,,1880,EA013,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA013,NA,,,, +Cc16,,1930,EA013,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA013,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA013,9,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA013,9,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA013,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA013,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA013,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA013,2,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA013,9,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Cc6,,1910,EA013,9,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA013,9,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA013,NA,,,, +Cc9,Ahaggaren tribe,1920,EA013,3,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA013,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA013,9,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA013,9,Suggested rather than attested,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA013,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA013,9,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA013,9,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA013,9,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA013,9,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA013,9,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA013,9,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA013,9,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA013,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA013,9,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA013,9,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA013,2,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA013,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA013,9,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA013,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA013,9,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA013,9,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA013,9,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA013,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA013,2,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA013,9,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA013,9,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA013,3,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA013,9,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA013,2,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA013,3,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA013,1,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA013,2,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA013,9,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA013,1,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA013,1,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA013,9,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Cg2,,1100,EA013,2,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA013,2,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA013,3,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA013,9,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA013,2,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA013,1,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA013,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA013,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA013,2,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA013,9,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA013,2,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA013,9,,ember1954,EthnographicAtlas_1967_p82,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ch7,,1930,EA013,2,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA013,2,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA013,2,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA013,2,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA013,3,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA013,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA013,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA013,9,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA013,1,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA013,2,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA013,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA013,9,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA013,9,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA013,9,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA013,9,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA013,2,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA013,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA013,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA013,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA013,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA013,9,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA013,2,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA013,2,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA013,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA013,9,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA013,9,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA013,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA013,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA013,2,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA013,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA013,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA013,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA013,9,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA013,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA013,2,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA013,9,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA013,9,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA013,2,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA013,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA013,9,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA013,2,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA013,9,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA013,9,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA013,9,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA013,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA013,9,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA013,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA013,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA013,9,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA013,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA013,3,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA013,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA013,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA013,1,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA013,3,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA013,2,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA013,9,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA013,2,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA013,9,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA013,2,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA013,3,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA013,2,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA013,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA013,9,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA013,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA013,9,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA013,9,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA013,2,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA013,9,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA013,2,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA013,9,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA013,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA013,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA013,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA013,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA013,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA013,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA013,9,Uxorilocal only if wife has no brothers,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA013,2,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA013,2,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA013,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA013,9,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA013,9,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA013,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA013,9,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA013,9,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA013,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA013,9,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA013,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA013,9,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA013,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA013,9,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA013,9,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA013,9,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA013,9,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA013,9,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA013,3,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA013,9,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA013,9,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA013,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA013,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA013,9,Entry pertains to the Nayar; predominantly Matrilocal among the Mappilla and Virilocal or Neolocal among the Tiyyar,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA013,9,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA013,9,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA013,9,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA013,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA013,9,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA013,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA013,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA013,2,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA013,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA013,3,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA013,3,"But McLeod reports Ambilocal (code ""2"")",decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA013,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA013,9,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA013,1,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember. Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ei10,,1870,EA013,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA013,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA013,9,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA013,9,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA013,9,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA013,9,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA013,9,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA013,9,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA013,2,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA013,2,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA013,2,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA013,9,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA013,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA013,9,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA013,2,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA013,9,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA013,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA013,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA013,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA013,2,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA013,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA013,9,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA013,3,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA013,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA013,9,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA013,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA013,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA013,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA013,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA013,9,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA013,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ej6,of the Mergui Archipelago,1920,EA013,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA013,9,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA013,2,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA013,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA013,3,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA013,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA013,1,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA013,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA013,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA013,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA013,9,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA013,2,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA013,9,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA013,9,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ia2,,1950,EA013,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA013,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA013,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ia5,,1950,EA013,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA013,3,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA013,1,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA013,3,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA013,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA013,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA013,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA013,3,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA013,3,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA013,3,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA013,3,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA013,3,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA013,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,,,EA013,NA,,,, +Ic1,Borongloe,1940,EA013,9,,chabot1950,EthnographicAtlas_1967_p94,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA013,3,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA013,2,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA013,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA013,9,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA013,3,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA013,9,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA013,9,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA013,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA013,9,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA013,3,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA013,3,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA013,9,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA013,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA013,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA013,9,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA013,9,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA013,9,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA013,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA013,3,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA013,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA013,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA013,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA013,9,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Id8,,,EA013,NA,,,, +Id9,,1910,EA013,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA013,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA013,3,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA013,9,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA013,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA013,9,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA013,9,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA013,9,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA013,1,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA013,1,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA013,3,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA013,1,But normally patrilocal,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA013,9,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA013,9,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA013,9,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA013,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA013,9,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA013,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA013,9,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA013,9,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA013,9,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA013,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA013,2,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA013,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA013,1,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA013,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA013,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA013,9,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA013,1,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ie35,,1930,EA013,9,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA013,9,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA013,9,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA013,2,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA013,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA013,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA013,9,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA013,9,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA013,3,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA013,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA013,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA013,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember. " +If10,,1940,EA013,9,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA013,2,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA013,9,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA013,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA013,3,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA013,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA013,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA013,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA013,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA013,9,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA013,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA013,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +If6,Island,1910,EA013,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +If7,with special reference to the inhabitants of Onotoa,1940,EA013,3,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA013,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA013,3,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA013,3,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA013,9,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA013,3,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA013,3,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA013,9,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA013,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA013,9,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA013,9,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ig17,,1950,EA013,9,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA013,3,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA013,9,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ig2,Kiriwina Island,1910,EA013,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ig20,with special reference to the village of Longgu,1920,EA013,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ig21,with special reference to Boieng Island,1930,EA013,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA013,9,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA013,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA013,9,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA013,9,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA013,2,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA013,9,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA013,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA013,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA013,9,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA013,NA,,,, +Ih12,,1920,EA013,9,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA013,9,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA013,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA013,9,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA013,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA013,3,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA013,9,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA013,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ih7,,1910,EA013,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA013,3,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA013,2,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA013,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,,EA013,NA,,,, +Ii12,Pangai,1920,EA013,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember. " +Ii13,,1830,EA013,3,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA013,3,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA013,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA013,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA013,3,Residence rule inferred from data on inheritance,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA013,1,Virilocal for part of the year in families possessing coconut groves in the outer islands,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to codes for post-marital residence (Col 16), not Col 19 as stated in Gray (1999)" +Ii6,with special reference to Atafu,1900,EA013,1,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA013,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA013,3,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA013,3,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA013,3,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA013,3,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA013,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA013,2,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA013,3,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA013,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ij6,,1800,EA013,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA013,3,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA013,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA013,3,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA013,1,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA013,9,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA013,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA013,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA013,9,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA013,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Na15,,1860,EA013,9,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA013,3,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA013,3,"Entry follows Helm; Honigmann reports prevailing pattern as Uxorilocal (EA012 would be code ""9"") with Virilocal as alternate (this variable would be code ""10""), so this would be 'Wife to husband's group' (code ""1"")",helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA013,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA013,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA013,3,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA013,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA013,3,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA013,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA013,3,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA013,3,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA013,2,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA013,2,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA013,9,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA013,9,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA013,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA013,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA013,1,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA013,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA013,3,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA013,3,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA013,3,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA013,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA013,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA013,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA013,3,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA013,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA013,NA,,,, +Na41,Mainland division,1700,EA013,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA013,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA013,3,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA013,3,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA013,3,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA013,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA013,2,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA013,3,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA013,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA013,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA013,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA013,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA013,3,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA013,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA013,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA013,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA013,3,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA013,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA013,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA013,9,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA013,9,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA013,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA013,3,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA013,3,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA013,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA013,3,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA013,9,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA013,3,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA013,3,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA013,3,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA013,3,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA013,3,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA013,3,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA013,9,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA013,2,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA013,3,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA013,9,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA013,3,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA013,3,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA013,3,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA013,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA013,3,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA013,9,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA013,3,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA013,9,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA013,3,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA013,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA013,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p102,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Nb9,"Central group, lower B.C. River",1880,EA013,3,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA013,9,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA013,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA013,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA013,3,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA013,3,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA013,3,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA013,9,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA013,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA013,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA013,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA013,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA013,3,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA013,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,,EA013,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA013,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA013,3,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA013,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA013,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA013,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA013,9,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA013,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA013,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA013,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA013,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA013,3,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA013,3,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA013,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA013,9,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA013,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA013,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA013,3,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA013,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA013,3,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA013,3,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA013,3,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA013,3,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA013,9,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA013,3,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA013,3,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA013,9,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA013,9,,clineetal1938,EthnographicAtlas_1967_p110,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Nd16,,1870,EA013,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA013,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA013,3,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA013,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA013,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA013,3,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA013,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA013,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA013,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA013,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA013,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA013,9,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA013,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA013,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA013,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA013,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA013,3,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA013,2,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA013,2,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA013,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA013,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA013,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA013,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA013,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA013,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA013,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA013,9,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA013,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA013,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA013,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA013,1,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA013,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA013,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA013,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA013,3,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA013,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA013,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA013,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,,EA013,NA,,,, +Nd51,,1860,EA013,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA013,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA013,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA013,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA013,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA013,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA013,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA013,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA013,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA013,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Nd60,,1860,EA013,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA013,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA013,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA013,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA013,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA013,3,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA013,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p110,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Nd67,,1870,EA013,9,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA013,3,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA013,3,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA013,3,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA013,3,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA013,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA013,3,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA013,3,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA013,2,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,,EA013,NA,,,, +Ne15,Hidatsa Village,1860,EA013,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA013,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA013,3,"Entry follows Richardson; Mooney reports prevailing pattern as Uxorilocal (EA012 would be code ""9"") with Virilocal as alternate (this variable would be code ""10""), so this would be 'Wife to husband's group' (code ""1"")",lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA013,2,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA013,2,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA013,1,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA013,3,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA013,NA,,,, +Ne3,Comanche Tribe,1870,EA013,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA013,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA013,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA013,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA013,2,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA013,3,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA013,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA013,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA013,3,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA013,3,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA013,9,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA013,9,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA013,2,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA013,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA013,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA013,2,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA013,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA013,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA013,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA013,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA013,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA013,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA013,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA013,3,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA013,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA013,9,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA013,9,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA013,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA013,9,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA013,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA013,9,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA013,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA013,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA013,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA013,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA013,9,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA013,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA013,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA013,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA013,9,,gifford1940; white1942,EthnographicAtlas_1967_p114,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Nh13,,1920,EA013,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Nh14,,1920,EA013,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA013,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA013,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA013,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA013,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA013,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA013,9,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA013,9,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA013,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA013,3,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA013,9,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA013,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA013,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA013,9,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA013,9,,white1935,Ethnology_Vol7_No1_Jan_1968,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Nh3,,1930,EA013,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA013,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA013,9,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA013,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA013,2,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA013,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA013,9,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA013,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Ni2,,1930,EA013,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA013,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA013,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA013,1,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA013,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA013,9,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA013,9,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,,EA013,NA,,,, +Nj1,Ojitlan,1940,EA013,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA013,2,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA013,9,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,,EA013,NA,,,, +Nj13,,1900,EA013,9,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA013,9,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA013,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA013,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA013,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA013,9,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA013,3,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA013,9,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA013,9,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA013,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA013,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA013,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA013,9,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA013,9,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA013,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA013,9,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA013,9,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA013,1,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA013,2,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA013,9,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA013,9,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA013,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA013,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA013,2,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA013,4,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA013,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA013,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA013,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA013,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA013,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA013,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA013,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Sb6,Goajiro Tribe,1940,EA013,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA013,2,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA013,9,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA013,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA013,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA013,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA013,2,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA013,2,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA013,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA013,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA013,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA013,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA013,9,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA013,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Sc2,,1950,EA013,1,,leedsnd,EthnographicAtlas_1967_p118,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Sc3,Barama River,1930,EA013,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Sc4,with special reference to the non-agricultural groups,1950,EA013,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA013,9,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA013,3,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA013,1,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA013,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA013,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA013,1,But men sleep apart from their wives in a men's house,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA013,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA013,3,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA013,9,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA013,2,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA013,9,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA013,9,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA013,9,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA013,2,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA013,9,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA013,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA013,9,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA013,9,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA013,3,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA013,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA013,9,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA013,3,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA013,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA013,9,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA013,2,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA013,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA013,2,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA013,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA013,3,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA013,3,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA013,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA013,9,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA013,3,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA013,9,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA013,9,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA013,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA013,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA013,2,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people""",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA013,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA013,9,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence. Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA013,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA013,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Sh3,Those in contact with mission,1800,EA013,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA013,9,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA013,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA013,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA013,2,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA013,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA013,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA013,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA013,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA013,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA013,2,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA013,3,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA013,9,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA013,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA013,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA013,9,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA013,NA,,,, +Sj1,,1950,EA013,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA013,2,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA013,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA013,9,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA013,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA013,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,,,EA013,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA013,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA013,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA013,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA013,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA013,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA013,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA013,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +ch15,with special reference to those of the Boklinskij Uezd,1895,EA013,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA013,3,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA013,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA013,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA013,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA013,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA013,9,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA013,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA013,3,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA013,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA013,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA013,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA013,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA013,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA013,3,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA013,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +ec14,those of South-Eastern Chukotka,1880,EA013,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +ec15,Middle Northern Sos'va group,1880,EA013,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA013,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA013,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA013,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +ec19,Northern group,1890,EA013,3,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA013,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +ec21,Hor River group,1890,EA013,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004,"Note: recoded from Gray (1999), see comments in CodeDescriptions on classification of ""Avunculocal"" residence." +Aa1,Nyai Nyae region,1950,EA014,11,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA014,11,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA014,11,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA014,9,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA014,9,"Note that Turnbull reports Ambilocal (code would be ""2"")",deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA014,11,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA014,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA014,11,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA014,11,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA014,1,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA014,11,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA014,11,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA014,11,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA014,11,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA014,11,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA014,11,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA014,11,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA014,11,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA014,9,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA014,6,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA014,6,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA014,11,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA014,11,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA014,11,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA014,11,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA014,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA014,11,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA014,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA014,11,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA014,11,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA014,11,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA014,11,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA014,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA014,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA014,10,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA014,11,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA014,10,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA014,11,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA014,10,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA014,11,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA014,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA014,11,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA014,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA014,10,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA014,11,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA014,11,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA014,10,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA014,6,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA014,10,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA014,10,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA014,10,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA014,11,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA014,11,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA014,10,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA014,10,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA014,6,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA014,11,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA014,10,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA014,6,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA014,6,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA014,9,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA014,11,"Formerly, alternate pattern was reported as 'Uxorilocal' (code ""9"")",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA014,11,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA014,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA014,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA014,11,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA014,4,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA014,11,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA014,11,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA014,11,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA014,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA014,10,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA014,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA014,11,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA014,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA014,9,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA014,11,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA014,9,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA014,11,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA014,11,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA014,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA014,11,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA014,11,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA014,6,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA014,11,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA014,11,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA014,11,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA014,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA014,11,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA014,1,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA014,11,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA014,6,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA014,11,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA014,11,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA014,11,At least initially,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA014,10,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA014,11,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA014,6,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA014,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA014,11,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA014,11,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA014,11,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA014,11,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA014,11,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA014,11,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA014,9,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA014,11,Inferential from distributional evidence,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA014,11,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA014,11,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA014,11,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA014,11,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA014,11,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA014,6,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA014,11,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA014,6,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA014,11,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA014,11,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA014,11,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA014,11,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA014,11,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA014,4,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA014,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA014,11,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA014,10,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA014,6,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA014,6,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA014,1,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA014,11,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA014,11,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA014,11,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA014,11,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA014,11,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA014,11,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA014,11,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA014,11,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA014,11,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA014,11,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA014,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA014,1,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA014,11,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA014,11,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA014,1,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA014,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA014,11,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA014,11,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA014,11,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA014,11,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA014,11,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA014,11,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA014,11,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA014,11,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA014,11,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA014,11,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA014,11,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA014,11,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA014,11,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA014,11,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA014,11,The relative incidence of avunculocal and virilocal residence is unclear,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA014,11,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA014,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA014,11,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA014,11,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA014,11,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA014,11,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA014,11,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA014,11,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA014,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA014,11,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA014,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA014,11,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA014,11,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA014,11,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA014,11,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA014,11,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA014,11,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA014,10,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA014,11,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA014,6,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA014,11,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA014,11,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA014,11,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA014,11,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA014,11,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA014,6,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA014,11,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA014,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA014,11,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA014,11,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA014,NA,"Mix of Avunculocal (code ""1""), Nonestablishment of a common household (code ""7""), and Virilocal (code ""10"") with relative incidence unspecified",field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA014,11,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA014,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA014,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA014,11,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA014,11,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA014,11,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA014,11,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA014,11,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA014,11,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA014,1,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA014,6,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA014,11,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA014,11,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA014,11,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA014,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA014,11,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA014,11,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA014,11,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA014,10,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA014,11,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA014,11,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA014,11,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA014,11,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA014,11,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA014,11,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA014,11,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA014,11,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA014,1,But a married woman commonly remains in her natal household instead of joining her husband,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA014,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA014,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA014,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA014,1,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA014,6,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA014,8,But most married women continue to reside in their natal household,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA014,10,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA014,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA014,11,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA014,11,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA014,11,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA014,11,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA014,3,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA014,11,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA014,11,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA014,11,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA014,11,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA014,11,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA014,9,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA014,1,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA014,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA014,11,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA014,11,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA014,11,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA014,11,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA014,10,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA014,11,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA014,11,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA014,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA014,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA014,11,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA014,11,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA014,11,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA014,11,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA014,11,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA014,11,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA014,11,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA014,11,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA014,11,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA014,1,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA014,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA014,11,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA014,11,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA014,11,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA014,11,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA014,6,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA014,11,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA014,11,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA014,11,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA014,11,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA014,11,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA014,11,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA014,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA014,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA014,11,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA014,1,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA014,11,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA014,11,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA014,11,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA014,6,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA014,11,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA014,11,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA014,11,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA014,1,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA014,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA014,6,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA014,11,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA014,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA014,11,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA014,11,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA014,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA014,11,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA014,11,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA014,11,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA014,11,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA014,11,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA014,11,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA014,11,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA014,10,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA014,11,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA014,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA014,11,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA014,11,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA014,9,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA014,11,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA014,11,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA014,11,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA014,11,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA014,11,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA014,11,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA014,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA014,11,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA014,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA014,1,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA014,1,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA014,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA014,11,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA014,11,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA014,10,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA014,11,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA014,11,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA014,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA014,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA014,10,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA014,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA014,11,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA014,11,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA014,11,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA014,11,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA014,11,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA014,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA014,11,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA014,11,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA014,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA014,1,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA014,11,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA014,11,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA014,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA014,11,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA014,11,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA014,6,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA014,6,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA014,11,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA014,11,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA014,11,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA014,11,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA014,11,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA014,11,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA014,11,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA014,11,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA014,11,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA014,11,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA014,11,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA014,11,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA014,11,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA014,11,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA014,NA,,,, +Ai26,,1920,EA014,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA014,11,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA014,11,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA014,11,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA014,6,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA014,11,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA014,11,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA014,11,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA014,11,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA014,11,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA014,11,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA014,11,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA014,11,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA014,10,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA014,10,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA014,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA014,11,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA014,6,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA014,11,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA014,11,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA014,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA014,11,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA014,11,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA014,11,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA014,11,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA014,11,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA014,11,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA014,6,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA014,11,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA014,11,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA014,11,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA014,11,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA014,11,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA014,11,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA014,11,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA014,11,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA014,11,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA014,11,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA014,NA,,,, +Aj19,,1920,EA014,6,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA014,6,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA014,11,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA014,11,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,,EA014,NA,,,, +Aj23,,1950,EA014,6,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA014,11,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA014,6,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA014,11,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA014,11,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA014,11,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA014,9,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA014,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA014,6,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA014,11,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA014,11,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA014,6,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA014,6,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA014,6,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA014,6,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA014,11,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA014,8,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA014,11,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA014,11,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA014,11,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA014,11,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA014,11,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA014,11,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA014,11,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA014,11,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA014,11,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA014,11,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA014,11,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA014,11,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA014,11,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA014,11,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA014,11,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA014,11,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA014,11,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA014,11,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA014,11,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA014,11,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA014,11,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA014,11,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA014,11,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA014,6,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA014,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA014,11,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA014,11,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA014,11,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA014,11,"In the noble class; among serfs prevailing pattern is Patrilocal (EA012 code ""8""), with Uxorilocal as alternate (this variable would be code ""9"")",munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA014,11,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA014,11,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA014,11,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA014,6,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA014,11,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA014,11,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA014,11,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA014,11,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA014,11,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA014,11,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA014,9,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA014,11,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA014,11,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA014,11,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA014,11,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,,EA014,NA,,,, +Cb12,,1920,EA014,11,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA014,11,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA014,11,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA014,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA014,11,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA014,11,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA014,11,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA014,6,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA014,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,,EA014,NA,,,, +Cb21,,1930,EA014,11,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA014,11,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA014,11,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA014,11,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA014,11,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA014,11,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA014,1,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA014,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA014,11,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA014,6,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA014,11,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA014,11,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA014,1,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA014,11,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA014,11,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA014,6,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA014,11,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA014,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,,EA014,NA,,,, +Cc12,,1944,EA014,11,Ultimate residence is unclear and may be avunculocal,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA014,10,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA014,11,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA014,NA,,,, +Cc16,,1930,EA014,11,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA014,11,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA014,11,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA014,11,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA014,11,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA014,11,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA014,11,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA014,6,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA014,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA014,11,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA014,11,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA014,NA,,,, +Cc9,Ahaggaren tribe,1920,EA014,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA014,11,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA014,11,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA014,11,Suggested rather than attested,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA014,11,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA014,11,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA014,11,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA014,11,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA014,11,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA014,11,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA014,11,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA014,11,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA014,11,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA014,11,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA014,11,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA014,6,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA014,11,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA014,11,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA014,10,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA014,11,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA014,11,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA014,11,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA014,11,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA014,6,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA014,11,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA014,6,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA014,9,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA014,11,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA014,6,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA014,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA014,10,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA014,6,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA014,11,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA014,10,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA014,10,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA014,6,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA014,6,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA014,6,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA014,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA014,11,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA014,6,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA014,8,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA014,11,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA014,11,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA014,6,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA014,11,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA014,6,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA014,6,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA014,6,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA014,6,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA014,6,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA014,6,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA014,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA014,11,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA014,11,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA014,11,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA014,10,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA014,6,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA014,11,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA014,11,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA014,11,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA014,11,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA014,11,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA014,6,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA014,11,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA014,11,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA014,11,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA014,11,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA014,11,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA014,6,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA014,6,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA014,11,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA014,11,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA014,11,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA014,11,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA014,11,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA014,6,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA014,11,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA014,11,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA014,11,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA014,11,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA014,11,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA014,6,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA014,11,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA014,11,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA014,6,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA014,11,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA014,11,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA014,6,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA014,11,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA014,11,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA014,11,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA014,11,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA014,11,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA014,11,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA014,11,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA014,11,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA014,11,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA014,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA014,11,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA014,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA014,10,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA014,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA014,6,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA014,11,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA014,6,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA014,11,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA014,6,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA014,9,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA014,6,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA014,8,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA014,11,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA014,11,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA014,11,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA014,11,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA014,6,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA014,11,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA014,6,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA014,11,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA014,11,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA014,6,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA014,11,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA014,11,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA014,11,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA014,11,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA014,11,Uxorilocal only if wife has no brothers,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA014,6,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA014,6,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA014,11,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA014,11,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA014,11,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA014,11,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA014,11,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA014,11,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA014,11,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA014,11,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA014,11,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA014,11,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA014,11,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA014,11,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA014,11,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA014,11,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA014,11,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA014,11,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA014,9,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA014,11,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA014,11,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA014,11,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA014,11,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA014,11,Entry pertains to the Nayar; predominantly Matrilocal among the Mappilla and Virilocal or Neolocal among the Tiyyar,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA014,11,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA014,11,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA014,11,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA014,11,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA014,11,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA014,11,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA014,11,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA014,6,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA014,10,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA014,9,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA014,9,"But McLeod reports Ambilocal (code ""2"")",decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA014,11,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA014,11,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA014,1,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA014,6,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA014,11,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA014,11,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA014,11,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA014,11,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA014,11,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA014,11,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA014,11,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA014,6,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA014,6,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA014,6,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA014,11,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA014,10,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA014,11,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA014,6,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA014,11,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA014,11,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA014,11,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA014,11,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA014,6,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA014,11,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA014,11,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA014,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA014,11,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA014,11,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA014,11,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA014,11,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA014,11,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA014,11,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA014,11,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA014,2,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA014,10,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA014,11,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA014,6,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA014,11,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA014,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA014,11,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA014,10,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA014,11,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA014,11,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA014,11,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA014,11,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA014,6,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA014,11,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA014,2,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA014,11,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA014,11,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA014,6,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA014,10,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA014,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA014,10,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA014,9,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA014,11,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA014,11,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA014,11,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA014,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA014,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA014,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA014,5,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA014,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA014,11,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,,,EA014,NA,,,, +Ic1,Borongloe,1940,EA014,6,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA014,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA014,6,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA014,11,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA014,11,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA014,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA014,11,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA014,11,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA014,11,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA014,11,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA014,9,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA014,9,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA014,11,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA014,11,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA014,11,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA014,11,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA014,11,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA014,11,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA014,11,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA014,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA014,11,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA014,11,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA014,11,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA014,1,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA014,NA,,,, +Id9,,1910,EA014,11,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA014,11,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA014,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA014,11,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA014,11,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA014,11,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA014,11,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA014,11,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA014,8,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA014,8,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA014,9,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA014,8,But normally patrilocal,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA014,11,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA014,11,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA014,11,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA014,11,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA014,11,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA014,11,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA014,11,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA014,11,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA014,11,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA014,11,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA014,6,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA014,11,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA014,10,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA014,11,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA014,11,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA014,11,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA014,1,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA014,11,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA014,11,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA014,11,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA014,6,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA014,11,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA014,11,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA014,11,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA014,11,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA014,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA014,11,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA014,11,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA014,10,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA014,11,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA014,6,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA014,11,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA014,11,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA014,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA014,11,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA014,10,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA014,11,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA014,10,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA014,11,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA014,11,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA014,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA014,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA014,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA014,11,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA014,9,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA014,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA014,11,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA014,9,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA014,9,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA014,11,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA014,11,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA014,11,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA014,1,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA014,11,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA014,9,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA014,1,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA014,10,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA014,10,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA014,11,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA014,11,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA014,11,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA014,11,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA014,11,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA014,6,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA014,11,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA014,6,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA014,11,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA014,11,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA014,NA,,,, +Ih12,,1920,EA014,11,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA014,11,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA014,11,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA014,11,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA014,11,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA014,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA014,11,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA014,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA014,11,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA014,9,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA014,6,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA014,11,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,,EA014,NA,,,, +Ii12,Pangai,1920,EA014,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA014,9,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA014,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA014,11,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA014,11,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA014,9,Residence rule inferred from data on inheritance,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA014,10,Virilocal for part of the year in families possessing coconut groves in the outer islands,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to codes for post-marital residence (Col 16), not Col 19 as stated in Gray (1999)" +Ii6,with special reference to Atafu,1900,EA014,10,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA014,11,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA014,9,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA014,9,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA014,9,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA014,9,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA014,11,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA014,6,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA014,9,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA014,6,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA014,11,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA014,9,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA014,11,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA014,9,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA014,10,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA014,11,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA014,11,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA014,11,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA014,11,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA014,6,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA014,11,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA014,9,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA014,9,"Entry follows Helm; Honigmann reports prevailing pattern as Uxorilocal (EA012 would be code ""9"") with Virilocal as alternate (this variable would be code ""10"")",helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA014,10,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA014,11,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA014,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA014,11,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA014,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA014,11,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA014,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA014,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA014,6,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA014,2,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA014,11,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA014,11,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA014,10,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA014,11,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA014,10,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA014,11,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA014,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA014,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA014,9,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA014,11,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA014,11,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA014,11,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA014,9,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA014,11,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA014,NA,,,, +Na41,Mainland division,1700,EA014,11,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA014,11,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA014,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA014,9,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA014,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA014,11,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA014,6,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA014,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA014,10,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA014,11,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA014,11,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA014,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA014,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA014,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA014,11,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA014,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA014,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA014,11,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA014,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA014,11,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA014,11,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA014,11,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA014,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA014,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA014,11,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA014,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA014,11,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA014,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA014,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA014,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA014,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA014,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA014,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA014,11,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA014,6,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA014,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA014,11,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA014,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA014,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA014,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA014,11,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA014,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA014,11,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA014,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA014,11,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA014,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA014,11,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA014,10,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA014,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA014,11,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA014,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA014,11,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA014,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA014,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA014,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA014,11,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA014,11,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA014,11,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA014,11,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA014,11,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA014,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA014,11,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,,EA014,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA014,11,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA014,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA014,11,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA014,11,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA014,11,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA014,11,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA014,11,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA014,11,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA014,11,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA014,11,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA014,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA014,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA014,11,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA014,11,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA014,11,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA014,11,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA014,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA014,6,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA014,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA014,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA014,9,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA014,9,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA014,11,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA014,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA014,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA014,11,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA014,6,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA014,11,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA014,10,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA014,9,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA014,11,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA014,10,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA014,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA014,11,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA014,10,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA014,11,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA014,11,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA014,10,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA014,11,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA014,11,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA014,11,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA014,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA014,11,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA014,9,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA014,6,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA014,6,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA014,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA014,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA014,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA014,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA014,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA014,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA014,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA014,11,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA014,11,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA014,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA014,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA014,10,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA014,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA014,11,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA014,11,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA014,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA014,10,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA014,11,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA014,11,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,,EA014,NA,,,, +Nd51,,1860,EA014,11,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA014,11,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA014,11,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA014,11,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA014,11,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA014,10,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA014,10,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA014,10,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA014,11,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA014,6,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA014,11,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA014,11,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA014,11,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA014,10,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA014,11,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA014,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA014,6,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA014,11,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA014,9,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA014,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA014,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA014,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA014,11,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA014,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA014,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA014,6,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,,EA014,NA,,,, +Ne15,Hidatsa Village,1860,EA014,11,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA014,11,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA014,9,"Entry follows Richardson; Mooney reports prevailing pattern as Uxorilocal (EA012 would be code ""9"") with Virilocal as alternate (this variable would be code ""10"")",lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA014,6,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA014,6,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA014,10,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA014,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA014,NA,,,, +Ne3,Comanche Tribe,1870,EA014,11,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA014,11,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA014,10,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA014,10,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA014,6,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA014,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA014,11,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA014,11,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA014,9,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA014,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA014,11,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA014,11,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA014,6,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA014,6,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA014,11,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA014,6,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA014,10,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA014,11,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA014,11,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA014,10,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA014,11,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA014,11,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA014,11,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA014,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA014,6,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA014,11,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA014,11,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA014,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA014,11,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA014,11,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA014,11,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA014,11,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA014,10,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA014,11,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA014,11,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA014,11,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA014,10,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA014,11,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA014,11,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA014,6,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA014,6,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA014,10,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA014,11,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA014,11,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA014,10,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA014,11,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA014,11,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA014,11,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA014,11,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA014,11,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA014,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA014,11,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA014,11,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA014,11,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA014,11,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA014,6,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA014,10,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA014,11,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA014,11,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA014,11,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA014,6,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA014,11,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA014,11,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA014,2,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA014,11,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA014,11,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA014,11,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA014,10,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA014,11,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA014,11,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA014,11,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,,EA014,NA,,,, +Nj1,Ojitlan,1940,EA014,11,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA014,6,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA014,11,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,,EA014,NA,,,, +Nj13,,1900,EA014,11,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA014,11,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA014,11,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA014,11,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA014,11,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA014,11,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA014,9,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA014,11,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA014,11,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA014,11,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA014,11,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA014,11,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA014,11,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA014,11,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA014,11,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA014,11,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA014,11,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA014,8,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA014,6,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA014,11,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA014,11,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA014,10,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA014,10,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA014,6,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA014,7,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA014,11,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA014,6,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA014,11,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA014,11,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA014,10,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA014,10,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA014,6,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA014,11,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA014,6,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA014,11,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA014,11,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA014,11,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA014,11,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA014,6,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA014,6,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA014,10,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA014,11,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA014,11,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA014,11,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA014,11,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA014,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA014,1,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA014,6,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA014,11,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA014,11,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA014,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA014,10,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA014,11,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA014,11,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA014,10,But men sleep apart from their wives in a men's house,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA014,11,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA014,9,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA014,11,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA014,6,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA014,11,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA014,11,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA014,11,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA014,6,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA014,11,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA014,11,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA014,11,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA014,11,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA014,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA014,11,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA014,11,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA014,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA014,11,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA014,2,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA014,6,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA014,11,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA014,6,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA014,11,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA014,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA014,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA014,11,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA014,11,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA014,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA014,11,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA014,11,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA014,11,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA014,6,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA014,6,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people""",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA014,11,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA014,6,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA014,10,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA014,6,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA014,11,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA014,11,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA014,11,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA014,10,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA014,6,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA014,11,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA014,10,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA014,11,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA014,11,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA014,11,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA014,6,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA014,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA014,11,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA014,11,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA014,10,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA014,11,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA014,NA,,,, +Sj1,,1950,EA014,6,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA014,6,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA014,11,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA014,11,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA014,11,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA014,11,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,,,EA014,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA014,11,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA014,11,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA014,10,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA014,11,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA014,8,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA014,11,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA014,8,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA014,11,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA014,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA014,11,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA014,11,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA014,11,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA014,11,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA014,11,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA014,11,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA014,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA014,11,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA014,11,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA014,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA014,11,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA014,11,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA014,5,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA014,3,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA014,3,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA014,11,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA014,11,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA014,11,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA014,3,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA014,5,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA014,3,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA014,3,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA015,4,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA015,6,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA015,6,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA015,4,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA015,4,Entry follows Schebesta; Czekanowski denies clans,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA015,6,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA015,4,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,,EA015,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA015,3,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA015,4,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA015,4,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA015,3,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA015,6,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA015,2,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA015,6,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA015,6,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA015,6,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA015,6,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA015,6,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,,,EA015,NA,,,, +Ab2,,1880,EA015,6,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,,EA015,NA,,,, +Ab21a,,1930,EA015,6,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA015,NA,,,, +Ab22,,1920,EA015,6,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA015,3,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA015,6,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA015,6,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA015,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA015,6,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA015,3,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA015,3,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA015,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA015,2,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA015,6,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA015,6,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA015,2,One lineage is predominant in each community,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA015,6,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA015,6,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA015,6,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA015,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA015,6,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA015,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA015,6,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA015,6,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA015,6,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA015,4,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA015,3,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA015,6,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA015,4,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA015,3,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA015,6,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA015,4,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA015,4,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA015,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA015,3,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA015,3,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA015,4,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA015,6,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA015,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,,EA015,NA,,,, +Ac36,,1920,EA015,4,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA015,3,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA015,3,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA015,4,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA015,2,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA015,4,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA015,2,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA015,2,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA015,NA,,,, +Ac5,,1920,EA015,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA015,6,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA015,2,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA015,6,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA015,3,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA015,3,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA015,6,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA015,3,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA015,6,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA015,6,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA015,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA015,6,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA015,4,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA015,4,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,,EA015,NA,,,, +Ad19,,,EA015,NA,,,, +Ad2,,1950,EA015,2,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA015,4,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,,EA015,NA,,,, +Ad22,,1950,EA015,3,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,,EA015,NA,,,, +Ad24,,1910,EA015,6,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,,EA015,NA,,,, +Ad26,,1910,EA015,6,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA015,2,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA015,NA,,,, +Ad29,,,EA015,NA,,,, +Ad3,,1910,EA015,6,"Lineage localization is, however, uncommon today",abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA015,2,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA015,2,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA015,4,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA015,3,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA015,2,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA015,6,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,,EA015,NA,,,, +Ad37,,1940,EA015,6,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,,EA015,NA,,,, +Ad39,,1950,EA015,2,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA015,6,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,,EA015,NA,,,, +Ad41,,1930,EA015,6,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA015,4,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,,EA015,NA,,,, +Ad44,,1920,EA015,6,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,,EA015,NA,,,, +Ad46,,1950,EA015,3,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,,EA015,NA,,,, +Ad48,,1950,EA015,3,"Formerly probably clans (code ""6"")",taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA015,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA015,3,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA015,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA015,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA015,3,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA015,4,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA015,6,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA015,6,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA015,6,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA015,2,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA015,6,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA015,6,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA015,6,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA015,6,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA015,6,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA015,6,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA015,3,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA015,3,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA015,NA,,,, +Ae2,,1950,EA015,2,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA015,3,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA015,6,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA015,3,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA015,6,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA015,6,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA015,6,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,,EA015,NA,,,, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA015,6,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA015,3,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA015,6,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA015,6,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA015,6,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA015,6,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA015,6,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA015,6,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA015,6,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA015,6,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA015,6,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA015,6,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA015,4,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA015,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA015,6,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA015,6,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA015,2,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA015,6,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA015,6,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA015,2,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA015,2,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA015,2,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA015,6,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA015,6,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA015,2,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA015,2,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA015,2,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA015,6,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA015,2,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA015,6,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA015,2,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA015,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA015,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA015,2,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,,EA015,NA,,,, +Ae59,with special reference to the Ngie subtribe,1950,EA015,6,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA015,3,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA015,6,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA015,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA015,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA015,2,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA015,2,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA015,6,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA015,2,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA015,2,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,,EA015,NA,,,, +Af15,,1920,EA015,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA015,6,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA015,2,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA015,2,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA015,2,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA015,5,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA015,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,,,EA015,NA,,,, +Af22,,1940,EA015,2,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA015,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA015,2,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA015,2,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA015,2,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA015,3,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA015,2,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA015,3,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA015,3,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,,EA015,NA,,,, +Af31,with special reference to the Lafia,1960,EA015,3,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA015,2,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA015,2,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA015,2,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA015,2,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA015,2,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA015,2,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA015,3,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA015,2,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA015,2,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,,,EA015,NA,,,, +Af41,,,EA015,NA,,,, +Af42,,1900,EA015,3,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA015,2,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA015,2,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,,EA015,NA,,,, +Af46,,1900,EA015,6,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA015,6,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA015,NA,,,, +Af49,,1940,EA015,6,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA015,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,,EA015,NA,,,, +Af51,,1920,EA015,2,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA015,6,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA015,6,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA015,2,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA015,2,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA015,2,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA015,6,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,,EA015,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA015,2,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA015,6,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA015,2,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA015,2,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA015,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA015,6,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA015,3,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA015,6,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA015,6,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA015,2,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,,EA015,NA,,,, +Ag16,,,EA015,NA,,,, +Ag17,,,EA015,NA,,,, +Ag18,,,EA015,NA,,,, +Ag19,,,EA015,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA015,2,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,,EA015,NA,,,, +Ag21,,1910,EA015,3,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA015,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,,EA015,NA,,,, +Ag24,,,EA015,NA,,,, +Ag25,,1900,EA015,3,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA015,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA015,2,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA015,2,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA015,2,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA015,5,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA015,2,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA015,2,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA015,2,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,,EA015,NA,,,, +Ag34,,,EA015,NA,,,, +Ag35,,1910,EA015,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA015,6,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA015,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA015,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA015,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA015,6,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA015,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA015,6,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA015,6,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA015,2,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA015,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA015,2,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA015,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA015,2,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA015,6,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA015,2,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA015,6,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,,EA015,NA,,,, +Ag51,,1940,EA015,6,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA015,2,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA015,6,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA015,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA015,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,,EA015,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA015,3,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA015,3,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA015,6,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA015,5,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,,EA015,NA,,,, +Ah12,,1920,EA015,2,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,,,EA015,NA,,,, +Ah14,,1920,EA015,2,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA015,3,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,,EA015,NA,,,, +Ah17,,1930,EA015,2,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,,EA015,NA,,,, +Ah19,,1930,EA015,2,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA015,3,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA015,6,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA015,2,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA015,NA,,,, +Ah23,,,EA015,NA,,,, +Ah24,,1920,EA015,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA015,2,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA015,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA015,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,,,EA015,NA,,,, +Ah29,,,EA015,NA,,,, +Ah3,Tar of Benue Province,1920,EA015,6,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA015,2,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA015,2,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,,EA015,NA,,,, +Ah33,,1920,EA015,2,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,,,EA015,NA,,,, +Ah35,,,EA015,NA,,,, +Ah36,,1920,EA015,2,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA015,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA015,6,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA015,6,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA015,2,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA015,2,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA015,2,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA015,6,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA015,2,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA015,2,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA015,6,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA015,2,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA015,3,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA015,2,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,,EA015,NA,,,, +Ai14,,,EA015,NA,,,, +Ai15,,1900,EA015,2,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,,EA015,NA,,,, +Ai17,,1930,EA015,2,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA015,2,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA015,NA,,,, +Ai2,,1940,EA015,2,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA015,6,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,,EA015,NA,,,, +Ai22,,1890,EA015,6,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA015,6,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA015,6,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA015,6,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA015,6,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA015,6,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA015,2,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA015,4,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA015,3,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA015,6,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,,EA015,NA,,,, +Ai32,,1920,EA015,6,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA015,6,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA015,6,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA015,6,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA015,6,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA015,2,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA015,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA015,3,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA015,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA015,2,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA015,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA015,3,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA015,3,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA015,6,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,,EA015,NA,,,, +Ai46,,1930,EA015,6,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA015,6,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA015,6,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA015,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA015,6,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA015,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA015,6,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA015,2,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA015,3,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA015,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA015,2,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA015,6,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA015,6,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA015,6,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA015,6,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA015,6,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA015,NA,,,, +Aj19,,1920,EA015,3,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA015,3,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA015,3,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA015,3,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,,EA015,NA,,,, +Aj23,,1950,EA015,6,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,,EA015,NA,,,, +Aj25,,1920,EA015,3,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA015,3,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA015,6,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA015,4,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA015,6,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA015,6,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,,EA015,NA,,,, +Aj31,,,EA015,NA,,,, +Aj4,,1920,EA015,3,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA015,4,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA015,6,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA015,3,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA015,6,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA015,3,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA015,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA015,6,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,,EA015,NA,,,, +Ca12,,,EA015,NA,,,, +Ca13,with special reference to the eastern Macha,1950,EA015,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA015,4,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA015,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA015,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,,EA015,NA,,,, +Ca18,,,EA015,NA,,,, +Ca19,,1950,EA015,6,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA015,6,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,,EA015,NA,,,, +Ca21,,1950,EA015,6,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,,EA015,NA,,,, +Ca23,,,EA015,NA,,,, +Ca24,,,EA015,NA,,,, +Ca25,,,EA015,NA,,,, +Ca26,,,EA015,NA,,,, +Ca27,,1930,EA015,3,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,,EA015,NA,,,, +Ca29,,,EA015,NA,,,, +Ca3,,1950,EA015,3,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,,,EA015,NA,,,, +Ca31,,,EA015,NA,,,, +Ca32,,,EA015,NA,,,, +Ca33,,,EA015,NA,,,, +Ca34,,1920,EA015,3,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA015,3,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA015,3,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA015,4,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA015,3,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,,EA015,NA,,,, +Ca4,,,EA015,NA,,,, +Ca40,,,EA015,NA,,,, +Ca41,,,EA015,NA,,,, +Ca42,,1950,EA015,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA015,NA,,,, +Ca5,,1930,EA015,6,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA015,6,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA015,4,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA015,6,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,,EA015,NA,,,, +Cb1,,1940,EA015,3,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA015,6,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,,EA015,NA,,,, +Cb12,,1920,EA015,3,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA015,3,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,,EA015,NA,,,, +Cb15,with special reference to the Humr,1940,EA015,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA015,3,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA015,4,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA015,3,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA015,2,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA015,6,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA015,2,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA015,3,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA015,2,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,,EA015,NA,,,, +Cb24,Wodaabe of Niger,1950,EA015,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA015,3,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA015,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA015,2,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA015,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA015,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA015,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA015,3,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,,EA015,NA,,,, +Cb6,,1920,EA015,2,"Formerly 'segmented communities, no exogamy' (code ""2"")",woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA015,3,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA015,4,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA015,2,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA015,6,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA015,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA015,3,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,,EA015,NA,,,, +Cc13,,1920,EA015,3,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA015,4,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA015,2,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,,EA015,NA,,,, +Cc17,,1930,EA015,3,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA015,2,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,,EA015,NA,,,, +Cc2,Nomads of Tibesti,1950,EA015,4,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,,,EA015,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA015,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA015,2,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA015,3,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA015,NA,The band is a patriclan but is not exogamous,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA015,2,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA015,3,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA015,6,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA015,3,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,,EA015,NA,,,, +Cd11,,,EA015,NA,,,, +Cd12,,1870,EA015,2,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA015,3,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA015,3,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA015,3,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,,,EA015,NA,,,, +Cd17,,1920,EA015,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA015,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,,EA015,NA,,,, +Cd2,Town and environs of Silwa,1950,EA015,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,,EA015,NA,,,, +Cd21,,1930,EA015,2,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA015,6,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA015,2,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA015,2,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,,,EA015,NA,,,, +Cd7,with special reference to the Zemmur tribe,1910,EA015,3,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA015,3,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,,EA015,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA015,4,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA015,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA015,3,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA015,3,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA015,1,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA015,3,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA015,3,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA015,3,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA015,3,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA015,3,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA015,1,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA015,3,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA015,3,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA015,3,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA015,3,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA015,3,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA015,4,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA015,3,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA015,2,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA015,3,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA015,3,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA015,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA015,3,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA015,3,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA015,3,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA015,3,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA015,1,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA015,1,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA015,3,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA015,6,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA015,3,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA015,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA015,6,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA015,6,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA015,1,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA015,3,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA015,3,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971,"Corrected Gray 1999: v15 was coded as ""5""" +Ci6,,1880,EA015,6,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA015,6,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,,EA015,NA,,,, +Ci9,,1910,EA015,6,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA015,3,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA015,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA015,3,"The local clan, however, shows a tendency toward endogamy",ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA015,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,,,EA015,NA,,,, +Cj5,,1930,EA015,1,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA015,3,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA015,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA015,2,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,,EA015,NA,,,, +Ea1,,1950,EA015,1,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA015,6,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA015,NA,,,, +Ea12,,,EA015,NA,,,, +Ea13,Mohla Village,1950,EA015,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA015,3,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA015,3,But with a marked tendency toward local endogamy,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA015,2,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA015,3,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA015,1,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA015,1,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA015,6,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA015,3,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA015,6,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA015,2,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA015,3,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA015,6,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA015,NA,Freikin mentions localized clans,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA015,6,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA015,3,But with a tendency toward local exogamy,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,,,EA015,NA,,,, +Ec1,Sakhalin Island,1920,EA015,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA015,3,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,,EA015,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA015,6,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA015,3,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA015,4,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA015,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA015,4,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA015,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,,EA015,NA,,,, +Ec9,,,EA015,NA,,,, +Ed1,Kanghwa Island,1950,EA015,4,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA015,2,,yang1945,EthnographicAtlas_1967_p86, +Ed13,,,EA015,NA,,,, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA015,3,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA015,1,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA015,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA015,3,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA015,6,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA015,6,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA015,2,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA015,4,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA015,1,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA015,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA015,1,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA015,4,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA015,3,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA015,3,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA015,4,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA015,3,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA015,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA015,3,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,,EA015,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA015,3,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA015,4,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,,,EA015,NA,,,, +Ef11,Village and environs of Senapur,1945,EA015,4,But locally exogamous sibs for the Thakur caste,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA015,2,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968,"Corrected Gray 1999: v15 was coded as ""1""" +Ef3,,-800,EA015,2,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA015,6,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA015,4,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA015,4,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA015,3,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA015,3,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA015,5,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA015,4,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA015,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA015,2,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA015,6,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA015,3,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA015,3,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA015,3,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA015,6,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA015,6,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA015,5,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA015,3,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA015,6,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA015,4,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA015,6,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA015,3,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA015,3,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA015,3,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA015,5,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA015,6,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA015,3,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA015,3,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA015,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA015,6,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA015,6,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA015,3,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA015,6,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA015,3,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,,EA015,NA,,,, +Ei13,,1910,EA015,2,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA015,2,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA015,2,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA015,2,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,,EA015,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA015,1,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA015,3,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA015,2,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA015,6,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA015,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA015,3,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA015,2,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA015,3,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA015,3,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA015,2,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA015,3,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA015,2,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA015,2,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA015,3,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA015,2,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA015,6,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA015,3,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA015,NA,,,, +Ej16,Inas District,1958,EA015,6,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA015,2,The component long houses of a village are organized only in part on a kinship basis,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA015,4,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA015,2,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA015,3,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA015,3,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA015,3,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA015,3,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA015,3,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA015,3,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA015,2,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA015,1,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA015,3,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA015,3,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA015,3,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA015,4,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA015,3,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,,EA015,NA,,,, +Ia18,with special reference to the village of Manland in western Negros,1950,EA015,3,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA015,3,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA015,3,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA015,3,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA015,3,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA015,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA015,1,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA015,1,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA015,2,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA015,3,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA015,3,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA015,2,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA015,3,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA015,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA015,2,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA015,2,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,,,EA015,NA,,,, +Ib9,,,EA015,NA,,,, +Ic1,Borongloe,1940,EA015,2,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA015,4,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA015,2,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA015,3,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA015,6,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA015,4,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA015,2,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,,EA015,NA,,,, +Ic5,Bare'e subgroup,1910,EA015,3,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA015,3,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA015,2,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,,EA015,NA,,,, +Ic9,with special reference to eastern Sumba,1930,EA015,6,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA015,6,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA015,3,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA015,3,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA015,6,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA015,6,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA015,6,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA015,3,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA015,4,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA015,6,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA015,6,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA015,6,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,1830,EA015,4,,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA015,6,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA015,6,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA015,2,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA015,6,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA015,6,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA015,2,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA015,6,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA015,2,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA015,3,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA015,6,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA015,2,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA015,2,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA015,6,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA015,3,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA015,2,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA015,2,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA015,6,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA015,2,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA015,2,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA015,2,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA015,2,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA015,2,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA015,2,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA015,2,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA015,3,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA015,6,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA015,2,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA015,2,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,,EA015,NA,,,, +Ie35,,1930,EA015,2,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA015,3,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA015,3,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA015,3,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA015,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA015,5,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA015,6,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA015,2,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA015,6,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA015,2,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA015,2,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA015,2,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA015,2,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA015,3,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA015,2,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA015,3,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA015,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA015,2,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA015,2,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA015,4,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA015,2,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA015,2,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA015,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA015,3,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA015,2,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA015,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA015,3,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA015,1,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA015,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA015,2,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA015,3,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA015,2,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA015,2,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA015,3,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,,EA015,NA,,,, +Ig16,,,EA015,NA,,,, +Ig17,,1950,EA015,2,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA015,3,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA015,2,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA015,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA015,2,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA015,6,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA015,4,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA015,2,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA015,6,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA015,2,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA015,2,"Goodenough characterizes the local group as a ""nodal kindred,"" composed basically of sibling sets linked by consanguineal or affinal ties",chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA015,2,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA015,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA015,2,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA015,6,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA015,6,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA015,6,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA015,2,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA015,4,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA015,6,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA015,2,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA015,6,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA015,6,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA015,2,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA015,6,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA015,2,"Formerly clans (code ""6"")",quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA015,3,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA015,2,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,,EA015,NA,,,, +Ii12,Pangai,1920,EA015,2,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,,EA015,NA,,,, +Ii14,,1829,EA015,2,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA015,3,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA015,2,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA015,2,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA015,3,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to Col 16, not Col 19 as stated in Gray (1999)" +Ii6,with special reference to Atafu,1900,EA015,2,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA015,3,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,,EA015,NA,,,, +Ii9,,1840,EA015,2,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA015,4,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,,EA015,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA015,2,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA015,3,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,,EA015,NA,,,, +Ij5,,1900,EA015,3,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA015,2,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA015,3,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA015,3,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,,EA015,NA,,,, +Na1,,1930,EA015,3,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA015,3,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA015,2,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA015,3,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA015,3,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA015,3,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA015,3,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA015,3,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA015,3,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA015,3,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA015,3,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA015,3,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA015,3,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA015,4,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA015,3,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA015,3,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA015,3,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA015,3,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA015,4,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,,EA015,NA,,,, +Na29,,1850,EA015,1,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA015,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA015,3,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA015,3,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA015,3,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA015,3,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA015,6,"The ""co-residential group"" approximates a patri-clan",dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,,EA015,NA,,,, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA015,3,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA015,3,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA015,4,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA015,6,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA015,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA015,NA,,,, +Na41,Mainland division,1700,EA015,3,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,,,EA015,NA,,,, +Na43,,1920,EA015,3,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA015,3,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA015,3,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA015,3,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA015,3,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA015,3,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA015,3,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA015,3,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA015,6,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA015,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA015,4,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA015,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA015,4,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA015,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA015,4,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA015,4,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA015,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA015,4,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,,EA015,NA,,,, +Nb2,Twana Tribe,1850,EA015,4,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA015,4,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA015,4,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA015,6,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA015,3,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA015,4,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA015,4,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA015,4,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA015,4,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA015,4,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA015,4,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA015,4,The village tends to be a localized ramage,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA015,4,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA015,6,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA015,4,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA015,3,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA015,4,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA015,4,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA015,4,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA015,4,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA015,4,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA015,3,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA015,4,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA015,3,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA015,6,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA015,3,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA015,3,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA015,3,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA015,6,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA015,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA015,3,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA015,3,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA015,3,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA015,4,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA015,4,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA015,3,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA015,3,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA015,3,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA015,3,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA015,3,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA015,3,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA015,3,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA015,3,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA015,3,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA015,6,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA015,3,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,,EA015,NA,,,, +Nc27,,1860,EA015,3,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA015,3,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA015,6,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA015,2,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA015,6,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA015,6,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA015,6,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA015,6,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA015,6,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA015,4,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA015,6,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA015,6,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA015,3,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA015,3,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA015,3,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA015,4,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA015,4,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA015,3,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA015,3,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA015,3,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA015,3,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA015,1,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA015,3,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA015,3,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA015,3,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA015,4,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA015,3,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA015,4,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,,EA015,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA015,3,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,,EA015,NA,,,, +Nd24,,1870,EA015,3,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,,EA015,NA,,,, +Nd26,,,EA015,NA,,,, +Nd27,,1860,EA015,3,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,,EA015,NA,,,, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA015,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA015,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA015,4,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA015,3,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA015,3,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA015,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,,EA015,NA,,,, +Nd35,,1870,EA015,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA015,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA015,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA015,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA015,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA015,3,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA015,3,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA015,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA015,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA015,3,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA015,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA015,3,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA015,3,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA015,3,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA015,3,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,,,EA015,NA,,,, +Nd5,,1870,EA015,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA015,3,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,,EA015,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA015,3,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA015,3,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA015,3,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA015,3,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,,EA015,NA,,,, +Nd57,,,EA015,NA,,,, +Nd58,,1860,EA015,3,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,,EA015,NA,,,, +Nd6,,1850,EA015,3,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,,EA015,NA,,,, +Nd61,,,EA015,NA,,,, +Nd62,,1860,EA015,3,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA015,4,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA015,3,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA015,3,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA015,3,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA015,3,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA015,3,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA015,3,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA015,4,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA015,4,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,,EA015,NA,,,, +Ne11,,1870,EA015,4,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA015,4,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA015,4,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA015,3,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA015,3,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,,EA015,NA,,,, +Ne17,,1860,EA015,3,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA015,4,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA015,3,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA015,3,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,,EA015,NA,,,, +Ne21,,,EA015,NA,,,, +Ne3,Comanche Tribe,1870,EA015,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA015,4,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA015,4,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA015,3,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA015,3,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA015,4,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA015,4,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,,EA015,NA,,,, +Nf11,,,EA015,NA,,,, +Nf12,,,EA015,NA,,,, +Nf13,with special reference to the Kiskopotha band,1820,EA015,3,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA015,3,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA015,3,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA015,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA015,2,At least in camps,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,,EA015,NA,,,, +Nf5,,1860,EA015,3,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA015,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA015,3,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA015,3,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA015,6,Specifically reported by Radin,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA015,2,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA015,2,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA015,3,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA015,3,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,,EA015,NA,,,, +Ng14,,NA,EA015,3,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA015,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA015,6,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA015,2,"Probably originally 'segmented communities, no exogamy' (code ""2"")",bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA015,3,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA015,2,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA015,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA015,3,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA015,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,,EA015,NA,,,, +Nh1,Central band,1880,EA015,3,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA015,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA015,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA015,1,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA015,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA015,3,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA015,3,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA015,3,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA015,2,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA015,3,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA015,3,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA015,2,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA015,3,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA015,3,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA015,6,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA015,3,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA015,3,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA015,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA015,3,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA015,1,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA015,3,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA015,2,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA015,3,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA015,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA015,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA015,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA015,1,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA015,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA015,3,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA015,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA015,3,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA015,3,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA015,3,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA015,3,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,,EA015,NA,,,, +Ni9,,,EA015,NA,,,, +Nj1,Ojitlan,1940,EA015,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA015,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA015,NA,,,, +Nj12,,,EA015,NA,,,, +Nj13,,,EA015,NA,,,, +Nj14,,1960,EA015,2,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA015,2,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,,,EA015,NA,,,, +Nj4,,,EA015,NA,,,, +Nj5,,1940,EA015,3,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA015,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA015,2,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA015,2,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA015,6,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA015,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA015,6,"Tozzer reports that ""the members of one line of descent generally live in the same neighborhood""",baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA015,2,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA015,1,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA015,2,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,,EA015,NA,,,, +Sa15,,,EA015,NA,,,, +Sa16,,NA,EA015,3,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA015,2,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA015,3,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA015,4,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA015,1,But local exogamy occurs in default of marriageable persons within the local community,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA015,3,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA015,3,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA015,3,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA015,2,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA015,3,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA015,2,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA015,3,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA015,3,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA015,3,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA015,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA015,3,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA015,3,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,,EA015,NA,,,, +Sb9,,1930,EA015,3,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA015,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA015,3,"But Kirchhoff reports 'exogamous communities without specific structure of clans' (code ""4"")",coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA015,3,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA015,3,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA015,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,,EA015,NA,,,, +Sc15,,,EA015,NA,,,, +Sc16,with special reference to the Makitare,1920,EA015,4,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA015,4,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA015,6,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA015,1,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA015,3,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA015,3,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA015,4,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA015,2,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA015,4,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA015,4,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA015,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA015,3,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA015,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,,EA015,NA,,,, +Sd4,,1950,EA015,3,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,,EA015,NA,,,, +Sd6,,1960,EA015,1,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA015,3,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA015,2,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA015,2,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA015,2,"The entry assumes that the matrilocal extended families are organized around matrilineage cores; if there are actually no lineages, the entry should be U; Holmberg does not report lineages but admits, in personal discussion, that he may conceivably have overlooked their existence",holmberg1950,EthnographicAtlas_1967_p118, +Se10,,,EA015,NA,,,, +Se11,,1960,EA015,3,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA015,6,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA015,6,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA015,3,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA015,6,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA015,6,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA015,6,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA015,3,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA015,4,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA015,4,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA015,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA015,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA015,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA015,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,,EA015,NA,,,, +Sf6,,,EA015,NA,,,, +Sf7,,1900,EA015,3,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,,EA015,NA,,,, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA015,1,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA015,4,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA015,5,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA015,4,Entry would be 'clans' if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock (1965c)),baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA015,3,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA015,3,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA015,4,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA015,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA015,3,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,,EA015,NA,,,, +Sh5,,1910,EA015,4,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA015,3,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA015,3,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA015,3,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA015,3,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA015,2,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA015,3,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA015,3,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA015,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA015,3,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA015,3,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,,EA015,NA,,,, +Si7,,,EA015,NA,,,, +Si8,,1940,EA015,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA015,NA,,,, +Sj1,,1950,EA015,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA015,3,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA015,3,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA015,2,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA015,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA015,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA015,4,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA015,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA015,2,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA015,3,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA015,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA015,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA015,3,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA015,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA015,3,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA015,3,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA015,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA015,3,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA015,2,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA015,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA015,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA015,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA015,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA015,6,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA015,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA015,4,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,,,EA015,NA,,,, +ch28,with special reference to those of the Yamburg Uezd,1900,EA015,3,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA015,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA015,3,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA015,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA015,4,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA015,6,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA015,6,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA015,6,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA015,6,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA015,6,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA015,6,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA016,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA016,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA016,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA016,9,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA016,9,Entry follows Schebesta; Czekanowski denies clans,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA016,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA016,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,,EA016,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA016,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA016,9,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA016,9,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA016,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA016,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA016,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA016,1,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA016,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA016,1,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA016,1,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA016,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,,,EA016,NA,,,, +Ab2,,1880,EA016,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,,EA016,NA,,,, +Ab21a,,1930,EA016,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA016,NA,,,, +Ab22,,1920,EA016,1,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA016,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA016,1,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA016,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA016,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA016,1,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA016,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA016,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA016,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA016,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA016,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA016,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA016,9,One lineage is predominant in each community,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA016,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA016,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA016,2,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA016,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA016,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA016,9,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA016,2,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA016,1,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA016,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA016,9,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA016,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA016,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA016,9,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA016,9,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA016,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA016,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA016,9,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA016,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA016,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA016,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA016,9,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA016,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA016,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,,EA016,NA,,,, +Ac36,,1920,EA016,9,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA016,9,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA016,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA016,9,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA016,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA016,9,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA016,9,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA016,9,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA016,NA,,,, +Ac5,,1920,EA016,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA016,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA016,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA016,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA016,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA016,9,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA016,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA016,9,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA016,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA016,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA016,9,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA016,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA016,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA016,9,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,,EA016,NA,,,, +Ad19,,,EA016,NA,,,, +Ad2,,1950,EA016,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA016,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,,EA016,NA,,,, +Ad22,,1950,EA016,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,,EA016,NA,,,, +Ad24,,1910,EA016,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,,EA016,NA,,,, +Ad26,,1910,EA016,1,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA016,9,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA016,NA,,,, +Ad29,,,EA016,NA,,,, +Ad3,,1910,EA016,1,"Lineage localization is, however, uncommon today",abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA016,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA016,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA016,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA016,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA016,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA016,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,,EA016,NA,,,, +Ad37,,1940,EA016,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,,EA016,NA,,,, +Ad39,,1950,EA016,9,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA016,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,,EA016,NA,,,, +Ad41,,1930,EA016,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA016,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,,EA016,NA,,,, +Ad44,,1920,EA016,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,,EA016,NA,,,, +Ad46,,1950,EA016,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,,EA016,NA,,,, +Ad48,,1950,EA016,9,"Formerly probably clan communities not segmented into barrios (code ""1"")",taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA016,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA016,9,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA016,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA016,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA016,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA016,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA016,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA016,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA016,1,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA016,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA016,1,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA016,2,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA016,1,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA016,1,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA016,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA016,2,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA016,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA016,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA016,NA,,,, +Ae2,,1950,EA016,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA016,9,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA016,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA016,9,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA016,2,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA016,2,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA016,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,,EA016,NA,,,, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA016,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA016,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA016,2,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA016,2,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA016,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA016,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA016,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA016,2,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA016,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA016,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA016,2,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA016,1,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA016,9,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA016,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA016,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA016,1,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA016,9,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA016,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA016,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA016,9,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA016,9,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA016,9,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA016,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA016,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA016,9,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA016,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA016,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA016,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA016,9,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA016,1,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA016,9,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA016,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA016,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA016,9,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,,EA016,NA,,,, +Ae59,with special reference to the Ngie subtribe,1950,EA016,2,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA016,9,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA016,2,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA016,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA016,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA016,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA016,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA016,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA016,9,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA016,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,,EA016,NA,,,, +Af15,,1920,EA016,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA016,2,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA016,9,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA016,9,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA016,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA016,9,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA016,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,,,EA016,NA,,,, +Af22,,1940,EA016,9,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA016,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA016,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA016,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA016,9,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA016,9,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA016,9,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA016,9,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA016,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,,EA016,NA,,,, +Af31,with special reference to the Lafia,1960,EA016,9,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA016,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA016,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA016,9,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA016,9,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA016,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA016,9,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA016,9,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA016,9,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA016,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,,,EA016,NA,,,, +Af41,,,EA016,NA,,,, +Af42,,1900,EA016,9,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA016,9,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA016,9,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,,EA016,NA,,,, +Af46,,1900,EA016,1,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA016,2,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA016,NA,,,, +Af49,,1940,EA016,2,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA016,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,,EA016,NA,,,, +Af51,,1920,EA016,9,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA016,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA016,1,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA016,9,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA016,9,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA016,9,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA016,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,,EA016,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA016,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA016,2,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA016,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA016,9,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA016,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA016,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA016,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA016,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA016,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA016,9,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,,EA016,NA,,,, +Ag16,,,EA016,NA,,,, +Ag17,,,EA016,NA,,,, +Ag18,,,EA016,NA,,,, +Ag19,,,EA016,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA016,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,,EA016,NA,,,, +Ag21,,1910,EA016,9,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA016,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,,EA016,NA,,,, +Ag24,,,EA016,NA,,,, +Ag25,,1900,EA016,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA016,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA016,9,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA016,9,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA016,9,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA016,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA016,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA016,9,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA016,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,,EA016,NA,,,, +Ag34,,,EA016,NA,,,, +Ag35,,1910,EA016,9,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA016,1,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA016,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA016,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA016,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA016,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA016,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA016,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA016,2,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA016,9,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA016,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA016,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA016,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA016,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA016,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA016,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA016,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,,EA016,NA,,,, +Ag51,,1940,EA016,1,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA016,9,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA016,2,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA016,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA016,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,,EA016,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA016,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA016,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA016,2,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA016,9,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,,EA016,NA,,,, +Ah12,,1920,EA016,9,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,,,EA016,NA,,,, +Ah14,,1920,EA016,9,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA016,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,,EA016,NA,,,, +Ah17,,1930,EA016,9,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,,EA016,NA,,,, +Ah19,,1930,EA016,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA016,9,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA016,2,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA016,9,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA016,NA,,,, +Ah23,,,EA016,NA,,,, +Ah24,,1920,EA016,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA016,9,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA016,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA016,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,,,EA016,NA,,,, +Ah29,,,EA016,NA,,,, +Ah3,Tar of Benue Province,1920,EA016,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA016,9,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA016,9,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,,EA016,NA,,,, +Ah33,,1920,EA016,9,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,,,EA016,NA,,,, +Ah35,,,EA016,NA,,,, +Ah36,,1920,EA016,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA016,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA016,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA016,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA016,9,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA016,9,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA016,9,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA016,2,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA016,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA016,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA016,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA016,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA016,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA016,9,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,,EA016,NA,,,, +Ai14,,,EA016,NA,,,, +Ai15,,1900,EA016,9,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,,EA016,NA,,,, +Ai17,,1930,EA016,9,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA016,9,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA016,NA,,,, +Ai2,,1940,EA016,9,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA016,1,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,,EA016,NA,,,, +Ai22,,1890,EA016,1,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA016,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA016,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA016,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA016,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA016,1,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA016,9,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA016,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA016,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA016,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,,EA016,NA,,,, +Ai32,,1920,EA016,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA016,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA016,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA016,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA016,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA016,9,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA016,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA016,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA016,9,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA016,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA016,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA016,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA016,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA016,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,,EA016,NA,,,, +Ai46,,1930,EA016,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA016,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA016,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA016,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA016,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA016,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA016,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA016,9,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA016,9,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA016,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA016,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA016,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA016,1,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA016,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA016,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA016,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA016,NA,,,, +Aj19,,1920,EA016,9,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA016,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA016,9,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA016,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,,EA016,NA,,,, +Aj23,,1950,EA016,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,,EA016,NA,,,, +Aj25,,1920,EA016,9,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA016,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA016,1,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA016,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA016,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA016,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,,EA016,NA,,,, +Aj31,,,EA016,NA,,,, +Aj4,,1920,EA016,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA016,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA016,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA016,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA016,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA016,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA016,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA016,2,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,,EA016,NA,,,, +Ca12,,,EA016,NA,,,, +Ca13,with special reference to the eastern Macha,1950,EA016,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA016,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA016,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA016,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,,EA016,NA,,,, +Ca18,,,EA016,NA,,,, +Ca19,,1950,EA016,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA016,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,,EA016,NA,,,, +Ca21,,1950,EA016,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,,EA016,NA,,,, +Ca23,,,EA016,NA,,,, +Ca24,,,EA016,NA,,,, +Ca25,,,EA016,NA,,,, +Ca26,,,EA016,NA,,,, +Ca27,,1930,EA016,9,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,,EA016,NA,,,, +Ca29,,,EA016,NA,,,, +Ca3,,1950,EA016,9,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,,,EA016,NA,,,, +Ca31,,,EA016,NA,,,, +Ca32,,,EA016,NA,,,, +Ca33,,,EA016,NA,,,, +Ca34,,1920,EA016,9,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA016,9,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA016,9,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA016,9,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA016,9,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,,EA016,NA,,,, +Ca4,,,EA016,NA,,,, +Ca40,,,EA016,NA,,,, +Ca41,,,EA016,NA,,,, +Ca42,,1950,EA016,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA016,NA,,,, +Ca5,,1930,EA016,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA016,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA016,9,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA016,1,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,,EA016,NA,,,, +Cb1,,1940,EA016,9,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA016,2,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,,EA016,NA,,,, +Cb12,,1920,EA016,9,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA016,9,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,,EA016,NA,,,, +Cb15,with special reference to the Humr,1940,EA016,9,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA016,9,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA016,9,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA016,9,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA016,9,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA016,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA016,9,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA016,9,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA016,9,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,,EA016,NA,,,, +Cb24,Wodaabe of Niger,1950,EA016,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA016,9,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA016,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA016,9,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA016,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA016,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA016,9,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA016,9,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,,EA016,NA,,,, +Cb6,,1920,EA016,9,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA016,9,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA016,9,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA016,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA016,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA016,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA016,9,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,,EA016,NA,,,, +Cc13,,1920,EA016,9,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA016,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA016,9,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,,EA016,NA,,,, +Cc17,,1930,EA016,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA016,9,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,,EA016,NA,,,, +Cc2,Nomads of Tibesti,1950,EA016,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,,,EA016,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA016,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA016,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA016,9,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA016,NA,The band is a patriclan but is not exogamous,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA016,9,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA016,9,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA016,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA016,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,,EA016,NA,,,, +Cd11,,,EA016,NA,,,, +Cd12,,1870,EA016,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA016,9,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA016,9,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA016,9,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,,,EA016,NA,,,, +Cd17,,1920,EA016,9,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA016,9,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,,EA016,NA,,,, +Cd2,Town and environs of Silwa,1950,EA016,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,,EA016,NA,,,, +Cd21,,1930,EA016,9,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA016,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA016,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA016,9,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,,,EA016,NA,,,, +Cd7,with special reference to the Zemmur tribe,1910,EA016,9,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA016,9,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,,EA016,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA016,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA016,9,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA016,9,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA016,9,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA016,9,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA016,9,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA016,9,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA016,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA016,9,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA016,9,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA016,9,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA016,9,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA016,9,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA016,9,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA016,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA016,9,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA016,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA016,9,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA016,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA016,9,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA016,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA016,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA016,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA016,9,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA016,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA016,9,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA016,9,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA016,9,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA016,9,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA016,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA016,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA016,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA016,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA016,1,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA016,9,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA016,9,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA016,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA016,2,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA016,1,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,,EA016,NA,,,, +Ci9,,1910,EA016,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA016,9,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA016,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA016,9,"The local clan, however, shows a tendency toward endogamy",ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA016,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,,,EA016,NA,,,, +Cj5,,1930,EA016,9,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA016,9,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA016,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA016,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,,EA016,NA,,,, +Ea1,,1950,EA016,9,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA016,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA016,NA,,,, +Ea12,,,EA016,NA,,,, +Ea13,Mohla Village,1950,EA016,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA016,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA016,9,But with a marked tendency toward local endogamy,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA016,9,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA016,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA016,9,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA016,9,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA016,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA016,9,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA016,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA016,9,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA016,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA016,1,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA016,NA,Freikin mentions localized clans,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA016,1,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA016,9,But with a tendency toward local exogamy,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,,,EA016,NA,,,, +Ec1,Sakhalin Island,1920,EA016,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA016,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,,EA016,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA016,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA016,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA016,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA016,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA016,9,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA016,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,,EA016,NA,,,, +Ec9,,,EA016,NA,,,, +Ed1,Kanghwa Island,1950,EA016,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA016,9,,yang1945,EthnographicAtlas_1967_p86, +Ed13,,,EA016,NA,,,, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA016,9,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA016,9,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA016,9,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA016,9,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA016,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA016,1,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA016,9,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA016,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA016,9,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA016,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA016,9,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA016,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA016,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA016,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA016,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA016,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA016,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA016,9,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,,EA016,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA016,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA016,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,,,EA016,NA,,,, +Ef11,Village and environs of Senapur,1945,EA016,9,But locally exogamous sibs for the Thakur caste,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA016,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA016,9,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA016,1,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA016,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA016,9,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA016,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA016,9,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA016,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA016,9,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA016,9,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA016,9,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA016,1,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA016,9,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA016,9,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA016,9,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA016,1,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA016,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA016,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA016,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA016,1,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA016,9,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA016,1,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA016,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA016,9,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA016,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA016,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA016,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA016,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA016,9,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA016,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA016,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA016,2,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA016,9,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA016,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA016,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,,EA016,NA,,,, +Ei13,,1910,EA016,9,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA016,9,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA016,9,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA016,9,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,,EA016,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA016,9,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA016,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA016,9,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA016,1,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA016,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA016,9,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA016,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA016,9,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA016,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA016,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA016,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA016,9,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA016,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA016,9,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA016,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA016,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA016,9,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA016,NA,,,, +Ej16,Inas District,1958,EA016,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA016,9,The component long houses of a village are organized only in part on a kinship basis,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA016,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA016,9,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA016,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA016,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA016,9,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA016,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA016,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA016,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA016,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA016,9,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA016,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA016,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA016,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA016,9,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA016,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,,EA016,NA,,,, +Ia18,with special reference to the village of Manland in western Negros,1950,EA016,9,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA016,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA016,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA016,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA016,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA016,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA016,9,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA016,9,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA016,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA016,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA016,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA016,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA016,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA016,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA016,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA016,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,,,EA016,NA,,,, +Ib9,,,EA016,NA,,,, +Ic1,Borongloe,1940,EA016,9,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA016,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA016,9,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA016,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA016,1,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA016,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA016,9,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,,EA016,NA,,,, +Ic5,Bare'e subgroup,1910,EA016,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA016,9,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA016,9,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,,EA016,NA,,,, +Ic9,with special reference to eastern Sumba,1930,EA016,1,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA016,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA016,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA016,9,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA016,1,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA016,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA016,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA016,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA016,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA016,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA016,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA016,1,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,1830,EA016,9,,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA016,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA016,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA016,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA016,1,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA016,2,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA016,9,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA016,1,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA016,9,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA016,9,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA016,2,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA016,9,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA016,9,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA016,1,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA016,9,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA016,9,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA016,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA016,1,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA016,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA016,9,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA016,9,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA016,9,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA016,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA016,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA016,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA016,9,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA016,2,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA016,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA016,9,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,,EA016,NA,,,, +Ie35,,1930,EA016,9,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA016,9,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA016,9,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA016,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA016,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA016,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA016,1,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA016,9,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA016,2,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA016,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA016,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA016,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA016,9,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA016,9,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA016,9,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA016,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA016,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA016,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA016,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA016,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA016,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA016,9,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA016,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA016,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA016,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA016,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA016,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA016,9,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA016,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA016,9,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA016,9,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA016,9,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA016,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA016,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,,EA016,NA,,,, +Ig16,,,EA016,NA,,,, +Ig17,,1950,EA016,9,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA016,9,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA016,9,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA016,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA016,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA016,2,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA016,9,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA016,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA016,1,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA016,9,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA016,9,"Goodenough characterizes the local group as a ""nodal kindred,"" composed basically of sibling sets linked by consanguineal or affinal ties",chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA016,9,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA016,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA016,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA016,1,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA016,1,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA016,1,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA016,9,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA016,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA016,1,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA016,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA016,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA016,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA016,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA016,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA016,9,"Formerly clan communities not segmented into barrios (code ""1"")",quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA016,9,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA016,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,,EA016,NA,,,, +Ii12,Pangai,1920,EA016,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,,EA016,NA,,,, +Ii14,,1829,EA016,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA016,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA016,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA016,9,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA016,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98,"Assume Murdock comment refers to Col 16, not Col 19 as stated in Gray (1999)" +Ii6,with special reference to Atafu,1900,EA016,9,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA016,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,,EA016,NA,,,, +Ii9,,1840,EA016,9,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA016,9,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,,EA016,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA016,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA016,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,,EA016,NA,,,, +Ij5,,1900,EA016,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA016,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA016,9,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA016,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,,EA016,NA,,,, +Na1,,1930,EA016,9,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA016,9,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA016,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA016,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA016,9,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA016,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA016,9,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA016,9,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA016,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA016,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA016,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA016,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA016,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA016,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA016,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA016,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA016,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA016,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA016,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,,EA016,NA,,,, +Na29,,1850,EA016,9,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA016,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA016,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA016,9,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA016,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA016,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA016,1,"The ""co-residential group"" approximates a patri-clan",dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,,EA016,NA,,,, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA016,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA016,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA016,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA016,1,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA016,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA016,NA,,,, +Na41,Mainland division,1700,EA016,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,,,EA016,NA,,,, +Na43,,1920,EA016,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA016,9,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA016,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA016,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA016,9,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA016,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA016,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA016,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA016,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA016,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA016,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA016,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA016,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA016,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA016,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA016,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA016,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA016,9,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,,EA016,NA,,,, +Nb2,Twana Tribe,1850,EA016,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA016,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA016,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA016,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA016,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA016,9,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA016,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA016,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA016,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA016,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA016,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA016,9,The village tends to be a localized ramage,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA016,9,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA016,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA016,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA016,9,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA016,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA016,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA016,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA016,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA016,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA016,9,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA016,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA016,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA016,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA016,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA016,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA016,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA016,1,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA016,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA016,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA016,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA016,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA016,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA016,9,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA016,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA016,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA016,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA016,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA016,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA016,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA016,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA016,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA016,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA016,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA016,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,,EA016,NA,,,, +Nc27,,1860,EA016,9,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA016,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA016,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA016,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA016,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA016,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA016,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA016,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA016,1,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA016,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA016,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA016,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA016,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA016,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA016,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA016,9,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA016,9,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA016,9,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA016,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA016,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA016,9,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA016,9,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA016,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA016,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA016,9,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA016,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA016,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA016,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,,EA016,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA016,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,,EA016,NA,,,, +Nd24,,1870,EA016,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,,EA016,NA,,,, +Nd26,,,EA016,NA,,,, +Nd27,,1860,EA016,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,,EA016,NA,,,, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA016,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA016,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA016,9,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA016,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA016,9,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA016,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,,EA016,NA,,,, +Nd35,,1870,EA016,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA016,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA016,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA016,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA016,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA016,9,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA016,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA016,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA016,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA016,9,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA016,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA016,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA016,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA016,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA016,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,,,EA016,NA,,,, +Nd5,,1870,EA016,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA016,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,,EA016,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA016,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA016,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA016,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA016,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,,EA016,NA,,,, +Nd57,,,EA016,NA,,,, +Nd58,,1860,EA016,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,,EA016,NA,,,, +Nd6,,1850,EA016,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,,EA016,NA,,,, +Nd61,,,EA016,NA,,,, +Nd62,,1860,EA016,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA016,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA016,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA016,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA016,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA016,9,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA016,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA016,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA016,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA016,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,,EA016,NA,,,, +Ne11,,1870,EA016,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA016,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA016,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA016,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA016,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,,EA016,NA,,,, +Ne17,,1860,EA016,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA016,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA016,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA016,9,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,,EA016,NA,,,, +Ne21,,,EA016,NA,,,, +Ne3,Comanche Tribe,1870,EA016,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA016,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA016,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA016,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA016,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA016,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA016,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,,EA016,NA,,,, +Nf11,,,EA016,NA,,,, +Nf12,,,EA016,NA,,,, +Nf13,with special reference to the Kiskopotha band,1820,EA016,9,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA016,9,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA016,9,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA016,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA016,9,At least in camps,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,,EA016,NA,,,, +Nf5,,1860,EA016,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA016,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA016,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA016,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA016,1,Specifically reported by Radin,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA016,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA016,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA016,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA016,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,,EA016,NA,,,, +Ng14,,NA,EA016,9,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA016,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA016,1,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA016,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA016,9,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA016,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA016,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA016,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA016,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,,EA016,NA,,,, +Nh1,Central band,1880,EA016,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA016,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA016,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA016,9,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA016,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA016,9,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA016,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA016,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA016,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA016,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA016,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA016,9,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA016,9,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA016,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA016,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA016,9,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA016,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA016,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA016,9,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA016,9,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA016,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA016,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA016,9,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA016,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA016,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA016,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA016,9,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA016,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA016,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA016,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA016,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA016,9,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA016,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA016,9,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,,EA016,NA,,,, +Ni9,,,EA016,NA,,,, +Nj1,Ojitlan,1940,EA016,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA016,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA016,NA,,,, +Nj12,,,EA016,NA,,,, +Nj13,,,EA016,NA,,,, +Nj14,,1960,EA016,9,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA016,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,,,EA016,NA,,,, +Nj4,,,EA016,NA,,,, +Nj5,,1940,EA016,9,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA016,9,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA016,9,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA016,9,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA016,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA016,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA016,1,"Tozzer reports that ""the members of one line of descent generally live in the same neighborhood""",baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA016,9,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA016,9,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA016,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,,EA016,NA,,,, +Sa15,,,EA016,NA,,,, +Sa16,,NA,EA016,9,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA016,9,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA016,9,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA016,9,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA016,9,But local exogamy occurs in default of marriageable persons within the local community,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA016,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA016,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA016,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA016,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA016,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA016,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA016,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA016,9,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA016,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA016,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA016,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA016,9,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,,EA016,NA,,,, +Sb9,,1930,EA016,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA016,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA016,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA016,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA016,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA016,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,,EA016,NA,,,, +Sc15,,,EA016,NA,,,, +Sc16,with special reference to the Makitare,1920,EA016,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA016,9,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA016,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA016,9,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA016,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA016,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA016,9,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA016,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA016,9,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA016,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA016,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA016,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA016,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,,EA016,NA,,,, +Sd4,,1950,EA016,9,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,,EA016,NA,,,, +Sd6,,1960,EA016,9,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA016,9,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA016,9,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA016,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA016,9,"The entry assumes that the matrilocal extended families are organized around matrilineage cores; if there are actually no lineages, the entry should be U; Holmberg does not report lineages but admits, in personal discussion, that he may conceivably have overlooked their existence",holmberg1950,EthnographicAtlas_1967_p118, +Se10,,,EA016,NA,,,, +Se11,,1960,EA016,9,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA016,1,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA016,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA016,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA016,1,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA016,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA016,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA016,9,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA016,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA016,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA016,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA016,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA016,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA016,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,,EA016,NA,,,, +Sf6,,,EA016,NA,,,, +Sf7,,1900,EA016,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,,EA016,NA,,,, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA016,9,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA016,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA016,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA016,9,"Entry would be 'clan communities not segmented into barrios' (code ""1"") if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock (1965c))",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA016,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA016,9,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA016,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA016,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA016,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,,EA016,NA,,,, +Sh5,,1910,EA016,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA016,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA016,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA016,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA016,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA016,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA016,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA016,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA016,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA016,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA016,9,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,,EA016,NA,,,, +Si7,,,EA016,NA,,,, +Si8,,1940,EA016,9,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA016,NA,,,, +Sj1,,1950,EA016,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA016,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA016,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA016,9,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA016,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA016,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA016,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA016,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA016,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA016,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA016,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA016,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA016,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA016,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA016,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA016,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA016,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA016,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA016,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA016,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA016,9,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA016,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA016,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA016,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA016,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA016,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,,,EA016,NA,,,, +ch28,with special reference to those of the Yamburg Uezd,1900,EA016,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA016,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA016,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA016,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA016,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA016,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA016,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA016,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA016,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA016,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA016,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA017,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA017,4,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA017,4,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA017,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA017,1,Entry follows Schebesta; Czekanowski denies unilineal descent groups,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA017,3,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA017,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA017,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA017,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA017,5,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA017,4,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA017,4,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA017,4,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA017,1,Quasi-lineages inferred from the patrilocal but basically territorial ward organization and from vestigial patrisibs,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA017,4,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA017,4,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA017,4,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA017,4,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA017,4,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA017,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA017,4,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA017,1,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA017,4,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA017,4,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA017,4,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA017,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA017,4,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA017,3,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA017,4,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA017,1,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA017,4,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA017,4,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA017,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA017,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA017,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA017,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA017,1,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA017,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA017,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA017,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA017,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA017,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA017,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA017,1,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA017,1,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA017,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA017,1,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA017,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA017,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA017,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA017,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA017,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA017,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA017,1,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA017,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA017,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA017,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA017,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA017,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA017,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA017,1,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA017,4,"Formerly 'none' (code ""1"")",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA017,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA017,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA017,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA017,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA017,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA017,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA017,1,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA017,4,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA017,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA017,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA017,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA017,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA017,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA017,3,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA017,4,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA017,4,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA017,4,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA017,4,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA017,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA017,4,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA017,3,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA017,4,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA017,4,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA017,4,Uncertain since succession is reported to be matrilineal,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA017,4,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA017,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA017,4,"""A man belongs to the kin group (uluko) of his father's father or his son's son, but not to that of his father or of his son (who both belong to another uluko). There is perpetual alternation of two uluko-names in each patrilineage.""",maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA017,1,The incompletely exogamous patrisibs are better classed as ramages since affiliation is to a considerable extent ambilineal,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA017,4,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA017,4,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA017,1,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA017,4,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA017,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA017,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA017,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA017,4,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA017,4,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA017,4,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA017,5,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA017,4,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA017,4,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA017,4,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA017,4,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA017,4,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA017,4,Inferential from distributional evidence,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA017,4,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA017,4,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA017,4,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA017,4,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA017,4,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA017,4,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA017,4,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA017,4,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA017,4,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA017,4,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA017,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA017,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA017,3,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA017,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA017,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA017,3,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA017,4,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA017,4,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA017,4,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA017,4,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA017,4,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA017,4,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA017,4,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA017,4,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA017,4,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA017,4,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA017,4,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA017,4,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA017,4,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA017,4,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA017,4,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA017,4,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA017,4,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA017,4,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA017,4,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA017,4,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA017,4,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA017,4,Patrilineal descent is inferential,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA017,6,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA017,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA017,4,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA017,4,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA017,3,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA017,4,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA017,4,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA017,4,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA017,3,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA017,4,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA017,4,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA017,4,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA017,1,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA017,4,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA017,4,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA017,4,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA017,4,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA017,3,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA017,4,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA017,NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA017,3,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA017,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA017,3,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA017,5,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA017,3,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA017,3,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA017,3,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA017,3,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA017,3,"But descent is matrilineal in the extreme south, adjacent to the Kom",kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA017,3,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA017,1,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA017,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA017,4,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA017,3,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA017,3,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA017,5,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA017,3,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA017,3,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA017,4,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA017,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA017,5,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA017,6,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA017,4,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA017,1,Patrilineages (ntoro groups) formerly existed but are now extinct,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA017,3,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA017,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA017,4,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA017,4,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA017,NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA017,3,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA017,4,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA017,4,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA017,3,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA017,1,"The so-called ""houses"" are presumably ramages rather than patrilineages in view of the reported avunculocal residence and matrilineal affiliation in cases where only a token bride-price is paid",granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA017,3,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA017,3,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA017,4,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA017,3,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA017,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA017,3,But formerly children by other than an exchange wife belonged to their mother's kin group,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA017,3,But Gunn and Conant suspect ambilineal descent,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA017,4,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA017,4,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA017,4,Inferential rather than attested,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA017,4,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA017,4,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA017,4,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA017,4,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA017,4,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA017,4,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA017,4,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA017,1,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA017,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA017,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA017,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA017,NA,"There are lineages, formerly matrilineal but more recently patrilineal",crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA017,3,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA017,3,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA017,1,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA017,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA017,3,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA017,4,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA017,3,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA017,4,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA017,3,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA017,3,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA017,3,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA017,3,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA017,4,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA017,4,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA017,4,"Since children are affiliated with the mother's group in cases of uxorilocal residence, descent groups are in a measure ambilineal",dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA017,4,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA017,4,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA017,4,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA017,4,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA017,4,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA017,3,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA017,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA017,4,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA017,4,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA017,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA017,4,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA017,4,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA017,3,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA017,3,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA017,3,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA017,3,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA017,1,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA017,3,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA017,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA017,3,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA017,1,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA017,2,But patrilineal exogamy extends only to second cousins,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA017,4,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA017,4,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA017,4,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA017,4,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA017,4,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,,EA017,NA,,,, +Ag29,,1910,EA017,3,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA017,3,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA017,3,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA017,3,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA017,4,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA017,6,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA017,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA017,1,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA017,4,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA017,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA017,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA017,4,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA017,4,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA017,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA017,4,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA017,4,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA017,3,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA017,4,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA017,4,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA017,3,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA017,4,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA017,4,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA017,3,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA017,4,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA017,4,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA017,4,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA017,4,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA017,4,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA017,3,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA017,3,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA017,3,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA017,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA017,4,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA017,3,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA017,3,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA017,4,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA017,4,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA017,NA,Probably patrilineal,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA017,4,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA017,4,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA017,4,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA017,3,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA017,4,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA017,4,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA017,1,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA017,6,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA017,4,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA017,NA,"The reported ""clans"" are presumably patrilineal, though Ames mentions very strong survivals of matrilineal descent",ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA017,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA017,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA017,4,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA017,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA017,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA017,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA017,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA017,5,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA017,1,Patrilineal lineages and moieties have exclusively religious functions,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA017,4,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA017,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA017,4,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA017,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA017,5,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA017,3,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA017,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA017,3,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA017,4,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA017,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA017,3,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA017,1,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA017,4,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA017,5,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA017,3,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA017,3,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA017,4,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA017,3,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA017,3,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA017,3,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA017,3,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA017,4,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA017,NA,Presumably patrilineal,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA017,3,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA017,NA,Inferentially patrilineal,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA017,4,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA017,3,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA017,4,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA017,3,Inferential,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA017,3,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA017,3,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA017,4,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA017,4,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA017,4,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA017,4,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA017,3,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA017,4,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA017,4,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA017,4,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA017,4,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA017,4,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA017,4,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA017,3,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA017,4,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA017,4,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA017,4,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA017,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA017,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA017,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA017,3,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA017,4,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA017,3,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA017,5,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA017,4,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA017,4,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA017,4,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA017,4,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA017,3,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA017,4,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA017,3,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA017,5,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA017,4,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA017,4,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA017,4,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA017,4,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA017,4,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA017,4,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA017,3,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA017,4,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA017,4,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA017,4,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA017,4,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA017,4,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA017,4,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA017,4,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA017,3,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA017,4,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA017,4,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA017,4,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA017,4,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA017,4,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA017,3,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA017,4,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA017,5,"The phratries are grouped into moieties, which have ""no very great significance""",spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA017,4,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA017,4,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA017,3,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA017,4,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA017,4,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA017,4,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA017,4,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA017,4,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA017,4,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA017,4,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA017,4,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA017,3,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA017,3,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA017,4,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA017,4,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA017,4,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA017,4,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA017,4,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA017,4,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA017,6,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA017,5,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA017,4,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA017,6,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA017,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA017,4,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA017,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA017,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA017,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA017,4,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA017,4,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA017,4,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA017,3,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA017,4,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA017,1,Bilateral descent inferred from lack of mention of unilineal kin groups in any source,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA017,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA017,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA017,4,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA017,4,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA017,4,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA017,NA,"No data on descent, but distributional evidence suggests the patrilineal rule",munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA017,4,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA017,4,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA017,4,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA017,6,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA017,4,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA017,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA017,4,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA017,5,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA017,4,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA017,1,Patronymic but probably not patrilineal,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA017,5,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA017,4,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA017,4,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA017,4,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA017,1,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA017,4,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA017,4,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA017,4,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA017,5,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA017,4,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA017,1,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA017,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA017,1,"Descent, though patrilineal prior to 1850, is now ""bilateral with an agnatic bias"" (Cohen)",cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA017,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA017,3,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA017,3,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA017,4,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA017,4,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA017,4,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA017,3,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA017,3,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA017,4,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA017,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA017,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA017,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA017,5,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA017,4,"Descent uncertain, though reported as patrilineal by Bouillie",bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA017,3,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA017,3,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA017,1,But one source speaks of patrilineages,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA017,3,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA017,5,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA017,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA017,1,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA017,NA,"Although descent is specifically reported as patrilineal, it may well be matrilineal as among other Tuareg",cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA017,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA017,4,Patrilineal descent is inferential,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA017,3,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA017,4,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA017,4,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA017,4,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA017,4,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA017,4,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA017,4,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA017,4,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA017,3,The prevalence of sib or lineage exogamy is not reported,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA017,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA017,4,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA017,5,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA017,NA,Said to have shifted from matrilineal to patrilineal descent,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA017,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA017,4,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA017,4,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA017,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA017,4,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA017,4,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA017,4,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA017,4,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA017,4,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA017,4,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA017,4,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA017,4,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA017,5,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA017,4,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA017,4,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA017,4,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA017,4,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA017,3,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA017,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA017,4,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA017,4,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA017,4,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA017,4,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA017,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA017,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA017,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA017,1,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA017,1,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA017,1,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA017,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA017,1,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA017,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA017,1,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA017,1,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA017,1,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA017,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA017,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA017,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA017,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA017,1,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA017,3,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA017,1,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA017,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA017,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA017,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA017,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA017,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA017,1,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA017,1,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA017,1,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA017,1,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA017,5,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA017,1,Formerly patrilineal and still patronymic,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA017,4,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA017,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA017,4,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA017,1,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA017,4,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA017,3,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA017,4,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA017,4,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,,EA017,NA,,,, +Ci9,,1910,EA017,4,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA017,3,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA017,4,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA017,5,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA017,5,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA017,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA017,4,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA017,4,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA017,3,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA017,3,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA017,4,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA017,3,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA017,5,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA017,5,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA017,4,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA017,4,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA017,5,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA017,5,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA017,5,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA017,4,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA017,5,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA017,4,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA017,4,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA017,3,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA017,5,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA017,4,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA017,4,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA017,5,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA017,5,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA017,4,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA017,4,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA017,5,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA017,4,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA017,4,But Steinitz reports agamous patrimoieties,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA017,5,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA017,5,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA017,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA017,5,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA017,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA017,1,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA017,1,But there are patrilineal kin groups consisting of males only,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA017,4,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA017,4,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA017,4,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA017,4,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA017,4,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA017,4,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA017,1,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA017,4,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA017,4,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA017,5,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA017,4,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA017,4,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA017,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA017,4,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA017,4,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA017,3,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA017,4,Patronymic name groups resembling those of the Chinese,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA017,6,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA017,4,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA017,4,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA017,4,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA017,4,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA017,4,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA017,4,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA017,4,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA017,4,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA017,5,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA017,6,But locally exogamous sibs for the Thakur caste,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA017,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA017,4,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA017,4,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA017,4,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA017,4,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA017,4,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA017,5,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA017,5,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA017,5,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA017,4,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA017,5,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA017,6,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA017,5,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA017,4,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA017,3,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA017,5,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA017,4,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA017,4,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA017,1,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA017,4,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA017,1,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA017,4,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA017,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA017,4,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA017,5,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA017,4,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA017,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA017,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA017,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA017,3,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA017,3,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA017,4,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA017,1,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA017,4,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA017,6,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA017,4,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA017,6,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA017,5,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA017,5,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA017,4,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA017,5,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA017,1,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA017,4,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA017,5,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA017,6,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA017,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA017,4,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA017,4,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA017,4,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA017,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA017,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA017,4,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA017,4,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA017,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA017,1,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA017,3,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA017,4,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA017,1,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA017,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA017,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA017,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA017,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA017,4,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA017,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA017,1,Nomadic boat communities,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA017,3,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA017,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA017,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA017,3,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA017,5,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA017,1,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA017,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA017,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA017,1,"But Wei and Liu, unlike other sources, report patrilineages",kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA017,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA017,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA017,1,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA017,1,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA017,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA017,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA017,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA017,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA017,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA017,1,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA017,1,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA017,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA017,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA017,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA017,5,"But 'none' (code ""1"") in upper castes",belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA017,4,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA017,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA017,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA017,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA017,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA017,1,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA017,1,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA017,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA017,3,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA017,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA017,4,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA017,4,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA017,1,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA017,4,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA017,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA017,3,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA017,4,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA017,4,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA017,4,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA017,6,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA017,6,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA017,6,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA017,4,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA017,6,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA017,6,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA017,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA017,1,"But there are localized totemic groups which do not regulate marriages; in addition, analysis suggests implicit intersecting patrimoieties",berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA017,6,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA017,6,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA017,6,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA017,NA,,,, +Id9,,1910,EA017,6,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA017,5,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA017,3,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA017,5,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA017,3,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA017,3,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA017,4,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA017,4,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA017,5,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA017,5,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA017,3,"Though exogamous, lineages are only incompletely patrilineal and, within a village, tend to be grouped into local moieties",serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA017,6,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA017,4,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA017,4,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA017,3,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA017,5,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA017,3,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA017,3,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA017,3,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA017,3,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA017,4,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA017,3,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA017,3,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA017,6,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA017,1,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA017,4,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA017,3,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA017,6,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA017,1,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA017,6,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA017,1,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA017,4,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA017,6,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA017,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA017,3,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA017,6,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA017,4,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA017,5,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA017,6,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA017,4,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA017,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA017,1,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA017,1,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA017,1,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA017,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA017,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA017,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA017,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA017,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA017,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA017,1,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA017,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA017,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA017,3,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA017,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA017,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA017,1,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA017,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA017,3,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA017,1,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA017,1,There is some emphasis on patrifiliation,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA017,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA017,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA017,4,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA017,1,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA017,4,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA017,4,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA017,1,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA017,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA017,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA017,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA017,1,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA017,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA017,1,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA017,1,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA017,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA017,1,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA017,3,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA017,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA017,3,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA017,3,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA017,3,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA017,5,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA017,3,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA017,5,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA017,4,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA017,5,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA017,5,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA017,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA017,3,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA017,3,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA017,1,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA017,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA017,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA017,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA017,1,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA017,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA017,4,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA017,4,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA017,1,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA017,1,"The exogamous patrilineages of six generations' depth reported by Hogbin, who calls them ""joint families,"" are presumably ambilineal ramages, since affiliation is reported to be matrilineal for about 10 per cent of their membership",hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA017,1,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA017,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA017,1,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA017,1,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA017,1,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA017,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA017,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA017,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA017,1,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA017,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA017,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA017,1,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA017,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA017,1,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA017,1,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA017,1,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA017,3,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA017,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA017,1,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA017,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA017,1,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA017,1,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA017,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA017,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA017,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA017,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA017,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA017,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA017,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA017,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA017,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA017,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA017,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA017,1,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA017,1,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA017,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA017,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA017,1,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA017,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA017,4,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA017,3,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA017,4,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA017,4,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA017,4,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA017,4,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA017,4,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA017,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA017,4,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA017,1,"Follows Speck and Bock; Jenness postulates 'sibs' (code ""4"")",bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA017,6,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA017,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA017,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA017,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA017,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA017,1,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA017,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA017,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA017,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA017,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA017,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA017,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA017,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA017,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA017,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA017,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA017,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA017,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA017,1,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA017,1,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA017,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA017,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA017,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA017,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA017,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA017,1,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA017,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA017,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA017,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA017,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA017,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA017,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA017,1,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA017,3,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA017,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA017,1,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA017,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA017,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA017,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA017,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA017,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA017,1,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA017,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA017,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA017,3,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA017,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA017,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA017,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA017,3,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA017,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA017,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA017,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA017,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA017,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA017,1,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA017,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA017,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA017,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA017,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA017,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA017,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA017,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA017,3,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA017,3,"Moieties (code ""6"") in some subgroups",aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA017,6,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA017,3,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA017,6,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA017,1,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA017,3,"Or possibly moieties (code ""6"")",harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA017,6,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA017,6,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA017,6,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA017,6,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA017,6,"But Strong reports moieties (code ""6"")",drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA017,6,But White suggests that the moieties were matrilineal,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA017,4,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA017,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA017,6,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA017,4,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA017,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA017,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA017,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA017,1,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA017,1,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA017,1,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA017,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA017,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA017,1,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA017,1,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA017,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA017,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA017,1,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA017,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA017,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA017,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA017,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA017,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA017,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA017,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA017,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA017,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA017,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA017,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA017,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA017,1,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA017,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA017,1,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA017,1,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA017,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA017,1,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA017,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA017,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA017,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA017,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA017,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA017,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA017,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA017,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA017,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA017,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA017,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA017,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA017,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA017,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA017,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA017,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA017,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA017,1,There are weak agamous patrimoieties whose sole function is to oppose each other in games,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA017,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA017,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA017,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA017,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA017,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA017,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA017,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA017,1,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA017,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA017,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA017,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA017,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA017,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA017,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA017,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA017,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA017,4,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA017,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA017,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA017,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA017,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA017,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA017,1,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA017,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,1760,EA017,1,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968, +Ne3,Comanche Tribe,1870,EA017,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA017,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA017,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA017,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA017,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA017,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA017,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA017,6,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA017,4,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA017,4,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA017,4,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA017,1,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA017,6,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA017,6,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA017,6,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA017,4,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA017,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA017,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA017,4,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA017,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA017,6,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA017,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA017,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA017,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA017,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA017,1,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA017,1,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA017,1,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA017,1,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA017,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA017,1,Agamous patrilineages are possible,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA017,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA017,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA017,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA017,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA017,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA017,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA017,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA017,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA017,1,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA017,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA017,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA017,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA017,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA017,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA017,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA017,4,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA017,1,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA017,4,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA017,4,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA017,4,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA017,1,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA017,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA017,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA017,1,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA017,1,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA017,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA017,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA017,4,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA017,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA017,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA017,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA017,1,But there were agamous ceremonial patrimoieties,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA017,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA017,1,But there are five agamous and nearly functionless patronymic name groups,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA017,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA017,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA017,1,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA017,1,But there were five agamous patronymic name groups and agamous patrimoieties,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA017,1,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA017,1,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,1920,EA017,1,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968, +Nj1,Ojitlan,1940,EA017,1,"In Ojitlan, persons bearing the same patronym and living in the same community may not marry",merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA017,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA017,1,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,1950,EA017,1,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968, +Nj13,,1900,EA017,1,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA017,3,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA017,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA017,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA017,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA017,1,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA017,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA017,1,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA017,1,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA017,4,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA017,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA017,3,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA017,4,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA017,1,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA017,3,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA017,1,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA017,3,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA017,1,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA017,3,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA017,4,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA017,1,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA017,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA017,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA017,3,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA017,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA017,3,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA017,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA017,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA017,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA017,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA017,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA017,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA017,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA017,1,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA017,1,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA017,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA017,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA017,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA017,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA017,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA017,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA017,1,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA017,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA017,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA017,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA017,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA017,1,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA017,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA017,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA017,1,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA017,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA017,1,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA017,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA017,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA017,6,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA017,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA017,6,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA017,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA017,4,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA017,1,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA017,1,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA017,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA017,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA017,1,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA017,3,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA017,1,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA017,5,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA017,6,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA017,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA017,3,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA017,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA017,3,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA017,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA017,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA017,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA017,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA017,3,Patrilineages are presumably a pot-contact development,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA017,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA017,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA017,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA017,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA017,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA017,1,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA017,1,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA017,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA017,3,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA017,1,"But some scholars have inferred patrilineal descent. Entry would be 'lineages' (code ""3"") if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock (1965c))",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA017,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA017,1,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA017,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA017,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA017,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA017,1,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA017,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA017,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA017,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA017,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA017,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA017,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA017,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA017,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA017,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA017,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA017,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA017,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA017,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA017,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,1940,EA017,1,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA017,1,But there are three agamous patrilineal groups which function only in the ceremonial and political life of men,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA017,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA017,4,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA017,6,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA017,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA017,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA017,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA017,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA017,NA,"Parallel descent, i.e., patrilineal for males and matrilineal for females",mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA017,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA017,1,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA017,3,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA017,3,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA017,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA017,4,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA017,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA017,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA017,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA017,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA017,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA017,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA017,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA017,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA017,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA017,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA017,4,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA017,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA017,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA017,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA017,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA017,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA017,6,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA017,4,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA017,4,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA017,4,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA017,4,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA017,4,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA017,4,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA018,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Aa2,with special reference to Central Dorobo,1920,EA018,4,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA018,4,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA018,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Aa5,"Epulu net-hunters, Ituri forest",1930,EA018,1,Entry follows Schebesta; Czekanowski denies unilineal descent groups,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Aa6,,1920,EA018,3,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA018,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Aa8,,1850,EA018,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Aa9,Hatsa Kindiga Tribe,1910,EA018,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ab1,,1900,EA018,4,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA018,4,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA018,4,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA018,4,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA018,1,Quasi-lineages inferred from the patrilocal but basically territorial ward organization and from vestigial patrisibs,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ab14,,1930,EA018,3,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA018,4,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA018,4,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA018,3,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA018,3,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA018,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ab2,,1880,EA018,4,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA018,1,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ab21a,,1930,EA018,4,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA018,4,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA018,4,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA018,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ab4,,1920,EA018,3,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA018,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA018,3,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA018,1,,langandtastevin1937,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ab8,Basuto,1860,EA018,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ab9,,1870,EA018,4,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA018,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA018,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac11,,1930,EA018,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac12,,1920,EA018,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac13,,1950,EA018,1,,tew1950; velsen1964,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac14,,1900,EA018,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac15,,1900,EA018,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac16,,1940,EA018,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac17,Feshi territory lineage center,1910,EA018,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac18,,1910,EA018,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac19,,1880,EA018,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac2,,1920,EA018,1,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac20,,1920,EA018,1,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac21,,1910,EA018,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac22,,1930,EA018,1,,mertens1935,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac23,with special reference to the western Lele,1950,EA018,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac24,,1910,EA018,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA018,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac26,,1920,EA018,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac27,,1930,EA018,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac28,,1930,EA018,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac29,,1930,EA018,1,,brau1942,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac3,Zambia branch,1900,EA018,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac30,,1940,EA018,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac31,,1910,EA018,1,,colle1913,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac32,,1920,EA018,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac33,,1940,EA018,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac34,,1940,EA018,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac35,,1900,EA018,1,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac36,,1920,EA018,4,"Formerly 'no patrilineal exogamy' (code ""1"")",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA018,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac38,,1910,EA018,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac39,,1920,EA018,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA018,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac40,,1900,EA018,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac41,,1900,EA018,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac42,,1900,EA018,1,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac43,,1910,EA018,4,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA018,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac6,,1930,EA018,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac7,,1920,EA018,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac8,,1930,EA018,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA018,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad1,,1950,EA018,1,,grottanelli1955,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad10,,1910,EA018,4,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA018,4,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA018,4,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA018,4,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA018,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad15,,1900,EA018,4,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA018,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad17,,1920,EA018,4,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA018,4,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA018,3,Uncertain since succession is reported to be matrilineal,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA018,4,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA018,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad21,,1930,EA018,4,"""A man belongs to the kin group (uluko) of his father's father or his son's son, but not to that of his father or of his son (who both belong to another uluko). There is perpetual alternation of two uluko-names in each patrilineage.""",maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA018,1,The incompletely exogamous patrisibs are better classed as ramages since affiliation is to a considerable extent ambilineal,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad23,,1910,EA018,4,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA018,3,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA018,1,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad26,,1910,EA018,4,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA018,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad28,,1880,EA018,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad29,,1930,EA018,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad3,,1910,EA018,4,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA018,4,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA018,4,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA018,5,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA018,4,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA018,4,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA018,4,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA018,4,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA018,4,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA018,4,Inferential from distributional evidence,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA018,4,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA018,4,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA018,4,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA018,4,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA018,4,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA018,4,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA018,3,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA018,3,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA018,4,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA018,4,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA018,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA018,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA018,3,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA018,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad51,,1930,EA018,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad6,Age villages of Mwaya and Masoko,1930,EA018,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ad7,Kyaddondo district (V: Kampala),1880,EA018,4,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA018,4,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA018,3,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA018,4,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA018,3,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA018,4,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA018,3,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA018,4,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA018,4,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA018,4,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA018,3,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA018,4,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA018,4,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA018,4,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA018,3,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA018,4,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA018,4,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA018,4,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA018,4,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA018,4,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA018,4,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA018,4,Patrilineal descent is inferential,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA018,4,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA018,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA018,4,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA018,4,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA018,3,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA018,4,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA018,4,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA018,3,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA018,3,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA018,4,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA018,4,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA018,4,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA018,1,,wijnant192526,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ae39,,1920,EA018,3,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA018,4,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA018,4,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA018,4,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA018,3,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA018,4,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA018,NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA018,3,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA018,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ae47,,1900,EA018,3,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA018,3,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA018,3,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA018,3,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA018,3,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA018,3,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA018,3,"But descent is matrilineal in the extreme south, adjacent to the Kom",kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA018,3,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA018,1,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ae55,,1950,EA018,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA018,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA018,3,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA018,1,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ae59,with special reference to the Ngie subtribe,1950,EA018,3,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA018,3,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA018,3,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA018,4,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA018,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA018,5,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA018,3,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA018,3,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA018,1,Patrilineages (ntoro groups) formerly existed but are now extinct,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af13,,1920,EA018,3,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA018,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af15,,1920,EA018,3,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA018,4,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA018,NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA018,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af19,,1950,EA018,4,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA018,3,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA018,3,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA018,1,"The so-called ""houses"" are presumably ramages rather than patrilineages in view of the reported avunculocal residence and matrilineal affiliation in cases where only a token bride-price is paid",granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af22,,1940,EA018,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af23,with special reference to the village of Mgbom,1950,EA018,1,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA018,4,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA018,3,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA018,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af27,,1950,EA018,3,But formerly children by other than an exchange wife belonged to their mother's kin group,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA018,3,But Gunn and Conant suspect ambilineal descent,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA018,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af3,Kumasi State,1900,EA018,3,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA018,4,Inferential rather than attested,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA018,3,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA018,4,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA018,4,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA018,4,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA018,1,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af36,with special reference to the Glidyi,1900,EA018,3,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA018,3,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA018,1,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af39,with special reference to the Ndenie,1900,EA018,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af4,,1930,EA018,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA018,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af41,,1890,EA018,NA,"There are lineages, formerly matrilineal but more recently patrilineal",crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA018,3,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA018,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af44,,1900,EA018,1,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af45,,1900,EA018,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af46,,1900,EA018,3,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA018,3,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA018,3,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA018,3,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA018,3,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA018,3,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA018,3,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA018,3,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA018,4,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA018,3,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA018,3,"Since children are affiliated with the mother's group in cases of uxorilocal residence, descent groups are in a measure ambilineal",dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA018,3,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA018,3,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA018,3,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA018,4,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA018,3,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA018,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Af9,,1900,EA018,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag1,Segou to Bamako on Niger River,1920,EA018,3,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA018,3,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA018,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag12,,1910,EA018,4,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA018,4,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA018,3,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA018,3,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA018,3,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA018,3,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA018,1,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag19,with special reference to the Felup,1930,EA018,3,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA018,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA018,3,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA018,1,,lestrange1950,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag22,with special reference to those of Sine,1920,EA018,2,But patrilineal exogamy extends only to second cousins,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA018,4,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA018,4,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA018,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag26,,1930,EA018,3,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA018,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag28,,,EA018,NA,,,, +Ag29,,1910,EA018,3,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA018,3,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA018,3,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA018,3,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA018,3,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA018,3,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA018,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag35,,1910,EA018,1,,tauxier1921,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag36,,1950,EA018,4,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA018,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA018,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA018,4,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA018,4,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA018,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA018,4,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA018,4,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA018,3,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA018,3,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA018,3,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA018,3,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA018,4,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA018,4,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA018,3,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA018,4,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA018,4,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA018,4,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA018,4,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA018,4,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA018,3,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA018,1,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag7,,1930,EA018,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag8,with special reference to the Coniagui,1910,EA018,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ag9,,1930,EA018,3,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA018,3,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA018,3,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA018,4,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA018,3,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA018,NA,Probably patrilineal,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA018,4,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA018,3,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA018,4,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA018,3,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA018,4,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA018,4,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA018,1,,meek1931a,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ah20,,1920,EA018,4,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA018,3,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA018,NA,"The reported ""clans"" are presumably patrilineal, though Ames mentions very strong survivals of matrilineal descent",ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA018,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ah24,,1920,EA018,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ah25,,1920,EA018,3,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA018,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ah27,,1920,EA018,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA018,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA018,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ah3,Tar of Benue Province,1920,EA018,3,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA018,1,Patrilineal lineages and moieties have exclusively religious functions,meek1931b,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ah31,,1910,EA018,3,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA018,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ah33,,1920,EA018,3,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA018,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA018,4,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA018,3,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA018,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA018,3,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA018,4,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA018,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ah5,,1930,EA018,3,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA018,1,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ah7,,1940,EA018,4,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA018,3,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA018,3,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA018,3,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA018,3,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA018,3,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA018,3,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA018,3,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA018,3,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA018,4,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA018,NA,Presumably patrilineal,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA018,3,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA018,NA,Inferentially patrilineal,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA018,4,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA018,3,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA018,4,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA018,3,Inferential,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA018,3,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA018,3,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA018,4,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA018,4,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA018,4,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA018,4,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA018,3,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA018,3,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA018,4,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA018,4,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA018,4,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA018,4,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA018,3,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA018,3,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA018,4,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA018,4,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA018,4,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA018,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ai39,,1940,EA018,1,,nadel1947,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ai4,,1920,EA018,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ai40,,1940,EA018,3,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA018,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA018,1,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA018,5,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA018,3,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA018,4,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA018,3,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA018,4,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA018,3,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA018,4,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA018,3,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA018,5,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA018,3,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA018,4,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA018,4,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA018,4,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA018,4,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA018,4,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA018,3,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA018,4,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA018,4,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA018,4,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA018,4,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA018,4,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA018,4,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA018,4,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA018,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Aj22,,1930,EA018,4,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA018,4,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA018,4,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA018,4,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA018,4,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA018,3,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA018,4,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA018,5,"The phratries are grouped into moieties, which have ""no very great significance""",spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA018,4,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA018,3,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA018,3,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA018,4,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA018,4,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA018,4,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA018,4,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA018,4,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA018,3,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA018,4,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA018,3,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA018,3,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA018,3,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA018,3,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA018,4,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA018,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca16,,1930,EA018,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca17,,1950,EA018,4,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA018,4,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA018,6,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA018,3,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA018,4,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA018,6,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA018,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA018,4,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA018,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA018,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA018,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA018,4,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA018,4,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA018,4,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA018,3,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA018,4,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA018,1,Bilateral descent inferred from lack of mention of unilineal kin groups in any source,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca32,,1860,EA018,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca33,,1860,EA018,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca34,,1920,EA018,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca35,,1930,EA018,1,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca36,,1860,EA018,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca37,Bogo Tribe,1850,EA018,NA,"No data on descent, but distributional evidence suggests the patrilineal rule",munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA018,1,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca39,,1930,EA018,4,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA018,4,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA018,6,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA018,4,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA018,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA018,1,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca5,,1930,EA018,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca6,,1880,EA018,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca7,Gondar district,1950,EA018,1,Patronymic but probably not patrilineal,lipsky1962; messing1957,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ca8,,1940,EA018,5,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA018,4,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA018,4,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA018,4,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA018,1,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb12,,1920,EA018,1,,reid1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb13,,1930,EA018,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb14,,1910,EA018,1,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb15,with special reference to the Humr,1940,EA018,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb16,,1920,EA018,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb17,Jebel Marra,1880,EA018,1,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb18,,1930,EA018,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb19,,1870,EA018,1,"Descent, though patrilineal prior to 1850, is now ""bilateral with an agnatic bias"" (Cohen)",cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb2,Upper and lower Salum in Gambia,1950,EA018,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA018,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb21,,1930,EA018,3,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA018,1,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb23,,1930,EA018,4,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA018,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb25,,1930,EA018,1,,anonymous1939,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb26,Zazzagawa of Zaria,1950,EA018,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb27,,1920,EA018,3,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA018,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA018,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA018,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb4,,1920,EA018,1,,reid1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb5,,1910,EA018,1,"Descent uncertain, though reported as patrilineal by Bouillie",bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb6,,1920,EA018,3,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA018,1,,meek1931b:288-310,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA018,1,But one source speaks of patrilineages,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cb9,"Hausa, with special reference to the Kanawa",1940,EA018,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc1,,1950,EA018,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc10,,1900,EA018,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc11,,1860,EA018,1,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc12,,1944,EA018,NA,"Although descent is specifically reported as patrilineal, it may well be matrilineal as among other Tuareg",cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA018,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc14,,1880,EA018,1,Patrilineal descent is inferential,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc15,,1920,EA018,1,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc16,,1930,EA018,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc17,,1930,EA018,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc18,,1910,EA018,1,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc19,,1950,EA018,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc2,Nomads of Tibesti,1950,EA018,3,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA018,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc3,inhabitants of the oasis of Siwa,1920,EA018,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc4,,1920,EA018,1,The prevalence of sib or lineage exogamy is not reported,goichon1927; mercier1922,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc5,,1910,EA018,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc6,,1910,EA018,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cc7,Timbuctoo,1950,EA018,1,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA018,NA,Said to have shifted from matrilineal to patrilineal descent,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA018,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd1,Kenuzi Nubians of Dahmit,1920,EA018,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd10,,1900,EA018,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd11,,1500,EA018,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd12,,1870,EA018,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd13,,1930,EA018,1,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd14,,1870,EA018,1,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd15,,1910,EA018,1,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA018,1,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd17,,1920,EA018,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd18,,1920,EA018,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd19,,1920,EA018,1,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd2,Town and environs of Silwa,1950,EA018,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd20,,1940,EA018,1,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd21,,1930,EA018,1,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd3,Entirety: Moroccan,1920,EA018,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA018,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA018,3,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA018,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd7,with special reference to the Zemmur tribe,1910,EA018,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd8,,1910,EA018,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cd9,,1900,EA018,1,,justinard1908,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ce1,Mountain Gheg of No. Albania,1900,EA018,4,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA018,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ce3,City and environs of Rome,100,EA018,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ce4,Labourd,1930,EA018,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA018,1,,parsons1964,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ce6,with special reference to the inhabitants of Andalusia,1950,EA018,1,,pittrivers1954,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ce7,with special reference to the village of Vasilika,1950,EA018,1,,firedl1962,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ce8,with special reference to the village of Vera,1934,EA018,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cf1,Small City in Connecticut,1920,EA018,1,,murdocknd,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cf2,of the Transvaal,1850,EA018,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cf3,,1930,EA018,1,,munch1945,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA018,1,,pierson1951,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cf5,,1930,EA018,1,,miner1939,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA018,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cg2,,1100,EA018,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cg3,County Clare,1930,EA018,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cg4,Konkama District,1950,EA018,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cg5,,1950,EA018,1,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ch1,with special reference to the village of Orasac,1950,EA018,3,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA018,1,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ch11,Viriatino Village,1955,EA018,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ch2,,1890,EA018,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ch3,with special reference to the Hana district of central Moravia,1940,EA018,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ch4,,1900,EA018,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ch5,with special reference to the village of Dragelevtsy,1940,EA018,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ch6,,1910,EA018,1,,ember1954,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ch7,,1930,EA018,1,,friedrich1954,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ch8,,1940,EA018,1,,hanzeli1955,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ch9,,1930,EA018,1,,maciuika1955,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ci1,with special reference to the Baga Dorbed group,1920,EA018,4,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA018,1,Formerly patrilineal and still patronymic,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ci11,,1940,EA018,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ci12,Abkhaz Tribe,1880,EA018,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA018,4,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA018,1,,gadzhieva1958,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ci4,,1920,EA018,4,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA018,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ci6,,1880,EA018,4,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA018,4,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,,EA018,NA,,,, +Ci9,,1910,EA018,4,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA018,1,,sweet1960,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cj10,with special reference to the village of ech-Chibayish,1950,EA018,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cj2,Unspecified,1920,EA018,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cj3,,-800,EA018,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cj4,City and environs of Babylon,-2000,EA018,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cj5,,1930,EA018,1,,dickson1949,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cj6,with special reference to the sedentary population,1950,EA018,1,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cj7,with special reference to the village of Munsif,1950,EA018,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA018,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Cj9,,1950,EA018,1,,hazard1956,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea1,,1950,EA018,1,,bordiend; wilber1964,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea10,with special reference to the more nomadic groups,1950,EA018,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea11,with special reference to the Ghilzai tribe,1950,EA018,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea12,,1940,EA018,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea13,Mohla Village,1950,EA018,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea2,with special reference to the Yusufsai of Swat,1950,EA018,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea3,with special reference to the Urazgani,1930,EA018,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea4,,1950,EA018,1,,barth1956b,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea5,,1890,EA018,4,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA018,1,,barth1961; barth1964,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea7,,1950,EA018,1,,schurmann1962,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea8,,1920,EA018,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ea9,,1950,EA018,1,,vreeland1957,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Eb1,Great Horde,1910,EA018,4,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA018,4,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA018,3,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA018,5,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA018,3,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA018,4,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA018,3,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA018,1,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ec1,Sakhalin Island,1920,EA018,4,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA018,4,But Steinitz reports agamous patrimoieties,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA018,5,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA018,5,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA018,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ec4,Yurak Tribe,1900,EA018,5,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA018,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ec6,Upper Kolyma River,1850,EA018,1,,jochelson191926,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ec7,Saru Basin in Hokkaido,1900,EA018,1,But there are patrilineal kin groups consisting of males only,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ec8,,1900,EA018,4,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA018,4,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA018,4,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA018,4,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA018,1,,smith1952,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA018,4,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA018,1,,burd1952,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA018,4,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA018,4,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA018,5,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA018,4,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA018,4,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA018,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA018,3,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA018,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ed8,,1930,EA018,1,,fitzgerald1941,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ed9,,1930,EA018,1,Patronymic name groups resembling those of the Chinese,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ee1,,1940,EA018,4,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA018,4,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA018,4,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA018,4,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA018,4,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA018,4,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA018,1,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA018,4,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA018,4,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA018,5,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA018,4,But locally exogamous sibs for the Thakur caste,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA018,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA018,3,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA018,4,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA018,4,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA018,4,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA018,4,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA018,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA018,5,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA018,5,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA018,4,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA018,5,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA018,4,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA018,5,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA018,4,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA018,3,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA018,5,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA018,4,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA018,4,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA018,1,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA018,4,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA018,1,,griffiths1946,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Eg9,,1930,EA018,4,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA018,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Eh10,,NA,EA018,4,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA018,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA018,3,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA018,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA018,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Eh6,with special reference to the Kandyan Sinhalese,1950,EA018,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Eh7,,1900,EA018,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Eh8,,1900,EA018,3,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA018,4,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA018,1,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA018,3,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA018,3,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA018,4,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA018,4,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA018,5,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA018,5,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA018,4,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA018,5,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA018,1,,lowis1906; milne1924,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ei19,,1940,EA018,3,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA018,4,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA018,3,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA018,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ei4,Lakher Tribe,1930,EA018,1,,parry1932,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ei5,with special reference to the Jinghpaw,1940,EA018,3,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA018,3,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA018,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ei8,with special reference to those of the Jaintia Hills,1900,EA018,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ei9,,1880,EA018,4,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA018,4,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA018,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA018,1,,lafont1964,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ej12,,1960,EA018,3,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA018,4,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA018,1,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA018,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ej16,Inas District,1958,EA018,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ej2,with special reference to the village of Sar Luk,1940,EA018,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ej3,Jehai Group or subtribe,1920,EA018,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ej4,Red River Delta in Tonkin,1950,EA018,4,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA018,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ej6,of the Mergui Archipelago,1920,EA018,1,Nomadic boat communities,carrapiett1909; white1922,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ej7,,1950,EA018,3,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA018,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ej9,,1940,EA018,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA018,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia10,,1930,EA018,5,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA018,1,,mabuchi1960,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia12,,1950,EA018,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia13,Tawi-Tawi and adjacent islands,1960,EA018,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia14,,1930,EA018,1,"But Wei and Liu, unlike other sources, report patrilineages",kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia15,with special reference to those of the Agusan Valley,1920,EA018,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia16,with special reference to the northern Kalinga,1910,EA018,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia17,,1910,EA018,1,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia18,with special reference to the village of Manland in western Negros,1950,EA018,1,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia2,,1950,EA018,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia3,Kiangan Group,1920,EA018,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia4,with special reference to the Eastern Subanun,1950,EA018,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia5,,1950,EA018,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia6,Su-Paiwan Village,1930,EA018,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA018,1,,fox1954,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia8,,1900,EA018,1,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ia9,with special reference to the southern Ami,1930,EA018,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ib1,"Ulu Ai Group, Baleh",1950,EA018,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA018,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA018,5,"But no patrilineal exogamy (code ""1"") in upper castes",belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA018,4,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA018,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ib6,,1920,EA018,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ib7,with special reference to those of North Pageh,1920,EA018,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ib8,with special reference to the Ridan group,1900,EA018,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ib9,with special reference to settled Punan,1950,EA018,1,,needham1955,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ic1,Borongloe,1940,EA018,1,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA018,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ic11,Allang,1950,EA018,3,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA018,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ic13,,1950,EA018,4,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA018,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ic3,with special reference to the Mountain Belu,1950,EA018,1,,vroklage1952,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ic4,,1920,EA018,4,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA018,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ic6,,1930,EA018,3,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA018,4,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA018,4,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA018,4,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA018,6,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA018,4,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA018,6,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA018,4,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA018,6,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA018,6,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA018,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Id4,,1900,EA018,1,"But there are localized totemic groups which do not regulate marriages; in addition, analysis suggests implicit intersecting patrimoieties",berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Id5,,1910,EA018,6,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA018,6,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA018,4,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA018,NA,,,, +Id9,,1910,EA018,6,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA018,4,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA018,3,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA018,5,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA018,3,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA018,3,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA018,4,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA018,4,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA018,5,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA018,5,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA018,3,"Though exogamous, lineages are only incompletely patrilineal and, within a village, tend to be grouped into local moieties",serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA018,4,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA018,3,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA018,4,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA018,3,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA018,5,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA018,3,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA018,3,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA018,3,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA018,3,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA018,4,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA018,3,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA018,3,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA018,3,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA018,1,,pouwer1955,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ie31,,1950,EA018,3,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA018,3,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA018,3,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA018,1,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ie35,,1930,EA018,4,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA018,1,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ie37,,1960,EA018,3,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA018,6,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA018,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA018,3,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA018,6,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA018,3,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA018,4,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA018,6,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA018,4,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA018,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA018,1,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If11,,1860,EA018,1,,sarfert1919,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If12,,1940,EA018,1,,mason1954,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If13,,1900,EA018,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If14,Makin and Butiritari Islands (N),1890,EA018,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If15,,1930,EA018,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If16,,1960,EA018,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If17,with special reference to the island of Jaluit,1900,EA018,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If2,Romonum Island,1940,EA018,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If3,With special reference to the inhabitants of Majuro,1940,EA018,1,,spoehr1949,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA018,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If5,,1910,EA018,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If6,Island,1910,EA018,3,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA018,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If8,with special reference to those of Saipa,1950,EA018,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +If9,,1900,EA018,1,,lessa1950; william1966,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig1,Northeastern group,1940,EA018,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig10,,1950,EA018,3,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA018,1,,armstrong1928,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig12,with special reference to the Varisi,1900,EA018,1,There is some emphasis on patrifiliation,scheffler1965,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig13,,1900,EA018,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig14,,1900,EA018,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig15,,1950,EA018,4,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA018,1,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig17,,1950,EA018,4,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA018,4,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA018,1,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig2,Kiriwina Island,1910,EA018,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig20,with special reference to the village of Longgu,1920,EA018,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig21,with special reference to Boieng Island,1930,EA018,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig3,,1930,EA018,1,,blackwood1935,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig4,Lesu Village,1930,EA018,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig5,,1920,EA018,1,,fortune1932b,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig6,,1900,EA018,1,,ivens1927,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig7,,1950,EA018,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig8,,1910,EA018,1,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ig9,Peri Village,1920,EA018,3,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA018,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ih10,Whitsands,1920,EA018,3,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA018,3,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA018,3,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA018,5,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA018,3,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA018,5,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA018,4,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA018,4,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA018,4,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA018,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ih7,,1910,EA018,3,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA018,3,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA018,1,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA018,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ii10,,1950,EA018,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ii12,Pangai,1920,EA018,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA018,1,,burrows1937,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ii14,,1829,EA018,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ii2,Ravenga District,1930,EA018,3,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA018,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA018,1,,kennedy1931; white1965,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA018,1,"The exogamous patrilineages of six generations' depth reported by Hogbin, who calls them ""joint families,"" are presumably ambilineal ramages, since affiliation is reported to be matrilineal for about 10 per cent of their membership",hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ii6,with special reference to Atafu,1900,EA018,1,,macgregor1937,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ii7,,1910,EA018,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ii8,,1840,EA018,1,,burrows1936,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ii9,,1840,EA018,1,,loeb1926a,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ij1,,1820,EA018,1,,buck1934,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ij10,,1900,EA018,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ij2,Nga Puhi Tribe,1820,EA018,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ij3,,1900,EA018,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ij4,,1850,EA018,1,,buck1932a,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ij5,,1900,EA018,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ij6,,1800,EA018,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ij7,,1900,EA018,1,,buck1938; laval1938,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ij8,,1900,EA018,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ij9,,1860,EA018,1,,metraux1940,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na1,,1930,EA018,1,,mckennan1959,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na10,,1930,EA018,1,,birketsmith1953,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na11,,1920,EA018,3,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA018,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na13,,1880,EA018,1,,boas1888; boas190107,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na14,,1880,EA018,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na15,,1860,EA018,1,,helmandlurie1961,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na16,,1860,EA018,1,,osgood1931,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na17,"Lynx Point band, Fort Simpson",1860,EA018,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA018,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na2,,1880,EA018,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA018,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na21,,1900,EA018,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA018,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na23,with special reference to the Koksoagmiu,1890,EA018,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na24,,1880,EA018,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA018,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na26,with special reference to the Iliamna,1870,EA018,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na27,,1870,EA018,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na28,,1880,EA018,1,,jenness1937,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na29,,1850,EA018,1,,goddard1916,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na3,Coronation Gulf,1920,EA018,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na30,,1880,EA018,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na31,with special reference to those of Albany and Moose Creek,1850,EA018,1,,skinner1912,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na32,Lake St. John & Mistassini Band,1880,EA018,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na33,Berens River band,1870,EA018,4,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA018,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na35,,1800,EA018,4,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA018,4,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA018,4,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA018,4,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA018,4,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA018,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na40,,1650,EA018,4,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA018,1,"Follows Speck and Bock; Jenness postulates 'sibs' (code ""4"")",bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na42,Prairie Potawatomi,1760,EA018,4,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA018,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na44,,1910,EA018,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na45,,1900,EA018,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA018,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na6,,1930,EA018,1,,lantis1946,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA018,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na8,Shageluk Village,1880,EA018,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Na9,Unalaska Branch (Eastern Aleut),1830,EA018,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA018,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb10,,1865,EA018,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb11,with special reference to the Central Nootka,1880,EA018,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb12,,1880,EA018,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb13,,1880,EA018,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb14,,1880,EA018,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb15,,1880,EA018,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb16,,1860,EA018,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb17,,1870,EA018,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb18,,1880,EA018,1,,pettitt1950,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb19,,1850,EA018,1,,ray1938; ray1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb2,Twana Tribe,1850,EA018,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb20,,1870,EA018,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb21,,1860,EA018,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb22,with special reference to the Chilkat,1880,EA018,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb23,,1880,EA018,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb24,,1860,EA018,1,,colson1953; swan1868,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb25,,1860,EA018,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb26,,1880,EA018,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb27,with special reference to the Tait,1880,EA018,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb28,,1860,EA018,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb29,,1860,EA018,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb3,,1890,EA018,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb30,,1860,EA018,1,,sapir1907,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb31,,1870,EA018,3,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA018,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb33,,1860,EA018,1,,dixon1910; driver1939,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb34,,1860,EA018,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb35,,1860,EA018,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb36,,1860,EA018,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb37,,1860,EA018,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb38,with special reference to the inhabitants of the Bear River,1860,EA018,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb39,,1860,EA018,1,,driver1939; nomland1935,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb4,,1850,EA018,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb5,Eyak Tribe,1890,EA018,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb6,,1870,EA018,3,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA018,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb8,,1880,EA018,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nb9,"Central group, lower B.C. River",1880,EA018,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc1,,1850,EA018,3,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA018,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc11,,1860,EA018,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA018,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA018,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc14,with special reference to the northeastern Wintu,1860,EA018,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc15,,1860,EA018,1,,driver1939; gifford1939,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc16,,1860,EA018,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc17,with special reference to those of Kalekau,1860,EA018,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc18,"Clear Lake, Village of Cignon",1860,EA018,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc19,with special reference to those near Santa Rosa,1860,EA018,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc2,,1850,EA018,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc20,,1860,EA018,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc21,,1860,EA018,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc22,with special reference to the Hill Patwin,1850,EA018,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc23,,1870,EA018,1,"No patrilineal exogamy' (code ""1"") in some subgroups",aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc24,Tulare Lake,1860,EA018,6,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA018,3,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA018,6,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA018,1,,driver1937; gifford1917,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc28,,1800,EA018,3,"Or possibly moieties (code ""6"")",harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA018,6,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA018,3,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA018,6,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA018,6,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA018,6,"But Strong reports lineages (code ""3"")",drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA018,6,But White suggests that the moieties were matrilineal,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA018,4,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA018,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc5,with special reference to the Central Sierra group,1850,EA018,3,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA018,4,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA018,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc8,Klamath Tribe,1860,EA018,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nc9,,1860,EA018,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd1,,1850,EA018,1,,murdock1958; ray1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd10,,1860,EA018,1,,ray1942; teit1900,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd11,with special reference to the southeastern Shuswap,1850,EA018,1,,ray1942; teit1909,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd12,,1860,EA018,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd13,,1860,EA018,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd14,,1860,EA018,1,,ray1942; teit1930,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd15,,1880,EA018,1,,clineetal1938,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd16,,1870,EA018,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd17,,1870,EA018,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd18,,1860,EA018,1,,spierandsapir1930,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd19,,1860,EA018,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd2,,1860,EA018,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd20,,1850,EA018,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd21,,1870,EA018,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd22,Wadadika of Harney Valley,1870,EA018,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd23,,1870,EA018,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd24,,1870,EA018,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd25,,1870,EA018,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd26,,1870,EA018,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd27,,1860,EA018,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd28,,1870,EA018,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd3,Havasupai Tribe,1870,EA018,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd30,,1870,EA018,1,,driver1937; steward1933,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd31,,1850,EA018,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd32,with special reference to those of Saline Valley,1850,EA018,1,,driver1937; steward1938,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd33,including the Belted Range group,1870,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd34,,1870,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd35,,1870,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd36,,1870,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd37,,1870,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd38,,1870,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd4,,1870,EA018,1,,ray1932; ray1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd40,,1870,EA018,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd41,,1870,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd43,,1860,EA018,1,,harris1940; steward1941,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd44,,1850,EA018,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd45,,1860,EA018,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd46,,1860,EA018,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd47,,1850,EA018,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd48,with special reference to those of Deep Creek,1860,EA018,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd49,including the Kaiparowits band,1860,EA018,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd5,,1870,EA018,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd50,,1860,EA018,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd51,,1860,EA018,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA018,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd53,,1860,EA018,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd54,Colorado River Reservation,1860,EA018,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA018,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd56,,1860,EA018,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd57,,1860,EA018,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd58,,1860,EA018,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd59,,1860,EA018,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd6,,1850,EA018,1,There are weak agamous patrimoieties whose sole function is to oppose each other in games,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd60,,1860,EA018,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd61,,1860,EA018,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd62,,1860,EA018,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd63,with special reference to the Eastern Bannock,1860,EA018,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd64,with special reference to the Kucundika,1860,EA018,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd65,,1870,EA018,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA018,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd67,,1870,EA018,1,,gifford1936,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd7,Lower or eastern branch,1880,EA018,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA018,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nd9,,1860,EA018,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne1,Gros Ventre Tribe,1880,EA018,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne10,,1860,EA018,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne11,,1870,EA018,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne12,,1850,EA018,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne13,,1850,EA018,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne14,,1850,EA018,4,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA018,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne16,,1800,EA018,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne17,,1860,EA018,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne18,,1850,EA018,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne19,,1850,EA018,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne2,,1870,EA018,1,,mcallister1937,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne20,,1850,EA018,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne21,,1760,EA018,1,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne3,Comanche Tribe,1870,EA018,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne4,,1870,EA018,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne5,,1860,EA018,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne6,,1830,EA018,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne7,,1880,EA018,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne8,,1870,EA018,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ne9,,1860,EA018,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nf10,,1870,EA018,4,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA018,4,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA018,4,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA018,4,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA018,1,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nf15,,1870,EA018,5,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA018,6,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA018,4,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA018,4,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA018,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nf6,Skidi Band or subtribe,1867,EA018,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nf7,Tama Reservation,1830,EA018,4,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA018,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nf9,,1870,EA018,6,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA018,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng10,with special reference to the Seneca tribe,1750,EA018,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng11,,1750,EA018,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng12,,1760,EA018,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng13,,NA,EA018,1,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng14,,NA,EA018,1,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng15,,1750,EA018,1,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng2,with special reference to the Cow Creek band,1940,EA018,1,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng3,Upper division in Alabama,1750,EA018,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng4,,1900,EA018,1,Agamous patrilineages are possible,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng5,,1750,EA018,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng6,with special reference to the Munsee,1700,EA018,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng7,Natchez Kingdom,1700,EA018,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng8,,1560,EA018,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ng9,,1920,EA018,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh1,Central band,1880,EA018,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh10,,1920,EA018,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA018,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh12,,1920,EA018,1,,gifford1940; white1942,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh13,,1920,EA018,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh14,,1920,EA018,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh15,,1870,EA018,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA018,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA018,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh18,Old Oraiibi,1920,EA018,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA018,4,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA018,1,,dozier1954,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh20,,1860,EA018,4,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA018,4,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA018,4,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA018,1,,gifford1932a,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh24,,1880,EA018,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh25,,1920,EA018,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh26,,1910,EA018,1,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh27,,1930,EA018,1,,white1935,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh3,,1930,EA018,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh4,Pueblo,1910,EA018,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh5,,1850,EA018,4,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA018,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh7,,1890,EA018,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh8,,1920,EA018,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nh9,,1920,EA018,1,But there were agamous ceremonial patrimoieties,parsons1939; trager1943,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ni1,,1930,EA018,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ni2,,1930,EA018,1,But there are five agamous and nearly functionless patronymic name groups,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ni3,Huichol Tribe,1920,EA018,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ni4,,1900,EA018,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ni5,,1570,EA018,1,,driveranddriver1963,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ni6,,1840,EA018,1,But there were five agamous patronymic name groups and agamous patrimoieties,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ni7,,1870,EA018,1,,beals1943; drucker1941,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ni8,,1550,EA018,1,,johnson1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Ni9,,1920,EA018,1,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nj1,Ojitlan,1940,EA018,1,"In Ojitlan, persons bearing the same patronym and living in the same community may not marry",merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA018,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA018,1,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nj12,,1950,EA018,1,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nj13,,1900,EA018,1,,soustelle1937,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nj14,,1960,EA018,3,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA018,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nj3,Town and environs of Soteapan,1940,EA018,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nj4,,1940,EA018,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nj5,,1940,EA018,1,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nj6,with special reference to San Mateo,1950,EA018,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nj7,with special reference to Ayutla,1930,EA018,1,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA018,1,,foster1948,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Nj9,,1960,EA018,4,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA018,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sa10,,1900,EA018,3,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA018,4,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA018,1,,stone1948,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sa13,Town of Chichicastenango,1930,EA018,3,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA018,1,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sa15,,1920,EA018,3,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA018,1,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sa17,with special reference to the village of Chinantla,1950,EA018,3,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA018,4,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA018,1,,wisdom1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sa4,with special reference to those of Panama,1960,EA018,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sa5,,1950,EA018,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sa6,,1520,EA018,3,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA018,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA018,3,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA018,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sb1,Dominica Island,1650,EA018,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sb2,,1940,EA018,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sb3,with special reference to the Iroka,1940,EA018,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sb4,with special reference to the Cachama group,1950,EA018,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sb5,,1950,EA018,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sb6,Goajiro Tribe,1940,EA018,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sb7,with special reference to the Pariri,1950,EA018,1,,wilbert1961b,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sb8,,1520,EA018,1,,rouse1948a,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sb9,,1930,EA018,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc1,,1950,EA018,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc10,,1900,EA018,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc11,,1930,EA018,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc12,,1910,EA018,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc13,,1950,EA018,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc14,,1890,EA018,1,,coudreau1893,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc15,,1910,EA018,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc16,with special reference to the Makitare,1920,EA018,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc17,,1950,EA018,1,,wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc18,,1960,EA018,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc2,,1950,EA018,1,,leedsnd,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc3,Barama River,1930,EA018,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc4,with special reference to the non-agricultural groups,1950,EA018,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc5,,1900,EA018,1,,farabee1918,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA018,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA018,1,,wilbert1959b,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc8,,1950,EA018,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sc9,,1950,EA018,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sd1,Cabrura village,1950,EA018,6,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA018,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sd3,,1920,EA018,4,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA018,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sd5,,1950,EA018,4,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA018,1,,migliazza1964,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sd7,,1950,EA018,1,,fock1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sd8,,1950,EA018,1,,wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA018,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA018,1,,holmberg1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Se10,,1670,EA018,3,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA018,1,,prost1965,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Se12,,1950,EA018,4,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA018,6,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA018,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Se4,,1940,EA018,3,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA018,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA018,3,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA018,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA018,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Se9,,1920,EA018,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sf1,City and environs of Cuzco,1530,EA018,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sf2,Chucuito Clan community in Peru,1940,EA018,3,Patrilineages are presumably a pot-contact development,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA018,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sf4,,1950,EA018,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sf5,,1900,EA018,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sf6,,1540,EA018,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sf7,,1900,EA018,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sf8,,1950,EA018,1,,matteson1954,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA018,1,,labarre1941,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sg1,Eastern and central,1870,EA018,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sg2,Cholchol,1880,EA018,3,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA018,1,"But some scholars have inferred patrilineal descent. Entry would be 'lineages' (code ""3"") if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock (1965c))",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sg4,Equestrian,1870,EA018,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sg5,with special reference to the southern bands,1900,EA018,1,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA018,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sh2,,1850,EA018,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sh3,Those in contact with mission,1800,EA018,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sh4,,1940,EA018,1,,oberg1949,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sh5,,1910,EA018,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sh6,,1890,EA018,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sh7,,1900,EA018,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sh8,with special reference to those of the Argentine Chaco,1964,EA018,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sh9,Those in contact with mission,1890,EA018,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Si1,Kejara,1920,EA018,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA018,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Si2,Village of Vanivani,1930,EA018,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Si3,Simao Lopes,1940,EA018,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA018,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Si5,,1940,EA018,1,,oberg1953:1-144,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Si6,,1900,EA018,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Si7,with special reference to the Cozarimi,1910,EA018,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Si8,,1940,EA018,1,,oberg1953:1-144,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Si9,,1940,EA018,1,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sj1,,1950,EA018,1,But there are three agamous patrilineal groups which function only in the ceremonial and political life of men,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sj10,Taquapiri,1950,EA018,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA018,4,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA018,6,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA018,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sj4,Ramcocamecra or Canella,1930,EA018,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sj5,Naknenuk subtribe,1880,EA018,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sj6,with special reference to the Guajajara subgroup,1930,EA018,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA018,NA,"Parallel descent, i.e., patrilineal for males and matrilineal for females",mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA018,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +Sj9,,1950,EA018,1,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v18 ""O"" and "".o"" coded as ""9""" +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA018,3,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA018,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA018,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA018,3,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA018,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA018,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA018,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA018,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA018,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA018,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA018,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA018,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA018,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA018,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA018,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA018,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA018,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA018,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA018,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA018,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA018,6,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA018,4,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA018,4,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA018,4,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA018,4,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA018,4,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA018,4,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA019,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA019,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA019,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA019,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA019,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA019,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA019,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA019,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA019,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA019,4,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA019,1,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA019,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA019,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA019,1,Quasi-lineages inferred from the patrilocal but basically territorial ward organization and from vestigial patrisibs,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA019,1,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA019,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA019,1,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA019,2,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA019,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA019,4,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA019,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA019,4,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA019,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA019,1,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA019,1,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA019,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA019,1,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA019,3,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA019,3,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA019,4,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA019,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA019,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA019,4,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA019,4,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA019,4,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA019,4,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA019,4,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA019,4,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA019,3,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA019,4,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA019,4,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA019,4,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA019,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA019,4,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA019,3,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA019,4,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA019,4,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA019,4,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA019,4,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA019,3,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA019,4,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA019,4,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA019,4,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA019,4,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA019,4,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA019,4,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA019,4,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA019,4,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA019,4,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA019,4,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA019,4,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA019,1,"Formerly sibs (code ""4"")",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA019,4,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA019,4,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA019,4,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA019,4,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA019,4,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA019,4,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA019,4,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA019,1,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA019,4,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA019,4,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA019,4,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA019,4,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA019,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA019,1,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA019,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA019,1,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA019,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA019,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA019,4,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA019,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA019,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA019,1,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA019,1,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA019,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA019,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA019,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA019,1,"""A man belongs to the kin group (uluko) of his father's father or his son's son, but not to that of his father or of his son (who both belong to another uluko). There is perpetual alternation of two uluko-names in each patrilineage.""",maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA019,1,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA019,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA019,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA019,4,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA019,1,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA019,4,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA019,4,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA019,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA019,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA019,3,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA019,3,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA019,1,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA019,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA019,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA019,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA019,1,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA019,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA019,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA019,1,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA019,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA019,1,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA019,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA019,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA019,1,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA019,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA019,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA019,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA019,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA019,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA019,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA019,4,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA019,4,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA019,4,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA019,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA019,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA019,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA019,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA019,1,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA019,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA019,1,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA019,1,Matrilineal descent was formerly recognized,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA019,1,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA019,1,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA019,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA019,1,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA019,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA019,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA019,1,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA019,3,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA019,1,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA019,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA019,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA019,1,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA019,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA019,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA019,1,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA019,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA019,1,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA019,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA019,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA019,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA019,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA019,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA019,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA019,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA019,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA019,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA019,1,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA019,4,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA019,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA019,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA019,3,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA019,1,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA019,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA019,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA019,NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA019,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA019,4,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA019,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA019,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA019,1,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA019,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA019,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA019,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA019,1,"But descent is matrilineal in the extreme south, adjacent to the Kom",kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA019,1,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA019,4,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA019,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA019,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA019,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA019,1,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA019,1,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA019,1,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA019,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA019,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA019,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA019,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA019,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA019,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA019,4,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA019,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA019,3,"From a recent report, matrilineages have apparently become converted into ambilineal ramages",hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA019,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA019,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA019,NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA019,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA019,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA019,1,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA019,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA019,1,"The so-called ""houses"" are presumably ramages rather than patrilineages in view of the reported avunculocal residence and matrilineal affiliation in cases where only a token bride-price is paid",granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA019,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA019,4,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA019,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA019,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA019,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA019,1,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA019,1,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA019,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA019,4,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA019,1,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA019,1,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA019,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA019,1,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA019,1,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA019,2,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA019,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA019,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA019,3,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA019,4,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA019,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA019,3,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA019,NA,"There are lineages, formerly matrilineal but more recently patrilineal",crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA019,4,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA019,1,"But Daniell reports exogamy (code ""2"")",daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA019,3,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA019,3,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA019,1,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA019,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA019,1,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA019,1,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA019,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA019,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA019,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA019,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA019,1,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA019,1,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA019,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA019,1,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA019,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA019,1,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA019,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA019,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA019,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA019,4,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA019,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA019,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA019,4,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA019,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA019,1,But witchcraft powers are matrilineally transmitted,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA019,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA019,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA019,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA019,1,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA019,4,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA019,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA019,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA019,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA019,4,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA019,4,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA019,1,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA019,1,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA019,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA019,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA019,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,,EA019,NA,,,, +Ag29,,1910,EA019,1,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA019,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA019,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA019,1,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA019,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,,EA019,NA,,,, +Ag34,,1930,EA019,4,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA019,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA019,4,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA019,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA019,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA019,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA019,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA019,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA019,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA019,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA019,1,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA019,2,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA019,1,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA019,2,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA019,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA019,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA019,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA019,6,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA019,1,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA019,1,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA019,1,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA019,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA019,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA019,1,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA019,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA019,4,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA019,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA019,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA019,1,"But Gunn reports matrilineal ""clans"" as well as patrilineages",gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA019,1,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA019,1,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,,,EA019,NA,,,, +Ah14,,1920,EA019,1,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA019,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA019,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA019,1,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA019,1,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA019,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA019,1,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA019,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA019,1,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA019,NA,"The reported ""clans"" are presumably patrilineal, though Ames mentions very strong survivals of matrilineal descent",ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA019,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA019,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA019,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA019,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA019,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA019,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA019,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA019,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA019,4,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA019,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA019,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA019,1,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA019,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA019,1,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA019,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA019,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA019,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA019,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA019,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA019,1,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA019,4,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA019,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA019,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA019,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA019,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA019,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA019,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA019,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA019,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA019,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA019,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,,EA019,NA,,,, +Ai17,,1930,EA019,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,,EA019,NA,,,, +Ai19,,1910,EA019,1,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA019,3,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA019,1,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA019,1,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA019,1,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA019,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA019,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA019,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA019,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA019,1,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA019,1,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA019,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA019,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA019,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA019,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA019,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA019,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA019,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA019,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA019,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA019,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA019,4,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA019,4,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA019,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA019,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA019,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA019,4,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA019,1,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA019,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA019,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA019,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA019,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA019,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA019,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA019,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA019,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA019,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA019,1,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA019,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA019,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA019,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA019,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA019,1,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA019,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA019,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA019,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA019,1,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA019,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA019,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA019,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA019,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA019,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA019,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA019,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA019,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA019,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA019,1,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA019,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA019,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA019,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA019,1,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA019,1,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA019,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA019,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA019,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA019,1,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA019,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA019,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA019,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA019,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA019,1,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA019,1,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA019,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA019,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA019,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA019,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA019,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA019,1,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA019,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA019,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA019,1,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA019,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA019,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA019,1,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA019,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA019,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA019,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA019,1,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA019,1,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA019,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA019,1,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA019,1,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA019,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA019,4,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA019,4,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA019,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA019,1,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA019,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,,,EA019,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA019,1,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA019,1,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA019,3,"Matrilineages are unnamed, unimportant, and not specifically reported to be exogamous",huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA019,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA019,1,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA019,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA019,1,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA019,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA019,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA019,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA019,1,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA019,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA019,1,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA019,1,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA019,4,Inferred from matrilineal inheritance and succession,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA019,1,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA019,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA019,1,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA019,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA019,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA019,3,"Inferred from prohibition of marriage with a maternal cousin, from the matrilocal rule of residence, and from the report of ""totemism""",barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA019,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA019,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA019,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA019,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA019,1,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA019,1,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA019,1,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA019,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA019,1,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA019,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA019,1,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA019,3,Matrilineal exogamy extends only to second cousins,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA019,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA019,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA019,1,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA019,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA019,1,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA019,1,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA019,1,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA019,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA019,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA019,4,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA019,3,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA019,NA,"Although descent is specifically reported as patrilineal, it may well be matrilineal as among other Tuareg",cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA019,4,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA019,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA019,1,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA019,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA019,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA019,1,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA019,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA019,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA019,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA019,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA019,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA019,3,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA019,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA019,1,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA019,1,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA019,4,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA019,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA019,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA019,3,All authorities accept matrilineal descent on the basis of reported matrilineal inheritance and succession,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA019,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA019,1,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA019,1,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA019,1,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA019,1,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA019,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA019,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA019,1,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA019,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA019,1,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA019,1,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA019,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA019,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA019,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA019,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA019,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA019,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA019,1,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA019,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA019,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA019,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA019,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA019,1,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA019,1,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA019,1,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA019,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA019,1,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA019,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA019,1,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA019,1,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA019,1,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA019,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA019,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA019,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA019,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA019,1,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA019,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA019,1,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA019,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA019,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA019,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA019,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA019,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA019,1,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA019,1,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA019,1,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA019,1,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA019,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA019,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA019,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA019,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA019,1,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA019,1,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA019,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA019,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA019,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA019,1,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA019,1,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA019,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA019,1,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA019,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA019,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA019,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA019,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA019,1,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA019,1,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA019,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA019,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA019,1,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA019,1,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA019,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA019,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA019,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA019,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA019,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA019,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA019,1,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA019,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA019,1,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA019,1,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA019,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA019,1,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA019,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA019,1,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA019,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA019,1,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA019,1,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA019,1,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA019,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA019,1,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA019,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA019,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA019,1,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA019,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA019,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA019,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA019,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA019,1,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA019,3,But there are patrilineal kin groups consisting of males only,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA019,1,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA019,1,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA019,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA019,1,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA019,1,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA019,1,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA019,1,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA019,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA019,1,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA019,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA019,1,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA019,1,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA019,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA019,1,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA019,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA019,1,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA019,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA019,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA019,1,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA019,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA019,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA019,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA019,1,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA019,1,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA019,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA019,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA019,1,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA019,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA019,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA019,1,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA019,1,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA019,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA019,1,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA019,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA019,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA019,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA019,1,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA019,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA019,1,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA019,1,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA019,1,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA019,1,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA019,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA019,1,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA019,4,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA019,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA019,4,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA019,1,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA019,1,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA019,1,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA019,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA019,1,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA019,2,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA019,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA019,4,"Leach, on questionable evidence (see discussion Murdock (1965a)), denies the occurrence of matrilineal sibs",bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA019,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA019,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA019,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA019,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA019,1,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA019,6,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA019,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA019,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA019,1,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA019,1,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA019,1,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA019,1,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA019,1,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA019,1,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA019,1,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA019,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA019,1,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA019,1,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA019,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA019,1,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA019,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA019,1,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA019,1,But there are agamous matrilineages which function in ancestor worship,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA019,5,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA019,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA019,1,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA019,5,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA019,3,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA019,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA019,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA019,1,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA019,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA019,4,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA019,4,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA019,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA019,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA019,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA019,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA019,1,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA019,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA019,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA019,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA019,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA019,1,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA019,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA019,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA019,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA019,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA019,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA019,1,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA019,1,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA019,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA019,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA019,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA019,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA019,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA019,1,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA019,1,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA019,4,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA019,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA019,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA019,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA019,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA019,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA019,5,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA019,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA019,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA019,1,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA019,1,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA019,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA019,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA019,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA019,3,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA019,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA019,3,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA019,1,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA019,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA019,1,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA019,1,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA019,1,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA019,1,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA019,6,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA019,6,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA019,6,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA019,1,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA019,6,Implicit matrimoieties,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA019,6,The matrimoieties are implicit and unnamed,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA019,5,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA019,6,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA019,6,Implicit matrimoieties intersecting the patrimoieties to form four sections,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA019,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA019,1,"Although subsections were borrowed about 1915, they have not yet been integrated into the social system, and implicit matrimoieties have therefore not been established",falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA019,NA,,,, +Id9,,1910,EA019,6,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA019,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA019,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA019,1,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA019,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA019,1,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA019,1,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA019,1,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA019,1,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA019,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA019,1,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA019,1,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA019,1,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA019,1,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA019,1,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA019,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA019,1,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA019,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA019,1,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA019,1,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA019,1,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA019,3,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA019,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA019,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA019,4,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA019,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA019,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA019,1,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA019,1,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA019,1,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA019,1,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA019,1,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA019,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA019,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA019,6,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA019,1,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA019,1,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA019,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA019,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA019,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA019,5,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA019,4,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA019,4,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA019,4,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA019,4,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA019,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA019,4,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA019,4,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA019,4,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA019,4,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA019,4,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA019,4,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA019,4,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA019,4,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA019,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA019,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA019,3,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA019,4,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA019,3,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA019,4,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA019,1,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA019,3,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA019,4,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA019,1,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA019,1,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA019,1,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA019,1,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA019,1,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA019,5,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA019,4,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA019,4,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA019,4,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA019,6,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA019,4,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA019,1,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA019,5,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA019,1,"Though descent is actually ambilineal, matrilineal ties are considered stronger than patrilineal ones",hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA019,3,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA019,6,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA019,1,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA019,1,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA019,1,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA019,6,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA019,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA019,1,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA019,6,The matrimoieties are implicit,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA019,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA019,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA019,3,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA019,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA019,6,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA019,5,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA019,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA019,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA019,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA019,1,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA019,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA019,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA019,4,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA019,1,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA019,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA019,1,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA019,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA019,1,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA019,1,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA019,1,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA019,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA019,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA019,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA019,1,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA019,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA019,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA019,1,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA019,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA019,1,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA019,5,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA019,1,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA019,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA019,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA019,1,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA019,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA019,1,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA019,1,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA019,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA019,5,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA019,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA019,4,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA019,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA019,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA019,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA019,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA019,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA019,6,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA019,4,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA019,1,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA019,1,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA019,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA019,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA019,1,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA019,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA019,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA019,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA019,1,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA019,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA019,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA019,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA019,1,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA019,6,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA019,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA019,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA019,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA019,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA019,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA019,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA019,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA019,1,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA019,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA019,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA019,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA019,6,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA019,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA019,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA019,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA019,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA019,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA019,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA019,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA019,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA019,1,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA019,1,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA019,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA019,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA019,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA019,6,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA019,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA019,1,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA019,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA019,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA019,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA019,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA019,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA019,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA019,1,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA019,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA019,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA019,1,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA019,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA019,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA019,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA019,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA019,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA019,1,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA019,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA019,6,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA019,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA019,5,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA019,4,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA019,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA019,1,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA019,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA019,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA019,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA019,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA019,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA019,1,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA019,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA019,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA019,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA019,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA019,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA019,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA019,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA019,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA019,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA019,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA019,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA019,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA019,1,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA019,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA019,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA019,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA019,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA019,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA019,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA019,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA019,1,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA019,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA019,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA019,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA019,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA019,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA019,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA019,1,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA019,1,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA019,1,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA019,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA019,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA019,1,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA019,1,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA019,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA019,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA019,1,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA019,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA019,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA019,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA019,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA019,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA019,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA019,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA019,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA019,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA019,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA019,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA019,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA019,1,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA019,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA019,1,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA019,1,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA019,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA019,1,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA019,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA019,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA019,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA019,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA019,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA019,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA019,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA019,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA019,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA019,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA019,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA019,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA019,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA019,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA019,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA019,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA019,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA019,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA019,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA019,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA019,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA019,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA019,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA019,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA019,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA019,1,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA019,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA019,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA019,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA019,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA019,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA019,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA019,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA019,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA019,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA019,6,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA019,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA019,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA019,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA019,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA019,1,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA019,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,1760,EA019,1,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968, +Ne3,Comanche Tribe,1870,EA019,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA019,5,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA019,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA019,6,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA019,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA019,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA019,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA019,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA019,1,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA019,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA019,1,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA019,1,"But castes were matrilineal, much as among the Natchez",parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA019,1,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA019,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA019,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA019,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA019,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA019,3,"Though not specifically attested, matrilineages are suggested by analysis of the kinship terminology",dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA019,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA019,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA019,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA019,4,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA019,6,But the kindred Mohawk and Oneida tribes lacked moieties,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA019,4,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA019,6,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA019,1,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA019,6,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA019,1,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA019,5,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA019,6,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA019,1,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA019,4,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA019,4,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA019,1,"Matrilineages were subsequently borrowed from the Creek, but descent was always matrilineal with respect to social classes",macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA019,5,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA019,1,"Sturtevant questions the note that the Catawba were ""probably matrilineal aborginally,"" doubting the reliability of Lederer on the basis of whom the statement was made",speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA019,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA019,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA019,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA019,3,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA019,3,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA019,3,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA019,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA019,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA019,5,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA019,4,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA019,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA019,3,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA019,1,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA019,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA019,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA019,4,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA019,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA019,4,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA019,1,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA019,4,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA019,5,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA019,5,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA019,1,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA019,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA019,4,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA019,3,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA019,1,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA019,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA019,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA019,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA019,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA019,1,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA019,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA019,1,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA019,1,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,1920,EA019,1,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968, +Nj1,Ojitlan,1940,EA019,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA019,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA019,1,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,1950,EA019,1,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968, +Nj13,,1900,EA019,1,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA019,1,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA019,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA019,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA019,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA019,1,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA019,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA019,1,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA019,1,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA019,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA019,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA019,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA019,1,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA019,1,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA019,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA019,4,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA019,1,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA019,1,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA019,1,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA019,1,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA019,1,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA019,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA019,6,"Formerly moieties (code ""6"")",gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA019,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA019,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA019,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA019,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA019,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA019,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA019,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA019,1,"But Schwerin reports lineages (code ""3"")",schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA019,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA019,4,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA019,1,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA019,NA,"Descent may have been matrilineal, like inheritance",rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA019,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA019,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA019,4,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA019,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA019,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA019,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA019,1,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA019,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA019,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA019,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA019,4,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA019,1,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA019,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA019,1,"The ""extended families"" are conceivably localized matrilineages",wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA019,1,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA019,4,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA019,1,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA019,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA019,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA019,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA019,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA019,1,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA019,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA019,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA019,1,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA019,1,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA019,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA019,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA019,1,"Possibly lineages (code ""3""), though descent is specifically reported to be bilateral",holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA019,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA019,1,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA019,1,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA019,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA019,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA019,1,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA019,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA019,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA019,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA019,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA019,1,But some authors infer matrilineal descent,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA019,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA019,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA019,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA019,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA019,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA019,1,"Possibly lineages (code ""3"") in view of reported matrilineal succession",ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA019,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA019,1,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA019,1,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA019,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA019,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA019,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA019,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA019,1,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA019,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA019,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA019,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA019,1,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA019,1,But Karsten dubiously reports matrilineal descent,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA019,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA019,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA019,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA019,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA019,6,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA019,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA019,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA019,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA019,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA019,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA019,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA019,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA019,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,1940,EA019,1,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA019,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA019,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA019,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA019,1,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA019,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA019,6,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA019,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA019,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA019,NA,"Parallel descent, i.e., patrilineal for males and matrilineal for females",mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA019,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA019,1,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA019,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA019,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA019,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA019,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA019,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA019,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA019,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA019,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA019,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA019,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA019,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA019,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA019,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA019,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA019,4,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA019,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA019,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA019,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA019,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA019,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA019,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA019,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA019,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA019,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA019,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA019,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA019,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA002,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA002,6,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA002,3,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA002,3,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA002,7,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA002,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA002,3,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA002,4,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA002,4,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA002,3,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA002,0,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA002,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA002,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA002,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA002,0,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA002,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA002,1,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA002,1,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA002,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA002,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA002,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA002,1,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA002,2,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA002,0,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA002,1,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA002,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA002,1,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA002,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA002,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA002,1,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA002,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA002,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA002,0,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA002,2,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA002,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA002,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA002,0,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA002,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA002,0,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA002,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA002,2,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA002,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA002,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA002,0,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA002,2,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA002,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA002,2,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA002,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA002,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA002,2,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA002,2,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA002,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA002,2,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA002,1,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA002,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA002,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA002,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA002,3,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA002,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA002,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA002,1,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA002,2,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA002,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA002,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA002,0,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA002,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA002,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA002,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA002,1,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA002,1,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA002,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA002,2,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA002,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA002,2,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA002,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA002,1,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA002,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA002,1,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA002,0,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA002,2,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA002,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA002,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA002,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA002,1,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA002,2,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA002,0,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA002,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA002,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA002,1,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA002,0,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA002,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA002,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA002,2,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA002,0,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA002,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA002,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA002,0,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA002,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA002,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA002,1,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA002,1,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA002,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA002,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA002,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA002,0,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA002,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA002,0,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA002,0,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA002,0,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA002,0,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA002,0,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA002,0,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA002,0,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA002,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA002,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA002,0,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA002,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA002,0,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA002,0,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA002,2,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA002,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA002,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA002,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA002,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA002,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA002,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA002,1,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA002,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA002,2,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA002,0,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA002,0,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA002,0,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA002,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA002,1,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA002,2,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA002,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA002,2,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA002,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA002,0,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA002,4,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA002,2,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA002,1,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA002,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA002,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA002,2,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA002,0,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA002,1,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA002,0,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA002,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA002,0,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA002,3,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA002,4,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA002,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA002,2,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA002,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA002,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA002,0,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA002,1,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA002,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA002,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA002,1,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA002,2,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA002,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA002,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA002,1,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA002,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA002,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA002,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA002,0,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA002,2,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA002,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA002,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA002,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA002,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA002,2,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA002,1,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA002,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA002,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA002,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA002,1,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA002,1,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA002,2,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA002,2,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA002,0,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA002,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA002,2,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA002,0,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA002,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA002,1,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA002,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA002,0,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA002,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA002,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA002,1,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA002,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA002,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA002,0,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA002,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA002,0,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA002,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA002,0,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA002,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA002,0,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA002,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA002,0,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA002,1,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA002,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA002,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA002,1,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA002,1,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA002,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA002,0,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA002,0,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA002,1,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA002,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA002,2,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA002,1,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA002,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA002,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA002,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA002,1,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA002,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA002,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA002,1,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA002,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA002,1,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA002,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA002,0,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA002,1,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA002,0,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA002,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA002,3,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA002,2,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA002,0,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA002,1,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA002,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA002,0,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA002,0,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA002,0,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA002,0,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA002,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA002,0,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA002,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA002,0,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA002,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA002,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA002,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA002,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA002,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA002,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA002,0,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA002,0,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA002,0,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA002,0,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA002,0,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA002,0,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA002,1,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA002,0,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA002,0,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA002,1,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA002,0,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA002,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA002,1,But the economy is primarily mercantile,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA002,0,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA002,1,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA002,0,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA002,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA002,1,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA002,0,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA002,0,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA002,0,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA002,1,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA002,0,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA002,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA002,0,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA002,0,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA002,0,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA002,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA002,0,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA002,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA002,0,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA002,0,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA002,1,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA002,0,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA002,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA002,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA002,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA002,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA002,1,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA002,0,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA002,1,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA002,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA002,0,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA002,0,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA002,0,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA002,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA002,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA002,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA002,1,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA002,1,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA002,1,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA002,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA002,0,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA002,0,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA002,0,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA002,0,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA002,0,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA002,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA002,1,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA002,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA002,1,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA002,0,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA002,0,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA002,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA002,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA002,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA002,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA002,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA002,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA002,2,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA002,0,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA002,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA002,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA002,1,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA002,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA002,0,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA002,0,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA002,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA002,0,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA002,0,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA002,0,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA002,1,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA002,2,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA002,0,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA002,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA002,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA002,2,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA002,2,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA002,2,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA002,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA002,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA002,3,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA002,0,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA002,1,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA002,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA002,0,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA002,0,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA002,1,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA002,0,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA002,0,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA002,1,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA002,0,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA002,0,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA002,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA002,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA002,2,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA002,2,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA002,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA002,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA002,0,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA002,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA002,0,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA002,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA002,2,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA002,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA002,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA002,0,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA002,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA002,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA002,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA002,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA002,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA002,1,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA002,1,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA002,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA002,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA002,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA002,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA002,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA002,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA002,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA002,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA002,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA002,1,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA002,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA002,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA002,2,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA002,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA002,0,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA002,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA002,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA002,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA002,2,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA002,2,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA002,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA002,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA002,0,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA002,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA002,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA002,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA002,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA002,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA002,2,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA002,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA002,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA002,0,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA002,0,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA002,1,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA002,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA002,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA002,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA002,0,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA002,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA002,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA002,0,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA002,0,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA002,1,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA002,1,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA002,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA002,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA002,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA002,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA002,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA002,0,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA002,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA002,0,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA002,1,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA002,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA002,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA002,0,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA002,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA002,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA002,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA002,0,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA002,0,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA002,0,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA002,0,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA002,1,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA002,0,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA002,0,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA002,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA002,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA002,0,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA002,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA002,0,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA002,0,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA002,0,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA002,0,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA002,0,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA002,0,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA002,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA002,1,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA002,0,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA002,0,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA002,0,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA002,0,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA002,0,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA002,0,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA002,1,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA002,0,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA002,0,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA002,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA002,0,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA002,0,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA002,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA002,0,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA002,0,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA002,0,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA002,0,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA002,0,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA002,0,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA002,0,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA002,0,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA002,0,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA002,0,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA002,0,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA002,1,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA002,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA002,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA002,0,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA002,0,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA002,0,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA002,1,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA002,1,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA002,0,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA002,0,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA002,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA002,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA002,1,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA002,1,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA002,0,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA002,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA002,0,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA002,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA002,2,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA002,0,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA002,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA002,0,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA002,0,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA002,0,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA002,0,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA002,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA002,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA002,0,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA002,1,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA002,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA002,0,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA002,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA002,0,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA002,0,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA002,0,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA002,0,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA002,0,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA002,0,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA002,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA002,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA002,0,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA002,0,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA002,0,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA002,0,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA002,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA002,0,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA002,0,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA002,0,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA002,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA002,0,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA002,0,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA002,0,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA002,0,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA002,0,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA002,0,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA002,0,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA002,0,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA002,0,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA002,0,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA002,0,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA002,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA002,0,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA002,1,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA002,0,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA002,0,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA002,2,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA002,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA002,2,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA002,0,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA002,0,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA002,0,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA002,0,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA002,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA002,0,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA002,0,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA002,0,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA002,0,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA002,0,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA002,0,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA002,0,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA002,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA002,0,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA002,0,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA002,0,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA002,1,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA002,0,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA002,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA002,0,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA002,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA002,0,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA002,0,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA002,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA002,0,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA002,0,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA002,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA002,2,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA002,0,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA002,1,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA002,0,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA002,0,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA002,0,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA002,0,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA002,0,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA002,0,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA002,0,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA002,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA002,0,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA002,0,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA002,0,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA002,1,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA002,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA002,1,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA002,0,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA002,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA002,0,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA002,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA002,0,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA002,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA002,1,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA002,0,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA002,2,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA002,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA002,1,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA002,3,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA002,3,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA002,2,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA002,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA002,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA002,3,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA002,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA002,5,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA002,3,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA002,3,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA002,3,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA002,0,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA002,0,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA002,0,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA002,1,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA002,0,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA002,0,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA002,0,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA002,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA002,0,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA002,1,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA002,0,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA002,0,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA002,0,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA002,0,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA002,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA002,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA002,0,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA002,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA002,0,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA002,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA002,0,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA002,1,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA002,0,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA002,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA002,0,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA002,0,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA002,0,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA002,1,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA002,1,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA002,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA002,0,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA002,0,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA002,0,But the Pandit themselves do not engage in food production,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA002,0,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA002,1,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA002,0,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA002,0,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA002,0,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA002,2,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA002,0,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA002,0,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA002,1,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA002,0,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA002,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA002,0,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA002,1,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA002,0,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA002,1,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA002,2,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA002,0,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA002,0,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA002,0,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA002,3,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA002,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA002,0,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA002,0,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA002,0,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA002,0,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA002,0,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA002,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA002,2,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA002,2,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA002,1,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA002,1,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA002,2,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA002,1,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA002,2,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA002,0,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA002,2,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA002,1,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA002,1,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA002,0,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA002,2,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA002,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA002,1,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA002,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA002,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA002,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA002,2,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA002,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA002,0,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA002,0,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA002,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA002,1,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA002,0,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA002,0,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA002,0,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA002,3,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA002,0,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA002,0,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA002,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA002,2,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA002,0,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA002,0,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA002,2,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA002,3,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA002,1,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA002,0,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA002,0,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA002,0,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA002,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA002,2,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA002,1,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA002,0,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA002,0,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA002,2,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA002,0,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA002,0,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA002,2,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA002,1,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA002,1,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA002,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA002,0,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA002,0,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA002,0,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA002,0,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA002,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA002,0,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA002,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA002,3,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA002,1,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA002,0,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA002,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA002,0,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA002,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA002,0,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA002,0,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA002,0,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA002,0,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA002,2,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA002,1,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA002,1,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA002,1,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA002,1,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA002,4,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA002,4,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA002,3,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA002,3,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA002,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA002,3,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA002,3,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA002,3,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA002,5,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA002,4,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA002,2,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,1830,EA002,4,,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA002,3,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA002,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA002,0,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA002,1,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA002,2,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA002,2,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA002,0,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA002,1,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA002,1,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA002,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA002,1,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA002,2,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA002,2,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA002,2,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA002,0,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA002,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA002,1,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA002,2,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA002,1,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA002,2,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA002,1,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA002,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA002,0,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA002,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA002,1,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA002,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA002,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA002,2,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA002,2,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA002,0,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA002,3,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA002,2,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA002,0,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA002,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA002,0,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA002,1,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA002,1,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA002,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA002,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA002,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA002,0,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA002,0,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA002,0,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA002,0,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA002,0,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA002,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA002,0,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA002,0,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA002,0,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA002,0,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA002,0,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA002,0,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA002,0,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA002,0,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA002,0,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA002,0,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA002,0,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA002,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA002,0,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA002,1,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA002,1,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA002,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA002,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA002,1,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA002,0,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA002,0,Primarily traders,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA002,2,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA002,0,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA002,0,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA002,0,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA002,0,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA002,1,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA002,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA002,0,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA002,1,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA002,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA002,0,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA002,0,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA002,0,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA002,0,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA002,0,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA002,0,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA002,0,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA002,0,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA002,1,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA002,0,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA002,0,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA002,0,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA002,0,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA002,0,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA002,1,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA002,1,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA002,0,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA002,0,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA002,0,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA002,0,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA002,0,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA002,0,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA002,0,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA002,0,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA002,0,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA002,0,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA002,0,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA002,0,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA002,0,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA002,0,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA002,0,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA002,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA002,0,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA002,0,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA002,0,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA002,0,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA002,0,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA002,0,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA002,1,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA002,6,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA002,2,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA002,2,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA002,7,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA002,2,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA002,4,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA002,3,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA002,4,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA002,5,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA002,4,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA002,3,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA002,4,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA002,5,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA002,5,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA002,4,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA002,2,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA002,2,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA002,4,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA002,5,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA002,5,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA002,5,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA002,4,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA002,6,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA002,5,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA002,6,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA002,4,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA002,4,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA002,5,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA002,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA002,4,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA002,3,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA002,3,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA002,4,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA002,4,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA002,5,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA002,5,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA002,4,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA002,6,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA002,6,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA002,7,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA002,3,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA002,3,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA002,4,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA002,3,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA002,2,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA002,4,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA002,2,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA002,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA002,3,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA002,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA002,2,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA002,3,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA002,2,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA002,3,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA002,2,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA002,3,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA002,3,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA002,3,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA002,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA002,3,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA002,2,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA002,3,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA002,3,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA002,3,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA002,2,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA002,3,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA002,2,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA002,3,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA002,2,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA002,3,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA002,3,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA002,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA002,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA002,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA002,3,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA002,4,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA002,3,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA002,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA002,3,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA002,2,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA002,2,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA002,3,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA002,2,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA002,3,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA002,4,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA002,2,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA002,3,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA002,3,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA002,3,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA002,2,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA002,3,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA002,3,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA002,3,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA002,3,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA002,3,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA002,3,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA002,3,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA002,3,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA002,3,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA002,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA002,3,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA002,3,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA002,3,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA002,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA002,2,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA002,3,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA002,4,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA002,4,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA002,4,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA002,2,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA002,3,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA002,3,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA002,3,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA002,4,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA002,3,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA002,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA002,3,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA002,2,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA002,3,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA002,3,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA002,4,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA002,4,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA002,4,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA002,3,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA002,3,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA002,3,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA002,2,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA002,3,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA002,6,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA002,3,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA002,3,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA002,3,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA002,3,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA002,4,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA002,3,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA002,3,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA002,2,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA002,3,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA002,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA002,2,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA002,4,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA002,3,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA002,4,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA002,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA002,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA002,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA002,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA002,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA002,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA002,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA002,2,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA002,3,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA002,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA002,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA002,4,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA002,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA002,5,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA002,3,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA002,4,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA002,4,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA002,3,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA002,3,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA002,3,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA002,4,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA002,4,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA002,3,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA002,3,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA002,3,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA002,3,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA002,5,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA002,4,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA002,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA002,3,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA002,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA002,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA002,5,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA002,5,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA002,5,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA002,4,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA002,4,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA002,3,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA002,3,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA002,3,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA002,3,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA002,8,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA002,3,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA002,7,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA002,8,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA002,8,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA002,6,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA002,2,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA002,3,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA002,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA002,8,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA002,6,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA002,8,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA002,7,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,1760,EA002,5,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968, +Ne3,Comanche Tribe,1870,EA002,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA002,8,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA002,8,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA002,3,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA002,8,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA002,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA002,8,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA002,5,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA002,5,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA002,4,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA002,4,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA002,2,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA002,4,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA002,3,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA002,4,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA002,3,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA002,4,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA002,4,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA002,4,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA002,3,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA002,2,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA002,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA002,3,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA002,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA002,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA002,4,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA002,3,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA002,2,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA002,NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA002,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA002,4,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA002,2,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA002,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA002,3,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA002,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA002,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA002,4,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA002,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA002,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA002,1,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA002,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA002,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA002,4,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA002,4,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA002,4,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA002,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA002,2,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA002,0,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA002,2,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA002,2,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA002,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA002,3,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA002,4,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA002,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA002,1,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA002,1,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA002,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA002,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA002,1,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA002,2,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA002,2,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA002,2,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA002,2,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA002,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA002,2,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA002,2,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA002,2,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA002,4,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA002,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA002,1,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA002,2,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,1920,EA002,2,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968, +Nj1,Ojitlan,1940,EA002,0,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA002,0,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA002,2,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,1950,EA002,0,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968, +Nj13,,1900,EA002,1,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA002,1,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA002,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA002,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA002,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA002,0,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA002,0,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA002,1,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA002,1,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA002,0,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA002,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA002,2,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA002,1,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA002,1,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA002,0,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA002,2,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA002,1,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA002,1,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA002,0,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA002,0,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA002,1,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA002,2,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA002,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA002,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA002,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA002,0,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA002,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA002,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA002,0,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA002,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA002,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA002,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA002,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA002,1,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA002,1,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA002,0,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA002,3,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA002,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA002,2,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA002,2,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA002,3,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA002,2,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA002,2,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA002,3,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA002,2,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA002,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA002,2,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA002,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA002,3,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA002,2,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA002,2,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA002,3,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA002,4,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA002,2,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA002,3,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA002,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA002,2,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA002,3,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA002,2,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA002,4,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA002,2,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA002,4,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA002,0,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA002,5,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA002,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA002,2,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA002,2,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA002,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA002,2,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA002,5,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA002,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA002,2,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA002,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA002,4,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA002,2,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA002,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA002,0,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA002,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA002,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA002,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA002,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA002,3,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA002,2,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA002,1,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA002,2,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA002,0,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA002,6,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA002,7,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA002,2,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA002,2,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA002,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA002,6,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA002,4,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA002,3,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA002,4,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA002,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA002,3,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA002,5,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA002,5,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA002,0,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA002,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA002,2,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA002,3,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA002,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA002,2,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA002,2,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA002,2,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,1940,EA002,2,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA002,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA002,2,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA002,3,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA002,3,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA002,6,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA002,3,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA002,4,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA002,2,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA002,2,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA002,2,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA002,2,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA002,0,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA002,0,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA002,0,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA002,0,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA002,0,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA002,0,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA002,0,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA002,2,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA002,0,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA002,0,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA002,0,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA002,0,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA002,0,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA002,0,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA002,0,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA002,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA002,0,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA002,8,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA002,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA002,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA002,3,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA002,5,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA002,3,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA002,3,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA002,3,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA002,3,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA002,4,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA020,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aa2,with special reference to Central Dorobo,1920,EA020,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aa3,Gei/Khauan tribe,1840,EA020,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aa4,,1920,EA020,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aa5,"Epulu net-hunters, Ituri forest",1930,EA020,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aa6,,1920,EA020,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aa7,,1910,EA020,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aa8,,1850,EA020,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aa9,Hatsa Kindiga Tribe,1910,EA020,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab1,,1900,EA020,4,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA020,1,,hunter1936,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab11,,1850,EA020,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab12,,1830,EA020,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA020,1,Quasi-lineages inferred from the patrilocal but basically territorial ward organization and from vestigial patrisibs,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab14,,1930,EA020,1,,krigeandkrige1943,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab15,,1860,EA020,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab16,,1930,EA020,1,,earthy1933,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab17,,1920,EA020,2,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA020,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab19,with special reference to the Kuanyama,1910,EA020,4,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA020,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab20,,1880,EA020,4,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA020,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab21b,,1925,EA020,1,,cook1931,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab22,,1920,EA020,1,,junod1936,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab3,Ruling Luyana,1890,EA020,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab4,,1920,EA020,1,,junod1927,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab5,,1930,EA020,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA020,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA020,4,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA020,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ab9,,1870,EA020,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ac1,,1920,EA020,4,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA020,4,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA020,4,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA020,4,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA020,3,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA020,4,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA020,3,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA020,4,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA020,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA020,3,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA020,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA020,3,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA020,3,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA020,4,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA020,4,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA020,4,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA020,3,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA020,3,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA020,4,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA020,4,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA020,4,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA020,4,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA020,4,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA020,4,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA020,4,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA020,4,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA020,4,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA020,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA020,4,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA020,1,"Formerly sibs (code ""4"")",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ac37,,1950,EA020,4,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA020,4,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA020,4,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA020,4,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA020,4,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA020,4,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA020,4,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA020,1,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ac5,,1920,EA020,4,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA020,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA020,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA020,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA020,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad1,,1950,EA020,1,,grottanelli1955,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad10,,1910,EA020,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad11,,1930,EA020,1,,culwickandculwick1935,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad12,,1940,EA020,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad13,,1930,EA020,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad14,Morogoro District,1930,EA020,4,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA020,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad16,,1920,EA020,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad17,,1920,EA020,1,,kootzkretschmer192629,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad18,,1910,EA020,1,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad19,,1910,EA020,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad2,,1950,EA020,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad20,,1920,EA020,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad21,,1930,EA020,1,"""A man belongs to the kin group (uluko) of his father's father or his son's son, but not to that of his father or of his son (who both belong to another uluko). There is perpetual alternation of two uluko-names in each patrilineage.""",maurice193538,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad22,,1950,EA020,1,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad23,,1910,EA020,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad24,,1910,EA020,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad25,,1900,EA020,4,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA020,1,,sick1916,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad27,,1880,EA020,3,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA020,4,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA020,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad3,,1910,EA020,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad30,,1890,EA020,3,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA020,3,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA020,1,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad33,,1900,EA020,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad34,,1910,EA020,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA020,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad36,,1890,EA020,1,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad37,,1940,EA020,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad38,,1910,EA020,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad39,,1950,EA020,1,,gray1963,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad4,Fort Hall or Metume district,1930,EA020,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad40,,1950,EA020,1,,sangree1965,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad41,,1930,EA020,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad42,,1900,EA020,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad43,,1900,EA020,1,,hurel1911,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad44,,1920,EA020,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad45,,1920,EA020,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad46,,1950,EA020,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad47,,1900,EA020,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad48,,1950,EA020,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad49,,1950,EA020,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad5,,1940,EA020,3,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA020,4,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA020,4,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA020,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad7,Kyaddondo district (V: Kampala),1880,EA020,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad8,with special reference to the northern or Iringa group,1910,EA020,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ad9,,1900,EA020,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae1,with special reference to those of Bwamba in Uganda,1950,EA020,1,,winter1956; winter1958,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae10,,1910,EA020,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae11,,1900,EA020,1,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae12,,1940,EA020,1,Matrilineal descent was formerly recognized,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae13,,1920,EA020,1,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae14,,1950,EA020,1,,hertefeltetal1962,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae15,,1940,EA020,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae16,,1910,EA020,1,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae17,,1900,EA020,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae18,,1900,EA020,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae19,,1930,EA020,1,,grevisse193738,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae2,,1950,EA020,3,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA020,1,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae21,,1920,EA020,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae22,with special reference to the Bankutu,1900,EA020,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae23,,1930,EA020,1,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae24,,1920,EA020,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae25,with special reference to the northern Tetela,1920,EA020,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae26,,1910,EA020,1,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA020,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae28,,1900,EA020,1,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae29,,1900,EA020,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae3,,1910,EA020,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae30,,1920,EA020,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae31,,1920,EA020,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae32,,1920,EA020,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae33,,1920,EA020,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae34,,1920,EA020,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae35,,1900,EA020,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae36,,1920,EA020,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae37,,1930,EA020,1,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae38,,1920,EA020,4,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA020,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae4,Ilanga group,1930,EA020,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA020,3,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA020,1,,andersson1953,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae42,,1900,EA020,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae43,,1900,EA020,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae44,,1920,EA020,NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA020,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae46,,1870,EA020,4,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA020,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae48,,1930,EA020,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae49,,1900,EA020,1,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae5,,1910,EA020,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae50,,1920,EA020,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae51,Ndiki subtribe,1940,EA020,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae52,,1950,EA020,1,"But descent is matrilineal in the extreme south, adjacent to the Kom",kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae53,,1920,EA020,1,,nicol1929,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae54,,1950,EA020,3,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA020,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae56,,1950,EA020,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae57,,1930,EA020,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae58,,1910,EA020,1,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae59,with special reference to the Ngie subtribe,1950,EA020,1,,kaberry1952,Ethnology_Vol5_No1_Jan_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae6,with special reference to the Bena Kalundwe,1930,EA020,1,,verhulpen1936,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae7,,1910,EA020,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae8,,1910,EA020,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ae9,,1950,EA020,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af1,City and environs of Abomey,1890,EA020,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af10,,1930,EA020,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af11,,1920,EA020,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af12,with special reference to the Kwahu,1930,EA020,4,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA020,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af14,,1930,EA020,3,"From a recent report, matrilineages have apparently become converted into ambilineal ramages",hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA020,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af16,,1910,EA020,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af17,,1900,EA020,NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA020,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af19,,1950,EA020,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af2,,1950,EA020,1,,neel1913; paulme1954,EthnographicAtlas_1967_p66,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af20,,1910,EA020,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af21,with special reference to the Kalabari,1920,EA020,1,"The so-called ""houses"" are presumably ramages rather than patrilineages in view of the reported avunculocal residence and matrilineal affiliation in cases where only a token bride-price is paid",granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af22,,1940,EA020,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af23,with special reference to the village of Mgbom,1950,EA020,4,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA020,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af25,,1930,EA020,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af26,with special reference to the Etsako,1900,EA020,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af27,,1950,EA020,1,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af28,,1910,EA020,1,,gunnandconant1960,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af29,,1950,EA020,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af3,Kumasi State,1900,EA020,4,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA020,1,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af31,with special reference to the Lafia,1960,EA020,1,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af32,Abeouta Province and Benin,1920,EA020,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA020,1,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA020,1,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA020,2,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA020,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af37,with special reference to the Akpafu,1900,EA020,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af38,,1900,EA020,3,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA020,4,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA020,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA020,3,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA020,NA,"There are lineages, formerly matrilineal but more recently patrilineal",crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA020,3,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA020,1,"But Daniell reports exogamy (code ""2"")",daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af44,,1900,EA020,3,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA020,3,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA020,1,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af47,,1940,EA020,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af48,,1850,EA020,1,,wilson1856,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af49,,1940,EA020,1,,schwab1947,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af5,,1930,EA020,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af50,,1920,EA020,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af51,,1920,EA020,1,,tauxier1924a,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af52,,1920,EA020,1,,tauxier1924a,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af53,,1950,EA020,1,,holas1962,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af54,,1930,EA020,1,,germann1933; schwab1947,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af55,,1950,EA020,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af56,with special reference to the Gio of the Ivory Coast,1930,EA020,1,,schwab1947; viard1934,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af57,,1910,EA020,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af58,,1900,EA020,1,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af6,"Yoruba, with special reference to the Oyo",1950,EA020,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af7,,1950,EA020,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af8,,1930,EA020,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Af9,,1900,EA020,3,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA020,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag10,,1940,EA020,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag11,,1910,EA020,3,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA020,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA020,1,But witchcraft powers are matrilineally transmitted,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag14,,1950,EA020,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag15,,1930,EA020,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag16,,1930,EA020,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag17,,1940,EA020,1,,gomes1946,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag18,,1930,EA020,4,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA020,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA020,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag20,,1930,EA020,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag21,,1910,EA020,3,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA020,4,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA020,1,,monteil1915,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag24,,1910,EA020,1,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag25,,1900,EA020,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag26,,1930,EA020,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag27,,1910,EA020,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag28,,,EA020,NA,,,, +Ag29,,1910,EA020,1,,tauxier1917,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag3,,1930,EA020,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag30,,1910,EA020,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag31,,1910,EA020,1,,cheron1913; holas1957,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag32,,1900,EA020,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag33,,,EA020,NA,,,, +Ag34,,1930,EA020,3,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA020,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA020,3,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA020,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag38,,1910,EA020,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA020,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA020,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA020,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA020,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA020,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag43,,1920,EA020,1,,rattray1932,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag44,,1910,EA020,2,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA020,1,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag46,,1920,EA020,2,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA020,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag48,,1890,EA020,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag49,,1930,EA020,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag5,,1930,EA020,3,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA020,1,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag51,,1940,EA020,1,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag52,,1950,EA020,1,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag53,with special reference to those of Garango,1960,EA020,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag54,,1910,EA020,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag6,,1890,EA020,1,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag7,,1930,EA020,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ag8,with special reference to the Coniagui,1910,EA020,3,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA020,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah1,Zaria Province,1930,EA020,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA020,1,"But Gunn reports matrilineal ""clans"" as well as patrilineages",gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah11,,1950,EA020,1,,gunnandconant1960,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah12,,1920,EA020,1,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah13,,,EA020,NA,,,, +Ah14,,1920,EA020,1,,gunnandconant1960,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah15,,1920,EA020,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah16,,1900,EA020,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah17,,1930,EA020,1,,gunn1953,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah18,,1930,EA020,1,,bestnd,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah19,,1930,EA020,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah2,,1920,EA020,1,,meek1931a,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah20,,1920,EA020,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah21,,1920,EA020,1,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah22,,1900,EA020,NA,"The reported ""clans"" are presumably patrilineal, though Ames mentions very strong survivals of matrilineal descent",ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA020,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah24,,1920,EA020,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah25,,1920,EA020,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah26,,1920,EA020,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA020,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah28,with special reference to the Lekon subtribe,1920,EA020,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA020,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA020,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah30,,1920,EA020,3,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA020,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah32,,1920,EA020,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah33,,1920,EA020,1,,meek1931b; temple1922,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah34,with special reference to the Malabu,1920,EA020,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah35,,1920,EA020,1,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah36,,1920,EA020,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah37,,1920,EA020,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah38,,1930,EA020,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah39,,1950,EA020,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah4,,1920,EA020,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah5,,1930,EA020,1,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah6,,1920,EA020,3,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA020,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah8,,1910,EA020,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ah9,,1920,EA020,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai1,,1920,EA020,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai10,Nuba Hills,1940,EA020,1,,nadel1947,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai11,,1900,EA020,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai12,,1950,EA020,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai13,,1920,EA020,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai14,,1920,EA020,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai15,,1900,EA020,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai16,,,EA020,NA,,,, +Ai17,,1930,EA020,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai18,,,EA020,NA,,,, +Ai19,,1910,EA020,1,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai2,,1940,EA020,3,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA020,1,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai21,,1880,EA020,1,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai22,,1890,EA020,1,,delafosse1897,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai23,,1920,EA020,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai24,,1900,EA020,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai25,,1950,EA020,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai26,,1920,EA020,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai27,,1890,EA020,1,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai28,,1910,EA020,1,,delhaise1912,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai29,,1920,EA020,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai3,,1920,EA020,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai30,,1920,EA020,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai31,,1920,EA020,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai32,,1920,EA020,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai33,,1940,EA020,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai34,,1880,EA020,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai35,,1870,EA020,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai36,,1920,EA020,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai37,,1940,EA020,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai38,,1930,EA020,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA020,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA020,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai40,,1940,EA020,1,,nadel1947,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai41,,1930,EA020,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai42,,1940,EA020,3,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA020,1,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai44,,1920,EA020,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai45,,1930,EA020,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai46,,1930,EA020,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai47,Northern division,1939,EA020,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai5,,1920,EA020,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai6,Shilluk Kingdom,1900,EA020,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai7,,1910,EA020,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai8,,1930,EA020,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ai9,Around Yagoua in Cameroon,1910,EA020,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj1,,1950,EA020,1,,lawrance1957,EthnographicAtlas_1967_p74,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj10,,1920,EA020,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj11,,1900,EA020,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj12,,1920,EA020,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj13,,1930,EA020,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj14,,1931,EA020,1,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj15,,1900,EA020,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj16,with special reference to the Riverain Mondari,1930,EA020,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj17,,1890,EA020,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj18,,1950,EA020,1,,jensen1959,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj19,,1920,EA020,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA020,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj20,,1940,EA020,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj21,,1930,EA020,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj22,,1930,EA020,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj23,,1950,EA020,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj24,,1930,EA020,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj25,,1920,EA020,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj26,,1910,EA020,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj27,,1920,EA020,1,,roscoe1924,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj28,,1940,EA020,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj29,,1950,EA020,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj3,,1930,EA020,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj30,,1950,EA020,1,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj31,,1920,EA020,1,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj4,,1920,EA020,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj5,,1920,EA020,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj6,,1940,EA020,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj7,,1910,EA020,1,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj8,,1920,EA020,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Aj9,,1920,EA020,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca1,Town of Buso,1930,EA020,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca10,,1880,EA020,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca11,,1890,EA020,1,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca12,,1880,EA020,1,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca13,with special reference to the eastern Macha,1950,EA020,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca14,,1950,EA020,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca15,,1930,EA020,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca16,,1930,EA020,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca17,,1950,EA020,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca18,,1940,EA020,1,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca19,,1950,EA020,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca2,Dolbahanta clan or subtribe,1950,EA020,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca20,,1890,EA020,1,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca21,,1950,EA020,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca22,,1950,EA020,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca23,,1950,EA020,1,,jensen1959,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca24,,1950,EA020,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca25,,1950,EA020,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca26,,1950,EA020,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca27,,1930,EA020,1,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca28,,1950,EA020,1,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca29,,1920,EA020,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca3,,1950,EA020,1,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca30,Kafa Kingdom,1890,EA020,1,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca31,,1860,EA020,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca32,,1860,EA020,4,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA020,4,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA020,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca35,,1930,EA020,1,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca36,,1860,EA020,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca37,,,EA020,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA020,1,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca39,,1930,EA020,1,,lewis1965b,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca4,,1950,EA020,3,"Matrilineages are unnamed, unimportant, and not specifically reported to be exogamous",huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA020,1,,straube1963,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca41,,1950,EA020,1,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca42,,1950,EA020,1,,straube1963,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca43,,1930,EA020,1,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca5,,1930,EA020,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca6,,1880,EA020,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca7,Gondar district,1950,EA020,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca8,,1940,EA020,1,,leslau1950; shack1963,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ca9,,1890,EA020,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb1,,1940,EA020,1,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb10,,1920,EA020,1,,meek1931b,Ethnology_Vol4_No2_Apr_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb11,,1900,EA020,4,Inferred from matrilineal inheritance and succession,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA020,1,,reid1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb13,,1930,EA020,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb14,,1910,EA020,1,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb15,with special reference to the Humr,1940,EA020,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb16,,1920,EA020,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb17,Jebel Marra,1880,EA020,3,"Inferred from prohibition of marriage with a maternal cousin, from the matrilocal rule of residence, and from the report of ""totemism""",barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA020,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb19,,1870,EA020,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb2,Upper and lower Salum in Gambia,1950,EA020,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA020,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb21,,1930,EA020,1,,pfeffer1936,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb22,,1920,EA020,1,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb23,,1930,EA020,1,,kane1939; lafont1939,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb24,Wodaabe of Niger,1950,EA020,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb25,,1930,EA020,1,,anonymous1939,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb26,Zazzagawa of Zaria,1950,EA020,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb27,,1920,EA020,1,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb28,,1920,EA020,3,Matrilineal exogamy extends only to second cousins,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA020,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb3,Bamba division,1940,EA020,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb4,,1920,EA020,1,,reid1930,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb5,,1910,EA020,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb6,,1920,EA020,1,,woodnd,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb7,,1920,EA020,1,,meek1931b:288-310,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA020,1,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cb9,"Hausa, with special reference to the Kanawa",1940,EA020,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc1,,1950,EA020,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc10,,1900,EA020,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA020,1,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA020,NA,"Although descent is specifically reported as patrilineal, it may well be matrilineal as among other Tuareg",cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA020,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA020,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc15,,1920,EA020,1,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc16,,1930,EA020,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc17,,1930,EA020,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc18,,1910,EA020,1,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc19,,1950,EA020,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc2,Nomads of Tibesti,1950,EA020,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc20,with special reference to the more nomadic northern groups,1910,EA020,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc3,inhabitants of the oasis of Siwa,1920,EA020,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc4,,1920,EA020,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc5,,1910,EA020,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA020,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc7,Timbuctoo,1950,EA020,1,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA020,1,,hourst1899,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cc9,Ahaggaren tribe,1920,EA020,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA020,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd10,,1900,EA020,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd11,,1500,EA020,1,All authorities accept matrilineal descent on the basis of reported matrilineal inheritance and succession,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA020,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd13,,1930,EA020,1,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd14,,1870,EA020,1,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd15,,1910,EA020,1,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA020,1,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd17,,1920,EA020,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd18,,1920,EA020,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd19,,1920,EA020,1,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd2,Town and environs of Silwa,1950,EA020,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd20,,1940,EA020,1,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd21,,1930,EA020,1,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd3,Entirety: Moroccan,1920,EA020,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd4,,1890,EA020,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA020,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd6,with special reference to the New Empire,-1400,EA020,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd7,with special reference to the Zemmur tribe,1910,EA020,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd8,,1910,EA020,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cd9,,1900,EA020,1,,justinard1908,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ce1,Mountain Gheg of No. Albania,1900,EA020,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA020,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ce3,City and environs of Rome,100,EA020,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ce4,Labourd,1930,EA020,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA020,1,,parsons1964,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ce6,with special reference to the inhabitants of Andalusia,1950,EA020,1,,pittrivers1954,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ce7,with special reference to the village of Vasilika,1950,EA020,1,,firedl1962,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ce8,with special reference to the village of Vera,1934,EA020,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cf1,Small City in Connecticut,1920,EA020,1,,murdocknd,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cf2,of the Transvaal,1850,EA020,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cf3,,1930,EA020,1,,munch1945,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA020,1,,pierson1951,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cf5,,1930,EA020,1,,miner1939,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA020,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cg2,,1100,EA020,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cg3,County Clare,1930,EA020,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cg4,Konkama District,1950,EA020,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cg5,,1950,EA020,1,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch1,with special reference to the village of Orasac,1950,EA020,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch10,,1910,EA020,1,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch11,Viriatino Village,1955,EA020,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch2,,1890,EA020,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch3,with special reference to the Hana district of central Moravia,1940,EA020,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch4,,1900,EA020,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch5,with special reference to the village of Dragelevtsy,1940,EA020,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch6,,1910,EA020,1,,ember1954,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch7,,1930,EA020,1,,friedrich1954,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch8,,1940,EA020,1,,hanzeli1955,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ch9,,1930,EA020,1,,maciuika1955,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci1,with special reference to the Baga Dorbed group,1920,EA020,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci10,Vicinity of Erevan,1900,EA020,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci11,,1940,EA020,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci12,Abkhaz Tribe,1880,EA020,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci2,,1930,EA020,1,,grigolia1939,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA020,1,,gadzhieva1958,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci4,,1920,EA020,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci5,Northern Anatolian Plateau,1950,EA020,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci6,,1880,EA020,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci7,,1900,EA020,1,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci8,,1850,EA020,1,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ci9,,1910,EA020,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cj1,with special reference to the village of Tell Toqaan,1950,EA020,1,,sweet1960,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cj10,with special reference to the village of ech-Chibayish,1950,EA020,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cj2,Unspecified,1920,EA020,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cj3,,-800,EA020,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cj4,City and environs of Babylon,-2000,EA020,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cj5,,1930,EA020,1,,dickson1949,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cj6,with special reference to the sedentary population,1950,EA020,1,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cj7,with special reference to the village of Munsif,1950,EA020,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA020,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Cj9,,1950,EA020,1,,hazard1956,Ethnology_Vol5_No2_Apr_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea1,,1950,EA020,1,,bordiend; wilber1964,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea10,with special reference to the more nomadic groups,1950,EA020,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea11,with special reference to the Ghilzai tribe,1950,EA020,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea12,,1940,EA020,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea13,Mohla Village,1950,EA020,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea2,with special reference to the Yusufsai of Swat,1950,EA020,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea3,with special reference to the Urazgani,1930,EA020,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea4,,1950,EA020,1,,barth1956b,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea5,,1890,EA020,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea6,Nomadic branch,1958,EA020,1,,barth1961; barth1964,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea7,,1950,EA020,1,,schurmann1962,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea8,,1920,EA020,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ea9,,1950,EA020,1,,vreeland1957,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eb1,Great Horde,1910,EA020,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eb2,,1920,EA020,1,,krader1963; schram1954,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eb3,Narobanchin Territory,1940,EA020,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eb4,with special reference to the Botaha area,1940,EA020,1,,vreeland1954,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA020,1,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eb6,with special reference to those southeast of Lake Baikal,1900,EA020,1,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eb7,,1930,EA020,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eb8,with special reference to the Kongrat tribe,1800,EA020,1,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ec1,Sakhalin Island,1920,EA020,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ec10,with special reference to those on the Ob River,1880,EA020,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ec11,,1900,EA020,1,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ec2,with special reference to the Yakutsk district,1900,EA020,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA020,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ec4,Yurak Tribe,1900,EA020,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ec5,with special reference to the Maritime Koryak,1900,EA020,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ec6,Upper Kolyma River,1850,EA020,1,,jochelson191926,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ec7,Saru Basin in Hokkaido,1900,EA020,3,But there are patrilineal kin groups consisting of males only,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA020,1,,shimkin1939,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ec9,,1920,EA020,1,,lattimore1933,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed1,Kanghwa Island,1950,EA020,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed10,with special reference to the village of Taitou,1930,EA020,1,,yang1945,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed13,with special reference to the town of Kabira,1940,EA020,1,,smith1952,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA020,1,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed15a,with special reference to the village of Karimata,1950,EA020,1,,burd1952,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA020,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed16,with special reference to the village of Yannon,1940,EA020,1,,davenportnd,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed2,Liang Shan and Taliang S,1940,EA020,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed3,Aigun District,1920,EA020,1,,shirokogoroff1924,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA020,1,,mark1967; ruey1960,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed5,Okayama,1950,EA020,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA020,1,,kulp1925,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed7,,1950,EA020,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed8,,1930,EA020,1,,fitzgerald1941,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ed9,,1930,EA020,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ee1,,1940,EA020,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ee2,Hunza State,1930,EA020,1,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ee3,Lingthem and vicinity,1930,EA020,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ee4,with special reference to Central Tibet,1920,EA020,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ee5,with special reference to the Shina tribe,1870,EA020,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ee6,with special reference to those of Khumbu,1950,EA020,1,,furerhaimendorf1964,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ee7,,1840,EA020,1,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA020,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ef1,Bankura and Berghum Districts,1940,EA020,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ef10,Ganges River Valley,1880,EA020,1,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA020,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ef2,with special reference t the Western or Hindu Bengali,1940,EA020,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ef3,,-800,EA020,1,,karve1953,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ef4,,1920,EA020,1,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ef5,,1900,EA020,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ef6,,1940,EA020,1,,roy1915; roy1951,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA020,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA020,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA020,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA020,1,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA020,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eg11,with special reference to the Gommu Koya,1960,EA020,1,,tyler1965,Ethnology_Vol5_No4_Oct_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eg12,with special reference to the Bondo,1940,EA020,1,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eg13,Bastar State,1941,EA020,1,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA020,1,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA020,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eg3,Hill Maria,1938,EA020,1,,grigson1938,EthnographicAtlas_1967_p86,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eg4,Toda Tribe,1900,EA020,4,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA020,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eg6,with special reference to Northern Kerala,1799,EA020,4,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA020,1,,roy1935,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eg8,,1940,EA020,1,,griffiths1946,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eg9,,1930,EA020,1,,elwin1939,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eh1,,1870,EA020,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eh10,,NA,EA020,1,,dubois1938,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eh2,,1900,EA020,2,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA020,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA020,4,"Leach, on questionable evidence (see discussion Murdock (1965a)), denies the occurrence of matrilineal sibs",bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA020,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eh6,with special reference to the Kandyan Sinhalese,1950,EA020,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eh7,,1900,EA020,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eh8,,1900,EA020,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Eh9,,1930,EA020,1,,deschamps1936,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei1,Rengsanggr,1900,EA020,6,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA020,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei11,,1910,EA020,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei12,,1910,EA020,1,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei13,,1910,EA020,1,,hutton1921a,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei14,with special reference to the Chongli,1920,EA020,1,,mills1926; smith1925b,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei15,,1930,EA020,1,,mills1937,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei16,,1910,EA020,1,,hutton1921b,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei17,,1900,EA020,1,,stack1908,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei18,with special reference to the Katur subtribe,1920,EA020,1,,lowis1906; milne1924,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei19,,1940,EA020,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei2,,1920,EA020,1,,mills1922,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei20,with special reference to those of the Chittagong Hills,1940,EA020,1,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei3,Nondwin Village,1950,EA020,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei4,Lakher Tribe,1930,EA020,1,,parry1932,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei5,with special reference to the Jinghpaw,1940,EA020,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei6,,1930,EA020,1,,das1945; needham1958,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei7,,1910,EA020,1,But there are agamous matrilineages which function in ancestor worship,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ei8,with special reference to those of the Jaintia Hills,1900,EA020,5,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA020,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA020,1,,izikowitz1951,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej10,Ko-Sier Village,1950,EA020,5,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA020,3,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA020,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej13,,1940,EA020,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej14,with special reference to the eastern Semai,1960,EA020,1,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA020,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej16,Inas District,1958,EA020,4,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA020,4,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA020,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej4,Red River Delta in Tonkin,1950,EA020,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej5,,1950,EA020,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej6,of the Mergui Archipelago,1920,EA020,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej7,,1950,EA020,1,,bernatzik1947,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej8,with special reference to those of Trengganu,1940,EA020,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ej9,,1940,EA020,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA020,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia10,,1930,EA020,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia11,,1930,EA020,1,,mabuchi1960,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia12,,1950,EA020,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia13,Tawi-Tawi and adjacent islands,1960,EA020,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia14,,1930,EA020,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia15,with special reference to those of the Agusan Valley,1920,EA020,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia16,with special reference to the northern Kalinga,1910,EA020,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia17,,1910,EA020,1,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia18,with special reference to the village of Manland in western Negros,1950,EA020,1,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia2,,1950,EA020,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia3,Kiangan Group,1920,EA020,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia4,with special reference to the Eastern Subanun,1950,EA020,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia5,,1950,EA020,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia6,Su-Paiwan Village,1930,EA020,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA020,1,,fox1954,EthnographicAtlas_1967_p90,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia8,,1900,EA020,1,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ia9,with special reference to the southern Ami,1930,EA020,3,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA020,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA020,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA020,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ib4,with special reference to the Toba group,1930,EA020,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ib5,with special reference to the village of Sensuron,1920,EA020,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ib6,,1920,EA020,4,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA020,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ib8,with special reference to the Ridan group,1900,EA020,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ib9,with special reference to settled Punan,1950,EA020,1,,needham1955,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ic1,Borongloe,1940,EA020,1,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA020,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ic11,Allang,1950,EA020,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA020,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ic13,,1950,EA020,3,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA020,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ic3,with special reference to the Mountain Belu,1950,EA020,3,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA020,1,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ic5,Bare'e subgroup,1910,EA020,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ic6,,1930,EA020,1,,drabbe1940,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA020,1,,vatter1932,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ic8,,1890,EA020,1,,pleyte1893,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ic9,with special reference to eastern Sumba,1930,EA020,1,,nooteboom1940,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Id1,Alice Springs and environs,1900,EA020,6,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA020,4,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA020,6,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA020,1,,sharp1934,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Id13,,1930,EA020,6,Implicit matrimoieties,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA020,6,The matrimoieties are implicit and unnamed,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA020,5,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA020,6,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA020,6,Implicit matrimoieties intersecting the patrimoieties to form four sections,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA020,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Id7,,1940,EA020,1,"Although subsections were borrowed about 1915, they have not yet been integrated into the social system, and implicit matrimoieties have therefore not been established",falkenberg1962,Ethnology_Vol2_No1_Jan_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Id8,,,EA020,NA,,,, +Id9,,1910,EA020,6,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA020,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA020,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie11,,1950,EA020,1,,bowers1964,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie12,Hongwam subtribe; Rumbima,1930,EA020,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA020,1,,landtman1927,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie14,,1900,EA020,1,,haddon1908,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie15,Kalabu; Northern Abelam,1930,EA020,1,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA020,1,,williams194041,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie17,,1940,EA020,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie18,Bamol Village,1940,EA020,1,,serpenti1965,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie19,with special reference to the coastal inhabitants,1910,EA020,1,,vanbaal1966,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie2,,1920,EA020,1,,schmitz1960,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie20,,1900,EA020,1,,seligmann1910,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie21,,1900,EA020,1,,malinowski1916,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie22,,1900,EA020,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie23,,1950,EA020,1,,schoorl1957,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie24,,1870,EA020,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie25,,1920,EA020,1,,williamson1912,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie26,,1940,EA020,1,,read1946; read1950,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie27,,1910,EA020,1,,thurnwald1916,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie28,,1940,EA020,3,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA020,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA020,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA020,3,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA020,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie32,,1964,EA020,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie33,with special reference to the village of Muramarew,1950,EA020,1,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie34,,1960,EA020,1,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie35,,1930,EA020,1,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie36,,1950,EA020,1,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie37,,1960,EA020,1,,pouwer1964,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA020,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie39,with special reference to those of Orokolo Bay,1920,EA020,1,,williams1940,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie4,"Dap, Wonevaro district",1930,EA020,6,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA020,1,,williams1936,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie6,,1930,EA020,1,,held1947,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie7,with special reference to the Mae group,1950,EA020,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie8,with special reference to the Koriki,1910,EA020,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ie9,,1920,EA020,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +If1,"Ulimang, Badeldaob Island",1940,EA020,4,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA020,4,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA020,3,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA020,4,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA020,4,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA020,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +If15,,1930,EA020,4,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA020,4,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA020,4,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA020,4,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA020,4,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA020,4,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA020,4,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA020,4,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA020,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +If8,with special reference to those of Saipa,1950,EA020,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +If9,,1900,EA020,3,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA020,4,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA020,3,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA020,4,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA020,1,,scheffler1965,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ig13,,1900,EA020,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA020,4,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA020,1,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ig16,,1950,EA020,1,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ig17,,1950,EA020,1,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ig18,,1960,EA020,1,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ig19,,1950,EA020,1,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ig2,Kiriwina Island,1910,EA020,5,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA020,4,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA020,4,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA020,4,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA020,6,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA020,4,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA020,1,,ivens1927,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ig7,,1950,EA020,5,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA020,1,"Though descent is actually ambilineal, matrilineal ties are considered stronger than patrilineal ones",hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ig9,Peri Village,1920,EA020,3,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA020,4,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA020,1,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA020,1,,deacon1929,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ih12,,1920,EA020,1,,humphreys1926,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ih13,,1920,EA020,6,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA020,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ih2,Malekula Island,1930,EA020,1,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA020,6,The matrimoieties are implicit,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA020,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA020,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ih6,,1890,EA020,3,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA020,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ih8,with special reference to the village of Nakaroka,1940,EA020,6,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA020,4,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA020,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ii10,,1950,EA020,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ii12,Pangai,1920,EA020,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA020,1,,burrows1937,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ii14,,1829,EA020,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ii2,Ravenga District,1930,EA020,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ii3,,1930,EA020,3,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA020,1,,kennedy1931; white1965,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA020,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ii6,with special reference to Atafu,1900,EA020,1,,macgregor1937,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ii7,,1910,EA020,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ii8,,1840,EA020,1,,burrows1936,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ii9,,1840,EA020,1,,loeb1926a,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ij1,,1820,EA020,1,,buck1934,EthnographicAtlas_1967_p98,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ij10,,1900,EA020,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ij2,Nga Puhi Tribe,1820,EA020,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ij3,,1900,EA020,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ij4,,1850,EA020,1,,buck1932a,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ij5,,1900,EA020,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ij6,,1800,EA020,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ij7,,1900,EA020,1,,buck1938; laval1938,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ij8,,1900,EA020,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ij9,,1860,EA020,1,,metraux1940,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na1,,1930,EA020,5,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA020,1,,birketsmith1953,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na11,,1920,EA020,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na12,,1950,EA020,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na13,,1880,EA020,1,,boas1888; boas190107,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na14,,1880,EA020,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na15,,1860,EA020,1,,helmandlurie1961,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na16,,1860,EA020,1,,osgood1931,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na17,"Lynx Point band, Fort Simpson",1860,EA020,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA020,5,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA020,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA020,4,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA020,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA020,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na23,with special reference to the Koksoagmiu,1890,EA020,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na24,,1880,EA020,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA020,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na26,with special reference to the Iliamna,1870,EA020,6,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA020,4,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA020,1,,jenness1937,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na29,,1850,EA020,1,,goddard1916,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na3,Coronation Gulf,1920,EA020,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na30,,1880,EA020,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na31,with special reference to those of Albany and Moose Creek,1850,EA020,1,,skinner1912,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na32,Lake St. John & Mistassini Band,1880,EA020,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na33,Berens River band,1870,EA020,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA020,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na35,,1800,EA020,1,,cameron1890; grant1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na36,with special reference to the Red Lake and White Earth bands,1860,EA020,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na37,,1880,EA020,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na38,with special reference to the Lac Vieux Desert band,1800,EA020,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA020,1,,jenness1935,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na4,Upper Liard and Dease River Group,1920,EA020,6,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA020,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na41,Mainland division,1700,EA020,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na42,Prairie Potawatomi,1760,EA020,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na43,,1920,EA020,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na44,,1910,EA020,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na45,,1900,EA020,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA020,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na6,,1930,EA020,1,,lantis1946,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA020,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na8,Shageluk Village,1880,EA020,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Na9,Unalaska Branch (Eastern Aleut),1830,EA020,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA020,6,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA020,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb11,with special reference to the Central Nootka,1880,EA020,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb12,,1880,EA020,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb13,,1880,EA020,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb14,,1880,EA020,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb15,,1880,EA020,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb16,,1860,EA020,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb17,,1870,EA020,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb18,,1880,EA020,1,,pettitt1950,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb19,,1850,EA020,1,,ray1938; ray1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb2,Twana Tribe,1850,EA020,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb20,,1870,EA020,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb21,,1860,EA020,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb22,with special reference to the Chilkat,1880,EA020,6,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA020,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb24,,1860,EA020,1,,colson1953; swan1868,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb25,,1860,EA020,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb26,,1880,EA020,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb27,with special reference to the Tait,1880,EA020,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb28,,1860,EA020,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb29,,1860,EA020,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb3,,1890,EA020,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb30,,1860,EA020,1,,sapir1907,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb31,,1870,EA020,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA020,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb33,,1860,EA020,1,,dixon1910; driver1939,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb34,,1860,EA020,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb35,,1860,EA020,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb36,,1860,EA020,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb37,,1860,EA020,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb38,with special reference to the inhabitants of the Bear River,1860,EA020,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb39,,1860,EA020,1,,driver1939; nomland1935,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb4,,1850,EA020,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb5,Eyak Tribe,1890,EA020,6,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA020,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nb7,,1880,EA020,5,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA020,4,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA020,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc1,,1850,EA020,1,,goldschmidt1951,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc10,,1860,EA020,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc11,,1860,EA020,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA020,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA020,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc14,with special reference to the northeastern Wintu,1860,EA020,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc15,,1860,EA020,1,,driver1939; gifford1939,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc16,,1860,EA020,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc17,with special reference to those of Kalekau,1860,EA020,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc18,"Clear Lake, Village of Cignon",1860,EA020,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc19,with special reference to those near Santa Rosa,1860,EA020,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc2,,1850,EA020,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc20,,1860,EA020,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc21,,1860,EA020,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc22,with special reference to the Hill Patwin,1850,EA020,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc23,,1870,EA020,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc24,Tulare Lake,1860,EA020,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc25,,1860,EA020,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc26,,1770,EA020,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc27,,1860,EA020,1,,driver1937; gifford1917,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc28,,1800,EA020,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc29,,1770,EA020,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc3,with special reference to those of the Northern Foothills,1850,EA020,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc30,,1870,EA020,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc31,with special reference to the Desert Cahuilla,1870,EA020,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc32,,1870,EA020,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc33,,1860,EA020,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc34,,1880,EA020,1,,meigs1939,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc4,,1860,EA020,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc5,with special reference to the Central Sierra group,1850,EA020,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc6,with special reference to the Southern Diegueno,1850,EA020,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc7,,1850,EA020,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc8,Klamath Tribe,1860,EA020,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nc9,,1860,EA020,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd1,,1850,EA020,1,,murdock1958; ray1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd10,,1860,EA020,1,,ray1942; teit1900,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd11,with special reference to the southeastern Shuswap,1850,EA020,1,,ray1942; teit1909,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd12,,1860,EA020,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd13,,1860,EA020,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd14,,1860,EA020,1,,ray1942; teit1930,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd15,,1880,EA020,1,,clineetal1938,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd16,,1870,EA020,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd17,,1870,EA020,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd18,,1860,EA020,1,,spierandsapir1930,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd19,,1860,EA020,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd2,,1860,EA020,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd20,,1850,EA020,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd21,,1870,EA020,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd22,Wadadika of Harney Valley,1870,EA020,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd23,,1870,EA020,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd24,,1870,EA020,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd25,,1870,EA020,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd26,,1870,EA020,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd27,,1860,EA020,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd28,,1870,EA020,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd3,Havasupai Tribe,1870,EA020,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd30,,1870,EA020,1,,driver1937; steward1933,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd31,,1850,EA020,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd32,with special reference to those of Saline Valley,1850,EA020,1,,driver1937; steward1938,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd33,including the Belted Range group,1870,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd34,,1870,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd35,,1870,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd36,,1870,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd37,,1870,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd38,,1870,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd4,,1870,EA020,1,,ray1932; ray1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd40,,1870,EA020,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd41,,1870,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd43,,1860,EA020,1,,harris1940; steward1941,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd44,,1850,EA020,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd45,,1860,EA020,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd46,,1860,EA020,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd47,,1850,EA020,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd48,with special reference to those of Deep Creek,1860,EA020,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd49,including the Kaiparowits band,1860,EA020,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd5,,1870,EA020,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd50,,1860,EA020,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd51,,1860,EA020,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA020,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd53,,1860,EA020,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd54,Colorado River Reservation,1860,EA020,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA020,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd56,,1860,EA020,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd57,,1860,EA020,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd58,,1860,EA020,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd59,,1860,EA020,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd6,,1850,EA020,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd60,,1860,EA020,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd61,,1860,EA020,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd62,,1860,EA020,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd63,with special reference to the Eastern Bannock,1860,EA020,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd64,with special reference to the Kucundika,1860,EA020,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd65,,1870,EA020,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA020,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd67,,1870,EA020,1,,gifford1936,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd7,Lower or eastern branch,1880,EA020,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA020,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nd9,,1860,EA020,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne1,Gros Ventre Tribe,1880,EA020,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne10,,1860,EA020,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne11,,1870,EA020,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne12,,1850,EA020,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne13,,1850,EA020,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne14,,1850,EA020,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne15,Hidatsa Village,1860,EA020,4,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA020,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne17,,1860,EA020,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne18,,1850,EA020,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne19,,1850,EA020,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne2,,1870,EA020,1,,mcallister1937,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne20,,1850,EA020,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne21,,1760,EA020,1,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne3,Comanche Tribe,1870,EA020,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne4,,1870,EA020,4,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA020,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne6,,1830,EA020,4,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA020,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne8,,1870,EA020,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ne9,,1860,EA020,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf10,,1870,EA020,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf11,,1870,EA020,1,,whitman1937,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf12,,1850,EA020,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf13,with special reference to the Kiskopotha band,1820,EA020,1,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA020,1,"But castes were matrilineal, much as among the Natchez",parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf15,,1870,EA020,1,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf2,,1850,EA020,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf3,Omaha Tribe,1850,EA020,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf4,,1720,EA020,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf5,,1860,EA020,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf6,Skidi Band or subtribe,1867,EA020,3,"Though not specifically attested, matrilineages are suggested by analysis of the kinship terminology",dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA020,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA020,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nf9,,1870,EA020,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ng1,Bear and Cord Subtribes,1640,EA020,4,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA020,6,But the kindred Mohawk and Oneida tribes lacked moieties,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA020,4,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA020,6,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA020,1,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ng14,,NA,EA020,4,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA020,1,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ng2,with special reference to the Cow Creek band,1940,EA020,4,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA020,4,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA020,1,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ng5,,1750,EA020,4,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA020,4,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA020,1,"Matrilineages were subsequently borrowed from the Creek, but descent was always matrilineal with respect to social classes",macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ng8,,1560,EA020,5,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA020,1,"Sturtevant questions the note that the Catawba were ""probably matrilineal aborginally,"" doubting the reliability of Lederer on the basis of whom the statement was made",speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh1,Central band,1880,EA020,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh10,,1920,EA020,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA020,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh12,,1920,EA020,3,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA020,3,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA020,3,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA020,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA020,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA020,4,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA020,4,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA020,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh2,,1950,EA020,3,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA020,1,,gifford1931,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh21,Fort Mohave and Colorado River Reservation,1850,EA020,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA020,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh23,,1870,EA020,4,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA020,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh25,,1920,EA020,4,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA020,1,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh27,,1930,EA020,4,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA020,4,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA020,3,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA020,1,,drucker1941; spier1933,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh6,,1890,EA020,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nh7,,1890,EA020,4,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA020,3,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA020,1,,parsons1939; trager1943,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ni1,,1930,EA020,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ni2,,1930,EA020,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ni3,Huichol Tribe,1920,EA020,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ni4,,1900,EA020,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ni5,,1570,EA020,1,,driveranddriver1963,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ni6,,1840,EA020,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ni7,,1870,EA020,1,,beals1943; drucker1941,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ni8,,1550,EA020,1,,johnson1950,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Ni9,,1920,EA020,1,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj1,Ojitlan,1940,EA020,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA020,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA020,1,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj12,,1950,EA020,1,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj13,,1900,EA020,1,,soustelle1937,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj14,,1960,EA020,1,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj2,City & environs of Tenochtitlan,1520,EA020,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj3,Town and environs of Soteapan,1940,EA020,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj4,,1940,EA020,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj5,,1940,EA020,1,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj6,with special reference to San Mateo,1950,EA020,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj7,with special reference to Ayutla,1930,EA020,1,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA020,1,,foster1948,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Nj9,,1960,EA020,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa1,San Blas Archipelago,1940,EA020,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa10,,1900,EA020,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa11,,1880,EA020,1,,stoll1889,Ethnology_Vol6_No1_Jan_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa12,,1948,EA020,1,,stone1948,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa13,Town of Chichicastenango,1930,EA020,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa14,,NA,EA020,4,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA020,1,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa16,,NA,EA020,1,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa17,with special reference to the village of Chinantla,1950,EA020,1,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA020,1,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA020,1,,wisdom1940,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa4,with special reference to those of Panama,1960,EA020,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa5,,1950,EA020,6,"Formerly moieties (code ""6"")",gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA020,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa7,,1940,EA020,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA020,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sa9,Vicinity: Cape Gracias a Dios,1920,EA020,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sb1,Dominica Island,1650,EA020,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA020,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sb3,with special reference to the Iroka,1940,EA020,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sb4,with special reference to the Cachama group,1950,EA020,1,"But Schwerin reports no matrilineal exogamy (code ""1"")",schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sb5,,1950,EA020,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sb6,Goajiro Tribe,1940,EA020,3,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA020,1,,wilbert1961b,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sb8,,1520,EA020,NA,"Descent may have been matrilineal, like inheritance",rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA020,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc1,,1950,EA020,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc10,,1900,EA020,4,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA020,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc12,,1910,EA020,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc13,,1950,EA020,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc14,,1890,EA020,1,,coudreau1893,Ethnology_Vol2_No2_Apr_1963,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc15,,1910,EA020,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc16,with special reference to the Makitare,1920,EA020,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc17,,1950,EA020,1,,wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc18,,1960,EA020,4,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA020,1,,leedsnd,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc3,Barama River,1930,EA020,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc4,with special reference to the non-agricultural groups,1950,EA020,1,"The ""extended families"" are conceivably localized matrilineages",wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc5,,1900,EA020,1,,farabee1918,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA020,4,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA020,1,,wilbert1959b,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc8,,1950,EA020,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sc9,,1950,EA020,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sd1,Cabrura village,1950,EA020,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA020,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sd3,,1920,EA020,1,,nimuendaju1926,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sd4,,1950,EA020,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sd5,,1950,EA020,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sd6,,1960,EA020,1,,migliazza1964,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sd7,,1950,EA020,1,,fock1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sd8,,1950,EA020,1,,wilbert1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA020,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA020,1,"Possibly lineages (code ""3""), though descent is specifically reported to be bilateral",holmberg1950,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Se10,,1670,EA020,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Se11,,1960,EA020,1,,prost1965,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Se12,,1950,EA020,1,,fulop1955,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Se2,,1940,EA020,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Se3,,1930,EA020,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Se4,,1940,EA020,1,,fejos1943,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Se5,Village on Caduiari River,1940,EA020,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Se6,,1910,EA020,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Se7,a mestizo group in lowland Bolivia,1950,EA020,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA020,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Se9,,1920,EA020,1,But some authors infer matrilineal descent,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sf1,City and environs of Cuzco,1530,EA020,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sf2,Chucuito Clan community in Peru,1940,EA020,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sf3,Rio Cayapas Basin,1910,EA020,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sf4,,1950,EA020,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sf5,,1900,EA020,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sf6,,1540,EA020,1,"Possibly lineages (code ""3"") in view of reported matrilineal succession",ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sf7,,1900,EA020,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sf8,,1950,EA020,1,,matteson1954,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA020,1,,labarre1941,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sg1,Eastern and central,1870,EA020,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sg2,Cholchol,1880,EA020,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA020,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sg4,Equestrian,1870,EA020,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sg5,with special reference to the southern bands,1900,EA020,1,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA020,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sh2,,1850,EA020,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sh3,Those in contact with mission,1800,EA020,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sh4,,1940,EA020,1,,oberg1949,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sh5,,1910,EA020,1,But Karsten dubiously reports matrilineal descent,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sh6,,1890,EA020,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sh7,,1900,EA020,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sh8,with special reference to those of the Argentine Chaco,1964,EA020,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sh9,Those in contact with mission,1890,EA020,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Si1,Kejara,1920,EA020,6,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA020,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Si2,Village of Vanivani,1930,EA020,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Si3,Simao Lopes,1940,EA020,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA020,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Si5,,1940,EA020,1,,oberg1953:1-144,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Si6,,1900,EA020,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Si7,with special reference to the Cozarimi,1910,EA020,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Si8,,1940,EA020,1,,oberg1953:1-144,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Si9,,1940,EA020,1,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sj1,,1950,EA020,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sj10,Taquapiri,1950,EA020,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA020,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sj2,,1850,EA020,1,,nimuendaju1942,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sj3,Duque de Caxias Reservation,1910,EA020,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sj4,Ramcocamecra or Canella,1930,EA020,6,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA020,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sj6,with special reference to the Guajajara subgroup,1930,EA020,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA020,NA,"Parallel descent, i.e., patrilineal for males and matrilineal for females",mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA020,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +Sj9,,1950,EA020,1,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122,"Changed from Gray 1999, where v20 ""O"" and "".o"" coded as ""9""" +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA020,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA020,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA020,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005,"Comment: originally coded using non-existant code ""Oe"", recoded as ""E""" +ch15,with special reference to those of the Boklinskij Uezd,1895,EA020,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA020,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA020,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA020,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA020,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA020,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA020,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA020,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA020,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA020,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA020,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA020,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA020,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA020,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA020,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA020,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA020,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA020,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA020,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA020,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA020,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA020,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA020,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA020,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA201,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA201,2,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA201,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA201,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA201,2,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA201,1,Initial residence alternates between Uxorilocal and Patrilocal,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA201,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA201,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA201,2,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA201,2,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA201,2,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA201,2,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA201,2,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA201,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA201,2,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA201,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA201,2,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA201,2,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA201,2,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA201,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA201,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA201,2,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA201,2,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA201,2,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA201,2,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA201,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA201,2,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA201,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA201,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA201,1,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA201,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA201,2,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA201,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA201,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA201,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA201,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA201,2,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA201,2,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA201,2,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA201,2,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA201,2,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA201,2,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA201,2,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA201,1,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA201,2,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA201,2,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA201,2,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA201,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA201,2,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA201,2,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA201,2,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA201,2,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA201,2,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA201,2,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA201,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA201,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA201,2,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA201,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA201,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA201,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA201,1,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA201,2,"Formerly, early residence classified as 'Uxorilocal' and prevailing pattern as ""Avunculocal"", now both classified as ""Patrilocal""",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA201,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA201,2,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA201,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA201,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA201,2,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA201,2,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA201,2,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA201,1,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA201,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA201,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA201,2,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA201,2,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA201,2,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA201,1,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA201,2,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA201,1,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA201,2,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA201,2,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA201,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA201,2,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA201,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA201,2,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA201,2,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA201,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA201,2,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA201,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA201,2,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA201,1,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA201,2,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA201,2,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA201,2,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA201,2,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA201,2,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA201,2,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA201,2,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA201,2,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA201,2,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA201,2,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA201,2,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA201,2,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA201,2,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA201,2,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA201,2,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA201,2,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA201,2,Inferential from distributional evidence,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA201,2,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA201,2,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA201,2,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA201,2,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA201,2,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA201,2,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA201,2,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA201,2,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA201,2,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA201,2,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA201,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA201,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA201,2,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA201,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA201,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA201,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA201,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA201,2,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA201,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA201,2,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA201,2,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA201,2,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA201,2,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA201,2,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA201,2,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA201,2,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA201,2,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA201,2,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA201,2,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA201,1,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA201,2,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA201,2,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA201,2,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA201,2,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA201,2,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA201,2,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA201,2,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA201,2,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA201,2,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA201,2,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA201,2,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA201,2,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA201,2,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA201,2,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA201,2,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA201,2,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA201,2,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA201,2,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA201,2,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA201,2,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA201,2,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA201,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA201,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA201,2,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA201,2,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA201,2,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA201,2,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA201,2,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA201,2,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA201,2,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA201,2,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA201,2,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA201,2,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA201,2,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA201,2,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA201,2,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA201,2,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA201,2,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA201,1,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA201,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA201,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA201,2,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA201,2,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA201,2,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA201,2,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA201,2,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA201,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA201,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA201,2,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA201,2,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA201,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,,,EA201,NA,,,, +Af13,,1920,EA201,2,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA201,2,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA201,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA201,2,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA201,2,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA201,2,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA201,2,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA201,2,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA201,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA201,2,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA201,2,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA201,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA201,2,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA201,2,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA201,2,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA201,2,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA201,2,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA201,2,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA201,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA201,2,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA201,2,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA201,2,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA201,2,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA201,2,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA201,2,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA201,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA201,2,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA201,2,But a married woman commonly remains in her natal household instead of joining her husband,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA201,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA201,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA201,2,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA201,2,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA201,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA201,2,But most married women continue to reside in their natal household,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA201,1,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA201,2,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA201,2,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA201,2,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA201,2,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA201,2,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA201,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA201,2,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA201,2,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA201,2,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA201,2,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA201,2,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA201,2,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA201,2,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA201,2,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA201,2,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA201,2,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA201,2,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA201,2,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA201,2,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA201,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA201,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA201,2,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA201,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA201,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA201,2,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA201,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA201,2,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA201,2,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA201,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA201,2,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA201,2,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA201,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA201,2,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA201,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA201,2,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA201,2,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA201,2,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA201,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA201,2,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA201,2,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA201,2,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA201,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA201,2,"Entry follows Tauxier; Cremer also reports early residence as Uxorilocal, but later residence as Patrilocal (i.e., this would be code ""1"")",cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA201,2,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA201,2,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA201,2,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA201,2,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA201,2,"But wives often remain in their natal homes, not joining the household of their husband",tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA201,2,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA201,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA201,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA201,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA201,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA201,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA201,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA201,2,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA201,2,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA201,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA201,2,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA201,2,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA201,2,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA201,2,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA201,2,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA201,2,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA201,2,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA201,2,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA201,2,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA201,2,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA201,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA201,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA201,2,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA201,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA201,2,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA201,2,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA201,2,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA201,2,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA201,2,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA201,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA201,2,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA201,2,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA201,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA201,2,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA201,2,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA201,2,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA201,2,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA201,2,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA201,2,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA201,1,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA201,2,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA201,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA201,2,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA201,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA201,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA201,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA201,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA201,2,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA201,1,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA201,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA201,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA201,1,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA201,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA201,1,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA201,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA201,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA201,2,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA201,2,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA201,2,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA201,2,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA201,2,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA201,2,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA201,2,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA201,2,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA201,2,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA201,2,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA201,2,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA201,2,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA201,2,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA201,2,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA201,2,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA201,2,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA201,2,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA201,2,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA201,2,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA201,1,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA201,2,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA201,2,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA201,2,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA201,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA201,2,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA201,NA,,,, +Ai26,,1920,EA201,2,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA201,2,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA201,2,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA201,2,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA201,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA201,2,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA201,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA201,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA201,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA201,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA201,2,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA201,2,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA201,2,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA201,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA201,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA201,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA201,2,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA201,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA201,2,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA201,2,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA201,2,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA201,2,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA201,2,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA201,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA201,2,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA201,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA201,2,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA201,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA201,2,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA201,2,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA201,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA201,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA201,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA201,2,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA201,1,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA201,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA201,2,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA201,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA201,NA,,,, +Aj19,,1920,EA201,2,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA201,2,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA201,2,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA201,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,,EA201,NA,,,, +Aj23,,1950,EA201,2,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA201,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA201,2,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA201,2,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA201,2,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA201,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA201,2,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA201,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA201,2,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA201,2,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA201,2,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA201,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA201,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA201,2,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA201,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA201,2,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA201,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA201,2,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA201,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA201,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA201,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA201,2,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA201,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA201,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA201,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA201,2,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA201,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA201,2,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA201,2,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA201,2,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA201,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA201,2,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA201,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA201,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA201,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA201,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA201,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA201,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA201,1,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA201,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA201,2,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA201,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA201,1,"Permanent residence, according to Tucci, is at a place chosen by the bride's father but at a distance from his home",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA201,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA201,1,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA201,2,"In the noble class; among serfs pattern is Uxorilocal early in marriage and Patrilocal as prevailing pattern (i.e., this would be code ""1"")",munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA201,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA201,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA201,2,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA201,2,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA201,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA201,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA201,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA201,1,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA201,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA201,2,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA201,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA201,2,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA201,2,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA201,2,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA201,1,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,,EA201,NA,,,, +Cb12,,1920,EA201,2,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA201,2,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA201,2,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA201,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA201,2,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA201,2,Husbands live in separate houses from their wives and eat at a special men's mess,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA201,2,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA201,2,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA201,2,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,,EA201,NA,,,, +Cb21,,1930,EA201,1,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA201,2,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA201,2,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA201,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA201,2,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA201,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA201,2,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA201,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA201,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA201,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA201,1,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA201,2,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA201,1,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA201,2,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA201,2,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA201,2,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA201,2,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA201,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,,EA201,NA,,,, +Cc12,,1944,EA201,1,"Ultimate residence is unclear and may be avunculocal (this variable would still be code ""1"" in this case)",cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA201,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA201,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA201,NA,,,, +Cc16,,1930,EA201,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA201,2,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA201,2,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA201,2,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA201,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA201,2,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA201,2,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA201,2,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA201,2,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA201,2,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA201,2,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA201,NA,,,, +Cc9,Ahaggaren tribe,1920,EA201,1,"Virilocal after an initial period until death of HuFa, then Avunculocal",benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA201,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA201,2,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA201,2,Suggested rather than attested,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA201,2,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA201,2,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA201,2,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA201,2,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA201,2,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA201,2,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA201,2,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA201,2,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA201,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA201,2,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA201,2,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA201,2,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA201,2,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA201,2,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA201,2,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA201,2,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA201,2,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA201,2,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA201,2,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA201,2,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA201,2,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA201,2,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA201,2,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA201,2,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA201,2,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA201,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA201,2,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA201,2,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA201,2,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA201,2,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA201,2,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA201,2,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA201,2,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA201,2,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA201,2,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA201,2,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA201,2,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA201,2,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA201,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA201,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA201,2,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA201,2,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA201,2,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA201,2,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA201,2,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA201,2,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA201,2,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA201,2,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA201,2,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA201,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA201,2,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA201,1,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA201,2,"Inferred from the report that small patrilocal extended families, characteristic of the early nineteenth century, had practically disappeared by 1900",gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA201,2,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA201,2,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA201,2,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA201,2,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA201,2,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA201,2,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA201,2,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA201,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA201,2,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA201,2,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA201,2,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA201,2,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA201,2,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA201,2,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA201,2,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA201,2,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA201,2,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA201,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA201,2,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA201,2,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA201,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA201,2,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA201,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA201,2,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA201,2,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA201,2,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA201,2,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA201,2,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA201,2,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA201,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA201,2,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA201,2,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA201,2,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA201,2,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA201,2,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA201,2,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA201,2,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA201,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA201,2,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA201,2,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA201,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA201,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA201,2,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA201,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA201,1,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA201,2,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA201,2,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA201,2,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA201,2,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA201,2,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA201,2,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA201,2,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA201,2,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA201,2,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA201,2,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA201,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA201,2,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA201,2,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA201,2,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA201,2,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA201,2,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA201,2,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA201,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA201,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA201,2,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA201,2,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA201,2,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA201,2,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA201,2,Uxorilocal only if wife has no brothers,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA201,2,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA201,2,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA201,2,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA201,2,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA201,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA201,2,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA201,2,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA201,2,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA201,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA201,2,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA201,2,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA201,2,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA201,2,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA201,2,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA201,2,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA201,2,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA201,2,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA201,2,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA201,2,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA201,2,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA201,2,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA201,2,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA201,2,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA201,2,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA201,2,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA201,2,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA201,2,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA201,2,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA201,2,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA201,2,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA201,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA201,2,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA201,2,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA201,2,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA201,2,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA201,2,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA201,2,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA201,2,"In each family one daughter marries her FaSiSo, residence being both matrilocal and avunculocal; other daughters live inmatrilocal, neolocal, or even virilocal residence",burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA201,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA201,2,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA201,2,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA201,2,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA201,2,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA201,2,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA201,2,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA201,2,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA201,2,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA201,2,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA201,1,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA201,2,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA201,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA201,2,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA201,2,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA201,1,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA201,2,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA201,2,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA201,2,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA201,1,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA201,2,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA201,2,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA201,2,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA201,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA201,2,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA201,2,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA201,2,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA201,2,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA201,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA201,2,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA201,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA201,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA201,2,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA201,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA201,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA201,2,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA201,2,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA201,2,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA201,2,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA201,2,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA201,2,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA201,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA201,2,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA201,2,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA201,2,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA201,2,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA201,2,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA201,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA201,2,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA201,2,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA201,2,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA201,2,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA201,2,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA201,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA201,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA201,2,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA201,2,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA201,2,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA201,2,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA201,2,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA201,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,,,EA201,NA,,,, +Ic1,Borongloe,1940,EA201,2,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA201,2,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA201,2,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA201,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA201,2,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA201,2,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA201,2,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA201,2,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA201,2,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA201,1,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA201,2,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA201,2,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA201,2,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA201,2,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA201,2,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA201,2,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA201,1,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA201,1,But women live in segregated camps where they are visited secretly by men entitled to sleep with them,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA201,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA201,2,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA201,2,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA201,2,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA201,2,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA201,2,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA201,NA,,,, +Id9,,1910,EA201,2,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA201,2,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA201,2,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA201,2,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA201,2,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA201,2,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA201,2,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA201,2,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA201,2,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA201,2,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA201,2,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA201,2,But normally patrilocal,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA201,2,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA201,2,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA201,2,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA201,2,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA201,2,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA201,2,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA201,1,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA201,2,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA201,2,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA201,2,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA201,2,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA201,2,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA201,2,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA201,2,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA201,2,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA201,2,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA201,2,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA201,2,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA201,2,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA201,2,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA201,2,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA201,2,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA201,2,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA201,2,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA201,2,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA201,2,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA201,2,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA201,2,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA201,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA201,2,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA201,2,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA201,2,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA201,2,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA201,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA201,2,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA201,2,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA201,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA201,2,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA201,2,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA201,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA201,2,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA201,2,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA201,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA201,2,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA201,2,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA201,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA201,2,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA201,2,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA201,2,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA201,2,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA201,2,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA201,2,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA201,2,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA201,2,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA201,2,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA201,2,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA201,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA201,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA201,2,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA201,2,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA201,2,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA201,2,Alternating Matrilocal and Avunculocal for periods of a year at a time,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA201,2,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA201,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA201,1,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA201,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA201,2,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA201,2,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA201,NA,,,, +Ih12,,1920,EA201,2,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA201,2,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA201,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA201,2,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA201,2,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA201,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA201,2,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA201,2,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA201,2,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA201,2,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA201,2,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA201,2,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,,EA201,NA,,,, +Ii12,Pangai,1920,EA201,2,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA201,2,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA201,2,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA201,2,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA201,2,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA201,2,Residence rule inferred from data on inheritance,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA201,2,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA201,2,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA201,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA201,1,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA201,2,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA201,2,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA201,2,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA201,2,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA201,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA201,2,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA201,2,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA201,2,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA201,2,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA201,2,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA201,2,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA201,1,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA201,1,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA201,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA201,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA201,1,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA201,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA201,1,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA201,1,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA201,1,"Entry follows Helm; Honigmann reports prevailing pattern as Uxorilocal, so this would be code ""2""",helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA201,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA201,2,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA201,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA201,2,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA201,2,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA201,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA201,2,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA201,2,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA201,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA201,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA201,1,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA201,2,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA201,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA201,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA201,2,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA201,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA201,2,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA201,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA201,1,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA201,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA201,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA201,2,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA201,1,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA201,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA201,NA,,,, +Na41,Mainland division,1700,EA201,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA201,2,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA201,2,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA201,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA201,2,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA201,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA201,1,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA201,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA201,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA201,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA201,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA201,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA201,2,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA201,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA201,2,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA201,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA201,2,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA201,2,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA201,2,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA201,2,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA201,2,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA201,2,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA201,2,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA201,2,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA201,2,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA201,2,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA201,2,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA201,2,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA201,2,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA201,2,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA201,2,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA201,2,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA201,2,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA201,2,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA201,2,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA201,2,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA201,2,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA201,2,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA201,2,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA201,2,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA201,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA201,2,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA201,1,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA201,2,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA201,1,An inference from conflicting residence data confirmed by De Laguna as probably correct,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA201,2,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA201,2,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA201,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA201,2,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA201,1,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA201,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA201,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA201,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA201,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA201,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA201,1,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA201,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA201,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA201,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA201,2,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA201,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA201,2,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,,EA201,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA201,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA201,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA201,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA201,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA201,2,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA201,1,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA201,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA201,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA201,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA201,2,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA201,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA201,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA201,2,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA201,2,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA201,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA201,2,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA201,2,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA201,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA201,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA201,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA201,2,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA201,2,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA201,2,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA201,2,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA201,2,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA201,2,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA201,1,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA201,2,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA201,2,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA201,2,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA201,2,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA201,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA201,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA201,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA201,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA201,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA201,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA201,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA201,1,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA201,2,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA201,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA201,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA201,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA201,1,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA201,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA201,2,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA201,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA201,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA201,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA201,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA201,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA201,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA201,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA201,2,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA201,2,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA201,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA201,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA201,2,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA201,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA201,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA201,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA201,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA201,2,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA201,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA201,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,,EA201,NA,,,, +Nd51,,1860,EA201,2,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA201,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA201,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA201,2,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA201,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA201,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA201,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA201,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA201,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA201,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA201,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA201,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA201,2,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA201,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA201,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA201,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA201,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA201,1,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA201,1,"Chamberlain emphasizes virilocal, Turney-High uxorilocal residence",boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA201,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA201,2,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA201,2,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA201,2,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA201,2,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA201,2,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA201,2,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,,EA201,NA,,,, +Ne15,Hidatsa Village,1860,EA201,2,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA201,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA201,2,"Entry follows Richardson; Mooney reports early and prevailing residence as Uxorilocal (this would still be code ""2"")",lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA201,2,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA201,2,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA201,2,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA201,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA201,NA,,,, +Ne3,Comanche Tribe,1870,EA201,2,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA201,2,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA201,2,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA201,2,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA201,2,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA201,2,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA201,2,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA201,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA201,1,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA201,2,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA201,2,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA201,2,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA201,2,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA201,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA201,1,"Patrilocal in hunting camps, but possibly Uxorilocal in the villages, in which case this would be code ""2"" for village residence",dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA201,2,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA201,2,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA201,2,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA201,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA201,2,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA201,2,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA201,2,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA201,2,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA201,2,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA201,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA201,1,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA201,2,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA201,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA201,2,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA201,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA201,1,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA201,2,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA201,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA201,2,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA201,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA201,2,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA201,2,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA201,2,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA201,2,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA201,2,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA201,2,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA201,2,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA201,2,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA201,2,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA201,2,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA201,2,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA201,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA201,2,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA201,1,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA201,2,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA201,2,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA201,2,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA201,2,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA201,2,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA201,2,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA201,2,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA201,2,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA201,2,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA201,2,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA201,2,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA201,2,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA201,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA201,2,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA201,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA201,2,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA201,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA201,2,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA201,2,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA201,2,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA201,2,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA201,2,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,,EA201,NA,,,, +Nj1,Ojitlan,1940,EA201,2,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA201,2,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA201,2,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,,EA201,NA,,,, +Nj13,,1900,EA201,2,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA201,2,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA201,2,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA201,2,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA201,2,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA201,2,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA201,2,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA201,2,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA201,2,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA201,2,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA201,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA201,2,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA201,2,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA201,1,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA201,2,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA201,2,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA201,2,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA201,2,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA201,2,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA201,1,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA201,2,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA201,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA201,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA201,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA201,2,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA201,2,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA201,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA201,2,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA201,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA201,2,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA201,2,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA201,2,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA201,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA201,2,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA201,2,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA201,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA201,2,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA201,2,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA201,2,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA201,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA201,2,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA201,2,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA201,2,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA201,2,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA201,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA201,2,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA201,2,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA201,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA201,2,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA201,1,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA201,2,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA201,1,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA201,2,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA201,2,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA201,2,But men sleep apart from their wives in a men's house,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA201,2,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA201,1,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA201,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA201,2,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA201,2,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA201,1,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA201,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA201,2,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA201,2,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA201,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA201,1,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA201,2,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA201,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA201,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA201,1,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA201,2,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA201,2,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA201,2,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA201,2,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA201,2,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA201,2,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA201,2,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA201,2,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA201,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA201,2,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA201,2,"An inference from polygyny, bride price, and patrilineal inheritance by sons",ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA201,2,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA201,2,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA201,2,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA201,2,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA201,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA201,2,"But Cooper reports that ""Couples commonly remained a while after marriage with the bride's people"", in which case this would be code ""1""",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA201,2,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA201,1,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA201,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA201,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA201,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA201,2,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA201,2,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA201,2,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA201,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA201,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA201,2,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA201,2,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA201,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA201,2,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA201,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA201,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA201,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA201,2,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA201,2,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA201,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA201,NA,,,, +Sj1,,1950,EA201,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA201,2,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA201,2,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA201,1,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA201,2,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA201,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,,,EA201,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA201,2,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA201,2,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA201,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA201,2,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA201,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA201,2,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA201,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA201,2,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA201,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA201,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA201,2,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA201,2,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA201,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA201,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA201,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA201,2,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA201,2,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA201,2,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA201,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA201,2,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA201,2,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA201,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA201,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA201,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA201,2,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA201,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA201,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA201,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA201,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA201,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA201,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1953,EA202,3500,"Of this total, 1,000 were located in the Nyae Nyae region.",,Carol Ember's Concordance Database, +Aa2,with special reference to Central Dorobo,1925,EA202,1100,221 Central Dorobo in 1942,,EA Bibliography, +Aa3,Gei/Khauan tribe,1876,EA202,2500,in 1876; See HRAF reference 4:7; note focal year for cultural data is 1840,,Carol Ember's Concordance Database, +Aa4,,1946,EA202,29000,in 1946; note focal year for cultural data is 1920,,EA Bibliography, +Aa5,"Epulu net-hunters, Ituri forest",1951,EA202,40000,in 1951; See HRAF reference 2:26; note focal year for cultural data is 1930,,Carol Ember's Concordance Database, +Aa6,,1948,EA202,23400,in 1948; note focal year for cultural data is 1920,,EA Bibliography, +Aa7,,NA,EA202,300,Date for population estimate missing,,EA Bibliography, +Aa8,,,EA202,NA,,,, +Aa9,Hatsa Kindiga Tribe,NA,EA202,600,Date for population estimate missing; This population figure is taken from EA-Summary,,Carol Ember's Concordance Database, +Ab1,,1900,EA202,100000,,,EA Bibliography, +Ab10,,1936,EA202,260000,,,EA Bibliography, +Ab11,,,EA202,NA,,,, +Ab12,,1921,EA202,250000,in 1921; note focal year for cultural data is 1830,,EA Bibliography, +Ab13,with special reference to the Kgatla (Bakxatla),1946,EA202,580000,"in 1946; 12,000 Kgatla; note focal year for cultural data is 1880",,EA Bibliography, +Ab14,,NA,EA202,40000,Date for population estimate missing,,EA Bibliography, +Ab15,,1930,EA202,100000,in 1930; note focal year for cultural data is 1860,,EA Bibliography, +Ab16,,,EA202,NA,,,, +Ab17,,NA,EA202,100000,"Date for population estimate missing; Data source gives population number as ""more than 100,000 in Mozambique""",,EA Bibliography, +Ab18,with special reference to the Zezuru,1931,EA202,700000,in 1931; note focal year for cultural data is 1920,,EA Bibliography, +Ab19,with special reference to the Kuanyama,1948,EA202,60000,in 1948; Kuanyama; note focal year for cultural data is 1910,,EA Bibliography, +Ab2,,1946,EA202,180000,in 1946; note focal year for cultural data is 1880,,EA Bibliography, +Ab20,,1880,EA202,80000,"10,000 after severe famines in 1912 and 1915, 80,000 prior",,EA Bibliography, +Ab21a,,1930,EA202,10000,,,EA Bibliography, +Ab21b,,,EA202,NA,,,, +Ab22,,,EA202,NA,,,, +Ab3,Ruling Luyana,1934,EA202,67200,in 1934; See HRAF reference 2:87; note focal year for cultural data is 1890,,Carol Ember's Concordance Database, +Ab4,,,EA202,NA,,,, +Ab5,,1940,EA202,1200000,See EA-Summary,,Carol Ember's Concordance Database, +Ab6,,1930,EA202,150000,in 1930; note focal year for cultural data is 1900,,EA Bibliography, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA202,40000,,,EA Bibliography, +Ab8,Basuto,1953,EA202,900000,in 1953; note focal year for cultural data is 1860,,EA Bibliography, +Ab9,,1948,EA202,300000,in 1948; note focal year for cultural data is 1870,,EA Bibliography, +Ac1,,1957,EA202,22000,in 1957; note focal year for cultural data is 1920,,EA Bibliography, +Ac10,,1955,EA202,750000,in 1955; note focal year for cultural data is 1920,,EA Bibliography, +Ac11,,1940,EA202,90000,,,EA Bibliography, +Ac12,,1940,EA202,600000,in 1940; note focal year for cultural data is 1920,,EA Bibliography, +Ac13,,1953,EA202,50000,,,EA Bibliography, +Ac14,,,EA202,NA,,,, +Ac15,,,EA202,NA,,,, +Ac16,,,EA202,NA,,,, +Ac17,Feshi territory lineage center,1949,EA202,80000,in 1949; No population data is available for +1920; note focal year for cultural data is 1910,,Carol Ember's Concordance Database, +Ac18,,1953,EA202,65000,in 1953; note focal year for cultural data is 1910,,EA Bibliography, +Ac19,,,EA202,NA,,,, +Ac2,,1955,EA202,27000,in 1955; note focal year for cultural data is 1920,,EA Bibliography, +Ac20,,,EA202,NA,,,, +Ac21,,,EA202,NA,,,, +Ac22,,,EA202,NA,,,, +Ac23,with special reference to the western Lele,1947,EA202,10000,,,EA Bibliography, +Ac24,,,EA202,NA,,,, +Ac25,,,EA202,NA,,,, +Ac26,,,EA202,NA,,,, +Ac27,,,EA202,NA,,,, +Ac28,,1950,EA202,40000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ac29,,,EA202,NA,,,, +Ac3,Zambia branch,1930,EA202,100000,in 1930; See HRAF reference 1:2; note focal year for cultural data is 1900,,Carol Ember's Concordance Database, +Ac30,,1948,EA202,90000,,,EA Bibliography, +Ac31,,,EA202,NA,,,, +Ac32,,1934,EA202,38000,in 1934; note focal year for cultural data is 1920,,EA Bibliography, +Ac33,,1946,EA202,60000,,,EA Bibliography, +Ac34,,NA,EA202,100000,Date for population estimate missing,,EA Bibliography, +Ac35,,,EA202,NA,,,, +Ac36,,1945,EA202,115000,in 1945; note focal year for cultural data is 1920,,EA Bibliography, +Ac37,,1950,EA202,20000,,,EA Bibliography, +Ac38,,1945,EA202,575000,in 1945; note focal year for cultural data is 1910,,EA Bibliography, +Ac39,,,EA202,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1947,EA202,73000,in 1947; note focal year for cultural data is 1910,,EA Bibliography, +Ac40,,,EA202,NA,,,, +Ac41,,,EA202,NA,,,, +Ac42,,1950,EA202,800000,in 1950; note focal year for cultural data is 1900,,EA Bibliography, +Ac43,,1958,EA202,25000,in 1958; note focal year for cultural data is 1910,,EA Bibliography, +Ac5,,NA,EA202,70000,Date for population estimate missing,,EA Bibliography, +Ac6,,NA,EA202,63000,Date for population estimate missing,,EA Bibliography, +Ac7,,1945,EA202,360000,in 1945; exclusive of a large number of Yao in Mozambique; note focal year for cultural data is 1920,,EA Bibliography, +Ac8,,1933,EA202,170000,,,EA Bibliography, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1950,EA202,85000,Mpezeni Ngoni,,EA Bibliography, +Ad1,,1950,EA202,2000,,,EA Bibliography, +Ad10,,1948,EA202,220000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Ad11,,1931,EA202,16000,,,EA Bibliography, +Ad12,,1950,EA202,238000,,,EA Bibliography, +Ad13,,1940,EA202,100000,"310,000 in 1959",,EA Bibliography, +Ad14,Morogoro District,1960,EA202,200000,in 1960; Population data is unavailable for +1920; note focal year for cultural data is 1930,,Carol Ember's Concordance Database, +Ad15,,1953,EA202,12250,in 1953; note focal year for cultural data is 1900,,EA Bibliography, +Ad16,,1945,EA202,62000,in 1945; note focal year for cultural data is 1920,,EA Bibliography, +Ad17,,1950,EA202,45000,in 1950; note focal year for cultural data is 1920,,EA Bibliography, +Ad18,,,EA202,NA,,,, +Ad19,,1910,EA202,15000,,,EA Bibliography, +Ad2,,1957,EA202,110000,,,EA Bibliography, +Ad20,,,EA202,NA,,,, +Ad21,,1957,EA202,11000,in 1957; note focal year for cultural data is 1930,,EA Bibliography, +Ad22,,1948,EA202,1000000,,,EA Bibliography, +Ad23,,,EA202,NA,,,, +Ad24,,NA,EA202,110000,Date for population estimate missing; early report,,EA Bibliography, +Ad25,,NA,EA202,80000,Date for population estimate missing,,EA Bibliography, +Ad26,,1949,EA202,145000,in 1949; note focal year for cultural data is 1910,,EA Bibliography, +Ad27,,1957,EA202,40000,in 1957; note focal year for cultural data is 1880,,EA Bibliography, +Ad28,,1957,EA202,135000,in 1957; note focal year for cultural data is 1880,,EA Bibliography, +Ad29,,1924,EA202,100000,,,EA Bibliography, +Ad3,,1948,EA202,237000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Ad30,,1948,EA202,112000,in 1948; note focal year for cultural data is 1890,,EA Bibliography, +Ad31,,1948,EA202,37000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Ad32,,1948,EA202,120000,in 1948; note focal year for cultural data is 1900,,EA Bibliography, +Ad33,,1948,EA202,20000,in 1948; note focal year for cultural data is 1900,,EA Bibliography, +Ad34,,1948,EA202,600000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1948,EA202,255000,,,EA Bibliography, +Ad36,,1948,EA202,100000,in 1948; note focal year for cultural data is 1890,,EA Bibliography, +Ad37,,1948,EA202,60000,,,EA Bibliography, +Ad38,,NA,EA202,20000,Date for population estimate missing,,EA Bibliography, +Ad39,,1957,EA202,4500,,,EA Bibliography, +Ad4,Fort Hall or Metume district,1948,EA202,1026300,in 1948; See HRAF reference 1:12; note focal year for cultural data is 1930,,Carol Ember's Concordance Database, +Ad40,,1955,EA202,40000,,,EA Bibliography, +Ad41,,1937,EA202,50000,,,EA Bibliography, +Ad42,,1957,EA202,325000,in 1957; note focal year for cultural data is 1900,,EA Bibliography, +Ad43,,NA,EA202,40000,Date for population estimate missing,,EA Bibliography, +Ad44,,1959,EA202,375000,in 1959; note focal year for cultural data is 1920,,EA Bibliography, +Ad45,,1959,EA202,520000,in 1959; note focal year for cultural data is 1920,,EA Bibliography, +Ad46,,1948,EA202,425000,,,EA Bibliography, +Ad47,,1957,EA202,76000,in 1957; note focal year for cultural data is 1900,,EA Bibliography, +Ad48,,1959,EA202,200000,,,EA Bibliography, +Ad49,,1957,EA202,55000,,,EA Bibliography, +Ad5,,1948,EA202,7500,,,EA Bibliography, +Ad50,with special reference to the Mountain Kaguru,1957,EA202,87000,in 1957; note focal year for cultural data is 1900,,EA Bibliography, +Ad51,,1957,EA202,53000,in 1957; note focal year for cultural data is 1930,,EA Bibliography, +Ad6,Age villages of Mwaya and Masoko,1931,EA202,163000,This figure reflects the total number of Nyakyusa in Tanzania and Malawi (EA-Summary).,,Carol Ember's Concordance Database, +Ad7,Kyaddondo district (V: Kampala),1900,EA202,600000,in 1900; See HRAF reference 2:6; note focal year for cultural data is 1880,,Carol Ember's Concordance Database, +Ad8,with special reference to the northern or Iringa group,1930,EA202,85000,in 1930; note focal year for cultural data is 1910,,EA Bibliography, +Ad9,,1948,EA202,250000,in 1948; note focal year for cultural data is 1900,,EA Bibliography, +Ae1,with special reference to those of Bwamba in Uganda,1948,EA202,18000,in Bwamba,,EA Bibliography, +Ae10,,1952,EA202,2133000,in 1952; note focal year for cultural data is 1910,,EA Bibliography, +Ae11,,NA,EA202,100000,"Date for population estimate missing; Data source gives population data as ""more than 100,000""",,EA Bibliography, +Ae12,,1947,EA202,40000,,,EA Bibliography, +Ae13,,,EA202,NA,,,, +Ae14,,1948,EA202,200000,,,EA Bibliography, +Ae15,,,EA202,NA,,,, +Ae16,,,EA202,NA,,,, +Ae17,,,EA202,NA,,,, +Ae18,,,EA202,NA,,,, +Ae19,,,EA202,NA,,,, +Ae2,,1953,EA202,38000,,,EA Bibliography, +Ae20,,1944,EA202,200000,,,EA Bibliography, +Ae21,,1920,EA202,24000,,,EA Bibliography, +Ae22,,,EA202,NA,,,, +Ae23,,1940,EA202,100000,,,EA Bibliography, +Ae24,,1940,EA202,200000,"in 1940; Not to be confused with the kindred Nkundo (Ae4), previously designated as Mongo. Data source gives population data as ""more than 200,000""; note focal year for cultural data is 1920",,EA Bibliography, +Ae25,,,EA202,NA,,,, +Ae26,,,EA202,NA,,,, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",NA,EA202,25000,Date for population estimate missing,,EA Bibliography, +Ae28,,1950,EA202,125000,in 1950; note focal year for cultural data is 1900,,EA Bibliography, +Ae29,,,EA202,NA,,,, +Ae3,,1950,EA202,850000,in 1950; note focal year for cultural data is 1910,,EA Bibliography, +Ae30,,,EA202,NA,,,, +Ae31,,,EA202,NA,,,, +Ae32,,1927,EA202,21000,,,EA Bibliography, +Ae33,,NA,EA202,300000,Date for population estimate missing,,EA Bibliography, +Ae34,,,EA202,NA,,,, +Ae35,,1949,EA202,8350,in 1949; note focal year for cultural data is 1900,,EA Bibliography, +Ae36,,,EA202,NA,,,, +Ae37,,,EA202,NA,,,, +Ae38,,,EA202,NA,,,, +Ae39,,,EA202,NA,,,, +Ae4,Ilanga group,1930,EA202,1000000,"The population during 1930 was reported to be in excess of 1,000,000 (2:2).",,Carol Ember's Concordance Database, +Ae40,,1949,EA202,6000,in 1949; note focal year for cultural data is 1910,,EA Bibliography, +Ae41,,,EA202,NA,,,, +Ae42,,1949,EA202,9000,in 1949; note focal year for cultural data is 1900,,EA Bibliography, +Ae43,,,EA202,NA,,,, +Ae44,,1945,EA202,9350,in 1945; note focal year for cultural data is 1920,,EA Bibliography, +Ae45,,NA,EA202,35000,Date for population estimate missing,,EA Bibliography, +Ae46,,,EA202,NA,,,, +Ae47,,1949,EA202,713,in 1949; note focal year for cultural data is 1900,,EA Bibliography, +Ae48,,1949,EA202,12000,in 1949; note focal year for cultural data is 1930,,EA Bibliography, +Ae49,,1953,EA202,23000,in 1953; note focal year for cultural data is 1900,,EA Bibliography, +Ae5,,1951,EA202,455000,in 1951; note focal year for cultural data is 1910,,EA Bibliography, +Ae50,,1951,EA202,80000,in 1951; note focal year for cultural data is 1920,,EA Bibliography, +Ae51,Ndiki subtribe,1949,EA202,25000,,,Carol Ember's Concordance Database, +Ae52,,1953,EA202,20000,,,EA Bibliography, +Ae53,,1929,EA202,40000,,,EA Bibliography, +Ae54,,1953,EA202,27000,,,EA Bibliography, +Ae55,,1953,EA202,44000,,,EA Bibliography, +Ae56,,1953,EA202,60000,,,EA Bibliography, +Ae57,,1952,EA202,36000,in 1952; note focal year for cultural data is 1930,,EA Bibliography, +Ae58,,1949,EA202,10000,in 1949; note focal year for cultural data is 1910,,EA Bibliography, +Ae59,with special reference to the Ngie subtribe,1948,EA202,93000,,,EA Bibliography, +Ae6,,,EA202,NA,,,, +Ae7,,1924,EA202,16000,in 1924; note focal year for cultural data is 1910,,EA Bibliography, +Ae8,,NA,EA202,2000000,Date for population estimate missing,,EA Bibliography, +Ae9,,1953,EA202,34000,,,EA Bibliography, +Af1,City and environs of Abomey,NA,EA202,250000,Date for population estimate missing; This is the population figure found in EA-Summary,,Carol Ember's Concordance Database, +Af10,,1929,EA202,4000000,See HRAF reference 8:v.,,Carol Ember's Concordance Database, +Af11,,1950,EA202,150000,in 1950; note focal year for cultural data is 1920,,EA Bibliography, +Af12,with special reference to the Kwahu,1948,EA202,65000,in 1948; note focal year for cultural data is 1930,,EA Bibliography, +Af13,,1952,EA202,150000,in 1952; note focal year for cultural data is 1920,,EA Bibliography, +Af14,,1948,EA202,100000,in 1948; note focal year for cultural data is 1930,,EA Bibliography, +Af15,,1950,EA202,175000,in 1950; note focal year for cultural data is 1920,,EA Bibliography, +Af16,,1956,EA202,25000,in 1956; note focal year for cultural data is 1910,,EA Bibliography, +Af17,,,EA202,NA,,,, +Af18,,1921,EA202,90000,in 1921; note focal year for cultural data is 1900,,EA Bibliography, +Af19,,1945,EA202,30000,,,EA Bibliography, +Af2,,1954,EA202,200000,,,EA Bibliography, +Af20,,NA,EA202,1000000,Date for population estimate missing,,EA Bibliography, +Af21,with special reference to the Kalabari,1921,EA202,175000,,,EA Bibliography, +Af22,,1952,EA202,33000,in 1952; note focal year for cultural data is 1940,,EA Bibliography, +Af23,with special reference to the village of Mgbom,NA,EA202,35000,Date for population estimate missing,,Carol Ember's Concordance Database, +Af24,,1952,EA202,200000,in 1952; note focal year for cultural data is 1900,,EA Bibliography, +Af25,,1952,EA202,435000,in 1952; note focal year for cultural data is 1930,,EA Bibliography, +Af26,with special reference to the Etsako,1952,EA202,193000,"in 1952; including 88,000 Etsako; note focal year for cultural data is 1900",,EA Bibliography, +Af27,,1955,EA202,7600,,,EA Bibliography, +Af28,,1960,EA202,200000,in 1960; note focal year for cultural data is 1910,,EA Bibliography, +Af29,,1952,EA202,200000,,,EA Bibliography, +Af3,,,EA202,NA,,,, +Af30,,1944,EA202,200000,in 1944; note focal year for cultural data is 1920,,EA Bibliography, +Af31,with special reference to the Lafia,1960,EA202,30000,,,EA Bibliography, +Af32,Abeouta Province and Benin,NA,EA202,500000,Date for population estimate missing,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",NA,EA202,220000,Date for population estimate missing,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",NA,EA202,170000,Date for population estimate missing,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA202,100000,,,EA Bibliography, +Af36,with special reference to the Glidyi,1948,EA202,700000,in 1948; note focal year for cultural data is 1900,,EA Bibliography, +Af37,with special reference to the Akpafu,1950,EA202,1500,in 1950; Akpafu; note focal year for cultural data is 1900,,EA Bibliography, +Af38,,1950,EA202,75000,in 1950; note focal year for cultural data is 1900,,EA Bibliography, +Af39,with special reference to the Ndenie,1956,EA202,100000,in 1956; note focal year for cultural data is 1900,,EA Bibliography, +Af4,,NA,EA202,20000,Date for population estimate missing,,EA Bibliography, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1950,EA202,2000,in 1950; Abure in; note focal year for cultural data is 1890,,EA Bibliography, +Af41,,1955,EA202,60000,in 1955; note focal year for cultural data is 1890,,EA Bibliography, +Af42,,1950,EA202,200000,in 1950; note focal year for cultural data is 1900,,EA Bibliography, +Af43,,,EA202,NA,,,, +Af44,,1950,EA202,5000,in 1950; note focal year for cultural data is 1900,,EA Bibliography, +Af45,,1950,EA202,5000,in 1950; note focal year for cultural data is 1900,,EA Bibliography, +Af46,,1920,EA202,16000,in 1920; note focal year for cultural data is 1900,,EA Bibliography, +Af47,,1940,EA202,15000,,,EA Bibliography, +Af48,,,EA202,NA,,,, +Af49,,,EA202,NA,,,, +Af5,,,EA202,NA,,,, +Af50,,1950,EA202,100000,in 1950; note focal year for cultural data is 1920,,EA Bibliography, +Af51,,1950,EA202,13000,in 1950; note focal year for cultural data is 1920,,EA Bibliography, +Af52,,1950,EA202,110000,in 1950; note focal year for cultural data is 1920,,EA Bibliography, +Af53,,1950,EA202,10600,,,EA Bibliography, +Af54,,1930,EA202,25000,,,EA Bibliography, +Af55,,1948,EA202,8500,,,EA Bibliography, +Af56,with special reference to the Gio of the Ivory Coast,1950,EA202,72000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Af57,,1948,EA202,525000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Af58,,1948,EA202,40000,in 1948; note focal year for cultural data is 1900,,EA Bibliography, +Af6,"Yoruba, with special reference to the Oyo",NA,EA202,5500000,"Date for population estimate missing; 220,000 in 1931",,EA Bibliography, +Af7,,1956,EA202,150000,"Two different population sizes (150,000 in 1956 and 180,000 in 1956)",,EA Bibliography, +Af8,,1955,EA202,360000,in 1955; note focal year for cultural data is 1930,,EA Bibliography, +Af9,,1950,EA202,383000,in 1950; note focal year for cultural data is 1900,,EA Bibliography, +Ag1,Segou to Bamako on Niger River,1902,EA202,500000,in 1902; See HRAF reference 2:1; note focal year for cultural data is 1920,,Carol Ember's Concordance Database, +Ag10,,1948,EA202,60000,,,EA Bibliography, +Ag11,,NA,EA202,100000,Date for population estimate missing,,EA Bibliography, +Ag12,,1948,EA202,70000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Ag13,,1948,EA202,40000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Ag14,,1950,EA202,43000,,,EA Bibliography, +Ag15,,1950,EA202,167000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ag16,,1950,EA202,7500,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ag17,,1950,EA202,10000,,,EA Bibliography, +Ag18,,1945,EA202,20000,in 1945; note focal year for cultural data is 1930,,EA Bibliography, +Ag19,with special reference to the Felup,1950,EA202,155000,"in 1950; including 50,000 Felup; note focal year for cultural data is 1930",,EA Bibliography, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA202,1700000,"400,000 in Yatenga",,EA Bibliography, +Ag20,,1950,EA202,36000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ag21,,1945,EA202,7600,in 1945; note focal year for cultural data is 1910,,EA Bibliography, +Ag22,with special reference to those of Sine,1950,EA202,300000,in 1950; note focal year for cultural data is 1920,,EA Bibliography, +Ag23,,1950,EA202,75000,in 1950; note focal year for cultural data is 1910,,EA Bibliography, +Ag24,,1950,EA202,125000,in 1950; note focal year for cultural data is 1910,,EA Bibliography, +Ag25,,1950,EA202,360000,in 1950; note focal year for cultural data is 1900,,EA Bibliography, +Ag26,,1950,EA202,300000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ag27,,1950,EA202,160000,in 1950; note focal year for cultural data is 1910,,EA Bibliography, +Ag28,,,EA202,NA,,,, +Ag29,,1950,EA202,95000,in 1950; note focal year for cultural data is 1910,,EA Bibliography, +Ag3,,1957,EA202,225000,in 1957; note focal year for cultural data is 1930,,EA Bibliography, +Ag30,,1942,EA202,240000,in 1942; note focal year for cultural data is 1910,,EA Bibliography, +Ag31,,1942,EA202,154000,in 1942; note focal year for cultural data is 1910,,EA Bibliography, +Ag32,,1948,EA202,540000,in 1948; note focal year for cultural data is 1900,,EA Bibliography, +Ag33,,1950,EA202,10500,in 1950; note focal year for cultural data is 1920,,EA Bibliography, +Ag34,,1950,EA202,8000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ag35,,1948,EA202,25000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Ag36,,,EA202,NA,,,, +Ag37,,,EA202,NA,,,, +Ag38,,1948,EA202,55000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Ag39,,1949,EA202,120000,in 1949; note focal year for cultural data is 1910,,EA Bibliography, +Ag4,Tallensi Tribe,1931,EA202,35000,See EA-Summary,,Carol Ember's Concordance Database, +Ag40,,1948,EA202,45000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Ag41,,1940,EA202,93000,in 1940; note focal year for cultural data is 1920,,EA Bibliography, +Ag42,,1950,EA202,34000,in 1950; note focal year for cultural data is 1910,,EA Bibliography, +Ag43,,1930,EA202,1000,,,EA Bibliography, +Ag44,,1948,EA202,175000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Ag45,with special reference to those in the Diapaga region,1912,EA202,150000,"in 1912; 250,000 in 1965; note focal year for cultural data is 1930",,EA Bibliography, +Ag46,,1948,EA202,50000,in 1948; note focal year for cultural data is 1920,,EA Bibliography, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1950,EA202,1300000,in 1950; note focal year for cultural data is 1900,,EA Bibliography, +Ag48,,1950,EA202,40000,in 1950; note focal year for cultural data is 1890,,EA Bibliography, +Ag49,,1950,EA202,157000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ag5,,NA,EA202,85000,Date for population estimate missing,,EA Bibliography, +Ag50,,1950,EA202,48000,in 1950; note focal year for cultural data is 1910,,EA Bibliography, +Ag51,,1950,EA202,50000,,,EA Bibliography, +Ag52,,1958,EA202,87000,,,EA Bibliography, +Ag53,with special reference to those of Garango,1960,EA202,200000,"Data source gives population data as ""more than 200,000""",,EA Bibliography, +Ag54,,1950,EA202,115000,"in 1950; 20,000 in Sierra Leone; note focal year for cultural data is 1910",,EA Bibliography, +Ag6,,1940,EA202,720000,in 1940; note focal year for cultural data is 1890,,EA Bibliography, +Ag7,,1942,EA202,29000,in 1942; note focal year for cultural data is 1930,,EA Bibliography, +Ag8,with special reference to the Coniagui,1945,EA202,18000,"in 1945; 11,000 Coniagui; note focal year for cultural data is 1910",,EA Bibliography, +Ag9,,1950,EA202,830000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ah1,Zaria Province,1949,EA202,18000,in 1949; note focal year for cultural data is 1930,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1948,EA202,8500,in 1948; note focal year for cultural data is 1920,,EA Bibliography, +Ah11,,1960,EA202,70000,,,EA Bibliography, +Ah12,,1921,EA202,12300,,,EA Bibliography, +Ah13,with special reference to the Liliwa,1949,EA202,47000,in 1949; note focal year for cultural data is 1930,,EA Bibliography, +Ah14,,1949,EA202,22000,in 1949; note focal year for cultural data is 1920,,EA Bibliography, +Ah15,,1931,EA202,20000,in 1931; note focal year for cultural data is 1920,,EA Bibliography, +Ah16,,1930,EA202,55000,in 1930; note focal year for cultural data is 1900,,EA Bibliography, +Ah17,,1950,EA202,60000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ah18,,1934,EA202,23000,,,EA Bibliography, +Ah19,,1921,EA202,10000,,,EA Bibliography, +Ah2,,1931,EA202,25000,in 1931; note focal year for cultural data is 1920,,EA Bibliography, +Ah20,,1950,EA202,10500,in 1950; note focal year for cultural data is 1920,,EA Bibliography, +Ah21,,1949,EA202,25000,in 1949; note focal year for cultural data is 1920,,EA Bibliography, +Ah22,,1930,EA202,30000,in 1930; note focal year for cultural data is 1900,,EA Bibliography, +Ah23,,1930,EA202,5000,,,EA Bibliography, +Ah24,,1921,EA202,5000,,,EA Bibliography, +Ah25,,1950,EA202,4000,in 1950; note focal year for cultural data is 1920,,EA Bibliography, +Ah26,,1921,EA202,1700,,,EA Bibliography, +Ah27,,1947,EA202,1000,in 1947; note focal year for cultural data is 1920,,EA Bibliography, +Ah28,with special reference to the Lekon subtribe,1921,EA202,20000,,,EA Bibliography, +Ah29,,NA,EA202,5000,Date for population estimate missing,,EA Bibliography, +Ah3,Tar of Benue Province,NA,EA202,530000,Date for population estimate missing; See 1:13.,,Carol Ember's Concordance Database, +Ah30,,1921,EA202,12000,,,EA Bibliography, +Ah31,,1932,EA202,65000,in 1932; note focal year for cultural data is 1910,,EA Bibliography, +Ah32,,1921,EA202,10000,,,EA Bibliography, +Ah33,,1921,EA202,9000,,,EA Bibliography, +Ah34,with special reference to the Malabu,1921,EA202,30000,"including 2,000 Malabu",,EA Bibliography, +Ah35,,1922,EA202,81000,,,EA Bibliography, +Ah36,,1958,EA202,30000,in 1958; note focal year for cultural data is 1920,,EA Bibliography, +Ah37,,1921,EA202,4500,,,EA Bibliography, +Ah38,,1950,EA202,25000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ah39,,1950,EA202,10000,,,EA Bibliography, +Ah4,,1931,EA202,18000,in 1931; note focal year for cultural data is 1920,,EA Bibliography, +Ah5,,1931,EA202,50000,,,EA Bibliography, +Ah6,,1948,EA202,4000,in 1948; note focal year for cultural data is 1920,,EA Bibliography, +Ah7,,1958,EA202,100000,in 1958; note focal year for cultural data is 1940,,EA Bibliography, +Ah8,,NA,EA202,30000,Date for population estimate missing,,EA Bibliography, +Ah9,,1934,EA202,5730,in 1934; note focal year for cultural data is 1920,,EA Bibliography, +Ai1,,,EA202,NA,,,, +Ai10,,,EA202,NA,,,, +Ai11,,NA,EA202,500000,Date for population estimate missing,,EA Bibliography, +Ai12,,1952,EA202,20000,,,EA Bibliography, +Ai13,,,EA202,NA,,,, +Ai14,,1960,EA202,25000,in 1960; note focal year for cultural data is 1920,,EA Bibliography, +Ai15,,1960,EA202,90000,in 1960; note focal year for cultural data is 1900,,EA Bibliography, +Ai16,,1926,EA202,15000,in 1926; note focal year for cultural data is 1910,,EA Bibliography, +Ai17,,1960,EA202,44000,in 1960; note focal year for cultural data is 1930,,EA Bibliography, +Ai18,,1950,EA202,30000,in 1950; note focal year for cultural data is 1880,,EA Bibliography, +Ai19,,,EA202,NA,,,, +Ai2,,NA,EA202,2000,Date for population estimate missing,,EA Bibliography, +Ai20,,1950,EA202,65000,in 1950; note focal year for cultural data is 1910,,EA Bibliography, +Ai21,,1954,EA202,26000,in 1954; note focal year for cultural data is 1880,,EA Bibliography, +Ai22,,,EA202,NA,,,, +Ai23,,1940,EA202,180000,in 1940; note focal year for cultural data is 1920,,EA Bibliography, +Ai24,,1904,EA202,24000,,,EA Bibliography, +Ai25,,NA,EA202,80000,Date for population estimate missing,,EA Bibliography, +Ai26,,1958,EA202,115000,in 1958; note focal year for cultural data is 1920,,EA Bibliography, +Ai27,,NA,EA202,50000,Date for population estimate missing,,EA Bibliography, +Ai28,,1912,EA202,5500,,,EA Bibliography, +Ai29,,NA,EA202,150000,Date for population estimate missing,,EA Bibliography, +Ai3,,1926,EA202,2000000,,,Carol Ember's Concordance Database, +Ai30,,1949,EA202,19000,in 1949; note focal year for cultural data is 1920,,EA Bibliography, +Ai31,,1947,EA202,50000,in 1947; note focal year for cultural data is 1920,,EA Bibliography, +Ai32,,1948,EA202,240000,in 1948; note focal year for cultural data is 1920,,EA Bibliography, +Ai33,,1948,EA202,66000,,,EA Bibliography, +Ai34,,1940,EA202,20000,in 1940; note focal year for cultural data is 1880,,EA Bibliography, +Ai35,,1929,EA202,5000,in 1929; note focal year for cultural data is 1870,,EA Bibliography, +Ai36,,,EA202,NA,,,, +Ai37,,1940,EA202,20000,,,EA Bibliography, +Ai38,,1947,EA202,14000,in 1947; note focal year for cultural data is 1930,,EA Bibliography, +Ai39,,1947,EA202,6000,,,EA Bibliography, +Ai4,,1927,EA202,12000,,,EA Bibliography, +Ai40,,1947,EA202,20000,,,EA Bibliography, +Ai41,,1947,EA202,8000,in 1947; note focal year for cultural data is 1930,,EA Bibliography, +Ai42,,1947,EA202,3500,,,EA Bibliography, +Ai43,,1947,EA202,37000,in 1947; note focal year for cultural data is 1930,,EA Bibliography, +Ai44,,1957,EA202,35000,in 1957; note focal year for cultural data is 1920,,EA Bibliography, +Ai45,,,EA202,NA,,,, +Ai46,,1938,EA202,3000,,,EA Bibliography, +Ai47,,,EA202,NA,,,, +Ai5,,1949,EA202,33000,in 1949; note focal year for cultural data is 1920,,EA Bibliography, +Ai6,Shilluk Kingdom,1909,EA202,100000,See HRAF reference 2:37.,,Carol Ember's Concordance Database, +Ai7,,1930,EA202,200000,in 1930; note focal year for cultural data is 1910,,EA Bibliography, +Ai8,,NA,EA202,8000,Date for population estimate missing,,EA Bibliography, +Ai9,,,EA202,NA,,,, +Aj1,,1948,EA202,560000,,,EA Bibliography, +Aj10,,NA,EA202,200000,"Date for population estimate missing; Data source gives population data as ""more than 200,000""",,EA Bibliography, +Aj11,,1952,EA202,500000,in 1952; note focal year for cultural data is 1900,,EA Bibliography, +Aj12,,1940,EA202,60000,in 1940; note focal year for cultural data is 1920,,EA Bibliography, +Aj13,,1952,EA202,25000,in 1952; note focal year for cultural data is 1930,,EA Bibliography, +Aj14,,1952,EA202,45000,in 1952; note focal year for cultural data is 1931,,EA Bibliography, +Aj15,,1952,EA202,26000,in 1952; note focal year for cultural data is 1900,,EA Bibliography, +Aj16,with special reference to the Riverain Mondari,1962,EA202,22000,in 1962; note focal year for cultural data is 1930,,EA Bibliography, +Aj17,,NA,EA202,200000,Date for population estimate missing,,EA Bibliography, +Aj18,,NA,EA202,2600,Date for population estimate missing,,EA Bibliography, +Aj19,,1920,EA202,25000,,,EA Bibliography, +Aj2,Kisonko or Southern Masai of Tanzania,1894,EA202,12500,See HRAF reference 1:xiv.,,Carol Ember's Concordance Database, +Aj20,,1947,EA202,4000,,,EA Bibliography, +Aj21,,1948,EA202,18000,in 1948; note focal year for cultural data is 1930,,EA Bibliography, +Aj22,,1948,EA202,5200,in 1948; note focal year for cultural data is 1930,,EA Bibliography, +Aj23,,1948,EA202,42000,,,EA Bibliography, +Aj24,,1948,EA202,34000,in 1948; note focal year for cultural data is 1930,,EA Bibliography, +Aj25,,1948,EA202,40000,in 1948; note focal year for cultural data is 1920,,EA Bibliography, +Aj26,,1948,EA202,20000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Aj27,,1948,EA202,24000,in 1948; note focal year for cultural data is 1920,,EA Bibliography, +Aj28,,1948,EA202,20000,,,EA Bibliography, +Aj29,,1965,EA202,30000,in 1965; note focal year for cultural data is 1950,,EA Bibliography, +Aj3,,1931,EA202,430000,,,EA Bibliography, +Aj30,,1960,EA202,60000,,,EA Bibliography, +Aj31,,NA,EA202,7000,Date for population estimate missing,,EA Bibliography, +Aj4,,1947,EA202,275000,in 1947; note focal year for cultural data is 1920,,EA Bibliography, +Aj5,,1951,EA202,80000,in 1951; note focal year for cultural data is 1920,,EA Bibliography, +Aj6,,1947,EA202,800000,,,EA Bibliography, +Aj7,,1948,EA202,113000,in 1948; note focal year for cultural data is 1910,,EA Bibliography, +Aj8,,1952,EA202,35000,in 1952; note focal year for cultural data is 1920,,EA Bibliography, +Aj9,,1948,EA202,157000,in 1948; note focal year for cultural data is 1920,,EA Bibliography, +Ca1,,,EA202,NA,,,, +Ca10,,1950,EA202,70000,in 1950; note focal year for cultural data is 1880,,EA Bibliography, +Ca11,,,EA202,NA,,,, +Ca12,,,EA202,NA,,,, +Ca13,,,EA202,NA,,,, +Ca14,,,EA202,NA,,,, +Ca15,,,EA202,NA,,,, +Ca16,,,EA202,NA,,,, +Ca17,,1951,EA202,1000,,,EA Bibliography, +Ca18,,1950,EA202,1500,,,EA Bibliography, +Ca19,,1959,EA202,5000,"Data source gives population data as ""more than 5,000""",,EA Bibliography, +Ca2,,,EA202,NA,,,, +Ca20,,1890,EA202,2500,,,EA Bibliography, +Ca21,,1950,EA202,9000,,,EA Bibliography, +Ca22,,1950,EA202,3800,,,EA Bibliography, +Ca23,,,EA202,NA,,,, +Ca24,,1951,EA202,2000,,,EA Bibliography, +Ca25,,1951,EA202,3500,,,EA Bibliography, +Ca26,,NA,EA202,7000,Date for population estimate missing,,EA Bibliography, +Ca27,,,EA202,NA,,,, +Ca28,,1951,EA202,5000,,,EA Bibliography, +Ca29,,,EA202,NA,,,, +Ca3,,NA,EA202,1000000,Date for population estimate missing,,EA Bibliography, +Ca30,,,EA202,NA,,,, +Ca31,,NA,EA202,20000,Date for population estimate missing,,EA Bibliography, +Ca32,,1937,EA202,9500,in 1937; note focal year for cultural data is 1860,,EA Bibliography, +Ca33,,1937,EA202,17000,in 1937; note focal year for cultural data is 1860,,EA Bibliography, +Ca34,,1927,EA202,13000,,,EA Bibliography, +Ca35,,1935,EA202,40000,,,EA Bibliography, +Ca36,,1950,EA202,90000,in 1950; note focal year for cultural data is 1860,,EA Bibliography, +Ca37,,,EA202,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1940,EA202,25000,in 1940; Maria; note focal year for cultural data is 1860,,EA Bibliography, +Ca39,,1936,EA202,300000,,,EA Bibliography, +Ca4,,1948,EA202,100000,,,EA Bibliography, +Ca40,,,EA202,NA,,,, +Ca41,,,EA202,NA,,,, +Ca42,,1951,EA202,15000,,,EA Bibliography, +Ca43,,1935,EA202,70000,,,EA Bibliography, +Ca5,,1933,EA202,15000,,,EA Bibliography, +Ca6,,1950,EA202,110000,in 1950; note focal year for cultural data is 1880,,EA Bibliography, +Ca7,Gondar district,1953,EA202,22000,,,Carol Ember's Concordance Database, +Ca8,,1960,EA202,350000,in 1960; note focal year for cultural data is 1940,,EA Bibliography, +Ca9,,1948,EA202,17500,in 1948; note focal year for cultural data is 1890,,EA Bibliography, +Cb1,,NA,EA202,NA,"Date for population estimate missing; Data source gives population data as ""a relatively small minority of the total Hausa population of over 5,000,000"" +",,EA Bibliography, +Cb10,,1931,EA202,37000,in 1931; note focal year for cultural data is 1920,,EA Bibliography, +Cb11,,,EA202,NA,,,, +Cb12,,,EA202,NA,,,, +Cb13,,,EA202,NA,,,, +Cb14,,,EA202,NA,,,, +Cb15,,,EA202,NA,,,, +Cb16,,NA,EA202,700000,"Date for population estimate missing; Data source gives population number as ""several hundred thousand""",,EA Bibliography, +Cb17,,,EA202,NA,,,, +Cb18,,1937,EA202,30000,,,EA Bibliography, +Cb19,,1952,EA202,750000,in 1952; note focal year for cultural data is 1870,,EA Bibliography, +Cb2,Upper and lower Salum in Gambia,1949,EA202,660000,See HRAF 1:12,,Carol Ember's Concordance Database, +Cb20,,1954,EA202,250000,in 1954; note focal year for cultural data is 1920,,EA Bibliography, +Cb21,,,EA202,NA,,,, +Cb22,,1939,EA202,70000,in 1939; note focal year for cultural data is 1920,,EA Bibliography, +Cb23,,1950,EA202,275000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Cb24,,,EA202,NA,,,, +Cb25,,1940,EA202,50000,,,EA Bibliography, +Cb26,Zazzagawa of Zaria,1948,EA202,260000,"This is the population of Hausa in Zaria. All together 5,000,000 Hausa in 1952 (HRAF Source #3 p. 7).",,Carol Ember's Concordance Database, +Cb27,,1930,EA202,11000,,,EA Bibliography, +Cb28,,1922,EA202,8000,,,EA Bibliography, +Cb29,,1921,EA202,21000,,,EA Bibliography, +Cb3,Bamba division,1953,EA202,400000,in 1953; This figure is taken from EA-Summary; note focal year for cultural data is 1940,,Carol Ember's Concordance Database, +Cb4,,,EA202,NA,,,, +Cb5,,1937,EA202,16000,in 1937; note focal year for cultural data is 1910,,EA Bibliography, +Cb6,,1948,EA202,38000,in 1948; note focal year for cultural data is 1920,,EA Bibliography, +Cb7,,1933,EA202,33000,in 1933; note focal year for cultural data is 1920,,EA Bibliography, +Cb8,with special reference to the Bororo Fulani of Skoto,NA,EA202,450000,Date for population estimate missing,,EA Bibliography, +Cb9,"Hausa, with special reference to the Kanawa",NA,EA202,1000000,Date for population estimate missing,,EA Bibliography, +Cc1,,NA,EA202,35000,Date for population estimate missing,,EA Bibliography, +Cc10,,1944,EA202,28000,in 1944; note focal year for cultural data is 1900,,EA Bibliography, +Cc11,,1944,EA202,2000,in 1944; note focal year for cultural data is 1860,,EA Bibliography, +Cc12,,1944,EA202,4200,,,EA Bibliography, +Cc13,,1939,EA202,11600,in 1939; note focal year for cultural data is 1920,,EA Bibliography, +Cc14,,NA,EA202,20000,Date for population estimate missing,,EA Bibliography, +Cc15,,1925,EA202,120000,,,EA Bibliography, +Cc16,,1936,EA202,20000,,,EA Bibliography, +Cc17,,1915,EA202,6000,in 1915; note focal year for cultural data is 1930,,EA Bibliography, +Cc18,,,EA202,NA,,,, +Cc19,,1938,EA202,75000,in 1938; note focal year for cultural data is 1950,,EA Bibliography, +Cc2,Nomads of Tibesti,1950,EA202,10000,The population figure is taken from EA-Summary,,Carol Ember's Concordance Database, +Cc20,,,EA202,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1937,EA202,3800,in 1937; note focal year for cultural data is 1920,,EA Bibliography, +Cc4,,1939,EA202,32000,in 1939; note focal year for cultural data is 1920,,EA Bibliography, +Cc5,,1941,EA202,10000,in 1941; note focal year for cultural data is 1910,,EA Bibliography, +Cc6,,,EA202,NA,,,, +Cc7,Timbuctoo,1912,EA202,15000,in 1912; note focal year for cultural data is 1950,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1909,EA202,7000,in 1909; note focal year for cultural data is 1890,,EA Bibliography, +Cc9,,,EA202,NA,,,, +Cd1,,,EA202,NA,,,, +Cd10,,1905,EA202,17000,,,EA Bibliography, +Cd11,,NA,EA202,NA,Date for population estimate missing; extinct,,EA Bibliography, +Cd12,,,EA202,NA,,,, +Cd13,,NA,EA202,100000,Date for population estimate missing,,EA Bibliography, +Cd14,,NA,EA202,1000000,Date for population estimate missing,,EA Bibliography, +Cd15,,NA,EA202,500000,Date for population estimate missing,,EA Bibliography, +Cd16,with special reference to those in the hinterlandof Casablanca,1925,EA202,1200000,western Morocco,,EA Bibliography, +Cd17,,,EA202,NA,,,, +Cd18,,1927,EA202,38000,"Total-38,928 (HRAF 9:277)",,Carol Ember's Concordance Database, +Cd19,,NA,EA202,1000000,"Date for population estimate missing; Data source gives population data as ""more than 1,000,000""",,EA Bibliography, +Cd2,Town and environs of Silwa,1957,EA202,23000000,,,Carol Ember's Concordance Database, +Cd20,,1940,EA202,150000,,,EA Bibliography, +Cd21,,NA,EA202,7000000,"Date for population estimate missing; Data source gives population number as ""several millions""",,EA Bibliography, +Cd3,Entirety: Moroccan,1921,EA202,400000,,,Carol Ember's Concordance Database, +Cd4,,1930,EA202,1000000,in 1930; note focal year for cultural data is 1890,,EA Bibliography, +Cd5,with special reference to those of the Grand Atlas Mountains,1921,EA202,600000,,,EA Bibliography, +Cd6,with special reference to the New Empire,NA,EA202,2000000,"Date for population estimate missing; Data source gives population data as ""2,000,000 or more""",,EA Bibliography, +Cd7,with special reference to the Zemmur tribe,1925,EA202,450000,in 1925; note focal year for cultural data is 1910,,EA Bibliography, +Cd8,,1926,EA202,126000,in 1926; note focal year for cultural data is 1910,,EA Bibliography, +Cd9,,,EA202,NA,,,, +Ce1,,,EA202,NA,,,, +Ce2,,,EA202,NA,,,, +Ce3,,,EA202,NA,,,, +Ce4,,,EA202,NA,,,, +Ce5,,,EA202,NA,,,, +Ce6,,,EA202,NA,,,, +Ce7,,,EA202,NA,,,, +Ce8,,,EA202,NA,,,, +Cf1,,,EA202,NA,,,, +Cf2,,,EA202,NA,,,, +Cf3,,1938,EA202,188,population evacuated in 1961 because of a volcanic eruption.,,EA Bibliography, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA202,2700,,,EA Bibliography, +Cf5,,,EA202,NA,,,, +Cg1,,,EA202,NA,,,, +Cg2,,1950,EA202,50000,in 1950; note focal year for cultural data is 1100,,EA Bibliography, +Cg3,County Clare,1926,EA202,2963000,See HRAF reference 1:98.,,Carol Ember's Concordance Database, +Cg4,Konkama District,1951,EA202,200,The actual figure is 191 (EA-Summary).,,Carol Ember's Concordance Database, +Cg5,,,EA202,NA,,,, +Ch1,with special reference to the village of Orasac,1953,EA202,2200,"The actual number is 2,182 (3:41).",,Carol Ember's Concordance Database, +Ch10,,1950,EA202,16000000,in 1950; note focal year for cultural data is 1910,,EA Bibliography, +Ch11,,,EA202,NA,,,, +Ch2,,1890,EA202,60000,,,EA Bibliography, +Ch3,with special reference to the Hana district of central Moravia,1950,EA202,8800000,,,EA Bibliography, +Ch4,,1941,EA202,400000,in 1941; note focal year for cultural data is 1900,,EA Bibliography, +Ch5,with special reference to the village of Dragelevtsy,1934,EA202,1700,"The actual figure is 1,669 (2:6).",,Carol Ember's Concordance Database, +Ch6,,,EA202,NA,,,, +Ch7,,,EA202,NA,,,, +Ch8,,1950,EA202,9400000,,,EA Bibliography, +Ch9,,1950,EA202,217000,in 1950; note focal year for cultural data is 1930,,Carol Ember's Concordance Database, +Ci1,with special reference to the Baga Dorbed group,1939,EA202,134000,"in 1939; 70,000 in Baga Dorbed; note focal year for cultural data is 1920",,EA Bibliography, +Ci10,,,EA202,NA,,,, +Ci11,,1951,EA202,30000000,in 1951; This figure is taken from HRAF/PSF A:245; note focal year for cultural data is 1940,,Carol Ember's Concordance Database, +Ci12,,,EA202,NA,,,, +Ci2,,1927,EA202,3500,,,EA Bibliography, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1959,EA202,135000,in 1959; note focal year for cultural data is 1900,,EA Bibliography, +Ci4,,NA,EA202,250000,Date for population estimate missing,,EA Bibliography, +Ci5,,,EA202,NA,,,, +Ci6,,1939,EA202,350000,in 1939; note focal year for cultural data is 1880,,EA Bibliography, +Ci7,,1939,EA202,400000,in 1939; note focal year for cultural data is 1900,,EA Bibliography, +Ci8,,1926,EA202,1600000,in 1926; note focal year for cultural data is 1850,,EA Bibliography, +Ci9,,1944,EA202,23000,in 1944; note focal year for cultural data is 1910,,EA Bibliography, +Cj1,,,EA202,NA,,,, +Cj10,with special reference to the village of ech-Chibayish,NA,EA202,400000,"Date for population estimate missing; 11,000 ech-Chibayish",,EA Bibliography, +Cj2,Unspecified,1920,EA202,35000,See EA-Summary,,Carol Ember's Concordance Database, +Cj3,,,EA202,NA,,,, +Cj4,,,EA202,NA,,,, +Cj5,,,EA202,NA,,,, +Cj6,with special reference to the sedentary population,1956,EA202,1440000,,,EA Bibliography, +Cj7,with special reference to the village of Munsif,1956,EA202,1575000,581 in Munsif,,EA Bibliography, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA202,600,in the Mount Carmel region,,EA Bibliography, +Cj9,,1947,EA202,4000000,"This figure is taken from HRAF 2:12, which lists no field date. Since the publication date is 1947, one may assume that the figure is taken from a point in time prior to this time.",,Carol Ember's Concordance Database, +Ea1,,1961,EA202,9500000,in 1961; note focal year for cultural data is 1950,,EA Bibliography, +Ea10,with special reference to the more nomadic groups,1955,EA202,60000,,,EA Bibliography, +Ea11,with special reference to the Ghilzai tribe,1950,EA202,4500000,,,EA Bibliography, +Ea12,,NA,EA202,400000,Date for population estimate missing,,EA Bibliography, +Ea13,Mohla Village,1950,EA202,300,The actual figure is 350 (EA).,,Carol Ember's Concordance Database, +Ea2,with special reference to the Yusufsai of Swat,NA,EA202,450000,Date for population estimate missing; This is the population figure for Swat.,,Carol Ember's Concordance Database, +Ea3,with special reference to the Urazgani,NA,EA202,500000,"Date for population estimate missing; 65,000 Urazgani",,EA Bibliography, +Ea4,,NA,EA202,15000,Date for population estimate missing,,EA Bibliography, +Ea5,,NA,EA202,60000,Date for population estimate missing,,EA Bibliography, +Ea6,,,EA202,NA,,,, +Ea7,,NA,EA202,3000,"Date for population estimate missing; Data source gives population number as ""a few thousand""",,EA Bibliography, +Ea8,,,EA202,NA,,,, +Ea9,,NA,EA202,10000000,Date for population estimate missing,,EA Bibliography, +Eb1,,,EA202,NA,,,, +Eb2,,1909,EA202,55000,in 1909; note focal year for cultural data is 1920,,EA Bibliography, +Eb3,,,EA202,NA,,,, +Eb4,,,EA202,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1939,EA202,800000,in 1939; note focal year for cultural data is 1910,,EA Bibliography, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA202,300000,,,EA Bibliography, +Eb7,,1943,EA202,2300,in 1943; note focal year for cultural data is 1930,,EA Bibliography, +Eb8,with special reference to the Kongrat tribe,1924,EA202,16750,in 1924; note focal year for cultural data is 1800,,EA Bibliography, +Ec1,,,EA202,NA,,,, +Ec10,with special reference to those on the Ob River,1897,EA202,17000,in 1897; note focal year for cultural data is 1880,,EA Bibliography, +Ec11,,NA,EA202,6000,Date for population estimate missing,,EA Bibliography, +Ec2,with special reference to the Yakutsk district,1911,EA202,245000,in 1911; note focal year for cultural data is 1900,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA202,9000,,,Carol Ember's Concordance Database, +Ec4,,,EA202,NA,,,, +Ec5,with special reference to the Maritime Koryak,NA,EA202,7500,Date for population estimate missing,,EA Bibliography, +Ec6,,,EA202,NA,,,, +Ec7,Saru Basin in Hokkaido,1923,EA202,15500,"in 1923; The actual figure is 15,461 (2:5); note focal year for cultural data is 1900",,Carol Ember's Concordance Database, +Ec8,,NA,EA202,1300,Date for population estimate missing,,EA Bibliography, +Ec9,,1930,EA202,100,,,EA Bibliography, +Ed1,Kanghwa Island,1947,EA202,200,The actual population of Sondup'o is 169 persons.,,Carol Ember's Concordance Database, +Ed10,,,EA202,NA,,,, +Ed13,with special reference to the town of Kabira,1940,EA202,21000,,,EA Bibliography, +Ed14,,,EA202,NA,,,, +Ed15a,with special reference to the village of Karimata,1940,EA202,52000,,,EA Bibliography, +Ed15b,,,EA202,NA,,,, +Ed16,,,EA202,NA,,,, +Ed2,,,EA202,NA,,,, +Ed3,,,EA202,NA,,,, +Ed4,with special reference to the Magpie (Yachio) Miao,1954,EA202,2500000,"in 1954; 10,000 Magpie Miao; note focal year for cultural data is 1940",,EA Bibliography, +Ed5,Okayama,NA,EA202,80000000,Date for population estimate missing,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1919,EA202,600,See HRAF reference 1:29.,,Carol Ember's Concordance Database, +Ed7,,1950,EA202,517000,,,EA Bibliography, +Ed8,,1950,EA202,400000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Ed9,,1954,EA202,220000,in 1954; note focal year for cultural data is 1930,,EA Bibliography, +Ee1,,,EA202,NA,,,, +Ee2,,,EA202,NA,,,, +Ee3,Lingthem and vicinity,1931,EA202,25800,"The actual figure is 25,780.",,Carol Ember's Concordance Database, +Ee4,with special reference to Central Tibet,1915,EA202,4000000,,,EA Bibliography, +Ee5,,,EA202,NA,,,, +Ee6,,,EA202,NA,,,, +Ee7,,,EA202,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1960,EA202,3000,inhabitants of Banyan Hill,,EA Bibliography, +Ef1,Bankura and Berghum Districts,1931,EA202,2500000,See HRAF reference 4:2.,,Carol Ember's Concordance Database, +Ef10,Ganges River Valley,1880,EA202,24200000,,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1941,EA202,1400,See HRAF reference 5:465a.,,Carol Ember's Concordance Database, +Ef2,,,EA202,NA,,,, +Ef3,,,EA202,NA,,,, +Ef4,,1931,EA202,523000,in 1931; note focal year for cultural data is 1920,,EA Bibliography, +Ef5,,NA,EA202,1250000,Date for population estimate missing,,EA Bibliography, +Ef6,,1951,EA202,650000,in 1951; note focal year for cultural data is 1940,,EA Bibliography, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,NA,EA202,5000000,Date for population estimate missing,,EA Bibliography, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1961,EA202,1900000,in 1961; Hindu Kashmiri; note focal year for cultural data is 1950,,EA Bibliography, +Ef9,,,EA202,NA,,,, +Eg1,with special reference to the forest group,1941,EA202,3820,,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1951,EA202,2500,See HRAF reference 1:19.,,Carol Ember's Concordance Database, +Eg11,with special reference to the Gommu Koya,1960,EA202,75000,,,EA Bibliography, +Eg12,with special reference to the Bondo,1941,EA202,2500,Bondo,,EA Bibliography, +Eg13,Bastar State,1941,EA202,219700,"The actual figure is 219,654 (2:630).",,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,,,EA202,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,NA,EA202,3000000,Date for population estimate missing; in Tanjore,,EA Bibliography, +Eg3,Hill Maria,1927,EA202,11500,in 1927; See HRAF reference 1:28; note focal year for cultural data is 1938,,Carol Ember's Concordance Database, +Eg4,Toda Tribe,1901,EA202,700,The actual figure is 736 (1:469).,,Carol Ember's Concordance Database, +Eg5,,1936,EA202,40000,,,EA Bibliography, +Eg6,,,EA202,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,NA,EA202,2000000,Date for population estimate missing,,EA Bibliography, +Eg8,,1941,EA202,94000,,,EA Bibliography, +Eg9,,,EA202,NA,,,, +Eh1,,,EA202,NA,,,, +Eh10,,,EA202,NA,,,, +Eh2,,1951,EA202,1000000,in 1951; note focal year for cultural data is 1900,,EA Bibliography, +Eh3,Menabe subtribe,1951,EA202,170000,in 1951; See EA-Summary; note focal year for cultural data is 1930,,Carol Ember's Concordance Database, +Eh4,with special reference to the Rock Vedda,1882,EA202,200,in 1882; See HRAF reference 1:42; note focal year for cultural data is 1900,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,,,EA202,NA,,,, +Eh6,with special reference to the Kandyan Sinhalese,1954,EA202,2157000,See HRAF reference 4:13.,,Carol Ember's Concordance Database, +Eh7,,1951,EA202,255000,in 1951; note focal year for cultural data is 1900,,EA Bibliography, +Eh8,,1951,EA202,275000,in 1951; note focal year for cultural data is 1900,,EA Bibliography, +Eh9,,1951,EA202,225000,in 1951; note focal year for cultural data is 1930,,EA Bibliography, +Ei1,,,EA202,NA,,,, +Ei10,,1951,EA202,125000,in 1951; note focal year for cultural data is 1870,,EA Bibliography, +Ei11,,1931,EA202,500,in 1931; note focal year for cultural data is 1910,,EA Bibliography, +Ei12,,1921,EA202,50000,in 1921; note focal year for cultural data is 1910,,EA Bibliography, +Ei13,,,EA202,NA,,,, +Ei14,with special reference to the Chongli,1921,EA202,30000,,,EA Bibliography, +Ei15,,,EA202,NA,,,, +Ei16,,,EA202,NA,,,, +Ei17,,1901,EA202,90000,,,EA Bibliography, +Ei18,with special reference to the Katur subtribe,NA,EA202,100000,Date for population estimate missing; in Burma and others in China,,EA Bibliography, +Ei19,,1943,EA202,350000,,,EA Bibliography, +Ei2,,1922,EA202,20000,,,EA Bibliography, +Ei20,,,EA202,NA,,,, +Ei3,,,EA202,NA,,,, +Ei4,,,EA202,NA,,,, +Ei5,with special reference to the Jinghpaw,NA,EA202,300000,Date for population estimate missing,,EA Bibliography, +Ei6,,1936,EA202,300,,,EA Bibliography, +Ei7,,NA,EA202,2000000,Date for population estimate missing,,EA Bibliography, +Ei8,with special reference to those of the Jaintia Hills,1901,EA202,175000,,,EA Bibliography, +Ei9,,1951,EA202,66000,in 1951; note focal year for cultural data is 1880,,EA Bibliography, +Ej1,,,EA202,NA,,,, +Ej10,,,EA202,NA,,,, +Ej11,with special reference to the non-Muslim Cham of Vietnam,NA,EA202,40000,"Date for population estimate missing; in Vietnam, 60,000 others in Cambodia",,EA Bibliography, +Ej12,,1961,EA202,9000,,,EA Bibliography, +Ej13,,1946,EA202,250000,,,EA Bibliography, +Ej14,with special reference to the eastern Semai,1961,EA202,12000,,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA202,NA,,,, +Ej16,,,EA202,NA,,,, +Ej2,with special reference to the village of Sar Luk,1948,EA202,100,,,Carol Ember's Concordance Database, +Ej3,Jehai Group or subtribe,1920,EA202,2000,,,Carol Ember's Concordance Database, +Ej4,Red River Delta in Tonkin,NA,EA202,22000000,Date for population estimate missing; This is the total number of Vietnamese.,,Carol Ember's Concordance Database, +Ej5,,1950,EA202,3500000,,,Carol Ember's Concordance Database, +Ej6,,,EA202,NA,,,, +Ej7,,NA,EA202,40000,"Date for population estimate missing; Two pop numbers given: ""40,000 in Burma, others in China and Laos"" and ""65,000 in Burma and Thailand, others in China""",,EA Bibliography, +Ej8,with special reference to those of Trengganu,NA,EA202,1250000,Date for population estimate missing,,EA Bibliography, +Ej9,,1940,EA202,10000000,,,Carol Ember's Concordance Database, +Ia1,,,EA202,NA,,,, +Ia10,,1931,EA202,18000,,,EA Bibliography, +Ia11,,1931,EA202,5300,,,EA Bibliography, +Ia12,,1964,EA202,2225000,in 1964; note focal year for cultural data is 1950,,EA Bibliography, +Ia13,,,EA202,NA,,,, +Ia14,,1960,EA202,1560,in 1960; note focal year for cultural data is 1930,,EA Bibliography, +Ia15,,,EA202,NA,,,, +Ia16,with special reference to the northern Kalinga,1919,EA202,40000,,,EA Bibliography, +Ia17,,,EA202,NA,,,, +Ia18,,,EA202,NA,,,, +Ia2,,NA,EA202,10000,"Date for population estimate missing; 3,000 in Sagada",,EA Bibliography, +Ia3,Kiangan Group,1908,EA202,130000,in 1908; note focal year for cultural data is 1920,,Carol Ember's Concordance Database, +Ia4,with special reference to the Eastern Subanun,1950,EA202,70000,"55,550 Eastern Subanun",,EA Bibliography, +Ia5,,1950,EA202,6000,,,EA Bibliography, +Ia6,Su-Paiwan Village,1960,EA202,35000,in 1960; note focal year for cultural data is 1930,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,NA,EA202,7000,Date for population estimate missing,,EA Bibliography, +Ia8,,NA,EA202,40000,Date for population estimate missing,,EA Bibliography, +Ia9,with special reference to the southern Ami,1960,EA202,55000,in 1960; note focal year for cultural data is 1930,,EA Bibliography, +Ib1,"Ulu Ai Group, Baleh",1949,EA202,11500,,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1952,EA202,24000,,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1959,EA202,1000000,,,EA Bibliography, +Ib4,with special reference to the Toba group,1959,EA202,1000000,in 1959; note focal year for cultural data is 1930,,Carol Ember's Concordance Database, +Ib5,with special reference to the village of Sensuron,NA,EA202,145000,Date for population estimate missing,,EA Bibliography, +Ib6,,1930,EA202,2000000,,,Carol Ember's Concordance Database, +Ib7,with special reference to those of North Pageh,NA,EA202,10000,Date for population estimate missing,,EA Bibliography, +Ib8,with special reference to the Ridan group,1925,EA202,7000,"in 1925; Data source gives population data as ""7,000 Ridan in 1925""; note focal year for cultural data is 1900",,EA Bibliography, +Ib9,,,EA202,NA,,,, +Ic1,Borongloe,1950,EA202,4000000,,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA202,NA,,,, +Ic11,,,EA202,NA,,,, +Ic12,with special reference to the village of Rarak in Western Sumbawa,1941,EA202,135000,,,EA Bibliography, +Ic13,,,EA202,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA202,10000,,,Carol Ember's Concordance Database, +Ic3,with special reference to the Mountain Belu,1952,EA202,82000,exclusive of those in Portuguese territory,,EA Bibliography, +Ic4,,1885,EA202,53000,in 1885; note focal year for cultural data is 1920,,EA Bibliography, +Ic5,Bare'e subgroup,NA,EA202,25000,Date for population estimate missing,,EA Bibliography, +Ic6,,NA,EA202,25000,Date for population estimate missing,,Carol Ember's Concordance Database, +Ic7,,,EA202,NA,,,, +Ic8,,1930,EA202,30000,in 1930; note focal year for cultural data is 1890,,EA Bibliography, +Ic9,with special reference to eastern Sumba,1940,EA202,100000,,,EA Bibliography, +Id1,Alice Springs and environs,1900,EA202,2000,The population in +1927 was roughly 300 to 400 (1:1).,,Carol Ember's Concordance Database, +Id10,,1954,EA202,1400,in 1954; note focal year for cultural data is 1930,,EA Bibliography, +Id11,,1960,EA202,294,,,EA Bibliography, +Id12,,,EA202,NA,,,, +Id13,,1941,EA202,300,in 1941; note focal year for cultural data is 1930,,EA Bibliography, +Id2,,1950,EA202,2000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Id3,Tiwi Tribe: Melville Island,1928,EA202,1000,,,Carol Ember's Concordance Database, +Id4,,,EA202,NA,,,, +Id5,,1865,EA202,650,in 1865; note focal year for cultural data is 1910,,EA Bibliography, +Id6,with special reference to the Archer River group,1929,EA202,150,"1,500 aboriginally",,EA Bibliography, +Id7,,1950,EA202,176,,,EA Bibliography, +Id8,,1830,EA202,2000,See EA-Summary,,Carol Ember's Concordance Database, +Id9,,,EA202,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1954,EA202,200,The total population of Botukebo was 181 in +1954.,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1954,EA202,7000,,,EA Bibliography, +Ie11,,,EA202,NA,,,, +Ie12,Hongwam subtribe; Rumbima,1936,EA202,300,See HRAF reference 1:5,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA202,NA,,,, +Ie14,,,EA202,NA,,,, +Ie15,,,EA202,NA,,,, +Ie16,,1940,EA202,400,,,EA Bibliography, +Ie17,,1953,EA202,15000,in 1953; note focal year for cultural data is 1940,,EA Bibliography, +Ie18,,,EA202,NA,,,, +Ie19,with special reference to the coastal inhabitants,1910,EA202,13000,,,EA Bibliography, +Ie2,,1954,EA202,5157,in 1954; note focal year for cultural data is 1920,,EA Bibliography, +Ie20,,1909,EA202,2000,,,EA Bibliography, +Ie21,,,EA202,NA,,,, +Ie22,,1897,EA202,3100,,,EA Bibliography, +Ie23,,,EA202,NA,,,, +Ie24,,,EA202,NA,,,, +Ie25,,NA,EA202,9000,Date for population estimate missing,,EA Bibliography, +Ie26,,1945,EA202,600,,,EA Bibliography, +Ie27,,,EA202,NA,,,, +Ie28,,1946,EA202,1300,,,EA Bibliography, +Ie29,principally Tsogari,1933,EA202,3500,,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,,,EA202,NA,,,, +Ie30,,NA,EA202,8500,Date for population estimate missing,,EA Bibliography, +Ie31,,1955,EA202,10000,,,EA Bibliography, +Ie32,,1964,EA202,1500,,,EA Bibliography, +Ie33,,,EA202,NA,,,, +Ie34,,1864,EA202,480,in 1864; note focal year for cultural data is 1960,,EA Bibliography, +Ie35,,,EA202,NA,,,, +Ie36,,1955,EA202,68,,,EA Bibliography, +Ie37,,1960,EA202,10000,,,EA Bibliography, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA202,50000,,,EA Bibliography, +Ie39,,,EA202,NA,,,, +Ie4,"Dap, Wonevaro district",NA,EA202,1000,Date for population estimate missing,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1926,EA202,700,,,EA Bibliography, +Ie6,,1937,EA202,6000,,,EA Bibliography, +Ie7,with special reference to the Mae group,NA,EA202,90000,"Date for population estimate missing; 26,000 Mae",,EA Bibliography, +Ie8,with special reference to the Koriki,NA,EA202,8000,Date for population estimate missing,,EA Bibliography, +Ie9,,1923,EA202,9000,See HRAF reference 1:7,,Carol Ember's Concordance Database, +If1,"Ulimang, Badeldaob Island",1960,EA202,6000,in 1960; note focal year for cultural data is 1940,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1935,EA202,900,,,EA Bibliography, +If11,,1905,EA202,500,in 1905; note focal year for cultural data is 1860,,EA Bibliography, +If12,,1935,EA202,170,,,EA Bibliography, +If13,,NA,EA202,3300,Date for population estimate missing,,EA Bibliography, +If14,Makin and Butiritari Islands (N),1890,EA202,2000,,,Carol Ember's Concordance Database, +If15,,1950,EA202,1100,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +If16,,1962,EA202,200,See HRAF reference EA.,,Carol Ember's Concordance Database, +If17,with special reference to the island of Jaluit,1947,EA202,10000,in 1947; 900 on Majuro; note focal year for cultural data is 1900,,EA Bibliography, +If2,Romonum Island,1947,EA202,10000,This total reflects the population on the island of Romonum.,,Carol Ember's Concordance Database, +If3,With special reference to the inhabitants of Majuro,1947,EA202,900,See EA-Summary,,Carol Ember's Concordance Database, +If4,with special reference to the inhabitants of Ifaluk atoll,1948,EA202,250,,,EA Bibliography, +If5,,1935,EA202,8000,in 1935; note focal year for cultural data is 1910,,EA Bibliography, +If6,Island,1900,EA202,7000,The actual estimate of the population was between 7000 and 8000 (2:129).,,Carol Ember's Concordance Database, +If7,with special reference to the inhabitants of Onotoa,NA,EA202,450,Date for population estimate missing; on Onotoa,,EA Bibliography, +If8,with special reference to those of Saipa,1950,EA202,3850,on Saipan,,EA Bibliography, +If9,,1949,EA202,421,in 1949; note focal year for cultural data is 1900,,EA Bibliography, +Ig1,,,EA202,NA,,,, +Ig10,,,EA202,NA,,,, +Ig11,,1925,EA202,1500,,,EA Bibliography, +Ig12,with special reference to the Varisi,1956,EA202,5700,"in 1956; 1,000 Varisi; note focal year for cultural data is 1900",,EA Bibliography, +Ig13,,,EA202,NA,,,, +Ig14,,1951,EA202,200,in 1951; note focal year for cultural data is 1900,,EA Bibliography, +Ig15,,,EA202,NA,,,, +Ig16,,,EA202,NA,,,, +Ig17,,,EA202,NA,,,, +Ig18,,1965,EA202,6000,,,EA Bibliography, +Ig19,,1950,EA202,1400,,,EA Bibliography, +Ig2,Kiriwina Island,1920,EA202,9000,See HRAF reference 16:139,,Carol Ember's Concordance Database, +Ig20,,,EA202,NA,,,, +Ig21,with special reference to Boieng Island,1932,EA202,1200,,,EA Bibliography, +Ig3,,,EA202,NA,,,, +Ig4,Lesu Village,1929,EA202,200,The actual figure is 232 (1:15).,,Carol Ember's Concordance Database, +Ig5,,,EA202,NA,,,, +Ig6,,1909,EA202,1200,,,EA Bibliography, +Ig7,,,EA202,NA,,,, +Ig8,,1960,EA202,800,in 1960; note focal year for cultural data is 1910,,EA Bibliography, +Ig9,Peri Village,1928,EA202,2000,See HRAF reference 2:21.,,Carol Ember's Concordance Database, +Ih1,,,EA202,NA,,,, +Ih10,,,EA202,NA,,,, +Ih11,,,EA202,NA,,,, +Ih12,,,EA202,NA,,,, +Ih13,,,EA202,NA,,,, +Ih14,,,EA202,NA,,,, +Ih2,,,EA202,NA,,,, +Ih3,,,EA202,NA,,,, +Ih4,,,EA202,NA,,,, +Ih5,,,EA202,NA,,,, +Ih6,,1960,EA202,3000,in 1960; note focal year for cultural data is 1890,,EA Bibliography, +Ih7,,,EA202,NA,,,, +Ih8,,,EA202,NA,,,, +Ih9,Graciosa Bay,1958,EA202,2500,in 1958; See EA-Summary for the figure above. Note also that in 1912 the population was between 1000 and 1500 (2:155); note focal year for cultural data is 1930,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1926,EA202,45000,"8,000 in American Samoa",,EA Bibliography, +Ii10,,1950,EA202,1000,,,EA Bibliography, +Ii12,Pangai,1921,EA202,24000,,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1919,EA202,4400,in 1919; note focal year for cultural data is 1830,,EA Bibliography, +Ii14,,,EA202,NA,,,, +Ii2,Ravenga District,1929,EA202,1300,See EA-Summary,,Carol Ember's Concordance Database, +Ii3,,NA,EA202,500,Date for population estimate missing,,EA Bibliography, +Ii4,,,EA202,NA,,,, +Ii5,"Leuenuwa, Lord Howe's Islanders",1928,EA202,700,,,EA Bibliography, +Ii6,with special reference to Atafu,NA,EA202,400,Date for population estimate missing,,EA Bibliography, +Ii7,,1950,EA202,482,in 1950; note focal year for cultural data is 1910,,EA Bibliography, +Ii8,,1923,EA202,1500,in 1923; note focal year for cultural data is 1840,,EA Bibliography, +Ii9,,1921,EA202,3720,in 1921; note focal year for cultural data is 1840,,EA Bibliography, +Ij1,,1926,EA202,1250,in 1926; note focal year for cultural data is 1820,,EA Bibliography, +Ij10,,1926,EA202,400,"in 1926; Data source gives population number as ""under 400""; note focal year for cultural data is 1900",,EA Bibliography, +Ij2,Nga Puhi Tribe,1896,EA202,42100,"in 1896; The actual figure is 42,113 (3:414); note focal year for cultural data is 1820",,Carol Ember's Concordance Database, +Ij3,,1921,EA202,1800,in 1921; note focal year for cultural data is 1900,,Carol Ember's Concordance Database, +Ij4,,1926,EA202,400,in 1926; note focal year for cultural data is 1850,,EA Bibliography, +Ij5,,1950,EA202,109,in 1950; note focal year for cultural data is 1900,,EA Bibliography, +Ij6,,,EA202,NA,,,, +Ij7,,NA,EA202,3000,"Date for population estimate missing; Data source gives population number as ""never more than a few thousand""",,EA Bibliography, +Ij8,,,EA202,NA,,,, +Ij9,,1936,EA202,450,in 1936; note focal year for cultural data is 1860,,EA Bibliography, +Na1,,1930,EA202,152,,,EA Bibliography, +Na10,,1933,EA202,200,,,EA Bibliography, +Na11,,1955,EA202,293,in 1955; note focal year for cultural data is 1920,,EA Bibliography, +Na12,,1953,EA202,200,,,EA Bibliography, +Na13,,,EA202,NA,,,, +Na14,,1926,EA202,271,in 1926; note focal year for cultural data is 1880,,EA Bibliography, +Na15,,1959,EA202,900,in 1959; note focal year for cultural data is 1860,,EA Bibliography, +Na16,,,EA202,NA,,,, +Na17,,,EA202,NA,,,, +Na19,with special reference to the Hwitsowitenne,1925,EA202,300,"in 1925; Data source gives population number as ""more than 300""; note focal year for cultural data is 1880",,EA Bibliography, +Na2,,1880,EA202,1000,,,EA Bibliography, +Na20,with special reference to the Tatlit of Peel River Kutchin,1858,EA202,1274,in 1858; 337 Tatlit; note focal year for cultural data is 1880,,EA Bibliography, +Na21,,1923,EA202,500,in 1923; note focal year for cultural data is 1900,,EA Bibliography, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA202,500,,,EA Bibliography, +Na23,with special reference to the Koksoagmiu,1890,EA202,1100,,,EA Bibliography, +Na24,,1884,EA202,400,,,EA Bibliography, +Na25,with special reference to the inhabitants of the Egesminde District,1918,EA202,1600,Egesminde District,,EA Bibliography, +Na26,with special reference to the Iliamna,1932,EA202,650,in 1932; note focal year for cultural data is 1870,,EA Bibliography, +Na27,,1885,EA202,50,in 1885; note focal year for cultural data is 1870,,EA Bibliography, +Na28,,1923,EA202,160,in 1923; note focal year for cultural data is 1880,,EA Bibliography, +Na29,,1914,EA202,380,in 1914; note focal year for cultural data is 1850,,EA Bibliography, +Na3,Coronation Gulf,1915,EA202,800,,,Carol Ember's Concordance Database, +Na30,,,EA202,NA,,,, +Na31,,,EA202,NA,,,, +Na32,Lake St. John & Mistassini Band,1929,EA202,700,in 1929; Source is EA-Summary; note focal year for cultural data is 1880,,Carol Ember's Concordance Database, +Na33,Berens River band,1930,EA202,900,"in 1930; Berens River band only, source is SCCS-186; note focal year for cultural data is 1870",,Carol Ember's Concordance Database, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1949,EA202,342,,,EA Bibliography, +Na35,,1880,EA202,820,in 1880; note focal year for cultural data is 1800,,EA Bibliography, +Na36,with special reference to the Red Lake and White Earth bands,1750,EA202,35000,"in 1750; Population estimate is very rough, source is HRAF 14: Kinietz, p. 14; note focal year for cultural data is 1860",,Carol Ember's Concordance Database, +Na37,,1917,EA202,244,in 1917; note focal year for cultural data is 1880,,EA Bibliography, +Na38,with special reference to the Lac Vieux Desert band,1940,EA202,76,in 1940; note focal year for cultural data is 1800,,EA Bibliography, +Na39,with special reference to the Kitchibuan of Parry Island,1929,EA202,150,in 1929; note focal year for cultural data is 1870,,EA Bibliography, +Na4,Upper Liard and Dease River Group,NA,EA202,300,Date for population estimate missing; Source is HRAF:1 p. 37.,,Carol Ember's Concordance Database, +Na40,,1670,EA202,1500,in 1670; note focal year for cultural data is 1650,,EA Bibliography, +Na41,Mainland division,1630,EA202,300,in 1630; Source is Handbook of North American Indians vol. 15 p. 117; note focal year for cultural data is 1700,,Carol Ember's Concordance Database, +Na42,Prairie Potawatomi,1760,EA202,2000,,,EA Bibliography, +Na43,,1923,EA202,260,,,EA Bibliography, +Na44,,1916,EA202,400,,,EA Bibliography, +Na45,,1914,EA202,187,in 1914; note focal year for cultural data is 1900,,EA Bibliography, +Na5,,,EA202,NA,,,, +Na6,,,EA202,NA,,,, +Na7,,,EA202,NA,,,, +Na8,,,EA202,NA,,,, +Na9,Unalaska Branch (Eastern Aleut),1840,EA202,2200,Source is SCCS-186.,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,,,EA202,NA,,,, +Nb10,,1936,EA202,100,in 1936; note focal year for cultural data is 1865,,Carol Ember's Concordance Database, +Nb11,with special reference to the Central Nootka,NA,EA202,6000,Aboriginally; Note focal year for cultural data is 1880,,EA Bibliography, +Nb12,,,EA202,NA,,,, +Nb13,,,EA202,NA,,,, +Nb14,,,EA202,NA,,,, +Nb15,,,EA202,NA,,,, +Nb16,,1881,EA202,485,in 1881; note focal year for cultural data is 1860,,EA Bibliography, +Nb17,,,EA202,NA,,,, +Nb18,,1945,EA202,285,in 1945; note focal year for cultural data is 1880,,EA Bibliography, +Nb19,,1853,EA202,100,,,EA Bibliography, +Nb2,,,EA202,NA,,,, +Nb20,,,EA202,NA,,,, +Nb21,,,EA202,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA202,6750,,,EA Bibliography, +Nb23,,1901,EA202,330,in 1901; note focal year for cultural data is 1880,,EA Bibliography, +Nb24,,1861,EA202,654,,,EA Bibliography, +Nb25,,1925,EA202,200,in 1925; note focal year for cultural data is 1860,,EA Bibliography, +Nb26,,,EA202,NA,,,, +Nb27,with special reference to the Tait,1951,EA202,1700,in 1951; note focal year for cultural data is 1880,,EA Bibliography, +Nb28,,,EA202,NA,,,, +Nb29,,,EA202,NA,,,, +Nb3,,1920,EA202,1000,in 1920; note focal year for cultural data is 1890,,EA Bibliography, +Nb30,,1884,EA202,27,in 1884; note focal year for cultural data is 1860,,EA Bibliography, +Nb31,,,EA202,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1850,EA202,2000,,,EA Bibliography, +Nb33,,1849,EA202,250,in 1849; note focal year for cultural data is 1860,,EA Bibliography, +Nb34,,1905,EA202,600,in 1905; note focal year for cultural data is 1860,,EA Bibliography, +Nb35,,1870,EA202,640,,,EA Bibliography, +Nb36,,1853,EA202,800,,,EA Bibliography, +Nb37,,,EA202,NA,,,, +Nb38,,,EA202,NA,,,, +Nb39,,,EA202,NA,,,, +Nb4,,1910,EA202,700,"in 1910; HRAF 9:Kroeber, p. 19; note focal year for cultural data is 1850",,Carol Ember's Concordance Database, +Nb5,,,EA202,NA,,,, +Nb6,,,EA202,NA,,,, +Nb7,,,EA202,NA,,,, +Nb8,,1930,EA202,400,in 1930; note focal year for cultural data is 1880,,EA Bibliography, +Nb9,"Central group, lower B.C. River",NA,EA202,400,Date for population estimate missing; Source is HRAF:1 p. v.,,Carol Ember's Concordance Database, +Nc1,,1954,EA202,300,in 1954; note focal year for cultural data is 1850,,EA Bibliography, +Nc10,,1936,EA202,100,in 1936; note focal year for cultural data is 1860,,EA Bibliography, +Nc11,,1884,EA202,35,in 1884; note focal year for cultural data is 1860,,EA Bibliography, +Nc12,with special reference to the Northeastern Mountain Maidu,1905,EA202,250,in 1905; Northern Maidu; note focal year for cultural data is 1850,,EA Bibliography, +Nc13,,,EA202,NA,,,, +Nc14,,,EA202,NA,,,, +Nc15,,1950,EA202,500,in 1950; 15 in 1910; note focal year for cultural data is 1860,,EA Bibliography, +Nc16,,NA,EA202,500,Aboriginally; 8 in 1910; Note focal year for cultural data is 1860,,EA Bibliography, +Nc17,with special reference to those of Kalekau,1850,EA202,1000,"Source is HRAF 1:Kroeber, p. 237 (Northern Pomo).",,Carol Ember's Concordance Database, +Nc18,"Clear Lake, Village of Cignon",1840,EA202,1000,in 1840; Source is HRAF 1:Kroeber p. 237 (Clear Lake Pomo only); note focal year for cultural data is 1860,,Carol Ember's Concordance Database, +Nc19,with special reference to those near Santa Rosa,1850,EA202,1000,"Source is HRAF 1:Kroeber, p. 237 (Southern Pomo).",,Carol Ember's Concordance Database, +Nc2,,NA,EA202,300,Aboriginally; 145 in 1932; Note focal year for cultural data is 1850,,EA Bibliography, +Nc20,,,EA202,NA,,,, +Nc21,,NA,EA202,500,Aboriginally; 8 in 1910; Note focal year for cultural data is 1860,,EA Bibliography, +Nc22,with special reference to the Hill Patwin,1924,EA202,150,in 1924; note focal year for cultural data is 1850,,EA Bibliography, +Nc23,,1920,EA202,500,"in 1920; Data source gives population number as ""more than 500""; note focal year for cultural data is 1870",,EA Bibliography, +Nc24,Tulare Lake,1850,EA202,1100,"Source is HRAF 12:Cook, p. 44B. Number refers to population of Tulare Lake region only.",,Carol Ember's Concordance Database, +Nc25,,1851,EA202,8600,"Source is HRAF 12:Cook, p. 34B, for Yokuts as a whole.",,Carol Ember's Concordance Database, +Nc26,,1771,EA202,2000,40 in 1910,,EA Bibliography, +Nc27,,,EA202,NA,,,, +Nc28,,NA,EA202,1800,Aboriginally; Note focal year for cultural data is 1800,,EA Bibliography, +Nc29,,1770,EA202,5000,,,EA Bibliography, +Nc3,with special reference to those of the Northern Foothills,1806,EA202,4000,in 1806; 550 in 1910; note focal year for cultural data is 1850,,EA Bibliography, +Nc30,,1910,EA202,100,"in 1910; Data source gives population number as ""slightly more than 100""; note focal year for cultural data is 1870",,EA Bibliography, +Nc31,with special reference to the Desert Cahuilla,1920,EA202,750,in 1920; note focal year for cultural data is 1870,,EA Bibliography, +Nc32,,1910,EA202,200,in 1910; note focal year for cultural data is 1870,,EA Bibliography, +Nc33,,1870,EA202,1300,,,EA Bibliography, +Nc34,,1929,EA202,36,in 1929; note focal year for cultural data is 1880,,EA Bibliography, +Nc4,,,EA202,NA,,,, +Nc5,,,EA202,NA,,,, +Nc6,with special reference to the Southern Diegueno,NA,EA202,700,Date for population estimate missing,,EA Bibliography, +Nc7,,NA,EA202,2000,Aboriginally; Note focal year for cultural data is 1850,,EA Bibliography, +Nc8,Klamath Tribe,1850,EA202,1400,"Reconstructions cover the Klamath from 1826 to ""the present."" Population is estimated as between 800 and 1,400 ""aboriginally."" Population count thus has no specific time focus.",,Carol Ember's Concordance Database, +Nc9,,1910,EA202,300,in 1910; note focal year for cultural data is 1860,,EA Bibliography, +Nd1,,1850,EA202,1200,,,EA Bibliography, +Nd10,,,EA202,NA,,,, +Nd11,,,EA202,NA,,,, +Nd12,,1906,EA202,600,in 1906; Source is HRAF 7:Teit p. 315; note focal year for cultural data is 1860,,Carol Ember's Concordance Database, +Nd13,,1905,EA202,300,in 1905; note focal year for cultural data is 1860,,EA Bibliography, +Nd14,,1905,EA202,500,in 1905; note focal year for cultural data is 1860,,EA Bibliography, +Nd15,,1930,EA202,300,in 1930; note focal year for cultural data is 1880,,EA Bibliography, +Nd16,,,EA202,NA,,,, +Nd17,,,EA202,NA,,,, +Nd18,,1800,EA202,1000,in 1800; note focal year for cultural data is 1860,,EA Bibliography, +Nd19,,,EA202,NA,,,, +Nd2,,NA,EA202,1000,Date for population estimate missing,,EA Bibliography, +Nd20,,1800,EA202,6000,in 1800; note focal year for cultural data is 1850,,EA Bibliography, +Nd21,,1890,EA202,200,in 1890; note focal year for cultural data is 1870,,EA Bibliography, +Nd22,,,EA202,NA,,,, +Nd23,,1870,EA202,140,,,EA Bibliography, +Nd24,,1873,EA202,150,,,EA Bibliography, +Nd25,,,EA202,NA,,,, +Nd26,,1850,EA202,200,in 1850; note focal year for cultural data is 1870,,EA Bibliography, +Nd27,,1866,EA202,700,,,EA Bibliography, +Nd28,,1866,EA202,800,,,EA Bibliography, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA202,125,,,EA Bibliography, +Nd3,Havasupai Tribe,1919,EA202,200,in 1919; Source is HRAF 1:Spier p. 98; note focal year for cultural data is 1870,,Carol Ember's Concordance Database, +Nd30,,1870,EA202,1000,,,EA Bibliography, +Nd31,,,EA202,NA,,,, +Nd32,with special reference to those of Saline Valley,1870,EA202,100,in 1870; Only 65 people in 1870; note focal year for cultural data is 1850,,Carol Ember's Concordance Database, +Nd33,including the Belted Range group,1875,EA202,70,,,EA Bibliography, +Nd34,,,EA202,NA,,,, +Nd35,,1874,EA202,530,,,EA Bibliography, +Nd36,,1870,EA202,400,,,EA Bibliography, +Nd37,,1875,EA202,250,,,EA Bibliography, +Nd38,,,EA202,NA,,,, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1885,EA202,450,in 1885; note focal year for cultural data is 1870,,EA Bibliography, +Nd4,,1860,EA202,660,,,EA Bibliography, +Nd40,,1875,EA202,200,,,EA Bibliography, +Nd41,,1875,EA202,1100,,,EA Bibliography, +Nd42,"including the Carlin, Halleck, and Wells groups",1872,EA202,600,,,EA Bibliography, +Nd43,,NA,EA202,800,Aboriginally; Note focal year for cultural data is 1860,,EA Bibliography, +Nd44,,,EA202,NA,,,, +Nd45,,1867,EA202,1500,,,EA Bibliography, +Nd46,,1860,EA202,600,,,EA Bibliography, +Nd47,,1860,EA202,500,,,EA Bibliography, +Nd48,,,EA202,NA,,,, +Nd49,,,EA202,NA,,,, +Nd5,,,EA202,NA,,,, +Nd50,,1870,EA202,68,,,EA Bibliography, +Nd51,,,EA202,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1873,EA202,300,in 1873; note focal year for cultural data is 1860,,EA Bibliography, +Nd53,,1850,EA202,600,,,EA Bibliography, +Nd54,Colorado River Reservation,1920,EA202,350,in 1920; note focal year for cultural data is 1860,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1874,EA202,330,in 1874; note focal year for cultural data is 1860,,EA Bibliography, +Nd56,,,EA202,NA,,,, +Nd57,,1870,EA202,134,,,EA Bibliography, +Nd58,,,EA202,NA,,,, +Nd59,,,EA202,NA,,,, +Nd6,,1845,EA202,1000,850 in 1960,,EA Bibliography, +Nd60,,,EA202,NA,,,, +Nd61,,,EA202,NA,,,, +Nd62,,,EA202,NA,,,, +Nd63,with special reference to the Eastern Bannock,1869,EA202,600,,,EA Bibliography, +Nd64,with special reference to the Kucundika,1869,EA202,1600,,,EA Bibliography, +Nd65,,1870,EA202,1000,,,EA Bibliography, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA202,500,,,Carol Ember's Concordance Database, +Nd67,,1870,EA202,500,,,EA Bibliography, +Nd7,,,EA202,NA,,,, +Nd8,with special reference to the Alexis Creek and Redstone bands,1840,EA202,600,in 1840; note focal year for cultural data is 1880,,EA Bibliography, +Nd9,,1850,EA202,4000,,,EA Bibliography, +Ne1,Gros Ventre Tribe,1880,EA202,2000,Population is estimated as between 800 and 2000 in 1880 (see HRAF:4 p. 411 and SCCS-186 print-out).,,Carol Ember's Concordance Database, +Ne10,,1871,EA202,1650,in 1871; note focal year for cultural data is 1860,,EA Bibliography, +Ne11,,1890,EA202,3000,in 1890; note focal year for cultural data is 1870,,EA Bibliography, +Ne12,,1809,EA202,1600,in 1809; note focal year for cultural data is 1850,,EA Bibliography, +Ne13,,1809,EA202,800,in 1809; note focal year for cultural data is 1850,,EA Bibliography, +Ne14,,1958,EA202,17000,in 1958; Source is HRAF 24:Howard p 174a; note focal year for cultural data is 1850,,Carol Ember's Concordance Database, +Ne15,,,EA202,NA,,,, +Ne16,,1814,EA202,200,"in 1814; Data source gives population number as ""fewer than 200""; note focal year for cultural data is 1800",,EA Bibliography, +Ne17,,1905,EA202,1165,in 1905; note focal year for cultural data is 1860,,EA Bibliography, +Ne18,,1809,EA202,2800,in 1809; note focal year for cultural data is 1850,,EA Bibliography, +Ne19,,1860,EA202,12500,,,EA Bibliography, +Ne2,,1934,EA202,200,in 1934; note focal year for cultural data is 1870,,EA Bibliography, +Ne20,,,EA202,NA,,,, +Ne21,,,EA202,NA,,,, +Ne3,Comanche Tribe,1866,EA202,4700,Source is SCCS-186 print-out,,Carol Ember's Concordance Database, +Ne4,,1935,EA202,1800,in 1935; note focal year for cultural data is 1870,,EA Bibliography, +Ne5,,1870,EA202,4700,,,EA Bibliography, +Ne6,,1870,EA202,300,"in 1870; Source is HRAF 2:Bowers, p. 1; note focal year for cultural data is 1830",,Carol Ember's Concordance Database, +Ne7,,,EA202,NA,,,, +Ne8,,,EA202,NA,,,, +Ne9,,1904,EA202,2300,in 1904; note focal year for cultural data is 1860,,EA Bibliography, +Nf10,,,EA202,NA,,,, +Nf11,,,EA202,NA,,,, +Nf12,,1880,EA202,825,in 1880; note focal year for cultural data is 1850,,EA Bibliography, +Nf13,with special reference to the Kiskopotha band,1930,EA202,1100,in 1930; note focal year for cultural data is 1820,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA202,NA,,,, +Nf15,,,EA202,NA,,,, +Nf2,,,EA202,NA,,,, +Nf3,Omaha Tribe,1851,EA202,1400,"Source is HRAF 33:Steffens, p.2",,Carol Ember's Concordance Database, +Nf4,,1718,EA202,6000,,,EA Bibliography, +Nf5,,1950,EA202,500,in 1950; note focal year for cultural data is 1860,,EA Bibliography, +Nf6,Skidi Band or subtribe,1859,EA202,3400,Source is SCCS-186 print-out.,,Carol Ember's Concordance Database, +Nf7,Tama Reservation,1820,EA202,2000,,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,,EA202,NA,,,, +Nf9,,1900,EA202,1600,in 1900; note focal year for cultural data is 1870,,EA Bibliography, +Ng1,,,EA202,NA,,,, +Ng10,with special reference to the Seneca tribe,1650,EA202,10000,in 1650; See HRAF reference 1:25; note focal year for cultural data is 1750,,Carol Ember's Concordance Database, +Ng11,,1832,EA202,1139,in 1832; note focal year for cultural data is 1750,,EA Bibliography, +Ng12,,NA,EA202,15000,Date for population estimate missing,,EA Bibliography, +Ng13,,,EA202,NA,,,, +Ng14,,NA,EA202,8000,"Aboriginally; Note that data source gives population number as ""nearly 8000""; Note focal year for cultural data is NA",,EA Bibliography, +Ng15,,1750,EA202,4000,18th century,,EA Bibliography, +Ng2,with special reference to the Cow Creek band,1939,EA202,175,,,EA Bibliography, +Ng3,Upper division in Alabama,1750,EA202,19000,Source is EA-Summary,,Carol Ember's Concordance Database, +Ng4,,1930,EA202,300,in 1930; note focal year for cultural data is 1900,,EA Bibliography, +Ng5,,1729,EA202,20000,in 1729; note focal year for cultural data is 1750,,EA Bibliography, +Ng6,with special reference to the Munsee,1600,EA202,8000,in 1600; note focal year for cultural data is 1700,,EA Bibliography, +Ng7,,,EA202,NA,,,, +Ng8,,,EA202,NA,,,, +Ng9,,1910,EA202,124,,,EA Bibliography, +Nh1,Central band,1870,EA202,1000,Source is HRAF 1:Opler p. 4.,,Carol Ember's Concordance Database, +Nh10,,1930,EA202,1036,,,EA Bibliography, +Nh11,with special reference to the pueblo of San Ildefonso,1937,EA202,1400,in 1937; 126 in San lldefonso; note focal year for cultural data is 1900,,EA Bibliography, +Nh12,,1934,EA202,242,in 1934; note focal year for cultural data is 1920,,EA Bibliography, +Nh13,,1941,EA202,1250,in 1941; note focal year for cultural data is 1920,,EA Bibliography, +Nh14,,1941,EA202,2600,in 1941; note focal year for cultural data is 1920,,EA Bibliography, +Nh15,,,EA202,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1805,EA202,800,in 1805; note focal year for cultural data is 1870,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1940,EA202,4700,in 1940; note focal year for cultural data is 1870,,EA Bibliography, +Nh18,Old Oraiibi,1950,EA202,3500,in 1950; note focal year for cultural data is 1920,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,,EA202,NA,,,, +Nh2,,1950,EA202,400,,,EA Bibliography, +Nh20,,1849,EA202,250,in 1849; note focal year for cultural data is 1860,,EA Bibliography, +Nh21,Fort Mohave and Colorado River Reservation,1834,EA202,4000,"in 1834; See HRAF 10 Slip, #3; note focal year for cultural data is 1850",,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,,EA202,NA,,,, +Nh23,,,EA202,NA,,,, +Nh24,,,EA202,NA,,,, +Nh25,,1957,EA202,327,in 1957; note focal year for cultural data is 1920,,EA Bibliography, +Nh26,,1926,EA202,350,in 1926; note focal year for cultural data is 1910,,EA Bibliography, +Nh27,,1931,EA202,900,,,EA Bibliography, +Nh3,,1950,EA202,50000,in 1950; note focal year for cultural data is 1930,,EA Bibliography, +Nh4,Pueblo,1880,EA202,1700,"in 1880; Source is HRAF 7:Cushing, p. 126; note focal year for cultural data is 1910",,Carol Ember's Concordance Database, +Nh5,,1850,EA202,700,,,EA Bibliography, +Nh6,,1930,EA202,700,in 1930; note focal year for cultural data is 1890,,EA Bibliography, +Nh7,,NA,EA202,600,Date for population estimate missing,,EA Bibliography, +Nh8,,1937,EA202,650,in 1937; note focal year for cultural data is 1920,,EA Bibliography, +Nh9,,NA,EA202,100,"Date for population estimate missing; Data source gives population data as ""slightly more than 100""",,EA Bibliography, +Ni1,,1927,EA202,40000,"Source is HRAF 1:Bennett, p. vii.",,Carol Ember's Concordance Database, +Ni2,,1935,EA202,5000,Source is HRAF 2:Underhill p. v.,,Carol Ember's Concordance Database, +Ni3,,,EA202,NA,,,, +Ni4,,1960,EA202,200,"in 1960; 2,000 aboriginally; note focal year for cultural data is 1900",,EA Bibliography, +Ni5,,,EA202,NA,,,, +Ni6,,NA,EA202,20000,Date for population estimate missing,,EA Bibliography, +Ni7,,,EA202,NA,,,, +Ni8,,1550,EA202,60000,16th century,,EA Bibliography, +Ni9,,,EA202,NA,,,, +Nj1,Ojitlan,NA,EA202,40000,Date for population estimate missing,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,,,EA202,NA,,,, +Nj11,,NA,EA202,40000,Date for population estimate missing,,EA Bibliography, +Nj12,,,EA202,NA,,,, +Nj13,,,EA202,NA,,,, +Nj14,,1960,EA202,5000,,,EA Bibliography, +Nj2,City & environs of Tenochtitlan,1520,EA202,300000,Population of Tenochtitlan only. Population of Aztec empire as a whole is estimated at several million.,,Carol Ember's Concordance Database, +Nj3,,,EA202,NA,,,, +Nj4,,NA,EA202,100000,Date for population estimate missing,,EA Bibliography, +Nj5,,1946,EA202,55000,,,EA Bibliography, +Nj6,with special reference to San Mateo,1950,EA202,3500,San Mateo,,EA Bibliography, +Nj7,,,EA202,NA,,,, +Nj8,,,EA202,NA,,,, +Nj9,,1960,EA202,300000,,,EA Bibliography, +Sa1,,,EA202,NA,,,, +Sa10,,1900,EA202,200000,,,EA Bibliography, +Sa11,,,EA202,NA,,,, +Sa12,,,EA202,NA,,,, +Sa13,,,EA202,NA,,,, +Sa14,,1950,EA202,18000,"in 1950, note that focal year for cultural data is missing",,EA Bibliography, +Sa15,,,EA202,NA,,,, +Sa16,,,EA202,NA,,,, +Sa17,,,EA202,NA,,,, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1947,EA202,40000,,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,,EA202,NA,,,, +Sa4,with special reference to those of Panama,NA,EA202,5000,Date for population estimate missing,,EA Bibliography, +Sa5,,,EA202,NA,,,, +Sa6,,,EA202,NA,,,, +Sa7,,NA,EA202,30000,Date for population estimate missing,,EA Bibliography, +Sa8,with special reference to the village of Santiago Chimaltenango,1937,EA202,1300,Source is HRAF 2: Wagley p. 11.,,Carol Ember's Concordance Database, +Sa9,Vicinity: Cape Gracias a Dios,1921,EA202,15000,See HRAF reference 1:13.,,Carol Ember's Concordance Database, +Sb1,,,EA202,NA,,,, +Sb2,,1941,EA202,2000,,,EA Bibliography, +Sb3,with special reference to the Iroka,NA,EA202,3000,Date for population estimate missing,,EA Bibliography, +Sb4,with special reference to the Cachama group,NA,EA202,1300,Date for population estimate missing; 1300 or 3700? (2 total population numbers given for 1962). 400 Cachama,,EA Bibliography, +Sb5,,1958,EA202,1350,,,EA Bibliography, +Sb6,,,EA202,NA,,,, +Sb7,with special reference to the Pariri,1954,EA202,156,,,EA Bibliography, +Sb8,,,EA202,NA,,,, +Sb9,,,EA202,NA,,,, +Sc1,,1941,EA202,8000,See HRAF reference 6:6.,,Carol Ember's Concordance Database, +Sc10,,,EA202,NA,,,, +Sc11,,1933,EA202,2500,,,EA Bibliography, +Sc12,,,EA202,NA,,,, +Sc13,,1954,EA202,750,,,EA Bibliography, +Sc14,,,EA202,NA,,,, +Sc15,,,EA202,NA,,,, +Sc16,,,EA202,NA,,,, +Sc17,,NA,EA202,300,"Date for population estimate missing; Data source gives population number as ""a few thousand""",,EA Bibliography, +Sc18,,1960,EA202,15000,,,EA Bibliography, +Sc2,,1947,EA202,500,The actual figure is 519.,,Carol Ember's Concordance Database, +Sc3,Barama River,1932,EA202,600,See HRAF reference 1:13.,,Carol Ember's Concordance Database, +Sc4,with special reference to the non-agricultural groups,1950,EA202,5000,,,EA Bibliography, +Sc5,,,EA202,NA,,,, +Sc6,Upper Suriname River; Akwa on Morini River,1922,EA202,14000,See HRAF reference 2:92.,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,,EA202,NA,,,, +Sc8,,NA,EA202,4000,Date for population estimate missing,,EA Bibliography, +Sc9,,,EA202,NA,,,, +Sd1,Cabrura village,1952,EA202,1200,,,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1939,EA202,147,recently extinct,,EA Bibliography, +Sd3,,NA,EA202,240,Date for population estimate missing,,EA Bibliography, +Sd4,,1954,EA202,50000,See HRAF reference 1:114.,,Carol Ember's Concordance Database, +Sd5,,1958,EA202,1400,,,EA Bibliography, +Sd6,,1960,EA202,5000,,,EA Bibliography, +Sd7,,1954,EA202,180,,,EA Bibliography, +Sd8,,NA,EA202,2500,Date for population estimate missing,,EA Bibliography, +Sd9,,,EA202,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA202,2000,See EA-Summary,,Carol Ember's Concordance Database, +Se10,,,EA202,NA,,,, +Se11,,1960,EA202,100,The actual population figure was 145 as of the date cited.,,Carol Ember's Concordance Database, +Se12,,,EA202,NA,,,, +Se2,,1940,EA202,3000,,,EA Bibliography, +Se3,,1930,EA202,12600,"The actual figure is 12,586 (2:36-38).",,Carol Ember's Concordance Database, +Se4,,1940,EA202,1000,,,EA Bibliography, +Se5,Village on Caduiari River,1939,EA202,2500,See HRAF reference 5:25.,,Carol Ember's Concordance Database, +Se6,,NA,EA202,15000,Date for population estimate missing,,EA Bibliography, +Se7,,,EA202,NA,,,, +Se8,,,EA202,NA,,,, +Se9,,1940,EA202,1200,in 1940; note focal year for cultural data is 1920,,EA Bibliography, +Sf1,City and environs of Cuzco,1571,EA202,1500000,in 1571; note focal year for cultural data is 1530,,Carol Ember's Concordance Database, +Sf2,Chucuito Clan community in Peru,1936,EA202,600000,,,Carol Ember's Concordance Database, +Sf3,Rio Cayapas Basin,1908,EA202,1500,"The population figure is between 1,500 and 2,000 (3:1).",,Carol Ember's Concordance Database, +Sf4,,NA,EA202,2000,Date for population estimate missing,,EA Bibliography, +Sf5,,,EA202,NA,,,, +Sf6,,NA,EA202,1000000,Aboriginally; Note focal year for cultural data is 1540,,EA Bibliography, +Sf7,,1930,EA202,5000,"in 1930; 10,000 in 1958; note focal year for cultural data is 1900",,EA Bibliography, +Sf8,,1952,EA202,450,,,EA Bibliography, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1931,EA202,99,"Data source gives population number as ""fewer than 100""",,EA Bibliography, +Sg1,Eastern and central,1866,EA202,2500,,,Carol Ember's Concordance Database, +Sg2,,,EA202,NA,,,, +Sg3,with special reference to the Shelknam,1880,EA202,2000,300 in 1910,,EA Bibliography, +Sg4,Equestrian,1869,EA202,1400,,,Carol Ember's Concordance Database, +Sg5,with special reference to the southern bands,1900,EA202,200,,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1900,EA202,20000,in 1900; note focal year for cultural data is 1860,,EA Bibliography, +Sh2,,1946,EA202,3000,in 1946; note focal year for cultural data is 1850,,EA Bibliography, +Sh3,Those in contact with mission,1760,EA202,5000,in 1760; See HRAF reference 1:96; note focal year for cultural data is 1800,,Carol Ember's Concordance Database, +Sh4,,1937,EA202,150,,,EA Bibliography, +Sh5,,1915,EA202,2500,,,EA Bibliography, +Sh6,,,EA202,NA,,,, +Sh7,,,EA202,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA202,10000,,,EA Bibliography, +Sh9,,,EA202,NA,,,, +Si1,Kejara,1936,EA202,1000,in 1936; note focal year for cultural data is 1920,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1954,EA202,145,,,EA Bibliography, +Si2,,,EA202,NA,,,, +Si3,Simao Lopes,1947,EA202,250,,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,,,EA202,NA,,,, +Si5,,1948,EA202,110,,,EA Bibliography, +Si6,,1901,EA202,100,,,EA Bibliography, +Si7,with special reference to the Cozarimi,1908,EA202,340,,,EA Bibliography, +Si8,,1949,EA202,100,The actual figure was 65 as of the date cited.,,Carol Ember's Concordance Database, +Si9,,,EA202,NA,,,, +Sj1,,1939,EA202,800,in 1939; note focal year for cultural data is 1950,,EA Bibliography, +Sj10,Taquapiri,1943,EA202,2000,"The population totals between 2,000 and 4,000 (PSF-A:147).",,Carol Ember's Concordance Database,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,,,EA202,NA,,,, +Sj2,,1951,EA202,2139,in 1951; note focal year for cultural data is 1850,,EA Bibliography, +Sj3,Duque de Caxias Reservation,1934,EA202,100,in 1934; The actual figure is 106; note focal year for cultural data is 1910,,Carol Ember's Concordance Database, +Sj4,Ramcocamecra or Canella,1930,EA202,300,See EA-Summary,,Carol Ember's Concordance Database, +Sj5,Naknenuk subtribe,1880,EA202,5000,,,Carol Ember's Concordance Database, +Sj6,with special reference to the Guajajara subgroup,NA,EA202,2000,Date for population estimate missing,,EA Bibliography,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1937,EA202,160,in 1937; note focal year for cultural data is 1920,,EA Bibliography, +Sj8,,,EA202,NA,,,, +Sj9,,,EA202,NA,,,, +ch12,with special reference to the Birskij Uezd Bashkir,1897,EA202,1320000,all,,EA Bibliography, +ch13,with special reference to the Glazovskij Uezd Besermyan,1926,EA202,10034,in 1926; note focal year for cultural data is 1894,,"Bondarenko et al., 2005", +ch14,with special reference to the Virjal group,1897,EA202,845000,in 1897; note focal year for cultural data is 1908,,"Bondarenko et al., 2005", +ch15,with special reference to those of the Boklinskij Uezd,1897,EA202,1025000,,,"Bondarenko et al., 2005", +ch16,with special reference to the Valkskij Uezd,1897,EA202,350000,in 1897; within the territory of present-day Estonia; note focal year for cultural data is 1908,,"Bondarenko et al., 2005", +ch17,with special reference to those of the Benderskij Uezd,1897,EA202,36127,,,"Bondarenko et al., 2005", +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1926,EA202,26137,,,"Bondarenko et al., 2005", +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1897,EA202,208100,in 1897; note focal year for cultural data is 1874,,"Bondarenko et al., 2005", +ch20,with special reference to those of the Altayrskij Uezd,1897,EA202,675419,in 1897; note focal year for cultural data is 1910,,"Bondarenko et al., 2005", +ch21,with special reference to the Vidzeme group,1897,EA202,1312000,in 1897; note focal year for cultural data is 1881,,"Bondarenko et al., 2005", +ch22,with special reference to those of the Trakaj area,1987,EA202,800,in 1987; note focal year for cultural data is 1895,,"Bondarenko et al., 2005", +ch23,with special reference to those of the Vilenskaja Gubernija,1897,EA202,4499,"Source says <4,500",,"Bondarenko et al., 2005", +ch24,with special reference to the Northwest Courland,1860,EA202,3000,in 1860; note focal year for cultural data is 1847,,"Bondarenko et al., 2005", +ch25,with special reference to the Beletskij Uezd,1897,EA202,921000,within Bessarabia.,,"Bondarenko et al., 2005", +ch26,with special reference to those of the Sarapul'skij Uezd,1926,EA202,504000,in 1926; note focal year for cultural data is 1890,,"Bondarenko et al., 2005", +ch27,with special reference to the Petrozavodskij Uezd Veps,1926,EA202,32773,in 1926; note focal year for cultural data is 1900,,"Bondarenko et al., 2005", +ch28,with special reference to those of the Yamburg Uezd,1917,EA202,1000,"in 1917; 5,148 in 1848; note focal year for cultural data is 1900",,"Bondarenko et al., 2005", +ec12,Avam (Western) group,1930,EA202,500,Avam group,,"Korotayev et al., 2004", +ec13,those of Eastern Kamchatka,1710,EA202,12000,,,"Korotayev et al., 2004", +ec14,those of South-Eastern Chukotka,1880,EA202,1000,,,"Korotayev et al., 2004", +ec15,Middle Northern Sos'va group,1880,EA202,1300,the Middle Northern Sos'va group.,,"Korotayev et al., 2004", +ec16,Barguzin group,1890,EA202,1000,Barguzin group,,"Korotayev et al., 2004", +ec17,Upper Amgun' River group,1890,EA202,420,Upper Amgun River group,,"Korotayev et al., 2004", +ec18,Ulch people as a whole,1890,EA202,3000,,,"Korotayev et al., 2004", +ec19,Northern group,1890,EA202,500,,,"Korotayev et al., 2004", +ec20,Oroch people as a whole,1890,EA202,800,,,"Korotayev et al., 2004", +ec21,Hor River group,1890,EA202,1300,,,"Korotayev et al., 2004", +Aa1,Nyai Nyae region,1950,EA021,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA021,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA021,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA021,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA021,1,"Entry follows Schebesta; Czekanowski reports bilateral (inferred) (code ""1"")",deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA021,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA021,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA021,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA021,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA021,9,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA021,9,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA021,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA021,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA021,6,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA021,9,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA021,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA021,9,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA021,9,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA021,2,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA021,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA021,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA021,9,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA021,9,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA021,9,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA021,9,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA021,4,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA021,9,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA021,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA021,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA021,9,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA021,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA021,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA021,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA021,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA021,9,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA021,9,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA021,9,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA021,9,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA021,9,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA021,9,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA021,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA021,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA021,9,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA021,9,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA021,9,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA021,9,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA021,9,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA021,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA021,9,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA021,9,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA021,9,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA021,9,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA021,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA021,9,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA021,2,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA021,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA021,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA021,9,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA021,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA021,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA021,9,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA021,9,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA021,9,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA021,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA021,9,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA021,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA021,9,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA021,9,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA021,9,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA021,9,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA021,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA021,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA021,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA021,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA021,6,There are vestigial patrisibs,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA021,9,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA021,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA021,2,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA021,9,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA021,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA021,9,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA021,9,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA021,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA021,9,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA021,9,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA021,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA021,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA021,4,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA021,9,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA021,4,The incompletely exogamous patrisibs are better classed as ramages since affiliation is to a considerable extent ambilineal,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA021,9,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA021,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA021,9,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA021,9,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA021,9,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA021,9,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA021,4,But with patrilineal bias,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA021,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA021,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA021,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA021,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA021,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA021,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA021,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA021,9,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA021,9,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA021,9,Inferential from distributional evidence,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA021,9,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA021,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA021,9,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA021,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA021,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA021,9,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA021,9,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA021,2,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA021,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA021,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA021,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA021,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA021,9,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA021,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA021,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA021,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA021,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA021,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA021,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA021,9,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA021,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA021,9,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA021,9,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA021,9,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA021,9,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA021,9,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA021,9,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA021,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA021,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA021,9,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA021,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA021,9,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA021,9,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA021,9,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA021,9,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA021,9,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA021,9,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA021,9,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA021,9,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA021,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA021,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA021,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA021,9,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA021,9,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA021,9,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA021,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA021,9,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA021,9,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA021,9,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA021,9,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA021,9,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA021,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA021,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA021,9,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA021,9,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA021,9,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA021,9,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA021,NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA021,9,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA021,9,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA021,9,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA021,9,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA021,9,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA021,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA021,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA021,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA021,9,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA021,9,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA021,9,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA021,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA021,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA021,9,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA021,9,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA021,9,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA021,9,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA021,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA021,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA021,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA021,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA021,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA021,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA021,9,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA021,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA021,9,"From a recent report, matrilineages have apparently become converted into ambilineal ramages",hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA021,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA021,9,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA021,NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA021,9,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA021,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA021,9,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA021,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA021,4,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA021,4,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA021,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA021,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA021,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA021,5,"Descent is ambilineal, depending mainly on the mode of marriage",bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA021,9,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA021,9,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA021,9,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA021,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA021,9,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA021,9,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA021,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA021,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA021,9,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA021,9,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA021,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA021,9,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA021,9,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA021,9,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA021,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA021,9,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA021,9,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA021,9,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA021,9,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA021,9,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA021,9,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA021,9,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA021,9,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA021,9,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA021,9,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA021,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA021,9,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA021,9,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA021,9,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA021,9,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA021,9,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA021,9,"Since children are affiliated with the mother's group in cases of uxorilocal residence, descent groups are in a measure ambilineal",dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA021,9,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA021,9,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA021,9,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA021,2,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA021,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA021,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA021,9,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA021,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA021,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA021,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA021,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA021,9,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA021,9,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA021,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA021,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA021,9,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA021,9,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA021,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA021,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA021,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA021,9,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA021,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA021,9,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA021,9,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA021,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA021,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA021,9,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,,EA021,NA,,,, +Ag29,,1910,EA021,9,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA021,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA021,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA021,9,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA021,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,,EA021,NA,,,, +Ag34,,1930,EA021,9,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA021,9,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA021,9,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA021,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA021,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA021,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA021,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA021,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA021,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA021,9,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA021,9,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA021,9,There are exogamous ramages in the chiefly class,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA021,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA021,9,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA021,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA021,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA021,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA021,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA021,9,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA021,9,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA021,9,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA021,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA021,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA021,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA021,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA021,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA021,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA021,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA021,9,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA021,9,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA021,9,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,,,EA021,NA,,,, +Ah14,,1920,EA021,9,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA021,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA021,9,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA021,9,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA021,9,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA021,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA021,4,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA021,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA021,9,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA021,9,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA021,3,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA021,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA021,9,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA021,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA021,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA021,NA,Descent may possibly be ambilineal rather than double,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA021,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA021,4,A form of ramage resulted from ambilocal residence (virilocal and avunculocal) and the ambilineal affiliation associated therewith,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA021,9,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA021,9,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA021,3,"Inferred from the attested absence of either patrilineal or matrilineal kin groups and from the report that children belong to the father's group if a high bride-price has been paid, otherwise to the group of their MoBr",meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA021,9,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA021,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA021,9,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA021,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA021,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA021,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA021,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA021,4,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA021,9,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA021,9,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA021,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA021,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA021,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA021,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA021,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA021,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA021,9,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA021,9,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA021,9,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA021,9,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,,EA021,NA,,,, +Ai17,,1930,EA021,9,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,,EA021,NA,,,, +Ai19,,1910,EA021,9,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA021,9,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA021,9,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA021,9,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA021,9,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA021,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA021,9,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA021,9,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA021,9,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA021,9,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA021,9,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA021,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA021,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA021,9,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA021,9,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA021,9,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA021,9,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA021,9,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA021,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA021,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA021,9,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA021,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA021,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA021,3,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA021,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA021,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA021,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA021,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA021,9,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA021,9,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA021,9,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA021,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA021,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA021,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA021,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA021,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA021,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA021,9,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA021,9,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA021,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA021,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA021,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA021,9,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA021,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA021,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA021,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA021,9,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA021,9,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA021,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA021,9,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA021,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA021,9,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA021,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA021,9,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA021,9,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA021,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA021,9,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA021,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA021,9,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA021,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA021,9,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA021,9,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA021,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA021,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA021,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA021,2,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA021,9,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA021,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA021,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA021,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA021,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA021,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA021,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA021,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA021,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA021,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA021,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA021,9,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA021,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA021,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA021,9,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA021,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA021,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA021,9,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA021,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA021,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA021,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA021,9,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA021,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA021,9,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA021,2,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA021,9,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA021,1,Bilateral descent inferred from lack of mention of unilineal kin groups in any source,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA021,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA021,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA021,9,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA021,9,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA021,9,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,,,EA021,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA021,9,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA021,9,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA021,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA021,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA021,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA021,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA021,9,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA021,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA021,9,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA021,1,Patronymic but probably not patrilineal,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA021,9,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA021,9,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA021,9,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA021,9,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA021,9,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA021,9,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA021,9,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA021,9,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA021,9,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA021,9,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA021,9,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA021,1,Probably though not certainly,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA021,1,"Descent, though patrilineal prior to 1850, is now ""bilateral with an agnatic bias"" (Cohen)",cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA021,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA021,9,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA021,9,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA021,9,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA021,9,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA021,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA021,9,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA021,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA021,9,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA021,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA021,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA021,9,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA021,9,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA021,9,"Descent uncertain, though reported as patrilineal by Bouillie",bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA021,9,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA021,9,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA021,1,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA021,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA021,9,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA021,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA021,9,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA021,9,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA021,9,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA021,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA021,9,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA021,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA021,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA021,9,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA021,9,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA021,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA021,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA021,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA021,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA021,9,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA021,9,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA021,9,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA021,9,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA021,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA021,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA021,9,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA021,9,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA021,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA021,9,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA021,9,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA021,9,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA021,9,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA021,9,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA021,9,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA021,9,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA021,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA021,9,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA021,9,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA021,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA021,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA021,9,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA021,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA021,9,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA021,9,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA021,9,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA021,2,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA021,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA021,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA021,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA021,2,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA021,1,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA021,2,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA021,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA021,2,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA021,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA021,2,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA021,1,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA021,2,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA021,2,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA021,2,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA021,2,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA021,2,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA021,2,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA021,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA021,1,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA021,2,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA021,2,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA021,2,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA021,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA021,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA021,2,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA021,2,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA021,1,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA021,2,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA021,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA021,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA021,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA021,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA021,9,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA021,2,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA021,9,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA021,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA021,9,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA021,9,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,,EA021,NA,,,, +Ci9,,1910,EA021,9,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA021,9,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA021,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA021,2,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA021,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA021,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA021,9,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA021,9,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA021,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA021,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA021,9,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA021,9,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA021,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA021,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA021,9,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA021,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA021,2,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA021,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA021,9,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA021,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA021,9,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA021,9,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA021,9,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA021,9,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA021,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA021,9,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA021,2,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA021,9,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA021,9,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA021,9,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA021,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA021,9,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA021,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA021,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA021,9,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA021,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA021,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA021,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA021,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA021,1,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA021,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA021,9,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA021,9,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA021,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA021,9,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA021,9,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA021,9,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA021,1,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA021,9,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA021,9,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA021,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA021,9,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA021,2,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA021,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA021,9,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA021,2,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA021,9,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA021,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA021,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA021,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA021,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA021,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA021,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA021,9,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA021,9,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA021,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA021,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA021,9,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA021,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA021,2,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA021,2,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA021,9,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA021,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA021,9,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA021,2,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA021,9,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA021,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA021,9,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA021,9,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA021,9,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA021,9,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA021,9,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA021,9,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA021,9,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA021,9,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA021,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA021,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA021,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA021,9,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA021,4,"The groups called ""endogamous septs"" are apparently not unilineal",griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA021,9,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA021,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA021,9,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA021,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA021,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA021,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA021,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA021,6,"Inferred from the preference for virilocal residence and the existence of endogamous ""kindreds"" with a fiction of ""common ancestry""",ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA021,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA021,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA021,9,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA021,9,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA021,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA021,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA021,9,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA021,9,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA021,9,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA021,9,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA021,9,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA021,9,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA021,1,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA021,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA021,9,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA021,9,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA021,2,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA021,9,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA021,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA021,9,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA021,1,But there are agamous matrilineages which function in ancestor worship,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA021,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA021,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA021,9,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA021,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA021,9,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA021,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA021,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA021,2,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA021,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA021,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA021,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA021,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA021,9,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA021,2,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA021,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA021,9,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA021,2,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA021,2,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA021,4,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA021,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA021,4,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA021,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA021,2,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA021,2,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA021,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA021,2,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA021,1,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA021,2,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA021,2,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA021,2,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA021,2,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA021,2,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA021,4,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA021,2,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA021,2,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA021,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA021,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA021,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA021,9,"Geertz speaks of clans with a ""noticeable ambilineal element""",belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA021,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA021,2,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA021,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA021,5,"The uma, though possibly a localized quasi-patrilineage, is more probably a ramage",kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA021,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA021,1,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA021,4,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA021,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA021,2,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA021,2,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA021,9,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA021,2,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA021,9,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA021,9,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA021,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA021,9,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA021,9,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA021,9,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA021,9,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA021,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA021,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA021,9,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA021,9,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA021,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA021,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA021,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA021,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA021,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA021,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA021,9,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA021,NA,,,, +Id9,,1910,EA021,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA021,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA021,2,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA021,9,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA021,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA021,9,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA021,9,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA021,9,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA021,9,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA021,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA021,2,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA021,9,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA021,2,"A ""skewed kindred"" consisting of parts of both Ego's and his mother's patrilineages",schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA021,9,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA021,9,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA021,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA021,9,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA021,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA021,9,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA021,9,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA021,9,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA021,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA021,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA021,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA021,9,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA021,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA021,2,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA021,9,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA021,1,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA021,9,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA021,1,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA021,9,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA021,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA021,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA021,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA021,9,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA021,9,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA021,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA021,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA021,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA021,5,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA021,9,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA021,9,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA021,9,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA021,2,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA021,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA021,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA021,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA021,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA021,2,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA021,2,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA021,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA021,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA021,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA021,4,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA021,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA021,9,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA021,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA021,9,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA021,9,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA021,4,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA021,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA021,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA021,9,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA021,4,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA021,9,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA021,2,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA021,4,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA021,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA021,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA021,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA021,2,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA021,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA021,9,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA021,4,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA021,2,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA021,4,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA021,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA021,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA021,9,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA021,9,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA021,9,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA021,9,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA021,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA021,9,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA021,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA021,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA021,9,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA021,2,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA021,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA021,9,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA021,9,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA021,5,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA021,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA021,4,"Or localized ""stem kindreds""",beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA021,5,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA021,5,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA021,2,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA021,2,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA021,5,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA021,5,"The exogamous patrilineages of six generations' depth reported by Hogbin, who calls them ""joint families,"" are presumably ambilineal ramages, since affiliation is reported to be matrilineal for about 10 per cent of their membership",hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA021,4,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA021,2,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA021,4,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA021,4,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA021,5,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA021,1,Or very possibly ambilineal,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA021,4,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA021,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA021,1,"Or very probably ramages (code ""4"")",buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA021,4,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA021,4,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA021,4,"But called ""extended families"" by Buck",buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA021,4,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA021,4,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA021,9,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA021,1,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA021,2,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA021,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA021,1,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA021,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA021,2,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA021,1,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA021,2,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA021,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA021,2,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA021,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA021,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA021,2,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA021,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA021,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA021,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA021,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA021,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA021,1,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA021,1,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA021,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA021,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA021,1,"Or possibly quasi-lineages (code ""6"")",skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA021,1,"Or possibly quasi-lineages (code ""6"")",burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA021,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA021,6,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA021,9,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA021,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA021,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA021,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA021,9,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA021,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA021,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA021,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA021,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA021,2,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA021,2,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA021,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA021,1,"Or possibly quasi-lineages (code ""6"")",lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA021,6,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA021,6,Patrilocal bands,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA021,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA021,6,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA021,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA021,4,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA021,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA021,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA021,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA021,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA021,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA021,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA021,2,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA021,1,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA021,1,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA021,2,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA021,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA021,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA021,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA021,4,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA021,4,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA021,2,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA021,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA021,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA021,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA021,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA021,4,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA021,1,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA021,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA021,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA021,1,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA021,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA021,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA021,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA021,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA021,2,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA021,1,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA021,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA021,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA021,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA021,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA021,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA021,4,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA021,9,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA021,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA021,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA021,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA021,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA021,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA021,1,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA021,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA021,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA021,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA021,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA021,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA021,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA021,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA021,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA021,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA021,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA021,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA021,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA021,1,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA021,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA021,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA021,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA021,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA021,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA021,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA021,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA021,9,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA021,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA021,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA021,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA021,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA021,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA021,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA021,2,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA021,1,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA021,1,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA021,2,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA021,2,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA021,1,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA021,2,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA021,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA021,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA021,1,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA021,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA021,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA021,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA021,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA021,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA021,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA021,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA021,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA021,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA021,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA021,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA021,6,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA021,1,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA021,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA021,1,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA021,1,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA021,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA021,1,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA021,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA021,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA021,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA021,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA021,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA021,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA021,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA021,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA021,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA021,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA021,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA021,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA021,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA021,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA021,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA021,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA021,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA021,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA021,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA021,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA021,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA021,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA021,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA021,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA021,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA021,1,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA021,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA021,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA021,2,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA021,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA021,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA021,1,"Possibly quasi-lineages (code ""6""), if the band is regarded as a quasi-lineage",denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA021,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA021,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA021,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA021,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA021,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA021,2,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA021,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA021,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA021,2,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA021,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,1760,EA021,1,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968, +Ne3,Comanche Tribe,1870,EA021,1,"Or quite possibly bilateral (inferred) (code ""1"")",gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA021,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA021,2,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA021,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA021,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA021,2,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA021,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA021,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA021,9,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA021,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA021,9,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA021,1,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA021,9,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA021,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA021,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA021,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA021,2,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA021,9,"Or perhaps 'bilateral (inferred)' (code ""1"")",dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA021,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA021,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA021,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA021,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA021,2,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA021,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA021,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA021,1,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA021,9,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA021,1,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA021,9,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA021,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA021,1,Agamous patrilineages are possible,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA021,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA021,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA021,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA021,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA021,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA021,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA021,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA021,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA021,9,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA021,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA021,9,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA021,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA021,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA021,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA021,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA021,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA021,9,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA021,9,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA021,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA021,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA021,9,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA021,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA021,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA021,1,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA021,9,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA021,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA021,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA021,9,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA021,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA021,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA021,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA021,1,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA021,2,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA021,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA021,2,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA021,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA021,1,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA021,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA021,1,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA021,1,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,1920,EA021,1,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968, +Nj1,Ojitlan,1940,EA021,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA021,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA021,1,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,1950,EA021,1,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968, +Nj13,,1900,EA021,1,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA021,9,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA021,4,"The ""calpulli"" since they were definitely agamous and nonunilineal, are classed as ramages",holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA021,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA021,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA021,1,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA021,2,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA021,1,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA021,1,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA021,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA021,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA021,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA021,9,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA021,1,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA021,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA021,9,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,,EA021,NA,,,, +Sa16,,NA,EA021,1,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA021,9,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA021,9,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA021,1,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA021,2,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA021,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA021,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA021,4,"Solien reports ""nonunilineal descent groups""",solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA021,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA021,1,"Or possibly quasi-lineages (code ""6"")",conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA021,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA021,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA021,6,Assuming the core of a matrilocal extended family to be quasi- patrilineage,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA021,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA021,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA021,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA021,1,"Or possibly quasi-lineages (code ""6"")",wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,,EA021,NA,,,, +Sb9,,1930,EA021,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA021,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA021,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA021,1,"Or possibly quasi-lineages (code ""6"")",simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA021,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA021,1,"Or quite possibly 'quasilineages' (code ""6"") from Wilbert's ""familias extensivas matrilineales""",riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA021,1,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA021,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA021,1,"Or possibly quasi-lineages (code ""6"")",barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA021,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA021,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA021,1,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA021,6,From statement that brothers tend to live together in a settlement,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA021,1,"The ""extended families"" are conceivably localized matrilineages",wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA021,1,"Or quite possibly quasi-lineages (code ""6"")",farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA021,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA021,1,"Or possibly quasi-lineages (code ""6"")",wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA021,1,"Or perhaps quasi-lineages (code ""6"")",wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA021,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA021,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA021,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA021,9,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA021,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA021,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA021,1,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA021,1,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA021,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA021,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA021,1,"Possibly 'no cognatic kin' (code ""9""), though descent is specifically reported to be bilateral",holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA021,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA021,1,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA021,9,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA021,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA021,2,Description of patrifamilies suggests quasi-patrilineages,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA021,9,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA021,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA021,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA021,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA021,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA021,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA021,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA021,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA021,2,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA021,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA021,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA021,1,"Possibly no cognatic kin groups (code ""9"") in view of reported matrilineal succession",ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA021,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA021,1,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA021,1,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA021,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA021,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA021,1,"Entry would be 'no cognatic kin groups' (code ""9"") if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock 1965c)",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA021,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA021,1,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA021,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA021,3,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA021,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA021,1,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA021,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA021,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA021,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA021,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA021,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA021,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA021,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA021,6,"An inference from the ""tendency for patrilineally related males to live together"" and from the statement that ""the establishment of a patrilineal lineage"" was prevented by the high death rate",levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA021,6,Patrifamilies strongly suggest quasi-lineages,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA021,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA021,1,"Or possibly quasi-lineages (code ""6"")",oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA021,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA021,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA021,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,1940,EA021,1,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA021,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA021,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA021,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA021,9,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA021,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA021,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA021,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA021,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA021,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA021,1,Inference from extended families with communal dwellings,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA021,1,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA021,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA021,2,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA021,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA021,2,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA021,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA021,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA021,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA021,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA021,2,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA021,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA021,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA021,2,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA021,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA021,2,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA021,2,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA021,2,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA021,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA021,6,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA021,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA021,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA021,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA021,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA021,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA021,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA021,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA021,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA021,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA022,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA022,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA022,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA022,9,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA022,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA022,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA022,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA022,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA022,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA022,9,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA022,9,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA022,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA022,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA022,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA022,9,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA022,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA022,9,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA022,9,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA022,9,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA022,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA022,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA022,9,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA022,9,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA022,9,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA022,9,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA022,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA022,9,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA022,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA022,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA022,9,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA022,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA022,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA022,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA022,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA022,9,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA022,9,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA022,9,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA022,9,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA022,9,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA022,9,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA022,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA022,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA022,9,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA022,9,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA022,9,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA022,9,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA022,9,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA022,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA022,9,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA022,9,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA022,9,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA022,9,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA022,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA022,9,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA022,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA022,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA022,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA022,9,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA022,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA022,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA022,9,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA022,9,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA022,9,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA022,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA022,9,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA022,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA022,9,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA022,9,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA022,9,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA022,9,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA022,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA022,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA022,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA022,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA022,9,There are vestigial patrisibs,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA022,9,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA022,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA022,9,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA022,9,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA022,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA022,9,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA022,9,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA022,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA022,9,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA022,9,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA022,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA022,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA022,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA022,9,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA022,9,The incompletely exogamous patrisibs are better classed as ramages since affiliation is to a considerable extent ambilineal,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA022,9,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA022,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA022,9,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA022,9,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA022,9,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA022,9,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA022,9,But with patrilineal bias,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA022,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA022,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA022,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA022,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA022,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA022,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA022,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA022,9,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA022,9,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA022,9,Inferential from distributional evidence,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA022,9,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA022,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA022,9,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA022,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA022,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA022,9,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA022,9,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA022,9,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA022,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA022,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA022,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA022,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA022,9,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA022,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA022,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA022,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA022,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA022,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA022,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA022,9,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA022,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA022,9,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA022,9,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA022,9,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA022,9,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA022,9,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA022,9,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA022,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA022,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA022,9,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA022,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA022,9,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA022,9,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA022,9,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA022,9,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA022,9,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA022,9,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA022,9,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA022,9,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA022,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA022,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA022,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA022,9,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA022,9,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA022,9,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA022,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA022,9,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA022,9,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA022,9,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA022,9,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA022,9,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA022,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA022,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA022,9,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA022,9,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA022,9,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA022,9,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA022,NA,"Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA022,9,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA022,9,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA022,9,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA022,9,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA022,9,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA022,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA022,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA022,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA022,9,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA022,9,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA022,9,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA022,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA022,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA022,9,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA022,9,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA022,9,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA022,9,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA022,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA022,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA022,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA022,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA022,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA022,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA022,9,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA022,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA022,9,"From a recent report, matrilineages have apparently become converted into ambilineal ramages",hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA022,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA022,9,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA022,NA,The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA022,9,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA022,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA022,9,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA022,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA022,9,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA022,2,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA022,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA022,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA022,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA022,9,"Descent is ambilineal, depending mainly on the mode of marriage",bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA022,9,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA022,9,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA022,9,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA022,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA022,9,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA022,9,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA022,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA022,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA022,9,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA022,9,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA022,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA022,9,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA022,9,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA022,9,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA022,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA022,9,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA022,9,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA022,9,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA022,9,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA022,9,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA022,9,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA022,9,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA022,9,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA022,9,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA022,9,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA022,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA022,9,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA022,9,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA022,9,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA022,9,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA022,9,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA022,9,"Since children are affiliated with the mother's group in cases of uxorilocal residence, descent groups are in a measure ambilineal",dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA022,9,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA022,9,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA022,9,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA022,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA022,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA022,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA022,9,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA022,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA022,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA022,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA022,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA022,9,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA022,9,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA022,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA022,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA022,9,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA022,9,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA022,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA022,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA022,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA022,9,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA022,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA022,9,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA022,9,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA022,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA022,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA022,9,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,,EA022,NA,,,, +Ag29,,1910,EA022,9,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA022,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA022,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA022,9,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA022,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,,EA022,NA,,,, +Ag34,,1930,EA022,9,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA022,9,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA022,9,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA022,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA022,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA022,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA022,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA022,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA022,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA022,9,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA022,9,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA022,9,There are exogamous ramages in the chiefly class,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA022,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA022,9,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA022,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA022,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA022,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA022,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA022,9,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA022,9,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA022,9,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA022,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA022,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA022,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA022,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA022,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA022,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA022,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA022,9,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA022,9,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA022,9,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,,,EA022,NA,,,, +Ah14,,1920,EA022,9,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA022,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA022,9,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA022,9,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA022,9,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA022,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA022,9,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA022,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA022,9,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA022,9,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA022,9,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA022,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA022,9,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA022,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA022,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA022,NA,Descent may possibly be ambilineal rather than double,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA022,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA022,9,A form of ramage resulted from ambilocal residence (virilocal and avunculocal) and the ambilineal affiliation associated therewith,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA022,9,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA022,9,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA022,9,"Inferred from the attested absence of either patrilineal or matrilineal kin groups and from the report that children belong to the father's group if a high bride-price has been paid, otherwise to the group of their MoBr",meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA022,9,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA022,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA022,9,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA022,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA022,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA022,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA022,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA022,2,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA022,9,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA022,9,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA022,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA022,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA022,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA022,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA022,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA022,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA022,9,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA022,9,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA022,9,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA022,9,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,,EA022,NA,,,, +Ai17,,1930,EA022,9,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,,EA022,NA,,,, +Ai19,,1910,EA022,9,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA022,9,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA022,9,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA022,9,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA022,9,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA022,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA022,9,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA022,9,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA022,9,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA022,9,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA022,9,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA022,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA022,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA022,9,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA022,9,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA022,9,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA022,9,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA022,9,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA022,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA022,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA022,9,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA022,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA022,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA022,2,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA022,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA022,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA022,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA022,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA022,9,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA022,9,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA022,9,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA022,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA022,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA022,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA022,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA022,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA022,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA022,9,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA022,9,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA022,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA022,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA022,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA022,9,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA022,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA022,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA022,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA022,9,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA022,9,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA022,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA022,9,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA022,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA022,9,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA022,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA022,9,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA022,9,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA022,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA022,9,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA022,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA022,9,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA022,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA022,9,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA022,9,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA022,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA022,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA022,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA022,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA022,9,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA022,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA022,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA022,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA022,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA022,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA022,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA022,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA022,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA022,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA022,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA022,9,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA022,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA022,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA022,9,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA022,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA022,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA022,9,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA022,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA022,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA022,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA022,9,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA022,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA022,9,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA022,9,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA022,9,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA022,9,Bilateral descent inferred from lack of mention of unilineal kin groups in any source,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA022,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA022,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA022,9,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA022,9,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA022,9,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,,,EA022,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA022,9,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA022,9,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA022,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA022,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA022,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA022,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA022,9,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA022,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA022,9,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA022,9,Patronymic but probably not patrilineal,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA022,9,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA022,9,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA022,9,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA022,9,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA022,9,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA022,9,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA022,9,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA022,9,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA022,9,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA022,9,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA022,9,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA022,9,Probably though not certainly,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA022,9,"Descent, though patrilineal prior to 1850, is now ""bilateral with an agnatic bias"" (Cohen)",cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA022,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA022,9,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA022,9,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA022,9,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA022,9,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA022,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA022,9,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA022,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA022,9,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA022,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA022,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA022,9,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA022,9,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA022,9,"Descent uncertain, though reported as patrilineal by Bouillie",bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA022,9,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA022,9,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA022,9,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA022,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA022,9,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA022,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA022,9,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA022,9,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA022,9,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA022,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA022,9,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA022,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA022,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA022,9,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA022,9,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA022,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA022,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA022,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA022,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA022,9,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA022,9,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA022,9,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA022,9,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA022,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA022,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA022,9,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA022,9,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA022,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA022,9,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA022,9,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA022,9,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA022,9,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA022,9,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA022,9,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA022,9,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA022,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA022,9,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA022,9,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA022,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA022,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA022,9,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA022,9,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA022,9,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA022,9,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA022,9,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA022,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA022,9,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA022,9,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA022,9,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA022,9,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA022,9,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA022,9,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA022,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA022,9,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA022,9,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA022,9,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA022,9,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA022,9,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA022,9,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA022,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA022,9,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA022,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA022,9,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA022,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA022,9,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA022,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA022,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA022,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA022,9,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA022,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA022,9,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA022,9,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA022,9,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA022,9,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA022,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA022,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA022,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA022,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA022,9,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA022,9,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA022,9,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA022,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA022,9,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA022,9,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,,EA022,NA,,,, +Ci9,,1910,EA022,9,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA022,9,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA022,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA022,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA022,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA022,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA022,9,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA022,9,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA022,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA022,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA022,9,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA022,9,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA022,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA022,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA022,9,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA022,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA022,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA022,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA022,9,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA022,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA022,9,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA022,9,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA022,9,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA022,9,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA022,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA022,9,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA022,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA022,9,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA022,9,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA022,9,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA022,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA022,9,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA022,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA022,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA022,9,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA022,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA022,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA022,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA022,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA022,9,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA022,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA022,9,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA022,9,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA022,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA022,9,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA022,9,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA022,9,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA022,9,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA022,9,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA022,9,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA022,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA022,9,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA022,9,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA022,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA022,9,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA022,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA022,9,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA022,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA022,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA022,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA022,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA022,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA022,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA022,9,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA022,9,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA022,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA022,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA022,9,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA022,9,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA022,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA022,9,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA022,9,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA022,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA022,9,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA022,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA022,9,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA022,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA022,9,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA022,9,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA022,9,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA022,9,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA022,9,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA022,9,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA022,9,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA022,9,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA022,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA022,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA022,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA022,9,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA022,9,"The groups called ""endogamous septs"" are apparently not unilineal",griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA022,9,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA022,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA022,9,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA022,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA022,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA022,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA022,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA022,9,"Inferred from the preference for virilocal residence and the existence of endogamous ""kindreds"" with a fiction of ""common ancestry""",ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA022,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA022,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA022,9,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA022,9,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA022,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA022,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA022,9,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA022,9,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA022,9,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA022,9,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA022,9,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA022,9,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA022,9,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA022,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA022,9,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA022,9,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA022,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA022,9,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA022,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA022,9,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA022,9,But there are agamous matrilineages which function in ancestor worship,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA022,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA022,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA022,9,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA022,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA022,9,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA022,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA022,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA022,9,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA022,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA022,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA022,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA022,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA022,9,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA022,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA022,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA022,9,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA022,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA022,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA022,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA022,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA022,9,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA022,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA022,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA022,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA022,9,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA022,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA022,9,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA022,9,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA022,4,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA022,4,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA022,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA022,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA022,2,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA022,9,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA022,9,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA022,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA022,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA022,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA022,9,"Geertz speaks of clans with a ""noticeable ambilineal element""",belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA022,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA022,4,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA022,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA022,9,"The uma, though possibly a localized quasi-patrilineage, is more probably a ramage",kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA022,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA022,9,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA022,9,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA022,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA022,9,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA022,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA022,9,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA022,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA022,9,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA022,9,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA022,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA022,9,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA022,9,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA022,9,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA022,9,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA022,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA022,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA022,9,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA022,9,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA022,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA022,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA022,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA022,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA022,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA022,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA022,9,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA022,NA,,,, +Id9,,1910,EA022,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA022,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA022,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA022,9,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA022,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA022,9,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA022,9,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA022,9,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA022,9,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA022,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA022,9,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA022,9,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA022,9,"A ""skewed kindred"" consisting of parts of both Ego's and his mother's patrilineages",schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA022,9,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA022,9,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA022,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA022,9,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA022,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA022,9,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA022,9,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA022,9,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA022,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA022,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA022,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA022,9,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA022,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA022,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA022,9,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA022,9,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA022,9,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA022,9,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA022,9,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA022,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA022,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA022,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA022,9,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA022,9,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA022,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA022,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA022,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA022,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA022,9,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA022,9,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA022,9,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA022,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA022,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA022,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA022,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA022,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA022,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA022,9,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA022,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA022,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA022,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA022,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA022,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA022,9,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA022,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA022,9,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA022,9,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA022,2,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA022,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA022,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA022,9,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA022,9,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA022,9,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA022,9,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA022,2,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA022,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA022,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA022,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA022,9,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA022,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA022,9,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA022,9,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA022,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA022,2,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA022,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA022,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA022,9,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA022,9,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA022,9,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA022,9,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA022,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA022,9,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA022,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA022,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA022,9,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA022,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA022,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA022,9,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA022,9,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA022,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA022,9,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA022,9,"Or localized ""stem kindreds""",beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA022,9,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA022,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA022,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA022,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA022,9,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA022,9,"The exogamous patrilineages of six generations' depth reported by Hogbin, who calls them ""joint families,"" are presumably ambilineal ramages, since affiliation is reported to be matrilineal for about 10 per cent of their membership",hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA022,9,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA022,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA022,9,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA022,9,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA022,9,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA022,9,Or very possibly ambilineal,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA022,2,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA022,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA022,9,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA022,2,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA022,2,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA022,9,"But called ""extended families"" by Buck",buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA022,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA022,9,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA022,9,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA022,9,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA022,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA022,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA022,9,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA022,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA022,9,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA022,9,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA022,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA022,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA022,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA022,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA022,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA022,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA022,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA022,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA022,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA022,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA022,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA022,9,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA022,9,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA022,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA022,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA022,9,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA022,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA022,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA022,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA022,9,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA022,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA022,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA022,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA022,9,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA022,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA022,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA022,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA022,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA022,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA022,9,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA022,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA022,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA022,9,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA022,9,Patrilocal bands,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA022,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA022,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA022,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA022,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA022,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA022,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA022,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA022,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA022,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA022,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA022,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA022,9,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA022,9,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA022,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA022,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA022,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA022,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA022,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA022,9,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA022,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA022,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA022,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA022,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA022,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA022,2,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA022,9,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA022,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA022,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA022,9,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA022,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA022,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA022,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA022,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA022,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA022,9,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA022,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA022,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA022,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA022,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA022,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA022,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA022,9,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA022,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA022,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA022,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA022,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA022,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA022,9,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA022,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA022,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA022,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA022,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA022,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA022,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA022,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA022,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA022,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA022,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA022,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA022,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA022,9,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA022,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA022,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA022,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA022,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA022,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA022,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA022,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA022,9,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA022,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA022,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA022,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA022,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA022,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA022,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA022,9,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA022,9,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA022,9,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA022,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA022,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA022,9,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA022,9,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA022,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA022,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA022,9,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA022,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA022,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA022,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA022,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA022,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA022,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA022,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA022,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA022,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA022,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA022,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA022,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA022,9,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA022,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA022,9,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA022,9,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA022,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA022,9,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA022,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA022,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA022,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA022,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA022,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA022,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA022,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA022,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA022,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA022,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA022,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA022,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA022,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA022,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA022,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA022,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA022,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA022,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA022,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA022,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA022,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA022,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA022,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA022,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA022,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA022,9,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA022,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA022,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA022,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA022,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA022,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA022,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA022,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA022,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA022,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA022,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA022,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA022,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA022,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA022,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA022,9,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA022,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,1760,EA022,9,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968, +Ne3,Comanche Tribe,1870,EA022,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA022,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA022,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA022,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA022,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA022,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA022,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA022,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA022,9,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA022,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA022,9,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA022,9,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA022,9,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA022,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA022,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA022,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA022,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA022,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA022,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA022,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA022,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA022,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA022,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA022,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA022,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA022,9,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA022,9,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA022,9,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA022,9,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA022,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA022,9,Agamous patrilineages are possible,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA022,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA022,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA022,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA022,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA022,9,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA022,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA022,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA022,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA022,9,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA022,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA022,9,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA022,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA022,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA022,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA022,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA022,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA022,9,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA022,9,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA022,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA022,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA022,9,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA022,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA022,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA022,9,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA022,9,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA022,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA022,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA022,9,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA022,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA022,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA022,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA022,9,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA022,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA022,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA022,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA022,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA022,9,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA022,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA022,9,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA022,9,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,1920,EA022,9,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968, +Nj1,Ojitlan,1940,EA022,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA022,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA022,9,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,1950,EA022,9,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968, +Nj13,,1900,EA022,9,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA022,9,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA022,9,"The ""calpulli"" since they were definitely agamous and nonunilineal, are classed as ramages",holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA022,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA022,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA022,9,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA022,9,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA022,9,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA022,9,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA022,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA022,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA022,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA022,9,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA022,9,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA022,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA022,9,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,,EA022,NA,,,, +Sa16,,NA,EA022,9,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA022,9,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA022,9,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA022,9,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA022,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA022,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA022,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA022,9,"Solien reports ""nonunilineal descent groups""",solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA022,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA022,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA022,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA022,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA022,9,Assuming the core of a matrilocal extended family to be quasi- patrilineage,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA022,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA022,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA022,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA022,9,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,,EA022,NA,,,, +Sb9,,1930,EA022,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA022,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA022,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA022,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA022,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA022,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA022,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA022,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA022,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA022,9,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA022,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA022,9,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA022,9,From statement that brothers tend to live together in a settlement,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA022,9,"The ""extended families"" are conceivably localized matrilineages",wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA022,9,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA022,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA022,9,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA022,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA022,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA022,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA022,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA022,9,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA022,9,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA022,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA022,9,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA022,9,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA022,9,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA022,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA022,9,"Possibly O, though descent is specifically reported to be bilateral",holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA022,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA022,9,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA022,9,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA022,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA022,9,Description of patrifamilies suggests quasi-patrilineages,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA022,9,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA022,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA022,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA022,9,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA022,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA022,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA022,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA022,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA022,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA022,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA022,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA022,9,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA022,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA022,9,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA022,9,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA022,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA022,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA022,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA022,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA022,9,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA022,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA022,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA022,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA022,9,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA022,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA022,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA022,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA022,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA022,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA022,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA022,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA022,9,"An inference from the ""tendency for patrilineally related males to live together"" and from the statement that ""the establishment of a patrilineal lineage"" was prevented by the high death rate",levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA022,9,Patrifamilies strongly suggest quasi-lineages,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA022,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA022,9,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA022,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA022,9,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA022,9,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,1940,EA022,9,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA022,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA022,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA022,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA022,9,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA022,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA022,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA022,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA022,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA022,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA022,9,Inference from extended families with communal dwellings,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA022,9,"Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA022,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA022,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA022,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA022,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA022,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA022,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA022,2,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA022,2,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA022,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA022,9,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA022,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA022,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA022,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA022,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA022,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA022,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA022,2,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA022,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA022,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA022,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA022,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA022,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA022,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA022,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA022,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA022,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA022,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA023,7,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA023,8,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA023,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA023,10,"Entry follows Vedder; Lebzelter reports FaSiDa/MoSiDa only (code ""5"")",lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA023,12,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA023,6,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA023,8,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA023,10,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA023,NA,,,, +Ab1,,1900,EA023,1,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA023,8,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA023,8,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA023,7,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA023,10,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA023,1,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA023,6,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA023,12,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA023,8,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA023,8,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA023,12,"Formerly 'cross-cousin' (code ""1"")",krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA023,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,,EA023,NA,,,, +Ab21a,,,EA023,NA,,,, +Ab21b,,1925,EA023,8,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA023,8,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA023,7,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA023,12,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA023,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA023,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA023,1,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA023,10,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA023,7,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA023,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA023,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA023,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA023,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA023,1,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA023,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA023,13,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,,EA023,NA,,,, +Ac17,Feshi territory lineage center,1910,EA023,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,,EA023,NA,,,, +Ac19,,1880,EA023,6,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA023,9,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,,EA023,NA,,,, +Ac21,,1910,EA023,1,But the most highly preferred marriage is with a MoBrDaDa,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA023,8,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA023,8,The preferred marriage is with a MoBrDaDa,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA023,8,"Inferred from statement that ""close relatives cannot marry""",baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA023,13,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA023,8,The preferred marriage is with a MoBrDaDa,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA023,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA023,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA023,6,Inferred from the report that parallel cousins and FaSi are not marriageable,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA023,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA023,1,"But formerly 'cross-cousin' (code ""1"")",allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,,EA023,NA,,,, +Ac32,,1920,EA023,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA023,6,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA023,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA023,1,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA023,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA023,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA023,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA023,13,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA023,7,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,,EA023,NA,,,, +Ac41,,1900,EA023,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA023,1,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA023,NA,,,, +Ac5,,1920,EA023,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA023,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA023,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA023,8,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA023,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA023,10,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA023,8,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA023,1,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA023,8,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA023,6,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA023,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA023,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA023,8,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,,EA023,NA,,,, +Ad18,,1910,EA023,8,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA023,8,But marriage is preferred with a classificatory FaSiDa,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA023,8,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA023,7,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA023,7,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA023,7,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA023,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA023,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,,EA023,NA,,,, +Ad26,,1910,EA023,8,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA023,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA023,NA,,,, +Ad29,,1930,EA023,10,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA023,7,Marriage with a MoBrDa is allowed under special circumstances when Mo is dead,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA023,8,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA023,8,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA023,8,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA023,8,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,,EA023,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA023,8,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA023,NA,"Perhaps 'cross-cousin' (code ""1"") because one source states that cousin marriage is common",baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,,EA023,NA,,,, +Ad38,,1910,EA023,1,Inferred from specific statements that cousin marriages are allowed and that there are distinct terms for male and female cousins,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA023,8,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA023,7,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA023,8,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA023,7,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA023,8,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA023,8,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,,EA023,NA,,,, +Ad45,,1920,EA023,8,"But 'cross-cousin' (code ""1"") for the Hima",oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA023,7,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA023,7,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA023,NA,,,, +Ad49,,,EA023,NA,,,, +Ad5,,1940,EA023,8,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA023,12,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA023,8,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA023,7,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA023,8,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA023,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA023,7,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA023,7,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA023,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA023,7,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,,EA023,NA,,,, +Ae13,,1920,EA023,1,"Entry follows Colle; Roy reports 'no first/second cousins' (code ""7"")",colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA023,1,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,,EA023,NA,,,, +Ae16,,,EA023,NA,,,, +Ae17,,1900,EA023,8,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA023,8,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA023,6,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA023,7,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA023,7,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA023,8,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA023,8,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,,EA023,NA,,,, +Ae24,,,EA023,NA,,,, +Ae25,with special reference to the northern Tetela,1920,EA023,8,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,,EA023,NA,,,, +Ae27,,,EA023,NA,,,, +Ae28,,,EA023,NA,,,, +Ae29,,1900,EA023,8,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA023,7,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,,EA023,NA,,,, +Ae31,,,EA023,NA,,,, +Ae32,,,EA023,NA,,,, +Ae33,,,EA023,NA,,,, +Ae34,,,EA023,NA,,,, +Ae35,,,EA023,NA,,,, +Ae36,,,EA023,NA,,,, +Ae37,,,EA023,NA,,,, +Ae38,,,EA023,NA,,,, +Ae39,,1920,EA023,7,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA023,7,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,,EA023,NA,,,, +Ae41,,1940,EA023,8,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,,EA023,NA,,,, +Ae43,,,EA023,NA,,,, +Ae44,,1920,EA023,10,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,,EA023,NA,,,, +Ae46,,,EA023,NA,,,, +Ae47,,1900,EA023,8,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,,EA023,NA,,,, +Ae49,,,EA023,NA,,,, +Ae5,,1910,EA023,7,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,,EA023,NA,,,, +Ae51,,,EA023,NA,,,, +Ae52,,1950,EA023,8,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA023,6,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA023,8,But allowed with FaBrDa,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,,EA023,NA,,,, +Ae56,,1950,EA023,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,,EA023,NA,,,, +Ae58,,1910,EA023,8,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA023,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA023,8,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,,EA023,NA,,,, +Ae8,,1910,EA023,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA023,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA023,13,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA023,8,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA023,13,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,,,EA023,NA,,,, +Af13,,1920,EA023,7,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA023,7,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA023,6,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,,EA023,NA,,,, +Af17,,1900,EA023,8,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA023,10,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA023,8,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA023,6,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA023,8,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,,,EA023,NA,,,, +Af22,,1940,EA023,7,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA023,13,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA023,8,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA023,8,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA023,8,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA023,8,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA023,12,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA023,7,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA023,1,A slight preference for MoBrDa,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,,EA023,NA,,,, +Af31,,,EA023,NA,,,, +Af32,Abeouta Province and Benin,1920,EA023,8,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA023,7,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA023,7,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA023,NA,,,, +Af36,with special reference to the Glidyi,1900,EA023,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA023,8,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA023,1,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA023,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA023,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA023,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA023,8,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA023,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA023,10,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,,EA023,NA,,,, +Af45,,1900,EA023,6,But marriage with MoBrDa requires a ban-breaking sacrifice,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA023,7,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA023,8,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA023,NA,,,, +Af49,,1940,EA023,8,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA023,6,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,,EA023,NA,,,, +Af51,,,EA023,NA,,,, +Af52,,,EA023,NA,,,, +Af53,,,EA023,NA,,,, +Af54,,1930,EA023,8,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA023,8,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA023,8,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA023,8,"Entry follows McCulloch; Thomas reports 'matrilateral cross-cousins only' (code ""6"")",langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA023,8,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA023,8,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA023,8,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA023,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA023,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA023,1,"But 'no first cousins' (code ""8"") or 'cross-cousin' (code ""1"") in some districts",dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA023,13,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA023,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA023,8,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA023,8,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,,EA023,NA,,,, +Ag15,,1930,EA023,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA023,13,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,,EA023,NA,,,, +Ag18,,1930,EA023,8,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA023,8,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA023,7,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA023,NA,Cousin marriages are said to be permitted,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,,EA023,NA,,,, +Ag22,with special reference to those of Sine,1920,EA023,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA023,1,Inferred from statement that marriage is forbidden with a parallel cousin,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA023,6,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA023,10,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA023,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA023,10,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,,EA023,NA,,,, +Ag29,,,EA023,NA,,,, +Ag3,,1930,EA023,8,"Formerly 'matrilateral cross-cousins only' (code ""6"")",arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,,EA023,NA,,,, +Ag31,,,EA023,NA,,,, +Ag32,,1900,EA023,1,Inferred from statement that marriage is disapproved with a parallel cousin,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA023,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA023,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA023,1,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA023,1,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA023,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,,EA023,NA,,,, +Ag39,,1910,EA023,8,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA023,7,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA023,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA023,8,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,,EA023,NA,,,, +Ag43,,1920,EA023,1,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA023,8,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA023,8,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA023,8,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA023,7,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,,EA023,NA,,,, +Ag49,,1930,EA023,8,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA023,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,,EA023,NA,,,, +Ag51,,1940,EA023,8,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,,EA023,NA,,,, +Ag53,with special reference to those of Garango,1960,EA023,8,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA023,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA023,10,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA023,10,"Entry follows Malzy, who reports preferential cousin marriage, whereas Ortoli states that known consanguineal kinship is a bar to marriage",malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA023,13,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA023,1,"In some districts, but not in others",labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA023,7,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA023,NA,,,, +Ah11,,1950,EA023,7,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA023,8,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,,,EA023,NA,,,, +Ah14,,,EA023,NA,,,, +Ah15,,1920,EA023,8,"Entry follows Harris; Gunn and Conant report 'cross-cousin' (code ""1"")",gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA023,7,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA023,7,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA023,7,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA023,8,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA023,12,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA023,8,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA023,8,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA023,NA,,,, +Ah23,,1920,EA023,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA023,10,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA023,8,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA023,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA023,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA023,12,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,,EA023,NA,,,, +Ah3,Tar of Benue Province,1920,EA023,12,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA023,8,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA023,8,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA023,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA023,8,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA023,8,But marriage is allowed with a MoSiDa,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA023,8,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA023,12,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA023,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA023,8,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,,EA023,NA,,,, +Ah4,,1920,EA023,7,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA023,7,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA023,7,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA023,8,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA023,8,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA023,8,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA023,8,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA023,8,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA023,8,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA023,8,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,,EA023,NA,,,, +Ai14,,,EA023,NA,,,, +Ai15,,,EA023,NA,,,, +Ai16,,,EA023,NA,,,, +Ai17,,,EA023,NA,,,, +Ai18,,,EA023,NA,,,, +Ai19,,,EA023,NA,,,, +Ai2,,1940,EA023,8,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,,EA023,NA,,,, +Ai21,,,EA023,NA,,,, +Ai22,,,EA023,NA,,,, +Ai23,,1920,EA023,8,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,,EA023,NA,,,, +Ai25,,,EA023,NA,,,, +Ai26,,,EA023,NA,,,, +Ai27,,,EA023,NA,,,, +Ai28,,1910,EA023,7,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA023,8,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA023,8,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,,EA023,NA,,,, +Ai31,,,EA023,NA,,,, +Ai32,,1920,EA023,7,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,,EA023,NA,,,, +Ai34,,,EA023,NA,,,, +Ai35,,1870,EA023,8,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA023,7,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA023,8,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA023,8,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA023,7,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA023,7,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA023,7,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA023,7,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA023,8,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA023,8,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA023,8,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA023,8,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA023,8,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA023,8,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,,EA023,NA,,,, +Ai6,Shilluk Kingdom,1900,EA023,7,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA023,7,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA023,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA023,7,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA023,7,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,,EA023,NA,,,, +Aj11,,1900,EA023,7,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA023,8,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA023,8,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA023,8,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA023,8,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,,,EA023,NA,,,, +Aj17,,1890,EA023,7,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA023,NA,,,, +Aj19,,,EA023,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA023,7,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,,EA023,NA,,,, +Aj21,,1930,EA023,8,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA023,8,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA023,7,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,,EA023,NA,,,, +Aj25,,,EA023,NA,,,, +Aj26,,1910,EA023,8,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,,EA023,NA,,,, +Aj28,,1940,EA023,8,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA023,NA,,,, +Aj3,,1930,EA023,7,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,,EA023,NA,,,, +Aj31,,,EA023,NA,,,, +Aj4,,1920,EA023,8,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA023,7,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA023,7,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA023,8,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA023,7,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA023,8,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA023,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA023,8,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA023,8,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,,EA023,NA,,,, +Ca13,with special reference to the eastern Macha,1950,EA023,7,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,,EA023,NA,,,, +Ca15,,,EA023,NA,,,, +Ca16,,,EA023,NA,,,, +Ca17,,,EA023,NA,,,, +Ca18,,,EA023,NA,,,, +Ca19,,,EA023,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA023,7,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,,EA023,NA,,,, +Ca21,,,EA023,NA,,,, +Ca22,,1950,EA023,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,,EA023,NA,,,, +Ca24,,,EA023,NA,,,, +Ca25,,,EA023,NA,,,, +Ca26,,,EA023,NA,,,, +Ca27,,1930,EA023,8,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA023,8,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,,EA023,NA,,,, +Ca3,,1950,EA023,7,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA023,8,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,,EA023,NA,,,, +Ca32,,1860,EA023,7,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA023,7,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA023,10,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA023,10,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA023,10,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,,,EA023,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA023,10,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA023,7,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,,EA023,NA,,,, +Ca40,,1950,EA023,8,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,,EA023,NA,,,, +Ca42,,,EA023,NA,,,, +Ca43,,,EA023,NA,,,, +Ca5,,1930,EA023,10,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA023,10,But forbidden with a MoSiDa,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA023,7,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,,EA023,NA,,,, +Ca9,,,EA023,NA,,,, +Cb1,,1940,EA023,1,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA023,8,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA023,6,Inferred from a report that marriage is permitted with a MoBrDa but forbidden with a FaSiDa,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA023,10,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA023,10,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,,EA023,NA,,,, +Cb15,with special reference to the Humr,1940,EA023,10,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA023,10,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA023,8,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA023,10,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA023,13,Marriage is forbidden with a MoSiDa,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA023,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,,EA023,NA,,,, +Cb21,,1930,EA023,1,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA023,10,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA023,10,"But Lafont reports 'no first cousins' (code ""8"")",kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA023,10,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA023,10,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA023,10,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA023,8,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA023,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA023,NA,,,, +Cb3,Bamba division,1940,EA023,10,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA023,10,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA023,10,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA023,1,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA023,1,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA023,8,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA023,10,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA023,10,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA023,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,,EA023,NA,,,, +Cc12,,,EA023,NA,,,, +Cc13,,1920,EA023,10,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA023,7,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA023,NA,,,, +Cc16,,1930,EA023,10,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA023,10,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,,EA023,NA,,,, +Cc19,,,EA023,NA,,,, +Cc2,Nomads of Tibesti,1950,EA023,7,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA023,10,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA023,10,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,,EA023,NA,,,, +Cc5,,1910,EA023,10,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA023,10,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA023,10,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA023,NA,,,, +Cc9,Ahaggaren tribe,1920,EA023,1,"Entry follows Briggs; earlier sources report 'any first cousins' (code ""10"")",benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA023,10,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA023,10,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA023,10,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA023,10,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA023,10,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA023,10,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,,EA023,NA,,,, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA023,10,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA023,10,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA023,10,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA023,10,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA023,10,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA023,10,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA023,10,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA023,13,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA023,10,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,,,EA023,NA,,,, +Cd6,with special reference to the New Empire,-1400,EA023,10,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA023,10,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA023,10,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,,EA023,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA023,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA023,10,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA023,10,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA023,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA023,12,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA023,10,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA023,7,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,,,EA023,NA,,,, +Cf1,Small City in Connecticut,1920,EA023,10,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,,,EA023,NA,,,, +Cf3,,,EA023,NA,,,, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA023,8,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA023,7,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA023,10,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,,EA023,NA,,,, +Cg3,County Clare,1930,EA023,7,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA023,12,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,,EA023,NA,,,, +Ch1,,,EA023,NA,,,, +Ch10,,1910,EA023,8,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,,,EA023,NA,,,, +Ch2,,,EA023,NA,,,, +Ch3,with special reference to the Hana district of central Moravia,1940,EA023,12,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA023,7,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,,,EA023,NA,,,, +Ch6,,1910,EA023,12,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA023,7,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA023,7,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA023,8,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA023,7,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA023,7,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA023,10,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,,,EA023,NA,,,, +Ci2,,1930,EA023,8,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,,,EA023,NA,,,, +Ci4,,,EA023,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA023,10,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA023,13,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,,EA023,NA,,,, +Ci8,,,EA023,NA,,,, +Ci9,,,EA023,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA023,10,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA023,10,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA023,10,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA023,10,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,,,EA023,NA,,,, +Cj5,,1930,EA023,10,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA023,10,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA023,12,"But traditionally 'any first cousins' (code ""10"")",davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA023,10,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,,EA023,NA,,,, +Ea1,,1950,EA023,10,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA023,10,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA023,10,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA023,10,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA023,10,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA023,10,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA023,10,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,,EA023,NA,,,, +Ea5,,1890,EA023,8,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA023,10,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA023,10,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,,EA023,NA,,,, +Ea9,,1950,EA023,10,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA023,7,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA023,1,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA023,7,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA023,8,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA023,3,"Possibly 'matrilateral cross-cousins only' (code ""6"")",freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA023,3,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA023,3,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA023,10,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA023,6,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA023,7,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,,EA023,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA023,13,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA023,10,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA023,13,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA023,12,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA023,12,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA023,13,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,,EA023,NA,,,, +Ec9,,1920,EA023,3,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA023,8,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA023,13,,yang1945,EthnographicAtlas_1967_p86, +Ed13,,,EA023,NA,,,, +Ed14,,,EA023,NA,,,, +Ed15a,,,EA023,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA023,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA023,13,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA023,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA023,1,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA023,1,"Or 'cross-cousin' (code ""1"") if Mark's interpretation of Ruey's data is correct",mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA023,13,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA023,3,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA023,12,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA023,10,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,,EA023,NA,,,, +Ee1,,1940,EA023,6,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA023,8,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA023,7,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA023,13,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA023,8,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA023,12,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,,EA023,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA023,6,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA023,8,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA023,8,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,,,EA023,NA,,,, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA023,7,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA023,7,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA023,6,Entry follows Majumdar; Chatterjee and Das report that cross- cousin marriage is recent and disapproved,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA023,7,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA023,8,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA023,8,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA023,10,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA023,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA023,1,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA023,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA023,1,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA023,1,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA023,1,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA023,1,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA023,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA023,1,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA023,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA023,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA023,1,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA023,1,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA023,8,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA023,1,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA023,8,"Entry follows Man; Radcliffe-Brown infers 'any first cousins' (code ""10"")",man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA023,7,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA023,1,Marriage is also favored with a FaBrDa,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA023,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA023,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA023,12,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA023,1,"Leach denies ""a symmetrical preference for cross-cousin marriage"" but fails to report the ""true facts""",ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA023,12,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA023,8,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA023,8,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA023,1,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA023,7,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA023,6,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA023,6,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,,EA023,NA,,,, +Ei14,with special reference to the Chongli,1920,EA023,8,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA023,6,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA023,6,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,,EA023,NA,,,, +Ei18,,,EA023,NA,,,, +Ei19,,1940,EA023,6,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA023,6,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA023,6,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA023,10,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA023,3,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA023,6,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA023,6,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA023,12,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA023,1,"Marriage is allowed with a MoBrDa only if MoBr is dead, and with a FaSiDa only if Fa is dead",becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA023,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA023,6,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA023,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA023,8,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA023,6,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA023,7,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA023,8,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA023,NA,,,, +Ej16,Inas District,1958,EA023,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA023,6,MoYoBrDa only,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA023,8,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA023,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA023,10,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,,,EA023,NA,,,, +Ej7,,1950,EA023,8,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA023,10,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA023,10,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA023,7,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA023,7,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA023,7,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA023,8,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA023,10,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA023,8,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA023,7,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA023,12,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,,EA023,NA,,,, +Ia18,with special reference to the village of Manland in western Negros,1950,EA023,7,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA023,12,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA023,7,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA023,10,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA023,7,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA023,7,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA023,7,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA023,12,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA023,7,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA023,10,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA023,13,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA023,10,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA023,6,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA023,7,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA023,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA023,13,Marriage forbidden only with a FaBrDa,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA023,7,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA023,7,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA023,10,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA023,8,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA023,7,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA023,10,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA023,1,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA023,7,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA023,6,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA023,13,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA023,12,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA023,1,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA023,1,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA023,6,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA023,6,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA023,11,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA023,7,But marriage is preferred with a remoter classificatory MoMoBrDaDa,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA023,11,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA023,6,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA023,12,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA023,6,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA023,12,"Marriage with FaSiDa is allowed in theory, but Pilling observed No actual cases; marriage with a daughter of father's half sister, however, is preferred and common",basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA023,11,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA023,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA023,6,Marriage preferential with MoYoBrDa and any second cross-cousin but forbidden with FaSiDa and MoElBrDa,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA023,11,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA023,NA,,,, +Id9,,1910,EA023,11,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA023,12,Marriage is preferred with any second cross-cousin,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA023,7,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA023,11,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA023,12,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA023,12,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA023,7,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA023,8,"Though disapproved, marriage with a cross-cousin does occasionally occur",kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA023,8,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA023,8,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA023,7,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA023,8,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA023,1,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA023,7,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,,EA023,NA,,,, +Ie22,,1900,EA023,8,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA023,8,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA023,8,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA023,8,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA023,11,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA023,1,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA023,8,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA023,8,Marriage is preferred with FaFaSiSoDa,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA023,8,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA023,NA,,,, +Ie31,,1950,EA023,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,,EA023,NA,,,, +Ie33,with special reference to the village of Muramarew,1950,EA023,1,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA023,7,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA023,1,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA023,7,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA023,8,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA023,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA023,8,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA023,12,Marriage is preferential between children of cross-cousins,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA023,8,"The preferred union is with a classificatory, not an actual, cross-cousin",williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA023,6,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA023,8,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA023,7,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA023,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA023,7,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA023,1,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA023,1,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA023,1,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA023,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA023,7,"But 'any first cousins' (code ""10"") in the aristocracy",finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA023,7,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,,EA023,NA,,,, +If17,with special reference to the island of Jaluit,1900,EA023,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA023,7,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA023,1,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA023,7,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA023,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA023,12,Marriage with a first cross-cousin occurs only under very special conditions,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA023,7,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA023,7,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA023,12,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA023,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA023,11,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA023,8,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA023,8,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA023,10,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA023,8,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,,EA023,NA,,,, +Ig16,,,EA023,NA,,,, +Ig17,,1950,EA023,1,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA023,8,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA023,8,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA023,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA023,8,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA023,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA023,7,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA023,12,The preferred marriage is with the daughter of a cross-cousin,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA023,8,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA023,8,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA023,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA023,7,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA023,11,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA023,8,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA023,1,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA023,1,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA023,8,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA023,11,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,,,EA023,NA,,,, +Ih2,Malekula Island,1930,EA023,7,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA023,7,Marriage is preferred with MoBrDaDa or MoMoBrDa,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA023,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA023,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA023,12,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA023,7,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA023,12,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA023,1,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA023,7,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA023,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA023,8,"But 'cross-cousin' (code ""1"") among nobles",beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA023,7,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA023,7,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA023,12,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA023,7,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA023,8,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA023,7,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA023,7,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA023,7,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA023,12,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA023,12,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA023,7,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA023,7,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA023,12,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA023,1,"But Miranda states that ""marriage was prohibited within the third degree of relationship""",forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA023,10,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,,EA023,NA,,,, +Ij6,,1800,EA023,12,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA023,12,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA023,8,But chiefly families sometimes practiced cross-cousin marriage,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA023,8,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA023,1,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA023,1,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA023,13,But rules of cousin marriage were variable,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA023,7,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,,EA023,NA,,,, +Na14,,,EA023,NA,,,, +Na15,,1860,EA023,NA,There are no patterns of preferential marriage,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,,EA023,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA023,8,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA023,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA023,7,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA023,8,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA023,7,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA023,7,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,,,EA023,NA,,,, +Na24,,1880,EA023,8,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,,,EA023,NA,,,, +Na26,with special reference to the Iliamna,1870,EA023,7,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,,EA023,NA,,,, +Na28,,1880,EA023,12,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,,EA023,NA,,,, +Na3,Coronation Gulf,1920,EA023,12,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA023,8,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA023,10,"""...there were no marriage restrictions""",skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA023,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA023,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA023,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA023,1,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA023,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA023,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA023,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA023,1,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA023,6,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA023,NA,,,, +Na41,Mainland division,1700,EA023,7,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA023,8,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA023,10,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA023,12,"But there are occasional marriages between first cousins, and people differ as to their propriety",graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA023,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA023,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA023,10,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA023,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA023,12,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA023,10,"But 'no first cousins' (code ""8"") today",bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA023,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA023,7,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA023,7,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA023,7,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA023,7,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA023,7,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA023,7,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA023,7,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA023,12,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA023,7,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA023,8,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA023,7,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA023,8,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA023,8,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA023,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA023,1,"Marriage with a cross-cousin was considered ""good""",boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA023,7,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA023,7,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA023,7,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA023,7,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA023,8,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA023,12,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA023,12,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA023,8,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA023,6,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA023,7,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA023,7,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA023,7,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA023,7,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA023,7,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA023,7,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA023,7,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA023,7,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA023,7,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA023,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA023,3,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA023,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA023,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA023,8,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA023,8,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA023,7,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA023,7,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA023,7,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA023,12,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA023,7,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA023,8,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA023,8,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA023,8,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA023,12,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA023,8,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA023,7,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA023,7,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA023,8,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA023,6,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA023,7,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA023,7,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA023,7,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,,EA023,NA,,,, +Nc27,,,EA023,NA,,,, +Nc28,,,EA023,NA,,,, +Nc29,,1770,EA023,8,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA023,7,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA023,7,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA023,7,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA023,7,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA023,7,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA023,8,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA023,7,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA023,8,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA023,7,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA023,7,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA023,7,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA023,7,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA023,7,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA023,7,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA023,7,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA023,7,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA023,8,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA023,12,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA023,7,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA023,8,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA023,8,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA023,7,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA023,7,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA023,7,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA023,7,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA023,7,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA023,7,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA023,7,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA023,7,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA023,7,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA023,7,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA023,7,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA023,7,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA023,7,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA023,7,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA023,7,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA023,7,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA023,7,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA023,7,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA023,7,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA023,7,"The preferred marriage is with a pseudo-cross cousin, i.e., a stepchild of either MoBr or FaSi",steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA023,7,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA023,7,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA023,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA023,7,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA023,7,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA023,7,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA023,7,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA023,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA023,1,Entry follows Harris; Steward reports only marriage with a pseudo-cross-cousin,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA023,7,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA023,8,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA023,7,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA023,7,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA023,1,"But 'cross-cousin' (code ""1"") in the Skull Valley band",malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA023,7,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA023,7,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA023,7,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA023,7,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA023,7,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA023,7,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA023,7,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA023,7,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA023,7,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,,EA023,NA,,,, +Nd58,,1860,EA023,7,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,,EA023,NA,,,, +Nd6,,1850,EA023,7,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,,EA023,NA,,,, +Nd61,,,EA023,NA,,,, +Nd62,,,EA023,NA,,,, +Nd63,with special reference to the Eastern Bannock,1860,EA023,8,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA023,7,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA023,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA023,7,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA023,8,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA023,7,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA023,7,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA023,7,"But 'any first cousins' (code ""10"") today",hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA023,7,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,,EA023,NA,,,, +Ne11,,1870,EA023,7,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA023,7,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA023,8,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA023,12,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA023,8,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,,EA023,NA,,,, +Ne17,,1860,EA023,8,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA023,8,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA023,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA023,7,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA023,8,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA023,NA,,,, +Ne3,Comanche Tribe,1870,EA023,8,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA023,8,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA023,7,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA023,6,Inferred from a report by Bowers (p. 75) that a man preferred to have a son-in-law from his own sib,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA023,8,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA023,8,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA023,7,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,,EA023,NA,,,, +Nf11,,1870,EA023,8,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA023,8,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA023,7,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA023,7,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA023,7,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA023,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA023,7,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA023,8,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA023,8,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA023,12,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA023,7,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA023,7,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA023,8,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA023,7,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA023,NA,"Unreported but probably 'no first cousins' (code ""8"") like the Huron",fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,,EA023,NA,,,, +Ng12,,1760,EA023,7,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,,EA023,NA,,,, +Ng14,,NA,EA023,7,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA023,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA023,11,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA023,7,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA023,8,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA023,12,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,,,EA023,NA,,,, +Ng7,Natchez Kingdom,1700,EA023,7,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,,EA023,NA,,,, +Ng9,,1920,EA023,10,"But formerly 'no first cousins' (code ""8"")",speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA023,7,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA023,7,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA023,7,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA023,8,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA023,8,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA023,8,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA023,7,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA023,8,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA023,7,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA023,7,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA023,7,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA023,7,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA023,7,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA023,7,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA023,7,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA023,8,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA023,8,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA023,8,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA023,8,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA023,8,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA023,7,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA023,8,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA023,7,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA023,7,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA023,7,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA023,7,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA023,8,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA023,12,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA023,7,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA023,10,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA023,8,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA023,8,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA023,7,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA023,7,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,,EA023,NA,,,, +Ni9,,,EA023,NA,,,, +Nj1,Ojitlan,1940,EA023,7,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA023,8,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA023,NA,,,, +Nj12,,,EA023,NA,,,, +Nj13,,,EA023,NA,,,, +Nj14,,1960,EA023,8,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA023,8,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA023,8,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA023,8,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA023,7,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA023,8,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,,,EA023,NA,,,, +Nj8,,1500,EA023,10,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA023,8,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA023,12,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,,EA023,NA,,,, +Sa11,,,EA023,NA,,,, +Sa12,,,EA023,NA,,,, +Sa13,Town of Chichicastenango,1930,EA023,8,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,,EA023,NA,,,, +Sa15,,,EA023,NA,,,, +Sa16,,,EA023,NA,,,, +Sa17,with special reference to the village of Chinantla,1950,EA023,8,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA023,1,Entry follows Guiteras; Villa says marriage is preferred with a classificatory cross-cousin but disapproved with a first cross-cousin,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA023,12,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA023,12,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA023,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA023,3,"In Murdock (1962d) he coded this as 'matrilateral cross-cousins only' (code ""6"") and noted ""Landa specifically reports marriageability of maternal cousins; hence possibly 'maternal only' (code ""3"") rather than 'matrilateral cross-cousins only' (code ""6"") ."" In the EA he coded the column as 'maternal only' (code ""3"")",carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA023,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA023,7,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA023,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA023,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA023,12,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA023,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA023,10,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA023,8,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA023,13,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA023,1,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,,EA023,NA,,,, +Sb9,,1930,EA023,8,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA023,10,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA023,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA023,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA023,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA023,1,"Entry follows Wilbert; Riley reports 'cross-cousin' (code ""1"")",riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,,EA023,NA,,,, +Sc15,,,EA023,NA,,,, +Sc16,with special reference to the Makitare,1920,EA023,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA023,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA023,12,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA023,1,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA023,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA023,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA023,1,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA023,13,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA023,1,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA023,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA023,8,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA023,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA023,8,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,,EA023,NA,,,, +Sd4,,,EA023,NA,,,, +Sd5,,,EA023,NA,,,, +Sd6,,1960,EA023,1,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA023,1,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA023,8,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA023,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA023,6,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA023,NA,Preferential marriage with SiDa,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA023,1,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA023,1,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA023,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA023,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA023,8,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA023,1,But Goldman reports a preference for marrying a woman of one's mother's lineage,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA023,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA023,8,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA023,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,,EA023,NA,,,, +Sf1,City and environs of Cuzco,1530,EA023,10,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA023,8,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA023,8,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA023,8,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,,EA023,NA,,,, +Sf6,,,EA023,NA,,,, +Sf7,,1900,EA023,10,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA023,1,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,,,EA023,NA,,,, +Sg1,Eastern and central,1870,EA023,7,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA023,6,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA023,7,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA023,10,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA023,10,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA023,8,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA023,8,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA023,7,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA023,8,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA023,8,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,,EA023,NA,,,, +Sh7,,1900,EA023,10,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA023,12,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,,,EA023,NA,,,, +Si1,Kejara,1920,EA023,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA023,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA023,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA023,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA023,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA023,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,,EA023,NA,,,, +Si7,,,EA023,NA,,,, +Si8,,1940,EA023,12,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA023,NA,,,, +Sj1,,1950,EA023,10,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,,,EA023,NA,,,, +Sj11,Village of Sao Domingo,1958,EA023,8,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA023,9,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA023,10,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA023,8,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA023,10,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA023,8,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA023,11,"Entry follows Nimuendaju; Maybury-Lewis gives 'cross-cousin' (code ""1"")",mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA023,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA023,8,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA023,7,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,,,EA023,NA,,,, +ch14,with special reference to the Virjal group,1908,EA023,7,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA023,7,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,,,EA023,NA,,,, +ch17,with special reference to those of the Benderskij Uezd,1894,EA023,7,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA023,7,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,,,EA023,NA,,,, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA023,8,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,,,EA023,NA,,,, +ch22,,,EA023,NA,,,, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA023,11,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA023,7,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,,,EA023,NA,,,, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA023,7,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA023,7,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA023,7,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA023,7,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA023,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA023,7,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA023,7,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA023,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA023,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA023,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA023,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA023,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA023,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA024,8,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA024,7,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA024,3,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA024,1,"Entry follows Vedder; Lebzelter reports 'duolateral' (code ""3"")",lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA024,5,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA024,4,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA024,7,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA024,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA024,NA,,,, +Ab1,,1900,EA024,3,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA024,7,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA024,7,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA024,8,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA024,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA024,3,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA024,4,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA024,5,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA024,7,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA024,7,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA024,5,"Formerly 'duolateral' (code ""3"")",krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA024,3,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,,EA024,NA,,,, +Ab21a,,,EA024,NA,,,, +Ab21b,,1925,EA024,7,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA024,7,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA024,8,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA024,5,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA024,3,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA024,3,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA024,3,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA024,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA024,8,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA024,4,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA024,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA024,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA024,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA024,3,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA024,3,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA024,2,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,,EA024,NA,,,, +Ac17,Feshi territory lineage center,1910,EA024,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,,EA024,NA,,,, +Ac19,,1880,EA024,4,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA024,4,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,,EA024,NA,,,, +Ac21,,1910,EA024,3,But the most highly preferred marriage is with a MoBrDaDa,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA024,7,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA024,7,The preferred marriage is with a MoBrDaDa,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA024,7,"Inferred from statement that ""close relatives cannot marry""",baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA024,2,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA024,7,The preferred marriage is with a MoBrDaDa,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA024,3,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA024,3,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA024,4,Inferred from the report that parallel cousins and FaSi are not marriageable,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA024,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA024,3,"But formerly 'duolateral' (code ""3"")",allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,,EA024,NA,,,, +Ac32,,1920,EA024,3,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA024,4,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA024,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA024,3,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA024,3,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA024,3,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA024,3,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA024,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA024,8,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,,EA024,NA,,,, +Ac41,,1900,EA024,3,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA024,3,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA024,NA,,,, +Ac5,,1920,EA024,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA024,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA024,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA024,7,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA024,3,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA024,1,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA024,7,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA024,3,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA024,7,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA024,4,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA024,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA024,3,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA024,7,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,,EA024,NA,,,, +Ad18,,1910,EA024,7,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA024,7,But marriage is preferred with a classificatory FaSiDa,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA024,7,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA024,8,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA024,8,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA024,8,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA024,3,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA024,3,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,,EA024,NA,,,, +Ad26,,1910,EA024,7,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA024,3,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA024,NA,,,, +Ad29,,1930,EA024,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA024,8,Marriage with a MoBrDa is allowed under special circumstances when Mo is dead,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA024,7,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA024,7,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA024,7,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA024,7,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,,EA024,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA024,7,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA024,NA,"Perhaps 'duolateral' (code ""3"") because one source states that cousin marriage is common",baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,,EA024,NA,,,, +Ad38,,1910,EA024,3,Inferred from specific statements that cousin marriages are allowed and that there are distinct terms for male and female cousins,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA024,7,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA024,8,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA024,7,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA024,8,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA024,7,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA024,7,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,,EA024,NA,,,, +Ad45,,1920,EA024,7,"But 'duolateral' (code ""3"") for the Hima",oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA024,8,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA024,8,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA024,NA,,,, +Ad49,,,EA024,NA,,,, +Ad5,,1940,EA024,7,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA024,5,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA024,7,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA024,8,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA024,7,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA024,3,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA024,8,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA024,8,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA024,3,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA024,8,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,,EA024,NA,,,, +Ae13,,1920,EA024,3,"Entry follows Colle; Roy reports 'no first/second cousins' (code ""8"")",colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA024,3,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,,EA024,NA,,,, +Ae16,,,EA024,NA,,,, +Ae17,,1900,EA024,7,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA024,7,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA024,4,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA024,8,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA024,8,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA024,7,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA024,7,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,,EA024,NA,,,, +Ae24,,,EA024,NA,,,, +Ae25,with special reference to the northern Tetela,1920,EA024,7,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,,EA024,NA,,,, +Ae27,,,EA024,NA,,,, +Ae28,,,EA024,NA,,,, +Ae29,,1900,EA024,7,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA024,8,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,,EA024,NA,,,, +Ae31,,,EA024,NA,,,, +Ae32,,,EA024,NA,,,, +Ae33,,,EA024,NA,,,, +Ae34,,,EA024,NA,,,, +Ae35,,,EA024,NA,,,, +Ae36,,,EA024,NA,,,, +Ae37,,,EA024,NA,,,, +Ae38,,,EA024,NA,,,, +Ae39,,1920,EA024,8,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA024,8,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,,EA024,NA,,,, +Ae41,,1940,EA024,7,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,,EA024,NA,,,, +Ae43,,,EA024,NA,,,, +Ae44,,1920,EA024,1,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,,EA024,NA,,,, +Ae46,,,EA024,NA,,,, +Ae47,,1900,EA024,7,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,,EA024,NA,,,, +Ae49,,,EA024,NA,,,, +Ae5,,1910,EA024,8,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,,EA024,NA,,,, +Ae51,,,EA024,NA,,,, +Ae52,,1950,EA024,7,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA024,4,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA024,7,But allowed with FaBrDa,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,,EA024,NA,,,, +Ae56,,1950,EA024,7,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,,EA024,NA,,,, +Ae58,,1910,EA024,7,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA024,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA024,7,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,,EA024,NA,,,, +Ae8,,1910,EA024,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA024,7,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA024,2,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA024,7,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA024,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,,,EA024,NA,,,, +Af13,,1920,EA024,8,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA024,8,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA024,4,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,,EA024,NA,,,, +Af17,,1900,EA024,7,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA024,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA024,7,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA024,4,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA024,7,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,,,EA024,NA,,,, +Af22,,1940,EA024,8,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA024,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA024,7,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA024,7,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA024,7,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA024,7,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA024,5,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA024,8,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA024,3,A slight preference for MoBrDa,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,,EA024,NA,,,, +Af31,,,EA024,NA,,,, +Af32,Abeouta Province and Benin,1920,EA024,7,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA024,8,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA024,8,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA024,NA,,,, +Af36,with special reference to the Glidyi,1900,EA024,3,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA024,7,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA024,3,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA024,3,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA024,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA024,3,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA024,7,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA024,3,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA024,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,,EA024,NA,,,, +Af45,,1900,EA024,4,But marriage with MoBrDa requires a ban-breaking sacrifice,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA024,8,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA024,7,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA024,NA,,,, +Af49,,1940,EA024,7,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA024,4,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,,EA024,NA,,,, +Af51,,,EA024,NA,,,, +Af52,,,EA024,NA,,,, +Af53,,,EA024,NA,,,, +Af54,,1930,EA024,7,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA024,7,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA024,7,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA024,7,"Entry follows McCulloch; Thomas reports 'unilateral' (code ""4"")",langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA024,7,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA024,7,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA024,7,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA024,3,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA024,3,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA024,3,"But 'no first cousins' (code ""7"") or 'duolateral' (code ""3"") in some districts",dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA024,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA024,3,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA024,7,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA024,7,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,,EA024,NA,,,, +Ag15,,1930,EA024,7,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA024,2,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,,EA024,NA,,,, +Ag18,,1930,EA024,7,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA024,7,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA024,8,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA024,NA,Cousin marriages are said to be permitted,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,,EA024,NA,,,, +Ag22,with special reference to those of Sine,1920,EA024,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA024,3,Inferred from statement that marriage is forbidden with a parallel cousin,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA024,4,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA024,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA024,3,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA024,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,,EA024,NA,,,, +Ag29,,,EA024,NA,,,, +Ag3,,1930,EA024,7,"Formerly 'unilateral' (code ""4"")",arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,,EA024,NA,,,, +Ag31,,,EA024,NA,,,, +Ag32,,1900,EA024,3,Inferred from statement that marriage is disapproved with a parallel cousin,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA024,3,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA024,3,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA024,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA024,3,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA024,7,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,,EA024,NA,,,, +Ag39,,1910,EA024,7,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA024,8,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA024,7,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA024,7,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,,EA024,NA,,,, +Ag43,,1920,EA024,3,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA024,7,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA024,7,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA024,7,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA024,8,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,,EA024,NA,,,, +Ag49,,1930,EA024,7,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA024,3,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,,EA024,NA,,,, +Ag51,,1940,EA024,7,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,,EA024,NA,,,, +Ag53,with special reference to those of Garango,1960,EA024,7,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA024,3,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA024,1,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA024,1,"Entry follows Malzy, who reports preferential cousin marriage, whereas Ortoli states that known consanguineal kinship is a bar to marriage",malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA024,2,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA024,3,"In some districts, but not in others",labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA024,8,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA024,NA,,,, +Ah11,,1950,EA024,8,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA024,7,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,,,EA024,NA,,,, +Ah14,,,EA024,NA,,,, +Ah15,,1920,EA024,7,"Entry follows Harris; Gunn and Conant report 'duolateral' (code ""3"")",gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA024,8,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA024,8,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA024,8,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA024,7,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA024,5,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA024,7,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA024,7,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA024,NA,,,, +Ah23,,1920,EA024,3,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA024,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA024,7,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA024,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA024,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA024,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,,EA024,NA,,,, +Ah3,Tar of Benue Province,1920,EA024,5,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA024,7,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA024,7,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA024,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA024,7,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA024,7,But marriage is allowed with a MoSiDa,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA024,7,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA024,5,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA024,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA024,7,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,,EA024,NA,,,, +Ah4,,1920,EA024,8,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA024,8,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA024,8,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA024,7,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA024,7,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA024,7,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA024,7,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA024,7,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA024,7,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA024,7,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,,EA024,NA,,,, +Ai14,,,EA024,NA,,,, +Ai15,,,EA024,NA,,,, +Ai16,,,EA024,NA,,,, +Ai17,,,EA024,NA,,,, +Ai18,,,EA024,NA,,,, +Ai19,,,EA024,NA,,,, +Ai2,,1940,EA024,7,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,,EA024,NA,,,, +Ai21,,,EA024,NA,,,, +Ai22,,,EA024,NA,,,, +Ai23,,1920,EA024,7,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,,EA024,NA,,,, +Ai25,,,EA024,NA,,,, +Ai26,,,EA024,NA,,,, +Ai27,,,EA024,NA,,,, +Ai28,,1910,EA024,8,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA024,7,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA024,7,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,,EA024,NA,,,, +Ai31,,,EA024,NA,,,, +Ai32,,1920,EA024,8,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,,EA024,NA,,,, +Ai34,,,EA024,NA,,,, +Ai35,,1870,EA024,7,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA024,8,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA024,7,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA024,7,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA024,8,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA024,8,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA024,8,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA024,8,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA024,7,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA024,7,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA024,7,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA024,7,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA024,7,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA024,7,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,,EA024,NA,,,, +Ai6,Shilluk Kingdom,1900,EA024,8,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA024,8,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA024,3,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA024,8,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA024,8,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,,EA024,NA,,,, +Aj11,,1900,EA024,8,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA024,7,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA024,7,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA024,7,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA024,7,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,,,EA024,NA,,,, +Aj17,,1890,EA024,8,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA024,NA,,,, +Aj19,,,EA024,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA024,8,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,,EA024,NA,,,, +Aj21,,1930,EA024,7,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA024,7,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA024,8,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,,EA024,NA,,,, +Aj25,,,EA024,NA,,,, +Aj26,,1910,EA024,7,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,,EA024,NA,,,, +Aj28,,1940,EA024,7,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA024,NA,,,, +Aj3,,1930,EA024,8,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,,EA024,NA,,,, +Aj31,,,EA024,NA,,,, +Aj4,,1920,EA024,7,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA024,8,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA024,8,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA024,7,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA024,8,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA024,7,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA024,3,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA024,7,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA024,7,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,,EA024,NA,,,, +Ca13,with special reference to the eastern Macha,1950,EA024,8,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,,EA024,NA,,,, +Ca15,,,EA024,NA,,,, +Ca16,,,EA024,NA,,,, +Ca17,,,EA024,NA,,,, +Ca18,,,EA024,NA,,,, +Ca19,,,EA024,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA024,8,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,,EA024,NA,,,, +Ca21,,,EA024,NA,,,, +Ca22,,1950,EA024,7,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,,EA024,NA,,,, +Ca24,,,EA024,NA,,,, +Ca25,,,EA024,NA,,,, +Ca26,,,EA024,NA,,,, +Ca27,,1930,EA024,7,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA024,7,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,,EA024,NA,,,, +Ca3,,1950,EA024,8,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA024,7,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,,EA024,NA,,,, +Ca32,,1860,EA024,8,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA024,8,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA024,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA024,1,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA024,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,,,EA024,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA024,1,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA024,8,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,,EA024,NA,,,, +Ca40,,1950,EA024,7,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,,EA024,NA,,,, +Ca42,,,EA024,NA,,,, +Ca43,,,EA024,NA,,,, +Ca5,,1930,EA024,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA024,1,But forbidden with a MoSiDa,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA024,8,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,,EA024,NA,,,, +Ca9,,,EA024,NA,,,, +Cb1,,1940,EA024,3,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA024,7,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA024,4,Inferred from a report that marriage is permitted with a MoBrDa but forbidden with a FaSiDa,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA024,1,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA024,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,,EA024,NA,,,, +Cb15,with special reference to the Humr,1940,EA024,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA024,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA024,7,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA024,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA024,2,Marriage is forbidden with a MoSiDa,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA024,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,,EA024,NA,,,, +Cb21,,1930,EA024,3,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA024,1,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA024,1,"But Lafont reports 'no first cousins' (code ""7"")",kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA024,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA024,1,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA024,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA024,7,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA024,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA024,NA,,,, +Cb3,Bamba division,1940,EA024,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA024,1,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA024,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA024,3,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA024,3,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA024,7,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA024,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA024,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA024,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,,EA024,NA,,,, +Cc12,,,EA024,NA,,,, +Cc13,,1920,EA024,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA024,8,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA024,NA,,,, +Cc16,,1930,EA024,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA024,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,,EA024,NA,,,, +Cc19,,,EA024,NA,,,, +Cc2,Nomads of Tibesti,1950,EA024,8,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA024,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA024,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,,EA024,NA,,,, +Cc5,,1910,EA024,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA024,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA024,1,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA024,NA,,,, +Cc9,Ahaggaren tribe,1920,EA024,3,"Entry follows Briggs; earlier sources report 'quadrilateral' (code ""1"")",benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA024,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA024,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA024,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA024,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA024,1,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA024,1,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,,EA024,NA,,,, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA024,1,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA024,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA024,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA024,1,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA024,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA024,1,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA024,1,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA024,2,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA024,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,,,EA024,NA,,,, +Cd6,with special reference to the New Empire,-1400,EA024,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA024,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA024,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,,EA024,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA024,3,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA024,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA024,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA024,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA024,5,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA024,1,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA024,8,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,,,EA024,NA,,,, +Cf1,Small City in Connecticut,1920,EA024,1,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,,,EA024,NA,,,, +Cf3,,,EA024,NA,,,, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA024,7,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA024,8,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA024,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,,EA024,NA,,,, +Cg3,County Clare,1930,EA024,8,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA024,5,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,,EA024,NA,,,, +Ch1,,,EA024,NA,,,, +Ch10,,1910,EA024,7,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,,,EA024,NA,,,, +Ch2,,,EA024,NA,,,, +Ch3,with special reference to the Hana district of central Moravia,1940,EA024,5,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA024,8,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,,,EA024,NA,,,, +Ch6,,1910,EA024,5,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA024,8,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA024,8,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA024,7,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA024,8,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA024,8,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA024,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,,,EA024,NA,,,, +Ci2,,1930,EA024,7,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,,,EA024,NA,,,, +Ci4,,,EA024,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA024,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA024,2,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,,EA024,NA,,,, +Ci8,,,EA024,NA,,,, +Ci9,,,EA024,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA024,1,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA024,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA024,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA024,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,,,EA024,NA,,,, +Cj5,,1930,EA024,1,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA024,1,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA024,5,"But traditionally 'quadrilateral' (code ""1"")",davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA024,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,,EA024,NA,,,, +Ea1,,1950,EA024,1,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA024,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA024,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA024,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA024,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA024,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA024,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,,EA024,NA,,,, +Ea5,,1890,EA024,7,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA024,1,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA024,1,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,,EA024,NA,,,, +Ea9,,1950,EA024,1,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA024,8,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA024,3,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA024,8,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA024,7,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA024,3,"Possibly 'unilateral' (code ""4"")",freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA024,3,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA024,3,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA024,1,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA024,4,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA024,8,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,,EA024,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA024,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA024,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA024,2,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA024,5,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA024,5,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA024,2,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,,EA024,NA,,,, +Ec9,,1920,EA024,3,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA024,7,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA024,2,,yang1945,EthnographicAtlas_1967_p86, +Ed13,,,EA024,NA,,,, +Ed14,,,EA024,NA,,,, +Ed15a,,,EA024,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA024,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA024,2,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA024,3,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA024,3,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA024,3,"Or 'duolateral' (code ""3"") if Mark's interpretation of Ruey's data is correct",mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA024,2,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA024,3,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA024,5,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA024,1,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,,EA024,NA,,,, +Ee1,,1940,EA024,4,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA024,7,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA024,8,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA024,2,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA024,7,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA024,5,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,,EA024,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA024,4,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA024,7,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA024,7,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,,,EA024,NA,,,, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA024,8,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA024,8,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA024,4,Entry follows Majumdar; Chatterjee and Das report that cross- cousin marriage is recent and disapproved,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA024,8,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA024,7,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA024,7,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA024,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA024,3,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA024,3,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA024,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA024,3,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA024,3,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA024,3,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA024,3,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA024,3,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA024,3,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA024,3,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA024,3,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA024,3,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA024,3,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA024,7,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA024,3,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA024,7,"Entry follows Man; Radcliffe-Brown infers 'quadrilateral' (code ""1"")",man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA024,8,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA024,3,Marriage is also favored with a FaBrDa,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA024,3,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA024,3,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA024,5,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA024,3,"Leach denies ""a symmetrical preference for cross-cousin marriage"" but fails to report the ""true facts""",ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA024,5,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA024,7,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA024,7,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA024,3,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA024,8,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA024,4,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA024,4,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,,EA024,NA,,,, +Ei14,with special reference to the Chongli,1920,EA024,7,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA024,4,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA024,4,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,,EA024,NA,,,, +Ei18,,,EA024,NA,,,, +Ei19,,1940,EA024,4,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA024,4,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA024,4,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA024,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA024,3,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA024,4,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA024,4,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA024,5,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA024,3,"Marriage is allowed with a MoBrDa only if MoBr is dead, and with a FaSiDa only if Fa is dead",becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA024,3,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA024,4,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA024,3,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA024,7,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA024,4,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA024,8,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA024,7,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA024,NA,,,, +Ej16,Inas District,1958,EA024,3,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA024,4,MoYoBrDa only,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA024,7,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA024,7,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA024,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,,,EA024,NA,,,, +Ej7,,1950,EA024,7,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA024,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA024,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA024,8,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA024,8,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA024,8,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA024,7,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA024,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA024,7,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA024,8,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA024,5,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,,EA024,NA,,,, +Ia18,with special reference to the village of Manland in western Negros,1950,EA024,8,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA024,5,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA024,8,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA024,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA024,8,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA024,8,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA024,8,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA024,5,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA024,8,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA024,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA024,2,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA024,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA024,4,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA024,8,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA024,3,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA024,2,Marriage forbidden only with a FaBrDa,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA024,8,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA024,8,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA024,1,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA024,7,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA024,8,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA024,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA024,3,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA024,8,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA024,4,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA024,2,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA024,5,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA024,3,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA024,3,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA024,4,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA024,4,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA024,6,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA024,8,But marriage is preferred with a remoter classificatory MoMoBrDaDa,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA024,6,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA024,4,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA024,5,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA024,4,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA024,5,"Marriage with FaSiDa is allowed in theory, but Pilling observed No actual cases; marriage with a daughter of father's half sister, however, is preferred and common",basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA024,6,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA024,3,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA024,4,Marriage preferential with MoYoBrDa and any second cross-cousin but forbidden with FaSiDa and MoElBrDa,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA024,6,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA024,NA,,,, +Id9,,1910,EA024,6,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA024,5,Marriage is preferred with any second cross-cousin,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA024,8,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA024,6,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA024,5,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA024,5,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA024,8,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA024,7,"Though disapproved, marriage with a cross-cousin does occasionally occur",kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA024,7,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA024,7,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA024,8,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA024,7,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA024,3,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA024,8,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,,EA024,NA,,,, +Ie22,,1900,EA024,7,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA024,7,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA024,7,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA024,7,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA024,6,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA024,3,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA024,7,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA024,7,Marriage is preferred with FaFaSiSoDa,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA024,7,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA024,NA,,,, +Ie31,,1950,EA024,3,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,,EA024,NA,,,, +Ie33,with special reference to the village of Muramarew,1950,EA024,3,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA024,8,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA024,3,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA024,8,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA024,7,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA024,3,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA024,7,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA024,5,Marriage is preferential between children of cross-cousins,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA024,7,"The preferred union is with a classificatory, not an actual, cross-cousin",williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA024,4,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA024,7,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA024,8,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA024,3,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA024,8,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA024,3,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA024,3,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA024,3,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA024,3,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA024,8,"But 'quadrilateral' (code ""1"") in the aristocracy",finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA024,8,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,,EA024,NA,,,, +If17,with special reference to the island of Jaluit,1900,EA024,3,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA024,8,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA024,3,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA024,8,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA024,3,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA024,5,Marriage with a first cross-cousin occurs only under very special conditions,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA024,8,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA024,8,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA024,5,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA024,3,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA024,6,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA024,7,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA024,7,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA024,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA024,7,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,,EA024,NA,,,, +Ig16,,,EA024,NA,,,, +Ig17,,1950,EA024,3,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA024,7,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA024,7,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA024,3,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA024,7,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA024,3,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA024,8,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA024,5,The preferred marriage is with the daughter of a cross-cousin,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA024,7,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA024,7,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA024,3,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA024,8,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA024,6,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA024,7,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA024,3,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA024,3,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA024,7,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA024,6,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,,,EA024,NA,,,, +Ih2,Malekula Island,1930,EA024,8,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA024,8,Marriage is preferred with MoBrDaDa or MoMoBrDa,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA024,3,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA024,3,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA024,5,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA024,8,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA024,5,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA024,3,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA024,8,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA024,3,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA024,7,"But 'duolateral' (code ""3"") among nobles",beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA024,8,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA024,8,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA024,5,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA024,8,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA024,7,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA024,8,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA024,8,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA024,8,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA024,5,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA024,5,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA024,8,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA024,8,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA024,5,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA024,3,"But Miranda states that ""marriage was prohibited within the third degree of relationship""",forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA024,1,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,,EA024,NA,,,, +Ij6,,1800,EA024,5,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA024,5,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA024,7,But chiefly families sometimes practiced cross-cousin marriage,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA024,7,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA024,3,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA024,3,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA024,2,But rules of cousin marriage were variable,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA024,8,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,,EA024,NA,,,, +Na14,,,EA024,NA,,,, +Na15,,1860,EA024,NA,There are no patterns of preferential marriage,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,,EA024,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA024,7,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA024,3,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA024,8,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA024,7,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA024,8,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA024,8,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,,,EA024,NA,,,, +Na24,,1880,EA024,7,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,,,EA024,NA,,,, +Na26,with special reference to the Iliamna,1870,EA024,8,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,,EA024,NA,,,, +Na28,,1880,EA024,5,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,,EA024,NA,,,, +Na3,Coronation Gulf,1920,EA024,5,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA024,7,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA024,1,"""...there were no marriage restrictions""",skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA024,3,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA024,3,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA024,3,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA024,3,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA024,3,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA024,3,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA024,3,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA024,3,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA024,4,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA024,NA,,,, +Na41,Mainland division,1700,EA024,8,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA024,7,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA024,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA024,5,"But there are occasional marriages between first cousins, and people differ as to their propriety",graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA024,3,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA024,3,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA024,1,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA024,3,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA024,5,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA024,1,"But 'no first cousins' (code ""7"") today",bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA024,3,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA024,8,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA024,8,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA024,8,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA024,8,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA024,8,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA024,8,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA024,8,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA024,5,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA024,8,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA024,7,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA024,8,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA024,7,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA024,7,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA024,4,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA024,3,"Marriage with a cross-cousin was considered ""good""",boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA024,8,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA024,8,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA024,8,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA024,8,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA024,7,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA024,5,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA024,5,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA024,7,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA024,4,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA024,8,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA024,8,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA024,8,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA024,8,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA024,8,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA024,8,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA024,8,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA024,8,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA024,8,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA024,3,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA024,3,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA024,3,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA024,3,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA024,7,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA024,7,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA024,8,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA024,8,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA024,8,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA024,5,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA024,8,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA024,7,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA024,7,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA024,7,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA024,5,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA024,7,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA024,8,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA024,8,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA024,7,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA024,4,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA024,8,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA024,8,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA024,8,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,,EA024,NA,,,, +Nc27,,,EA024,NA,,,, +Nc28,,,EA024,NA,,,, +Nc29,,1770,EA024,7,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA024,8,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA024,8,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA024,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA024,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA024,8,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA024,7,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA024,8,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA024,7,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA024,8,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA024,8,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA024,8,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA024,8,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA024,8,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA024,8,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA024,8,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA024,8,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA024,7,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA024,5,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA024,8,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA024,7,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA024,7,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA024,8,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA024,8,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA024,8,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA024,8,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA024,8,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA024,8,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA024,8,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA024,8,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA024,8,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA024,8,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA024,8,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA024,8,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA024,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA024,8,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA024,8,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA024,8,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA024,8,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA024,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA024,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA024,8,"The preferred marriage is with a pseudo-cross cousin, i.e., a stepchild of either MoBr or FaSi",steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA024,8,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA024,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA024,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA024,8,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA024,8,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA024,8,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA024,8,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA024,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA024,3,Entry follows Harris; Steward reports only marriage with a pseudo-cross-cousin,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA024,8,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA024,7,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA024,8,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA024,8,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA024,3,"But 'duolateral' (code ""3"") in the Skull Valley band",malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA024,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA024,8,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA024,8,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA024,8,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA024,8,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA024,8,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA024,8,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA024,8,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA024,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,,EA024,NA,,,, +Nd58,,1860,EA024,8,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,,EA024,NA,,,, +Nd6,,1850,EA024,8,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,,EA024,NA,,,, +Nd61,,,EA024,NA,,,, +Nd62,,,EA024,NA,,,, +Nd63,with special reference to the Eastern Bannock,1860,EA024,7,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA024,8,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA024,3,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA024,8,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA024,7,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA024,8,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA024,8,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA024,8,"But 'quadrilateral' (code ""1"") today",hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA024,8,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,,EA024,NA,,,, +Ne11,,1870,EA024,8,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA024,8,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA024,7,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA024,5,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA024,7,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,,EA024,NA,,,, +Ne17,,1860,EA024,7,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA024,7,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA024,3,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA024,8,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA024,7,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA024,NA,,,, +Ne3,Comanche Tribe,1870,EA024,7,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA024,7,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA024,8,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA024,4,Inferred from a report by Bowers (p. 75) that a man preferred to have a son-in-law from his own sib,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA024,7,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA024,7,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA024,8,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,,EA024,NA,,,, +Nf11,,1870,EA024,7,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA024,7,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA024,8,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA024,8,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA024,8,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA024,3,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA024,8,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA024,7,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA024,7,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA024,5,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA024,8,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA024,8,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA024,7,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA024,8,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA024,NA,"Unreported but probably 'no first cousins' (code ""7"") like the Huron",fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,,EA024,NA,,,, +Ng12,,1760,EA024,8,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,,EA024,NA,,,, +Ng14,,NA,EA024,8,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA024,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA024,6,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA024,8,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA024,7,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA024,5,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,,,EA024,NA,,,, +Ng7,Natchez Kingdom,1700,EA024,8,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,,EA024,NA,,,, +Ng9,,1920,EA024,1,"But formerly 'no first cousins' (code ""7"")",speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA024,8,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA024,8,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA024,8,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA024,7,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA024,7,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA024,7,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA024,8,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA024,7,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA024,8,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA024,8,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA024,8,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA024,8,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA024,8,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA024,8,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA024,8,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA024,7,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA024,7,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA024,7,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA024,7,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA024,7,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA024,8,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA024,7,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA024,8,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA024,8,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA024,8,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA024,8,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA024,7,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA024,5,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA024,8,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA024,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA024,7,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA024,7,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA024,8,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA024,8,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,,EA024,NA,,,, +Ni9,,,EA024,NA,,,, +Nj1,Ojitlan,1940,EA024,8,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA024,7,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA024,NA,,,, +Nj12,,,EA024,NA,,,, +Nj13,,,EA024,NA,,,, +Nj14,,1960,EA024,7,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA024,7,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA024,7,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA024,7,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA024,8,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA024,7,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,,,EA024,NA,,,, +Nj8,,1500,EA024,1,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA024,7,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA024,5,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,,EA024,NA,,,, +Sa11,,,EA024,NA,,,, +Sa12,,,EA024,NA,,,, +Sa13,Town of Chichicastenango,1930,EA024,7,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,,EA024,NA,,,, +Sa15,,,EA024,NA,,,, +Sa16,,,EA024,NA,,,, +Sa17,with special reference to the village of Chinantla,1950,EA024,7,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA024,3,Entry follows Guiteras; Villa says marriage is preferred with a classificatory cross-cousin but disapproved with a first cross-cousin,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA024,5,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA024,5,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA024,3,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA024,3,"In Murdock (1962d) he coded this as 'unilateral' (code ""4"") and noted ""Landa specifically reports marriageability of maternal cousins; hence possibly 'duolateral' (code ""3"") rather than 'unilateral' (code ""4"")."" In the EA he coded the column as 'duolateral' (code ""3"")",carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA024,3,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA024,8,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA024,3,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA024,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA024,5,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA024,3,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA024,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA024,7,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA024,2,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA024,3,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,,EA024,NA,,,, +Sb9,,1930,EA024,7,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA024,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA024,3,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA024,3,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA024,3,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA024,3,"Entry follows Wilbert; Riley reports 'duolateral' (code ""3"")",riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,,EA024,NA,,,, +Sc15,,,EA024,NA,,,, +Sc16,with special reference to the Makitare,1920,EA024,3,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA024,3,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA024,5,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA024,3,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA024,3,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA024,3,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA024,3,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA024,2,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA024,3,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA024,3,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA024,7,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA024,3,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA024,7,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,,EA024,NA,,,, +Sd4,,,EA024,NA,,,, +Sd5,,,EA024,NA,,,, +Sd6,,1960,EA024,3,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA024,3,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA024,7,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA024,3,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA024,4,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA024,NA,Preferential marriage with SiDa,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA024,3,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA024,3,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA024,3,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA024,3,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA024,7,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA024,3,But Goldman reports a preference for marrying a woman of one's mother's lineage,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA024,3,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA024,7,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA024,3,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,,EA024,NA,,,, +Sf1,City and environs of Cuzco,1530,EA024,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA024,7,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA024,7,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA024,7,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,,EA024,NA,,,, +Sf6,,,EA024,NA,,,, +Sf7,,1900,EA024,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA024,3,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,,,EA024,NA,,,, +Sg1,Eastern and central,1870,EA024,8,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA024,4,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA024,8,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA024,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA024,1,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA024,7,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA024,7,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA024,8,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA024,7,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA024,7,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,,EA024,NA,,,, +Sh7,,1900,EA024,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA024,5,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,,,EA024,NA,,,, +Si1,Kejara,1920,EA024,3,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA024,3,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA024,3,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA024,3,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA024,3,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA024,3,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,,EA024,NA,,,, +Si7,,,EA024,NA,,,, +Si8,,1940,EA024,5,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA024,NA,,,, +Sj1,,1950,EA024,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,,,EA024,NA,,,, +Sj11,Village of Sao Domingo,1958,EA024,7,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA024,4,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA024,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA024,7,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA024,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA024,7,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA024,6,"Entry follows Nimuendaju; Maybury-Lewis gives 'duolateral' (code ""3"")",mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA024,3,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA024,7,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA024,8,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,,,EA024,NA,,,, +ch14,with special reference to the Virjal group,1908,EA024,8,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA024,8,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,,,EA024,NA,,,, +ch17,with special reference to those of the Benderskij Uezd,1894,EA024,8,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA024,8,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,,,EA024,NA,,,, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA024,7,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,,,EA024,NA,,,, +ch22,,,EA024,NA,,,, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA024,6,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA024,8,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,,,EA024,NA,,,, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA024,8,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA024,8,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA024,8,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA024,8,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA024,3,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA024,8,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA024,8,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA024,3,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA024,3,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA024,3,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA024,3,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA024,3,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA024,3,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA025,15,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA025,15,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA025,15,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA025,15,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA025,15,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA025,5,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA025,15,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA025,15,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA025,NA,,,, +Ab1,,1900,EA025,3,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA025,15,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA025,15,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA025,15,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA025,8,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA025,2,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA025,5,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA025,15,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA025,15,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA025,15,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA025,15,"Formerly 'cross-cousin, patrilateral preference' (code ""3"")",krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA025,15,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,,EA025,NA,,,, +Ab21a,,,EA025,NA,,,, +Ab21b,,1925,EA025,15,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA025,15,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA025,15,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA025,15,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA025,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA025,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA025,15,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA025,8,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA025,15,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA025,6,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA025,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA025,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA025,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA025,2,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA025,15,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA025,12,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,,EA025,NA,,,, +Ac17,Feshi territory lineage center,1910,EA025,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,,EA025,NA,,,, +Ac19,,1880,EA025,15,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA025,6,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,,EA025,NA,,,, +Ac21,,1910,EA025,1,But the most highly preferred marriage is with a MoBrDaDa,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA025,15,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA025,15,The preferred marriage is with a MoBrDaDa,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA025,15,"Inferred from statement that ""close relatives cannot marry""",baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA025,12,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA025,15,The preferred marriage is with a MoBrDaDa,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA025,15,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA025,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA025,15,Inferred from the report that parallel cousins and FaSi are not marriageable,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA025,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA025,15,"But formerly 'cross-cousin, symmetrical preference' (code ""1"")",allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,,EA025,NA,,,, +Ac32,,1920,EA025,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA025,15,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA025,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA025,15,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA025,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA025,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA025,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA025,12,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA025,15,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,,EA025,NA,,,, +Ac41,,1900,EA025,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA025,1,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA025,NA,,,, +Ac5,,1920,EA025,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA025,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA025,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA025,15,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA025,15,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA025,7,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA025,15,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA025,15,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA025,15,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA025,5,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA025,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA025,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA025,15,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,,EA025,NA,,,, +Ad18,,1910,EA025,15,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA025,15,But marriage is preferred with a classificatory FaSiDa,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA025,15,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA025,15,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA025,15,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA025,15,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA025,15,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA025,2,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,,EA025,NA,,,, +Ad26,,1910,EA025,15,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA025,15,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA025,NA,,,, +Ad29,,1930,EA025,15,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA025,15,Marriage with a MoBrDa is allowed under special circumstances when Mo is dead,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA025,15,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA025,15,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA025,15,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA025,15,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,,EA025,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA025,15,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA025,NA,"Perhaps 'cross-cousin' (code ""1"", ""2"" or ""3"") because one source states that cousin marriage is common",baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,,EA025,NA,,,, +Ad38,,1910,EA025,15,Inferred from specific statements that cousin marriages are allowed and that there are distinct terms for male and female cousins,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA025,15,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA025,15,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA025,15,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA025,15,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA025,15,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA025,15,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,,EA025,NA,,,, +Ad45,,1920,EA025,15,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA025,15,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA025,15,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA025,NA,,,, +Ad49,,,EA025,NA,,,, +Ad5,,1940,EA025,15,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA025,15,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA025,15,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA025,15,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA025,15,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA025,2,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA025,15,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA025,15,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA025,15,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA025,15,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,,EA025,NA,,,, +Ae13,,1920,EA025,15,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA025,15,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,,EA025,NA,,,, +Ae16,,,EA025,NA,,,, +Ae17,,1900,EA025,15,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA025,15,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA025,15,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA025,15,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA025,15,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA025,15,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA025,15,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,,EA025,NA,,,, +Ae24,,,EA025,NA,,,, +Ae25,with special reference to the northern Tetela,1920,EA025,15,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,,EA025,NA,,,, +Ae27,,,EA025,NA,,,, +Ae28,,,EA025,NA,,,, +Ae29,,1900,EA025,15,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA025,15,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,,EA025,NA,,,, +Ae31,,,EA025,NA,,,, +Ae32,,,EA025,NA,,,, +Ae33,,,EA025,NA,,,, +Ae34,,,EA025,NA,,,, +Ae35,,,EA025,NA,,,, +Ae36,,,EA025,NA,,,, +Ae37,,,EA025,NA,,,, +Ae38,,,EA025,NA,,,, +Ae39,,1920,EA025,15,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA025,15,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,,EA025,NA,,,, +Ae41,,1940,EA025,15,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,,EA025,NA,,,, +Ae43,,,EA025,NA,,,, +Ae44,,1920,EA025,15,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,,EA025,NA,,,, +Ae46,,,EA025,NA,,,, +Ae47,,1900,EA025,15,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,,EA025,NA,,,, +Ae49,,,EA025,NA,,,, +Ae5,,1910,EA025,15,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,,EA025,NA,,,, +Ae51,,,EA025,NA,,,, +Ae52,,1950,EA025,15,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA025,15,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA025,15,But allowed with FaBrDa,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,,EA025,NA,,,, +Ae56,,1950,EA025,15,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,,EA025,NA,,,, +Ae58,,1910,EA025,15,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA025,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA025,15,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,,EA025,NA,,,, +Ae8,,1910,EA025,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA025,15,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA025,15,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA025,15,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA025,15,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,,,EA025,NA,,,, +Af13,,1920,EA025,15,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA025,15,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA025,15,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,,EA025,NA,,,, +Af17,,1900,EA025,15,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA025,15,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA025,15,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA025,5,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA025,15,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,,,EA025,NA,,,, +Af22,,1940,EA025,15,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA025,14,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA025,15,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA025,15,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA025,15,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA025,15,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA025,15,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA025,15,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA025,2,A slight preference for MoBrDa,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,,EA025,NA,,,, +Af31,,,EA025,NA,,,, +Af32,Abeouta Province and Benin,1920,EA025,15,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA025,15,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA025,15,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA025,NA,,,, +Af36,with special reference to the Glidyi,1900,EA025,15,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA025,15,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA025,15,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA025,3,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA025,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA025,15,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA025,15,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA025,2,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA025,9,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,,EA025,NA,,,, +Af45,,1900,EA025,15,But marriage with MoBrDa requires a ban-breaking sacrifice,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA025,15,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA025,15,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA025,NA,,,, +Af49,,1940,EA025,15,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA025,5,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,,EA025,NA,,,, +Af51,,,EA025,NA,,,, +Af52,,,EA025,NA,,,, +Af53,,,EA025,NA,,,, +Af54,,1930,EA025,15,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA025,15,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA025,15,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA025,15,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA025,15,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA025,15,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA025,15,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA025,15,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA025,15,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA025,2,"But 'no preferred cousin marriages' (code ""15"") in some districts",dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA025,15,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA025,3,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA025,15,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA025,15,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,,EA025,NA,,,, +Ag15,,1930,EA025,15,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA025,15,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,,EA025,NA,,,, +Ag18,,1930,EA025,15,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA025,15,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA025,15,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA025,NA,Cousin marriages are said to be permitted,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,,EA025,NA,,,, +Ag22,with special reference to those of Sine,1920,EA025,15,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA025,15,Inferred from statement that marriage is forbidden with a parallel cousin,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA025,15,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA025,15,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA025,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA025,15,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,,EA025,NA,,,, +Ag29,,,EA025,NA,,,, +Ag3,,1930,EA025,15,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,,EA025,NA,,,, +Ag31,,,EA025,NA,,,, +Ag32,,1900,EA025,15,Inferred from statement that marriage is disapproved with a parallel cousin,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA025,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA025,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA025,15,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA025,3,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA025,15,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,,EA025,NA,,,, +Ag39,,1910,EA025,15,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA025,15,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA025,15,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA025,15,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,,EA025,NA,,,, +Ag43,,1920,EA025,15,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA025,15,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA025,15,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA025,15,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA025,15,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,,EA025,NA,,,, +Ag49,,1930,EA025,15,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA025,3,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,,EA025,NA,,,, +Ag51,,1940,EA025,15,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,,EA025,NA,,,, +Ag53,with special reference to those of Garango,1960,EA025,15,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA025,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA025,8,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA025,15,"Entry follows Malzy, who reports preferential cousin marriage, whereas Ortoli states that known consanguineal kinship is a bar to marriage",malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA025,15,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA025,15,"In some districts, but not in others",labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA025,15,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA025,NA,,,, +Ah11,,1950,EA025,15,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA025,15,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,,,EA025,NA,,,, +Ah14,,,EA025,NA,,,, +Ah15,,1920,EA025,15,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA025,15,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA025,15,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA025,15,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA025,15,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA025,15,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA025,15,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA025,15,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA025,NA,,,, +Ah23,,1920,EA025,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA025,15,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA025,15,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA025,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA025,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA025,15,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,,EA025,NA,,,, +Ah3,Tar of Benue Province,1920,EA025,15,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA025,15,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA025,15,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA025,15,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA025,15,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA025,15,But marriage is allowed with a MoSiDa,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA025,15,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA025,15,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA025,15,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA025,15,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,,EA025,NA,,,, +Ah4,,1920,EA025,15,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA025,15,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA025,15,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA025,15,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA025,15,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA025,15,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA025,15,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA025,15,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA025,15,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA025,15,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,,EA025,NA,,,, +Ai14,,,EA025,NA,,,, +Ai15,,,EA025,NA,,,, +Ai16,,,EA025,NA,,,, +Ai17,,,EA025,NA,,,, +Ai18,,,EA025,NA,,,, +Ai19,,,EA025,NA,,,, +Ai2,,1940,EA025,15,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,,EA025,NA,,,, +Ai21,,,EA025,NA,,,, +Ai22,,,EA025,NA,,,, +Ai23,,1920,EA025,15,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,,EA025,NA,,,, +Ai25,,,EA025,NA,,,, +Ai26,,,EA025,NA,,,, +Ai27,,,EA025,NA,,,, +Ai28,,1910,EA025,15,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA025,15,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA025,15,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,,EA025,NA,,,, +Ai31,,,EA025,NA,,,, +Ai32,,1920,EA025,15,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,,EA025,NA,,,, +Ai34,,,EA025,NA,,,, +Ai35,,1870,EA025,15,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA025,15,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA025,15,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA025,15,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA025,15,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA025,15,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA025,15,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA025,15,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA025,15,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA025,15,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA025,15,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA025,15,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA025,15,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA025,15,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,,EA025,NA,,,, +Ai6,Shilluk Kingdom,1900,EA025,15,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA025,15,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA025,15,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA025,15,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA025,15,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,,EA025,NA,,,, +Aj11,,1900,EA025,15,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA025,15,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA025,15,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA025,15,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA025,15,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,,,EA025,NA,,,, +Aj17,,1890,EA025,15,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA025,NA,,,, +Aj19,,,EA025,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA025,15,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,,EA025,NA,,,, +Aj21,,1930,EA025,15,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA025,15,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA025,15,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,,EA025,NA,,,, +Aj25,,,EA025,NA,,,, +Aj26,,1910,EA025,15,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,,EA025,NA,,,, +Aj28,,1940,EA025,15,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA025,NA,,,, +Aj3,,1930,EA025,15,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,,EA025,NA,,,, +Aj31,,,EA025,NA,,,, +Aj4,,1920,EA025,15,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA025,15,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA025,15,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA025,15,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA025,15,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA025,15,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA025,15,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA025,15,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA025,15,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,,EA025,NA,,,, +Ca13,with special reference to the eastern Macha,1950,EA025,15,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,,EA025,NA,,,, +Ca15,,,EA025,NA,,,, +Ca16,,,EA025,NA,,,, +Ca17,,,EA025,NA,,,, +Ca18,,,EA025,NA,,,, +Ca19,,,EA025,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA025,15,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,,EA025,NA,,,, +Ca21,,,EA025,NA,,,, +Ca22,,1950,EA025,15,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,,EA025,NA,,,, +Ca24,,,EA025,NA,,,, +Ca25,,,EA025,NA,,,, +Ca26,,,EA025,NA,,,, +Ca27,,1930,EA025,15,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA025,15,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,,EA025,NA,,,, +Ca3,,1950,EA025,15,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA025,15,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,,EA025,NA,,,, +Ca32,,1860,EA025,15,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA025,15,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA025,7,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA025,7,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA025,7,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,,,EA025,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA025,15,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA025,15,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,,EA025,NA,,,, +Ca40,,1950,EA025,15,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,,EA025,NA,,,, +Ca42,,,EA025,NA,,,, +Ca43,,,EA025,NA,,,, +Ca5,,1930,EA025,7,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA025,15,But forbidden with a MoSiDa,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA025,15,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,,EA025,NA,,,, +Ca9,,,EA025,NA,,,, +Cb1,,1940,EA025,2,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA025,15,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA025,15,Inferred from a report that marriage is permitted with a MoBrDa but forbidden with a FaSiDa,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA025,15,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA025,15,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,,EA025,NA,,,, +Cb15,with special reference to the Humr,1940,EA025,7,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA025,15,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA025,15,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA025,15,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA025,15,Marriage is forbidden with a MoSiDa,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA025,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,,EA025,NA,,,, +Cb21,,1930,EA025,1,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA025,15,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA025,15,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA025,7,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA025,15,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA025,8,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA025,15,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA025,15,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA025,NA,,,, +Cb3,Bamba division,1940,EA025,15,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA025,7,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA025,15,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA025,15,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA025,15,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA025,15,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA025,7,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA025,7,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA025,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,,EA025,NA,,,, +Cc12,,,EA025,NA,,,, +Cc13,,1920,EA025,15,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA025,15,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA025,NA,,,, +Cc16,,1930,EA025,7,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA025,7,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,,EA025,NA,,,, +Cc19,,,EA025,NA,,,, +Cc2,Nomads of Tibesti,1950,EA025,15,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA025,7,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA025,15,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,,EA025,NA,,,, +Cc5,,1910,EA025,8,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA025,7,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA025,7,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA025,NA,,,, +Cc9,Ahaggaren tribe,1920,EA025,2,"Entry follows Briggs; earlier sources report no preferred cousin marriages (code ""15"")",benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA025,7,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA025,15,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA025,15,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA025,7,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA025,7,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA025,7,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,,EA025,NA,,,, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA025,7,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA025,7,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA025,7,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA025,7,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA025,7,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA025,7,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA025,7,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA025,15,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA025,15,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,,,EA025,NA,,,, +Cd6,with special reference to the New Empire,-1400,EA025,15,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA025,7,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA025,7,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,,EA025,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA025,2,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA025,15,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA025,15,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA025,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA025,15,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA025,15,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA025,15,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,,,EA025,NA,,,, +Cf1,Small City in Connecticut,1920,EA025,15,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,,,EA025,NA,,,, +Cf3,,,EA025,NA,,,, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA025,15,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA025,15,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA025,15,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,,EA025,NA,,,, +Cg3,County Clare,1930,EA025,15,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA025,15,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,,EA025,NA,,,, +Ch1,,,EA025,NA,,,, +Ch10,,1910,EA025,15,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,,,EA025,NA,,,, +Ch2,,,EA025,NA,,,, +Ch3,with special reference to the Hana district of central Moravia,1940,EA025,15,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA025,15,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,,,EA025,NA,,,, +Ch6,,1910,EA025,15,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA025,15,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA025,15,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA025,15,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA025,15,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA025,15,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA025,7,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,,,EA025,NA,,,, +Ci2,,1930,EA025,15,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,,,EA025,NA,,,, +Ci4,,,EA025,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA025,15,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA025,15,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,,EA025,NA,,,, +Ci8,,,EA025,NA,,,, +Ci9,,,EA025,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA025,7,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA025,7,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA025,7,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA025,7,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,,,EA025,NA,,,, +Cj5,,1930,EA025,7,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA025,7,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA025,15,"But traditionally 'quadrilateral, with FaBrDa preferred' (code ""7"")",davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA025,7,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,,EA025,NA,,,, +Ea1,,1950,EA025,15,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA025,7,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA025,7,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA025,7,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA025,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA025,7,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA025,7,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,,EA025,NA,,,, +Ea5,,1890,EA025,15,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA025,7,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA025,15,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,,EA025,NA,,,, +Ea9,,1950,EA025,7,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA025,15,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA025,15,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA025,15,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA025,15,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA025,4,"Possibly 'Uni: MoBrDa' (code ""5"")",freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA025,15,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA025,15,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA025,8,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA025,5,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA025,15,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,,EA025,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA025,15,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA025,15,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA025,13,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA025,15,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA025,15,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA025,15,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,,EA025,NA,,,, +Ec9,,1920,EA025,15,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA025,15,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA025,15,,yang1945,EthnographicAtlas_1967_p86, +Ed13,,,EA025,NA,,,, +Ed14,,,EA025,NA,,,, +Ed15a,,,EA025,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA025,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA025,15,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA025,2,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA025,15,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA025,1,"Or 'cross-cousin, patrilateral preference' (code ""3"") if Mark's interpretation of Ruey's data is correct",mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA025,15,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA025,15,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA025,15,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA025,15,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,,EA025,NA,,,, +Ee1,,1940,EA025,15,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA025,15,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA025,15,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA025,15,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA025,15,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA025,15,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,,EA025,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA025,15,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA025,15,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA025,15,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,,,EA025,NA,,,, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA025,15,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA025,15,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA025,15,Entry follows Majumdar; Chatterjee and Das report that cross- cousin marriage is recent and disapproved,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA025,15,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA025,15,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA025,15,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA025,15,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA025,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA025,2,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA025,2,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA025,2,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA025,15,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA025,1,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA025,2,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA025,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA025,1,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA025,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA025,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA025,2,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA025,15,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA025,15,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA025,15,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA025,15,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA025,15,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA025,15,Marriage is also favored with a FaBrDa,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA025,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA025,3,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA025,15,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA025,2,"Leach denies ""a symmetrical preference for cross-cousin marriage"" but fails to report the ""true facts""",ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA025,15,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA025,15,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA025,15,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA025,2,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA025,15,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA025,5,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA025,5,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,,EA025,NA,,,, +Ei14,with special reference to the Chongli,1920,EA025,15,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA025,5,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA025,5,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,,EA025,NA,,,, +Ei18,,,EA025,NA,,,, +Ei19,,1940,EA025,15,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA025,5,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA025,15,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA025,15,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA025,4,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA025,5,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA025,5,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA025,15,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA025,15,"Marriage is allowed with a MoBrDa only if MoBr is dead, and with a FaSiDa only if Fa is dead",becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA025,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA025,5,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA025,15,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA025,15,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA025,5,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA025,15,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA025,15,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA025,NA,,,, +Ej16,Inas District,1958,EA025,2,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA025,5,MoYoBrDa only,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA025,15,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA025,15,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA025,15,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,,,EA025,NA,,,, +Ej7,,1950,EA025,15,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA025,15,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA025,15,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA025,15,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA025,15,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA025,15,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA025,15,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA025,15,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA025,15,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA025,15,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA025,15,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,,EA025,NA,,,, +Ia18,with special reference to the village of Manland in western Negros,1950,EA025,15,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA025,15,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA025,15,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA025,15,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA025,15,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA025,15,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA025,15,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA025,15,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA025,15,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA025,15,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA025,15,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA025,7,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA025,5,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA025,15,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA025,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA025,15,Marriage forbidden only with a FaBrDa,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA025,15,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA025,15,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA025,15,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA025,15,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA025,15,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA025,15,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA025,15,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA025,15,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA025,5,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA025,12,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA025,15,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA025,2,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA025,2,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA025,5,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA025,5,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA025,10,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA025,15,But marriage is preferred with a remoter classificatory MoMoBrDaDa,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA025,10,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA025,15,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA025,11,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA025,5,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA025,11,"Marriage with FaSiDa is allowed in theory, but Pilling observed No actual cases; marriage with a daughter of father's half sister, however, is preferred and common",basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA025,10,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA025,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA025,5,Marriage preferential with MoYoBrDa and any second cross-cousin but forbidden with FaSiDa and MoElBrDa,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA025,10,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA025,NA,,,, +Id9,,1910,EA025,10,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA025,11,Marriage is preferred with any second cross-cousin,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA025,15,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA025,15,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA025,15,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA025,15,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA025,15,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA025,15,"Though disapproved, marriage with a cross-cousin does occasionally occur",kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA025,15,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA025,15,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA025,15,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA025,15,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA025,1,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA025,15,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,,EA025,NA,,,, +Ie22,,1900,EA025,15,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA025,15,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA025,15,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA025,15,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA025,10,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA025,15,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA025,15,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA025,15,Marriage is preferred with FaFaSiSoDa,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA025,15,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA025,NA,,,, +Ie31,,1950,EA025,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,,EA025,NA,,,, +Ie33,with special reference to the village of Muramarew,1950,EA025,1,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA025,15,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA025,2,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA025,15,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA025,15,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA025,15,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA025,15,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA025,15,Marriage is preferential between children of cross-cousins,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA025,15,"The preferred union is with a classificatory, not an actual, cross-cousin",williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA025,5,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA025,15,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA025,15,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA025,15,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA025,15,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA025,1,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA025,15,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA025,1,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA025,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA025,15,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA025,15,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,,EA025,NA,,,, +If17,with special reference to the island of Jaluit,1900,EA025,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA025,15,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA025,15,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA025,15,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA025,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA025,15,Marriage with a first cross-cousin occurs only under very special conditions,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA025,15,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA025,15,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA025,15,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA025,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA025,15,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA025,15,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA025,15,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA025,15,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA025,15,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,,EA025,NA,,,, +Ig16,,,EA025,NA,,,, +Ig17,,1950,EA025,15,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA025,15,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA025,15,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA025,15,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA025,15,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA025,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA025,15,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA025,15,The preferred marriage is with the daughter of a cross-cousin,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA025,15,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA025,15,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA025,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA025,15,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA025,10,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA025,15,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA025,1,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA025,1,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA025,15,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA025,15,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,,,EA025,NA,,,, +Ih2,Malekula Island,1930,EA025,15,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA025,15,Marriage is preferred with MoBrDaDa or MoMoBrDa,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA025,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA025,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA025,15,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA025,15,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA025,15,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA025,15,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA025,15,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA025,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA025,15,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA025,15,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA025,15,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA025,15,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA025,15,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA025,15,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA025,15,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA025,15,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA025,15,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA025,15,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA025,15,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA025,15,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA025,15,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA025,11,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA025,1,"But Miranda states that ""marriage was prohibited within the third degree of relationship""",forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA025,15,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,,EA025,NA,,,, +Ij6,,1800,EA025,15,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA025,15,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA025,15,But chiefly families sometimes practiced cross-cousin marriage,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA025,15,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA025,1,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA025,15,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA025,15,But rules of cousin marriage were variable,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA025,15,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,,EA025,NA,,,, +Na14,,,EA025,NA,,,, +Na15,,1860,EA025,NA,There are no patterns of preferential marriage,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,,EA025,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA025,15,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA025,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA025,15,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA025,15,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA025,15,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA025,15,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,,,EA025,NA,,,, +Na24,,1880,EA025,15,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,,,EA025,NA,,,, +Na26,with special reference to the Iliamna,1870,EA025,15,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,,EA025,NA,,,, +Na28,,1880,EA025,15,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,,EA025,NA,,,, +Na3,Coronation Gulf,1920,EA025,15,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA025,15,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA025,15,"""...there were no marriage restrictions""",skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA025,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA025,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA025,15,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA025,15,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA025,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA025,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA025,15,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA025,1,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA025,5,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA025,NA,,,, +Na41,Mainland division,1700,EA025,15,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA025,15,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA025,15,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA025,15,"But there are occasional marriages between first cousins, and people differ as to their propriety",graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA025,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA025,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA025,15,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA025,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA025,15,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA025,9,"But 'no preferred cousin marriages' (code ""15"") today",bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA025,3,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA025,15,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA025,15,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA025,15,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA025,15,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA025,15,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA025,15,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA025,15,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA025,15,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA025,15,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA025,15,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA025,15,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA025,15,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA025,15,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA025,6,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA025,15,"Marriage with a cross-cousin was considered ""good""",boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA025,15,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA025,15,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA025,15,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA025,15,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA025,15,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA025,15,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA025,11,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA025,15,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA025,5,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA025,15,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA025,15,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA025,15,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA025,15,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA025,15,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA025,15,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA025,15,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA025,15,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA025,15,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA025,15,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA025,15,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA025,2,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA025,2,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA025,15,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA025,15,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA025,15,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA025,15,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA025,15,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA025,15,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA025,15,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA025,15,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA025,15,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA025,15,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA025,15,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA025,15,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA025,15,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA025,15,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA025,15,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA025,15,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA025,15,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA025,15,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA025,15,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,,EA025,NA,,,, +Nc27,,,EA025,NA,,,, +Nc28,,,EA025,NA,,,, +Nc29,,1770,EA025,15,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA025,15,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA025,15,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA025,15,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA025,15,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA025,15,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA025,15,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA025,15,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA025,15,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA025,15,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA025,15,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA025,15,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA025,15,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA025,15,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA025,15,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA025,15,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA025,15,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA025,15,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA025,15,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA025,15,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA025,15,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA025,15,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA025,15,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA025,15,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA025,15,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA025,15,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA025,15,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA025,15,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA025,15,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA025,15,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA025,15,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA025,15,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA025,15,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA025,15,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA025,15,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA025,15,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA025,15,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA025,15,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA025,15,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA025,15,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA025,15,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA025,15,"The preferred marriage is with a pseudo-cross cousin, i.e., a stepchild of either MoBr or FaSi",steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA025,15,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA025,15,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA025,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA025,15,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA025,15,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA025,15,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA025,15,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA025,15,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA025,15,Entry follows Harris; Steward reports only marriage with a pseudo-cross-cousin,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA025,15,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA025,15,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA025,15,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA025,15,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA025,1,"But 'cross-cousin, patrilateral preference' (code ""3"") in the Skull Valley band",malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA025,15,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA025,15,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA025,15,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA025,15,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA025,15,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA025,15,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA025,15,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA025,15,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA025,15,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,,EA025,NA,,,, +Nd58,,1860,EA025,15,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,,EA025,NA,,,, +Nd6,,1850,EA025,15,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,,EA025,NA,,,, +Nd61,,,EA025,NA,,,, +Nd62,,,EA025,NA,,,, +Nd63,with special reference to the Eastern Bannock,1860,EA025,15,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA025,15,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA025,15,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA025,15,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA025,15,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA025,15,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA025,15,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA025,15,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA025,15,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,,EA025,NA,,,, +Ne11,,1870,EA025,15,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA025,15,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA025,15,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA025,15,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA025,15,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,,EA025,NA,,,, +Ne17,,1860,EA025,15,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA025,15,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA025,15,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA025,15,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA025,15,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA025,NA,,,, +Ne3,Comanche Tribe,1870,EA025,15,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA025,15,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA025,15,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA025,15,Inferred from a report by Bowers (p. 75) that a man preferred to have a son-in-law from his own sib,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA025,15,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA025,15,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA025,15,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,,EA025,NA,,,, +Nf11,,1870,EA025,15,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA025,15,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA025,15,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA025,15,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA025,15,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA025,15,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA025,15,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA025,15,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA025,15,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA025,11,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA025,15,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA025,15,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA025,15,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA025,15,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA025,NA,"Unreported but probably 'no preferred cousin marriages' (code ""15"") like the Huron",fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,,EA025,NA,,,, +Ng12,,1760,EA025,15,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,,EA025,NA,,,, +Ng14,,NA,EA025,15,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA025,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA025,15,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA025,15,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA025,15,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA025,15,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,,,EA025,NA,,,, +Ng7,Natchez Kingdom,1700,EA025,15,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,,EA025,NA,,,, +Ng9,,1920,EA025,15,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA025,15,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA025,15,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA025,15,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA025,15,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA025,15,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA025,15,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA025,15,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA025,15,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA025,15,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA025,15,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA025,15,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA025,15,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA025,15,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA025,15,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA025,15,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA025,15,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA025,15,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA025,15,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA025,15,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA025,15,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA025,15,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA025,15,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA025,15,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA025,15,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA025,15,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA025,15,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA025,15,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA025,15,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA025,15,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA025,15,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA025,15,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA025,15,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA025,15,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA025,15,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,,EA025,NA,,,, +Ni9,,,EA025,NA,,,, +Nj1,Ojitlan,1940,EA025,15,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA025,15,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA025,NA,,,, +Nj12,,,EA025,NA,,,, +Nj13,,,EA025,NA,,,, +Nj14,,1960,EA025,15,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA025,15,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA025,15,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA025,15,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA025,15,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA025,15,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,,,EA025,NA,,,, +Nj8,,1500,EA025,15,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA025,15,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA025,15,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,,EA025,NA,,,, +Sa11,,,EA025,NA,,,, +Sa12,,,EA025,NA,,,, +Sa13,Town of Chichicastenango,1930,EA025,15,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,,EA025,NA,,,, +Sa15,,,EA025,NA,,,, +Sa16,,,EA025,NA,,,, +Sa17,with special reference to the village of Chinantla,1950,EA025,15,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA025,2,Entry follows Guiteras; Villa says marriage is preferred with a classificatory cross-cousin but disapproved with a first cross-cousin,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA025,15,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA025,15,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA025,15,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA025,15,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA025,15,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA025,15,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA025,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA025,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA025,15,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA025,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA025,8,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA025,15,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA025,15,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA025,1,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,,EA025,NA,,,, +Sb9,,1930,EA025,15,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA025,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA025,2,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA025,15,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA025,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA025,1,"Entry follows Wilbert; Riley reports 'cross-cousin, matrilateral preference' (code ""2"")",riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,,EA025,NA,,,, +Sc15,,,EA025,NA,,,, +Sc16,with special reference to the Makitare,1920,EA025,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA025,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA025,11,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA025,1,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA025,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA025,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA025,1,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA025,15,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA025,1,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA025,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA025,15,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA025,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA025,15,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,,EA025,NA,,,, +Sd4,,,EA025,NA,,,, +Sd5,,,EA025,NA,,,, +Sd6,,1960,EA025,15,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA025,15,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA025,15,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA025,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA025,5,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA025,NA,Preferential marriage with SiDa,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA025,1,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA025,1,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA025,15,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA025,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA025,15,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA025,2,But Goldman reports a preference for marrying a woman of one's mother's lineage,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA025,15,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA025,15,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA025,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,,EA025,NA,,,, +Sf1,City and environs of Cuzco,1530,EA025,15,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA025,15,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA025,15,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA025,15,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,,EA025,NA,,,, +Sf6,,,EA025,NA,,,, +Sf7,,1900,EA025,15,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA025,15,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,,,EA025,NA,,,, +Sg1,Eastern and central,1870,EA025,15,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA025,5,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA025,15,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA025,15,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA025,15,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA025,15,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA025,15,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA025,15,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA025,15,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA025,15,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,,EA025,NA,,,, +Sh7,,1900,EA025,15,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA025,15,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,,,EA025,NA,,,, +Si1,Kejara,1920,EA025,15,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA025,15,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA025,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA025,15,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA025,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA025,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,,EA025,NA,,,, +Si7,,,EA025,NA,,,, +Si8,,1940,EA025,15,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA025,NA,,,, +Sj1,,1950,EA025,15,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,,,EA025,NA,,,, +Sj11,Village of Sao Domingo,1958,EA025,15,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA025,15,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA025,15,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA025,15,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA025,15,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA025,15,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA025,15,"Entry follows Nimuendaju; Maybury-Lewis gives 'cross-cousin, symmetrical preference' (code ""1"")",mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA025,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA025,15,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA025,15,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,,,EA025,NA,,,, +ch14,with special reference to the Virjal group,1908,EA025,15,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA025,15,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,,,EA025,NA,,,, +ch17,with special reference to those of the Benderskij Uezd,1894,EA025,15,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA025,15,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,,,EA025,NA,,,, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA025,15,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,,,EA025,NA,,,, +ch22,,,EA025,NA,,,, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA025,15,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA025,15,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,,,EA025,NA,,,, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA025,15,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA025,15,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA025,15,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA025,15,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA025,15,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA025,15,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA025,15,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA025,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA025,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA025,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA025,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA025,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA025,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA026,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA026,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA026,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA026,9,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA026,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA026,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA026,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA026,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA026,NA,,,, +Ab1,,1900,EA026,3,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA026,9,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA026,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA026,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA026,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA026,2,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA026,2,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA026,9,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA026,9,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA026,9,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA026,9,"Formerly 'FaSiDa as preferred spouse' (code ""3"")",krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA026,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,,EA026,NA,,,, +Ab21a,,,EA026,NA,,,, +Ab21b,,1925,EA026,9,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA026,9,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA026,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA026,9,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA026,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA026,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA026,9,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA026,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA026,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA026,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA026,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA026,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA026,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA026,2,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA026,9,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA026,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,,EA026,NA,,,, +Ac17,Feshi territory lineage center,1910,EA026,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,,EA026,NA,,,, +Ac19,,1880,EA026,9,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA026,3,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,,EA026,NA,,,, +Ac21,,1910,EA026,1,But the most highly preferred marriage is with a MoBrDaDa,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA026,9,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA026,9,The preferred marriage is with a MoBrDaDa,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA026,9,"Inferred from statement that ""close relatives cannot marry""",baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA026,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA026,9,The preferred marriage is with a MoBrDaDa,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA026,9,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA026,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA026,9,Inferred from the report that parallel cousins and FaSi are not marriageable,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA026,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA026,9,"But formerly 'a symmetrical cross-cousin' (code ""1"") was preferred spouse",allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,,EA026,NA,,,, +Ac32,,1920,EA026,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA026,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA026,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA026,9,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA026,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA026,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA026,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA026,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA026,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,,EA026,NA,,,, +Ac41,,1900,EA026,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA026,1,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA026,NA,,,, +Ac5,,1920,EA026,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA026,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA026,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA026,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA026,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA026,4,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA026,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA026,9,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA026,9,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA026,2,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA026,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA026,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA026,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,,EA026,NA,,,, +Ad18,,1910,EA026,9,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA026,9,But marriage is preferred with a classificatory FaSiDa,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA026,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA026,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA026,9,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA026,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA026,9,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA026,2,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,,EA026,NA,,,, +Ad26,,1910,EA026,9,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA026,9,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA026,NA,,,, +Ad29,,1930,EA026,9,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA026,9,Marriage with a MoBrDa is allowed under special circumstances when Mo is dead,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA026,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA026,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA026,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA026,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,,EA026,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA026,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,,EA026,NA,,,, +Ad37,,,EA026,NA,,,, +Ad38,,1910,EA026,9,Inferred from specific statements that cousin marriages are allowed and that there are distinct terms for male and female cousins,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA026,9,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA026,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA026,9,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA026,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA026,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA026,9,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,,EA026,NA,,,, +Ad45,,1920,EA026,9,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA026,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA026,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA026,NA,,,, +Ad49,,,EA026,NA,,,, +Ad5,,1940,EA026,9,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA026,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA026,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA026,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA026,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA026,2,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA026,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA026,9,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA026,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA026,9,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,,EA026,NA,,,, +Ae13,,1920,EA026,9,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA026,9,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,,EA026,NA,,,, +Ae16,,,EA026,NA,,,, +Ae17,,1900,EA026,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA026,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA026,9,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA026,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA026,9,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA026,9,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA026,9,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,,EA026,NA,,,, +Ae24,,,EA026,NA,,,, +Ae25,with special reference to the northern Tetela,1920,EA026,9,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,,EA026,NA,,,, +Ae27,,,EA026,NA,,,, +Ae28,,,EA026,NA,,,, +Ae29,,1900,EA026,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA026,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,,EA026,NA,,,, +Ae31,,,EA026,NA,,,, +Ae32,,,EA026,NA,,,, +Ae33,,,EA026,NA,,,, +Ae34,,,EA026,NA,,,, +Ae35,,,EA026,NA,,,, +Ae36,,,EA026,NA,,,, +Ae37,,,EA026,NA,,,, +Ae38,,,EA026,NA,,,, +Ae39,,1920,EA026,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA026,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,,EA026,NA,,,, +Ae41,,1940,EA026,9,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,,EA026,NA,,,, +Ae43,,,EA026,NA,,,, +Ae44,,1920,EA026,9,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,,EA026,NA,,,, +Ae46,,,EA026,NA,,,, +Ae47,,1900,EA026,9,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,,EA026,NA,,,, +Ae49,,,EA026,NA,,,, +Ae5,,1910,EA026,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,,EA026,NA,,,, +Ae51,,,EA026,NA,,,, +Ae52,,1950,EA026,9,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA026,9,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA026,9,But allowed with FaBrDa,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,,EA026,NA,,,, +Ae56,,1950,EA026,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,,EA026,NA,,,, +Ae58,,1910,EA026,9,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA026,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA026,9,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,,EA026,NA,,,, +Ae8,,1910,EA026,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA026,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA026,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA026,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA026,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,,,EA026,NA,,,, +Af13,,1920,EA026,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA026,9,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA026,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,,EA026,NA,,,, +Af17,,1900,EA026,9,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA026,9,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA026,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA026,2,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA026,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,,,EA026,NA,,,, +Af22,,1940,EA026,9,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA026,3,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA026,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA026,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA026,9,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA026,9,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA026,9,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA026,9,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA026,2,A slight preference for MoBrDa,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,,EA026,NA,,,, +Af31,,,EA026,NA,,,, +Af32,Abeouta Province and Benin,1920,EA026,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA026,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA026,9,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA026,NA,,,, +Af36,with special reference to the Glidyi,1900,EA026,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA026,9,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA026,9,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA026,3,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA026,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA026,9,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA026,9,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA026,2,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA026,2,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,,EA026,NA,,,, +Af45,,1900,EA026,9,But marriage with MoBrDa requires a ban-breaking sacrifice,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA026,9,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA026,9,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA026,NA,,,, +Af49,,1940,EA026,9,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA026,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,,EA026,NA,,,, +Af51,,,EA026,NA,,,, +Af52,,,EA026,NA,,,, +Af53,,,EA026,NA,,,, +Af54,,1930,EA026,9,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA026,9,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA026,9,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA026,9,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA026,9,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA026,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA026,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA026,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA026,9,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA026,2,"But 'no preferred cousin marriage' (code ""9"") in some districts",dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA026,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA026,3,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA026,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA026,9,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,,EA026,NA,,,, +Ag15,,1930,EA026,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA026,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,,EA026,NA,,,, +Ag18,,1930,EA026,9,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA026,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA026,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA026,NA,Cousin marriages are said to be permitted,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,,EA026,NA,,,, +Ag22,with special reference to those of Sine,1920,EA026,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA026,9,Inferred from statement that marriage is forbidden with a parallel cousin,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA026,9,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA026,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA026,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA026,9,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,,EA026,NA,,,, +Ag29,,,EA026,NA,,,, +Ag3,,1930,EA026,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,,EA026,NA,,,, +Ag31,,,EA026,NA,,,, +Ag32,,1900,EA026,9,Inferred from statement that marriage is disapproved with a parallel cousin,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA026,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA026,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA026,9,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA026,3,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA026,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,,EA026,NA,,,, +Ag39,,1910,EA026,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA026,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA026,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA026,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,,EA026,NA,,,, +Ag43,,1920,EA026,9,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA026,9,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA026,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA026,9,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA026,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,,EA026,NA,,,, +Ag49,,1930,EA026,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA026,3,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,,EA026,NA,,,, +Ag51,,1940,EA026,9,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,,EA026,NA,,,, +Ag53,with special reference to those of Garango,1960,EA026,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA026,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA026,1,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA026,9,"Entry follows Malzy, who reports preferential cousin marriage, whereas Ortoli states that known consanguineal kinship is a bar to marriage",malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA026,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA026,9,"In some districts, but not in others",labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA026,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA026,NA,,,, +Ah11,,1950,EA026,9,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA026,9,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,,,EA026,NA,,,, +Ah14,,,EA026,NA,,,, +Ah15,,1920,EA026,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA026,9,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA026,9,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA026,9,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA026,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA026,9,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA026,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA026,9,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA026,NA,,,, +Ah23,,1920,EA026,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA026,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA026,9,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA026,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA026,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA026,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,,EA026,NA,,,, +Ah3,Tar of Benue Province,1920,EA026,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA026,9,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA026,9,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA026,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA026,9,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA026,9,But marriage is allowed with a MoSiDa,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA026,9,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA026,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA026,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA026,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,,EA026,NA,,,, +Ah4,,1920,EA026,9,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA026,9,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA026,9,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA026,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA026,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA026,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA026,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA026,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA026,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA026,9,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,,EA026,NA,,,, +Ai14,,,EA026,NA,,,, +Ai15,,,EA026,NA,,,, +Ai16,,,EA026,NA,,,, +Ai17,,,EA026,NA,,,, +Ai18,,,EA026,NA,,,, +Ai19,,,EA026,NA,,,, +Ai2,,1940,EA026,9,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,,EA026,NA,,,, +Ai21,,,EA026,NA,,,, +Ai22,,,EA026,NA,,,, +Ai23,,1920,EA026,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,,EA026,NA,,,, +Ai25,,,EA026,NA,,,, +Ai26,,,EA026,NA,,,, +Ai27,,,EA026,NA,,,, +Ai28,,1910,EA026,9,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA026,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA026,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,,EA026,NA,,,, +Ai31,,,EA026,NA,,,, +Ai32,,1920,EA026,9,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,,EA026,NA,,,, +Ai34,,,EA026,NA,,,, +Ai35,,1870,EA026,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA026,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA026,9,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA026,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA026,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA026,9,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA026,9,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA026,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA026,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA026,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA026,9,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA026,9,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA026,9,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA026,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,,EA026,NA,,,, +Ai6,Shilluk Kingdom,1900,EA026,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA026,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA026,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA026,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA026,9,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,,EA026,NA,,,, +Aj11,,1900,EA026,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA026,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA026,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA026,9,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA026,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,,,EA026,NA,,,, +Aj17,,1890,EA026,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA026,NA,,,, +Aj19,,,EA026,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA026,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,,EA026,NA,,,, +Aj21,,1930,EA026,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA026,9,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA026,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,,EA026,NA,,,, +Aj25,,,EA026,NA,,,, +Aj26,,1910,EA026,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,,EA026,NA,,,, +Aj28,,1940,EA026,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA026,NA,,,, +Aj3,,1930,EA026,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,,EA026,NA,,,, +Aj31,,,EA026,NA,,,, +Aj4,,1920,EA026,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA026,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA026,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA026,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA026,9,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA026,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA026,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA026,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA026,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,,EA026,NA,,,, +Ca13,with special reference to the eastern Macha,1950,EA026,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,,EA026,NA,,,, +Ca15,,,EA026,NA,,,, +Ca16,,,EA026,NA,,,, +Ca17,,,EA026,NA,,,, +Ca18,,,EA026,NA,,,, +Ca19,,,EA026,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA026,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,,EA026,NA,,,, +Ca21,,,EA026,NA,,,, +Ca22,,1950,EA026,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,,EA026,NA,,,, +Ca24,,,EA026,NA,,,, +Ca25,,,EA026,NA,,,, +Ca26,,,EA026,NA,,,, +Ca27,,1930,EA026,9,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA026,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,,EA026,NA,,,, +Ca3,,1950,EA026,9,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA026,9,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,,EA026,NA,,,, +Ca32,,1860,EA026,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA026,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA026,4,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA026,4,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA026,4,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,,,EA026,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA026,9,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA026,9,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,,EA026,NA,,,, +Ca40,,1950,EA026,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,,EA026,NA,,,, +Ca42,,,EA026,NA,,,, +Ca43,,,EA026,NA,,,, +Ca5,,1930,EA026,4,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA026,9,But forbidden with a MoSiDa,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA026,9,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,,EA026,NA,,,, +Ca9,,,EA026,NA,,,, +Cb1,,1940,EA026,2,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA026,9,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA026,9,Inferred from a report that marriage is permitted with a MoBrDa but forbidden with a FaSiDa,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA026,9,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA026,9,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,,EA026,NA,,,, +Cb15,with special reference to the Humr,1940,EA026,4,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA026,9,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA026,9,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA026,9,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA026,9,Marriage is forbidden with a MoSiDa,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA026,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,,EA026,NA,,,, +Cb21,,1930,EA026,1,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA026,9,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA026,9,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA026,4,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA026,9,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA026,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA026,9,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA026,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA026,NA,,,, +Cb3,Bamba division,1940,EA026,9,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA026,4,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA026,9,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA026,9,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA026,9,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA026,9,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA026,4,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA026,4,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA026,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,,EA026,NA,,,, +Cc12,,,EA026,NA,,,, +Cc13,,1920,EA026,9,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA026,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA026,NA,,,, +Cc16,,1930,EA026,4,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA026,4,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,,EA026,NA,,,, +Cc19,,,EA026,NA,,,, +Cc2,Nomads of Tibesti,1950,EA026,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA026,4,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA026,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,,EA026,NA,,,, +Cc5,,1910,EA026,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA026,4,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA026,4,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA026,NA,,,, +Cc9,Ahaggaren tribe,1920,EA026,2,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA026,4,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA026,9,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA026,9,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA026,4,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA026,4,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA026,4,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,,EA026,NA,,,, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA026,4,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA026,4,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA026,4,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA026,4,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA026,4,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA026,4,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA026,4,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA026,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA026,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,,,EA026,NA,,,, +Cd6,with special reference to the New Empire,-1400,EA026,9,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA026,4,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA026,4,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,,EA026,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA026,2,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA026,9,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA026,9,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA026,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA026,9,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA026,9,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA026,9,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,,,EA026,NA,,,, +Cf1,Small City in Connecticut,1920,EA026,9,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,,,EA026,NA,,,, +Cf3,,,EA026,NA,,,, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA026,9,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA026,9,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA026,9,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,,EA026,NA,,,, +Cg3,County Clare,1930,EA026,9,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA026,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,,EA026,NA,,,, +Ch1,,,EA026,NA,,,, +Ch10,,1910,EA026,9,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,,,EA026,NA,,,, +Ch2,,,EA026,NA,,,, +Ch3,with special reference to the Hana district of central Moravia,1940,EA026,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA026,9,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,,,EA026,NA,,,, +Ch6,,1910,EA026,9,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA026,9,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA026,9,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA026,9,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA026,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA026,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA026,4,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,,,EA026,NA,,,, +Ci2,,1930,EA026,9,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,,,EA026,NA,,,, +Ci4,,,EA026,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA026,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA026,9,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,,EA026,NA,,,, +Ci8,,,EA026,NA,,,, +Ci9,,,EA026,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA026,4,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA026,4,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA026,4,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA026,4,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,,,EA026,NA,,,, +Cj5,,1930,EA026,4,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA026,4,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA026,9,"But traditionally 'FaBrDa as preferred spouse' (code ""4"")",davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA026,4,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,,EA026,NA,,,, +Ea1,,1950,EA026,9,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA026,4,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA026,4,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA026,4,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA026,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA026,4,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA026,4,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,,EA026,NA,,,, +Ea5,,1890,EA026,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA026,4,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA026,9,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,,EA026,NA,,,, +Ea9,,1950,EA026,4,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA026,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA026,9,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA026,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA026,9,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA026,2,"Possibly 'MoBrDa as preferred spouse' (code ""2"")",freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA026,9,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA026,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA026,1,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA026,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA026,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,,EA026,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA026,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA026,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA026,2,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA026,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA026,9,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA026,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,,EA026,NA,,,, +Ec9,,1920,EA026,9,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA026,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA026,9,,yang1945,EthnographicAtlas_1967_p86, +Ed13,,,EA026,NA,,,, +Ed14,,,EA026,NA,,,, +Ed15a,,,EA026,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA026,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA026,9,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA026,2,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA026,9,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA026,1,"Or 'FaSiDa as preferred spouse' (code ""3"") if Mark's interpretation of Ruey's data is correct",mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA026,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA026,9,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA026,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA026,9,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,,EA026,NA,,,, +Ee1,,1940,EA026,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA026,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA026,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA026,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA026,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA026,9,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,,EA026,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA026,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA026,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA026,9,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,,,EA026,NA,,,, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA026,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA026,9,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA026,9,Entry follows Majumdar; Chatterjee and Das report that cross- cousin marriage is recent and disapproved,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA026,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA026,9,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA026,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA026,9,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA026,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA026,2,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA026,2,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA026,2,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA026,9,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA026,1,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA026,2,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA026,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA026,1,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA026,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA026,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA026,2,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA026,9,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA026,9,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA026,9,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA026,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA026,9,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA026,9,Marriage is also favored with a FaBrDa,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA026,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA026,3,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA026,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA026,2,"Leach denies ""a symmetrical preference for cross-cousin marriage"" but fails to report the ""true facts""",ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA026,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA026,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA026,9,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA026,2,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA026,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA026,2,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA026,2,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,,EA026,NA,,,, +Ei14,with special reference to the Chongli,1920,EA026,9,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA026,2,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA026,2,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,,EA026,NA,,,, +Ei18,,,EA026,NA,,,, +Ei19,,1940,EA026,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA026,2,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA026,9,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA026,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA026,2,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA026,2,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA026,2,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA026,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA026,9,"Marriage is allowed with a MoBrDa only if MoBr is dead, and with a FaSiDa only if Fa is dead",becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA026,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA026,2,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA026,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA026,9,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA026,2,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA026,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA026,9,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA026,NA,,,, +Ej16,Inas District,1958,EA026,2,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA026,2,MoYoBrDa only,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA026,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA026,9,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA026,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,,,EA026,NA,,,, +Ej7,,1950,EA026,9,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA026,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA026,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA026,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA026,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA026,9,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA026,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA026,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA026,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA026,9,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA026,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,,EA026,NA,,,, +Ia18,with special reference to the village of Manland in western Negros,1950,EA026,9,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA026,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA026,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA026,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA026,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA026,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA026,9,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA026,9,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA026,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA026,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA026,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA026,4,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA026,2,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA026,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA026,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA026,9,Marriage forbidden only with a FaBrDa,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA026,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA026,9,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA026,9,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA026,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA026,9,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA026,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA026,9,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA026,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA026,2,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA026,1,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA026,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA026,2,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA026,2,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA026,2,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA026,2,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA026,5,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA026,9,But marriage is preferred with a remoter classificatory MoMoBrDaDa,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA026,5,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA026,9,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA026,5,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA026,2,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA026,5,"Marriage with FaSiDa is allowed in theory, but Pilling observed No actual cases; marriage with a daughter of father's half sister, however, is preferred and common",basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA026,5,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA026,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA026,2,Marriage preferential with MoYoBrDa and any second cross-cousin but forbidden with FaSiDa and MoElBrDa,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA026,5,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA026,NA,,,, +Id9,,1910,EA026,5,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA026,5,Marriage is preferred with any second cross-cousin,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA026,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA026,9,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA026,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA026,9,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA026,9,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA026,9,"Though disapproved, marriage with a cross-cousin does occasionally occur",kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA026,9,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA026,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA026,9,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA026,9,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA026,1,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA026,9,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,,EA026,NA,,,, +Ie22,,1900,EA026,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA026,9,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA026,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA026,9,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA026,5,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA026,9,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA026,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA026,9,Marriage is preferred with FaFaSiSoDa,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA026,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA026,NA,,,, +Ie31,,1950,EA026,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,,EA026,NA,,,, +Ie33,with special reference to the village of Muramarew,1950,EA026,1,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA026,9,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA026,2,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA026,9,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA026,9,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA026,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA026,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA026,9,Marriage is preferential between children of cross-cousins,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA026,9,"The preferred union is with a classificatory, not an actual, cross-cousin",williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA026,2,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA026,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA026,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA026,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA026,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA026,1,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA026,9,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA026,1,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA026,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA026,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA026,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,,EA026,NA,,,, +If17,with special reference to the island of Jaluit,1900,EA026,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA026,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA026,9,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA026,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA026,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA026,9,Marriage with a first cross-cousin occurs only under very special conditions,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA026,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA026,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA026,9,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA026,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA026,9,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA026,9,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA026,9,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA026,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA026,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,,EA026,NA,,,, +Ig16,,,EA026,NA,,,, +Ig17,,1950,EA026,9,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA026,9,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA026,9,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA026,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA026,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA026,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA026,9,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA026,9,The preferred marriage is with the daughter of a cross-cousin,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA026,9,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA026,9,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA026,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA026,9,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA026,5,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA026,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA026,1,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA026,1,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA026,9,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA026,9,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,,,EA026,NA,,,, +Ih2,Malekula Island,1930,EA026,9,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA026,9,Marriage is preferred with MoBrDaDa or MoMoBrDa,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA026,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA026,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA026,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA026,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA026,9,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA026,9,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA026,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA026,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA026,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA026,9,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA026,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA026,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA026,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA026,9,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA026,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA026,9,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA026,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA026,9,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA026,9,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA026,9,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA026,9,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA026,5,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA026,1,"But Miranda states that ""marriage was prohibited within the third degree of relationship""",forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA026,9,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,,EA026,NA,,,, +Ij6,,1800,EA026,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA026,9,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA026,9,But chiefly families sometimes practiced cross-cousin marriage,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA026,9,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA026,1,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA026,9,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA026,9,But rules of cousin marriage were variable,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA026,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,,EA026,NA,,,, +Na14,,,EA026,NA,,,, +Na15,,1860,EA026,NA,There are no patterns of preferential marriage,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,,EA026,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA026,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA026,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA026,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA026,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA026,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA026,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,,,EA026,NA,,,, +Na24,,1880,EA026,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,,,EA026,NA,,,, +Na26,with special reference to the Iliamna,1870,EA026,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,,EA026,NA,,,, +Na28,,1880,EA026,9,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,,EA026,NA,,,, +Na3,Coronation Gulf,1920,EA026,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA026,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA026,9,"""...there were no marriage restrictions""",skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA026,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA026,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA026,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA026,9,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA026,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA026,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA026,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA026,1,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA026,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA026,NA,,,, +Na41,Mainland division,1700,EA026,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA026,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA026,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA026,9,"But there are occasional marriages between first cousins, and people differ as to their propriety",graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA026,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA026,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA026,9,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA026,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA026,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA026,2,"But 'no preferred cousin marriage' (code ""9"") today",bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA026,3,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA026,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA026,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA026,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA026,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA026,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA026,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA026,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA026,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA026,9,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA026,9,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA026,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA026,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA026,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA026,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA026,9,"Marriage with a cross-cousin was considered ""good""",boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA026,9,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA026,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA026,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA026,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA026,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA026,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA026,5,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA026,9,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA026,2,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA026,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA026,9,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA026,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA026,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA026,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA026,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA026,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA026,9,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA026,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA026,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA026,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA026,2,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA026,2,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA026,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA026,9,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA026,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA026,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA026,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA026,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA026,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA026,9,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA026,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA026,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA026,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA026,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA026,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA026,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA026,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA026,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA026,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA026,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA026,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,,EA026,NA,,,, +Nc27,,,EA026,NA,,,, +Nc28,,,EA026,NA,,,, +Nc29,,1770,EA026,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA026,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA026,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA026,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA026,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA026,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA026,9,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA026,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA026,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA026,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA026,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA026,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA026,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA026,9,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA026,9,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA026,9,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA026,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA026,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA026,9,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA026,9,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA026,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA026,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA026,9,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA026,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA026,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA026,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA026,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA026,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA026,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA026,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA026,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA026,9,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA026,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA026,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA026,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA026,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA026,9,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA026,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA026,9,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA026,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA026,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA026,9,"The preferred marriage is with a pseudo-cross cousin, i.e., a stepchild of either MoBr or FaSi",steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA026,9,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA026,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA026,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA026,9,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA026,9,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA026,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA026,9,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA026,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA026,9,Entry follows Harris; Steward reports only marriage with a pseudo-cross-cousin,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA026,9,But marriage was preferred with a stepdaughter of FaSi,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA026,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA026,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA026,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA026,1,"But 'FaSiDa as preferred spouse' (code ""3"") in the Skull Valley band",malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA026,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA026,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA026,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA026,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA026,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA026,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA026,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA026,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA026,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,,EA026,NA,,,, +Nd58,,1860,EA026,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,,EA026,NA,,,, +Nd6,,1850,EA026,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,,EA026,NA,,,, +Nd61,,,EA026,NA,,,, +Nd62,,,EA026,NA,,,, +Nd63,with special reference to the Eastern Bannock,1860,EA026,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA026,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA026,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA026,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA026,9,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA026,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA026,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA026,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA026,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,,EA026,NA,,,, +Ne11,,1870,EA026,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA026,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA026,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA026,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA026,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,,EA026,NA,,,, +Ne17,,1860,EA026,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA026,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA026,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA026,9,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA026,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA026,NA,,,, +Ne3,Comanche Tribe,1870,EA026,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA026,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA026,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA026,9,Inferred from a report by Bowers (p. 75) that a man preferred to have a son-in-law from his own sib,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA026,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA026,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA026,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,,EA026,NA,,,, +Nf11,,1870,EA026,9,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA026,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA026,9,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA026,9,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA026,9,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA026,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA026,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA026,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA026,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA026,5,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA026,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA026,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA026,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA026,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA026,NA,"Unreported but probably 'no preferred cousin marriage' (code ""9"") like the Huron",fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,,EA026,NA,,,, +Ng12,,1760,EA026,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,,EA026,NA,,,, +Ng14,,NA,EA026,9,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA026,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA026,9,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA026,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA026,9,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA026,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,,,EA026,NA,,,, +Ng7,Natchez Kingdom,1700,EA026,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,,EA026,NA,,,, +Ng9,,1920,EA026,9,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA026,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA026,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA026,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA026,9,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA026,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA026,9,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA026,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA026,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA026,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA026,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA026,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA026,9,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA026,9,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA026,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA026,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA026,9,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA026,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA026,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA026,9,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA026,9,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA026,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA026,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA026,9,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA026,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA026,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA026,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA026,9,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA026,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA026,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA026,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA026,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA026,9,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA026,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA026,9,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,,EA026,NA,,,, +Ni9,,,EA026,NA,,,, +Nj1,Ojitlan,1940,EA026,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA026,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA026,NA,,,, +Nj12,,,EA026,NA,,,, +Nj13,,,EA026,NA,,,, +Nj14,,1960,EA026,9,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA026,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA026,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA026,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA026,9,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA026,9,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,,,EA026,NA,,,, +Nj8,,1500,EA026,9,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA026,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA026,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,,EA026,NA,,,, +Sa11,,,EA026,NA,,,, +Sa12,,,EA026,NA,,,, +Sa13,Town of Chichicastenango,1930,EA026,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,,EA026,NA,,,, +Sa15,,,EA026,NA,,,, +Sa16,,,EA026,NA,,,, +Sa17,with special reference to the village of Chinantla,1950,EA026,9,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA026,2,Entry follows Guiteras; Villa says marriage is preferred with a classificatory cross-cousin but disapproved with a first cross-cousin,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA026,9,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA026,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA026,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA026,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA026,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA026,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA026,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA026,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA026,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA026,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA026,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA026,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA026,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA026,1,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,,EA026,NA,,,, +Sb9,,1930,EA026,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA026,2,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA026,2,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA026,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA026,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA026,1,"Entry follows Wilbert; Riley reports 'MoBrDa as preferred spouse' (code ""2"")",riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,,EA026,NA,,,, +Sc15,,,EA026,NA,,,, +Sc16,with special reference to the Makitare,1920,EA026,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA026,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA026,5,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA026,1,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA026,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA026,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA026,1,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA026,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA026,1,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA026,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA026,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA026,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA026,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,,EA026,NA,,,, +Sd4,,,EA026,NA,,,, +Sd5,,,EA026,NA,,,, +Sd6,,1960,EA026,9,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA026,9,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA026,9,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA026,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA026,2,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA026,NA,Preferential marriage with SiDa,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA026,1,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA026,1,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA026,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA026,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA026,9,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA026,2,But Goldman reports a preference for marrying a woman of one's mother's lineage,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA026,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA026,9,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA026,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,,EA026,NA,,,, +Sf1,City and environs of Cuzco,1530,EA026,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA026,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA026,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA026,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,,EA026,NA,,,, +Sf6,,,EA026,NA,,,, +Sf7,,1900,EA026,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA026,9,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,,,EA026,NA,,,, +Sg1,Eastern and central,1870,EA026,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA026,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA026,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA026,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA026,9,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA026,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA026,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA026,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA026,9,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA026,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,,EA026,NA,,,, +Sh7,,1900,EA026,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA026,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,,,EA026,NA,,,, +Si1,Kejara,1920,EA026,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA026,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA026,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA026,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA026,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA026,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,,EA026,NA,,,, +Si7,,,EA026,NA,,,, +Si8,,1940,EA026,9,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA026,NA,,,, +Sj1,,1950,EA026,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,,,EA026,NA,,,, +Sj11,Village of Sao Domingo,1958,EA026,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA026,9,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA026,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA026,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA026,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA026,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA026,9,"Entry follows Nimuendaju; Maybury-Lewis gives 'a symmetrical cross-cousin' (code ""1"")",mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA026,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA026,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA026,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,,,EA026,NA,,,, +ch14,with special reference to the Virjal group,1908,EA026,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA026,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,,,EA026,NA,,,, +ch17,with special reference to those of the Benderskij Uezd,1894,EA026,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA026,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,,,EA026,NA,,,, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA026,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,,,EA026,NA,,,, +ch22,,,EA026,NA,,,, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA026,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA026,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,,,EA026,NA,,,, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA026,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA026,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA026,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA026,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA026,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA026,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA026,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA026,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA026,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA026,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA026,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA026,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA026,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA027,3,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA027,6,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA027,5,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA027,2,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA027,4,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA027,8,"Special terms for MoBrCh, but sibling terms for other cousins",dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,,EA027,NA,,,, +Aa8,,1850,EA027,4,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA027,NA,,,, +Ab1,,1900,EA027,5,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA027,5,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA027,5,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA027,5,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA027,5,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA027,5,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA027,5,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA027,6,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA027,6,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA027,6,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA027,4,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA027,5,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,,EA027,NA,,,, +Ab21a,,,EA027,NA,,,, +Ab21b,,1925,EA027,5,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA027,6,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA027,4,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA027,6,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA027,5,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA027,5,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA027,5,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA027,5,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA027,5,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA027,5,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA027,5,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA027,5,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA027,5,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA027,5,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA027,NA,"Possibly Crow, though the sources are in conflict",brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA027,5,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,,EA027,NA,,,, +Ac17,Feshi territory lineage center,1910,EA027,5,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,,EA027,NA,,,, +Ac19,,,EA027,NA,,,, +Ac2,,1920,EA027,1,But Iroquois for all cross-cousins except FaSiSo (ms) and MoBrDa (ws),sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA027,5,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA027,5,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA027,5,"Probable, though the report is confused",mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA027,5,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,,EA027,NA,,,, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA027,5,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,,EA027,NA,,,, +Ac27,,1930,EA027,5,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA027,5,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,,EA027,NA,,,, +Ac3,Zambia branch,1900,EA027,5,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA027,5,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,,EA027,NA,,,, +Ac32,,1920,EA027,5,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA027,5,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA027,5,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA027,5,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA027,5,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA027,5,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA027,5,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,,EA027,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA027,4,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,,EA027,NA,,,, +Ac41,,1900,EA027,5,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA027,NA,,,, +Ac43,,,EA027,NA,,,, +Ac5,,1920,EA027,5,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA027,5,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA027,5,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,,EA027,NA,,,, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA027,5,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA027,2,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA027,4,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA027,5,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,,EA027,NA,,,, +Ad13,,1930,EA027,5,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA027,1,But Beidelman reports Iroquois,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,,EA027,NA,,,, +Ad16,,1920,EA027,4,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,,EA027,NA,,,, +Ad18,,,EA027,NA,,,, +Ad19,,1910,EA027,5,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA027,6,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA027,5,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA027,7,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA027,1,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA027,5,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA027,5,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,,EA027,NA,,,, +Ad26,,1910,EA027,4,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA027,5,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA027,NA,,,, +Ad29,,1930,EA027,4,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA027,6,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,,EA027,NA,,,, +Ad31,,,EA027,NA,,,, +Ad32,,1900,EA027,7,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA027,4,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA027,NA,Conflicting evidence; perhaps Omaha,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,,,EA027,NA,,,, +Ad36,,,EA027,NA,,,, +Ad37,,1940,EA027,6,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA027,5,Inferred from specific statements that cousin marriages are allowed and that there are distinct terms for male and female cousins,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,,EA027,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA027,6,Entry follows Middleton; Sluiter reports a mixture of Hawaiian and Eskimo terms,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,,EA027,NA,,,, +Ad41,,1930,EA027,2,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA027,6,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA027,4,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA027,5,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA027,4,But Descriptive for the Hima,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA027,6,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA027,5,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA027,NA,,,, +Ad49,,,EA027,NA,,,, +Ad5,,1940,EA027,1,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA027,5,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA027,5,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA027,5,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA027,5,For cross-cousins of opposite sex; conflicting data for those of the same sex,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA027,5,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA027,4,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA027,6,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA027,5,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA027,4,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA027,5,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA027,5,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA027,5,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA027,5,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,,EA027,NA,,,, +Ae17,,1900,EA027,5,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,,EA027,NA,,,, +Ae19,,1930,EA027,5,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,,EA027,NA,,,, +Ae20,,,EA027,NA,,,, +Ae21,,,EA027,NA,,,, +Ae22,with special reference to the Bankutu,1900,EA027,5,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,,EA027,NA,,,, +Ae24,,1920,EA027,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,,,EA027,NA,,,, +Ae26,,1910,EA027,4,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,,,EA027,NA,,,, +Ae28,,,EA027,NA,,,, +Ae29,,1900,EA027,4,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA027,6,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,,EA027,NA,,,, +Ae31,,,EA027,NA,,,, +Ae32,,,EA027,NA,,,, +Ae33,,,EA027,NA,,,, +Ae34,,,EA027,NA,,,, +Ae35,,,EA027,NA,,,, +Ae36,,,EA027,NA,,,, +Ae37,,,EA027,NA,,,, +Ae38,,,EA027,NA,,,, +Ae39,,1920,EA027,8,"Sibling terms extended to FaBrCh, but a special term for all other cousins",burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA027,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,,EA027,NA,,,, +Ae41,,,EA027,NA,,,, +Ae42,,,EA027,NA,,,, +Ae43,,,EA027,NA,,,, +Ae44,,1920,EA027,4,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,,EA027,NA,,,, +Ae46,,,EA027,NA,,,, +Ae47,,,EA027,NA,,,, +Ae48,,,EA027,NA,,,, +Ae49,,,EA027,NA,,,, +Ae5,,,EA027,NA,,,, +Ae50,,,EA027,NA,,,, +Ae51,,,EA027,NA,,,, +Ae52,,,EA027,NA,,,, +Ae53,,,EA027,NA,,,, +Ae54,,,EA027,NA,,,, +Ae55,,1950,EA027,4,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,,EA027,NA,,,, +Ae57,,,EA027,NA,,,, +Ae58,,,EA027,NA,,,, +Ae59,,,EA027,NA,,,, +Ae6,,,EA027,NA,,,, +Ae7,,1910,EA027,4,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA027,5,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,,EA027,NA,,,, +Af1,City and environs of Abomey,1890,EA027,2,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA027,6,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,,EA027,NA,,,, +Af12,with special reference to the Kwahu,1930,EA027,1,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA027,6,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA027,4,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,,EA027,NA,,,, +Af16,,,EA027,NA,,,, +Af17,,,EA027,NA,,,, +Af18,,,EA027,NA,,,, +Af19,,1950,EA027,2,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA027,4,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA027,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,,,EA027,NA,,,, +Af22,,,EA027,NA,,,, +Af23,,,EA027,NA,,,, +Af24,,1900,EA027,4,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA027,4,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,,,EA027,NA,,,, +Af27,,,EA027,NA,,,, +Af28,,1910,EA027,6,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,,EA027,NA,,,, +Af3,Kumasi State,1900,EA027,2,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,,EA027,NA,,,, +Af31,,,EA027,NA,,,, +Af32,Abeouta Province and Benin,1920,EA027,4,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA027,4,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA027,4,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA027,NA,,,, +Af36,with special reference to the Glidyi,1900,EA027,4,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,,,EA027,NA,,,, +Af38,,1900,EA027,1,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,,,EA027,NA,,,, +Af4,,1930,EA027,5,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,,,EA027,NA,,,, +Af41,,,EA027,NA,,,, +Af42,,1900,EA027,2,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA027,4,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,,EA027,NA,,,, +Af45,,,EA027,NA,,,, +Af46,,,EA027,NA,,,, +Af47,,,EA027,NA,,,, +Af48,,,EA027,NA,,,, +Af49,,,EA027,NA,,,, +Af5,,1930,EA027,4,But Crosby reports a special term for MoBrDa,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,,EA027,NA,,,, +Af51,,,EA027,NA,,,, +Af52,,,EA027,NA,,,, +Af53,,,EA027,NA,,,, +Af54,,,EA027,NA,,,, +Af55,,1950,EA027,4,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,,,EA027,NA,,,, +Af57,,1910,EA027,3,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA027,6,Entry follows Ronnefelt; Thomas reports Hawaiian and McCulloch Sudanese,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA027,4,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA027,4,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA027,4,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,,EA027,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA027,5,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA027,5,"For female cross-cousins, but Omaha for male cross-cousins",froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA027,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA027,4,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA027,4,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,,EA027,NA,,,, +Ag15,,,EA027,NA,,,, +Ag16,,,EA027,NA,,,, +Ag17,,,EA027,NA,,,, +Ag18,,,EA027,NA,,,, +Ag19,,,EA027,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA027,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,,EA027,NA,,,, +Ag21,,,EA027,NA,,,, +Ag22,,,EA027,NA,,,, +Ag23,,,EA027,NA,,,, +Ag24,,1910,EA027,NA,Sudanese if a confused report by Thomas is to be accepted,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,,EA027,NA,,,, +Ag26,,1930,EA027,5,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,,EA027,NA,,,, +Ag28,,,EA027,NA,,,, +Ag29,,,EA027,NA,,,, +Ag3,,1930,EA027,5,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,,EA027,NA,,,, +Ag31,,,EA027,NA,,,, +Ag32,,,EA027,NA,,,, +Ag33,,1920,EA027,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,,EA027,NA,,,, +Ag35,,,EA027,NA,,,, +Ag36,,1950,EA027,1,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA027,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA027,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA027,4,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA027,4,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA027,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA027,4,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,,EA027,NA,,,, +Ag43,,,EA027,NA,,,, +Ag44,,1910,EA027,4,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA027,6,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA027,4,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA027,2,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,,EA027,NA,,,, +Ag49,,,EA027,NA,,,, +Ag5,,1930,EA027,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,,EA027,NA,,,, +Ag51,,,EA027,NA,,,, +Ag52,,,EA027,NA,,,, +Ag53,with special reference to those of Garango,1960,EA027,4,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA027,5,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA027,5,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,,EA027,NA,,,, +Ag8,,,EA027,NA,,,, +Ag9,,1930,EA027,5,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA027,4,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA027,4,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,,EA027,NA,,,, +Ah12,,1920,EA027,NA,Possibly Sudanese on basis of incomplete data,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,,,EA027,NA,,,, +Ah14,,,EA027,NA,,,, +Ah15,,1920,EA027,4,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA027,4,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA027,6,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,,EA027,NA,,,, +Ah19,,1930,EA027,6,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA027,4,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA027,4,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA027,5,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA027,NA,,,, +Ah23,,1920,EA027,4,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA027,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,,EA027,NA,,,, +Ah26,,1920,EA027,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA027,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA027,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA027,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA027,4,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA027,1,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA027,4,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA027,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA027,4,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA027,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA027,5,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,,EA027,NA,,,, +Ah37,,1920,EA027,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,,EA027,NA,,,, +Ah39,,,EA027,NA,,,, +Ah4,,1920,EA027,4,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA027,4,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA027,4,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA027,6,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,,EA027,NA,,,, +Ah9,,1920,EA027,4,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA027,6,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA027,4,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA027,4,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,,EA027,NA,,,, +Ai13,,,EA027,NA,,,, +Ai14,,,EA027,NA,,,, +Ai15,,,EA027,NA,,,, +Ai16,,,EA027,NA,,,, +Ai17,,,EA027,NA,,,, +Ai18,,,EA027,NA,,,, +Ai19,,,EA027,NA,,,, +Ai2,,,EA027,NA,,,, +Ai20,,,EA027,NA,,,, +Ai21,,,EA027,NA,,,, +Ai22,,,EA027,NA,,,, +Ai23,,,EA027,NA,,,, +Ai24,,,EA027,NA,,,, +Ai25,,,EA027,NA,,,, +Ai26,,1920,EA027,6,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA027,3,"Based on a dubious report of a single term for ""cousin""",czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA027,NA,"From a possibly dubious report of a single term for ""male cousin""",delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,,EA027,NA,,,, +Ai3,,1920,EA027,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA027,NA,Reliability perhaps doubtful,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,,EA027,NA,,,, +Ai32,,,EA027,NA,,,, +Ai33,,,EA027,NA,,,, +Ai34,,,EA027,NA,,,, +Ai35,,,EA027,NA,,,, +Ai36,,,EA027,NA,,,, +Ai37,,1940,EA027,4,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA027,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA027,5,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA027,4,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA027,2,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA027,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA027,4,But Descriptive for MoBrCh,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA027,2,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,,EA027,NA,,,, +Ai45,,,EA027,NA,,,, +Ai46,,,EA027,NA,,,, +Ai47,,,EA027,NA,,,, +Ai5,,1920,EA027,4,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA027,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,,EA027,NA,,,, +Ai8,,1930,EA027,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA027,4,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA027,4,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA027,6,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA027,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA027,3,But half-sibling terms are applied to FaBrCh,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,,EA027,NA,,,, +Aj14,,,EA027,NA,,,, +Aj15,,,EA027,NA,,,, +Aj16,,,EA027,NA,,,, +Aj17,,1890,EA027,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,,EA027,NA,,,, +Aj19,,,EA027,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA027,6,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,,EA027,NA,,,, +Aj21,,,EA027,NA,,,, +Aj22,,,EA027,NA,,,, +Aj23,,1950,EA027,5,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,,EA027,NA,,,, +Aj25,,,EA027,NA,,,, +Aj26,,1910,EA027,5,But with certain Omaha features,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA027,6,"Probably, though possibly Sudanese",roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,,EA027,NA,,,, +Aj29,,,EA027,NA,,,, +Aj3,,1930,EA027,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,,EA027,NA,,,, +Aj31,,,EA027,NA,,,, +Aj4,,1920,EA027,6,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA027,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA027,2,But Omaha for MoBrDa,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA027,6,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA027,6,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA027,5,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA027,6,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA027,2,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA027,7,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,,EA027,NA,,,, +Ca13,,,EA027,NA,,,, +Ca14,,,EA027,NA,,,, +Ca15,,,EA027,NA,,,, +Ca16,,,EA027,NA,,,, +Ca17,,,EA027,NA,,,, +Ca18,,,EA027,NA,,,, +Ca19,,,EA027,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA027,2,Performed by slaves,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,,EA027,NA,,,, +Ca21,,,EA027,NA,,,, +Ca22,,,EA027,NA,,,, +Ca23,,,EA027,NA,,,, +Ca24,,,EA027,NA,,,, +Ca25,,,EA027,NA,,,, +Ca26,,,EA027,NA,,,, +Ca27,,,EA027,NA,,,, +Ca28,,,EA027,NA,,,, +Ca29,,,EA027,NA,,,, +Ca3,,1950,EA027,2,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA027,3,"If Bieber is correct in reporting one term for ""male cousin"" and another for ""female cousin""",bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,,EA027,NA,,,, +Ca32,,,EA027,NA,,,, +Ca33,,,EA027,NA,,,, +Ca34,,,EA027,NA,,,, +Ca35,,,EA027,NA,,,, +Ca36,,,EA027,NA,,,, +Ca37,,,EA027,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA027,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA027,3,But sibling terms are applied to FaBrCh,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA027,1,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,,EA027,NA,,,, +Ca41,,,EA027,NA,,,, +Ca42,,,EA027,NA,,,, +Ca43,,,EA027,NA,,,, +Ca5,,1930,EA027,2,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA027,2,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA027,3,But separate terms for an uncle's child and an aunt's child,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA027,2,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,,EA027,NA,,,, +Cb1,,1940,EA027,4,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA027,4,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,,EA027,NA,,,, +Cb12,,,EA027,NA,,,, +Cb13,,,EA027,NA,,,, +Cb14,,,EA027,NA,,,, +Cb15,with special reference to the Humr,1940,EA027,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,,EA027,NA,,,, +Cb17,Jebel Marra,1880,EA027,4,But Descriptive for parallel cousins,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,,EA027,NA,,,, +Cb19,,,EA027,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA027,4,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,,EA027,NA,,,, +Cb21,,1930,EA027,5,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,,EA027,NA,,,, +Cb23,,,EA027,NA,,,, +Cb24,,,EA027,NA,,,, +Cb25,,,EA027,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA027,5,Also commonly Hawaiian,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA027,1,Or alternatively Hawaiian,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA027,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA027,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA027,5,Performed by slaves,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA027,2,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA027,5,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA027,5,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA027,5,"For cross-cousins of opposite sex, but Hawaiian for those of same sex",meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA027,4,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA027,5,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA027,2,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA027,5,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,,EA027,NA,,,, +Cc12,,,EA027,NA,,,, +Cc13,,,EA027,NA,,,, +Cc14,,,EA027,NA,,,, +Cc15,,,EA027,NA,,,, +Cc16,,1930,EA027,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA027,2,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,,EA027,NA,,,, +Cc19,,,EA027,NA,,,, +Cc2,Nomads of Tibesti,1950,EA027,5,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,,,EA027,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA027,2,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,,EA027,NA,,,, +Cc5,,1910,EA027,5,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA027,2,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA027,2,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA027,NA,,,, +Cc9,Ahaggaren tribe,1920,EA027,5,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA027,2,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA027,2,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,,EA027,NA,,,, +Cd12,,1870,EA027,2,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,,EA027,NA,,,, +Cd14,,,EA027,NA,,,, +Cd15,,,EA027,NA,,,, +Cd16,,,EA027,NA,,,, +Cd17,,,EA027,NA,,,, +Cd18,,1920,EA027,2,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,,EA027,NA,,,, +Cd2,Town and environs of Silwa,1950,EA027,2,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,,EA027,NA,,,, +Cd21,,,EA027,NA,,,, +Cd3,,,EA027,NA,,,, +Cd4,,,EA027,NA,,,, +Cd5,,,EA027,NA,,,, +Cd6,,,EA027,NA,,,, +Cd7,,,EA027,NA,,,, +Cd8,,,EA027,NA,,,, +Cd9,,,EA027,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA027,3,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA027,3,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA027,2,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA027,3,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA027,3,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA027,3,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA027,3,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA027,3,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA027,3,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA027,3,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA027,3,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA027,3,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA027,3,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA027,3,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA027,2,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA027,3,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA027,3,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA027,3,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA027,4,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA027,3,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA027,3,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA027,3,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA027,3,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,,EA027,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA027,2,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA027,3,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA027,3,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA027,3,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA027,3,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA027,6,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA027,2,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA027,8,"One term for FaSiCh and MoSiCh, a second for FaBrCh, and a third for MoBrCh",barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,,,EA027,NA,,,, +Ci2,,,EA027,NA,,,, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA027,3,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA027,3,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA027,2,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA027,NA,,,, +Ci7,,,EA027,NA,,,, +Ci8,,1850,EA027,2,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,,EA027,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA027,2,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA027,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA027,2,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA027,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,,,EA027,NA,,,, +Cj5,,1930,EA027,2,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA027,2,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA027,2,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA027,2,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,,EA027,NA,,,, +Ea1,,1950,EA027,2,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA027,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA027,3,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA027,7,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA027,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA027,4,But a special term is used for FaBrCh if relations are not friendly,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA027,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA027,2,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,,EA027,NA,,,, +Ea6,,,EA027,NA,,,, +Ea7,,1950,EA027,2,"But kin terms were obtained in Persian, not in Mongolian",schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA027,2,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA027,2,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA027,6,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,,EA027,NA,,,, +Eb3,Narobanchin Territory,1940,EA027,6,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA027,5,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA027,7,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA027,8,One term for paternal cousin and a second for maternal cousin,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA027,6,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA027,6,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA027,5,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA027,6,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA027,4,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA027,7,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA027,3,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA027,3,Or perhaps Hawaiian,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA027,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,,,EA027,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA027,2,"For cross-cousins, but Hawaiian for parallel cousins",batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,,EA027,NA,,,, +Ec9,,,EA027,NA,,,, +Ed1,Kanghwa Island,1950,EA027,3,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA027,2,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA027,3,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,,,EA027,NA,,,, +Ed15a,with special reference to the village of Karimata,1950,EA027,3,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA027,4,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA027,4,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA027,2,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA027,5,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA027,4,"For all cousins except FaBrCh, a suffixed element meaning ""outside"" is added to the sibling term",mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA027,3,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA027,4,"Cousin terms are not reported, but elsewhere in Kwantung Province modified Hawaiian terminology is employed",kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA027,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA027,2,But sibling terms are used for FaBrCh,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,,EA027,NA,,,, +Ee1,,,EA027,NA,,,, +Ee2,Hunza State,1930,EA027,4,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA027,4,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA027,3,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA027,2,But with certain Iroquois features,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA027,6,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA027,8,"Two terms defined as ""paternal cousin"" and ""maternal cousin""",endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,,,EA027,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA027,2,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA027,2,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA027,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA027,4,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA027,4,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA027,5,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA027,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA027,4,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA027,4,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA027,2,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA027,4,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA027,5,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA027,5,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA027,5,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA027,5,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA027,5,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA027,5,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA027,5,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA027,5,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA027,5,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA027,5,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA027,5,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA027,4,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA027,4,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA027,5,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA027,3,"Entry follows Man, but Radcliffe-Brown reports Hawaiian",man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,,EA027,NA,,,, +Eh2,,1900,EA027,4,"Marriage is also allowed with FaBaDa, but not MoSiDa",grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA027,5,But sibling terms are applied to cross-cousins of the same sex,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA027,5,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA027,3,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA027,5,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA027,4,But McLeod reports Descriptive in reference,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA027,4,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA027,4,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA027,5,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA027,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA027,8,Apparently Hawaiian except for marriageable cross-cousins,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA027,6,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA027,6,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA027,6,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA027,6,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA027,6,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA027,6,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA027,3,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA027,6,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA027,6,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA027,6,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA027,4,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA027,6,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA027,5,But Omaha for FaSiDa(ms) and MoBrSo(ws),leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA027,7,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA027,3,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA027,5,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA027,5,But Sudanese for male cross-cousins,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA027,6,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA027,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA027,4,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,,EA027,NA,,,, +Ej13,,,EA027,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA027,4,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA027,3,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA027,7,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA027,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA027,4,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA027,4,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA027,3,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA027,3,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA027,5,But Sudanese for male cross-cousins,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA027,4,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA027,4,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA027,4,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA027,4,But Omaha in reference,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA027,3,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA027,3,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA027,3,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA027,3,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA027,4,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA027,3,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA027,4,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA027,4,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA027,3,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA027,4,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA027,4,Eskimo terminology may also be used in certain contexts,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA027,3,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA027,4,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA027,3,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA027,3,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA027,3,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA027,3,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA027,3,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA027,4,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA027,7,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA027,3,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA027,4,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA027,3,"As reported by Kruyt, but Loeb states that sibling terms are applied to FaBrCh",kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,,,EA027,NA,,,, +Ib9,with special reference to settled Punan,1950,EA027,4,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA027,3,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA027,NA,,,, +Ic11,,,EA027,NA,,,, +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA027,3,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA027,5,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA027,4,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA027,4,But Iroquois between male cross-cousins,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA027,5,For cross-cousins of opposite sex; cross-cousins of the same sex are called by sibling terms,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA027,4,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA027,4,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,,,EA027,NA,,,, +Ic8,,,EA027,NA,,,, +Ic9,,,EA027,NA,,,, +Id1,Alice Springs and environs,1900,EA027,5,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA027,5,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA027,7,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA027,7,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA027,7,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA027,7,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA027,5,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA027,5,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA027,5,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA027,5,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA027,5,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,,EA027,NA,,,, +Id9,,1910,EA027,5,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA027,5,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA027,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA027,5,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA027,6,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA027,5,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA027,5,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA027,5,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA027,5,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA027,5,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA027,4,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA027,8,"Sibling terms are applied to FaBrCh, but there is a single term for all other cousins",vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA027,5,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA027,4,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA027,4,But Descriptive for FaSiCh,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA027,4,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA027,5,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA027,4,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,,EA027,NA,,,, +Ie26,,1940,EA027,5,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA027,4,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,,EA027,NA,,,, +Ie29,principally Tsogari,1930,EA027,4,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA027,6,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA027,4,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA027,5,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA027,4,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA027,5,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA027,4,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA027,6,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA027,4,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA027,6,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA027,6,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA027,4,Alternatively Iroquois,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA027,5,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA027,5,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA027,5,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA027,5,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA027,4,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA027,5,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA027,4,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA027,1,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA027,4,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA027,5,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA027,5,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA027,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA027,4,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA027,4,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA027,5,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA027,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA027,5,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA027,4,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA027,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA027,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA027,4,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA027,3,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA027,1,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA027,4,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA027,1,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA027,1,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA027,4,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,,EA027,NA,,,, +Ig14,,1900,EA027,4,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA027,5,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA027,4,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA027,5,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA027,4,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA027,5,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA027,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA027,5,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA027,5,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA027,5,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA027,5,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA027,5,Crow terminology is used for FaSiCh after the death of the father,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA027,4,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA027,5,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA027,4,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA027,8,"I between cross-cousins of the same sex, Crow between MoBrSo and FaSiDa, Hawaiian between FaSiSo and MoBrDa",fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA027,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA027,5,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA027,5,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA027,5,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA027,7,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA027,5,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA027,1,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA027,5,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA027,5,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA027,5,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA027,4,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA027,4,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA027,5,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA027,4,But optionally Iroquois,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA027,4,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA027,5,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA027,4,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA027,4,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA027,4,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA027,4,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA027,4,But Iroquois for cross-cousins of the opposite sex,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA027,4,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA027,4,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA027,6,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA027,4,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA027,4,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA027,4,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA027,4,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA027,4,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA027,4,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA027,4,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA027,4,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA027,4,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA027,4,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA027,4,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA027,4,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA027,4,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA027,5,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA027,3,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA027,5,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA027,3,Entry follows Pospisil and Laughlin; Spencer reports Iroquois,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,,EA027,NA,,,, +Na14,,1880,EA027,3,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA027,4,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,,EA027,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA027,4,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA027,5,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA027,5,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA027,4,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA027,8,"One term for paternal cousins, another for maternal cousins",birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA027,4,"For cross-cousins of opposite sex, but Iroquois for those of same sex and special terms for parallel cousins of same sex",birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,,,EA027,NA,,,, +Na24,,1880,EA027,3,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA027,3,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA027,5,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,,EA027,NA,,,, +Na28,,1880,EA027,4,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,,EA027,NA,,,, +Na3,Coronation Gulf,1920,EA027,3,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA027,4,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,,,EA027,NA,,,, +Na32,Lake St. John & Mistassini Band,1880,EA027,5,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA027,5,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA027,5,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA027,5,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA027,5,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA027,5,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA027,5,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA027,5,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA027,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA027,5,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA027,4,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA027,6,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,,EA027,NA,,,, +Na44,,1910,EA027,3,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,,EA027,NA,,,, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA027,5,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA027,5,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA027,5,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA027,4,"For cross-cousins of opposite sex, but Iroquois for those of same sex and special terms for parallel cousins of same sex",osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA027,5,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA027,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA027,4,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA027,4,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA027,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA027,4,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA027,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA027,4,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA027,4,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA027,4,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,,EA027,NA,,,, +Nb19,,,EA027,NA,,,, +Nb2,Twana Tribe,1850,EA027,4,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,,EA027,NA,,,, +Nb21,,1860,EA027,5,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA027,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA027,4,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA027,4,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA027,3,"Or, alternatively Hawaiian",olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA027,4,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA027,4,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA027,5,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA027,5,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA027,4,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA027,8,"FaSiSo equated with FaBr; MoBrDa equated with MoSi; a separate term for MoBrSo, possibly also used for FaSiDa",sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA027,5,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA027,5,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA027,3,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA027,4,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA027,4,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA027,3,But Hawaiian for second cousins,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA027,4,But there are special terms for cross-cousins of Ego's own sex,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,,,EA027,NA,,,, +Nb39,,1860,EA027,4,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA027,4,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA027,5,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA027,5,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA027,5,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA027,5,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA027,4,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA027,6,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,,EA027,NA,,,, +Nc11,,1860,EA027,3,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA027,5,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA027,4,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA027,6,With minor modifications on which the sources do not entirely agree,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA027,4,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA027,4,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA027,6,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA027,6,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA027,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA027,4,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA027,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA027,6,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA027,6,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA027,4,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA027,6,"After Gifford, but Gayton reports Hawaiian for all Yokuts",bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA027,4,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,,EA027,NA,,,, +Nc27,,1860,EA027,4,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,,EA027,NA,,,, +Nc29,,,EA027,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA027,4,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA027,5,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA027,5,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA027,5,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA027,5,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA027,5,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA027,3,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA027,6,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA027,5,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA027,4,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA027,4,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA027,4,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA027,4,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA027,4,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA027,4,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA027,4,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,,EA027,NA,,,, +Nd14,,,EA027,NA,,,, +Nd15,,1880,EA027,4,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,,EA027,NA,,,, +Nd17,,1870,EA027,4,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA027,4,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA027,4,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA027,4,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA027,4,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,,EA027,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA027,4,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,,EA027,NA,,,, +Nd24,,1870,EA027,4,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA027,4,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,,EA027,NA,,,, +Nd27,,1860,EA027,4,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,,EA027,NA,,,, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA027,5,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA027,4,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA027,4,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA027,4,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA027,4,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA027,4,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA027,4,"But cross-cousins of opposite sex are called ""breast siblings""",harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA027,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA027,4,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA027,4,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA027,4,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA027,4,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA027,4,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA027,4,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA027,4,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA027,4,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA027,4,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA027,4,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA027,4,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA027,4,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA027,4,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA027,4,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA027,4,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA027,4,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA027,4,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA027,4,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA027,4,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA027,4,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA027,4,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA027,4,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA027,5,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA027,5,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA027,5,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA027,4,But Chamberlain reports Eskimo,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA027,4,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA027,4,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA027,4,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA027,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA027,5,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA027,4,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA027,4,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA027,5,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA027,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,,EA027,NA,,,, +Ne17,,1860,EA027,4,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA027,4,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA027,5,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA027,4,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA027,5,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,1760,EA027,3,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968, +Ne3,Comanche Tribe,1870,EA027,4,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA027,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA027,4,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA027,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA027,4,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA027,5,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA027,4,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA027,6,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA027,6,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA027,6,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA027,6,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA027,5,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA027,6,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA027,6,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA027,6,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA027,6,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA027,4,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA027,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA027,6,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA027,4,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA027,6,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA027,5,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA027,5,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA027,1,But Omaha terminology was borrowed from the Shawnee in the eighteenth century,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA027,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA027,3,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA027,1,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA027,3,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA027,1,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA027,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA027,3,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA027,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA027,4,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA027,8,"Mixed Crow and Eskimo terms, at least at a later date",macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA027,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA027,3,But almost certainly not aboriginally,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA027,4,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA027,4,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA027,3,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA027,4,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA027,1,Recently trending strongly toward Hawaiian,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA027,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA027,4,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA027,5,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA027,5,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA027,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA027,5,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA027,1,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA027,5,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA027,4,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA027,5,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA027,5,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA027,4,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA027,1,With some indications of a shift toward Hawaiian,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA027,3,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA027,3,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA027,5,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA027,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA027,5,But sibling terms are applied to cross-cousins of opposite sex,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA027,3,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA027,4,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA027,3,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA027,3,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA027,4,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA027,4,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA027,4,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA027,4,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA027,4,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA027,5,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA027,4,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA027,3,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,1920,EA027,4,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968, +Nj1,Ojitlan,1940,EA027,4,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA027,4,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA027,4,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,1950,EA027,4,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968, +Nj13,,1900,EA027,4,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA027,4,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA027,4,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA027,4,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA027,4,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA027,4,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA027,4,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA027,4,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA027,2,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA027,4,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA027,4,Entry follows Nordenskiold; Stout reports descriptive terminology,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,,EA027,NA,,,, +Sa11,,1880,EA027,4,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,,EA027,NA,,,, +Sa13,Town of Chichicastenango,1930,EA027,4,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,,EA027,NA,,,, +Sa15,,1920,EA027,3,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,,EA027,NA,,,, +Sa17,with special reference to the village of Chinantla,1950,EA027,4,But Reina reports Eskimo,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA027,6,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA027,4,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA027,4,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA027,5,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA027,4,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA027,5,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA027,4,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA027,5,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA027,5,From a statement by Taylor that parallel cousins were called by sibling terms and cross-cousins were differentiated from them,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA027,4,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA027,5,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA027,5,Cousin terms are derived from Spanish,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA027,4,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA027,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA027,5,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,,EA027,NA,,,, +Sb9,,1930,EA027,3,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA027,4,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,,EA027,NA,,,, +Sc11,,1930,EA027,5,Entry follows Wilbert; Simpson reports Hawaiian,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA027,5,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA027,5,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,,EA027,NA,,,, +Sc15,,1910,EA027,5,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA027,5,But sibling terms are employed for cross-cousins of opposite sex,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA027,5,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA027,4,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA027,4,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA027,5,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA027,5,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA027,5,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA027,4,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA027,5,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA027,5,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA027,4,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA027,8,"MoBrCh equated with SiCh, FaSiSo equated with MoBr, and a special term for FaSiDa",frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA027,4,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,,EA027,NA,,,, +Sd4,,,EA027,NA,,,, +Sd5,,,EA027,NA,,,, +Sd6,,1960,EA027,5,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA027,5,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA027,4,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA027,5,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA027,1,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,,EA027,NA,,,, +Se11,,1960,EA027,5,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA027,5,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA027,5,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA027,5,"Flornoy reports Hawaiian terminology, but Karsten states that sibling terms are extended only to FaBrCh",harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,,EA027,NA,,,, +Se5,Village on Caduiari River,1940,EA027,5,"Entry follows Goldman; Fulop reports Sudanese. ""A communication from Irving Goldman points out that there is no conflict between the information on cousin terminology provided by Fulop and himself. Goldman reports Iroquois terminology for the Cubeo tribe, Fulop Sudanese terminology for the Tucano proper.""",goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,,EA027,NA,,,, +Se7,a mestizo group in lowland Bolivia,1950,EA027,3,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA027,5,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,,EA027,NA,,,, +Sf1,City and environs of Cuzco,1530,EA027,4,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA027,4,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA027,4,Entry follows Altschuler; Barrett reports Eskimo,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA027,4,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,,EA027,NA,,,, +Sf6,,1540,EA027,3,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,,EA027,NA,,,, +Sf8,,,EA027,NA,,,, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA027,3,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA027,3,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA027,6,But usually Hawaiian outside of Cholchol,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA027,3,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,,,EA027,NA,,,, +Sg5,,,EA027,NA,,,, +Sh1,,1860,EA027,4,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA027,4,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA027,3,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA027,4,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA027,3,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,,EA027,NA,,,, +Sh7,,,EA027,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA027,4,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,,,EA027,NA,,,, +Si1,Kejara,1920,EA027,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA027,4,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA027,5,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA027,5,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA027,5,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA027,5,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA027,5,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA027,5,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA027,4,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,1940,EA027,5,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA027,4,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA027,4,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA027,5,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA027,6,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA027,4,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA027,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA027,4,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA027,4,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA027,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA027,NA,Uncertain because of much conflict in the sources,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA027,6,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA027,8,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,,,EA027,NA,,,, +ch14,with special reference to the Virjal group,1908,EA027,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA027,3,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA027,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,,,EA027,NA,,,, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA027,2,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA027,2,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA027,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA027,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,,,EA027,NA,,,, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA027,3,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA027,2,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA027,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA027,6,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA027,2,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA027,2,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA027,8,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA027,3,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA027,7,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA027,8,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA027,8,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA027,8,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA027,3,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA027,8,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA027,3,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA027,3,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA028,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA028,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA028,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA028,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA028,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,1920,EA028,3,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p63, +Aa7,,1910,EA028,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,1850,EA028,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA028,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,1900,EA028,1,,irle1906; vedder1928,EthnographicAtlas_1967_p63, +Ab10,,1936,EA028,5,,hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,1850,EA028,3,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA028,3,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p63, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA028,3,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA028,5,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA028,3,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA028,3,,earthy1933,EthnographicAtlas_1967_p63, +Ab17,,,EA028,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA028,3,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA028,3,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,1880,EA028,3,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA028,NA,,,, +Ab21a,,1930,EA028,3,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA028,NA,,,, +Ab22,,,EA028,NA,,,, +Ab3,Ruling Luyana,1890,EA028,5,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,1920,EA028,3,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA028,3,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA028,5,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA028,3,,langandtastevin1937,EthnographicAtlas_1967_p63, +Ab8,Basuto,1860,EA028,5,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA028,3,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA028,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA028,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA028,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,1920,EA028,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p63, +Ac13,,1950,EA028,3,,tew1950; velsen1964,EthnographicAtlas_1967_p63, +Ac14,,1900,EA028,3,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p63, +Ac15,,,EA028,NA,,,, +Ac16,,1940,EA028,3,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA028,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA028,3,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,1880,EA028,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA028,3,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p63, +Ac20,,1920,EA028,3,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA028,3,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p63, +Ac22,,1930,EA028,3,,mertens1935,EthnographicAtlas_1967_p63, +Ac23,with special reference to the western Lele,1950,EA028,3,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,1910,EA028,3,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA028,3,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p63, +Ac26,,1920,EA028,3,But Beaucorps reports that rice has become the staple crop,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA028,3,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA028,3,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p63, +Ac29,,,EA028,NA,,,, +Ac3,Zambia branch,1900,EA028,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA028,3,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA028,3,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA028,3,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA028,3,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA028,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA028,NA,,,, +Ac36,,1920,EA028,3,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,1950,EA028,3,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA028,3,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p63, +Ac39,,,EA028,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA028,3,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,1900,EA028,3,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA028,3,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA028,NA,,,, +Ac43,,1910,EA028,3,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA028,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,1930,EA028,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p63, +Ac7,,1920,EA028,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,1930,EA028,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA028,3,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,1950,EA028,3,,grottanelli1955,EthnographicAtlas_1967_p63, +Ad10,,1910,EA028,5,But maize has since replaced bananas as the principal crop,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,1930,EA028,6,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA028,3,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA028,3,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,Morogoro District,1930,EA028,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,1900,EA028,3,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,1920,EA028,5,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA028,3,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,1910,EA028,3,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA028,3,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA028,5,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA028,3,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,1930,EA028,3,,maurice193538,EthnographicAtlas_1967_p67, +Ad22,,1950,EA028,5,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,1910,EA028,6,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA028,3,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,1900,EA028,3,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA028,5,,sick1916,Ethnology_Vol7_No2_Apr_1968, +Ad27,,1880,EA028,3,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA028,3,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA028,3,,ingrams1930; prins1961,EthnographicAtlas_1967_p67, +Ad3,,1910,EA028,6,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,1890,EA028,3,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p67, +Ad31,,,EA028,NA,,,, +Ad32,,1900,EA028,3,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p67, +Ad33,,1900,EA028,6,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p67, +Ad34,,1910,EA028,5,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA028,3,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p67, +Ad36,,1890,EA028,5,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA028,5,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA028,5,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA028,6,,gray1963,EthnographicAtlas_1967_p67, +Ad4,Fort Hall or Metume district,1930,EA028,5,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA028,5,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA028,3,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p67, +Ad42,,1900,EA028,5,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,1900,EA028,5,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA028,3,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p67, +Ad45,,1920,EA028,3,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,1950,EA028,5,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p67, +Ad47,,1900,EA028,5,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA028,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA028,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA028,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA028,3,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA028,3,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA028,5,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA028,5,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA028,5,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,1900,EA028,3,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA028,3,,winter1956; winter1958,EthnographicAtlas_1967_p67, +Ae10,,1910,EA028,5,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA028,3,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA028,3,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA028,NA,,,, +Ae14,,1950,EA028,5,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,1940,EA028,5,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p67, +Ae16,,,EA028,NA,,,, +Ae17,,1900,EA028,3,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,1900,EA028,3,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA028,NA,,,, +Ae2,,1950,EA028,3,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,1940,EA028,3,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA028,3,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA028,3,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p67, +Ae23,,,EA028,NA,,,, +Ae24,,,EA028,NA,,,, +Ae25,,,EA028,NA,,,, +Ae26,,1910,EA028,3,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA028,3,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA028,3,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,1900,EA028,3,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p67, +Ae3,,1910,EA028,3,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,1920,EA028,3,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA028,3,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA028,3,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA028,3,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA028,3,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA028,3,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA028,3,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA028,NA,,,, +Ae38,,1920,EA028,3,,wijnant192526,EthnographicAtlas_1967_p67, +Ae39,,1920,EA028,3,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA028,3,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,1910,EA028,3,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA028,3,,andersson1953,EthnographicAtlas_1967_p67, +Ae42,,1900,EA028,3,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA028,3,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA028,3,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA028,3,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA028,3,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA028,3,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA028,3,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae49,,,EA028,NA,,,, +Ae5,,1910,EA028,3,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae50,,1920,EA028,3,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p67, +Ae51,Ndiki subtribe,1940,EA028,3,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae52,,,EA028,NA,,,, +Ae53,,,EA028,NA,,,, +Ae54,,,EA028,NA,,,, +Ae55,,1950,EA028,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae56,,1950,EA028,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae57,,1930,EA028,3,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA028,3,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA028,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA028,3,,verhulpen1936,Ethnology_Vol7_No2_Apr_1968, +Ae7,,1910,EA028,3,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA028,5,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,1950,EA028,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Af1,City and environs of Abomey,1890,EA028,3,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA028,3,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA028,3,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,with special reference to the Kwahu,1930,EA028,3,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA028,3,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,1930,EA028,3,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af15,,1920,EA028,3,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,1910,EA028,3,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA028,3,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA028,3,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA028,3,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,1950,EA028,3,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA028,3,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,with special reference to the Kalabari,1920,EA028,3,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA028,3,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p71, +Af23,with special reference to the village of Mgbom,1950,EA028,5,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA028,3,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,1930,EA028,3,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,with special reference to the Etsako,1900,EA028,3,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA028,3,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA028,5,,gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,1950,EA028,3,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA028,3,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,1920,EA028,3,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,,,EA028,NA,,,, +Af32,Abeouta Province and Benin,1920,EA028,3,,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA028,3,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA028,3,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA028,3,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA028,3,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p71, +Af37,with special reference to the Akpafu,1900,EA028,3,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA028,3,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA028,3,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA028,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA028,3,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA028,3,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA028,3,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p71, +Af43,,1930,EA028,3,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p71, +Af44,,,EA028,NA,,,, +Af45,,1900,EA028,3,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA028,3,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA028,3,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA028,3,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA028,3,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA028,3,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,1920,EA028,3,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA028,3,,tauxier1924a,EthnographicAtlas_1967_p71, +Af52,,1920,EA028,3,,tauxier1924a,EthnographicAtlas_1967_p71, +Af53,,1950,EA028,3,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA028,3,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,1950,EA028,3,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA028,3,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA028,3,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,1900,EA028,3,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA028,3,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA028,3,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA028,3,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,1900,EA028,3,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p71, +Ag1,Segou to Bamako on Niger River,1920,EA028,5,"But intensive cultivation, with some irrigation, of gardens and of fields bordering watercourses",dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA028,3,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,1910,EA028,3,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,1910,EA028,3,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA028,3,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,1950,EA028,3,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA028,3,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA028,3,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p71, +Ag17,,1940,EA028,3,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA028,3,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p71, +Ag19,with special reference to the Felup,1930,EA028,3,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p71, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA028,5,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,1930,EA028,3,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA028,3,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,with special reference to those of Sine,1920,EA028,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p71, +Ag23,,1910,EA028,3,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA028,3,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA028,3,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p71, +Ag26,,1930,EA028,3,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p71, +Ag27,,1910,EA028,3,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,1930,EA028,5,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA028,5,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA028,5,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p71, +Ag30,,1910,EA028,3,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p71, +Ag31,,1910,EA028,3,,cheron1913; holas1957,EthnographicAtlas_1967_p71, +Ag32,,1900,EA028,6,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p71, +Ag33,,1920,EA028,3,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA028,3,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA028,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA028,5,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA028,3,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA028,3,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA028,3,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA028,5,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,1910,EA028,3,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA028,5,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,1910,EA028,5,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA028,3,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA028,3,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA028,3,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA028,5,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA028,3,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,1890,EA028,5,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p75, +Ag49,,1930,EA028,5,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA028,3,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,1910,EA028,3,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA028,3,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA028,5,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA028,3,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA028,3,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA028,3,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA028,6,Flood-plain agriculture,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA028,3,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,1930,EA028,3,,labouret1934; sidibe1932,EthnographicAtlas_1967_p71, +Ah1,Zaria Province,1930,EA028,5,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA028,3,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA028,3,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah12,,1920,EA028,3,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA028,3,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA028,5,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,1920,EA028,5,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p75, +Ah16,,1900,EA028,5,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA028,3,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA028,5,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA028,5,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p75, +Ah2,,1920,EA028,3,,meek1931a,EthnographicAtlas_1967_p75, +Ah20,,1920,EA028,5,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,1920,EA028,3,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA028,NA,,,, +Ah23,,,EA028,NA,,,, +Ah24,,,EA028,NA,,,, +Ah25,,1920,EA028,3,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA028,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA028,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA028,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA028,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA028,3,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,1920,EA028,5,,meek1931b,EthnographicAtlas_1967_p75, +Ah31,,1910,EA028,5,,haughton1912; meek1931b,EthnographicAtlas_1967_p75, +Ah32,,1920,EA028,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA028,5,,meek1931b; temple1922,EthnographicAtlas_1967_p75, +Ah34,with special reference to the Malabu,1920,EA028,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA028,5,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA028,5,,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,1920,EA028,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA028,5,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA028,5,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,1920,EA028,5,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p75, +Ah5,,1930,EA028,5,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,1920,EA028,3,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA028,5,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,1910,EA028,3,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA028,3,,diamond1964; gunn1953,EthnographicAtlas_1967_p75, +Ai1,,1920,EA028,3,,daigre193232; leynaud1954,EthnographicAtlas_1967_p75, +Ai10,Nuba Hills,1940,EA028,5,,nadel1947,EthnographicAtlas_1967_p75, +Ai11,,1900,EA028,3,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA028,3,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,1920,EA028,3,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA028,3,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA028,3,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,1910,EA028,3,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA028,3,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA028,5,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA028,5,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA028,NA,,,, +Ai20,,1910,EA028,3,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA028,3,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,1890,EA028,3,,delafosse1897,EthnographicAtlas_1967_p75, +Ai23,,1920,EA028,3,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,1900,EA028,3,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA028,3,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA028,3,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p75, +Ai27,,1890,EA028,3,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA028,3,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA028,3,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA028,3,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA028,3,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA028,3,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA028,3,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA028,3,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,1880,EA028,3,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA028,3,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,1920,EA028,3,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,1940,EA028,5,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA028,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai39,,1940,EA028,3,,nadel1947,EthnographicAtlas_1967_p75, +Ai4,,1920,EA028,5,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA028,5,,nadel1947,EthnographicAtlas_1967_p75, +Ai41,,1930,EA028,5,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai42,,1940,EA028,3,,nadel1947; nadel1950,EthnographicAtlas_1967_p75, +Ai43,,1930,EA028,5,,nadel1947; stevenson1940,EthnographicAtlas_1967_p75, +Ai44,,1920,EA028,5,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,1930,EA028,3,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA028,3,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p75, +Ai47,Northern division,1939,EA028,3,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,1920,EA028,3,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA028,3,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA028,3,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,1930,EA028,5,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p75, +Ai9,Around Yagoua in Cameroon,1910,EA028,6,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,1950,EA028,3,,lawrance1957,EthnographicAtlas_1967_p75, +Aj10,,1920,EA028,3,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA028,3,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA028,3,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,1930,EA028,3,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA028,3,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA028,5,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,with special reference to the Riverain Mondari,1930,EA028,3,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p79, +Aj17,,1890,EA028,3,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA028,3,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,1920,EA028,3,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p79, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA028,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,1940,EA028,3,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p79, +Aj21,,1930,EA028,3,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,1930,EA028,3,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA028,3,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA028,3,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,1920,EA028,6,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA028,5,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p79, +Aj27,,1920,EA028,3,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA028,3,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA028,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA028,3,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA028,NA,,,, +Aj31,,,EA028,NA,,,, +Aj4,,1920,EA028,3,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA028,3,"Though flood-water irrigation is practiced, agriculture is rarely intensive",elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA028,5,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA028,5,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA028,3,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA028,6,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA028,5,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA028,2,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA028,3,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p79, +Ca12,,1880,EA028,5,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p79, +Ca13,with special reference to the eastern Macha,1950,EA028,5,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p79, +Ca14,,1950,EA028,5,,cerulli1956; fleming1965,EthnographicAtlas_1967_p79, +Ca15,,1930,EA028,5,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca16,,1930,EA028,5,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca17,,1950,EA028,6,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca18,,1940,EA028,3,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA028,3,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA028,5,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,1890,EA028,3,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA028,3,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA028,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA028,5,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,1950,EA028,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA028,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA028,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA028,3,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA028,5,,cerulli1956; jensen1959,EthnographicAtlas_1967_p79, +Ca29,,1920,EA028,5,,huntingford1955b; straube1963,EthnographicAtlas_1967_p79, +Ca3,,1950,EA028,5,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,Kafa Kingdom,1890,EA028,5,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p79, +Ca31,,1860,EA028,5,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,1860,EA028,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca33,,1860,EA028,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca34,,1920,EA028,2,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA028,2,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA028,2,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA028,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA028,3,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA028,5,,lewis1965b,EthnographicAtlas_1967_p79, +Ca4,,1950,EA028,5,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p79, +Ca40,,1950,EA028,5,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA028,5,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA028,5,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA028,NA,,,, +Ca5,,1930,EA028,6,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p79, +Ca6,,1880,EA028,2,Except for a little cultivation of maize and date palms on the Awash River,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA028,5,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,1940,EA028,6,,leslau1950; shack1963,EthnographicAtlas_1967_p79, +Ca9,,1890,EA028,3,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,,EA028,NA,,,, +Cb10,,1920,EA028,3,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA028,2,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA028,6,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA028,3,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA028,3,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA028,3,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA028,3,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA028,5,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,1930,EA028,5,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p79, +Cb19,,1870,EA028,5,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA028,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,1920,EA028,5,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA028,2,,pfeffer1936,EthnographicAtlas_1967_p83, +Cb22,,1920,EA028,3,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA028,3,,kane1939; lafont1939,EthnographicAtlas_1967_p83, +Cb24,Wodaabe of Niger,1950,EA028,2,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,1930,EA028,3,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA028,6,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,1920,EA028,5,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA028,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA028,NA,,,, +Cb3,Bamba division,1940,EA028,5,There is some irrigation,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,1920,EA028,3,,reid1930,EthnographicAtlas_1967_p79, +Cb5,,1910,EA028,3,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p79, +Cb6,,1920,EA028,3,,woodnd,EthnographicAtlas_1967_p79, +Cb7,,1920,EA028,3,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA028,3,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA028,3,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA028,6,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA028,6,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,1860,EA028,6,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA028,6,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA028,5,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA028,6,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA028,NA,,,, +Cc16,,1930,EA028,6,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,1930,EA028,6,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p83, +Cc18,,1910,EA028,5,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA028,6,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA028,6,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,with special reference to the more nomadic northern groups,1910,EA028,5,,adeler1939; tauxier1912,EthnographicAtlas_1967_p83, +Cc3,inhabitants of the oasis of Siwa,1920,EA028,6,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA028,6,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,1910,EA028,6,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p83, +Cc6,,1910,EA028,2,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA028,2,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA028,NA,,,, +Cc9,Ahaggaren tribe,1920,EA028,6,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA028,6,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,1900,EA028,6,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA028,3,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p83, +Cd12,,1870,EA028,6,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,1930,EA028,5,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA028,5,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA028,6,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA028,6,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA028,5,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA028,5,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA028,5,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA028,6,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,1940,EA028,5,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA028,5,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA028,5,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA028,5,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA028,6,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,with special reference to the New Empire,-1400,EA028,6,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,with special reference to the Zemmur tribe,1910,EA028,5,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA028,6,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA028,6,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA028,5,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA028,NA,,,, +Ce3,City and environs of Rome,100,EA028,5,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA028,5,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA028,5,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA028,5,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA028,5,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA028,5,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA028,5,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,of the Transvaal,1850,EA028,5,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No4_Oct_1962, +Cf3,,1930,EA028,5,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA028,5,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA028,5,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA028,5,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA028,2,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA028,5,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA028,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA028,5,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA028,5,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA028,NA,,,, +Ch11,Viriatino Village,1955,EA028,6,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA028,5,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA028,5,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,1900,EA028,5,,heffner1955; wichmann1913,EthnographicAtlas_1967_p83, +Ch5,with special reference to the village of Dragelevtsy,1940,EA028,5,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA028,5,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA028,5,,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA028,5,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA028,5,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,with special reference to the Baga Dorbed group,1920,EA028,2,,aberle1953; adelmannd,EthnographicAtlas_1967_p83, +Ci10,Vicinity of Erevan,1900,EA028,5,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA028,6,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,Abkhaz Tribe,1880,EA028,5,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA028,5,,grigolia1939,EthnographicAtlas_1967_p83, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA028,5,,gadzhieva1958,EthnographicAtlas_1967_p83, +Ci4,,1920,EA028,5,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA028,5,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA028,5,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p83, +Ci7,,1900,EA028,5,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p83, +Ci8,,1850,EA028,6,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA028,5,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA028,6,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA028,6,,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,Unspecified,1920,EA028,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA028,5,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA028,6,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,1930,EA028,1,,dickson1949,EthnographicAtlas_1967_p87, +Cj6,with special reference to the sedentary population,1950,EA028,5,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA028,5,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p87, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA028,5,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,1950,EA028,6,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA028,6,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA028,5,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA028,6,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA028,2,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA028,5,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA028,6,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA028,6,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA028,6,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,1890,EA028,6,,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA028,2,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA028,6,,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,1920,EA028,6,,feilberg1952; wilson1926,EthnographicAtlas_1967_p87, +Ea9,,1950,EA028,6,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA028,2,Until recently the chief crop was hay,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,1920,EA028,5,,krader1963; schram1954,EthnographicAtlas_1967_p87, +Eb3,Narobanchin Territory,1940,EA028,2,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p87, +Eb4,,,EA028,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA028,6,,freikin1954; odonovan1882,Ethnology_Vol2_No2_Apr_1963, +Eb6,,,EA028,NA,,,, +Eb7,,1930,EA028,2,,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA028,NA,,,, +Ec1,Sakhalin Island,1920,EA028,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA028,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,1900,EA028,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA028,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA028,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA028,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA028,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA028,1,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA028,3,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,1900,EA028,1,,shimkin1939,EthnographicAtlas_1967_p87, +Ec9,,1920,EA028,3,,lattimore1933,EthnographicAtlas_1967_p87, +Ed1,Kanghwa Island,1950,EA028,6,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA028,5,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA028,NA,,,, +Ed14,,,EA028,NA,,,, +Ed15a,,,EA028,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA028,6,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA028,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA028,5,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,Aigun District,1920,EA028,5,,shirokogoroff1924,EthnographicAtlas_1967_p87, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA028,6,,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA028,6,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA028,6,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA028,5,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA028,6,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA028,5,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA028,3,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA028,6,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA028,5,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA028,6,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA028,5,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA028,5,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA028,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA028,6,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA028,6,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA028,NA,,,, +Ef11,Village and environs of Senapur,1945,EA028,6,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA028,6,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA028,NA,,,, +Ef4,,,EA028,NA,,,, +Ef5,,1900,EA028,5,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,1940,EA028,5,,roy1915; roy1951,EthnographicAtlas_1967_p87, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA028,5,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA028,6,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA028,5,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA028,2,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA028,6,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA028,NA,,,, +Eg12,,,EA028,NA,,,, +Eg13,Bastar State,1941,EA028,3,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA028,3,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA028,6,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA028,3,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA028,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA028,5,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA028,6,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA028,3,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,1940,EA028,5,,griffiths1946,EthnographicAtlas_1967_p91, +Eg9,,1930,EA028,3,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA028,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA028,NA,,,, +Eh2,,1900,EA028,6,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA028,6,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA028,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA028,4,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA028,6,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,1900,EA028,3,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA028,3,"But McLeod reports 'intensive, irrigated' (EA028 code ""6"") planted in 'cereal grains' (EA029 code ""6"")",faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91,"Assume Murdock comment refers to this variable, not Col 30 as stated in Gray (1999)" +Eh9,,1930,EA028,5,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA028,3,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA028,3,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p91, +Ei11,,1910,EA028,3,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA028,3,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA028,6,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA028,3,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA028,NA,,,, +Ei16,,1910,EA028,3,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA028,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA028,3,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,1940,EA028,3,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA028,3,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA028,NA,,,, +Ei3,Nondwin Village,1950,EA028,6,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA028,3,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA028,3,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA028,3,Transitional today from swidden agriculture to irrigated rice cultivation,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,1910,EA028,6,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA028,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,1880,EA028,3,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p91, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA028,3,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA028,3,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA028,6,,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA028,3,But some irrigation in recent years,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA028,6,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA028,3,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA028,5,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA028,6,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA028,3,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA028,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA028,6,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA028,6,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,of the Mergui Archipelago,1920,EA028,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p91, +Ej7,,1950,EA028,3,,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,with special reference to those of Trengganu,1940,EA028,6,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA028,6,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA028,3,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,1930,EA028,3,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p91, +Ia11,,1930,EA028,6,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA028,6,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA028,4,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,1930,EA028,3,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p95, +Ia15,with special reference to those of the Agusan Valley,1920,EA028,3,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA028,6,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA028,NA,,,, +Ia18,,,EA028,NA,,,, +Ia2,,1950,EA028,6,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA028,6,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA028,3,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA028,3,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA028,3,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA028,3,,fox1954,EthnographicAtlas_1967_p91, +Ia8,,1900,EA028,6,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA028,6,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA028,3,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA028,6,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA028,6,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,with special reference to the Toba group,1930,EA028,6,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p95, +Ib5,with special reference to the village of Sensuron,1920,EA028,3,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA028,6,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,with special reference to those of North Pageh,1920,EA028,4,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p95, +Ib8,with special reference to the Ridan group,1900,EA028,4,,hagen1908; schebesta1928,EthnographicAtlas_1967_p95, +Ib9,,,EA028,NA,,,, +Ic1,Borongloe,1940,EA028,6,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA028,3,,hueting1921; riedel1885,EthnographicAtlas_1967_p95, +Ic11,Allang,1950,EA028,3,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA028,3,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA028,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA028,3,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,with special reference to the Mountain Belu,1950,EA028,3,,vroklage1952,EthnographicAtlas_1967_p95, +Ic4,,,EA028,NA,,,, +Ic5,Bare'e subgroup,1910,EA028,3,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p95, +Ic6,,1930,EA028,3,,drabbe1940,EthnographicAtlas_1967_p95, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA028,3,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,1890,EA028,4,,pleyte1893,EthnographicAtlas_1967_p95, +Ic9,with special reference to eastern Sumba,1930,EA028,6,,nooteboom1940,EthnographicAtlas_1967_p95, +Id1,Alice Springs and environs,1900,EA028,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA028,1,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA028,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA028,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA028,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA028,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA028,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA028,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA028,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,with special reference to the Archer River group,1920,EA028,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p95, +Id7,,1940,EA028,1,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA028,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,1910,EA028,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p95, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA028,3,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA028,3,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA028,5,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA028,4,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA028,4,,landtman1927,EthnographicAtlas_1967_p95, +Ie14,,1900,EA028,4,,haddon1908,EthnographicAtlas_1967_p95, +Ie15,Kalabu; Northern Abelam,1930,EA028,4,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA028,4,,williams194041,EthnographicAtlas_1967_p95, +Ie17,,1940,EA028,4,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA028,5,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA028,4,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA028,4,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA028,4,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,1900,EA028,4,,malinowski1916,EthnographicAtlas_1967_p95, +Ie22,,1900,EA028,4,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,1950,EA028,4,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,1870,EA028,4,,chalmers1890; lawes1879,EthnographicAtlas_1967_p95, +Ie25,,1920,EA028,4,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,1940,EA028,4,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,1910,EA028,4,,thurnwald1916,EthnographicAtlas_1967_p99, +Ie28,,1940,EA028,4,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA028,4,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA028,4,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA028,4,,pouwer1955,EthnographicAtlas_1967_p99, +Ie31,,1950,EA028,4,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA028,4,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA028,4,The stable food is sago,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA028,NA,,,, +Ie35,,1930,EA028,4,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA028,NA,,,, +Ie37,,,EA028,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA028,4,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA028,4,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA028,4,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA028,4,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,1930,EA028,4,,held1947,EthnographicAtlas_1967_p95, +Ie7,with special reference to the Mae group,1950,EA028,3,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA028,4,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA028,4,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA028,4,Irrigated cultivation of wet taro and swidden cultivation of dry taro also occur,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA028,NA,,,, +If11,,1860,EA028,4,,sarfert1919,EthnographicAtlas_1967_p99, +If12,,1940,EA028,4,,mason1954,EthnographicAtlas_1967_p99, +If13,,1900,EA028,4,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p99, +If14,Makin and Butiritari Islands (N),1890,EA028,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA028,4,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,1960,EA028,4,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA028,4,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA028,4,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA028,4,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA028,4,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA028,4,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA028,4,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,with special reference to the inhabitants of Onotoa,1940,EA028,4,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p99, +If8,with special reference to those of Saipa,1950,EA028,3,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA028,4,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,Northeastern group,1940,EA028,4,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA028,4,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA028,4,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,with special reference to the Varisi,1900,EA028,4,,scheffler1965,EthnographicAtlas_1967_p99, +Ig13,,1900,EA028,4,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p99, +Ig14,,1900,EA028,4,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA028,NA,,,, +Ig16,,,EA028,NA,,,, +Ig17,,,EA028,NA,,,, +Ig18,,,EA028,NA,,,, +Ig19,,,EA028,NA,,,, +Ig2,Kiriwina Island,1910,EA028,4,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA028,4,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA028,4,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA028,4,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA028,4,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,1920,EA028,4,,fortune1932b,EthnographicAtlas_1967_p99, +Ig6,,1900,EA028,4,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA028,4,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA028,NA,,,, +Ig9,Peri Village,1920,EA028,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA028,4,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,Whitsands,1920,EA028,4,,humphreys1926,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA028,NA,,,, +Ih12,,,EA028,NA,,,, +Ih13,,,EA028,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA028,4,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA028,4,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA028,4,Some small-scale irrigation of taro,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA028,4,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA028,6,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p99, +Ih6,,1890,EA028,4,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p99, +Ih7,,1910,EA028,4,,hadfield1920; ray1917,EthnographicAtlas_1967_p99, +Ih8,with special reference to the village of Nakaroka,1940,EA028,4,,quain1949,EthnographicAtlas_1967_p99, +Ih9,Graciosa Bay,1930,EA028,4,,davenport1964,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA028,4,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,1950,EA028,4,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA028,4,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA028,4,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA028,4,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA028,4,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA028,4,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA028,4,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA028,4,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p99, +Ii6,with special reference to Atafu,1900,EA028,4,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA028,4,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA028,4,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA028,4,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA028,4,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,1900,EA028,4,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA028,3,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA028,4,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA028,4,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,1900,EA028,4,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p103, +Ij6,,1800,EA028,6,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p103, +Ij7,,1900,EA028,4,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,1900,EA028,4,But with some irrigation,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p103, +Ij9,,1860,EA028,3,,metraux1940,EthnographicAtlas_1967_p103, +Na1,,1930,EA028,1,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA028,1,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA028,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA028,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA028,1,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA028,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,1860,EA028,1,,helmandlurie1961,EthnographicAtlas_1967_p103, +Na16,,1860,EA028,1,,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA028,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA028,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA028,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA028,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA028,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA028,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA028,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA028,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA028,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA028,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA028,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA028,1,,jenness1937,EthnographicAtlas_1967_p103, +Na29,,1850,EA028,1,,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA028,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA028,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA028,1,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA028,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA028,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA028,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA028,1,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA028,3,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA028,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA028,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA028,1,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA028,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA028,3,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA028,1,But there was some agriculture in post-Columbian times,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA028,3,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA028,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA028,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA028,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA028,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA028,1,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA028,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA028,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA028,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA028,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA028,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA028,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA028,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA028,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA028,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA028,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA028,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA028,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA028,1,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA028,1,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA028,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA028,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA028,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA028,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA028,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA028,1,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA028,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA028,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA028,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA028,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA028,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA028,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,1860,EA028,1,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA028,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p107, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA028,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA028,1,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA028,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA028,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA028,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,1860,EA028,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA028,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA028,1,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA028,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA028,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA028,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA028,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA028,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA028,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA028,1,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,1860,EA028,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA028,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA028,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA028,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA028,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA028,1,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA028,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA028,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA028,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,with special reference to those near Santa Rosa,1860,EA028,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc2,,1850,EA028,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,1860,EA028,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,1860,EA028,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA028,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,1870,EA028,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,Tulare Lake,1860,EA028,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA028,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,1770,EA028,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA028,1,,driver1937; gifford1917,EthnographicAtlas_1967_p107, +Nc28,,1800,EA028,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA028,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA028,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA028,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA028,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,1870,EA028,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc33,,1860,EA028,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA028,1,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA028,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA028,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA028,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA028,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA028,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA028,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA028,1,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,1860,EA028,1,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA028,1,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA028,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA028,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA028,1,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA028,1,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA028,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA028,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA028,1,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA028,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA028,2,Practiced only by a few families,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA028,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA028,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA028,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA028,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA028,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA028,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA028,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA028,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA028,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA028,1,But irrigation of wild seeds was practiced,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA028,6,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA028,1,But plots of wild seeds were irrigated,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA028,2,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA028,1,"But 'casual agriculture' (code ""2"") for the Panamint of Death Valley",driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA028,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA028,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA028,2,Plots of wild seeds were sown and cultivated,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA028,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA028,2,Plots of wild seeds were planted and irrigated,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA028,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA028,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA028,1,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA028,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA028,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA028,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA028,1,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA028,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA028,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA028,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA028,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA028,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA028,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA028,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA028,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA028,2,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA028,6,But agriculture was practiced by only a few families,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA028,6,But only a few families practiced agriculture,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA028,6,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA028,6,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA028,6,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA028,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA028,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA028,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA028,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA028,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA028,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA028,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA028,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA028,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA028,2,But agriculture was practiced by a few families only,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA028,2,But agriculture was practiced by a few families only,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA028,3,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA028,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA028,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA028,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA028,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,1860,EA028,5,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA028,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA028,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA028,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA028,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA028,5,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,1800,EA028,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,1860,EA028,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA028,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA028,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,1870,EA028,1,,mcallister1937,EthnographicAtlas_1967_p111, +Ne20,,1850,EA028,2,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p115, +Ne21,,,EA028,NA,,,, +Ne3,Comanche Tribe,1870,EA028,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p111, +Ne4,,1870,EA028,2,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA028,2,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,1830,EA028,5,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p111, +Ne7,,1880,EA028,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,1870,EA028,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA028,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA028,3,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA028,3,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA028,3,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA028,3,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA028,3,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA028,NA,,,, +Nf2,,1850,EA028,3,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p115, +Nf3,Omaha Tribe,1850,EA028,3,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA028,3,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,1860,EA028,3,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA028,3,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA028,3,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA028,3,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,1870,EA028,3,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA028,3,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA028,3,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,1750,EA028,3,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p115, +Ng12,,1760,EA028,3,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p115, +Ng13,,,EA028,NA,,,, +Ng14,,,EA028,NA,,,, +Ng15,,,EA028,NA,,,, +Ng2,,,EA028,NA,,,, +Ng3,Upper division in Alabama,1750,EA028,3,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA028,NA,,,, +Ng5,,1750,EA028,3,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA028,3,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA028,3,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,1560,EA028,3,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p115, +Ng9,,1920,EA028,5,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA028,2,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA028,6,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA028,6,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA028,6,,gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA028,5,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,1920,EA028,6,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA028,2,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA028,3,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA028,3,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA028,6,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA028,5,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,1950,EA028,6,,dozier1954,EthnographicAtlas_1967_p115, +Nh20,,1860,EA028,5,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA028,5,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA028,5,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,1870,EA028,2,,gifford1932a,EthnographicAtlas_1967_p115, +Nh24,,1880,EA028,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,1920,EA028,6,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA028,NA,,,, +Nh27,,,EA028,NA,,,, +Nh3,,1930,EA028,6,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA028,6,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA028,6,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA028,5,,parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA028,6,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA028,6,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,1920,EA028,6,,parsons1939; trager1943,EthnographicAtlas_1967_p115, +Ni1,,1930,EA028,5,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA028,6,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA028,3,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,1900,EA028,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p115, +Ni5,,1570,EA028,1,,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA028,6,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA028,6,,beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA028,NA,,,, +Ni9,,,EA028,NA,,,, +Nj1,Ojitlan,1940,EA028,3,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA028,3,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA028,NA,,,, +Nj12,,,EA028,NA,,,, +Nj13,,,EA028,NA,,,, +Nj14,,,EA028,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA028,6,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA028,3,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,1940,EA028,3,"Aboriginally 'casual agriculture' (code ""2"")",kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA028,NA,,,, +Nj6,,,EA028,NA,,,, +Nj7,with special reference to Ayutla,1930,EA028,3,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA028,5,,foster1948,EthnographicAtlas_1967_p119, +Nj9,,1960,EA028,3,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA028,3,But bananas are often the staple today,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,1900,EA028,3,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p119, +Sa11,,,EA028,NA,,,, +Sa12,,1948,EA028,3,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA028,3,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA028,NA,,,, +Sa15,,,EA028,NA,,,, +Sa16,,,EA028,NA,,,, +Sa17,,,EA028,NA,,,, +Sa2,,,EA028,NA,,,, +Sa3,,1930,EA028,3,,wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA028,3,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA028,3,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA028,3,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA028,4,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA028,3,,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA028,3,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA028,5,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA028,3,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,with special reference to the Iroka,1940,EA028,3,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA028,3,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA028,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,Goajiro Tribe,1940,EA028,2,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA028,3,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,1520,EA028,6,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA028,5,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA028,2,"Agriculture is absent in some groups, recent and of varying importance in others",hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA028,3,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,1930,EA028,3,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p119, +Sc12,,1910,EA028,3,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p119, +Sc13,,1950,EA028,3,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p119, +Sc14,,,EA028,NA,,,, +Sc15,,1910,EA028,3,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p119, +Sc16,with special reference to the Makitare,1920,EA028,3,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p119, +Sc17,,1950,EA028,3,,wilbert1963,EthnographicAtlas_1967_p119, +Sc18,,1960,EA028,3,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA028,3,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA028,3,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA028,3,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA028,3,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA028,3,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA028,3,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,1950,EA028,3,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p119, +Sc9,,1950,EA028,3,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p119, +Sd1,Cabrura village,1950,EA028,3,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA028,3,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,1920,EA028,3,,nimuendaju1926,EthnographicAtlas_1967_p119, +Sd4,,1950,EA028,3,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA028,3,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,1960,EA028,1,But a few groups grow a little manioc,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,1950,EA028,3,,fock1963,EthnographicAtlas_1967_p119, +Sd8,,1950,EA028,2,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA028,3,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA028,3,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA028,3,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,1960,EA028,3,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA028,NA,,,, +Se2,,1940,EA028,3,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA028,3,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA028,3,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA028,3,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA028,3,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA028,NA,,,, +Se8,Upper Inuya River,1950,EA028,3,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA028,3,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA028,6,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA028,3,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA028,4,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA028,3,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,1900,EA028,5,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,1540,EA028,6,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA028,3,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA028,NA,,,, +Sf9,,,EA028,NA,,,, +Sg1,Eastern and central,1870,EA028,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA028,5,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA028,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA028,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA028,1,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA028,2,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA028,3,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,Those in contact with mission,1800,EA028,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA028,3,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA028,2,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,1890,EA028,2,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,1900,EA028,3,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p123, +Sh8,with special reference to those of the Argentine Chaco,1964,EA028,4,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA028,2,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA028,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA028,3,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA028,3,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA028,3,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA028,3,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA028,3,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,1900,EA028,2,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p123, +Si7,with special reference to the Cozarimi,1910,EA028,3,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA028,3,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA028,NA,,,, +Sj1,,1950,EA028,3,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,Taquapiri,1950,EA028,3,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA028,3,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA028,3,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA028,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA028,3,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,Naknenuk subtribe,1880,EA028,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p123, +Sj6,with special reference to the Guajajara subgroup,1930,EA028,3,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA028,3,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA028,3,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,1950,EA028,3,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA028,5,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA028,5,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA028,5,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA028,5,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA028,5,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA028,5,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA028,5,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA028,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA028,5,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA028,5,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA028,4,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA028,4,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA028,5,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA028,5,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA028,5,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA028,5,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA028,5,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA028,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA028,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA028,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA028,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA028,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA028,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA028,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA028,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA028,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA028,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA029,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA029,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA029,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA029,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA029,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,1920,EA029,6,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p63, +Aa7,,1910,EA029,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,1850,EA029,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA029,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,1900,EA029,1,,irle1906; vedder1928,EthnographicAtlas_1967_p63, +Ab10,,1936,EA029,6,,hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,1850,EA029,5,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA029,6,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p63, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA029,6,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA029,6,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA029,6,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA029,6,,earthy1933,EthnographicAtlas_1967_p63, +Ab17,,,EA029,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA029,6,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA029,6,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,1880,EA029,6,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA029,NA,,,, +Ab21a,,1930,EA029,6,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA029,NA,,,, +Ab22,,,EA029,NA,,,, +Ab3,Ruling Luyana,1890,EA029,6,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,1920,EA029,6,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA029,6,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA029,6,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA029,6,,langandtastevin1937,EthnographicAtlas_1967_p63, +Ab8,Basuto,1860,EA029,6,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA029,6,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA029,6,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA029,6,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA029,6,,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,1920,EA029,5,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p63, +Ac13,,1950,EA029,5,,tew1950; velsen1964,EthnographicAtlas_1967_p63, +Ac14,,1900,EA029,5,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p63, +Ac15,,,EA029,NA,,,, +Ac16,,1940,EA029,4,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA029,5,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA029,4,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,1880,EA029,5,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA029,5,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p63, +Ac20,,1920,EA029,5,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA029,6,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p63, +Ac22,,1930,EA029,5,,mertens1935,EthnographicAtlas_1967_p63, +Ac23,with special reference to the western Lele,1950,EA029,6,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,1910,EA029,5,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA029,5,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p63, +Ac26,,1920,EA029,5,But Beaucorps reports that rice has become the staple crop,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA029,6,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA029,6,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p63, +Ac29,,,EA029,NA,,,, +Ac3,Zambia branch,1900,EA029,6,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA029,6,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA029,5,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA029,6,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA029,6,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA029,5,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA029,NA,,,, +Ac36,,1920,EA029,6,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,1950,EA029,6,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA029,6,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p63, +Ac39,,,EA029,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA029,6,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,1900,EA029,6,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA029,6,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA029,NA,,,, +Ac43,,1910,EA029,6,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA029,6,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,1930,EA029,6,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p63, +Ac7,,1920,EA029,6,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,1930,EA029,6,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA029,6,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,1950,EA029,6,,grottanelli1955,EthnographicAtlas_1967_p63, +Ad10,,1910,EA029,4,But maize has since replaced bananas as the principal crop,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,1930,EA029,6,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA029,6,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA029,6,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,Morogoro District,1930,EA029,6,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,1900,EA029,6,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,1920,EA029,4,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA029,6,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,1910,EA029,6,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA029,6,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA029,6,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA029,6,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,1930,EA029,6,,maurice193538,EthnographicAtlas_1967_p67, +Ad22,,1950,EA029,6,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,1910,EA029,6,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA029,6,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,1900,EA029,6,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA029,6,,sick1916,Ethnology_Vol7_No2_Apr_1968, +Ad27,,1880,EA029,6,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA029,6,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA029,5,,ingrams1930; prins1961,EthnographicAtlas_1967_p67, +Ad3,,1910,EA029,6,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,1890,EA029,5,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p67, +Ad31,,,EA029,NA,,,, +Ad32,,1900,EA029,6,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p67, +Ad33,,1900,EA029,6,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p67, +Ad34,,1910,EA029,6,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA029,6,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p67, +Ad36,,1890,EA029,6,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA029,6,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA029,6,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA029,6,,gray1963,EthnographicAtlas_1967_p67, +Ad4,Fort Hall or Metume district,1930,EA029,6,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA029,6,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA029,6,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p67, +Ad42,,1900,EA029,4,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,1900,EA029,4,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA029,5,"But Czekanowski reports tree fruits (code ""4"")",czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p67, +Ad45,,1920,EA029,6,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,1950,EA029,4,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p67, +Ad47,,1900,EA029,4,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA029,6,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA029,6,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA029,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA029,6,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA029,6,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA029,4,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA029,4,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA029,6,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,1900,EA029,4,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA029,4,,winter1956; winter1958,EthnographicAtlas_1967_p67, +Ae10,,1910,EA029,6,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA029,4,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA029,5,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA029,NA,,,, +Ae14,,1950,EA029,6,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,1940,EA029,4,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p67, +Ae16,,,EA029,NA,,,, +Ae17,,1900,EA029,4,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,1900,EA029,5,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA029,NA,,,, +Ae2,,1950,EA029,5,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,1940,EA029,5,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA029,5,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA029,5,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p67, +Ae23,,,EA029,NA,,,, +Ae24,,,EA029,NA,,,, +Ae25,,,EA029,NA,,,, +Ae26,,1910,EA029,5,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA029,5,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA029,5,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,1900,EA029,4,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p67, +Ae3,,1910,EA029,5,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,1920,EA029,4,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA029,4,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA029,4,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA029,4,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA029,6,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA029,4,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA029,5,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA029,NA,,,, +Ae38,,1920,EA029,5,,wijnant192526,EthnographicAtlas_1967_p67, +Ae39,,1920,EA029,5,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA029,5,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,1910,EA029,4,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA029,4,,andersson1953,EthnographicAtlas_1967_p67, +Ae42,,1900,EA029,5,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA029,4,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA029,5,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA029,4,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA029,4,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA029,4,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA029,6,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae49,,,EA029,NA,,,, +Ae5,,1910,EA029,6,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae50,,1920,EA029,6,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p67, +Ae51,Ndiki subtribe,1940,EA029,5,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae52,,,EA029,NA,,,, +Ae53,,,EA029,NA,,,, +Ae54,,,EA029,NA,,,, +Ae55,,1950,EA029,6,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae56,,1950,EA029,6,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae57,,1930,EA029,6,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA029,6,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA029,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA029,5,,verhulpen1936,Ethnology_Vol7_No2_Apr_1968, +Ae7,,1910,EA029,4,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA029,4,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,1950,EA029,6,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Af1,City and environs of Abomey,1890,EA029,5,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA029,5,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA029,6,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,with special reference to the Kwahu,1930,EA029,4,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA029,5,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,1930,EA029,5,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af15,,1920,EA029,6,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,1910,EA029,4,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA029,5,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA029,5,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA029,5,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,1950,EA029,6,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA029,5,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,with special reference to the Kalabari,1920,EA029,5,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA029,6,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p71, +Af23,with special reference to the village of Mgbom,1950,EA029,5,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA029,5,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,1930,EA029,5,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,with special reference to the Etsako,1900,EA029,5,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA029,6,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA029,6,,gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,1950,EA029,5,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA029,5,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,1920,EA029,5,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,,,EA029,NA,,,, +Af32,Abeouta Province and Benin,1920,EA029,5,,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA029,5,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA029,5,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA029,5,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA029,5,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p71, +Af37,with special reference to the Akpafu,1900,EA029,5,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA029,6,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA029,5,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA029,5,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA029,5,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA029,5,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA029,5,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p71, +Af43,,1930,EA029,6,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p71, +Af44,,,EA029,NA,,,, +Af45,,1900,EA029,5,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA029,6,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA029,6,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA029,6,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA029,6,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA029,6,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,1920,EA029,6,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA029,4,,tauxier1924a,EthnographicAtlas_1967_p71, +Af52,,1920,EA029,6,,tauxier1924a,EthnographicAtlas_1967_p71, +Af53,,1950,EA029,6,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA029,6,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,1950,EA029,6,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA029,6,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA029,6,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,1900,EA029,6,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA029,5,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA029,5,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA029,6,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,1900,EA029,5,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p71, +Ag1,Segou to Bamako on Niger River,1920,EA029,6,"But intensive cultivation, with some irrigation, of gardens and of fields bordering watercourses",dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA029,6,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,1910,EA029,6,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,1910,EA029,6,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA029,6,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,1950,EA029,6,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA029,6,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA029,6,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p71, +Ag17,,1940,EA029,6,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA029,6,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p71, +Ag19,with special reference to the Felup,1930,EA029,6,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p71, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA029,6,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,1930,EA029,6,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA029,6,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,with special reference to those of Sine,1920,EA029,6,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p71, +Ag23,,1910,EA029,6,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA029,6,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA029,6,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p71, +Ag26,,1930,EA029,6,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p71, +Ag27,,1910,EA029,5,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,1930,EA029,6,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA029,6,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA029,6,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p71, +Ag30,,1910,EA029,6,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p71, +Ag31,,1910,EA029,6,,cheron1913; holas1957,EthnographicAtlas_1967_p71, +Ag32,,1900,EA029,6,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p71, +Ag33,,1920,EA029,6,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA029,6,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA029,5,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA029,6,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA029,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA029,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA029,6,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA029,6,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,1910,EA029,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA029,6,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,1910,EA029,6,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA029,6,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA029,6,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA029,6,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA029,6,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA029,6,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,1890,EA029,5,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p75, +Ag49,,1930,EA029,6,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA029,6,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,1910,EA029,6,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA029,6,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA029,5,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA029,6,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA029,6,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA029,6,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA029,6,Flood-plain agriculture,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA029,6,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,1930,EA029,6,,labouret1934; sidibe1932,EthnographicAtlas_1967_p71, +Ah1,Zaria Province,1930,EA029,6,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA029,6,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA029,6,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah12,,1920,EA029,6,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA029,6,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA029,6,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,1920,EA029,6,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p75, +Ah16,,1900,EA029,6,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA029,6,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA029,6,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA029,6,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p75, +Ah2,,1920,EA029,6,,meek1931a,EthnographicAtlas_1967_p75, +Ah20,,1920,EA029,6,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,1920,EA029,6,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA029,NA,,,, +Ah23,,,EA029,NA,,,, +Ah24,,,EA029,NA,,,, +Ah25,,1920,EA029,6,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA029,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA029,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA029,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA029,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA029,5,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,1920,EA029,6,,meek1931b,EthnographicAtlas_1967_p75, +Ah31,,1910,EA029,6,,haughton1912; meek1931b,EthnographicAtlas_1967_p75, +Ah32,,1920,EA029,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA029,6,,meek1931b; temple1922,EthnographicAtlas_1967_p75, +Ah34,with special reference to the Malabu,1920,EA029,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA029,6,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA029,6,,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,1920,EA029,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA029,6,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA029,6,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,1920,EA029,6,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p75, +Ah5,,1930,EA029,6,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,1920,EA029,6,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA029,6,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,1910,EA029,6,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA029,6,,diamond1964; gunn1953,EthnographicAtlas_1967_p75, +Ai1,,1920,EA029,6,,daigre193232; leynaud1954,EthnographicAtlas_1967_p75, +Ai10,Nuba Hills,1940,EA029,6,,nadel1947,EthnographicAtlas_1967_p75, +Ai11,,1900,EA029,4,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA029,6,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,1920,EA029,6,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA029,6,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA029,6,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,1910,EA029,6,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA029,6,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA029,6,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA029,6,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA029,NA,,,, +Ai20,,1910,EA029,6,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA029,6,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,1890,EA029,6,,delafosse1897,EthnographicAtlas_1967_p75, +Ai23,,1920,EA029,5,"But Burssens reports cereal grains (code ""6"")",burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,1900,EA029,6,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA029,5,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA029,5,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p75, +Ai27,,1890,EA029,6,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA029,4,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA029,6,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA029,6,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA029,4,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA029,6,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA029,6,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA029,6,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,1880,EA029,6,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA029,6,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,1920,EA029,6,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,1940,EA029,6,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA029,6,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai39,,1940,EA029,6,,nadel1947,EthnographicAtlas_1967_p75, +Ai4,,1920,EA029,6,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA029,6,,nadel1947,EthnographicAtlas_1967_p75, +Ai41,,1930,EA029,6,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai42,,1940,EA029,6,,nadel1947; nadel1950,EthnographicAtlas_1967_p75, +Ai43,,1930,EA029,6,,nadel1947; stevenson1940,EthnographicAtlas_1967_p75, +Ai44,,1920,EA029,6,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,1930,EA029,6,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA029,6,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p75, +Ai47,Northern division,1939,EA029,6,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,1920,EA029,4,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA029,6,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA029,5,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,1930,EA029,6,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p75, +Ai9,Around Yagoua in Cameroon,1910,EA029,6,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,1950,EA029,6,,lawrance1957,EthnographicAtlas_1967_p75, +Aj10,,1920,EA029,6,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA029,6,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA029,6,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,1930,EA029,6,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA029,6,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA029,6,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,with special reference to the Riverain Mondari,1930,EA029,6,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p79, +Aj17,,1890,EA029,6,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA029,6,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,1920,EA029,6,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p79, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA029,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,1940,EA029,6,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p79, +Aj21,,1930,EA029,6,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,1930,EA029,6,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA029,6,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA029,6,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,1920,EA029,6,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA029,6,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p79, +Aj27,,1920,EA029,6,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA029,6,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA029,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA029,6,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA029,NA,,,, +Aj31,,,EA029,NA,,,, +Aj4,,1920,EA029,6,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA029,6,"Though flood-water irrigation is practiced, agriculture is rarely intensive",elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA029,6,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA029,6,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA029,4,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA029,6,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA029,6,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA029,6,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA029,6,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p79, +Ca12,,1880,EA029,6,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p79, +Ca13,with special reference to the eastern Macha,1950,EA029,6,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p79, +Ca14,,1950,EA029,5,,cerulli1956; fleming1965,EthnographicAtlas_1967_p79, +Ca15,,1930,EA029,5,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca16,,1930,EA029,5,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca17,,1950,EA029,6,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca18,,1940,EA029,6,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA029,6,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA029,6,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,1890,EA029,6,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA029,6,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA029,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA029,6,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,1950,EA029,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA029,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA029,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA029,6,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA029,5,,cerulli1956; jensen1959,EthnographicAtlas_1967_p79, +Ca29,,1920,EA029,5,,huntingford1955b; straube1963,EthnographicAtlas_1967_p79, +Ca3,,1950,EA029,6,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,Kafa Kingdom,1890,EA029,6,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p79, +Ca31,,1860,EA029,6,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,1860,EA029,6,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca33,,1860,EA029,6,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca34,,1920,EA029,6,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA029,6,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA029,6,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA029,6,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA029,6,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA029,6,,lewis1965b,EthnographicAtlas_1967_p79, +Ca4,,1950,EA029,6,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p79, +Ca40,,1950,EA029,5,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA029,5,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA029,5,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA029,NA,,,, +Ca5,,1930,EA029,6,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p79, +Ca6,,1880,EA029,6,Except for a little cultivation of maize and date palms on the Awash River,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA029,6,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,1940,EA029,5,,leslau1950; shack1963,EthnographicAtlas_1967_p79, +Ca9,,1890,EA029,6,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,,EA029,NA,,,, +Cb10,,1920,EA029,6,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA029,6,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA029,6,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA029,6,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA029,6,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA029,6,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA029,6,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA029,6,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,1930,EA029,6,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p79, +Cb19,,1870,EA029,6,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA029,6,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,1920,EA029,6,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA029,6,,pfeffer1936,EthnographicAtlas_1967_p83, +Cb22,,1920,EA029,6,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA029,6,,kane1939; lafont1939,EthnographicAtlas_1967_p83, +Cb24,Wodaabe of Niger,1950,EA029,6,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,1930,EA029,6,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA029,6,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,1920,EA029,6,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA029,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA029,NA,,,, +Cb3,Bamba division,1940,EA029,6,There is some irrigation,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,1920,EA029,6,,reid1930,EthnographicAtlas_1967_p79, +Cb5,,1910,EA029,6,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p79, +Cb6,,1920,EA029,6,,woodnd,EthnographicAtlas_1967_p79, +Cb7,,1920,EA029,6,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA029,6,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA029,6,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA029,4,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA029,6,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,1860,EA029,4,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA029,4,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA029,6,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA029,6,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA029,NA,,,, +Cc16,,1930,EA029,4,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,1930,EA029,4,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p83, +Cc18,,1910,EA029,6,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA029,6,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA029,4,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,with special reference to the more nomadic northern groups,1910,EA029,6,,adeler1939; tauxier1912,EthnographicAtlas_1967_p83, +Cc3,inhabitants of the oasis of Siwa,1920,EA029,4,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA029,4,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,1910,EA029,6,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p83, +Cc6,,,EA029,NA,,,, +Cc7,,,EA029,NA,,,, +Cc8,,,EA029,NA,,,, +Cc9,Ahaggaren tribe,1920,EA029,6,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA029,4,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,1900,EA029,6,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA029,6,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p83, +Cd12,,1870,EA029,6,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,1930,EA029,6,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA029,6,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA029,6,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA029,6,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA029,6,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA029,6,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA029,4,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA029,6,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,1940,EA029,6,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA029,6,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA029,6,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA029,6,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA029,6,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,with special reference to the New Empire,-1400,EA029,6,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,with special reference to the Zemmur tribe,1910,EA029,6,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA029,6,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA029,6,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA029,6,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA029,NA,,,, +Ce3,City and environs of Rome,100,EA029,6,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA029,6,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA029,6,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA029,6,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA029,6,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA029,6,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA029,6,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,of the Transvaal,1850,EA029,6,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No4_Oct_1962, +Cf3,,1930,EA029,5,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA029,6,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA029,6,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA029,6,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA029,6,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA029,5,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA029,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA029,6,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA029,6,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA029,NA,,,, +Ch11,Viriatino Village,1955,EA029,6,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA029,6,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA029,6,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,1900,EA029,6,,heffner1955; wichmann1913,EthnographicAtlas_1967_p83, +Ch5,with special reference to the village of Dragelevtsy,1940,EA029,6,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA029,5,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA029,6,,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA029,6,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA029,6,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,with special reference to the Baga Dorbed group,1920,EA029,6,,aberle1953; adelmannd,EthnographicAtlas_1967_p83, +Ci10,Vicinity of Erevan,1900,EA029,6,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA029,6,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,Abkhaz Tribe,1880,EA029,6,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA029,6,,grigolia1939,EthnographicAtlas_1967_p83, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA029,6,,gadzhieva1958,EthnographicAtlas_1967_p83, +Ci4,,1920,EA029,6,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA029,6,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA029,6,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p83, +Ci7,,1900,EA029,6,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p83, +Ci8,,1850,EA029,6,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA029,6,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA029,6,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA029,6,,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,Unspecified,1920,EA029,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA029,6,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA029,6,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,1930,EA029,1,,dickson1949,EthnographicAtlas_1967_p87, +Cj6,with special reference to the sedentary population,1950,EA029,6,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA029,4,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p87, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA029,6,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,1950,EA029,6,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA029,6,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA029,6,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA029,6,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA029,3,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA029,6,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA029,6,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA029,6,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA029,6,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,1890,EA029,6,,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA029,6,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA029,6,,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,1920,EA029,6,,feilberg1952; wilson1926,EthnographicAtlas_1967_p87, +Ea9,,1950,EA029,6,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA029,NA,Until recently the chief crop was hay,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,1920,EA029,6,,krader1963; schram1954,EthnographicAtlas_1967_p87, +Eb3,,,EA029,NA,,,, +Eb4,,,EA029,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA029,6,,freikin1954; odonovan1882,Ethnology_Vol2_No2_Apr_1963, +Eb6,,,EA029,NA,,,, +Eb7,,,EA029,NA,,,, +Eb8,,,EA029,NA,,,, +Ec1,Sakhalin Island,1920,EA029,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA029,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,1900,EA029,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA029,6,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA029,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA029,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA029,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA029,1,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA029,6,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,1900,EA029,1,,shimkin1939,EthnographicAtlas_1967_p87, +Ec9,,1920,EA029,6,,lattimore1933,EthnographicAtlas_1967_p87, +Ed1,Kanghwa Island,1950,EA029,6,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA029,5,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA029,NA,,,, +Ed14,,,EA029,NA,,,, +Ed15a,,,EA029,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA029,6,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA029,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA029,6,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,Aigun District,1920,EA029,6,,shirokogoroff1924,EthnographicAtlas_1967_p87, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA029,6,,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA029,6,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA029,6,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA029,5,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA029,6,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA029,6,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA029,6,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA029,6,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA029,6,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA029,6,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA029,6,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA029,6,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA029,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA029,6,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA029,6,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA029,NA,,,, +Ef11,Village and environs of Senapur,1945,EA029,6,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA029,6,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA029,NA,,,, +Ef4,,,EA029,NA,,,, +Ef5,,1900,EA029,6,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,1940,EA029,6,,roy1915; roy1951,EthnographicAtlas_1967_p87, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA029,6,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA029,6,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA029,6,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA029,6,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA029,6,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA029,NA,,,, +Eg12,,,EA029,NA,,,, +Eg13,Bastar State,1941,EA029,6,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA029,6,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA029,6,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA029,6,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA029,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA029,6,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA029,6,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA029,5,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,1940,EA029,6,,griffiths1946,EthnographicAtlas_1967_p91, +Eg9,,1930,EA029,6,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA029,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA029,NA,,,, +Eh2,,1900,EA029,6,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA029,6,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA029,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA029,4,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA029,6,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,1900,EA029,6,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA029,5,"But McLeod reports 'intensive, irrigated' (EA028 code ""6"") planted in 'cereal grains' (EA029 code ""6"")",faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91,"Assume Murdock comment refers to this variable, not Col 30 as stated in Gray (1999)" +Eh9,,,EA029,NA,,,, +Ei1,Rengsanggr,1900,EA029,6,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA029,6,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p91, +Ei11,,1910,EA029,6,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA029,6,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA029,6,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA029,6,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA029,NA,,,, +Ei16,,1910,EA029,6,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA029,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA029,6,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,1940,EA029,6,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA029,6,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA029,NA,,,, +Ei3,Nondwin Village,1950,EA029,6,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA029,6,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA029,6,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA029,6,Transitional today from swidden agriculture to irrigated rice cultivation,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,1910,EA029,6,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA029,6,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,1880,EA029,6,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p91, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA029,6,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA029,6,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA029,6,,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA029,6,But some irrigation in recent years,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA029,6,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA029,6,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA029,6,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA029,6,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA029,6,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA029,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA029,6,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA029,6,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,of the Mergui Archipelago,1920,EA029,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p91, +Ej7,,1950,EA029,6,,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,with special reference to those of Trengganu,1940,EA029,6,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA029,6,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA029,6,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,1930,EA029,6,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p91, +Ia11,,1930,EA029,6,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA029,6,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA029,5,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,1930,EA029,5,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p95, +Ia15,with special reference to those of the Agusan Valley,1920,EA029,6,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA029,6,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA029,NA,,,, +Ia18,,,EA029,NA,,,, +Ia2,,1950,EA029,6,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA029,6,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA029,6,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA029,6,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA029,6,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA029,6,,fox1954,EthnographicAtlas_1967_p91, +Ia8,,1900,EA029,6,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA029,6,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA029,6,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA029,6,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA029,6,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,with special reference to the Toba group,1930,EA029,6,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p95, +Ib5,with special reference to the village of Sensuron,1920,EA029,6,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA029,6,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,with special reference to those of North Pageh,1920,EA029,5,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p95, +Ib8,with special reference to the Ridan group,1900,EA029,5,,hagen1908; schebesta1928,EthnographicAtlas_1967_p95, +Ib9,,,EA029,NA,,,, +Ic1,Borongloe,1940,EA029,6,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA029,6,,hueting1921; riedel1885,EthnographicAtlas_1967_p95, +Ic11,Allang,1950,EA029,6,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA029,6,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA029,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA029,6,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,with special reference to the Mountain Belu,1950,EA029,6,,vroklage1952,EthnographicAtlas_1967_p95, +Ic4,,,EA029,NA,,,, +Ic5,Bare'e subgroup,1910,EA029,6,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p95, +Ic6,,1930,EA029,5,,drabbe1940,EthnographicAtlas_1967_p95, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA029,6,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,1890,EA029,5,,pleyte1893,EthnographicAtlas_1967_p95, +Ic9,with special reference to eastern Sumba,1930,EA029,6,,nooteboom1940,EthnographicAtlas_1967_p95, +Id1,Alice Springs and environs,1900,EA029,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA029,1,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA029,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA029,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA029,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA029,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA029,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA029,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA029,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,with special reference to the Archer River group,1920,EA029,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p95, +Id7,,1940,EA029,1,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA029,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,1910,EA029,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p95, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA029,5,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA029,5,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA029,5,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA029,5,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA029,5,,landtman1927,EthnographicAtlas_1967_p95, +Ie14,,1900,EA029,5,,haddon1908,EthnographicAtlas_1967_p95, +Ie15,Kalabu; Northern Abelam,1930,EA029,5,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA029,5,,williams194041,EthnographicAtlas_1967_p95, +Ie17,,1940,EA029,5,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA029,5,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA029,5,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA029,5,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA029,5,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,1900,EA029,5,,malinowski1916,EthnographicAtlas_1967_p95, +Ie22,,1900,EA029,5,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,1950,EA029,5,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,1870,EA029,5,,chalmers1890; lawes1879,EthnographicAtlas_1967_p95, +Ie25,,1920,EA029,5,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,1940,EA029,5,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,1910,EA029,5,,thurnwald1916,EthnographicAtlas_1967_p99, +Ie28,,1940,EA029,5,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA029,5,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA029,5,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA029,4,,pouwer1955,EthnographicAtlas_1967_p99, +Ie31,,1950,EA029,5,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA029,5,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA029,4,The stable food is sago,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA029,NA,,,, +Ie35,,1930,EA029,5,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA029,NA,,,, +Ie37,,,EA029,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA029,5,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA029,5,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA029,5,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA029,5,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,1930,EA029,4,,held1947,EthnographicAtlas_1967_p95, +Ie7,with special reference to the Mae group,1950,EA029,5,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA029,4,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA029,5,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA029,5,Irrigated cultivation of wet taro and swidden cultivation of dry taro also occur,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA029,NA,,,, +If11,,1860,EA029,4,,sarfert1919,EthnographicAtlas_1967_p99, +If12,,1940,EA029,4,,mason1954,EthnographicAtlas_1967_p99, +If13,,1900,EA029,4,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p99, +If14,Makin and Butiritari Islands (N),1890,EA029,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA029,5,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,1960,EA029,5,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA029,4,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA029,4,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA029,4,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA029,4,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA029,5,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA029,5,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,with special reference to the inhabitants of Onotoa,1940,EA029,5,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p99, +If8,with special reference to those of Saipa,1950,EA029,6,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA029,4,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,Northeastern group,1940,EA029,5,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA029,5,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA029,4,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,with special reference to the Varisi,1900,EA029,5,,scheffler1965,EthnographicAtlas_1967_p99, +Ig13,,1900,EA029,5,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p99, +Ig14,,1900,EA029,5,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA029,NA,,,, +Ig16,,,EA029,NA,,,, +Ig17,,,EA029,NA,,,, +Ig18,,,EA029,NA,,,, +Ig19,,,EA029,NA,,,, +Ig2,Kiriwina Island,1910,EA029,5,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA029,5,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA029,5,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA029,5,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA029,5,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,1920,EA029,5,,fortune1932b,EthnographicAtlas_1967_p99, +Ig6,,1900,EA029,5,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA029,5,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA029,NA,,,, +Ig9,Peri Village,1920,EA029,4,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA029,5,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,Whitsands,1920,EA029,5,,humphreys1926,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA029,NA,,,, +Ih12,,,EA029,NA,,,, +Ih13,,,EA029,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA029,5,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA029,5,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA029,5,Some small-scale irrigation of taro,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA029,5,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA029,5,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p99, +Ih6,,1890,EA029,5,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p99, +Ih7,,1910,EA029,5,,hadfield1920; ray1917,EthnographicAtlas_1967_p99, +Ih8,with special reference to the village of Nakaroka,1940,EA029,5,,quain1949,EthnographicAtlas_1967_p99, +Ih9,Graciosa Bay,1930,EA029,5,,davenport1964,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA029,5,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,1950,EA029,5,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA029,5,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA029,5,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA029,4,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA029,5,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA029,4,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA029,4,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA029,4,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p99, +Ii6,with special reference to Atafu,1900,EA029,4,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA029,5,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA029,5,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA029,5,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA029,5,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,1900,EA029,4,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA029,5,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA029,4,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA029,4,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,1900,EA029,4,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p103, +Ij6,,1800,EA029,5,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p103, +Ij7,,1900,EA029,4,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,1900,EA029,4,But with some irrigation,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p103, +Ij9,,1860,EA029,5,,metraux1940,EthnographicAtlas_1967_p103, +Na1,,1930,EA029,1,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA029,1,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA029,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA029,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA029,1,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA029,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,1860,EA029,1,,helmandlurie1961,EthnographicAtlas_1967_p103, +Na16,,1860,EA029,1,,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA029,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA029,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA029,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA029,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA029,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA029,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA029,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA029,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA029,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA029,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA029,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA029,1,,jenness1937,EthnographicAtlas_1967_p103, +Na29,,1850,EA029,1,,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA029,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA029,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA029,1,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA029,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA029,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA029,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA029,1,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA029,6,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA029,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA029,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA029,1,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA029,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA029,6,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA029,1,But there was some agriculture in post-Columbian times,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA029,6,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA029,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA029,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA029,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA029,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA029,1,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA029,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA029,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA029,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA029,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA029,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA029,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA029,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA029,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA029,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA029,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA029,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA029,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA029,1,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA029,1,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA029,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA029,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA029,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA029,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA029,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA029,1,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA029,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA029,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA029,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA029,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA029,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA029,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,1860,EA029,1,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA029,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p107, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA029,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA029,1,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA029,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA029,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA029,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,1860,EA029,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA029,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA029,1,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA029,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA029,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA029,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA029,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA029,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA029,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA029,1,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,1860,EA029,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA029,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA029,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA029,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA029,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA029,1,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA029,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA029,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA029,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,with special reference to those near Santa Rosa,1860,EA029,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc2,,1850,EA029,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,1860,EA029,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,1860,EA029,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA029,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,1870,EA029,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,Tulare Lake,1860,EA029,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA029,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,1770,EA029,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA029,1,,driver1937; gifford1917,EthnographicAtlas_1967_p107, +Nc28,,1800,EA029,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA029,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA029,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA029,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA029,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,1870,EA029,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc33,,1860,EA029,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA029,1,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA029,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA029,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA029,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA029,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA029,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA029,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA029,1,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,1860,EA029,1,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA029,1,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA029,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA029,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA029,1,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA029,1,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA029,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA029,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA029,1,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA029,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA029,NA,Practiced only by a few families,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA029,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA029,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA029,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA029,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA029,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA029,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA029,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA029,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA029,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA029,1,But irrigation of wild seeds was practiced,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA029,6,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA029,1,But plots of wild seeds were irrigated,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA029,6,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA029,1,"But 'cereal grains' (code ""6"") for the Panamint of Death Valley",driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA029,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA029,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA029,NA,Plots of wild seeds were sown and cultivated,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA029,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA029,NA,Plots of wild seeds were planted and irrigated,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA029,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA029,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA029,1,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA029,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA029,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA029,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA029,1,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA029,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA029,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA029,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA029,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA029,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA029,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA029,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA029,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA029,6,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA029,6,But agriculture was practiced by only a few families,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA029,6,But only a few families practiced agriculture,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA029,6,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA029,6,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA029,6,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA029,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA029,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA029,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA029,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA029,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA029,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA029,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA029,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA029,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA029,6,But agriculture was practiced by a few families only,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA029,6,But agriculture was practiced by a few families only,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA029,6,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA029,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA029,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA029,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA029,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,1860,EA029,6,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA029,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA029,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA029,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA029,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA029,6,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,1800,EA029,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,1860,EA029,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA029,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA029,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,1870,EA029,1,,mcallister1937,EthnographicAtlas_1967_p111, +Ne20,,1850,EA029,6,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p115, +Ne21,,,EA029,NA,,,, +Ne3,Comanche Tribe,1870,EA029,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p111, +Ne4,,1870,EA029,2,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA029,6,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,1830,EA029,6,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p111, +Ne7,,1880,EA029,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,1870,EA029,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA029,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA029,6,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA029,6,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA029,6,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA029,6,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA029,6,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA029,NA,,,, +Nf2,,1850,EA029,6,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p115, +Nf3,Omaha Tribe,1850,EA029,6,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA029,6,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,1860,EA029,6,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA029,6,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA029,6,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA029,6,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,1870,EA029,6,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA029,6,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA029,6,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,1750,EA029,6,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p115, +Ng12,,1760,EA029,6,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p115, +Ng13,,,EA029,NA,,,, +Ng14,,,EA029,NA,,,, +Ng15,,,EA029,NA,,,, +Ng2,,,EA029,NA,,,, +Ng3,Upper division in Alabama,1750,EA029,6,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA029,NA,,,, +Ng5,,1750,EA029,6,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA029,6,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA029,6,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,1560,EA029,6,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p115, +Ng9,,1920,EA029,6,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA029,6,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA029,6,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA029,6,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA029,6,,gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA029,6,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,1920,EA029,6,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA029,6,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA029,6,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA029,6,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA029,6,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA029,6,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,1950,EA029,6,,dozier1954,EthnographicAtlas_1967_p115, +Nh20,,1860,EA029,6,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA029,6,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA029,6,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,1870,EA029,6,,gifford1932a,EthnographicAtlas_1967_p115, +Nh24,,1880,EA029,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,1920,EA029,6,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA029,NA,,,, +Nh27,,,EA029,NA,,,, +Nh3,,1930,EA029,6,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA029,6,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA029,6,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA029,6,,parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA029,6,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA029,6,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,1920,EA029,6,,parsons1939; trager1943,EthnographicAtlas_1967_p115, +Ni1,,1930,EA029,6,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA029,6,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA029,6,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,1900,EA029,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p115, +Ni5,,1570,EA029,1,,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA029,6,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA029,6,,beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA029,NA,,,, +Ni9,,,EA029,NA,,,, +Nj1,Ojitlan,1940,EA029,6,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA029,6,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA029,NA,,,, +Nj12,,,EA029,NA,,,, +Nj13,,,EA029,NA,,,, +Nj14,,,EA029,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA029,6,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA029,6,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,1940,EA029,6,"Aboriginally cereal grains (code ""6"")",kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA029,NA,,,, +Nj6,,,EA029,NA,,,, +Nj7,with special reference to Ayutla,1930,EA029,6,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA029,6,,foster1948,EthnographicAtlas_1967_p119, +Nj9,,1960,EA029,6,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA029,6,But bananas are often the staple today,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,1900,EA029,6,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p119, +Sa11,,,EA029,NA,,,, +Sa12,,1948,EA029,6,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA029,6,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA029,NA,,,, +Sa15,,,EA029,NA,,,, +Sa16,,,EA029,NA,,,, +Sa17,,,EA029,NA,,,, +Sa2,,,EA029,NA,,,, +Sa3,,1930,EA029,6,,wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA029,4,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA029,6,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA029,6,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA029,5,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA029,6,,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA029,5,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA029,5,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA029,5,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,with special reference to the Iroka,1940,EA029,5,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA029,5,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA029,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,Goajiro Tribe,1940,EA029,6,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA029,6,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,1520,EA029,5,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA029,6,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA029,5,"Agriculture is absent in some groups, recent and of varying importance in others",hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA029,5,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,1930,EA029,5,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p119, +Sc12,,1910,EA029,5,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p119, +Sc13,,1950,EA029,5,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p119, +Sc14,,,EA029,NA,,,, +Sc15,,1910,EA029,5,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p119, +Sc16,with special reference to the Makitare,1920,EA029,5,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p119, +Sc17,,1950,EA029,5,,wilbert1963,EthnographicAtlas_1967_p119, +Sc18,,1960,EA029,5,"But 'cereal grains' (code ""6"") in some localities",geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA029,5,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA029,5,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA029,5,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA029,5,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA029,5,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA029,5,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,1950,EA029,5,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p119, +Sc9,,1950,EA029,5,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p119, +Sd1,Cabrura village,1950,EA029,5,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA029,5,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,1920,EA029,5,,nimuendaju1926,EthnographicAtlas_1967_p119, +Sd4,,1950,EA029,4,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA029,5,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,1960,EA029,1,But a few groups grow a little manioc,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,1950,EA029,5,,fock1963,EthnographicAtlas_1967_p119, +Sd8,,1950,EA029,5,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA029,4,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA029,6,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA029,5,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,1960,EA029,5,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA029,NA,,,, +Se2,,1940,EA029,5,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA029,5,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA029,5,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA029,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA029,5,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA029,NA,,,, +Se8,Upper Inuya River,1950,EA029,6,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA029,5,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA029,6,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA029,5,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA029,4,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA029,6,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,1900,EA029,5,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,1540,EA029,5,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA029,5,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA029,NA,,,, +Sf9,,,EA029,NA,,,, +Sg1,Eastern and central,1870,EA029,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA029,6,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA029,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA029,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA029,1,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA029,3,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA029,5,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,Those in contact with mission,1800,EA029,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA029,5,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA029,3,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,1890,EA029,2,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,1900,EA029,6,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p123, +Sh8,with special reference to those of the Argentine Chaco,1964,EA029,5,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA029,5,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA029,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA029,5,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA029,5,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA029,5,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA029,5,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA029,5,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,1900,EA029,4,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p123, +Si7,with special reference to the Cozarimi,1910,EA029,5,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA029,5,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA029,NA,,,, +Sj1,,1950,EA029,5,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,Taquapiri,1950,EA029,5,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA029,6,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA029,5,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA029,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA029,5,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,Naknenuk subtribe,1880,EA029,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p123, +Sj6,with special reference to the Guajajara subgroup,1930,EA029,5,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA029,5,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA029,5,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,1950,EA029,5,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA029,6,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA029,6,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA029,6,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA029,6,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA029,6,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA029,6,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA029,6,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA029,6,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA029,6,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA029,6,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA029,3,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA029,3,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA029,6,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA029,6,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA029,6,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA029,6,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA029,6,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA029,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA029,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA029,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA029,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA029,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA029,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA029,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA029,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA029,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA029,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA003,0,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA003,0,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA003,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA003,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA003,0,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA003,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA003,0,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA003,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA003,0,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA003,0,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA003,0,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA003,0,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA003,0,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA003,0,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA003,0,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA003,0,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA003,1,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA003,2,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA003,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA003,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA003,0,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA003,1,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA003,0,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA003,0,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA003,1,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA003,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA003,1,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA003,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA003,0,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA003,1,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA003,0,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA003,0,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA003,0,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA003,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA003,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA003,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA003,4,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA003,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA003,2,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA003,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA003,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA003,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA003,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA003,1,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA003,0,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA003,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA003,1,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA003,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA003,2,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA003,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA003,2,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA003,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA003,4,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA003,1,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA003,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA003,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA003,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA003,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA003,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA003,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA003,3,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA003,0,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA003,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA003,2,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA003,4,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA003,2,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA003,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA003,0,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA003,1,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA003,0,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA003,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA003,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA003,2,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA003,2,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA003,2,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA003,4,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA003,0,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA003,0,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA003,0,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA003,0,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA003,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA003,0,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA003,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA003,1,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA003,2,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA003,3,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA003,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA003,0,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA003,2,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA003,0,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA003,0,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA003,0,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA003,0,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA003,0,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA003,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA003,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA003,2,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA003,0,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA003,2,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA003,0,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA003,0,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA003,3,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA003,0,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA003,0,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA003,0,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA003,0,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA003,2,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA003,0,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA003,0,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA003,0,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA003,0,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA003,2,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA003,3,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA003,3,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA003,0,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA003,2,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA003,0,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA003,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA003,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA003,0,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA003,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA003,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA003,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA003,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA003,0,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA003,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA003,1,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA003,0,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA003,5,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA003,3,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA003,1,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA003,1,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA003,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA003,0,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA003,2,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA003,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA003,1,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA003,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA003,4,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA003,0,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA003,2,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA003,2,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA003,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA003,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA003,1,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA003,5,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA003,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA003,7,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA003,2,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA003,0,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA003,0,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA003,0,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA003,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA003,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA003,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA003,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA003,2,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA003,1,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA003,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA003,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA003,1,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA003,0,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA003,3,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA003,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA003,1,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA003,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA003,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA003,3,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA003,2,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA003,1,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA003,0,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA003,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA003,0,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA003,0,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA003,1,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA003,0,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA003,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA003,0,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA003,0,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA003,0,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA003,1,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA003,2,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA003,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA003,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA003,0,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA003,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA003,0,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA003,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA003,0,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA003,2,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA003,2,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA003,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA003,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA003,1,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA003,0,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA003,3,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA003,0,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA003,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA003,4,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA003,5,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA003,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA003,0,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA003,3,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA003,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA003,2,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA003,0,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA003,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA003,2,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA003,1,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA003,0,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA003,0,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA003,2,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA003,0,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA003,0,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA003,2,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA003,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA003,0,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA003,0,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA003,0,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA003,3,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA003,0,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA003,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA003,4,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA003,8,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA003,4,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA003,1,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA003,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA003,3,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA003,2,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA003,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA003,0,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA003,0,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA003,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA003,0,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA003,1,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA003,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA003,2,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA003,2,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA003,1,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA003,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA003,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA003,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA003,2,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA003,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA003,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA003,0,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA003,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA003,0,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA003,2,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA003,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA003,2,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA003,2,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA003,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA003,3,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA003,0,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA003,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA003,0,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA003,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA003,1,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA003,0,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA003,0,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA003,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA003,0,But the economy is primarily mercantile,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA003,2,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA003,0,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA003,0,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA003,0,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA003,0,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA003,0,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA003,0,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA003,0,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA003,0,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA003,0,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA003,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA003,0,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA003,0,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA003,0,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA003,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA003,0,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA003,0,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA003,0,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA003,0,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA003,1,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA003,0,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA003,0,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA003,0,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA003,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA003,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA003,0,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA003,0,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA003,0,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA003,0,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA003,0,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA003,0,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA003,6,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA003,0,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA003,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA003,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA003,0,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA003,1,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA003,1,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA003,0,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA003,1,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA003,3,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA003,0,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA003,0,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA003,0,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA003,0,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA003,1,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA003,0,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA003,0,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA003,0,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA003,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA003,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA003,0,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA003,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA003,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA003,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA003,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA003,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA003,0,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA003,0,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA003,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA003,0,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA003,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA003,1,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA003,0,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA003,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA003,0,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA003,0,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA003,0,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA003,1,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA003,0,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA003,0,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA003,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA003,0,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA003,0,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA003,0,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA003,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA003,0,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA003,3,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA003,2,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA003,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA003,1,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA003,0,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA003,4,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA003,2,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA003,0,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA003,2,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA003,1,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA003,0,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA003,0,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA003,0,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA003,2,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA003,2,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA003,1,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA003,0,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA003,0,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA003,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA003,2,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA003,0,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA003,0,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA003,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA003,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA003,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA003,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA003,0,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA003,0,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA003,0,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA003,0,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA003,0,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA003,0,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA003,0,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA003,0,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA003,2,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA003,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA003,2,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA003,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA003,0,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA003,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA003,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA003,0,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA003,3,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA003,0,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA003,0,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA003,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA003,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA003,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA003,0,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA003,0,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA003,2,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA003,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA003,0,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA003,0,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA003,0,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA003,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA003,0,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA003,0,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA003,0,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA003,0,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA003,0,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA003,0,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA003,0,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA003,0,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA003,0,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA003,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA003,0,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA003,0,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA003,0,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA003,0,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA003,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA003,0,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA003,0,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA003,0,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA003,0,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA003,0,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA003,0,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA003,0,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA003,0,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA003,0,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA003,0,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA003,0,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA003,0,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA003,0,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA003,0,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA003,0,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA003,1,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA003,0,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA003,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA003,0,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA003,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA003,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA003,0,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA003,1,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA003,0,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA003,0,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA003,0,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA003,0,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA003,0,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA003,0,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA003,0,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA003,0,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA003,0,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA003,0,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA003,0,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA003,0,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA003,0,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA003,0,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA003,0,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA003,0,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA003,0,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA003,0,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA003,0,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA003,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA003,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA003,0,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA003,0,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA003,1,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA003,0,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA003,0,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA003,0,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA003,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA003,0,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA003,0,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA003,0,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA003,1,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA003,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA003,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA003,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA003,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA003,0,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA003,0,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA003,1,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA003,0,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA003,0,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA003,0,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA003,1,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA003,0,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA003,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA003,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA003,0,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA003,4,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA003,1,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA003,0,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA003,0,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA003,0,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA003,0,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA003,0,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA003,0,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA003,0,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA003,0,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA003,0,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA003,2,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA003,0,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA003,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA003,0,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA003,0,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA003,0,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA003,0,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA003,0,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA003,0,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA003,0,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA003,0,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA003,0,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA003,0,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA003,0,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA003,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA003,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA003,2,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA003,0,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA003,0,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA003,0,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA003,0,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA003,1,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA003,0,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA003,0,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA003,0,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA003,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA003,0,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA003,1,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA003,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA003,0,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA003,0,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA003,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA003,0,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA003,0,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA003,0,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA003,0,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA003,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA003,2,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA003,2,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA003,1,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA003,0,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA003,1,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA003,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA003,1,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA003,0,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA003,3,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA003,1,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA003,1,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA003,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA003,3,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA003,0,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA003,2,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA003,1,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA003,0,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA003,0,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA003,0,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA003,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA003,0,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA003,2,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA003,0,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA003,1,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA003,1,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA003,1,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA003,1,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA003,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA003,0,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA003,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA003,0,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA003,1,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA003,0,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA003,0,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA003,0,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA003,0,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA003,0,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA003,0,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA003,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA003,0,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA003,3,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA003,0,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA003,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA003,2,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA003,0,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA003,0,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA003,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA003,0,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA003,0,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA003,2,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA003,0,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA003,0,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA003,0,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA003,0,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA003,0,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA003,0,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA003,0,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA003,0,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA003,0,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA003,0,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA003,0,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA003,0,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA003,0,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA003,1,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA003,0,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA003,0,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA003,0,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA003,0,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA003,0,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA003,2,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA003,5,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA003,4,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA003,4,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA003,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA003,3,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA003,3,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA003,5,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA003,4,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA003,4,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA003,6,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA003,4,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA003,2,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA003,1,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA003,2,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA003,1,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA003,1,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA003,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA003,0,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA003,0,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA003,1,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA003,1,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA003,0,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA003,1,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA003,2,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA003,1,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA003,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA003,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA003,0,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA003,0,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA003,0,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA003,0,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA003,0,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA003,1,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA003,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA003,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA003,0,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA003,0,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA003,2,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA003,0,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA003,1,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA003,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA003,1,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA003,0,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA003,1,But the Pandit themselves do not engage in food production,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA003,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA003,0,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA003,0,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA003,0,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA003,0,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA003,1,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA003,1,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA003,2,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA003,0,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA003,0,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA003,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA003,1,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA003,1,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA003,0,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA003,2,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA003,4,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA003,0,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA003,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA003,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA003,3,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA003,2,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA003,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA003,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA003,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA003,2,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA003,1,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA003,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA003,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA003,1,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA003,1,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA003,1,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA003,1,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA003,2,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA003,1,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA003,0,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA003,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA003,1,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA003,0,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA003,0,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA003,1,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA003,0,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA003,0,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA003,2,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA003,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA003,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA003,0,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA003,0,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA003,1,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA003,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA003,2,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA003,2,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA003,2,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA003,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA003,2,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA003,3,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA003,2,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA003,2,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA003,8,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA003,1,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA003,2,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA003,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA003,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA003,0,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA003,1,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA003,2,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA003,8,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA003,4,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA003,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA003,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA003,1,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA003,1,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA003,0,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA003,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA003,0,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA003,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA003,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA003,1,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA003,0,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA003,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA003,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA003,0,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA003,0,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA003,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA003,2,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA003,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA003,2,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA003,2,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA003,1,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA003,2,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA003,2,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA003,3,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA003,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA003,0,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA003,0,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA003,0,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA003,1,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA003,0,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA003,2,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA003,3,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA003,2,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA003,0,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA003,0,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA003,0,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA003,2,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA003,2,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA003,6,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA003,2,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA003,2,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA003,0,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA003,2,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA003,2,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA003,1,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,1830,EA003,2,,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA003,4,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA003,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA003,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA003,0,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA003,0,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA003,2,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA003,3,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA003,0,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA003,0,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA003,0,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA003,1,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA003,2,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA003,0,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA003,1,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA003,3,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA003,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA003,1,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA003,0,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA003,1,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA003,0,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA003,1,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA003,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA003,3,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA003,0,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA003,4,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA003,0,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA003,3,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA003,1,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA003,2,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA003,3,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA003,1,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA003,1,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA003,0,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA003,2,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA003,2,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA003,1,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA003,3,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA003,0,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA003,2,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA003,2,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA003,4,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA003,4,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA003,4,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA003,4,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA003,4,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA003,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA003,5,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA003,4,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA003,5,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA003,5,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA003,4,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA003,4,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA003,3,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA003,4,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA003,5,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA003,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA003,4,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA003,0,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA003,0,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA003,3,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA003,1,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA003,5,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA003,3,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA003,2,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA003,3,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA003,7,Primarily traders,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA003,3,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA003,3,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA003,3,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA003,3,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA003,3,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA003,2,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA003,4,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA003,3,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA003,3,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA003,2,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA003,2,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA003,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA003,3,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA003,2,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA003,3,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA003,4,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA003,1,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA003,5,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA003,3,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA003,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA003,4,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA003,3,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA003,2,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA003,3,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA003,3,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA003,3,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA003,3,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA003,4,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA003,3,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA003,4,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA003,3,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA003,5,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA003,4,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA003,5,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA003,5,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA003,6,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA003,4,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA003,3,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA003,5,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA003,4,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA003,6,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA003,2,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA003,4,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA003,5,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA003,5,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA003,4,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA003,6,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA003,4,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA003,2,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA003,2,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA003,8,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA003,8,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA003,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA003,8,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA003,5,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA003,5,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA003,5,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA003,4,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA003,4,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA003,7,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA003,5,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA003,4,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA003,5,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA003,6,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA003,8,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA003,7,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA003,5,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA003,4,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA003,4,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA003,2,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA003,6,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA003,4,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA003,3,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA003,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA003,4,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA003,4,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA003,3,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA003,4,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA003,3,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA003,4,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA003,4,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA003,5,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA003,2,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA003,4,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA003,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA003,6,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA003,4,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA003,3,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA003,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA003,6,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA003,6,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA003,5,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA003,6,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA003,6,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA003,5,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA003,6,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA003,5,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA003,5,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA003,5,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA003,5,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA003,6,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA003,5,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA003,6,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA003,6,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA003,6,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA003,5,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA003,6,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA003,6,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA003,5,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA003,6,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA003,5,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA003,5,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA003,4,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA003,7,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA003,6,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA003,5,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA003,3,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA003,5,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA003,3,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA003,3,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA003,5,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA003,5,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA003,5,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA003,4,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA003,3,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA003,3,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA003,5,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA003,5,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA003,4,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA003,6,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA003,5,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA003,6,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA003,1,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA003,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA003,3,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA003,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA003,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA003,4,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA003,4,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA003,3,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA003,2,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA003,3,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA003,3,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA003,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA003,2,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA003,3,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA003,2,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA003,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA003,3,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA003,3,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA003,2,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA003,2,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA003,5,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA003,4,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA003,3,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA003,0,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA003,0,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA003,0,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA003,2,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA003,3,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA003,3,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA003,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA003,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA003,3,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA003,5,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA003,2,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA003,5,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA003,5,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA003,4,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA003,3,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA003,3,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA003,3,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA003,4,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA003,4,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA003,4,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA003,5,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA003,4,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA003,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA003,4,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA003,3,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA003,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA003,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA003,2,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA003,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA003,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA003,3,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA003,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA003,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA003,0,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA003,1,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA003,0,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA003,0,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA003,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA003,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA003,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA003,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA003,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA003,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA003,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA003,5,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA003,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA003,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA003,3,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA003,1,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA003,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA003,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA003,4,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA003,3,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA003,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA003,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA003,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA003,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA003,0,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA003,0,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA003,0,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA003,0,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA003,0,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA003,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA003,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA003,3,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA003,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA003,3,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA003,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA003,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA003,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA003,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA003,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA003,0,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA003,0,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA003,0,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA003,4,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA003,5,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA003,5,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA003,0,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA003,2,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA003,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA003,0,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA003,0,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA003,2,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA003,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA003,4,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA003,0,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA003,0,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA003,2,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA003,0,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA003,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,1760,EA003,1,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968, +Ne3,Comanche Tribe,1870,EA003,0,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA003,0,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA003,0,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA003,2,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA003,0,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA003,0,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA003,0,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA003,0,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA003,1,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA003,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA003,2,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA003,2,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA003,0,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA003,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA003,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA003,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA003,0,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA003,0,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA003,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA003,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA003,2,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA003,3,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA003,2,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA003,2,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA003,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA003,3,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA003,1,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA003,2,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA003,NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA003,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA003,2,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA003,2,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA003,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA003,2,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA003,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA003,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA003,0,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA003,0,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA003,0,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA003,0,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA003,0,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA003,0,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA003,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA003,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA003,0,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA003,0,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA003,2,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA003,0,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA003,2,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA003,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA003,2,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA003,0,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA003,0,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA003,0,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA003,0,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA003,0,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA003,0,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA003,0,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA003,2,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA003,0,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA003,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA003,0,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA003,0,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA003,0,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA003,0,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA003,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA003,6,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA003,1,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA003,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA003,1,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA003,1,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,1920,EA003,0,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968, +Nj1,Ojitlan,1940,EA003,0,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA003,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA003,1,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,1950,EA003,1,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968, +Nj13,,1900,EA003,1,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA003,0,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA003,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA003,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA003,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA003,0,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA003,5,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA003,0,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA003,2,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA003,0,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA003,3,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA003,2,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA003,1,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA003,1,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA003,0,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA003,4,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA003,0,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA003,2,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA003,0,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA003,1,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA003,1,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA003,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA003,2,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA003,2,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA003,3,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA003,0,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA003,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA003,5,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA003,0,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA003,2,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA003,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA003,6,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA003,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA003,1,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA003,2,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA003,0,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA003,2,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA003,3,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA003,2,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA003,2,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA003,2,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA003,2,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA003,3,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA003,2,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA003,2,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA003,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA003,1,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA003,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA003,2,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA003,2,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA003,2,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA003,2,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA003,3,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA003,3,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA003,2,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA003,3,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA003,3,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA003,3,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA003,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA003,3,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA003,2,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA003,1,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA003,0,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA003,1,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA003,5,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA003,2,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA003,3,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA003,4,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA003,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA003,1,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA003,3,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA003,2,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA003,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA003,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA003,4,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA003,0,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA003,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA003,2,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA003,2,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA003,0,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA003,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA003,2,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA003,4,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA003,7,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA003,7,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA003,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA003,3,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA003,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA003,7,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA003,4,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA003,3,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA003,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA003,3,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA003,2,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA003,0,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA003,2,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA003,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA003,2,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA003,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA003,2,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA003,3,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA003,3,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA003,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA003,3,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA003,3,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA003,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA003,1,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,1940,EA003,2,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA003,4,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA003,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA003,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA003,1,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA003,0,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA003,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA003,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA003,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA003,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA003,2,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA003,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA003,0,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA003,0,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA003,0,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA003,0,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA003,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA003,0,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA003,2,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA003,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA003,0,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA003,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA003,0,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA003,0,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA003,8,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA003,0,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA003,0,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA003,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA003,2,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA003,2,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA003,5,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA003,7,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA003,5,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA003,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA003,5,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA003,5,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA003,5,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA003,5,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA003,4,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA030,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA030,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA030,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA030,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA030,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,1920,EA030,5,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p63, +Aa7,,1910,EA030,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,1850,EA030,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA030,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,1900,EA030,1,,irle1906; vedder1928,EthnographicAtlas_1967_p63, +Ab10,,1936,EA030,5,,hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,1850,EA030,5,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA030,5,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p63, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA030,8,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA030,6,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA030,7,"Not clearly specified, perhaps 'dispersed homesteads' (code ""5"")",duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA030,6,,earthy1933,EthnographicAtlas_1967_p63, +Ab17,,,EA030,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA030,6,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA030,5,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,1880,EA030,6,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA030,NA,,,, +Ab21a,,1930,EA030,5,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA030,NA,,,, +Ab22,,,EA030,NA,,,, +Ab3,Ruling Luyana,1890,EA030,3,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,1920,EA030,7,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA030,7,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA030,7,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA030,6,,langandtastevin1937,EthnographicAtlas_1967_p63, +Ab8,Basuto,1860,EA030,6,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA030,8,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA030,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA030,7,"But 'dispersed homesteads' (code ""5"") today",bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA030,7,,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,1920,EA030,7,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p63, +Ac13,,1950,EA030,6,,tew1950; velsen1964,EthnographicAtlas_1967_p63, +Ac14,,1900,EA030,7,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p63, +Ac15,,,EA030,NA,,,, +Ac16,,1940,EA030,7,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA030,7,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA030,7,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,1880,EA030,7,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA030,7,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p63, +Ac20,,1920,EA030,5,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA030,5,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p63, +Ac22,,1930,EA030,4,,mertens1935,EthnographicAtlas_1967_p63, +Ac23,with special reference to the western Lele,1950,EA030,7,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,1910,EA030,7,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA030,7,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p63, +Ac26,,1920,EA030,6,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA030,4,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA030,7,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p63, +Ac29,,,EA030,NA,,,, +Ac3,Zambia branch,1900,EA030,4,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA030,6,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA030,7,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA030,7,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA030,7,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA030,7,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA030,NA,,,, +Ac36,,1920,EA030,7,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,1950,EA030,7,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA030,5,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p63, +Ac39,,,EA030,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA030,4,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,1900,EA030,7,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA030,6,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA030,NA,,,, +Ac43,,1910,EA030,7,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA030,7,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,1930,EA030,4,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p63, +Ac7,,1920,EA030,6,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,1930,EA030,7,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA030,7,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,1950,EA030,7,,grottanelli1955,EthnographicAtlas_1967_p63, +Ad10,,1910,EA030,7,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,1930,EA030,7,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA030,5,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA030,5,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,Morogoro District,1930,EA030,6,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,1900,EA030,7,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,1920,EA030,7,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA030,7,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,1910,EA030,7,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA030,7,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA030,5,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA030,6,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,1930,EA030,7,,maurice193538,EthnographicAtlas_1967_p67, +Ad22,,1950,EA030,5,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,1910,EA030,7,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA030,5,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,1900,EA030,5,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA030,5,,sick1916,Ethnology_Vol7_No2_Apr_1968, +Ad27,,1880,EA030,6,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA030,6,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA030,7,,ingrams1930; prins1961,EthnographicAtlas_1967_p67, +Ad3,,1910,EA030,5,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,1890,EA030,7,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p67, +Ad31,,,EA030,NA,,,, +Ad32,,1900,EA030,7,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p67, +Ad33,,1900,EA030,7,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p67, +Ad34,,1910,EA030,6,"But 'villages/towns' (code ""7"") today",dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA030,5,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p67, +Ad36,,1890,EA030,5,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA030,5,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA030,6,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA030,7,,gray1963,EthnographicAtlas_1967_p67, +Ad4,Fort Hall or Metume district,1930,EA030,7,"Formerly 'dispersed homesteads' (code ""5"")",cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA030,5,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA030,5,"But formerly 'villages/towns' (code ""7"")",wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p67, +Ad42,,1900,EA030,5,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,1900,EA030,5,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA030,5,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p67, +Ad45,,1920,EA030,5,But the dominant pastoral Hima are nomadic,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,1950,EA030,5,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p67, +Ad47,,1900,EA030,5,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA030,5,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA030,5,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA030,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA030,7,"But 'separated hamlets' (code ""7"") today",beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA030,7,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA030,7,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA030,7,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA030,5,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,1900,EA030,5,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA030,6,"Formerly villages/towns (code ""7"")",winter1956; winter1958,EthnographicAtlas_1967_p67,"Assume Mudock comment applies to this variable, not Col 31 as stated in Gray (1999)" +Ae10,,1910,EA030,5,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA030,7,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA030,7,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA030,NA,,,, +Ae14,,1950,EA030,5,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,1940,EA030,7,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p67, +Ae16,,,EA030,NA,,,, +Ae17,,1900,EA030,8,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,1900,EA030,8,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA030,NA,,,, +Ae2,,1950,EA030,7,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,1940,EA030,6,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA030,7,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA030,7,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p67, +Ae23,,,EA030,NA,,,, +Ae24,,,EA030,NA,,,, +Ae25,,,EA030,NA,,,, +Ae26,,1910,EA030,7,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA030,7,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA030,7,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,1900,EA030,7,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p67, +Ae3,,1910,EA030,7,"Recently changed to 'separated hamlets' (code ""7"")",alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,1920,EA030,7,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA030,7,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA030,7,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA030,7,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA030,5,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA030,7,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA030,7,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA030,NA,,,, +Ae38,,1920,EA030,7,,wijnant192526,EthnographicAtlas_1967_p67, +Ae39,,1920,EA030,7,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA030,6,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,1910,EA030,7,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA030,7,,andersson1953,EthnographicAtlas_1967_p67, +Ae42,,1900,EA030,7,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA030,7,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA030,7,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA030,7,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA030,7,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA030,7,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA030,5,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae49,,,EA030,NA,,,, +Ae5,,1910,EA030,6,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae50,,1920,EA030,7,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p67, +Ae51,Ndiki subtribe,1940,EA030,5,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae52,,,EA030,NA,,,, +Ae53,,,EA030,NA,,,, +Ae54,,,EA030,NA,,,, +Ae55,,1950,EA030,7,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae56,,1950,EA030,7,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae57,,1930,EA030,7,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA030,7,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA030,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA030,7,,verhulpen1936,Ethnology_Vol7_No2_Apr_1968, +Ae7,,1910,EA030,6,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA030,5,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,1950,EA030,7,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Af1,City and environs of Abomey,1890,EA030,7,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA030,6,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA030,7,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,with special reference to the Kwahu,1930,EA030,7,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA030,7,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,1930,EA030,7,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af15,,1920,EA030,7,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,1910,EA030,7,"But Ruel reports 'separated hamlets' (code ""7"")",ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA030,7,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA030,7,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA030,7,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,1950,EA030,7,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA030,6,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,with special reference to the Kalabari,1920,EA030,7,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA030,7,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p71, +Af23,with special reference to the village of Mgbom,1950,EA030,7,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA030,7,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,1930,EA030,8,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,with special reference to the Etsako,1900,EA030,7,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA030,7,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA030,7,,gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,1950,EA030,5,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA030,7,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,,EA030,NA,,,, +Af31,,,EA030,NA,,,, +Af32,Abeouta Province and Benin,1920,EA030,7,,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA030,7,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA030,7,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA030,7,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA030,8,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p71, +Af37,with special reference to the Akpafu,1900,EA030,7,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA030,7,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA030,5,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA030,7,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA030,7,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA030,7,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA030,7,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p71, +Af43,,1930,EA030,8,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p71, +Af44,,,EA030,NA,,,, +Af45,,1900,EA030,7,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA030,7,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA030,7,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA030,7,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA030,7,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA030,8,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,1920,EA030,7,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA030,7,,tauxier1924a,EthnographicAtlas_1967_p71, +Af52,,1920,EA030,7,,tauxier1924a,EthnographicAtlas_1967_p71, +Af53,,1950,EA030,7,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA030,7,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,1950,EA030,8,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA030,7,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA030,8,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,1900,EA030,7,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA030,7,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA030,7,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA030,6,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,1900,EA030,7,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p71, +Ag1,Segou to Bamako on Niger River,1920,EA030,7,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA030,6,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,1910,EA030,5,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,1910,EA030,5,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA030,7,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,1950,EA030,7,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA030,7,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA030,5,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p71, +Ag17,,1940,EA030,7,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA030,7,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p71, +Ag19,with special reference to the Felup,1930,EA030,7,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p71, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA030,5,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,1930,EA030,5,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA030,7,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,with special reference to those of Sine,1920,EA030,5,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p71, +Ag23,,1910,EA030,7,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA030,7,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA030,7,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p71, +Ag26,,1930,EA030,7,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p71, +Ag27,,1910,EA030,7,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,1930,EA030,7,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA030,7,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA030,7,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p71, +Ag30,,1910,EA030,5,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p71, +Ag31,,1910,EA030,7,,cheron1913; holas1957,EthnographicAtlas_1967_p71, +Ag32,,1900,EA030,7,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p71, +Ag33,,1920,EA030,5,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA030,5,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA030,7,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA030,5,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA030,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA030,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA030,5,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA030,5,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,1910,EA030,7,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA030,5,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,1910,EA030,5,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA030,7,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA030,7,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA030,7,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA030,7,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA030,5,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,1890,EA030,7,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p75, +Ag49,,1930,EA030,6,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA030,5,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,1910,EA030,6,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA030,7,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA030,7,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA030,7,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA030,8,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA030,8,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA030,3,,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA030,7,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,1930,EA030,7,,labouret1934; sidibe1932,EthnographicAtlas_1967_p71, +Ah1,Zaria Province,1930,EA030,7,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA030,7,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA030,6,"Formerly 'villages/towns' (code ""7"")",gunnandconant1960,EthnographicAtlas_1967_p75, +Ah12,,1920,EA030,6,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA030,3,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA030,5,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,1920,EA030,7,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p75, +Ah16,,1900,EA030,5,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA030,5,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA030,5,"Formerly 'villages/towns' (code ""7"")",bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA030,7,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p75, +Ah2,,1920,EA030,7,,meek1931a,EthnographicAtlas_1967_p75, +Ah20,,1920,EA030,7,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,1920,EA030,7,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA030,NA,,,, +Ah23,,,EA030,NA,,,, +Ah24,,,EA030,NA,,,, +Ah25,,1920,EA030,7,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA030,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA030,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA030,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA030,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA030,5,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,1920,EA030,6,,meek1931b,EthnographicAtlas_1967_p75, +Ah31,,1910,EA030,7,,haughton1912; meek1931b,EthnographicAtlas_1967_p75, +Ah32,,1920,EA030,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA030,6,,meek1931b; temple1922,EthnographicAtlas_1967_p75, +Ah34,with special reference to the Malabu,1920,EA030,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA030,6,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA030,7,,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,1920,EA030,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA030,7,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA030,7,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,1920,EA030,6,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p75, +Ah5,,1930,EA030,6,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,1920,EA030,6,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA030,6,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,1910,EA030,7,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA030,6,,diamond1964; gunn1953,EthnographicAtlas_1967_p75,"Assume Murdock comment refers to col 39, not col 30 as stated in Gray (1999); in that case however the codes for EA040/EA041 are as reported by Diamond." +Ai1,,1920,EA030,5,,daigre193232; leynaud1954,EthnographicAtlas_1967_p75, +Ai10,Nuba Hills,1940,EA030,6,,nadel1947,EthnographicAtlas_1967_p75, +Ai11,,1900,EA030,5,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA030,6,"Formerly 'villages/towns' (code ""7"")",foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,1920,EA030,7,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA030,5,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA030,7,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,1910,EA030,7,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA030,7,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA030,7,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA030,7,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA030,NA,,,, +Ai20,,1910,EA030,5,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA030,7,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,1890,EA030,5,,delafosse1897,EthnographicAtlas_1967_p75, +Ai23,,1920,EA030,7,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,1900,EA030,5,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA030,7,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA030,7,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p75, +Ai27,,1890,EA030,5,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA030,7,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA030,7,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA030,5,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA030,7,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA030,5,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA030,6,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA030,5,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,1880,EA030,5,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA030,5,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,1920,EA030,5,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,1940,EA030,6,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA030,6,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai39,,1940,EA030,6,,nadel1947,EthnographicAtlas_1967_p75, +Ai4,,1920,EA030,5,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA030,6,,nadel1947,EthnographicAtlas_1967_p75, +Ai41,,1930,EA030,6,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai42,,1940,EA030,6,,nadel1947; nadel1950,EthnographicAtlas_1967_p75, +Ai43,,1930,EA030,6,,nadel1947; stevenson1940,EthnographicAtlas_1967_p75, +Ai44,,1920,EA030,7,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,1930,EA030,6,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA030,7,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p75, +Ai47,Northern division,1939,EA030,7,"Grottanelli speaks of ""villages,"" but Cerulli reports 'dispersed homesteads' (code ""5"")",cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,1920,EA030,7,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA030,6,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA030,7,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,1930,EA030,6,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p75, +Ai9,Around Yagoua in Cameroon,1910,EA030,5,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,1950,EA030,5,,lawrance1957,EthnographicAtlas_1967_p75, +Aj10,,1920,EA030,6,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA030,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA030,7,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,1930,EA030,7,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA030,7,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA030,5,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,with special reference to the Riverain Mondari,1930,EA030,3,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p79, +Aj17,,1890,EA030,6,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA030,6,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,1920,EA030,2,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p79, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA030,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,1940,EA030,7,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p79, +Aj21,,1930,EA030,3,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,1930,EA030,7,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA030,2,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA030,3,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,1920,EA030,6,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA030,5,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p79, +Aj27,,1920,EA030,6,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA030,2,Inferential,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA030,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA030,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA030,NA,,,, +Aj31,,,EA030,NA,,,, +Aj4,,1920,EA030,7,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA030,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA030,5,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA030,5,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA030,5,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA030,5,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA030,7,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA030,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA030,3,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p79, +Ca12,,1880,EA030,5,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p79, +Ca13,with special reference to the eastern Macha,1950,EA030,5,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p79, +Ca14,,1950,EA030,5,,cerulli1956; fleming1965,EthnographicAtlas_1967_p79, +Ca15,,1930,EA030,5,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca16,,1930,EA030,5,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca17,,1950,EA030,5,"But 'villages/towns' (code ""7"") in one region",fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca18,,1940,EA030,7,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA030,6,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA030,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,1890,EA030,3,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA030,6,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA030,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA030,5,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,1950,EA030,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA030,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA030,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA030,5,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA030,5,,cerulli1956; jensen1959,EthnographicAtlas_1967_p79, +Ca29,,1920,EA030,5,,huntingford1955b; straube1963,EthnographicAtlas_1967_p79, +Ca3,,1950,EA030,7,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,Kafa Kingdom,1890,EA030,5,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p79, +Ca31,,1860,EA030,7,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,1860,EA030,7,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca33,,1860,EA030,7,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca34,,1920,EA030,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA030,2,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA030,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA030,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA030,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA030,5,,lewis1965b,EthnographicAtlas_1967_p79, +Ca4,,1950,EA030,5,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p79, +Ca40,,1950,EA030,5,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA030,5,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA030,6,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA030,NA,,,, +Ca5,,1930,EA030,2,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p79, +Ca6,,1880,EA030,2,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA030,6,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,1940,EA030,7,,leslau1950; shack1963,EthnographicAtlas_1967_p79, +Ca9,,1890,EA030,5,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,,EA030,NA,,,, +Cb10,,1920,EA030,6,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA030,2,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA030,2,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA030,1,"But seminomadic (code ""2"") for some groups",lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA030,2,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA030,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA030,1,"But seminomadic (code ""2"") for some groups",bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA030,7,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,1930,EA030,7,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p79, +Cb19,,1870,EA030,8,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA030,7,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,1920,EA030,7,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA030,1,,pfeffer1936,EthnographicAtlas_1967_p83, +Cb22,,1920,EA030,7,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA030,7,,kane1939; lafont1939,EthnographicAtlas_1967_p83, +Cb24,Wodaabe of Niger,1950,EA030,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,1930,EA030,7,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA030,7,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,1920,EA030,7,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA030,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA030,NA,,,, +Cb3,Bamba division,1940,EA030,7,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,1920,EA030,2,,reid1930,EthnographicAtlas_1967_p79, +Cb5,,1910,EA030,5,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p79, +Cb6,,1920,EA030,7,,woodnd,EthnographicAtlas_1967_p79, +Cb7,,1920,EA030,7,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA030,3,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA030,7,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA030,2,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA030,2,But serfs are sedentary,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,1860,EA030,1,But the Haratin serfs are sedentary,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA030,1,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA030,1,But many of the Haratin serfs are sedentary,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA030,2,But some sub-groups are semi-sedentary,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA030,NA,,,, +Cc16,,1930,EA030,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,1930,EA030,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p83, +Cc18,,1910,EA030,2,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA030,2,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA030,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,with special reference to the more nomadic northern groups,1910,EA030,2,,adeler1939; tauxier1912,EthnographicAtlas_1967_p83, +Cc3,inhabitants of the oasis of Siwa,1920,EA030,8,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA030,7,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,1910,EA030,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p83, +Cc6,,1910,EA030,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA030,1,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA030,NA,,,, +Cc9,Ahaggaren tribe,1920,EA030,2,But the Haratin serfs are sedentary,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA030,7,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,1900,EA030,3,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA030,7,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p83, +Cd12,,1870,EA030,7,"But seminomadic (code ""2"") in some rural regions",bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,1930,EA030,3,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA030,1,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA030,7,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA030,7,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA030,2,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA030,2,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA030,7,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA030,7,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,1940,EA030,2,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA030,7,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA030,7,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA030,7,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA030,6,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,with special reference to the New Empire,-1400,EA030,7,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,with special reference to the Zemmur tribe,1910,EA030,3,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA030,3,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA030,3,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA030,5,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA030,NA,,,, +Ce3,City and environs of Rome,100,EA030,7,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA030,5,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA030,8,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA030,7,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA030,7,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA030,8,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA030,8,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,of the Transvaal,1850,EA030,5,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No4_Oct_1962, +Cf3,,1930,EA030,7,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA030,7,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA030,7,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA030,7,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA030,7,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA030,5,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA030,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA030,7,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA030,8,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA030,NA,,,, +Ch11,Viriatino Village,1955,EA030,7,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA030,5,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA030,7,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,1900,EA030,6,,heffner1955; wichmann1913,EthnographicAtlas_1967_p83, +Ch5,with special reference to the village of Dragelevtsy,1940,EA030,7,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA030,7,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA030,7,,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA030,7,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA030,7,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,with special reference to the Baga Dorbed group,1920,EA030,2,,aberle1953; adelmannd,EthnographicAtlas_1967_p83, +Ci10,Vicinity of Erevan,1900,EA030,7,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA030,3,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,Abkhaz Tribe,1880,EA030,5,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA030,7,,grigolia1939,EthnographicAtlas_1967_p83, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA030,7,,gadzhieva1958,EthnographicAtlas_1967_p83, +Ci4,,1920,EA030,6,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA030,7,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA030,7,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p83, +Ci7,,1900,EA030,7,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p83, +Ci8,,1850,EA030,7,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA030,7,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA030,7,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA030,7,,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,Unspecified,1920,EA030,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA030,7,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA030,7,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,1930,EA030,1,,dickson1949,EthnographicAtlas_1967_p87, +Cj6,with special reference to the sedentary population,1950,EA030,7,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA030,7,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p87, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA030,7,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,1950,EA030,7,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA030,7,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA030,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA030,7,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA030,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA030,8,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA030,7,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA030,3,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA030,3,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,1890,EA030,7,,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA030,1,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA030,6,,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,1920,EA030,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p87, +Ea9,,1950,EA030,7,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA030,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,1920,EA030,6,,krader1963; schram1954,EthnographicAtlas_1967_p87, +Eb3,Narobanchin Territory,1940,EA030,2,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p87,"Assume Murdock comment refers to Col 39, not Col 30 as stated in Gray (1999)" +Eb4,,,EA030,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA030,7,,freikin1954; odonovan1882,Ethnology_Vol2_No2_Apr_1963, +Eb6,,,EA030,NA,,,, +Eb7,,1930,EA030,3,,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA030,NA,,,, +Ec1,Sakhalin Island,1920,EA030,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA030,2,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,1900,EA030,2,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA030,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA030,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA030,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA030,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA030,2,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA030,3,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,1900,EA030,2,,shimkin1939,EthnographicAtlas_1967_p87, +Ec9,,1920,EA030,7,,lattimore1933,EthnographicAtlas_1967_p87, +Ed1,Kanghwa Island,1950,EA030,7,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA030,7,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA030,NA,,,, +Ed14,,,EA030,NA,,,, +Ed15a,,,EA030,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA030,7,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA030,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA030,7,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,Aigun District,1920,EA030,7,,shirokogoroff1924,EthnographicAtlas_1967_p87, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA030,6,,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA030,8,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA030,7,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA030,7,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA030,7,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA030,7,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA030,7,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA030,7,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA030,5,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA030,7,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA030,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA030,3,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA030,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA030,6,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA030,7,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA030,NA,,,, +Ef11,Village and environs of Senapur,1945,EA030,8,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA030,7,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA030,NA,,,, +Ef4,,,EA030,NA,,,, +Ef5,,1900,EA030,5,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,1940,EA030,7,,roy1915; roy1951,EthnographicAtlas_1967_p87, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA030,7,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA030,7,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA030,7,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA030,3,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA030,7,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA030,NA,,,, +Eg12,,,EA030,NA,,,, +Eg13,Bastar State,1941,EA030,7,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA030,7,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA030,7,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA030,7,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA030,3,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA030,6,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA030,5,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA030,4,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,1940,EA030,7,,griffiths1946,EthnographicAtlas_1967_p91, +Eg9,,1930,EA030,4,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA030,2,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA030,NA,,,, +Eh2,,1900,EA030,7,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA030,7,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA030,2,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA030,6,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA030,7,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,1900,EA030,3,"But McLeod reports 'separated hamlets' (code ""7"")",decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA030,6,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91,"Assume Murdock comment refers to Col 28, not Col 30 as stated in Gray (1999)" +Eh9,,1930,EA030,7,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA030,7,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA030,7,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p91, +Ei11,,1910,EA030,7,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA030,7,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA030,7,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA030,7,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA030,NA,,,, +Ei16,,1910,EA030,7,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA030,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA030,7,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,1940,EA030,7,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA030,7,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA030,NA,,,, +Ei3,Nondwin Village,1950,EA030,7,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA030,7,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA030,7,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA030,7,,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,1910,EA030,7,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA030,7,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,1880,EA030,7,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p91, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA030,7,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA030,6,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA030,6,,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA030,7,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA030,5,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA030,4,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA030,7,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA030,5,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA030,4,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA030,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA030,7,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA030,7,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,of the Mergui Archipelago,1920,EA030,1,"The bands are marine in character, i.e., consisting of a group of families each occupying a boat",carrapiett1909; white1922,EthnographicAtlas_1967_p91, +Ej7,,1950,EA030,4,,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,with special reference to those of Trengganu,1940,EA030,7,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA030,7,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA030,7,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,1930,EA030,5,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p91, +Ia11,,1930,EA030,7,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA030,7,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA030,1,Nomadic boat communities,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,1930,EA030,7,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p95, +Ia15,with special reference to those of the Agusan Valley,1920,EA030,5,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA030,6,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA030,NA,,,, +Ia18,,,EA030,NA,,,, +Ia2,,1950,EA030,7,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA030,6,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA030,5,But houses are moved every few years,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA030,6,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA030,7,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA030,7,,fox1954,EthnographicAtlas_1967_p91, +Ia8,,1900,EA030,7,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA030,7,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA030,7,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA030,8,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA030,7,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,with special reference to the Toba group,1930,EA030,7,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p95, +Ib5,with special reference to the village of Sensuron,1920,EA030,7,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA030,7,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,with special reference to those of North Pageh,1920,EA030,7,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p95, +Ib8,with special reference to the Ridan group,1900,EA030,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p95, +Ib9,,,EA030,NA,,,, +Ic1,Borongloe,1940,EA030,5,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA030,7,,hueting1921; riedel1885,EthnographicAtlas_1967_p95, +Ic11,Allang,1950,EA030,7,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA030,3,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA030,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA030,8,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,with special reference to the Mountain Belu,1950,EA030,6,,vroklage1952,EthnographicAtlas_1967_p95, +Ic4,,,EA030,NA,,,, +Ic5,Bare'e subgroup,1910,EA030,7,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p95,"Assume Murdock comment, listed in Gray (1999), applies to Col32, not Col 30" +Ic6,,1930,EA030,7,,drabbe1940,EthnographicAtlas_1967_p95, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA030,7,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,1890,EA030,7,,pleyte1893,EthnographicAtlas_1967_p95, +Ic9,with special reference to eastern Sumba,1930,EA030,8,,nooteboom1940,EthnographicAtlas_1967_p95, +Id1,Alice Springs and environs,1900,EA030,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA030,1,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA030,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA030,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA030,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA030,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA030,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA030,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA030,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,with special reference to the Archer River group,1920,EA030,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p95, +Id7,,1940,EA030,1,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA030,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,1910,EA030,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p95, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA030,7,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA030,7,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA030,5,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA030,6,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA030,7,,landtman1927,EthnographicAtlas_1967_p95, +Ie14,,1900,EA030,7,,haddon1908,EthnographicAtlas_1967_p95, +Ie15,Kalabu; Northern Abelam,1930,EA030,7,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA030,7,,williams194041,EthnographicAtlas_1967_p95, +Ie17,,1940,EA030,4,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA030,5,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA030,6,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA030,7,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA030,7,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,1900,EA030,7,,malinowski1916,EthnographicAtlas_1967_p95, +Ie22,,1900,EA030,7,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,1950,EA030,5,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,1870,EA030,7,,chalmers1890; lawes1879,EthnographicAtlas_1967_p95, +Ie25,,1920,EA030,6,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,1940,EA030,7,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,1910,EA030,6,,thurnwald1916,EthnographicAtlas_1967_p99, +Ie28,,1940,EA030,7,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA030,6,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA030,6,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA030,3,,pouwer1955,EthnographicAtlas_1967_p99, +Ie31,,1950,EA030,6,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA030,7,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA030,3,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA030,NA,,,, +Ie35,,1930,EA030,7,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA030,NA,,,, +Ie37,,,EA030,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA030,6,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA030,7,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA030,7,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA030,3,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,1930,EA030,7,,held1947,EthnographicAtlas_1967_p95, +Ie7,with special reference to the Mae group,1950,EA030,5,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA030,7,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA030,7,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA030,7,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA030,NA,,,, +If11,,1860,EA030,5,,sarfert1919,EthnographicAtlas_1967_p99, +If12,,1940,EA030,7,,mason1954,EthnographicAtlas_1967_p99, +If13,,1900,EA030,5,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p99, +If14,Makin and Butiritari Islands (N),1890,EA030,8,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA030,6,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,1960,EA030,5,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA030,5,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA030,6,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA030,6,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA030,7,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA030,5,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA030,5,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,with special reference to the inhabitants of Onotoa,1940,EA030,7,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p99, +If8,with special reference to those of Saipa,1950,EA030,7,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA030,7,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,Northeastern group,1940,EA030,6,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA030,7,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA030,7,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,with special reference to the Varisi,1900,EA030,6,,scheffler1965,EthnographicAtlas_1967_p99, +Ig13,,1900,EA030,7,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p99, +Ig14,,1900,EA030,6,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA030,NA,,,, +Ig16,,,EA030,NA,,,, +Ig17,,,EA030,NA,,,, +Ig18,,,EA030,NA,,,, +Ig19,,,EA030,NA,,,, +Ig2,Kiriwina Island,1910,EA030,7,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA030,6,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA030,5,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA030,6,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA030,6,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,1920,EA030,7,,fortune1932b,EthnographicAtlas_1967_p99, +Ig6,,1900,EA030,6,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA030,6,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA030,NA,,,, +Ig9,Peri Village,1920,EA030,7,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA030,7,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,Whitsands,1920,EA030,7,,humphreys1926,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA030,NA,,,, +Ih12,,,EA030,NA,,,, +Ih13,,,EA030,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA030,7,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA030,7,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA030,7,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA030,7,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA030,7,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p99, +Ih6,,1890,EA030,7,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p99, +Ih7,,1910,EA030,7,,hadfield1920; ray1917,EthnographicAtlas_1967_p99, +Ih8,with special reference to the village of Nakaroka,1940,EA030,7,,quain1949,EthnographicAtlas_1967_p99, +Ih9,Graciosa Bay,1930,EA030,7,,davenport1964,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA030,7,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,1950,EA030,6,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA030,7,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA030,7,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA030,7,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA030,6,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA030,7,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA030,7,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA030,3,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p99, +Ii6,with special reference to Atafu,1900,EA030,7,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA030,7,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA030,7,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA030,7,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA030,5,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,1900,EA030,5,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA030,7,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA030,5,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA030,7,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,1900,EA030,5,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p103, +Ij6,,1800,EA030,7,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p103, +Ij7,,1900,EA030,7,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,1900,EA030,7,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p103, +Ij9,,1860,EA030,7,,metraux1940,EthnographicAtlas_1967_p103, +Na1,,1930,EA030,2,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA030,7,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA030,7,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA030,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA030,2,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA030,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,1860,EA030,2,,helmandlurie1961,EthnographicAtlas_1967_p103, +Na16,,1860,EA030,1,,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA030,2,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA030,3,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA030,3,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA030,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA030,2,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA030,2,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA030,2,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA030,3,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA030,3,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA030,7,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA030,3,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA030,2,,jenness1937,EthnographicAtlas_1967_p103, +Na29,,1850,EA030,2,,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA030,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA030,2,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA030,2,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA030,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA030,2,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA030,3,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA030,2,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA030,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA030,2,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA030,3,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA030,2,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA030,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA030,3,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA030,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA030,3,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA030,2,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA030,2,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA030,2,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA030,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA030,3,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA030,2,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA030,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA030,7,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA030,7,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA030,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA030,3,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA030,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA030,3,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA030,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA030,2,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA030,2,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA030,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA030,7,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA030,7,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA030,3,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA030,7,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA030,7,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA030,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA030,3,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA030,3,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA030,2,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA030,3,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA030,3,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA030,7,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA030,7,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA030,7,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,1860,EA030,2,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA030,3,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p107, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA030,3,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA030,7,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA030,7,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA030,7,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA030,7,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,1860,EA030,2,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA030,7,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA030,7,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA030,7,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA030,7,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA030,3,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA030,3,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA030,3,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA030,7,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA030,7,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,1860,EA030,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA030,2,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA030,3,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA030,3,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA030,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA030,2,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA030,2,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA030,2,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA030,3,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,with special reference to those near Santa Rosa,1860,EA030,2,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc2,,1850,EA030,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,1860,EA030,2,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,1860,EA030,2,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA030,2,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,1870,EA030,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,Tulare Lake,1860,EA030,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA030,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,1770,EA030,3,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA030,2,,driver1937; gifford1917,EthnographicAtlas_1967_p107, +Nc28,,1800,EA030,3,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA030,3,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA030,2,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA030,2,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA030,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,1870,EA030,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc33,,1860,EA030,2,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA030,2,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA030,2,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA030,3,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA030,2,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA030,3,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA030,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA030,2,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA030,3,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,1860,EA030,2,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA030,2,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA030,2,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA030,2,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA030,2,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA030,2,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA030,2,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA030,2,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA030,3,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA030,2,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA030,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA030,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA030,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA030,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA030,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA030,2,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA030,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA030,2,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA030,2,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA030,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA030,3,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA030,2,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA030,2,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA030,2,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA030,2,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA030,2,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA030,2,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA030,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA030,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA030,2,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA030,2,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA030,2,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA030,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA030,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA030,2,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA030,2,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA030,2,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA030,2,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA030,2,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA030,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA030,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA030,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA030,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA030,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA030,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA030,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA030,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA030,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA030,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA030,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA030,2,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA030,2,,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA030,2,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA030,2,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA030,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA030,2,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA030,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,1860,EA030,7,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA030,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA030,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA030,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA030,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA030,3,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,1800,EA030,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,1860,EA030,2,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA030,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA030,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,1870,EA030,1,,mcallister1937,EthnographicAtlas_1967_p111, +Ne20,,1850,EA030,2,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p115, +Ne21,,,EA030,NA,,,, +Ne3,Comanche Tribe,1870,EA030,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p111, +Ne4,,1870,EA030,2,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA030,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,1830,EA030,3,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p111, +Ne7,,1880,EA030,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,1870,EA030,2,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA030,2,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA030,3,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA030,3,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA030,3,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA030,3,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA030,7,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA030,NA,,,, +Nf2,,1850,EA030,3,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p115, +Nf3,Omaha Tribe,1850,EA030,3,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA030,3,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,1860,EA030,3,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA030,3,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA030,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA030,6,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,1870,EA030,3,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA030,3,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA030,7,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,1750,EA030,7,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p115, +Ng12,,1760,EA030,5,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p115, +Ng13,,,EA030,NA,,,, +Ng14,,,EA030,NA,,,, +Ng15,,,EA030,NA,,,, +Ng2,,,EA030,NA,,,, +Ng3,Upper division in Alabama,1750,EA030,7,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA030,NA,,,, +Ng5,,1750,EA030,7,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA030,3,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA030,7,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,1560,EA030,3,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p115, +Ng9,,1920,EA030,5,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA030,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA030,7,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA030,7,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA030,7,,gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA030,7,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,1920,EA030,8,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA030,2,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA030,2,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA030,3,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA030,7,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA030,5,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,1950,EA030,7,,dozier1954,EthnographicAtlas_1967_p115, +Nh20,,1860,EA030,5,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA030,5,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA030,7,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,1870,EA030,2,,gifford1932a,EthnographicAtlas_1967_p115, +Nh24,,1880,EA030,2,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,1920,EA030,7,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA030,NA,,,, +Nh27,,,EA030,NA,,,, +Nh3,,1930,EA030,3,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA030,7,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA030,7,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA030,7,,parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA030,7,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA030,7,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,1920,EA030,7,,parsons1939; trager1943,EthnographicAtlas_1967_p115, +Ni1,,1930,EA030,5,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA030,3,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA030,6,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,1900,EA030,2,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p115, +Ni5,,1570,EA030,1,,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA030,7,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA030,7,,beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA030,NA,,,, +Ni9,,,EA030,NA,,,, +Nj1,Ojitlan,1940,EA030,7,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA030,7,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA030,NA,,,, +Nj12,,,EA030,NA,,,, +Nj13,,,EA030,NA,,,, +Nj14,,,EA030,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA030,7,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA030,7,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,1940,EA030,7,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA030,NA,,,, +Nj6,,,EA030,NA,,,, +Nj7,with special reference to Ayutla,1930,EA030,7,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA030,7,,foster1948,EthnographicAtlas_1967_p119, +Nj9,,1960,EA030,8,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA030,7,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,1900,EA030,5,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p119, +Sa11,,,EA030,NA,,,, +Sa12,,1948,EA030,7,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA030,7,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA030,NA,,,, +Sa15,,,EA030,NA,,,, +Sa16,,,EA030,NA,,,, +Sa17,,,EA030,NA,,,, +Sa2,,,EA030,NA,,,, +Sa3,,1930,EA030,8,,wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA030,5,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA030,5,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA030,8,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA030,7,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA030,7,,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA030,7,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA030,6,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA030,3,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,with special reference to the Iroka,1940,EA030,7,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA030,5,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA030,7,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,Goajiro Tribe,1940,EA030,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA030,7,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,1520,EA030,7,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA030,7,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA030,3,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA030,7,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,1930,EA030,7,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p119, +Sc12,,1910,EA030,7,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p119, +Sc13,,1950,EA030,2,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p119, +Sc14,,,EA030,NA,,,, +Sc15,,1910,EA030,7,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p119, +Sc16,with special reference to the Makitare,1920,EA030,7,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p119, +Sc17,,1950,EA030,7,,wilbert1963,EthnographicAtlas_1967_p119, +Sc18,,1960,EA030,3,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA030,7,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA030,5,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA030,3,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA030,7,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA030,7,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA030,7,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,1950,EA030,2,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p119, +Sc9,,1950,EA030,7,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p119, +Sd1,Cabrura village,1950,EA030,7,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA030,7,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,1920,EA030,7,,nimuendaju1926,EthnographicAtlas_1967_p119, +Sd4,,1950,EA030,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA030,7,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,1960,EA030,2,,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,1950,EA030,7,,fock1963,EthnographicAtlas_1967_p119, +Sd8,,1950,EA030,2,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA030,4,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA030,2,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA030,7,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,1960,EA030,7,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA030,NA,,,, +Se2,,1940,EA030,7,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA030,5,But dwellings are moved every few years,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA030,7,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA030,4,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA030,7,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA030,NA,,,, +Se8,Upper Inuya River,1950,EA030,5,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA030,7,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA030,7,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA030,7,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA030,5,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA030,7,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,1900,EA030,5,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,1540,EA030,7,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA030,7,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA030,NA,,,, +Sf9,,,EA030,NA,,,, +Sg1,Eastern and central,1870,EA030,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA030,6,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA030,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA030,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA030,1,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA030,2,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA030,2,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,Those in contact with mission,1800,EA030,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA030,1,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA030,4,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,1890,EA030,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,1900,EA030,7,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p123, +Sh8,with special reference to those of the Argentine Chaco,1964,EA030,3,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA030,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA030,2,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA030,7,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA030,7,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA030,7,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA030,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA030,4,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,1900,EA030,2,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p123, +Si7,with special reference to the Cozarimi,1910,EA030,7,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA030,7,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA030,NA,,,, +Sj1,,1950,EA030,3,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,Taquapiri,1950,EA030,7,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA030,2,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA030,7,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA030,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA030,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,Naknenuk subtribe,1880,EA030,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p123, +Sj6,with special reference to the Guajajara subgroup,1930,EA030,7,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA030,7,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA030,7,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,1950,EA030,2,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA030,7,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA030,7,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA030,7,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA030,7,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA030,5,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA030,7,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA030,7,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA030,7,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA030,7,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA030,5,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA030,8,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA030,8,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA030,7,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA030,7,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA030,7,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA030,7,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA030,7,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA030,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA030,7,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA030,7,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA030,3,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA030,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA030,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA030,3,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA030,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA030,3,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA030,3,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA031,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA031,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA031,3,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA031,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA031,3,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,,EA031,NA,,,, +Aa7,,1910,EA031,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,1850,EA031,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA031,1,"For camps, but 100-199 (code ""3"") for bands comprising a number of camps",bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,,EA031,NA,,,, +Ab10,,,EA031,NA,,,, +Ab11,,,EA031,NA,,,, +Ab12,,,EA031,NA,,,, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA031,7,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA031,5,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA031,4,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA031,NA,,,, +Ab17,,,EA031,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA031,3,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,,,EA031,NA,,,, +Ab2,,,EA031,NA,,,, +Ab20,,,EA031,NA,,,, +Ab21a,,,EA031,NA,,,, +Ab21b,,,EA031,NA,,,, +Ab22,,,EA031,NA,,,, +Ab3,Ruling Luyana,1890,EA031,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,,EA031,NA,,,, +Ab5,,1930,EA031,4,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA031,4,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,,,EA031,NA,,,, +Ab8,Basuto,1860,EA031,4,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA031,7,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA031,4,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA031,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,,EA031,NA,,,, +Ac12,,,EA031,NA,,,, +Ac13,,1950,EA031,2,,tew1950; velsen1964,EthnographicAtlas_1967_p63, +Ac14,,,EA031,NA,,,, +Ac15,,,EA031,NA,,,, +Ac16,,,EA031,NA,,,, +Ac17,Feshi territory lineage center,1910,EA031,2,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA031,2,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,1880,EA031,2,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,,EA031,NA,,,, +Ac20,,,EA031,NA,,,, +Ac21,,,EA031,NA,,,, +Ac22,,1930,EA031,3,,mertens1935,EthnographicAtlas_1967_p63, +Ac23,with special reference to the western Lele,1950,EA031,3,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,,EA031,NA,,,, +Ac25,,,EA031,NA,,,, +Ac26,,,EA031,NA,,,, +Ac27,,,EA031,NA,,,, +Ac28,,,EA031,NA,,,, +Ac29,,,EA031,NA,,,, +Ac3,Zambia branch,1900,EA031,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA031,4,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,,EA031,NA,,,, +Ac32,,,EA031,NA,,,, +Ac33,,1940,EA031,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA031,5,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA031,NA,,,, +Ac36,,,EA031,NA,,,, +Ac37,,1950,EA031,2,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,,EA031,NA,,,, +Ac39,,,EA031,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA031,3,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,1900,EA031,2,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,,EA031,NA,,,, +Ac42,,,EA031,NA,,,, +Ac43,,1910,EA031,3,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,,EA031,NA,,,, +Ac6,,1930,EA031,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p63, +Ac7,,1920,EA031,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,1930,EA031,4,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA031,3,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,,EA031,NA,,,, +Ad10,,1910,EA031,3,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,,EA031,NA,,,, +Ad12,,,EA031,NA,,,, +Ad13,,,EA031,NA,,,, +Ad14,,,EA031,NA,,,, +Ad15,,1900,EA031,3,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,,EA031,NA,,,, +Ad17,,,EA031,NA,,,, +Ad18,,,EA031,NA,,,, +Ad19,,1910,EA031,3,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA031,5,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA031,2,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,,EA031,NA,,,, +Ad22,,,EA031,NA,,,, +Ad23,,,EA031,NA,,,, +Ad24,,1910,EA031,5,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,,EA031,NA,,,, +Ad26,,,EA031,NA,,,, +Ad27,,,EA031,NA,,,, +Ad28,,,EA031,NA,,,, +Ad29,,,EA031,NA,,,, +Ad3,,1910,EA031,5,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,,EA031,NA,,,, +Ad31,,,EA031,NA,,,, +Ad32,,,EA031,NA,,,, +Ad33,,,EA031,NA,,,, +Ad34,,,EA031,NA,,,, +Ad35,,,EA031,NA,,,, +Ad36,,,EA031,NA,,,, +Ad37,,1940,EA031,3,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA031,4,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA031,5,,gray1963,EthnographicAtlas_1967_p67, +Ad4,Fort Hall or Metume district,1930,EA031,4,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA031,5,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA031,4,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p67, +Ad42,,1900,EA031,4,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,,EA031,NA,,,, +Ad44,,,EA031,NA,,,, +Ad45,,1920,EA031,3,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,,EA031,NA,,,, +Ad47,,,EA031,NA,,,, +Ad48,,,EA031,NA,,,, +Ad49,,,EA031,NA,,,, +Ad5,,,EA031,NA,,,, +Ad50,,,EA031,NA,,,, +Ad51,,,EA031,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA031,3,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA031,7,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,,,EA031,NA,,,, +Ad9,,,EA031,NA,,,, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA031,3,,winter1956; winter1958,EthnographicAtlas_1967_p67,"Assume Mudock comment applies to Col 30, not col 31 as stated in Gray (1999)" +Ae10,,1910,EA031,3,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,,EA031,NA,,,, +Ae12,,,EA031,NA,,,, +Ae13,,,EA031,NA,,,, +Ae14,,,EA031,NA,,,, +Ae15,,,EA031,NA,,,, +Ae16,,,EA031,NA,,,, +Ae17,,,EA031,NA,,,, +Ae18,,,EA031,NA,,,, +Ae19,,,EA031,NA,,,, +Ae2,,1950,EA031,2,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,,EA031,NA,,,, +Ae21,,,EA031,NA,,,, +Ae22,,,EA031,NA,,,, +Ae23,,,EA031,NA,,,, +Ae24,,,EA031,NA,,,, +Ae25,,,EA031,NA,,,, +Ae26,,,EA031,NA,,,, +Ae27,,,EA031,NA,,,, +Ae28,,1900,EA031,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,,EA031,NA,,,, +Ae3,,1910,EA031,2,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,1920,EA031,3,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA031,4,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA031,2,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,,EA031,NA,,,, +Ae34,,,EA031,NA,,,, +Ae35,,,EA031,NA,,,, +Ae36,,,EA031,NA,,,, +Ae37,,,EA031,NA,,,, +Ae38,,,EA031,NA,,,, +Ae39,,1920,EA031,3,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,,,EA031,NA,,,, +Ae40,,,EA031,NA,,,, +Ae41,,,EA031,NA,,,, +Ae42,,,EA031,NA,,,, +Ae43,,,EA031,NA,,,, +Ae44,,,EA031,NA,,,, +Ae45,,1900,EA031,4,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,,EA031,NA,,,, +Ae47,,,EA031,NA,,,, +Ae48,,,EA031,NA,,,, +Ae49,,,EA031,NA,,,, +Ae5,,,EA031,NA,,,, +Ae50,,,EA031,NA,,,, +Ae51,,,EA031,NA,,,, +Ae52,,,EA031,NA,,,, +Ae53,,,EA031,NA,,,, +Ae54,,,EA031,NA,,,, +Ae55,,,EA031,NA,,,, +Ae56,,1950,EA031,5,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae57,,,EA031,NA,,,, +Ae58,,1910,EA031,2,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA031,NA,,,, +Ae6,,,EA031,NA,,,, +Ae7,,,EA031,NA,,,, +Ae8,,,EA031,NA,,,, +Ae9,,,EA031,NA,,,, +Af1,City and environs of Abomey,1890,EA031,7,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA031,5,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA031,4,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,,,EA031,NA,,,, +Af13,,,EA031,NA,,,, +Af14,,,EA031,NA,,,, +Af15,,1920,EA031,4,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,1910,EA031,4,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA031,NA,,,, +Af18,,,EA031,NA,,,, +Af19,,,EA031,NA,,,, +Af2,,1950,EA031,3,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA031,5,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,,,EA031,NA,,,, +Af22,,,EA031,NA,,,, +Af23,with special reference to the village of Mgbom,1950,EA031,6,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA031,8,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,,EA031,NA,,,, +Af26,with special reference to the Etsako,1900,EA031,6,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,,EA031,NA,,,, +Af28,,,EA031,NA,,,, +Af29,,,EA031,NA,,,, +Af3,Kumasi State,1900,EA031,7,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,1920,EA031,7,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,,,EA031,NA,,,, +Af32,Abeouta Province and Benin,1920,EA031,7,,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA031,7,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA031,8,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA031,NA,,,, +Af36,,,EA031,NA,,,, +Af37,with special reference to the Akpafu,1900,EA031,4,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA031,NA,,,, +Af39,,,EA031,NA,,,, +Af4,,1930,EA031,7,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,,,EA031,NA,,,, +Af41,,,EA031,NA,,,, +Af42,,,EA031,NA,,,, +Af43,,,EA031,NA,,,, +Af44,,,EA031,NA,,,, +Af45,,,EA031,NA,,,, +Af46,,,EA031,NA,,,, +Af47,,1940,EA031,3,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA031,NA,,,, +Af49,,1940,EA031,2,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA031,5,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,,EA031,NA,,,, +Af51,,1920,EA031,5,,tauxier1924a,EthnographicAtlas_1967_p71, +Af52,,1920,EA031,4,,tauxier1924a,EthnographicAtlas_1967_p71, +Af53,,1950,EA031,3,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA031,5,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,,EA031,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA031,4,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,,EA031,NA,,,, +Af58,,,EA031,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA031,8,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA031,5,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA031,5,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,,EA031,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA031,7,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,,EA031,NA,,,, +Ag11,,1910,EA031,3,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,,EA031,NA,,,, +Ag13,,,EA031,NA,,,, +Ag14,,,EA031,NA,,,, +Ag15,,,EA031,NA,,,, +Ag16,,,EA031,NA,,,, +Ag17,,,EA031,NA,,,, +Ag18,,,EA031,NA,,,, +Ag19,,,EA031,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA031,7,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,,EA031,NA,,,, +Ag21,,,EA031,NA,,,, +Ag22,,,EA031,NA,,,, +Ag23,,,EA031,NA,,,, +Ag24,,,EA031,NA,,,, +Ag25,,,EA031,NA,,,, +Ag26,,,EA031,NA,,,, +Ag27,,,EA031,NA,,,, +Ag28,,1930,EA031,7,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA031,6,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA031,3,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p71, +Ag30,,1910,EA031,4,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p71, +Ag31,,,EA031,NA,,,, +Ag32,,,EA031,NA,,,, +Ag33,,1920,EA031,3,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,,EA031,NA,,,, +Ag35,,1910,EA031,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA031,NA,,,, +Ag37,,,EA031,NA,,,, +Ag38,,,EA031,NA,,,, +Ag39,,1910,EA031,5,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA031,5,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,,EA031,NA,,,, +Ag41,,,EA031,NA,,,, +Ag42,,,EA031,NA,,,, +Ag43,,,EA031,NA,,,, +Ag44,,,EA031,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA031,7,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA031,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA031,7,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,,EA031,NA,,,, +Ag49,,,EA031,NA,,,, +Ag5,,1930,EA031,3,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,,EA031,NA,,,, +Ag51,,,EA031,NA,,,, +Ag52,,,EA031,NA,,,, +Ag53,with special reference to those of Garango,1960,EA031,5,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA031,5,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA031,NA,,,, +Ag7,,,EA031,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA031,2,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,,EA031,NA,,,, +Ah1,Zaria Province,1930,EA031,4,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA031,4,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,,EA031,NA,,,, +Ah12,,,EA031,NA,,,, +Ah13,,,EA031,NA,,,, +Ah14,,,EA031,NA,,,, +Ah15,,,EA031,NA,,,, +Ah16,,,EA031,NA,,,, +Ah17,,,EA031,NA,,,, +Ah18,,,EA031,NA,,,, +Ah19,,,EA031,NA,,,, +Ah2,,,EA031,NA,,,, +Ah20,,,EA031,NA,,,, +Ah21,,,EA031,NA,,,, +Ah22,,,EA031,NA,,,, +Ah23,,,EA031,NA,,,, +Ah24,,,EA031,NA,,,, +Ah25,,,EA031,NA,,,, +Ah26,,,EA031,NA,,,, +Ah27,,,EA031,NA,,,, +Ah28,,,EA031,NA,,,, +Ah29,,,EA031,NA,,,, +Ah3,Tar of Benue Province,1920,EA031,4,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,,EA031,NA,,,, +Ah31,,1910,EA031,4,,haughton1912; meek1931b,EthnographicAtlas_1967_p75, +Ah32,,,EA031,NA,,,, +Ah33,,,EA031,NA,,,, +Ah34,,,EA031,NA,,,, +Ah35,,,EA031,NA,,,, +Ah36,,,EA031,NA,,,, +Ah37,,,EA031,NA,,,, +Ah38,,,EA031,NA,,,, +Ah39,,1950,EA031,3,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,1920,EA031,5,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p75, +Ah5,,1930,EA031,5,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,,EA031,NA,,,, +Ah7,,,EA031,NA,,,, +Ah8,,1910,EA031,3,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA031,4,,diamond1964; gunn1953,EthnographicAtlas_1967_p75, +Ai1,,,EA031,NA,,,, +Ai10,,,EA031,NA,,,, +Ai11,,,EA031,NA,,,, +Ai12,,,EA031,NA,,,, +Ai13,,,EA031,NA,,,, +Ai14,,1920,EA031,3,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,,EA031,NA,,,, +Ai16,,,EA031,NA,,,, +Ai17,,,EA031,NA,,,, +Ai18,,,EA031,NA,,,, +Ai19,,,EA031,NA,,,, +Ai2,,,EA031,NA,,,, +Ai20,,,EA031,NA,,,, +Ai21,,1880,EA031,7,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,,EA031,NA,,,, +Ai23,,,EA031,NA,,,, +Ai24,,,EA031,NA,,,, +Ai25,,,EA031,NA,,,, +Ai26,,,EA031,NA,,,, +Ai27,,,EA031,NA,,,, +Ai28,,1910,EA031,4,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,,EA031,NA,,,, +Ai3,,1920,EA031,3,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,,EA031,NA,,,, +Ai31,,,EA031,NA,,,, +Ai32,,,EA031,NA,,,, +Ai33,,,EA031,NA,,,, +Ai34,,,EA031,NA,,,, +Ai35,,,EA031,NA,,,, +Ai36,,1920,EA031,4,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,,EA031,NA,,,, +Ai38,,,EA031,NA,,,, +Ai39,,,EA031,NA,,,, +Ai4,,,EA031,NA,,,, +Ai40,,,EA031,NA,,,, +Ai41,,,EA031,NA,,,, +Ai42,,,EA031,NA,,,, +Ai43,,,EA031,NA,,,, +Ai44,,1920,EA031,4,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,,EA031,NA,,,, +Ai46,,,EA031,NA,,,, +Ai47,,,EA031,NA,,,, +Ai5,,1920,EA031,2,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA031,5,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA031,4,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,,EA031,NA,,,, +Ai9,Around Yagoua in Cameroon,1910,EA031,4,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,,EA031,NA,,,, +Aj10,,,EA031,NA,,,, +Aj11,,,EA031,NA,,,, +Aj12,,1920,EA031,5,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,,EA031,NA,,,, +Aj14,,,EA031,NA,,,, +Aj15,,,EA031,NA,,,, +Aj16,,,EA031,NA,,,, +Aj17,,,EA031,NA,,,, +Aj18,,,EA031,NA,,,, +Aj19,,,EA031,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA031,2,"50-99 (code ""2"") or 100-199 (code ""3"") if several associated camps or kraals are considered a community",baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,,EA031,NA,,,, +Aj21,,,EA031,NA,,,, +Aj22,,,EA031,NA,,,, +Aj23,,,EA031,NA,,,, +Aj24,,,EA031,NA,,,, +Aj25,,,EA031,NA,,,, +Aj26,,,EA031,NA,,,, +Aj27,,,EA031,NA,,,, +Aj28,,,EA031,NA,,,, +Aj29,,1950,EA031,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,,EA031,NA,,,, +Aj30,,,EA031,NA,,,, +Aj31,,,EA031,NA,,,, +Aj4,,1920,EA031,3,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,,EA031,NA,,,, +Aj6,,1940,EA031,3,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,,EA031,NA,,,, +Aj8,,,EA031,NA,,,, +Aj9,,,EA031,NA,,,, +Ca1,Town of Buso,1930,EA031,6,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,,EA031,NA,,,, +Ca11,,,EA031,NA,,,, +Ca12,,,EA031,NA,,,, +Ca13,,,EA031,NA,,,, +Ca14,,,EA031,NA,,,, +Ca15,,,EA031,NA,,,, +Ca16,,,EA031,NA,,,, +Ca17,,,EA031,NA,,,, +Ca18,,1940,EA031,4,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,,EA031,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA031,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,,EA031,NA,,,, +Ca21,,,EA031,NA,,,, +Ca22,,,EA031,NA,,,, +Ca23,,,EA031,NA,,,, +Ca24,,,EA031,NA,,,, +Ca25,,,EA031,NA,,,, +Ca26,,,EA031,NA,,,, +Ca27,,,EA031,NA,,,, +Ca28,,,EA031,NA,,,, +Ca29,,,EA031,NA,,,, +Ca3,,1950,EA031,7,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,,,EA031,NA,,,, +Ca31,,,EA031,NA,,,, +Ca32,,,EA031,NA,,,, +Ca33,,,EA031,NA,,,, +Ca34,,1920,EA031,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,,EA031,NA,,,, +Ca36,,,EA031,NA,,,, +Ca37,,,EA031,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA031,3,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,,EA031,NA,,,, +Ca4,,1950,EA031,3,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p79, +Ca40,,,EA031,NA,,,, +Ca41,,,EA031,NA,,,, +Ca42,,,EA031,NA,,,, +Ca43,,,EA031,NA,,,, +Ca5,,,EA031,NA,,,, +Ca6,,1880,EA031,3,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA031,8,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,,EA031,NA,,,, +Ca9,,,EA031,NA,,,, +Cb1,,,EA031,NA,,,, +Cb10,,1920,EA031,3,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA031,NA,,,, +Cb12,,,EA031,NA,,,, +Cb13,,,EA031,NA,,,, +Cb14,,,EA031,NA,,,, +Cb15,with special reference to the Humr,1940,EA031,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,,EA031,NA,,,, +Cb17,,,EA031,NA,,,, +Cb18,,,EA031,NA,,,, +Cb19,,1870,EA031,7,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA031,8,"But 100-199 (code ""3"") if Dakar is not considered an indigenous city",ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,,EA031,NA,,,, +Cb21,,,EA031,NA,,,, +Cb22,,,EA031,NA,,,, +Cb23,,,EA031,NA,,,, +Cb24,Wodaabe of Niger,1950,EA031,2,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,,EA031,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA031,8,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,,EA031,NA,,,, +Cb28,,,EA031,NA,,,, +Cb29,,,EA031,NA,,,, +Cb3,Bamba division,1940,EA031,7,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,,EA031,NA,,,, +Cb5,,,EA031,NA,,,, +Cb6,,,EA031,NA,,,, +Cb7,,,EA031,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA031,2,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA031,8,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,,EA031,NA,,,, +Cc10,,1900,EA031,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,,EA031,NA,,,, +Cc12,,,EA031,NA,,,, +Cc13,,,EA031,NA,,,, +Cc14,,1880,EA031,2,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA031,NA,,,, +Cc16,,1930,EA031,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,,EA031,NA,,,, +Cc18,,,EA031,NA,,,, +Cc19,,,EA031,NA,,,, +Cc2,Nomads of Tibesti,1950,EA031,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,,,EA031,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA031,6,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA031,7,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,,EA031,NA,,,, +Cc6,,,EA031,NA,,,, +Cc7,,,EA031,NA,,,, +Cc8,,,EA031,NA,,,, +Cc9,Ahaggaren tribe,1920,EA031,2,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA031,2,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,,EA031,NA,,,, +Cd11,,,EA031,NA,,,, +Cd12,,1870,EA031,8,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,,EA031,NA,,,, +Cd14,,,EA031,NA,,,, +Cd15,,1910,EA031,7,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA031,8,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,,EA031,NA,,,, +Cd18,,,EA031,NA,,,, +Cd19,,1920,EA031,7,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA031,8,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,,EA031,NA,,,, +Cd21,,1930,EA031,8,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA031,7,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA031,5,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,,,EA031,NA,,,, +Cd6,with special reference to the New Empire,-1400,EA031,8,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,,,EA031,NA,,,, +Cd8,,,EA031,NA,,,, +Cd9,,,EA031,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA031,4,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA031,NA,,,, +Ce3,City and environs of Rome,100,EA031,8,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA031,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA031,8,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA031,8,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA031,8,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA031,8,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA031,8,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,,,EA031,NA,,,, +Cf3,,1930,EA031,3,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA031,8,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA031,8,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA031,8,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,,EA031,NA,,,, +Cg3,County Clare,1930,EA031,8,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA031,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA031,8,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA031,8,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA031,NA,,,, +Ch11,Viriatino Village,1955,EA031,8,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA031,7,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA031,8,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,1900,EA031,5,,heffner1955; wichmann1913,EthnographicAtlas_1967_p83, +Ch5,with special reference to the village of Dragelevtsy,1940,EA031,8,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA031,7,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA031,8,,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA031,8,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA031,8,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,,,EA031,NA,,,, +Ci10,Vicinity of Erevan,1900,EA031,8,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,,EA031,NA,,,, +Ci12,Abkhaz Tribe,1880,EA031,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA031,NA,,,, +Ci3,,,EA031,NA,,,, +Ci4,,,EA031,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA031,8,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA031,NA,,,, +Ci7,,,EA031,NA,,,, +Ci8,,1850,EA031,8,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,,EA031,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA031,8,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA031,7,,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,,,EA031,NA,,,, +Cj3,,-800,EA031,7,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA031,8,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,,EA031,NA,,,, +Cj6,with special reference to the sedentary population,1950,EA031,8,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA031,8,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p87, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA031,5,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,,EA031,NA,,,, +Ea1,,1950,EA031,8,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA031,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA031,NA,,,, +Ea12,,1940,EA031,5,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA031,8,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA031,5,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA031,3,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,,EA031,NA,,,, +Ea5,,1890,EA031,5,,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA031,5,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA031,3,,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,,EA031,NA,,,, +Ea9,,1950,EA031,8,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA031,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,,EA031,NA,,,, +Eb3,Narobanchin Territory,1940,EA031,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p87, +Eb4,,,EA031,NA,,,, +Eb5,,,EA031,NA,,,, +Eb6,,,EA031,NA,,,, +Eb7,,1930,EA031,3,,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA031,NA,,,, +Ec1,Sakhalin Island,1920,EA031,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,,,EA031,NA,,,, +Ec11,,,EA031,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA031,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA031,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA031,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA031,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA031,1,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA031,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,1900,EA031,2,,shimkin1939,EthnographicAtlas_1967_p87, +Ec9,,,EA031,NA,,,, +Ed1,Kanghwa Island,1950,EA031,8,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA031,8,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA031,NA,,,, +Ed14,,,EA031,NA,,,, +Ed15a,,,EA031,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA031,8,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA031,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA031,3,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,,,EA031,NA,,,, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA031,3,,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA031,8,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA031,8,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA031,8,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA031,5,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA031,3,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA031,3,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA031,4,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA031,3,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA031,7,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA031,5,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA031,4,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA031,NA,,,, +Ee8,,,EA031,NA,,,, +Ef1,,,EA031,NA,,,, +Ef10,,,EA031,NA,,,, +Ef11,Village and environs of Senapur,1945,EA031,8,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA031,8,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA031,NA,,,, +Ef4,,,EA031,NA,,,, +Ef5,,1900,EA031,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,,EA031,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA031,8,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA031,8,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA031,8,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA031,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA031,8,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA031,NA,,,, +Eg12,,,EA031,NA,,,, +Eg13,,,EA031,NA,,,, +Eg14,with special reference to those of the Bison Hills,1940,EA031,2,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA031,8,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA031,2,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA031,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA031,3,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA031,8,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA031,2,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,,EA031,NA,,,, +Eg9,,1930,EA031,2,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA031,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA031,NA,,,, +Eh2,,1900,EA031,7,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA031,3,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA031,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA031,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA031,8,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,,EA031,NA,,,, +Eh8,,1900,EA031,4,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91, +Eh9,,,EA031,NA,,,, +Ei1,Rengsanggr,1900,EA031,3,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA031,NA,,,, +Ei11,,1910,EA031,2,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,,EA031,NA,,,, +Ei13,,1910,EA031,6,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA031,5,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA031,NA,,,, +Ei16,,1910,EA031,4,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA031,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA031,2,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,,EA031,NA,,,, +Ei2,,,EA031,NA,,,, +Ei20,,,EA031,NA,,,, +Ei3,Nondwin Village,1950,EA031,8,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,,,EA031,NA,,,, +Ei5,with special reference to the Jinghpaw,1940,EA031,3,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA031,2,,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,,EA031,NA,,,, +Ei8,with special reference to those of the Jaintia Hills,1900,EA031,2,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,,EA031,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA031,2,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,,,EA031,NA,,,, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA031,5,,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA031,4,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,,EA031,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA031,2,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA031,8,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA031,7,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA031,3,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA031,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA031,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA031,8,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,,,EA031,NA,,,, +Ej7,,1950,EA031,4,,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,,,EA031,NA,,,, +Ej9,,1940,EA031,6,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA031,3,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,,EA031,NA,,,, +Ia11,,1930,EA031,5,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA031,8,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA031,4,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,1930,EA031,4,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p95, +Ia15,,,EA031,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA031,5,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA031,NA,,,, +Ia18,,,EA031,NA,,,, +Ia2,,1950,EA031,6,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA031,3,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA031,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA031,3,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA031,4,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA031,NA,,,, +Ia8,,1900,EA031,5,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA031,5,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,,,EA031,NA,,,, +Ib2,Town and environs of Pare; Modjokuto,1950,EA031,7,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA031,4,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,,,EA031,NA,,,, +Ib5,with special reference to the village of Sensuron,1920,EA031,4,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,,EA031,NA,,,, +Ib7,,,EA031,NA,,,, +Ib8,,,EA031,NA,,,, +Ib9,,,EA031,NA,,,, +Ic1,Borongloe,1940,EA031,3,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA031,NA,,,, +Ic11,Allang,1950,EA031,6,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA031,5,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA031,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA031,3,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,,,EA031,NA,,,, +Ic4,,,EA031,NA,,,, +Ic5,,,EA031,NA,,,, +Ic6,,,EA031,NA,,,, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA031,5,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,,EA031,NA,,,, +Ic9,,,EA031,NA,,,, +Id1,Alice Springs and environs,1900,EA031,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA031,3,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA031,2,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA031,NA,,,, +Id13,,1930,EA031,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA031,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA031,3,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA031,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA031,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,with special reference to the Archer River group,1920,EA031,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p95, +Id7,,1940,EA031,1,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA031,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,,EA031,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA031,2,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA031,5,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA031,4,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,,,EA031,NA,,,, +Ie13,,,EA031,NA,,,, +Ie14,,,EA031,NA,,,, +Ie15,,,EA031,NA,,,, +Ie16,,,EA031,NA,,,, +Ie17,,1940,EA031,4,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA031,4,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA031,4,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA031,2,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,,EA031,NA,,,, +Ie21,,,EA031,NA,,,, +Ie22,,1900,EA031,4,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,1950,EA031,1,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,,EA031,NA,,,, +Ie25,,,EA031,NA,,,, +Ie26,,1940,EA031,3,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,,EA031,NA,,,, +Ie28,,,EA031,NA,,,, +Ie29,,,EA031,NA,,,, +Ie3,,,EA031,NA,,,, +Ie30,,1950,EA031,3,,pouwer1955,EthnographicAtlas_1967_p99, +Ie31,,1950,EA031,3,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA031,5,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA031,2,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA031,NA,,,, +Ie35,,1930,EA031,4,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA031,NA,,,, +Ie37,,,EA031,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA031,4,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA031,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA031,2,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA031,2,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,,EA031,NA,,,, +Ie7,with special reference to the Mae group,1950,EA031,4,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA031,5,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA031,2,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,,,EA031,NA,,,, +If10,,,EA031,NA,,,, +If11,,,EA031,NA,,,, +If12,,1940,EA031,3,,mason1954,EthnographicAtlas_1967_p99, +If13,,1900,EA031,4,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p99, +If14,Makin and Butiritari Islands (N),1890,EA031,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,,EA031,NA,,,, +If16,,1960,EA031,4,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA031,3,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA031,3,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA031,3,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA031,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA031,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA031,2,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,with special reference to the inhabitants of Onotoa,1940,EA031,4,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p99, +If8,with special reference to those of Saipa,1950,EA031,5,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA031,2,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,,,EA031,NA,,,, +Ig10,,1950,EA031,2,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA031,1,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,,,EA031,NA,,,, +Ig13,,,EA031,NA,,,, +Ig14,,1900,EA031,4,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA031,NA,,,, +Ig16,,,EA031,NA,,,, +Ig17,,,EA031,NA,,,, +Ig18,,,EA031,NA,,,, +Ig19,,,EA031,NA,,,, +Ig2,Kiriwina Island,1910,EA031,3,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA031,3,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA031,NA,,,, +Ig3,,1930,EA031,3,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA031,4,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,,EA031,NA,,,, +Ig6,,1900,EA031,3,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA031,3,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA031,NA,,,, +Ig9,Peri Village,1920,EA031,3,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,,EA031,NA,,,, +Ih10,,,EA031,NA,,,, +Ih11,,,EA031,NA,,,, +Ih12,,,EA031,NA,,,, +Ih13,,,EA031,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA031,6,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,,,EA031,NA,,,, +Ih3,Bunlap Village,1950,EA031,2,"50-99 (code ""2"") or 100-199 (code ""3"") before recent depopulation",lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA031,2,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA031,NA,,,, +Ih6,,,EA031,NA,,,, +Ih7,,,EA031,NA,,,, +Ih8,with special reference to the village of Nakaroka,1940,EA031,2,,quain1949,EthnographicAtlas_1967_p99, +Ih9,,,EA031,NA,,,, +Ii1,with special reference to American Samoa,1920,EA031,2,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,,EA031,NA,,,, +Ii12,,,EA031,NA,,,, +Ii13,,,EA031,NA,,,, +Ii14,,1829,EA031,4,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA031,5,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA031,3,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,,,EA031,NA,,,, +Ii5,,,EA031,NA,,,, +Ii6,,,EA031,NA,,,, +Ii7,,,EA031,NA,,,, +Ii8,,,EA031,NA,,,, +Ii9,,1840,EA031,4,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,,EA031,NA,,,, +Ij10,,,EA031,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA031,4,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA031,2,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,,EA031,NA,,,, +Ij5,,,EA031,NA,,,, +Ij6,,,EA031,NA,,,, +Ij7,,,EA031,NA,,,, +Ij8,,,EA031,NA,,,, +Ij9,,,EA031,NA,,,, +Na1,,1930,EA031,1,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,,EA031,NA,,,, +Na11,,1920,EA031,3,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA031,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA031,1,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA031,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,,EA031,NA,,,, +Na16,,,EA031,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA031,2,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA031,4,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA031,3,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA031,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA031,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA031,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA031,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA031,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,,,EA031,NA,,,, +Na26,,,EA031,NA,,,, +Na27,,,EA031,NA,,,, +Na28,,,EA031,NA,,,, +Na29,,1850,EA031,1,,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA031,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA031,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,,,EA031,NA,,,, +Na32,Lake St. John & Mistassini Band,1880,EA031,3,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA031,2,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA031,1,"The ""co-residential group,"" not the band",dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA031,2,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA031,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA031,2,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA031,2,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA031,2,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA031,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,,EA031,NA,,,, +Na41,Mainland division,1700,EA031,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,,,EA031,NA,,,, +Na43,,1920,EA031,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA031,1,"But 100-199 (code ""3"") today",graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA031,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA031,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,,EA031,NA,,,, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA031,2,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,,,EA031,NA,,,, +Na9,Unalaska Branch (Eastern Aleut),1830,EA031,3,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,,,EA031,NA,,,, +Nb10,,,EA031,NA,,,, +Nb11,,,EA031,NA,,,, +Nb12,,,EA031,NA,,,, +Nb13,,,EA031,NA,,,, +Nb14,,,EA031,NA,,,, +Nb15,,1880,EA031,3,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA031,2,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA031,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA031,1,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,,EA031,NA,,,, +Nb2,Twana Tribe,1850,EA031,2,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,,EA031,NA,,,, +Nb21,,,EA031,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA031,4,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA031,2,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA031,3,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA031,2,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,,EA031,NA,,,, +Nb27,with special reference to the Tait,1880,EA031,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,,EA031,NA,,,, +Nb29,,,EA031,NA,,,, +Nb3,,,EA031,NA,,,, +Nb30,,,EA031,NA,,,, +Nb31,,,EA031,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA031,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA031,1,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,,EA031,NA,,,, +Nb35,,1860,EA031,2,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA031,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,,EA031,NA,,,, +Nb38,,,EA031,NA,,,, +Nb39,,1860,EA031,2,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA031,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA031,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,,EA031,NA,,,, +Nb7,,,EA031,NA,,,, +Nb8,,1880,EA031,4,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA031,2,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA031,3,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,,EA031,NA,,,, +Nc11,,,EA031,NA,,,, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA031,1,"For the hamlet, but 100-199 (code ""3"") for the hamlet cluster",dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,,,EA031,NA,,,, +Nc14,with special reference to the northeastern Wintu,1860,EA031,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,,EA031,NA,,,, +Nc16,,,EA031,NA,,,, +Nc17,,,EA031,NA,,,, +Nc18,"Clear Lake, Village of Cignon",1860,EA031,3,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,,,EA031,NA,,,, +Nc2,,1850,EA031,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,1860,EA031,3,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,,EA031,NA,,,, +Nc22,,,EA031,NA,,,, +Nc23,,1870,EA031,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,,,EA031,NA,,,, +Nc25,,,EA031,NA,,,, +Nc26,,1770,EA031,3,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA031,NA,,,, +Nc28,,,EA031,NA,,,, +Nc29,,,EA031,NA,,,, +Nc3,,,EA031,NA,,,, +Nc30,,,EA031,NA,,,, +Nc31,,,EA031,NA,,,, +Nc32,,,EA031,NA,,,, +Nc33,,1860,EA031,3,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,,EA031,NA,,,, +Nc4,,1860,EA031,2,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,,,EA031,NA,,,, +Nc6,with special reference to the Southern Diegueno,1850,EA031,3,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA031,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA031,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA031,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA031,4,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,,EA031,NA,,,, +Nd11,with special reference to the southeastern Shuswap,1850,EA031,3,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,,EA031,NA,,,, +Nd13,,,EA031,NA,,,, +Nd14,,1860,EA031,3,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA031,2,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,,EA031,NA,,,, +Nd17,,,EA031,NA,,,, +Nd18,,1860,EA031,2,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,,EA031,NA,,,, +Nd2,,,EA031,NA,,,, +Nd20,,1850,EA031,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,,EA031,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA031,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,,EA031,NA,,,, +Nd24,,1870,EA031,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,,EA031,NA,,,, +Nd26,,1870,EA031,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA031,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,,EA031,NA,,,, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA031,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA031,3,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,,EA031,NA,,,, +Nd31,,1850,EA031,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA031,1,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA031,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA031,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA031,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA031,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA031,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA031,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA031,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA031,2,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA031,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,,EA031,NA,,,, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA031,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA031,1,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA031,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA031,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA031,2,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA031,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA031,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA031,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,,EA031,NA,,,, +Nd50,,1860,EA031,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA031,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,,,EA031,NA,,,, +Nd53,,1860,EA031,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,,,EA031,NA,,,, +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA031,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,,EA031,NA,,,, +Nd57,,,EA031,NA,,,, +Nd58,,,EA031,NA,,,, +Nd59,,,EA031,NA,,,, +Nd6,,1850,EA031,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,,EA031,NA,,,, +Nd61,,,EA031,NA,,,, +Nd62,,1860,EA031,2,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA031,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA031,3,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA031,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,,,EA031,NA,,,, +Nd67,,1870,EA031,2,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,,,EA031,NA,,,, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA031,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,,EA031,NA,,,, +Ne1,,,EA031,NA,,,, +Ne10,,1860,EA031,5,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA031,4,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA031,4,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA031,3,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA031,4,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA031,5,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,,EA031,NA,,,, +Ne17,,1860,EA031,3,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA031,4,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,,EA031,NA,,,, +Ne2,,,EA031,NA,,,, +Ne20,,,EA031,NA,,,, +Ne21,,,EA031,NA,,,, +Ne3,,,EA031,NA,,,, +Ne4,,,EA031,NA,,,, +Ne5,,,EA031,NA,,,, +Ne6,,,EA031,NA,,,, +Ne7,,,EA031,NA,,,, +Ne8,,,EA031,NA,,,, +Ne9,,1860,EA031,4,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,,EA031,NA,,,, +Nf11,,,EA031,NA,,,, +Nf12,,,EA031,NA,,,, +Nf13,,,EA031,NA,,,, +Nf14,,,EA031,NA,,,, +Nf15,,,EA031,NA,,,, +Nf2,,,EA031,NA,,,, +Nf3,Omaha Tribe,1850,EA031,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA031,5,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,,EA031,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA031,4,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,,,EA031,NA,,,, +Nf8,,,EA031,NA,,,, +Nf9,,,EA031,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA031,5,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA031,4,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,,EA031,NA,,,, +Ng12,,,EA031,NA,,,, +Ng13,,,EA031,NA,,,, +Ng14,,,EA031,NA,,,, +Ng15,,,EA031,NA,,,, +Ng2,,,EA031,NA,,,, +Ng3,Upper division in Alabama,1750,EA031,5,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA031,NA,,,, +Ng5,,1750,EA031,4,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA031,4,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA031,4,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,,EA031,NA,,,, +Ng9,,,EA031,NA,,,, +Nh1,,,EA031,NA,,,, +Nh10,,1920,EA031,6,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA031,4,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA031,4,,gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA031,6,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,1920,EA031,6,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,,EA031,NA,,,, +Nh16,,,EA031,NA,,,, +Nh17,,1870,EA031,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA031,4,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,,EA031,NA,,,, +Nh2,,1950,EA031,5,,dozier1954,EthnographicAtlas_1967_p115, +Nh20,,,EA031,NA,,,, +Nh21,,,EA031,NA,,,, +Nh22,,1860,EA031,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,,EA031,NA,,,, +Nh24,,,EA031,NA,,,, +Nh25,,1920,EA031,4,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA031,NA,,,, +Nh27,,,EA031,NA,,,, +Nh3,,1930,EA031,4,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA031,6,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA031,2,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA031,5,,parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA031,5,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA031,5,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,1920,EA031,3,,parsons1939; trager1943,EthnographicAtlas_1967_p115, +Ni1,,,EA031,NA,,,, +Ni2,,,EA031,NA,,,, +Ni3,Huichol Tribe,1920,EA031,5,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,,EA031,NA,,,, +Ni5,,,EA031,NA,,,, +Ni6,,,EA031,NA,,,, +Ni7,,,EA031,NA,,,, +Ni8,,,EA031,NA,,,, +Ni9,,,EA031,NA,,,, +Nj1,Ojitlan,1940,EA031,5,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA031,7,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA031,NA,,,, +Nj12,,,EA031,NA,,,, +Nj13,,,EA031,NA,,,, +Nj14,,,EA031,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA031,8,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,,,EA031,NA,,,, +Nj4,,1940,EA031,7,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA031,NA,,,, +Nj6,,,EA031,NA,,,, +Nj7,,,EA031,NA,,,, +Nj8,,,EA031,NA,,,, +Nj9,,1960,EA031,7,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA031,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,,EA031,NA,,,, +Sa11,,,EA031,NA,,,, +Sa12,,,EA031,NA,,,, +Sa13,,,EA031,NA,,,, +Sa14,,,EA031,NA,,,, +Sa15,,,EA031,NA,,,, +Sa16,,,EA031,NA,,,, +Sa17,,,EA031,NA,,,, +Sa2,,,EA031,NA,,,, +Sa3,,,EA031,NA,,,, +Sa4,with special reference to those of Panama,1960,EA031,2,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,,EA031,NA,,,, +Sa6,,1520,EA031,7,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA031,6,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA031,6,,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA031,3,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,,,EA031,NA,,,, +Sb2,,,EA031,NA,,,, +Sb3,with special reference to the Iroka,1940,EA031,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA031,5,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA031,NA,,,, +Sb6,Goajiro Tribe,1940,EA031,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA031,1,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,,EA031,NA,,,, +Sb9,,1930,EA031,8,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA031,2,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA031,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,,EA031,NA,,,, +Sc12,,,EA031,NA,,,, +Sc13,,1950,EA031,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p119, +Sc14,,,EA031,NA,,,, +Sc15,,,EA031,NA,,,, +Sc16,,,EA031,NA,,,, +Sc17,,1950,EA031,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sc18,,1960,EA031,3,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,,EA031,NA,,,, +Sc3,Barama River,1930,EA031,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA031,2,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,,EA031,NA,,,, +Sc6,,,EA031,NA,,,, +Sc7,,1950,EA031,1,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,,EA031,NA,,,, +Sc9,,1950,EA031,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p119, +Sd1,Cabrura village,1950,EA031,2,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA031,3,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,,EA031,NA,,,, +Sd4,,1950,EA031,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA031,2,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,1960,EA031,2,,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,,EA031,NA,,,, +Sd8,,1950,EA031,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA031,2,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA031,1,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA031,5,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,,EA031,NA,,,, +Se12,,,EA031,NA,,,, +Se2,,1940,EA031,3,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA031,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA031,1,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA031,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,,EA031,NA,,,, +Se7,,,EA031,NA,,,, +Se8,Upper Inuya River,1950,EA031,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA031,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA031,7,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA031,5,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA031,5,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA031,3,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,,EA031,NA,,,, +Sf6,,1540,EA031,7,Inferred from the report of large fortified towns,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA031,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA031,NA,,,, +Sf9,,,EA031,NA,,,, +Sg1,Eastern and central,1870,EA031,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA031,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA031,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA031,2,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA031,1,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA031,2,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,,EA031,NA,,,, +Sh3,,,EA031,NA,,,, +Sh4,,,EA031,NA,,,, +Sh5,,1910,EA031,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,,EA031,NA,,,, +Sh7,,,EA031,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA031,4,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,,,EA031,NA,,,, +Si1,,,EA031,NA,,,, +Si10,,1950,EA031,3,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA031,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA031,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA031,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA031,3,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,,EA031,NA,,,, +Si7,with special reference to the Cozarimi,1910,EA031,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA031,2,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA031,NA,,,, +Sj1,,,EA031,NA,,,, +Sj10,,,EA031,NA,,,, +Sj11,Village of Sao Domingo,1958,EA031,3,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,,EA031,NA,,,, +Sj3,Duque de Caxias Reservation,1910,EA031,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA031,3,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,Naknenuk subtribe,1880,EA031,2,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p123, +Sj6,,,EA031,NA,,,, +Sj7,,1920,EA031,2,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA031,4,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,1950,EA031,3,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA031,8,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA031,4,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA031,4,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA031,6,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA031,8,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA031,7,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA031,2,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA031,2,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA031,8,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA031,8,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA031,5,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA031,3,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA031,3,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA031,7,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA031,4,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA031,2,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA031,2,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA031,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA031,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA031,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA031,2,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA031,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA031,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA031,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA031,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA031,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA031,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA032,3,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA032,2,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA032,2,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA032,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA032,2,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,1920,EA032,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p63, +Aa7,,1910,EA032,2,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,1850,EA032,2,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA032,3,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,1900,EA032,3,,irle1906; vedder1928,EthnographicAtlas_1967_p63, +Ab10,,1936,EA032,3,,hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,1850,EA032,3,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA032,3,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p63, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA032,3,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA032,3,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA032,3,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA032,3,,earthy1933,EthnographicAtlas_1967_p63, +Ab17,,,EA032,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA032,2,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA032,3,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,1880,EA032,3,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA032,NA,,,, +Ab21a,,1930,EA032,3,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA032,NA,,,, +Ab22,,,EA032,NA,,,, +Ab3,Ruling Luyana,1890,EA032,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,1920,EA032,2,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA032,3,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA032,3,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA032,3,,langandtastevin1937,EthnographicAtlas_1967_p63, +Ab8,Basuto,1860,EA032,3,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA032,3,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA032,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA032,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA032,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,1920,EA032,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p63, +Ac13,,1950,EA032,3,,tew1950; velsen1964,EthnographicAtlas_1967_p63, +Ac14,,1900,EA032,3,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p63, +Ac15,,,EA032,NA,,,, +Ac16,,1940,EA032,3,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA032,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA032,3,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,1880,EA032,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA032,3,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p63, +Ac20,,1920,EA032,2,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA032,2,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p63, +Ac22,,1930,EA032,3,,mertens1935,EthnographicAtlas_1967_p63, +Ac23,with special reference to the western Lele,1950,EA032,3,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,1910,EA032,2,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA032,3,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p63, +Ac26,,1920,EA032,2,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA032,3,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA032,3,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p63, +Ac29,,,EA032,NA,,,, +Ac3,Zambia branch,1900,EA032,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA032,3,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA032,3,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA032,3,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA032,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA032,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA032,NA,,,, +Ac36,,1920,EA032,3,"Formerly, but more recently subject to the Ngoni",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,1950,EA032,3,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA032,3,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p63, +Ac39,,,EA032,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA032,3,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,1900,EA032,2,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA032,3,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA032,NA,,,, +Ac43,,1910,EA032,2,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA032,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,1930,EA032,2,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p63, +Ac7,,1920,EA032,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,1930,EA032,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA032,2,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,1950,EA032,2,,grottanelli1955,EthnographicAtlas_1967_p63, +Ad10,,1910,EA032,3,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,1930,EA032,2,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA032,2,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA032,3,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,Morogoro District,1930,EA032,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,1900,EA032,2,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,1920,EA032,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA032,2,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,1910,EA032,2,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA032,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA032,2,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA032,2,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,1930,EA032,2,,maurice193538,EthnographicAtlas_1967_p67, +Ad22,,1950,EA032,3,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,1910,EA032,3,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA032,3,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,1900,EA032,3,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA032,3,,sick1916,Ethnology_Vol7_No2_Apr_1968, +Ad27,,1880,EA032,3,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA032,2,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA032,2,,ingrams1930; prins1961,EthnographicAtlas_1967_p67, +Ad3,,1910,EA032,2,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,1890,EA032,2,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p67, +Ad31,,,EA032,NA,,,, +Ad32,,1900,EA032,3,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p67, +Ad33,,1900,EA032,2,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p67, +Ad34,,1910,EA032,4,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA032,3,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p67, +Ad36,,1890,EA032,2,But one recent source reports paramount chiefs with rain-making functions,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA032,3,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA032,2,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA032,2,,gray1963,EthnographicAtlas_1967_p67, +Ad4,Fort Hall or Metume district,1930,EA032,3,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA032,3,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA032,3,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p67, +Ad42,,1900,EA032,2,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,1900,EA032,2,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA032,2,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p67, +Ad45,,1920,EA032,2,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,1950,EA032,2,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p67, +Ad47,,1900,EA032,2,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA032,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA032,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA032,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA032,3,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA032,3,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA032,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA032,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA032,3,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,1900,EA032,3,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA032,3,,winter1956; winter1958,EthnographicAtlas_1967_p67, +Ae10,,1910,EA032,3,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA032,2,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA032,3,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA032,NA,,,, +Ae14,,1950,EA032,3,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,1940,EA032,2,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p67, +Ae16,,,EA032,NA,,,, +Ae17,,1900,EA032,2,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,1900,EA032,3,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA032,NA,,,, +Ae2,,1950,EA032,3,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,1940,EA032,4,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA032,3,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA032,3,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p67, +Ae23,,,EA032,NA,,,, +Ae24,,,EA032,NA,,,, +Ae25,with special reference to the northern Tetela,1920,EA032,NA,Paramount chiefs imposed by Luba and Songe conquerors,heusch1955; tordayandjoyce1922; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae26,,1910,EA032,2,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA032,3,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA032,3,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,1900,EA032,3,"Entry follows Lindemann; Hutereau reports 'extended families' (EA032 code ""3"") with 'no political authority beyond the local community' (EA033 code ""1"")",hutereau1910a; lindemann1906,EthnographicAtlas_1967_p67, +Ae3,,1910,EA032,3,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,1920,EA032,2,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA032,2,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA032,2,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA032,3,"But Moller reports 'extended families' (EA032 code ""3"") grouped within larger chiefdoms (2 levels) (EA033 code ""3"")",czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA032,2,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA032,2,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA032,3,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA032,NA,,,, +Ae38,,1920,EA032,3,,wijnant192526,EthnographicAtlas_1967_p67, +Ae39,,1920,EA032,4,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA032,4,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,1910,EA032,3,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA032,3,,andersson1953,EthnographicAtlas_1967_p67, +Ae42,,1900,EA032,2,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA032,3,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA032,3,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA032,2,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA032,4,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA032,2,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA032,3,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae49,,,EA032,NA,,,, +Ae5,,1910,EA032,4,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae50,,1920,EA032,4,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p67, +Ae51,Ndiki subtribe,1940,EA032,2,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae52,,,EA032,NA,,,, +Ae53,,,EA032,NA,,,, +Ae54,,,EA032,NA,,,, +Ae55,,1950,EA032,4,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae56,,1950,EA032,4,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae57,,1930,EA032,4,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA032,2,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA032,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA032,3,,verhulpen1936,Ethnology_Vol7_No2_Apr_1968, +Ae7,,1910,EA032,4,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA032,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,1950,EA032,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Af1,City and environs of Abomey,1890,EA032,3,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA032,4,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA032,3,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,with special reference to the Kwahu,1930,EA032,3,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA032,3,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,1930,EA032,3,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af15,,1920,EA032,3,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,1910,EA032,3,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA032,4,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA032,3,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA032,4,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,1950,EA032,4,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA032,4,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,with special reference to the Kalabari,1920,EA032,3,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA032,3,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p71, +Af23,with special reference to the village of Mgbom,1950,EA032,4,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA032,4,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,1930,EA032,4,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,with special reference to the Etsako,1900,EA032,4,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA032,3,But long subject to Hausa or Fulani overlords,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA032,3,,gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,1950,EA032,3,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA032,4,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,1920,EA032,3,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,,,EA032,NA,,,, +Af32,Abeouta Province and Benin,1920,EA032,4,,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA032,4,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA032,4,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA032,3,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA032,4,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p71, +Af37,with special reference to the Akpafu,1900,EA032,3,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA032,3,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA032,4,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA032,4,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA032,3,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA032,3,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA032,4,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p71, +Af43,,1930,EA032,3,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p71, +Af44,,,EA032,NA,,,, +Af45,,1900,EA032,3,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA032,3,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA032,3,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA032,2,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA032,3,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA032,4,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,1920,EA032,3,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA032,4,,tauxier1924a,EthnographicAtlas_1967_p71, +Af52,,1920,EA032,4,,tauxier1924a,EthnographicAtlas_1967_p71, +Af53,,,EA032,NA,,,, +Af54,,1930,EA032,3,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,1950,EA032,4,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA032,3,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA032,3,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,1900,EA032,3,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA032,4,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA032,4,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA032,3,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,1900,EA032,3,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p71, +Ag1,Segou to Bamako on Niger River,1920,EA032,4,"Formerly 'clan-barrios' (EA032 code ""4"") grouped within states (3 levels) (EA033 code ""4"") under the former great states of Kaarta and Segou",dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA032,3,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,1910,EA032,3,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,1910,EA032,4,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA032,4,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,1950,EA032,4,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA032,3,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA032,3,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p71, +Ag17,,1940,EA032,3,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA032,3,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p71, +Ag19,with special reference to the Felup,1930,EA032,3,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p71, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA032,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,,EA032,NA,,,, +Ag21,,1910,EA032,2,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,with special reference to those of Sine,1920,EA032,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p71, +Ag23,,1910,EA032,3,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA032,3,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA032,3,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p71, +Ag26,,1930,EA032,3,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p71, +Ag27,,1910,EA032,4,But usually subject to alien rulers,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,1930,EA032,4,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA032,3,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA032,4,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p71, +Ag30,,1910,EA032,4,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p71, +Ag31,,1910,EA032,4,,cheron1913; holas1957,EthnographicAtlas_1967_p71, +Ag32,,1900,EA032,4,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p71, +Ag33,,,EA032,NA,,,, +Ag34,,1930,EA032,3,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA032,3,But subject to the Abron,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA032,NA,,,, +Ag37,,1910,EA032,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA032,3,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA032,4,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA032,4,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,1910,EA032,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA032,3,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,1910,EA032,4,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA032,3,Subject to an Abron paramount chief,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA032,3,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA032,4,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA032,3,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA032,3,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,1890,EA032,3,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p75, +Ag49,,1930,EA032,3,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA032,4,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,1910,EA032,2,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA032,3,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA032,3,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA032,3,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA032,4,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA032,4,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA032,4,,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA032,3,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,1930,EA032,3,Formerly a very large state,labouret1934; sidibe1932,EthnographicAtlas_1967_p71, +Ah1,Zaria Province,1930,EA032,4,"Subordinate, since 1790, to the Fulani through district chiefs",gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA032,3,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA032,3,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah12,,1920,EA032,4,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA032,3,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,,EA032,NA,,,, +Ah15,,1920,EA032,3,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p75, +Ah16,,1900,EA032,2,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA032,4,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,,EA032,NA,,,, +Ah19,,1930,EA032,4,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p75, +Ah2,,1920,EA032,4,"Clan-barrios' (EA032 code ""4"") grouped within larger chiefdoms (2 levels) (EA code ""3"") until conquered by the Fulani in the early nineteenth century",meek1931a,EthnographicAtlas_1967_p75, +Ah20,,1920,EA032,4,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,1920,EA032,4,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA032,NA,,,, +Ah23,,,EA032,NA,,,, +Ah24,,,EA032,NA,,,, +Ah25,,1920,EA032,3,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA032,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA032,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA032,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA032,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA032,4,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,1920,EA032,3,,meek1931b,EthnographicAtlas_1967_p75, +Ah31,,1910,EA032,4,,haughton1912; meek1931b,EthnographicAtlas_1967_p75, +Ah32,,1920,EA032,3,"Before conquest by the Fulani, to whom the Vere are now subject",meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA032,4,,meek1931b; temple1922,EthnographicAtlas_1967_p75, +Ah34,with special reference to the Malabu,1920,EA032,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA032,3,"Formerly, but recently 'extended families' (EA032 code ""3"") grouped within larger chiefdoms (2 levels) (EA033 code ""3"") under a Pabir ruler",helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA032,3,,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,1920,EA032,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA032,3,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA032,2,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,1920,EA032,4,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p75, +Ah5,,1930,EA032,4,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,1920,EA032,4,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA032,4,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,1910,EA032,4,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA032,3,,diamond1964; gunn1953,EthnographicAtlas_1967_p75, +Ai1,,1920,EA032,3,,daigre193232; leynaud1954,EthnographicAtlas_1967_p75, +Ai10,Nuba Hills,1940,EA032,3,,nadel1947,EthnographicAtlas_1967_p75, +Ai11,,1900,EA032,2,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA032,4,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,1920,EA032,3,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA032,3,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA032,3,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,,EA032,NA,,,, +Ai17,,1930,EA032,3,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA032,4,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA032,NA,,,, +Ai2,,,EA032,NA,,,, +Ai20,,1910,EA032,3,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA032,2,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,1890,EA032,2,,delafosse1897,EthnographicAtlas_1967_p75, +Ai23,,1920,EA032,3,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,1900,EA032,2,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA032,NA,,,, +Ai26,,1920,EA032,2,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p75, +Ai27,,1890,EA032,2,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA032,3,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA032,2,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA032,3,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA032,2,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA032,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA032,3,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA032,3,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,1880,EA032,2,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA032,2,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,1920,EA032,2,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,1940,EA032,4,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA032,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai39,,1940,EA032,3,,nadel1947,EthnographicAtlas_1967_p75, +Ai4,,1920,EA032,3,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA032,4,,nadel1947,EthnographicAtlas_1967_p75, +Ai41,,1930,EA032,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai42,,1940,EA032,3,,nadel1947; nadel1950,EthnographicAtlas_1967_p75, +Ai43,,1930,EA032,3,,nadel1947; stevenson1940,EthnographicAtlas_1967_p75, +Ai44,,1920,EA032,2,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,1930,EA032,3,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA032,2,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p75, +Ai47,Northern division,1939,EA032,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,1920,EA032,2,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA032,3,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA032,3,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,1930,EA032,3,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p75, +Ai9,Around Yagoua in Cameroon,1910,EA032,3,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,1950,EA032,3,,lawrance1957,EthnographicAtlas_1967_p75, +Aj10,,1920,EA032,3,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA032,3,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA032,3,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,1930,EA032,2,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA032,2,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA032,3,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,with special reference to the Riverain Mondari,1930,EA032,3,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p79, +Aj17,,1890,EA032,3,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA032,2,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,1920,EA032,3,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p79, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA032,3,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,1940,EA032,2,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p79, +Aj21,,1930,EA032,3,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,1930,EA032,2,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA032,3,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA032,3,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,1920,EA032,3,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA032,2,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p79, +Aj27,,1920,EA032,3,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA032,3,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA032,2,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA032,3,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA032,NA,,,, +Aj31,,,EA032,NA,,,, +Aj4,,1920,EA032,3,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA032,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA032,3,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA032,2,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA032,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA032,3,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA032,4,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA032,3,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA032,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p79, +Ca12,,1880,EA032,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p79, +Ca13,with special reference to the eastern Macha,1950,EA032,3,Incorporated in the Ethiopian state,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p79, +Ca14,,,EA032,NA,,,, +Ca15,,1930,EA032,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca16,,1930,EA032,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca17,,1950,EA032,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca18,,1940,EA032,2,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA032,3,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA032,3,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,1890,EA032,2,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA032,3,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA032,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA032,2,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,1950,EA032,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA032,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA032,NA,,,, +Ca27,,1930,EA032,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA032,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p79, +Ca29,,1920,EA032,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p79, +Ca3,,1950,EA032,3,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,Kafa Kingdom,1890,EA032,3,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p79, +Ca31,,1860,EA032,2,Politically integrated in the Ethiopian state,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,1860,EA032,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca33,,1860,EA032,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca34,,1920,EA032,2,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA032,2,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA032,3,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA032,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA032,3,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA032,3,,lewis1965b,EthnographicAtlas_1967_p79, +Ca4,,1950,EA032,3,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p79, +Ca40,,1950,EA032,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA032,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA032,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA032,NA,,,, +Ca5,,1930,EA032,3,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p79, +Ca6,,1880,EA032,3,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA032,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,1940,EA032,3,,leslau1950; shack1963,EthnographicAtlas_1967_p79, +Ca9,,1890,EA032,2,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,,EA032,NA,,,, +Cb10,,1920,EA032,4,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA032,2,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,,EA032,NA,,,, +Cb13,,,EA032,NA,,,, +Cb14,,1910,EA032,2,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA032,3,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA032,2,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA032,3,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,1930,EA032,3,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p79, +Cb19,,1870,EA032,3,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA032,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,1920,EA032,3,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA032,NA,,,, +Cb22,,1920,EA032,4,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA032,3,,kane1939; lafont1939,EthnographicAtlas_1967_p83, +Cb24,Wodaabe of Niger,1950,EA032,3,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,1930,EA032,3,For the numerically preponderant Moslems,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA032,3,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,1920,EA032,4,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA032,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA032,NA,,,, +Cb3,Bamba division,1940,EA032,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,,EA032,NA,,,, +Cb5,,1910,EA032,2,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p79, +Cb6,,1920,EA032,4,,woodnd,EthnographicAtlas_1967_p79, +Cb7,,1920,EA032,3,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA032,2,But subject to sedentary Fulani emirs through district chiefs,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA032,3,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA032,4,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA032,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,1860,EA032,2,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA032,2,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA032,2,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA032,2,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA032,NA,,,, +Cc16,,1930,EA032,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,1930,EA032,3,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p83, +Cc18,,1910,EA032,3,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA032,3,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA032,3,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,with special reference to the more nomadic northern groups,1910,EA032,3,,adeler1939; tauxier1912,EthnographicAtlas_1967_p83, +Cc3,inhabitants of the oasis of Siwa,1920,EA032,4,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA032,3,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,1910,EA032,3,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p83, +Cc6,,1910,EA032,3,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA032,3,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA032,NA,,,, +Cc9,Ahaggaren tribe,1920,EA032,3,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA032,3,Integrated into the Egyptian state; had a strong indigenous state in pre-Arab times,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,1900,EA032,3,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA032,3,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p83, +Cd12,,1870,EA032,4,Under French colonial administration until recently,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,1930,EA032,3,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA032,3,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA032,3,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA032,3,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA032,3,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA032,2,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA032,3,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA032,4,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,1940,EA032,3,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA032,4,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA032,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA032,4,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA032,4,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,with special reference to the New Empire,-1400,EA032,2,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,with special reference to the Zemmur tribe,1910,EA032,3,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,,EA032,NA,,,, +Cd9,,1900,EA032,3,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA032,3,"For the Gheg, but for the Albanians as a whole: 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA032,NA,,,, +Ce3,City and environs of Rome,100,EA032,3,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA032,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA032,2,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA032,2,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA032,2,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA032,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA032,2,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,of the Transvaal,1850,EA032,3,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No4_Oct_1962, +Cf3,,1930,EA032,2,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA032,2,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA032,2,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA032,3,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA032,3,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA032,2,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA032,2,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA032,2,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA032,3,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA032,NA,,,, +Ch11,Viriatino Village,1955,EA032,2,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA032,NA,,,, +Ch3,with special reference to the Hana district of central Moravia,1940,EA032,2,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,1900,EA032,3,,heffner1955; wichmann1913,EthnographicAtlas_1967_p83, +Ch5,with special reference to the village of Dragelevtsy,1940,EA032,3,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA032,3,Integrated into the Russian Empire,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA032,3,Integrated into the Soviet state,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA032,3,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA032,3,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,with special reference to the Baga Dorbed group,1920,EA032,4,,aberle1953; adelmannd,EthnographicAtlas_1967_p83, +Ci10,Vicinity of Erevan,1900,EA032,3,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA032,3,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,Abkhaz Tribe,1880,EA032,2,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA032,2,,grigolia1939,EthnographicAtlas_1967_p83, +Ci3,,,EA032,NA,,,, +Ci4,,1920,EA032,3,Prior to Russian rule; integrated today into the Soviet state,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA032,4,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA032,3,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p83, +Ci7,,,EA032,NA,,,, +Ci8,,1850,EA032,2,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA032,3,Long integrated in the Russian state,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA032,3,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA032,4,Integrated into the state of Iraq,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,Unspecified,1920,EA032,3,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA032,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA032,2,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,1930,EA032,3,,dickson1949,EthnographicAtlas_1967_p87, +Cj6,with special reference to the sedentary population,1950,EA032,2,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA032,3,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p87, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA032,3,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,1950,EA032,3,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA032,3,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA032,3,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA032,3,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA032,3,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA032,4,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA032,4,Integrated in the Pakistan state,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA032,3,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA032,3,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,1890,EA032,3,,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA032,2,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA032,3,Integrated into the state of Afghanistan,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,1920,EA032,3,,feilberg1952; wilson1926,EthnographicAtlas_1967_p87, +Ea9,,1950,EA032,3,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA032,3,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,1920,EA032,3,,krader1963; schram1954,EthnographicAtlas_1967_p87, +Eb3,Narobanchin Territory,1940,EA032,3,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p87, +Eb4,,,EA032,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA032,4,,freikin1954; odonovan1882,Ethnology_Vol2_No2_Apr_1963, +Eb6,,,EA032,NA,,,, +Eb7,,1930,EA032,3,Integrated into the Chinese state,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA032,NA,,,, +Ec1,Sakhalin Island,1920,EA032,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA032,3,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,1900,EA032,2,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA032,3,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA032,3,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA032,3,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA032,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA032,3,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA032,3,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,1900,EA032,2,,shimkin1939,EthnographicAtlas_1967_p87, +Ec9,,1920,EA032,3,,lattimore1933,EthnographicAtlas_1967_p87, +Ed1,Kanghwa Island,1950,EA032,3,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA032,4,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA032,NA,,,, +Ed14,,,EA032,NA,,,, +Ed15a,,,EA032,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA032,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA032,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA032,3,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,Aigun District,1920,EA032,4,Integrated into the Chinese state,shirokogoroff1924,EthnographicAtlas_1967_p87, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA032,3,Integrated into the Chinese administrative system,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA032,2,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA032,3,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA032,3,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA032,4,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA032,3,"Formerly ""a strong tribal organization"" but integrated today into the Chinese state",lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA032,3,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA032,4,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA032,3,Subject to the Maharajah of Sikkim through district chiefs,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA032,3,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA032,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA032,3,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA032,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA032,3,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA032,3,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA032,NA,,,, +Ef11,Village and environs of Senapur,1945,EA032,4,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA032,4,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA032,NA,,,, +Ef4,,,EA032,NA,,,, +Ef5,,1900,EA032,3,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,1940,EA032,4,,roy1915; roy1951,EthnographicAtlas_1967_p87, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA032,4,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA032,4,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA032,3,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA032,3,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA032,4,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA032,NA,,,, +Eg12,,,EA032,NA,,,, +Eg13,Bastar State,1941,EA032,3,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA032,2,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA032,4,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA032,3,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA032,3,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA032,4,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA032,4,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA032,2,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,1940,EA032,3,,griffiths1946,EthnographicAtlas_1967_p91, +Eg9,,1930,EA032,2,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA032,2,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA032,NA,,,, +Eh2,,1900,EA032,3,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA032,4,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA032,3,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA032,3,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA032,3,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,1900,EA032,2,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA032,3,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91, +Eh9,,1930,EA032,3,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA032,3,But integrated today into the political system of India,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA032,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p91, +Ei11,,1910,EA032,3,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA032,3,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA032,3,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA032,2,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA032,NA,,,, +Ei16,,1910,EA032,3,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA032,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA032,2,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,1940,EA032,3,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA032,3,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA032,NA,,,, +Ei3,Nondwin Village,1950,EA032,2,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA032,3,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA032,4,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA032,3,,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,1910,EA032,3,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA032,4,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,1880,EA032,3,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p91, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA032,3,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA032,3,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA032,3,Organized in a great state from the 11th to the 17th centuries; thereafter subject to the Vietnamese,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA032,3,But politically incorporated into the state of Thailand,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA032,3,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA032,3,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA032,2,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA032,3,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA032,3,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA032,2,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA032,3,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA032,2,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,of the Mergui Archipelago,1920,EA032,2,,carrapiett1909; white1922,EthnographicAtlas_1967_p91, +Ej7,,1950,EA032,2,,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,with special reference to those of Trengganu,1940,EA032,3,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA032,3,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA032,3,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,1930,EA032,3,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p91, +Ia11,,1930,EA032,2,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA032,2,Politically integrated into the Philippine state,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA032,2,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,1930,EA032,2,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p95, +Ia15,with special reference to those of the Agusan Valley,1920,EA032,2,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA032,3,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA032,NA,,,, +Ia18,,,EA032,NA,,,, +Ia2,,1950,EA032,3,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA032,3,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA032,2,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA032,2,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA032,3,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA032,2,,fox1954,EthnographicAtlas_1967_p91, +Ia8,,1900,EA032,3,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA032,3,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA032,3,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA032,3,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA032,4,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,with special reference to the Toba group,1930,EA032,3,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p95, +Ib5,with special reference to the village of Sensuron,1920,EA032,3,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA032,4,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,with special reference to those of North Pageh,1920,EA032,3,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p95, +Ib8,with special reference to the Ridan group,1900,EA032,2,,hagen1908; schebesta1928,EthnographicAtlas_1967_p95, +Ib9,,,EA032,NA,,,, +Ic1,Borongloe,1940,EA032,3,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA032,3,,hueting1921; riedel1885,EthnographicAtlas_1967_p95, +Ic11,Allang,1950,EA032,3,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA032,2,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA032,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA032,3,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,with special reference to the Mountain Belu,1950,EA032,4,,vroklage1952,EthnographicAtlas_1967_p95, +Ic4,,,EA032,NA,,,, +Ic5,Bare'e subgroup,1910,EA032,3,"But 'extended families' (EA032 code ""3"") with 'no political authority beyond the local community' (EA033 code ""1"") among the eastern Toraja [kk check orig comment]",adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p95,"Assume Murdock comment, listed in Gray (1999), applies to this variable, not Col 30" +Ic6,,1930,EA032,3,,drabbe1940,EthnographicAtlas_1967_p95, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA032,4,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,1890,EA032,3,,pleyte1893,EthnographicAtlas_1967_p95, +Ic9,with special reference to eastern Sumba,1930,EA032,2,,nooteboom1940,EthnographicAtlas_1967_p95, +Id1,Alice Springs and environs,1900,EA032,2,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA032,2,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA032,2,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA032,2,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA032,2,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA032,2,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA032,3,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA032,2,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA032,2,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,with special reference to the Archer River group,1920,EA032,2,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p95, +Id7,,1940,EA032,2,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA032,2,,roth1890,EthnographicAtlas_1967_p95, +Id9,,1910,EA032,2,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p95, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA032,3,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA032,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA032,3,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA032,3,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA032,3,,landtman1927,EthnographicAtlas_1967_p95, +Ie14,,1900,EA032,2,,haddon1908,EthnographicAtlas_1967_p95, +Ie15,Kalabu; Northern Abelam,1930,EA032,3,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA032,4,,williams194041,EthnographicAtlas_1967_p95, +Ie17,,1940,EA032,3,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA032,4,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA032,4,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA032,3,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA032,3,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,1900,EA032,4,,malinowski1916,EthnographicAtlas_1967_p95, +Ie22,,1900,EA032,3,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,1950,EA032,3,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,1870,EA032,3,,chalmers1890; lawes1879,EthnographicAtlas_1967_p95, +Ie25,,1920,EA032,3,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,1940,EA032,4,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,1910,EA032,3,,thurnwald1916,EthnographicAtlas_1967_p99, +Ie28,,1940,EA032,3,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA032,3,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA032,2,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA032,3,,pouwer1955,EthnographicAtlas_1967_p99, +Ie31,,1950,EA032,3,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA032,3,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA032,3,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA032,NA,,,, +Ie35,,1930,EA032,4,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA032,NA,,,, +Ie37,,,EA032,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA032,3,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA032,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA032,3,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA032,3,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,1930,EA032,4,,held1947,EthnographicAtlas_1967_p95, +Ie7,with special reference to the Mae group,1950,EA032,4,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA032,4,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA032,3,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA032,4,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA032,NA,,,, +If11,,1860,EA032,3,,sarfert1919,EthnographicAtlas_1967_p99, +If12,,1940,EA032,3,Subject to the paramount chief of Kwajalein,mason1954,EthnographicAtlas_1967_p99, +If13,,1900,EA032,3,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p99, +If14,Makin and Butiritari Islands (N),1890,EA032,3,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA032,3,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,1960,EA032,3,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA032,3,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA032,3,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA032,3,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA032,3,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA032,3,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA032,3,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,with special reference to the inhabitants of Onotoa,1940,EA032,3,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p99, +If8,with special reference to those of Saipa,1950,EA032,2,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA032,3,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,Northeastern group,1940,EA032,3,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA032,3,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA032,3,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,with special reference to the Varisi,1900,EA032,3,,scheffler1965,EthnographicAtlas_1967_p99, +Ig13,,1900,EA032,3,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p99, +Ig14,,1900,EA032,4,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA032,NA,,,, +Ig16,,,EA032,NA,,,, +Ig17,,,EA032,NA,,,, +Ig18,,,EA032,NA,,,, +Ig19,,,EA032,NA,,,, +Ig2,Kiriwina Island,1910,EA032,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA032,3,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA032,3,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA032,3,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA032,3,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,1920,EA032,3,,fortune1932b,EthnographicAtlas_1967_p99, +Ig6,,1900,EA032,3,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA032,4,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA032,NA,,,, +Ig9,Peri Village,1920,EA032,3,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA032,3,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,Whitsands,1920,EA032,2,,humphreys1926,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA032,NA,,,, +Ih12,,,EA032,NA,,,, +Ih13,,,EA032,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA032,3,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA032,2,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA032,3,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA032,3,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA032,3,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p99, +Ih6,,1890,EA032,3,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p99, +Ih7,,1910,EA032,3,,hadfield1920; ray1917,EthnographicAtlas_1967_p99, +Ih8,with special reference to the village of Nakaroka,1940,EA032,4,"Formerly 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"")",quain1949,EthnographicAtlas_1967_p99, +Ih9,Graciosa Bay,1930,EA032,4,,davenport1964,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA032,4,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,1950,EA032,3,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA032,3,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA032,3,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA032,4,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA032,3,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA032,3,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA032,3,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA032,4,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p99, +Ii6,with special reference to Atafu,1900,EA032,3,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA032,3,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA032,3,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA032,3,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA032,4,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,1900,EA032,3,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA032,3,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA032,2,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA032,3,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,1900,EA032,3,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p103, +Ij6,,1800,EA032,3,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p103, +Ij7,,1900,EA032,3,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,1900,EA032,3,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p103, +Ij9,,1860,EA032,2,,metraux1940,EthnographicAtlas_1967_p103, +Na1,,1930,EA032,2,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA032,3,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA032,4,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA032,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA032,2,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA032,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,1860,EA032,2,,helmandlurie1961,EthnographicAtlas_1967_p103, +Na16,,1860,EA032,2,,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA032,2,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA032,3,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA032,3,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA032,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA032,2,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA032,3,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA032,3,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA032,3,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA032,2,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA032,3,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA032,3,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA032,2,,jenness1937,EthnographicAtlas_1967_p103, +Na29,,1850,EA032,2,,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA032,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA032,2,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA032,2,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA032,3,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA032,3,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA032,3,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA032,3,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA032,3,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA032,3,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA032,3,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA032,2,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA032,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA032,3,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA032,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA032,3,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA032,3,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA032,2,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA032,2,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA032,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA032,3,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA032,3,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA032,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA032,3,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA032,3,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA032,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA032,3,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA032,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA032,3,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA032,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA032,3,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA032,3,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA032,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA032,3,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA032,3,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA032,3,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA032,3,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA032,3,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA032,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA032,3,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA032,3,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA032,3,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA032,3,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA032,3,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA032,3,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA032,3,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA032,3,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,1860,EA032,3,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA032,2,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p107, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA032,3,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA032,3,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA032,3,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA032,3,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA032,3,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,1860,EA032,2,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA032,2,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA032,3,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA032,3,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA032,3,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA032,2,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA032,4,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA032,3,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA032,3,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA032,2,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,1860,EA032,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA032,3,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA032,3,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA032,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA032,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA032,2,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA032,3,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA032,3,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA032,3,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,with special reference to those near Santa Rosa,1860,EA032,3,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc2,,1850,EA032,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,1860,EA032,3,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,1860,EA032,3,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA032,3,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,1870,EA032,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,Tulare Lake,1860,EA032,3,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA032,3,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,1770,EA032,3,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA032,2,,driver1937; gifford1917,EthnographicAtlas_1967_p107, +Nc28,,1800,EA032,3,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA032,2,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA032,3,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA032,3,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA032,3,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,1870,EA032,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc33,,1860,EA032,2,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA032,2,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA032,2,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA032,2,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA032,3,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA032,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA032,3,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA032,3,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA032,2,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,1860,EA032,3,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA032,3,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA032,2,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA032,3,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA032,3,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA032,2,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA032,2,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA032,2,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA032,3,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA032,2,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA032,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA032,3,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA032,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA032,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA032,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA032,2,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA032,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA032,2,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA032,2,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA032,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA032,3,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA032,3,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA032,2,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA032,2,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA032,2,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA032,2,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA032,2,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA032,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA032,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA032,2,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA032,2,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA032,2,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA032,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA032,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA032,2,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA032,2,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA032,2,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA032,2,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA032,2,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA032,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA032,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA032,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA032,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA032,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA032,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA032,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA032,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA032,2,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA032,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA032,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA032,3,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA032,2,,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA032,2,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA032,2,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA032,3,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA032,3,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA032,2,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,1860,EA032,3,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA032,2,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA032,3,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA032,2,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA032,2,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA032,3,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,1800,EA032,2,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,1860,EA032,3,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA032,2,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA032,2,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,1870,EA032,3,The Kiowa-Apache formed one band of the Kiowa tribe,mcallister1937,EthnographicAtlas_1967_p111, +Ne20,,1850,EA032,2,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p115, +Ne21,,,EA032,NA,,,, +Ne3,Comanche Tribe,1870,EA032,3,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p111, +Ne4,,1870,EA032,2,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA032,3,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,1830,EA032,3,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p111, +Ne7,,1880,EA032,2,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,1870,EA032,3,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA032,3,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA032,3,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA032,3,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA032,3,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA032,3,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA032,3,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA032,NA,,,, +Nf2,,1850,EA032,4,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p115, +Nf3,Omaha Tribe,1850,EA032,3,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA032,3,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,1860,EA032,3,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA032,3,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA032,4,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA032,3,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,1870,EA032,3,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA032,3,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA032,3,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,1750,EA032,3,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p115, +Ng12,,1760,EA032,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p115, +Ng13,,,EA032,NA,,,, +Ng14,,,EA032,NA,,,, +Ng15,,,EA032,NA,,,, +Ng2,,,EA032,NA,,,, +Ng3,Upper division in Alabama,1750,EA032,4,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA032,NA,,,, +Ng5,,1750,EA032,3,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA032,3,"But 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"") in the eighteenth century",harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA032,3,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,1560,EA032,3,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p115, +Ng9,,1920,EA032,NA,Fully incorporated today into the political system of the United States,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA032,3,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA032,2,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA032,2,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA032,3,,gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA032,3,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,1920,EA032,3,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA032,3,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA032,3,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA032,3,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA032,4,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA032,3,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,1950,EA032,4,,dozier1954,EthnographicAtlas_1967_p115, +Nh20,,1860,EA032,3,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA032,3,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA032,2,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,1870,EA032,2,,gifford1932a,EthnographicAtlas_1967_p115, +Nh24,,1880,EA032,3,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,1920,EA032,3,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA032,NA,,,, +Nh27,,,EA032,NA,,,, +Nh3,,1930,EA032,3,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA032,4,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA032,3,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA032,2,,parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA032,3,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA032,3,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,1920,EA032,2,,parsons1939; trager1943,EthnographicAtlas_1967_p115, +Ni1,,1930,EA032,2,Integrated into the Mexican state,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA032,3,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA032,3,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,1900,EA032,3,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p115, +Ni5,,1570,EA032,2,,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA032,3,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA032,3,,beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA032,NA,,,, +Ni9,,,EA032,NA,,,, +Nj1,Ojitlan,1940,EA032,3,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA032,3,Integrated into Mexican state,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA032,NA,,,, +Nj12,,,EA032,NA,,,, +Nj13,,,EA032,NA,,,, +Nj14,,,EA032,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA032,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA032,2,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,1940,EA032,3,Subject aboriginally to the Aztec; integrated today into the Mexican state,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA032,NA,,,, +Nj6,,,EA032,NA,,,, +Nj7,with special reference to Ayutla,1930,EA032,4,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA032,4,,foster1948,EthnographicAtlas_1967_p119, +Nj9,,1960,EA032,4,Integrated into Mexican state,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA032,3,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,1900,EA032,3,Integrated into the Mexican state,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p119, +Sa11,,,EA032,NA,,,, +Sa12,,1948,EA032,2,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA032,3,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA032,NA,,,, +Sa15,,,EA032,NA,,,, +Sa16,,,EA032,NA,,,, +Sa17,,,EA032,NA,,,, +Sa2,,,EA032,NA,,,, +Sa3,,1930,EA032,4,"Integrated, above the level of the department, into the Guatemalan state",wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA032,2,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA032,2,"Formerly 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"")",gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA032,3,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA032,2,There is no independent political organization; even local headmen are appointed by the government of British Honduras,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA032,4,Integrated into the Guatemalan state,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA032,3,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA032,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA032,3,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,with special reference to the Iroka,1940,EA032,3,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA032,2,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA032,2,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,Goajiro Tribe,1940,EA032,3,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA032,2,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,1520,EA032,2,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA032,3,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA032,3,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA032,3,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,1930,EA032,2,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p119, +Sc12,,1910,EA032,2,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p119, +Sc13,,1950,EA032,2,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p119, +Sc14,,,EA032,NA,,,, +Sc15,,1910,EA032,2,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p119, +Sc16,with special reference to the Makitare,1920,EA032,3,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p119, +Sc17,,1950,EA032,3,,wilbert1963,EthnographicAtlas_1967_p119, +Sc18,,1960,EA032,3,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA032,2,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA032,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA032,3,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA032,3,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA032,3,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA032,2,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,1950,EA032,2,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p119, +Sc9,,1950,EA032,2,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p119, +Sd1,Cabrura village,1950,EA032,3,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA032,3,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,1920,EA032,2,,nimuendaju1926,EthnographicAtlas_1967_p119, +Sd4,,1950,EA032,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA032,3,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,1960,EA032,3,,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,1950,EA032,2,,fock1963,EthnographicAtlas_1967_p119, +Sd8,,1950,EA032,3,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA032,3,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA032,3,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA032,3,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,1960,EA032,2,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA032,NA,,,, +Se2,,1940,EA032,2,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA032,2,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA032,2,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA032,2,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA032,2,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA032,NA,,,, +Se8,Upper Inuya River,1950,EA032,2,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA032,2,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA032,2,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA032,3,"Formerly integrated into the Inca state, today into the Bolivian and Peruvian states",bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA032,3,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA032,2,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,1900,EA032,2,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,1540,EA032,3,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA032,2,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA032,NA,,,, +Sf9,,,EA032,NA,,,, +Sg1,Eastern and central,1870,EA032,2,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA032,4,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA032,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA032,3,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA032,2,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA032,3,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA032,4,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,Those in contact with mission,1800,EA032,2,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA032,3,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA032,2,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,1890,EA032,2,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,1900,EA032,3,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p123, +Sh8,with special reference to those of the Argentine Chaco,1964,EA032,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA032,3,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA032,4,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA032,2,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA032,3,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA032,4,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA032,3,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA032,3,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,1900,EA032,2,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p123, +Si7,with special reference to the Cozarimi,1910,EA032,3,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA032,3,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA032,NA,,,, +Sj1,,1950,EA032,3,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,Taquapiri,1950,EA032,2,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA032,4,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA032,3,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA032,2,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA032,4,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,Naknenuk subtribe,1880,EA032,3,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p123, +Sj6,with special reference to the Guajajara subgroup,1930,EA032,3,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA032,3,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA032,3,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,1950,EA032,3,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA032,3,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA032,3,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA032,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA032,2,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA032,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA032,3,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA032,2,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA032,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA032,2,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA032,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA032,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA032,2,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA032,2,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA032,2,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA032,2,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA032,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA032,2,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA032,2,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA032,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA032,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA032,3,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA032,3,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA032,3,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA032,3,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA032,3,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA032,3,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA032,3,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA033,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA033,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA033,2,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA033,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA033,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,1920,EA033,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p63, +Aa7,,1910,EA033,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,1850,EA033,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA033,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,1900,EA033,1,,irle1906; vedder1928,EthnographicAtlas_1967_p63, +Ab10,,1936,EA033,3,,hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,1850,EA033,4,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA033,4,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p63, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA033,3,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA033,3,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA033,3,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA033,2,,earthy1933,EthnographicAtlas_1967_p63, +Ab17,,,EA033,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA033,3,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA033,3,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,1880,EA033,4,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA033,NA,,,, +Ab21a,,1930,EA033,2,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA033,NA,,,, +Ab22,,,EA033,NA,,,, +Ab3,Ruling Luyana,1890,EA033,4,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,1920,EA033,3,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA033,3,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA033,3,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA033,3,,langandtastevin1937,EthnographicAtlas_1967_p63, +Ab8,Basuto,1860,EA033,4,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA033,4,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA033,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA033,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA033,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,1920,EA033,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p63, +Ac13,,1950,EA033,1,,tew1950; velsen1964,EthnographicAtlas_1967_p63, +Ac14,,1900,EA033,2,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p63, +Ac15,,,EA033,NA,,,, +Ac16,,1940,EA033,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA033,4,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA033,2,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,1880,EA033,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA033,2,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p63, +Ac20,,1920,EA033,2,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA033,3,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p63, +Ac22,,1930,EA033,2,,mertens1935,EthnographicAtlas_1967_p63, +Ac23,with special reference to the western Lele,1950,EA033,2,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,1910,EA033,2,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA033,2,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p63, +Ac26,,1920,EA033,2,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA033,2,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA033,2,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p63, +Ac29,,,EA033,NA,,,, +Ac3,Zambia branch,1900,EA033,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA033,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA033,3,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA033,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA033,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA033,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA033,NA,,,, +Ac36,,1920,EA033,3,"Formerly, but more recently subject to the Ngoni",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,1950,EA033,3,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA033,2,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p63, +Ac39,,,EA033,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA033,3,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,1900,EA033,2,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA033,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA033,NA,,,, +Ac43,,1910,EA033,2,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA033,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,1930,EA033,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p63, +Ac7,,1920,EA033,2,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,1930,EA033,2,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA033,4,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,1950,EA033,1,,grottanelli1955,EthnographicAtlas_1967_p63, +Ad10,,1910,EA033,3,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,1930,EA033,3,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA033,2,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA033,1,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,Morogoro District,1930,EA033,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,1900,EA033,3,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,1920,EA033,3,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA033,2,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,1910,EA033,3,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA033,3,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA033,4,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA033,3,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,1930,EA033,3,,maurice193538,EthnographicAtlas_1967_p67, +Ad22,,1950,EA033,3,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,1910,EA033,3,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA033,2,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,1900,EA033,2,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA033,1,,sick1916,Ethnology_Vol7_No2_Apr_1968, +Ad27,,1880,EA033,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA033,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA033,4,,ingrams1930; prins1961,EthnographicAtlas_1967_p67, +Ad3,,1910,EA033,2,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,1890,EA033,2,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p67, +Ad31,,,EA033,NA,,,, +Ad32,,1900,EA033,4,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p67, +Ad33,,1900,EA033,2,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p67, +Ad34,,1910,EA033,2,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA033,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p67, +Ad36,,1890,EA033,1,But one recent source reports paramount chiefs with rain-making functions,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA033,2,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA033,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA033,1,,gray1963,EthnographicAtlas_1967_p67, +Ad4,Fort Hall or Metume district,1930,EA033,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA033,2,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA033,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p67, +Ad42,,1900,EA033,3,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,1900,EA033,3,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA033,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p67, +Ad45,,1920,EA033,4,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,1950,EA033,3,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p67, +Ad47,,1900,EA033,3,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA033,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA033,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA033,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA033,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA033,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA033,3,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA033,4,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA033,3,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,1900,EA033,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA033,1,,winter1956; winter1958,EthnographicAtlas_1967_p67, +Ae10,,1910,EA033,4,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA033,2,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA033,3,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA033,NA,,,, +Ae14,,1950,EA033,3,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,1940,EA033,3,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p67, +Ae16,,,EA033,NA,,,, +Ae17,,1900,EA033,2,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,1900,EA033,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA033,NA,,,, +Ae2,,1950,EA033,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,1940,EA033,2,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA033,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA033,2,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p67, +Ae23,,,EA033,NA,,,, +Ae24,,,EA033,NA,,,, +Ae25,with special reference to the northern Tetela,1920,EA033,NA,Paramount chiefs imposed by Luba and Songe conquerors,heusch1955; tordayandjoyce1922; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae26,,1910,EA033,3,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA033,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA033,2,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,1900,EA033,2,"Entry follows Lindemann; Hutereau reports 'extended families' (EA032 code ""3"") with 'no political authority beyond the local community' (EA033 code ""1"")",hutereau1910a; lindemann1906,EthnographicAtlas_1967_p67, +Ae3,,1910,EA033,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,1920,EA033,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA033,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA033,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA033,3,"But Moller reports 'extended families' (EA032 code ""3"") grouped within larger chiefdoms (2 levels) (EA033 code ""3"")",czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA033,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA033,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA033,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA033,NA,,,, +Ae38,,1920,EA033,1,,wijnant192526,EthnographicAtlas_1967_p67, +Ae39,,1920,EA033,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA033,3,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,1910,EA033,1,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA033,1,,andersson1953,EthnographicAtlas_1967_p67, +Ae42,,1900,EA033,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA033,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA033,5,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA033,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA033,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA033,2,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA033,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae49,,,EA033,NA,,,, +Ae5,,1910,EA033,3,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae50,,1920,EA033,4,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p67, +Ae51,Ndiki subtribe,1940,EA033,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae52,,,EA033,NA,,,, +Ae53,,,EA033,NA,,,, +Ae54,,,EA033,NA,,,, +Ae55,,1950,EA033,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae56,,1950,EA033,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae57,,1930,EA033,2,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA033,2,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA033,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA033,4,,verhulpen1936,Ethnology_Vol7_No2_Apr_1968, +Ae7,,1910,EA033,3,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA033,4,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,1950,EA033,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Af1,City and environs of Abomey,1890,EA033,4,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA033,2,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA033,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,with special reference to the Kwahu,1930,EA033,3,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA033,2,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,1930,EA033,3,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af15,,1920,EA033,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,1910,EA033,2,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA033,1,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA033,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA033,2,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,1950,EA033,2,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA033,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,with special reference to the Kalabari,1920,EA033,3,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA033,2,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p71, +Af23,with special reference to the village of Mgbom,1950,EA033,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA033,4,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,1930,EA033,2,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,with special reference to the Etsako,1900,EA033,2,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA033,1,But long subject to Hausa or Fulani overlords,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA033,2,,gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,1950,EA033,2,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA033,3,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,1920,EA033,4,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,,,EA033,NA,,,, +Af32,Abeouta Province and Benin,1920,EA033,3,,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA033,3,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA033,4,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA033,2,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA033,3,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p71, +Af37,with special reference to the Akpafu,1900,EA033,2,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA033,3,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA033,3,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA033,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA033,3,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA033,2,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA033,2,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p71, +Af43,,1930,EA033,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p71, +Af44,,,EA033,NA,,,, +Af45,,1900,EA033,2,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA033,2,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA033,2,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA033,2,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA033,2,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA033,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,1920,EA033,2,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA033,1,,tauxier1924a,EthnographicAtlas_1967_p71, +Af52,,1920,EA033,2,,tauxier1924a,EthnographicAtlas_1967_p71, +Af53,,,EA033,NA,,,, +Af54,,1930,EA033,2,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,1950,EA033,2,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA033,2,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA033,3,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,1900,EA033,2,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA033,4,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA033,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA033,3,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,1900,EA033,2,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p71, +Ag1,Segou to Bamako on Niger River,1920,EA033,2,"Formerly 'clan-barrios' (EA032 code ""4"") grouped within states (3 levels) (EA033 code ""4"") under the former great states of Kaarta and Segou",dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA033,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,1910,EA033,1,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,1910,EA033,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA033,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,1950,EA033,2,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA033,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA033,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p71, +Ag17,,1940,EA033,1,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA033,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p71, +Ag19,with special reference to the Felup,1930,EA033,2,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p71, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA033,3,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,,EA033,NA,,,, +Ag21,,1910,EA033,2,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,with special reference to those of Sine,1920,EA033,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p71, +Ag23,,1910,EA033,3,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA033,2,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA033,3,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p71, +Ag26,,1930,EA033,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p71, +Ag27,,1910,EA033,2,But usually subject to alien rulers,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,1930,EA033,2,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA033,1,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA033,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p71, +Ag30,,1910,EA033,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p71, +Ag31,,1910,EA033,3,,cheron1913; holas1957,EthnographicAtlas_1967_p71, +Ag32,,1900,EA033,2,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p71, +Ag33,,,EA033,NA,,,, +Ag34,,1930,EA033,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA033,1,But subject to the Abron,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA033,NA,,,, +Ag37,,1910,EA033,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA033,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA033,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA033,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,1910,EA033,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA033,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,1910,EA033,2,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA033,NA,Subject to an Abron paramount chief,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA033,4,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA033,3,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA033,3,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA033,4,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,1890,EA033,2,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p75, +Ag49,,1930,EA033,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA033,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,1910,EA033,2,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA033,1,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA033,3,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA033,2,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA033,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA033,3,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA033,2,,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA033,2,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,1930,EA033,2,Formerly a very large state,labouret1934; sidibe1932,EthnographicAtlas_1967_p71, +Ah1,Zaria Province,1930,EA033,1,"Subordinate, since 1790, to the Fulani through district chiefs",gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA033,2,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA033,2,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah12,,1920,EA033,2,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA033,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,,EA033,NA,,,, +Ah15,,1920,EA033,3,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p75, +Ah16,,1900,EA033,2,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA033,2,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,,EA033,NA,,,, +Ah19,,1930,EA033,2,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p75, +Ah2,,1920,EA033,1,"Clan-barrios' (EA032 code ""4"") grouped within larger chiefdoms (2 levels) (EA code ""3"") until conquered by the Fulani in the early nineteenth century",meek1931a,EthnographicAtlas_1967_p75, +Ah20,,1920,EA033,2,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,1920,EA033,1,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA033,NA,,,, +Ah23,,,EA033,NA,,,, +Ah24,,,EA033,NA,,,, +Ah25,,1920,EA033,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA033,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA033,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA033,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA033,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA033,2,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,1920,EA033,1,,meek1931b,EthnographicAtlas_1967_p75, +Ah31,,1910,EA033,2,,haughton1912; meek1931b,EthnographicAtlas_1967_p75, +Ah32,,1920,EA033,1,"Before conquest by the Fulani, to whom the Vere are now subject",meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA033,2,,meek1931b; temple1922,EthnographicAtlas_1967_p75, +Ah34,with special reference to the Malabu,1920,EA033,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA033,1,"Formerly, but recently 'extended families' (EA032 code ""3"") grouped within larger chiefdoms (2 levels) (EA033 code ""3"") under a Pabir ruler",helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA033,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,1920,EA033,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA033,2,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA033,2,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,1920,EA033,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p75, +Ah5,,1930,EA033,2,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,1920,EA033,1,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA033,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,1910,EA033,2,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA033,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p75, +Ai1,,1920,EA033,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p75, +Ai10,Nuba Hills,1940,EA033,2,,nadel1947,EthnographicAtlas_1967_p75, +Ai11,,1900,EA033,3,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA033,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,1920,EA033,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA033,2,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA033,2,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,,EA033,NA,,,, +Ai17,,1930,EA033,2,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA033,3,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA033,NA,,,, +Ai2,,,EA033,NA,,,, +Ai20,,1910,EA033,1,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA033,4,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,1890,EA033,1,,delafosse1897,EthnographicAtlas_1967_p75, +Ai23,,1920,EA033,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,1900,EA033,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA033,NA,,,, +Ai26,,1920,EA033,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p75, +Ai27,,1890,EA033,2,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA033,2,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA033,2,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA033,3,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA033,2,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA033,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA033,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA033,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,1880,EA033,2,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA033,2,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,1920,EA033,2,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,1940,EA033,2,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA033,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai39,,1940,EA033,2,,nadel1947,EthnographicAtlas_1967_p75, +Ai4,,1920,EA033,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA033,1,,nadel1947,EthnographicAtlas_1967_p75, +Ai41,,1930,EA033,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai42,,1940,EA033,2,,nadel1947; nadel1950,EthnographicAtlas_1967_p75, +Ai43,,1930,EA033,1,,nadel1947; stevenson1940,EthnographicAtlas_1967_p75, +Ai44,,1920,EA033,2,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,1930,EA033,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA033,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p75, +Ai47,Northern division,1939,EA033,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,1920,EA033,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA033,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA033,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,1930,EA033,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p75, +Ai9,Around Yagoua in Cameroon,1910,EA033,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,1950,EA033,2,,lawrance1957,EthnographicAtlas_1967_p75, +Aj10,,1920,EA033,2,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA033,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA033,2,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,1930,EA033,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA033,2,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA033,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,with special reference to the Riverain Mondari,1930,EA033,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p79, +Aj17,,1890,EA033,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA033,2,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,1920,EA033,3,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p79, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA033,2,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,1940,EA033,2,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p79, +Aj21,,1930,EA033,2,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,1930,EA033,2,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA033,2,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA033,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,1920,EA033,2,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA033,2,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p79, +Aj27,,1920,EA033,2,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA033,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA033,3,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA033,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA033,NA,,,, +Aj31,,,EA033,NA,,,, +Aj4,,1920,EA033,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA033,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA033,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA033,2,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA033,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA033,3,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA033,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA033,4,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA033,3,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p79, +Ca12,,1880,EA033,4,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p79, +Ca13,with special reference to the eastern Macha,1950,EA033,3,Incorporated in the Ethiopian state,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p79, +Ca14,,,EA033,NA,,,, +Ca15,,1930,EA033,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca16,,1930,EA033,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca17,,1950,EA033,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca18,,1940,EA033,2,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA033,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA033,3,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,1890,EA033,2,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA033,2,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA033,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA033,3,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,1950,EA033,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA033,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA033,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA033,3,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA033,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p79, +Ca29,,1920,EA033,4,,huntingford1955b; straube1963,EthnographicAtlas_1967_p79, +Ca3,,1950,EA033,3,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,Kafa Kingdom,1890,EA033,5,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p79, +Ca31,,1860,EA033,NA,Politically integrated in the Ethiopian state,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,1860,EA033,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca33,,1860,EA033,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca34,,1920,EA033,2,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA033,2,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA033,3,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA033,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA033,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA033,4,,lewis1965b,EthnographicAtlas_1967_p79, +Ca4,,1950,EA033,2,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p79, +Ca40,,1950,EA033,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA033,3,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA033,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA033,NA,,,, +Ca5,,1930,EA033,2,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p79, +Ca6,,1880,EA033,3,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA033,4,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,1940,EA033,1,,leslau1950; shack1963,EthnographicAtlas_1967_p79, +Ca9,,1890,EA033,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,,EA033,NA,,,, +Cb10,,1920,EA033,2,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA033,2,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,,EA033,NA,,,, +Cb13,,,EA033,NA,,,, +Cb14,,1910,EA033,2,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA033,4,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA033,3,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA033,4,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,1930,EA033,2,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p79, +Cb19,,1870,EA033,4,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA033,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,1920,EA033,3,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA033,NA,,,, +Cb22,,1920,EA033,3,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA033,2,,kane1939; lafont1939,EthnographicAtlas_1967_p83, +Cb24,Wodaabe of Niger,1950,EA033,2,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,1930,EA033,3,For the numerically preponderant Moslems,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA033,4,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,1920,EA033,3,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA033,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA033,NA,,,, +Cb3,Bamba division,1940,EA033,4,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,,EA033,NA,,,, +Cb5,,1910,EA033,2,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p79, +Cb6,,1920,EA033,2,,woodnd,EthnographicAtlas_1967_p79, +Cb7,,1920,EA033,3,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA033,1,But subject to sedentary Fulani emirs through district chiefs,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA033,3,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA033,4,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA033,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,1860,EA033,3,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA033,3,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA033,3,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA033,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA033,NA,,,, +Cc16,,1930,EA033,3,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,1930,EA033,4,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p83, +Cc18,,1910,EA033,2,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA033,4,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA033,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,with special reference to the more nomadic northern groups,1910,EA033,3,,adeler1939; tauxier1912,EthnographicAtlas_1967_p83, +Cc3,inhabitants of the oasis of Siwa,1920,EA033,2,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA033,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,1910,EA033,2,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p83, +Cc6,,1910,EA033,3,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA033,2,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA033,NA,,,, +Cc9,Ahaggaren tribe,1920,EA033,3,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA033,1,Integrated into the Egyptian state; had a strong indigenous state in pre-Arab times,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,1900,EA033,3,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA033,3,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p83, +Cd12,,1870,EA033,NA,Under French colonial administration until recently,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,1930,EA033,4,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA033,4,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA033,3,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA033,5,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA033,2,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA033,2,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA033,4,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA033,4,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,1940,EA033,4,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA033,5,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA033,2,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA033,4,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA033,2,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,with special reference to the New Empire,-1400,EA033,5,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,with special reference to the Zemmur tribe,1910,EA033,3,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,,EA033,NA,,,, +Cd9,,1900,EA033,2,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA033,3,"For the Gheg, but for the Albanians as a whole: 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA033,NA,,,, +Ce3,City and environs of Rome,100,EA033,5,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA033,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA033,4,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA033,4,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA033,4,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA033,4,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA033,4,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,of the Transvaal,1850,EA033,3,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No4_Oct_1962, +Cf3,,1930,EA033,1,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA033,5,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA033,4,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA033,4,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA033,3,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA033,3,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA033,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA033,5,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA033,4,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA033,NA,,,, +Ch11,Viriatino Village,1955,EA033,5,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA033,NA,,,, +Ch3,with special reference to the Hana district of central Moravia,1940,EA033,4,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,1900,EA033,2,,heffner1955; wichmann1913,EthnographicAtlas_1967_p83, +Ch5,with special reference to the village of Dragelevtsy,1940,EA033,4,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA033,5,Integrated into the Russian Empire,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA033,5,Integrated into the Soviet state,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA033,4,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA033,4,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,with special reference to the Baga Dorbed group,1920,EA033,4,,aberle1953; adelmannd,EthnographicAtlas_1967_p83, +Ci10,Vicinity of Erevan,1900,EA033,4,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA033,3,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,Abkhaz Tribe,1880,EA033,2,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA033,1,,grigolia1939,EthnographicAtlas_1967_p83, +Ci3,,,EA033,NA,,,, +Ci4,,1920,EA033,2,Prior to Russian rule; integrated today into the Soviet state,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA033,4,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA033,2,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p83, +Ci7,,,EA033,NA,,,, +Ci8,,1850,EA033,3,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA033,NA,Long integrated in the Russian state,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA033,3,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA033,NA,Integrated into the state of Iraq,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,Unspecified,1920,EA033,2,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA033,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA033,4,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,1930,EA033,2,,dickson1949,EthnographicAtlas_1967_p87, +Cj6,with special reference to the sedentary population,1950,EA033,3,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA033,4,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p87, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA033,2,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,1950,EA033,4,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA033,4,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA033,3,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA033,4,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA033,3,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA033,5,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA033,3,Integrated in the Pakistan state,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA033,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA033,2,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,1890,EA033,2,,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA033,2,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA033,NA,Integrated into the state of Afghanistan,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,1920,EA033,3,,feilberg1952; wilson1926,EthnographicAtlas_1967_p87, +Ea9,,1950,EA033,5,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA033,4,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,1920,EA033,2,,krader1963; schram1954,EthnographicAtlas_1967_p87, +Eb3,Narobanchin Territory,1940,EA033,4,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p87, +Eb4,,,EA033,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA033,4,,freikin1954; odonovan1882,Ethnology_Vol2_No2_Apr_1963, +Eb6,,,EA033,NA,,,, +Eb7,,1930,EA033,3,Integrated into the Chinese state,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA033,NA,,,, +Ec1,Sakhalin Island,1920,EA033,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA033,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,1900,EA033,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA033,3,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA033,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA033,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA033,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA033,1,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA033,2,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,1900,EA033,1,,shimkin1939,EthnographicAtlas_1967_p87, +Ec9,,1920,EA033,2,,lattimore1933,EthnographicAtlas_1967_p87, +Ed1,Kanghwa Island,1950,EA033,3,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA033,5,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA033,NA,,,, +Ed14,,,EA033,NA,,,, +Ed15a,,,EA033,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA033,5,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA033,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA033,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,Aigun District,1920,EA033,NA,Integrated into the Chinese state,shirokogoroff1924,EthnographicAtlas_1967_p87, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA033,2,Integrated into the Chinese administrative system,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA033,5,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA033,5,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA033,3,"Formerly 'extended families' (EA032 code ""3"") grouped within states (3 levels) (EA033 code ""4"")",glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA033,2,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA033,3,"Formerly ""a strong tribal organization"" but integrated today into the Chinese state",lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA033,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA033,2,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA033,2,Subject to the Maharajah of Sikkim through district chiefs,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA033,5,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA033,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA033,3,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA033,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA033,4,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA033,2,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA033,NA,,,, +Ef11,Village and environs of Senapur,1945,EA033,5,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA033,5,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA033,NA,,,, +Ef4,,,EA033,NA,,,, +Ef5,,1900,EA033,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,1940,EA033,2,,roy1915; roy1951,EthnographicAtlas_1967_p87, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA033,5,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA033,4,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA033,4,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA033,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA033,4,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA033,NA,,,, +Eg12,,,EA033,NA,,,, +Eg13,,,EA033,NA,,,, +Eg14,with special reference to those of the Bison Hills,1940,EA033,2,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA033,4,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA033,2,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA033,2,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA033,3,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA033,3,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA033,2,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,1940,EA033,2,,griffiths1946,EthnographicAtlas_1967_p91, +Eg9,,1930,EA033,1,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA033,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA033,NA,,,, +Eh2,,1900,EA033,4,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA033,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA033,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA033,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA033,4,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,1900,EA033,2,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA033,4,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91, +Eh9,,1930,EA033,3,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA033,2,But integrated today into the political system of India,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA033,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p91, +Ei11,,1910,EA033,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA033,2,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA033,1,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA033,1,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA033,NA,,,, +Ei16,,1910,EA033,1,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA033,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA033,2,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,1940,EA033,2,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA033,1,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA033,NA,,,, +Ei3,Nondwin Village,1950,EA033,4,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA033,2,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA033,2,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA033,1,,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,1910,EA033,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA033,2,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,1880,EA033,2,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p91, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA033,1,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA033,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA033,3,Organized in a great state from the 11th to the 17th centuries; thereafter subject to the Vietnamese,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA033,2,But politically incorporated into the state of Thailand,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA033,3,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA033,1,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA033,5,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA033,4,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA033,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA033,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA033,5,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA033,4,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,of the Mergui Archipelago,1920,EA033,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p91, +Ej7,,1950,EA033,1,,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,with special reference to those of Trengganu,1940,EA033,3,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA033,5,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA033,2,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,1930,EA033,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p91, +Ia11,,1930,EA033,1,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA033,5,Politically integrated into the Philippine state,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA033,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,1930,EA033,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p95, +Ia15,with special reference to those of the Agusan Valley,1920,EA033,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA033,2,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA033,NA,,,, +Ia18,,,EA033,NA,,,, +Ia2,,1950,EA033,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA033,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA033,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA033,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA033,2,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA033,1,,fox1954,EthnographicAtlas_1967_p91, +Ia8,,1900,EA033,1,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA033,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA033,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA033,5,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA033,4,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,with special reference to the Toba group,1930,EA033,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p95, +Ib5,with special reference to the village of Sensuron,1920,EA033,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA033,3,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,with special reference to those of North Pageh,1920,EA033,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p95, +Ib8,with special reference to the Ridan group,1900,EA033,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p95, +Ib9,,,EA033,NA,,,, +Ic1,Borongloe,1940,EA033,4,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA033,3,,hueting1921; riedel1885,EthnographicAtlas_1967_p95, +Ic11,Allang,1950,EA033,3,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA033,3,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA033,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA033,3,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,with special reference to the Mountain Belu,1950,EA033,2,,vroklage1952,EthnographicAtlas_1967_p95, +Ic4,,,EA033,NA,,,, +Ic5,Bare'e subgroup,1910,EA033,2,"But 'extended families' (EA032 code ""3"") with 'no political authority beyond the local community' (EA033 code ""1"") among the eastern Toraja [kk check orig comment]",adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p95,"Assume Murdock comment, listed in Gray (1999), applies to this variable, not Col 30" +Ic6,,1930,EA033,2,,drabbe1940,EthnographicAtlas_1967_p95, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA033,3,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,1890,EA033,1,,pleyte1893,EthnographicAtlas_1967_p95, +Ic9,with special reference to eastern Sumba,1930,EA033,2,,nooteboom1940,EthnographicAtlas_1967_p95, +Id1,Alice Springs and environs,1900,EA033,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA033,1,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA033,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA033,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA033,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA033,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA033,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA033,2,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA033,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,with special reference to the Archer River group,1920,EA033,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p95, +Id7,,1940,EA033,1,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA033,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,1910,EA033,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p95, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA033,2,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA033,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA033,1,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA033,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA033,1,,landtman1927,EthnographicAtlas_1967_p95, +Ie14,,1900,EA033,1,,haddon1908,EthnographicAtlas_1967_p95, +Ie15,Kalabu; Northern Abelam,1930,EA033,1,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA033,1,,williams194041,EthnographicAtlas_1967_p95, +Ie17,,1940,EA033,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA033,1,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA033,1,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA033,1,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA033,1,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,1900,EA033,1,,malinowski1916,EthnographicAtlas_1967_p95, +Ie22,,1900,EA033,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,1950,EA033,1,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,1870,EA033,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p95, +Ie25,,1920,EA033,1,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,1940,EA033,1,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,1910,EA033,1,,thurnwald1916,EthnographicAtlas_1967_p99, +Ie28,,1940,EA033,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA033,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA033,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA033,1,,pouwer1955,EthnographicAtlas_1967_p99, +Ie31,,1950,EA033,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA033,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA033,1,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA033,NA,,,, +Ie35,,1930,EA033,1,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA033,NA,,,, +Ie37,,,EA033,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA033,2,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA033,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA033,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA033,1,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,1930,EA033,1,,held1947,EthnographicAtlas_1967_p95, +Ie7,with special reference to the Mae group,1950,EA033,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA033,2,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA033,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA033,3,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA033,NA,,,, +If11,,1860,EA033,3,,sarfert1919,EthnographicAtlas_1967_p99, +If12,,1940,EA033,2,Subject to the paramount chief of Kwajalein,mason1954,EthnographicAtlas_1967_p99, +If13,,1900,EA033,2,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p99, +If14,Makin and Butiritari Islands (N),1890,EA033,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA033,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,1960,EA033,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA033,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA033,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA033,2,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA033,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA033,3,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA033,2,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,with special reference to the inhabitants of Onotoa,1940,EA033,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p99, +If8,with special reference to those of Saipa,1950,EA033,2,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA033,2,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,Northeastern group,1940,EA033,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA033,1,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA033,1,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,with special reference to the Varisi,1900,EA033,1,,scheffler1965,EthnographicAtlas_1967_p99, +Ig13,,1900,EA033,2,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p99, +Ig14,,1900,EA033,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA033,NA,,,, +Ig16,,,EA033,NA,,,, +Ig17,,,EA033,NA,,,, +Ig18,,,EA033,NA,,,, +Ig19,,,EA033,NA,,,, +Ig2,Kiriwina Island,1910,EA033,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA033,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA033,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA033,1,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA033,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,1920,EA033,1,,fortune1932b,EthnographicAtlas_1967_p99, +Ig6,,1900,EA033,1,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA033,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA033,NA,,,, +Ig9,Peri Village,1920,EA033,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA033,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,Whitsands,1920,EA033,2,,humphreys1926,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA033,NA,,,, +Ih12,,,EA033,NA,,,, +Ih13,,,EA033,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA033,3,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA033,1,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA033,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA033,3,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA033,2,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p99, +Ih6,,1890,EA033,2,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p99, +Ih7,,1910,EA033,2,,hadfield1920; ray1917,EthnographicAtlas_1967_p99, +Ih8,with special reference to the village of Nakaroka,1940,EA033,2,"Formerly 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"")",quain1949,EthnographicAtlas_1967_p99, +Ih9,Graciosa Bay,1930,EA033,1,,davenport1964,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA033,3,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,1950,EA033,2,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA033,3,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA033,3,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA033,3,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA033,2,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA033,2,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA033,2,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA033,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p99, +Ii6,with special reference to Atafu,1900,EA033,2,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA033,2,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA033,2,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA033,2,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA033,2,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,1900,EA033,2,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA033,2,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA033,2,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA033,2,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,1900,EA033,2,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p103, +Ij6,,1800,EA033,3,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p103, +Ij7,,1900,EA033,3,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,1900,EA033,3,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p103, +Ij9,,1860,EA033,2,,metraux1940,EthnographicAtlas_1967_p103, +Na1,,1930,EA033,1,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA033,1,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA033,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA033,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA033,1,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA033,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,1860,EA033,1,,helmandlurie1961,EthnographicAtlas_1967_p103, +Na16,,1860,EA033,1,,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA033,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA033,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA033,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA033,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA033,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA033,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA033,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA033,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA033,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA033,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA033,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA033,1,,jenness1937,EthnographicAtlas_1967_p103, +Na29,,1850,EA033,1,,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA033,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA033,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA033,1,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA033,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA033,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA033,2,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA033,1,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA033,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA033,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA033,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA033,1,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA033,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA033,2,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA033,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA033,2,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA033,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA033,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA033,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA033,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA033,1,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA033,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA033,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA033,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA033,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA033,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA033,2,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA033,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA033,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA033,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA033,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA033,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA033,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA033,1,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA033,1,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA033,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA033,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA033,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA033,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA033,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA033,1,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA033,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA033,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA033,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA033,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA033,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA033,2,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,1860,EA033,1,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA033,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p107, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA033,2,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA033,1,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA033,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA033,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA033,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,1860,EA033,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA033,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA033,1,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA033,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA033,2,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA033,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA033,2,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA033,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA033,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA033,1,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,1860,EA033,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA033,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA033,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA033,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA033,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA033,1,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA033,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA033,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA033,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,with special reference to those near Santa Rosa,1860,EA033,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc2,,1850,EA033,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,1860,EA033,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,1860,EA033,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA033,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,1870,EA033,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,Tulare Lake,1860,EA033,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA033,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,1770,EA033,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA033,1,,driver1937; gifford1917,EthnographicAtlas_1967_p107, +Nc28,,1800,EA033,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA033,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA033,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA033,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA033,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,1870,EA033,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc33,,1860,EA033,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA033,1,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA033,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA033,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA033,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA033,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA033,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA033,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA033,1,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,1860,EA033,2,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA033,2,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA033,2,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA033,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA033,2,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA033,1,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA033,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA033,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA033,1,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA033,2,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA033,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA033,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA033,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA033,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA033,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA033,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA033,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA033,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA033,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA033,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA033,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA033,1,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA033,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA033,1,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA033,1,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA033,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA033,1,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA033,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA033,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA033,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA033,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA033,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA033,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA033,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA033,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA033,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA033,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA033,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA033,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA033,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA033,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA033,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA033,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA033,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA033,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA033,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA033,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA033,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA033,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA033,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA033,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA033,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA033,1,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA033,2,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA033,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA033,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA033,2,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,1860,EA033,3,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA033,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA033,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA033,2,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA033,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA033,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,1800,EA033,2,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,1860,EA033,2,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA033,2,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA033,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,1870,EA033,1,The Kiowa-Apache formed one band of the Kiowa tribe,mcallister1937,EthnographicAtlas_1967_p111, +Ne20,,1850,EA033,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p115, +Ne21,,,EA033,NA,,,, +Ne3,Comanche Tribe,1870,EA033,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p111, +Ne4,,1870,EA033,2,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA033,2,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,1830,EA033,2,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p111, +Ne7,,1880,EA033,2,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,1870,EA033,2,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA033,2,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA033,2,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA033,1,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA033,2,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA033,2,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA033,2,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA033,NA,,,, +Nf2,,1850,EA033,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p115, +Nf3,Omaha Tribe,1850,EA033,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA033,2,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,1860,EA033,2,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA033,2,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA033,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA033,3,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,1870,EA033,2,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA033,2,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA033,3,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,1750,EA033,2,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p115, +Ng12,,1760,EA033,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p115, +Ng13,,,EA033,NA,,,, +Ng14,,,EA033,NA,,,, +Ng15,,,EA033,NA,,,, +Ng2,,,EA033,NA,,,, +Ng3,Upper division in Alabama,1750,EA033,3,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA033,NA,,,, +Ng5,,1750,EA033,3,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA033,1,"But 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"") in the eighteenth century",harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA033,2,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,1560,EA033,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p115, +Ng9,,1920,EA033,NA,Fully incorporated today into the political system of the United States,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA033,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA033,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA033,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA033,1,,gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA033,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,1920,EA033,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA033,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA033,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA033,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA033,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA033,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,1950,EA033,1,,dozier1954,EthnographicAtlas_1967_p115, +Nh20,,1860,EA033,2,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA033,2,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA033,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,1870,EA033,1,,gifford1932a,EthnographicAtlas_1967_p115, +Nh24,,1880,EA033,2,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,1920,EA033,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA033,NA,,,, +Nh27,,,EA033,NA,,,, +Nh3,,1930,EA033,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA033,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA033,2,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA033,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA033,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA033,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,1920,EA033,1,,parsons1939; trager1943,EthnographicAtlas_1967_p115, +Ni1,,1930,EA033,1,Integrated into the Mexican state,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA033,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA033,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,1900,EA033,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p115, +Ni5,,1570,EA033,1,,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA033,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA033,1,,beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA033,NA,,,, +Ni9,,,EA033,NA,,,, +Nj1,Ojitlan,1940,EA033,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA033,NA,Integrated into Mexican state,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA033,NA,,,, +Nj12,,,EA033,NA,,,, +Nj13,,,EA033,NA,,,, +Nj14,,,EA033,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA033,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA033,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,1940,EA033,2,Subject aboriginally to the Aztec; integrated today into the Mexican state,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA033,NA,,,, +Nj6,,,EA033,NA,,,, +Nj7,with special reference to Ayutla,1930,EA033,2,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA033,3,,foster1948,EthnographicAtlas_1967_p119, +Nj9,,1960,EA033,NA,Integrated into Mexican state,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA033,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,1900,EA033,NA,Integrated into the Mexican state,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p119, +Sa11,,,EA033,NA,,,, +Sa12,,1948,EA033,1,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA033,2,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA033,NA,,,, +Sa15,,,EA033,NA,,,, +Sa16,,,EA033,NA,,,, +Sa17,,,EA033,NA,,,, +Sa2,,,EA033,NA,,,, +Sa3,,1930,EA033,2,"Integrated, above the level of the department, into the Guatemalan state",wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA033,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA033,1,"Formerly 'extended families' (EA032 code ""3"") grouped within 'petty chiefdoms' (1 level) (EA033 code ""2"")",gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA033,2,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA033,1,There is no independent political organization; even local headmen are appointed by the government of British Honduras,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA033,NA,Integrated into the Guatemalan state,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA033,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA033,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA033,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,with special reference to the Iroka,1940,EA033,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA033,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA033,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,Goajiro Tribe,1940,EA033,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA033,1,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,1520,EA033,3,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA033,4,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA033,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA033,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,1930,EA033,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p119, +Sc12,,1910,EA033,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p119, +Sc13,,1950,EA033,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p119, +Sc14,,,EA033,NA,,,, +Sc15,,1910,EA033,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p119, +Sc16,with special reference to the Makitare,1920,EA033,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p119, +Sc17,,1950,EA033,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sc18,,1960,EA033,2,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA033,1,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA033,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA033,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA033,1,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA033,3,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA033,1,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,1950,EA033,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p119, +Sc9,,1950,EA033,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p119, +Sd1,Cabrura village,1950,EA033,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA033,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,1920,EA033,1,,nimuendaju1926,EthnographicAtlas_1967_p119, +Sd4,,1950,EA033,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA033,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,1960,EA033,1,,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,1950,EA033,1,,fock1963,EthnographicAtlas_1967_p119, +Sd8,,1950,EA033,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA033,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA033,1,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA033,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,1960,EA033,1,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA033,NA,,,, +Se2,,1940,EA033,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA033,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA033,1,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA033,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA033,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA033,NA,,,, +Se8,Upper Inuya River,1950,EA033,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA033,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA033,5,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA033,NA,"Formerly integrated into the Inca state, today into the Bolivian and Peruvian states",bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA033,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA033,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,1900,EA033,2,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,1540,EA033,3,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA033,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA033,NA,,,, +Sf9,,,EA033,NA,,,, +Sg1,Eastern and central,1870,EA033,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA033,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA033,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA033,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA033,1,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA033,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA033,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,Those in contact with mission,1800,EA033,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA033,2,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA033,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,1890,EA033,2,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,1900,EA033,2,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p123, +Sh8,with special reference to those of the Argentine Chaco,1964,EA033,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA033,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA033,2,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA033,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA033,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA033,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA033,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA033,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,1900,EA033,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p123, +Si7,with special reference to the Cozarimi,1910,EA033,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA033,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA033,NA,,,, +Sj1,,1950,EA033,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,Taquapiri,1950,EA033,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA033,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA033,1,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA033,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA033,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,Naknenuk subtribe,1880,EA033,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p123, +Sj6,with special reference to the Guajajara subgroup,1930,EA033,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA033,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA033,2,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,1950,EA033,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA033,5,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA033,5,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA033,5,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA033,5,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA033,5,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA033,5,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA033,5,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA033,5,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA033,5,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA033,5,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA033,5,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA033,5,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA033,5,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA033,5,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA033,5,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA033,5,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA033,5,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA033,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA033,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA033,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA033,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA033,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA033,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA033,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA033,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA033,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA033,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA034,3,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA034,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA034,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA034,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA034,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,1920,EA034,2,"According to Huntingford ""the sun and moon are regarded as supreme beings""",dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p63, +Aa7,,1910,EA034,2,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,,EA034,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA034,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,,EA034,NA,,,, +Ab10,,1936,EA034,1,,hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,,EA034,NA,,,, +Ab12,,,EA034,NA,,,, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA034,4,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA034,2,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,,EA034,NA,,,, +Ab16,,,EA034,NA,,,, +Ab17,,,EA034,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA034,4,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,,,EA034,NA,,,, +Ab2,,1880,EA034,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA034,NA,,,, +Ab21a,,,EA034,NA,,,, +Ab21b,,,EA034,NA,,,, +Ab22,,,EA034,NA,,,, +Ab3,Ruling Luyana,1890,EA034,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,,EA034,NA,,,, +Ab5,,1930,EA034,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA034,3,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,,,EA034,NA,,,, +Ab8,Basuto,1860,EA034,1,But Christian belief prevails today,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA034,2,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA034,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA034,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA034,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,,EA034,NA,,,, +Ac13,,1950,EA034,2,,tew1950; velsen1964,EthnographicAtlas_1967_p63, +Ac14,,,EA034,NA,,,, +Ac15,,,EA034,NA,,,, +Ac16,,,EA034,NA,,,, +Ac17,Feshi territory lineage center,1910,EA034,2,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,,EA034,NA,,,, +Ac19,,,EA034,NA,,,, +Ac2,,,EA034,NA,,,, +Ac20,,,EA034,NA,,,, +Ac21,,,EA034,NA,,,, +Ac22,,,EA034,NA,,,, +Ac23,with special reference to the western Lele,1950,EA034,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,,EA034,NA,,,, +Ac25,,,EA034,NA,,,, +Ac26,,,EA034,NA,,,, +Ac27,,1930,EA034,2,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,,EA034,NA,,,, +Ac29,,,EA034,NA,,,, +Ac3,Zambia branch,1900,EA034,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA034,3,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA034,2,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA034,NA,,,, +Ac33,,1940,EA034,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA034,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA034,NA,,,, +Ac36,,1920,EA034,3,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,,EA034,NA,,,, +Ac38,,,EA034,NA,,,, +Ac39,,,EA034,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA034,2,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,,EA034,NA,,,, +Ac41,,,EA034,NA,,,, +Ac42,,,EA034,NA,,,, +Ac43,,1910,EA034,2,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA034,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,,EA034,NA,,,, +Ac7,,1920,EA034,1,But many Yao have adopted Islam,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,,EA034,NA,,,, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA034,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,,EA034,NA,,,, +Ad10,,,EA034,NA,,,, +Ad11,,1930,EA034,4,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,,EA034,NA,,,, +Ad13,,1930,EA034,2,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,Morogoro District,1930,EA034,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,1900,EA034,2,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,1920,EA034,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA034,2,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,,EA034,NA,,,, +Ad19,,1910,EA034,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA034,2,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA034,2,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,1930,EA034,2,,maurice193538,EthnographicAtlas_1967_p67, +Ad22,,1950,EA034,2,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,,EA034,NA,,,, +Ad24,,,EA034,NA,,,, +Ad25,,,EA034,NA,,,, +Ad26,,,EA034,NA,,,, +Ad27,,,EA034,NA,,,, +Ad28,,1880,EA034,2,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA034,4,,ingrams1930; prins1961,EthnographicAtlas_1967_p67, +Ad3,,1910,EA034,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,1890,EA034,4,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p67, +Ad31,,,EA034,NA,,,, +Ad32,,1900,EA034,1,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p67, +Ad33,,,EA034,NA,,,, +Ad34,,1910,EA034,2,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,,,EA034,NA,,,, +Ad36,,,EA034,NA,,,, +Ad37,,,EA034,NA,,,, +Ad38,,,EA034,NA,,,, +Ad39,,,EA034,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA034,3,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,,EA034,NA,,,, +Ad41,,,EA034,NA,,,, +Ad42,,1900,EA034,2,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,,EA034,NA,,,, +Ad44,,1920,EA034,2,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p67, +Ad45,,1920,EA034,2,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,,EA034,NA,,,, +Ad47,,1900,EA034,2,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA034,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA034,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA034,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA034,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA034,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA034,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA034,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,,,EA034,NA,,,, +Ad9,,1900,EA034,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA034,1,,winter1956; winter1958,EthnographicAtlas_1967_p67, +Ae10,,1910,EA034,2,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA034,2,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA034,2,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA034,NA,,,, +Ae14,,1950,EA034,2,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,,EA034,NA,,,, +Ae16,,,EA034,NA,,,, +Ae17,,1900,EA034,2,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,1900,EA034,2,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA034,NA,,,, +Ae2,,1950,EA034,2,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,,EA034,NA,,,, +Ae21,,,EA034,NA,,,, +Ae22,,,EA034,NA,,,, +Ae23,,,EA034,NA,,,, +Ae24,,,EA034,NA,,,, +Ae25,,,EA034,NA,,,, +Ae26,,,EA034,NA,,,, +Ae27,,,EA034,NA,,,, +Ae28,,1900,EA034,2,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,,EA034,NA,,,, +Ae3,,1910,EA034,2,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,,EA034,NA,,,, +Ae31,,,EA034,NA,,,, +Ae32,,,EA034,NA,,,, +Ae33,,,EA034,NA,,,, +Ae34,,,EA034,NA,,,, +Ae35,,,EA034,NA,,,, +Ae36,,,EA034,NA,,,, +Ae37,,,EA034,NA,,,, +Ae38,,,EA034,NA,,,, +Ae39,,1920,EA034,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA034,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,,EA034,NA,,,, +Ae41,,,EA034,NA,,,, +Ae42,,,EA034,NA,,,, +Ae43,,,EA034,NA,,,, +Ae44,,,EA034,NA,,,, +Ae45,,,EA034,NA,,,, +Ae46,,,EA034,NA,,,, +Ae47,,,EA034,NA,,,, +Ae48,,,EA034,NA,,,, +Ae49,,,EA034,NA,,,, +Ae5,,,EA034,NA,,,, +Ae50,,1920,EA034,3,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p67, +Ae51,Ndiki subtribe,1940,EA034,2,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae52,,,EA034,NA,,,, +Ae53,,,EA034,NA,,,, +Ae54,,,EA034,NA,,,, +Ae55,,,EA034,NA,,,, +Ae56,,1950,EA034,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae57,,,EA034,NA,,,, +Ae58,,,EA034,NA,,,, +Ae59,,,EA034,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA034,2,,verhulpen1936,Ethnology_Vol7_No2_Apr_1968, +Ae7,,1910,EA034,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA034,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,1950,EA034,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Af1,City and environs of Abomey,1890,EA034,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA034,2,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA034,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,,,EA034,NA,,,, +Af13,,1920,EA034,2,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,1930,EA034,2,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af15,,1920,EA034,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,,EA034,NA,,,, +Af17,,,EA034,NA,,,, +Af18,,,EA034,NA,,,, +Af19,,1950,EA034,2,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,,EA034,NA,,,, +Af20,,1910,EA034,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,,,EA034,NA,,,, +Af22,,1940,EA034,2,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p71, +Af23,with special reference to the village of Mgbom,1950,EA034,1,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA034,2,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,1930,EA034,2,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,,,EA034,NA,,,, +Af27,,,EA034,NA,,,, +Af28,,1910,EA034,3,,gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,,EA034,NA,,,, +Af3,Kumasi State,1900,EA034,2,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,,EA034,NA,,,, +Af31,,,EA034,NA,,,, +Af32,Abeouta Province and Benin,1920,EA034,2,,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA034,2,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA034,2,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA034,NA,,,, +Af36,with special reference to the Glidyi,1900,EA034,2,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p71, +Af37,,,EA034,NA,,,, +Af38,,,EA034,NA,,,, +Af39,,,EA034,NA,,,, +Af4,,1930,EA034,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,,,EA034,NA,,,, +Af41,,,EA034,NA,,,, +Af42,,1900,EA034,2,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p71, +Af43,,1930,EA034,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p71, +Af44,,,EA034,NA,,,, +Af45,,,EA034,NA,,,, +Af46,,,EA034,NA,,,, +Af47,,,EA034,NA,,,, +Af48,,,EA034,NA,,,, +Af49,,,EA034,NA,,,, +Af5,,1930,EA034,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,,EA034,NA,,,, +Af51,,,EA034,NA,,,, +Af52,,,EA034,NA,,,, +Af53,,1950,EA034,2,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA034,2,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,,EA034,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA034,2,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA034,2,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,,EA034,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA034,2,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA034,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA034,4,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,,EA034,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA034,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA034,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,,EA034,NA,,,, +Ag12,,1910,EA034,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,,EA034,NA,,,, +Ag14,,,EA034,NA,,,, +Ag15,,,EA034,NA,,,, +Ag16,,,EA034,NA,,,, +Ag17,,,EA034,NA,,,, +Ag18,,,EA034,NA,,,, +Ag19,,,EA034,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA034,2,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,,EA034,NA,,,, +Ag21,,1910,EA034,2,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,,,EA034,NA,,,, +Ag23,,,EA034,NA,,,, +Ag24,,,EA034,NA,,,, +Ag25,,1900,EA034,4,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p71, +Ag26,,,EA034,NA,,,, +Ag27,,1910,EA034,4,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,1930,EA034,4,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,,EA034,NA,,,, +Ag3,,,EA034,NA,,,, +Ag30,,,EA034,NA,,,, +Ag31,,,EA034,NA,,,, +Ag32,,,EA034,NA,,,, +Ag33,,,EA034,NA,,,, +Ag34,,,EA034,NA,,,, +Ag35,,,EA034,NA,,,, +Ag36,,,EA034,NA,,,, +Ag37,,,EA034,NA,,,, +Ag38,,,EA034,NA,,,, +Ag39,,,EA034,NA,,,, +Ag4,Tallensi Tribe,1930,EA034,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,,EA034,NA,,,, +Ag41,,1920,EA034,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,,EA034,NA,,,, +Ag43,,,EA034,NA,,,, +Ag44,,,EA034,NA,,,, +Ag45,,,EA034,NA,,,, +Ag46,,,EA034,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA034,2,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,,EA034,NA,,,, +Ag49,,1930,EA034,2,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA034,2,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,1910,EA034,2,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA034,NA,,,, +Ag52,,1950,EA034,2,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA034,2,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA034,4,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA034,4,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA034,4,,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA034,2,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,,EA034,NA,,,, +Ah1,Zaria Province,1930,EA034,3,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA034,3,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA034,2,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah12,,,EA034,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA034,2,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA034,2,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,,EA034,NA,,,, +Ah16,,,EA034,NA,,,, +Ah17,,1930,EA034,1,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,,EA034,NA,,,, +Ah19,,1930,EA034,2,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p75, +Ah2,,,EA034,NA,,,, +Ah20,,1920,EA034,2,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,,EA034,NA,,,, +Ah22,,,EA034,NA,,,, +Ah23,,,EA034,NA,,,, +Ah24,,,EA034,NA,,,, +Ah25,,,EA034,NA,,,, +Ah26,,,EA034,NA,,,, +Ah27,,,EA034,NA,,,, +Ah28,,,EA034,NA,,,, +Ah29,,,EA034,NA,,,, +Ah3,Tar of Benue Province,1920,EA034,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,,EA034,NA,,,, +Ah31,,,EA034,NA,,,, +Ah32,,,EA034,NA,,,, +Ah33,,,EA034,NA,,,, +Ah34,,,EA034,NA,,,, +Ah35,,,EA034,NA,,,, +Ah36,,1920,EA034,2,,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,,EA034,NA,,,, +Ah38,,1930,EA034,2,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA034,2,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,,EA034,NA,,,, +Ah5,,,EA034,NA,,,, +Ah6,,1920,EA034,2,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA034,2,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,,EA034,NA,,,, +Ah9,,1920,EA034,3,,diamond1964; gunn1953,EthnographicAtlas_1967_p75, +Ai1,,1920,EA034,2,,daigre193232; leynaud1954,EthnographicAtlas_1967_p75, +Ai10,,,EA034,NA,,,, +Ai11,,1900,EA034,2,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA034,2,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,,EA034,NA,,,, +Ai14,,1920,EA034,2,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA034,2,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,1910,EA034,1,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA034,2,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA034,4,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA034,NA,,,, +Ai2,,,EA034,NA,,,, +Ai20,,1910,EA034,3,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA034,4,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,,EA034,NA,,,, +Ai23,,1920,EA034,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,,EA034,NA,,,, +Ai25,,1950,EA034,2,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA034,2,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p75, +Ai27,,,EA034,NA,,,, +Ai28,,1910,EA034,2,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA034,2,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA034,3,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA034,2,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA034,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA034,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA034,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,,EA034,NA,,,, +Ai35,,1870,EA034,2,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,,EA034,NA,,,, +Ai37,,,EA034,NA,,,, +Ai38,,,EA034,NA,,,, +Ai39,,,EA034,NA,,,, +Ai4,,,EA034,NA,,,, +Ai40,,,EA034,NA,,,, +Ai41,,,EA034,NA,,,, +Ai42,,,EA034,NA,,,, +Ai43,,,EA034,NA,,,, +Ai44,,,EA034,NA,,,, +Ai45,,,EA034,NA,,,, +Ai46,,,EA034,NA,,,, +Ai47,Northern division,1939,EA034,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,1920,EA034,2,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA034,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA034,2,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,,EA034,NA,,,, +Ai9,Around Yagoua in Cameroon,1910,EA034,2,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,1950,EA034,2,,lawrance1957,EthnographicAtlas_1967_p75, +Aj10,,1920,EA034,2,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA034,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA034,3,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,1930,EA034,2,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA034,2,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA034,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,,,EA034,NA,,,, +Aj17,,1890,EA034,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA034,2,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,,EA034,NA,,,, +Aj2,,,EA034,NA,,,, +Aj20,,1940,EA034,2,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p79, +Aj21,,1930,EA034,3,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,,EA034,NA,,,, +Aj23,,1950,EA034,2,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA034,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,,EA034,NA,,,, +Aj26,,1910,EA034,2,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p79, +Aj27,,,EA034,NA,,,, +Aj28,,,EA034,NA,,,, +Aj29,,,EA034,NA,,,, +Aj3,,1930,EA034,4,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA034,NA,,,, +Aj31,,,EA034,NA,,,, +Aj4,,1920,EA034,3,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA034,3,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA034,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA034,2,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA034,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA034,2,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA034,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA034,4,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA034,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p79, +Ca12,,1880,EA034,4,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p79, +Ca13,,,EA034,NA,,,, +Ca14,,1950,EA034,2,,cerulli1956; fleming1965,EthnographicAtlas_1967_p79, +Ca15,,,EA034,NA,,,, +Ca16,,1930,EA034,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca17,,,EA034,NA,,,, +Ca18,,1940,EA034,2,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA034,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA034,4,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,1890,EA034,2,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA034,2,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA034,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA034,2,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,1950,EA034,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA034,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA034,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA034,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA034,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p79, +Ca29,,1920,EA034,3,,huntingford1955b; straube1963,EthnographicAtlas_1967_p79, +Ca3,,1950,EA034,4,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,Kafa Kingdom,1890,EA034,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p79, +Ca31,,1860,EA034,4,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,,EA034,NA,,,, +Ca33,,,EA034,NA,,,, +Ca34,,1920,EA034,4,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA034,4,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA034,4,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA034,4,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA034,4,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA034,4,,lewis1965b,EthnographicAtlas_1967_p79, +Ca4,,,EA034,NA,,,, +Ca40,,1950,EA034,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,,EA034,NA,,,, +Ca42,,1950,EA034,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA034,NA,,,, +Ca5,,1930,EA034,4,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p79, +Ca6,,1880,EA034,4,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA034,4,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,1940,EA034,2,,leslau1950; shack1963,EthnographicAtlas_1967_p79, +Ca9,,1890,EA034,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,,EA034,NA,,,, +Cb10,,,EA034,NA,,,, +Cb11,,1900,EA034,4,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA034,4,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA034,4,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA034,4,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA034,4,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA034,4,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA034,4,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,1930,EA034,4,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p79, +Cb19,,1870,EA034,4,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA034,4,"Under Islam, but formerly 'absent' (code ""1"")",ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,1920,EA034,4,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA034,NA,,,, +Cb22,,,EA034,NA,,,, +Cb23,,1930,EA034,4,,kane1939; lafont1939,EthnographicAtlas_1967_p83, +Cb24,Wodaabe of Niger,1950,EA034,4,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,1930,EA034,4,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA034,4,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,,EA034,NA,,,, +Cb28,,,EA034,NA,,,, +Cb29,,,EA034,NA,,,, +Cb3,Bamba division,1940,EA034,4,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,1920,EA034,4,,reid1930,EthnographicAtlas_1967_p79, +Cb5,,,EA034,NA,,,, +Cb6,,,EA034,NA,,,, +Cb7,,1920,EA034,4,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,,,EA034,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA034,4,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA034,4,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA034,4,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,1860,EA034,4,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA034,4,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA034,4,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA034,4,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA034,NA,,,, +Cc16,,1930,EA034,4,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,1930,EA034,4,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p83, +Cc18,,1910,EA034,4,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA034,4,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA034,4,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,with special reference to the more nomadic northern groups,1910,EA034,4,,adeler1939; tauxier1912,EthnographicAtlas_1967_p83, +Cc3,inhabitants of the oasis of Siwa,1920,EA034,4,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA034,4,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,1910,EA034,4,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p83, +Cc6,,1910,EA034,4,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA034,4,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA034,NA,,,, +Cc9,Ahaggaren tribe,1920,EA034,4,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA034,4,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,1900,EA034,4,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,,EA034,NA,,,, +Cd12,,1870,EA034,4,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,1930,EA034,4,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA034,4,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA034,4,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA034,4,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA034,4,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA034,4,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA034,4,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA034,4,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,1940,EA034,4,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA034,4,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA034,4,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA034,4,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA034,4,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,with special reference to the New Empire,-1400,EA034,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,with special reference to the Zemmur tribe,1910,EA034,4,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA034,4,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA034,4,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA034,4,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA034,NA,,,, +Ce3,City and environs of Rome,100,EA034,1,Variable beliefs at this period,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA034,4,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA034,4,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA034,4,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA034,4,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA034,4,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA034,4,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,,,EA034,NA,,,, +Cf3,,1930,EA034,4,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA034,4,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA034,4,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA034,4,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA034,4,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA034,4,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA034,4,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA034,4,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA034,4,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA034,NA,,,, +Ch11,Viriatino Village,1955,EA034,4,But officially disapproved,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA034,4,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA034,4,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,1900,EA034,4,,heffner1955; wichmann1913,EthnographicAtlas_1967_p83, +Ch5,with special reference to the village of Dragelevtsy,1940,EA034,4,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA034,4,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA034,4,,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA034,4,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA034,4,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,,,EA034,NA,,,, +Ci10,Vicinity of Erevan,1900,EA034,4,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA034,4,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,Abkhaz Tribe,1880,EA034,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA034,NA,,,, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA034,4,,gadzhieva1958,EthnographicAtlas_1967_p83, +Ci4,,1920,EA034,4,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA034,4,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA034,4,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p83, +Ci7,,1900,EA034,4,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p83, +Ci8,,1850,EA034,4,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA034,4,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA034,4,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA034,4,,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,Unspecified,1920,EA034,4,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA034,4,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA034,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,1930,EA034,4,,dickson1949,EthnographicAtlas_1967_p87, +Cj6,with special reference to the sedentary population,1950,EA034,4,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA034,4,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p87, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA034,4,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,1950,EA034,4,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA034,4,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA034,4,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA034,4,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA034,4,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA034,4,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA034,4,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA034,4,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA034,4,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,1890,EA034,NA,Forcibly converted to Islam in 1896,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA034,4,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA034,4,,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,1920,EA034,4,,feilberg1952; wilson1926,EthnographicAtlas_1967_p87, +Ea9,,1950,EA034,4,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA034,4,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,,EA034,NA,,,, +Eb3,,,EA034,NA,,,, +Eb4,,,EA034,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA034,4,,freikin1954; odonovan1882,Ethnology_Vol2_No2_Apr_1963, +Eb6,,,EA034,NA,,,, +Eb7,,1930,EA034,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA034,NA,,,, +Ec1,Sakhalin Island,1920,EA034,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA034,4,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,,EA034,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA034,3,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA034,3,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA034,3,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA034,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,,,EA034,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA034,1,Subsequent observers have contradicted Batchelor's report of a belief in a high god,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,,EA034,NA,,,, +Ec9,,,EA034,NA,,,, +Ed1,Kanghwa Island,1950,EA034,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,,,EA034,NA,,,, +Ed13,,,EA034,NA,,,, +Ed14,,,EA034,NA,,,, +Ed15a,,,EA034,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA034,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA034,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA034,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,,,EA034,NA,,,, +Ed4,,,EA034,NA,,,, +Ed5,Okayama,1950,EA034,2,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA034,NA,,,, +Ed7,,1950,EA034,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA034,1,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA034,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA034,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA034,4,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA034,3,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA034,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA034,1,"But 'active, supporting morality' (code ""4"") for Muslim Dards",biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA034,1,The belief system is that of Lama Buddhism,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA034,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA034,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA034,2,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA034,NA,,,, +Ef11,Village and environs of Senapur,1945,EA034,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA034,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA034,NA,,,, +Ef4,,,EA034,NA,,,, +Ef5,,1900,EA034,3,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,,EA034,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA034,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA034,4,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA034,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA034,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA034,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA034,NA,,,, +Eg12,,,EA034,NA,,,, +Eg13,Bastar State,1941,EA034,2,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA034,1,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,,,EA034,NA,,,, +Eg3,Hill Maria,1938,EA034,3,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA034,1,"There is, however, a female supreme deity whose younger brother created men and buffaloes",emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA034,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,,,EA034,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA034,2,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,,EA034,NA,,,, +Eg9,,,EA034,NA,,,, +Eh1,,1870,EA034,1,"Entry follows Radcliffe-Brown, who could find no confirmation of Man's report of a supreme being",man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA034,NA,,,, +Eh2,,,EA034,NA,,,, +Eh3,Menabe subtribe,1930,EA034,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA034,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,,,EA034,NA,,,, +Eh6,,,EA034,NA,,,, +Eh7,,1900,EA034,2,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA034,2,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91, +Eh9,,,EA034,NA,,,, +Ei1,Rengsanggr,1900,EA034,2,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA034,NA,,,, +Ei11,,1910,EA034,2,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA034,2,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA034,1,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA034,3,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA034,NA,,,, +Ei16,,1910,EA034,2,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA034,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA034,1,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,1940,EA034,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA034,1,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA034,NA,,,, +Ei3,Nondwin Village,1950,EA034,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA034,4,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA034,3,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA034,1,,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,1910,EA034,2,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA034,2,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,,EA034,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA034,1,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA034,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA034,1,,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA034,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA034,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA034,1,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA034,2,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA034,4,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA034,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA034,3,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA034,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA034,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,,,EA034,NA,,,, +Ej7,,1950,EA034,1,,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,with special reference to those of Trengganu,1940,EA034,4,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA034,2,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA034,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,1930,EA034,2,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p91, +Ia11,,,EA034,NA,,,, +Ia12,,1950,EA034,4,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,,,EA034,NA,,,, +Ia14,,,EA034,NA,,,, +Ia15,,,EA034,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA034,2,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA034,NA,,,, +Ia18,,,EA034,NA,,,, +Ia2,,1950,EA034,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA034,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA034,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,,EA034,NA,,,, +Ia6,Su-Paiwan Village,1930,EA034,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA034,NA,,,, +Ia8,,,EA034,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA034,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA034,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA034,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA034,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,with special reference to the Toba group,1930,EA034,4,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p95, +Ib5,with special reference to the village of Sensuron,1920,EA034,2,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA034,4,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,,,EA034,NA,,,, +Ib8,,,EA034,NA,,,, +Ib9,,,EA034,NA,,,, +Ic1,Borongloe,1940,EA034,4,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA034,NA,,,, +Ic11,Allang,1950,EA034,4,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA034,4,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA034,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA034,2,But Nicolspeyer denies a belief in a supreme being,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,,,EA034,NA,,,, +Ic4,,,EA034,NA,,,, +Ic5,,,EA034,NA,,,, +Ic6,,,EA034,NA,,,, +Ic7,,,EA034,NA,,,, +Ic8,,,EA034,NA,,,, +Ic9,,,EA034,NA,,,, +Id1,Alice Springs and environs,1900,EA034,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA034,1,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA034,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA034,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA034,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA034,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA034,2,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA034,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,,EA034,NA,,,, +Id6,,,EA034,NA,,,, +Id7,,1940,EA034,1,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA034,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,,EA034,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA034,2,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA034,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA034,2,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA034,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA034,NA,,,, +Ie14,,,EA034,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA034,1,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA034,NA,,,, +Ie17,,1940,EA034,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,,,EA034,NA,,,, +Ie19,with special reference to the coastal inhabitants,1910,EA034,1,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA034,1,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA034,1,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,,EA034,NA,,,, +Ie22,,,EA034,NA,,,, +Ie23,,1950,EA034,1,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,,EA034,NA,,,, +Ie25,,1920,EA034,1,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,,EA034,NA,,,, +Ie27,,,EA034,NA,,,, +Ie28,,1940,EA034,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA034,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA034,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA034,NA,,,, +Ie31,,1950,EA034,2,A mythical creator pair,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,,EA034,NA,,,, +Ie33,with special reference to the village of Muramarew,1950,EA034,2,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA034,NA,,,, +Ie35,,,EA034,NA,,,, +Ie36,,,EA034,NA,,,, +Ie37,,,EA034,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA034,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA034,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA034,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA034,1,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,,EA034,NA,,,, +Ie7,with special reference to the Mae group,1950,EA034,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,,,EA034,NA,,,, +Ie9,,1920,EA034,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA034,1,But Christian beliefs are widely accepted today,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA034,NA,,,, +If11,,1860,EA034,2,"But 'active high god, supporting morality' (code ""4"") since the acceptance of Christianity",sarfert1919,EthnographicAtlas_1967_p99, +If12,,,EA034,NA,,,, +If13,,,EA034,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA034,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,,EA034,NA,,,, +If16,,1960,EA034,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA034,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA034,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA034,1,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA034,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA034,1,But largely nominal Christians today,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,,,EA034,NA,,,, +If7,,,EA034,NA,,,, +If8,with special reference to those of Saipa,1950,EA034,4,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,,EA034,NA,,,, +Ig1,Northeastern group,1940,EA034,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA034,1,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA034,2,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,with special reference to the Varisi,1900,EA034,1,,scheffler1965,EthnographicAtlas_1967_p99, +Ig13,,,EA034,NA,,,, +Ig14,,1900,EA034,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA034,NA,,,, +Ig16,,,EA034,NA,,,, +Ig17,,,EA034,NA,,,, +Ig18,,,EA034,NA,,,, +Ig19,,,EA034,NA,,,, +Ig2,Kiriwina Island,1910,EA034,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA034,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA034,NA,,,, +Ig3,,1930,EA034,1,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA034,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,,EA034,NA,,,, +Ig6,,1900,EA034,1,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,,EA034,NA,,,, +Ig8,,,EA034,NA,,,, +Ig9,Peri Village,1920,EA034,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA034,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,,,EA034,NA,,,, +Ih11,,,EA034,NA,,,, +Ih12,,,EA034,NA,,,, +Ih13,,,EA034,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA034,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,,,EA034,NA,,,, +Ih3,Bunlap Village,1950,EA034,1,"Entry follows the Lanes, who were unable to confirm Father Tattevin's report of a high god",lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA034,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA034,NA,,,, +Ih6,,,EA034,NA,,,, +Ih7,,,EA034,NA,,,, +Ih8,with special reference to the village of Nakaroka,1940,EA034,1,,quain1949,EthnographicAtlas_1967_p99, +Ih9,,,EA034,NA,,,, +Ii1,with special reference to American Samoa,1920,EA034,2,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,,EA034,NA,,,, +Ii12,Pangai,1920,EA034,1,"But aboriginally 'absent' (code ""1"")",beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA034,1,"But 'active, supporting morality' (code ""4"") today",burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA034,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA034,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA034,2,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,,,EA034,NA,,,, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA034,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p99, +Ii6,,,EA034,NA,,,, +Ii7,,1910,EA034,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA034,1,"But 'active, supporting morality' (code ""4"") today",burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA034,1,"But 'active, supporting morality' (code ""4"") today",loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA034,1,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,,EA034,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA034,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA034,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA034,1,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,,EA034,NA,,,, +Ij6,,1800,EA034,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p103, +Ij7,,1900,EA034,1,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,1900,EA034,1,"But 'active, supporting morality' (code ""4"") since adoption of Christianity",ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p103, +Ij9,,1860,EA034,1,,metraux1940,EthnographicAtlas_1967_p103, +Na1,,1930,EA034,1,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA034,1,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,,EA034,NA,,,, +Na12,,1950,EA034,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA034,3,"""Sedna...the mother of the sea-mammals...the principal deity...She has supreme sway over the destinies of mankind...""",boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA034,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,,EA034,NA,,,, +Na16,,1860,EA034,2,,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA034,2,"Honigmann is uncertain whether ""the concept of a Supreme Being is actually aboriginal",helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA034,3,"Jenness reports that the concept of a ""Superior Being"" antedates the introduction of Christianity",jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA034,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA034,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA034,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA034,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,,,EA034,NA,,,, +Na24,,1880,EA034,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA034,4,"Formerly 'absent' (code ""1"")",birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA034,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA034,2,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA034,4,Belief in a high god antedates the introduction of Christianity in 1830,jenness1937,EthnographicAtlas_1967_p103, +Na29,,1850,EA034,1,,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA034,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA034,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA034,1,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA034,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA034,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,,,EA034,NA,,,, +Na35,,1800,EA034,2,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA034,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA034,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA034,2,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA034,1,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA034,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA034,2,But some sources deny a belief in a high god,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA034,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA034,2,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA034,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA034,NA,,,, +Na45,,,EA034,NA,,,, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA034,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA034,1,"Belief in an otiose supreme being who is not, however, a creator",lantis1946,EthnographicAtlas_1967_p103,"Assume Murdock comment refers to col 34, not col 36 as stated in Gray (1999)" +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA034,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA034,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA034,2,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA034,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA034,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA034,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA034,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA034,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA034,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA034,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA034,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA034,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA034,1,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,,EA034,NA,,,, +Nb2,Twana Tribe,1850,EA034,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA034,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,,EA034,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA034,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA034,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA034,1,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA034,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA034,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA034,1,"Aboriginally, but the concept of a high god was introduced ""as a result of early white contact""",duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,,EA034,NA,,,, +Nb29,,,EA034,NA,,,, +Nb3,,,EA034,NA,,,, +Nb30,,,EA034,NA,,,, +Nb31,,,EA034,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA034,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA034,1,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA034,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA034,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA034,2,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,,EA034,NA,,,, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA034,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA034,3,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA034,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA034,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA034,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA034,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA034,1,Lopatin reports the Raven as creator of man and the world but does not specifically report a conception of a high god,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA034,2,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA034,2,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,,EA034,NA,,,, +Nc11,,,EA034,NA,,,, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA034,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA034,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA034,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA034,2,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA034,2,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA034,1,An animal creator,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA034,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,,,EA034,NA,,,, +Nc2,,1850,EA034,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,,EA034,NA,,,, +Nc21,,,EA034,NA,,,, +Nc22,,,EA034,NA,,,, +Nc23,,,EA034,NA,,,, +Nc24,Tulare Lake,1860,EA034,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,,EA034,NA,,,, +Nc26,,,EA034,NA,,,, +Nc27,,,EA034,NA,,,, +Nc28,,,EA034,NA,,,, +Nc29,,1770,EA034,2,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA034,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA034,2,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA034,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,,EA034,NA,,,, +Nc33,,1860,EA034,1,But the deity Chingishnish had certain attributes of a high god,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA034,1,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA034,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,,,EA034,NA,,,, +Nc6,with special reference to the Southern Diegueno,1850,EA034,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA034,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA034,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA034,1,The creator was a culture hero rather than a high god,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA034,4,In the prevailing Prophet Dance cult,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,,EA034,NA,,,, +Nd11,with special reference to the southeastern Shuswap,1850,EA034,1,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA034,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,,EA034,NA,,,, +Nd14,,1860,EA034,1,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA034,2,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,,EA034,NA,,,, +Nd17,,,EA034,NA,,,, +Nd18,,1860,EA034,1,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,,EA034,NA,,,, +Nd2,,1860,EA034,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA034,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,,EA034,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA034,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,,EA034,NA,,,, +Nd24,,,EA034,NA,,,, +Nd25,,,EA034,NA,,,, +Nd26,,1870,EA034,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA034,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,,EA034,NA,,,, +Nd29,,,EA034,NA,,,, +Nd3,Havasupai Tribe,1870,EA034,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA034,2,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,,EA034,NA,,,, +Nd32,,,EA034,NA,,,, +Nd33,,,EA034,NA,,,, +Nd34,,,EA034,NA,,,, +Nd35,,,EA034,NA,,,, +Nd36,,,EA034,NA,,,, +Nd37,,,EA034,NA,,,, +Nd38,,,EA034,NA,,,, +Nd39,,,EA034,NA,,,, +Nd4,,1870,EA034,3,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,,EA034,NA,,,, +Nd41,,,EA034,NA,,,, +Nd42,,,EA034,NA,,,, +Nd43,,1860,EA034,2,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,,EA034,NA,,,, +Nd45,,,EA034,NA,,,, +Nd46,,,EA034,NA,,,, +Nd47,,,EA034,NA,,,, +Nd48,,,EA034,NA,,,, +Nd49,,,EA034,NA,,,, +Nd5,,1870,EA034,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,,EA034,NA,,,, +Nd51,,,EA034,NA,,,, +Nd52,,,EA034,NA,,,, +Nd53,,,EA034,NA,,,, +Nd54,Colorado River Reservation,1860,EA034,1,Coyote a creator but not a supreme being,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,,,EA034,NA,,,, +Nd56,,,EA034,NA,,,, +Nd57,,,EA034,NA,,,, +Nd58,,,EA034,NA,,,, +Nd59,,,EA034,NA,,,, +Nd6,,1850,EA034,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,,EA034,NA,,,, +Nd61,,,EA034,NA,,,, +Nd62,,,EA034,NA,,,, +Nd63,,,EA034,NA,,,, +Nd64,,,EA034,NA,,,, +Nd65,,1870,EA034,1,But there was a mythical creator who was not a supreme being,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA034,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA034,1,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA034,2,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,,,EA034,NA,,,, +Nd9,,1860,EA034,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA034,4,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,,EA034,NA,,,, +Ne11,,1870,EA034,2,But the Great Spirit is not specifically reported as a creator,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA034,2,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA034,2,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA034,2,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA034,2,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,,EA034,NA,,,, +Ne17,,,EA034,NA,,,, +Ne18,,1850,EA034,2,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA034,2,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,,EA034,NA,,,, +Ne20,,,EA034,NA,,,, +Ne21,,,EA034,NA,,,, +Ne3,,,EA034,NA,,,, +Ne4,,1870,EA034,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA034,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,,EA034,NA,,,, +Ne7,,,EA034,NA,,,, +Ne8,,1870,EA034,2,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA034,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,,EA034,NA,,,, +Nf11,,,EA034,NA,,,, +Nf12,,,EA034,NA,,,, +Nf13,with special reference to the Kiskopotha band,1820,EA034,4,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA034,NA,,,, +Nf15,,,EA034,NA,,,, +Nf2,,,EA034,NA,,,, +Nf3,Omaha Tribe,1850,EA034,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA034,3,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,1860,EA034,2,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA034,2,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA034,4,Possibly reflecting Christian influence,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA034,4,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,,EA034,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA034,2,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA034,2,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,,EA034,NA,,,, +Ng12,,,EA034,NA,,,, +Ng13,,,EA034,NA,,,, +Ng14,,,EA034,NA,,,, +Ng15,,,EA034,NA,,,, +Ng2,,,EA034,NA,,,, +Ng3,Upper division in Alabama,1750,EA034,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA034,NA,,,, +Ng5,,,EA034,NA,,,, +Ng6,with special reference to the Munsee,1700,EA034,3,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA034,2,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,1560,EA034,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p115, +Ng9,,,EA034,NA,,,, +Nh1,Central band,1880,EA034,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA034,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA034,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA034,1,,gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,,EA034,NA,,,, +Nh14,,,EA034,NA,,,, +Nh15,,,EA034,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA034,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,,EA034,NA,,,, +Nh18,Old Oraiibi,1920,EA034,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA034,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,,EA034,NA,,,, +Nh20,,1860,EA034,1,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA034,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,,EA034,NA,,,, +Nh23,,,EA034,NA,,,, +Nh24,,,EA034,NA,,,, +Nh25,,1920,EA034,2,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA034,NA,,,, +Nh27,,,EA034,NA,,,, +Nh3,,1930,EA034,1,Also a considerably smaller number of cattle and horses,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA034,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA034,1,The legendary creator was apparently not a high god,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,,EA034,NA,,,, +Nh7,,1890,EA034,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,,EA034,NA,,,, +Nh9,,1920,EA034,1,,parsons1939; trager1943,EthnographicAtlas_1967_p115, +Ni1,,1930,EA034,4,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA034,4,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,,,EA034,NA,,,, +Ni4,,,EA034,NA,,,, +Ni5,,1570,EA034,1,,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,,EA034,NA,,,, +Ni7,,,EA034,NA,,,, +Ni8,,,EA034,NA,,,, +Ni9,,,EA034,NA,,,, +Nj1,Ojitlan,1940,EA034,4,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA034,4,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA034,NA,,,, +Nj12,,,EA034,NA,,,, +Nj13,,,EA034,NA,,,, +Nj14,,,EA034,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA034,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA034,4,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,,EA034,NA,,,, +Nj5,,,EA034,NA,,,, +Nj6,,,EA034,NA,,,, +Nj7,with special reference to Ayutla,1930,EA034,4,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA034,NA,,,, +Nj9,,1960,EA034,4,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA034,4,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,1900,EA034,2,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p119, +Sa11,,,EA034,NA,,,, +Sa12,,1948,EA034,4,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA034,4,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA034,NA,,,, +Sa15,,,EA034,NA,,,, +Sa16,,,EA034,NA,,,, +Sa17,,,EA034,NA,,,, +Sa2,,,EA034,NA,,,, +Sa3,,1930,EA034,2,,wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA034,2,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA034,3,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,,EA034,NA,,,, +Sa7,,1940,EA034,4,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA034,4,,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA034,4,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA034,2,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA034,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,,,EA034,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA034,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA034,2,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,Goajiro Tribe,1940,EA034,3,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA034,2,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,1520,EA034,2,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA034,4,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA034,4,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA034,2,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,,EA034,NA,,,, +Sc12,,,EA034,NA,,,, +Sc13,,,EA034,NA,,,, +Sc14,,,EA034,NA,,,, +Sc15,,,EA034,NA,,,, +Sc16,,,EA034,NA,,,, +Sc17,,,EA034,NA,,,, +Sc18,,1960,EA034,2,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,,EA034,NA,,,, +Sc3,Barama River,1930,EA034,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA034,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,,EA034,NA,,,, +Sc6,,,EA034,NA,,,, +Sc7,,1950,EA034,1,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,1950,EA034,1,A high god who is apparently not a creator,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p119, +Sc9,,,EA034,NA,,,, +Sd1,Cabrura village,1950,EA034,1,"Kruse reports a creator god, but Murphy treats him as a culture hero",frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA034,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,,EA034,NA,,,, +Sd4,,,EA034,NA,,,, +Sd5,,,EA034,NA,,,, +Sd6,,,EA034,NA,,,, +Sd7,,1950,EA034,1,A creator who is not a high god,fock1963,EthnographicAtlas_1967_p119, +Sd8,,1950,EA034,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA034,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA034,2,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA034,2,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,,EA034,NA,,,, +Se12,,,EA034,NA,,,, +Se2,,1940,EA034,2,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA034,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA034,1,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA034,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA034,2,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA034,NA,,,, +Se8,Upper Inuya River,1950,EA034,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA034,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA034,2,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA034,4,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA034,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA034,2,Rochereau ascribes the otiose high god to Christian influence,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,,EA034,NA,,,, +Sf6,,1540,EA034,1,"The Sun was the chief deity, but another god was the creator",ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA034,2,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA034,NA,,,, +Sf9,,,EA034,NA,,,, +Sg1,Eastern and central,1870,EA034,4,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA034,3,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA034,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA034,2,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA034,1,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA034,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA034,2,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,Those in contact with mission,1800,EA034,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,,EA034,NA,,,, +Sh5,,1910,EA034,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,1890,EA034,3,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,,EA034,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA034,4,"But aboriginally 'absent' (code ""1"")",karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA034,2,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA034,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA034,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA034,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA034,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA034,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA034,2,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,,EA034,NA,,,, +Si7,with special reference to the Cozarimi,1910,EA034,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA034,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA034,NA,,,, +Sj1,,1950,EA034,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,,,EA034,NA,,,, +Sj11,Village of Sao Domingo,1958,EA034,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA034,1,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA034,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA034,1,Nimuendaju was unable to confirm an earlier report of a supreme being,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,,,EA034,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA034,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA034,2,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA034,2,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,,EA034,NA,,,, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA034,4,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA034,4,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA034,4,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA034,4,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA034,4,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA034,4,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA034,4,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA034,4,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA034,4,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA034,4,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA034,4,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA034,4,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA034,4,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA034,4,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA034,4,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA034,4,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA034,4,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA034,2,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA034,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA034,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA034,2,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA034,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA034,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA034,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA034,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA034,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA034,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA035,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,,,EA035,NA,,,, +Aa3,Gei/Khauan tribe,1840,EA035,8,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA035,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA035,2,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,,EA035,NA,,,, +Aa7,,,EA035,NA,,,, +Aa8,,,EA035,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA035,5,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,,EA035,NA,,,, +Ab10,,,EA035,NA,,,, +Ab11,,1850,EA035,5,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,,EA035,NA,,,, +Ab13,,,EA035,NA,,,, +Ab14,,,EA035,NA,,,, +Ab15,,,EA035,NA,,,, +Ab16,,,EA035,NA,,,, +Ab17,,,EA035,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA035,6,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA035,6,No games of chance are mentioned in an incomplete account,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,,EA035,NA,,,, +Ab20,,,EA035,NA,,,, +Ab21a,,,EA035,NA,,,, +Ab21b,,,EA035,NA,,,, +Ab22,,,EA035,NA,,,, +Ab3,,,EA035,NA,,,, +Ab4,,1920,EA035,8,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA035,6,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA035,8,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,,,EA035,NA,,,, +Ab8,,,EA035,NA,,,, +Ab9,,,EA035,NA,,,, +Ac1,,1920,EA035,6,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,,EA035,NA,,,, +Ac11,,,EA035,NA,,,, +Ac12,,,EA035,NA,,,, +Ac13,,,EA035,NA,,,, +Ac14,,,EA035,NA,,,, +Ac15,,,EA035,NA,,,, +Ac16,,,EA035,NA,,,, +Ac17,,,EA035,NA,,,, +Ac18,,,EA035,NA,,,, +Ac19,,,EA035,NA,,,, +Ac2,,,EA035,NA,,,, +Ac20,,,EA035,NA,,,, +Ac21,,,EA035,NA,,,, +Ac22,,,EA035,NA,,,, +Ac23,,,EA035,NA,,,, +Ac24,,,EA035,NA,,,, +Ac25,,,EA035,NA,,,, +Ac26,,,EA035,NA,,,, +Ac27,,,EA035,NA,,,, +Ac28,,,EA035,NA,,,, +Ac29,,,EA035,NA,,,, +Ac3,,,EA035,NA,,,, +Ac30,,,EA035,NA,,,, +Ac31,,1910,EA035,6,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA035,NA,,,, +Ac33,,,EA035,NA,,,, +Ac34,,,EA035,NA,,,, +Ac35,,,EA035,NA,,,, +Ac36,,,EA035,NA,,,, +Ac37,,,EA035,NA,,,, +Ac38,,,EA035,NA,,,, +Ac39,,,EA035,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA035,8,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,,EA035,NA,,,, +Ac41,,,EA035,NA,,,, +Ac42,,,EA035,NA,,,, +Ac43,,,EA035,NA,,,, +Ac5,,1920,EA035,6,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,,EA035,NA,,,, +Ac7,,1920,EA035,6,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,,EA035,NA,,,, +Ac9,,,EA035,NA,,,, +Ad1,,,EA035,NA,,,, +Ad10,,,EA035,NA,,,, +Ad11,,,EA035,NA,,,, +Ad12,,,EA035,NA,,,, +Ad13,,,EA035,NA,,,, +Ad14,,,EA035,NA,,,, +Ad15,,,EA035,NA,,,, +Ad16,,,EA035,NA,,,, +Ad17,,,EA035,NA,,,, +Ad18,,,EA035,NA,,,, +Ad19,,,EA035,NA,,,, +Ad2,,1950,EA035,6,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,,EA035,NA,,,, +Ad21,,,EA035,NA,,,, +Ad22,,,EA035,NA,,,, +Ad23,,,EA035,NA,,,, +Ad24,,,EA035,NA,,,, +Ad25,,,EA035,NA,,,, +Ad26,,,EA035,NA,,,, +Ad27,,,EA035,NA,,,, +Ad28,,,EA035,NA,,,, +Ad29,,,EA035,NA,,,, +Ad3,,1910,EA035,8,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,,EA035,NA,,,, +Ad31,,,EA035,NA,,,, +Ad32,,,EA035,NA,,,, +Ad33,,,EA035,NA,,,, +Ad34,,,EA035,NA,,,, +Ad35,,,EA035,NA,,,, +Ad36,,,EA035,NA,,,, +Ad37,,,EA035,NA,,,, +Ad38,,,EA035,NA,,,, +Ad39,,,EA035,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA035,6,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,,EA035,NA,,,, +Ad41,,,EA035,NA,,,, +Ad42,,,EA035,NA,,,, +Ad43,,,EA035,NA,,,, +Ad44,,,EA035,NA,,,, +Ad45,,,EA035,NA,,,, +Ad46,,,EA035,NA,,,, +Ad47,,,EA035,NA,,,, +Ad48,,,EA035,NA,,,, +Ad49,,,EA035,NA,,,, +Ad5,,,EA035,NA,,,, +Ad50,,,EA035,NA,,,, +Ad51,,,EA035,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA035,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA035,6,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,,,EA035,NA,,,, +Ad9,,1900,EA035,NA,"La Fontaine says ""there are few traditional games.""",lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,,,EA035,NA,,,, +Ae10,,1910,EA035,6,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA035,5,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA035,2,"But formerly T [sic, Gray (1999)]",ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67,Murdock comment refers to a code (T) he did not use for this variable; not clear to what it refers. +Ae13,,,EA035,NA,,,, +Ae14,,,EA035,NA,,,, +Ae15,,,EA035,NA,,,, +Ae16,,,EA035,NA,,,, +Ae17,,,EA035,NA,,,, +Ae18,,,EA035,NA,,,, +Ae19,,,EA035,NA,,,, +Ae2,,,EA035,NA,,,, +Ae20,,,EA035,NA,,,, +Ae21,,,EA035,NA,,,, +Ae22,,,EA035,NA,,,, +Ae23,,,EA035,NA,,,, +Ae24,,,EA035,NA,,,, +Ae25,,,EA035,NA,,,, +Ae26,,,EA035,NA,,,, +Ae27,,,EA035,NA,,,, +Ae28,,1900,EA035,5,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,,EA035,NA,,,, +Ae3,,1910,EA035,2,"But 'all types' (code ""8"") in consequence of recent borrowing",alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,,EA035,NA,,,, +Ae31,,,EA035,NA,,,, +Ae32,,,EA035,NA,,,, +Ae33,,,EA035,NA,,,, +Ae34,,,EA035,NA,,,, +Ae35,,,EA035,NA,,,, +Ae36,,,EA035,NA,,,, +Ae37,,,EA035,NA,,,, +Ae38,,,EA035,NA,,,, +Ae39,,1920,EA035,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,,,EA035,NA,,,, +Ae40,,,EA035,NA,,,, +Ae41,,,EA035,NA,,,, +Ae42,,,EA035,NA,,,, +Ae43,,,EA035,NA,,,, +Ae44,,,EA035,NA,,,, +Ae45,,,EA035,NA,,,, +Ae46,,,EA035,NA,,,, +Ae47,,,EA035,NA,,,, +Ae48,,,EA035,NA,,,, +Ae49,,,EA035,NA,,,, +Ae5,,,EA035,NA,,,, +Ae50,,,EA035,NA,,,, +Ae51,,,EA035,NA,,,, +Ae52,,,EA035,NA,,,, +Ae53,,,EA035,NA,,,, +Ae54,,,EA035,NA,,,, +Ae55,,,EA035,NA,,,, +Ae56,,,EA035,NA,,,, +Ae57,,,EA035,NA,,,, +Ae58,,,EA035,NA,,,, +Ae59,,,EA035,NA,,,, +Ae6,,,EA035,NA,,,, +Ae7,,1910,EA035,6,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA035,6,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,,EA035,NA,,,, +Af1,City and environs of Abomey,1890,EA035,8,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,,EA035,NA,,,, +Af11,,1920,EA035,8,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,,,EA035,NA,,,, +Af13,,,EA035,NA,,,, +Af14,,,EA035,NA,,,, +Af15,,1920,EA035,8,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,,EA035,NA,,,, +Af17,,,EA035,NA,,,, +Af18,,,EA035,NA,,,, +Af19,,,EA035,NA,,,, +Af2,,,EA035,NA,,,, +Af20,,,EA035,NA,,,, +Af21,,,EA035,NA,,,, +Af22,,,EA035,NA,,,, +Af23,,,EA035,NA,,,, +Af24,,,EA035,NA,,,, +Af25,,,EA035,NA,,,, +Af26,,,EA035,NA,,,, +Af27,,,EA035,NA,,,, +Af28,,,EA035,NA,,,, +Af29,,,EA035,NA,,,, +Af3,Kumasi State,1900,EA035,6,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,,EA035,NA,,,, +Af31,,,EA035,NA,,,, +Af32,,,EA035,NA,,,, +Af33,,,EA035,NA,,,, +Af34,,,EA035,NA,,,, +Af35,,,EA035,NA,,,, +Af36,,,EA035,NA,,,, +Af37,,,EA035,NA,,,, +Af38,,,EA035,NA,,,, +Af39,,,EA035,NA,,,, +Af4,,,EA035,NA,,,, +Af40,,,EA035,NA,,,, +Af41,,,EA035,NA,,,, +Af42,,,EA035,NA,,,, +Af43,,,EA035,NA,,,, +Af44,,,EA035,NA,,,, +Af45,,,EA035,NA,,,, +Af46,,,EA035,NA,,,, +Af47,,,EA035,NA,,,, +Af48,,,EA035,NA,,,, +Af49,,1940,EA035,2,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA035,8,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,,EA035,NA,,,, +Af51,,,EA035,NA,,,, +Af52,,,EA035,NA,,,, +Af53,,,EA035,NA,,,, +Af54,,1930,EA035,8,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,,EA035,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA035,8,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,,EA035,NA,,,, +Af58,,,EA035,NA,,,, +Af6,,,EA035,NA,,,, +Af7,,,EA035,NA,,,, +Af8,,,EA035,NA,,,, +Af9,,,EA035,NA,,,, +Ag1,,,EA035,NA,,,, +Ag10,,,EA035,NA,,,, +Ag11,,1910,EA035,6,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,,EA035,NA,,,, +Ag13,,,EA035,NA,,,, +Ag14,,,EA035,NA,,,, +Ag15,,,EA035,NA,,,, +Ag16,,,EA035,NA,,,, +Ag17,,,EA035,NA,,,, +Ag18,,,EA035,NA,,,, +Ag19,,,EA035,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA035,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,,EA035,NA,,,, +Ag21,,,EA035,NA,,,, +Ag22,,,EA035,NA,,,, +Ag23,,,EA035,NA,,,, +Ag24,,,EA035,NA,,,, +Ag25,,,EA035,NA,,,, +Ag26,,,EA035,NA,,,, +Ag27,,,EA035,NA,,,, +Ag28,,,EA035,NA,,,, +Ag29,,,EA035,NA,,,, +Ag3,,,EA035,NA,,,, +Ag30,,,EA035,NA,,,, +Ag31,,,EA035,NA,,,, +Ag32,,,EA035,NA,,,, +Ag33,,,EA035,NA,,,, +Ag34,,,EA035,NA,,,, +Ag35,,,EA035,NA,,,, +Ag36,,,EA035,NA,,,, +Ag37,,,EA035,NA,,,, +Ag38,,,EA035,NA,,,, +Ag39,,,EA035,NA,,,, +Ag4,Tallensi Tribe,1930,EA035,5,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,,EA035,NA,,,, +Ag41,,,EA035,NA,,,, +Ag42,,,EA035,NA,,,, +Ag43,,,EA035,NA,,,, +Ag44,,,EA035,NA,,,, +Ag45,,,EA035,NA,,,, +Ag46,,,EA035,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA035,8,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,,EA035,NA,,,, +Ag49,,,EA035,NA,,,, +Ag5,,,EA035,NA,,,, +Ag50,,,EA035,NA,,,, +Ag51,,,EA035,NA,,,, +Ag52,,,EA035,NA,,,, +Ag53,,,EA035,NA,,,, +Ag54,,1910,EA035,8,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA035,NA,,,, +Ag7,,,EA035,NA,,,, +Ag8,,,EA035,NA,,,, +Ag9,,,EA035,NA,,,, +Ah1,,,EA035,NA,,,, +Ah10,,,EA035,NA,,,, +Ah11,,,EA035,NA,,,, +Ah12,,,EA035,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA035,2,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA035,2,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,,EA035,NA,,,, +Ah16,,,EA035,NA,,,, +Ah17,,,EA035,NA,,,, +Ah18,,,EA035,NA,,,, +Ah19,,,EA035,NA,,,, +Ah2,,1920,EA035,6,,meek1931a,EthnographicAtlas_1967_p75, +Ah20,,,EA035,NA,,,, +Ah21,,,EA035,NA,,,, +Ah22,,,EA035,NA,,,, +Ah23,,,EA035,NA,,,, +Ah24,,,EA035,NA,,,, +Ah25,,,EA035,NA,,,, +Ah26,,,EA035,NA,,,, +Ah27,,,EA035,NA,,,, +Ah28,,,EA035,NA,,,, +Ah29,,,EA035,NA,,,, +Ah3,Tar of Benue Province,1920,EA035,6,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,,EA035,NA,,,, +Ah31,,,EA035,NA,,,, +Ah32,,,EA035,NA,,,, +Ah33,,,EA035,NA,,,, +Ah34,,,EA035,NA,,,, +Ah35,,,EA035,NA,,,, +Ah36,,,EA035,NA,,,, +Ah37,,,EA035,NA,,,, +Ah38,,,EA035,NA,,,, +Ah39,,,EA035,NA,,,, +Ah4,,,EA035,NA,,,, +Ah5,,,EA035,NA,,,, +Ah6,,,EA035,NA,,,, +Ah7,,,EA035,NA,,,, +Ah8,,,EA035,NA,,,, +Ah9,,1920,EA035,8,,diamond1964; gunn1953,EthnographicAtlas_1967_p75, +Ai1,,,EA035,NA,,,, +Ai10,,,EA035,NA,,,, +Ai11,,,EA035,NA,,,, +Ai12,,,EA035,NA,,,, +Ai13,,,EA035,NA,,,, +Ai14,,,EA035,NA,,,, +Ai15,,,EA035,NA,,,, +Ai16,,,EA035,NA,,,, +Ai17,,,EA035,NA,,,, +Ai18,,,EA035,NA,,,, +Ai19,,,EA035,NA,,,, +Ai2,,,EA035,NA,,,, +Ai20,,,EA035,NA,,,, +Ai21,,,EA035,NA,,,, +Ai22,,,EA035,NA,,,, +Ai23,,1920,EA035,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,,EA035,NA,,,, +Ai25,,,EA035,NA,,,, +Ai26,,,EA035,NA,,,, +Ai27,,,EA035,NA,,,, +Ai28,,,EA035,NA,,,, +Ai29,,,EA035,NA,,,, +Ai3,,1920,EA035,8,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA035,2,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,,EA035,NA,,,, +Ai32,,,EA035,NA,,,, +Ai33,,,EA035,NA,,,, +Ai34,,,EA035,NA,,,, +Ai35,,,EA035,NA,,,, +Ai36,,,EA035,NA,,,, +Ai37,,,EA035,NA,,,, +Ai38,,,EA035,NA,,,, +Ai39,,,EA035,NA,,,, +Ai4,,,EA035,NA,,,, +Ai40,,,EA035,NA,,,, +Ai41,,,EA035,NA,,,, +Ai42,,,EA035,NA,,,, +Ai43,,,EA035,NA,,,, +Ai44,,,EA035,NA,,,, +Ai45,,,EA035,NA,,,, +Ai46,,,EA035,NA,,,, +Ai47,,,EA035,NA,,,, +Ai5,,,EA035,NA,,,, +Ai6,,,EA035,NA,,,, +Ai7,,1910,EA035,5,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,,EA035,NA,,,, +Ai9,,,EA035,NA,,,, +Aj1,,,EA035,NA,,,, +Aj10,,,EA035,NA,,,, +Aj11,,,EA035,NA,,,, +Aj12,,,EA035,NA,,,, +Aj13,,,EA035,NA,,,, +Aj14,,,EA035,NA,,,, +Aj15,,,EA035,NA,,,, +Aj16,,,EA035,NA,,,, +Aj17,,,EA035,NA,,,, +Aj18,,,EA035,NA,,,, +Aj19,,,EA035,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA035,6,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,,EA035,NA,,,, +Aj21,,,EA035,NA,,,, +Aj22,,,EA035,NA,,,, +Aj23,,,EA035,NA,,,, +Aj24,,,EA035,NA,,,, +Aj25,,,EA035,NA,,,, +Aj26,,,EA035,NA,,,, +Aj27,,,EA035,NA,,,, +Aj28,,,EA035,NA,,,, +Aj29,,,EA035,NA,,,, +Aj3,,,EA035,NA,,,, +Aj30,,,EA035,NA,,,, +Aj31,,,EA035,NA,,,, +Aj4,,,EA035,NA,,,, +Aj5,,,EA035,NA,,,, +Aj6,,1940,EA035,6,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,,EA035,NA,,,, +Aj8,,,EA035,NA,,,, +Aj9,,,EA035,NA,,,, +Ca1,,,EA035,NA,,,, +Ca10,,,EA035,NA,,,, +Ca11,,,EA035,NA,,,, +Ca12,,,EA035,NA,,,, +Ca13,,,EA035,NA,,,, +Ca14,,,EA035,NA,,,, +Ca15,,,EA035,NA,,,, +Ca16,,,EA035,NA,,,, +Ca17,,,EA035,NA,,,, +Ca18,,,EA035,NA,,,, +Ca19,,,EA035,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA035,4,Puccioni mentions only games of strategy in an incomplete account,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,,EA035,NA,,,, +Ca21,,,EA035,NA,,,, +Ca22,,,EA035,NA,,,, +Ca23,,,EA035,NA,,,, +Ca24,,,EA035,NA,,,, +Ca25,,,EA035,NA,,,, +Ca26,,,EA035,NA,,,, +Ca27,,,EA035,NA,,,, +Ca28,,,EA035,NA,,,, +Ca29,,,EA035,NA,,,, +Ca3,,,EA035,NA,,,, +Ca30,,,EA035,NA,,,, +Ca31,,,EA035,NA,,,, +Ca32,,,EA035,NA,,,, +Ca33,,,EA035,NA,,,, +Ca34,,,EA035,NA,,,, +Ca35,,,EA035,NA,,,, +Ca36,,,EA035,NA,,,, +Ca37,,,EA035,NA,,,, +Ca38,,,EA035,NA,,,, +Ca39,,,EA035,NA,,,, +Ca4,,,EA035,NA,,,, +Ca40,,,EA035,NA,,,, +Ca41,,,EA035,NA,,,, +Ca42,,,EA035,NA,,,, +Ca43,,,EA035,NA,,,, +Ca5,,,EA035,NA,,,, +Ca6,,,EA035,NA,,,, +Ca7,Gondar district,1950,EA035,6,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,,EA035,NA,,,, +Ca9,,,EA035,NA,,,, +Cb1,,,EA035,NA,,,, +Cb10,,,EA035,NA,,,, +Cb11,,,EA035,NA,,,, +Cb12,,,EA035,NA,,,, +Cb13,,,EA035,NA,,,, +Cb14,,,EA035,NA,,,, +Cb15,,,EA035,NA,,,, +Cb16,,,EA035,NA,,,, +Cb17,,,EA035,NA,,,, +Cb18,,,EA035,NA,,,, +Cb19,,,EA035,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA035,8,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,,EA035,NA,,,, +Cb21,,,EA035,NA,,,, +Cb22,,,EA035,NA,,,, +Cb23,,,EA035,NA,,,, +Cb24,,,EA035,NA,,,, +Cb25,,,EA035,NA,,,, +Cb26,,,EA035,NA,,,, +Cb27,,,EA035,NA,,,, +Cb28,,,EA035,NA,,,, +Cb29,,,EA035,NA,,,, +Cb3,,,EA035,NA,,,, +Cb4,,,EA035,NA,,,, +Cb5,,,EA035,NA,,,, +Cb6,,,EA035,NA,,,, +Cb7,,,EA035,NA,,,, +Cb8,,,EA035,NA,,,, +Cb9,,,EA035,NA,,,, +Cc1,,,EA035,NA,,,, +Cc10,,,EA035,NA,,,, +Cc11,,,EA035,NA,,,, +Cc12,,,EA035,NA,,,, +Cc13,,,EA035,NA,,,, +Cc14,,,EA035,NA,,,, +Cc15,,,EA035,NA,,,, +Cc16,,,EA035,NA,,,, +Cc17,,,EA035,NA,,,, +Cc18,,,EA035,NA,,,, +Cc19,,,EA035,NA,,,, +Cc2,,,EA035,NA,,,, +Cc20,,,EA035,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA035,4,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,,EA035,NA,,,, +Cc5,,,EA035,NA,,,, +Cc6,,,EA035,NA,,,, +Cc7,,,EA035,NA,,,, +Cc8,,,EA035,NA,,,, +Cc9,,,EA035,NA,,,, +Cd1,Kenuzi Nubians of Dahmit,1920,EA035,4,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,,EA035,NA,,,, +Cd11,,,EA035,NA,,,, +Cd12,,,EA035,NA,,,, +Cd13,,,EA035,NA,,,, +Cd14,,,EA035,NA,,,, +Cd15,,,EA035,NA,,,, +Cd16,,,EA035,NA,,,, +Cd17,,,EA035,NA,,,, +Cd18,,,EA035,NA,,,, +Cd19,,,EA035,NA,,,, +Cd2,Town and environs of Silwa,1950,EA035,8,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,,EA035,NA,,,, +Cd21,,,EA035,NA,,,, +Cd3,,,EA035,NA,,,, +Cd4,,,EA035,NA,,,, +Cd5,,,EA035,NA,,,, +Cd6,with special reference to the New Empire,-1400,EA035,8,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,,,EA035,NA,,,, +Cd8,,,EA035,NA,,,, +Cd9,,,EA035,NA,,,, +Ce1,,,EA035,NA,,,, +Ce2,,,EA035,NA,,,, +Ce3,City and environs of Rome,100,EA035,5,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA035,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA035,8,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA035,8,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,,,EA035,NA,,,, +Ce8,with special reference to the village of Vera,1934,EA035,8,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA035,8,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,,,EA035,NA,,,, +Cf3,,,EA035,NA,,,, +Cf4,,,EA035,NA,,,, +Cf5,,1930,EA035,8,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA035,8,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,,EA035,NA,,,, +Cg3,County Clare,1930,EA035,8,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA035,2,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,,EA035,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA035,8,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA035,NA,,,, +Ch11,,,EA035,NA,,,, +Ch2,,1890,EA035,3,Based on a possibly incomplete list of games by Koenig,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA035,8,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,,EA035,NA,,,, +Ch5,,,EA035,NA,,,, +Ch6,,1910,EA035,8,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,,EA035,NA,,,, +Ch8,,1940,EA035,8,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA035,8,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,,,EA035,NA,,,, +Ci10,,,EA035,NA,,,, +Ci11,,,EA035,NA,,,, +Ci12,Abkhaz Tribe,1880,EA035,2,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA035,NA,,,, +Ci3,,,EA035,NA,,,, +Ci4,,,EA035,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA035,8,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA035,NA,,,, +Ci7,,,EA035,NA,,,, +Ci8,,,EA035,NA,,,, +Ci9,,,EA035,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA035,8,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,,,EA035,NA,,,, +Cj2,Unspecified,1920,EA035,2,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,,EA035,NA,,,, +Cj4,,,EA035,NA,,,, +Cj5,,,EA035,NA,,,, +Cj6,,,EA035,NA,,,, +Cj7,,,EA035,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA035,2,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,,EA035,NA,,,, +Ea1,,,EA035,NA,,,, +Ea10,,,EA035,NA,,,, +Ea11,,,EA035,NA,,,, +Ea12,,,EA035,NA,,,, +Ea13,,,EA035,NA,,,, +Ea2,,,EA035,NA,,,, +Ea3,,,EA035,NA,,,, +Ea4,,,EA035,NA,,,, +Ea5,,,EA035,NA,,,, +Ea6,Nomadic branch,1958,EA035,8,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,,EA035,NA,,,, +Ea8,,,EA035,NA,,,, +Ea9,,1950,EA035,8,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA035,8,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,,EA035,NA,,,, +Eb3,,,EA035,NA,,,, +Eb4,,,EA035,NA,,,, +Eb5,,,EA035,NA,,,, +Eb6,,,EA035,NA,,,, +Eb7,,,EA035,NA,,,, +Eb8,,,EA035,NA,,,, +Ec1,,,EA035,NA,,,, +Ec10,,,EA035,NA,,,, +Ec11,,,EA035,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA035,8,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA035,5,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,,,EA035,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA035,2,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,,,EA035,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA035,2,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,,EA035,NA,,,, +Ec9,,,EA035,NA,,,, +Ed1,Kanghwa Island,1950,EA035,8,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA035,8,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA035,NA,,,, +Ed14,,,EA035,NA,,,, +Ed15a,,,EA035,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA035,5,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA035,NA,,,, +Ed2,,,EA035,NA,,,, +Ed3,,,EA035,NA,,,, +Ed4,,,EA035,NA,,,, +Ed5,Okayama,1950,EA035,8,"In the region, though not in the hamlet",beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA035,5,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA035,5,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,,EA035,NA,,,, +Ed9,,1930,EA035,3,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA035,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA035,6,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA035,2,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,,,EA035,NA,,,, +Ee5,with special reference to the Shina tribe,1870,EA035,8,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,,,EA035,NA,,,, +Ee7,,,EA035,NA,,,, +Ee8,,,EA035,NA,,,, +Ef1,,,EA035,NA,,,, +Ef10,,,EA035,NA,,,, +Ef11,,,EA035,NA,,,, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA035,6,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA035,NA,,,, +Ef4,,,EA035,NA,,,, +Ef5,,1900,EA035,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,,EA035,NA,,,, +Ef7,,,EA035,NA,,,, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA035,2,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,,,EA035,NA,,,, +Eg1,with special reference to the forest group,1940,EA035,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,,,EA035,NA,,,, +Eg11,,,EA035,NA,,,, +Eg12,,,EA035,NA,,,, +Eg13,Bastar State,1941,EA035,2,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,,,EA035,NA,,,, +Eg2,,,EA035,NA,,,, +Eg3,,,EA035,NA,,,, +Eg4,Toda Tribe,1900,EA035,2,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA035,2,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,,,EA035,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA035,2,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,,EA035,NA,,,, +Eg9,,,EA035,NA,,,, +Eh1,,1870,EA035,2,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA035,NA,,,, +Eh2,,1900,EA035,2,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA035,6,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA035,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA035,2,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,,,EA035,NA,,,, +Eh7,,1900,EA035,6,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,,EA035,NA,,,, +Eh9,,,EA035,NA,,,, +Ei1,Rengsanggr,1900,EA035,1,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA035,NA,,,, +Ei11,,,EA035,NA,,,, +Ei12,,,EA035,NA,,,, +Ei13,,1910,EA035,5,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,,,EA035,NA,,,, +Ei15,,,EA035,NA,,,, +Ei16,,,EA035,NA,,,, +Ei17,,,EA035,NA,,,, +Ei18,,,EA035,NA,,,, +Ei19,,,EA035,NA,,,, +Ei2,,1920,EA035,2,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA035,NA,,,, +Ei3,,,EA035,NA,,,, +Ei4,Lakher Tribe,1930,EA035,6,,parry1932,EthnographicAtlas_1967_p91, +Ei5,,,EA035,NA,,,, +Ei6,,,EA035,NA,,,, +Ei7,,1910,EA035,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA035,2,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,,EA035,NA,,,, +Ej1,,,EA035,NA,,,, +Ej10,,,EA035,NA,,,, +Ej11,,,EA035,NA,,,, +Ej12,,,EA035,NA,,,, +Ej13,,,EA035,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA035,1,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA035,NA,,,, +Ej16,,,EA035,NA,,,, +Ej2,,,EA035,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA035,2,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA035,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,,EA035,NA,,,, +Ej6,,,EA035,NA,,,, +Ej7,,,EA035,NA,,,, +Ej8,,,EA035,NA,,,, +Ej9,,1940,EA035,5,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA035,2,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,,EA035,NA,,,, +Ia11,,,EA035,NA,,,, +Ia12,,,EA035,NA,,,, +Ia13,,,EA035,NA,,,, +Ia14,,,EA035,NA,,,, +Ia15,,,EA035,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA035,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA035,NA,,,, +Ia18,,,EA035,NA,,,, +Ia2,,1950,EA035,2,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,,,EA035,NA,,,, +Ia4,,,EA035,NA,,,, +Ia5,,,EA035,NA,,,, +Ia6,Su-Paiwan Village,1930,EA035,2,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA035,NA,,,, +Ia8,,,EA035,NA,,,, +Ia9,,,EA035,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA035,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA035,5,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,,,EA035,NA,,,, +Ib4,,,EA035,NA,,,, +Ib5,,,EA035,NA,,,, +Ib6,,,EA035,NA,,,, +Ib7,,,EA035,NA,,,, +Ib8,,,EA035,NA,,,, +Ib9,,,EA035,NA,,,, +Ic1,Borongloe,1940,EA035,2,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA035,NA,,,, +Ic11,,,EA035,NA,,,, +Ic12,,,EA035,NA,,,, +Ic13,,,EA035,NA,,,, +Ic2,,,EA035,NA,,,, +Ic3,,,EA035,NA,,,, +Ic4,,,EA035,NA,,,, +Ic5,,,EA035,NA,,,, +Ic6,,,EA035,NA,,,, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA035,2,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,,EA035,NA,,,, +Ic9,,,EA035,NA,,,, +Id1,Alice Springs and environs,1900,EA035,2,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA035,2,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,,EA035,NA,,,, +Id12,,,EA035,NA,,,, +Id13,,,EA035,NA,,,, +Id2,,1930,EA035,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA035,2,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA035,2,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,,EA035,NA,,,, +Id6,,,EA035,NA,,,, +Id7,,,EA035,NA,,,, +Id8,,1830,EA035,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,,EA035,NA,,,, +Ie1,,,EA035,NA,,,, +Ie10,,,EA035,NA,,,, +Ie11,,1950,EA035,4,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA035,2,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA035,NA,,,, +Ie14,,,EA035,NA,,,, +Ie15,,,EA035,NA,,,, +Ie16,,,EA035,NA,,,, +Ie17,,,EA035,NA,,,, +Ie18,Bamol Village,1940,EA035,5,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,,,EA035,NA,,,, +Ie2,,1920,EA035,2,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,,EA035,NA,,,, +Ie21,,,EA035,NA,,,, +Ie22,,,EA035,NA,,,, +Ie23,,,EA035,NA,,,, +Ie24,,,EA035,NA,,,, +Ie25,,1920,EA035,2,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,,EA035,NA,,,, +Ie27,,,EA035,NA,,,, +Ie28,,,EA035,NA,,,, +Ie29,,,EA035,NA,,,, +Ie3,,,EA035,NA,,,, +Ie30,,,EA035,NA,,,, +Ie31,,,EA035,NA,,,, +Ie32,,,EA035,NA,,,, +Ie33,,,EA035,NA,,,, +Ie34,,,EA035,NA,,,, +Ie35,,,EA035,NA,,,, +Ie36,,,EA035,NA,,,, +Ie37,,,EA035,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA035,2,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA035,NA,,,, +Ie4,,,EA035,NA,,,, +Ie5,,1930,EA035,2,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,,EA035,NA,,,, +Ie7,with special reference to the Mae group,1950,EA035,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,,,EA035,NA,,,, +Ie9,,,EA035,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA035,5,"But games of chance, at least those using playing cards, are of relatively recent European origin",barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA035,NA,,,, +If11,,,EA035,NA,,,, +If12,,,EA035,NA,,,, +If13,,,EA035,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA035,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,,EA035,NA,,,, +If16,,,EA035,NA,,,, +If17,with special reference to the island of Jaluit,1900,EA035,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA035,5,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA035,2,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA035,6,"But the one game of strategy ""was unquestionably borrowed from the Japanese by the young men who had worked on Yap""",burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,,EA035,NA,,,, +If6,,,EA035,NA,,,, +If7,,,EA035,NA,,,, +If8,,,EA035,NA,,,, +If9,,,EA035,NA,,,, +Ig1,,,EA035,NA,,,, +Ig10,,1950,EA035,2,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,,EA035,NA,,,, +Ig12,,,EA035,NA,,,, +Ig13,,,EA035,NA,,,, +Ig14,,,EA035,NA,,,, +Ig15,,,EA035,NA,,,, +Ig16,,,EA035,NA,,,, +Ig17,,,EA035,NA,,,, +Ig18,,,EA035,NA,,,, +Ig19,,,EA035,NA,,,, +Ig2,Kiriwina Island,1910,EA035,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,,,EA035,NA,,,, +Ig21,,,EA035,NA,,,, +Ig3,,1930,EA035,2,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA035,2,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,,EA035,NA,,,, +Ig6,,1900,EA035,5,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,,EA035,NA,,,, +Ig8,,,EA035,NA,,,, +Ig9,Peri Village,1920,EA035,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA035,2,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,,,EA035,NA,,,, +Ih11,,,EA035,NA,,,, +Ih12,,,EA035,NA,,,, +Ih13,,,EA035,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA035,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA035,2,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA035,2,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA035,2,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA035,NA,,,, +Ih6,,,EA035,NA,,,, +Ih7,,,EA035,NA,,,, +Ih8,,,EA035,NA,,,, +Ih9,,,EA035,NA,,,, +Ii1,with special reference to American Samoa,1920,EA035,5,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,,EA035,NA,,,, +Ii12,Pangai,1920,EA035,5,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA035,5,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA035,5,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA035,2,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA035,2,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA035,2,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,,,EA035,NA,,,, +Ii6,,,EA035,NA,,,, +Ii7,,,EA035,NA,,,, +Ii8,,1840,EA035,2,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA035,2,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA035,2,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,,EA035,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA035,6,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA035,2,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA035,2,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,,EA035,NA,,,, +Ij6,,1800,EA035,8,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p103, +Ij7,,1900,EA035,2,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,,EA035,NA,,,, +Ij9,,,EA035,NA,,,, +Na1,,1930,EA035,5,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA035,5,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA035,2,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA035,5,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA035,5,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA035,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,,EA035,NA,,,, +Na16,,1860,EA035,5,,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA035,5,But poker and checkers have been widely adopted today,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA035,5,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA035,5,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA035,5,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA035,5,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA035,5,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA035,5,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA035,2,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA035,6,"Formerly 'physical skill only' (code ""2"")",birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA035,5,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA035,5,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA035,5,,jenness1937,EthnographicAtlas_1967_p103, +Na29,,,EA035,NA,,,, +Na3,Coronation Gulf,1920,EA035,5,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA035,5,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA035,5,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA035,5,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA035,5,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,,,EA035,NA,,,, +Na35,,1800,EA035,5,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA035,5,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA035,5,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA035,5,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA035,5,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA035,5,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA035,5,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA035,5,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA035,5,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,,EA035,NA,,,, +Na44,,,EA035,NA,,,, +Na45,,1900,EA035,5,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,,,EA035,NA,,,, +Na6,,1930,EA035,2,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA035,5,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA035,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA035,5,But chess was introduced by Russian traders,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA035,5,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA035,5,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA035,5,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA035,5,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA035,5,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA035,5,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA035,5,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA035,5,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA035,5,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA035,5,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA035,5,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA035,5,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA035,5,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA035,5,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA035,5,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA035,5,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA035,5,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA035,5,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA035,5,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA035,5,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA035,5,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA035,5,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA035,5,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,1860,EA035,2,Only games of skill are specifically reported,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA035,5,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p107, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA035,5,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA035,5,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA035,5,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA035,5,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA035,5,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,1860,EA035,5,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA035,5,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA035,5,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA035,5,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA035,5,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA035,5,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA035,5,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA035,5,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA035,5,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA035,5,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,1860,EA035,5,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA035,5,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA035,5,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA035,5,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA035,5,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA035,5,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA035,5,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA035,5,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA035,5,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,with special reference to those near Santa Rosa,1860,EA035,5,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc2,,,EA035,NA,,,, +Nc20,,1860,EA035,5,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,1860,EA035,5,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA035,5,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,1870,EA035,5,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,Tulare Lake,1860,EA035,5,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA035,5,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,1770,EA035,5,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA035,5,,driver1937; gifford1917,EthnographicAtlas_1967_p107, +Nc28,,1800,EA035,5,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA035,5,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA035,5,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA035,5,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA035,5,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,1870,EA035,5,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc33,,1860,EA035,5,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA035,5,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA035,5,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA035,5,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA035,5,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA035,5,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA035,5,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA035,5,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA035,5,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,1860,EA035,5,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA035,5,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA035,5,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA035,5,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA035,5,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA035,5,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA035,5,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA035,5,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA035,5,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA035,5,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA035,5,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA035,5,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA035,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA035,5,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA035,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA035,5,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA035,5,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA035,5,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA035,5,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA035,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA035,5,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA035,5,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA035,5,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA035,5,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA035,5,But poker has become popular in recent times,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA035,5,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA035,5,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA035,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA035,5,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA035,5,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA035,5,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA035,5,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA035,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA035,5,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA035,5,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA035,5,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA035,5,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA035,5,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA035,5,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA035,5,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA035,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA035,5,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA035,5,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA035,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA035,5,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA035,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA035,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA035,5,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA035,5,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA035,5,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA035,5,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA035,5,,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA035,5,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA035,5,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA035,5,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA035,5,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA035,5,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,1860,EA035,5,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA035,5,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA035,5,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA035,5,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA035,5,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA035,5,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,1800,EA035,2,"""No gambling or guessing games were noted""",gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,,EA035,NA,,,, +Ne18,,1850,EA035,5,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA035,5,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,,EA035,NA,,,, +Ne20,,1850,EA035,5,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p115, +Ne21,,,EA035,NA,,,, +Ne3,,,EA035,NA,,,, +Ne4,,1870,EA035,5,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA035,5,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,,EA035,NA,,,, +Ne7,,,EA035,NA,,,, +Ne8,,1870,EA035,5,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA035,5,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA035,5,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA035,5,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA035,5,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA035,5,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA035,5,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA035,NA,,,, +Nf2,,,EA035,NA,,,, +Nf3,Omaha Tribe,1850,EA035,5,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA035,5,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,,EA035,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA035,5,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,,,EA035,NA,,,, +Nf8,,1770,EA035,5,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,1870,EA035,5,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA035,5,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA035,5,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,1750,EA035,5,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p115, +Ng12,,,EA035,NA,,,, +Ng13,,,EA035,NA,,,, +Ng14,,,EA035,NA,,,, +Ng15,,,EA035,NA,,,, +Ng2,,,EA035,NA,,,, +Ng3,Upper division in Alabama,1750,EA035,5,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA035,NA,,,, +Ng5,,1750,EA035,5,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,,,EA035,NA,,,, +Ng7,Natchez Kingdom,1700,EA035,2,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,,EA035,NA,,,, +Ng9,,1920,EA035,5,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA035,5,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA035,5,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,,,EA035,NA,,,, +Nh12,,,EA035,NA,,,, +Nh13,,,EA035,NA,,,, +Nh14,,,EA035,NA,,,, +Nh15,,1870,EA035,5,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA035,5,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA035,5,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,,,EA035,NA,,,, +Nh19,,1850,EA035,5,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,,EA035,NA,,,, +Nh20,,1860,EA035,5,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA035,5,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA035,5,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,,EA035,NA,,,, +Nh24,,1880,EA035,5,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,,EA035,NA,,,, +Nh26,,,EA035,NA,,,, +Nh27,,,EA035,NA,,,, +Nh3,,1930,EA035,5,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA035,8,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA035,5,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA035,5,,parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,,EA035,NA,,,, +Nh8,,1920,EA035,5,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,1920,EA035,5,,parsons1939; trager1943,EthnographicAtlas_1967_p115, +Ni1,,1930,EA035,8,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA035,5,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA035,1,"Zingg specifically reports ""an absence of games""",grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,,EA035,NA,,,, +Ni5,,1570,EA035,5,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA035,5,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA035,5,,beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA035,NA,,,, +Ni9,,,EA035,NA,,,, +Nj1,,,EA035,NA,,,, +Nj10,,,EA035,NA,,,, +Nj11,,,EA035,NA,,,, +Nj12,,,EA035,NA,,,, +Nj13,,,EA035,NA,,,, +Nj14,,,EA035,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA035,8,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA035,2,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,,EA035,NA,,,, +Nj5,,,EA035,NA,,,, +Nj6,,,EA035,NA,,,, +Nj7,,,EA035,NA,,,, +Nj8,,,EA035,NA,,,, +Nj9,,1960,EA035,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA035,1,Ball games and checkers have recently been introduced,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,,EA035,NA,,,, +Sa11,,,EA035,NA,,,, +Sa12,,,EA035,NA,,,, +Sa13,,,EA035,NA,,,, +Sa14,,,EA035,NA,,,, +Sa15,,,EA035,NA,,,, +Sa16,,,EA035,NA,,,, +Sa17,,,EA035,NA,,,, +Sa2,,,EA035,NA,,,, +Sa3,,1930,EA035,1,,wisdom1940,EthnographicAtlas_1967_p119, +Sa4,,,EA035,NA,,,, +Sa5,,1950,EA035,1,Absence of games is specifically reported by Gabb,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA035,5,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,,EA035,NA,,,, +Sa8,,,EA035,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA035,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA035,NA,No data except a reference to ball games,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA035,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,,,EA035,NA,,,, +Sb4,,,EA035,NA,,,, +Sb5,,,EA035,NA,,,, +Sb6,Goajiro Tribe,1940,EA035,2,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,,,EA035,NA,,,, +Sb8,,1520,EA035,2,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA035,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA035,2,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,,EA035,NA,,,, +Sc11,,,EA035,NA,,,, +Sc12,,,EA035,NA,,,, +Sc13,,,EA035,NA,,,, +Sc14,,,EA035,NA,,,, +Sc15,,,EA035,NA,,,, +Sc16,,,EA035,NA,,,, +Sc17,,,EA035,NA,,,, +Sc18,,1960,EA035,6,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA035,1,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA035,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA035,2,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA035,2,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,,,EA035,NA,,,, +Sc7,,,EA035,NA,,,, +Sc8,,,EA035,NA,,,, +Sc9,,,EA035,NA,,,, +Sd1,,,EA035,NA,,,, +Sd2,,1930,EA035,2,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,,EA035,NA,,,, +Sd4,,,EA035,NA,,,, +Sd5,,,EA035,NA,,,, +Sd6,,,EA035,NA,,,, +Sd7,,,EA035,NA,,,, +Sd8,,,EA035,NA,,,, +Sd9,,,EA035,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA035,2,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,,EA035,NA,,,, +Se11,,,EA035,NA,,,, +Se12,,,EA035,NA,,,, +Se2,,1940,EA035,2,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA035,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA035,2,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA035,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA035,2,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA035,NA,,,, +Se8,Upper Inuya River,1950,EA035,2,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA035,1,Lack of adult games specifically reported,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA035,8,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA035,5,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA035,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,,EA035,NA,,,, +Sf5,,1900,EA035,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,,EA035,NA,,,, +Sf7,,1900,EA035,2,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA035,NA,,,, +Sf9,,,EA035,NA,,,, +Sg1,Eastern and central,1870,EA035,2,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA035,5,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA035,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA035,5,But games of chance (dice) were borrowed from the Spaniards,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA035,2,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA035,5,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,,EA035,NA,,,, +Sh3,Those in contact with mission,1800,EA035,2,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA035,2,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA035,5,But games of chance are not indigenous,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,,EA035,NA,,,, +Sh7,,1900,EA035,5,But games of chance are not indigenous,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p123, +Sh8,with special reference to those of the Argentine Chaco,1964,EA035,5,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA035,2,An inference from scantly data,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA035,2,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA035,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA035,2,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA035,2,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,,,EA035,NA,,,, +Si5,,1940,EA035,2,No data except incidental mention of wrestling,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,,EA035,NA,,,, +Si7,with special reference to the Cozarimi,1910,EA035,2,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,,EA035,NA,,,, +Si9,,,EA035,NA,,,, +Sj1,,1950,EA035,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,,,EA035,NA,,,, +Sj11,Village of Sao Domingo,1958,EA035,2,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA035,2,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,,,EA035,NA,,,, +Sj4,Ramcocamecra or Canella,1930,EA035,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,,,EA035,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA035,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA035,2,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA035,1,Probable on the basis of incomplete data,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,,EA035,NA,,,, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA035,6,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA035,8,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA035,5,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA035,8,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA035,8,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA035,8,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,,,EA035,NA,,,, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA035,8,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA035,6,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA035,8,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA035,8,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA035,8,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,,,EA035,NA,,,, +ch25,with special reference to the Beletskij Uezd,1900,EA035,8,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA035,8,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA035,8,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,,,EA035,NA,,,, +ec12,Avam (Western) group,1930,EA035,8,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,,,EA035,NA,,,, +ec14,those of South-Eastern Chukotka,1880,EA035,6,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA035,6,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA035,6,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA035,6,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA035,6,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA035,6,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA035,6,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA035,6,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA036,3,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA036,3,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA036,3,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA036,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA036,5,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,,EA036,NA,,,, +Aa7,,1910,EA036,6,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,,EA036,NA,,,, +Aa9,,,EA036,NA,,,, +Ab1,,,EA036,NA,,,, +Ab10,,1936,EA036,5,,hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,,EA036,NA,,,, +Ab12,,,EA036,NA,,,, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA036,2,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA036,3,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,,EA036,NA,,,, +Ab16,,,EA036,NA,,,, +Ab17,,,EA036,NA,,,, +Ab18,,,EA036,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA036,4,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,,EA036,NA,,,, +Ab20,,,EA036,NA,,,, +Ab21a,,,EA036,NA,,,, +Ab21b,,,EA036,NA,,,, +Ab22,,,EA036,NA,,,, +Ab3,,,EA036,NA,,,, +Ab4,,1920,EA036,5,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,,EA036,NA,,,, +Ab6,,1900,EA036,6,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,,,EA036,NA,,,, +Ab8,,,EA036,NA,,,, +Ab9,,,EA036,NA,,,, +Ac1,,1920,EA036,6,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA036,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,,EA036,NA,,,, +Ac12,,,EA036,NA,,,, +Ac13,,,EA036,NA,,,, +Ac14,,,EA036,NA,,,, +Ac15,,,EA036,NA,,,, +Ac16,,,EA036,NA,,,, +Ac17,Feshi territory lineage center,1910,EA036,6,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,,EA036,NA,,,, +Ac19,,,EA036,NA,,,, +Ac2,,,EA036,NA,,,, +Ac20,,,EA036,NA,,,, +Ac21,,,EA036,NA,,,, +Ac22,,,EA036,NA,,,, +Ac23,,,EA036,NA,,,, +Ac24,,,EA036,NA,,,, +Ac25,,,EA036,NA,,,, +Ac26,,,EA036,NA,,,, +Ac27,,,EA036,NA,,,, +Ac28,,,EA036,NA,,,, +Ac29,,,EA036,NA,,,, +Ac3,Zambia branch,1900,EA036,3,There is a ritual act of intercourse when the child is two months old,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA036,5,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,,EA036,NA,,,, +Ac32,,,EA036,NA,,,, +Ac33,,,EA036,NA,,,, +Ac34,,,EA036,NA,,,, +Ac35,,,EA036,NA,,,, +Ac36,,1920,EA036,5,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,,EA036,NA,,,, +Ac38,,,EA036,NA,,,, +Ac39,,,EA036,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA036,3,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,,EA036,NA,,,, +Ac41,,,EA036,NA,,,, +Ac42,,,EA036,NA,,,, +Ac43,,,EA036,NA,,,, +Ac5,,1920,EA036,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,,EA036,NA,,,, +Ac7,,1920,EA036,5,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,,EA036,NA,,,, +Ac9,,,EA036,NA,,,, +Ad1,,,EA036,NA,,,, +Ad10,,,EA036,NA,,,, +Ad11,,1930,EA036,5,Except for a ceremonial act of intercourse when the baby is several months old,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA036,2,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,,EA036,NA,,,, +Ad14,Morogoro District,1930,EA036,4,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,,EA036,NA,,,, +Ad16,,,EA036,NA,,,, +Ad17,,,EA036,NA,,,, +Ad18,,,EA036,NA,,,, +Ad19,,,EA036,NA,,,, +Ad2,,,EA036,NA,,,, +Ad20,,1920,EA036,5,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,,EA036,NA,,,, +Ad22,,,EA036,NA,,,, +Ad23,,,EA036,NA,,,, +Ad24,,1910,EA036,5,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,,EA036,NA,,,, +Ad26,,,EA036,NA,,,, +Ad27,,,EA036,NA,,,, +Ad28,,,EA036,NA,,,, +Ad29,,,EA036,NA,,,, +Ad3,,1910,EA036,3,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,,EA036,NA,,,, +Ad31,,,EA036,NA,,,, +Ad32,,,EA036,NA,,,, +Ad33,,,EA036,NA,,,, +Ad34,,1910,EA036,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,,,EA036,NA,,,, +Ad36,,,EA036,NA,,,, +Ad37,,,EA036,NA,,,, +Ad38,,,EA036,NA,,,, +Ad39,,,EA036,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA036,3,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA036,3,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,,EA036,NA,,,, +Ad42,,,EA036,NA,,,, +Ad43,,,EA036,NA,,,, +Ad44,,,EA036,NA,,,, +Ad45,,,EA036,NA,,,, +Ad46,,,EA036,NA,,,, +Ad47,,,EA036,NA,,,, +Ad48,,,EA036,NA,,,, +Ad49,,,EA036,NA,,,, +Ad5,,,EA036,NA,,,, +Ad50,,,EA036,NA,,,, +Ad51,,1930,EA036,4,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA036,NA,"Coitus interrupts is practiced from ""very soon"" after childbirth until the child is able to walk",charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA036,5,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA036,6,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,,EA036,NA,,,, +Ae1,,,EA036,NA,,,, +Ae10,,1910,EA036,6,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA036,5,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,,EA036,NA,,,, +Ae13,,,EA036,NA,,,, +Ae14,,,EA036,NA,,,, +Ae15,,,EA036,NA,,,, +Ae16,,,EA036,NA,,,, +Ae17,,1900,EA036,5,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,,EA036,NA,,,, +Ae19,,,EA036,NA,,,, +Ae2,,1950,EA036,5,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,,EA036,NA,,,, +Ae21,,,EA036,NA,,,, +Ae22,,,EA036,NA,,,, +Ae23,,,EA036,NA,,,, +Ae24,,,EA036,NA,,,, +Ae25,,,EA036,NA,,,, +Ae26,,,EA036,NA,,,, +Ae27,,,EA036,NA,,,, +Ae28,,,EA036,NA,,,, +Ae29,,,EA036,NA,,,, +Ae3,,1910,EA036,5,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,,EA036,NA,,,, +Ae31,,,EA036,NA,,,, +Ae32,,,EA036,NA,,,, +Ae33,,,EA036,NA,,,, +Ae34,,,EA036,NA,,,, +Ae35,,,EA036,NA,,,, +Ae36,,,EA036,NA,,,, +Ae37,,,EA036,NA,,,, +Ae38,,,EA036,NA,,,, +Ae39,,1920,EA036,4,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA036,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,,EA036,NA,,,, +Ae41,,,EA036,NA,,,, +Ae42,,,EA036,NA,,,, +Ae43,,,EA036,NA,,,, +Ae44,,,EA036,NA,,,, +Ae45,,,EA036,NA,,,, +Ae46,,,EA036,NA,,,, +Ae47,,,EA036,NA,,,, +Ae48,,,EA036,NA,,,, +Ae49,,,EA036,NA,,,, +Ae5,,,EA036,NA,,,, +Ae50,,,EA036,NA,,,, +Ae51,,,EA036,NA,,,, +Ae52,,,EA036,NA,,,, +Ae53,,,EA036,NA,,,, +Ae54,,,EA036,NA,,,, +Ae55,,,EA036,NA,,,, +Ae56,,,EA036,NA,,,, +Ae57,,,EA036,NA,,,, +Ae58,,,EA036,NA,,,, +Ae59,,,EA036,NA,,,, +Ae6,,,EA036,NA,,,, +Ae7,,,EA036,NA,,,, +Ae8,,1910,EA036,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,,EA036,NA,,,, +Af1,City and environs of Abomey,1890,EA036,4,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA036,NA,"""The period of lactation lasts about two years""",ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,,EA036,NA,,,, +Af12,,,EA036,NA,,,, +Af13,,,EA036,NA,,,, +Af14,,,EA036,NA,,,, +Af15,,,EA036,NA,,,, +Af16,,,EA036,NA,,,, +Af17,,,EA036,NA,,,, +Af18,,,EA036,NA,,,, +Af19,,1950,EA036,4,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,,EA036,NA,,,, +Af20,,,EA036,NA,,,, +Af21,,,EA036,NA,,,, +Af22,,,EA036,NA,,,, +Af23,with special reference to the village of Mgbom,1950,EA036,4,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,,EA036,NA,,,, +Af25,,1930,EA036,6,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,,,EA036,NA,,,, +Af27,,,EA036,NA,,,, +Af28,,1910,EA036,4,,gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,,EA036,NA,,,, +Af3,Kumasi State,1900,EA036,2,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,,EA036,NA,,,, +Af31,,,EA036,NA,,,, +Af32,,,EA036,NA,,,, +Af33,"Ekiti Division, Ondo Prov.",1950,EA036,6,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA036,NA,,,, +Af35,,,EA036,NA,,,, +Af36,,,EA036,NA,,,, +Af37,,,EA036,NA,,,, +Af38,,,EA036,NA,,,, +Af39,,,EA036,NA,,,, +Af4,,1930,EA036,5,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,,,EA036,NA,,,, +Af41,,,EA036,NA,,,, +Af42,,,EA036,NA,,,, +Af43,,,EA036,NA,,,, +Af44,,,EA036,NA,,,, +Af45,,,EA036,NA,,,, +Af46,,,EA036,NA,,,, +Af47,,,EA036,NA,,,, +Af48,,,EA036,NA,,,, +Af49,,1940,EA036,5,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA036,6,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,,EA036,NA,,,, +Af51,,,EA036,NA,,,, +Af52,,,EA036,NA,,,, +Af53,,,EA036,NA,,,, +Af54,,,EA036,NA,,,, +Af55,,,EA036,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA036,5,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA036,6,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,,EA036,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA036,6,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,,EA036,NA,,,, +Af8,,1930,EA036,6,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,,EA036,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA036,6,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA036,6,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,,EA036,NA,,,, +Ag12,,1910,EA036,6,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA036,6,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,,EA036,NA,,,, +Ag15,,,EA036,NA,,,, +Ag16,,,EA036,NA,,,, +Ag17,,,EA036,NA,,,, +Ag18,,,EA036,NA,,,, +Ag19,,,EA036,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA036,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,,EA036,NA,,,, +Ag21,,1910,EA036,6,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,,,EA036,NA,,,, +Ag23,,,EA036,NA,,,, +Ag24,,,EA036,NA,,,, +Ag25,,,EA036,NA,,,, +Ag26,,,EA036,NA,,,, +Ag27,,,EA036,NA,,,, +Ag28,,,EA036,NA,,,, +Ag29,,,EA036,NA,,,, +Ag3,,,EA036,NA,,,, +Ag30,,,EA036,NA,,,, +Ag31,,,EA036,NA,,,, +Ag32,,,EA036,NA,,,, +Ag33,,,EA036,NA,,,, +Ag34,,,EA036,NA,,,, +Ag35,,,EA036,NA,,,, +Ag36,,,EA036,NA,,,, +Ag37,,,EA036,NA,,,, +Ag38,,,EA036,NA,,,, +Ag39,,,EA036,NA,,,, +Ag4,Tallensi Tribe,1930,EA036,6,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,,EA036,NA,,,, +Ag41,,1920,EA036,6,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,,EA036,NA,,,, +Ag43,,,EA036,NA,,,, +Ag44,,,EA036,NA,,,, +Ag45,,,EA036,NA,,,, +Ag46,,,EA036,NA,,,, +Ag47,,,EA036,NA,,,, +Ag48,,1890,EA036,6,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p75, +Ag49,,,EA036,NA,,,, +Ag5,,1930,EA036,6,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,,EA036,NA,,,, +Ag51,,,EA036,NA,,,, +Ag52,,1950,EA036,6,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,,,EA036,NA,,,, +Ag54,,1910,EA036,5,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA036,NA,,,, +Ag7,,,EA036,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA036,5,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,,EA036,NA,,,, +Ah1,Zaria Province,1930,EA036,6,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA036,NA,,,, +Ah11,,,EA036,NA,,,, +Ah12,,1920,EA036,NA,Weaning is said to occur at three or four years of age,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966,"Murdock comment assumed to apply to Col36, not Col38 as stated in Gray (1999)" +Ah13,with special reference to the Liliwa,1930,EA036,6,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA036,6,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,1920,EA036,6,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p75, +Ah16,,,EA036,NA,,,, +Ah17,,,EA036,NA,,,, +Ah18,,,EA036,NA,,,, +Ah19,,,EA036,NA,,,, +Ah2,,,EA036,NA,,,, +Ah20,,1920,EA036,5,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,,EA036,NA,,,, +Ah22,,,EA036,NA,,,, +Ah23,,,EA036,NA,,,, +Ah24,,,EA036,NA,,,, +Ah25,,,EA036,NA,,,, +Ah26,,,EA036,NA,,,, +Ah27,,,EA036,NA,,,, +Ah28,,,EA036,NA,,,, +Ah29,,,EA036,NA,,,, +Ah3,Tar of Benue Province,1920,EA036,5,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,,EA036,NA,,,, +Ah31,,,EA036,NA,,,, +Ah32,,,EA036,NA,,,, +Ah33,,,EA036,NA,,,, +Ah34,,,EA036,NA,,,, +Ah35,,,EA036,NA,,,, +Ah36,,,EA036,NA,,,, +Ah37,,,EA036,NA,,,, +Ah38,,,EA036,NA,,,, +Ah39,,,EA036,NA,,,, +Ah4,,,EA036,NA,,,, +Ah5,,,EA036,NA,,,, +Ah6,,,EA036,NA,,,, +Ah7,,1940,EA036,NA,"Mention of a ""fairly long delay"" before resumption of sex relations",hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,,EA036,NA,,,, +Ah9,,1920,EA036,6,,diamond1964; gunn1953,EthnographicAtlas_1967_p75, +Ai1,,,EA036,NA,,,, +Ai10,,,EA036,NA,,,, +Ai11,,,EA036,NA,,,, +Ai12,,1950,EA036,5,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,,EA036,NA,,,, +Ai14,,,EA036,NA,,,, +Ai15,,,EA036,NA,,,, +Ai16,,,EA036,NA,,,, +Ai17,,,EA036,NA,,,, +Ai18,,,EA036,NA,,,, +Ai19,,,EA036,NA,,,, +Ai2,,,EA036,NA,,,, +Ai20,,,EA036,NA,,,, +Ai21,,,EA036,NA,,,, +Ai22,,,EA036,NA,,,, +Ai23,,,EA036,NA,,,, +Ai24,,,EA036,NA,,,, +Ai25,,,EA036,NA,,,, +Ai26,,,EA036,NA,,,, +Ai27,,,EA036,NA,,,, +Ai28,,,EA036,NA,,,, +Ai29,,,EA036,NA,,,, +Ai3,,1920,EA036,5,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA036,6,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,,EA036,NA,,,, +Ai32,,,EA036,NA,,,, +Ai33,,,EA036,NA,,,, +Ai34,,,EA036,NA,,,, +Ai35,,,EA036,NA,,,, +Ai36,,,EA036,NA,,,, +Ai37,,,EA036,NA,,,, +Ai38,,,EA036,NA,,,, +Ai39,,,EA036,NA,,,, +Ai4,,,EA036,NA,,,, +Ai40,,,EA036,NA,,,, +Ai41,,,EA036,NA,,,, +Ai42,,,EA036,NA,,,, +Ai43,,,EA036,NA,,,, +Ai44,,,EA036,NA,,,, +Ai45,,,EA036,NA,,,, +Ai46,,,EA036,NA,,,, +Ai47,,,EA036,NA,,,, +Ai5,,,EA036,NA,,,, +Ai6,Shilluk Kingdom,1900,EA036,5,"From report of ""no intercourse during the period of lactation""",butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA036,5,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,,EA036,NA,,,, +Ai9,,,EA036,NA,,,, +Aj1,,,EA036,NA,,,, +Aj10,,,EA036,NA,,,, +Aj11,,,EA036,NA,,,, +Aj12,,,EA036,NA,,,, +Aj13,,,EA036,NA,,,, +Aj14,,,EA036,NA,,,, +Aj15,,,EA036,NA,,,, +Aj16,,,EA036,NA,,,, +Aj17,,,EA036,NA,,,, +Aj18,,1950,EA036,5,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,,EA036,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA036,4,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,,EA036,NA,,,, +Aj21,,,EA036,NA,,,, +Aj22,,,EA036,NA,,,, +Aj23,,,EA036,NA,,,, +Aj24,,,EA036,NA,,,, +Aj25,,,EA036,NA,,,, +Aj26,,,EA036,NA,,,, +Aj27,,,EA036,NA,,,, +Aj28,,,EA036,NA,,,, +Aj29,,1950,EA036,5,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA036,5,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA036,NA,,,, +Aj31,,,EA036,NA,,,, +Aj4,,1920,EA036,6,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA036,5,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA036,3,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA036,3,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,,EA036,NA,,,, +Aj9,,,EA036,NA,,,, +Ca1,Town of Buso,1930,EA036,6,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,,EA036,NA,,,, +Ca11,,,EA036,NA,,,, +Ca12,,,EA036,NA,,,, +Ca13,,,EA036,NA,,,, +Ca14,,,EA036,NA,,,, +Ca15,,,EA036,NA,,,, +Ca16,,,EA036,NA,,,, +Ca17,,,EA036,NA,,,, +Ca18,,,EA036,NA,,,, +Ca19,,,EA036,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA036,3,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,,EA036,NA,,,, +Ca21,,,EA036,NA,,,, +Ca22,,,EA036,NA,,,, +Ca23,,1950,EA036,5,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,,EA036,NA,,,, +Ca25,,,EA036,NA,,,, +Ca26,,1950,EA036,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,,EA036,NA,,,, +Ca28,,,EA036,NA,,,, +Ca29,,,EA036,NA,,,, +Ca3,,,EA036,NA,,,, +Ca30,,,EA036,NA,,,, +Ca31,,,EA036,NA,,,, +Ca32,,,EA036,NA,,,, +Ca33,,,EA036,NA,,,, +Ca34,,,EA036,NA,,,, +Ca35,,,EA036,NA,,,, +Ca36,,,EA036,NA,,,, +Ca37,,,EA036,NA,,,, +Ca38,,,EA036,NA,,,, +Ca39,,,EA036,NA,,,, +Ca4,,,EA036,NA,,,, +Ca40,,,EA036,NA,,,, +Ca41,,1950,EA036,3,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,,EA036,NA,,,, +Ca43,,,EA036,NA,,,, +Ca5,,,EA036,NA,,,, +Ca6,,,EA036,NA,,,, +Ca7,Gondar district,1950,EA036,5,"From report of a ""two-year breast-feeding period""",lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,,EA036,NA,,,, +Ca9,,,EA036,NA,,,, +Cb1,,,EA036,NA,,,, +Cb10,,,EA036,NA,,,, +Cb11,,,EA036,NA,,,, +Cb12,,,EA036,NA,,,, +Cb13,,,EA036,NA,,,, +Cb14,,,EA036,NA,,,, +Cb15,,,EA036,NA,,,, +Cb16,,,EA036,NA,,,, +Cb17,,,EA036,NA,,,, +Cb18,,,EA036,NA,,,, +Cb19,,1870,EA036,3,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA036,5,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,,EA036,NA,,,, +Cb21,,,EA036,NA,,,, +Cb22,,,EA036,NA,,,, +Cb23,,,EA036,NA,,,, +Cb24,Wodaabe of Niger,1950,EA036,6,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,,EA036,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA036,5,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,,EA036,NA,,,, +Cb28,,,EA036,NA,,,, +Cb29,,,EA036,NA,,,, +Cb3,Bamba division,1940,EA036,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,,EA036,NA,,,, +Cb5,,,EA036,NA,,,, +Cb6,,,EA036,NA,,,, +Cb7,,,EA036,NA,,,, +Cb8,,,EA036,NA,,,, +Cb9,,,EA036,NA,,,, +Cc1,,,EA036,NA,,,, +Cc10,,,EA036,NA,,,, +Cc11,,,EA036,NA,,,, +Cc12,,,EA036,NA,,,, +Cc13,,,EA036,NA,,,, +Cc14,,,EA036,NA,,,, +Cc15,,,EA036,NA,,,, +Cc16,,,EA036,NA,,,, +Cc17,,,EA036,NA,,,, +Cc18,,,EA036,NA,,,, +Cc19,,,EA036,NA,,,, +Cc2,,,EA036,NA,,,, +Cc20,,,EA036,NA,,,, +Cc3,,,EA036,NA,,,, +Cc4,,,EA036,NA,,,, +Cc5,,,EA036,NA,,,, +Cc6,,,EA036,NA,,,, +Cc7,,,EA036,NA,,,, +Cc8,,,EA036,NA,,,, +Cc9,,,EA036,NA,,,, +Cd1,,,EA036,NA,,,, +Cd10,,,EA036,NA,,,, +Cd11,,,EA036,NA,,,, +Cd12,,,EA036,NA,,,, +Cd13,,,EA036,NA,,,, +Cd14,,,EA036,NA,,,, +Cd15,,,EA036,NA,,,, +Cd16,,,EA036,NA,,,, +Cd17,,,EA036,NA,,,, +Cd18,,,EA036,NA,,,, +Cd19,,,EA036,NA,,,, +Cd2,Town and environs of Silwa,1950,EA036,3,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,,EA036,NA,,,, +Cd21,,,EA036,NA,,,, +Cd3,Entirety: Moroccan,1920,EA036,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,,EA036,NA,,,, +Cd5,,,EA036,NA,,,, +Cd6,,,EA036,NA,,,, +Cd7,,,EA036,NA,,,, +Cd8,,,EA036,NA,,,, +Cd9,,,EA036,NA,,,, +Ce1,,,EA036,NA,,,, +Ce2,,,EA036,NA,,,, +Ce3,,,EA036,NA,,,, +Ce4,,,EA036,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA036,1,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,,,EA036,NA,,,, +Ce7,,,EA036,NA,,,, +Ce8,,,EA036,NA,,,, +Cf1,Small City in Connecticut,1920,EA036,2,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,,,EA036,NA,,,, +Cf3,,,EA036,NA,,,, +Cf4,,,EA036,NA,,,, +Cf5,,,EA036,NA,,,, +Cg1,,,EA036,NA,,,, +Cg2,,,EA036,NA,,,, +Cg3,,,EA036,NA,,,, +Cg4,Konkama District,1950,EA036,3,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,,EA036,NA,,,, +Ch1,,,EA036,NA,,,, +Ch10,,,EA036,NA,,,, +Ch11,,,EA036,NA,,,, +Ch2,,,EA036,NA,,,, +Ch3,,,EA036,NA,,,, +Ch4,,,EA036,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA036,2,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,,EA036,NA,,,, +Ch7,,,EA036,NA,,,, +Ch8,,,EA036,NA,,,, +Ch9,,,EA036,NA,,,, +Ci1,,,EA036,NA,,,, +Ci10,,,EA036,NA,,,, +Ci11,,,EA036,NA,,,, +Ci12,,,EA036,NA,,,, +Ci2,,,EA036,NA,,,, +Ci3,,,EA036,NA,,,, +Ci4,,,EA036,NA,,,, +Ci5,,,EA036,NA,,,, +Ci6,,,EA036,NA,,,, +Ci7,,,EA036,NA,,,, +Ci8,,,EA036,NA,,,, +Ci9,,,EA036,NA,,,, +Cj1,,,EA036,NA,,,, +Cj10,,,EA036,NA,,,, +Cj2,,,EA036,NA,,,, +Cj3,,-800,EA036,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,,,EA036,NA,,,, +Cj5,,,EA036,NA,,,, +Cj6,,,EA036,NA,,,, +Cj7,,,EA036,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA036,3,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,,EA036,NA,,,, +Ea1,,,EA036,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA036,3,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA036,NA,,,, +Ea12,,,EA036,NA,,,, +Ea13,,,EA036,NA,,,, +Ea2,,,EA036,NA,,,, +Ea3,,,EA036,NA,,,, +Ea4,,,EA036,NA,,,, +Ea5,,,EA036,NA,,,, +Ea6,,,EA036,NA,,,, +Ea7,,,EA036,NA,,,, +Ea8,,,EA036,NA,,,, +Ea9,,,EA036,NA,,,, +Eb1,,,EA036,NA,,,, +Eb2,,,EA036,NA,,,, +Eb3,,,EA036,NA,,,, +Eb4,,,EA036,NA,,,, +Eb5,,,EA036,NA,,,, +Eb6,,,EA036,NA,,,, +Eb7,,,EA036,NA,,,, +Eb8,,,EA036,NA,,,, +Ec1,,,EA036,NA,,,, +Ec10,,,EA036,NA,,,, +Ec11,,,EA036,NA,,,, +Ec2,,,EA036,NA,,,, +Ec3,Reindeer Division,1900,EA036,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA036,3,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA036,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA036,2,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA036,3,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,,EA036,NA,,,, +Ec9,,,EA036,NA,,,, +Ed1,,,EA036,NA,,,, +Ed10,,,EA036,NA,,,, +Ed13,,,EA036,NA,,,, +Ed14,,,EA036,NA,,,, +Ed15a,,,EA036,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA036,2,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA036,NA,,,, +Ed2,,,EA036,NA,,,, +Ed3,,,EA036,NA,,,, +Ed4,,,EA036,NA,,,, +Ed5,Okayama,1950,EA036,2,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA036,2,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,,EA036,NA,,,, +Ed8,,,EA036,NA,,,, +Ed9,,,EA036,NA,,,, +Ee1,,,EA036,NA,,,, +Ee2,Hunza State,1930,EA036,6,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA036,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,,,EA036,NA,,,, +Ee5,with special reference to the Shina tribe,1870,EA036,2,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,,,EA036,NA,,,, +Ee7,,,EA036,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA036,2,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,,,EA036,NA,,,, +Ef10,,,EA036,NA,,,, +Ef11,,,EA036,NA,,,, +Ef2,,,EA036,NA,,,, +Ef3,,,EA036,NA,,,, +Ef4,,,EA036,NA,,,, +Ef5,,1900,EA036,3,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,,EA036,NA,,,, +Ef7,,,EA036,NA,,,, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA036,3,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,,,EA036,NA,,,, +Eg1,with special reference to the forest group,1940,EA036,2,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,,,EA036,NA,,,, +Eg11,,,EA036,NA,,,, +Eg12,,,EA036,NA,,,, +Eg13,Bastar State,1941,EA036,6,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,,,EA036,NA,,,, +Eg2,,,EA036,NA,,,, +Eg3,Hill Maria,1938,EA036,2,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA036,3,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA036,3,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,,,EA036,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA036,NA,Duration of the taboo coincides with the nursing period,roy1935,EthnographicAtlas_1967_p91, +Eg8,,,EA036,NA,,,, +Eg9,,1930,EA036,2,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,,EA036,NA,,,, +Eh10,,,EA036,NA,,,, +Eh2,,,EA036,NA,,,, +Eh3,Menabe subtribe,1930,EA036,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA036,2,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,,,EA036,NA,,,, +Eh6,,,EA036,NA,,,, +Eh7,,,EA036,NA,,,, +Eh8,,,EA036,NA,,,, +Eh9,,,EA036,NA,,,, +Ei1,,,EA036,NA,,,, +Ei10,,,EA036,NA,,,, +Ei11,,,EA036,NA,,,, +Ei12,,,EA036,NA,,,, +Ei13,,,EA036,NA,,,, +Ei14,,,EA036,NA,,,, +Ei15,,,EA036,NA,,,, +Ei16,,,EA036,NA,,,, +Ei17,,,EA036,NA,,,, +Ei18,,,EA036,NA,,,, +Ei19,,,EA036,NA,,,, +Ei2,,,EA036,NA,,,, +Ei20,,,EA036,NA,,,, +Ei3,,,EA036,NA,,,, +Ei4,,,EA036,NA,,,, +Ei5,,,EA036,NA,,,, +Ei6,,1930,EA036,3,,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,,EA036,NA,,,, +Ei8,,,EA036,NA,,,, +Ei9,,,EA036,NA,,,, +Ej1,,,EA036,NA,,,, +Ej10,Ko-Sier Village,1950,EA036,3,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,,,EA036,NA,,,, +Ej12,,,EA036,NA,,,, +Ej13,,,EA036,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA036,5,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA036,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA036,3,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,,,EA036,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA036,5,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA036,5,"""...weaning begins at about 18 months.""",cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,,EA036,NA,,,, +Ej6,,,EA036,NA,,,, +Ej7,,,EA036,NA,,,, +Ej8,,,EA036,NA,,,, +Ej9,,1940,EA036,2,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,,,EA036,NA,,,, +Ia10,,,EA036,NA,,,, +Ia11,,,EA036,NA,,,, +Ia12,,1950,EA036,3,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,,,EA036,NA,,,, +Ia14,,,EA036,NA,,,, +Ia15,,,EA036,NA,,,, +Ia16,,,EA036,NA,,,, +Ia17,,,EA036,NA,,,, +Ia18,,,EA036,NA,,,, +Ia2,,1950,EA036,3,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,,,EA036,NA,,,, +Ia4,,,EA036,NA,,,, +Ia5,,,EA036,NA,,,, +Ia6,,,EA036,NA,,,, +Ia7,,,EA036,NA,,,, +Ia8,,,EA036,NA,,,, +Ia9,,,EA036,NA,,,, +Ib1,,,EA036,NA,,,, +Ib2,Town and environs of Pare; Modjokuto,1950,EA036,3,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA036,3,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,,,EA036,NA,,,, +Ib5,,,EA036,NA,,,, +Ib6,,,EA036,NA,,,, +Ib7,,,EA036,NA,,,, +Ib8,,,EA036,NA,,,, +Ib9,,,EA036,NA,,,, +Ic1,Borongloe,1940,EA036,3,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA036,NA,,,, +Ic11,,,EA036,NA,,,, +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA036,3,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA036,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA036,4,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,,,EA036,NA,,,, +Ic4,,,EA036,NA,,,, +Ic5,,,EA036,NA,,,, +Ic6,,,EA036,NA,,,, +Ic7,,,EA036,NA,,,, +Ic8,,,EA036,NA,,,, +Ic9,,,EA036,NA,,,, +Id1,Alice Springs and environs,1900,EA036,2,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA036,2,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,,EA036,NA,,,, +Id12,,,EA036,NA,,,, +Id13,,,EA036,NA,,,, +Id2,,1930,EA036,2,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,,,EA036,NA,,,, +Id4,,,EA036,NA,,,, +Id5,,,EA036,NA,,,, +Id6,,,EA036,NA,,,, +Id7,,,EA036,NA,,,, +Id8,,1830,EA036,5,Children were weaned after two years of age,roth1890,EthnographicAtlas_1967_p95, +Id9,,,EA036,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA036,2,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA036,5,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA036,6,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA036,6,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA036,NA,,,, +Ie14,,,EA036,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA036,4,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA036,NA,,,, +Ie17,,1940,EA036,6,From a report that children are weaned between three and six years of age,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA036,3,"""Sexual intercourse is strictly prohibited for the time being""",serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA036,3,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA036,6,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,,EA036,NA,,,, +Ie21,,,EA036,NA,,,, +Ie22,,,EA036,NA,,,, +Ie23,,,EA036,NA,,,, +Ie24,,1870,EA036,4,,chalmers1890; lawes1879,EthnographicAtlas_1967_p95, +Ie25,,,EA036,NA,,,, +Ie26,,1940,EA036,5,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,,EA036,NA,,,, +Ie28,,,EA036,NA,,,, +Ie29,,,EA036,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA036,4,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA036,NA,,,, +Ie31,,1950,EA036,3,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,,EA036,NA,,,, +Ie33,,,EA036,NA,,,, +Ie34,,,EA036,NA,,,, +Ie35,,,EA036,NA,,,, +Ie36,,,EA036,NA,,,, +Ie37,,,EA036,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA036,6,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA036,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA036,6,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA036,4,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,,EA036,NA,,,, +Ie7,with special reference to the Mae group,1950,EA036,5,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,,,EA036,NA,,,, +Ie9,,,EA036,NA,,,, +If1,,,EA036,NA,,,, +If10,,,EA036,NA,,,, +If11,,,EA036,NA,,,, +If12,,,EA036,NA,,,, +If13,,,EA036,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA036,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA036,4,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,,EA036,NA,,,, +If17,with special reference to the island of Jaluit,1900,EA036,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA036,5,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA036,1,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA036,4,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA036,3,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA036,6,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,,,EA036,NA,,,, +If8,with special reference to those of Saipa,1950,EA036,2,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,,EA036,NA,,,, +Ig1,Northeastern group,1940,EA036,6,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,,EA036,NA,,,, +Ig11,,1920,EA036,5,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,,,EA036,NA,,,, +Ig13,,,EA036,NA,,,, +Ig14,,1900,EA036,4,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA036,NA,,,, +Ig16,,,EA036,NA,,,, +Ig17,,,EA036,NA,,,, +Ig18,,,EA036,NA,,,, +Ig19,,,EA036,NA,,,, +Ig2,Kiriwina Island,1910,EA036,5,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,,,EA036,NA,,,, +Ig21,,,EA036,NA,,,, +Ig3,,1930,EA036,5,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA036,6,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,1920,EA036,5,,fortune1932b,EthnographicAtlas_1967_p99, +Ig6,,,EA036,NA,,,, +Ig7,,,EA036,NA,,,, +Ig8,,,EA036,NA,,,, +Ig9,,,EA036,NA,,,, +Ih1,,,EA036,NA,,,, +Ih10,,,EA036,NA,,,, +Ih11,,,EA036,NA,,,, +Ih12,,,EA036,NA,,,, +Ih13,,,EA036,NA,,,, +Ih14,,,EA036,NA,,,, +Ih2,,,EA036,NA,,,, +Ih3,Bunlap Village,1950,EA036,5,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA036,5,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA036,NA,,,, +Ih6,,,EA036,NA,,,, +Ih7,,,EA036,NA,,,, +Ih8,,,EA036,NA,,,, +Ih9,,,EA036,NA,,,, +Ii1,with special reference to American Samoa,1920,EA036,5,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,,EA036,NA,,,, +Ii12,Pangai,1920,EA036,3,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,,EA036,NA,,,, +Ii14,,,EA036,NA,,,, +Ii2,,,EA036,NA,,,, +Ii3,,1930,EA036,2,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA036,3,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,,,EA036,NA,,,, +Ii6,with special reference to Atafu,1900,EA036,6,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA036,4,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,,EA036,NA,,,, +Ii9,,,EA036,NA,,,, +Ij1,,,EA036,NA,,,, +Ij10,,,EA036,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA036,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA036,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,,EA036,NA,,,, +Ij5,,,EA036,NA,,,, +Ij6,,,EA036,NA,,,, +Ij7,,1900,EA036,3,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,,EA036,NA,,,, +Ij9,,,EA036,NA,,,, +Na1,,,EA036,NA,,,, +Na10,,1930,EA036,3,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,,EA036,NA,,,, +Na12,,1950,EA036,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA036,3,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA036,6,Inferred from report that children are commonly suckled for five years or more,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,,EA036,NA,,,, +Na16,,,EA036,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA036,5,"From the statement that ""breast feeding continued to the age of two or three years""",helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA036,3,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,,EA036,NA,,,, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA036,3,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA036,3,"Entry follows Birket-Smith; Rasmussen reports taboo of up to one month (code ""2"")",birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA036,3,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,,,EA036,NA,,,, +Na24,,1880,EA036,5,"""children are suckled until they are at least two years old""",holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA036,NA,"Children are suckled ""for a very long period""",birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,,,EA036,NA,,,, +Na27,,1870,EA036,5,From the statement that children were suckled for two to three years,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,,EA036,NA,,,, +Na29,,,EA036,NA,,,, +Na3,Coronation Gulf,1920,EA036,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA036,2,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,,,EA036,NA,,,, +Na32,Lake St. John & Mistassini Band,1880,EA036,3,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA036,5,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,,,EA036,NA,,,, +Na35,,,EA036,NA,,,, +Na36,,,EA036,NA,,,, +Na37,,,EA036,NA,,,, +Na38,with special reference to the Lac Vieux Desert band,1800,EA036,2,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA036,NA,"""Mothers suckled their children to the age of 2 or 3 years.""",jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA036,3,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA036,3,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA036,4,"According to Parsons, ""formerly a man did not lie with his wife for perhaps a year after childbirth,"" but Wallis and Wallis report taboo of up to one month (code ""2"") today",bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA036,3,A postparturient mother was segregated for more than a month,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,,EA036,NA,,,, +Na44,,,EA036,NA,,,, +Na45,,,EA036,NA,,,, +Na5,,,EA036,NA,,,, +Na6,,,EA036,NA,,,, +Na7,,,EA036,NA,,,, +Na8,,,EA036,NA,,,, +Na9,Unalaska Branch (Eastern Aleut),1830,EA036,3,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA036,6,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,,EA036,NA,,,, +Nb11,,,EA036,NA,,,, +Nb12,,,EA036,NA,,,, +Nb13,,,EA036,NA,,,, +Nb14,,,EA036,NA,,,, +Nb15,,,EA036,NA,,,, +Nb16,,,EA036,NA,,,, +Nb17,,,EA036,NA,,,, +Nb18,,1880,EA036,3,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA036,5,"""Nursing continued for two or three years, sometimes longer""",ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA036,3,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,,EA036,NA,,,, +Nb21,,,EA036,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA036,2,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,,EA036,NA,,,, +Nb24,,,EA036,NA,,,, +Nb25,,1860,EA036,2,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,,EA036,NA,,,, +Nb27,,,EA036,NA,,,, +Nb28,,,EA036,NA,,,, +Nb29,,,EA036,NA,,,, +Nb3,,1890,EA036,4,"Ideally a taboo of more than 2 years (code ""6"")",benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,,EA036,NA,,,, +Nb31,,,EA036,NA,,,, +Nb32,,,EA036,NA,,,, +Nb33,,,EA036,NA,,,, +Nb34,,1860,EA036,3,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA036,5,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,,EA036,NA,,,, +Nb37,,1860,EA036,3,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA036,4,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA036,3,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA036,4,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,,,EA036,NA,,,, +Nb6,,1870,EA036,3,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,,EA036,NA,,,, +Nb8,,,EA036,NA,,,, +Nb9,"Central group, lower B.C. River",1880,EA036,2,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,,EA036,NA,,,, +Nc10,,1860,EA036,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,,EA036,NA,,,, +Nc12,,,EA036,NA,,,, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA036,2,"But Faye states that children were nursed ""till they were four or five years old""",beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA036,3,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA036,2,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,,EA036,NA,,,, +Nc17,with special reference to those of Kalekau,1860,EA036,2,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,,,EA036,NA,,,, +Nc19,,,EA036,NA,,,, +Nc2,,1850,EA036,3,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,,EA036,NA,,,, +Nc21,,,EA036,NA,,,, +Nc22,,,EA036,NA,,,, +Nc23,,1870,EA036,3,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,,,EA036,NA,,,, +Nc25,,1860,EA036,3,"""A child was nursed for two years, even if a new baby was also nursing""",bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,,EA036,NA,,,, +Nc27,,,EA036,NA,,,, +Nc28,,,EA036,NA,,,, +Nc29,,,EA036,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA036,3,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,,EA036,NA,,,, +Nc31,,,EA036,NA,,,, +Nc32,,,EA036,NA,,,, +Nc33,,1860,EA036,5,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,,EA036,NA,,,, +Nc4,,1860,EA036,2,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA036,3,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA036,4,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA036,3,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA036,3,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA036,3,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,,EA036,NA,,,, +Nd10,,1860,EA036,3,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA036,3,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA036,6,"""children were not weaned until they were three years old""",ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA036,4,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA036,3,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,,EA036,NA,,,, +Nd16,,1870,EA036,3,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA036,3,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA036,NA,"A child was weaned at ""one or even two years""",spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA036,3,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA036,5,"Entry follows Opler; Stewart reports taboo of one to six months (code ""3"")",gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA036,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA036,3,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA036,3,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,,EA036,NA,,,, +Nd24,,1870,EA036,3,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA036,3,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,,EA036,NA,,,, +Nd27,,1860,EA036,4,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA036,4,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA036,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,,,EA036,NA,,,, +Nd30,,1870,EA036,5,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,,EA036,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA036,2,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA036,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,,EA036,NA,,,, +Nd35,,,EA036,NA,,,, +Nd36,,,EA036,NA,,,, +Nd37,,,EA036,NA,,,, +Nd38,,,EA036,NA,,,, +Nd39,,,EA036,NA,,,, +Nd4,,1870,EA036,2,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,,EA036,NA,,,, +Nd41,,,EA036,NA,,,, +Nd42,,,EA036,NA,,,, +Nd43,,,EA036,NA,,,, +Nd44,,,EA036,NA,,,, +Nd45,,,EA036,NA,,,, +Nd46,,1860,EA036,3,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,,EA036,NA,,,, +Nd48,with special reference to those of Deep Creek,1860,EA036,5,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA036,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,,EA036,NA,,,, +Nd50,,,EA036,NA,,,, +Nd51,,1860,EA036,3,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA036,3,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA036,3,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA036,3,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,,,EA036,NA,,,, +Nd56,,1860,EA036,3,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,,EA036,NA,,,, +Nd58,,1860,EA036,5,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA036,3,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA036,4,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA036,3,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA036,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA036,5,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA036,3,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA036,3,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA036,3,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA036,3,,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,,EA036,NA,,,, +Nd7,Lower or eastern branch,1880,EA036,3,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA036,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA036,3,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA036,3,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,,EA036,NA,,,, +Ne11,,1870,EA036,6,"From the statement that children ""were weaned when they were about three years old""",denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA036,2,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA036,2,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,,EA036,NA,,,, +Ne15,,,EA036,NA,,,, +Ne16,,1800,EA036,5,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,,EA036,NA,,,, +Ne18,,,EA036,NA,,,, +Ne19,,1850,EA036,5,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,,EA036,NA,,,, +Ne20,,,EA036,NA,,,, +Ne21,,,EA036,NA,,,, +Ne3,,,EA036,NA,,,, +Ne4,,1870,EA036,2,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA036,6,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,,EA036,NA,,,, +Ne7,,1880,EA036,3,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,,EA036,NA,,,, +Ne9,,1860,EA036,6,"According to Hilger, ""children were nursed until they were 4 years old""",eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,,EA036,NA,,,, +Nf11,,,EA036,NA,,,, +Nf12,,,EA036,NA,,,, +Nf13,,,EA036,NA,,,, +Nf14,,,EA036,NA,,,, +Nf15,,,EA036,NA,,,, +Nf2,,,EA036,NA,,,, +Nf3,Omaha Tribe,1850,EA036,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,,EA036,NA,,,, +Nf5,,1860,EA036,6,A taboo throughout the nursing periods was the ideal; it was sanctioned by a belief that its violation would cause illness in the baby,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA036,2,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,,,EA036,NA,,,, +Nf8,,,EA036,NA,,,, +Nf9,,1870,EA036,NA,"""A child was nursed for as long as it would reach for the breast""",hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA036,6,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA036,5,"""A mother nurses her child for two to three years""",fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,,EA036,NA,,,, +Ng12,,,EA036,NA,,,, +Ng13,,,EA036,NA,,,, +Ng14,,,EA036,NA,,,, +Ng15,,,EA036,NA,,,, +Ng2,,,EA036,NA,,,, +Ng3,Upper division in Alabama,1750,EA036,3,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA036,NA,,,, +Ng5,,,EA036,NA,,,, +Ng6,,,EA036,NA,,,, +Ng7,,,EA036,NA,,,, +Ng8,,,EA036,NA,,,, +Ng9,,,EA036,NA,,,, +Nh1,Central band,1880,EA036,6,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,,EA036,NA,,,, +Nh11,,,EA036,NA,,,, +Nh12,,1920,EA036,3,,gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,,EA036,NA,,,, +Nh14,,,EA036,NA,,,, +Nh15,,,EA036,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA036,5,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,,EA036,NA,,,, +Nh18,Old Oraiibi,1920,EA036,3,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA036,4,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,,EA036,NA,,,, +Nh20,,,EA036,NA,,,, +Nh21,,,EA036,NA,,,, +Nh22,,1860,EA036,2,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,,EA036,NA,,,, +Nh24,,,EA036,NA,,,, +Nh25,,1920,EA036,3,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA036,NA,,,, +Nh27,,,EA036,NA,,,, +Nh3,,1930,EA036,3,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,,,EA036,NA,,,, +Nh5,,,EA036,NA,,,, +Nh6,,,EA036,NA,,,, +Nh7,,1890,EA036,2,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,,EA036,NA,,,, +Nh9,,,EA036,NA,,,, +Ni1,,1930,EA036,2,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA036,2,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,,,EA036,NA,,,, +Ni4,,,EA036,NA,,,, +Ni5,,1570,EA036,3,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,,EA036,NA,,,, +Ni7,,,EA036,NA,,,, +Ni8,,,EA036,NA,,,, +Ni9,,,EA036,NA,,,, +Nj1,,,EA036,NA,,,, +Nj10,,,EA036,NA,,,, +Nj11,,,EA036,NA,,,, +Nj12,,,EA036,NA,,,, +Nj13,,,EA036,NA,,,, +Nj14,,,EA036,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA036,6,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,,,EA036,NA,,,, +Nj4,,,EA036,NA,,,, +Nj5,,,EA036,NA,,,, +Nj6,,,EA036,NA,,,, +Nj7,with special reference to Ayutla,1930,EA036,3,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA036,NA,,,, +Nj9,,1960,EA036,4,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,,,EA036,NA,,,, +Sa10,,,EA036,NA,,,, +Sa11,,,EA036,NA,,,, +Sa12,,,EA036,NA,,,, +Sa13,,,EA036,NA,,,, +Sa14,,,EA036,NA,,,, +Sa15,,,EA036,NA,,,, +Sa16,,,EA036,NA,,,, +Sa17,,,EA036,NA,,,, +Sa2,,,EA036,NA,,,, +Sa3,,,EA036,NA,,,, +Sa4,,,EA036,NA,,,, +Sa5,,1950,EA036,3,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,,EA036,NA,,,, +Sa7,,1940,EA036,3,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,,,EA036,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA036,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA036,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,,EA036,NA,,,, +Sb3,,,EA036,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA036,3,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA036,NA,,,, +Sb6,Goajiro Tribe,1940,EA036,3,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,,,EA036,NA,,,, +Sb8,,,EA036,NA,,,, +Sb9,,1930,EA036,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA036,3,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,,EA036,NA,,,, +Sc11,,,EA036,NA,,,, +Sc12,,,EA036,NA,,,, +Sc13,,,EA036,NA,,,, +Sc14,,,EA036,NA,,,, +Sc15,,,EA036,NA,,,, +Sc16,,,EA036,NA,,,, +Sc17,,,EA036,NA,,,, +Sc18,,1960,EA036,3,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA036,2,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA036,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA036,3,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,,EA036,NA,,,, +Sc6,,,EA036,NA,,,, +Sc7,,1950,EA036,3,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,,EA036,NA,,,, +Sc9,,,EA036,NA,,,, +Sd1,,,EA036,NA,,,, +Sd2,,1930,EA036,4,"""Until the child is weaned, the parents must refrain from sexual relations,"" but age of weaning is not specified",wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,,EA036,NA,,,, +Sd4,,,EA036,NA,,,, +Sd5,,1950,EA036,3,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,,EA036,NA,,,, +Sd7,,,EA036,NA,,,, +Sd8,,,EA036,NA,,,, +Sd9,,,EA036,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA036,2,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,,EA036,NA,,,, +Se11,,1960,EA036,6,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA036,NA,,,, +Se2,,1940,EA036,4,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA036,6,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA036,4,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA036,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA036,6,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA036,NA,,,, +Se8,Upper Inuya River,1950,EA036,2,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,,EA036,NA,,,, +Sf1,,,EA036,NA,,,, +Sf2,Chucuito Clan community in Peru,1940,EA036,2,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,,,EA036,NA,,,, +Sf4,,,EA036,NA,,,, +Sf5,,1900,EA036,2,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,,EA036,NA,,,, +Sf7,,,EA036,NA,,,, +Sf8,,,EA036,NA,,,, +Sf9,,,EA036,NA,,,, +Sg1,Eastern and central,1870,EA036,3,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA036,4,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,,,EA036,NA,,,, +Sg4,Equestrian,1870,EA036,4,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA036,2,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA036,4,The taboo lasted until the child's teeth began to erupt,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,,EA036,NA,,,, +Sh3,Those in contact with mission,1800,EA036,6,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA036,5,"Oberg states that ""a woman was prohibited from having sexual intercourse while nursing a child""",oberg1949,EthnographicAtlas_1967_p123, +Sh5,,,EA036,NA,,,, +Sh6,,1890,EA036,5,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,,EA036,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA036,4,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,,,EA036,NA,,,, +Si1,,,EA036,NA,,,, +Si10,,,EA036,NA,,,, +Si2,Village of Vanivani,1930,EA036,5,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,,,EA036,NA,,,, +Si4,Cocozu Group,1940,EA036,5,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,,EA036,NA,,,, +Si6,,,EA036,NA,,,, +Si7,,,EA036,NA,,,, +Si8,,,EA036,NA,,,, +Si9,,,EA036,NA,,,, +Sj1,,,EA036,NA,,,, +Sj10,,,EA036,NA,,,, +Sj11,Village of Sao Domingo,1958,EA036,6,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,,EA036,NA,,,, +Sj3,,,EA036,NA,,,, +Sj4,Ramcocamecra or Canella,1930,EA036,3,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,,,EA036,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA036,3,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA036,3,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,,,EA036,NA,,,, +Sj9,,1950,EA036,5,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,,,EA036,NA,,,, +ch13,,,EA036,NA,,,, +ch14,,,EA036,NA,,,, +ch15,,,EA036,NA,,,, +ch16,,,EA036,NA,,,, +ch17,with special reference to those of the Benderskij Uezd,1894,EA036,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,,,EA036,NA,,,, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA036,4,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA036,2,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,,,EA036,NA,,,, +ch22,with special reference to those of the Trakaj area,1895,EA036,5,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,,,EA036,NA,,,, +ch24,,,EA036,NA,,,, +ch25,,,EA036,NA,,,, +ch26,,,EA036,NA,,,, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA036,2,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,,,EA036,NA,,,, +ec12,Avam (Western) group,1930,EA036,2,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA036,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA036,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA036,2,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA036,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,,,EA036,NA,,,, +ec18,Ulch people as a whole,1890,EA036,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA036,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA036,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA036,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA037,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA037,7,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA037,1,But early sources report the excision of one testicle at the age of nine or ten,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA037,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA037,6,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,1920,EA037,5,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p63, +Aa7,,1910,EA037,1,But boys at puberty are incised on the back and between the eyebrows,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,1850,EA037,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA037,1,But circumcision has recently been adopted from the Bantu Isansu,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,1900,EA037,10,,irle1906; vedder1928,EthnographicAtlas_1967_p63, +Ab10,,1936,EA037,1,"But 'in early adulthood' (code""7"") prior to 1860",hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,1850,EA037,7,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA037,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p63, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA037,7,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA037,6,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA037,6,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA037,NA,,,, +Ab17,,,EA037,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA037,6,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA037,6,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,1880,EA037,6,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA037,NA,,,, +Ab21a,,1930,EA037,6,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA037,NA,,,, +Ab22,,,EA037,NA,,,, +Ab3,Ruling Luyana,1890,EA037,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,1920,EA037,6,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA037,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA037,7,But only recently adopted,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA037,6,,langandtastevin1937,EthnographicAtlas_1967_p63, +Ab8,Basuto,1860,EA037,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA037,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA037,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA037,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA037,6,,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,,EA037,NA,,,, +Ac13,,,EA037,NA,,,, +Ac14,,1900,EA037,6,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p63, +Ac15,,,EA037,NA,,,, +Ac16,,1940,EA037,10,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA037,6,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA037,10,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,1880,EA037,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,,EA037,NA,,,, +Ac20,,,EA037,NA,,,, +Ac21,,,EA037,NA,,,, +Ac22,,,EA037,NA,,,, +Ac23,,,EA037,NA,,,, +Ac24,,1910,EA037,3,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,,,EA037,NA,,,, +Ac26,,1920,EA037,4,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA037,6,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,,EA037,NA,,,, +Ac29,,,EA037,NA,,,, +Ac3,Zambia branch,1900,EA037,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA037,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA037,5,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA037,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA037,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA037,6,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA037,NA,,,, +Ac36,,1920,EA037,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,,EA037,NA,,,, +Ac38,,1910,EA037,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p63, +Ac39,,,EA037,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA037,2,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,1900,EA037,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA037,6,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA037,NA,,,, +Ac43,,1910,EA037,1,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA037,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,,EA037,NA,,,, +Ac7,,1920,EA037,5,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,1930,EA037,10,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA037,1,But circumcision was formerly practiced,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,1950,EA037,6,,grottanelli1955,EthnographicAtlas_1967_p63, +Ad10,,1910,EA037,4,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,1930,EA037,1,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA037,6,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA037,1,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,Morogoro District,1930,EA037,6,"But 'absent' (code ""1"") prior to 1910",beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,1900,EA037,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,1920,EA037,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA037,1,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,1910,EA037,1,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA037,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA037,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA037,1,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,1930,EA037,1,,maurice193538,EthnographicAtlas_1967_p67, +Ad22,,1950,EA037,1,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,1910,EA037,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA037,6,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,1900,EA037,10,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA037,6,,sick1916,Ethnology_Vol7_No2_Apr_1968, +Ad27,,1880,EA037,5,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA037,6,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA037,6,"But Prins reports 'early childhood' (code ""4"") for the Swahili in general",ingrams1930; prins1961,EthnographicAtlas_1967_p67, +Ad3,,1910,EA037,6,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,1890,EA037,10,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p67, +Ad31,,,EA037,NA,,,, +Ad32,,1900,EA037,6,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p67, +Ad33,,1900,EA037,6,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p67, +Ad34,,1910,EA037,5,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA037,6,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p67, +Ad36,,1890,EA037,10,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA037,6,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA037,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA037,6,,gray1963,EthnographicAtlas_1967_p67, +Ad4,Fort Hall or Metume district,1930,EA037,7,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA037,6,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA037,6,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p67, +Ad42,,1900,EA037,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,1900,EA037,1,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA037,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p67, +Ad45,,1920,EA037,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,1950,EA037,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p67, +Ad47,,1900,EA037,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA037,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA037,NA,,,, +Ad5,,,EA037,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA037,6,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA037,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA037,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA037,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA037,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,1900,EA037,7,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA037,1,"Until 1933, circumcision rites were held every fifteenth year",winter1956; winter1958,EthnographicAtlas_1967_p67, +Ae10,,1910,EA037,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA037,6,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA037,5,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA037,NA,,,, +Ae14,,1950,EA037,1,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,1940,EA037,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p67, +Ae16,,,EA037,NA,,,, +Ae17,,1900,EA037,6,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,1900,EA037,4,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA037,NA,,,, +Ae2,,1950,EA037,5,"Formerly 'in early adulthood' (code""7"")",ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,1940,EA037,10,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA037,10,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA037,10,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p67, +Ae23,,,EA037,NA,,,, +Ae24,,,EA037,NA,,,, +Ae25,,,EA037,NA,,,, +Ae26,,1910,EA037,10,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA037,10,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA037,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,1900,EA037,10,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p67, +Ae3,,1910,EA037,6,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,1920,EA037,5,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA037,4,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA037,6,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA037,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA037,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA037,6,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA037,5,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA037,NA,,,, +Ae38,,,EA037,NA,,,, +Ae39,,1920,EA037,4,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA037,5,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,1910,EA037,10,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA037,6,,andersson1953,EthnographicAtlas_1967_p67, +Ae42,,1900,EA037,5,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA037,7,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA037,1,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA037,10,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA037,10,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA037,10,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA037,6,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae49,,,EA037,NA,,,, +Ae5,,1910,EA037,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae50,,1920,EA037,10,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p67, +Ae51,Ndiki subtribe,1940,EA037,6,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae52,,,EA037,NA,,,, +Ae53,,,EA037,NA,,,, +Ae54,,,EA037,NA,,,, +Ae55,,,EA037,NA,,,, +Ae56,,,EA037,NA,,,, +Ae57,,1930,EA037,10,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,,EA037,NA,,,, +Ae59,,,EA037,NA,,,, +Ae6,,,EA037,NA,,,, +Ae7,,1910,EA037,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA037,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,,EA037,NA,,,, +Af1,City and environs of Abomey,1890,EA037,7,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA037,2,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA037,6,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,with special reference to the Kwahu,1930,EA037,1,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA037,3,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,1930,EA037,10,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af15,,1920,EA037,6,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,1910,EA037,10,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA037,NA,,,, +Af18,,1900,EA037,3,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA037,2,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,1950,EA037,6,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA037,3,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,with special reference to the Kalabari,1920,EA037,3,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA037,3,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p71, +Af23,with special reference to the village of Mgbom,1950,EA037,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA037,3,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,1930,EA037,4,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,with special reference to the Etsako,1900,EA037,2,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA037,10,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA037,1,But circumcision occurs sporadically,gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,1950,EA037,5,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA037,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,1920,EA037,3,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,,,EA037,NA,,,, +Af32,Abeouta Province and Benin,1920,EA037,10,,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA037,10,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA037,NA,,,, +Af35,with special reference to the Krobo,1940,EA037,5,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA037,4,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p71, +Af37,with special reference to the Akpafu,1900,EA037,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA037,NA,,,, +Af39,,,EA037,NA,,,, +Af4,,1930,EA037,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,,,EA037,NA,,,, +Af41,,,EA037,NA,,,, +Af42,,1900,EA037,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p71, +Af43,,1930,EA037,2,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p71, +Af44,,,EA037,NA,,,, +Af45,,,EA037,NA,,,, +Af46,,1900,EA037,10,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA037,4,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA037,NA,,,, +Af49,,1940,EA037,10,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA037,6,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,1920,EA037,10,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA037,1,,tauxier1924a,EthnographicAtlas_1967_p71, +Af52,,1920,EA037,1,,tauxier1924a,EthnographicAtlas_1967_p71, +Af53,,1950,EA037,6,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA037,6,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,,EA037,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA037,6,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA037,6,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,1900,EA037,6,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA037,3,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA037,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA037,5,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,1900,EA037,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p71, +Ag1,Segou to Bamako on Niger River,1920,EA037,6,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA037,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,1910,EA037,1,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,1910,EA037,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA037,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,1950,EA037,10,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA037,7,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA037,6,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p71, +Ag17,,1940,EA037,10,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA037,1,"But Santos Lima, in contradiction to earlier sources, reports circumcision",bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p71, +Ag19,with special reference to the Felup,1930,EA037,6,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p71, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA037,5,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,1930,EA037,6,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA037,5,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,,,EA037,NA,,,, +Ag23,,1910,EA037,10,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA037,6,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA037,6,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p71, +Ag26,,1930,EA037,10,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p71, +Ag27,,1910,EA037,3,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,1930,EA037,10,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA037,3,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA037,6,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p71, +Ag30,,1910,EA037,6,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p71, +Ag31,,1910,EA037,6,,cheron1913; holas1957,EthnographicAtlas_1967_p71, +Ag32,,1900,EA037,3,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p71, +Ag33,,1920,EA037,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA037,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA037,1,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA037,1,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA037,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA037,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA037,1,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA037,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,1910,EA037,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA037,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,1910,EA037,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA037,1,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA037,3,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA037,6,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA037,10,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA037,5,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,1890,EA037,1,But increasingly practiced in recent years,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p75, +Ag49,,1930,EA037,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA037,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,1910,EA037,1,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA037,1,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA037,NA,"Circumcision, though common, is not universal",froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA037,6,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA037,6,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA037,6,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA037,6,,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA037,5,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,1930,EA037,6,,labouret1934; sidibe1932,EthnographicAtlas_1967_p71, +Ah1,Zaria Province,1930,EA037,10,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA037,10,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA037,1,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah12,,1920,EA037,1,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA037,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA037,1,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,1920,EA037,5,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p75, +Ah16,,1900,EA037,5,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA037,NA,"One early source reports circumcision, another denies it",gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA037,1,Recently introduced and sporadic,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA037,5,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p75, +Ah2,,1920,EA037,6,,meek1931a,EthnographicAtlas_1967_p75, +Ah20,,1920,EA037,10,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,1920,EA037,4,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,,EA037,NA,,,, +Ah23,,,EA037,NA,,,, +Ah24,,,EA037,NA,,,, +Ah25,,,EA037,NA,,,, +Ah26,,1920,EA037,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA037,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA037,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,,EA037,NA,,,, +Ah3,Tar of Benue Province,1920,EA037,5,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,1920,EA037,1,,meek1931b,EthnographicAtlas_1967_p75, +Ah31,,1910,EA037,1,Circumcision occurs only sporadically,haughton1912; meek1931b,EthnographicAtlas_1967_p75, +Ah32,,1920,EA037,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA037,1,,meek1931b; temple1922,EthnographicAtlas_1967_p75, +Ah34,with special reference to the Malabu,1920,EA037,10,"The Malabu practice circumcision, but most Bata subtribes do not",meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA037,1,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA037,10,,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,1920,EA037,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA037,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA037,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,,EA037,NA,,,, +Ah5,,1930,EA037,1,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,1920,EA037,10,"The age of circumcision is variable, being determined by divination",dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA037,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,1910,EA037,5,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA037,6,,diamond1964; gunn1953,EthnographicAtlas_1967_p75, +Ai1,,1920,EA037,6,,daigre193232; leynaud1954,EthnographicAtlas_1967_p75, +Ai10,Nuba Hills,1940,EA037,1,,nadel1947,EthnographicAtlas_1967_p75, +Ai11,,1900,EA037,5,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA037,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,1920,EA037,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA037,6,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA037,6,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,1910,EA037,6,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA037,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA037,6,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA037,1,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA037,NA,,,, +Ai20,,1910,EA037,1,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA037,10,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,1890,EA037,1,,delafosse1897,EthnographicAtlas_1967_p75, +Ai23,,1920,EA037,6,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,1900,EA037,6,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA037,10,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA037,1,Entry follows Burssens; Nelson reports circumcision without ceremony,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p75, +Ai27,,1890,EA037,5,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA037,5,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA037,5,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA037,5,"Entry follows Seligman; one early source reports 'adolescence' (code ""6"")",baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA037,6,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA037,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA037,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA037,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,1880,EA037,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA037,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,1920,EA037,5,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,,EA037,NA,,,, +Ai38,,1930,EA037,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai39,,1940,EA037,1,,nadel1947,EthnographicAtlas_1967_p75, +Ai4,,1920,EA037,10,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA037,1,,nadel1947,EthnographicAtlas_1967_p75, +Ai41,,1930,EA037,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai42,,1940,EA037,1,But circumcision is practiced in two villages,nadel1947; nadel1950,EthnographicAtlas_1967_p75, +Ai43,,1930,EA037,7,,nadel1947; stevenson1940,EthnographicAtlas_1967_p75, +Ai44,,1920,EA037,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,1930,EA037,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA037,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p75, +Ai47,Northern division,1939,EA037,6,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,1920,EA037,6,Circumcision was not adopted until the end of the nineteenth century,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA037,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA037,5,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,1930,EA037,6,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p75, +Ai9,Around Yagoua in Cameroon,1910,EA037,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,1950,EA037,1,,lawrance1957,EthnographicAtlas_1967_p75, +Aj10,,1920,EA037,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA037,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA037,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,1930,EA037,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA037,1,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA037,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,with special reference to the Riverain Mondari,1930,EA037,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p79, +Aj17,,1890,EA037,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA037,1,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,1920,EA037,5,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p79, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA037,6,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,1940,EA037,NA,"Possibly in error since 'adolescence' (code ""6"") is reported for the kindred Surma",cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p79, +Aj21,,1930,EA037,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,1930,EA037,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA037,6,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA037,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,1920,EA037,10,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA037,6,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p79, +Aj27,,1920,EA037,10,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA037,5,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA037,6,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA037,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA037,NA,,,, +Aj31,,,EA037,NA,,,, +Aj4,,1920,EA037,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA037,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA037,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA037,7,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA037,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA037,6,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA037,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA037,6,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA037,10,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p79, +Ca12,,1880,EA037,3,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p79, +Ca13,with special reference to the eastern Macha,1950,EA037,8,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p79, +Ca14,,1950,EA037,8,"Entry follows Fleming; Cerulli reports 'late childhood' (code ""5"")",cerulli1956; fleming1965,EthnographicAtlas_1967_p79, +Ca15,,1930,EA037,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca16,,1930,EA037,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca17,,1950,EA037,6,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca18,,1940,EA037,1,"But 'adolescence' (code ""6"") in sporadic occurrence",cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA037,6,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA037,5,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,1890,EA037,6,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA037,6,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,,EA037,NA,,,, +Ca23,,1950,EA037,1,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,1950,EA037,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA037,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA037,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA037,10,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA037,1,,cerulli1956; jensen1959,EthnographicAtlas_1967_p79, +Ca29,,1920,EA037,3,,huntingford1955b; straube1963,EthnographicAtlas_1967_p79, +Ca3,,1950,EA037,2,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,Kafa Kingdom,1890,EA037,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p79, +Ca31,,1860,EA037,2,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,1860,EA037,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca33,,1860,EA037,4,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca34,,1920,EA037,5,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA037,3,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA037,5,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,,,EA037,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA037,3,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA037,10,,lewis1965b,EthnographicAtlas_1967_p79, +Ca4,,1950,EA037,10,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p79, +Ca40,,1950,EA037,1,Straube was unable to confirm Cerulli's report that boys are circumcised,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA037,8,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA037,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA037,NA,,,, +Ca5,,1930,EA037,5,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p79, +Ca6,,1880,EA037,6,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA037,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,1940,EA037,5,,leslau1950; shack1963,EthnographicAtlas_1967_p79, +Ca9,,1890,EA037,10,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,,EA037,NA,,,, +Cb10,,1920,EA037,5,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA037,10,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA037,10,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA037,10,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA037,10,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA037,5,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA037,6,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA037,6,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,1930,EA037,5,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p79, +Cb19,,1870,EA037,5,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA037,5,"Formerly 'in early adulthood' (code""7"")",ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,1920,EA037,10,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA037,5,,pfeffer1936,EthnographicAtlas_1967_p83, +Cb22,,1920,EA037,5,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA037,3,,kane1939; lafont1939,EthnographicAtlas_1967_p83, +Cb24,Wodaabe of Niger,1950,EA037,6,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,1930,EA037,3,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA037,5,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,,EA037,NA,,,, +Cb28,,1920,EA037,10,Circumcision is relatively recent,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA037,NA,,,, +Cb3,Bamba division,1940,EA037,5,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,1920,EA037,10,,reid1930,EthnographicAtlas_1967_p79, +Cb5,,1910,EA037,6,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p79, +Cb6,,1920,EA037,5,,woodnd,EthnographicAtlas_1967_p79, +Cb7,,1920,EA037,10,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA037,5,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA037,5,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA037,5,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA037,10,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,1860,EA037,10,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA037,10,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA037,10,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA037,6,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA037,NA,,,, +Cc16,,1930,EA037,5,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,1930,EA037,5,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p83, +Cc18,,1910,EA037,10,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA037,10,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA037,6,"Entry follows Kline, but Fuchs reports 'late childhood' (code ""5"") and Le Coeur 'early adulthoold' (code ""7"")",briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,with special reference to the more nomadic northern groups,1910,EA037,10,,adeler1939; tauxier1912,EthnographicAtlas_1967_p83, +Cc3,inhabitants of the oasis of Siwa,1920,EA037,5,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA037,4,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,1910,EA037,5,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p83, +Cc6,,1910,EA037,10,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA037,4,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA037,NA,,,, +Cc9,Ahaggaren tribe,1920,EA037,4,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA037,5,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,1900,EA037,6,"Though general, circumcision is not universal",destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,,EA037,NA,,,, +Cd12,,1870,EA037,5,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,1930,EA037,3,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA037,5,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA037,4,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA037,3,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA037,10,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA037,6,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA037,3,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA037,4,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,1940,EA037,10,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA037,10,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA037,2,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA037,10,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA037,10,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,,,EA037,NA,,,, +Cd7,with special reference to the Zemmur tribe,1910,EA037,3,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA037,10,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA037,10,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA037,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA037,NA,,,, +Ce3,City and environs of Rome,100,EA037,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA037,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA037,1,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA037,1,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA037,1,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA037,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA037,1,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,of the Transvaal,1850,EA037,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No4_Oct_1962, +Cf3,,1930,EA037,1,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA037,1,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA037,1,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA037,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA037,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA037,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA037,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA037,1,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA037,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA037,NA,,,, +Ch11,Viriatino Village,1955,EA037,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA037,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA037,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,,EA037,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA037,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA037,1,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA037,1,,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA037,1,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA037,1,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,,,EA037,NA,,,, +Ci10,Vicinity of Erevan,1900,EA037,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA037,5,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,,,EA037,NA,,,, +Ci2,,,EA037,NA,,,, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA037,10,,gadzhieva1958,EthnographicAtlas_1967_p83, +Ci4,,1920,EA037,10,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA037,10,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA037,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p83, +Ci7,,1900,EA037,10,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p83, +Ci8,,,EA037,NA,,,, +Ci9,,1910,EA037,10,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA037,3,Sweet reports from one month to seven years of age,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA037,10,,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,Unspecified,1920,EA037,4,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA037,2,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA037,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,1930,EA037,5,,dickson1949,EthnographicAtlas_1967_p87, +Cj6,with special reference to the sedentary population,1950,EA037,10,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,,,EA037,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA037,6,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,1950,EA037,10,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA037,10,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA037,10,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA037,5,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA037,10,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA037,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA037,4,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA037,10,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA037,4,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,,EA037,NA,,,, +Ea6,Nomadic branch,1958,EA037,3,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA037,4,,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,1920,EA037,10,,feilberg1952; wilson1926,EthnographicAtlas_1967_p87, +Ea9,,1950,EA037,10,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA037,5,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,1920,EA037,1,,krader1963; schram1954,EthnographicAtlas_1967_p87, +Eb3,Narobanchin Territory,1940,EA037,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p87, +Eb4,,,EA037,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA037,10,,freikin1954; odonovan1882,Ethnology_Vol2_No2_Apr_1963, +Eb6,,,EA037,NA,,,, +Eb7,,1930,EA037,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA037,NA,,,, +Ec1,Sakhalin Island,1920,EA037,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA037,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,1900,EA037,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA037,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA037,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA037,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA037,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA037,1,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA037,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,1900,EA037,1,,shimkin1939,EthnographicAtlas_1967_p87, +Ec9,,1920,EA037,1,,lattimore1933,EthnographicAtlas_1967_p87, +Ed1,Kanghwa Island,1950,EA037,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA037,1,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA037,NA,,,, +Ed14,,,EA037,NA,,,, +Ed15a,,,EA037,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA037,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA037,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA037,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,Aigun District,1920,EA037,1,,shirokogoroff1924,EthnographicAtlas_1967_p87, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA037,1,,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA037,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA037,1,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA037,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA037,1,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA037,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA037,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA037,10,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA037,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA037,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA037,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA037,1,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA037,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA037,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA037,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA037,NA,,,, +Ef11,Village and environs of Senapur,1945,EA037,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA037,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA037,NA,,,, +Ef4,,,EA037,NA,,,, +Ef5,,1900,EA037,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,1940,EA037,1,,roy1915; roy1951,EthnographicAtlas_1967_p87, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA037,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA037,4,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA037,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA037,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA037,1,"But early or late childhood (codes ""4"" or ""5"") for Moslems",dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA037,NA,,,, +Eg12,,,EA037,NA,,,, +Eg13,Bastar State,1941,EA037,1,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA037,1,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA037,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA037,1,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA037,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA037,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA037,1,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA037,1,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,1940,EA037,1,,griffiths1946,EthnographicAtlas_1967_p91, +Eg9,,1930,EA037,1,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA037,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA037,NA,,,, +Eh2,,1900,EA037,3,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA037,4,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA037,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA037,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA037,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,1900,EA037,6,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA037,6,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91, +Eh9,,1930,EA037,10,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA037,1,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA037,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p91, +Ei11,,1910,EA037,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA037,1,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA037,1,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA037,1,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA037,NA,,,, +Ei16,,1910,EA037,1,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA037,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA037,1,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,1940,EA037,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA037,1,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA037,NA,,,, +Ei3,Nondwin Village,1950,EA037,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA037,1,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA037,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA037,1,,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,1910,EA037,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA037,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,,EA037,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA037,1,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA037,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA037,1,,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA037,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA037,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA037,1,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA037,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA037,6,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA037,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA037,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA037,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA037,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,of the Mergui Archipelago,1920,EA037,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p91, +Ej7,,1950,EA037,1,,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,with special reference to those of Trengganu,1940,EA037,10,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA037,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA037,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,1930,EA037,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p91, +Ia11,,1930,EA037,1,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA037,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA037,10,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,1930,EA037,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p95, +Ia15,with special reference to those of the Agusan Valley,1920,EA037,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA037,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA037,NA,,,, +Ia18,,,EA037,NA,,,, +Ia2,,1950,EA037,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA037,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA037,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA037,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA037,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA037,1,,fox1954,EthnographicAtlas_1967_p91, +Ia8,,1900,EA037,1,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA037,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA037,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA037,6,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA037,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,,,EA037,NA,,,, +Ib5,with special reference to the village of Sensuron,1920,EA037,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA037,10,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,with special reference to those of North Pageh,1920,EA037,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p95, +Ib8,with special reference to the Ridan group,1900,EA037,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p95, +Ib9,,,EA037,NA,,,, +Ic1,Borongloe,1940,EA037,5,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA037,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p95, +Ic11,Allang,1950,EA037,10,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA037,5,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA037,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA037,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,with special reference to the Mountain Belu,1950,EA037,10,,vroklage1952,EthnographicAtlas_1967_p95, +Ic4,,,EA037,NA,,,, +Ic5,Bare'e subgroup,1910,EA037,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p95, +Ic6,,1930,EA037,1,,drabbe1940,EthnographicAtlas_1967_p95, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA037,1,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,1890,EA037,1,,pleyte1893,EthnographicAtlas_1967_p95, +Ic9,with special reference to eastern Sumba,1930,EA037,6,,nooteboom1940,EthnographicAtlas_1967_p95, +Id1,Alice Springs and environs,1900,EA037,6,Also subincision,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA037,6,Also subincision at about 17 years of age,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA037,6,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA037,NA,,,, +Id13,,1930,EA037,5,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA037,5,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA037,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA037,5,And subsequently also subincision,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA037,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,with special reference to the Archer River group,1920,EA037,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p95, +Id7,,1940,EA037,6,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA037,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,1910,EA037,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p95, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA037,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA037,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA037,1,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA037,1,"But 'adolescence' (code ""6"") if slashing a boy's penis is equated with circumcision",whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA037,1,,landtman1927,EthnographicAtlas_1967_p95, +Ie14,,1900,EA037,1,,haddon1908,EthnographicAtlas_1967_p95, +Ie15,Kalabu; Northern Abelam,1930,EA037,1,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA037,1,,williams194041,EthnographicAtlas_1967_p95, +Ie17,,,EA037,NA,,,, +Ie18,Bamol Village,1940,EA037,1,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA037,1,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA037,1,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA037,1,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,1900,EA037,1,,malinowski1916,EthnographicAtlas_1967_p95, +Ie22,,1900,EA037,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,1950,EA037,1,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,1870,EA037,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p95, +Ie25,,1920,EA037,1,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,1940,EA037,1,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,1910,EA037,1,,thurnwald1916,EthnographicAtlas_1967_p99, +Ie28,,1940,EA037,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA037,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA037,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA037,1,,pouwer1955,EthnographicAtlas_1967_p99, +Ie31,,1950,EA037,1,But penis-bleeding is performed at the age of 18 to 20,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA037,1,But circumcision was formerly practiced,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA037,NA,,,, +Ie34,,,EA037,NA,,,, +Ie35,,,EA037,NA,,,, +Ie36,,,EA037,NA,,,, +Ie37,,,EA037,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA037,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA037,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA037,6,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA037,1,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,,EA037,NA,,,, +Ie7,with special reference to the Mae group,1950,EA037,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA037,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA037,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA037,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA037,NA,,,, +If11,,1860,EA037,1,,sarfert1919,EthnographicAtlas_1967_p99, +If12,,1940,EA037,1,,mason1954,EthnographicAtlas_1967_p99, +If13,,1900,EA037,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p99, +If14,Makin and Butiritari Islands (N),1890,EA037,5,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA037,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,1960,EA037,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA037,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA037,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA037,1,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA037,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA037,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA037,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,,,EA037,NA,,,, +If8,with special reference to those of Saipa,1950,EA037,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA037,1,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,Northeastern group,1940,EA037,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA037,1,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA037,1,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,,,EA037,NA,,,, +Ig13,,,EA037,NA,,,, +Ig14,,1900,EA037,10,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA037,NA,,,, +Ig16,,,EA037,NA,,,, +Ig17,,,EA037,NA,,,, +Ig18,,,EA037,NA,,,, +Ig19,,,EA037,NA,,,, +Ig2,Kiriwina Island,1910,EA037,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA037,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA037,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA037,1,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA037,5,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,,EA037,NA,,,, +Ig6,,1900,EA037,1,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA037,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA037,NA,,,, +Ig9,Peri Village,1920,EA037,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA037,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,Whitsands,1920,EA037,10,,humphreys1926,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA037,NA,,,, +Ih12,,,EA037,NA,,,, +Ih13,,,EA037,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA037,5,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA037,1,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA037,4,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA037,6,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA037,NA,,,, +Ih6,,,EA037,NA,,,, +Ih7,,,EA037,NA,,,, +Ih8,with special reference to the village of Nakaroka,1940,EA037,6,,quain1949,EthnographicAtlas_1967_p99, +Ih9,,,EA037,NA,,,, +Ii1,with special reference to American Samoa,1920,EA037,5,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,,EA037,NA,,,, +Ii12,Pangai,1920,EA037,6,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA037,6,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA037,5,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA037,6,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA037,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,,,EA037,NA,,,, +Ii5,,,EA037,NA,,,, +Ii6,with special reference to Atafu,1900,EA037,6,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA037,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA037,6,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA037,6,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA037,7,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,,EA037,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA037,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA037,5,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA037,1,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,,EA037,NA,,,, +Ij6,,,EA037,NA,,,, +Ij7,,1900,EA037,6,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,,EA037,NA,,,, +Ij9,,,EA037,NA,,,, +Na1,,1930,EA037,1,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA037,1,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA037,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA037,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA037,1,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA037,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,1860,EA037,1,,helmandlurie1961,EthnographicAtlas_1967_p103, +Na16,,1860,EA037,1,Osgood could not confirm an early report of circumcision by Petitot,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA037,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA037,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA037,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA037,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA037,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA037,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA037,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA037,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA037,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA037,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA037,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA037,1,,jenness1937,EthnographicAtlas_1967_p103, +Na29,,1850,EA037,1,,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA037,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA037,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA037,1,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA037,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA037,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA037,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA037,1,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA037,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA037,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA037,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA037,1,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA037,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA037,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA037,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA037,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA037,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA037,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA037,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA037,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA037,1,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA037,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA037,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA037,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA037,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA037,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA037,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA037,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA037,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA037,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA037,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA037,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA037,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA037,1,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA037,1,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA037,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA037,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA037,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA037,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA037,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA037,1,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA037,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA037,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA037,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA037,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA037,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA037,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,1860,EA037,1,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA037,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p107, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA037,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA037,1,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA037,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA037,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA037,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,1860,EA037,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA037,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA037,1,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA037,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA037,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA037,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA037,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA037,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA037,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA037,1,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,1860,EA037,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA037,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA037,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA037,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA037,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA037,1,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA037,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA037,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA037,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,with special reference to those near Santa Rosa,1860,EA037,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc2,,1850,EA037,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,1860,EA037,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,1860,EA037,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA037,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,1870,EA037,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,Tulare Lake,1860,EA037,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA037,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,1770,EA037,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA037,1,,driver1937; gifford1917,EthnographicAtlas_1967_p107, +Nc28,,1800,EA037,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA037,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA037,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA037,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA037,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,1870,EA037,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc33,,1860,EA037,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA037,1,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA037,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA037,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA037,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA037,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA037,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA037,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA037,1,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,1860,EA037,1,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA037,1,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA037,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA037,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA037,1,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA037,1,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA037,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA037,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA037,1,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA037,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA037,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA037,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA037,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA037,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA037,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA037,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA037,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA037,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA037,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA037,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA037,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA037,1,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA037,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA037,1,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA037,1,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA037,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA037,1,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA037,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA037,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA037,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA037,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA037,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA037,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA037,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA037,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA037,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA037,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA037,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA037,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA037,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA037,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA037,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA037,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA037,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA037,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA037,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA037,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA037,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA037,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA037,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA037,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA037,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA037,1,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA037,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA037,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA037,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA037,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,1860,EA037,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA037,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA037,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA037,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA037,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA037,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,1800,EA037,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,1860,EA037,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA037,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA037,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,1870,EA037,1,,mcallister1937,EthnographicAtlas_1967_p111, +Ne20,,1850,EA037,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p115, +Ne21,,,EA037,NA,,,, +Ne3,Comanche Tribe,1870,EA037,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p111, +Ne4,,1870,EA037,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA037,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,1830,EA037,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p111, +Ne7,,1880,EA037,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,1870,EA037,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA037,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA037,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA037,1,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA037,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA037,1,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA037,1,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA037,NA,,,, +Nf2,,1850,EA037,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p115, +Nf3,Omaha Tribe,1850,EA037,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA037,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,1860,EA037,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA037,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA037,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA037,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,1870,EA037,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA037,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA037,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,1750,EA037,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p115, +Ng12,,1760,EA037,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p115, +Ng13,,,EA037,NA,,,, +Ng14,,,EA037,NA,,,, +Ng15,,,EA037,NA,,,, +Ng2,,,EA037,NA,,,, +Ng3,Upper division in Alabama,1750,EA037,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA037,NA,,,, +Ng5,,1750,EA037,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA037,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA037,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,1560,EA037,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p115, +Ng9,,1920,EA037,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA037,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA037,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA037,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA037,1,,gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA037,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,1920,EA037,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA037,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA037,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA037,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA037,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA037,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,1950,EA037,1,,dozier1954,EthnographicAtlas_1967_p115, +Nh20,,1860,EA037,1,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA037,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA037,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,1870,EA037,1,,gifford1932a,EthnographicAtlas_1967_p115, +Nh24,,1880,EA037,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,1920,EA037,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA037,NA,,,, +Nh27,,,EA037,NA,,,, +Nh3,,1930,EA037,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA037,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA037,1,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA037,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA037,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA037,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,1920,EA037,1,,parsons1939; trager1943,EthnographicAtlas_1967_p115, +Ni1,,1930,EA037,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA037,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA037,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,1900,EA037,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p115, +Ni5,,1570,EA037,1,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA037,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA037,1,,beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA037,NA,,,, +Ni9,,,EA037,NA,,,, +Nj1,Ojitlan,1940,EA037,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA037,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA037,NA,,,, +Nj12,,,EA037,NA,,,, +Nj13,,,EA037,NA,,,, +Nj14,,,EA037,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA037,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA037,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,1940,EA037,1,But Palerm reports that boys were circumcised aboriginally,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA037,NA,,,, +Nj6,,,EA037,NA,,,, +Nj7,with special reference to Ayutla,1930,EA037,1,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA037,1,,foster1948,EthnographicAtlas_1967_p119, +Nj9,,1960,EA037,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA037,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,1900,EA037,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p119, +Sa11,,,EA037,NA,,,, +Sa12,,1948,EA037,1,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA037,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA037,NA,,,, +Sa15,,,EA037,NA,,,, +Sa16,,,EA037,NA,,,, +Sa17,,,EA037,NA,,,, +Sa2,,,EA037,NA,,,, +Sa3,,1930,EA037,1,,wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA037,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA037,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA037,1,Blood letting from the penis was a form of religious sacrifice,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA037,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA037,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA037,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA037,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA037,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,with special reference to the Iroka,1940,EA037,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA037,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA037,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,Goajiro Tribe,1940,EA037,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA037,1,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,1520,EA037,1,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA037,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA037,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA037,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,1930,EA037,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p119, +Sc12,,1910,EA037,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p119, +Sc13,,1950,EA037,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p119, +Sc14,,,EA037,NA,,,, +Sc15,,1910,EA037,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p119, +Sc16,with special reference to the Makitare,1920,EA037,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p119, +Sc17,,1950,EA037,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sc18,,1960,EA037,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA037,1,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA037,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA037,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA037,1,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA037,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA037,1,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,1950,EA037,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p119, +Sc9,,1950,EA037,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p119, +Sd1,Cabrura village,1950,EA037,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA037,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,1920,EA037,1,,nimuendaju1926,EthnographicAtlas_1967_p119, +Sd4,,1950,EA037,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA037,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,1960,EA037,1,,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,1950,EA037,1,,fock1963,EthnographicAtlas_1967_p119, +Sd8,,1950,EA037,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA037,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA037,1,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA037,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,1960,EA037,1,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA037,NA,,,, +Se2,,1940,EA037,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA037,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA037,1,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA037,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA037,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA037,NA,,,, +Se8,Upper Inuya River,1950,EA037,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA037,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA037,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA037,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA037,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA037,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,1900,EA037,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,1540,EA037,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA037,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA037,NA,,,, +Sf9,,,EA037,NA,,,, +Sg1,Eastern and central,1870,EA037,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA037,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA037,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA037,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA037,1,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA037,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA037,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,Those in contact with mission,1800,EA037,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA037,1,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA037,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,1890,EA037,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,1900,EA037,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p123, +Sh8,with special reference to those of the Argentine Chaco,1964,EA037,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA037,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA037,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA037,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA037,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA037,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA037,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA037,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,1900,EA037,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p123, +Si7,with special reference to the Cozarimi,1910,EA037,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA037,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA037,NA,,,, +Sj1,,1950,EA037,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,Taquapiri,1950,EA037,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA037,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA037,1,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA037,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA037,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,Naknenuk subtribe,1880,EA037,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p123, +Sj6,with special reference to the Guajajara subgroup,1930,EA037,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA037,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA037,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,1950,EA037,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA037,10,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA037,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA037,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA037,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA037,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA037,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA037,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA037,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA037,4,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA037,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA037,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA037,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA037,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA037,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA037,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA037,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA037,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA037,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA037,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA037,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA037,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA037,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA037,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA037,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA037,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA037,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA037,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA038,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,,,EA038,NA,,,, +Aa3,Gei/Khauan tribe,1840,EA038,2,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA038,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA038,4,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,,EA038,NA,,,, +Aa7,,,EA038,NA,,,, +Aa8,,,EA038,NA,,,, +Aa9,,,EA038,NA,,,, +Ab1,,1900,EA038,2,,irle1906; vedder1928,EthnographicAtlas_1967_p63, +Ab10,,,EA038,NA,,,, +Ab11,,,EA038,NA,,,, +Ab12,,1830,EA038,5,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p63, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA038,5,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA038,1,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA038,2,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA038,NA,,,, +Ab17,,,EA038,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA038,5,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA038,2,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,1880,EA038,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA038,NA,,,, +Ab21a,,,EA038,NA,,,, +Ab21b,,,EA038,NA,,,, +Ab22,,,EA038,NA,,,, +Ab3,,,EA038,NA,,,, +Ab4,,1920,EA038,3,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA038,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA038,4,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,,,EA038,NA,,,, +Ab8,,,EA038,NA,,,, +Ab9,,1870,EA038,5,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA038,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA038,2,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA038,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,1920,EA038,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p63, +Ac13,,,EA038,NA,,,, +Ac14,,1900,EA038,3,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p63, +Ac15,,,EA038,NA,,,, +Ac16,,1940,EA038,3,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA038,2,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA038,3,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,,EA038,NA,,,, +Ac2,,,EA038,NA,,,, +Ac20,,1920,EA038,3,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA038,5,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p63, +Ac22,,1930,EA038,3,,mertens1935,EthnographicAtlas_1967_p63, +Ac23,with special reference to the western Lele,1950,EA038,5,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,1910,EA038,2,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA038,5,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p63, +Ac26,,1920,EA038,2,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA038,3,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,,EA038,NA,,,, +Ac29,,,EA038,NA,,,, +Ac3,Zambia branch,1900,EA038,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA038,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA038,5,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA038,NA,,,, +Ac33,,,EA038,NA,,,, +Ac34,,,EA038,NA,,,, +Ac35,,,EA038,NA,,,, +Ac36,,,EA038,NA,,,, +Ac37,,,EA038,NA,,,, +Ac38,,,EA038,NA,,,, +Ac39,,,EA038,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA038,2,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,,EA038,NA,,,, +Ac41,,1900,EA038,3,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA038,NA,,,, +Ac43,,,EA038,NA,,,, +Ac5,,,EA038,NA,,,, +Ac6,,1930,EA038,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p63, +Ac7,,,EA038,NA,,,, +Ac8,,1930,EA038,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA038,5,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,1950,EA038,1,,grottanelli1955,EthnographicAtlas_1967_p63, +Ad10,,1910,EA038,5,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,1930,EA038,5,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA038,2,"Formerly 'complete segregation with own peers' (code ""5"")",levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA038,1,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,,,EA038,NA,,,, +Ad15,,,EA038,NA,,,, +Ad16,,1920,EA038,5,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA038,5,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,,EA038,NA,,,, +Ad19,,1910,EA038,5,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA038,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA038,5,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,,EA038,NA,,,, +Ad22,,1950,EA038,5,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,,EA038,NA,,,, +Ad24,,,EA038,NA,,,, +Ad25,,,EA038,NA,,,, +Ad26,,1910,EA038,2,,sick1916,Ethnology_Vol7_No2_Apr_1968, +Ad27,,,EA038,NA,,,, +Ad28,,,EA038,NA,,,, +Ad29,,,EA038,NA,,,, +Ad3,,1910,EA038,5,Youths are segregated for two to three months at their initiation into an age-grade and wander over the countryside in a group for two months thereafter,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,,EA038,NA,,,, +Ad31,,,EA038,NA,,,, +Ad32,,,EA038,NA,,,, +Ad33,,1900,EA038,5,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p67, +Ad34,,,EA038,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA038,5,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p67, +Ad36,,,EA038,NA,,,, +Ad37,,1940,EA038,5,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,,EA038,NA,,,, +Ad39,,,EA038,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA038,5,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA038,2,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,,EA038,NA,,,, +Ad42,,,EA038,NA,,,, +Ad43,,,EA038,NA,,,, +Ad44,,,EA038,NA,,,, +Ad45,,,EA038,NA,,,, +Ad46,,1950,EA038,3,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p67, +Ad47,,1900,EA038,5,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA038,NA,,,, +Ad49,,,EA038,NA,,,, +Ad5,,,EA038,NA,,,, +Ad50,,,EA038,NA,,,, +Ad51,,1930,EA038,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA038,5,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA038,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA038,2,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,1900,EA038,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA038,1,,winter1956; winter1958,EthnographicAtlas_1967_p67, +Ae10,,1910,EA038,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA038,5,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA038,1,"Formerly 'complete segregation with own peers' (code ""5"")",ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA038,NA,,,, +Ae14,,1950,EA038,2,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,,EA038,NA,,,, +Ae16,,,EA038,NA,,,, +Ae17,,,EA038,NA,,,, +Ae18,,,EA038,NA,,,, +Ae19,,,EA038,NA,,,, +Ae2,,,EA038,NA,,,, +Ae20,,1940,EA038,2,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,,EA038,NA,,,, +Ae22,,,EA038,NA,,,, +Ae23,,,EA038,NA,,,, +Ae24,,,EA038,NA,,,, +Ae25,,,EA038,NA,,,, +Ae26,,1910,EA038,3,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,,,EA038,NA,,,, +Ae28,,,EA038,NA,,,, +Ae29,,,EA038,NA,,,, +Ae3,,1910,EA038,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,,EA038,NA,,,, +Ae31,,1920,EA038,2,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA038,NA,,,, +Ae33,,,EA038,NA,,,, +Ae34,,,EA038,NA,,,, +Ae35,,,EA038,NA,,,, +Ae36,,1920,EA038,2,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA038,NA,,,, +Ae38,,,EA038,NA,,,, +Ae39,,1920,EA038,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA038,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,,EA038,NA,,,, +Ae41,,1940,EA038,2,,andersson1953,EthnographicAtlas_1967_p67, +Ae42,,1900,EA038,2,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA038,2,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,,EA038,NA,,,, +Ae45,,,EA038,NA,,,, +Ae46,,,EA038,NA,,,, +Ae47,,,EA038,NA,,,, +Ae48,,1930,EA038,5,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae49,,,EA038,NA,,,, +Ae5,,1910,EA038,2,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae50,,,EA038,NA,,,, +Ae51,,,EA038,NA,,,, +Ae52,,,EA038,NA,,,, +Ae53,,,EA038,NA,,,, +Ae54,,,EA038,NA,,,, +Ae55,,,EA038,NA,,,, +Ae56,,,EA038,NA,,,, +Ae57,,1930,EA038,2,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA038,5,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA038,NA,,,, +Ae6,,,EA038,NA,,,, +Ae7,,1910,EA038,2,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA038,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,,EA038,NA,,,, +Af1,City and environs of Abomey,1890,EA038,2,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA038,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA038,5,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,,,EA038,NA,,,, +Af13,,1920,EA038,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,,EA038,NA,,,, +Af15,,1920,EA038,5,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,,EA038,NA,,,, +Af17,,,EA038,NA,,,, +Af18,,,EA038,NA,,,, +Af19,,,EA038,NA,,,, +Af2,,1950,EA038,2,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA038,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,,,EA038,NA,,,, +Af22,,,EA038,NA,,,, +Af23,with special reference to the village of Mgbom,1950,EA038,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,,EA038,NA,,,, +Af25,,1930,EA038,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,with special reference to the Etsako,1900,EA038,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,,EA038,NA,,,, +Af28,,,EA038,NA,,,, +Af29,,1950,EA038,2,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA038,3,"But 'absence of segregation' (code ""1"") for about 50 per cent of boys",busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,,EA038,NA,,,, +Af31,,,EA038,NA,,,, +Af32,,,EA038,NA,,,, +Af33,"Ekiti Division, Ondo Prov.",1950,EA038,1,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA038,NA,,,, +Af35,,,EA038,NA,,,, +Af36,,,EA038,NA,,,, +Af37,,,EA038,NA,,,, +Af38,,,EA038,NA,,,, +Af39,,,EA038,NA,,,, +Af4,,,EA038,NA,,,, +Af40,,,EA038,NA,,,, +Af41,,,EA038,NA,,,, +Af42,,,EA038,NA,,,, +Af43,,,EA038,NA,,,, +Af44,,,EA038,NA,,,, +Af45,,,EA038,NA,,,, +Af46,,,EA038,NA,,,, +Af47,,,EA038,NA,,,, +Af48,,,EA038,NA,,,, +Af49,,,EA038,NA,,,, +Af5,,1930,EA038,5,Boys are secluded at initiation for several weeks; in former times the rites might last for several years,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,,EA038,NA,,,, +Af51,,,EA038,NA,,,, +Af52,,,EA038,NA,,,, +Af53,,,EA038,NA,,,, +Af54,,,EA038,NA,,,, +Af55,,,EA038,NA,,,, +Af56,,,EA038,NA,,,, +Af57,,,EA038,NA,,,, +Af58,,,EA038,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA038,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA038,2,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA038,2,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,,EA038,NA,,,, +Ag1,,,EA038,NA,,,, +Ag10,,1940,EA038,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,,EA038,NA,,,, +Ag12,,1910,EA038,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA038,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,,EA038,NA,,,, +Ag15,,,EA038,NA,,,, +Ag16,,1930,EA038,2,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p71, +Ag17,,,EA038,NA,,,, +Ag18,,,EA038,NA,,,, +Ag19,,,EA038,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA038,5,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,,EA038,NA,,,, +Ag21,,1910,EA038,2,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,with special reference to those of Sine,1920,EA038,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p71, +Ag23,,1910,EA038,2,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,,EA038,NA,,,, +Ag25,,,EA038,NA,,,, +Ag26,,,EA038,NA,,,, +Ag27,,1910,EA038,2,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,,EA038,NA,,,, +Ag29,,,EA038,NA,,,, +Ag3,,,EA038,NA,,,, +Ag30,,,EA038,NA,,,, +Ag31,,,EA038,NA,,,, +Ag32,,,EA038,NA,,,, +Ag33,,,EA038,NA,,,, +Ag34,,,EA038,NA,,,, +Ag35,,1910,EA038,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA038,NA,,,, +Ag37,,,EA038,NA,,,, +Ag38,,,EA038,NA,,,, +Ag39,,1910,EA038,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA038,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,,EA038,NA,,,, +Ag41,,,EA038,NA,,,, +Ag42,,,EA038,NA,,,, +Ag43,,,EA038,NA,,,, +Ag44,,1910,EA038,4,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,,,EA038,NA,,,, +Ag46,,,EA038,NA,,,, +Ag47,,,EA038,NA,,,, +Ag48,,,EA038,NA,,,, +Ag49,,1930,EA038,2,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA038,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,,EA038,NA,,,, +Ag51,,,EA038,NA,,,, +Ag52,,,EA038,NA,,,, +Ag53,with special reference to those of Garango,1960,EA038,2,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,,EA038,NA,,,, +Ag6,,1890,EA038,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA038,5,,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA038,5,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,1930,EA038,2,,labouret1934; sidibe1932,EthnographicAtlas_1967_p71, +Ah1,Zaria Province,1930,EA038,2,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA038,NA,,,, +Ah11,,,EA038,NA,,,, +Ah12,,,EA038,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA038,2,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA038,2,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,,EA038,NA,,,, +Ah16,,,EA038,NA,,,, +Ah17,,,EA038,NA,,,, +Ah18,,,EA038,NA,,,, +Ah19,,,EA038,NA,,,, +Ah2,,,EA038,NA,,,, +Ah20,,,EA038,NA,,,, +Ah21,,,EA038,NA,,,, +Ah22,,,EA038,NA,,,, +Ah23,,,EA038,NA,,,, +Ah24,,,EA038,NA,,,, +Ah25,,1920,EA038,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,,EA038,NA,,,, +Ah27,,,EA038,NA,,,, +Ah28,,,EA038,NA,,,, +Ah29,,,EA038,NA,,,, +Ah3,Tar of Benue Province,1920,EA038,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,1920,EA038,3,,meek1931b,EthnographicAtlas_1967_p75, +Ah31,,,EA038,NA,,,, +Ah32,,,EA038,NA,,,, +Ah33,,,EA038,NA,,,, +Ah34,,,EA038,NA,,,, +Ah35,,,EA038,NA,,,, +Ah36,,1920,EA038,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,,EA038,NA,,,, +Ah38,,1930,EA038,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA038,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,1920,EA038,1,But young men not infrequently go to live with a MoBr,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p75, +Ah5,,1930,EA038,1,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,1920,EA038,3,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA038,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,1910,EA038,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA038,2,,diamond1964; gunn1953,EthnographicAtlas_1967_p75, +Ai1,,,EA038,NA,,,, +Ai10,Nuba Hills,1940,EA038,2,,nadel1947,EthnographicAtlas_1967_p75, +Ai11,,1900,EA038,5,Inferred from presence of men's clubhouses,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA038,2,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,,EA038,NA,,,, +Ai14,,1920,EA038,3,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA038,2,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,,EA038,NA,,,, +Ai17,,,EA038,NA,,,, +Ai18,,,EA038,NA,,,, +Ai19,,1910,EA038,2,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA038,NA,,,, +Ai20,,,EA038,NA,,,, +Ai21,,,EA038,NA,,,, +Ai22,,1890,EA038,2,,delafosse1897,EthnographicAtlas_1967_p75, +Ai23,,1920,EA038,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,,EA038,NA,,,, +Ai25,,,EA038,NA,,,, +Ai26,,,EA038,NA,,,, +Ai27,,,EA038,NA,,,, +Ai28,,1910,EA038,2,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA038,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA038,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA038,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA038,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA038,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA038,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,,EA038,NA,,,, +Ai35,,1870,EA038,2,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,1920,EA038,5,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,,EA038,NA,,,, +Ai38,,1930,EA038,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai39,,1940,EA038,3,,nadel1947,EthnographicAtlas_1967_p75, +Ai4,,1920,EA038,3,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,,EA038,NA,,,, +Ai41,,1930,EA038,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai42,,,EA038,NA,,,, +Ai43,,1930,EA038,2,,nadel1947; stevenson1940,EthnographicAtlas_1967_p75, +Ai44,,1920,EA038,2,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,,EA038,NA,,,, +Ai46,,,EA038,NA,,,, +Ai47,Northern division,1939,EA038,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,,EA038,NA,,,, +Ai6,Shilluk Kingdom,1900,EA038,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,,EA038,NA,,,, +Ai8,,1930,EA038,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p75, +Ai9,Around Yagoua in Cameroon,1910,EA038,5,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,,EA038,NA,,,, +Aj10,,1920,EA038,5,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA038,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA038,5,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,,EA038,NA,,,, +Aj14,,,EA038,NA,,,, +Aj15,,1900,EA038,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,with special reference to the Riverain Mondari,1930,EA038,2,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p79, +Aj17,,1890,EA038,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA038,2,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,,EA038,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA038,5,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,,EA038,NA,,,, +Aj21,,1930,EA038,2,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,1930,EA038,2,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA038,2,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA038,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,,EA038,NA,,,, +Aj26,,,EA038,NA,,,, +Aj27,,,EA038,NA,,,, +Aj28,,,EA038,NA,,,, +Aj29,,1950,EA038,5,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA038,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA038,NA,,,, +Aj31,,,EA038,NA,,,, +Aj4,,1920,EA038,5,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,,EA038,NA,,,, +Aj6,,1940,EA038,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA038,5,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA038,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA038,5,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA038,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,,EA038,NA,,,, +Ca11,,,EA038,NA,,,, +Ca12,,,EA038,NA,,,, +Ca13,,,EA038,NA,,,, +Ca14,,,EA038,NA,,,, +Ca15,,,EA038,NA,,,, +Ca16,,,EA038,NA,,,, +Ca17,,,EA038,NA,,,, +Ca18,,,EA038,NA,,,, +Ca19,,1950,EA038,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA038,5,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,,EA038,NA,,,, +Ca21,,,EA038,NA,,,, +Ca22,,,EA038,NA,,,, +Ca23,,,EA038,NA,,,, +Ca24,,,EA038,NA,,,, +Ca25,,,EA038,NA,,,, +Ca26,,,EA038,NA,,,, +Ca27,,,EA038,NA,,,, +Ca28,,,EA038,NA,,,, +Ca29,,,EA038,NA,,,, +Ca3,,,EA038,NA,,,, +Ca30,,,EA038,NA,,,, +Ca31,,1860,EA038,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,1860,EA038,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca33,,1860,EA038,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca34,,,EA038,NA,,,, +Ca35,,,EA038,NA,,,, +Ca36,,1860,EA038,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,,,EA038,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA038,1,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,,EA038,NA,,,, +Ca4,,,EA038,NA,,,, +Ca40,,1950,EA038,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,,EA038,NA,,,, +Ca42,,,EA038,NA,,,, +Ca43,,,EA038,NA,,,, +Ca5,,,EA038,NA,,,, +Ca6,,,EA038,NA,,,, +Ca7,Gondar district,1950,EA038,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,,EA038,NA,,,, +Ca9,,,EA038,NA,,,, +Cb1,,,EA038,NA,,,, +Cb10,,1920,EA038,2,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA038,NA,,,, +Cb12,,,EA038,NA,,,, +Cb13,,,EA038,NA,,,, +Cb14,,,EA038,NA,,,, +Cb15,with special reference to the Humr,1940,EA038,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA038,2,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA038,2,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,,EA038,NA,,,, +Cb19,,1870,EA038,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA038,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,,EA038,NA,,,, +Cb21,,1930,EA038,2,,pfeffer1936,EthnographicAtlas_1967_p83, +Cb22,,,EA038,NA,,,, +Cb23,,,EA038,NA,,,, +Cb24,Wodaabe of Niger,1950,EA038,2,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,,EA038,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA038,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,,EA038,NA,,,, +Cb28,,,EA038,NA,,,, +Cb29,,,EA038,NA,,,, +Cb3,,,EA038,NA,,,, +Cb4,,,EA038,NA,,,, +Cb5,,,EA038,NA,,,, +Cb6,,1920,EA038,1,,woodnd,EthnographicAtlas_1967_p79, +Cb7,,1920,EA038,2,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA038,1,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA038,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA038,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA038,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,,EA038,NA,,,, +Cc12,,,EA038,NA,,,, +Cc13,,1920,EA038,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,,EA038,NA,,,, +Cc15,,,EA038,NA,,,, +Cc16,,1930,EA038,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,,EA038,NA,,,, +Cc18,,1910,EA038,3,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,,EA038,NA,,,, +Cc2,,,EA038,NA,,,, +Cc20,,,EA038,NA,,,, +Cc3,,,EA038,NA,,,, +Cc4,,1920,EA038,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,,EA038,NA,,,, +Cc6,,1910,EA038,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA038,1,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA038,NA,,,, +Cc9,Ahaggaren tribe,1920,EA038,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,,,EA038,NA,,,, +Cd10,,,EA038,NA,,,, +Cd11,,,EA038,NA,,,, +Cd12,,1870,EA038,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,,EA038,NA,,,, +Cd14,,,EA038,NA,,,, +Cd15,,,EA038,NA,,,, +Cd16,,,EA038,NA,,,, +Cd17,,,EA038,NA,,,, +Cd18,,,EA038,NA,,,, +Cd19,,,EA038,NA,,,, +Cd2,Town and environs of Silwa,1950,EA038,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,,EA038,NA,,,, +Cd21,,,EA038,NA,,,, +Cd3,Entirety: Moroccan,1920,EA038,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA038,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA038,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,with special reference to the New Empire,-1400,EA038,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,,,EA038,NA,,,, +Cd8,,1910,EA038,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,,EA038,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA038,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA038,NA,,,, +Ce3,City and environs of Rome,100,EA038,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA038,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA038,1,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA038,1,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA038,1,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA038,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA038,1,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,of the Transvaal,1850,EA038,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No4_Oct_1962, +Cf3,,1930,EA038,1,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA038,1,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA038,1,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA038,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA038,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA038,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA038,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA038,1,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA038,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA038,NA,,,, +Ch11,Viriatino Village,1955,EA038,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA038,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA038,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,,EA038,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA038,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA038,1,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA038,1,,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA038,1,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA038,1,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,with special reference to the Baga Dorbed group,1920,EA038,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p83, +Ci10,Vicinity of Erevan,1900,EA038,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA038,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,,,EA038,NA,,,, +Ci2,,,EA038,NA,,,, +Ci3,,,EA038,NA,,,, +Ci4,,1920,EA038,4,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA038,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA038,NA,,,, +Ci7,,,EA038,NA,,,, +Ci8,,,EA038,NA,,,, +Ci9,,,EA038,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA038,1,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,,,EA038,NA,,,, +Cj2,Unspecified,1920,EA038,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA038,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA038,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,,EA038,NA,,,, +Cj6,,,EA038,NA,,,, +Cj7,,,EA038,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA038,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,,EA038,NA,,,, +Ea1,,1950,EA038,1,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,,,EA038,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA038,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA038,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA038,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA038,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA038,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA038,1,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,1890,EA038,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA038,1,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA038,1,,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,,EA038,NA,,,, +Ea9,,1950,EA038,1,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA038,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,1920,EA038,1,,krader1963; schram1954,EthnographicAtlas_1967_p87, +Eb3,Narobanchin Territory,1940,EA038,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p87, +Eb4,,,EA038,NA,,,, +Eb5,,,EA038,NA,,,, +Eb6,,,EA038,NA,,,, +Eb7,,1930,EA038,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA038,NA,,,, +Ec1,Sakhalin Island,1920,EA038,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA038,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,,EA038,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA038,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA038,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA038,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA038,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA038,1,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA038,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,,EA038,NA,,,, +Ec9,,,EA038,NA,,,, +Ed1,Kanghwa Island,1950,EA038,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA038,1,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA038,NA,,,, +Ed14,,,EA038,NA,,,, +Ed15a,,,EA038,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA038,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA038,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA038,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,,,EA038,NA,,,, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA038,1,,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA038,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA038,1,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA038,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA038,1,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA038,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA038,5,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA038,1,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA038,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,,,EA038,NA,,,, +Ee5,with special reference to the Shina tribe,1870,EA038,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA038,1,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA038,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA038,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA038,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA038,NA,,,, +Ef11,Village and environs of Senapur,1945,EA038,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA038,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA038,NA,,,, +Ef4,,,EA038,NA,,,, +Ef5,,1900,EA038,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,1940,EA038,5,,roy1915; roy1951,EthnographicAtlas_1967_p87, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA038,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA038,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA038,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA038,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA038,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA038,NA,,,, +Eg12,,,EA038,NA,,,, +Eg13,Bastar State,1941,EA038,5,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA038,1,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA038,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA038,5,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA038,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA038,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA038,3,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA038,5,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,1940,EA038,1,,griffiths1946,EthnographicAtlas_1967_p91, +Eg9,,1930,EA038,5,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA038,5,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA038,NA,,,, +Eh2,,1900,EA038,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA038,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA038,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA038,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA038,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,1900,EA038,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA038,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91, +Eh9,,1930,EA038,1,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA038,2,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA038,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p91, +Ei11,,1910,EA038,5,"Bachelor houses present, at least formerly",bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA038,4,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA038,5,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA038,5,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA038,NA,,,, +Ei16,,1910,EA038,4,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA038,NA,,,, +Ei18,,,EA038,NA,,,, +Ei19,,1940,EA038,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA038,5,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA038,NA,,,, +Ei3,Nondwin Village,1950,EA038,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA038,4,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA038,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA038,4,"After twelve or thirteen years of age, boys go to live in the homes of marriageable girls",das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,,EA038,NA,,,, +Ei8,with special reference to those of the Jaintia Hills,1900,EA038,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,,EA038,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA038,5,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA038,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,,,EA038,NA,,,, +Ej12,,1960,EA038,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA038,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA038,1,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA038,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA038,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA038,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA038,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA038,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA038,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,of the Mergui Archipelago,1920,EA038,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p91, +Ej7,,,EA038,NA,,,, +Ej8,with special reference to those of Trengganu,1940,EA038,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA038,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA038,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,,EA038,NA,,,, +Ia11,,1930,EA038,5,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA038,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA038,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,,EA038,NA,,,, +Ia15,,,EA038,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA038,2,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA038,NA,,,, +Ia18,,,EA038,NA,,,, +Ia2,,1950,EA038,2,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA038,4,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA038,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA038,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA038,3,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA038,1,,fox1954,EthnographicAtlas_1967_p91, +Ia8,,1900,EA038,2,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA038,5,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA038,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA038,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA038,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,with special reference to the Toba group,1930,EA038,2,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p95, +Ib5,with special reference to the village of Sensuron,1920,EA038,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA038,2,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,,,EA038,NA,,,, +Ib8,with special reference to the Ridan group,1900,EA038,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p95, +Ib9,,,EA038,NA,,,, +Ic1,Borongloe,1940,EA038,1,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA038,NA,,,, +Ic11,Allang,1950,EA038,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA038,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA038,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA038,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,with special reference to the Mountain Belu,1950,EA038,1,,vroklage1952,EthnographicAtlas_1967_p95, +Ic4,,,EA038,NA,,,, +Ic5,Bare'e subgroup,1910,EA038,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p95, +Ic6,,1930,EA038,2,,drabbe1940,EthnographicAtlas_1967_p95, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA038,1,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,,EA038,NA,,,, +Ic9,with special reference to eastern Sumba,1930,EA038,1,,nooteboom1940,EthnographicAtlas_1967_p95, +Id1,Alice Springs and environs,1900,EA038,2,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA038,2,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA038,2,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA038,NA,,,, +Id13,,1930,EA038,5,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA038,5,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA038,4,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA038,2,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA038,2,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,,,EA038,NA,,,, +Id7,,,EA038,NA,,,, +Id8,,,EA038,NA,,,, +Id9,,,EA038,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA038,3,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA038,3,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA038,2,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA038,NA,Temporary segregation only,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA038,1,,landtman1927,EthnographicAtlas_1967_p95, +Ie14,,,EA038,NA,,,, +Ie15,,,EA038,NA,,,, +Ie16,,1940,EA038,5,,williams194041,EthnographicAtlas_1967_p95, +Ie17,,1940,EA038,5,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA038,5,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA038,5,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA038,5,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA038,3,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,1900,EA038,5,,malinowski1916,EthnographicAtlas_1967_p95, +Ie22,,1900,EA038,5,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,,EA038,NA,,,, +Ie24,,,EA038,NA,,,, +Ie25,,1920,EA038,5,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,1940,EA038,5,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,,EA038,NA,,,, +Ie28,,1940,EA038,5,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA038,5,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA038,1,Boys are secluded for three months during puberty initiation,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA038,NA,,,, +Ie31,,1950,EA038,5,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,,EA038,NA,,,, +Ie33,with special reference to the village of Muramarew,1950,EA038,5,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA038,NA,,,, +Ie35,,1930,EA038,5,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA038,NA,,,, +Ie37,,,EA038,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA038,2,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA038,5,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA038,5,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA038,5,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,,EA038,NA,,,, +Ie7,with special reference to the Mae group,1950,EA038,5,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA038,5,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA038,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA038,1,"Formerly 'complete segregation with own peers' (code ""5"")",barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA038,NA,,,, +If11,,1860,EA038,2,,sarfert1919,EthnographicAtlas_1967_p99, +If12,,,EA038,NA,,,, +If13,,,EA038,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA038,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA038,5,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,1960,EA038,2,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA038,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA038,5,But the men's house is now obsolescent,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA038,1,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA038,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,,EA038,NA,,,, +If6,Island,1910,EA038,5,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,with special reference to the inhabitants of Onotoa,1940,EA038,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p99, +If8,with special reference to those of Saipa,1950,EA038,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA038,5,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,Northeastern group,1940,EA038,1,Nearly all young men over fourteen leave their homes for a three-year period of contract labor on plantations,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA038,5,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,,EA038,NA,,,, +Ig12,with special reference to the Varisi,1900,EA038,5,,scheffler1965,EthnographicAtlas_1967_p99, +Ig13,,1900,EA038,5,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p99, +Ig14,,1900,EA038,5,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA038,NA,,,, +Ig16,,,EA038,NA,,,, +Ig17,,,EA038,NA,,,, +Ig18,,,EA038,NA,,,, +Ig19,,,EA038,NA,,,, +Ig2,Kiriwina Island,1910,EA038,5,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,,,EA038,NA,,,, +Ig21,with special reference to Boieng Island,1930,EA038,5,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA038,5,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA038,5,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,1920,EA038,2,,fortune1932b,EthnographicAtlas_1967_p99, +Ig6,,1900,EA038,5,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA038,5,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA038,NA,,,, +Ig9,Peri Village,1920,EA038,3,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA038,5,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,Whitsands,1920,EA038,5,,humphreys1926,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA038,NA,,,, +Ih12,,,EA038,NA,,,, +Ih13,,,EA038,NA,,,, +Ih14,,,EA038,NA,,,, +Ih2,Malekula Island,1930,EA038,5,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA038,5,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA038,5,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA038,NA,,,, +Ih6,,1890,EA038,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p99, +Ih7,,1910,EA038,5,,hadfield1920; ray1917,EthnographicAtlas_1967_p99, +Ih8,,,EA038,NA,,,, +Ih9,Graciosa Bay,1930,EA038,5,,davenport1964,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA038,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,,EA038,NA,,,, +Ii12,Pangai,1920,EA038,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA038,5,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA038,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA038,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA038,1,But young men enter a men's house at the age of 18 or 20,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA038,5,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA038,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p99, +Ii6,with special reference to Atafu,1900,EA038,5,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA038,5,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA038,5,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,,EA038,NA,,,, +Ij1,,1820,EA038,1,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,,EA038,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA038,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA038,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,,EA038,NA,,,, +Ij5,,,EA038,NA,,,, +Ij6,,,EA038,NA,,,, +Ij7,,,EA038,NA,,,, +Ij8,,,EA038,NA,,,, +Ij9,,,EA038,NA,,,, +Na1,,,EA038,NA,,,, +Na10,,1930,EA038,2,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA038,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA038,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA038,1,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA038,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,1860,EA038,1,,helmandlurie1961,EthnographicAtlas_1967_p103, +Na16,,,EA038,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA038,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA038,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA038,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA038,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA038,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA038,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA038,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA038,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA038,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA038,3,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA038,2,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,,EA038,NA,,,, +Na29,,,EA038,NA,,,, +Na3,Coronation Gulf,1920,EA038,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA038,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA038,1,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA038,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA038,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA038,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA038,1,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA038,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA038,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA038,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA038,1,,jenness1935,EthnographicAtlas_1967_p103, +Na4,,,EA038,NA,,,, +Na40,,,EA038,NA,,,, +Na41,Mainland division,1700,EA038,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA038,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA038,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA038,NA,,,, +Na45,,1900,EA038,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA038,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA038,2,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA038,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,,,EA038,NA,,,, +Na9,Unalaska Branch (Eastern Aleut),1830,EA038,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA038,3,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA038,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA038,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA038,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA038,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA038,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA038,1,But boys of fourteen or fifteen leave the village in quest of guardian spirits and do not return for a year or more,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,,EA038,NA,,,, +Nb17,,,EA038,NA,,,, +Nb18,,,EA038,NA,,,, +Nb19,,1850,EA038,1,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA038,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA038,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA038,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA038,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA038,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA038,1,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA038,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA038,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA038,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA038,2,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA038,2,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA038,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,,EA038,NA,,,, +Nb31,,,EA038,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA038,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,,EA038,NA,,,, +Nb34,,,EA038,NA,,,, +Nb35,,,EA038,NA,,,, +Nb36,,,EA038,NA,,,, +Nb37,,,EA038,NA,,,, +Nb38,,,EA038,NA,,,, +Nb39,,1860,EA038,1,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA038,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA038,3,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA038,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA038,3,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA038,3,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA038,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,,EA038,NA,,,, +Nc10,,1860,EA038,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA038,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA038,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA038,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA038,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA038,1,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,,EA038,NA,,,, +Nc17,,,EA038,NA,,,, +Nc18,"Clear Lake, Village of Cignon",1860,EA038,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,,,EA038,NA,,,, +Nc2,,,EA038,NA,,,, +Nc20,,1860,EA038,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,,EA038,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA038,2,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,,EA038,NA,,,, +Nc24,Tulare Lake,1860,EA038,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA038,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,,EA038,NA,,,, +Nc27,,,EA038,NA,,,, +Nc28,,,EA038,NA,,,, +Nc29,,,EA038,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA038,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,,EA038,NA,,,, +Nc31,,,EA038,NA,,,, +Nc32,,,EA038,NA,,,, +Nc33,,1860,EA038,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA038,1,But boys were secluded for two months at puberty,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA038,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA038,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA038,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA038,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA038,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA038,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA038,1,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,,EA038,NA,,,, +Nd11,with special reference to the southeastern Shuswap,1850,EA038,2,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA038,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA038,2,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA038,2,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA038,1,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA038,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,,EA038,NA,,,, +Nd18,,1860,EA038,1,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,,EA038,NA,,,, +Nd2,,1860,EA038,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA038,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA038,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA038,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA038,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA038,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA038,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA038,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA038,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,,EA038,NA,,,, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA038,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA038,1,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA038,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA038,1,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA038,1,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA038,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA038,1,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA038,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA038,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA038,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA038,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA038,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA038,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA038,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA038,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA038,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA038,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA038,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA038,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA038,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA038,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA038,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,,EA038,NA,,,, +Nd59,,1860,EA038,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA038,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA038,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA038,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA038,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA038,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA038,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA038,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA038,1,"""Sometimes a boy stayed with father's father, occasionally with mother's father""",drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA038,1,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA038,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA038,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA038,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,,,EA038,NA,,,, +Ne10,,,EA038,NA,,,, +Ne11,,,EA038,NA,,,, +Ne12,,1850,EA038,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA038,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA038,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA038,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,,EA038,NA,,,, +Ne17,,1860,EA038,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA038,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA038,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,1870,EA038,1,,mcallister1937,EthnographicAtlas_1967_p111, +Ne20,,,EA038,NA,,,, +Ne21,,,EA038,NA,,,, +Ne3,,,EA038,NA,,,, +Ne4,,,EA038,NA,,,, +Ne5,,1860,EA038,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,1830,EA038,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p111, +Ne7,,1880,EA038,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,,EA038,NA,,,, +Ne9,,1860,EA038,1,But strong brother-sister avoidance prevailed,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA038,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA038,1,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA038,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA038,1,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA038,NA,,,, +Nf15,,,EA038,NA,,,, +Nf2,,1850,EA038,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p115, +Nf3,Omaha Tribe,1850,EA038,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,,EA038,NA,,,, +Nf5,,1860,EA038,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA038,3,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA038,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA038,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,,EA038,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA038,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA038,2,Boys were segregated for one year at puberty,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,,EA038,NA,,,, +Ng12,,1760,EA038,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p115, +Ng13,,,EA038,NA,,,, +Ng14,,,EA038,NA,,,, +Ng15,,,EA038,NA,,,, +Ng2,,,EA038,NA,,,, +Ng3,,,EA038,NA,,,, +Ng4,,,EA038,NA,,,, +Ng5,,1750,EA038,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA038,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,,,EA038,NA,,,, +Ng8,,,EA038,NA,,,, +Ng9,,1920,EA038,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA038,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA038,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,,,EA038,NA,,,, +Nh12,,1920,EA038,1,,gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA038,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,1920,EA038,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA038,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA038,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA038,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA038,2,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA038,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,1950,EA038,1,,dozier1954,EthnographicAtlas_1967_p115, +Nh20,,,EA038,NA,,,, +Nh21,,,EA038,NA,,,, +Nh22,,1860,EA038,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,,EA038,NA,,,, +Nh24,,1880,EA038,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,1920,EA038,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA038,NA,,,, +Nh27,,,EA038,NA,,,, +Nh3,,1930,EA038,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA038,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA038,1,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA038,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA038,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA038,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,,EA038,NA,,,, +Ni1,,1930,EA038,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA038,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA038,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,1900,EA038,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p115, +Ni5,,1570,EA038,1,,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA038,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA038,1,,beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA038,NA,,,, +Ni9,,,EA038,NA,,,, +Nj1,Ojitlan,1940,EA038,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA038,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA038,NA,,,, +Nj12,,,EA038,NA,,,, +Nj13,,,EA038,NA,,,, +Nj14,,,EA038,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA038,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,,,EA038,NA,,,, +Nj4,,1940,EA038,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA038,NA,,,, +Nj6,,,EA038,NA,,,, +Nj7,with special reference to Ayutla,1930,EA038,1,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA038,NA,,,, +Nj9,,1960,EA038,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA038,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,1900,EA038,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p119, +Sa11,,,EA038,NA,,,, +Sa12,,1948,EA038,1,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA038,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA038,NA,,,, +Sa15,,,EA038,NA,,,, +Sa16,,,EA038,NA,,,, +Sa17,,,EA038,NA,,,, +Sa2,,,EA038,NA,,,, +Sa3,,1930,EA038,1,,wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA038,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA038,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA038,5,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA038,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA038,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA038,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA038,5,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,,EA038,NA,,,, +Sb3,,,EA038,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA038,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA038,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,,,EA038,NA,,,, +Sb7,with special reference to the Pariri,1950,EA038,1,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,,EA038,NA,,,, +Sb9,,1930,EA038,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA038,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,,EA038,NA,,,, +Sc11,,,EA038,NA,,,, +Sc12,,,EA038,NA,,,, +Sc13,,,EA038,NA,,,, +Sc14,,,EA038,NA,,,, +Sc15,,,EA038,NA,,,, +Sc16,with special reference to the Makitare,1920,EA038,2,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p119, +Sc17,,,EA038,NA,,,, +Sc18,,1960,EA038,2,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,,EA038,NA,,,, +Sc3,Barama River,1930,EA038,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA038,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA038,1,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,,,EA038,NA,,,, +Sc7,,,EA038,NA,,,, +Sc8,,,EA038,NA,,,, +Sc9,,,EA038,NA,,,, +Sd1,Cabrura village,1950,EA038,5,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA038,5,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,,EA038,NA,,,, +Sd4,,,EA038,NA,,,, +Sd5,,,EA038,NA,,,, +Sd6,,1960,EA038,1,,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,1950,EA038,1,,fock1963,EthnographicAtlas_1967_p119, +Sd8,,,EA038,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA038,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA038,1,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA038,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,1960,EA038,5,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA038,NA,,,, +Se2,,1940,EA038,2,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA038,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA038,1,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA038,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA038,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA038,NA,,,, +Se8,Upper Inuya River,1950,EA038,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA038,5,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA038,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA038,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA038,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA038,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,,EA038,NA,,,, +Sf6,,,EA038,NA,,,, +Sf7,,1900,EA038,5,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA038,NA,,,, +Sf9,,,EA038,NA,,,, +Sg1,,,EA038,NA,,,, +Sg2,Cholchol,1880,EA038,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA038,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA038,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,,,EA038,NA,,,, +Sh1,,1860,EA038,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA038,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,,,EA038,NA,,,, +Sh4,,1940,EA038,1,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA038,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,,EA038,NA,,,, +Sh7,,,EA038,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA038,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA038,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,,,EA038,NA,,,, +Si10,,1950,EA038,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,,,EA038,NA,,,, +Si3,Simao Lopes,1940,EA038,NA,Boys at puberty go into seclusion for from two months to a year,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA038,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA038,2,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,1900,EA038,3,Boys left the parental home immediately after puberty,schmidt1905; schmidt1942,EthnographicAtlas_1967_p123, +Si7,with special reference to the Cozarimi,1910,EA038,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA038,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA038,NA,,,, +Sj1,,1950,EA038,5,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,,,EA038,NA,,,, +Sj11,Village of Sao Domingo,1958,EA038,5,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA038,5,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA038,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA038,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,,,EA038,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA038,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA038,1,But boys are secluded temporarily during an initiation ceremony,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,,,EA038,NA,,,, +Sj9,,1950,EA038,5,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,,,EA038,NA,,,, +ch13,,,EA038,NA,,,, +ch14,with special reference to the Virjal group,1908,EA038,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,,,EA038,NA,,,, +ch16,with special reference to the Valkskij Uezd,1908,EA038,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA038,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,,,EA038,NA,,,, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA038,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA038,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,,,EA038,NA,,,, +ch22,,,EA038,NA,,,, +ch23,,,EA038,NA,,,, +ch24,,,EA038,NA,,,, +ch25,,,EA038,NA,,,, +ch26,,,EA038,NA,,,, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA038,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,,,EA038,NA,,,, +ec12,Avam (Western) group,1930,EA038,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA038,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA038,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA038,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA038,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA038,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA038,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA038,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA038,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA038,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA039,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA039,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA039,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA039,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA039,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,1920,EA039,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p63, +Aa7,,1910,EA039,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,1850,EA039,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA039,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,1900,EA039,1,,irle1906; vedder1928,EthnographicAtlas_1967_p63, +Ab10,,1936,EA039,2,,hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,1850,EA039,2,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA039,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p63, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA039,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA039,2,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA039,1,The plow was introduced in 1865,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA039,1,,earthy1933,EthnographicAtlas_1967_p63, +Ab17,,,EA039,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA039,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA039,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,1880,EA039,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA039,NA,,,, +Ab21a,,1930,EA039,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA039,NA,,,, +Ab22,,,EA039,NA,,,, +Ab3,Ruling Luyana,1890,EA039,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,1920,EA039,1,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA039,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA039,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA039,1,,langandtastevin1937,EthnographicAtlas_1967_p63, +Ab8,Basuto,1860,EA039,2,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA039,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA039,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA039,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA039,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,1920,EA039,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p63, +Ac13,,1950,EA039,1,,tew1950; velsen1964,EthnographicAtlas_1967_p63, +Ac14,,1900,EA039,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p63, +Ac15,,,EA039,NA,,,, +Ac16,,1940,EA039,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA039,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA039,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,1880,EA039,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA039,1,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p63, +Ac20,,1920,EA039,1,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA039,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p63, +Ac22,,1930,EA039,1,,mertens1935,EthnographicAtlas_1967_p63, +Ac23,with special reference to the western Lele,1950,EA039,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,1910,EA039,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA039,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p63, +Ac26,,1920,EA039,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA039,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA039,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p63, +Ac29,,,EA039,NA,,,, +Ac3,Zambia branch,1900,EA039,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA039,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA039,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA039,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA039,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA039,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA039,NA,,,, +Ac36,,1920,EA039,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,1950,EA039,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA039,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p63, +Ac39,,,EA039,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA039,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,1900,EA039,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA039,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA039,NA,,,, +Ac43,,1910,EA039,1,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA039,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,1930,EA039,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p63, +Ac7,,1920,EA039,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,1930,EA039,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA039,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,1950,EA039,1,,grottanelli1955,EthnographicAtlas_1967_p63, +Ad10,,1910,EA039,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,1930,EA039,1,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA039,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA039,1,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,Morogoro District,1930,EA039,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,1900,EA039,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,1920,EA039,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA039,1,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,1910,EA039,1,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA039,1,"But 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"") in some districts",fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA039,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA039,1,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,1930,EA039,1,,maurice193538,EthnographicAtlas_1967_p67, +Ad22,,1950,EA039,1,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,1910,EA039,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA039,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,1900,EA039,1,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA039,1,,sick1916,Ethnology_Vol7_No2_Apr_1968, +Ad27,,1880,EA039,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA039,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA039,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p67, +Ad3,,1910,EA039,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,1890,EA039,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p67, +Ad31,,,EA039,NA,,,, +Ad32,,1900,EA039,1,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p67, +Ad33,,1900,EA039,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p67, +Ad34,,1910,EA039,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA039,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p67, +Ad36,,1890,EA039,1,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA039,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA039,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA039,1,,gray1963,EthnographicAtlas_1967_p67, +Ad4,Fort Hall or Metume district,1930,EA039,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA039,1,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA039,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p67, +Ad42,,1900,EA039,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,1900,EA039,1,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA039,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p67, +Ad45,,1920,EA039,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,1950,EA039,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p67, +Ad47,,1900,EA039,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA039,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA039,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA039,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA039,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA039,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA039,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA039,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA039,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,1900,EA039,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA039,1,,winter1956; winter1958,EthnographicAtlas_1967_p67, +Ae10,,1910,EA039,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA039,1,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA039,1,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA039,NA,,,, +Ae14,,1950,EA039,1,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,1940,EA039,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p67, +Ae16,,,EA039,NA,,,, +Ae17,,1900,EA039,1,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,1900,EA039,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA039,NA,,,, +Ae2,,1950,EA039,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,1940,EA039,1,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA039,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA039,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p67, +Ae23,,,EA039,NA,,,, +Ae24,,,EA039,NA,,,, +Ae25,,,EA039,NA,,,, +Ae26,,1910,EA039,1,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA039,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA039,1,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,1900,EA039,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p67, +Ae3,,1910,EA039,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,1920,EA039,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA039,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA039,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA039,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA039,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA039,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA039,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA039,NA,,,, +Ae38,,1920,EA039,1,"Possibly 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1""), though there is no specific mention of goats",wijnant192526,EthnographicAtlas_1967_p67, +Ae39,,1920,EA039,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA039,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,1910,EA039,1,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA039,1,,andersson1953,EthnographicAtlas_1967_p67, +Ae42,,1900,EA039,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA039,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA039,1,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA039,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA039,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA039,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA039,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae49,,,EA039,NA,,,, +Ae5,,1910,EA039,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae50,,1920,EA039,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p67, +Ae51,Ndiki subtribe,1940,EA039,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae52,,,EA039,NA,,,, +Ae53,,,EA039,NA,,,, +Ae54,,,EA039,NA,,,, +Ae55,,1950,EA039,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae56,,1950,EA039,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae57,,1930,EA039,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA039,1,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA039,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA039,1,,verhulpen1936,Ethnology_Vol7_No2_Apr_1968, +Ae7,,1910,EA039,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA039,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,1950,EA039,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Af1,City and environs of Abomey,1890,EA039,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA039,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA039,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,with special reference to the Kwahu,1930,EA039,1,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA039,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,1930,EA039,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af15,,1920,EA039,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,1910,EA039,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA039,1,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA039,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA039,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,1950,EA039,1,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA039,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,with special reference to the Kalabari,1920,EA039,1,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA039,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p71, +Af23,with special reference to the village of Mgbom,1950,EA039,1,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA039,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,1930,EA039,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,with special reference to the Etsako,1900,EA039,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA039,1,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA039,1,,gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,1950,EA039,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA039,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,1920,EA039,1,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,,,EA039,NA,,,, +Af32,Abeouta Province and Benin,1920,EA039,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA039,1,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA039,1,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA039,1,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA039,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p71, +Af37,with special reference to the Akpafu,1900,EA039,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA039,1,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA039,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA039,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA039,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA039,1,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA039,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p71, +Af43,,1930,EA039,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p71, +Af44,,,EA039,NA,,,, +Af45,,1900,EA039,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA039,1,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA039,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA039,1,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA039,1,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA039,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,1920,EA039,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA039,1,,tauxier1924a,EthnographicAtlas_1967_p71, +Af52,,1920,EA039,1,,tauxier1924a,EthnographicAtlas_1967_p71, +Af53,,1950,EA039,1,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA039,1,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,1950,EA039,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA039,1,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA039,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,1900,EA039,1,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA039,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA039,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA039,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,1900,EA039,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p71, +Ag1,Segou to Bamako on Niger River,1920,EA039,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA039,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,1910,EA039,1,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,1910,EA039,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA039,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,1950,EA039,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA039,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA039,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p71, +Ag17,,1940,EA039,1,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA039,1,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p71, +Ag19,with special reference to the Felup,1930,EA039,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p71, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA039,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,1930,EA039,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA039,1,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,with special reference to those of Sine,1920,EA039,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p71, +Ag23,,1910,EA039,1,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA039,1,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA039,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p71, +Ag26,,1930,EA039,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p71, +Ag27,,1910,EA039,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,1930,EA039,1,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA039,1,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA039,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p71, +Ag30,,1910,EA039,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p71, +Ag31,,1910,EA039,1,,cheron1913; holas1957,EthnographicAtlas_1967_p71, +Ag32,,1900,EA039,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p71, +Ag33,,1920,EA039,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA039,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA039,1,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA039,1,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA039,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA039,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA039,1,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA039,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,1910,EA039,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA039,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,1910,EA039,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA039,1,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA039,1,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA039,1,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA039,1,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA039,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,1890,EA039,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p75, +Ag49,,1930,EA039,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA039,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,1910,EA039,1,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA039,1,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA039,1,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA039,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA039,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA039,1,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA039,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA039,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,1930,EA039,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p71, +Ah1,Zaria Province,1930,EA039,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA039,1,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA039,1,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah12,,1920,EA039,1,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA039,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA039,1,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,1920,EA039,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p75, +Ah16,,1900,EA039,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA039,1,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA039,1,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA039,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p75, +Ah2,,1920,EA039,1,,meek1931a,EthnographicAtlas_1967_p75, +Ah20,,1920,EA039,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,,EA039,NA,,,, +Ah22,,,EA039,NA,,,, +Ah23,,,EA039,NA,,,, +Ah24,,,EA039,NA,,,, +Ah25,,1920,EA039,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA039,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA039,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA039,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA039,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA039,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,1920,EA039,1,,meek1931b,EthnographicAtlas_1967_p75, +Ah31,,1910,EA039,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p75, +Ah32,,1920,EA039,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA039,1,,meek1931b; temple1922,EthnographicAtlas_1967_p75, +Ah34,with special reference to the Malabu,1920,EA039,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA039,1,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA039,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,1920,EA039,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA039,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA039,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,1920,EA039,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p75, +Ah5,,1930,EA039,1,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,1920,EA039,1,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA039,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,1910,EA039,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA039,1,"Diamond reports 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"")",diamond1964; gunn1953,EthnographicAtlas_1967_p75,"Assume Murdock comment refers to col 39, not col 30 as stated in Gray (1999); in that case however the codes for EA039/EA040/EA041 are as reported by Diamond." +Ai1,,1920,EA039,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p75, +Ai10,Nuba Hills,1940,EA039,1,,nadel1947,EthnographicAtlas_1967_p75, +Ai11,,1900,EA039,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA039,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,1920,EA039,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA039,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA039,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,1910,EA039,1,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA039,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA039,1,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA039,1,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA039,NA,,,, +Ai20,,1910,EA039,1,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA039,1,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,1890,EA039,1,,delafosse1897,EthnographicAtlas_1967_p75, +Ai23,,1920,EA039,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,1900,EA039,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA039,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA039,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p75, +Ai27,,1890,EA039,1,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA039,1,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA039,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA039,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA039,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA039,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA039,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA039,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,1880,EA039,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA039,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,1920,EA039,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,1940,EA039,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA039,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai39,,1940,EA039,1,,nadel1947,EthnographicAtlas_1967_p75, +Ai4,,1920,EA039,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA039,1,,nadel1947,EthnographicAtlas_1967_p75, +Ai41,,1930,EA039,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai42,,1940,EA039,1,,nadel1947; nadel1950,EthnographicAtlas_1967_p75, +Ai43,,1930,EA039,1,,nadel1947; stevenson1940,EthnographicAtlas_1967_p75, +Ai44,,1920,EA039,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,1930,EA039,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA039,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p75, +Ai47,Northern division,1939,EA039,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,1920,EA039,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA039,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA039,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,1930,EA039,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p75, +Ai9,Around Yagoua in Cameroon,1910,EA039,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,1950,EA039,2,,lawrance1957,EthnographicAtlas_1967_p75, +Aj10,,1920,EA039,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA039,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA039,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,1930,EA039,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA039,1,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA039,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,with special reference to the Riverain Mondari,1930,EA039,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p79, +Aj17,,1890,EA039,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA039,1,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,1920,EA039,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p79, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA039,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,1940,EA039,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p79, +Aj21,,1930,EA039,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,1930,EA039,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA039,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA039,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,1920,EA039,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA039,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p79, +Aj27,,1920,EA039,1,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA039,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA039,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA039,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA039,NA,,,, +Aj31,,,EA039,NA,,,, +Aj4,,1920,EA039,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA039,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA039,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA039,1,The plow was introduced in 1927,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA039,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA039,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA039,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA039,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA039,3,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p79, +Ca12,,1880,EA039,3,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p79, +Ca13,with special reference to the eastern Macha,1950,EA039,3,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p79, +Ca14,,1950,EA039,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p79, +Ca15,,1930,EA039,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca16,,1930,EA039,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca17,,1950,EA039,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca18,,1940,EA039,1,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA039,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA039,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,1890,EA039,1,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA039,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA039,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA039,1,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,1950,EA039,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA039,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA039,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA039,1,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA039,1,,cerulli1956; jensen1959,EthnographicAtlas_1967_p79, +Ca29,,1920,EA039,3,,huntingford1955b; straube1963,EthnographicAtlas_1967_p79, +Ca3,,1950,EA039,3,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,Kafa Kingdom,1890,EA039,3,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p79, +Ca31,,1860,EA039,3,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,1860,EA039,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca33,,1860,EA039,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca34,,1920,EA039,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA039,1,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA039,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA039,1,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA039,3,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA039,3,,lewis1965b,EthnographicAtlas_1967_p79, +Ca4,,1950,EA039,1,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p79, +Ca40,,1950,EA039,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA039,1,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA039,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA039,NA,,,, +Ca5,,1930,EA039,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p79, +Ca6,,1880,EA039,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA039,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,1940,EA039,1,,leslau1950; shack1963,EthnographicAtlas_1967_p79, +Ca9,,1890,EA039,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,,EA039,NA,,,, +Cb10,,1920,EA039,1,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA039,1,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA039,1,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA039,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA039,1,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA039,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA039,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA039,1,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,1930,EA039,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p79, +Cb19,,1870,EA039,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA039,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,1920,EA039,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA039,1,,pfeffer1936,EthnographicAtlas_1967_p83, +Cb22,,1920,EA039,1,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA039,1,,kane1939; lafont1939,EthnographicAtlas_1967_p83, +Cb24,Wodaabe of Niger,1950,EA039,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,1930,EA039,1,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA039,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,1920,EA039,1,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA039,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA039,NA,,,, +Cb3,Bamba division,1940,EA039,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,1920,EA039,1,,reid1930,EthnographicAtlas_1967_p79, +Cb5,,1910,EA039,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p79, +Cb6,,1920,EA039,1,,woodnd,EthnographicAtlas_1967_p79, +Cb7,,1920,EA039,1,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA039,1,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA039,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA039,3,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA039,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,1860,EA039,1,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA039,1,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA039,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA039,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA039,NA,,,, +Cc16,,1930,EA039,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,1930,EA039,3,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p83, +Cc18,,1910,EA039,1,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA039,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA039,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,with special reference to the more nomadic northern groups,1910,EA039,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p83, +Cc3,inhabitants of the oasis of Siwa,1920,EA039,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA039,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,1910,EA039,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p83, +Cc6,,1910,EA039,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA039,1,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA039,NA,,,, +Cc9,Ahaggaren tribe,1920,EA039,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA039,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,1900,EA039,3,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA039,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p83, +Cd12,,1870,EA039,3,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,1930,EA039,3,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA039,3,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA039,3,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA039,3,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA039,3,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA039,3,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA039,1,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA039,3,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,1940,EA039,3,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA039,3,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA039,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA039,3,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA039,3,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,with special reference to the New Empire,-1400,EA039,3,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,with special reference to the Zemmur tribe,1910,EA039,3,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA039,3,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA039,3,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA039,3,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA039,NA,,,, +Ce3,City and environs of Rome,100,EA039,3,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA039,3,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA039,3,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA039,3,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA039,3,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA039,3,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA039,3,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,of the Transvaal,1850,EA039,3,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No4_Oct_1962, +Cf3,,1930,EA039,3,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA039,3,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA039,3,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA039,3,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA039,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA039,3,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA039,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA039,3,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA039,3,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA039,NA,,,, +Ch11,Viriatino Village,1955,EA039,3,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA039,3,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA039,3,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,1900,EA039,3,,heffner1955; wichmann1913,EthnographicAtlas_1967_p83, +Ch5,with special reference to the village of Dragelevtsy,1940,EA039,3,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA039,3,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA039,3,,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA039,3,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA039,3,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,with special reference to the Baga Dorbed group,1920,EA039,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p83, +Ci10,Vicinity of Erevan,1900,EA039,3,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA039,3,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,Abkhaz Tribe,1880,EA039,3,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA039,3,,grigolia1939,EthnographicAtlas_1967_p83, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA039,3,,gadzhieva1958,EthnographicAtlas_1967_p83, +Ci4,,1920,EA039,3,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA039,3,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA039,3,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p83, +Ci7,,1900,EA039,3,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p83, +Ci8,,1850,EA039,3,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA039,3,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA039,3,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA039,3,,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,Unspecified,1920,EA039,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA039,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA039,3,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,1930,EA039,1,,dickson1949,EthnographicAtlas_1967_p87, +Cj6,with special reference to the sedentary population,1950,EA039,3,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA039,3,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p87, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA039,3,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,1950,EA039,3,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA039,3,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA039,3,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA039,3,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA039,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA039,3,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA039,3,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA039,3,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA039,3,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,1890,EA039,3,,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA039,1,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA039,3,,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,1920,EA039,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p87, +Ea9,,1950,EA039,3,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA039,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,1920,EA039,3,,krader1963; schram1954,EthnographicAtlas_1967_p87, +Eb3,Narobanchin Territory,1940,EA039,3,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p87, +Eb4,,,EA039,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA039,3,,freikin1954; odonovan1882,Ethnology_Vol2_No2_Apr_1963, +Eb6,,,EA039,NA,,,, +Eb7,,1930,EA039,3,,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA039,NA,,,, +Ec1,Sakhalin Island,1920,EA039,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA039,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,1900,EA039,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA039,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA039,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA039,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA039,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA039,1,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA039,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,1900,EA039,1,,shimkin1939,EthnographicAtlas_1967_p87, +Ec9,,1920,EA039,1,,lattimore1933,EthnographicAtlas_1967_p87, +Ed1,Kanghwa Island,1950,EA039,3,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA039,3,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA039,NA,,,, +Ed14,,,EA039,NA,,,, +Ed15a,,,EA039,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA039,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA039,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA039,3,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,Aigun District,1920,EA039,3,,shirokogoroff1924,EthnographicAtlas_1967_p87, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA039,1,,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA039,3,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA039,3,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA039,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA039,3,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA039,3,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA039,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA039,3,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA039,3,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA039,3,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA039,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA039,3,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA039,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA039,3,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA039,3,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA039,NA,,,, +Ef11,Village and environs of Senapur,1945,EA039,3,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA039,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA039,NA,,,, +Ef4,,,EA039,NA,,,, +Ef5,,1900,EA039,3,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,1940,EA039,3,,roy1915; roy1951,EthnographicAtlas_1967_p87, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA039,3,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA039,3,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA039,3,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA039,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA039,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA039,NA,,,, +Eg12,,,EA039,NA,,,, +Eg13,Bastar State,1941,EA039,3,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA039,3,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA039,3,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA039,1,,grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA039,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA039,3,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA039,3,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA039,3,A few prosperous men have adopted the plow,roy1935,EthnographicAtlas_1967_p91, +Eg8,,1940,EA039,3,,griffiths1946,EthnographicAtlas_1967_p91, +Eg9,,1930,EA039,1,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA039,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA039,NA,,,, +Eh2,,1900,EA039,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA039,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA039,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA039,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA039,3,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,1900,EA039,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA039,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91, +Eh9,,1930,EA039,1,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA039,1,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA039,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p91, +Ei11,,1910,EA039,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA039,1,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA039,1,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA039,1,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA039,NA,,,, +Ei16,,1910,EA039,1,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA039,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA039,1,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,1940,EA039,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA039,1,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA039,NA,,,, +Ei3,Nondwin Village,1950,EA039,3,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA039,1,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA039,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA039,2,,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,1910,EA039,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA039,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,1880,EA039,2,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p91, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA039,1,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA039,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA039,3,,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA039,3,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA039,3,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA039,1,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA039,3,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA039,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA039,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA039,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA039,3,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA039,3,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,of the Mergui Archipelago,1920,EA039,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p91, +Ej7,,1950,EA039,1,,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,with special reference to those of Trengganu,1940,EA039,3,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA039,3,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA039,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,1930,EA039,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p91, +Ia11,,1930,EA039,3,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA039,3,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA039,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,1930,EA039,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p95, +Ia15,with special reference to those of the Agusan Valley,1920,EA039,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA039,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA039,NA,,,, +Ia18,,,EA039,NA,,,, +Ia2,,1950,EA039,3,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA039,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA039,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA039,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA039,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA039,1,,fox1954,EthnographicAtlas_1967_p91, +Ia8,,1900,EA039,1,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA039,3,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA039,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA039,3,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA039,3,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,with special reference to the Toba group,1930,EA039,3,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p95, +Ib5,with special reference to the village of Sensuron,1920,EA039,2,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA039,3,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,with special reference to those of North Pageh,1920,EA039,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p95, +Ib8,with special reference to the Ridan group,1900,EA039,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p95, +Ib9,,,EA039,NA,,,, +Ic1,Borongloe,1940,EA039,3,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA039,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p95, +Ic11,Allang,1950,EA039,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA039,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA039,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA039,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,with special reference to the Mountain Belu,1950,EA039,1,,vroklage1952,EthnographicAtlas_1967_p95, +Ic4,,,EA039,NA,,,, +Ic5,Bare'e subgroup,1910,EA039,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p95, +Ic6,,1930,EA039,1,,drabbe1940,EthnographicAtlas_1967_p95, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA039,1,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,1890,EA039,1,,pleyte1893,EthnographicAtlas_1967_p95, +Ic9,with special reference to eastern Sumba,1930,EA039,3,,nooteboom1940,EthnographicAtlas_1967_p95, +Id1,Alice Springs and environs,1900,EA039,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA039,1,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA039,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA039,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA039,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA039,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA039,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA039,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA039,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,with special reference to the Archer River group,1920,EA039,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p95, +Id7,,1940,EA039,1,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA039,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,1910,EA039,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p95, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA039,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA039,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA039,1,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA039,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA039,1,,landtman1927,EthnographicAtlas_1967_p95, +Ie14,,1900,EA039,1,,haddon1908,EthnographicAtlas_1967_p95, +Ie15,Kalabu; Northern Abelam,1930,EA039,1,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA039,1,,williams194041,EthnographicAtlas_1967_p95, +Ie17,,1940,EA039,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA039,1,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA039,1,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA039,1,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA039,1,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,1900,EA039,1,,malinowski1916,EthnographicAtlas_1967_p95, +Ie22,,1900,EA039,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,1950,EA039,1,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,1870,EA039,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p95, +Ie25,,1920,EA039,1,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,1940,EA039,1,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,1910,EA039,1,,thurnwald1916,EthnographicAtlas_1967_p99, +Ie28,,1940,EA039,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA039,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA039,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA039,1,,pouwer1955,EthnographicAtlas_1967_p99, +Ie31,,1950,EA039,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA039,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA039,1,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA039,NA,,,, +Ie35,,1930,EA039,1,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA039,NA,,,, +Ie37,,,EA039,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA039,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA039,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA039,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA039,1,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,1930,EA039,1,,held1947,EthnographicAtlas_1967_p95, +Ie7,with special reference to the Mae group,1950,EA039,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA039,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA039,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA039,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA039,NA,,,, +If11,,1860,EA039,1,,sarfert1919,EthnographicAtlas_1967_p99, +If12,,1940,EA039,1,,mason1954,EthnographicAtlas_1967_p99, +If13,,1900,EA039,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p99, +If14,Makin and Butiritari Islands (N),1890,EA039,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA039,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,1960,EA039,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA039,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA039,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA039,1,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA039,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA039,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA039,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,with special reference to the inhabitants of Onotoa,1940,EA039,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p99, +If8,with special reference to those of Saipa,1950,EA039,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA039,1,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,Northeastern group,1940,EA039,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA039,1,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA039,1,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,with special reference to the Varisi,1900,EA039,1,,scheffler1965,EthnographicAtlas_1967_p99, +Ig13,,1900,EA039,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p99, +Ig14,,1900,EA039,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA039,NA,,,, +Ig16,,,EA039,NA,,,, +Ig17,,,EA039,NA,,,, +Ig18,,,EA039,NA,,,, +Ig19,,,EA039,NA,,,, +Ig2,Kiriwina Island,1910,EA039,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA039,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA039,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA039,1,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA039,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,1920,EA039,1,,fortune1932b,EthnographicAtlas_1967_p99, +Ig6,,1900,EA039,1,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA039,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA039,NA,,,, +Ig9,Peri Village,1920,EA039,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA039,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,Whitsands,1920,EA039,1,,humphreys1926,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA039,NA,,,, +Ih12,,,EA039,NA,,,, +Ih13,,,EA039,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA039,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA039,1,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA039,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA039,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA039,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p99, +Ih6,,1890,EA039,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p99, +Ih7,,1910,EA039,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p99, +Ih8,with special reference to the village of Nakaroka,1940,EA039,1,,quain1949,EthnographicAtlas_1967_p99, +Ih9,Graciosa Bay,1930,EA039,1,,davenport1964,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA039,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,1950,EA039,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA039,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA039,1,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA039,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA039,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA039,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA039,1,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA039,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p99, +Ii6,with special reference to Atafu,1900,EA039,1,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA039,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA039,1,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA039,1,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA039,1,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,1900,EA039,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA039,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA039,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA039,1,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,1900,EA039,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p103, +Ij6,,1800,EA039,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p103, +Ij7,,1900,EA039,1,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,1900,EA039,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p103, +Ij9,,1860,EA039,1,,metraux1940,EthnographicAtlas_1967_p103, +Na1,,1930,EA039,1,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA039,1,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA039,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA039,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA039,1,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA039,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,1860,EA039,1,,helmandlurie1961,EthnographicAtlas_1967_p103, +Na16,,1860,EA039,1,,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA039,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA039,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA039,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA039,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA039,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA039,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA039,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA039,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA039,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA039,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA039,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA039,1,,jenness1937,EthnographicAtlas_1967_p103, +Na29,,1850,EA039,1,,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA039,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA039,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA039,1,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA039,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA039,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA039,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA039,1,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA039,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA039,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA039,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA039,1,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA039,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA039,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA039,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA039,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA039,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA039,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA039,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA039,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA039,1,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA039,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA039,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA039,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA039,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA039,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA039,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA039,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA039,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA039,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA039,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA039,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA039,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA039,1,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA039,1,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA039,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA039,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA039,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA039,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA039,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA039,1,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA039,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA039,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA039,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA039,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA039,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA039,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,1860,EA039,1,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA039,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p107, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA039,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA039,1,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA039,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA039,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA039,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,1860,EA039,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA039,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA039,1,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA039,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA039,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA039,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA039,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA039,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA039,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA039,1,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,1860,EA039,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA039,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA039,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA039,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA039,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA039,1,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA039,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA039,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA039,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,with special reference to those near Santa Rosa,1860,EA039,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc2,,1850,EA039,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,1860,EA039,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,1860,EA039,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA039,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,1870,EA039,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,Tulare Lake,1860,EA039,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA039,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,1770,EA039,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA039,1,,driver1937; gifford1917,EthnographicAtlas_1967_p107, +Nc28,,1800,EA039,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA039,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA039,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA039,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA039,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,1870,EA039,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc33,,1860,EA039,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA039,1,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA039,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA039,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA039,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA039,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA039,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA039,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA039,1,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,1860,EA039,1,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA039,1,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA039,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA039,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA039,1,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA039,1,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA039,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA039,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA039,1,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA039,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA039,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA039,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA039,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA039,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA039,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA039,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA039,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA039,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA039,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA039,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA039,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA039,1,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA039,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA039,1,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA039,1,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA039,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA039,1,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA039,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA039,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA039,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA039,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA039,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA039,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA039,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA039,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA039,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA039,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA039,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA039,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA039,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA039,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA039,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA039,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA039,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA039,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA039,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA039,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA039,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA039,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA039,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA039,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA039,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA039,1,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA039,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA039,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA039,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA039,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,1860,EA039,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA039,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA039,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA039,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA039,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA039,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,1800,EA039,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,1860,EA039,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA039,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA039,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,1870,EA039,1,,mcallister1937,EthnographicAtlas_1967_p111, +Ne20,,1850,EA039,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p115, +Ne21,,,EA039,NA,,,, +Ne3,Comanche Tribe,1870,EA039,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p111, +Ne4,,1870,EA039,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA039,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,1830,EA039,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p111, +Ne7,,1880,EA039,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,1870,EA039,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA039,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA039,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA039,1,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA039,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA039,1,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA039,1,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA039,NA,,,, +Nf2,,1850,EA039,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p115, +Nf3,Omaha Tribe,1850,EA039,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA039,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,1860,EA039,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA039,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA039,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA039,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,1870,EA039,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA039,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA039,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,1750,EA039,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p115, +Ng12,,1760,EA039,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p115, +Ng13,,,EA039,NA,,,, +Ng14,,,EA039,NA,,,, +Ng15,,,EA039,NA,,,, +Ng2,,,EA039,NA,,,, +Ng3,Upper division in Alabama,1750,EA039,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA039,NA,,,, +Ng5,,1750,EA039,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA039,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA039,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,1560,EA039,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p115, +Ng9,,,EA039,NA,,,, +Nh1,Central band,1880,EA039,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA039,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA039,2,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA039,2,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA039,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,,EA039,NA,,,, +Nh15,,1870,EA039,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA039,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA039,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA039,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA039,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,1950,EA039,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954,EthnographicAtlas_1967_p115, +Nh20,,1860,EA039,1,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA039,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA039,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,1870,EA039,1,,gifford1932a,EthnographicAtlas_1967_p115, +Nh24,,1880,EA039,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,1920,EA039,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA039,NA,,,, +Nh27,,,EA039,NA,,,, +Nh3,,1930,EA039,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA039,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA039,1,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA039,2,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA039,2,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA039,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,,EA039,NA,,,, +Ni1,,1930,EA039,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA039,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA039,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,1900,EA039,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p115, +Ni5,,1570,EA039,1,,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA039,1,"Aboriginally, but subsequently plow cultivaton (EA039 code ""2"") and 'bovine' (EA040 code ""7"")",castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA039,1,"Aboriginally, but 'no plow animals' (EA039 code ""1""), 'bovine' (EA040 code ""7""), and 'milking, more often than sporadically' (EA041 code ""2"")",beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA039,NA,,,, +Ni9,,,EA039,NA,,,, +Nj1,Ojitlan,1940,EA039,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,,,EA039,NA,,,, +Nj11,,,EA039,NA,,,, +Nj12,,,EA039,NA,,,, +Nj13,,,EA039,NA,,,, +Nj14,,,EA039,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA039,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA039,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,1940,EA039,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA039,NA,,,, +Nj6,,,EA039,NA,,,, +Nj7,with special reference to Ayutla,1930,EA039,2,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA039,1,,foster1948,EthnographicAtlas_1967_p119, +Nj9,,1960,EA039,2,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA039,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,,EA039,NA,,,, +Sa11,,,EA039,NA,,,, +Sa12,,1948,EA039,1,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA039,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA039,NA,,,, +Sa15,,,EA039,NA,,,, +Sa16,,,EA039,NA,,,, +Sa17,,,EA039,NA,,,, +Sa2,,,EA039,NA,,,, +Sa3,,1930,EA039,1,,wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA039,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA039,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA039,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA039,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA039,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA039,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA039,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA039,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,with special reference to the Iroka,1940,EA039,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA039,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA039,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,Goajiro Tribe,1940,EA039,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA039,1,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,1520,EA039,1,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA039,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA039,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA039,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,1930,EA039,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p119, +Sc12,,1910,EA039,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p119, +Sc13,,1950,EA039,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p119, +Sc14,,,EA039,NA,,,, +Sc15,,1910,EA039,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p119, +Sc16,with special reference to the Makitare,1920,EA039,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p119, +Sc17,,1950,EA039,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sc18,,1960,EA039,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA039,1,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA039,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA039,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA039,1,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA039,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA039,1,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,1950,EA039,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p119, +Sc9,,1950,EA039,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p119, +Sd1,Cabrura village,1950,EA039,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA039,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,1920,EA039,1,,nimuendaju1926,EthnographicAtlas_1967_p119, +Sd4,,1950,EA039,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA039,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,1960,EA039,1,,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,1950,EA039,1,,fock1963,EthnographicAtlas_1967_p119, +Sd8,,1950,EA039,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA039,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA039,1,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA039,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,1960,EA039,1,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA039,NA,,,, +Se2,,1940,EA039,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA039,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA039,1,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA039,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA039,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA039,NA,,,, +Se8,Upper Inuya River,1950,EA039,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA039,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA039,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA039,2,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA039,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA039,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,1900,EA039,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,1540,EA039,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA039,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA039,NA,,,, +Sf9,,,EA039,NA,,,, +Sg1,Eastern and central,1870,EA039,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA039,1,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA039,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA039,1,"But absence or near absence of domestic animals (EA039 and EA040 code ""1"") prior to 1725",bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA039,1,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA039,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA039,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,Those in contact with mission,1800,EA039,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA039,1,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA039,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,1890,EA039,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,1900,EA039,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p123, +Sh8,with special reference to those of the Argentine Chaco,1964,EA039,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA039,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA039,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA039,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA039,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA039,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA039,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA039,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,1900,EA039,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p123, +Si7,with special reference to the Cozarimi,1910,EA039,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA039,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA039,NA,,,, +Sj1,,1950,EA039,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,Taquapiri,1950,EA039,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA039,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA039,1,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA039,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA039,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,Naknenuk subtribe,1880,EA039,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p123, +Sj6,with special reference to the Guajajara subgroup,1930,EA039,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA039,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA039,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,1950,EA039,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA039,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA039,3,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA039,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA039,3,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA039,3,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA039,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA039,3,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA039,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA039,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA039,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA039,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA039,2,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA039,3,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA039,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA039,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA039,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA039,3,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA039,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA039,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA039,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA039,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA039,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA039,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA039,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA039,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA039,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA039,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA004,0,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA004,0,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA004,5,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA004,2,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA004,0,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA004,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA004,0,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA004,0,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA004,0,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA004,6,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA004,5,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA004,3,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA004,4,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA004,4,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA004,3,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA004,3,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA004,2,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA004,2,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA004,2,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA004,3,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA004,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA004,3,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA004,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA004,4,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA004,2,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA004,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA004,3,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA004,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA004,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA004,4,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA004,3,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA004,4,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA004,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA004,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA004,0,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA004,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA004,1,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA004,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA004,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA004,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA004,0,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA004,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA004,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA004,2,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA004,1,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA004,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA004,1,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA004,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA004,0,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA004,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA004,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA004,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA004,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA004,0,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA004,0,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA004,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA004,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA004,0,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA004,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA004,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA004,1,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA004,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA004,0,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA004,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA004,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA004,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA004,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA004,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA004,1,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA004,2,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA004,0,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA004,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA004,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA004,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA004,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA004,1,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA004,3,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA004,3,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA004,3,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA004,2,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA004,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA004,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA004,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA004,2,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA004,0,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA004,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA004,2,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA004,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA004,1,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA004,3,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA004,5,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA004,4,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA004,3,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA004,5,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA004,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA004,2,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA004,2,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA004,3,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA004,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA004,3,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA004,2,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA004,0,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA004,3,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA004,3,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA004,4,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA004,3,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA004,3,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA004,2,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA004,3,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA004,3,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA004,4,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA004,3,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA004,3,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA004,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA004,4,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA004,2,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA004,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA004,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA004,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA004,4,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA004,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA004,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA004,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA004,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA004,3,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA004,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA004,1,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA004,3,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA004,0,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA004,1,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA004,4,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA004,4,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA004,3,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA004,1,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA004,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA004,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA004,2,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA004,3,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA004,1,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA004,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA004,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA004,1,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA004,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA004,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA004,1,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA004,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA004,1,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA004,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA004,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA004,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA004,0,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA004,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA004,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA004,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA004,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA004,0,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA004,1,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA004,0,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA004,0,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA004,0,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA004,1,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA004,1,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA004,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA004,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA004,1,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA004,2,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA004,0,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA004,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA004,2,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA004,1,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA004,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA004,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA004,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA004,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA004,1,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA004,1,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA004,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA004,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA004,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA004,1,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA004,1,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA004,1,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA004,0,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA004,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA004,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA004,2,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA004,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA004,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA004,1,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA004,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA004,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA004,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA004,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA004,1,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA004,2,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA004,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA004,1,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA004,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA004,1,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA004,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA004,1,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA004,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA004,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA004,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA004,1,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA004,2,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA004,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA004,0,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA004,1,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA004,2,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA004,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA004,1,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA004,1,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA004,1,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA004,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA004,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA004,1,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA004,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA004,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA004,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA004,1,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA004,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA004,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA004,1,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA004,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA004,1,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA004,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA004,1,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA004,1,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA004,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA004,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA004,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA004,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA004,1,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA004,1,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA004,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA004,2,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA004,2,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA004,2,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA004,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA004,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA004,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA004,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA004,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA004,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA004,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA004,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA004,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA004,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA004,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA004,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA004,1,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA004,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA004,2,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA004,2,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA004,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA004,2,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA004,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA004,3,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA004,3,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA004,2,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA004,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA004,1,But the economy is primarily mercantile,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA004,2,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA004,1,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA004,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA004,2,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA004,2,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA004,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA004,3,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA004,3,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA004,2,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA004,2,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA004,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA004,3,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA004,3,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA004,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA004,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA004,3,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA004,2,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA004,2,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA004,2,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA004,2,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA004,3,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA004,2,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA004,2,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA004,2,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA004,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA004,2,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA004,3,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA004,2,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA004,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA004,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA004,5,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA004,0,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA004,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA004,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA004,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA004,2,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA004,2,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA004,2,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA004,2,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA004,2,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA004,2,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA004,2,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA004,2,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA004,2,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA004,2,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA004,2,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA004,2,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA004,2,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA004,2,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA004,2,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA004,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA004,2,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA004,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA004,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA004,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA004,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA004,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA004,3,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA004,2,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA004,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA004,3,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA004,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA004,3,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA004,2,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA004,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA004,2,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA004,2,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA004,2,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA004,2,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA004,2,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA004,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA004,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA004,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA004,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA004,2,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA004,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA004,2,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA004,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA004,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA004,4,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA004,3,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA004,2,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA004,2,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA004,2,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA004,2,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA004,3,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA004,2,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA004,3,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA004,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA004,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA004,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA004,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA004,1,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA004,1,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA004,3,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA004,0,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA004,2,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA004,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA004,4,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA004,3,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA004,2,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA004,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA004,2,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA004,2,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA004,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA004,3,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA004,3,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA004,3,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA004,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA004,3,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA004,3,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA004,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA004,2,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA004,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA004,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA004,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA004,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA004,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA004,3,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA004,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA004,3,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA004,3,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA004,5,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA004,3,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA004,2,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA004,2,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA004,3,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA004,2,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA004,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA004,5,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA004,4,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA004,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA004,3,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA004,4,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA004,2,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA004,6,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA004,5,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA004,4,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA004,3,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA004,4,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA004,7,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA004,9,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA004,5,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA004,6,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA004,4,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA004,4,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA004,3,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA004,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA004,5,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA004,4,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA004,4,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA004,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA004,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA004,5,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA004,3,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA004,3,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA004,2,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA004,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA004,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA004,3,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA004,4,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA004,5,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA004,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA004,5,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA004,5,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA004,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA004,3,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA004,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA004,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA004,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA004,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA004,3,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA004,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA004,3,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA004,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA004,3,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA004,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA004,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA004,8,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA004,9,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA004,8,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA004,9,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA004,8,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA004,3,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA004,5,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA004,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA004,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA004,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA004,6,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA004,8,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA004,8,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA004,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA004,4,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA004,5,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA004,2,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA004,1,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA004,9,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA004,7,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA004,5,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA004,5,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA004,7,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA004,6,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA004,3,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA004,3,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA004,2,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA004,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA004,4,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA004,9,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA004,4,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA004,4,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA004,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA004,3,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA004,3,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA004,2,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA004,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA004,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA004,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA004,5,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA004,4,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA004,1,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA004,2,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA004,8,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA004,2,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA004,7,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA004,5,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA004,5,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA004,5,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA004,2,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA004,4,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA004,2,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA004,7,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA004,5,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA004,6,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA004,6,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA004,3,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA004,7,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA004,3,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA004,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA004,6,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA004,8,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA004,9,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA004,6,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA004,5,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA004,3,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA004,4,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA004,2,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA004,3,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA004,7,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA004,7,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA004,3,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA004,3,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA004,7,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA004,6,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA004,3,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA004,3,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA004,6,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA004,2,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA004,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA004,3,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA004,3,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA004,2,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA004,4,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA004,3,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA004,4,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA004,4,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA004,4,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA004,2,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA004,3,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA004,1,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA004,3,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA004,3,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA004,4,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA004,3,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA004,8,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA004,2,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA004,2,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA004,2,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA004,3,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA004,4,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA004,4,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA004,6,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA004,3,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA004,4,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA004,3,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA004,3,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA004,4,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA004,3,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA004,3,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA004,2,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA004,3,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA004,3,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA004,2,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA004,4,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA004,7,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA004,3,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA004,4,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA004,6,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA004,3,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA004,3,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA004,4,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA004,4,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA004,5,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA004,5,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA004,3,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA004,4,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA004,4,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA004,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA004,8,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA004,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA004,2,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA004,9,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA004,3,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA004,2,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA004,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA004,3,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA004,3,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA004,5,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA004,3,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA004,8,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA004,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA004,3,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA004,5,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA004,4,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA004,3,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA004,8,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA004,4,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA004,8,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA004,3,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA004,8,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA004,3,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA004,8,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA004,3,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA004,4,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA004,7,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA004,8,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA004,5,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA004,0,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA004,3,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA004,4,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA004,4,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA004,5,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA004,4,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA004,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA004,0,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA004,0,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA004,1,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA004,1,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA004,2,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA004,2,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA004,1,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA004,1,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA004,1,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA004,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA004,2,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA004,3,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA004,2,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA004,2,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA004,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA004,2,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA004,2,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA004,2,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA004,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA004,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA004,4,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA004,3,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA004,4,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA004,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA004,5,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA004,1,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA004,2,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA004,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA004,2,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA004,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA004,2,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA004,3,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA004,2,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA004,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA004,2,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA004,4,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA004,2,But the Pandit themselves do not engage in food production,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA004,2,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA004,1,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA004,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA004,2,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA004,2,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA004,1,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA004,1,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA004,2,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA004,2,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA004,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA004,2,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA004,3,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA004,2,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA004,2,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA004,0,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA004,0,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA004,2,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA004,2,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA004,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA004,0,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA004,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA004,3,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA004,4,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA004,5,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA004,3,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA004,1,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA004,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA004,2,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA004,2,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA004,2,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA004,2,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA004,2,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA004,2,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA004,2,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA004,2,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA004,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA004,2,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA004,2,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA004,2,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA004,1,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA004,2,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA004,2,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA004,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA004,2,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA004,2,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA004,2,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA004,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA004,1,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA004,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA004,2,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA004,0,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA004,3,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA004,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA004,2,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA004,0,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA004,2,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA004,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA004,0,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA004,1,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA004,2,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA004,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA004,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA004,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA004,1,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA004,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA004,0,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA004,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA004,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA004,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA004,1,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA004,1,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA004,3,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA004,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA004,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA004,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA004,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA004,1,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA004,2,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA004,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA004,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA004,2,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA004,3,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA004,2,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA004,2,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA004,2,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA004,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA004,0,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA004,1,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA004,2,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA004,0,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA004,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA004,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA004,2,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA004,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA004,3,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA004,2,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA004,2,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA004,1,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA004,1,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA004,1,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA004,2,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA004,0,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA004,0,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA004,0,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA004,0,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA004,0,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA004,0,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA004,0,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA004,0,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA004,0,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA004,0,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA004,0,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,1830,EA004,0,,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA004,0,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA004,2,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA004,0,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA004,1,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA004,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA004,0,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA004,1,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA004,1,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA004,1,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA004,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA004,0,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA004,1,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA004,1,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA004,1,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA004,1,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA004,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA004,2,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA004,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA004,1,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA004,1,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA004,1,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA004,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA004,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA004,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA004,0,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA004,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA004,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA004,0,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA004,0,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA004,1,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA004,1,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA004,1,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA004,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA004,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA004,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA004,1,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA004,1,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA004,2,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA004,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA004,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA004,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA004,1,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA004,1,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA004,1,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA004,0,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA004,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA004,0,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA004,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA004,0,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA004,0,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA004,1,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA004,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA004,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA004,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA004,0,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA004,2,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA004,1,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA004,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA004,2,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA004,0,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA004,1,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA004,0,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA004,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA004,1,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA004,1,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA004,0,Primarily traders,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA004,0,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA004,1,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA004,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA004,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA004,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA004,1,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA004,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA004,1,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA004,0,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA004,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA004,1,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA004,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA004,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA004,1,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA004,1,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA004,1,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA004,1,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA004,0,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA004,1,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA004,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA004,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA004,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA004,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA004,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA004,0,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA004,1,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA004,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA004,0,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA004,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA004,0,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA004,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA004,0,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA004,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA004,1,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA004,0,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA004,0,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA004,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA004,1,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA004,0,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA004,0,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA004,0,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA004,0,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA004,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA004,0,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA004,0,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA004,0,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA004,0,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA004,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA004,0,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA004,0,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA004,0,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA004,0,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA004,0,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA004,0,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA004,0,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA004,0,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA004,0,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA004,0,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA004,0,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA004,0,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA004,0,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA004,0,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA004,0,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA004,0,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA004,0,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA004,0,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA004,0,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA004,0,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA004,0,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA004,0,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA004,0,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA004,0,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA004,0,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA004,0,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA004,0,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA004,0,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA004,0,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA004,0,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA004,0,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA004,0,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA004,0,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA004,0,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA004,0,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA004,0,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA004,0,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA004,0,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA004,0,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA004,0,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA004,0,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA004,0,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA004,0,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA004,0,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA004,0,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA004,0,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA004,0,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA004,0,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA004,0,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA004,0,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA004,0,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA004,0,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA004,0,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA004,0,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA004,0,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA004,0,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA004,0,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA004,0,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA004,0,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA004,0,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA004,0,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA004,0,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA004,0,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA004,0,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA004,0,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA004,0,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA004,0,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA004,0,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA004,0,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA004,0,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA004,0,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA004,0,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA004,0,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA004,0,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA004,0,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA004,0,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA004,0,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA004,0,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA004,0,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA004,0,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA004,0,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA004,0,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA004,0,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA004,0,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA004,0,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA004,0,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA004,0,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA004,0,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA004,0,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA004,0,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA004,0,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA004,0,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA004,0,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA004,0,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA004,0,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA004,0,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA004,0,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA004,0,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA004,0,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA004,0,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA004,0,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA004,0,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA004,0,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA004,0,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA004,0,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA004,0,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA004,0,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA004,0,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA004,0,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA004,0,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA004,0,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA004,0,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA004,0,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA004,0,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA004,0,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA004,0,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA004,0,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA004,0,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA004,0,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA004,0,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA004,0,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA004,0,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA004,0,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA004,0,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA004,0,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA004,0,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA004,0,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA004,0,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA004,0,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA004,0,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA004,0,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA004,0,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA004,0,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA004,0,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA004,0,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA004,0,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA004,0,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA004,0,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA004,0,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA004,0,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA004,0,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA004,0,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA004,0,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA004,0,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA004,0,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA004,0,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA004,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA004,0,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA004,0,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA004,0,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA004,0,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA004,0,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA004,0,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA004,0,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA004,0,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA004,0,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA004,0,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA004,0,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA004,0,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA004,0,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA004,0,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA004,0,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA004,0,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA004,0,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA004,0,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA004,0,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA004,0,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA004,0,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA004,0,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA004,0,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA004,0,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA004,0,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA004,0,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA004,0,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA004,0,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA004,0,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA004,0,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA004,0,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA004,0,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA004,0,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA004,0,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA004,0,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA004,0,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA004,0,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA004,0,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA004,0,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA004,0,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA004,0,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,1760,EA004,0,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968, +Ne3,Comanche Tribe,1870,EA004,0,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA004,0,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA004,0,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA004,0,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA004,0,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA004,0,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA004,0,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA004,0,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA004,0,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA004,0,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA004,0,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA004,0,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA004,0,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA004,0,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA004,0,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA004,0,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA004,0,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA004,0,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA004,0,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA004,0,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA004,0,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA004,0,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA004,0,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA004,0,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA004,0,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA004,0,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA004,0,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA004,0,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA004,NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA004,0,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA004,0,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA004,0,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA004,0,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA004,0,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA004,0,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA004,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA004,0,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA004,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA004,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA004,2,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA004,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA004,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA004,0,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA004,0,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA004,0,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA004,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA004,0,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA004,3,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA004,0,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA004,0,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA004,0,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA004,0,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA004,0,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA004,2,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA004,1,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA004,0,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA004,3,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA004,0,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA004,0,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA004,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA004,0,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA004,0,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA004,1,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA004,3,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA004,0,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA004,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA004,0,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA004,0,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA004,0,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA004,0,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA004,0,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,1920,EA004,0,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968, +Nj1,Ojitlan,1940,EA004,2,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA004,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA004,0,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,1950,EA004,1,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968, +Nj13,,1900,EA004,0,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA004,1,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA004,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA004,0,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA004,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA004,2,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA004,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA004,1,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA004,0,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA004,2,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA004,0,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA004,0,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA004,0,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA004,0,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA004,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA004,0,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA004,1,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA004,0,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA004,1,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA004,2,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA004,2,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA004,0,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA004,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA004,0,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA004,0,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA004,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA004,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA004,0,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA004,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA004,0,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA004,0,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA004,0,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA004,7,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA004,0,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA004,0,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA004,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA004,0,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA004,0,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA004,0,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA004,0,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA004,0,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA004,0,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA004,0,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA004,0,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA004,0,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA004,0,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA004,1,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA004,0,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA004,0,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA004,0,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA004,0,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA004,0,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA004,0,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA004,0,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA004,0,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA004,0,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA004,0,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA004,0,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA004,0,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA004,0,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA004,0,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA004,0,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA004,0,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA004,0,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA004,0,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA004,0,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA004,0,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA004,0,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA004,0,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA004,0,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA004,0,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA004,0,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA004,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA004,0,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA004,0,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA004,2,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA004,3,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA004,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA004,0,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA004,2,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA004,0,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA004,0,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA004,0,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA004,1,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA004,0,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA004,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA004,0,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA004,0,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA004,0,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA004,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA004,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA004,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA004,1,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA004,0,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA004,0,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA004,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA004,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA004,0,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA004,0,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA004,0,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA004,0,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA004,0,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA004,0,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA004,0,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA004,0,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA004,0,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA004,0,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,1940,EA004,0,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA004,0,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA004,0,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA004,0,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA004,0,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA004,0,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA004,0,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA004,0,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA004,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA004,0,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA004,0,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA004,0,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA004,5,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA004,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA004,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA004,2,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA004,3,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA004,3,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA004,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA004,2,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA004,4,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA004,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA004,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA004,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA004,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA004,4,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA004,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA004,2,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA004,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA004,0,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA004,0,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA004,0,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA004,0,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA004,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA004,0,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA004,0,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA004,0,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA004,0,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA004,0,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA040,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA040,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA040,7,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA040,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA040,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,1920,EA040,7,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p63, +Aa7,,1910,EA040,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,1850,EA040,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA040,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,1900,EA040,7,,irle1906; vedder1928,EthnographicAtlas_1967_p63, +Ab10,,1936,EA040,7,,hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,1850,EA040,7,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA040,7,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p63, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA040,7,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA040,7,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA040,7,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA040,3,,earthy1933,EthnographicAtlas_1967_p63, +Ab17,,,EA040,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA040,7,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA040,7,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,1880,EA040,7,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA040,NA,,,, +Ab21a,,1930,EA040,3,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA040,NA,,,, +Ab22,,,EA040,NA,,,, +Ab3,Ruling Luyana,1890,EA040,7,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,1920,EA040,7,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA040,7,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA040,7,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA040,7,,langandtastevin1937,EthnographicAtlas_1967_p63, +Ab8,Basuto,1860,EA040,7,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA040,7,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA040,7,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA040,7,But goats and sheep are more numerous than cattle,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA040,3,A few cattle are kept today,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,1920,EA040,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p63, +Ac13,,1950,EA040,3,But a very few exceptional individuals keep cattle,tew1950; velsen1964,EthnographicAtlas_1967_p63, +Ac14,,1900,EA040,3,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p63, +Ac15,,,EA040,NA,,,, +Ac16,,1940,EA040,3,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA040,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA040,3,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,1880,EA040,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA040,3,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p63, +Ac20,,1920,EA040,3,"A few cattle, which are not milked",milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA040,3,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p63, +Ac22,,1930,EA040,3,,mertens1935,EthnographicAtlas_1967_p63, +Ac23,with special reference to the western Lele,1950,EA040,3,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,1910,EA040,3,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA040,3,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p63, +Ac26,,1920,EA040,3,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA040,3,But cattle are kept in the extreme west,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA040,7,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p63, +Ac29,,,EA040,NA,,,, +Ac3,Zambia branch,1900,EA040,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA040,7,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA040,3,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA040,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA040,3,A very few cattle were kept,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA040,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA040,NA,,,, +Ac36,,1920,EA040,3,But cattle were formerly kept,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,1950,EA040,3,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA040,3,"A few cattle, which are not milked",malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p63, +Ac39,,1920,EA040,NA,A few cattle are kept,johnson1922; tew1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA040,3,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,1900,EA040,3,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA040,3,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA040,NA,,,, +Ac43,,1910,EA040,7,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA040,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,1930,EA040,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p63, +Ac7,,1920,EA040,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,1930,EA040,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA040,7,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,1950,EA040,7,,grottanelli1955,EthnographicAtlas_1967_p63, +Ad10,,1910,EA040,7,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,1930,EA040,7,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA040,7,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA040,7,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,Morogoro District,1930,EA040,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,1900,EA040,3,But some cattle are kept,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,1920,EA040,7,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA040,7,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,1910,EA040,3,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA040,7,"But 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"") in some districts",fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA040,7,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA040,7,The occasional cattle are tended by alien Tusi or Sangu herdsmen,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,1930,EA040,3,,maurice193538,EthnographicAtlas_1967_p67, +Ad22,,1950,EA040,7,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,1910,EA040,7,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA040,7,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,1900,EA040,7,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA040,7,,sick1916,Ethnology_Vol7_No2_Apr_1968, +Ad27,,1880,EA040,3,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA040,7,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA040,7,,ingrams1930; prins1961,EthnographicAtlas_1967_p67, +Ad3,,1910,EA040,7,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,1890,EA040,3,Also a very few cattle,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p67, +Ad31,,,EA040,NA,,,, +Ad32,,1900,EA040,7,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p67, +Ad33,,1900,EA040,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p67, +Ad34,,1910,EA040,7,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA040,7,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p67, +Ad36,,1890,EA040,7,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA040,7,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA040,7,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA040,3,,gray1963,EthnographicAtlas_1967_p67, +Ad4,Fort Hall or Metume district,1930,EA040,7,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA040,7,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA040,7,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p67, +Ad42,,1900,EA040,7,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,1900,EA040,7,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA040,3,Occasional cattle tended by Hima herders,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p67, +Ad45,,1920,EA040,7,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,1950,EA040,7,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p67, +Ad47,,1900,EA040,3,The occasional cattle are tended by immigrant Tusi headsmen,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA040,7,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA040,7,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA040,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA040,7,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA040,3,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA040,7,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA040,7,But goats are far more numerous than cattle,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA040,7,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,1900,EA040,7,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA040,3,,winter1956; winter1958,EthnographicAtlas_1967_p67, +Ae10,,1910,EA040,7,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA040,3,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA040,3,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA040,NA,,,, +Ae14,,1950,EA040,7,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,1940,EA040,7,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p67, +Ae16,,,EA040,NA,,,, +Ae17,,1900,EA040,3,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,1900,EA040,3,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA040,NA,,,, +Ae2,,1950,EA040,7,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,1940,EA040,3,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA040,3,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA040,3,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p67, +Ae23,,,EA040,NA,,,, +Ae24,,,EA040,NA,,,, +Ae25,,,EA040,NA,,,, +Ae26,,1910,EA040,3,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA040,3,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA040,3,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,1900,EA040,3,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p67, +Ae3,,1910,EA040,3,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,1920,EA040,3,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA040,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA040,3,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA040,3,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA040,3,Cattle are rare and are usually herded by immigrant Hima,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA040,3,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA040,1,"Possibly goats, though not specifically reported",verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA040,NA,,,, +Ae38,,1920,EA040,1,"Possibly 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1""), though there is no specific mention of goats",wijnant192526,EthnographicAtlas_1967_p67, +Ae39,,1920,EA040,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA040,3,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,1910,EA040,3,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA040,3,,andersson1953,EthnographicAtlas_1967_p67, +Ae42,,1900,EA040,3,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA040,3,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA040,3,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA040,7,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA040,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA040,3,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA040,3,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae49,,,EA040,NA,,,, +Ae5,,1910,EA040,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae50,,1920,EA040,3,"But there are a few cattle, tended by Fulani herdsmen",hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p67, +Ae51,Ndiki subtribe,1940,EA040,3,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae52,,,EA040,NA,,,, +Ae53,,,EA040,NA,,,, +Ae54,,,EA040,NA,,,, +Ae55,,1950,EA040,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae56,,1950,EA040,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae57,,1930,EA040,3,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA040,3,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA040,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA040,3,,verhulpen1936,Ethnology_Vol7_No2_Apr_1968, +Ae7,,1910,EA040,7,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA040,7,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,1950,EA040,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Af1,City and environs of Abomey,1890,EA040,3,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA040,7,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA040,7,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,with special reference to the Kwahu,1930,EA040,3,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA040,7,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,1930,EA040,7,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af15,,1920,EA040,7,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,1910,EA040,3,Formerly a few cattle,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA040,7,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA040,7,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA040,7,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,1950,EA040,7,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA040,7,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,with special reference to the Kalabari,1920,EA040,7,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA040,3,Also a few dwarf cattle,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p71, +Af23,with special reference to the village of Mgbom,1950,EA040,7,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA040,3,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,1930,EA040,3,Also a few cattle,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,with special reference to the Etsako,1900,EA040,7,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA040,3,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA040,3,"There are also a fair number of cattle, but they are owned, herded and milked exclusively by Fulani",gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,1950,EA040,3,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA040,3,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,1920,EA040,7,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,,,EA040,NA,,,, +Af32,Abeouta Province and Benin,1920,EA040,3,Also a few dwarf cattle,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA040,7,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA040,3,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA040,3,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA040,3,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p71, +Af37,with special reference to the Akpafu,1900,EA040,3,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA040,3,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA040,3,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA040,7,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA040,7,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA040,7,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA040,3,Also a few cattle,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p71, +Af43,,1930,EA040,3,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p71, +Af44,,,EA040,NA,,,, +Af45,,1900,EA040,3,Also a few cattle,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA040,7,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA040,7,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA040,7,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA040,7,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA040,3,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,1920,EA040,3,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA040,3,,tauxier1924a,EthnographicAtlas_1967_p71, +Af52,,1920,EA040,7,,tauxier1924a,EthnographicAtlas_1967_p71, +Af53,,1950,EA040,3,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA040,7,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,1950,EA040,3,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA040,7,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA040,7,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,1900,EA040,7,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA040,3,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA040,3,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA040,3,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,1900,EA040,3,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p71, +Ag1,Segou to Bamako on Niger River,1920,EA040,7,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA040,7,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,1910,EA040,7,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,1910,EA040,7,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA040,7,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,1950,EA040,7,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA040,7,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA040,2,"Also a few cattle, sheep, and goats",bernatzik1933; nogueira1947,EthnographicAtlas_1967_p71, +Ag17,,1940,EA040,2,"Inferentially also a few cattle, sheep, and goats",gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA040,7,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p71, +Ag19,with special reference to the Felup,1930,EA040,7,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p71, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA040,7,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,1930,EA040,7,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA040,7,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,with special reference to those of Sine,1920,EA040,7,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p71, +Ag23,,1910,EA040,7,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA040,7,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA040,7,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p71, +Ag26,,1930,EA040,7,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p71, +Ag27,,1910,EA040,3,Also a few cattle,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,1930,EA040,7,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA040,3,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA040,7,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p71, +Ag30,,1910,EA040,3,Cattle are few and are commonly tended by Fulani,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p71, +Ag31,,1910,EA040,3,,cheron1913; holas1957,EthnographicAtlas_1967_p71, +Ag32,,1900,EA040,3,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p71, +Ag33,,1920,EA040,7,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA040,7,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA040,3,Also a few cattle,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA040,7,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA040,7,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA040,7,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA040,7,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA040,7,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,1910,EA040,7,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA040,7,Cattle are commonly tended by Fulani herdsmen,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,1910,EA040,7,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA040,3,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA040,3,Also a few cattle,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA040,7,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA040,7,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA040,7,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,1890,EA040,7,But herding and milking are done mainly by Fulani,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p75, +Ag49,,1930,EA040,7,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA040,7,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,1910,EA040,7,But cattle are tended and milked only by Fulani,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA040,7,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA040,7,Cattle are tended almost exclusively by Fulani,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA040,7,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA040,7,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA040,7,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA040,1,But the Fulani of Masina pasture their herds in Bozo country in the dry season,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA040,7,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,1930,EA040,7,,labouret1934; sidibe1932,EthnographicAtlas_1967_p71, +Ah1,Zaria Province,1930,EA040,3,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA040,3,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA040,3,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah12,,1920,EA040,3,Also a few cattle,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA040,3,Also a few cattle,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA040,3,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,1920,EA040,3,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p75, +Ah16,,1900,EA040,3,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA040,3,Also a very few cattle (not milked) and a fair number of horses,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA040,3,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA040,3,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p75, +Ah2,,1920,EA040,3,,meek1931a,EthnographicAtlas_1967_p75, +Ah20,,1920,EA040,3,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,,EA040,NA,,,, +Ah22,,,EA040,NA,,,, +Ah23,,,EA040,NA,,,, +Ah24,,,EA040,NA,,,, +Ah25,,1920,EA040,3,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA040,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA040,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA040,3,Apparently also a few cattle,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA040,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA040,3,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,1920,EA040,7,,meek1931b,EthnographicAtlas_1967_p75, +Ah31,,1910,EA040,7,But sheep and goats greatly outnumber cattle,haughton1912; meek1931b,EthnographicAtlas_1967_p75, +Ah32,,1920,EA040,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA040,7,,meek1931b; temple1922,EthnographicAtlas_1967_p75, +Ah34,with special reference to the Malabu,1920,EA040,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA040,7,But cattle are tended almost exclusively by Fulani,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA040,3,Also a few cattle,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,1920,EA040,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA040,3,But a few cattle are kept,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA040,7,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,1920,EA040,3,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p75, +Ah5,,1930,EA040,7,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,1920,EA040,3,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA040,3,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,1910,EA040,3,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA040,3,"Diamond reports 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"")",diamond1964; gunn1953,EthnographicAtlas_1967_p75,"Assume Murdock comment refers to col 39, not col 30 as stated in Gray (1999); in that case however the codes for EA039/EA040/EA041 are as reported by Diamond." +Ai1,,1920,EA040,3,,daigre193232; leynaud1954,EthnographicAtlas_1967_p75, +Ai10,Nuba Hills,1940,EA040,7,,nadel1947,EthnographicAtlas_1967_p75, +Ai11,,1900,EA040,3,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA040,3,Also a few cattle,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,1920,EA040,3,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA040,3,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA040,7,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,1910,EA040,7,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA040,3,But cattle were formerly kept,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA040,7,"Only a few cattle, tended exclusively by Arab herdsmen",lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA040,7,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA040,NA,,,, +Ai20,,1910,EA040,7,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA040,7,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,1890,EA040,7,,delafosse1897,EthnographicAtlas_1967_p75, +Ai23,,1920,EA040,3,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,1900,EA040,3,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA040,3,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA040,3,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p75, +Ai27,,1890,EA040,3,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA040,3,A few goats but no sheep,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA040,7,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA040,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA040,3,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA040,3,Also a very few cattle,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA040,7,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA040,7,But goats are much more numerous than cattle,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,1880,EA040,7,But goats greatly outnumber cattle,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA040,3,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,1920,EA040,7,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,1940,EA040,7,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA040,7,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai39,,1940,EA040,7,,nadel1947,EthnographicAtlas_1967_p75, +Ai4,,1920,EA040,7,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA040,7,,nadel1947,EthnographicAtlas_1967_p75, +Ai41,,1930,EA040,7,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai42,,1940,EA040,7,,nadel1947; nadel1950,EthnographicAtlas_1967_p75, +Ai43,,1930,EA040,7,,nadel1947; stevenson1940,EthnographicAtlas_1967_p75, +Ai44,,1920,EA040,3,A few cattle are also kept,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,1930,EA040,7,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA040,3,A few cattle are also kept,corfield1938; grottanelli1948,EthnographicAtlas_1967_p75, +Ai47,Northern division,1939,EA040,7,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,1920,EA040,3,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA040,7,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA040,3,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,1930,EA040,7,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p75, +Ai9,Around Yagoua in Cameroon,1910,EA040,7,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,1950,EA040,7,,lawrance1957,EthnographicAtlas_1967_p75, +Aj10,,1920,EA040,3,But a few cattle are kept,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA040,7,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA040,7,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,1930,EA040,7,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA040,7,But goats greatly outnumber cattle,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA040,7,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,with special reference to the Riverain Mondari,1930,EA040,7,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p79, +Aj17,,1890,EA040,7,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA040,7,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,1920,EA040,7,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p79, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA040,7,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,1940,EA040,7,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p79, +Aj21,,1930,EA040,7,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,1930,EA040,7,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA040,7,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA040,7,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,1920,EA040,7,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA040,7,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p79, +Aj27,,1920,EA040,7,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA040,7,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA040,7,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA040,7,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA040,NA,,,, +Aj31,,,EA040,NA,,,, +Aj4,,1920,EA040,7,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA040,7,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA040,7,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA040,7,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA040,7,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA040,7,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA040,7,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA040,6,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA040,7,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p79, +Ca12,,1880,EA040,7,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p79, +Ca13,with special reference to the eastern Macha,1950,EA040,7,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p79, +Ca14,,1950,EA040,7,,cerulli1956; fleming1965,EthnographicAtlas_1967_p79, +Ca15,,1930,EA040,7,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca16,,1930,EA040,7,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca17,,1950,EA040,7,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca18,,1940,EA040,7,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA040,7,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA040,6,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,1890,EA040,7,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA040,7,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA040,7,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA040,7,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,1950,EA040,7,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA040,7,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA040,7,But sheep are much more numerous than cattle,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA040,7,But cattle are scarce,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA040,7,But sheep and goats greatly outnumber cattle,cerulli1956; jensen1959,EthnographicAtlas_1967_p79, +Ca29,,1920,EA040,7,,huntingford1955b; straube1963,EthnographicAtlas_1967_p79, +Ca3,,1950,EA040,7,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,Kafa Kingdom,1890,EA040,7,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p79, +Ca31,,1860,EA040,7,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,1860,EA040,7,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca33,,1860,EA040,7,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca34,,1920,EA040,6,But cattle are more numerous than camels,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA040,6,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA040,6,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA040,7,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA040,7,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA040,7,,lewis1965b,EthnographicAtlas_1967_p79, +Ca4,,1950,EA040,7,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p79, +Ca40,,1950,EA040,7,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA040,7,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA040,7,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA040,NA,,,, +Ca5,,1930,EA040,6,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p79, +Ca6,,1880,EA040,6,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA040,7,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,1940,EA040,7,,leslau1950; shack1963,EthnographicAtlas_1967_p79, +Ca9,,1890,EA040,7,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,,EA040,NA,,,, +Cb10,,1920,EA040,7,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA040,7,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA040,7,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA040,7,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA040,7,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA040,7,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA040,7,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA040,7,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,1930,EA040,7,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p79, +Cb19,,1870,EA040,7,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA040,7,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,1920,EA040,7,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA040,7,,pfeffer1936,EthnographicAtlas_1967_p83, +Cb22,,1920,EA040,7,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA040,7,,kane1939; lafont1939,EthnographicAtlas_1967_p83, +Cb24,Wodaabe of Niger,1950,EA040,7,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,1930,EA040,7,But cattle are mainly tended by Fulani,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA040,7,But cattle are mainly tended by Fulani,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,1920,EA040,7,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA040,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA040,NA,,,, +Cb3,Bamba division,1940,EA040,7,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,1920,EA040,7,,reid1930,EthnographicAtlas_1967_p79, +Cb5,,1910,EA040,7,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p79, +Cb6,,1920,EA040,4,Also goats and a few cattle,woodnd,EthnographicAtlas_1967_p79, +Cb7,,1920,EA040,7,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA040,7,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA040,7,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA040,6,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA040,6,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,1860,EA040,6,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA040,6,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA040,6,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA040,7,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA040,NA,,,, +Cc16,,1930,EA040,6,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,1930,EA040,6,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p83, +Cc18,,1910,EA040,7,Also a few camels and many sheep,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA040,7,Also camels in the north and many sheep,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA040,6,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,with special reference to the more nomadic northern groups,1910,EA040,6,,adeler1939; tauxier1912,EthnographicAtlas_1967_p83, +Cc3,inhabitants of the oasis of Siwa,1920,EA040,7,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA040,3,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,1910,EA040,6,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p83, +Cc6,,1910,EA040,6,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA040,6,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA040,NA,,,, +Cc9,Ahaggaren tribe,1920,EA040,6,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA040,7,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,1900,EA040,7,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA040,3,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p83, +Cd12,,1870,EA040,7,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,1930,EA040,3,Also camels and a few cattle,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA040,3,Also a few camels and cattle,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA040,7,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA040,7,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA040,6,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA040,6,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA040,3,Also a few cattle and camels,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA040,7,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,1940,EA040,6,But goats and sheep predominate,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA040,7,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA040,7,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA040,7,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA040,7,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,with special reference to the New Empire,-1400,EA040,7,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,with special reference to the Zemmur tribe,1910,EA040,7,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA040,7,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA040,7,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA040,7,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA040,NA,,,, +Ce3,City and environs of Rome,100,EA040,7,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA040,7,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA040,7,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA040,7,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA040,7,But principally sheep and horses,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA040,7,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA040,7,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,of the Transvaal,1850,EA040,7,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No4_Oct_1962, +Cf3,,1930,EA040,7,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA040,7,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA040,7,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA040,7,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA040,7,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA040,7,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA040,5,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA040,7,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA040,7,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA040,NA,,,, +Ch11,Viriatino Village,1955,EA040,7,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA040,7,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA040,7,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,1900,EA040,7,,heffner1955; wichmann1913,EthnographicAtlas_1967_p83, +Ch5,with special reference to the village of Dragelevtsy,1940,EA040,7,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA040,7,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA040,7,,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA040,7,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA040,7,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,with special reference to the Baga Dorbed group,1920,EA040,7,,aberle1953; adelmannd,EthnographicAtlas_1967_p83, +Ci10,Vicinity of Erevan,1900,EA040,7,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA040,7,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,Abkhaz Tribe,1880,EA040,7,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA040,7,,grigolia1939,EthnographicAtlas_1967_p83, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA040,7,,gadzhieva1958,EthnographicAtlas_1967_p83, +Ci4,,1920,EA040,7,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA040,7,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA040,7,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p83, +Ci7,,1900,EA040,7,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p83, +Ci8,,1850,EA040,7,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA040,7,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA040,7,The most important animals are sheep,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA040,7,,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,Unspecified,1920,EA040,6,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA040,7,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA040,7,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,1930,EA040,6,,dickson1949,EthnographicAtlas_1967_p87, +Cj6,with special reference to the sedentary population,1950,EA040,7,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA040,7,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p87, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA040,7,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,1950,EA040,7,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA040,7,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA040,7,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA040,7,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA040,7,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA040,7,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA040,7,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA040,7,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA040,7,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,1890,EA040,7,,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA040,3,"Donkeys, horses, and camels are also kept in smaller numbers",barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA040,7,,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,1920,EA040,7,,feilberg1952; wilson1926,EthnographicAtlas_1967_p87, +Ea9,,1950,EA040,7,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA040,4,"Also cattle, camels, and especially sheep",castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,1920,EA040,7,,krader1963; schram1954,EthnographicAtlas_1967_p87, +Eb3,Narobanchin Territory,1940,EA040,7,"Also cattle, yaks, and especially sheep",ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p87,"Assume Murdock comment refers to Col 39, not Col 30 as stated in Gray (1999)" +Eb4,,,EA040,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA040,7,,freikin1954; odonovan1882,Ethnology_Vol2_No2_Apr_1963, +Eb6,,,EA040,NA,,,, +Eb7,,1930,EA040,7,,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA040,NA,,,, +Ec1,Sakhalin Island,1920,EA040,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA040,5,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,1900,EA040,5,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA040,7,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA040,5,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA040,5,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA040,5,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA040,1,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA040,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,1900,EA040,5,,shimkin1939,EthnographicAtlas_1967_p87, +Ec9,,1920,EA040,2,,lattimore1933,EthnographicAtlas_1967_p87, +Ed1,Kanghwa Island,1950,EA040,7,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA040,7,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA040,NA,,,, +Ed14,,,EA040,NA,,,, +Ed15a,,,EA040,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA040,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA040,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA040,7,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,Aigun District,1920,EA040,7,,shirokogoroff1924,EthnographicAtlas_1967_p87, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA040,7,,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA040,7,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA040,7,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA040,7,There are few horses and cattle; pigs are by far the principal domestic animals,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA040,7,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA040,7,But cows and goats are milked only occasionally to feed calves or children,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA040,7,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA040,7,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA040,7,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA040,7,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA040,7,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA040,7,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA040,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA040,7,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA040,7,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA040,NA,,,, +Ef11,Village and environs of Senapur,1945,EA040,7,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA040,7,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA040,NA,,,, +Ef4,,,EA040,NA,,,, +Ef5,,1900,EA040,7,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,1940,EA040,7,,roy1915; roy1951,EthnographicAtlas_1967_p87, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA040,7,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA040,7,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA040,7,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA040,7,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA040,7,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA040,NA,,,, +Eg12,,,EA040,NA,,,, +Eg13,Bastar State,1941,EA040,7,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA040,7,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA040,7,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA040,3,"A few cattle are kept, but are not milked",grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA040,7,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA040,7,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA040,7,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA040,7,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,1940,EA040,7,,griffiths1946,EthnographicAtlas_1967_p91, +Eg9,,1930,EA040,1,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA040,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA040,NA,,,, +Eh2,,1900,EA040,7,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA040,7,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA040,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA040,2,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA040,7,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,1900,EA040,7,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA040,7,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91, +Eh9,,1930,EA040,7,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA040,7,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA040,7,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p91, +Ei11,,1910,EA040,7,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA040,7,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA040,7,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA040,7,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA040,NA,,,, +Ei16,,1910,EA040,7,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA040,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA040,7,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,1940,EA040,7,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA040,7,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA040,NA,,,, +Ei3,Nondwin Village,1950,EA040,7,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA040,7,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA040,7,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA040,7,,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,1910,EA040,7,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA040,7,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,1880,EA040,7,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p91, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA040,7,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA040,7,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA040,7,,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA040,7,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA040,7,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA040,1,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA040,7,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA040,7,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA040,7,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA040,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA040,7,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA040,7,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,of the Mergui Archipelago,1920,EA040,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p91, +Ej7,,1950,EA040,7,But pigs are the principal domestic animals,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,with special reference to those of Trengganu,1940,EA040,7,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA040,7,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA040,2,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,1930,EA040,2,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p91, +Ia11,,1930,EA040,7,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA040,7,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA040,3,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,1930,EA040,3,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p95, +Ia15,with special reference to those of the Agusan Valley,1920,EA040,2,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA040,7,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA040,NA,,,, +Ia18,,,EA040,NA,,,, +Ia2,,1950,EA040,7,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA040,2,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA040,2,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA040,7,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA040,2,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA040,7,,fox1954,EthnographicAtlas_1967_p91, +Ia8,,1900,EA040,7,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA040,7,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA040,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA040,7,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA040,7,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,with special reference to the Toba group,1930,EA040,7,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p95, +Ib5,with special reference to the village of Sensuron,1920,EA040,7,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA040,7,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,with special reference to those of North Pageh,1920,EA040,2,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p95, +Ib8,with special reference to the Ridan group,1900,EA040,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p95, +Ib9,,,EA040,NA,,,, +Ic1,Borongloe,1940,EA040,7,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA040,2,,hueting1921; riedel1885,EthnographicAtlas_1967_p95, +Ic11,Allang,1950,EA040,2,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA040,7,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA040,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA040,2,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,with special reference to the Mountain Belu,1950,EA040,7,,vroklage1952,EthnographicAtlas_1967_p95, +Ic4,,,EA040,NA,,,, +Ic5,Bare'e subgroup,1910,EA040,7,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p95, +Ic6,,1930,EA040,2,,drabbe1940,EthnographicAtlas_1967_p95, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA040,3,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,1890,EA040,2,,pleyte1893,EthnographicAtlas_1967_p95, +Ic9,with special reference to eastern Sumba,1930,EA040,7,,nooteboom1940,EthnographicAtlas_1967_p95, +Id1,Alice Springs and environs,1900,EA040,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA040,1,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA040,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA040,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA040,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA040,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA040,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA040,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA040,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,with special reference to the Archer River group,1920,EA040,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p95, +Id7,,1940,EA040,1,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA040,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,1910,EA040,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p95, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA040,2,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA040,2,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA040,2,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA040,2,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA040,1,,landtman1927,EthnographicAtlas_1967_p95, +Ie14,,1900,EA040,2,,haddon1908,EthnographicAtlas_1967_p95, +Ie15,Kalabu; Northern Abelam,1930,EA040,2,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA040,2,,williams194041,EthnographicAtlas_1967_p95, +Ie17,,1940,EA040,2,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA040,2,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA040,2,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA040,2,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA040,2,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,1900,EA040,2,,malinowski1916,EthnographicAtlas_1967_p95, +Ie22,,1900,EA040,2,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,1950,EA040,2,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,1870,EA040,2,,chalmers1890; lawes1879,EthnographicAtlas_1967_p95, +Ie25,,1920,EA040,2,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,1940,EA040,2,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,1910,EA040,2,,thurnwald1916,EthnographicAtlas_1967_p99, +Ie28,,1940,EA040,2,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA040,2,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA040,2,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA040,1,,pouwer1955,EthnographicAtlas_1967_p99, +Ie31,,1950,EA040,2,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA040,2,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA040,2,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA040,NA,,,, +Ie35,,1930,EA040,2,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA040,NA,,,, +Ie37,,,EA040,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA040,2,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA040,2,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA040,2,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA040,2,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,1930,EA040,2,,held1947,EthnographicAtlas_1967_p95, +Ie7,with special reference to the Mae group,1950,EA040,2,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA040,2,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA040,2,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA040,2,Pigs were introduced by Europeans,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA040,NA,,,, +If11,,1860,EA040,2,,sarfert1919,EthnographicAtlas_1967_p99, +If12,,1940,EA040,2,,mason1954,EthnographicAtlas_1967_p99, +If13,,1900,EA040,1,But pigs have been introduced,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p99, +If14,Makin and Butiritari Islands (N),1890,EA040,2,The pig was introduced by Europeans,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA040,2,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,1960,EA040,2,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA040,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA040,2,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA040,2,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA040,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA040,2,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA040,2,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,with special reference to the inhabitants of Onotoa,1940,EA040,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p99, +If8,with special reference to those of Saipa,1950,EA040,7,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA040,2,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,Northeastern group,1940,EA040,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA040,2,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA040,2,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,with special reference to the Varisi,1900,EA040,2,,scheffler1965,EthnographicAtlas_1967_p99, +Ig13,,1900,EA040,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p99, +Ig14,,1900,EA040,2,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA040,NA,,,, +Ig16,,,EA040,NA,,,, +Ig17,,,EA040,NA,,,, +Ig18,,,EA040,NA,,,, +Ig19,,,EA040,NA,,,, +Ig2,Kiriwina Island,1910,EA040,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA040,2,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA040,2,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA040,2,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA040,2,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,1920,EA040,2,,fortune1932b,EthnographicAtlas_1967_p99, +Ig6,,1900,EA040,2,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA040,2,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA040,NA,,,, +Ig9,Peri Village,1920,EA040,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA040,2,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,Whitsands,1920,EA040,2,,humphreys1926,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA040,NA,,,, +Ih12,,,EA040,NA,,,, +Ih13,,,EA040,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA040,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA040,2,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA040,2,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA040,2,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA040,2,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p99, +Ih6,,1890,EA040,2,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p99, +Ih7,,1910,EA040,2,,hadfield1920; ray1917,EthnographicAtlas_1967_p99, +Ih8,with special reference to the village of Nakaroka,1940,EA040,2,,quain1949,EthnographicAtlas_1967_p99, +Ih9,Graciosa Bay,1930,EA040,2,,davenport1964,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA040,2,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,1950,EA040,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA040,2,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA040,2,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA040,2,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA040,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA040,2,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA040,2,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA040,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p99, +Ii6,with special reference to Atafu,1900,EA040,1,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA040,2,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA040,2,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA040,1,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA040,1,The pig was introduced by Europeans in the 1820s,buck1934,EthnographicAtlas_1967_p99, +Ij10,,1900,EA040,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA040,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA040,2,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA040,1,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,1900,EA040,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p103, +Ij6,,1800,EA040,2,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p103, +Ij7,,1900,EA040,1,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,1900,EA040,2,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p103, +Ij9,,1860,EA040,1,,metraux1940,EthnographicAtlas_1967_p103, +Na1,,1930,EA040,1,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA040,1,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA040,5,"But reindeer were introduced in 1900, but the herds died out in the 1940s",hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA040,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA040,1,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA040,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,1860,EA040,1,,helmandlurie1961,EthnographicAtlas_1967_p103, +Na16,,1860,EA040,1,,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA040,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA040,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA040,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA040,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA040,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA040,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA040,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA040,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA040,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA040,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA040,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA040,1,,jenness1937,EthnographicAtlas_1967_p103, +Na29,,1850,EA040,1,But horses were introduced in the late nineteenth century,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA040,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA040,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA040,1,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA040,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA040,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA040,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA040,1,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA040,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA040,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA040,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA040,1,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA040,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA040,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA040,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA040,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA040,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA040,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA040,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA040,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA040,1,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA040,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA040,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA040,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA040,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA040,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA040,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA040,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA040,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA040,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA040,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA040,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA040,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA040,1,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA040,1,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA040,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA040,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA040,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA040,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA040,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA040,1,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA040,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA040,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA040,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA040,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA040,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA040,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,1860,EA040,1,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA040,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p107, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA040,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA040,1,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA040,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA040,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA040,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,1860,EA040,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA040,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA040,1,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA040,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA040,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA040,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA040,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA040,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA040,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA040,1,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,1860,EA040,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA040,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA040,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA040,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA040,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA040,1,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA040,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA040,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA040,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,with special reference to those near Santa Rosa,1860,EA040,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc2,,1850,EA040,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,1860,EA040,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,1860,EA040,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA040,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,1870,EA040,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,Tulare Lake,1860,EA040,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA040,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,1770,EA040,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA040,1,,driver1937; gifford1917,EthnographicAtlas_1967_p107, +Nc28,,1800,EA040,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA040,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA040,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA040,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA040,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,1870,EA040,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc33,,1860,EA040,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA040,1,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA040,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA040,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA040,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA040,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA040,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA040,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA040,1,But some horses were obtained by trade from tribes to the east,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,1860,EA040,1,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA040,1,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA040,4,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA040,4,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA040,4,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA040,4,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA040,4,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA040,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA040,1,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA040,4,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA040,4,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA040,4,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA040,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA040,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA040,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA040,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA040,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA040,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA040,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA040,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA040,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA040,1,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA040,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA040,1,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA040,1,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA040,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA040,1,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA040,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA040,4,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA040,1,But a few people had horses,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA040,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA040,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA040,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA040,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA040,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA040,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA040,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA040,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA040,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA040,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA040,4,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA040,4,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA040,4,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA040,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA040,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA040,4,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA040,4,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA040,4,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA040,4,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA040,4,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA040,4,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA040,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA040,1,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA040,4,But horses were few,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA040,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA040,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA040,4,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,1860,EA040,4,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA040,4,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA040,4,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA040,4,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA040,4,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA040,4,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,1800,EA040,4,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,1860,EA040,4,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA040,4,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA040,4,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,1870,EA040,4,,mcallister1937,EthnographicAtlas_1967_p111, +Ne20,,1850,EA040,4,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p115, +Ne21,,,EA040,NA,,,, +Ne3,Comanche Tribe,1870,EA040,4,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p111, +Ne4,,1870,EA040,4,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA040,4,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,1830,EA040,4,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p111, +Ne7,,1880,EA040,4,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,1870,EA040,4,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA040,4,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA040,4,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA040,4,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA040,4,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA040,1,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA040,1,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA040,NA,,,, +Nf2,,1850,EA040,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p115, +Nf3,Omaha Tribe,1850,EA040,4,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA040,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,1860,EA040,4,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA040,4,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA040,4,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA040,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,1870,EA040,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA040,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA040,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,1750,EA040,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p115, +Ng12,,1760,EA040,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p115, +Ng13,,,EA040,NA,,,, +Ng14,,,EA040,NA,,,, +Ng15,,,EA040,NA,,,, +Ng2,,,EA040,NA,,,, +Ng3,Upper division in Alabama,1750,EA040,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA040,NA,,,, +Ng5,,1750,EA040,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA040,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA040,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,1560,EA040,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p115, +Ng9,,,EA040,NA,,,, +Nh1,Central band,1880,EA040,4,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA040,3,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA040,4,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA040,7,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA040,3,Also some cattle,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,,EA040,NA,,,, +Nh15,,1870,EA040,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA040,4,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA040,4,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA040,3,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA040,4,But horses were adopted from Europeans as early as 1828,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,1950,EA040,7,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954,EthnographicAtlas_1967_p115, +Nh20,,1860,EA040,1,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA040,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA040,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,1870,EA040,1,,gifford1932a,EthnographicAtlas_1967_p115, +Nh24,,1880,EA040,4,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,1920,EA040,7,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA040,NA,,,, +Nh27,,,EA040,NA,,,, +Nh3,,1930,EA040,3,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA040,3,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA040,1,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA040,4,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA040,4,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA040,4,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,,EA040,NA,,,, +Ni1,,1930,EA040,7,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA040,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA040,7,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,1900,EA040,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p115, +Ni5,,1570,EA040,1,,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA040,1,"Aboriginally, but subsequently plow cultivaton (EA039 code ""2"") and 'bovine' (EA040 code ""7"")",castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA040,1,"Aboriginally, but 'no plow animals' (EA039 code ""1""), 'bovine' (EA040 code ""7""), and 'milking, more often than sporadically' (EA041 code ""2"")",beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA040,NA,,,, +Ni9,,,EA040,NA,,,, +Nj1,Ojitlan,1940,EA040,3,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,,,EA040,NA,,,, +Nj11,,,EA040,NA,,,, +Nj12,,,EA040,NA,,,, +Nj13,,,EA040,NA,,,, +Nj14,,,EA040,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA040,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA040,2,"Also a few horses, mules, and cattle",foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,1940,EA040,4,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA040,NA,,,, +Nj6,,,EA040,NA,,,, +Nj7,with special reference to Ayutla,1930,EA040,7,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA040,1,,foster1948,EthnographicAtlas_1967_p119, +Nj9,,1960,EA040,7,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA040,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,,EA040,NA,,,, +Sa11,,,EA040,NA,,,, +Sa12,,1948,EA040,2,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA040,3,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA040,NA,,,, +Sa15,,,EA040,NA,,,, +Sa16,,,EA040,NA,,,, +Sa17,,,EA040,NA,,,, +Sa2,,,EA040,NA,,,, +Sa3,,1930,EA040,2,"Also a few cattle, which ""are of little importance""",wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA040,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA040,2,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA040,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA040,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA040,4,,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA040,7,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA040,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA040,2,"Also a few cattle, especially pack oxen",park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,with special reference to the Iroka,1940,EA040,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA040,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA040,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,Goajiro Tribe,1940,EA040,7,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA040,1,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,1520,EA040,1,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA040,7,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA040,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA040,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,1930,EA040,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p119, +Sc12,,1910,EA040,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p119, +Sc13,,1950,EA040,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p119, +Sc14,,,EA040,NA,,,, +Sc15,,1910,EA040,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p119, +Sc16,with special reference to the Makitare,1920,EA040,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p119, +Sc17,,1950,EA040,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sc18,,1960,EA040,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA040,2,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA040,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA040,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA040,1,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA040,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA040,1,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,1950,EA040,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p119, +Sc9,,1950,EA040,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p119, +Sd1,Cabrura village,1950,EA040,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA040,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,1920,EA040,1,,nimuendaju1926,EthnographicAtlas_1967_p119, +Sd4,,1950,EA040,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA040,1,But a few pigs are kept today,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,1960,EA040,1,,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,1950,EA040,1,,fock1963,EthnographicAtlas_1967_p119, +Sd8,,1950,EA040,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA040,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA040,1,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA040,2,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,1960,EA040,1,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA040,NA,,,, +Se2,,1940,EA040,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA040,2,"A few llamas were kept aboriginally; The Jivaro keep a few pigs, introduced by the Spaniards in the sixteenth century",harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA040,1,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA040,2,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA040,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA040,NA,,,, +Se8,Upper Inuya River,1950,EA040,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA040,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA040,6,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA040,7,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA040,2,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA040,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,1900,EA040,7,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,1540,EA040,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA040,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA040,NA,,,, +Sf9,,,EA040,NA,,,, +Sg1,Eastern and central,1870,EA040,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA040,7,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA040,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA040,4,"But absence or near absence of domestic animals (EA039 and EA040 code ""1"") prior to 1725",bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA040,1,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA040,3,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA040,7,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,Those in contact with mission,1800,EA040,4,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA040,4,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA040,1,But both small and large livestock have recently been introduced,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,1890,EA040,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,1900,EA040,1,But some sheep and cattle are kept today,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p123, +Sh8,with special reference to those of the Argentine Chaco,1964,EA040,4,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA040,1,But a few livestock have recently been acquired,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA040,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA040,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA040,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA040,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA040,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA040,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,1900,EA040,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p123, +Si7,with special reference to the Cozarimi,1910,EA040,1,But pigs are kept today,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA040,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA040,NA,,,, +Sj1,,1950,EA040,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,Taquapiri,1950,EA040,1,But a few horses are kept today,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA040,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA040,1,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA040,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA040,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,Naknenuk subtribe,1880,EA040,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p123, +Sj6,with special reference to the Guajajara subgroup,1930,EA040,3,Animal husbandry is recent,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA040,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA040,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,1950,EA040,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA040,4,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA040,4,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA040,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA040,7,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA040,7,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA040,7,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA040,7,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA040,7,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA040,4,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA040,7,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA040,4,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA040,4,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA040,7,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA040,7,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA040,7,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA040,7,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA040,7,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA040,5,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA040,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA040,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA040,5,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA040,5,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA040,5,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA040,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA040,5,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA040,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA040,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA041,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p63, +Aa2,with special reference to Central Dorobo,1920,EA041,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p63, +Aa3,Gei/Khauan tribe,1840,EA041,2,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p63, +Aa4,,,EA041,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA041,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,Ethnology_Vol10_No1_Jan_1971, +Aa6,,1920,EA041,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p63, +Aa7,,1910,EA041,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p63, +Aa8,,1850,EA041,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA041,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,Ethnology_Vol10_No1_Jan_1971, +Ab1,,1900,EA041,2,,irle1906; vedder1928,EthnographicAtlas_1967_p63, +Ab10,,1936,EA041,2,,hunter1936,Ethnology_Vol7_No2_Apr_1968, +Ab11,,1850,EA041,2,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA041,2,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p63, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA041,2,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p63, +Ab14,,1930,EA041,2,,krigeandkrige1943,EthnographicAtlas_1967_p63, +Ab15,,1860,EA041,2,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA041,1,,earthy1933,EthnographicAtlas_1967_p63, +Ab17,,,EA041,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA041,2,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,Ethnology_Vol7_No2_Apr_1968, +Ab19,with special reference to the Kuanyama,1910,EA041,2,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p63, +Ab2,,1880,EA041,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p63, +Ab20,,,EA041,NA,,,, +Ab21a,,1930,EA041,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA041,NA,,,, +Ab22,,,EA041,NA,,,, +Ab3,Ruling Luyana,1890,EA041,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p63, +Ab4,,1920,EA041,2,,junod1927,EthnographicAtlas_1967_p63, +Ab5,,1930,EA041,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p63, +Ab6,,1900,EA041,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p63, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA041,2,,langandtastevin1937,EthnographicAtlas_1967_p63, +Ab8,Basuto,1860,EA041,2,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p63, +Ab9,,1870,EA041,2,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p63, +Ac1,,1920,EA041,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p63, +Ac10,,1920,EA041,2,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p63, +Ac11,,1930,EA041,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p63, +Ac12,,1920,EA041,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p63, +Ac13,,1950,EA041,1,,tew1950; velsen1964,EthnographicAtlas_1967_p63, +Ac14,,1900,EA041,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p63, +Ac15,,,EA041,NA,,,, +Ac16,,1940,EA041,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA041,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p63, +Ac18,,1910,EA041,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p63, +Ac19,,1880,EA041,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA041,1,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p63, +Ac20,,1920,EA041,1,"A few cattle, which are not milked",milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA041,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p63, +Ac22,,1930,EA041,1,,mertens1935,EthnographicAtlas_1967_p63, +Ac23,with special reference to the western Lele,1950,EA041,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p63, +Ac24,,1910,EA041,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA041,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p63, +Ac26,,1920,EA041,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA041,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA041,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p63, +Ac29,,,EA041,NA,,,, +Ac3,Zambia branch,1900,EA041,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p63, +Ac30,,1940,EA041,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p63, +Ac31,,1910,EA041,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA041,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA041,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p63, +Ac34,,1940,EA041,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p63, +Ac35,,,EA041,NA,,,, +Ac36,,1920,EA041,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p63, +Ac37,,1950,EA041,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA041,1,"A few cattle, which are not milked",malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p63, +Ac39,,,EA041,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA041,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p63, +Ac40,,1900,EA041,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA041,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA041,NA,,,, +Ac43,,1910,EA041,2,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA041,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p63, +Ac6,,1930,EA041,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p63, +Ac7,,1920,EA041,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p63, +Ac8,,1930,EA041,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p63, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA041,2,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p63, +Ad1,,1950,EA041,2,,grottanelli1955,EthnographicAtlas_1967_p63, +Ad10,,1910,EA041,2,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p67, +Ad11,,1930,EA041,2,,culwickandculwick1935,EthnographicAtlas_1967_p67, +Ad12,,1940,EA041,2,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA041,2,,edel1937; edel1957; taylor1962,Ethnology_Vol7_No2_Apr_1968, +Ad14,Morogoro District,1930,EA041,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,Ethnology_Vol7_No2_Apr_1968, +Ad15,,1900,EA041,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p67, +Ad16,,1920,EA041,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p67, +Ad17,,1920,EA041,2,,kootzkretschmer192629,Ethnology_Vol7_No2_Apr_1968, +Ad18,,1910,EA041,1,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA041,2,"But 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"") in some districts",fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p67, +Ad2,,1950,EA041,2,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p63, +Ad20,,1920,EA041,2,,blohm193133; bosch1930; spellig1927,Ethnology_Vol7_No2_Apr_1968, +Ad21,,1930,EA041,1,,maurice193538,EthnographicAtlas_1967_p67, +Ad22,,1950,EA041,2,,abrahams1967; cory1953; malcolm1953,Ethnology_Vol7_No2_Apr_1968, +Ad23,,1910,EA041,2,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA041,2,,claus1911; paulssen1922; rigby1966; schaegelen1938,Ethnology_Vol7_No2_Apr_1968, +Ad25,,1900,EA041,2,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA041,2,,sick1916,Ethnology_Vol7_No2_Apr_1968, +Ad27,,1880,EA041,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA041,2,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA041,2,,ingrams1930; prins1961,EthnographicAtlas_1967_p67, +Ad3,,1910,EA041,2,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p63, +Ad30,,1890,EA041,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p67, +Ad31,,,EA041,NA,,,, +Ad32,,1900,EA041,2,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p67, +Ad33,,1900,EA041,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p67, +Ad34,,1910,EA041,2,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA041,2,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p67, +Ad36,,1890,EA041,2,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA041,2,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA041,2,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA041,2,,gray1963,EthnographicAtlas_1967_p67, +Ad4,Fort Hall or Metume district,1930,EA041,2,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p63, +Ad40,,1950,EA041,2,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA041,2,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p67, +Ad42,,1900,EA041,2,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p67, +Ad43,,1900,EA041,2,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA041,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p67, +Ad45,,1920,EA041,2,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p67, +Ad46,,1950,EA041,2,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p67, +Ad47,,1900,EA041,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA041,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA041,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA041,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA041,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA041,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA041,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p63, +Ad7,Kyaddondo district (V: Kampala),1880,EA041,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p63, +Ad8,with special reference to the northern or Iringa group,1910,EA041,2,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p67, +Ad9,,1900,EA041,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p67, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA041,1,,winter1956; winter1958,EthnographicAtlas_1967_p67, +Ae10,,1910,EA041,2,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA041,1,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA041,1,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p67, +Ae13,,,EA041,NA,,,, +Ae14,,1950,EA041,2,,hertefeltetal1962,EthnographicAtlas_1967_p67, +Ae15,,1940,EA041,2,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p67, +Ae16,,,EA041,NA,,,, +Ae17,,1900,EA041,1,,delhaise1909b; salmon1953,Ethnology_Vol7_No2_Apr_1968, +Ae18,,1900,EA041,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA041,NA,,,, +Ae2,,1950,EA041,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p67, +Ae20,,1940,EA041,1,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA041,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA041,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p67, +Ae23,,,EA041,NA,,,, +Ae24,,,EA041,NA,,,, +Ae25,,,EA041,NA,,,, +Ae26,,1910,EA041,1,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA041,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA041,1,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p67, +Ae29,,1900,EA041,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p67, +Ae3,,1910,EA041,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p67, +Ae30,,1920,EA041,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA041,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA041,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA041,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA041,2,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA041,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA041,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA041,NA,,,, +Ae38,,1920,EA041,1,"Possibly 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1""), though there is no specific mention of goats",wijnant192526,EthnographicAtlas_1967_p67, +Ae39,,1920,EA041,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p67, +Ae4,Ilanga group,1930,EA041,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p67, +Ae40,,1910,EA041,1,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA041,1,,andersson1953,EthnographicAtlas_1967_p67, +Ae42,,1900,EA041,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA041,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA041,1,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA041,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA041,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA041,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA041,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae49,,,EA041,NA,,,, +Ae5,,1910,EA041,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae50,,1920,EA041,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p67, +Ae51,Ndiki subtribe,1940,EA041,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p67, +Ae52,,,EA041,NA,,,, +Ae53,,,EA041,NA,,,, +Ae54,,,EA041,NA,,,, +Ae55,,1950,EA041,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae56,,1950,EA041,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Ae57,,1930,EA041,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA041,1,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,,,EA041,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA041,1,,verhulpen1936,Ethnology_Vol7_No2_Apr_1968, +Ae7,,1910,EA041,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,Ethnology_Vol7_No2_Apr_1968, +Ae8,,1910,EA041,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p67, +Ae9,,1950,EA041,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p67, +Af1,City and environs of Abomey,1890,EA041,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p67, +Af10,,1930,EA041,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p71, +Af11,,1920,EA041,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p71, +Af12,with special reference to the Kwahu,1930,EA041,1,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA041,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p71, +Af14,,1930,EA041,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af15,,1920,EA041,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p71, +Af16,,1910,EA041,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA041,1,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA041,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA041,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p71, +Af2,,1950,EA041,1,,neel1913; paulme1954,EthnographicAtlas_1967_p67, +Af20,,1910,EA041,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p71, +Af21,with special reference to the Kalabari,1920,EA041,1,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA041,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p71, +Af23,with special reference to the village of Mgbom,1950,EA041,1,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p71, +Af24,,1900,EA041,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p71, +Af25,,1930,EA041,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p71, +Af26,with special reference to the Etsako,1900,EA041,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA041,1,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA041,1,"There are also a fair number of cattle, but they are owned, herded and milked exclusively by Fulani",gunnandconant1960,EthnographicAtlas_1967_p71, +Af29,,1950,EA041,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA041,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p67, +Af30,,1920,EA041,1,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,,,EA041,NA,,,, +Af32,Abeouta Province and Benin,1920,EA041,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA041,1,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p71,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA041,1,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA041,1,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA041,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p71, +Af37,with special reference to the Akpafu,1900,EA041,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA041,1,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA041,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA041,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p71, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA041,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA041,1,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA041,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p71, +Af43,,1930,EA041,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p71, +Af44,,,EA041,NA,,,, +Af45,,1900,EA041,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA041,1,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA041,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA041,1,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA041,1,,schwab1947,EthnographicAtlas_1967_p71, +Af5,,1930,EA041,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p71, +Af50,,1920,EA041,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA041,1,,tauxier1924a,EthnographicAtlas_1967_p71, +Af52,,1920,EA041,1,,tauxier1924a,EthnographicAtlas_1967_p71, +Af53,,1950,EA041,1,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA041,1,,germann1933; schwab1947,EthnographicAtlas_1967_p71, +Af55,,1950,EA041,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA041,1,,schwab1947; viard1934,EthnographicAtlas_1967_p71, +Af57,,1910,EA041,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p71, +Af58,,1900,EA041,1,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA041,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p71, +Af7,,1950,EA041,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p71, +Af8,,1930,EA041,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p71, +Af9,,1900,EA041,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p71, +Ag1,Segou to Bamako on Niger River,1920,EA041,2,Milking is done almost exclusively by resident Fulani,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p71, +Ag10,,1940,EA041,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p71, +Ag11,,1910,EA041,1,,charles1911; haumant1929; labouret1931,Ethnology_Vol7_No2_Apr_1968, +Ag12,,1910,EA041,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p71, +Ag13,,1910,EA041,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p71, +Ag14,,1950,EA041,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA041,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA041,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p71, +Ag17,,1940,EA041,1,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA041,1,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p71, +Ag19,with special reference to the Felup,1930,EA041,2,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p71, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA041,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p71, +Ag20,,1930,EA041,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA041,1,,lestrange1950,EthnographicAtlas_1967_p71, +Ag22,with special reference to those of Sine,1920,EA041,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p71, +Ag23,,1910,EA041,2,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA041,2,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA041,2,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p71, +Ag26,,1930,EA041,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p71, +Ag27,,1910,EA041,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p71, +Ag28,,1930,EA041,2,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA041,1,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA041,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p71, +Ag30,,1910,EA041,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p71, +Ag31,,1910,EA041,1,,cheron1913; holas1957,EthnographicAtlas_1967_p71, +Ag32,,1900,EA041,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p71, +Ag33,,1920,EA041,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA041,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA041,1,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA041,1,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA041,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA041,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA041,1,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA041,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p71, +Ag40,,1910,EA041,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA041,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p71, +Ag42,,1910,EA041,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA041,1,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA041,1,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA041,2,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA041,1,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA041,2,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p75, +Ag48,,1890,EA041,2,But herding and milking are done mainly by Fulani,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p75, +Ag49,,1930,EA041,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p75, +Ag5,,1930,EA041,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p71, +Ag50,,1910,EA041,2,But cattle are tended and milked only by Fulani,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA041,1,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA041,2,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA041,2,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA041,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA041,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p71, +Ag7,,1930,EA041,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p71, +Ag8,with special reference to the Coniagui,1910,EA041,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p71, +Ag9,,1930,EA041,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p71, +Ah1,Zaria Province,1930,EA041,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p75,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA041,1,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA041,1,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah12,,1920,EA041,1,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA041,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA041,1,,gunnandconant1960,EthnographicAtlas_1967_p75, +Ah15,,1920,EA041,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p75, +Ah16,,1900,EA041,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA041,1,Also a very few cattle (not milked) and a fair number of horses,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA041,1,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA041,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p75, +Ah2,,1920,EA041,1,,meek1931a,EthnographicAtlas_1967_p75, +Ah20,,1920,EA041,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p75, +Ah21,,,EA041,NA,,,, +Ah22,,,EA041,NA,,,, +Ah23,,,EA041,NA,,,, +Ah24,,,EA041,NA,,,, +Ah25,,1920,EA041,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA041,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA041,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA041,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA041,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA041,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p75, +Ah30,,1920,EA041,1,,meek1931b,EthnographicAtlas_1967_p75, +Ah31,,1910,EA041,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p75, +Ah32,,1920,EA041,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA041,1,,meek1931b; temple1922,EthnographicAtlas_1967_p75, +Ah34,with special reference to the Malabu,1920,EA041,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA041,2,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA041,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah37,,1920,EA041,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA041,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p75, +Ah39,,1950,EA041,2,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p75, +Ah4,,1920,EA041,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p75, +Ah5,,1930,EA041,1,,meek1931b; rowling1930,Ethnology_Vol1_No4_Oct_1962, +Ah6,,1920,EA041,1,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA041,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p75, +Ah8,,1910,EA041,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p75, +Ah9,,1920,EA041,1,"Diamond reports 'no plow animals' (EA039 code ""1""), 'sheep and goats' (EA040 code ""3""), and 'absence or near absence of milking' (EA041 code ""1"")",diamond1964; gunn1953,EthnographicAtlas_1967_p75,"Assume Murdock comment refers to col 39, not col 30 as stated in Gray (1999); in that case however the codes for EA039/EA040/EA041 are as reported by Diamond." +Ai1,,1920,EA041,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p75, +Ai10,Nuba Hills,1940,EA041,2,,nadel1947,EthnographicAtlas_1967_p75, +Ai11,,1900,EA041,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p75, +Ai12,,1950,EA041,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p75, +Ai13,,1920,EA041,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA041,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p75, +Ai15,,1900,EA041,2,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p75, +Ai16,,1910,EA041,2,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA041,2,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA041,2,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA041,2,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA041,NA,,,, +Ai20,,1910,EA041,2,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA041,2,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p75, +Ai22,,1890,EA041,2,,delafosse1897,EthnographicAtlas_1967_p75, +Ai23,,1920,EA041,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p75, +Ai24,,1900,EA041,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA041,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA041,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p75, +Ai27,,1890,EA041,1,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA041,1,,delhaise1912,EthnographicAtlas_1967_p75, +Ai29,,1920,EA041,2,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p75, +Ai3,,1920,EA041,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai30,,1920,EA041,2,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai31,,1920,EA041,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA041,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p75, +Ai33,,1940,EA041,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p75, +Ai34,,1880,EA041,2,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA041,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p75, +Ai36,,1920,EA041,2,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p75, +Ai37,,1940,EA041,2,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA041,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai39,,1940,EA041,2,,nadel1947,EthnographicAtlas_1967_p75, +Ai4,,1920,EA041,2,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA041,2,,nadel1947,EthnographicAtlas_1967_p75, +Ai41,,1930,EA041,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p75, +Ai42,,1940,EA041,2,,nadel1947; nadel1950,EthnographicAtlas_1967_p75, +Ai43,,1930,EA041,2,,nadel1947; stevenson1940,EthnographicAtlas_1967_p75, +Ai44,,1920,EA041,2,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p75, +Ai45,,1930,EA041,2,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA041,2,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p75, +Ai47,Northern division,1939,EA041,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p75, +Ai5,,1920,EA041,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p75, +Ai6,Shilluk Kingdom,1900,EA041,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p75, +Ai7,,1910,EA041,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p75, +Ai8,,1930,EA041,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p75, +Ai9,Around Yagoua in Cameroon,1910,EA041,2,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p75, +Aj1,,1950,EA041,2,,lawrance1957,EthnographicAtlas_1967_p75, +Aj10,,1920,EA041,2,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA041,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p79, +Aj12,,1920,EA041,2,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj13,,1930,EA041,2,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA041,2,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA041,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p79, +Aj16,with special reference to the Riverain Mondari,1930,EA041,2,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p79, +Aj17,,1890,EA041,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p79, +Aj18,,1950,EA041,2,,jensen1959,EthnographicAtlas_1967_p79, +Aj19,,1920,EA041,2,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p79, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA041,2,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p79, +Aj20,,1940,EA041,2,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p79, +Aj21,,1930,EA041,2,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p79, +Aj22,,1930,EA041,2,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA041,2,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p79, +Aj24,,1930,EA041,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p79, +Aj25,,1920,EA041,2,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA041,2,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p79, +Aj27,,1920,EA041,2,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA041,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA041,2,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA041,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p79, +Aj30,,,EA041,NA,,,, +Aj31,,,EA041,NA,,,, +Aj4,,1920,EA041,2,,driberg1923; hayley1947,EthnographicAtlas_1967_p79, +Aj5,,1920,EA041,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p79, +Aj6,,1940,EA041,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p79, +Aj7,,1910,EA041,2,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p79, +Aj8,,1920,EA041,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p79, +Aj9,,1920,EA041,2,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p79, +Ca1,Town of Buso,1930,EA041,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA041,2,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA041,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p79, +Ca12,,1880,EA041,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p79, +Ca13,with special reference to the eastern Macha,1950,EA041,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p79, +Ca14,,1950,EA041,2,,cerulli1956; fleming1965,EthnographicAtlas_1967_p79, +Ca15,,1930,EA041,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca16,,1930,EA041,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p79, +Ca17,,1950,EA041,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca18,,1940,EA041,2,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA041,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p79, +Ca2,Dolbahanta clan or subtribe,1950,EA041,2,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p79, +Ca20,,1890,EA041,2,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA041,2,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA041,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA041,2,,jensen1959,EthnographicAtlas_1967_p79, +Ca24,,1950,EA041,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA041,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA041,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA041,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA041,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p79, +Ca29,,1920,EA041,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p79, +Ca3,,1950,EA041,2,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p79, +Ca30,Kafa Kingdom,1890,EA041,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p79, +Ca31,,1860,EA041,2,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p79, +Ca32,,1860,EA041,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca33,,1860,EA041,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p79, +Ca34,,1920,EA041,2,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA041,2,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA041,2,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA041,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA041,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA041,2,,lewis1965b,EthnographicAtlas_1967_p79, +Ca4,,1950,EA041,2,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p79, +Ca40,,1950,EA041,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA041,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA041,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA041,NA,,,, +Ca5,,1930,EA041,2,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p79, +Ca6,,1880,EA041,2,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p79, +Ca7,Gondar district,1950,EA041,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p79, +Ca8,,1940,EA041,2,,leslau1950; shack1963,EthnographicAtlas_1967_p79, +Ca9,,1890,EA041,2,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,,EA041,NA,,,, +Cb10,,1920,EA041,1,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA041,2,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA041,2,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA041,2,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA041,2,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA041,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA041,2,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA041,2,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p79, +Cb18,,1930,EA041,2,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p79, +Cb19,,1870,EA041,2,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p79, +Cb2,Upper and lower Salum in Gambia,1950,EA041,2,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p79, +Cb20,,1920,EA041,2,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA041,2,,pfeffer1936,EthnographicAtlas_1967_p83, +Cb22,,1920,EA041,2,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA041,2,,kane1939; lafont1939,EthnographicAtlas_1967_p83, +Cb24,Wodaabe of Niger,1950,EA041,2,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p83, +Cb25,,1930,EA041,2,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA041,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p83, +Cb27,,1920,EA041,1,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA041,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,,EA041,NA,,,, +Cb3,Bamba division,1940,EA041,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p79, +Cb4,,1920,EA041,2,,reid1930,EthnographicAtlas_1967_p79, +Cb5,,1910,EA041,2,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p79, +Cb6,,1920,EA041,1,,woodnd,EthnographicAtlas_1967_p79, +Cb7,,1920,EA041,1,,meek1931b:288-310,EthnographicAtlas_1967_p79, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA041,2,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p79, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA041,1,Milking is done exclusively by Fulani,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p79, +Cc1,,1950,EA041,2,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p83, +Cc10,,1900,EA041,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p83, +Cc11,,1860,EA041,2,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA041,2,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA041,2,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA041,2,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA041,NA,,,, +Cc16,,1930,EA041,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p83, +Cc17,,1930,EA041,2,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p83, +Cc18,,1910,EA041,2,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA041,2,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA041,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p83, +Cc20,with special reference to the more nomadic northern groups,1910,EA041,2,,adeler1939; tauxier1912,EthnographicAtlas_1967_p83, +Cc3,inhabitants of the oasis of Siwa,1920,EA041,2,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p83, +Cc4,,1920,EA041,2,,goichon1927; mercier1922,EthnographicAtlas_1967_p83, +Cc5,,1910,EA041,2,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p83, +Cc6,,1910,EA041,2,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA041,2,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA041,NA,,,, +Cc9,Ahaggaren tribe,1920,EA041,2,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p83, +Cd1,Kenuzi Nubians of Dahmit,1920,EA041,2,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p83, +Cd10,,1900,EA041,2,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA041,2,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p83, +Cd12,,1870,EA041,2,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p83, +Cd13,,1930,EA041,2,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA041,2,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA041,2,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA041,2,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA041,2,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA041,2,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA041,2,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA041,2,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p83, +Cd20,,1940,EA041,2,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA041,2,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA041,2,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p83, +Cd4,,1890,EA041,2,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p83, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA041,2,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p83, +Cd6,with special reference to the New Empire,-1400,EA041,2,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p83, +Cd7,with special reference to the Zemmur tribe,1910,EA041,2,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA041,2,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA041,2,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA041,2,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p83, +Ce2,,,EA041,NA,,,, +Ce3,City and environs of Rome,100,EA041,2,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA041,2,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p83,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA041,2,,parsons1964,EthnographicAtlas_1967_p83, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA041,2,,pittrivers1954,EthnographicAtlas_1967_p83, +Ce7,with special reference to the village of Vasilika,1950,EA041,2,,firedl1962,EthnographicAtlas_1967_p83, +Ce8,with special reference to the village of Vera,1934,EA041,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA041,2,,murdocknd,EthnographicAtlas_1967_p83, +Cf2,of the Transvaal,1850,EA041,2,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No4_Oct_1962, +Cf3,,1930,EA041,2,,munch1945,EthnographicAtlas_1967_p83, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA041,2,,pierson1951,EthnographicAtlas_1967_p83, +Cf5,,1930,EA041,2,,miner1939,EthnographicAtlas_1967_p83, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA041,2,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p83, +Cg2,,1100,EA041,2,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p83, +Cg3,County Clare,1930,EA041,2,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p83, +Cg4,Konkama District,1950,EA041,2,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p83, +Cg5,,1950,EA041,2,,turneyhigh1953,Ethnology_Vol1_No4_Oct_1962, +Ch1,with special reference to the village of Orasac,1950,EA041,2,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p83, +Ch10,,,EA041,NA,,,, +Ch11,Viriatino Village,1955,EA041,2,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA041,2,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p83, +Ch3,with special reference to the Hana district of central Moravia,1940,EA041,2,,hajda1955; pospisilnd,EthnographicAtlas_1967_p83, +Ch4,,1900,EA041,2,,heffner1955; wichmann1913,EthnographicAtlas_1967_p83, +Ch5,with special reference to the village of Dragelevtsy,1940,EA041,2,,sanders1949; vatez1904,EthnographicAtlas_1967_p83, +Ch6,,1910,EA041,2,,ember1954,EthnographicAtlas_1967_p83, +Ch7,,1930,EA041,2,,friedrich1954,EthnographicAtlas_1967_p83, +Ch8,,1940,EA041,2,,hanzeli1955,EthnographicAtlas_1967_p83, +Ch9,,1930,EA041,2,,maciuika1955,EthnographicAtlas_1967_p83, +Ci1,with special reference to the Baga Dorbed group,1920,EA041,2,,aberle1953; adelmannd,EthnographicAtlas_1967_p83, +Ci10,Vicinity of Erevan,1900,EA041,2,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p83, +Ci11,,1940,EA041,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p83, +Ci12,Abkhaz Tribe,1880,EA041,2,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA041,2,,grigolia1939,EthnographicAtlas_1967_p83, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA041,2,,gadzhieva1958,EthnographicAtlas_1967_p83, +Ci4,,1920,EA041,2,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p83, +Ci5,Northern Anatolian Plateau,1950,EA041,2,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA041,2,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p83, +Ci7,,1900,EA041,2,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p83, +Ci8,,1850,EA041,2,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA041,2,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA041,2,,sweet1960,EthnographicAtlas_1967_p83, +Cj10,with special reference to the village of ech-Chibayish,1950,EA041,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p87, +Cj2,Unspecified,1920,EA041,2,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p83, +Cj3,,-800,EA041,2,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p87, +Cj4,City and environs of Babylon,-2000,EA041,2,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p87, +Cj5,,1930,EA041,2,,dickson1949,EthnographicAtlas_1967_p87, +Cj6,with special reference to the sedentary population,1950,EA041,2,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA041,2,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p87, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA041,2,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p87, +Cj9,,1950,EA041,2,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA041,2,,bordiend; wilber1964,EthnographicAtlas_1967_p87, +Ea10,with special reference to the more nomadic groups,1950,EA041,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA041,2,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA041,2,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA041,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA041,2,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p87, +Ea3,with special reference to the Urazgani,1930,EA041,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p87, +Ea4,,1950,EA041,2,,barth1956b,EthnographicAtlas_1967_p87, +Ea5,,1890,EA041,2,,robertson1896; wilber1956,EthnographicAtlas_1967_p87, +Ea6,Nomadic branch,1958,EA041,2,,barth1961; barth1964,EthnographicAtlas_1967_p87, +Ea7,,1950,EA041,2,,schurmann1962,EthnographicAtlas_1967_p87, +Ea8,,1920,EA041,2,,feilberg1952; wilson1926,EthnographicAtlas_1967_p87, +Ea9,,1950,EA041,2,,vreeland1957,EthnographicAtlas_1967_p87, +Eb1,Great Horde,1910,EA041,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p87, +Eb2,,1920,EA041,2,,krader1963; schram1954,EthnographicAtlas_1967_p87, +Eb3,Narobanchin Territory,1940,EA041,2,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p87, +Eb4,,,EA041,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA041,2,,freikin1954; odonovan1882,Ethnology_Vol2_No2_Apr_1963, +Eb6,,,EA041,NA,,,, +Eb7,,1930,EA041,2,,krader1954b; vreeland1954,EthnographicAtlas_1967_p87, +Eb8,,,EA041,NA,,,, +Ec1,Sakhalin Island,1920,EA041,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p87, +Ec10,with special reference to those on the Ob River,1880,EA041,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p87, +Ec11,,1900,EA041,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA041,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA041,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p87, +Ec4,Yurak Tribe,1900,EA041,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p87, +Ec5,with special reference to the Maritime Koryak,1900,EA041,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p87, +Ec6,Upper Kolyma River,1850,EA041,1,,jochelson191926,EthnographicAtlas_1967_p87, +Ec7,Saru Basin in Hokkaido,1900,EA041,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p87, +Ec8,,1900,EA041,1,,shimkin1939,EthnographicAtlas_1967_p87, +Ec9,,1920,EA041,1,,lattimore1933,EthnographicAtlas_1967_p87, +Ed1,Kanghwa Island,1950,EA041,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p87, +Ed10,with special reference to the village of Taitou,1930,EA041,1,,yang1945,EthnographicAtlas_1967_p87, +Ed13,,,EA041,NA,,,, +Ed14,,,EA041,NA,,,, +Ed15a,,,EA041,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA041,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA041,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA041,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p87, +Ed3,Aigun District,1920,EA041,1,,shirokogoroff1924,EthnographicAtlas_1967_p87, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA041,1,,mark1967; ruey1960,EthnographicAtlas_1967_p87, +Ed5,Okayama,1950,EA041,2,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA041,1,,kulp1925,EthnographicAtlas_1967_p87, +Ed7,,1950,EA041,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p87, +Ed8,,1930,EA041,2,,fitzgerald1941,EthnographicAtlas_1967_p87, +Ed9,,1930,EA041,1,But cows and goats are milked only occasionally to feed calves or children,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p87, +Ee1,,1940,EA041,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p87, +Ee2,Hunza State,1930,EA041,2,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p87, +Ee3,Lingthem and vicinity,1930,EA041,2,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p87, +Ee4,with special reference to Central Tibet,1920,EA041,2,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p87, +Ee5,with special reference to the Shina tribe,1870,EA041,2,,biddulph1880; leitner1873,EthnographicAtlas_1967_p87, +Ee6,with special reference to those of Khumbu,1950,EA041,2,,furerhaimendorf1964,EthnographicAtlas_1967_p87, +Ee7,,,EA041,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA041,2,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA041,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p87, +Ef10,,,EA041,NA,,,, +Ef11,Village and environs of Senapur,1945,EA041,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA041,2,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA041,NA,,,, +Ef4,,,EA041,NA,,,, +Ef5,,1900,EA041,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p87, +Ef6,,1940,EA041,2,,roy1915; roy1951,EthnographicAtlas_1967_p87, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA041,2,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p87, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA041,2,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p87, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA041,2,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA041,2,,furerhaimendorf1943b,EthnographicAtlas_1967_p87,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA041,2,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p91, +Eg11,,,EA041,NA,,,, +Eg12,,,EA041,NA,,,, +Eg13,Bastar State,1941,EA041,1,,elwin1957,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA041,2,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA041,2,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p87, +Eg3,Hill Maria,1938,EA041,1,"A few cattle are kept, but are not milked",grigson1938,EthnographicAtlas_1967_p87, +Eg4,Toda Tribe,1900,EA041,2,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p87, +Eg5,,1930,EA041,2,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p91, +Eg6,with special reference to Northern Kerala,1799,EA041,2,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p91, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA041,1,,roy1935,EthnographicAtlas_1967_p91, +Eg8,,1940,EA041,1,,griffiths1946,EthnographicAtlas_1967_p91, +Eg9,,1930,EA041,1,,elwin1939,EthnographicAtlas_1967_p91, +Eh1,,1870,EA041,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p91, +Eh10,,,EA041,NA,,,, +Eh2,,1900,EA041,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p91, +Eh3,Menabe subtribe,1930,EA041,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p91, +Eh4,with special reference to the Rock Vedda,1900,EA041,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA041,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p91, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA041,2,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p91, +Eh7,,1900,EA041,2,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p91, +Eh8,,1900,EA041,2,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p91, +Eh9,,1930,EA041,2,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA041,1,,burling1963; playfair1909,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA041,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p91, +Ei11,,1910,EA041,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p91, +Ei12,,1910,EA041,1,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA041,1,,hutton1921a,EthnographicAtlas_1967_p91, +Ei14,with special reference to the Chongli,1920,EA041,1,,mills1926; smith1925b,EthnographicAtlas_1967_p91, +Ei15,,,EA041,NA,,,, +Ei16,,1910,EA041,1,,hutton1921b,EthnographicAtlas_1967_p91, +Ei17,,,EA041,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA041,1,,lowis1906; milne1924,EthnographicAtlas_1967_p91, +Ei19,,1940,EA041,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p91, +Ei2,,1920,EA041,1,,mills1922,EthnographicAtlas_1967_p91, +Ei20,,,EA041,NA,,,, +Ei3,Nondwin Village,1950,EA041,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p91, +Ei4,Lakher Tribe,1930,EA041,1,,parry1932,EthnographicAtlas_1967_p91, +Ei5,with special reference to the Jinghpaw,1940,EA041,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p91, +Ei6,,1930,EA041,1,,das1945; needham1958,EthnographicAtlas_1967_p91, +Ei7,,1910,EA041,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p91, +Ei8,with special reference to those of the Jaintia Hills,1900,EA041,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p91, +Ei9,,1880,EA041,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p91, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA041,1,,izikowitz1951,EthnographicAtlas_1967_p91, +Ej10,Ko-Sier Village,1950,EA041,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p91, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA041,1,,lafont1964,EthnographicAtlas_1967_p91, +Ej12,,1960,EA041,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p91, +Ej13,,1940,EA041,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p91, +Ej14,with special reference to the eastern Semai,1960,EA041,1,,dentan1967,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA041,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA041,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA041,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p91, +Ej3,Jehai Group or subtribe,1920,EA041,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p91, +Ej4,Red River Delta in Tonkin,1950,EA041,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p91, +Ej5,,1950,EA041,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p91, +Ej6,of the Mergui Archipelago,1920,EA041,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p91, +Ej7,,1950,EA041,1,,bernatzik1947,EthnographicAtlas_1967_p91, +Ej8,with special reference to those of Trengganu,1940,EA041,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p91, +Ej9,,1940,EA041,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA041,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p91, +Ia10,,1930,EA041,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p91, +Ia11,,1930,EA041,1,,mabuchi1960,EthnographicAtlas_1967_p91, +Ia12,,1950,EA041,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p95, +Ia13,Tawi-Tawi and adjacent islands,1960,EA041,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p95, +Ia14,,1930,EA041,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p95, +Ia15,with special reference to those of the Agusan Valley,1920,EA041,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA041,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p95, +Ia17,,,EA041,NA,,,, +Ia18,,,EA041,NA,,,, +Ia2,,1950,EA041,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p91, +Ia3,Kiangan Group,1920,EA041,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p91, +Ia4,with special reference to the Eastern Subanun,1950,EA041,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p91, +Ia5,,1950,EA041,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p91, +Ia6,Su-Paiwan Village,1930,EA041,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p91,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA041,1,,fox1954,EthnographicAtlas_1967_p91, +Ia8,,1900,EA041,1,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA041,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p91, +Ib1,"Ulu Ai Group, Baleh",1950,EA041,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA041,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA041,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p95, +Ib4,with special reference to the Toba group,1930,EA041,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p95, +Ib5,with special reference to the village of Sensuron,1920,EA041,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p95, +Ib6,,1920,EA041,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p95, +Ib7,with special reference to those of North Pageh,1920,EA041,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p95, +Ib8,with special reference to the Ridan group,1900,EA041,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p95, +Ib9,,,EA041,NA,,,, +Ic1,Borongloe,1940,EA041,1,,chabot1950,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA041,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p95, +Ic11,Allang,1950,EA041,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA041,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA041,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA041,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p95, +Ic3,with special reference to the Mountain Belu,1950,EA041,1,,vroklage1952,EthnographicAtlas_1967_p95, +Ic4,,,EA041,NA,,,, +Ic5,Bare'e subgroup,1910,EA041,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p95, +Ic6,,1930,EA041,1,,drabbe1940,EthnographicAtlas_1967_p95, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA041,1,,vatter1932,EthnographicAtlas_1967_p95, +Ic8,,1890,EA041,1,,pleyte1893,EthnographicAtlas_1967_p95, +Ic9,with special reference to eastern Sumba,1930,EA041,1,,nooteboom1940,EthnographicAtlas_1967_p95, +Id1,Alice Springs and environs,1900,EA041,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p95, +Id10,,1930,EA041,1,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA041,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA041,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA041,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA041,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p95, +Id3,Tiwi Tribe: Melville Island,1920,EA041,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p95, +Id4,,1900,EA041,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p95, +Id5,,1910,EA041,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p95, +Id6,with special reference to the Archer River group,1920,EA041,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p95, +Id7,,1940,EA041,1,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA041,1,,roth1890,EthnographicAtlas_1967_p95, +Id9,,1910,EA041,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p95, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA041,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA041,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p95, +Ie11,,1950,EA041,1,,bowers1964,EthnographicAtlas_1967_p95, +Ie12,Hongwam subtribe; Rumbima,1930,EA041,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA041,1,,landtman1927,EthnographicAtlas_1967_p95, +Ie14,,1900,EA041,1,,haddon1908,EthnographicAtlas_1967_p95, +Ie15,Kalabu; Northern Abelam,1930,EA041,1,,kaberry1941,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA041,1,,williams194041,EthnographicAtlas_1967_p95, +Ie17,,1940,EA041,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p95, +Ie18,Bamol Village,1940,EA041,1,,serpenti1965,EthnographicAtlas_1967_p95, +Ie19,with special reference to the coastal inhabitants,1910,EA041,1,,vanbaal1966,EthnographicAtlas_1967_p95, +Ie2,,1920,EA041,1,,schmitz1960,EthnographicAtlas_1967_p95, +Ie20,,1900,EA041,1,,seligmann1910,EthnographicAtlas_1967_p95, +Ie21,,1900,EA041,1,,malinowski1916,EthnographicAtlas_1967_p95, +Ie22,,1900,EA041,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p95, +Ie23,,1950,EA041,1,,schoorl1957,EthnographicAtlas_1967_p95, +Ie24,,1870,EA041,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p95, +Ie25,,1920,EA041,1,,williamson1912,EthnographicAtlas_1967_p95, +Ie26,,1940,EA041,1,,read1946; read1950,EthnographicAtlas_1967_p99, +Ie27,,1910,EA041,1,,thurnwald1916,EthnographicAtlas_1967_p99, +Ie28,,1940,EA041,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p99, +Ie29,principally Tsogari,1930,EA041,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA041,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA041,1,,pouwer1955,EthnographicAtlas_1967_p99, +Ie31,,1950,EA041,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA041,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA041,1,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA041,NA,,,, +Ie35,,1930,EA041,1,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA041,NA,,,, +Ie37,,,EA041,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA041,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA041,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA041,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p95,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA041,1,,williams1936,EthnographicAtlas_1967_p95, +Ie6,,1930,EA041,1,,held1947,EthnographicAtlas_1967_p95, +Ie7,with special reference to the Mae group,1950,EA041,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p95, +Ie8,with special reference to the Koriki,1910,EA041,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p95, +Ie9,,1920,EA041,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p95, +If1,"Ulimang, Badeldaob Island",1940,EA041,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA041,NA,,,, +If11,,1860,EA041,1,,sarfert1919,EthnographicAtlas_1967_p99, +If12,,1940,EA041,1,,mason1954,EthnographicAtlas_1967_p99, +If13,,1900,EA041,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p99, +If14,Makin and Butiritari Islands (N),1890,EA041,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p99, +If15,,1930,EA041,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p99, +If16,,1960,EA041,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA041,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA041,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p99, +If3,With special reference to the inhabitants of Majuro,1940,EA041,1,,spoehr1949,Ethnology_Vol10_No1_Jan_1971, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA041,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p99, +If5,,1910,EA041,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p99, +If6,Island,1910,EA041,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p99, +If7,with special reference to the inhabitants of Onotoa,1940,EA041,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p99, +If8,with special reference to those of Saipa,1950,EA041,2,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p99, +If9,,1900,EA041,1,,lessa1950; william1966,EthnographicAtlas_1967_p99, +Ig1,Northeastern group,1940,EA041,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p99, +Ig10,,1950,EA041,1,,schwartz1964,EthnographicAtlas_1967_p99, +Ig11,,1920,EA041,1,,armstrong1928,EthnographicAtlas_1967_p99, +Ig12,with special reference to the Varisi,1900,EA041,1,,scheffler1965,EthnographicAtlas_1967_p99, +Ig13,,1900,EA041,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p99, +Ig14,,1900,EA041,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p99, +Ig15,,,EA041,NA,,,, +Ig16,,,EA041,NA,,,, +Ig17,,,EA041,NA,,,, +Ig18,,,EA041,NA,,,, +Ig19,,,EA041,NA,,,, +Ig2,Kiriwina Island,1910,EA041,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p99, +Ig20,with special reference to the village of Longgu,1920,EA041,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA041,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA041,1,,blackwood1935,EthnographicAtlas_1967_p99, +Ig4,Lesu Village,1930,EA041,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p99, +Ig5,,1920,EA041,1,,fortune1932b,EthnographicAtlas_1967_p99, +Ig6,,1900,EA041,1,,ivens1927,EthnographicAtlas_1967_p99, +Ig7,,1950,EA041,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p99, +Ig8,,,EA041,NA,,,, +Ig9,Peri Village,1920,EA041,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p99, +Ih1,,1890,EA041,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p99, +Ih10,Whitsands,1920,EA041,1,,humphreys1926,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA041,NA,,,, +Ih12,,,EA041,NA,,,, +Ih13,,,EA041,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA041,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA041,1,,deacon1934,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA041,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p99, +Ih4,Lau Island,1920,EA041,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA041,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p99, +Ih6,,1890,EA041,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p99, +Ih7,,1910,EA041,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p99, +Ih8,with special reference to the village of Nakaroka,1940,EA041,1,,quain1949,EthnographicAtlas_1967_p99, +Ih9,Graciosa Bay,1930,EA041,1,,davenport1964,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA041,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p99, +Ii10,,1950,EA041,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA041,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p99,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA041,1,,burrows1937,EthnographicAtlas_1967_p99, +Ii14,,1829,EA041,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA041,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p99, +Ii3,,1930,EA041,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p99, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA041,1,,kennedy1931; white1965,EthnographicAtlas_1967_p99, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA041,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p99, +Ii6,with special reference to Atafu,1900,EA041,1,,macgregor1937,EthnographicAtlas_1967_p99, +Ii7,,1910,EA041,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p99, +Ii8,,1840,EA041,1,,burrows1936,EthnographicAtlas_1967_p99, +Ii9,,1840,EA041,1,,loeb1926a,EthnographicAtlas_1967_p99, +Ij1,,1820,EA041,1,,buck1934,EthnographicAtlas_1967_p99, +Ij10,,1900,EA041,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA041,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p99, +Ij3,,1900,EA041,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p103, +Ij4,,1850,EA041,1,,buck1932a,EthnographicAtlas_1967_p103, +Ij5,,1900,EA041,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p103, +Ij6,,1800,EA041,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p103, +Ij7,,1900,EA041,1,,buck1938; laval1938,EthnographicAtlas_1967_p103, +Ij8,,1900,EA041,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p103, +Ij9,,1860,EA041,1,,metraux1940,EthnographicAtlas_1967_p103, +Na1,,1930,EA041,1,,mckennan1959,EthnographicAtlas_1967_p103, +Na10,,1930,EA041,1,,birketsmith1953,EthnographicAtlas_1967_p103, +Na11,,1920,EA041,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p103, +Na12,,1950,EA041,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p103, +Na13,,1880,EA041,1,,boas1888; boas190107,EthnographicAtlas_1967_p103, +Na14,,1880,EA041,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p103, +Na15,,1860,EA041,1,,helmandlurie1961,EthnographicAtlas_1967_p103, +Na16,,1860,EA041,1,,osgood1931,EthnographicAtlas_1967_p103, +Na17,"Lynx Point band, Fort Simpson",1860,EA041,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA041,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p103, +Na2,,1880,EA041,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p103, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA041,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p103, +Na21,,1900,EA041,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p103, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA041,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p103, +Na23,with special reference to the Koksoagmiu,1890,EA041,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p103, +Na24,,1880,EA041,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p103, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA041,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA041,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p103, +Na27,,1870,EA041,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p103, +Na28,,1880,EA041,1,,jenness1937,EthnographicAtlas_1967_p103, +Na29,,1850,EA041,1,,goddard1916,EthnographicAtlas_1967_p103, +Na3,Coronation Gulf,1920,EA041,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p103, +Na30,,1880,EA041,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p103, +Na31,with special reference to those of Albany and Moose Creek,1850,EA041,1,,skinner1912,EthnographicAtlas_1967_p103, +Na32,Lake St. John & Mistassini Band,1880,EA041,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p103, +Na33,Berens River band,1870,EA041,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p103, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA041,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p103, +Na35,,1800,EA041,1,,cameron1890; grant1890,EthnographicAtlas_1967_p103, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA041,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p103, +Na37,,1880,EA041,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p103, +Na38,with special reference to the Lac Vieux Desert band,1800,EA041,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p103, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA041,1,,jenness1935,EthnographicAtlas_1967_p103, +Na4,Upper Liard and Dease River Group,1920,EA041,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p103, +Na40,,1650,EA041,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA041,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p103, +Na42,Prairie Potawatomi,1760,EA041,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p103, +Na43,,1920,EA041,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA041,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA041,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA041,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p103, +Na6,,1930,EA041,1,,lantis1946,EthnographicAtlas_1967_p103, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA041,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p103, +Na8,Shageluk Village,1880,EA041,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p103, +Na9,Unalaska Branch (Eastern Aleut),1830,EA041,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p103,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA041,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p103, +Nb10,,1865,EA041,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nb11,with special reference to the Central Nootka,1880,EA041,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p107, +Nb12,,1880,EA041,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA041,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p107, +Nb14,,1880,EA041,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA041,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p107, +Nb16,,1860,EA041,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p107, +Nb17,,1870,EA041,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p107, +Nb18,,1880,EA041,1,,pettitt1950,EthnographicAtlas_1967_p107, +Nb19,,1850,EA041,1,,ray1938; ray1942,EthnographicAtlas_1967_p107, +Nb2,Twana Tribe,1850,EA041,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p103, +Nb20,,1870,EA041,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA041,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p107, +Nb22,with special reference to the Chilkat,1880,EA041,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p107, +Nb23,,1880,EA041,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p107, +Nb24,,1860,EA041,1,,colson1953; swan1868,EthnographicAtlas_1967_p107, +Nb25,,1860,EA041,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p107, +Nb26,,1880,EA041,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p107, +Nb27,with special reference to the Tait,1880,EA041,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p107, +Nb28,,1860,EA041,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p107, +Nb29,,1860,EA041,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA041,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p103, +Nb30,,1860,EA041,1,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA041,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p107, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA041,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p107, +Nb33,,1860,EA041,1,,dixon1910; driver1939,EthnographicAtlas_1967_p107, +Nb34,,1860,EA041,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p107, +Nb35,,1860,EA041,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p107, +Nb36,,1860,EA041,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p107, +Nb37,,1860,EA041,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA041,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA041,1,,driver1939; nomland1935,EthnographicAtlas_1967_p107, +Nb4,,1850,EA041,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p103, +Nb5,Eyak Tribe,1890,EA041,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p103, +Nb6,,1870,EA041,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p103, +Nb7,,1880,EA041,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p103, +Nb8,,1880,EA041,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p103, +Nb9,"Central group, lower B.C. River",1880,EA041,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p103, +Nc1,,1850,EA041,1,,goldschmidt1951,EthnographicAtlas_1967_p107, +Nc10,,1860,EA041,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p107, +Nc11,,1860,EA041,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p107, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA041,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p107, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA041,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p107, +Nc14,with special reference to the northeastern Wintu,1860,EA041,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p107, +Nc15,,1860,EA041,1,,driver1939; gifford1939,EthnographicAtlas_1967_p107, +Nc16,,1860,EA041,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA041,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc18,"Clear Lake, Village of Cignon",1860,EA041,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p107, +Nc19,with special reference to those near Santa Rosa,1860,EA041,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p107, +Nc2,,1850,EA041,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p107, +Nc20,,1860,EA041,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p107, +Nc21,,1860,EA041,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA041,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p107, +Nc23,,1870,EA041,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p107, +Nc24,Tulare Lake,1860,EA041,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc25,,1860,EA041,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p107, +Nc26,,1770,EA041,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA041,1,,driver1937; gifford1917,EthnographicAtlas_1967_p107, +Nc28,,1800,EA041,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA041,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p107, +Nc3,with special reference to those of the Northern Foothills,1850,EA041,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p107, +Nc30,,1870,EA041,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc31,with special reference to the Desert Cahuilla,1870,EA041,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc32,,1870,EA041,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p107, +Nc33,,1860,EA041,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p107, +Nc34,,1880,EA041,1,,meigs1939,EthnographicAtlas_1967_p107, +Nc4,,1860,EA041,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p107, +Nc5,with special reference to the Central Sierra group,1850,EA041,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p107, +Nc6,with special reference to the Southern Diegueno,1850,EA041,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p107, +Nc7,,1850,EA041,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p107, +Nc8,Klamath Tribe,1860,EA041,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p107, +Nc9,,1860,EA041,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p107, +Nd1,,1850,EA041,1,,murdock1958; ray1942,EthnographicAtlas_1967_p107, +Nd10,,1860,EA041,1,,ray1942; teit1900,EthnographicAtlas_1967_p111, +Nd11,with special reference to the southeastern Shuswap,1850,EA041,1,,ray1942; teit1909,EthnographicAtlas_1967_p111, +Nd12,,1860,EA041,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p111, +Nd13,,1860,EA041,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA041,1,,ray1942; teit1930,EthnographicAtlas_1967_p111, +Nd15,,1880,EA041,1,,clineetal1938,EthnographicAtlas_1967_p111, +Nd16,,1870,EA041,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA041,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA041,1,,spierandsapir1930,EthnographicAtlas_1967_p111, +Nd19,,1860,EA041,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p111, +Nd2,,1860,EA041,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p107, +Nd20,,1850,EA041,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p111, +Nd21,,1870,EA041,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA041,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p111, +Nd23,,1870,EA041,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA041,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p111, +Nd25,,1870,EA041,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA041,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA041,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p111, +Nd28,,1870,EA041,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA041,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p111, +Nd30,,1870,EA041,1,,driver1937; steward1933,EthnographicAtlas_1967_p111, +Nd31,,1850,EA041,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA041,1,,driver1937; steward1938,EthnographicAtlas_1967_p111, +Nd33,including the Belted Range group,1870,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA041,1,,ray1932; ray1942,EthnographicAtlas_1967_p111, +Nd40,,1870,EA041,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA041,1,,harris1940; steward1941,EthnographicAtlas_1967_p111, +Nd44,,1850,EA041,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA041,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd46,,1860,EA041,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p111, +Nd47,,1850,EA041,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA041,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p111, +Nd49,including the Kaiparowits band,1860,EA041,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd5,,1870,EA041,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p111, +Nd50,,1860,EA041,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA041,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA041,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd53,,1860,EA041,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd54,Colorado River Reservation,1860,EA041,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p111,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA041,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA041,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p111, +Nd57,,1860,EA041,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA041,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd59,,1860,EA041,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA041,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p111, +Nd60,,1860,EA041,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA041,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA041,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p111, +Nd63,with special reference to the Eastern Bannock,1860,EA041,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p111, +Nd64,with special reference to the Kucundika,1860,EA041,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p111, +Nd65,,1870,EA041,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p111, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA041,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p111, +Nd67,,1870,EA041,1,,gifford1936,EthnographicAtlas_1967_p111, +Nd7,Lower or eastern branch,1880,EA041,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p111, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA041,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p111, +Nd9,,1860,EA041,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p111, +Ne1,Gros Ventre Tribe,1880,EA041,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p111, +Ne10,,1860,EA041,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p111, +Ne11,,1870,EA041,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p111, +Ne12,,1850,EA041,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne13,,1850,EA041,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p111, +Ne14,,1850,EA041,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p111, +Ne15,Hidatsa Village,1860,EA041,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p111, +Ne16,,1800,EA041,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p111, +Ne17,,1860,EA041,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p111, +Ne18,,1850,EA041,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p111, +Ne19,,1850,EA041,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p111, +Ne2,,1870,EA041,1,,mcallister1937,EthnographicAtlas_1967_p111, +Ne20,,1850,EA041,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p115, +Ne21,,,EA041,NA,,,, +Ne3,Comanche Tribe,1870,EA041,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p111, +Ne4,,1870,EA041,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p111, +Ne5,,1860,EA041,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p111, +Ne6,,1830,EA041,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p111, +Ne7,,1880,EA041,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p111, +Ne8,,1870,EA041,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p111, +Ne9,,1860,EA041,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p111, +Nf10,,1870,EA041,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p115, +Nf11,,1870,EA041,1,,whitman1937,EthnographicAtlas_1967_p115, +Nf12,,1850,EA041,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p115, +Nf13,with special reference to the Kiskopotha band,1820,EA041,1,,trowbridge1939,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA041,1,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA041,NA,,,, +Nf2,,1850,EA041,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p115, +Nf3,Omaha Tribe,1850,EA041,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p115, +Nf4,,1720,EA041,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p115, +Nf5,,1860,EA041,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p115, +Nf6,Skidi Band or subtribe,1867,EA041,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p115, +Nf7,Tama Reservation,1830,EA041,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA041,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p115, +Nf9,,1870,EA041,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p115, +Ng1,Bear and Cord Subtribes,1640,EA041,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p115, +Ng10,with special reference to the Seneca tribe,1750,EA041,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p115, +Ng11,,1750,EA041,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p115, +Ng12,,1760,EA041,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p115, +Ng13,,,EA041,NA,,,, +Ng14,,,EA041,NA,,,, +Ng15,,,EA041,NA,,,, +Ng2,,,EA041,NA,,,, +Ng3,Upper division in Alabama,1750,EA041,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p115, +Ng4,,,EA041,NA,,,, +Ng5,,1750,EA041,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p115, +Ng6,with special reference to the Munsee,1700,EA041,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p115, +Ng7,Natchez Kingdom,1700,EA041,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p115, +Ng8,,1560,EA041,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p115, +Ng9,,,EA041,NA,,,, +Nh1,Central band,1880,EA041,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p115, +Nh10,,1920,EA041,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p115, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA041,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p115, +Nh12,,1920,EA041,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",gifford1940; white1942,EthnographicAtlas_1967_p115, +Nh13,,1920,EA041,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p115, +Nh14,,,EA041,NA,,,, +Nh15,,1870,EA041,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA041,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA041,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p115, +Nh18,Old Oraiibi,1920,EA041,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA041,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p115, +Nh2,,1950,EA041,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dozier1954,EthnographicAtlas_1967_p115, +Nh20,,1860,EA041,1,,gifford1931,EthnographicAtlas_1967_p115, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA041,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA041,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p115, +Nh23,,1870,EA041,1,,gifford1932a,EthnographicAtlas_1967_p115, +Nh24,,1880,EA041,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p115, +Nh25,,1920,EA041,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p115, +Nh26,,,EA041,NA,,,, +Nh27,,,EA041,NA,,,, +Nh3,,1930,EA041,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p115, +Nh4,Pueblo,1910,EA041,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p115, +Nh5,,1850,EA041,1,,drucker1941; spier1933,EthnographicAtlas_1967_p115, +Nh6,,1890,EA041,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",parsons1936b; trager1943,EthnographicAtlas_1967_p115, +Nh7,,1890,EA041,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p115, +Nh8,,1920,EA041,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p115, +Nh9,,,EA041,NA,,,, +Ni1,,1930,EA041,1,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bennettandzingg1935; passin1943,EthnographicAtlas_1967_p115, +Ni2,,1930,EA041,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p115, +Ni3,Huichol Tribe,1920,EA041,2,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p115, +Ni4,,1900,EA041,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p115, +Ni5,,1570,EA041,1,,driveranddriver1963,EthnographicAtlas_1967_p115, +Ni6,,1840,EA041,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p115, +Ni7,,1870,EA041,1,"Aboriginally, but 'no plow animals' (EA039 code ""1""), 'bovine' (EA040 code ""7""), and 'milking, more often than sporadically' (EA041 code ""2"")",beals1943; drucker1941,EthnographicAtlas_1967_p115, +Ni8,,,EA041,NA,,,, +Ni9,,,EA041,NA,,,, +Nj1,Ojitlan,1940,EA041,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p115,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,,,EA041,NA,,,, +Nj11,,,EA041,NA,,,, +Nj12,,,EA041,NA,,,, +Nj13,,,EA041,NA,,,, +Nj14,,,EA041,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA041,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p115, +Nj3,Town and environs of Soteapan,1940,EA041,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p119, +Nj4,,1940,EA041,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p119, +Nj5,,,EA041,NA,,,, +Nj6,,,EA041,NA,,,, +Nj7,with special reference to Ayutla,1930,EA041,1,,beals1945,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA041,1,,foster1948,EthnographicAtlas_1967_p119, +Nj9,,1960,EA041,2,,nutini1962; nutini1965,EthnographicAtlas_1967_p119, +Sa1,San Blas Archipelago,1940,EA041,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p119, +Sa10,,,EA041,NA,,,, +Sa11,,,EA041,NA,,,, +Sa12,,1948,EA041,1,,stone1948,EthnographicAtlas_1967_p119, +Sa13,Town of Chichicastenango,1930,EA041,2,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p119, +Sa14,,,EA041,NA,,,, +Sa15,,,EA041,NA,,,, +Sa16,,,EA041,NA,,,, +Sa17,,,EA041,NA,,,, +Sa2,,,EA041,NA,,,, +Sa3,,1930,EA041,1,,wisdom1940,EthnographicAtlas_1967_p119, +Sa4,with special reference to those of Panama,1960,EA041,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p119, +Sa5,,1950,EA041,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p119, +Sa6,,1520,EA041,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p119, +Sa7,,1940,EA041,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p119, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA041,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p119, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA041,2,But milking is not common,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p119, +Sb1,Dominica Island,1650,EA041,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p119, +Sb2,,1940,EA041,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p119, +Sb3,with special reference to the Iroka,1940,EA041,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA041,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA041,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p119, +Sb6,Goajiro Tribe,1940,EA041,2,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p119, +Sb7,with special reference to the Pariri,1950,EA041,1,,wilbert1961b,EthnographicAtlas_1967_p119, +Sb8,,1520,EA041,1,,rouse1948a,EthnographicAtlas_1967_p119, +Sb9,,1930,EA041,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA041,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p119, +Sc10,,1900,EA041,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p119, +Sc11,,1930,EA041,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p119, +Sc12,,1910,EA041,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p119, +Sc13,,1950,EA041,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p119, +Sc14,,,EA041,NA,,,, +Sc15,,1910,EA041,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p119, +Sc16,with special reference to the Makitare,1920,EA041,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p119, +Sc17,,1950,EA041,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sc18,,1960,EA041,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA041,1,,leedsnd,EthnographicAtlas_1967_p119, +Sc3,Barama River,1930,EA041,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p119, +Sc4,with special reference to the non-agricultural groups,1950,EA041,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p119, +Sc5,,1900,EA041,1,,farabee1918,EthnographicAtlas_1967_p119, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA041,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA041,1,,wilbert1959b,EthnographicAtlas_1967_p119, +Sc8,,1950,EA041,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p119, +Sc9,,1950,EA041,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p119, +Sd1,Cabrura village,1950,EA041,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p119,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA041,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p119, +Sd3,,1920,EA041,1,,nimuendaju1926,EthnographicAtlas_1967_p119, +Sd4,,1950,EA041,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA041,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p119, +Sd6,,1960,EA041,1,,migliazza1964,EthnographicAtlas_1967_p119, +Sd7,,1950,EA041,1,,fock1963,EthnographicAtlas_1967_p119, +Sd8,,1950,EA041,1,,wilbert1963,EthnographicAtlas_1967_p119, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA041,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA041,1,,holmberg1950,EthnographicAtlas_1967_p119, +Se10,,1670,EA041,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p119, +Se11,,1960,EA041,1,,prost1965,EthnographicAtlas_1967_p123, +Se12,,,EA041,NA,,,, +Se2,,1940,EA041,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p119, +Se3,,1930,EA041,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p119, +Se4,,1940,EA041,1,,fejos1943,EthnographicAtlas_1967_p119, +Se5,Village on Caduiari River,1940,EA041,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p119, +Se6,,1910,EA041,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p119, +Se7,,,EA041,NA,,,, +Se8,Upper Inuya River,1950,EA041,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p119, +Se9,,1920,EA041,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p119, +Sf1,City and environs of Cuzco,1530,EA041,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p123, +Sf2,Chucuito Clan community in Peru,1940,EA041,2,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p123, +Sf3,Rio Cayapas Basin,1910,EA041,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p123, +Sf4,,1950,EA041,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p123, +Sf5,,1900,EA041,2,"But absence or near absence of domestic animals aboriginally (EA039 and EA040 code ""1"")",bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p123, +Sf6,,1540,EA041,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p123, +Sf7,,1900,EA041,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p123, +Sf8,,,EA041,NA,,,, +Sf9,,,EA041,NA,,,, +Sg1,Eastern and central,1870,EA041,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p123, +Sg2,Cholchol,1880,EA041,2,"Aboriginally 'no plow animals' (EA039 code ""1""), 'camelids' (EA040 code ""6""), and 'milking,absent or nearly absent' (EA041 code ""1"")",faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA041,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p123, +Sg4,Equestrian,1870,EA041,1,"But absence or near absence of domestic animals prior to 1725 (EA039 and EA040 code ""1"")",bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p123, +Sg5,with special reference to the southern bands,1900,EA041,1,,bird1946; cooper1917,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA041,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p123, +Sh2,,1850,EA041,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p123, +Sh3,Those in contact with mission,1800,EA041,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p123, +Sh4,,1940,EA041,1,,oberg1949,EthnographicAtlas_1967_p123, +Sh5,,1910,EA041,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p123, +Sh6,,1890,EA041,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p123, +Sh7,,1900,EA041,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p123, +Sh8,with special reference to those of the Argentine Chaco,1964,EA041,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p123, +Sh9,Those in contact with mission,1890,EA041,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p123, +Si1,Kejara,1920,EA041,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA041,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA041,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p123, +Si3,Simao Lopes,1940,EA041,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA041,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p123, +Si5,,1940,EA041,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si6,,1900,EA041,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p123, +Si7,with special reference to the Cozarimi,1910,EA041,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p123, +Si8,,1940,EA041,1,,oberg1953:1-144,EthnographicAtlas_1967_p123, +Si9,,,EA041,NA,,,, +Sj1,,1950,EA041,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p123, +Sj10,Taquapiri,1950,EA041,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA041,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA041,1,,nimuendaju1942,EthnographicAtlas_1967_p123, +Sj3,Duque de Caxias Reservation,1910,EA041,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p123, +Sj4,Ramcocamecra or Canella,1930,EA041,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p123, +Sj5,Naknenuk subtribe,1880,EA041,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p123, +Sj6,with special reference to the Guajajara subgroup,1930,EA041,1,Animal husbandry is recent,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p123,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA041,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p123, +Sj8,Hinterland of Rio de Janeiro,1600,EA041,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p123, +Sj9,,1950,EA041,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p123, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA041,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA041,2,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA041,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA041,2,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA041,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA041,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA041,2,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA041,2,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA041,2,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA041,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA041,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA041,2,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA041,2,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA041,2,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA041,2,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA041,2,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA041,2,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA041,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA041,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA041,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA041,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA041,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA041,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA041,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA041,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA041,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA041,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA042,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa2,with special reference to Central Dorobo,1920,EA042,3,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa3,Gei/Khauan tribe,1840,EA042,4,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa4,,1920,EA042,1,,lebzelter1934; schmidt1930; vedder1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA042,3,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa6,,1920,EA042,6,,dempwolff1916; huntingford1953b; kimmenade1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa7,,1910,EA042,1,,bleek1924b; bleek1928; passarge1907; schapera1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa8,,1850,EA042,1,,barrow180104; bleek1924b; fritsch1872,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa9,Hatsa Kindiga Tribe,1910,EA042,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab1,,1900,EA042,4,,irle1906; vedder1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab10,,1936,EA042,8,,hunter1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab11,,1850,EA042,6,,borwnlee1927; kropf1889; soga1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab12,,1830,EA042,6,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA042,6,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab14,,1930,EA042,7,,krigeandkrige1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab15,,1860,EA042,6,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab16,,1930,EA042,6,,earthy1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab17,,1920,EA042,9,,boas1922; dossantos1901; herskovits1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab18,with special reference to the Zezuru,1920,EA042,6,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab19,with special reference to the Kuanyama,1910,EA042,6,,krafft1914; lebzelter1935; loeb1962; tonejes1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab2,,1880,EA042,6,,kuper1950; kuper1974; marwick1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab20,,1880,EA042,9,,wunenberger1888,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab21a,,1930,EA042,6,,magyar1859; mattenklodt1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab21b,,1925,EA042,9,,cook1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab22,,1920,EA042,9,,junod1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab3,Ruling Luyana,1890,EA042,7,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab4,,1920,EA042,6,,junod1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab5,,1930,EA042,6,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab6,,1900,EA042,7,,gottschling1905; stayt1931; warmelo1948; wessmann1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA042,8,,langandtastevin1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab8,Basuto,1860,EA042,7,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab9,,1870,EA042,6,,hughesandvanvelsen1955; jackson192627; thomas1872,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac1,,1920,EA042,6,,smithanddale1920; tudennd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac10,,1920,EA042,6,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac11,,1930,EA042,6,,mcculloch1951; white1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac12,,1920,EA042,6,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac13,,1950,EA042,8,,tew1950; velsen1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac14,,1900,EA042,6,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac15,,1900,EA042,9,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac16,,1940,EA042,6,,balandier1952; maclatchy1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac17,Feshi territory lineage center,1910,EA042,6,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac18,,1910,EA042,6,,even1931; hutereau1910b; laman1953; soret1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac19,,1880,EA042,6,,badier1929; descazes1885; guiral1886; trezenem1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac2,,1920,EA042,6,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac20,,1920,EA042,6,,milheiros1956; plancquaert1932; tordayandjoyce1906,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac21,,1910,EA042,6,,decker1942; torday1910; weekx1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac22,,1930,EA042,6,,mertens1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac23,with special reference to the western Lele,1950,EA042,6,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac24,,1910,EA042,6,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA042,6,,beaucorps1921; beaucorps1951; richards1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac26,,1920,EA042,6,,beaucorps1933; tordayandjoyce1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac27,,1930,EA042,6,,baumann1935; mcculloch1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac28,,1930,EA042,2,,baumann1935; mcculloch1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac29,,1930,EA042,9,,brau1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac3,Zambia branch,1900,EA042,6,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac30,,1940,EA042,6,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac31,,1910,EA042,6,,colle1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac32,,1920,EA042,6,,melland1923; watson1954a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac33,,1940,EA042,6,,lambo1946; munday1941; whiteley1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac34,,1940,EA042,6,,cunnison1950; cunnison1959; gamitto1854; slaski1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac35,,1900,EA042,9,,brohez1905; marchal1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac36,,1920,EA042,6,,sanderson1923; tew1950; young1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac37,,1950,EA042,6,,bruwer1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac38,,1910,EA042,6,,malekebu1952; stannus1910; tew1950; werner1906b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac39,,1920,EA042,9,,johnson1922; tew1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA042,6,,tordayandjoyce1910; vansina1954a; vansina1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac40,,1900,EA042,6,,maugham1910; menteirolopez1906; schebesta1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac41,,1900,EA042,6,,behr1893; weule1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac42,,1900,EA042,9,,tew1950; weule1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac43,,1910,EA042,6,,watson1954b; willis1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac5,,1920,EA042,6,,doke1931; mitchellandbarnes1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac6,,1930,EA042,6,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac7,,1920,EA042,6,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac8,,1930,EA042,6,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA042,6,,barnes1951; barnes1954; mead1960; tew1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad1,,1950,EA042,8,,grottanelli1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad10,,1910,EA042,7,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad11,,1930,EA042,7,,culwickandculwick1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad12,,1940,EA042,6,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad13,,1930,EA042,6,,edel1937; edel1957; taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad14,Morogoro District,1930,EA042,6,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad15,,1900,EA042,6,,chisholm1910; coxhead1914; willis1966; wilson1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad16,,1920,EA042,7,,mackenzie1925; sanderson1923; tew1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad17,,1920,EA042,6,,kootzkretschmer192629,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad18,,1910,EA042,6,,avon191516; majerus191516,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad19,,1910,EA042,6,,fromm1912; popplewell1937; willis1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad2,,1950,EA042,7,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad20,,1920,EA042,6,,blohm193133; bosch1930; spellig1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad21,,1930,EA042,6,,maurice193538,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad22,,1950,EA042,7,,abrahams1967; cory1953; malcolm1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad23,,1910,EA042,4,,heese1913; mumford1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad24,,1910,EA042,6,,claus1911; paulssen1922; rigby1966; schaegelen1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad25,,1900,EA042,6,,baumstark1900; gray1953; kannenberg1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad26,,1910,EA042,8,,sick1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad27,,1880,EA042,6,,picarda1886; reidelman1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad28,,1880,EA042,6,,baumann1891; beidelman1967; picarda1886,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad29,,1930,EA042,6,,ingrams1930; prins1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad3,,1910,EA042,7,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad30,,1890,EA042,6,,baumann1891; prins1952; stpaulhilaire1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad31,,1910,EA042,9,,prins1952; werner1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad32,,1900,EA042,6,,barrett1911b; johnstone1902; princs1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad33,,1900,EA042,7,,fischer187879; kraft1903; prins1952; werner1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad34,,1910,EA042,7,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA042,6,,holding1942; lambert1956; middleton1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad36,,1890,EA042,7,,baumann1891; storch1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad37,,1940,EA042,7,,bostock1950; prins1950; prins1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad38,,1910,EA042,7,,paterson1956; paulssen1914; thorntonandrounce1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad39,,1950,EA042,7,,gray1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad4,Fort Hall or Metume district,1930,EA042,7,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad40,,1950,EA042,7,,sangree1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad41,,1930,EA042,6,,wagner1939; wagner1940; wagner194950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad42,,1900,EA042,7,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad43,,1900,EA042,7,,hurel1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad44,,1920,EA042,6,,czekanowski1924:358-399; taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad45,,1920,EA042,6,,oberg1938; oberg1940; roscoe1923b; taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad46,,1950,EA042,7,,fallers1956; fallers1960; roscoe1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad47,,1900,EA042,7,,abrahams1967; blohm193133; desoignies1903,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad48,,1950,EA042,6,,taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad49,,1950,EA042,6,,taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad5,,1940,EA042,8,,graynd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad50,with special reference to the Mountain Kaguru,1900,EA042,6,,beidelman1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad51,,1930,EA042,6,,beidelman1967; mcvicar1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad6,Age villages of Mwaya and Masoko,1930,EA042,7,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad7,Kyaddondo district (V: Kampala),1880,EA042,7,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad8,with special reference to the northern or Iringa group,1910,EA042,7,,brownandhutt1935; dempwolff1914; nigmann1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad9,,1900,EA042,6,,lafontaine1959; roscoe1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA042,6,,winter1956; winter1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae10,,1910,EA042,7,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae11,,1900,EA042,2,,delhaise1909a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae12,,1940,EA042,6,,ardener1956; brutsch1950; buchner1887,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae13,,1920,EA042,9,,colle1921; colle1922a; colle1922b; roy192425,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae14,,1950,EA042,7,,hertefeltetal1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae15,,1940,EA042,7,,schumacher1949; viaene1951; viaene1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae16,,1910,EA042,9,,lietard1929; vervaecke1910; wissmannetal1888,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae17,,1900,EA042,6,,delhaise1909b; salmon1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae18,,1900,EA042,6,,tordayandjoyce1922; vanoverbergh1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae19,,1930,EA042,9,,grevisse193738,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae2,,1950,EA042,6,,ardener1956; leuschner1903,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae20,,1940,EA042,6,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae21,,1920,EA042,6,,empain1922; tordayandjoyce1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae22,with special reference to the Bankutu,1900,EA042,6,,tordayandjoyce1922; vanlaere1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae23,,1930,EA042,9,,maes1934; rijek1937; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae24,,1920,EA042,9,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae25,with special reference to the northern Tetela,1920,EA042,9,,heusch1955; tordayandjoyce1922; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae26,,1910,EA042,6,,torday1911; tordayandjoyce1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA042,2,,bertrand1920; smith1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae28,,1900,EA042,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae29,,1900,EA042,2,,hutereau1910a; lindemann1906,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae3,,1910,EA042,6,,alexandreandbinet1958; tessmann1913; trezenem1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae30,,1920,EA042,6,,czekanowski1924:327-357; vangeluwe1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae31,,1920,EA042,6,,czekanowski1924:282-297; vangeluwe1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae32,,1920,EA042,6,,vangeluwe1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae33,,1920,EA042,6,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae34,,1920,EA042,6,,czekanowski1924:327-357; joset1936; vangeluwe1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae35,,1900,EA042,6,,maes1909; vangeluwe1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae36,,1920,EA042,6,,verbeke1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae37,,1930,EA042,9,,soupart1938; vandenbergh1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae38,,1920,EA042,6,,wijnant192526,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae39,,1920,EA042,6,,burssens1958; wolfe1961; wolfe1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae4,Ilanga group,1930,EA042,6,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae40,,1910,EA042,6,,allys1930; koch1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae41,,1940,EA042,6,,andersson1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae42,,1900,EA042,6,,conradt1902; dugast1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae43,,1900,EA042,6,,burel1910; koch1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae44,,1920,EA042,6,,baumann1888; gildelgado1949; tessmann1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae45,,1900,EA042,6,,bufe1913; lessner1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae46,,1870,EA042,6,,allegret1927; burton1876; duchaillu1861,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae47,,1900,EA042,6,,oertzen1903; zeller1885,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae48,,1930,EA042,6,,mccullochetal1954; tessmann1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae49,,1900,EA042,9,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae5,,1910,EA042,6,,egerton1939; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae50,,1920,EA042,6,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae51,Ndiki subtribe,1940,EA042,6,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae52,,1950,EA042,9,,kaberry1952; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae53,,1920,EA042,9,,nicol1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae54,,1950,EA042,9,,jeffreys1951; kaberry1952; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae55,,1950,EA042,6,,kaberry1952; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae56,,1950,EA042,6,,kaberry1952; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae57,,1930,EA042,6,,kaberry1952; mccullochetal1954; sieberandsieber1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae58,,1910,EA042,6,,thorbecke1916; thorbeckeandthorbecke1919,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae59,with special reference to the Ngie subtribe,1950,EA042,9,,kaberry1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae6,with special reference to the Bena Kalundwe,1930,EA042,6,,verhulpen1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae7,,1910,EA042,6,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae8,,1910,EA042,7,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae9,,1950,EA042,6,,kaberry1952; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af1,City and environs of Abomey,1890,EA042,6,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af10,,1930,EA042,6,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af11,,1920,EA042,6,,gaborydubourdeau1926; rouet1907; schwab1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af12,with special reference to the Kwahu,1930,EA042,6,,field1949; mead1937a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af13,,1920,EA042,6,,brown1955; wilsonhaffenden1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af14,,1930,EA042,6,,hall1938; mcculloch1950; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af15,,1920,EA042,6,,gibbs1963; gibbs1965; schwab1947; westermann1921,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af16,,1910,EA042,6,,ruel1956; schuster1914; staschewski1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af17,,1900,EA042,6,,mansfeld1908; talbot1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af18,,1900,EA042,6,,bystrom1954; talbot1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af19,,1950,EA042,6,,fordeandjones1950; simmons1957; simmons1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af2,,1950,EA042,6,,neel1913; paulme1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af20,,1910,EA042,6,,fordeandjones1950; talbot1915; talbot1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af21,with special reference to the Kalabari,1920,EA042,6,,granvilleandroth1898; talbot1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af22,,1940,EA042,2,,lloyd1957; omoneukanrin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af23,with special reference to the village of Mgbom,1950,EA042,7,,ottenberg1960; ottenberg1965a; ottenberg1965b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af24,,1900,EA042,6,,bradbury1957; roth1903; thomas1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af25,,1930,EA042,6,,bradbury1957; welch1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af26,with special reference to the Etsako,1900,EA042,6,,bradbury1957; thomas1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af27,,1950,EA042,6,,fordeetal1955; tschudi1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af28,,1910,EA042,7,,gunnandconant1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af29,,1950,EA042,6,,armstrong1954; fordeetal1955; temple1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af3,Kumasi State,1900,EA042,6,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af30,,1920,EA042,6,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af31,with special reference to the Lafia,1960,EA042,9,,gunnandconant1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af32,Abeouta Province and Benin,1920,EA042,6,,ajisafe1924; forde1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA042,6,,forde1951; lloyd1955; lloyd1965; ward1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA042,6,,bascom1942; bascom1944; forde1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA042,6,,daniell1856; field1943; halleran1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af36,with special reference to the Glidyi,1900,EA042,6,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af37,with special reference to the Akpafu,1900,EA042,6,,asmis1911; hinderling195253; plehn1898,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af38,,1900,EA042,6,,alland1963; clozelandvillamur1902; tauxier1921,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af39,with special reference to the Ndenie,1900,EA042,6,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af4,,1930,EA042,6,,forde1939; forde1941; forde1950; forde1952; forde1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA042,6,,loyer1745; mouezy1942; reichenbach1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af41,,1890,EA042,6,,crosson1900; dreyfus1900; vincenti1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af42,,1900,EA042,6,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af43,,1930,EA042,8,,daniell1856; field1937; field1940; manoukian1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af44,,1900,EA042,2,,clozelandvillamur1902,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af45,,1900,EA042,8,,clozelandvillamur1902; grivot1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af46,,1900,EA042,6,,clozelandvillamur1902; coutouly1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af47,,1940,EA042,6,,beckerdonner1944; schwab1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af48,,1850,EA042,6,,wilson1856,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af49,,1940,EA042,6,,schwab1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af5,,1930,EA042,6,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af50,,1920,EA042,6,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af51,,1920,EA042,6,,tauxier1924a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af52,,1920,EA042,6,,tauxier1924a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af53,,1950,EA042,6,,holas1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af54,,1930,EA042,6,,germann1933; schwab1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af55,,1950,EA042,6,,dazevedo1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA042,6,,schwab1947; viard1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af57,,1910,EA042,6,,langley1939; mcculloch1950; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af58,,1900,EA042,6,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af6,"Yoruba, with special reference to the Oyo",1950,EA042,6,,forde1951; lloyd1955; schwab1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af7,,1950,EA042,6,,dunglas1939; hallouin1947; kobben1956; paulme1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af8,,1930,EA042,6,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af9,,1900,EA042,6,,clozelandvillamur1902; labouret1914; menalque1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag1,Segou to Bamako on Niger River,1920,EA042,7,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag10,,1940,EA042,6,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag11,,1910,EA042,6,,charles1911; haumant1929; labouret1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag12,,1910,EA042,6,,manoukian1952b; rattray1932; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag13,,1910,EA042,6,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag14,,1950,EA042,6,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag15,,1930,EA042,6,,bernatzik1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag16,,1930,EA042,6,,bernatzik1933; nogueira1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag17,,1940,EA042,6,,gomes1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag18,,1930,EA042,6,,bernatzik1933; bernatzik1944; santoslima1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag19,with special reference to the Felup,1930,EA042,6,,bernatzik1933; cunhataborde1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA042,7,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag20,,1930,EA042,6,,bernatzik1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag21,,1910,EA042,6,,lestrange1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag22,with special reference to those of Sine,1920,EA042,6,,aujas1931; bourgeau1933; dulphy1939; fayet1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag23,,1910,EA042,6,,monteil1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag24,,1910,EA042,6,,chevalier1909; kamaraanddrummond1930; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag25,,1900,EA042,6,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag26,,1930,EA042,6,,anonymous1939a; aubert1936; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag27,,1910,EA042,6,But the economy is primarily mercantile,tauxier1912; tauxier1921,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag28,,1930,EA042,7,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag29,,1910,EA042,7,,tauxier1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag3,,1930,EA042,7,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag30,,1910,EA042,6,,cremer192427; guebhard1911; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag31,,1910,EA042,6,,cheron1913; holas1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag32,,1900,EA042,7,,delafosse190809; holas1957; vendeix1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag33,,1920,EA042,6,,labouret1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag34,,1930,EA042,6,,labouret1931; tauxier1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag35,,1910,EA042,6,,tauxier1921,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag36,,1950,EA042,7,,goody1956; goody1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag37,,1910,EA042,6,,rattray1932; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag38,,1910,EA042,6,,rattray1932; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag39,,1910,EA042,6,,labouret1920; rattray1932; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag4,Tallensi Tribe,1930,EA042,7,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag40,,1910,EA042,6,,rattray1932; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag41,,1920,EA042,7,,manoukian1952b; rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag42,,1910,EA042,7,,tauxier1912; tauxier1924b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag43,,1920,EA042,6,,rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag44,,1910,EA042,6,,duncanjohnstoneandblair1932; fisch1913; rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag45,with special reference to those in the Diapaga region,1930,EA042,6,,cartry1966; castinel1945; menjaud1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag46,,1920,EA042,7,,manoukian1952b; rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA042,6,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag48,,1890,EA042,7,,froelichetal1963; klose1899; klose1903; zech1899,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag49,,1930,EA042,7,,froelich1949a; froelichetal1963; puig1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag5,,1930,EA042,6,,goody1956; labouret1931; rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag50,,1910,EA042,6,,asmis1912; froelichetal1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag51,,1940,EA042,6,,mercier1950; mercier1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag52,,1950,EA042,7,,froelichetal1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag53,with special reference to those of Garango,1960,EA042,6,,bernard1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag54,,1910,EA042,6,,donald1968a; donald1968b; mcculloch1950; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag6,,1890,EA042,8,,durand1929; vieillard1939; vieillard1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag7,,1930,EA042,2,,malzy1946; ortoli1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag8,with special reference to the Coniagui,1910,EA042,6,,delacour191213; lestrange1950; techer1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag9,,1930,EA042,6,,labouret1934; sidibe1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah1,Zaria Province,1930,EA042,7,,gunn1956; meek192829; meek1931b; smith1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA042,6,,gunn1953; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah11,,1950,EA042,6,,gunnandconant1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah12,,1920,EA042,6,,bynghall1909; clifford1944; gunnandconant1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah13,with special reference to the Liliwa,1930,EA042,6,,harris1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah14,,1920,EA042,7,,gunnandconant1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah15,,1920,EA042,7,,gunnandconant1960; harris1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah16,,1900,EA042,7,,fitzpatrick1910; mohr1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah17,,1930,EA042,6,,gunn1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah18,,1930,EA042,7,,bestnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah19,,1930,EA042,7,,gunn1953; smithnda; smithndb,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah2,,1920,EA042,6,,meek1931a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah20,,1920,EA042,7,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah21,,1920,EA042,6,,gunn1956; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah22,,1900,EA042,9,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah23,,1920,EA042,9,,meek1931a; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah24,,1920,EA042,9,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah25,,1920,EA042,6,,kaberry1952; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah26,,1920,EA042,6,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah27,,1920,EA042,6,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah28,with special reference to the Lekon subtribe,1920,EA042,6,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah29,,1920,EA042,6,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah3,Tar of Benue Province,1920,EA042,6,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah30,,1920,EA042,7,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah31,,1910,EA042,7,,haughton1912; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah32,,1920,EA042,7,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah33,,1920,EA042,7,,meek1931b; temple1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah34,with special reference to the Malabu,1920,EA042,7,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah35,,1920,EA042,7,,helser1926; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah36,,1920,EA042,7,,lembezat1961; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah37,,1920,EA042,7,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah38,,1930,EA042,7,,lembezat1950; lembezat1961; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah39,,1950,EA042,7,,lembezat1952; lembezat1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah4,,1920,EA042,7,,meek1931b; percival1938; rehfisch1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah5,,1930,EA042,7,,meek1931b; rowling1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah6,,1920,EA042,6,,dunn1956; meek1931b:189-219,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah7,,1940,EA042,7,,hinderling1955; lavergne1949; lembezat1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah8,,1910,EA042,6,,lembezat1961; sieber1925; thorbecke1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah9,,1920,EA042,6,,diamond1964; gunn1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai1,,1920,EA042,6,,daigre193232; leynaud1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai10,Nuba Hills,1940,EA042,7,,nadel1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai11,,1900,EA042,6,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai12,,1950,EA042,6,,foelich1956; lembezat1961; malzy1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai13,,1920,EA042,6,,tessmann1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai14,,1920,EA042,6,,lembezat1961; tessmann1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai15,,1900,EA042,6,,brussaux1907; lembezat1916a; martin1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai16,,1910,EA042,6,,lembezat1916a; savini1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai17,,1930,EA042,6,,fourneau1938; lembezat1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai18,,1880,EA042,7,,lebeuf1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai19,,1910,EA042,7,,hagen1912; lembezat1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai2,,1940,EA042,9,,nadel1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai20,,1910,EA042,6,,lamouroux1913; lembezat1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai21,,1880,EA042,6,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai22,,1890,EA042,6,,delafosse1897,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai23,,1920,EA042,6,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai24,,1900,EA042,6,,gaud1911; vergiat1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai25,,1950,EA042,6,,burssens1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai26,,1920,EA042,6,,burssens1958; nelson1951; tanghe1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai27,,1890,EA042,6,,czekanowski1924; nvs1896,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai28,,1910,EA042,6,,delhaise1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai29,,1920,EA042,6,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai3,,1920,EA042,6,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai30,,1920,EA042,6,,czekanowski1924; vangeluwe1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai31,,1920,EA042,6,,baxterandbutt1953; czekanowski1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai32,,1920,EA042,6,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai33,,1940,EA042,6,,baxterandbutt1953; czekanowski1924; middleton1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai34,,1880,EA042,6,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai35,,1870,EA042,6,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai36,,1920,EA042,6,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai37,,1940,EA042,7,,nadel1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai38,,1930,EA042,6,,nadel1947; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai39,,1940,EA042,6,,nadel1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai4,,1920,EA042,7,,evanspritchard1927; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai40,,1940,EA042,7,,nadel1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai41,,1930,EA042,7,,nadel1947; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai42,,1940,EA042,6,,nadel1947; nadel1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai43,,1930,EA042,7,,nadel1947; stevenson1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai44,,1920,EA042,7,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai45,,1930,EA042,6,,evanspritchard1932a; seligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai46,,1930,EA042,6,,corfield1938; grottanelli1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai47,Northern division,1939,EA042,6,,cerulli1956; grottanelli1940; grottanelli1972,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai5,,1920,EA042,6,,czekanowski1924:400-467; vangeluwe1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai6,Shilluk Kingdom,1900,EA042,6,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai7,,1910,EA042,6,,clozel1896; hartmann1927; poupon1915; tessmann193437,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai8,,1930,EA042,7,,hawkesworth1932; nadel1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai9,Around Yagoua in Cameroon,1910,EA042,7,,garine1964; lembezat1961; vonhagen1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj1,,1950,EA042,6,,lawrance1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj10,,1920,EA042,6,,butt1952b; girling1960; grove1919; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj11,,1900,EA042,4,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj12,,1920,EA042,6,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj13,,1930,EA042,6,,huntingford1953a; nalder1937; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj14,,1931,EA042,6,,huntingford1953a; nalder1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj15,,1900,EA042,7,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj16,with special reference to the Riverain Mondari,1930,EA042,6,,buxton1958; huntingford1953a; nalder1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj17,,1890,EA042,6,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj18,,1950,EA042,4,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj19,,1920,EA042,8,,driberg1922; driberg1925a; driberg1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA042,4,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj20,,1940,EA042,6,,cerulli1956; lyth1947; pauli1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj21,,1930,EA042,6,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj22,,1930,EA042,6,,gulliverandgulliver1953; wayland1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj23,,1950,EA042,4,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj24,,1930,EA042,4,,gulliverandgulliver1953; nalder1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj25,,1920,EA042,8,,huntingford1953b; massam1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj26,,1910,EA042,7,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj27,,1920,EA042,8,,roscoe1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj28,,1940,EA042,4,,baumann1894; huntingford1953b; klima1964; wilson195253,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj29,,1950,EA042,4,,spencer1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj3,,1930,EA042,4,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj30,,1950,EA042,4,,dysonhudson1963; gulliverandgulliver1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj31,,1920,EA042,9,,driberg1925b; evanspritchard1940c; walsh1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj4,,1920,EA042,6,,driberg1923; hayley1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj5,,1920,EA042,6,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj6,,1940,EA042,7,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj7,,1910,EA042,8,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj8,,1920,EA042,6,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj9,,1920,EA042,7,,barton1923; huntingford1953b; peristiany1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca1,Town of Buso,1930,EA042,7,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca10,,1880,EA042,4,,hildebrandt1875; lewis1955; paulitschke1888,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca11,,1890,EA042,4,,huntingford1955b; paulitschke189396b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca12,,1880,EA042,7,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca13,with special reference to the eastern Macha,1950,EA042,7,,huntingford1955b; knutsson1963; knutsson1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca14,,1950,EA042,7,,cerulli1956; fleming1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca15,,1930,EA042,7,,cerulli1956; jensen1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca16,,1930,EA042,7,,cerulli1956; jensen1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca17,,1950,EA042,7,,fleming1965; jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca18,,1940,EA042,6,,cerulli1956; jensen1959; ricci1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca19,,1950,EA042,4,,fleming1965; jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca2,Dolbahanta clan or subtribe,1950,EA042,4,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca20,,1890,EA042,4,,cerulli1956; hohnel1890; nalder1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca21,,1950,EA042,4,,fleming1965; jensen1959; ricci1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca22,,1950,EA042,8,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca23,,1950,EA042,7,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca24,,1950,EA042,7,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca25,,1950,EA042,7,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca26,,1950,EA042,7,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca27,,1930,EA042,6,,cerulli1956; grottanelli1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca28,,1950,EA042,7,,cerulli1956; jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca29,,1920,EA042,7,,huntingford1955b; straube1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca3,,1950,EA042,7,,fischer1957b; munzinger1864; nadel1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca30,Kafa Kingdom,1890,EA042,7,,bieber192023; cerulli193233; huntingford1955b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca31,,1860,EA042,7,,flad1860; leslau1951; leslau1957; stern1862,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca32,,1860,EA042,6,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca33,,1860,EA042,6,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca34,,1920,EA042,4,,klunzinger1876; murray1923; murray1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca35,,1930,EA042,4,,clark1938; sandars1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca36,,1860,EA042,4,,munzinger1864; nadel1945; paul1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca37,Bogo Tribe,1850,EA042,4,,munzinger1859,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA042,4,,littman1910; munzinger1864,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca39,,1930,EA042,7,,lewis1965b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca4,,1950,EA042,8,,huntingford1953b; winter1955; winterandmolyneaux1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca40,,1950,EA042,7,,straube1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca41,,1950,EA042,7,,straube1957; straube1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca42,,1950,EA042,7,,straube1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca43,,1930,EA042,4,,owen1937; rober1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca5,,1930,EA042,4,,clark1938; murray1935; sandars1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca6,,1880,EA042,4,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca7,Gondar district,1950,EA042,7,,lipsky1962; messing1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca8,,1940,EA042,7,,leslau1950; shack1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca9,,1890,EA042,8,,baumann1894; huntingford1953b; reche1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb1,,1940,EA042,9,,greenberg1946; greenberg1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb10,,1920,EA042,6,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb11,,1900,EA042,4,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb12,,1920,EA042,4,,reid1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb13,,1930,EA042,4,,lampen1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb14,,1910,EA042,8,,lagrange1913; martine1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb15,with special reference to the Humr,1940,EA042,4,,cunnison1954; henderson1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb16,,1920,EA042,4,,bouille1937; devallee1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb17,Jebel Marra,1880,EA042,7,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb18,,1930,EA042,7,,bouille1937; carbou1912; lebeuf1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb19,,1870,EA042,7,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb2,Upper and lower Salum in Gambia,1950,EA042,6,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb20,,1920,EA042,7,,dupicq1931; robin1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb21,,1930,EA042,4,,pfeffer1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb22,,1920,EA042,6,,coutouly1923; delmond1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb23,,1930,EA042,6,,kane1939; lafont1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb24,Wodaabe of Niger,1950,EA042,4,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb25,,1930,EA042,6,,anonymous1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb26,Zazzagawa of Zaria,1950,EA042,7,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb27,,1920,EA042,7,,fegan1930; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb28,,1920,EA042,7,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb29,,1920,EA042,9,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb3,Bamba division,1940,EA042,7,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb4,,1920,EA042,8,,reid1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb5,,1910,EA042,8,,bouille1937; lebeuf1959; talbot1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb6,,1920,EA042,6,,woodnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb7,,1920,EA042,6,,meek1931b:288-310,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA042,4,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA042,6,,fordeandscott1946; smith1955a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc1,,1950,EA042,4,,briggs1958; carobaroja1955; cauneille1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc10,,1900,EA042,4,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc11,,1860,EA042,4,,duveyrier1864,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc12,,1944,EA042,4,,cortier1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc13,,1920,EA042,7,,coutouly1923; gaalon1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc14,,1880,EA042,8,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc15,,1920,EA042,9,,chapelle1929; meunie1947; spillmann1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc16,,1930,EA042,4,,briggs1958; darmagnac1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc17,,1930,EA042,4,,carobaroja1955; lotte1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc18,,1910,EA042,4,,salvy1951; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc19,,1950,EA042,4,,dubie1953; martv1919,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc2,Nomads of Tibesti,1950,EA042,7,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc20,with special reference to the more nomadic northern groups,1910,EA042,4,,adeler1939; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc3,inhabitants of the oasis of Siwa,1920,EA042,7,,abdallah1917; belgrave1923; cline1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc4,,1920,EA042,7,,goichon1927; mercier1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc5,,1910,EA042,4,,aymard1911; miner1953; said1903; zeltner1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc6,,1910,EA042,4,,parkyns1951; seligmanandseligman1918,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc7,Timbuctoo,1950,EA042,4,,miner1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA042,4,,hourst1899,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc9,Ahaggaren tribe,1920,EA042,4,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd1,Kenuzi Nubians of Dahmit,1920,EA042,7,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd10,,1900,EA042,8,,destaing190711; moulieras1905,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd11,,1500,EA042,6,,cook1900; espinosa1907; gambier1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd12,,1870,EA042,7,,bel1908; bernard1929; villot1875; vollenhoven1903,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd13,,1930,EA042,4,,bardin1944; despois1940; ubachandrackow1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd14,,1870,EA042,4,,bernard1929; villot1875,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd15,,1910,EA042,7,,michauxbellaire1911; rackow1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA042,7,,michauxbellaire1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd17,,1920,EA042,4,,ubachandrackow1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd18,,1920,EA042,4,,kennett1925; murray1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd19,,1920,EA042,7,,despois1940; ubachandrackow1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd2,Town and environs of Silwa,1950,EA042,7,,ammar1954; ayrout1945; blackman1927; harris1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd20,,1940,EA042,4,,evanspritchard1949b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd21,,1930,EA042,7,,bonniard1934; despois1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd3,Entirety: Moroccan,1920,EA042,7,,coon1931; hart1954; hart1976; moulieras1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd4,,1890,EA042,7,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA042,7,,montagne1927; montagne1930; ubachandrackow1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd6,with special reference to the New Empire,-1400,EA042,7,,budge1926; erman1923; kees1923; montet1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd7,with special reference to the Zemmur tribe,1910,EA042,7,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd8,,1910,EA042,7,,gaudry1929; hiltonsimpson1921; stuhlmann1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd9,,1900,EA042,7,,justinard1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce1,Mountain Gheg of No. Albania,1900,EA042,7,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA042,9,,atkinson1953; dias1953; entwistle1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce3,City and environs of Rome,100,EA042,7,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce4,Labourd,1930,EA042,7,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA042,7,,parsons1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA042,7,,pittrivers1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce7,with special reference to the village of Vasilika,1950,EA042,7,,firedl1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce8,with special reference to the village of Vera,1934,EA042,7,,carobaroja1944; douglass1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cf1,Small City in Connecticut,1920,EA042,7,,murdocknd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cf2,of the Transvaal,1850,EA042,4,,fisher1900; keane1900; lobb1937; walker1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cf3,,1930,EA042,7,,munch1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA042,7,,pierson1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cf5,,1930,EA042,7,,miner1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA042,7,,coon1939; keurandkeur1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cg2,,1100,EA042,4,,dasent1861; johnson1930; merrill1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cg3,County Clare,1930,EA042,7,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cg4,Konkama District,1950,EA042,4,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cg5,,1950,EA042,7,,turneyhigh1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch1,with special reference to the village of Orasac,1950,EA042,7,,coon1949; halpern1956; halpern1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch10,,1910,EA042,9,,cotlarciuc1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch11,Viriatino Village,1955,EA042,7,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch2,,1890,EA042,8,,kaindl1894; koenig1935; szuchiewicz190208,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch3,with special reference to the Hana district of central Moravia,1940,EA042,7,,hajda1955; pospisilnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch4,,1900,EA042,7,,heffner1955; wichmann1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch5,with special reference to the village of Dragelevtsy,1940,EA042,7,,sanders1949; vatez1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch6,,1910,EA042,7,,ember1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch7,,1930,EA042,7,,friedrich1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch8,,1940,EA042,7,,hanzeli1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch9,,1930,EA042,7,,maciuika1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci1,with special reference to the Baga Dorbed group,1920,EA042,4,,aberle1953; adelmannd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci10,Vicinity of Erevan,1900,EA042,7,,haxthausen1854; karst190707; klidschian1911; kohler1906,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci11,,1940,EA042,7,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci12,Abkhaz Tribe,1880,EA042,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci2,,1930,EA042,7,,grigolia1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA042,7,,gadzhieva1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci4,,1920,EA042,7,,castagne1929; ladysenskij1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci5,Northern Anatolian Plateau,1950,EA042,7,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci6,,1880,EA042,4,,kovalevsky1888; kovalevsky1893; nioradze1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci7,,1900,EA042,8,,lotz1956; plaetschke1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci8,,1850,EA042,7,,abasadse1894; allen1932; haxthausen1854,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci9,,1910,EA042,8,,grigolia1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj1,with special reference to the village of Tell Toqaan,1950,EA042,7,,sweet1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj10,with special reference to the village of ech-Chibayish,1950,EA042,8,,salim1962; thesiger1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj2,Unspecified,1920,EA042,4,,ashkenazi1948; musil1928; raswan1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj3,,-800,EA042,7,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj4,City and environs of Babylon,-2000,EA042,7,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj5,,1930,EA042,4,,dickson1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj6,with special reference to the sedentary population,1950,EA042,7,,granqvist193135; harris1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj7,with special reference to the village of Munsif,1950,EA042,7,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA042,7,,kasdan1961; kasdan1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj9,,1950,EA042,7,,hazard1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea1,,1950,EA042,7,,bordiend; wilber1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea10,with special reference to the more nomadic groups,1950,EA042,4,,pehrson1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea11,with special reference to the Ghilzai tribe,1950,EA042,7,,broadfoot1885; wilber1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea12,,1940,EA042,4,,garrod1946a; garrod1946b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea13,Mohla Village,1950,EA042,7,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea2,with special reference to the Yusufsai of Swat,1950,EA042,7,,barth1956a; barth1959; honigmann1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea3,with special reference to the Urazgani,1930,EA042,8,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea4,,1950,EA042,8,,barth1956b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea5,,1890,EA042,7,,robertson1896; wilber1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea6,Nomadic branch,1958,EA042,4,,barth1961; barth1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea7,,1950,EA042,7,,schurmann1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea8,,1920,EA042,4,,feilberg1952; wilson1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea9,,1950,EA042,7,,vreeland1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb1,Great Horde,1910,EA042,4,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb2,,1920,EA042,7,,krader1963; schram1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb3,Narobanchin Territory,1940,EA042,4,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb4,with special reference to the Botaha area,1940,EA042,9,,vreeland1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA042,7,,freikin1954; odonovan1882,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA042,4,,krader1954a; krader1954b; krader1957; krader1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb7,,1930,EA042,4,,krader1954b; vreeland1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb8,with special reference to the Kongrat tribe,1800,EA042,4,,zadykhina1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec1,Sakhalin Island,1920,EA042,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec10,with special reference to those on the Ob River,1880,EA042,2,,ahlqvist1885; harva193940; rabot1889; steinitz1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec11,,1900,EA042,8,,donner1932; donner1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec2,with special reference to the Yakutsk district,1900,EA042,4,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA042,4,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec4,Yurak Tribe,1900,EA042,4,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec5,with special reference to the Maritime Koryak,1900,EA042,2,,bergman1927; czaplieka1914; jochelson190508,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec6,Upper Kolyma River,1850,EA042,3,,jochelson191926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec7,Saru Basin in Hokkaido,1900,EA042,2,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec8,,1900,EA042,2,,shimkin1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec9,,1920,EA042,2,,lattimore1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed1,Kanghwa Island,1950,EA042,7,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed10,with special reference to the village of Taitou,1930,EA042,7,,yang1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed13,with special reference to the town of Kabira,1940,EA042,9,,smith1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA042,9,,abadie1924; girard1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed15a,with special reference to the village of Karimata,1950,EA042,9,,burd1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA042,7,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed16,with special reference to the village of Yannon,1940,EA042,9,,davenportnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed2,Liang Shan and Taliang S,1940,EA042,7,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed3,Aigun District,1920,EA042,7,,shirokogoroff1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA042,7,,mark1967; ruey1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed5,Okayama,1950,EA042,7,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA042,7,,kulp1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed7,,1950,EA042,7,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed8,,1930,EA042,7,,fitzgerald1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed9,,1930,EA042,7,,lebaretal1964; odaka1950; strubel1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee1,,1940,EA042,6,,duffsutherlanddunbar1915; roy1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee2,Hunza State,1930,EA042,7,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee3,Lingthem and vicinity,1930,EA042,7,,dasandbanerjee1962; gorer1938; morris1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee4,with special reference to Central Tibet,1920,EA042,7,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee5,with special reference to the Shina tribe,1870,EA042,7,,biddulph1880; leitner1873,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee6,with special reference to those of Khumbu,1950,EA042,8,,furerhaimendorf1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee7,,1840,EA042,9,,endle1911; hodgson1847,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA042,7,,hitchcock1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef1,Bankura and Berghum Districts,1940,EA042,7,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef10,Ganges River Valley,1880,EA042,9,,grierson1885; karve1953; mitra1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA042,7,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA042,7,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef3,,-800,EA042,9,,karve1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef4,,1920,EA042,9,,chatterjeeanddas1927; majumdar1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef5,,1900,EA042,7,,boseandray1953; hendley1875; koppers1948; naik1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef6,,1940,EA042,7,,roy1915; roy1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA042,7,,berreman1962a; berreman1962b; berreman1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA042,7,But the Pandit themselves do not engage in food production,crane1955; lawrence1895; madan1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA042,7,,karve194243; mukhtyar1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA042,1,,furerhaimendorf1943b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA042,7,,dube1955; guha1931; karve1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg11,with special reference to the Gommu Koya,1960,EA042,9,,tyler1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg12,with special reference to the Bondo,1940,EA042,9,,elwin1950; furerhaimendorf1943a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg13,Bastar State,1941,EA042,6,,elwin1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA042,6,,furerhaimendorf1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA042,7,,goughaberle1955; goughaberlend,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg3,Hill Maria,1938,EA042,6,,grigson1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg4,Toda Tribe,1900,EA042,4,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg5,,1930,EA042,7,,emeneau1939; srinivas1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg6,with special reference to Northern Kerala,1799,EA042,7,,gough1961; schneiderandgough1961:385-442,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA042,6,,roy1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg8,,1940,EA042,7,,griffiths1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg9,,1930,EA042,6,,elwin1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh1,,1870,EA042,8,,man1882; radcliffebrown1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh10,,NA,EA042,9,,dubois1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh2,,1900,EA042,7,,grandidierandgrandidier190828; sibree1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh3,Menabe subtribe,1930,EA042,7,,kardiner1939; linton1933; linton1939b; murdock1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh4,with special reference to the Rock Vedda,1900,EA042,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA042,6,,man1888; man1932; svoboda189293; whitehead1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA042,7,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh7,,1900,EA042,4,,decary193033; mcleod1964; rajohnson1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh8,,1900,EA042,4,,faublee1946; kurze188689; mcleod1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh9,,1930,EA042,7,,deschamps1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei1,Rengsanggr,1900,EA042,6,,burling1963; playfair1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA042,6,,bessaignet1958; levistrauss1952; lewin1869,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei11,,1910,EA042,6,,bose1936; needham1960; shakespear1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei12,,1910,EA042,6,,shakespear1912; shaw1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei13,,1910,EA042,7,,hutton1921a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei14,with special reference to the Chongli,1920,EA042,6,,mills1926; smith1925b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei15,,1930,EA042,9,,mills1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei16,,1910,EA042,6,,hutton1921b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei17,,1900,EA042,9,,stack1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei18,with special reference to the Katur subtribe,1920,EA042,6,,lowis1906; milne1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei19,,1940,EA042,6,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei2,,1920,EA042,6,,mills1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei20,with special reference to those of the Chittagong Hills,1940,EA042,9,,levistrauss1952; lewin1869,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei3,Nondwin Village,1950,EA042,7,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei4,Lakher Tribe,1930,EA042,6,,parry1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei5,with special reference to the Jinghpaw,1940,EA042,6,,leach1945; leach1954; leach1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei6,,1930,EA042,6,,das1945; needham1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei7,,1910,EA042,7,,marshall1922; mcmahon1876,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei8,with special reference to those of the Jaintia Hills,1900,EA042,6,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei9,,1880,EA042,6,,bessaignet1958; levistrauss1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA042,6,,izikowitz1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej10,Ko-Sier Village,1950,EA042,6,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA042,7,,lafont1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej12,,1960,EA042,6,,kunstadter1965; kunstadter1966; lebaretal1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej13,,1940,EA042,7,,cusinier1946; lebaretal1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej14,with special reference to the eastern Semai,1960,EA042,6,,dentan1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA042,7,,briggs1951; groslier1956; pelliot1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej16,Inas District,1958,EA042,7,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej2,with special reference to the village of Sar Luk,1940,EA042,6,,condominas1957; condominas1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej3,Jehai Group or subtribe,1920,EA042,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej4,Red River Delta in Tonkin,1950,EA042,7,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej5,,1950,EA042,7,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej6,of the Mergui Archipelago,1920,EA042,2,,carrapiett1909; white1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej7,,1950,EA042,6,,bernatzik1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej8,with special reference to those of Trengganu,1940,EA042,7,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej9,,1940,EA042,7,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA042,6,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia10,,1930,EA042,6,,chiu1962; mabuchi1952; mabuchi1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia11,,1930,EA042,7,,mabuchi1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia12,,1950,EA042,7,,hart1965; hartnd; quijano1937; svelmoe1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia13,Tawi-Tawi and adjacent islands,1960,EA042,2,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia14,,1930,EA042,6,,kaneandsegawa1956; mabuchi1960; weiandliu1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia15,with special reference to those of the Agusan Valley,1920,EA042,6,,garvan1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia16,with special reference to the northern Kalinga,1910,EA042,7,,barton1949; dozier1966a; dozier1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia17,,1910,EA042,9,,cole1913; deananddean1954; wood1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia18,with special reference to the village of Manland in western Negros,1950,EA042,9,,sibley1959; sibley1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia2,,1950,EA042,7,,bacdayan1962; eggan1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia3,Kiangan Group,1920,EA042,7,,barton1919; barton1922; barton1930; barton1938; barton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia4,with special reference to the Eastern Subanun,1950,EA042,6,,christie1909; frake1955; frake1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia5,,1950,EA042,6,,conklin1954; conklin1955; conklin1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia6,Su-Paiwan Village,1930,EA042,6,,mabuchi1960; okada1960; shih1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA042,6,,fox1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia8,,1900,EA042,7,,jenks1905; keesing1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia9,with special reference to the southern Ami,1930,EA042,7,,mabuchi1960; wei1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib1,"Ulu Ai Group, Baleh",1950,EA042,6,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA042,7,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA042,7,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib4,with special reference to the Toba group,1930,EA042,7,,bartlett1929; bruner1959; loeb1933a; warneck1901,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib5,with special reference to the village of Sensuron,1920,EA042,6,,evans1922; rutter1929; williams1965; williamsnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib6,,1920,EA042,7,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib7,with special reference to those of North Pageh,1920,EA042,6,,kruyt1923; loeb1928; wallace1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib8,with special reference to the Ridan group,1900,EA042,8,,hagen1908; schebesta1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib9,with special reference to settled Punan,1950,EA042,9,,needham1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic1,Borongloe,1940,EA042,7,,chabot1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA042,6,,hueting1921; riedel1885,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic11,Allang,1950,EA042,6,,cooley1962a; cooley1962b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA042,6,,goethals1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic13,,1950,EA042,9,,fischer1957a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic2,Abui of Atimelang Village,1940,EA042,6,,dubois1940; dubois1941; dubois1944; dubois1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic3,with special reference to the Mountain Belu,1950,EA042,6,,vroklage1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic4,,1920,EA042,9,,kruyt1921; wetering1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic5,Bare'e subgroup,1910,EA042,6,,adrianiandkruijt1912; downs1956; drabbe1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic6,,1930,EA042,6,,drabbe1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA042,6,,vatter1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic8,,1890,EA042,6,,pleyte1893,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic9,with special reference to eastern Sumba,1930,EA042,7,,nooteboom1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id1,Alice Springs and environs,1900,EA042,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id10,,1930,EA042,1,,meggitt1962a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id11,,1950,EA042,1,,hiatt1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id12,,1930,EA042,1,,sharp1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id13,,1930,EA042,2,,rose1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id2,,1930,EA042,1,,berndt1955; elkin1950; warner1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id3,Tiwi Tribe: Melville Island,1920,EA042,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id4,,1900,EA042,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id5,,1910,EA042,3,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id6,with special reference to the Archer River group,1920,EA042,8,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id7,,1940,EA042,1,,falkenberg1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id8,,1830,EA042,8,,roth1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id9,,1910,EA042,2,,howitt1904; radcliffebrown1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA042,6,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA042,6,,belshaw1957; groves1963; groves1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie11,,1950,EA042,7,,bowers1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie12,Hongwam subtribe; Rumbima,1930,EA042,6,,whiting1941; whitingandreed1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA042,6,,landtman1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie14,,1900,EA042,6,,haddon1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie15,Kalabu; Northern Abelam,1930,EA042,6,,kaberry1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA042,8,,williams194041,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie17,,1940,EA042,6,,salisbury1956; salisbury1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie18,Bamol Village,1940,EA042,7,,serpenti1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie19,with special reference to the coastal inhabitants,1910,EA042,6,,vanbaal1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie2,,1920,EA042,6,,schmitz1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie20,,1900,EA042,6,,seligmann1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie21,,1900,EA042,6,,malinowski1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie22,,1900,EA042,6,,belshaw1951; seligmann1910; williamson1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie23,,1950,EA042,6,,schoorl1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie24,,1870,EA042,6,,chalmers1890; lawes1879,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie25,,1920,EA042,6,,williamson1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie26,,1940,EA042,6,,read1946; read1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie27,,1910,EA042,6,,thurnwald1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie28,,1940,EA042,6,,hogbin194647; hogbin1946b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie29,principally Tsogari,1930,EA042,6,,wedgwood1934; wedgwood1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA042,6,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA042,8,,pouwer1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie31,,1950,EA042,6,,berndt1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie32,,1964,EA042,6,,groves1934; harding1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie33,with special reference to the village of Muramarew,1950,EA042,1,,oosterwal1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie34,,1960,EA042,1,,koentjaraningrat1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie35,,1930,EA042,6,,bateson1932; bateson1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie36,,1950,EA042,1,,vanderleeden1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie37,,1960,EA042,9,,pouwer1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA042,6,,heider1965; heider1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie39,with special reference to those of Orokolo Bay,1920,EA042,8,,williams1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie4,"Dap, Wonevaro district",1930,EA042,6,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA042,6,,williams1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie6,,1930,EA042,8,,held1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie7,with special reference to the Mae group,1950,EA042,6,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie8,with special reference to the Koriki,1910,EA042,1,,holmes1924; maher1961; maher1967; williams1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie9,,1920,EA042,6,,reay1953; waddellandkrinks1968; williams1928; williams1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If1,"Ulimang, Badeldaob Island",1940,EA042,6,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA042,9,,tolertonandrauch1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If11,,1860,EA042,6,,sarfert1919,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If12,,1940,EA042,6,,mason1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If13,,1900,EA042,6,,hambruch191415; stephen1936; wedgwood1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If14,Makin and Butiritari Islands (N),1890,EA042,8,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If15,,1930,EA042,8,,josephandmurray1951; spehr1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If16,,1960,EA042,6,,alkire1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If17,with special reference to the island of Jaluit,1900,EA042,2,,erdland1914; spoehr1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If2,Romonum Island,1940,EA042,8,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If3,With special reference to the inhabitants of Majuro,1940,EA042,6,,spoehr1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA042,6,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If5,,1910,EA042,6,,bascom1965; hambruch193236; riesenberg1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If6,Island,1910,EA042,6,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If7,with special reference to the inhabitants of Onotoa,1940,EA042,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If8,with special reference to those of Saipa,1950,EA042,6,,josephandmurray1951; spoehr1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If9,,1900,EA042,6,,lessa1950; william1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig1,Northeastern group,1940,EA042,6,,oliver1949; oliver1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig10,,1950,EA042,6,,schwartz1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig11,,1920,EA042,8,,armstrong1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig12,with special reference to the Varisi,1900,EA042,6,,scheffler1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig13,,1900,EA042,2,,hambruch1907; pittrivers1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig14,,1900,EA042,6,,belshaw1955; seligman1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig15,,1950,EA042,9,,goodenough1954a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig16,,1950,EA042,9,,goodenough1951a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig17,,1950,EA042,2,Primarily traders,goodenough1954b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig18,,1960,EA042,9,,ivens1930; keesing1966; keesing1967; keesing1968,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig19,,1950,EA042,9,,chowning1962; goodenough1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig2,Kiriwina Island,1910,EA042,6,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig20,with special reference to the village of Longgu,1920,EA042,6,,hogbin1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig21,with special reference to Boieng Island,1930,EA042,6,,bell1934; bell1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig3,,1930,EA042,6,,blackwood1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig4,Lesu Village,1930,EA042,8,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig5,,1920,EA042,6,,fortune1932b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig6,,1900,EA042,6,,ivens1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig7,,1950,EA042,6,,chowning1957; goodenough1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig8,,1910,EA042,9,,hocart1922; rivers1914b; rivers1926; scheffler1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig9,Peri Village,1920,EA042,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih1,,1890,EA042,6,,codrington1891; rivers1914a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih10,Whitsands,1920,EA042,6,,humphreys1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA042,9,,deacon1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih12,,1920,EA042,9,,humphreys1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih13,,1920,EA042,9,,barnard1938; deacon1927; guiart1956a; laneandlane1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA042,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih2,Malekula Island,1930,EA042,6,,deacon1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA042,6,,lane1956; lane1965; laneandlane1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih4,Lau Island,1920,EA042,6,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA042,7,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih6,,1890,EA042,6,,gardner1897; howardandhoward1964; russell1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih7,,1910,EA042,6,,hadfield1920; ray1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih8,with special reference to the village of Nakaroka,1940,EA042,6,,quain1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih9,Graciosa Bay,1930,EA042,6,,davenport1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA042,6,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii10,,1950,EA042,6,,birketsmith1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii12,Pangai,1920,EA042,6,,beagleholeandbeaglehole1941; gifford1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA042,6,,burrows1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii14,,1829,EA042,6,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii2,Ravenga District,1930,EA042,8,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii3,,1930,EA042,6,,beagleholeandbeaglehole1938; macgregor1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA042,2,,kennedy1931; white1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA042,8,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii6,with special reference to Atafu,1900,EA042,2,,macgregor1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii7,,1910,EA042,6,,buck1950; eilers1934; emory1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii8,,1840,EA042,6,,burrows1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii9,,1840,EA042,8,,loeb1926a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij1,,1820,EA042,6,,buck1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij10,,1900,EA042,2,,buck1932b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij2,Nga Puhi Tribe,1820,EA042,6,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij3,,1900,EA042,6,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij4,,1850,EA042,8,,buck1932a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij5,,1900,EA042,2,,danielsson1954; danielsson1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij6,,1800,EA042,7,,buck1957; handyetal1933; malo1951; vayda1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij7,,1900,EA042,2,,buck1938; laval1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij8,,1900,EA042,6,,ellis1905; handy1930; henry1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij9,,1860,EA042,6,,metraux1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na1,,1930,EA042,3,,mckennan1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na10,,1930,EA042,2,,birketsmith1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na11,,1920,EA042,2,,hughes1958; hughes1960; moore1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na12,,1950,EA042,3,,gubser1965; pospisilandlaughlin1963; spencer1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na13,,1880,EA042,2,,boas1888; boas190107,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na14,,1880,EA042,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na15,,1860,EA042,2,,helmandlurie1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na16,,1860,EA042,2,,osgood1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na17,"Lynx Point band, Fort Simpson",1860,EA042,3,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA042,8,,jenness1943; morice1893; ray1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na2,,1880,EA042,2,,chance1966; murdoch1892; spencer1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA042,2,,osgood1936; slobodin1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na21,,1900,EA042,3,,birketsmith1929; rasmussen1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA042,8,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na23,with special reference to the Koksoagmiu,1890,EA042,2,,hawkes1916; turner1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na24,,1880,EA042,2,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA042,2,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na26,with special reference to the Iliamna,1870,EA042,2,,osgood1933; osgood1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na27,,1870,EA042,3,,emmons1911; maclachlan1957; teit1906a; teit1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na28,,1880,EA042,3,,jenness1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na29,,1850,EA042,3,,goddard1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na3,Coronation Gulf,1920,EA042,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na30,,1880,EA042,3,,birketsmith1930; macneish1960a; vanstone1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na31,with special reference to those of Albany and Moose Creek,1850,EA042,3,,skinner1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na32,Lake St. John & Mistassini Band,1880,EA042,3,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na33,Berens River band,1870,EA042,8,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA042,8,,dunning1959a; dunning1959b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na35,,1800,EA042,3,,cameron1890; grant1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA042,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na37,,1880,EA042,3,,landes1937a; landes1937b; landes1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na38,with special reference to the Lac Vieux Desert band,1800,EA042,2,,grant1890; kinietz1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA042,2,,jenness1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na4,Upper Liard and Dease River Group,1920,EA042,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na40,,1650,EA042,3,,kinietz1940c; morgan1871,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na41,Mainland division,1700,EA042,3,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na42,Prairie Potawatomi,1760,EA042,3,,kinietz1940d; quimby1940; searey1965; skinner1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na43,,1920,EA042,2,,balikei1963a; balikei1963b; rasmussen1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na44,,1910,EA042,3,,graburn1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na45,,1900,EA042,3,,rogers1963a; rogersandrogers1963; speck1923; speck1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA042,3,,lips1947a; speck1935; strong1929b; turner1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na6,,1930,EA042,2,,lantis1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA042,2,,gmann1953; honigmann1956b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na8,Shageluk Village,1880,EA042,2,,osgood1940; osgood1958; osgood1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na9,Unalaska Branch (Eastern Aleut),1830,EA042,2,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA042,2,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb10,,1865,EA042,2,,goldman1940; goldman1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb11,with special reference to the Central Nootka,1880,EA042,2,,drucker1951; koppert1930b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb12,,1880,EA042,2,,barnett1938; barnett1939; barnett1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb13,,1880,EA042,2,,barnett1938; barnett1939; barnett1955; hilltout1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb14,,1880,EA042,2,,barnett1938; barnett1939; barnett1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb15,,1880,EA042,2,,curtis1912; stern1934; suttles1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb16,,1860,EA042,2,,eells1887b; gunthere1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb17,,1870,EA042,2,,ballard1935; haeberlinandgunther1930; smith1940b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb18,,1880,EA042,2,,pettitt1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb19,,1850,EA042,2,,ray1938; ray1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb2,Twana Tribe,1850,EA042,2,,eells1877; elmendorf1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb20,,1870,EA042,2,,barnett1937; boas1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb21,,1860,EA042,2,,barnett1937; jacobs1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb22,with special reference to the Chilkat,1880,EA042,2,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb23,,1880,EA042,2,,boas1938; drucker1950; olson1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb24,,1860,EA042,2,,colson1953; swan1868,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb25,,1860,EA042,2,,olson1936a; willoughby1889,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb26,,1880,EA042,2,,barnett1938; barnett1939; barnett1955; lane1963a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb27,with special reference to the Tait,1880,EA042,2,,duff1952; hilltout1902; hilltout1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb28,,1860,EA042,2,,barnett1937; drucker1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb29,,1860,EA042,2,,barnett1937; frachtenberg1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb3,,1890,EA042,2,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb30,,1860,EA042,1,,sapir1907,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb31,,1870,EA042,2,,barnett1937; drucker1936a; dubois1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA042,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb33,,1860,EA042,1,,dixon1910; driver1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb34,,1860,EA042,2,,driver1939; gifford1922:31-33; kroeber1925c,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb35,,1860,EA042,2,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb36,,1860,EA042,2,,driver1939; gifford1922:29-30; kroeber1925a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb37,,1860,EA042,2,,essene1940; gifford1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA042,3,,driver1939; nomland1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb39,,1860,EA042,1,,driver1939; nomland1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb4,,1850,EA042,2,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb5,Eyak Tribe,1890,EA042,2,,birketsmithanddelaguna1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb6,,1870,EA042,8,,driver1939; drucker1936a; dubois1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb7,,1880,EA042,2,,garfield1939; garfieldetal1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb8,,1880,EA042,2,,lopatin1945; olson1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb9,"Central group, lower B.C. River",1880,EA042,2,,boas1891b; drucker1950; mcilwraith1948; smith1925a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc1,,1850,EA042,1,,goldschmidt1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc10,,1860,EA042,3,,goldman1940; goldman1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc11,,1860,EA042,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA042,1,,dixon1905; gifford1922:46-47; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA042,1,,beals1933; faye1923; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc14,with special reference to the northeastern Wintu,1860,EA042,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc15,,1860,EA042,8,,driver1939; gifford1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc16,,1860,EA042,1,,foster1944; gifford1922:118-119,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc17,with special reference to those of Kalekau,1860,EA042,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc18,"Clear Lake, Village of Cignon",1860,EA042,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc19,with special reference to those near Santa Rosa,1860,EA042,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc2,,1850,EA042,1,,gifford1917; voegelin1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc20,,1860,EA042,1,,driver1936; gifford1922:115-118; radin1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc21,,1860,EA042,1,,gifford1922:91-93; giffordandkroeber1937a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc22,with special reference to the Hill Patwin,1850,EA042,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc23,,1870,EA042,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc24,Tulare Lake,1860,EA042,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc25,,1860,EA042,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc26,,1770,EA042,1,,harrington1942; mason1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc27,,1860,EA042,1,,driver1937; gifford1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc28,,1800,EA042,2,,harrington1942; kroeber1925f,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc29,,1770,EA042,8,,harrington1942; johnston1964; kroeber1925h; reid1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc3,with special reference to those of the Northern Foothills,1850,EA042,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc30,,1870,EA042,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc31,with special reference to the Desert Cahuilla,1870,EA042,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc32,,1870,EA042,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc33,,1860,EA042,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc34,,1880,EA042,1,,meigs1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc4,,1860,EA042,1,,garth1944; garth1953; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc5,with special reference to the Central Sierra group,1850,EA042,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc6,with special reference to the Southern Diegueno,1850,EA042,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc7,,1850,EA042,1,,essene1942; foster1944; gifford1922:118-122,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc8,Klamath Tribe,1860,EA042,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc9,,1860,EA042,1,,ray1963; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd1,,1850,EA042,2,,murdock1958; ray1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd10,,1860,EA042,2,,ray1942; teit1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd11,with special reference to the southeastern Shuswap,1850,EA042,2,,ray1942; teit1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd12,,1860,EA042,3,,ray1942; teit1930; turneyhigh1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd13,,1860,EA042,3,,ray1942; teit1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd14,,1860,EA042,3,,ray1942; teit1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd15,,1880,EA042,2,,clineetal1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd16,,1870,EA042,2,,ray1942; teit1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd17,,1870,EA042,2,,jacobs1932; ray1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd18,,1860,EA042,2,,spierandsapir1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd19,,1860,EA042,2,,ray1939; ray1942; rigsby1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd2,,1860,EA042,3,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd20,,1850,EA042,2,,curtis1911; elmendorf1963; haines1955; spiden1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd21,,1870,EA042,1,,stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd22,Wadadika of Harney Valley,1870,EA042,1,,stewart1937; stewart1941; whiting1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd23,,1870,EA042,1,,stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd24,,1870,EA042,3,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd25,,1870,EA042,1,,steward1941; stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd26,,1870,EA042,1,,riddell1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd27,,1860,EA042,1,,park1934; park1937; park1938a; stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd28,,1870,EA042,1,,stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA042,1,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd3,Havasupai Tribe,1870,EA042,7,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd30,,1870,EA042,1,,driver1937; steward1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd31,,1850,EA042,1,,driver1937; steward1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd32,with special reference to those of Saline Valley,1850,EA042,1,,driver1937; steward1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd33,including the Belted Range group,1870,EA042,1,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd34,,1870,EA042,1,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd35,,1870,EA042,1,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd36,,1870,EA042,1,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd37,,1870,EA042,1,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd38,,1870,EA042,1,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA042,1,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd4,,1870,EA042,2,,ray1932; ray1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd40,,1870,EA042,1,,steward1938; steward1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd41,,1870,EA042,1,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA042,1,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd43,,1860,EA042,1,,harris1940; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd44,,1850,EA042,2,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd45,,1860,EA042,3,,murphyandmurphy1960; steward1938; steward1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd46,,1860,EA042,2,,lowie1909; steward1938; steward1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd47,,1850,EA042,3,,hultkrantz1957; lowie1909; steward1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd48,with special reference to those of Deep Creek,1860,EA042,1,,malouf1950; steward1938; steward1943; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd49,including the Kaiparowits band,1860,EA042,1,,kelly1964; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd5,,1870,EA042,1,,hoebel1939; steward1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd50,,1860,EA042,1,,kelly1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd51,,1860,EA042,1,,lowie1924; watkins1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA042,1,,drucker1941; lowie1924; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd53,,1860,EA042,1,,gifford1917; kelly1938; kelly1964; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd54,Colorado River Reservation,1860,EA042,1,,drucker1937; kroeber1925g,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA042,1,,driver1937; steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd56,,1860,EA042,1,,kelly1964; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd57,,1860,EA042,3,,steward1938; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd58,,1860,EA042,3,,gifford1917; lowie1924; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd59,,1860,EA042,3,,stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd6,,1850,EA042,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd60,,1860,EA042,3,,stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd61,,1860,EA042,3,,stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd62,,1860,EA042,3,,lowie1924; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd63,with special reference to the Eastern Bannock,1860,EA042,3,,lowie1930; murphyandmurphy1960; steward1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd64,with special reference to the Kucundika,1860,EA042,3,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd65,,1870,EA042,1,,drucker1941; kniffenetal1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA042,1,,drucker1941; gifford1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd67,,1870,EA042,1,,gifford1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd7,Lower or eastern branch,1880,EA042,2,,boas1918; chamberlain1892; ray1942; turneyhigh1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA042,2,,lane1963b; morice1893; ray1942; teit1907,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd9,,1860,EA042,2,,hilltout1905; ray1942; teit1906b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne1,Gros Ventre Tribe,1880,EA042,3,,cooper1956; flannery1953; kroeber1908c,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne10,,1860,EA042,7,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne11,,1870,EA042,3,,denig1930; lowie1910; rodnick1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne12,,1850,EA042,3,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne13,,1850,EA042,3,,ewers1955; goldfrank1945a; wissler1910; wissler1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne14,,1850,EA042,3,,hesketh1923; howard1961; howard1965a; skinner1914b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne15,Hidatsa Village,1860,EA042,7,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne16,,1800,EA042,2,,gatschet1891; schaedel1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne17,,1860,EA042,3,,lowie1923; mooney1898; richardson1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne18,,1850,EA042,3,,ewers1955; josselindejong1912; michelson1916; wissler1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne19,,1850,EA042,3,,mandelbaum1940; skinner1914a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne2,,1870,EA042,3,,mcallister1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne20,,1850,EA042,3,,mead1937c; riggs1893; skinner1919; wallis1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne21,,1760,EA042,3,,driverandmassey1957; garcia1760; romneynd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne3,Comanche Tribe,1870,EA042,3,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne4,,1870,EA042,3,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne5,,1860,EA042,3,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne6,,1830,EA042,7,,bowers1950; lowie1917a; willandspinden1906,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne7,,1880,EA042,3,,honigmann1956a; jenness1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne8,,1870,EA042,3,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne9,,1860,EA042,3,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf10,,1870,EA042,8,,morgan1871; skinner1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf11,,1870,EA042,3,,whitman1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf12,,1850,EA042,3,,dorsey1897; howard1965b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf13,with special reference to the Kiskopotha band,1820,EA042,3,,trowbridge1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA042,6,,parsons1941; swanton1942b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf15,,1870,EA042,9,,hockett1938; jones1913; morgan1871,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf2,,1850,EA042,8,,michelson1935; oestreich1948; radin1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf3,Omaha Tribe,1850,EA042,8,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf4,,1720,EA042,6,,kinietz1940b; morgan1871,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf5,,1860,EA042,6,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf6,Skidi Band or subtribe,1867,EA042,6,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf7,Tama Reservation,1830,EA042,8,,joffe1940; linton1940; michelson1938; tax1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA042,6,,griffith1954; parson1941; spier1924; swanton1942b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf9,,1870,EA042,1,,hoffman1893; keesing1939; skinner1913; spindler1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng1,Bear and Cord Subtribes,1640,EA042,6,,kinietz1940a; tooker1964; trigger1969,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng10,with special reference to the Seneca tribe,1750,EA042,6,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng11,,1750,EA042,6,,eggan1937a; speck1909; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng12,,1760,EA042,6,,eggan1937a; swanton1931; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng13,,NA,EA042,3,,hallowell1926; speck1818; vetromile1866,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng14,,NA,EA042,9,,swanton1928b; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng15,,1750,EA042,9,,haas1939; swanton1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng2,with special reference to the Cow Creek band,1940,EA042,NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941; spoehr1942; spoehr1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng3,Upper division in Alabama,1750,EA042,6,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng4,,1900,EA042,3,,speck1918; speck1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng5,,1750,EA042,6,,gearing1962; gilbert1937; gilbert1943; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng6,with special reference to the Munsee,1700,EA042,6,,harrington1913; herman1950; newcomb1956; wallace1947a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng7,Natchez Kingdom,1700,EA042,6,,macleod1924; swanton1911; whiteetal1971,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng8,,1560,EA042,6,,brinton1859; ehrmann1940; swanton1916; swanton1942a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng9,,1920,EA042,7,,speckandschaeffer1942; sturtevant1965; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh1,Central band,1880,EA042,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh10,,1920,EA042,7,,parsons1932a; trager1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA042,7,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh12,,1920,EA042,7,,gifford1940; white1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh13,,1920,EA042,7,,eggan1950; mickey1956; miller1959; white1932; white1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh14,,1920,EA042,7,,eggan1950; parson1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh15,,1870,EA042,8,,castetterandopler1936; flannery1932; gifford1940; opler1936a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA042,3,,bellah1952; gifford1940; opler1936d; opler1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA042,3,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh18,Old Oraiibi,1920,EA042,7,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA042,7,,drucker1941; gifford1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh2,,1950,EA042,7,,dozier1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh20,,1860,EA042,7,,gifford1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA042,7,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA042,7,,bee1963; drucker1937; forde1931; halpern1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh23,,1870,EA042,1,,gifford1932a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh24,,1880,EA042,1,,gifford1940; opler1936a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh25,,1920,EA042,7,,hawleyetal1943; stevenson1894; white1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh26,,1910,EA042,9,,harrington1912; parsons1924; parsons1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh27,,1930,EA042,9,,white1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh3,,1930,EA042,7,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh4,Pueblo,1910,EA042,7,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh5,,1850,EA042,1,,drucker1941; spier1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh6,,1890,EA042,7,,parsons1936b; trager1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh7,,1890,EA042,7,,dumarest1919; goldfrank1927; parsons1932b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh8,,1920,EA042,7,,hawley1964; parsons1925; parsons1932b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh9,,1920,EA042,7,,parsons1939; trager1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni1,,1930,EA042,7,,bennettandzingg1935; passin1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni2,,1930,EA042,7,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni3,Huichol Tribe,1920,EA042,6,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni4,,1900,EA042,2,,ascher1962; kroeber1931; mcgee1898,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni5,,1570,EA042,1,,driveranddriver1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni6,,1840,EA042,7,,castetterandbell1942; drucker1941; parsons1928; russell1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni7,,1870,EA042,7,,beals1943; drucker1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni8,,1550,EA042,9,,johnson1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni9,,1920,EA042,9,,mason1948; radin1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj1,Ojitlan,1940,EA042,6,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA042,6,,fuente1949; nader1964; parsons1936a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA042,9,,guiterasholmes1948; schuller1927; stresserpeau195253,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj12,,1950,EA042,9,,romneyandromney1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj13,,1900,EA042,9,,soustelle1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj14,,1960,EA042,9,,turnerandolmstead1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj2,City & environs of Tenochtitlan,1520,EA042,7,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj3,Town and environs of Soteapan,1940,EA042,6,,foster1940; foster1942; foster1943; foster1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj4,,1940,EA042,6,,kellyandpalerm1952; kriekenberg1918; palerm195253,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj5,,1940,EA042,9,,cowan1946; cowan1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj6,with special reference to San Mateo,1950,EA042,2,,diebold1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj7,with special reference to Ayutla,1930,EA042,6,,beals1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA042,7,,foster1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj9,,1960,EA042,6,,nutini1962; nutini1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa1,San Blas Archipelago,1940,EA042,6,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa10,,1900,EA042,6,,baerandbaer1949; tozzer1907,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa11,,1880,EA042,9,,stoll1889,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa12,,1948,EA042,6,,stone1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa13,Town of Chichicastenango,1930,EA042,6,,bunzel1952; schultzejena1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa14,,NA,EA042,9,,alphonse1956; johnson1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa15,,1920,EA042,9,,lafargeandbyers1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa16,,NA,EA042,9,,hagen1943; kirchhoff1948a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa17,with special reference to the village of Chinantla,1950,EA042,9,,gillin1951; reina1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA042,9,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA042,6,,wisdom1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa4,with special reference to those of Panama,1960,EA042,6,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa5,,1950,EA042,6,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa6,,1520,EA042,6,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa7,,1940,EA042,6,,solien1960a; solien1960b; taylor1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA042,6,,wagley1941; wagley1949b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA042,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb1,Dominica Island,1650,EA042,2,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb2,,1940,EA042,6,,park1946; reicheldolmatoff194951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb3,with special reference to the Iroka,1940,EA042,1,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb4,with special reference to the Cachama group,1950,EA042,6,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb5,,1950,EA042,2,,jahn1914; wilbert1959c,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb6,Goajiro Tribe,1940,EA042,4,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb7,with special reference to the Pariri,1950,EA042,6,,wilbert1961b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb8,,1520,EA042,7,,rouse1948a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb9,,1930,EA042,7,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc1,,1950,EA042,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc10,,1900,EA042,6,,coll1903; geoje1910; kirchhoff1931; taylor1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc11,,1930,EA042,6,,simpson1940b; wilbert1961a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc12,,1910,EA042,6,,farabee1924; kirchhoff1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc13,,1950,EA042,6,,riley1954; wilbert1959a; wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc14,,1890,EA042,9,,coudreau1893,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc15,,1910,EA042,6,,kochgrunberg1923a; soaresdiniz1965; ule1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc16,with special reference to the Makitare,1920,EA042,8,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc17,,1950,EA042,6,,wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc18,,1960,EA042,6,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc2,,1950,EA042,6,,leedsnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc3,Barama River,1930,EA042,6,,gillin1936; gillin1948; gillinnd; roth1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc4,with special reference to the non-agricultural groups,1950,EA042,6,,wilbert1957b; wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc5,,1900,EA042,6,,farabee1918,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA042,6,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA042,6,,wilbert1959b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc8,,1950,EA042,3,,wilbert1958a; wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc9,,1950,EA042,6,,wilbert1960a; wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd1,Cabrura village,1950,EA042,6,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA042,6,,wagley1943; wagleyandgalvao1948a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd3,,1920,EA042,6,,nimuendaju1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd4,,1950,EA042,8,,barker1953; zerries1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd5,,1950,EA042,6,,lecock1964; nimuendaju1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd6,,1960,EA042,3,,migliazza1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd7,,1950,EA042,6,,fock1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd8,,1950,EA042,3,,wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA042,6,,chagnon1967; chagnon1968a; chagnon1968b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA042,3,,holmberg1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se10,,1670,EA042,2,,espinosa1935; metraux1948b; tessmann1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se11,,1960,EA042,6,,prost1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se12,,1950,EA042,9,,fulop1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se2,,1940,EA042,8,,leeds1961; nimenuendaju1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se3,,1930,EA042,6,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se4,,1940,EA042,3,,fejos1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se5,Village on Caduiari River,1940,EA042,6,,goldman1948; goldman1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se6,,1910,EA042,6,,murdock1936b; tessmann1930; whitten1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se7,a mestizo group in lowland Bolivia,1950,EA042,9,,heath1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA042,6,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se9,,1920,EA042,2,,stcricq1853; stewardandmetraux1948a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf1,City and environs of Cuzco,1530,EA042,7,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf2,Chucuito Clan community in Peru,1940,EA042,6,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf3,Rio Cayapas Basin,1910,EA042,6,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf4,,1950,EA042,6,,rochereau1919; rochereau1961; wilbert1960b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf5,,1900,EA042,7,,bernalvilla1954; pittierdefabrega1907,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf6,,1540,EA042,7,,ghisletti1954; kroeber1946; restrepo1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf7,,1900,EA042,6,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf8,,1950,EA042,9,,matteson1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA042,2,,labarre1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sg1,Eastern and central,1870,EA042,2,,cooper1917; cooper1946a; gusinde1937b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sg2,Cholchol,1880,EA042,7,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA042,3,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sg4,Equestrian,1870,EA042,3,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sg5,with special reference to the southern bands,1900,EA042,2,,bird1946; cooper1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA042,2,,karsten1932; pelleschi1896,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh2,,1850,EA042,8,,oberg1948a; oberg1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh3,Those in contact with mission,1800,EA042,3,,dobrizhoffer1822; metraux1946chaco,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh4,,1940,EA042,3,,oberg1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh5,,1910,EA042,1,,karsten1932; nordenskiold1919; rosen1924a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh6,,1890,EA042,1,,baldus1931; boggiani1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh7,,1900,EA042,6,,campana1902; metraux1930; nordenskiold1912; rosen1924b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh8,with special reference to those of the Argentine Chaco,1964,EA042,8,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh9,Those in contact with mission,1890,EA042,3,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si1,Kejara,1920,EA042,3,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA042,6,,carneiro1958; carneiroanddole1957; dole1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si2,Village of Vanivani,1930,EA042,6,,levistrauss1948c; murphyandquain1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si3,Simao Lopes,1940,EA042,6,,oberg1948b; oberg1953:1-144; steinen1892,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA042,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si5,,1940,EA042,6,,oberg1953:1-144,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si6,,1900,EA042,1,,schmidt1905; schmidt1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si7,with special reference to the Cozarimi,1910,EA042,6,,metraux1948a; schmidt1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si8,,1940,EA042,6,,oberg1953:1-144,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si9,,1940,EA042,9,,levistrauss1948c; oberg1953:1-144,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj1,,1950,EA042,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj10,Taquapiri,1950,EA042,6,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA042,1,,mayburylewis1967; nimuendaji1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj2,,1850,EA042,6,,nimuendaju1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj3,Duque de Caxias Reservation,1910,EA042,3,,henry1941; metraux1946caingang; paula1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj4,Ramcocamecra or Canella,1930,EA042,6,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj5,Naknenuk subtribe,1880,EA042,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj6,with special reference to the Guajajara subgroup,1930,EA042,6,,snethlage1930; wagley1949a; wagleyandgalvao1948b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA042,6,,mayburylewis1960; nimuendaju1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj8,Hinterland of Rio de Janeiro,1600,EA042,6,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj9,,1950,EA042,6,,dreyfus1963; krause1911; soatesdiniz1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA042,8,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA042,7,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch14,with special reference to the Virjal group,1908,EA042,7,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA042,7,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch16,with special reference to the Valkskij Uezd,1908,EA042,7,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch17,with special reference to those of the Benderskij Uezd,1894,EA042,7,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA042,7,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA042,8,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA042,7,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch21,with special reference to the Vidzeme group,1881,EA042,7,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch22,with special reference to those of the Trakaj area,1895,EA042,6,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA042,6,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch24,with special reference to the Northwest Courland,1847,EA042,2,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch25,with special reference to the Beletskij Uezd,1900,EA042,7,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA042,7,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA042,7,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch28,with special reference to those of the Yamburg Uezd,1900,EA042,7,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec12,Avam (Western) group,1930,EA042,3,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec13,those of Eastern Kamchatka,1710,EA042,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec14,those of South-Eastern Chukotka,1880,EA042,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec15,Middle Northern Sos'va group,1880,EA042,2,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec16,Barguzin group,1890,EA042,3,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec17,Upper Amgun' River group,1890,EA042,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec18,Ulch people as a whole,1890,EA042,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec19,Northern group,1890,EA042,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec20,Oroch people as a whole,1890,EA042,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec21,Hor River group,1890,EA042,8,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa1,Nyai Nyae region,1950,EA043,6,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa2,with special reference to Central Dorobo,1920,EA043,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa3,Gei/Khauan tribe,1840,EA043,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa4,,1920,EA043,6,,lebzelter1934; schmidt1930; vedder1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA043,6,"See related comment(s) by Murdock: variable EA017: Entry follows Schebesta; Czekanowski denies unilineal descent groups; variable EA021: Entry follows Schebesta; Czekanowski reports bilateral (inferred) (code ""1"")",deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa6,,1920,EA043,1,,dempwolff1916; huntingford1953b; kimmenade1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa7,,1910,EA043,6,,bleek1924b; bleek1928; passarge1907; schapera1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa8,,1850,EA043,6,,barrow180104; bleek1924b; fritsch1872,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa9,Hatsa Kindiga Tribe,1910,EA043,6,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab1,,1900,EA043,2,,irle1906; vedder1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab10,,1936,EA043,1,,hunter1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab11,,1850,EA043,1,,borwnlee1927; kropf1889; soga1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab12,,1830,EA043,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA043,4,"See related comment(s) by Murdock: variable EA017, EA019: Quasi-lineages inferred from the patrilocal but basically territorial ward organization and from vestigial patrisibs",brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab14,,1930,EA043,1,,krigeandkrige1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab15,,1860,EA043,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab16,,1930,EA043,1,,earthy1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab17,,1920,EA043,2,,boas1922; dossantos1901; herskovits1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab18,with special reference to the Zezuru,1920,EA043,7,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab19,with special reference to the Kuanyama,1910,EA043,3,,krafft1914; lebzelter1935; loeb1962; tonejes1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab2,,1880,EA043,1,,kuper1950; kuper1974; marwick1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab20,,1880,EA043,3,,wunenberger1888,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab21a,,1930,EA043,1,,magyar1859; mattenklodt1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab21b,,1925,EA043,1,,cook1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab22,,1920,EA043,1,,junod1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab3,Ruling Luyana,1890,EA043,5,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab4,,1920,EA043,1,,junod1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab5,,1930,EA043,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab6,,1900,EA043,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA043,3,,langandtastevin1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab8,Basuto,1860,EA043,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ab9,,1870,EA043,1,,hughesandvanvelsen1955; jackson192627; thomas1872,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac1,,1920,EA043,2,,smithanddale1920; tudennd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac10,,1920,EA043,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac11,,1930,EA043,3,,mcculloch1951; white1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac12,,1920,EA043,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac13,,1950,EA043,3,,tew1950; velsen1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac14,,1900,EA043,3,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac15,,1900,EA043,3,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac16,,1940,EA043,3,,balandier1952; maclatchy1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac17,Feshi territory lineage center,1910,EA043,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac18,,1910,EA043,3,,even1931; hutereau1910b; laman1953; soret1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac19,,1880,EA043,3,,badier1929; descazes1885; guiral1886; trezenem1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac2,,1920,EA043,3,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac20,,1920,EA043,3,,milheiros1956; plancquaert1932; tordayandjoyce1906,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac21,,1910,EA043,3,,decker1942; torday1910; weekx1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac22,,1930,EA043,3,,mertens1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac23,with special reference to the western Lele,1950,EA043,3,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac24,,1910,EA043,3,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA043,3,,beaucorps1921; beaucorps1951; richards1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac26,,1920,EA043,3,,beaucorps1933; tordayandjoyce1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac27,,1930,EA043,3,,baumann1935; mcculloch1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac28,,1930,EA043,3,,baumann1935; mcculloch1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac29,,1930,EA043,3,,brau1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac3,Zambia branch,1900,EA043,7,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac30,,1940,EA043,3,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac31,,1910,EA043,3,,colle1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac32,,1920,EA043,3,,melland1923; watson1954a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac33,,1940,EA043,3,,lambo1946; munday1941; whiteley1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac34,,1940,EA043,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac35,,1900,EA043,3,,brohez1905; marchal1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac36,,1920,EA043,1,"See related comment(s) by Murdock: variable EA017: Formerly 'none' (code ""1""); variable EA019: Formerly sibs (code ""4"")",sanderson1923; tew1950; young1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac37,,1950,EA043,3,,bruwer1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac38,,1910,EA043,3,,malekebu1952; stannus1910; tew1950; werner1906b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac39,,1920,EA043,3,,johnson1922; tew1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA043,3,,tordayandjoyce1910; vansina1954a; vansina1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac40,,1900,EA043,3,,maugham1910; menteirolopez1906; schebesta1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac41,,1900,EA043,3,,behr1893; weule1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac42,,1900,EA043,3,,tew1950; weule1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac43,,1910,EA043,1,,watson1954b; willis1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac5,,1920,EA043,3,,doke1931; mitchellandbarnes1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac6,,1930,EA043,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac7,,1920,EA043,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac8,,1930,EA043,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA043,4,See related comment(s) by Murdock: variable EA021: There are vestigial patrisibs,barnes1951; barnes1954; mead1960; tew1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad1,,1950,EA043,1,,grottanelli1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad10,,1910,EA043,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad11,,1930,EA043,7,,culwickandculwick1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad12,,1940,EA043,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad13,,1930,EA043,1,,edel1937; edel1957; taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad14,Morogoro District,1930,EA043,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad15,,1900,EA043,1,,chisholm1910; coxhead1914; willis1966; wilson1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad16,,1920,EA043,1,,mackenzie1925; sanderson1923; tew1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad17,,1920,EA043,1,,kootzkretschmer192629,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad18,,1910,EA043,1,,avon191516; majerus191516,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad19,,1910,EA043,1,See related comment(s) by Murdock: variable EA017: Uncertain since succession is reported to be matrilineal,fromm1912; popplewell1937; willis1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad2,,1950,EA043,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad20,,1920,EA043,5,,blohm193133; bosch1930; spellig1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad21,,1930,EA043,1,"See related comment(s) by Murdock: variable EA017, EA019: ""A man belongs to the kin group (uluko) of his father's father or his son's son, but not to that of his father or of his son (who both belong to another uluko). There is perpetual alternation of two uluko-names in each patrilineage.""",maurice193538,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad22,,1950,EA043,5,"See related comment(s) by Murdock: variable EA017, EA021: The incompletely exogamous patrisibs are better classed as ramages since affiliation is to a considerable extent ambilineal",abrahams1967; cory1953; malcolm1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad23,,1910,EA043,1,,heese1913; mumford1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad24,,1910,EA043,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad25,,1900,EA043,3,,baumstark1900; gray1953; kannenberg1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad26,,1910,EA043,1,,sick1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad27,,1880,EA043,3,,picarda1886; reidelman1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad28,,1880,EA043,3,,baumann1891; beidelman1967; picarda1886,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad29,,1930,EA043,5,See related comment(s) by Murdock: variable EA021: But with patrilineal bias,ingrams1930; prins1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad3,,1910,EA043,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad30,,1890,EA043,2,,baumann1891; prins1952; stpaulhilaire1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad31,,1910,EA043,2,,prins1952; werner1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad32,,1900,EA043,1,,barrett1911b; johnstone1902; princs1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad33,,1900,EA043,1,,fischer187879; kraft1903; prins1952; werner1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad34,,1910,EA043,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA043,1,,holding1942; lambert1956; middleton1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad36,,1890,EA043,1,,baumann1891; storch1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad37,,1940,EA043,1,,bostock1950; prins1950; prins1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad38,,1910,EA043,1,"See related comment(s) by Murdock: variable EA017, EA021: Inferential from distributional evidence",paterson1956; paulssen1914; thorntonandrounce1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad39,,1950,EA043,1,,gray1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad4,Fort Hall or Metume district,1930,EA043,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad40,,1950,EA043,1,,sangree1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad41,,1930,EA043,1,,wagner1939; wagner1940; wagner194950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad42,,1900,EA043,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad43,,1900,EA043,1,,hurel1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad44,,1920,EA043,1,,czekanowski1924:358-399; taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad45,,1920,EA043,7,,oberg1938; oberg1940; roscoe1923b; taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad46,,1950,EA043,1,,fallers1956; fallers1960; roscoe1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad47,,1900,EA043,1,,abrahams1967; blohm193133; desoignies1903,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad48,,1950,EA043,1,,taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad49,,1950,EA043,1,,taylor1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad5,,1940,EA043,2,,graynd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad50,with special reference to the Mountain Kaguru,1900,EA043,3,,beidelman1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad51,,1930,EA043,3,,beidelman1967; mcvicar1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad6,Age villages of Mwaya and Masoko,1930,EA043,7,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad7,Kyaddondo district (V: Kampala),1880,EA043,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad8,with special reference to the northern or Iringa group,1910,EA043,1,,brownandhutt1935; dempwolff1914; nigmann1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ad9,,1900,EA043,1,,lafontaine1959; roscoe1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA043,1,,winter1956; winter1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae10,,1910,EA043,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae11,,1900,EA043,1,,delhaise1909a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae12,,1940,EA043,1,See related comment(s) by Murdock: variable EA019: Matrilineal descent was formerly recognized,ardener1956; brutsch1950; buchner1887,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae13,,1920,EA043,1,,colle1921; colle1922a; colle1922b; roy192425,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae14,,1950,EA043,1,,hertefeltetal1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae15,,1940,EA043,1,,schumacher1949; viaene1951; viaene1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae16,,1910,EA043,1,,lietard1929; vervaecke1910; wissmannetal1888,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae17,,1900,EA043,1,,delhaise1909b; salmon1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae18,,1900,EA043,1,,tordayandjoyce1922; vanoverbergh1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae19,,1930,EA043,1,,grevisse193738,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae2,,1950,EA043,2,,ardener1956; leuschner1903,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae20,,1940,EA043,1,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae21,,1920,EA043,1,,empain1922; tordayandjoyce1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae22,with special reference to the Bankutu,1900,EA043,1,,tordayandjoyce1922; vanlaere1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae23,,1930,EA043,1,,maes1934; rijek1937; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae24,,1920,EA043,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae25,with special reference to the northern Tetela,1920,EA043,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae26,,1910,EA043,1,See related comment(s) by Murdock: variable EA017: Patrilineal descent is inferential,torday1911; tordayandjoyce1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA043,1,,bertrand1920; smith1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae28,,1900,EA043,1,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae29,,1900,EA043,1,,hutereau1910a; lindemann1906,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae3,,1910,EA043,1,,alexandreandbinet1958; tessmann1913; trezenem1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae30,,1920,EA043,1,,czekanowski1924:327-357; vangeluwe1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae31,,1920,EA043,1,,czekanowski1924:282-297; vangeluwe1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae32,,1920,EA043,1,,vangeluwe1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae33,,1920,EA043,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae34,,1920,EA043,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae35,,1900,EA043,1,,maes1909; vangeluwe1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae36,,1920,EA043,1,,verbeke1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae37,,1930,EA043,1,,soupart1938; vandenbergh1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae38,,1920,EA043,3,,wijnant192526,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae39,,1920,EA043,1,,burssens1958; wolfe1961; wolfe1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae4,Ilanga group,1930,EA043,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae40,,1910,EA043,2,,allys1930; koch1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae41,,1940,EA043,1,,andersson1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae42,,1900,EA043,1,,conradt1902; dugast1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae43,,1900,EA043,1,,burel1910; koch1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae44,,1920,EA043,NA,"See related comment(s) by Murdock: variables EA017, EA019, EA021: Tessmann reports sibs (Sippen) without specifying the rule of descent; the rules of inheritance and succession are consistent with matrilineal descent, but patrilocality and clan-barrios suggest patrilineal descent",baumann1888; gildelgado1949; tessmann1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae45,,1900,EA043,1,,bufe1913; lessner1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae46,,1870,EA043,3,,allegret1927; burton1876; duchaillu1861,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae47,,1900,EA043,1,,oertzen1903; zeller1885,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae48,,1930,EA043,1,,mccullochetal1954; tessmann1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae49,,1900,EA043,1,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae5,,1910,EA043,1,,egerton1939; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae50,,1920,EA043,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae51,Ndiki subtribe,1940,EA043,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae52,,1950,EA043,1,"See related comment(s) by Murdock: variable EA017, EA019: But descent is matrilineal in the extreme south, adjacent to the Kom",kaberry1952; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae53,,1920,EA043,1,,nicol1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae54,,1950,EA043,3,,jeffreys1951; kaberry1952; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae55,,1950,EA043,1,,kaberry1952; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae56,,1950,EA043,1,,kaberry1952; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae57,,1930,EA043,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae58,,1910,EA043,1,,thorbecke1916; thorbeckeandthorbecke1919,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae59,with special reference to the Ngie subtribe,1950,EA043,1,,kaberry1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae6,with special reference to the Bena Kalundwe,1930,EA043,1,,verhulpen1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae7,,1910,EA043,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae8,,1910,EA043,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ae9,,1950,EA043,1,,kaberry1952; mccullochetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af1,City and environs of Abomey,1890,EA043,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af10,,1930,EA043,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af11,,1920,EA043,1,,gaborydubourdeau1926; rouet1907; schwab1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af12,with special reference to the Kwahu,1930,EA043,3,See related comment(s) by Murdock: variable EA017: Patrilineages (ntoro groups) formerly existed but are now extinct,field1949; mead1937a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af13,,1920,EA043,1,,brown1955; wilsonhaffenden1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af14,,1930,EA043,3,"See related comment(s) by Murdock: variable EA019, EA021: From a recent report, matrilineages have apparently become converted into ambilineal ramages",hall1938; mcculloch1950; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af15,,1920,EA043,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af16,,1910,EA043,1,,ruel1956; schuster1914; staschewski1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af17,,1900,EA043,NA,"See related comment(s) by Murdock: variables EA017, EA019, EA021: The report of the absence of exogamous unilineal kin groups is perhaps dubious in view of the clearly attested patri-families",mansfeld1908; talbot1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af18,,1900,EA043,1,,bystrom1954; talbot1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af19,,1950,EA043,1,,fordeandjones1950; simmons1957; simmons1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af2,,1950,EA043,1,,neel1913; paulme1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af20,,1910,EA043,1,,fordeandjones1950; talbot1915; talbot1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af21,with special reference to the Kalabari,1920,EA043,5,"See related comment(s) by Murdock: variable EA017, EA019: The so-called ""houses"" are presumably ramages rather than patrilineages in view of the reported avunculocal residence and matrilineal affiliation in cases where only a token bride-price is paid",granvilleandroth1898; talbot1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af22,,1940,EA043,7,,lloyd1957; omoneukanrin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af23,with special reference to the village of Mgbom,1950,EA043,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af24,,1900,EA043,1,,bradbury1957; roth1903; thomas1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af25,,1930,EA043,1,,bradbury1957; welch1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af26,with special reference to the Etsako,1900,EA043,5,"See related comment(s) by Murdock: variable EA021: Descent is ambilineal, depending mainly on the mode of marriage",bradbury1957; thomas1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af27,,1950,EA043,1,See related comment(s) by Murdock: variable EA017: But formerly children by other than an exchange wife belonged to their mother's kin group,fordeetal1955; tschudi1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af28,,1910,EA043,1,See related comment(s) by Murdock: variable EA017: But Gunn and Conant suspect ambilineal descent,gunnandconant1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af29,,1950,EA043,1,,armstrong1954; fordeetal1955; temple1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af3,Kumasi State,1900,EA043,2,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af30,,1920,EA043,1,See related comment(s) by Murdock: variable EA017: Inferential rather than attested,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af31,with special reference to the Lafia,1960,EA043,1,,gunnandconant1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af32,Abeouta Province and Benin,1920,EA043,1,,ajisafe1924; forde1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA043,1,,forde1951; lloyd1955; lloyd1965; ward1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA043,1,,bascom1942; bascom1944; forde1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA043,2,,daniell1856; field1943; halleran1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af36,with special reference to the Glidyi,1900,EA043,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af37,with special reference to the Akpafu,1900,EA043,1,,asmis1911; hinderling195253; plehn1898,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af38,,1900,EA043,3,,alland1963; clozelandvillamur1902; tauxier1921,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af39,with special reference to the Ndenie,1900,EA043,3,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af4,,1930,EA043,2,,forde1939; forde1941; forde1950; forde1952; forde1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA043,3,,loyer1745; mouezy1942; reichenbach1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af41,,1890,EA043,NA,"See related comment(s) by Murdock: variable EA017, EA019: There are lineages, formerly matrilineal but more recently patrilineal",crosson1900; dreyfus1900; vincenti1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af42,,1900,EA043,2,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af43,,1930,EA043,1,"See related comment(s) by Murdock: variable EA019: But Daniell reports exogamy (code ""2"")",daniell1856; field1937; field1940; manoukian1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af44,,1900,EA043,3,,clozelandvillamur1902,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af45,,1900,EA043,3,,clozelandvillamur1902; grivot1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af46,,1900,EA043,1,,clozelandvillamur1902; coutouly1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af47,,1940,EA043,1,,beckerdonner1944; schwab1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af48,,1850,EA043,1,,wilson1856,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af49,,1940,EA043,1,,schwab1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af5,,1930,EA043,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af50,,1920,EA043,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af51,,1920,EA043,1,,tauxier1924a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af52,,1920,EA043,1,,tauxier1924a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af53,,1950,EA043,1,,holas1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af54,,1930,EA043,1,,germann1933; schwab1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af55,,1950,EA043,1,"See related comment(s) by Murdock: variable EA017, EA021: Since children are affiliated with the mother's group in cases of uxorilocal residence, descent groups are in a measure ambilineal",dazevedo1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA043,1,,schwab1947; viard1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af57,,1910,EA043,1,,langley1939; mcculloch1950; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af58,,1900,EA043,1,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af6,"Yoruba, with special reference to the Oyo",1950,EA043,7,,forde1951; lloyd1955; schwab1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af7,,1950,EA043,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af8,,1930,EA043,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Af9,,1900,EA043,3,,clozelandvillamur1902; labouret1914; menalque1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag1,Segou to Bamako on Niger River,1920,EA043,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag10,,1940,EA043,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag11,,1910,EA043,3,,charles1911; haumant1929; labouret1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag12,,1910,EA043,2,,manoukian1952b; rattray1932; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag13,,1910,EA043,1,See related comment(s) by Murdock: variable EA019: But witchcraft powers are matrilineally transmitted,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag14,,1950,EA043,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag15,,1930,EA043,1,,bernatzik1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag16,,1930,EA043,1,,bernatzik1933; nogueira1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag17,,1940,EA043,1,,gomes1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag18,,1930,EA043,3,,bernatzik1933; bernatzik1944; santoslima1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag19,with special reference to the Felup,1930,EA043,1,,bernatzik1933; cunhataborde1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA043,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag20,,1930,EA043,1,,bernatzik1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag21,,1910,EA043,3,,lestrange1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag22,with special reference to those of Sine,1920,EA043,2,See related comment(s) by Murdock: variable EA017: But patrilineal exogamy extends only to second cousins,aujas1931; bourgeau1933; dulphy1939; fayet1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag23,,1910,EA043,1,,monteil1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag24,,1910,EA043,1,,chevalier1909; kamaraanddrummond1930; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag25,,1900,EA043,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag26,,1930,EA043,1,,anonymous1939a; aubert1936; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag27,,1910,EA043,1,,tauxier1912; tauxier1921,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag28,,,EA043,NA,,,, +Ag29,,1910,EA043,1,,tauxier1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag3,,1930,EA043,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag30,,1910,EA043,1,,cremer192427; guebhard1911; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag31,,1910,EA043,1,,cheron1913; holas1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag32,,1900,EA043,1,,delafosse190809; holas1957; vendeix1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag33,,,EA043,NA,,,, +Ag34,,1930,EA043,3,,labouret1931; tauxier1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag35,,1910,EA043,3,,tauxier1921,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag36,,1950,EA043,2,,goody1956; goody1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag37,,1910,EA043,1,,rattray1932; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag38,,1910,EA043,2,,rattray1932; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag39,,1910,EA043,2,,labouret1920; rattray1932; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag4,Tallensi Tribe,1930,EA043,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag40,,1910,EA043,2,,rattray1932; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag41,,1920,EA043,2,,manoukian1952b; rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag42,,1910,EA043,1,,tauxier1912; tauxier1924b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag43,,1920,EA043,1,,rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag44,,1910,EA043,2,See related comment(s) by Murdock: variable EA021: There are exogamous ramages in the chiefly class,duncanjohnstoneandblair1932; fisch1913; rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag45,with special reference to those in the Diapaga region,1930,EA043,1,,cartry1966; castinel1945; menjaud1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag46,,1920,EA043,2,,manoukian1952b; rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA043,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag48,,1890,EA043,1,,froelichetal1963; klose1899; klose1903; zech1899,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag49,,1930,EA043,1,,froelich1949a; froelichetal1963; puig1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag5,,1930,EA043,2,,goody1956; labouret1931; rattray1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag50,,1910,EA043,1,,asmis1912; froelichetal1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag51,,1940,EA043,1,,mercier1950; mercier1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag52,,1950,EA043,1,,froelichetal1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag53,with special reference to those of Garango,1960,EA043,1,,bernard1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag54,,1910,EA043,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag6,,1890,EA043,1,,durand1929; vieillard1939; vieillard1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag7,,1930,EA043,1,,malzy1946; ortoli1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag8,with special reference to the Coniagui,1910,EA043,3,,delacour191213; lestrange1950; techer1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ag9,,1930,EA043,1,,labouret1934; sidibe1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah1,Zaria Province,1930,EA043,1,,gunn1956; meek192829; meek1931b; smith1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA043,1,"See related comment(s) by Murdock: variable EA019: But Gunn reports matrilineal ""clans"" as well as patrilineages",gunn1953; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah11,,1950,EA043,1,,gunnandconant1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah12,,1920,EA043,1,,bynghall1909; clifford1944; gunnandconant1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah13,with special reference to the Liliwa,1930,EA043,NA,See related comment(s) by Murdock: variable EA017: Probably patrilineal,harris1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah14,,1920,EA043,1,,gunnandconant1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah15,,1920,EA043,1,,gunnandconant1960; harris1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah16,,1900,EA043,1,,fitzpatrick1910; mohr1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah17,,1930,EA043,1,,gunn1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah18,,1930,EA043,1,,bestnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah19,,1930,EA043,1,,gunn1953; smithnda; smithndb,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah2,,1920,EA043,5,,meek1931a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah20,,1920,EA043,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah21,,1920,EA043,1,,gunn1956; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah22,,1900,EA043,NA,"See related comment(s) by Murdock: variable EA017, EA019: The reported ""clans"" are presumably patrilineal, though Ames mentions very strong survivals of matrilineal descent",ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah23,,1920,EA043,5,,meek1931a; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah24,,1920,EA043,1,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah25,,1920,EA043,1,,kaberry1952; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah26,,1920,EA043,3,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah27,,1920,EA043,1,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah28,with special reference to the Lekon subtribe,1920,EA043,2,See related comment(s) by Murdock: variable EA021: Descent may possibly be ambilineal rather than double,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah29,,1920,EA043,3,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah3,Tar of Benue Province,1920,EA043,7,See related comment(s) by Murdock: variable EA021: A form of ramage resulted from ambilocal residence (virilocal and avunculocal) and the ambilineal affiliation associated therewith,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah30,,1920,EA043,3,See related comment(s) by Murdock: variable EA017: Patrilineal lineages and moieties have exclusively religious functions,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah31,,1910,EA043,1,,haughton1912; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah32,,1920,EA043,5,"See related comment(s) by Murdock: variable EA021: Inferred from the attested absence of either patrilineal or matrilineal kin groups and from the report that children belong to the father's group if a high bride-price has been paid, otherwise to the group of their MoBr",meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah33,,1920,EA043,1,,meek1931b; temple1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah34,with special reference to the Malabu,1920,EA043,1,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah35,,1920,EA043,1,,helser1926; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah36,,1920,EA043,1,,lembezat1961; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah37,,1920,EA043,1,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah38,,1930,EA043,1,,lembezat1950; lembezat1961; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah39,,1950,EA043,1,,lembezat1952; lembezat1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah4,,1920,EA043,5,,meek1931b; percival1938; rehfisch1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah5,,1930,EA043,1,,meek1931b; rowling1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah6,,1920,EA043,3,,dunn1956; meek1931b:189-219,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah7,,1940,EA043,1,,hinderling1955; lavergne1949; lembezat1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah8,,1910,EA043,1,,lembezat1961; sieber1925; thorbecke1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ah9,,1920,EA043,1,,diamond1964; gunn1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai1,,1920,EA043,1,,daigre193232; leynaud1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai10,Nuba Hills,1940,EA043,1,,nadel1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai11,,1900,EA043,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai12,,1950,EA043,1,,foelich1956; lembezat1961; malzy1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai13,,1920,EA043,1,,tessmann1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai14,,1920,EA043,1,,lembezat1961; tessmann1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai15,,1900,EA043,1,,brussaux1907; lembezat1916a; martin1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai16,,1910,EA043,NA,See related comment(s) by Murdock: variable EA017: Presumably patrilineal,lembezat1916a; savini1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai17,,1930,EA043,1,,fourneau1938; lembezat1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai18,,1880,EA043,NA,See related comment(s) by Murdock: variable EA017: Inferentially patrilineal,lebeuf1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai19,,1910,EA043,1,,hagen1912; lembezat1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai2,,1940,EA043,2,,nadel1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai20,,1910,EA043,1,,lamouroux1913; lembezat1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai21,,1880,EA043,1,See related comment(s) by Murdock: variable EA017: Inferential,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai22,,1890,EA043,1,,delafosse1897,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai23,,1920,EA043,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai24,,1900,EA043,1,,gaud1911; vergiat1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai25,,1950,EA043,1,,burssens1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai26,,1920,EA043,1,,burssens1958; nelson1951; tanghe1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai27,,1890,EA043,1,,czekanowski1924; nvs1896,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai28,,1910,EA043,1,,delhaise1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai29,,1920,EA043,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai3,,1920,EA043,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai30,,1920,EA043,1,,czekanowski1924; vangeluwe1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai31,,1920,EA043,1,,baxterandbutt1953; czekanowski1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai32,,1920,EA043,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai33,,1940,EA043,1,,baxterandbutt1953; czekanowski1924; middleton1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai34,,1880,EA043,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai35,,1870,EA043,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai36,,1920,EA043,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai37,,1940,EA043,1,,nadel1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai38,,1930,EA043,3,,nadel1947; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai39,,1940,EA043,3,,nadel1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai4,,1920,EA043,5,,evanspritchard1927; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai40,,1940,EA043,1,,nadel1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai41,,1930,EA043,1,,nadel1947; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai42,,1940,EA043,2,,nadel1947; nadel1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai43,,1930,EA043,1,,nadel1947; stevenson1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai44,,1920,EA043,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai45,,1930,EA043,1,,evanspritchard1932a; seligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai46,,1930,EA043,1,,corfield1938; grottanelli1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai47,Northern division,1939,EA043,1,,cerulli1956; grottanelli1940; grottanelli1972,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai5,,1920,EA043,1,,czekanowski1924:400-467; vangeluwe1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai6,Shilluk Kingdom,1900,EA043,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai7,,1910,EA043,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai8,,1930,EA043,1,,hawkesworth1932; nadel1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ai9,Around Yagoua in Cameroon,1910,EA043,1,,garine1964; lembezat1961; vonhagen1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj1,,1950,EA043,1,,lawrance1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj10,,1920,EA043,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj11,,1900,EA043,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj12,,1920,EA043,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj13,,1930,EA043,1,,huntingford1953a; nalder1937; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj14,,1931,EA043,1,,huntingford1953a; nalder1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj15,,1900,EA043,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj16,with special reference to the Riverain Mondari,1930,EA043,1,,buxton1958; huntingford1953a; nalder1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj17,,1890,EA043,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj18,,1950,EA043,1,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj19,,1920,EA043,1,,driberg1922; driberg1925a; driberg1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA043,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj20,,1940,EA043,1,,cerulli1956; lyth1947; pauli1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj21,,1930,EA043,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj22,,1930,EA043,1,,gulliverandgulliver1953; wayland1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj23,,1950,EA043,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj24,,1930,EA043,1,,gulliverandgulliver1953; nalder1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj25,,1920,EA043,1,,huntingford1953b; massam1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj26,,1910,EA043,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj27,,1920,EA043,1,,roscoe1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj28,,1940,EA043,1,,baumann1894; huntingford1953b; klima1964; wilson195253,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj29,,1950,EA043,1,"See related comment(s) by Murdock: variable EA017: The phratries are grouped into moieties, which have ""no very great significance""",spencer1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj3,,1930,EA043,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj30,,1950,EA043,1,,dysonhudson1963; gulliverandgulliver1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj31,,1920,EA043,1,,driberg1925b; evanspritchard1940c; walsh1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj4,,1920,EA043,1,,driberg1923; hayley1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj5,,1920,EA043,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj6,,1940,EA043,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj7,,1910,EA043,7,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj8,,1920,EA043,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aj9,,1920,EA043,1,,barton1923; huntingford1953b; peristiany1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca1,Town of Buso,1930,EA043,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca10,,1880,EA043,1,,hildebrandt1875; lewis1955; paulitschke1888,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca11,,1890,EA043,1,,huntingford1955b; paulitschke189396b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca12,,1880,EA043,1,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca13,with special reference to the eastern Macha,1950,EA043,7,,huntingford1955b; knutsson1963; knutsson1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca14,,1950,EA043,1,,cerulli1956; fleming1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca15,,1930,EA043,1,,cerulli1956; jensen1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca16,,1930,EA043,1,,cerulli1956; jensen1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca17,,1950,EA043,1,,fleming1965; jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca18,,1940,EA043,1,,cerulli1956; jensen1959; ricci1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca19,,1950,EA043,1,,fleming1965; jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca2,Dolbahanta clan or subtribe,1950,EA043,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca20,,1890,EA043,1,,cerulli1956; hohnel1890; nalder1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca21,,1950,EA043,1,,fleming1965; jensen1959; ricci1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca22,,1950,EA043,1,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca23,,1950,EA043,1,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca24,,1950,EA043,1,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca25,,1950,EA043,1,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca26,,1950,EA043,1,,jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca27,,1930,EA043,1,,cerulli1956; grottanelli1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca28,,1950,EA043,1,,cerulli1956; jensen1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca29,,1920,EA043,1,,huntingford1955b; straube1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca3,,1950,EA043,7,,fischer1957b; munzinger1864; nadel1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca30,Kafa Kingdom,1890,EA043,1,,bieber192023; cerulli193233; huntingford1955b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca31,,1860,EA043,6,"See related comment(s) by Murdock: variable EA017, EA021: Bilateral descent inferred from lack of mention of unilineal kin groups in any source",flad1860; leslau1951; leslau1957; stern1862,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca32,,1860,EA043,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca33,,1860,EA043,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca34,,1920,EA043,1,,klunzinger1876; murray1923; murray1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca35,,1930,EA043,1,,clark1938; sandars1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca36,,1860,EA043,1,,munzinger1864; nadel1945; paul1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca37,Bogo Tribe,1850,EA043,NA,"See related comment(s) by Murdock: variable EA017: No data on descent, but distributional evidence suggests the patrilineal rule",munzinger1859,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA043,1,,littman1910; munzinger1864,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca39,,1930,EA043,1,,lewis1965b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca4,,1950,EA043,2,"See related comment(s) by Murdock: variable EA019: Matrilineages are unnamed, unimportant, and not specifically reported to be exogamous",huntingford1953b; winter1955; winterandmolyneaux1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca40,,1950,EA043,1,,straube1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca41,,1950,EA043,1,,straube1957; straube1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca42,,1950,EA043,1,,straube1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca43,,1930,EA043,1,,owen1937; rober1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca5,,1930,EA043,1,,clark1938; murray1935; sandars1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca6,,1880,EA043,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca7,Gondar district,1950,EA043,6,"See related comment(s) by Murdock: variable EA017, EA021: Patronymic but probably not patrilineal",lipsky1962; messing1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca8,,1940,EA043,1,,leslau1950; shack1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca9,,1890,EA043,1,,baumann1894; huntingford1953b; reche1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb1,,1940,EA043,1,,greenberg1946; greenberg1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb10,,1920,EA043,1,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb11,,1900,EA043,3,See related comment(s) by Murdock: variable EA019: Inferred from matrilineal inheritance and succession,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb12,,1920,EA043,1,,reid1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb13,,1930,EA043,1,,lampen1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb14,,1910,EA043,1,,lagrange1913; martine1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb15,with special reference to the Humr,1940,EA043,1,,cunnison1954; henderson1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb16,,1920,EA043,1,,bouille1937; devallee1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb17,Jebel Marra,1880,EA043,3,"See related comment(s) by Murdock: variable EA019: Inferred from prohibition of marriage with a maternal cousin, from the matrilocal rule of residence, and from the report of ""totemism""",barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb18,,1930,EA043,6,See related comment(s) by Murdock: variable EA021: Probably though not certainly,bouille1937; carbou1912; lebeuf1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb19,,1870,EA043,6,"See related comment(s) by Murdock: variable EA017, EA021: Descent, though patrilineal prior to 1850, is now ""bilateral with an agnatic bias"" (Cohen)",cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb2,Upper and lower Salum in Gambia,1950,EA043,2,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb20,,1920,EA043,1,,dupicq1931; robin1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb21,,1930,EA043,1,,pfeffer1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb22,,1920,EA043,1,,coutouly1923; delmond1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb23,,1930,EA043,1,,kane1939; lafont1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb24,Wodaabe of Niger,1950,EA043,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb25,,1930,EA043,1,,anonymous1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb26,Zazzagawa of Zaria,1950,EA043,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb27,,1920,EA043,1,,fegan1930; meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb28,,1920,EA043,2,See related comment(s) by Murdock: variable EA019: Matrilineal exogamy extends only to second cousins,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb29,,1920,EA043,1,,meek1931b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb3,Bamba division,1940,EA043,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb4,,1920,EA043,1,,reid1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb5,,1910,EA043,1,"See related comment(s) by Murdock: variable EA017, EA021: Descent uncertain, though reported as patrilineal by Bouillie",bouille1937; lebeuf1959; talbot1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb6,,1920,EA043,1,,woodnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb7,,1920,EA043,1,,meek1931b:288-310,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA043,6,See related comment(s) by Murdock: variable EA017: But one source speaks of patrilineages,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA043,1,,fordeandscott1946; smith1955a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc1,,1950,EA043,1,,briggs1958; carobaroja1955; cauneille1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc10,,1900,EA043,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc11,,1860,EA043,3,,duveyrier1864,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc12,,1944,EA043,NA,"See related comment(s) by Murdock: variable EA017, EA019: Although descent is specifically reported as patrilineal, it may well be matrilineal as among other Tuareg",cortier1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc13,,1920,EA043,3,,coutouly1923; gaalon1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc14,,1880,EA043,1,See related comment(s) by Murdock: variable EA017: Patrilineal descent is inferential,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc15,,1920,EA043,1,,chapelle1929; meunie1947; spillmann1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc16,,1930,EA043,1,,briggs1958; darmagnac1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc17,,1930,EA043,1,,carobaroja1955; lotte1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc18,,1910,EA043,1,,salvy1951; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc19,,1950,EA043,1,,dubie1953; martv1919,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc2,Nomads of Tibesti,1950,EA043,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc20,with special reference to the more nomadic northern groups,1910,EA043,1,,adeler1939; tauxier1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc3,inhabitants of the oasis of Siwa,1920,EA043,1,,abdallah1917; belgrave1923; cline1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc4,,1920,EA043,1,See related comment(s) by Murdock: variable EA017: The prevalence of sib or lineage exogamy is not reported,goichon1927; mercier1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc5,,1910,EA043,3,,aymard1911; miner1953; said1903; zeltner1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc6,,1910,EA043,1,,parkyns1951; seligmanandseligman1918,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc7,Timbuctoo,1950,EA043,1,,miner1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA043,NA,See related comment(s) by Murdock: variable EA017: Said to have shifted from matrilineal to patrilineal descent,hourst1899,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cc9,Ahaggaren tribe,1920,EA043,3,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd1,Kenuzi Nubians of Dahmit,1920,EA043,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd10,,1900,EA043,1,,destaing190711; moulieras1905,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd11,,1500,EA043,3,See related comment(s) by Murdock: variable EA019: All authorities accept matrilineal descent on the basis of reported matrilineal inheritance and succession,cook1900; espinosa1907; gambier1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd12,,1870,EA043,1,,bel1908; bernard1929; villot1875; vollenhoven1903,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd13,,1930,EA043,1,,bardin1944; despois1940; ubachandrackow1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd14,,1870,EA043,1,,bernard1929; villot1875,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd15,,1910,EA043,1,,michauxbellaire1911; rackow1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA043,1,,michauxbellaire1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd17,,1920,EA043,1,,ubachandrackow1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd18,,1920,EA043,1,,kennett1925; murray1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd19,,1920,EA043,1,,despois1940; ubachandrackow1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd2,Town and environs of Silwa,1950,EA043,1,,ammar1954; ayrout1945; blackman1927; harris1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd20,,1940,EA043,1,,evanspritchard1949b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd21,,1930,EA043,1,,bonniard1934; despois1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd3,Entirety: Moroccan,1920,EA043,1,,coon1931; hart1954; hart1976; moulieras1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd4,,1890,EA043,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA043,1,,montagne1927; montagne1930; ubachandrackow1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd6,with special reference to the New Empire,-1400,EA043,6,,budge1926; erman1923; kees1923; montet1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd7,with special reference to the Zemmur tribe,1910,EA043,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd8,,1910,EA043,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cd9,,1900,EA043,1,,justinard1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce1,Mountain Gheg of No. Albania,1900,EA043,7,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA043,6,,atkinson1953; dias1953; entwistle1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce3,City and environs of Rome,100,EA043,6,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce4,Labourd,1930,EA043,6,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA043,6,,parsons1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA043,6,,pittrivers1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce7,with special reference to the village of Vasilika,1950,EA043,6,,firedl1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ce8,with special reference to the village of Vera,1934,EA043,6,,carobaroja1944; douglass1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cf1,Small City in Connecticut,1920,EA043,6,,murdocknd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cf2,of the Transvaal,1850,EA043,6,,fisher1900; keane1900; lobb1937; walker1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cf3,,1930,EA043,6,,munch1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA043,6,,pierson1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cf5,,1930,EA043,6,,miner1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA043,6,,coon1939; keurandkeur1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cg2,,1100,EA043,6,,dasent1861; johnson1930; merrill1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cg3,County Clare,1930,EA043,6,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cg4,Konkama District,1950,EA043,6,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cg5,,1950,EA043,6,,turneyhigh1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch1,with special reference to the village of Orasac,1950,EA043,1,,coon1949; halpern1956; halpern1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch10,,1910,EA043,6,,cotlarciuc1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch11,Viriatino Village,1955,EA043,6,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch2,,1890,EA043,6,,kaindl1894; koenig1935; szuchiewicz190208,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch3,with special reference to the Hana district of central Moravia,1940,EA043,6,,hajda1955; pospisilnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch4,,1900,EA043,6,,heffner1955; wichmann1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch5,with special reference to the village of Dragelevtsy,1940,EA043,6,,sanders1949; vatez1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch6,,1910,EA043,6,,ember1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch7,,1930,EA043,6,,friedrich1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch8,,1940,EA043,6,,hanzeli1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ch9,,1930,EA043,6,,maciuika1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci1,with special reference to the Baga Dorbed group,1920,EA043,1,,aberle1953; adelmannd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci10,Vicinity of Erevan,1900,EA043,6,See related comment(s) by Murdock: variable EA017: Formerly patrilineal and still patronymic,haxthausen1854; karst190707; klidschian1911; kohler1906,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci11,,1940,EA043,7,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci12,Abkhaz Tribe,1880,EA043,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci2,,1930,EA043,1,,grigolia1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA043,6,,gadzhieva1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci4,,1920,EA043,1,,castagne1929; ladysenskij1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci5,Northern Anatolian Plateau,1950,EA043,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci6,,1880,EA043,1,,kovalevsky1888; kovalevsky1893; nioradze1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci7,,1900,EA043,1,,lotz1956; plaetschke1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ci8,,,EA043,NA,,,, +Ci9,,1910,EA043,1,,grigolia1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj1,with special reference to the village of Tell Toqaan,1950,EA043,1,,sweet1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj10,with special reference to the village of ech-Chibayish,1950,EA043,1,,salim1962; thesiger1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj2,Unspecified,1920,EA043,7,,ashkenazi1948; musil1928; raswan1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj3,,-800,EA043,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj4,City and environs of Babylon,-2000,EA043,6,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj5,,1930,EA043,1,,dickson1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj6,with special reference to the sedentary population,1950,EA043,1,,granqvist193135; harris1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj7,with special reference to the village of Munsif,1950,EA043,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA043,1,,kasdan1961; kasdan1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cj9,,1950,EA043,1,,hazard1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea1,,1950,EA043,1,,bordiend; wilber1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea10,with special reference to the more nomadic groups,1950,EA043,1,,pehrson1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea11,with special reference to the Ghilzai tribe,1950,EA043,1,,broadfoot1885; wilber1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea12,,1940,EA043,1,,garrod1946a; garrod1946b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea13,Mohla Village,1950,EA043,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea2,with special reference to the Yusufsai of Swat,1950,EA043,7,,barth1956a; barth1959; honigmann1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea3,with special reference to the Urazgani,1930,EA043,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea4,,1950,EA043,1,,barth1956b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea5,,1890,EA043,1,,robertson1896; wilber1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea6,Nomadic branch,1958,EA043,1,,barth1961; barth1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea7,,1950,EA043,1,,schurmann1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea8,,1920,EA043,1,,feilberg1952; wilson1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ea9,,1950,EA043,1,,vreeland1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb1,Great Horde,1910,EA043,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb2,,1920,EA043,1,,krader1963; schram1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb3,Narobanchin Territory,1940,EA043,7,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb4,with special reference to the Botaha area,1940,EA043,1,,vreeland1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA043,1,,freikin1954; odonovan1882,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA043,1,,krader1954a; krader1954b; krader1957; krader1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb7,,1930,EA043,1,,krader1954b; vreeland1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eb8,with special reference to the Kongrat tribe,1800,EA043,1,,zadykhina1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec1,Sakhalin Island,1920,EA043,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec10,with special reference to those on the Ob River,1880,EA043,1,See related comment(s) by Murdock: variable EA017: But Steinitz reports agamous patrimoieties,ahlqvist1885; harva193940; rabot1889; steinitz1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec11,,1900,EA043,1,,donner1932; donner1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec2,with special reference to the Yakutsk district,1900,EA043,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA043,6,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec4,Yurak Tribe,1900,EA043,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec5,with special reference to the Maritime Koryak,1900,EA043,6,,bergman1927; czaplieka1914; jochelson190508,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec6,Upper Kolyma River,1850,EA043,6,,jochelson191926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec7,Saru Basin in Hokkaido,1900,EA043,3,"See related comment(s) by Murdock: variable EA017, EA019: But there are patrilineal kin groups consisting of males only",batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec8,,1900,EA043,1,,shimkin1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ec9,,1920,EA043,1,,lattimore1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed1,Kanghwa Island,1950,EA043,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed10,with special reference to the village of Taitou,1930,EA043,1,,yang1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed13,with special reference to the town of Kabira,1940,EA043,1,,smith1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA043,1,,abadie1924; girard1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed15a,with special reference to the village of Karimata,1950,EA043,6,,burd1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA043,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed16,with special reference to the village of Yannon,1940,EA043,1,,davenportnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed2,Liang Shan and Taliang S,1940,EA043,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed3,Aigun District,1920,EA043,1,,shirokogoroff1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA043,7,,mark1967; ruey1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed5,Okayama,1950,EA043,6,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA043,1,,kulp1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed7,,1950,EA043,7,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed8,,1930,EA043,1,,fitzgerald1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ed9,,1930,EA043,1,See related comment(s) by Murdock: variable EA017: Patronymic name groups resembling those of the Chinese,lebaretal1964; odaka1950; strubel1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee1,,1940,EA043,1,,duffsutherlanddunbar1915; roy1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee2,Hunza State,1930,EA043,1,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee3,Lingthem and vicinity,1930,EA043,1,,dasandbanerjee1962; gorer1938; morris1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee4,with special reference to Central Tibet,1920,EA043,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee5,with special reference to the Shina tribe,1870,EA043,1,,biddulph1880; leitner1873,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee6,with special reference to those of Khumbu,1950,EA043,1,,furerhaimendorf1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee7,,1840,EA043,1,,endle1911; hodgson1847,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA043,1,,hitchcock1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef1,Bankura and Berghum Districts,1940,EA043,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef10,Ganges River Valley,1880,EA043,1,,grierson1885; karve1953; mitra1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA043,7,See related comment(s) by Murdock: variable EA017: But locally exogamous sibs for the Thakur caste,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA043,7,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef3,,-800,EA043,7,,karve1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef4,,1920,EA043,1,,chatterjeeanddas1927; majumdar1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef5,,1900,EA043,1,,boseandray1953; hendley1875; koppers1948; naik1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef6,,1940,EA043,1,,roy1915; roy1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA043,7,,berreman1962a; berreman1962b; berreman1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA043,1,,crane1955; lawrence1895; madan1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA043,1,,karve194243; mukhtyar1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA043,1,,furerhaimendorf1943b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA043,1,,dube1955; guha1931; karve1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg11,with special reference to the Gommu Koya,1960,EA043,1,,tyler1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg12,with special reference to the Bondo,1940,EA043,1,,elwin1950; furerhaimendorf1943a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg13,Bastar State,1941,EA043,1,,elwin1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA043,1,,furerhaimendorf1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA043,1,,goughaberle1955; goughaberlend,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg3,Hill Maria,1938,EA043,1,,grigson1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg4,Toda Tribe,1900,EA043,2,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg5,,1930,EA043,1,,emeneau1939; srinivas1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg6,with special reference to Northern Kerala,1799,EA043,3,,gough1961; schneiderandgough1961:385-442,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA043,1,,roy1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg8,,1940,EA043,5,"See related comment(s) by Murdock: variable EA021: The groups called ""endogamous septs"" are apparently not unilineal",griffiths1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eg9,,1930,EA043,1,,elwin1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh1,,1870,EA043,6,,man1882; radcliffebrown1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh10,,NA,EA043,1,,dubois1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh2,,1900,EA043,2,,grandidierandgrandidier190828; sibree1880,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh3,Menabe subtribe,1930,EA043,2,,kardiner1939; linton1933; linton1939b; murdock1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh4,with special reference to the Rock Vedda,1900,EA043,3,"See related comment(s) by Murdock: variable EA019: Leach, on questionable evidence (see discussion Murdock (1965a)), denies the occurrence of matrilineal sibs",bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA043,6,,man1888; man1932; svoboda189293; whitehead1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA043,4,"See related comment(s) by Murdock: variable EA021: Inferred from the preference for V residence and the existence of endogamous ""kindreds"" with a fiction of ""common ancestry""",ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh7,,1900,EA043,1,,decary193033; mcleod1964; rajohnson1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh8,,1900,EA043,1,,faublee1946; kurze188689; mcleod1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Eh9,,1930,EA043,1,,deschamps1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei1,Rengsanggr,1900,EA043,3,,burling1963; playfair1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA043,1,,bessaignet1958; levistrauss1952; lewin1869,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei11,,1910,EA043,1,,bose1936; needham1960; shakespear1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei12,,1910,EA043,1,,shakespear1912; shaw1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei13,,1910,EA043,1,,hutton1921a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei14,with special reference to the Chongli,1920,EA043,1,,mills1926; smith1925b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei15,,1930,EA043,1,,mills1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei16,,1910,EA043,1,,hutton1921b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei17,,1900,EA043,1,,stack1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei18,with special reference to the Katur subtribe,1920,EA043,6,,lowis1906; milne1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei19,,1940,EA043,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei2,,1920,EA043,1,,mills1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei20,with special reference to those of the Chittagong Hills,1940,EA043,1,,levistrauss1952; lewin1869,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei3,Nondwin Village,1950,EA043,6,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei4,Lakher Tribe,1930,EA043,1,,parry1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei5,with special reference to the Jinghpaw,1940,EA043,1,,leach1945; leach1954; leach1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei6,,1930,EA043,1,,das1945; needham1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei7,,1910,EA043,6,"See related comment(s) by Murdock: variable EA019, EA021: But there are agamous matrilineages which function in ancestor worship",marshall1922; mcmahon1876,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei8,with special reference to those of the Jaintia Hills,1900,EA043,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ei9,,1880,EA043,1,,bessaignet1958; levistrauss1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA043,1,,izikowitz1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej10,Ko-Sier Village,1950,EA043,3,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA043,3,,lafont1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej12,,1960,EA043,1,,kunstadter1965; kunstadter1966; lebaretal1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej13,,1940,EA043,1,,cusinier1946; lebaretal1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej14,with special reference to the eastern Semai,1960,EA043,6,,dentan1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA043,6,,briggs1951; groslier1956; pelliot1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej16,Inas District,1958,EA043,3,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej2,with special reference to the village of Sar Luk,1940,EA043,3,,condominas1957; condominas1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej3,Jehai Group or subtribe,1920,EA043,6,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej4,Red River Delta in Tonkin,1950,EA043,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej5,,1950,EA043,6,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej6,of the Mergui Archipelago,1920,EA043,6,See related comment(s) by Murdock: variable EA017: Nomadic boat communities,carrapiett1909; white1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej7,,1950,EA043,1,,bernatzik1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej8,with special reference to those of Trengganu,1940,EA043,6,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ej9,,1940,EA043,6,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA043,7,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia10,,1930,EA043,1,,chiu1962; mabuchi1952; mabuchi1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia11,,1930,EA043,5,,mabuchi1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia12,,1950,EA043,6,,hart1965; hartnd; quijano1937; svelmoe1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia13,Tawi-Tawi and adjacent islands,1960,EA043,6,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia14,,1930,EA043,6,"See related comment(s) by Murdock: variable EA017: But Wei and Liu, unlike other sources, report patrilineages",kaneandsegawa1956; mabuchi1960; weiandliu1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia15,with special reference to those of the Agusan Valley,1920,EA043,6,,garvan1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia16,with special reference to the northern Kalinga,1910,EA043,6,,barton1949; dozier1966a; dozier1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia17,,1910,EA043,6,,cole1913; deananddean1954; wood1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia18,with special reference to the village of Manland in western Negros,1950,EA043,6,,sibley1959; sibley1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia2,,1950,EA043,6,,bacdayan1962; eggan1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia3,Kiangan Group,1920,EA043,6,,barton1919; barton1922; barton1930; barton1938; barton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia4,with special reference to the Eastern Subanun,1950,EA043,6,,christie1909; frake1955; frake1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia5,,1950,EA043,6,,conklin1954; conklin1955; conklin1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia6,Su-Paiwan Village,1930,EA043,5,,mabuchi1960; okada1960; shih1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA043,6,,fox1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia8,,1900,EA043,6,,jenks1905; keesing1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ia9,with special reference to the southern Ami,1930,EA043,3,,mabuchi1960; wei1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib1,"Ulu Ai Group, Baleh",1950,EA043,6,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA043,6,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA043,1,"See related comment(s) by Murdock: variable EA017: But 'none' (code ""1"") in upper castes;",belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib4,with special reference to the Toba group,1930,EA043,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib5,with special reference to the village of Sensuron,1920,EA043,6,,evans1922; rutter1929; williams1965; williamsnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib6,,1920,EA043,3,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib7,with special reference to those of North Pageh,1920,EA043,5,"See related comment(s) by Murdock: variable EA021: The uma, though possibly a localized quasi-patrilineage, is more probably a ramage",kruyt1923; loeb1928; wallace1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib8,with special reference to the Ridan group,1900,EA043,6,,hagen1908; schebesta1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ib9,with special reference to settled Punan,1950,EA043,6,,needham1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic1,Borongloe,1940,EA043,5,,chabot1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA043,6,,hueting1921; riedel1885,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic11,Allang,1950,EA043,7,,cooley1962a; cooley1962b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA043,6,,goethals1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic13,,1950,EA043,2,,fischer1957a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic2,Abui of Atimelang Village,1940,EA043,7,,dubois1940; dubois1941; dubois1944; dubois1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic3,with special reference to the Mountain Belu,1950,EA043,3,,vroklage1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic4,,1920,EA043,1,,kruyt1921; wetering1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic5,Bare'e subgroup,1910,EA043,6,,adrianiandkruijt1912; downs1956; drabbe1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic6,,1930,EA043,1,,drabbe1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA043,1,,vatter1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic8,,1890,EA043,1,,pleyte1893,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ic9,with special reference to eastern Sumba,1930,EA043,1,,nooteboom1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id1,Alice Springs and environs,1900,EA043,2,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id10,,1930,EA043,2,,meggitt1962a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id11,,1950,EA043,2,,hiatt1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id12,,1930,EA043,1,,sharp1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id13,,1930,EA043,2,See related comment(s) by Murdock: variable EA019: Implicit matrimoieties,rose1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id2,,1930,EA043,2,See related comment(s) by Murdock: variable EA019: The matrimoieties are implicit and unnamed,berndt1955; elkin1950; warner1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id3,Tiwi Tribe: Melville Island,1920,EA043,3,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id4,,1900,EA043,3,"See related comment(s) by Murdock: variable EA017: But there are localized totemic groups which do not regulate marriages; in addition, analysis suggests implicit intersecting patrimoieties",berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id5,,1910,EA043,2,See related comment(s) by Murdock: variable EA019: Implicit matrimoieties intersecting the patrimoieties to form four sections,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id6,with special reference to the Archer River group,1920,EA043,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id7,,1940,EA043,1,"See related comment(s) by Murdock: variable EA019: Although subsections were borrowed about 1915, they have not yet been integrated into the social system, and implicit matrimoieties have therefore not been established",falkenberg1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Id8,,,EA043,NA,,,, +Id9,,1910,EA043,2,,howitt1904; radcliffebrown1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA043,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA043,7,,belshaw1957; groves1963; groves1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie11,,1950,EA043,1,,bowers1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie12,Hongwam subtribe; Rumbima,1930,EA043,1,,whiting1941; whitingandreed1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA043,1,,landtman1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie14,,1900,EA043,1,,haddon1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie15,Kalabu; Northern Abelam,1930,EA043,1,,kaberry1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA043,1,,williams194041,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie17,,1940,EA043,1,,salisbury1956; salisbury1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie18,Bamol Village,1940,EA043,7,"See related comment(s) by Murdock: variable EA017: Though exogamous, lineages are only incompletely patrilineal and, within a village, tend to be grouped into local moieties",serpenti1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie19,with special reference to the coastal inhabitants,1910,EA043,1,,vanbaal1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie2,,1920,EA043,7,"See related comment(s) by Murdock: variable EA021: A ""skewed kindred"" consisting of parts of both Ego's and his mother's patrilineages",schmitz1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie20,,1900,EA043,1,,seligmann1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie21,,1900,EA043,1,,malinowski1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie22,,1900,EA043,1,,belshaw1951; seligmann1910; williamson1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie23,,1950,EA043,1,,schoorl1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie24,,1870,EA043,1,,chalmers1890; lawes1879,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie25,,1920,EA043,1,,williamson1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie26,,1940,EA043,1,,read1946; read1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie27,,1910,EA043,1,,thurnwald1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie28,,1940,EA043,2,,hogbin194647; hogbin1946b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie29,principally Tsogari,1930,EA043,1,,wedgwood1934; wedgwood1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA043,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA043,3,,pouwer1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie31,,1950,EA043,1,,berndt1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie32,,1964,EA043,7,,groves1934; harding1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie33,with special reference to the village of Muramarew,1950,EA043,1,,oosterwal1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie34,,1960,EA043,6,,koentjaraningrat1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie35,,1930,EA043,1,,bateson1932; bateson1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie36,,1950,EA043,6,,vanderleeden1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie37,,1960,EA043,1,,pouwer1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA043,1,,heider1965; heider1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie39,with special reference to those of Orokolo Bay,1920,EA043,1,,williams1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie4,"Dap, Wonevaro district",1930,EA043,2,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA043,1,,williams1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie6,,1930,EA043,1,,held1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie7,with special reference to the Mae group,1950,EA043,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie8,with special reference to the Koriki,1910,EA043,1,,holmes1924; maher1961; maher1967; williams1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ie9,,1920,EA043,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If1,"Ulimang, Badeldaob Island",1940,EA043,7,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA043,3,,tolertonandrauch1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If11,,1860,EA043,3,,sarfert1919,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If12,,1940,EA043,3,,mason1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If13,,1900,EA043,7,,hambruch191415; stephen1936; wedgwood1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If14,Makin and Butiritari Islands (N),1890,EA043,5,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If15,,1930,EA043,3,,josephandmurray1951; spehr1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If16,,1960,EA043,3,,alkire1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If17,with special reference to the island of Jaluit,1900,EA043,3,,erdland1914; spoehr1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If2,Romonum Island,1940,EA043,7,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If3,With special reference to the inhabitants of Majuro,1940,EA043,7,,spoehr1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA043,7,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If5,,1910,EA043,3,,bascom1965; hambruch193236; riesenberg1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If6,Island,1910,EA043,2,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If7,with special reference to the inhabitants of Onotoa,1940,EA043,5,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If8,with special reference to those of Saipa,1950,EA043,6,,josephandmurray1951; spoehr1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +If9,,1900,EA043,3,,lessa1950; william1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig1,Northeastern group,1940,EA043,3,,oliver1949; oliver1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig10,,1950,EA043,2,,schwartz1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig11,,1920,EA043,3,,armstrong1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig12,with special reference to the Varisi,1900,EA043,5,See related comment(s) by Murdock: variable EA017: There is some emphasis on patrifiliation,scheffler1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig13,,1900,EA043,3,,hambruch1907; pittrivers1925,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig14,,1900,EA043,3,,belshaw1955; seligman1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig15,,1950,EA043,1,,goodenough1954a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig16,,1950,EA043,5,,goodenough1951a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig17,,1950,EA043,1,,goodenough1954b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig18,,1960,EA043,7,,ivens1930; keesing1966; keesing1967; keesing1968,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig19,,1950,EA043,5,,chowning1962; goodenough1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig2,Kiriwina Island,1910,EA043,3,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig20,with special reference to the village of Longgu,1920,EA043,3,,hogbin1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig21,with special reference to Boieng Island,1930,EA043,3,,bell1934; bell1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig3,,1930,EA043,7,,blackwood1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig4,Lesu Village,1930,EA043,3,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig5,,1920,EA043,3,,fortune1932b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig6,,1900,EA043,5,,ivens1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig7,,1950,EA043,7,,chowning1957; goodenough1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig8,,1910,EA043,5,"See related comment(s) by Murdock: variable EA019: Though descent is actually ambilineal, matrilineal ties are considered stronger than patrilineal ones",hocart1922; rivers1914b; rivers1926; scheffler1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ig9,Peri Village,1920,EA043,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih1,,1890,EA043,3,,codrington1891; rivers1914a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih10,Whitsands,1920,EA043,1,,humphreys1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA043,1,,deacon1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih12,,1920,EA043,1,,humphreys1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih13,,1920,EA043,2,,barnard1938; deacon1927; guiart1956a; laneandlane1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA043,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih2,Malekula Island,1930,EA043,1,,deacon1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA043,2,See related comment(s) by Murdock: variable EA019: The matrimoieties are implicit,lane1956; lane1965; laneandlane1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih4,Lau Island,1920,EA043,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA043,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih6,,1890,EA043,7,,gardner1897; howardandhoward1964; russell1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih7,,1910,EA043,1,,hadfield1920; ray1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih8,with special reference to the village of Nakaroka,1940,EA043,2,,quain1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ih9,Graciosa Bay,1930,EA043,3,,davenport1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA043,5,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii10,,1950,EA043,6,,birketsmith1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii12,Pangai,1920,EA043,5,"See related comment(s) by Murdock: variable EA021: Or localized ""stem kindreds""",beagleholeandbeaglehole1941; gifford1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA043,5,,burrows1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii14,,1829,EA043,5,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii2,Ravenga District,1930,EA043,7,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii3,,1930,EA043,7,,beagleholeandbeaglehole1938; macgregor1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA043,5,,kennedy1931; white1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA043,5,"See related comment(s) by Murdock: variable EA017, EA021: The exogamous patrilineages of six generations' depth reported by Hogbin, who calls them ""joint families,"" are presumably ambilineal ramages, since affiliation is reported to be matrilineal for about 10 per cent of their membership",hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii6,with special reference to Atafu,1900,EA043,5,,macgregor1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii7,,1910,EA043,6,,buck1950; eilers1934; emory1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii8,,1840,EA043,5,,burrows1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ii9,,1840,EA043,5,,loeb1926a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij1,,1820,EA043,5,,buck1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij10,,1900,EA043,6,See related comment(s) by Murdock: variable EA021: Or very possibly ambilineal,buck1932b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij2,Nga Puhi Tribe,1820,EA043,5,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij3,,1900,EA043,6,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij4,,1850,EA043,6,"See related comment(s) by Murdock: variable EA021: Or very probably ramages (code ""4"")",buck1932a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij5,,1900,EA043,5,,danielsson1954; danielsson1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij6,,1800,EA043,5,,buck1957; handyetal1933; malo1951; vayda1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij7,,1900,EA043,5,"See related comment(s) by Murdock: variable EA021: But called ""extended families"" by Buck",buck1938; laval1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij8,,1900,EA043,5,,ellis1905; handy1930; henry1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ij9,,1860,EA043,5,,metraux1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na1,,1930,EA043,3,,mckennan1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na10,,1930,EA043,6,,birketsmith1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na11,,1920,EA043,7,,hughes1958; hughes1960; moore1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na12,,1950,EA043,6,,gubser1965; pospisilandlaughlin1963; spencer1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na13,,1880,EA043,6,,boas1888; boas190107,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na14,,1880,EA043,6,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na15,,1860,EA043,6,,helmandlurie1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na16,,1860,EA043,6,,osgood1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na17,"Lynx Point band, Fort Simpson",1860,EA043,6,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA043,3,,jenness1943; morice1893; ray1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na2,,1880,EA043,6,,chance1966; murdoch1892; spencer1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA043,3,,osgood1936; slobodin1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na21,,1900,EA043,6,,birketsmith1929; rasmussen1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA043,6,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na23,with special reference to the Koksoagmiu,1890,EA043,6,,hawkes1916; turner1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na24,,1880,EA043,6,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA043,6,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na26,with special reference to the Iliamna,1870,EA043,3,,osgood1933; osgood1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na27,,1870,EA043,3,,emmons1911; maclachlan1957; teit1906a; teit1956,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na28,,1880,EA043,6,,jenness1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na29,,1850,EA043,6,,goddard1916,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na3,Coronation Gulf,1920,EA043,6,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na30,,1880,EA043,6,,birketsmith1930; macneish1960a; vanstone1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na31,with special reference to those of Albany and Moose Creek,1850,EA043,6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",skinner1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na32,Lake St. John & Mistassini Band,1880,EA043,6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na33,Berens River band,1870,EA043,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA043,7,,dunning1959a; dunning1959b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na35,,1800,EA043,1,,cameron1890; grant1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA043,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na37,,1880,EA043,1,,landes1937a; landes1937b; landes1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na38,with special reference to the Lac Vieux Desert band,1800,EA043,1,,grant1890; kinietz1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA043,1,,jenness1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na4,Upper Liard and Dease River Group,1920,EA043,3,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na40,,1650,EA043,1,,kinietz1940c; morgan1871,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na41,Mainland division,1700,EA043,6,"See related comment(s) by Murdock: variable EA017: Follows Speck and Bock; Jenness postulates 'sibs' (code ""4"")",bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na42,Prairie Potawatomi,1760,EA043,1,,kinietz1940d; quimby1940; searey1965; skinner1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na43,,1920,EA043,6,,balikei1963a; balikei1963b; rasmussen1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na44,,1910,EA043,6,,graburn1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na45,,1900,EA043,6,,rogers1963a; rogersandrogers1963; speck1923; speck1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA043,6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",lips1947a; speck1935; strong1929b; turner1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na6,,1930,EA043,4,,lantis1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA043,4,See related comment(s) by Murdock: variable EA021: Patrilocal bands,gmann1953; honigmann1956b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na8,Shageluk Village,1880,EA043,6,,osgood1940; osgood1958; osgood1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Na9,Unalaska Branch (Eastern Aleut),1830,EA043,4,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA043,3,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb10,,1865,EA043,5,,goldman1940; goldman1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb11,with special reference to the Central Nootka,1880,EA043,6,,drucker1951; koppert1930b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb12,,1880,EA043,6,,barnett1938; barnett1939; barnett1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb13,,1880,EA043,6,,barnett1938; barnett1939; barnett1955; hilltout1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb14,,1880,EA043,5,,barnett1938; barnett1939; barnett1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb15,,1880,EA043,6,,curtis1912; stern1934; suttles1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb16,,1860,EA043,6,,eells1887b; gunthere1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb17,,1870,EA043,6,,ballard1935; haeberlinandgunther1930; smith1940b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb18,,1880,EA043,6,,pettitt1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb19,,1850,EA043,6,,ray1938; ray1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb2,Twana Tribe,1850,EA043,6,,eells1877; elmendorf1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb20,,1870,EA043,6,,barnett1937; boas1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb21,,1860,EA043,6,,barnett1937; jacobs1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb22,with special reference to the Chilkat,1880,EA043,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb23,,1880,EA043,5,,boas1938; drucker1950; olson1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb24,,1860,EA043,5,,colson1953; swan1868,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb25,,1860,EA043,6,,olson1936a; willoughby1889,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb26,,1880,EA043,6,,barnett1938; barnett1939; barnett1955; lane1963a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb27,with special reference to the Tait,1880,EA043,6,,duff1952; hilltout1902; hilltout1904,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb28,,1860,EA043,6,,barnett1937; drucker1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb29,,1860,EA043,6,,barnett1937; frachtenberg1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb3,,1890,EA043,5,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb30,,1860,EA043,6,,sapir1907,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb31,,1870,EA043,1,,barnett1937; drucker1936a; dubois1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA043,6,,dixon1907; holt1946; kroeber1925d; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb33,,1860,EA043,6,,dixon1910; driver1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb34,,1860,EA043,6,,driver1939; gifford1922:31-33; kroeber1925c,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb35,,1860,EA043,6,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb36,,1860,EA043,6,,driver1939; gifford1922:29-30; kroeber1925a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb37,,1860,EA043,6,,essene1940; gifford1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA043,6,,driver1939; nomland1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb39,,1860,EA043,6,,driver1939; nomland1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb4,,1850,EA043,6,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb5,Eyak Tribe,1890,EA043,3,,birketsmithanddelaguna1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb6,,1870,EA043,1,,driver1939; drucker1936a; dubois1932,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb7,,1880,EA043,3,,garfield1939; garfieldetal1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb8,,1880,EA043,3,,lopatin1945; olson1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nb9,"Central group, lower B.C. River",1880,EA043,5,,boas1891b; drucker1950; mcilwraith1948; smith1925a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc1,,1850,EA043,1,,goldschmidt1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc10,,1860,EA043,6,,goldman1940; goldman1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc11,,1860,EA043,6,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA043,6,,dixon1905; gifford1922:46-47; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA043,6,,beals1933; faye1923; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc14,with special reference to the northeastern Wintu,1860,EA043,6,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc15,,1860,EA043,6,,driver1939; gifford1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc16,,1860,EA043,6,,foster1944; gifford1922:118-119,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc17,with special reference to those of Kalekau,1860,EA043,6,,essene1942; gifford1922:109-111; giffordandkroeber1937a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc18,"Clear Lake, Village of Cignon",1860,EA043,6,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc19,with special reference to those near Santa Rosa,1860,EA043,6,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc2,,1850,EA043,6,,gifford1917; voegelin1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc20,,1860,EA043,6,,driver1936; gifford1922:115-118; radin1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc21,,1860,EA043,6,,gifford1922:91-93; giffordandkroeber1937a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc22,with special reference to the Hill Patwin,1850,EA043,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc23,,1870,EA043,1,"See related comment(s) by Murdock: variable EA017: Moieties (code ""6"") in some subgroups",aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc24,Tulare Lake,1860,EA043,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc25,,1860,EA043,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc26,,1770,EA043,1,,harrington1942; mason1912,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc27,,1860,EA043,6,,driver1937; gifford1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc28,,1800,EA043,1,"See related comment(s) by Murdock: variable EA017: Or possibly moieties (code ""6"")",harrington1942; kroeber1925f,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc29,,1770,EA043,1,,harrington1942; johnston1964; kroeber1925h; reid1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc3,with special reference to those of the Northern Foothills,1850,EA043,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc30,,1870,EA043,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc31,with special reference to the Desert Cahuilla,1870,EA043,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc32,,1870,EA043,1,"See related comment(s) by Murdock: variable EA017: But Strong reports moieties (code ""6"")",drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc33,,1860,EA043,1,See related comment(s) by Murdock: variable EA017: But White suggests that the moieties were matrilineal,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc34,,1880,EA043,1,,meigs1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc4,,1860,EA043,6,,garth1944; garth1953; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc5,with special reference to the Central Sierra group,1850,EA043,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc6,with special reference to the Southern Diegueno,1850,EA043,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc7,,1850,EA043,6,,essene1942; foster1944; gifford1922:118-122,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc8,Klamath Tribe,1860,EA043,6,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nc9,,1860,EA043,6,,ray1963; voegelin1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd1,,1850,EA043,6,,murdock1958; ray1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd10,,1860,EA043,6,,ray1942; teit1900,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd11,with special reference to the southeastern Shuswap,1850,EA043,6,,ray1942; teit1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd12,,1860,EA043,6,,ray1942; teit1930; turneyhigh1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd13,,1860,EA043,6,,ray1942; teit1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd14,,1860,EA043,6,,ray1942; teit1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd15,,1880,EA043,6,,clineetal1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd16,,1870,EA043,6,,ray1942; teit1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd17,,1870,EA043,6,,jacobs1932; ray1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd18,,1860,EA043,6,,spierandsapir1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd19,,1860,EA043,6,,ray1939; ray1942; rigsby1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd2,,1860,EA043,6,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd20,,1850,EA043,6,,curtis1911; elmendorf1963; haines1955; spiden1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd21,,1870,EA043,6,,stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd22,Wadadika of Harney Valley,1870,EA043,6,,stewart1937; stewart1941; whiting1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd23,,1870,EA043,6,,stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd24,,1870,EA043,6,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd25,,1870,EA043,6,,steward1941; stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd26,,1870,EA043,6,,riddell1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd27,,1860,EA043,6,,park1934; park1937; park1938a; stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd28,,1870,EA043,6,,stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd3,Havasupai Tribe,1870,EA043,4,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd30,,1870,EA043,6,,driver1937; steward1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd31,,1850,EA043,6,,driver1937; steward1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd32,with special reference to those of Saline Valley,1850,EA043,6,,driver1937; steward1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd33,including the Belted Range group,1870,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd34,,1870,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd35,,1870,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd36,,1870,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd37,,1870,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd38,,1870,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd4,,1870,EA043,6,,ray1932; ray1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd40,,1870,EA043,6,,steward1938; steward1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd41,,1870,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd43,,1860,EA043,6,,harris1940; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd44,,1850,EA043,6,,steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd45,,1860,EA043,6,,murphyandmurphy1960; steward1938; steward1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd46,,1860,EA043,6,,lowie1909; steward1938; steward1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd47,,1850,EA043,6,,hultkrantz1957; lowie1909; steward1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd48,with special reference to those of Deep Creek,1860,EA043,6,,malouf1950; steward1938; steward1943; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd49,including the Kaiparowits band,1860,EA043,6,,kelly1964; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd5,,1870,EA043,6,,hoebel1939; steward1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd50,,1860,EA043,6,,kelly1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd51,,1860,EA043,6,,lowie1924; watkins1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA043,6,,drucker1941; lowie1924; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd53,,1860,EA043,6,,gifford1917; kelly1938; kelly1964; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd54,Colorado River Reservation,1860,EA043,6,,drucker1937; kroeber1925g,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA043,6,,driver1937; steward1938; steward1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd56,,1860,EA043,6,,kelly1964; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd57,,1860,EA043,6,,steward1938; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd58,,1860,EA043,6,,gifford1917; lowie1924; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd59,,1860,EA043,6,,stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd6,,1850,EA043,6,See related comment(s) by Murdock: variable EA017: There are weak agamous patrimoieties whose sole function is to oppose each other in games,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd60,,1860,EA043,6,,stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd61,,1860,EA043,6,,stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd62,,1860,EA043,6,,lowie1924; stewart1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd63,with special reference to the Eastern Bannock,1860,EA043,6,,lowie1930; murphyandmurphy1960; steward1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd64,with special reference to the Kucundika,1860,EA043,6,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd65,,1870,EA043,6,,drucker1941; kniffenetal1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA043,6,,drucker1941; gifford1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd67,,1870,EA043,6,,gifford1936,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd7,Lower or eastern branch,1880,EA043,6,,boas1918; chamberlain1892; ray1942; turneyhigh1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA043,6,,lane1963b; morice1893; ray1942; teit1907,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nd9,,1860,EA043,6,,hilltout1905; ray1942; teit1906b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne1,Gros Ventre Tribe,1880,EA043,6,,cooper1956; flannery1953; kroeber1908c,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne10,,1860,EA043,6,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne11,,1870,EA043,6,"See related comment(s) by Murdock: variable EA021: Possibly quasi-lineages (code ""6""), if the band is regarded as a quasi-lineage",denig1930; lowie1910; rodnick1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne12,,1850,EA043,6,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne13,,1850,EA043,6,,ewers1955; goldfrank1945a; wissler1910; wissler1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne14,,1850,EA043,1,,hesketh1923; howard1961; howard1965a; skinner1914b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne15,Hidatsa Village,1860,EA043,3,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne16,,1800,EA043,6,,gatschet1891; schaedel1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne17,,1860,EA043,6,,lowie1923; mooney1898; richardson1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne18,,1850,EA043,6,,ewers1955; josselindejong1912; michelson1916; wissler1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne19,,1850,EA043,6,,mandelbaum1940; skinner1914a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne2,,1870,EA043,6,,mcallister1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne20,,1850,EA043,6,,mead1937c; riggs1893; skinner1919; wallis1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne21,,1760,EA043,6,,driverandmassey1957; garcia1760; romneynd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne3,Comanche Tribe,1870,EA043,6,"See related comment(s) by Murdock: variable EA021: Or quite possibly bilateral (inferred) (code ""1"")",gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne4,,1870,EA043,3,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne5,,1860,EA043,6,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne6,,1830,EA043,3,,bowers1950; lowie1917a; willandspinden1906,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne7,,1880,EA043,6,,honigmann1956a; jenness1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne8,,1870,EA043,6,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ne9,,1860,EA043,6,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf10,,1870,EA043,1,,morgan1871; skinner1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf11,,1870,EA043,1,,whitman1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf12,,1850,EA043,1,,dorsey1897; howard1965b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf13,with special reference to the Kiskopotha band,1820,EA043,1,,trowbridge1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA043,6,"See related comment(s) by Murdock: variable EA019: But castes were matrilineal, much as among the Natchez",parsons1941; swanton1942b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf15,,1870,EA043,1,,hockett1938; jones1913; morgan1871,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf2,,1850,EA043,1,,michelson1935; oestreich1948; radin1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf3,Omaha Tribe,1850,EA043,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf4,,1720,EA043,1,,kinietz1940b; morgan1871,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf5,,1860,EA043,6,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf6,Skidi Band or subtribe,1867,EA043,3,"See related comment(s) by Murdock: variable EA019: Though not specifically attested, matrilineages are suggested by analysis of the kinship terminology; variable EA021: Or perhaps 'bilateral' (inferred) (code ""1"")",dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf7,Tama Reservation,1830,EA043,7,,joffe1940; linton1940; michelson1938; tax1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA043,6,,griffith1954; parson1941; spier1924; swanton1942b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nf9,,1870,EA043,1,,hoffman1893; keesing1939; skinner1913; spindler1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng1,Bear and Cord Subtribes,1640,EA043,3,,kinietz1940a; tooker1964; trigger1969,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng10,with special reference to the Seneca tribe,1750,EA043,7,See related comment(s) by Murdock: variable EA019: But the kindred Mohawk and Oneida tribes lacked moieties,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng11,,1750,EA043,3,,eggan1937a; speck1909; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng12,,1760,EA043,3,,eggan1937a; swanton1931; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng13,,NA,EA043,6,,hallowell1926; speck1818; vetromile1866,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng14,,NA,EA043,3,,swanton1928b; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng15,,1750,EA043,6,,haas1939; swanton1911,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng2,with special reference to the Cow Creek band,1940,EA043,3,,spoehr1941; spoehr1942; spoehr1944,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng3,Upper division in Alabama,1750,EA043,3,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng4,,1900,EA043,6,"See related comment(s) by Murdock: variable EA017, EA021: Agamous patrilineages are possible",speck1918; speck1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng5,,1750,EA043,3,,gearing1962; gilbert1937; gilbert1943; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng6,with special reference to the Munsee,1700,EA043,3,,harrington1913; herman1950; newcomb1956; wallace1947a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng7,Natchez Kingdom,1700,EA043,6,"See related comment(s) by Murdock: variable EA019: Matrilineages were subsequently borrowed from the Creek, but descent was always matrilineal with respect to social classes",macleod1924; swanton1911; whiteetal1971,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng8,,1560,EA043,3,,brinton1859; ehrmann1940; swanton1916; swanton1942a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ng9,,1920,EA043,6,"See related comment(s) by Murdock: variable EA019: Sturtevant questions the note that the Catawba were ""probably matrilineal aborginally,"" doubting the reliability of Lederer on the basis of whom the statement was made",speckandschaeffer1942; sturtevant1965; swanton1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh1,Central band,1880,EA043,6,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh10,,1920,EA043,6,,parsons1932a; trager1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA043,6,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh12,,1920,EA043,3,,gifford1940; white1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh13,,1920,EA043,3,,eggan1950; mickey1956; miller1959; white1932; white1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh14,,1920,EA043,3,,eggan1950; parson1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh15,,1870,EA043,6,,castetterandopler1936; flannery1932; gifford1940; opler1936a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA043,6,,bellah1952; gifford1940; opler1936d; opler1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA043,3,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh18,Old Oraiibi,1920,EA043,3,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA043,1,,drucker1941; gifford1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh2,,1950,EA043,3,,dozier1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh20,,1860,EA043,1,,gifford1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA043,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA043,1,,bee1963; drucker1937; forde1931; halpern1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh23,,1870,EA043,3,,gifford1932a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh24,,1880,EA043,6,,gifford1940; opler1936a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh25,,1920,EA043,3,,hawleyetal1943; stevenson1894; white1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh26,,1910,EA043,6,,harrington1912; parsons1924; parsons1929,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh27,,1930,EA043,3,,white1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh3,,1930,EA043,3,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh4,Pueblo,1910,EA043,3,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh5,,1850,EA043,1,,drucker1941; spier1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh6,,1890,EA043,6,,parsons1936b; trager1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh7,,1890,EA043,3,,dumarest1919; goldfrank1927; parsons1932b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh8,,1920,EA043,3,,hawley1964; parsons1925; parsons1932b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nh9,,1920,EA043,6,See related comment(s) by Murdock: variable EA017: But there were agamous ceremonial patrimoieties,parsons1939; trager1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni1,,1930,EA043,6,,bennettandzingg1935; passin1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni2,,1930,EA043,6,See related comment(s) by Murdock: variable EA017: But there are five agamous and nearly functionless patronymic name groups,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni3,Huichol Tribe,1920,EA043,6,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni4,,1900,EA043,6,,ascher1962; kroeber1931; mcgee1898,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni5,,1570,EA043,6,,driveranddriver1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni6,,1840,EA043,6,See related comment(s) by Murdock: variable EA017: But there were five agamous patronymic name groups and agamous patrimoieties,castetterandbell1942; drucker1941; parsons1928; russell1908,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni7,,1870,EA043,6,,beals1943; drucker1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni8,,1550,EA043,6,,johnson1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ni9,,1920,EA043,6,,mason1948; radin1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj1,Ojitlan,1940,EA043,6,"See related comment(s) by Murdock: variable EA017: In Ojitlan, persons bearing the same patronym and living in the same community may not marry",merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA043,6,,fuente1949; nader1964; parsons1936a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA043,6,,guiterasholmes1948; schuller1927; stresserpeau195253,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj12,,1950,EA043,6,,romneyandromney1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj13,,1900,EA043,6,,soustelle1937,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj14,,1960,EA043,1,,turnerandolmstead1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj2,City & environs of Tenochtitlan,1520,EA043,5,"See related comment(s) by Murdock: variable EA021: The ""calpulli"" since they were definitely agamous and nonunilineal, are classed as ramages",holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj3,Town and environs of Soteapan,1940,EA043,6,,foster1940; foster1942; foster1943; foster1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj4,,1940,EA043,6,,kellyandpalerm1952; kriekenberg1918; palerm195253,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj5,,1940,EA043,6,,cowan1946; cowan1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj6,with special reference to San Mateo,1950,EA043,6,,diebold1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj7,with special reference to Ayutla,1930,EA043,6,,beals1945,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA043,6,,foster1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Nj9,,1960,EA043,1,,nutini1962; nutini1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa1,San Blas Archipelago,1940,EA043,6,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa10,,1900,EA043,1,,baerandbaer1949; tozzer1907,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa11,,1880,EA043,1,,stoll1889,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa12,,1948,EA043,6,,stone1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa13,Town of Chichicastenango,1930,EA043,1,,bunzel1952; schultzejena1933,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa14,,NA,EA043,3,,alphonse1956; johnson1938,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa15,,,EA043,NA,,,, +Sa16,,NA,EA043,6,,hagen1943; kirchhoff1948a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa17,with special reference to the village of Chinantla,1950,EA043,1,,gillin1951; reina1966,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA043,1,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA043,6,,wisdom1940,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa4,with special reference to those of Panama,1960,EA043,6,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa5,,1950,EA043,3,"See related comment(s) by Murdock: variable EA019: Formerly moieties (code ""6"")",gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa6,,1520,EA043,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa7,,1940,EA043,5,"See related comment(s) by Murdock: variable EA021: Solien reports ""nonunilineal descent groups""",solien1960a; solien1960b; taylor1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA043,1,,wagley1941; wagley1949b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA043,6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb1,Dominica Island,1650,EA043,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb2,,1940,EA043,6,,park1946; reicheldolmatoff194951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb3,with special reference to the Iroka,1940,EA043,4,See related comment(s) by Murdock: variable EA021: Assuming the core of a matrilocal extended family to be quasi- patrilineage,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb4,with special reference to the Cachama group,1950,EA043,6,"See related comment(s) by Murdock: variable EA019: But Schwerin reports lineages (code ""3"")",schwein1963; schwerin1966; schwerin1967; wilbert1957a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb5,,1950,EA043,6,,jahn1914; wilbert1959c,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb6,Goajiro Tribe,1940,EA043,3,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb7,with special reference to the Pariri,1950,EA043,6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",wilbert1961b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb8,,1520,EA043,NA,"See related comment(s) by Murdock: variable EA019: Descent may have been matrilineal, like inheritance",rouse1948a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sb9,,1930,EA043,6,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc1,,1950,EA043,6,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc10,,1900,EA043,3,,coll1903; geoje1910; kirchhoff1931; taylor1957,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc11,,1930,EA043,6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",simpson1940b; wilbert1961a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc12,,1910,EA043,6,,farabee1924; kirchhoff1931,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc13,,1950,EA043,6,"See related comment(s) by Murdock: variable EA021: Or quite possibly Q from Wilbert's ""familias extensivas matrilineales""",riley1954; wilbert1959a; wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc14,,1890,EA043,6,,coudreau1893,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc15,,1910,EA043,6,,kochgrunberg1923a; soaresdiniz1965; ule1913,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc16,with special reference to the Makitare,1920,EA043,6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc17,,1950,EA043,6,,wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc18,,1960,EA043,3,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc2,,1950,EA043,6,,leedsnd,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc3,Barama River,1930,EA043,4,See related comment(s) by Murdock: variable EA021: From statement that brothers tend to live together in a settlement,gillin1936; gillin1948; gillinnd; roth1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc4,with special reference to the non-agricultural groups,1950,EA043,6,"See related comment(s) by Murdock: variable EA019, EA021: The ""extended families"" are conceivably localized matrilineages",wilbert1957b; wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc5,,1900,EA043,6,"See related comment(s) by Murdock: variable EA021: Or quite possibly quasi-lineages (code ""6"")",farabee1918,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA043,3,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA043,6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",wilbert1959b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc8,,1950,EA043,6,"See related comment(s) by Murdock: variable EA021: Or perhaps quasi-lineages (code ""6"")",wilbert1958a; wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sc9,,1950,EA043,6,,wilbert1960a; wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd1,Cabrura village,1950,EA043,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA043,6,,wagley1943; wagleyandgalvao1948a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd3,,1920,EA043,1,,nimuendaju1926,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd4,,1950,EA043,6,,barker1953; zerries1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd5,,1950,EA043,1,,lecock1964; nimuendaju1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd6,,1960,EA043,6,,migliazza1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd7,,1950,EA043,6,,fock1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd8,,1950,EA043,6,,wilbert1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA043,6,,chagnon1967; chagnon1968a; chagnon1968b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA043,6,"See related comment(s) by Murdock: variable EA019: Possibly lineages (code ""3""), though descent is specifically reported to be bilateral; variable EA021: Possibly 'no cognatic kin' (code ""9""), though descent is specifically reported to be bilateral",holmberg1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se10,,1670,EA043,1,,espinosa1935; metraux1948b; tessmann1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se11,,1960,EA043,6,,prost1965,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se12,,1950,EA043,1,,fulop1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se2,,1940,EA043,1,,leeds1961; nimenuendaju1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se3,,1930,EA043,6,See related comment(s) by Murdock: variable EA021: Description of patrifamilies suggests quasi-patrilineages,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se4,,1940,EA043,1,,fejos1943,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se5,Village on Caduiari River,1940,EA043,1,,goldman1948; goldman1963,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se6,,1910,EA043,1,,murdock1936b; tessmann1930; whitten1915,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se7,a mestizo group in lowland Bolivia,1950,EA043,6,,heath1959,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA043,6,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Se9,,1920,EA043,6,See related comment(s) by Murdock: variable EA019: But some authors infer matrilineal descent,stcricq1853; stewardandmetraux1948a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf1,City and environs of Cuzco,1530,EA043,6,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf2,Chucuito Clan community in Peru,1940,EA043,1,See related comment(s) by Murdock: variable EA017: Patrilineages are presumably a pot-contact development,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf3,Rio Cayapas Basin,1910,EA043,6,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf4,,1950,EA043,6,,rochereau1919; rochereau1961; wilbert1960b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf5,,1900,EA043,6,,bernalvilla1954; pittierdefabrega1907,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf6,,1540,EA043,6,"See related comment(s) by Murdock: variable EA019: Possibly lineages (code ""3"") in view of reported matrilineal succession; variable EA021: Possibly no cognatic kin groups (code ""9"") in view of reported matrilineal succession",ghisletti1954; kroeber1946; restrepo1895,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf7,,1900,EA043,6,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf8,,1950,EA043,6,,matteson1954,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA043,6,,labarre1941,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sg1,Eastern and central,1870,EA043,6,,cooper1917; cooper1946a; gusinde1937b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sg2,Cholchol,1880,EA043,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA043,6,"See related comment(s) by Murdock: variable EA017: But some scholars have inferred patrilineal descent. Entry would be 'lineages' (code ""3"") if Baer and Schmidt are correct in inferring patrilineal descent (see discussion in Murdock (1965c));",baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sg4,Equestrian,1870,EA043,6,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sg5,with special reference to the southern bands,1900,EA043,6,,bird1946; cooper1917,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA043,6,,karsten1932; pelleschi1896,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh2,,1850,EA043,5,,oberg1948a; oberg1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh3,Those in contact with mission,1800,EA043,6,,dobrizhoffer1822; metraux1946chaco,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh4,,1940,EA043,6,,oberg1949,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh5,,1910,EA043,6,See related comment(s) by Murdock: variable EA019: But Karsten dubiously reports matrilineal descent,karsten1932; nordenskiold1919; rosen1924a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh6,,1890,EA043,6,,baldus1931; boggiani1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh7,,1900,EA043,6,,campana1902; metraux1930; nordenskiold1912; rosen1924b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh8,with special reference to those of the Argentine Chaco,1964,EA043,6,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sh9,Those in contact with mission,1890,EA043,6,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si1,Kejara,1920,EA043,3,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA043,6,,carneiro1958; carneiroanddole1957; dole1958,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si2,Village of Vanivani,1930,EA043,4,"See related comment(s) by Murdock: variable EA021: An inference from the ""tendency for patrilineally related males to live together"" and from the statement that ""the establishment of a patrilineal lineage"" was prevented by the high death rate",levistrauss1948c; murphyandquain1955,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si3,Simao Lopes,1940,EA043,4,See related comment(s) by Murdock: variable EA021: Patrifamilies strongly suggest quasi-lineages,oberg1948b; oberg1953:1-144; steinen1892,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA043,6,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si5,,1940,EA043,6,"See related comment(s) by Murdock: variable EA021: Or possibly quasi-lineages (code ""6"")",oberg1953:1-144,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si6,,1900,EA043,6,,schmidt1905; schmidt1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si7,with special reference to the Cozarimi,1910,EA043,6,,metraux1948a; schmidt1914,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si8,,1940,EA043,6,,oberg1953:1-144,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Si9,,1940,EA043,6,,levistrauss1948c; oberg1953:1-144,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj1,,1950,EA043,6,See related comment(s) by Murdock: variable EA017: But there are three agamous patrilineal groups which function only in the ceremonial and political life of men,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj10,Taquapiri,1950,EA043,6,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA043,1,,mayburylewis1967; nimuendaji1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj2,,1850,EA043,1,,nimuendaju1942,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj3,Duque de Caxias Reservation,1910,EA043,6,,henry1941; metraux1946caingang; paula1924,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj4,Ramcocamecra or Canella,1930,EA043,3,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj5,Naknenuk subtribe,1880,EA043,6,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj6,with special reference to the Guajajara subgroup,1930,EA043,6,,snethlage1930; wagley1949a; wagleyandgalvao1948b,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA043,NA,"See related comment(s) by Murdock: variable EA017, EA019: Parallel descent, i.e., patrilineal for males and matrilineal for females",mayburylewis1960; nimuendaju1939,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj8,Hinterland of Rio de Janeiro,1600,EA043,6,See related comment(s) by Murdock: variable EA021: Inference from extended families with communal dwellings,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Sj9,,1950,EA043,6,"See related comment(s) by Murdock: variables EA017, EA019, EA021: Contrary to earlier reports on matrilineal descent, Dreyfus insists that moiety affiliation does not depend upon kinship, that there are no unilineal kin groups, and that the exogamous name groups are based on ""cross descent,"" matrilineal for males and patrilineal for females",dreyfus1963; krause1911; soatesdiniz1962,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA043,7,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA043,7,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch14,with special reference to the Virjal group,1908,EA043,6,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA043,7,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch16,with special reference to the Valkskij Uezd,1908,EA043,6,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch17,with special reference to those of the Benderskij Uezd,1894,EA043,6,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA043,6,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA043,7,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA043,6,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch21,with special reference to the Vidzeme group,1881,EA043,6,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch22,with special reference to those of the Trakaj area,1895,EA043,6,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA043,6,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch24,with special reference to the Northwest Courland,1847,EA043,6,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch25,with special reference to the Beletskij Uezd,1900,EA043,6,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA043,7,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA043,6,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ch28,with special reference to those of the Yamburg Uezd,1900,EA043,6,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec12,Avam (Western) group,1930,EA043,4,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec13,those of Eastern Kamchatka,1710,EA043,6,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec14,those of South-Eastern Chukotka,1880,EA043,6,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec15,Middle Northern Sos'va group,1880,EA043,7,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec16,Barguzin group,1890,EA043,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec17,Upper Amgun' River group,1890,EA043,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec18,Ulch people as a whole,1890,EA043,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec19,Northern group,1890,EA043,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec20,Oroch people as a whole,1890,EA043,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +ec21,Hor River group,1890,EA043,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Aa1,Nyai Nyae region,1950,EA044,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA044,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA044,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA044,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA044,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA044,NA,,,, +Aa7,,1910,EA044,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA044,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA044,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA044,1,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA044,1,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA044,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA044,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA044,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA044,1,Formerly though not recently,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA044,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA044,NA,,,, +Ab17,,,EA044,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA044,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA044,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA044,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA044,NA,,,, +Ab21a,,,EA044,NA,,,, +Ab21b,,,EA044,NA,,,, +Ab22,,,EA044,NA,,,, +Ab3,Ruling Luyana,1890,EA044,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA044,1,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA044,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA044,1,But no longer practiced,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA044,NA,,,, +Ab8,Basuto,1860,EA044,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA044,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA044,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA044,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA044,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,1920,EA044,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p64, +Ac13,,1950,EA044,1,,tew1950; velsen1964,EthnographicAtlas_1967_p64, +Ac14,,1900,EA044,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p64, +Ac15,,,EA044,NA,,,, +Ac16,,,EA044,NA,,,, +Ac17,Feshi territory lineage center,1910,EA044,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA044,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA044,NA,,,, +Ac2,,,EA044,NA,,,, +Ac20,,,EA044,NA,,,, +Ac21,,,EA044,NA,,,, +Ac22,,,EA044,NA,,,, +Ac23,with special reference to the western Lele,1950,EA044,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA044,NA,,,, +Ac25,,,EA044,NA,,,, +Ac26,,,EA044,NA,,,, +Ac27,,,EA044,NA,,,, +Ac28,,1930,EA044,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA044,NA,,,, +Ac3,Zambia branch,1900,EA044,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA044,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA044,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA044,NA,,,, +Ac33,,1940,EA044,9,"Formerly 'males alone' (EA044 code ""1"") with craft specialization (EA055 code ""3"")",lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,1940,EA044,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA044,NA,,,, +Ac36,,1920,EA044,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p64, +Ac37,,,EA044,NA,,,, +Ac38,,1910,EA044,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA044,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA044,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA044,NA,,,, +Ac41,,,EA044,NA,,,, +Ac42,,,EA044,NA,,,, +Ac43,,,EA044,NA,,,, +Ac5,,1920,EA044,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA044,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA044,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA044,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA044,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA044,9,Despised as slave occupation,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA044,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA044,1,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA044,NA,,,, +Ad13,,1930,EA044,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,Morogoro District,1930,EA044,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p68, +Ad15,,1900,EA044,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p68, +Ad16,,1920,EA044,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA044,1,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA044,NA,,,, +Ad19,,1910,EA044,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA044,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA044,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,,EA044,NA,,,, +Ad22,,1950,EA044,1,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA044,NA,,,, +Ad24,,1910,EA044,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA044,NA,,,, +Ad26,,1910,EA044,1,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,1880,EA044,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA044,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA044,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA044,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA044,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,1910,EA044,1,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA044,1,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p68, +Ad33,,1900,EA044,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,1910,EA044,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA044,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA044,NA,,,, +Ad37,,,EA044,NA,,,, +Ad38,,,EA044,NA,,,, +Ad39,,1950,EA044,1,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA044,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA044,NA,,,, +Ad41,,1930,EA044,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,1900,EA044,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p68, +Ad43,,,EA044,NA,,,, +Ad44,,1920,EA044,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,1920,EA044,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,1950,EA044,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA044,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA044,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA044,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA044,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA044,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA044,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA044,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA044,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA044,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,1900,EA044,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA044,1,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA044,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA044,1,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA044,1,Formerly,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA044,NA,,,, +Ae14,,1950,EA044,1,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,1940,EA044,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p68, +Ae16,,,EA044,NA,,,, +Ae17,,1900,EA044,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA044,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA044,NA,,,, +Ae2,,1950,EA044,1,Formerly,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA044,NA,,,, +Ae21,,,EA044,NA,,,, +Ae22,,,EA044,NA,,,, +Ae23,,,EA044,NA,,,, +Ae24,,,EA044,NA,,,, +Ae25,,,EA044,NA,,,, +Ae26,,,EA044,NA,,,, +Ae27,,,EA044,NA,,,, +Ae28,,,EA044,NA,,,, +Ae29,,1900,EA044,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA044,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA044,NA,,,, +Ae31,,1920,EA044,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA044,NA,,,, +Ae33,,1920,EA044,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA044,NA,,,, +Ae35,,,EA044,NA,,,, +Ae36,,,EA044,NA,,,, +Ae37,,,EA044,NA,,,, +Ae38,,,EA044,NA,,,, +Ae39,,1920,EA044,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA044,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA044,NA,,,, +Ae41,,1940,EA044,1,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA044,NA,,,, +Ae43,,,EA044,NA,,,, +Ae44,,,EA044,NA,,,, +Ae45,,,EA044,NA,,,, +Ae46,,,EA044,NA,,,, +Ae47,,,EA044,NA,,,, +Ae48,,1930,EA044,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae49,,,EA044,NA,,,, +Ae5,,1910,EA044,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA044,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA044,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,1950,EA044,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,,EA044,NA,,,, +Ae54,,,EA044,NA,,,, +Ae55,,1950,EA044,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,,EA044,NA,,,, +Ae57,,,EA044,NA,,,, +Ae58,,,EA044,NA,,,, +Ae59,,,EA044,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA044,1,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,1910,EA044,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA044,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA044,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA044,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA044,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA044,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA044,NA,,,, +Af13,,1920,EA044,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,1930,EA044,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA044,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA044,NA,,,, +Af17,,,EA044,NA,,,, +Af18,,,EA044,NA,,,, +Af19,,,EA044,NA,,,, +Af2,,1950,EA044,1,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,,EA044,NA,,,, +Af21,,,EA044,NA,,,, +Af22,,1940,EA044,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,with special reference to the village of Mgbom,1950,EA044,1,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA044,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA044,1,But smiths are aliens of the Ibo tribes,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA044,NA,,,, +Af27,,,EA044,NA,,,, +Af28,,1910,EA044,1,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA044,NA,,,, +Af3,Kumasi State,1900,EA044,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA044,NA,,,, +Af31,,,EA044,NA,,,, +Af32,Abeouta Province and Benin,1920,EA044,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA044,1,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA044,NA,,,, +Af35,,,EA044,NA,,,, +Af36,with special reference to the Glidyi,1900,EA044,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA044,NA,,,, +Af38,,,EA044,NA,,,, +Af39,,,EA044,NA,,,, +Af4,,,EA044,NA,,,, +Af40,,,EA044,NA,,,, +Af41,,,EA044,NA,,,, +Af42,,1900,EA044,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,,EA044,NA,,,, +Af44,,,EA044,NA,,,, +Af45,,,EA044,NA,,,, +Af46,,,EA044,NA,,,, +Af47,,,EA044,NA,,,, +Af48,,,EA044,NA,,,, +Af49,,1940,EA044,1,,schwab1947,EthnographicAtlas_1967_p72, +Af5,,1930,EA044,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA044,NA,,,, +Af51,,1920,EA044,1,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA044,1,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA044,NA,,,, +Af54,,1930,EA044,1,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA044,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA044,1,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA044,1,But these specialists are aliens of the Yalunka tribe,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA044,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA044,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,,EA044,NA,,,, +Af8,,1930,EA044,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,1900,EA044,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p72, +Ag1,Segou to Bamako on Niger River,1920,EA044,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA044,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA044,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA044,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,1910,EA044,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p72, +Ag14,,,EA044,NA,,,, +Ag15,,,EA044,NA,,,, +Ag16,,,EA044,NA,,,, +Ag17,,,EA044,NA,,,, +Ag18,,,EA044,NA,,,, +Ag19,,,EA044,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA044,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA044,NA,,,, +Ag21,,1910,EA044,1,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,with special reference to those of Sine,1920,EA044,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA044,NA,,,, +Ag24,,,EA044,NA,,,, +Ag25,,1900,EA044,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p72, +Ag26,,1930,EA044,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p72, +Ag27,,1910,EA044,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p72, +Ag28,,,EA044,NA,,,, +Ag29,,,EA044,NA,,,, +Ag3,,1930,EA044,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA044,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,1910,EA044,1,,cheron1913; holas1957,EthnographicAtlas_1967_p72, +Ag32,,1900,EA044,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA044,NA,,,, +Ag34,,,EA044,NA,,,, +Ag35,,,EA044,NA,,,, +Ag36,,,EA044,NA,,,, +Ag37,,,EA044,NA,,,, +Ag38,,,EA044,NA,,,, +Ag39,,1910,EA044,1,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA044,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA044,NA,,,, +Ag41,,1920,EA044,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p72, +Ag42,,,EA044,NA,,,, +Ag43,,,EA044,NA,,,, +Ag44,,,EA044,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA044,1,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA044,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA044,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA044,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,1930,EA044,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA044,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,1910,EA044,1,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA044,NA,,,, +Ag52,,,EA044,NA,,,, +Ag53,with special reference to those of Garango,1960,EA044,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA044,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA044,1,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,,EA044,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA044,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA044,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,Zaria Province,1930,EA044,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA044,NA,,,, +Ah11,,1950,EA044,1,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA044,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA044,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA044,1,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah15,,1920,EA044,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA044,NA,,,, +Ah17,,,EA044,NA,,,, +Ah18,,,EA044,NA,,,, +Ah19,,,EA044,NA,,,, +Ah2,,1920,EA044,1,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,,EA044,NA,,,, +Ah21,,,EA044,NA,,,, +Ah22,,,EA044,NA,,,, +Ah23,,,EA044,NA,,,, +Ah24,,,EA044,NA,,,, +Ah25,,,EA044,NA,,,, +Ah26,,,EA044,NA,,,, +Ah27,,,EA044,NA,,,, +Ah28,,,EA044,NA,,,, +Ah29,,,EA044,NA,,,, +Ah3,Tar of Benue Province,1920,EA044,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,1920,EA044,1,,meek1931b,EthnographicAtlas_1967_p76, +Ah31,,1910,EA044,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p76, +Ah32,,,EA044,NA,,,, +Ah33,,1920,EA044,1,,meek1931b; temple1922,EthnographicAtlas_1967_p76, +Ah34,,,EA044,NA,,,, +Ah35,,,EA044,NA,,,, +Ah36,,,EA044,NA,,,, +Ah37,,,EA044,NA,,,, +Ah38,,1930,EA044,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA044,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,1920,EA044,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p76, +Ah5,,,EA044,NA,,,, +Ah6,,,EA044,NA,,,, +Ah7,,1940,EA044,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA044,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA044,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA044,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA044,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA044,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA044,NA,,,, +Ai13,,,EA044,NA,,,, +Ai14,,1920,EA044,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,1900,EA044,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA044,NA,,,, +Ai17,,1930,EA044,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA044,9,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA044,NA,,,, +Ai2,,,EA044,NA,,,, +Ai20,,,EA044,NA,,,, +Ai21,,1880,EA044,1,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p76, +Ai22,,,EA044,NA,,,, +Ai23,,1920,EA044,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA044,NA,,,, +Ai25,,1950,EA044,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA044,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA044,NA,,,, +Ai28,,1910,EA044,1,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA044,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA044,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA044,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,1920,EA044,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA044,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p76, +Ai33,,1940,EA044,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p76, +Ai34,,1880,EA044,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA044,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA044,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA044,NA,,,, +Ai38,,1930,EA044,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA044,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA044,NA,,,, +Ai40,,1940,EA044,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA044,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA044,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA044,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,,EA044,NA,,,, +Ai45,,,EA044,NA,,,, +Ai46,,,EA044,NA,,,, +Ai47,Northern division,1939,EA044,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,1920,EA044,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA044,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA044,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA044,9,Except for a few acculturated male craftsmen,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA044,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,,EA044,NA,,,, +Aj10,,,EA044,NA,,,, +Aj11,,1900,EA044,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p80, +Aj12,,1920,EA044,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj13,,1930,EA044,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA044,NA,,,, +Aj15,,1900,EA044,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA044,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA044,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,1950,EA044,9,Iron products obtained by trade from the Dime or Maji tribes,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,1920,EA044,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p80, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA044,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,1940,EA044,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p80, +Aj21,,1930,EA044,9,Ironware is obtained by trade from the Labwor,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,1930,EA044,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA044,9,The products are obtained by trade from the Hill Suk,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA044,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA044,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA044,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA044,NA,,,, +Aj28,,1940,EA044,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA044,NA,,,, +Aj3,,1930,EA044,9,"There are a few smiths; iron working is ""a recent innovation""",evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA044,NA,,,, +Aj31,,,EA044,NA,,,, +Aj4,,1920,EA044,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,,EA044,NA,,,, +Aj6,,1940,EA044,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA044,1,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA044,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA044,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA044,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA044,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA044,1,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA044,1,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA044,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA044,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA044,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA044,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA044,9,Products obtained by trade with neighboring tribes,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,1940,EA044,NA,Ironware obtained by trade with other tribes,cerulli1956; jensen1959; ricci1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca19,,1950,EA044,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA044,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA044,NA,,,, +Ca21,,1950,EA044,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA044,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA044,1,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA044,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA044,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA044,NA,,,, +Ca27,,,EA044,NA,,,, +Ca28,,1950,EA044,9,Iron wares are obtained in trade from the Dime,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA044,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,1950,EA044,1,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p80, +Ca30,Kafa Kingdom,1890,EA044,1,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,1860,EA044,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA044,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA044,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA044,NA,,,, +Ca35,,,EA044,NA,,,, +Ca36,,,EA044,NA,,,, +Ca37,,,EA044,NA,,,, +Ca38,,,EA044,NA,,,, +Ca39,,1930,EA044,1,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,1950,EA044,1,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA044,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA044,1,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA044,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA044,NA,,,, +Ca5,,,EA044,NA,,,, +Ca6,,1880,EA044,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p80, +Ca7,Gondar district,1950,EA044,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,1940,EA044,1,,leslau1950; shack1963,EthnographicAtlas_1967_p80, +Ca9,,,EA044,NA,,,, +Cb1,,,EA044,NA,,,, +Cb10,,,EA044,NA,,,, +Cb11,,,EA044,NA,,,, +Cb12,,,EA044,NA,,,, +Cb13,,,EA044,NA,,,, +Cb14,,,EA044,NA,,,, +Cb15,,,EA044,NA,,,, +Cb16,,,EA044,NA,,,, +Cb17,Jebel Marra,1880,EA044,1,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,1930,EA044,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p80, +Cb19,,1870,EA044,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p80, +Cb2,Upper and lower Salum in Gambia,1950,EA044,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA044,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA044,NA,,,, +Cb22,,,EA044,NA,,,, +Cb23,,1930,EA044,1,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,,,EA044,NA,,,, +Cb25,,,EA044,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA044,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA044,NA,,,, +Cb28,,,EA044,NA,,,, +Cb29,,,EA044,NA,,,, +Cb3,Bamba division,1940,EA044,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA044,NA,,,, +Cb5,,1910,EA044,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p80, +Cb6,,1920,EA044,1,,woodnd,EthnographicAtlas_1967_p80, +Cb7,,1920,EA044,1,,meek1931b:288-310,EthnographicAtlas_1967_p80, +Cb8,,,EA044,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA044,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,1950,EA044,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA044,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA044,NA,,,, +Cc12,,1944,EA044,1,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA044,NA,,,, +Cc14,,1880,EA044,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA044,NA,,,, +Cc16,,,EA044,NA,,,, +Cc17,,1930,EA044,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA044,NA,,,, +Cc19,,,EA044,NA,,,, +Cc2,Nomads of Tibesti,1950,EA044,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA044,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA044,9,Alien itinerant smiths only,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA044,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA044,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA044,NA,,,, +Cc7,,,EA044,NA,,,, +Cc8,,,EA044,NA,,,, +Cc9,Ahaggaren tribe,1920,EA044,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA044,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA044,NA,,,, +Cd11,,1500,EA044,9,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p84, +Cd12,,1870,EA044,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA044,NA,,,, +Cd14,,,EA044,NA,,,, +Cd15,,,EA044,NA,,,, +Cd16,,,EA044,NA,,,, +Cd17,,,EA044,NA,,,, +Cd18,,,EA044,NA,,,, +Cd19,,,EA044,NA,,,, +Cd2,Town and environs of Silwa,1950,EA044,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA044,NA,,,, +Cd21,,,EA044,NA,,,, +Cd3,Entirety: Moroccan,1920,EA044,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA044,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA044,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,with special reference to the New Empire,-1400,EA044,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA044,NA,,,, +Cd8,,,EA044,NA,,,, +Cd9,,,EA044,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA044,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA044,NA,,,, +Ce3,City and environs of Rome,100,EA044,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA044,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA044,1,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA044,1,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA044,1,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA044,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA044,1,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA044,NA,,,, +Cf3,,1930,EA044,1,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA044,1,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA044,1,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA044,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA044,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA044,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA044,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA044,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA044,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA044,NA,,,, +Ch11,Viriatino Village,1955,EA044,8,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA044,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA044,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,1900,EA044,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p84, +Ch5,with special reference to the village of Dragelevtsy,1940,EA044,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA044,1,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA044,1,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,1940,EA044,1,,hanzeli1955,EthnographicAtlas_1967_p84, +Ch9,,1930,EA044,1,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA044,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA044,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA044,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA044,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA044,1,,grigolia1939,EthnographicAtlas_1967_p84, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA044,1,,gadzhieva1958,EthnographicAtlas_1967_p84, +Ci4,,1920,EA044,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA044,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA044,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p84, +Ci7,,1900,EA044,1,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p84, +Ci8,,,EA044,NA,,,, +Ci9,,,EA044,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA044,1,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA044,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA044,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA044,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA044,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA044,1,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA044,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA044,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA044,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,1950,EA044,1,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA044,1,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,with special reference to the more nomadic groups,1950,EA044,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA044,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA044,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA044,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA044,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA044,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA044,1,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA044,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA044,1,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA044,1,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA044,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA044,1,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA044,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA044,1,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA044,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA044,NA,,,, +Eb5,,,EA044,NA,,,, +Eb6,,,EA044,NA,,,, +Eb7,,1930,EA044,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA044,NA,,,, +Ec1,Sakhalin Island,1920,EA044,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,,,EA044,NA,,,, +Ec11,,1900,EA044,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA044,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA044,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA044,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA044,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,Upper Kolyma River,1850,EA044,9,,jochelson191926,EthnographicAtlas_1967_p88, +Ec7,Saru Basin in Hokkaido,1900,EA044,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA044,NA,,,, +Ec9,,,EA044,NA,,,, +Ed1,Kanghwa Island,1950,EA044,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA044,1,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA044,NA,,,, +Ed14,,,EA044,NA,,,, +Ed15a,,,EA044,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA044,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA044,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA044,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA044,1,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA044,1,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA044,7,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA044,1,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA044,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA044,1,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA044,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA044,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA044,1,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA044,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA044,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA044,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA044,1,"But smiths are Nepali, not Sherpa",furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA044,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA044,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA044,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA044,NA,,,, +Ef11,Village and environs of Senapur,1945,EA044,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA044,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA044,NA,,,, +Ef4,,,EA044,NA,,,, +Ef5,,1900,EA044,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,,EA044,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA044,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA044,1,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA044,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA044,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA044,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA044,NA,,,, +Eg12,,,EA044,NA,,,, +Eg13,Bastar State,1941,EA044,9,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA044,9,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA044,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA044,9,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA044,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA044,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,with special reference to Northern Kerala,1799,EA044,1,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,,,EA044,NA,,,, +Eg8,,1940,EA044,1,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,,EA044,NA,,,, +Eh1,,1870,EA044,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA044,NA,,,, +Eh2,,1900,EA044,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA044,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA044,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA044,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA044,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p92, +Eh7,,1900,EA044,1,"But McLeod reports 'activity is absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA044,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,1930,EA044,1,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA044,9,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA044,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA044,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA044,NA,,,, +Ei13,,1910,EA044,1,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA044,1,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA044,NA,,,, +Ei16,,1910,EA044,1,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA044,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA044,1,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,1940,EA044,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA044,1,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA044,NA,,,, +Ei3,Nondwin Village,1950,EA044,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA044,1,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA044,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA044,1,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA044,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA044,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA044,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA044,9,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA044,1,Itinerant smiths,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA044,1,,lafont1964,EthnographicAtlas_1967_p92, +Ej12,,1960,EA044,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA044,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA044,9,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA044,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA044,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA044,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA044,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA044,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA044,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,of the Mergui Archipelago,1920,EA044,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA044,1,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA044,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA044,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA044,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA044,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA044,1,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA044,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA044,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA044,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA044,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA044,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA044,NA,,,, +Ia18,,,EA044,NA,,,, +Ia2,,1950,EA044,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA044,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,,,EA044,NA,,,, +Ia5,,1950,EA044,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA044,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA044,1,,fox1954,EthnographicAtlas_1967_p92, +Ia8,,,EA044,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA044,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA044,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA044,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA044,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA044,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,,,EA044,NA,,,, +Ib6,,1920,EA044,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA044,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,with special reference to the Ridan group,1900,EA044,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA044,NA,,,, +Ic1,Borongloe,1940,EA044,1,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA044,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,Allang,1950,EA044,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA044,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA044,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA044,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,with special reference to the Mountain Belu,1950,EA044,1,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA044,NA,,,, +Ic5,Bare'e subgroup,1910,EA044,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA044,1,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA044,1,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,1890,EA044,9,,pleyte1893,EthnographicAtlas_1967_p96, +Ic9,with special reference to eastern Sumba,1930,EA044,1,,nooteboom1940,EthnographicAtlas_1967_p96, +Id1,Alice Springs and environs,1900,EA044,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA044,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA044,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA044,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA044,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA044,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA044,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA044,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA044,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA044,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA044,9,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA044,9,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA044,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA044,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA044,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA044,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA044,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA044,9,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA044,9,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,Kalabu; Northern Abelam,1930,EA044,9,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA044,9,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA044,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA044,9,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA044,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA044,9,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA044,9,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA044,9,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA044,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA044,9,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,1870,EA044,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA044,9,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA044,9,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,1910,EA044,9,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,1940,EA044,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA044,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA044,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA044,9,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,1950,EA044,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA044,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA044,9,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA044,NA,,,, +Ie35,,1930,EA044,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA044,NA,,,, +Ie37,,,EA044,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA044,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA044,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA044,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA044,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA044,9,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA044,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA044,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA044,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA044,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA044,NA,,,, +If11,,1860,EA044,9,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA044,9,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA044,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA044,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA044,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA044,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA044,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA044,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA044,9,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA044,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA044,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA044,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA044,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA044,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA044,9,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA044,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA044,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA044,9,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,with special reference to the Varisi,1900,EA044,9,,scheffler1965,EthnographicAtlas_1967_p100, +Ig13,,1900,EA044,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,1900,EA044,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA044,NA,,,, +Ig16,,,EA044,NA,,,, +Ig17,,,EA044,NA,,,, +Ig18,,,EA044,NA,,,, +Ig19,,,EA044,NA,,,, +Ig2,Kiriwina Island,1910,EA044,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA044,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA044,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA044,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA044,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA044,9,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA044,9,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA044,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA044,NA,,,, +Ig9,Peri Village,1920,EA044,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA044,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,Whitsands,1920,EA044,9,,humphreys1926,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA044,NA,,,, +Ih12,,,EA044,NA,,,, +Ih13,,,EA044,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA044,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA044,9,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA044,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p100, +Ih4,Lau Island,1920,EA044,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA044,9,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p100, +Ih6,,1890,EA044,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA044,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA044,9,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA044,9,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA044,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA044,NA,,,, +Ii12,Pangai,1920,EA044,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA044,9,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA044,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA044,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA044,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA044,9,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA044,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA044,9,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA044,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA044,9,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA044,9,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA044,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA044,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA044,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA044,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA044,9,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA044,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA044,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA044,9,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA044,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA044,9,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA044,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA044,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA044,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA044,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA044,9,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA044,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA044,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA044,9,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA044,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA044,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA044,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA044,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA044,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA044,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA044,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA044,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA044,1,"Though ironworking is very old, it is confined to cold hammering and filing",birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA044,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA044,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA044,9,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA044,9,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA044,9,But some cold working of native copper,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA044,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA044,9,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA044,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA044,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA044,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA044,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA044,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA044,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA044,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA044,9,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA044,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA044,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA044,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA044,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA044,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA044,NA,,,, +Na45,,1900,EA044,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA044,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA044,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA044,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA044,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA044,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA044,9,But men made artifacts of beaten copper,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA044,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA044,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA044,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA044,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA044,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA044,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA044,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA044,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA044,9,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA044,9,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA044,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA044,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA044,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA044,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA044,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA044,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA044,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA044,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA044,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA044,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA044,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA044,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA044,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA044,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA044,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA044,9,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA044,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA044,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA044,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA044,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA044,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA044,9,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA044,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA044,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA044,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA044,9,But artifacts were made of beaten copper,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA044,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA044,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA044,9,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA044,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA044,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA044,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA044,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA044,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA044,9,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA044,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA044,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA044,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA044,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA044,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA044,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA044,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA044,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA044,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA044,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA044,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA044,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA044,9,,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA044,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA044,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA044,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA044,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA044,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA044,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA044,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA044,9,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA044,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA044,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA044,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA044,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA044,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA044,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA044,9,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA044,9,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA044,9,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA044,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA044,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA044,9,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA044,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA044,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA044,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA044,9,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA044,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA044,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA044,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA044,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA044,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA044,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA044,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA044,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA044,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA044,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA044,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA044,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA044,9,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA044,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA044,9,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA044,9,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA044,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA044,9,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA044,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA044,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA044,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA044,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA044,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA044,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA044,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA044,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA044,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA044,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA044,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA044,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA044,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA044,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA044,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA044,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA044,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA044,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA044,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA044,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA044,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA044,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA044,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA044,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA044,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA044,9,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA044,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA044,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA044,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA044,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA044,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA044,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA044,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA044,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA044,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA044,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA044,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA044,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA044,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA044,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA044,9,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA044,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA044,NA,,,, +Ne3,Comanche Tribe,1870,EA044,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA044,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA044,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA044,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA044,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA044,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA044,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA044,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA044,9,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA044,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA044,9,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA044,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA044,NA,,,, +Nf2,,1850,EA044,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA044,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA044,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA044,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA044,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA044,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA044,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA044,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA044,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA044,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA044,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA044,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA044,NA,,,, +Ng14,,,EA044,NA,,,, +Ng15,,,EA044,NA,,,, +Ng2,,,EA044,NA,,,, +Ng3,Upper division in Alabama,1750,EA044,9,"But aboriginally men did some work in copper, and probably also in silver and gold, although without the use of fire",bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA044,NA,,,, +Ng5,,1750,EA044,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA044,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA044,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA044,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA044,NA,,,, +Nh1,Central band,1880,EA044,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,1920,EA044,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p116, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA044,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA044,9,But a little silversmithing today,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA044,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA044,NA,,,, +Nh15,,1870,EA044,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA044,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA044,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA044,9,"But aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA044,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA044,9,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA044,9,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA044,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA044,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA044,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA044,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA044,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA044,NA,,,, +Nh27,,,EA044,NA,,,, +Nh3,,1930,EA044,1,"But aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA044,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA044,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA044,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA044,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA044,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,1920,EA044,9,,parsons1939; trager1943,EthnographicAtlas_1967_p116, +Ni1,,1930,EA044,9,Iron working is done by itinerant Mexican smiths,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA044,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA044,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA044,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA044,9,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA044,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA044,9,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA044,NA,,,, +Ni9,,,EA044,NA,,,, +Nj1,Ojitlan,1940,EA044,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,,,EA044,NA,,,, +Nj11,,,EA044,NA,,,, +Nj12,,,EA044,NA,,,, +Nj13,,,EA044,NA,,,, +Nj14,,,EA044,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA044,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA044,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA044,9,But gold was worked aboriginally,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA044,NA,,,, +Nj6,,,EA044,NA,,,, +Nj7,with special reference to Ayutla,1930,EA044,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA044,8,"Work was done in gold, silver, and copper",foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA044,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA044,9,But gold was worked aboriginally,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA044,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA044,NA,,,, +Sa12,,1948,EA044,9,,stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA044,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA044,NA,,,, +Sa15,,,EA044,NA,,,, +Sa16,,,EA044,NA,,,, +Sa17,,,EA044,NA,,,, +Sa2,,,EA044,NA,,,, +Sa3,,1930,EA044,9,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA044,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA044,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA044,8,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA044,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA044,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA044,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA044,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA044,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA044,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA044,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA044,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p120, +Sb6,Goajiro Tribe,1940,EA044,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA044,9,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA044,9,But gold was beaten into ornaments,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,,EA044,NA,,,, +Sc1,,1950,EA044,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA044,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA044,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA044,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA044,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA044,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA044,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA044,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA044,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA044,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA044,9,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA044,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA044,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA044,9,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA044,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA044,9,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA044,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA044,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA044,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA044,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA044,9,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA044,9,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA044,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA044,9,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA044,9,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA044,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA044,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA044,9,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,1670,EA044,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p120, +Se11,,1960,EA044,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA044,NA,,,, +Se2,,1940,EA044,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA044,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA044,9,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA044,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA044,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA044,NA,,,, +Se8,Upper Inuya River,1950,EA044,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA044,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA044,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA044,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA044,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA044,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA044,8,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA044,8,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA044,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA044,NA,,,, +Sf9,,,EA044,NA,,,, +Sg1,Eastern and central,1870,EA044,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA044,1,"Aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA044,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA044,1,But silversmithing and loom weaving are relatively recent introductions,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA044,9,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA044,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA044,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA044,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA044,9,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA044,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA044,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA044,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA044,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA044,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA044,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA044,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA044,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA044,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA044,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA044,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA044,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,with special reference to the Cozarimi,1910,EA044,9,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,1940,EA044,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA044,NA,,,, +Sj1,,1950,EA044,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA044,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA044,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA044,9,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA044,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA044,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA044,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,with special reference to the Guajajara subgroup,1930,EA044,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA044,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA044,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA044,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA044,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA044,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA044,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA044,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA044,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA044,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA044,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA044,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA044,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA044,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA044,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA044,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA044,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA044,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA044,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA044,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA044,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA044,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA044,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA044,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA044,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA044,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA044,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA044,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,,,EA044,NA,,,, +ec20,Oroch people as a whole,1890,EA044,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA044,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA045,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA045,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA045,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA045,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA045,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA045,NA,,,, +Aa7,,1910,EA045,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA045,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA045,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA045,9,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA045,9,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA045,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA045,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA045,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA045,9,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA045,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA045,NA,,,, +Ab17,,,EA045,NA,,,, +Ab18,,,EA045,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA045,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA045,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA045,NA,,,, +Ab21a,,,EA045,NA,,,, +Ab21b,,,EA045,NA,,,, +Ab22,,,EA045,NA,,,, +Ab3,Ruling Luyana,1890,EA045,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA045,9,But cotton cloth was formerly woven,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA045,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA045,8,But no longer practiced,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA045,NA,,,, +Ab8,Basuto,1860,EA045,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA045,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA045,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA045,9,By men of a neighboring tribe,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA045,8,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,,EA045,NA,,,, +Ac13,,,EA045,NA,,,, +Ac14,,,EA045,NA,,,, +Ac15,,,EA045,NA,,,, +Ac16,,,EA045,NA,,,, +Ac17,,,EA045,NA,,,, +Ac18,,,EA045,NA,,,, +Ac19,,,EA045,NA,,,, +Ac2,,,EA045,NA,,,, +Ac20,,,EA045,NA,,,, +Ac21,,,EA045,NA,,,, +Ac22,,,EA045,NA,,,, +Ac23,with special reference to the western Lele,1950,EA045,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA045,NA,,,, +Ac25,,,EA045,NA,,,, +Ac26,,,EA045,NA,,,, +Ac27,,,EA045,NA,,,, +Ac28,,1930,EA045,8,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA045,NA,,,, +Ac3,Zambia branch,1900,EA045,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,,EA045,NA,,,, +Ac31,,1910,EA045,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA045,NA,,,, +Ac33,,,EA045,NA,,,, +Ac34,,1940,EA045,9,"Formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA045,NA,,,, +Ac36,,,EA045,NA,,,, +Ac37,,,EA045,NA,,,, +Ac38,,1910,EA045,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,,EA045,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA045,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA045,NA,,,, +Ac41,,,EA045,NA,,,, +Ac42,,,EA045,NA,,,, +Ac43,,,EA045,NA,,,, +Ac5,,,EA045,NA,,,, +Ac6,,1930,EA045,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA045,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA045,6,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,,,EA045,NA,,,, +Ad1,,,EA045,NA,,,, +Ad10,,,EA045,NA,,,, +Ad11,,1930,EA045,9,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA045,NA,,,, +Ad13,,,EA045,NA,,,, +Ad14,Morogoro District,1930,EA045,9,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p68, +Ad15,,1900,EA045,8,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p68, +Ad16,,1920,EA045,8,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA045,1,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA045,NA,,,, +Ad19,,1910,EA045,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA045,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA045,8,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,,EA045,NA,,,, +Ad22,,1950,EA045,8,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA045,NA,,,, +Ad24,,,EA045,NA,,,, +Ad25,,,EA045,NA,,,, +Ad26,,1910,EA045,9,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,1880,EA045,9,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA045,NA,,,, +Ad29,,1930,EA045,9,"Formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA045,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,,EA045,NA,,,, +Ad31,,,EA045,NA,,,, +Ad32,,,EA045,NA,,,, +Ad33,,,EA045,NA,,,, +Ad34,,,EA045,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA045,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA045,NA,,,, +Ad37,,,EA045,NA,,,, +Ad38,,,EA045,NA,,,, +Ad39,,,EA045,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA045,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA045,NA,,,, +Ad41,,,EA045,NA,,,, +Ad42,,,EA045,NA,,,, +Ad43,,,EA045,NA,,,, +Ad44,,1920,EA045,9,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,,EA045,NA,,,, +Ad46,,1950,EA045,3,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA045,8,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA045,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA045,NA,,,, +Ad5,,,EA045,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA045,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA045,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA045,8,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA045,9,But men made bark cloth,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,,,EA045,NA,,,, +Ad9,,1900,EA045,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA045,9,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA045,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,,EA045,NA,,,, +Ae12,,,EA045,NA,,,, +Ae13,,,EA045,NA,,,, +Ae14,,,EA045,NA,,,, +Ae15,,,EA045,NA,,,, +Ae16,,,EA045,NA,,,, +Ae17,,1900,EA045,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA045,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA045,NA,,,, +Ae2,,,EA045,NA,,,, +Ae20,,,EA045,NA,,,, +Ae21,,,EA045,NA,,,, +Ae22,,,EA045,NA,,,, +Ae23,,,EA045,NA,,,, +Ae24,,,EA045,NA,,,, +Ae25,,,EA045,NA,,,, +Ae26,,,EA045,NA,,,, +Ae27,,,EA045,NA,,,, +Ae28,,1900,EA045,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,,EA045,NA,,,, +Ae3,,1910,EA045,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA045,NA,,,, +Ae31,,1920,EA045,9,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA045,NA,,,, +Ae33,,1920,EA045,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA045,NA,,,, +Ae35,,,EA045,NA,,,, +Ae36,,,EA045,NA,,,, +Ae37,,,EA045,NA,,,, +Ae38,,,EA045,NA,,,, +Ae39,,1920,EA045,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA045,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA045,NA,,,, +Ae41,,1940,EA045,8,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA045,NA,,,, +Ae43,,,EA045,NA,,,, +Ae44,,,EA045,NA,,,, +Ae45,,,EA045,NA,,,, +Ae46,,,EA045,NA,,,, +Ae47,,,EA045,NA,,,, +Ae48,,1930,EA045,4,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae49,,,EA045,NA,,,, +Ae5,,1910,EA045,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA045,8,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA045,9,Small carrying bags only,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,,EA045,NA,,,, +Ae53,,,EA045,NA,,,, +Ae54,,,EA045,NA,,,, +Ae55,,,EA045,NA,,,, +Ae56,,,EA045,NA,,,, +Ae57,,,EA045,NA,,,, +Ae58,,,EA045,NA,,,, +Ae59,,,EA045,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA045,8,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,1910,EA045,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA045,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA045,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA045,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA045,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA045,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA045,NA,,,, +Af13,,1920,EA045,8,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,1930,EA045,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA045,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA045,NA,,,, +Af17,,,EA045,NA,,,, +Af18,,,EA045,NA,,,, +Af19,,,EA045,NA,,,, +Af2,,1950,EA045,9,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA045,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA045,NA,,,, +Af22,,1940,EA045,9,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,with special reference to the village of Mgbom,1950,EA045,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA045,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA045,9,"But probably formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA045,NA,,,, +Af27,,,EA045,NA,,,, +Af28,,1910,EA045,1,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA045,NA,,,, +Af3,Kumasi State,1900,EA045,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA045,NA,,,, +Af31,,,EA045,NA,,,, +Af32,Abeouta Province and Benin,1920,EA045,3,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA045,3,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA045,NA,,,, +Af35,,,EA045,NA,,,, +Af36,with special reference to the Glidyi,1900,EA045,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA045,NA,,,, +Af38,,,EA045,NA,,,, +Af39,,,EA045,NA,,,, +Af4,,,EA045,NA,,,, +Af40,,,EA045,NA,,,, +Af41,,,EA045,NA,,,, +Af42,,1900,EA045,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,,EA045,NA,,,, +Af44,,,EA045,NA,,,, +Af45,,,EA045,NA,,,, +Af46,,,EA045,NA,,,, +Af47,,,EA045,NA,,,, +Af48,,,EA045,NA,,,, +Af49,,,EA045,NA,,,, +Af5,,1930,EA045,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA045,NA,,,, +Af51,,,EA045,NA,,,, +Af52,,1920,EA045,1,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA045,NA,,,, +Af54,,1930,EA045,1,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA045,NA,,,, +Af56,,,EA045,NA,,,, +Af57,,1910,EA045,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA045,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA045,3,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,,EA045,NA,,,, +Af8,,1930,EA045,3,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,,EA045,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA045,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,,EA045,NA,,,, +Ag11,,,EA045,NA,,,, +Ag12,,,EA045,NA,,,, +Ag13,,1910,EA045,8,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p72, +Ag14,,,EA045,NA,,,, +Ag15,,,EA045,NA,,,, +Ag16,,,EA045,NA,,,, +Ag17,,,EA045,NA,,,, +Ag18,,,EA045,NA,,,, +Ag19,,,EA045,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA045,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA045,NA,,,, +Ag21,,,EA045,NA,,,, +Ag22,with special reference to those of Sine,1920,EA045,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA045,NA,,,, +Ag24,,,EA045,NA,,,, +Ag25,,,EA045,NA,,,, +Ag26,,,EA045,NA,,,, +Ag27,,,EA045,NA,,,, +Ag28,,,EA045,NA,,,, +Ag29,,,EA045,NA,,,, +Ag3,,,EA045,NA,,,, +Ag30,,1910,EA045,8,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,1910,EA045,1,,cheron1913; holas1957,EthnographicAtlas_1967_p72, +Ag32,,,EA045,NA,,,, +Ag33,,,EA045,NA,,,, +Ag34,,,EA045,NA,,,, +Ag35,,,EA045,NA,,,, +Ag36,,,EA045,NA,,,, +Ag37,,,EA045,NA,,,, +Ag38,,,EA045,NA,,,, +Ag39,,,EA045,NA,,,, +Ag4,Tallensi Tribe,1930,EA045,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA045,NA,,,, +Ag41,,,EA045,NA,,,, +Ag42,,,EA045,NA,,,, +Ag43,,,EA045,NA,,,, +Ag44,,,EA045,NA,,,, +Ag45,,,EA045,NA,,,, +Ag46,,,EA045,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA045,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA045,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,1930,EA045,6,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA045,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,,EA045,NA,,,, +Ag51,,,EA045,NA,,,, +Ag52,,,EA045,NA,,,, +Ag53,with special reference to those of Garango,1960,EA045,8,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA045,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA045,NA,,,, +Ag7,,,EA045,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA045,3,But weaving is confined to a few special products,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,,EA045,NA,,,, +Ah1,Zaria Province,1930,EA045,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA045,NA,,,, +Ah11,,1950,EA045,8,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA045,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA045,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA045,8,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah15,,1920,EA045,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA045,NA,,,, +Ah17,,,EA045,NA,,,, +Ah18,,,EA045,NA,,,, +Ah19,,,EA045,NA,,,, +Ah2,,1920,EA045,6,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,,EA045,NA,,,, +Ah21,,,EA045,NA,,,, +Ah22,,,EA045,NA,,,, +Ah23,,,EA045,NA,,,, +Ah24,,,EA045,NA,,,, +Ah25,,,EA045,NA,,,, +Ah26,,,EA045,NA,,,, +Ah27,,,EA045,NA,,,, +Ah28,,,EA045,NA,,,, +Ah29,,,EA045,NA,,,, +Ah3,Tar of Benue Province,1920,EA045,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA045,NA,,,, +Ah31,,,EA045,NA,,,, +Ah32,,,EA045,NA,,,, +Ah33,,,EA045,NA,,,, +Ah34,,,EA045,NA,,,, +Ah35,,,EA045,NA,,,, +Ah36,,1920,EA045,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA045,NA,,,, +Ah38,,1930,EA045,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA045,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA045,NA,,,, +Ah5,,,EA045,NA,,,, +Ah6,,,EA045,NA,,,, +Ah7,,1940,EA045,9,But women weave small bags,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,,EA045,NA,,,, +Ah9,,1920,EA045,6,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA045,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA045,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA045,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA045,NA,,,, +Ai13,,,EA045,NA,,,, +Ai14,,1920,EA045,8,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,1900,EA045,1,But infrequent,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA045,NA,,,, +Ai17,,1930,EA045,9,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA045,1,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA045,NA,,,, +Ai2,,,EA045,NA,,,, +Ai20,,,EA045,NA,,,, +Ai21,,1880,EA045,1,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p76, +Ai22,,,EA045,NA,,,, +Ai23,,1920,EA045,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA045,NA,,,, +Ai25,,1950,EA045,9,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA045,9,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA045,NA,,,, +Ai28,,1910,EA045,9,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA045,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA045,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA045,9,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,,EA045,NA,,,, +Ai32,,,EA045,NA,,,, +Ai33,,,EA045,NA,,,, +Ai34,,,EA045,NA,,,, +Ai35,,,EA045,NA,,,, +Ai36,,1920,EA045,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA045,NA,,,, +Ai38,,1930,EA045,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA045,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA045,NA,,,, +Ai40,,1940,EA045,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA045,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA045,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA045,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,,EA045,NA,,,, +Ai45,,,EA045,NA,,,, +Ai46,,,EA045,NA,,,, +Ai47,Northern division,1939,EA045,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,1920,EA045,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA045,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA045,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA045,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,,,EA045,NA,,,, +Aj1,,,EA045,NA,,,, +Aj10,,,EA045,NA,,,, +Aj11,,,EA045,NA,,,, +Aj12,,,EA045,NA,,,, +Aj13,,,EA045,NA,,,, +Aj14,,,EA045,NA,,,, +Aj15,,1900,EA045,1,Aprons only,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,,,EA045,NA,,,, +Aj17,,1890,EA045,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,,EA045,NA,,,, +Aj19,,,EA045,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA045,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA045,NA,,,, +Aj21,,,EA045,NA,,,, +Aj22,,,EA045,NA,,,, +Aj23,,,EA045,NA,,,, +Aj24,,,EA045,NA,,,, +Aj25,,,EA045,NA,,,, +Aj26,,,EA045,NA,,,, +Aj27,,,EA045,NA,,,, +Aj28,,,EA045,NA,,,, +Aj29,,,EA045,NA,,,, +Aj3,,1930,EA045,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA045,NA,,,, +Aj31,,,EA045,NA,,,, +Aj4,,1920,EA045,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,,EA045,NA,,,, +Aj6,,1940,EA045,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA045,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA045,9,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA045,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA045,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,,EA045,NA,,,, +Ca11,,,EA045,NA,,,, +Ca12,,1880,EA045,8,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,,,EA045,NA,,,, +Ca14,,1950,EA045,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA045,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA045,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA045,9,Products obtained by trade with neighboring tribes,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA045,NA,,,, +Ca19,,1950,EA045,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA045,1,But weaving is mainly done by sedentary rather than nomadic Somali,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA045,NA,,,, +Ca21,,1950,EA045,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA045,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA045,9,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,,EA045,NA,,,, +Ca25,,,EA045,NA,,,, +Ca26,,,EA045,NA,,,, +Ca27,,,EA045,NA,,,, +Ca28,,1950,EA045,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA045,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,,EA045,NA,,,, +Ca30,Kafa Kingdom,1890,EA045,1,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,1860,EA045,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA045,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA045,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA045,NA,,,, +Ca35,,,EA045,NA,,,, +Ca36,,,EA045,NA,,,, +Ca37,,,EA045,NA,,,, +Ca38,,,EA045,NA,,,, +Ca39,,1930,EA045,1,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,,EA045,NA,,,, +Ca40,,1950,EA045,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA045,1,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA045,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA045,NA,,,, +Ca5,,,EA045,NA,,,, +Ca6,,,EA045,NA,,,, +Ca7,Gondar district,1950,EA045,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA045,NA,,,, +Ca9,,,EA045,NA,,,, +Cb1,,,EA045,NA,,,, +Cb10,,,EA045,NA,,,, +Cb11,,,EA045,NA,,,, +Cb12,,,EA045,NA,,,, +Cb13,,,EA045,NA,,,, +Cb14,,,EA045,NA,,,, +Cb15,,,EA045,NA,,,, +Cb16,,,EA045,NA,,,, +Cb17,,,EA045,NA,,,, +Cb18,,1930,EA045,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p80, +Cb19,,,EA045,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA045,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA045,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA045,NA,,,, +Cb22,,,EA045,NA,,,, +Cb23,,1930,EA045,1,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,,,EA045,NA,,,, +Cb25,,,EA045,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA045,3,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA045,NA,,,, +Cb28,,,EA045,NA,,,, +Cb29,,,EA045,NA,,,, +Cb3,Bamba division,1940,EA045,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA045,NA,,,, +Cb5,,,EA045,NA,,,, +Cb6,,,EA045,NA,,,, +Cb7,,1920,EA045,8,,meek1931b:288-310,EthnographicAtlas_1967_p80, +Cb8,,,EA045,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA045,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,1950,EA045,6,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA045,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA045,NA,,,, +Cc12,,,EA045,NA,,,, +Cc13,,,EA045,NA,,,, +Cc14,,1880,EA045,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA045,NA,,,, +Cc16,,1930,EA045,6,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA045,6,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA045,NA,,,, +Cc19,,,EA045,NA,,,, +Cc2,Nomads of Tibesti,1950,EA045,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,,,EA045,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA045,6,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA045,8,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,,EA045,NA,,,, +Cc6,,,EA045,NA,,,, +Cc7,,,EA045,NA,,,, +Cc8,,,EA045,NA,,,, +Cc9,Ahaggaren tribe,1920,EA045,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,,,EA045,NA,,,, +Cd10,,,EA045,NA,,,, +Cd11,,,EA045,NA,,,, +Cd12,,1870,EA045,8,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA045,NA,,,, +Cd14,,,EA045,NA,,,, +Cd15,,,EA045,NA,,,, +Cd16,,,EA045,NA,,,, +Cd17,,,EA045,NA,,,, +Cd18,,,EA045,NA,,,, +Cd19,,,EA045,NA,,,, +Cd2,Town and environs of Silwa,1950,EA045,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA045,NA,,,, +Cd21,,,EA045,NA,,,, +Cd3,Entirety: Moroccan,1920,EA045,3,Also male specialists using a more advanced type of loom,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA045,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,,,EA045,NA,,,, +Cd6,with special reference to the New Empire,-1400,EA045,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA045,NA,,,, +Cd8,,,EA045,NA,,,, +Cd9,,,EA045,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA045,6,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA045,NA,,,, +Ce3,,,EA045,NA,,,, +Ce4,,,EA045,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA045,7,Presumably industrial specialization only,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA045,7,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA045,7,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA045,6,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA045,7,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA045,NA,,,, +Cf3,,1930,EA045,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA045,7,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA045,7,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA045,7,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA045,6,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,,,EA045,NA,,,, +Cg4,Konkama District,1950,EA045,6,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA045,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA045,6,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA045,NA,,,, +Ch11,,,EA045,NA,,,, +Ch2,,1890,EA045,6,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA045,7,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA045,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA045,6,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA045,7,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA045,7,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,1940,EA045,6,,hanzeli1955,EthnographicAtlas_1967_p84, +Ch9,,1930,EA045,7,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,,,EA045,NA,,,, +Ci10,Vicinity of Erevan,1900,EA045,8,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA045,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA045,6,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA045,NA,,,, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA045,6,,gadzhieva1958,EthnographicAtlas_1967_p84, +Ci4,,,EA045,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA045,6,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA045,NA,,,, +Ci7,,1900,EA045,6,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p84, +Ci8,,,EA045,NA,,,, +Ci9,,,EA045,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA045,7,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA045,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA045,6,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA045,5,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA045,8,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA045,6,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA045,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA045,7,"Formerly females alone (EA045 code ""6""), with no specialization specified (EA056 code ""9"")",davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA045,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,1950,EA045,1,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA045,8,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,,,EA045,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA045,6,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA045,6,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA045,3,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA045,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA045,8,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA045,1,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA045,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA045,6,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA045,6,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA045,3,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA045,3,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA045,6,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA045,1,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA045,9,But felt is manufactured by both sexes,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA045,NA,,,, +Eb5,,,EA045,NA,,,, +Eb6,,,EA045,NA,,,, +Eb7,,,EA045,NA,,,, +Eb8,,,EA045,NA,,,, +Ec1,Sakhalin Island,1920,EA045,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA045,6,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA045,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA045,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA045,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA045,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA045,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,,,EA045,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA045,6,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA045,NA,,,, +Ec9,,,EA045,NA,,,, +Ed1,Kanghwa Island,1950,EA045,6,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA045,8,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA045,NA,,,, +Ed14,,,EA045,NA,,,, +Ed15a,,,EA045,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA045,6,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA045,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA045,8,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA045,8,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA045,6,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA045,6,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA045,8,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA045,5,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA045,6,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA045,6,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA045,6,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA045,1,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA045,6,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA045,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA045,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA045,6,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA045,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA045,6,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA045,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA045,NA,,,, +Ef11,Village and environs of Senapur,1945,EA045,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA045,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA045,NA,,,, +Ef4,,,EA045,NA,,,, +Ef5,,1900,EA045,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,,EA045,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA045,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA045,1,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA045,4,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA045,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA045,8,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA045,NA,,,, +Eg12,,,EA045,NA,,,, +Eg13,Bastar State,1941,EA045,9,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA045,9,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA045,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA045,9,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA045,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,,EA045,NA,,,, +Eg6,,,EA045,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA045,9,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA045,9,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,,EA045,NA,,,, +Eh1,,1870,EA045,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA045,NA,,,, +Eh2,,1900,EA045,6,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA045,6,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA045,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA045,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA045,NA,,,, +Eh7,,1900,EA045,6,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA045,6,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA045,NA,,,, +Ei1,Rengsanggr,1900,EA045,6,But rare today,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA045,6,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA045,6,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA045,NA,,,, +Ei13,,1910,EA045,6,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA045,6,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA045,NA,,,, +Ei16,,1910,EA045,6,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA045,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA045,6,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,1940,EA045,6,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA045,6,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA045,NA,,,, +Ei3,Nondwin Village,1950,EA045,6,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA045,6,,parry1932,EthnographicAtlas_1967_p92, +Ei5,,,EA045,NA,,,, +Ei6,,1930,EA045,6,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA045,6,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA045,6,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA045,6,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA045,9,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA045,6,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA045,6,,lafont1964,EthnographicAtlas_1967_p92, +Ej12,,1960,EA045,6,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA045,6,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA045,9,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA045,8,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA045,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA045,6,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA045,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA045,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA045,6,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,of the Mergui Archipelago,1920,EA045,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA045,6,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA045,6,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,,EA045,NA,,,, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA045,6,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA045,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA045,6,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA045,6,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA045,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA045,6,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA045,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA045,6,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA045,NA,,,, +Ia18,,,EA045,NA,,,, +Ia2,,1950,EA045,6,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA045,6,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,,,EA045,NA,,,, +Ia5,,1950,EA045,6,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA045,6,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA045,NA,,,, +Ia8,,,EA045,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA045,6,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA045,6,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA045,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA045,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA045,6,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA045,8,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,1920,EA045,6,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA045,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,with special reference to the Ridan group,1900,EA045,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA045,NA,,,, +Ic1,Borongloe,1940,EA045,6,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA045,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,Allang,1950,EA045,8,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA045,NA,,,, +Ic13,,,EA045,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA045,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,with special reference to the Mountain Belu,1950,EA045,8,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA045,NA,,,, +Ic5,Bare'e subgroup,1910,EA045,9,But weaving has been recently introduced,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA045,8,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA045,6,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,1890,EA045,9,,pleyte1893,EthnographicAtlas_1967_p96, +Ic9,,,EA045,NA,,,, +Id1,Alice Springs and environs,1900,EA045,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA045,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA045,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA045,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA045,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA045,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA045,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA045,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA045,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA045,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA045,9,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA045,9,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA045,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA045,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA045,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA045,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA045,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA045,9,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA045,9,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,Kalabu; Northern Abelam,1930,EA045,9,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA045,9,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA045,9,Armbands and belts only,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA045,9,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA045,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA045,9,But women weave net bags,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA045,9,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA045,9,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA045,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA045,9,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,1870,EA045,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA045,9,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA045,9,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,1910,EA045,9,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,1940,EA045,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA045,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA045,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA045,9,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,1950,EA045,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA045,9,But women make net bags,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA045,9,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA045,NA,,,, +Ie35,,1930,EA045,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA045,NA,,,, +Ie37,,,EA045,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA045,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA045,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA045,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA045,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,,EA045,NA,,,, +Ie7,with special reference to the Mae group,1950,EA045,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA045,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA045,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA045,6,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA045,NA,,,, +If11,,1860,EA045,6,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA045,9,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA045,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA045,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA045,6,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA045,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA045,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA045,6,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA045,9,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA045,6,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA045,6,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA045,6,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA045,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA045,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,,EA045,NA,,,, +Ig1,Northeastern group,1940,EA045,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA045,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA045,9,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,with special reference to the Varisi,1900,EA045,9,,scheffler1965,EthnographicAtlas_1967_p100, +Ig13,,,EA045,NA,,,, +Ig14,,1900,EA045,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA045,NA,,,, +Ig16,,,EA045,NA,,,, +Ig17,,,EA045,NA,,,, +Ig18,,,EA045,NA,,,, +Ig19,,,EA045,NA,,,, +Ig2,Kiriwina Island,1910,EA045,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA045,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA045,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA045,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA045,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA045,9,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA045,9,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA045,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA045,NA,,,, +Ig9,Peri Village,1920,EA045,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA045,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,Whitsands,1920,EA045,9,,humphreys1926,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA045,NA,,,, +Ih12,,,EA045,NA,,,, +Ih13,,,EA045,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA045,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA045,9,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA045,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p100, +Ih4,Lau Island,1920,EA045,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA045,9,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p100, +Ih6,,1890,EA045,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA045,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA045,9,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA045,1,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA045,9,"Women plait fine mats, but there is no true weaving",buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA045,NA,,,, +Ii12,Pangai,1920,EA045,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA045,9,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA045,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA045,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA045,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA045,9,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA045,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA045,9,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA045,6,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA045,9,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA045,9,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA045,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA045,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA045,6,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA045,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA045,9,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA045,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA045,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA045,9,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA045,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA045,9,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA045,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA045,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA045,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA045,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA045,9,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA045,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA045,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA045,9,Woven rabbit skin blankets only,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA045,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA045,6,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA045,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA045,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA045,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA045,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA045,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA045,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA045,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA045,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA045,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA045,9,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA045,9,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA045,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA045,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA045,9,Rabbit skin blankets only,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA045,9,Rabbit skin blankets only,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA045,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA045,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA045,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA045,9,Woven rabbit skin blankets only,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA045,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA045,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA045,9,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA045,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA045,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA045,6,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA045,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA045,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA045,NA,,,, +Na45,,1900,EA045,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA045,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA045,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA045,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA045,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA045,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA045,6,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,,EA045,NA,,,, +Nb11,with special reference to the Central Nootka,1880,EA045,5,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA045,6,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA045,6,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA045,6,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA045,6,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA045,6,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA045,6,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,,EA045,NA,,,, +Nb19,,1850,EA045,9,But blankets were woven of twisted rabbit skin strips,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA045,6,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA045,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,,EA045,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA045,6,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA045,8,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA045,6,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA045,8,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA045,6,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA045,8,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA045,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA045,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA045,6,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,,EA045,NA,,,, +Nb31,,1870,EA045,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA045,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA045,9,Woven rabbit skin blankets only,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA045,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA045,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA045,9,But both sexes wove blankets of rabbit skin strips,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA045,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA045,6,But only blankets woven of rabbit skin strips,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA045,9,But only blankets woven of rabbit skin strips,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA045,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA045,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA045,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA045,6,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA045,6,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA045,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA045,9,But strips of rabbit fur were woven on a frame into blankets,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA045,9,Rabbit skin blankets only,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA045,9,Rabbit skin blankets only,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA045,9,Rabbit skin blankets only,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA045,9,Rabbit skin blankets only,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA045,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA045,9,Woven rabbit skin blankets only,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA045,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA045,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA045,9,Rabbit skin blankets only,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA045,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA045,9,But men wove strips of rabbit fur into blankets on a frame,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA045,9,Rabbit skin blankets and feather capes only,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA045,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA045,9,Rabbit skin blankets only,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA045,9,Entry follows Gayton and Driver; Aginsky reports F,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA045,9,Rabbit skin blankets only,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA045,9,Rabbit skin blankets only,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA045,8,Rabbit skin blankets only,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA045,9,Rabbit skin blankets only,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA045,6,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA045,9,Rabbit skin blankets only,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA045,9,Blankets were woven from strips of rabbit fur,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA045,9,Rabbit skin blankets only,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA045,9,Rabbit skin blankets only,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA045,9,Rabbit skin blankets only,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA045,9,Rabbit skin blankets only,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA045,9,Rabbit skin blankets only,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA045,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA045,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA045,9,Only blankets woven from strips of rabbit fur,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA045,9,But a few rabbit-skin blankets are woven,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA045,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA045,9,Rabbit skin blankets only,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA045,9,But blankets were woven from strips of rabbit fur,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA045,8,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA045,9,Rabbit skin blankets only,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA045,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA045,8,Rabbit skin blankets only,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA045,9,Rabbit skin blankets only,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA045,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA045,8,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA045,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA045,9,Woven packstraps and rabbit skin blankets only,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA045,9,Rabbit skin blankets only,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA045,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA045,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA045,4,Fur-strip blankets only,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA045,9,Fur-strip blankets only,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA045,4,Fur-strip blankets only,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA045,9,Rabbit skin blankets only,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA045,4,Fur-strip blankets only,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA045,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA045,9,Fur-strip blankets only,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA045,4,Fur-strip blankets only,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA045,1,Fur-strip blankets only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA045,9,Blankets were woven from rabbit skin strips,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA045,9,Rabbit skin blankets only,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA045,8,Rabbit skin blankets only,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA045,9,Rabbit skin blankets only,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA045,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA045,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA045,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA045,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA045,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA045,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA045,6,Fur-strip blankets only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA045,9,Rabbit skin blankets only,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA045,6,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA045,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA045,4,Fur-strip blankets only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA045,6,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA045,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA045,9,But rare,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA045,1,But rare,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA045,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA045,6,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA045,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA045,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA045,6,Rabbit skin blankets only,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA045,8,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA045,5,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA045,9,Rabbit skin blankets only,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA045,9,Rabbit skin blankets only,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA045,4,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA045,6,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA045,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA045,6,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA045,6,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA045,9,"But blankets were woven from strips of rabbit fur, chiefly by women",barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA045,6,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA045,6,Rabbit skin blankets only,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA045,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA045,9,A few rabbit skin blankets only,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA045,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA045,4,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA045,9,Rabbit skin blankets only,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,,EA045,NA,,,, +Nd7,Lower or eastern branch,1880,EA045,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA045,9,But bands influenced by the Coast Salish did some weaving,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA045,9,Rabbit skin blankets only,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA045,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA045,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA045,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA045,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA045,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA045,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA045,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA045,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA045,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA045,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA045,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA045,9,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA045,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA045,NA,,,, +Ne3,Comanche Tribe,1870,EA045,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA045,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA045,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA045,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA045,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA045,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA045,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA045,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA045,9,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA045,9,But finger-woven bands and sashes were made,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA045,9,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA045,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA045,NA,,,, +Nf2,,,EA045,NA,,,, +Nf3,Omaha Tribe,1850,EA045,9,Scarves only,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA045,6,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA045,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA045,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA045,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA045,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,,EA045,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA045,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA045,9,Burden straps only,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,,EA045,NA,,,, +Ng12,,1760,EA045,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA045,NA,,,, +Ng14,,,EA045,NA,,,, +Ng15,,,EA045,NA,,,, +Ng2,,,EA045,NA,,,, +Ng3,Upper division in Alabama,1750,EA045,6,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA045,NA,,,, +Ng5,,,EA045,NA,,,, +Ng6,,,EA045,NA,,,, +Ng7,Natchez Kingdom,1700,EA045,6,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA045,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA045,NA,,,, +Nh1,Central band,1880,EA045,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,1920,EA045,3,,parsons1932a; trager1943,EthnographicAtlas_1967_p116, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA045,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA045,9,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,,EA045,NA,,,, +Nh14,,,EA045,NA,,,, +Nh15,,1870,EA045,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA045,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA045,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA045,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA045,2,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA045,1,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA045,5,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA045,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA045,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA045,1,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA045,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA045,9,"But probably formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA045,NA,,,, +Nh27,,,EA045,NA,,,, +Nh3,,1930,EA045,6,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA045,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA045,1,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA045,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,,EA045,NA,,,, +Nh8,,1920,EA045,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,,EA045,NA,,,, +Ni1,,1930,EA045,6,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA045,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA045,6,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA045,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA045,9,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA045,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA045,8,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA045,NA,,,, +Ni9,,,EA045,NA,,,, +Nj1,Ojitlan,1940,EA045,6,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA045,6,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA045,NA,,,, +Nj12,,,EA045,NA,,,, +Nj13,,,EA045,NA,,,, +Nj14,,,EA045,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA045,6,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA045,6,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA045,6,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA045,NA,,,, +Nj6,,,EA045,NA,,,, +Nj7,with special reference to Ayutla,1930,EA045,6,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA045,6,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA045,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA045,6,But only hammocks today,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA045,6,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA045,NA,,,, +Sa12,,1948,EA045,9,"Weaving was formerly done (formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA045,3,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA045,NA,,,, +Sa15,,,EA045,NA,,,, +Sa16,,,EA045,NA,,,, +Sa17,,,EA045,NA,,,, +Sa2,,,EA045,NA,,,, +Sa3,,1930,EA045,9,Agave bags only,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA045,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA045,6,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA045,6,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA045,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA045,6,,wagley1941; wagley1949b,EthnographicAtlas_1967_p120, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA045,6,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA045,6,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA045,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA045,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA045,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA045,NA,,,, +Sb6,Goajiro Tribe,1940,EA045,6,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA045,6,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA045,9,But hammocks were woven,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA045,8,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA045,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA045,8,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,,EA045,NA,,,, +Sc12,,1910,EA045,6,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,,EA045,NA,,,, +Sc14,,1890,EA045,6,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA045,6,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA045,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA045,6,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA045,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA045,9,But hammocks are made,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA045,6,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA045,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA045,6,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,,,EA045,NA,,,, +Sc7,,1950,EA045,9,Chiefly hammocks,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA045,6,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA045,8,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA045,9,Hammocks only,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA045,9,Hammocks only,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA045,8,Hammocks only,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA045,9,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA045,9,Hammocks only,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,,EA045,NA,,,, +Sd7,,1950,EA045,3,"Mean weave hammocks and loincloths, women aprons",fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA045,6,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA045,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA045,9,Hammocks only,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,1670,EA045,6,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p120, +Se11,,1960,EA045,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA045,NA,,,, +Se2,,1940,EA045,6,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA045,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA045,9,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA045,9,But men make hammocks,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA045,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA045,NA,,,, +Se8,Upper Inuya River,1950,EA045,6,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA045,6,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA045,6,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA045,3,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA045,6,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA045,6,A few ornamented cloths only,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA045,6,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA045,8,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA045,6,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA045,NA,,,, +Sf9,,,EA045,NA,,,, +Sg1,Eastern and central,1870,EA045,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA045,6,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA045,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA045,6,But silversmithing and loom weaving are relatively recent introductions,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA045,9,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA045,6,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA045,6,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA045,6,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA045,6,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA045,6,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA045,8,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA045,6,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA045,6,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA045,6,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA045,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA045,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA045,9,Hammocks only,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA045,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA045,8,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA045,9,Hammocks only,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA045,6,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,with special reference to the Cozarimi,1910,EA045,8,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,1940,EA045,6,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA045,NA,,,, +Sj1,,1950,EA045,6,But not aboriginal,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA045,6,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA045,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA045,9,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA045,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA045,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA045,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,with special reference to the Guajajara subgroup,1930,EA045,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA045,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA045,9,Hammocks only,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA045,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA045,6,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA045,6,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA045,6,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA045,5,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA045,3,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA045,6,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA045,6,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA045,6,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA045,6,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA045,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA045,6,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA045,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA045,6,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA045,6,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA045,6,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA045,6,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA045,6,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA045,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA045,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA045,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA045,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA045,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA045,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA045,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA045,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA045,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA045,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA046,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA046,6,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA046,5,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA046,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA046,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA046,NA,,,, +Aa7,,1910,EA046,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,,EA046,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA046,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA046,1,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA046,1,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA046,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA046,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA046,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA046,1,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA046,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA046,NA,,,, +Ab17,,,EA046,NA,,,, +Ab18,,,EA046,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA046,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA046,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA046,NA,,,, +Ab21a,,,EA046,NA,,,, +Ab21b,,,EA046,NA,,,, +Ab22,,,EA046,NA,,,, +Ab3,Ruling Luyana,1890,EA046,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA046,9,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA046,8,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA046,8,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA046,NA,,,, +Ab8,,,EA046,NA,,,, +Ab9,,1870,EA046,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA046,5,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA046,8,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,,EA046,NA,,,, +Ac12,,,EA046,NA,,,, +Ac13,,,EA046,NA,,,, +Ac14,,,EA046,NA,,,, +Ac15,,,EA046,NA,,,, +Ac16,,,EA046,NA,,,, +Ac17,,,EA046,NA,,,, +Ac18,,1910,EA046,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA046,NA,,,, +Ac2,,,EA046,NA,,,, +Ac20,,,EA046,NA,,,, +Ac21,,,EA046,NA,,,, +Ac22,,,EA046,NA,,,, +Ac23,,,EA046,NA,,,, +Ac24,,,EA046,NA,,,, +Ac25,,,EA046,NA,,,, +Ac26,,,EA046,NA,,,, +Ac27,,,EA046,NA,,,, +Ac28,,,EA046,NA,,,, +Ac29,,,EA046,NA,,,, +Ac3,Zambia branch,1900,EA046,8,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,,EA046,NA,,,, +Ac31,,1910,EA046,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA046,NA,,,, +Ac33,,,EA046,NA,,,, +Ac34,,1940,EA046,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA046,NA,,,, +Ac36,,,EA046,NA,,,, +Ac37,,,EA046,NA,,,, +Ac38,,,EA046,NA,,,, +Ac39,,,EA046,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA046,8,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA046,NA,,,, +Ac41,,,EA046,NA,,,, +Ac42,,,EA046,NA,,,, +Ac43,,,EA046,NA,,,, +Ac5,,,EA046,NA,,,, +Ac6,,,EA046,NA,,,, +Ac7,,1920,EA046,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,,EA046,NA,,,, +Ac9,,,EA046,NA,,,, +Ad1,,1950,EA046,9,Despised as slave occupation,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,,EA046,NA,,,, +Ad11,,,EA046,NA,,,, +Ad12,,,EA046,NA,,,, +Ad13,,1930,EA046,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA046,NA,,,, +Ad15,,,EA046,NA,,,, +Ad16,,,EA046,NA,,,, +Ad17,,,EA046,NA,,,, +Ad18,,,EA046,NA,,,, +Ad19,,,EA046,NA,,,, +Ad2,,1950,EA046,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,,EA046,NA,,,, +Ad21,,,EA046,NA,,,, +Ad22,,,EA046,NA,,,, +Ad23,,,EA046,NA,,,, +Ad24,,,EA046,NA,,,, +Ad25,,,EA046,NA,,,, +Ad26,,,EA046,NA,,,, +Ad27,,,EA046,NA,,,, +Ad28,,,EA046,NA,,,, +Ad29,,1930,EA046,9,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA046,8,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,,EA046,NA,,,, +Ad31,,,EA046,NA,,,, +Ad32,,,EA046,NA,,,, +Ad33,,,EA046,NA,,,, +Ad34,,,EA046,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA046,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA046,NA,,,, +Ad37,,,EA046,NA,,,, +Ad38,,,EA046,NA,,,, +Ad39,,,EA046,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA046,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA046,NA,,,, +Ad41,,,EA046,NA,,,, +Ad42,,,EA046,NA,,,, +Ad43,,,EA046,NA,,,, +Ad44,,,EA046,NA,,,, +Ad45,,,EA046,NA,,,, +Ad46,,1950,EA046,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,,EA046,NA,,,, +Ad48,,1950,EA046,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA046,NA,,,, +Ad5,,,EA046,NA,,,, +Ad50,,,EA046,NA,,,, +Ad51,,,EA046,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA046,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA046,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,,,EA046,NA,,,, +Ad9,,1900,EA046,8,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,,,EA046,NA,,,, +Ae10,,1910,EA046,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA046,9,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,,EA046,NA,,,, +Ae13,,,EA046,NA,,,, +Ae14,,1950,EA046,6,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,,EA046,NA,,,, +Ae16,,,EA046,NA,,,, +Ae17,,,EA046,NA,,,, +Ae18,,,EA046,NA,,,, +Ae19,,,EA046,NA,,,, +Ae2,,,EA046,NA,,,, +Ae20,,,EA046,NA,,,, +Ae21,,,EA046,NA,,,, +Ae22,,,EA046,NA,,,, +Ae23,,,EA046,NA,,,, +Ae24,,,EA046,NA,,,, +Ae25,,,EA046,NA,,,, +Ae26,,,EA046,NA,,,, +Ae27,,,EA046,NA,,,, +Ae28,,1900,EA046,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,,EA046,NA,,,, +Ae3,,,EA046,NA,,,, +Ae30,,,EA046,NA,,,, +Ae31,,,EA046,NA,,,, +Ae32,,,EA046,NA,,,, +Ae33,,,EA046,NA,,,, +Ae34,,,EA046,NA,,,, +Ae35,,,EA046,NA,,,, +Ae36,,,EA046,NA,,,, +Ae37,,,EA046,NA,,,, +Ae38,,,EA046,NA,,,, +Ae39,,1920,EA046,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA046,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA046,NA,,,, +Ae41,,,EA046,NA,,,, +Ae42,,,EA046,NA,,,, +Ae43,,,EA046,NA,,,, +Ae44,,,EA046,NA,,,, +Ae45,,,EA046,NA,,,, +Ae46,,,EA046,NA,,,, +Ae47,,,EA046,NA,,,, +Ae48,,,EA046,NA,,,, +Ae49,,,EA046,NA,,,, +Ae5,,,EA046,NA,,,, +Ae50,,1920,EA046,8,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,,,EA046,NA,,,, +Ae52,,,EA046,NA,,,, +Ae53,,,EA046,NA,,,, +Ae54,,,EA046,NA,,,, +Ae55,,,EA046,NA,,,, +Ae56,,,EA046,NA,,,, +Ae57,,,EA046,NA,,,, +Ae58,,,EA046,NA,,,, +Ae59,,,EA046,NA,,,, +Ae6,,,EA046,NA,,,, +Ae7,,1910,EA046,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA046,8,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,,EA046,NA,,,, +Af1,City and environs of Abomey,1890,EA046,8,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA046,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA046,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA046,NA,,,, +Af13,,,EA046,NA,,,, +Af14,,,EA046,NA,,,, +Af15,,,EA046,NA,,,, +Af16,,,EA046,NA,,,, +Af17,,,EA046,NA,,,, +Af18,,,EA046,NA,,,, +Af19,,,EA046,NA,,,, +Af2,,,EA046,NA,,,, +Af20,,,EA046,NA,,,, +Af21,,,EA046,NA,,,, +Af22,,,EA046,NA,,,, +Af23,with special reference to the village of Mgbom,1950,EA046,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA046,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,,EA046,NA,,,, +Af26,,,EA046,NA,,,, +Af27,,,EA046,NA,,,, +Af28,,1910,EA046,1,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA046,NA,,,, +Af3,,,EA046,NA,,,, +Af30,,,EA046,NA,,,, +Af31,,,EA046,NA,,,, +Af32,,,EA046,NA,,,, +Af33,,,EA046,NA,,,, +Af34,,,EA046,NA,,,, +Af35,,,EA046,NA,,,, +Af36,,,EA046,NA,,,, +Af37,,,EA046,NA,,,, +Af38,,,EA046,NA,,,, +Af39,,,EA046,NA,,,, +Af4,,,EA046,NA,,,, +Af40,,,EA046,NA,,,, +Af41,,,EA046,NA,,,, +Af42,,,EA046,NA,,,, +Af43,,,EA046,NA,,,, +Af44,,,EA046,NA,,,, +Af45,,,EA046,NA,,,, +Af46,,,EA046,NA,,,, +Af47,,,EA046,NA,,,, +Af48,,,EA046,NA,,,, +Af49,,,EA046,NA,,,, +Af5,,1930,EA046,8,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA046,NA,,,, +Af51,,1920,EA046,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,,EA046,NA,,,, +Af53,,,EA046,NA,,,, +Af54,,1930,EA046,8,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA046,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA046,9,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA046,1,But these specialists are aliens of the Yalunka tribe,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA046,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA046,8,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,,EA046,NA,,,, +Af8,,,EA046,NA,,,, +Af9,,,EA046,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA046,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA046,8,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,,EA046,NA,,,, +Ag12,,1910,EA046,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,,EA046,NA,,,, +Ag14,,,EA046,NA,,,, +Ag15,,,EA046,NA,,,, +Ag16,,,EA046,NA,,,, +Ag17,,,EA046,NA,,,, +Ag18,,,EA046,NA,,,, +Ag19,,,EA046,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA046,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA046,NA,,,, +Ag21,,,EA046,NA,,,, +Ag22,with special reference to those of Sine,1920,EA046,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA046,NA,,,, +Ag24,,,EA046,NA,,,, +Ag25,,1900,EA046,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p72, +Ag26,,1930,EA046,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p72, +Ag27,,,EA046,NA,,,, +Ag28,,,EA046,NA,,,, +Ag29,,,EA046,NA,,,, +Ag3,,1930,EA046,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA046,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,,EA046,NA,,,, +Ag32,,1900,EA046,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA046,NA,,,, +Ag34,,,EA046,NA,,,, +Ag35,,,EA046,NA,,,, +Ag36,,,EA046,NA,,,, +Ag37,,,EA046,NA,,,, +Ag38,,,EA046,NA,,,, +Ag39,,,EA046,NA,,,, +Ag4,Tallensi Tribe,1930,EA046,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA046,NA,,,, +Ag41,,1920,EA046,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p72, +Ag42,,,EA046,NA,,,, +Ag43,,,EA046,NA,,,, +Ag44,,,EA046,NA,,,, +Ag45,,,EA046,NA,,,, +Ag46,,,EA046,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA046,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,,EA046,NA,,,, +Ag49,,1930,EA046,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA046,8,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,,EA046,NA,,,, +Ag51,,,EA046,NA,,,, +Ag52,,,EA046,NA,,,, +Ag53,,,EA046,NA,,,, +Ag54,,1910,EA046,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA046,NA,,,, +Ag7,,,EA046,NA,,,, +Ag8,,,EA046,NA,,,, +Ag9,,1930,EA046,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,,,EA046,NA,,,, +Ah10,,,EA046,NA,,,, +Ah11,,,EA046,NA,,,, +Ah12,,,EA046,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA046,8,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA046,8,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah15,,,EA046,NA,,,, +Ah16,,,EA046,NA,,,, +Ah17,,,EA046,NA,,,, +Ah18,,,EA046,NA,,,, +Ah19,,,EA046,NA,,,, +Ah2,,,EA046,NA,,,, +Ah20,,,EA046,NA,,,, +Ah21,,,EA046,NA,,,, +Ah22,,,EA046,NA,,,, +Ah23,,,EA046,NA,,,, +Ah24,,,EA046,NA,,,, +Ah25,,,EA046,NA,,,, +Ah26,,,EA046,NA,,,, +Ah27,,,EA046,NA,,,, +Ah28,,,EA046,NA,,,, +Ah29,,,EA046,NA,,,, +Ah3,Tar of Benue Province,1920,EA046,8,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA046,NA,,,, +Ah31,,,EA046,NA,,,, +Ah32,,,EA046,NA,,,, +Ah33,,,EA046,NA,,,, +Ah34,,,EA046,NA,,,, +Ah35,,,EA046,NA,,,, +Ah36,,1920,EA046,8,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA046,NA,,,, +Ah38,,1930,EA046,8,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA046,8,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA046,NA,,,, +Ah5,,,EA046,NA,,,, +Ah6,,,EA046,NA,,,, +Ah7,,1940,EA046,8,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,,EA046,NA,,,, +Ah9,,1920,EA046,3,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,,EA046,NA,,,, +Ai10,,,EA046,NA,,,, +Ai11,,,EA046,NA,,,, +Ai12,,,EA046,NA,,,, +Ai13,,,EA046,NA,,,, +Ai14,,1920,EA046,9,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,,EA046,NA,,,, +Ai16,,,EA046,NA,,,, +Ai17,,,EA046,NA,,,, +Ai18,,,EA046,NA,,,, +Ai19,,,EA046,NA,,,, +Ai2,,,EA046,NA,,,, +Ai20,,,EA046,NA,,,, +Ai21,,,EA046,NA,,,, +Ai22,,,EA046,NA,,,, +Ai23,,,EA046,NA,,,, +Ai24,,,EA046,NA,,,, +Ai25,,,EA046,NA,,,, +Ai26,,,EA046,NA,,,, +Ai27,,,EA046,NA,,,, +Ai28,,1910,EA046,9,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,,EA046,NA,,,, +Ai3,,1920,EA046,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,,EA046,NA,,,, +Ai31,,1920,EA046,8,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,,EA046,NA,,,, +Ai33,,,EA046,NA,,,, +Ai34,,,EA046,NA,,,, +Ai35,,,EA046,NA,,,, +Ai36,,,EA046,NA,,,, +Ai37,,,EA046,NA,,,, +Ai38,,,EA046,NA,,,, +Ai39,,,EA046,NA,,,, +Ai4,,,EA046,NA,,,, +Ai40,,,EA046,NA,,,, +Ai41,,,EA046,NA,,,, +Ai42,,,EA046,NA,,,, +Ai43,,,EA046,NA,,,, +Ai44,,,EA046,NA,,,, +Ai45,,,EA046,NA,,,, +Ai46,,,EA046,NA,,,, +Ai47,Northern division,1939,EA046,8,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,1920,EA046,8,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA046,8,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,,EA046,NA,,,, +Ai8,,,EA046,NA,,,, +Ai9,,,EA046,NA,,,, +Aj1,,,EA046,NA,,,, +Aj10,,,EA046,NA,,,, +Aj11,,,EA046,NA,,,, +Aj12,,,EA046,NA,,,, +Aj13,,,EA046,NA,,,, +Aj14,,,EA046,NA,,,, +Aj15,,,EA046,NA,,,, +Aj16,with special reference to the Riverain Mondari,1930,EA046,8,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,,EA046,NA,,,, +Aj18,,1950,EA046,1,,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,,EA046,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA046,8,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA046,NA,,,, +Aj21,,1930,EA046,6,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,,EA046,NA,,,, +Aj23,,,EA046,NA,,,, +Aj24,,,EA046,NA,,,, +Aj25,,,EA046,NA,,,, +Aj26,,,EA046,NA,,,, +Aj27,,,EA046,NA,,,, +Aj28,,,EA046,NA,,,, +Aj29,,,EA046,NA,,,, +Aj3,,,EA046,NA,,,, +Aj30,,,EA046,NA,,,, +Aj31,,,EA046,NA,,,, +Aj4,,,EA046,NA,,,, +Aj5,,1920,EA046,6,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA046,8,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA046,6,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,,EA046,NA,,,, +Aj9,,1920,EA046,8,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA046,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA046,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA046,8,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA046,1,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA046,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA046,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA046,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA046,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA046,8,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA046,NA,,,, +Ca19,,,EA046,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA046,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA046,NA,,,, +Ca21,,,EA046,NA,,,, +Ca22,,,EA046,NA,,,, +Ca23,,1950,EA046,1,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA046,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA046,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA046,NA,,,, +Ca27,,,EA046,NA,,,, +Ca28,,1950,EA046,1,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA046,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,,EA046,NA,,,, +Ca30,Kafa Kingdom,1890,EA046,1,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,1860,EA046,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA046,8,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA046,8,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA046,NA,,,, +Ca35,,,EA046,NA,,,, +Ca36,,,EA046,NA,,,, +Ca37,,,EA046,NA,,,, +Ca38,,,EA046,NA,,,, +Ca39,,1930,EA046,1,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,1950,EA046,8,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA046,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA046,1,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,,EA046,NA,,,, +Ca43,,,EA046,NA,,,, +Ca5,,1930,EA046,8,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p80, +Ca6,,,EA046,NA,,,, +Ca7,Gondar district,1950,EA046,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA046,NA,,,, +Ca9,,,EA046,NA,,,, +Cb1,,,EA046,NA,,,, +Cb10,,,EA046,NA,,,, +Cb11,,,EA046,NA,,,, +Cb12,,,EA046,NA,,,, +Cb13,,,EA046,NA,,,, +Cb14,,,EA046,NA,,,, +Cb15,,,EA046,NA,,,, +Cb16,,,EA046,NA,,,, +Cb17,,,EA046,NA,,,, +Cb18,,,EA046,NA,,,, +Cb19,,1870,EA046,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p80, +Cb2,Upper and lower Salum in Gambia,1950,EA046,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,,EA046,NA,,,, +Cb21,,,EA046,NA,,,, +Cb22,,,EA046,NA,,,, +Cb23,,1930,EA046,1,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,Wodaabe of Niger,1950,EA046,8,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p84, +Cb25,,,EA046,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA046,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA046,NA,,,, +Cb28,,,EA046,NA,,,, +Cb29,,,EA046,NA,,,, +Cb3,Bamba division,1940,EA046,6,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA046,NA,,,, +Cb5,,,EA046,NA,,,, +Cb6,,,EA046,NA,,,, +Cb7,,,EA046,NA,,,, +Cb8,,,EA046,NA,,,, +Cb9,,,EA046,NA,,,, +Cc1,,1950,EA046,8,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA046,6,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA046,NA,,,, +Cc12,,,EA046,NA,,,, +Cc13,,,EA046,NA,,,, +Cc14,,1880,EA046,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA046,NA,,,, +Cc16,,1930,EA046,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA046,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA046,NA,,,, +Cc19,,,EA046,NA,,,, +Cc2,Nomads of Tibesti,1950,EA046,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA046,8,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA046,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA046,8,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA046,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA046,NA,,,, +Cc7,,,EA046,NA,,,, +Cc8,,,EA046,NA,,,, +Cc9,Ahaggaren tribe,1920,EA046,6,But rare,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,,,EA046,NA,,,, +Cd10,,,EA046,NA,,,, +Cd11,,,EA046,NA,,,, +Cd12,,1870,EA046,8,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA046,NA,,,, +Cd14,,,EA046,NA,,,, +Cd15,,,EA046,NA,,,, +Cd16,,,EA046,NA,,,, +Cd17,,,EA046,NA,,,, +Cd18,,,EA046,NA,,,, +Cd19,,,EA046,NA,,,, +Cd2,Town and environs of Silwa,1950,EA046,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA046,NA,,,, +Cd21,,,EA046,NA,,,, +Cd3,Entirety: Moroccan,1920,EA046,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA046,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA046,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,,,EA046,NA,,,, +Cd7,,,EA046,NA,,,, +Cd8,,,EA046,NA,,,, +Cd9,,,EA046,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA046,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA046,NA,,,, +Ce3,City and environs of Rome,100,EA046,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA046,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA046,2,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA046,1,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,,,EA046,NA,,,, +Ce8,,,EA046,NA,,,, +Cf1,Small City in Connecticut,1920,EA046,7,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA046,NA,,,, +Cf3,,1930,EA046,1,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA046,1,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA046,7,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA046,7,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,,EA046,NA,,,, +Cg3,,,EA046,NA,,,, +Cg4,Konkama District,1950,EA046,6,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA046,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA046,8,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA046,NA,,,, +Ch11,,,EA046,NA,,,, +Ch2,,1890,EA046,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA046,7,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,1900,EA046,8,,heffner1955; wichmann1913,EthnographicAtlas_1967_p84, +Ch5,with special reference to the village of Dragelevtsy,1940,EA046,8,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,,EA046,NA,,,, +Ch7,,,EA046,NA,,,, +Ch8,,,EA046,NA,,,, +Ch9,,1930,EA046,8,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA046,6,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA046,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA046,8,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA046,6,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA046,NA,,,, +Ci3,,,EA046,NA,,,, +Ci4,,,EA046,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA046,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA046,8,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p84, +Ci7,,1900,EA046,8,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p84, +Ci8,,,EA046,NA,,,, +Ci9,,,EA046,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA046,8,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,,,EA046,NA,,,, +Cj2,Unspecified,1920,EA046,6,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA046,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA046,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,,EA046,NA,,,, +Cj6,,,EA046,NA,,,, +Cj7,,,EA046,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA046,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,1950,EA046,1,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA046,1,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,with special reference to the more nomadic groups,1950,EA046,8,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA046,NA,,,, +Ea12,,1940,EA046,8,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,,,EA046,NA,,,, +Ea2,,,EA046,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA046,6,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA046,8,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA046,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA046,8,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,,EA046,NA,,,, +Ea8,,,EA046,NA,,,, +Ea9,,1950,EA046,8,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA046,8,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA046,8,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA046,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA046,NA,,,, +Eb5,,,EA046,NA,,,, +Eb6,,,EA046,NA,,,, +Eb7,,1930,EA046,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA046,NA,,,, +Ec1,Sakhalin Island,1920,EA046,6,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA046,8,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,,EA046,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA046,6,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA046,6,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA046,6,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA046,6,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,,,EA046,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA046,4,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA046,NA,,,, +Ec9,,,EA046,NA,,,, +Ed1,Kanghwa Island,1950,EA046,8,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,,,EA046,NA,,,, +Ed13,,,EA046,NA,,,, +Ed14,,,EA046,NA,,,, +Ed15a,,,EA046,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA046,9,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA046,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA046,8,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,,,EA046,NA,,,, +Ed4,,,EA046,NA,,,, +Ed5,,,EA046,NA,,,, +Ed6,,,EA046,NA,,,, +Ed7,,,EA046,NA,,,, +Ed8,,1930,EA046,8,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA046,1,But very unimportant,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA046,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA046,8,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA046,8,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA046,8,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA046,8,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA046,2,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA046,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA046,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,,,EA046,NA,,,, +Ef10,,,EA046,NA,,,, +Ef11,Village and environs of Senapur,1945,EA046,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA046,2,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA046,NA,,,, +Ef4,,,EA046,NA,,,, +Ef5,,1900,EA046,8,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,,EA046,NA,,,, +Ef7,,,EA046,NA,,,, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA046,4,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA046,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA046,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA046,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA046,NA,,,, +Eg12,,,EA046,NA,,,, +Eg13,,,EA046,NA,,,, +Eg14,,,EA046,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA046,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,,,EA046,NA,,,, +Eg4,,,EA046,NA,,,, +Eg5,,,EA046,NA,,,, +Eg6,,,EA046,NA,,,, +Eg7,,,EA046,NA,,,, +Eg8,,,EA046,NA,,,, +Eg9,,,EA046,NA,,,, +Eh1,,1870,EA046,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA046,NA,,,, +Eh2,,1900,EA046,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA046,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA046,8,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,,,EA046,NA,,,, +Eh6,,,EA046,NA,,,, +Eh7,,,EA046,NA,,,, +Eh8,,1900,EA046,8,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA046,NA,,,, +Ei1,Rengsanggr,1900,EA046,9,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA046,NA,,,, +Ei11,,,EA046,NA,,,, +Ei12,,,EA046,NA,,,, +Ei13,,1910,EA046,9,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA046,9,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA046,NA,,,, +Ei16,,,EA046,NA,,,, +Ei17,,,EA046,NA,,,, +Ei18,,,EA046,NA,,,, +Ei19,,,EA046,NA,,,, +Ei2,,1920,EA046,9,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA046,NA,,,, +Ei3,,,EA046,NA,,,, +Ei4,Lakher Tribe,1930,EA046,9,,parry1932,EthnographicAtlas_1967_p92, +Ei5,,,EA046,NA,,,, +Ei6,,1930,EA046,9,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,,EA046,NA,,,, +Ei8,with special reference to those of the Jaintia Hills,1900,EA046,8,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,,EA046,NA,,,, +Ej1,,,EA046,NA,,,, +Ej10,Ko-Sier Village,1950,EA046,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA046,NA,,,, +Ej12,,,EA046,NA,,,, +Ej13,,,EA046,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA046,9,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA046,NA,,,, +Ej16,,,EA046,NA,,,, +Ej2,,,EA046,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA046,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,,,EA046,NA,,,, +Ej5,,,EA046,NA,,,, +Ej6,,,EA046,NA,,,, +Ej7,,,EA046,NA,,,, +Ej8,,,EA046,NA,,,, +Ej9,,,EA046,NA,,,, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA046,8,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,,EA046,NA,,,, +Ia11,,1930,EA046,8,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,,EA046,NA,,,, +Ia13,,,EA046,NA,,,, +Ia14,,,EA046,NA,,,, +Ia15,,,EA046,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA046,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA046,NA,,,, +Ia18,,,EA046,NA,,,, +Ia2,,1950,EA046,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA046,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,,,EA046,NA,,,, +Ia5,,,EA046,NA,,,, +Ia6,Su-Paiwan Village,1930,EA046,8,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA046,NA,,,, +Ia8,,,EA046,NA,,,, +Ia9,,,EA046,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA046,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA046,9,"For rural Java, but leather work is produced by urban craftsmen, mainly Chinese",dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA046,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,,,EA046,NA,,,, +Ib5,,,EA046,NA,,,, +Ib6,,,EA046,NA,,,, +Ib7,with special reference to those of North Pageh,1920,EA046,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,,,EA046,NA,,,, +Ib9,,,EA046,NA,,,, +Ic1,,,EA046,NA,,,, +Ic10,,,EA046,NA,,,, +Ic11,,,EA046,NA,,,, +Ic12,,,EA046,NA,,,, +Ic13,,,EA046,NA,,,, +Ic2,,,EA046,NA,,,, +Ic3,,,EA046,NA,,,, +Ic4,,,EA046,NA,,,, +Ic5,Bare'e subgroup,1910,EA046,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,,EA046,NA,,,, +Ic7,,,EA046,NA,,,, +Ic8,,,EA046,NA,,,, +Ic9,,,EA046,NA,,,, +Id1,Alice Springs and environs,1900,EA046,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA046,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA046,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA046,NA,,,, +Id13,,1930,EA046,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA046,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,,,EA046,NA,,,, +Id4,,1900,EA046,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA046,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA046,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,,EA046,NA,,,, +Id8,,1830,EA046,9,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA046,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA046,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA046,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA046,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA046,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA046,NA,,,, +Ie14,,,EA046,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA046,9,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA046,NA,,,, +Ie17,,,EA046,NA,,,, +Ie18,Bamol Village,1940,EA046,9,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA046,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,,EA046,NA,,,, +Ie20,,1900,EA046,9,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,,EA046,NA,,,, +Ie22,,1900,EA046,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,,EA046,NA,,,, +Ie24,,1870,EA046,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA046,9,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA046,9,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,,EA046,NA,,,, +Ie28,,,EA046,NA,,,, +Ie29,,,EA046,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA046,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA046,NA,,,, +Ie31,,1950,EA046,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA046,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA046,NA,,,, +Ie34,,,EA046,NA,,,, +Ie35,,,EA046,NA,,,, +Ie36,,,EA046,NA,,,, +Ie37,,,EA046,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA046,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA046,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA046,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA046,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,,EA046,NA,,,, +Ie7,with special reference to the Mae group,1950,EA046,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,,,EA046,NA,,,, +Ie9,,1920,EA046,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,,,EA046,NA,,,, +If10,,,EA046,NA,,,, +If11,,1860,EA046,9,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA046,9,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA046,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA046,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA046,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA046,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA046,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA046,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA046,9,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA046,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA046,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA046,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA046,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA046,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA046,9,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA046,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA046,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA046,9,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,,,EA046,NA,,,, +Ig13,,,EA046,NA,,,, +Ig14,,1900,EA046,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA046,NA,,,, +Ig16,,,EA046,NA,,,, +Ig17,,,EA046,NA,,,, +Ig18,,,EA046,NA,,,, +Ig19,,,EA046,NA,,,, +Ig2,Kiriwina Island,1910,EA046,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,,,EA046,NA,,,, +Ig21,,,EA046,NA,,,, +Ig3,,1930,EA046,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA046,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,,EA046,NA,,,, +Ig6,,1900,EA046,9,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,,EA046,NA,,,, +Ig8,,,EA046,NA,,,, +Ig9,,,EA046,NA,,,, +Ih1,,,EA046,NA,,,, +Ih10,,,EA046,NA,,,, +Ih11,,,EA046,NA,,,, +Ih12,,,EA046,NA,,,, +Ih13,,,EA046,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA046,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA046,9,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA046,NA,,,, +Ih4,Lau Island,1920,EA046,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA046,NA,,,, +Ih6,,,EA046,NA,,,, +Ih7,,,EA046,NA,,,, +Ih8,with special reference to the village of Nakaroka,1940,EA046,9,,quain1949,EthnographicAtlas_1967_p100, +Ih9,,,EA046,NA,,,, +Ii1,with special reference to American Samoa,1920,EA046,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA046,NA,,,, +Ii12,Pangai,1920,EA046,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA046,9,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA046,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA046,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA046,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA046,9,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA046,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA046,9,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA046,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA046,9,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA046,9,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA046,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA046,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA046,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA046,8,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA046,9,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA046,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA046,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA046,9,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA046,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA046,9,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA046,6,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA046,6,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA046,6,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA046,6,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA046,6,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA046,6,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA046,6,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA046,6,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA046,6,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA046,5,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA046,6,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA046,6,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA046,9,"Men scrape and women chew skins, but the preparation is strictly mechanical",birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA046,5,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA046,6,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA046,6,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA046,6,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA046,6,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA046,6,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA046,6,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA046,6,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA046,6,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA046,6,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA046,6,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA046,6,"In Murdock (1964a) coded as 'equal participation' (EA046 code ""4"") with the comment ""Entry follows Lips; Burgesse reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9""). In EA the entry is 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA046,6,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA046,6,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA046,6,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA046,6,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA046,6,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA046,8,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA046,6,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA046,6,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,,EA046,NA,,,, +Na41,Mainland division,1700,EA046,8,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA046,8,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA046,6,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA046,NA,,,, +Na45,,1900,EA046,6,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA046,6,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA046,5,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA046,6,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA046,6,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA046,6,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA046,6,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,,EA046,NA,,,, +Nb11,with special reference to the Central Nootka,1880,EA046,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA046,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA046,4,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA046,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA046,6,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA046,6,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA046,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA046,6,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA046,6,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA046,5,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,,EA046,NA,,,, +Nb21,,1860,EA046,6,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA046,6,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA046,4,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA046,6,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA046,8,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA046,4,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA046,8,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,,EA046,NA,,,, +Nb29,,,EA046,NA,,,, +Nb3,,,EA046,NA,,,, +Nb30,,1860,EA046,8,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,,EA046,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA046,2,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA046,8,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA046,8,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA046,8,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA046,8,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA046,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA046,4,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA046,3,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA046,2,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA046,6,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA046,8,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,,EA046,NA,,,, +Nb8,,1880,EA046,8,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,,,EA046,NA,,,, +Nc1,,1850,EA046,2,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA046,1,"Entry follows Voegelin; Stewart reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA046,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA046,1,"Entry follows Voegelin; Dixon reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA046,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA046,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA046,8,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,,EA046,NA,,,, +Nc17,with special reference to those of Kalekau,1860,EA046,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA046,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA046,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA046,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA046,9,Skins were scraped but not actually tanned,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,,EA046,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA046,6,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA046,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA046,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA046,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA046,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA046,1,,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA046,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA046,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,,,EA046,NA,,,, +Nc30,,1870,EA046,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA046,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA046,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA046,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,,EA046,NA,,,, +Nc4,,1860,EA046,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,,,EA046,NA,,,, +Nc6,with special reference to the Southern Diegueno,1850,EA046,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA046,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA046,6,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA046,4,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA046,8,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA046,5,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA046,5,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA046,6,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA046,6,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA046,6,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA046,6,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA046,6,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA046,6,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA046,8,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA046,6,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA046,6,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA046,6,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA046,4,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA046,6,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA046,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA046,5,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA046,4,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA046,4,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA046,2,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA046,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA046,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA046,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,,EA046,NA,,,, +Nd31,,1850,EA046,8,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA046,5,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA046,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA046,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA046,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA046,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA046,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA046,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA046,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA046,6,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA046,6,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA046,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA046,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA046,4,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA046,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA046,6,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA046,6,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA046,6,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA046,6,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA046,6,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA046,8,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA046,4,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA046,8,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA046,6,"Entry follows Stewart; Drucker reports 'males alone' (EA046 code ""1""), with no specialization specified (EA057 code ""9"")",drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA046,6,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA046,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA046,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA046,1,"Entry follows Kelly; Stewart reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA046,5,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA046,6,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA046,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA046,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA046,6,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA046,6,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA046,6,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA046,6,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA046,6,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA046,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA046,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA046,1,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA046,6,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA046,5,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA046,4,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA046,6,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA046,6,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA046,6,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA046,6,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA046,6,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA046,6,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA046,6,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA046,8,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA046,8,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA046,6,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA046,6,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA046,6,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA046,8,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA046,NA,,,, +Ne3,Comanche Tribe,1870,EA046,6,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA046,6,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA046,6,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,,EA046,NA,,,, +Ne7,,1880,EA046,6,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA046,6,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA046,6,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA046,6,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA046,6,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA046,6,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA046,6,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA046,6,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA046,NA,,,, +Nf2,,1850,EA046,6,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA046,6,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA046,6,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,,EA046,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA046,6,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA046,6,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA046,5,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA046,6,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA046,6,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA046,8,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA046,8,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA046,6,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA046,NA,,,, +Ng14,,,EA046,NA,,,, +Ng15,,,EA046,NA,,,, +Ng2,,,EA046,NA,,,, +Ng3,Upper division in Alabama,1750,EA046,6,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA046,NA,,,, +Ng5,,,EA046,NA,,,, +Ng6,with special reference to the Munsee,1700,EA046,6,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA046,6,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,,EA046,NA,,,, +Ng9,,,EA046,NA,,,, +Nh1,Central band,1880,EA046,6,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA046,NA,,,, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA046,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA046,8,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,,EA046,NA,,,, +Nh14,,,EA046,NA,,,, +Nh15,,1870,EA046,6,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA046,6,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA046,6,"But in some bands: 'males alone' (EA046 code ""1""), with no specialization specified (EA057 code ""9"")",gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA046,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA046,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,,EA046,NA,,,, +Nh20,,,EA046,NA,,,, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA046,4,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA046,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA046,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA046,6,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA046,8,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA046,NA,,,, +Nh27,,,EA046,NA,,,, +Nh3,,1930,EA046,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,,,EA046,NA,,,, +Nh5,,1850,EA046,1,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,,EA046,NA,,,, +Nh7,,,EA046,NA,,,, +Nh8,,,EA046,NA,,,, +Nh9,,,EA046,NA,,,, +Ni1,,1930,EA046,3,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA046,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA046,8,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,,EA046,NA,,,, +Ni5,,1570,EA046,1,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA046,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA046,1,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA046,NA,,,, +Ni9,,,EA046,NA,,,, +Nj1,,,EA046,NA,,,, +Nj10,,,EA046,NA,,,, +Nj11,,,EA046,NA,,,, +Nj12,,,EA046,NA,,,, +Nj13,,,EA046,NA,,,, +Nj14,,,EA046,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA046,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,,,EA046,NA,,,, +Nj4,,,EA046,NA,,,, +Nj5,,,EA046,NA,,,, +Nj6,,,EA046,NA,,,, +Nj7,with special reference to Ayutla,1930,EA046,6,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA046,NA,,,, +Nj9,,1960,EA046,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,,,EA046,NA,,,, +Sa10,,1900,EA046,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA046,NA,,,, +Sa12,,1948,EA046,8,,stone1948,EthnographicAtlas_1967_p120, +Sa13,,,EA046,NA,,,, +Sa14,,,EA046,NA,,,, +Sa15,,,EA046,NA,,,, +Sa16,,,EA046,NA,,,, +Sa17,,,EA046,NA,,,, +Sa2,,,EA046,NA,,,, +Sa3,,1930,EA046,1,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,,,EA046,NA,,,, +Sa5,,1950,EA046,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,,EA046,NA,,,, +Sa7,,1940,EA046,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA046,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA046,8,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,,,EA046,NA,,,, +Sb2,,,EA046,NA,,,, +Sb3,,,EA046,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA046,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA046,NA,,,, +Sb6,Goajiro Tribe,1940,EA046,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA046,9,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA046,9,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA046,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA046,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA046,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA046,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA046,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA046,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA046,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA046,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA046,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA046,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA046,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,,EA046,NA,,,, +Sc3,Barama River,1930,EA046,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA046,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,,EA046,NA,,,, +Sc6,,,EA046,NA,,,, +Sc7,,1950,EA046,9,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,,EA046,NA,,,, +Sc9,,1950,EA046,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,,,EA046,NA,,,, +Sd2,,1930,EA046,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA046,9,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,,EA046,NA,,,, +Sd5,,,EA046,NA,,,, +Sd6,,1960,EA046,9,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,,EA046,NA,,,, +Sd8,,1950,EA046,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA046,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA046,9,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA046,NA,,,, +Se11,,1960,EA046,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA046,NA,,,, +Se2,,,EA046,NA,,,, +Se3,,1930,EA046,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA046,8,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA046,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA046,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA046,NA,,,, +Se8,Upper Inuya River,1950,EA046,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA046,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA046,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA046,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,,,EA046,NA,,,, +Sf4,,,EA046,NA,,,, +Sf5,,,EA046,NA,,,, +Sf6,,,EA046,NA,,,, +Sf7,,,EA046,NA,,,, +Sf8,,,EA046,NA,,,, +Sf9,,,EA046,NA,,,, +Sg1,Eastern and central,1870,EA046,6,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA046,5,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA046,6,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA046,6,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA046,9,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA046,6,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA046,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA046,6,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA046,1,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA046,6,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA046,9,But there was no actual tanning,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA046,1,But tanning is not aboriginal,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124,"Assume Murdock comment meant for Col 46, not Col 47 as stated Gray (1999)" +Sh8,with special reference to those of the Argentine Chaco,1964,EA046,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA046,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,,,EA046,NA,,,, +Si10,,1950,EA046,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,,,EA046,NA,,,, +Si3,Simao Lopes,1940,EA046,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA046,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,,EA046,NA,,,, +Si6,,,EA046,NA,,,, +Si7,,,EA046,NA,,,, +Si8,,,EA046,NA,,,, +Si9,,,EA046,NA,,,, +Sj1,,,EA046,NA,,,, +Sj10,Taquapiri,1950,EA046,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,,,EA046,NA,,,, +Sj2,,,EA046,NA,,,, +Sj3,,,EA046,NA,,,, +Sj4,Ramcocamecra or Canella,1930,EA046,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,,,EA046,NA,,,, +Sj6,,,EA046,NA,,,, +Sj7,,,EA046,NA,,,, +Sj8,Hinterland of Rio de Janeiro,1600,EA046,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,,EA046,NA,,,, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA046,3,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA046,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA046,8,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA046,8,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA046,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA046,8,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,,,EA046,NA,,,, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA046,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA046,5,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA046,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,,,EA046,NA,,,, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA046,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA046,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA046,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA046,8,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA046,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA046,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA046,6,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA046,6,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA046,6,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA046,6,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA046,6,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA046,6,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA046,6,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA046,6,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA046,6,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA046,6,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA047,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA047,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA047,6,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA047,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA047,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA047,NA,,,, +Aa7,,1910,EA047,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA047,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA047,NA,,,, +Ab1,,,EA047,NA,,,, +Ab10,,1936,EA047,6,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA047,6,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA047,6,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA047,6,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA047,6,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA047,6,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA047,NA,,,, +Ab17,,,EA047,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA047,6,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA047,6,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,,EA047,NA,,,, +Ab20,,,EA047,NA,,,, +Ab21a,,,EA047,NA,,,, +Ab21b,,,EA047,NA,,,, +Ab22,,,EA047,NA,,,, +Ab3,Ruling Luyana,1890,EA047,6,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA047,6,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA047,6,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA047,6,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA047,NA,,,, +Ab8,Basuto,1860,EA047,6,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA047,6,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA047,6,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA047,6,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA047,8,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,1920,EA047,8,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p64, +Ac13,,1950,EA047,8,,tew1950; velsen1964,EthnographicAtlas_1967_p64, +Ac14,,,EA047,NA,,,, +Ac15,,,EA047,NA,,,, +Ac16,,,EA047,NA,,,, +Ac17,Feshi territory lineage center,1910,EA047,6,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA047,5,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA047,NA,,,, +Ac2,,,EA047,NA,,,, +Ac20,,,EA047,NA,,,, +Ac21,,,EA047,NA,,,, +Ac22,,,EA047,NA,,,, +Ac23,with special reference to the western Lele,1950,EA047,6,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA047,NA,,,, +Ac25,,,EA047,NA,,,, +Ac26,,,EA047,NA,,,, +Ac27,,,EA047,NA,,,, +Ac28,,1930,EA047,8,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA047,NA,,,, +Ac3,Zambia branch,1900,EA047,6,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA047,6,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA047,8,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA047,NA,,,, +Ac33,,1940,EA047,6,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,1940,EA047,6,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA047,NA,,,, +Ac36,,,EA047,NA,,,, +Ac37,,,EA047,NA,,,, +Ac38,,1910,EA047,6,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA047,6,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA047,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA047,NA,,,, +Ac41,,,EA047,NA,,,, +Ac42,,,EA047,NA,,,, +Ac43,,,EA047,NA,,,, +Ac5,,1920,EA047,6,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,,EA047,NA,,,, +Ac7,,1920,EA047,6,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA047,6,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA047,6,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA047,9,Despised as slave occupation,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA047,6,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA047,6,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA047,NA,,,, +Ad13,,1930,EA047,6,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,Morogoro District,1930,EA047,6,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p68, +Ad15,,,EA047,NA,,,, +Ad16,,1920,EA047,8,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA047,6,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA047,NA,,,, +Ad19,,1910,EA047,6,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA047,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA047,6,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,,EA047,NA,,,, +Ad22,,1950,EA047,6,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA047,NA,,,, +Ad24,,1910,EA047,6,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA047,NA,,,, +Ad26,,1910,EA047,6,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,1880,EA047,8,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA047,8,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA047,1,Formerly,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA047,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA047,8,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,1910,EA047,8,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA047,8,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p68, +Ad33,,,EA047,NA,,,, +Ad34,,1910,EA047,6,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA047,6,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA047,NA,,,, +Ad37,,,EA047,NA,,,, +Ad38,,,EA047,NA,,,, +Ad39,,1950,EA047,6,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA047,6,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA047,NA,,,, +Ad41,,,EA047,NA,,,, +Ad42,,,EA047,NA,,,, +Ad43,,,EA047,NA,,,, +Ad44,,1920,EA047,8,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,1920,EA047,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,1950,EA047,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA047,6,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA047,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA047,NA,,,, +Ad5,,,EA047,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA047,8,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA047,6,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA047,8,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA047,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,,,EA047,NA,,,, +Ad9,,1900,EA047,5,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA047,6,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA047,6,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA047,6,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA047,8,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA047,NA,,,, +Ae14,,1950,EA047,1,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,,EA047,NA,,,, +Ae16,,,EA047,NA,,,, +Ae17,,1900,EA047,6,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA047,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA047,NA,,,, +Ae2,,1950,EA047,8,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA047,NA,,,, +Ae21,,,EA047,NA,,,, +Ae22,,,EA047,NA,,,, +Ae23,,,EA047,NA,,,, +Ae24,,,EA047,NA,,,, +Ae25,,,EA047,NA,,,, +Ae26,,,EA047,NA,,,, +Ae27,,,EA047,NA,,,, +Ae28,,1900,EA047,6,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,1900,EA047,6,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA047,6,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA047,NA,,,, +Ae31,,1920,EA047,8,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA047,NA,,,, +Ae33,,1920,EA047,8,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA047,NA,,,, +Ae35,,,EA047,NA,,,, +Ae36,,,EA047,NA,,,, +Ae37,,,EA047,NA,,,, +Ae38,,,EA047,NA,,,, +Ae39,,1920,EA047,9,"But in some villages probably present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA047,6,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA047,NA,,,, +Ae41,,1940,EA047,6,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA047,NA,,,, +Ae43,,,EA047,NA,,,, +Ae44,,,EA047,NA,,,, +Ae45,,,EA047,NA,,,, +Ae46,,,EA047,NA,,,, +Ae47,,,EA047,NA,,,, +Ae48,,1930,EA047,5,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae49,,,EA047,NA,,,, +Ae5,,1910,EA047,6,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA047,6,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA047,6,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,1950,EA047,5,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,,EA047,NA,,,, +Ae54,,,EA047,NA,,,, +Ae55,,1950,EA047,6,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,1950,EA047,6,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae57,,,EA047,NA,,,, +Ae58,,,EA047,NA,,,, +Ae59,,,EA047,NA,,,, +Ae6,,,EA047,NA,,,, +Ae7,,1910,EA047,6,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA047,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA047,6,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA047,6,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA047,6,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA047,6,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA047,NA,,,, +Af13,,1920,EA047,8,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,,EA047,NA,,,, +Af15,,1920,EA047,6,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA047,NA,,,, +Af17,,,EA047,NA,,,, +Af18,,,EA047,NA,,,, +Af19,,,EA047,NA,,,, +Af2,,1950,EA047,6,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA047,8,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA047,NA,,,, +Af22,,1940,EA047,6,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,with special reference to the village of Mgbom,1950,EA047,6,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA047,8,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA047,8,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA047,NA,,,, +Af27,,,EA047,NA,,,, +Af28,,1910,EA047,6,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA047,NA,,,, +Af3,Kumasi State,1900,EA047,6,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA047,NA,,,, +Af31,,,EA047,NA,,,, +Af32,Abeouta Province and Benin,1920,EA047,6,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA047,6,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA047,NA,,,, +Af35,,,EA047,NA,,,, +Af36,with special reference to the Glidyi,1900,EA047,6,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA047,NA,,,, +Af38,,,EA047,NA,,,, +Af39,,,EA047,NA,,,, +Af4,,,EA047,NA,,,, +Af40,,,EA047,NA,,,, +Af41,,,EA047,NA,,,, +Af42,,1900,EA047,6,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,,EA047,NA,,,, +Af44,,,EA047,NA,,,, +Af45,,,EA047,NA,,,, +Af46,,,EA047,NA,,,, +Af47,,,EA047,NA,,,, +Af48,,,EA047,NA,,,, +Af49,,1940,EA047,6,,schwab1947,EthnographicAtlas_1967_p72, +Af5,,1930,EA047,6,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA047,NA,,,, +Af51,,1920,EA047,1,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA047,6,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA047,NA,,,, +Af54,,1930,EA047,6,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA047,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA047,6,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA047,6,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA047,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA047,6,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,1950,EA047,8,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,1930,EA047,6,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,,EA047,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA047,6,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA047,6,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA047,6,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA047,6,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,1910,EA047,6,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p72, +Ag14,,,EA047,NA,,,, +Ag15,,,EA047,NA,,,, +Ag16,,,EA047,NA,,,, +Ag17,,,EA047,NA,,,, +Ag18,,,EA047,NA,,,, +Ag19,,,EA047,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA047,6,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA047,NA,,,, +Ag21,,1910,EA047,6,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,,,EA047,NA,,,, +Ag23,,,EA047,NA,,,, +Ag24,,,EA047,NA,,,, +Ag25,,,EA047,NA,,,, +Ag26,,1930,EA047,8,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p72, +Ag27,,,EA047,NA,,,, +Ag28,,,EA047,NA,,,, +Ag29,,,EA047,NA,,,, +Ag3,,,EA047,NA,,,, +Ag30,,1910,EA047,6,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,1910,EA047,6,,cheron1913; holas1957,EthnographicAtlas_1967_p72, +Ag32,,1900,EA047,6,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA047,NA,,,, +Ag34,,,EA047,NA,,,, +Ag35,,,EA047,NA,,,, +Ag36,,,EA047,NA,,,, +Ag37,,,EA047,NA,,,, +Ag38,,,EA047,NA,,,, +Ag39,,1910,EA047,6,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA047,6,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA047,NA,,,, +Ag41,,1920,EA047,6,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p72, +Ag42,,,EA047,NA,,,, +Ag43,,,EA047,NA,,,, +Ag44,,,EA047,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA047,6,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA047,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA047,5,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA047,6,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,1930,EA047,6,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA047,6,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,1910,EA047,6,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA047,NA,,,, +Ag52,,,EA047,NA,,,, +Ag53,with special reference to those of Garango,1960,EA047,5,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA047,6,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA047,NA,,,, +Ag7,,,EA047,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA047,6,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,,EA047,NA,,,, +Ah1,Zaria Province,1930,EA047,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA047,NA,,,, +Ah11,,1950,EA047,6,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA047,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA047,6,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA047,8,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah15,,1920,EA047,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA047,NA,,,, +Ah17,,,EA047,NA,,,, +Ah18,,,EA047,NA,,,, +Ah19,,1930,EA047,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p76, +Ah2,,1920,EA047,6,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,1920,EA047,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA047,NA,,,, +Ah22,,,EA047,NA,,,, +Ah23,,,EA047,NA,,,, +Ah24,,,EA047,NA,,,, +Ah25,,,EA047,NA,,,, +Ah26,,,EA047,NA,,,, +Ah27,,,EA047,NA,,,, +Ah28,,,EA047,NA,,,, +Ah29,,,EA047,NA,,,, +Ah3,Tar of Benue Province,1920,EA047,6,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA047,NA,,,, +Ah31,,,EA047,NA,,,, +Ah32,,,EA047,NA,,,, +Ah33,,,EA047,NA,,,, +Ah34,,,EA047,NA,,,, +Ah35,,,EA047,NA,,,, +Ah36,,1920,EA047,6,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA047,NA,,,, +Ah38,,1930,EA047,6,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA047,6,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA047,NA,,,, +Ah5,,,EA047,NA,,,, +Ah6,,,EA047,NA,,,, +Ah7,,1940,EA047,6,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA047,8,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA047,6,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA047,6,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA047,6,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA047,6,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA047,NA,,,, +Ai13,,,EA047,NA,,,, +Ai14,,1920,EA047,6,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,1900,EA047,8,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA047,NA,,,, +Ai17,,1930,EA047,8,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA047,6,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA047,NA,,,, +Ai2,,,EA047,NA,,,, +Ai20,,,EA047,NA,,,, +Ai21,,,EA047,NA,,,, +Ai22,,,EA047,NA,,,, +Ai23,,1920,EA047,6,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA047,NA,,,, +Ai25,,1950,EA047,6,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA047,6,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA047,NA,,,, +Ai28,,1910,EA047,6,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA047,6,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA047,6,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA047,6,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,1920,EA047,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA047,6,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p76, +Ai33,,,EA047,NA,,,, +Ai34,,,EA047,NA,,,, +Ai35,,1870,EA047,6,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA047,6,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA047,NA,,,, +Ai38,,1930,EA047,6,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA047,6,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA047,NA,,,, +Ai40,,1940,EA047,6,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA047,6,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA047,6,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA047,6,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,1920,EA047,8,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p76, +Ai45,,,EA047,NA,,,, +Ai46,,,EA047,NA,,,, +Ai47,Northern division,1939,EA047,6,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,1920,EA047,8,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA047,6,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA047,6,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA047,6,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA047,6,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,,EA047,NA,,,, +Aj10,,,EA047,NA,,,, +Aj11,,,EA047,NA,,,, +Aj12,,,EA047,NA,,,, +Aj13,,1930,EA047,6,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA047,NA,,,, +Aj15,,1900,EA047,6,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA047,8,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA047,6,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,,EA047,NA,,,, +Aj19,,,EA047,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA047,6,A very few women made pottery,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA047,NA,,,, +Aj21,,1930,EA047,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,1930,EA047,8,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA047,9,The products are obtained by trade from the Hill Suk,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA047,6,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA047,6,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA047,6,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA047,NA,,,, +Aj28,,,EA047,NA,,,, +Aj29,,,EA047,NA,,,, +Aj3,,1930,EA047,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA047,NA,,,, +Aj31,,,EA047,NA,,,, +Aj4,,1920,EA047,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA047,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA047,6,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA047,6,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA047,8,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA047,6,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA047,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA047,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA047,8,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA047,8,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA047,8,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA047,6,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,,EA047,NA,,,, +Ca16,,1930,EA047,6,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA047,9,Products obtained by trade with neighboring tribes,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA047,NA,,,, +Ca19,,1950,EA047,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA047,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA047,NA,,,, +Ca21,,1950,EA047,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA047,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA047,6,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA047,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA047,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA047,NA,,,, +Ca27,,,EA047,NA,,,, +Ca28,,1950,EA047,5,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA047,6,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,,EA047,NA,,,, +Ca30,Kafa Kingdom,1890,EA047,6,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,1860,EA047,6,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA047,6,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA047,6,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA047,NA,,,, +Ca35,,,EA047,NA,,,, +Ca36,,,EA047,NA,,,, +Ca37,,,EA047,NA,,,, +Ca38,,,EA047,NA,,,, +Ca39,,1930,EA047,6,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,,EA047,NA,,,, +Ca40,,1950,EA047,6,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA047,6,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA047,6,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA047,NA,,,, +Ca5,,,EA047,NA,,,, +Ca6,,,EA047,NA,,,, +Ca7,Gondar district,1950,EA047,6,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA047,NA,,,, +Ca9,,,EA047,NA,,,, +Cb1,,,EA047,NA,,,, +Cb10,,,EA047,NA,,,, +Cb11,,,EA047,NA,,,, +Cb12,,,EA047,NA,,,, +Cb13,,,EA047,NA,,,, +Cb14,,,EA047,NA,,,, +Cb15,with special reference to the Humr,1940,EA047,NA,"Made by the kindred Messiria, not by the Humr proper",cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,,EA047,NA,,,, +Cb17,Jebel Marra,1880,EA047,6,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,1930,EA047,6,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p80, +Cb19,,1870,EA047,6,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p80, +Cb2,Upper and lower Salum in Gambia,1950,EA047,6,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA047,6,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA047,NA,,,, +Cb22,,,EA047,NA,,,, +Cb23,,,EA047,NA,,,, +Cb24,,,EA047,NA,,,, +Cb25,,,EA047,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA047,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA047,NA,,,, +Cb28,,,EA047,NA,,,, +Cb29,,,EA047,NA,,,, +Cb3,Bamba division,1940,EA047,6,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA047,NA,,,, +Cb5,,,EA047,NA,,,, +Cb6,,,EA047,NA,,,, +Cb7,,,EA047,NA,,,, +Cb8,,,EA047,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA047,8,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,,EA047,NA,,,, +Cc10,,1900,EA047,6,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA047,NA,,,, +Cc12,,1944,EA047,9,Pottery is imported from Tuat,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA047,NA,,,, +Cc14,,1880,EA047,6,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA047,NA,,,, +Cc16,,1930,EA047,8,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,,EA047,NA,,,, +Cc18,,,EA047,NA,,,, +Cc19,,,EA047,NA,,,, +Cc2,Nomads of Tibesti,1950,EA047,6,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,,,EA047,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA047,6,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,,EA047,NA,,,, +Cc5,,,EA047,NA,,,, +Cc6,,,EA047,NA,,,, +Cc7,,,EA047,NA,,,, +Cc8,,,EA047,NA,,,, +Cc9,Ahaggaren tribe,1920,EA047,6,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,,,EA047,NA,,,, +Cd10,,,EA047,NA,,,, +Cd11,,,EA047,NA,,,, +Cd12,,1870,EA047,8,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA047,NA,,,, +Cd14,,,EA047,NA,,,, +Cd15,,,EA047,NA,,,, +Cd16,,,EA047,NA,,,, +Cd17,,,EA047,NA,,,, +Cd18,,,EA047,NA,,,, +Cd19,,,EA047,NA,,,, +Cd2,Town and environs of Silwa,1950,EA047,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA047,NA,,,, +Cd21,,,EA047,NA,,,, +Cd3,Entirety: Moroccan,1920,EA047,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA047,6,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,,,EA047,NA,,,, +Cd6,with special reference to the New Empire,-1400,EA047,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA047,NA,,,, +Cd8,,,EA047,NA,,,, +Cd9,,,EA047,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA047,3,There are also professional male potters in the towns,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA047,NA,,,, +Ce3,,,EA047,NA,,,, +Ce4,,,EA047,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA047,7,Presumably industrial specialization only,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA047,7,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA047,7,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,,,EA047,NA,,,, +Cf1,Small City in Connecticut,1920,EA047,7,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA047,NA,,,, +Cf3,,1930,EA047,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA047,6,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA047,7,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA047,7,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,,EA047,NA,,,, +Cg3,,,EA047,NA,,,, +Cg4,Konkama District,1950,EA047,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA047,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA047,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA047,NA,,,, +Ch11,,,EA047,NA,,,, +Ch2,,1890,EA047,8,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA047,7,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA047,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA047,8,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA047,8,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA047,8,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,1940,EA047,8,,hanzeli1955,EthnographicAtlas_1967_p84, +Ch9,,1930,EA047,8,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,,,EA047,NA,,,, +Ci10,Vicinity of Erevan,1900,EA047,6,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA047,6,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA047,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA047,NA,,,, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA047,8,,gadzhieva1958,EthnographicAtlas_1967_p84, +Ci4,,,EA047,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA047,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA047,NA,,,, +Ci7,,,EA047,NA,,,, +Ci8,,,EA047,NA,,,, +Ci9,,,EA047,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA047,6,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,,,EA047,NA,,,, +Cj2,,,EA047,NA,,,, +Cj3,,-800,EA047,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA047,8,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,,EA047,NA,,,, +Cj6,,,EA047,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA047,8,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA047,6,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,1950,EA047,1,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA047,8,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,,,EA047,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA047,8,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,,EA047,NA,,,, +Ea13,Mohla Village,1950,EA047,3,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA047,8,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA047,8,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA047,1,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,,EA047,NA,,,, +Ea6,Nomadic branch,1958,EA047,9,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,,EA047,NA,,,, +Ea8,,,EA047,NA,,,, +Ea9,,1950,EA047,8,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA047,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA047,9,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA047,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA047,NA,,,, +Eb5,,,EA047,NA,,,, +Eb6,,,EA047,NA,,,, +Eb7,,,EA047,NA,,,, +Eb8,,,EA047,NA,,,, +Ec1,Sakhalin Island,1920,EA047,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA047,6,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA047,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA047,6,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA047,8,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA047,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA047,8,But practiced in the recent past,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,,,EA047,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA047,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA047,NA,,,, +Ec9,,,EA047,NA,,,, +Ed1,Kanghwa Island,1950,EA047,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA047,8,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA047,NA,,,, +Ed14,,,EA047,NA,,,, +Ed15a,,,EA047,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA047,8,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA047,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA047,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA047,8,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA047,8,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA047,7,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA047,8,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA047,2,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,,EA047,NA,,,, +Ed9,,1930,EA047,6,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA047,8,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA047,8,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA047,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,,,EA047,NA,,,, +Ee5,with special reference to the Shina tribe,1870,EA047,8,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,,,EA047,NA,,,, +Ee7,,,EA047,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA047,8,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA047,8,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA047,NA,,,, +Ef11,Village and environs of Senapur,1945,EA047,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA047,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA047,NA,,,, +Ef4,,,EA047,NA,,,, +Ef5,,1900,EA047,8,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,,EA047,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA047,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA047,1,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA047,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA047,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA047,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA047,NA,,,, +Eg12,,,EA047,NA,,,, +Eg13,Bastar State,1941,EA047,9,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA047,9,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA047,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA047,9,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA047,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,,EA047,NA,,,, +Eg6,,,EA047,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA047,8,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,,EA047,NA,,,, +Eg9,,1930,EA047,8,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA047,6,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA047,NA,,,, +Eh2,,,EA047,NA,,,, +Eh3,Menabe subtribe,1930,EA047,9,"But formerly present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA047,4,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA047,6,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA047,3,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p92, +Eh7,,1900,EA047,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA047,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA047,NA,,,, +Ei1,Rengsanggr,1900,EA047,6,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA047,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA047,6,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA047,NA,,,, +Ei13,,1910,EA047,8,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA047,6,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA047,NA,,,, +Ei16,,1910,EA047,6,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA047,NA,,,, +Ei18,,,EA047,NA,,,, +Ei19,,1940,EA047,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA047,6,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA047,NA,,,, +Ei3,Nondwin Village,1950,EA047,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA047,6,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA047,8,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA047,9,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA047,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA047,6,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA047,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA047,9,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA047,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA047,NA,,,, +Ej12,,,EA047,NA,,,, +Ej13,,1940,EA047,8,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA047,9,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA047,8,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,,,EA047,NA,,,, +Ej2,with special reference to the village of Sar Luk,1940,EA047,6,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA047,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA047,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA047,8,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,,,EA047,NA,,,, +Ej7,,,EA047,NA,,,, +Ej8,with special reference to those of Trengganu,1940,EA047,8,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,,EA047,NA,,,, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA047,8,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA047,8,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA047,8,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA047,6,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA047,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA047,8,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA047,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA047,6,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA047,NA,,,, +Ia18,,,EA047,NA,,,, +Ia2,,1950,EA047,9,Obtained by trade from the neighboring Kankanay,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA047,3,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,,,EA047,NA,,,, +Ia5,,,EA047,NA,,,, +Ia6,Su-Paiwan Village,1930,EA047,8,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA047,NA,,,, +Ia8,,,EA047,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA047,8,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA047,6,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA047,4,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA047,8,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA047,6,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA047,8,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,1920,EA047,8,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA047,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,with special reference to the Ridan group,1900,EA047,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA047,NA,,,, +Ic1,Borongloe,1940,EA047,8,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA047,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,Allang,1950,EA047,8,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA047,8,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA047,NA,,,, +Ic2,,,EA047,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA047,8,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA047,NA,,,, +Ic5,Bare'e subgroup,1910,EA047,8,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA047,8,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA047,9,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,1890,EA047,9,,pleyte1893,EthnographicAtlas_1967_p96, +Ic9,with special reference to eastern Sumba,1930,EA047,8,,nooteboom1940,EthnographicAtlas_1967_p96, +Id1,Alice Springs and environs,1900,EA047,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA047,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA047,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA047,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA047,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA047,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA047,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA047,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA047,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA047,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA047,9,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA047,9,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA047,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA047,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA047,5,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA047,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA047,8,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA047,NA,,,, +Ie14,,,EA047,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA047,6,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA047,9,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA047,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA047,9,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA047,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA047,9,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA047,8,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA047,6,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA047,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA047,9,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,1870,EA047,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA047,9,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA047,9,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,,EA047,NA,,,, +Ie28,,1940,EA047,6,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,,,EA047,NA,,,, +Ie3,,,EA047,NA,,,, +Ie30,,1950,EA047,9,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,1950,EA047,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA047,6,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA047,NA,,,, +Ie34,,,EA047,NA,,,, +Ie35,,,EA047,NA,,,, +Ie36,,,EA047,NA,,,, +Ie37,,,EA047,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA047,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA047,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA047,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA047,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,,EA047,NA,,,, +Ie7,with special reference to the Mae group,1950,EA047,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA047,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA047,6,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA047,6,But extinct today,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA047,NA,,,, +If11,,1860,EA047,9,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA047,9,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA047,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA047,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,,EA047,NA,,,, +If16,,1960,EA047,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA047,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA047,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA047,9,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA047,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA047,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,,,EA047,NA,,,, +If7,with special reference to the inhabitants of Onotoa,1940,EA047,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA047,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA047,9,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA047,5,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA047,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA047,9,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,with special reference to the Varisi,1900,EA047,8,,scheffler1965,EthnographicAtlas_1967_p100, +Ig13,,,EA047,NA,,,, +Ig14,,1900,EA047,6,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA047,NA,,,, +Ig16,,,EA047,NA,,,, +Ig17,,,EA047,NA,,,, +Ig18,,,EA047,NA,,,, +Ig19,,,EA047,NA,,,, +Ig2,Kiriwina Island,1910,EA047,8,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,,,EA047,NA,,,, +Ig21,with special reference to Boieng Island,1930,EA047,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA047,6,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA047,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,,EA047,NA,,,, +Ig6,,1900,EA047,9,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,,EA047,NA,,,, +Ig8,,,EA047,NA,,,, +Ig9,Peri Village,1920,EA047,8,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA047,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,,,EA047,NA,,,, +Ih11,,,EA047,NA,,,, +Ih12,,,EA047,NA,,,, +Ih13,,,EA047,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA047,6,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA047,9,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA047,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p100, +Ih4,Lau Island,1920,EA047,6,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA047,NA,,,, +Ih6,,,EA047,NA,,,, +Ih7,,,EA047,NA,,,, +Ih8,,,EA047,NA,,,, +Ih9,Graciosa Bay,1930,EA047,9,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA047,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA047,NA,,,, +Ii12,Pangai,1920,EA047,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA047,9,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA047,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA047,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA047,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA047,9,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA047,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA047,9,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA047,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA047,9,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA047,9,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA047,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA047,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA047,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA047,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA047,9,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA047,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA047,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA047,9,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA047,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA047,9,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA047,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA047,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA047,6,But pottery was given up sometime after 1912,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA047,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA047,2,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA047,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA047,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA047,9,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA047,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA047,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA047,6,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA047,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA047,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA047,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA047,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA047,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,,,EA047,NA,,,, +Na26,with special reference to the Iliamna,1870,EA047,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA047,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA047,9,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA047,9,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA047,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA047,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA047,9,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA047,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA047,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA047,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA047,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA047,9,But pottery was made prior to the mid-nineteenth century,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA047,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA047,6,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA047,9,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA047,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA047,8,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA047,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,,,EA047,NA,,,, +Na43,,,EA047,NA,,,, +Na44,,,EA047,NA,,,, +Na45,,,EA047,NA,,,, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA047,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA047,6,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA047,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA047,6,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA047,9,But pottery is found in archaeological sites,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA047,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA047,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA047,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA047,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA047,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA047,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA047,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA047,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA047,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA047,9,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA047,9,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA047,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA047,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA047,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA047,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA047,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA047,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA047,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA047,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA047,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA047,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA047,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA047,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA047,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA047,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA047,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA047,9,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA047,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA047,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA047,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA047,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA047,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA047,9,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA047,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA047,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA047,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA047,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA047,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA047,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA047,9,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA047,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA047,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA047,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA047,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA047,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA047,9,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA047,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA047,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA047,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA047,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA047,6,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA047,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA047,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA047,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA047,6,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA047,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA047,6,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA047,9,"Entry follows Mason; Harrington reports 'present, though sex participation unspecified' (EA047 code ""9"") and no specialization specified (EA058 code ""9""), perhaps for the post mission period",harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA047,NA,,,, +Nc28,,1800,EA047,9,"Entry follows Kroeber; Harrington reports 'present, though sex participation unspecified' (EA047 code ""9"") and no specialization specified (EA058 code ""9""), perhaps for the post mission period",harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA047,9,But pottery was made in the post-mission period,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA047,6,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA047,8,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA047,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA047,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA047,8,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA047,6,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA047,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA047,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA047,8,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA047,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA047,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA047,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA047,9,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA047,9,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA047,9,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA047,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA047,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA047,9,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA047,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA047,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,,EA047,NA,,,, +Nd18,,1860,EA047,9,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA047,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA047,9,But women made clay pipes,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA047,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA047,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA047,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA047,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA047,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA047,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA047,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA047,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA047,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA047,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA047,6,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA047,6,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA047,8,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA047,6,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA047,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA047,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA047,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA047,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA047,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA047,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA047,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA047,6,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA047,8,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA047,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA047,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA047,6,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA047,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA047,8,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA047,8,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,,EA047,NA,,,, +Nd48,with special reference to those of Deep Creek,1860,EA047,8,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA047,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA047,9,But pottery was made at an earlier period,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA047,6,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA047,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA047,6,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA047,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA047,6,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA047,8,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA047,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA047,6,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA047,6,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA047,6,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA047,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA047,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA047,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA047,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA047,9,But pottery was made in the prehistoric period,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA047,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA047,6,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA047,6,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA047,6,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA047,8,"But the pots were sun-dried, not fired",boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA047,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA047,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA047,6,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA047,6,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA047,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA047,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA047,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA047,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA047,6,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA047,8,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,,EA047,NA,,,, +Ne18,,1850,EA047,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA047,9,But a tradition that pottery was formerly made,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA047,9,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA047,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA047,NA,,,, +Ne3,Comanche Tribe,1870,EA047,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA047,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA047,6,But pottery disappeared after European contact,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA047,8,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA047,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA047,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA047,9,But pottery was made at an earlier date,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA047,6,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA047,6,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA047,6,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA047,6,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA047,6,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA047,NA,,,, +Nf2,,1850,EA047,6,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA047,6,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA047,6,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,,EA047,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA047,6,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA047,6,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA047,6,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA047,6,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA047,6,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA047,6,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA047,6,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA047,6,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA047,NA,,,, +Ng14,,,EA047,NA,,,, +Ng15,,,EA047,NA,,,, +Ng2,,,EA047,NA,,,, +Ng3,Upper division in Alabama,1750,EA047,6,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA047,NA,,,, +Ng5,,1750,EA047,6,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA047,6,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA047,6,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA047,6,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA047,NA,,,, +Nh1,Central band,1880,EA047,6,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,1920,EA047,6,,parsons1932a; trager1943,EthnographicAtlas_1967_p116, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA047,6,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA047,6,But pottery is no longer made today,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA047,6,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA047,NA,,,, +Nh15,,1870,EA047,6,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA047,6,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA047,6,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA047,6,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA047,6,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA047,6,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA047,6,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA047,6,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA047,6,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA047,6,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,,EA047,NA,,,, +Nh25,,1920,EA047,6,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA047,NA,,,, +Nh27,,,EA047,NA,,,, +Nh3,,1930,EA047,6,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA047,6,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA047,6,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA047,6,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA047,6,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA047,6,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,1920,EA047,6,,parsons1939; trager1943,EthnographicAtlas_1967_p116, +Ni1,,1930,EA047,6,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA047,6,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA047,6,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA047,6,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA047,9,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA047,6,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA047,6,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA047,NA,,,, +Ni9,,,EA047,NA,,,, +Nj1,Ojitlan,1940,EA047,6,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA047,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA047,NA,,,, +Nj12,,,EA047,NA,,,, +Nj13,,,EA047,NA,,,, +Nj14,,,EA047,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA047,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA047,8,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA047,6,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA047,NA,,,, +Nj6,,,EA047,NA,,,, +Nj7,with special reference to Ayutla,1930,EA047,6,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA047,8,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA047,6,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA047,5,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA047,8,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA047,NA,,,, +Sa12,,1948,EA047,6,,stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA047,6,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA047,NA,,,, +Sa15,,,EA047,NA,,,, +Sa16,,,EA047,NA,,,, +Sa17,,,EA047,NA,,,, +Sa2,,,EA047,NA,,,, +Sa3,,1930,EA047,5,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA047,6,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA047,6,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA047,8,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA047,9,"There is incidental mention of pots, but they are presumably obtained through trade",solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA047,8,Traded from a neighboring village,wagley1941; wagley1949b,EthnographicAtlas_1967_p120, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA047,6,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA047,6,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA047,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA047,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA047,6,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA047,8,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p120, +Sb6,Goajiro Tribe,1940,EA047,6,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA047,1,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA047,8,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA047,1,But only outside of the valley,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA047,6,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA047,8,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,,EA047,NA,,,, +Sc12,,1910,EA047,8,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,,EA047,NA,,,, +Sc14,,1890,EA047,6,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA047,6,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA047,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,,EA047,NA,,,, +Sc18,,1960,EA047,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA047,6,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA047,6,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA047,6,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA047,6,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,,,EA047,NA,,,, +Sc7,,1950,EA047,6,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA047,8,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA047,8,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA047,6,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA047,6,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA047,8,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,,EA047,NA,,,, +Sd5,,1950,EA047,9,"But formerly present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA047,6,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA047,6,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA047,8,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA047,8,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA047,6,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,1670,EA047,6,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p120, +Se11,,1960,EA047,6,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA047,NA,,,, +Se2,,1940,EA047,5,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA047,6,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA047,6,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA047,6,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA047,6,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA047,NA,,,, +Se8,Upper Inuya River,1950,EA047,6,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA047,6,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA047,6,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA047,2,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA047,6,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA047,6,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA047,6,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA047,8,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA047,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA047,NA,,,, +Sf9,,,EA047,NA,,,, +Sg1,Eastern and central,1870,EA047,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA047,6,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA047,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA047,8,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA047,9,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA047,6,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA047,6,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA047,6,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA047,6,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA047,6,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA047,8,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA047,6,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124,"Assume Murdock comment meant for Col 46, not Col 47 as stated Gray (1999)" +Sh8,with special reference to those of the Argentine Chaco,1964,EA047,6,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA047,6,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA047,6,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA047,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA047,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA047,4,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA047,9,But some groups make crude pottery,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA047,6,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA047,6,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,with special reference to the Cozarimi,1910,EA047,8,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,1940,EA047,6,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA047,NA,,,, +Sj1,,1950,EA047,8,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA047,6,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA047,9,But pottery was formerly made,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA047,9,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA047,6,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA047,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA047,9,But pottery has been made in recent times,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,with special reference to the Guajajara subgroup,1930,EA047,9,But pottery was formerly made,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA047,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA047,6,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA047,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA047,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA047,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA047,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA047,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA047,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA047,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA047,8,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA047,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA047,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA047,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA047,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA047,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA047,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA047,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,,,EA047,NA,,,, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA047,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,,,EA047,NA,,,, +ec12,Avam (Western) group,1930,EA047,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA047,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA047,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA047,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA047,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA047,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA047,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA047,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA047,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA047,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA048,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA048,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA048,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA048,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA048,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA048,NA,,,, +Aa7,,1910,EA048,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA048,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA048,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA048,9,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,,EA048,NA,,,, +Ab11,,,EA048,NA,,,, +Ab12,,1830,EA048,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA048,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA048,9,But bark canoes are mentioned in traditions,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,,EA048,NA,,,, +Ab16,,,EA048,NA,,,, +Ab17,,,EA048,NA,,,, +Ab18,,,EA048,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA048,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,,EA048,NA,,,, +Ab20,,,EA048,NA,,,, +Ab21a,,,EA048,NA,,,, +Ab21b,,,EA048,NA,,,, +Ab22,,,EA048,NA,,,, +Ab3,Ruling Luyana,1890,EA048,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA048,1,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA048,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA048,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA048,NA,,,, +Ab8,,,EA048,NA,,,, +Ab9,,,EA048,NA,,,, +Ac1,,1920,EA048,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA048,8,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,,EA048,NA,,,, +Ac12,,,EA048,NA,,,, +Ac13,,1950,EA048,8,,tew1950; velsen1964,EthnographicAtlas_1967_p64, +Ac14,,,EA048,NA,,,, +Ac15,,,EA048,NA,,,, +Ac16,,,EA048,NA,,,, +Ac17,,,EA048,NA,,,, +Ac18,,1910,EA048,8,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA048,NA,,,, +Ac2,,,EA048,NA,,,, +Ac20,,,EA048,NA,,,, +Ac21,,,EA048,NA,,,, +Ac22,,,EA048,NA,,,, +Ac23,,,EA048,NA,,,, +Ac24,,,EA048,NA,,,, +Ac25,,,EA048,NA,,,, +Ac26,,,EA048,NA,,,, +Ac27,,,EA048,NA,,,, +Ac28,,,EA048,NA,,,, +Ac29,,,EA048,NA,,,, +Ac3,Zambia branch,1900,EA048,8,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,,EA048,NA,,,, +Ac31,,1910,EA048,8,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA048,NA,,,, +Ac33,,,EA048,NA,,,, +Ac34,,1940,EA048,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA048,NA,,,, +Ac36,,,EA048,NA,,,, +Ac37,,,EA048,NA,,,, +Ac38,,1910,EA048,8,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA048,8,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,,,EA048,NA,,,, +Ac40,,,EA048,NA,,,, +Ac41,,,EA048,NA,,,, +Ac42,,,EA048,NA,,,, +Ac43,,,EA048,NA,,,, +Ac5,,1920,EA048,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA048,8,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA048,8,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA048,8,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,,,EA048,NA,,,, +Ad1,,,EA048,NA,,,, +Ad10,,,EA048,NA,,,, +Ad11,,1930,EA048,1,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA048,NA,,,, +Ad13,,1930,EA048,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA048,NA,,,, +Ad15,,,EA048,NA,,,, +Ad16,,1920,EA048,8,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,,EA048,NA,,,, +Ad18,,,EA048,NA,,,, +Ad19,,,EA048,NA,,,, +Ad2,,1950,EA048,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,,EA048,NA,,,, +Ad21,,,EA048,NA,,,, +Ad22,,,EA048,NA,,,, +Ad23,,,EA048,NA,,,, +Ad24,,1910,EA048,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA048,NA,,,, +Ad26,,,EA048,NA,,,, +Ad27,,1880,EA048,8,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA048,NA,,,, +Ad29,,1930,EA048,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA048,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA048,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,,EA048,NA,,,, +Ad32,,,EA048,NA,,,, +Ad33,,1900,EA048,8,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,,EA048,NA,,,, +Ad35,,,EA048,NA,,,, +Ad36,,,EA048,NA,,,, +Ad37,,,EA048,NA,,,, +Ad38,,,EA048,NA,,,, +Ad39,,1950,EA048,9,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA048,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA048,NA,,,, +Ad41,,,EA048,NA,,,, +Ad42,,,EA048,NA,,,, +Ad43,,,EA048,NA,,,, +Ad44,,,EA048,NA,,,, +Ad45,,,EA048,NA,,,, +Ad46,,1950,EA048,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,,EA048,NA,,,, +Ad48,,1950,EA048,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA048,NA,,,, +Ad5,,,EA048,NA,,,, +Ad50,,,EA048,NA,,,, +Ad51,,,EA048,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA048,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA048,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,,,EA048,NA,,,, +Ad9,,1900,EA048,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA048,9,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA048,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA048,1,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA048,8,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA048,NA,,,, +Ae14,,1950,EA048,8,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,,EA048,NA,,,, +Ae16,,,EA048,NA,,,, +Ae17,,,EA048,NA,,,, +Ae18,,1900,EA048,8,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA048,NA,,,, +Ae2,,1950,EA048,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA048,NA,,,, +Ae21,,,EA048,NA,,,, +Ae22,,,EA048,NA,,,, +Ae23,,,EA048,NA,,,, +Ae24,,,EA048,NA,,,, +Ae25,,,EA048,NA,,,, +Ae26,,,EA048,NA,,,, +Ae27,,,EA048,NA,,,, +Ae28,,1900,EA048,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,1900,EA048,8,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA048,8,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA048,NA,,,, +Ae31,,,EA048,NA,,,, +Ae32,,,EA048,NA,,,, +Ae33,,,EA048,NA,,,, +Ae34,,,EA048,NA,,,, +Ae35,,,EA048,NA,,,, +Ae36,,,EA048,NA,,,, +Ae37,,,EA048,NA,,,, +Ae38,,,EA048,NA,,,, +Ae39,,1920,EA048,9,"But in some villages probably 'present, though sex participation unspecified' (EA048 code ""9"") and no specialization specified (EA059 code ""9"")",burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA048,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA048,NA,,,, +Ae41,,,EA048,NA,,,, +Ae42,,,EA048,NA,,,, +Ae43,,,EA048,NA,,,, +Ae44,,,EA048,NA,,,, +Ae45,,,EA048,NA,,,, +Ae46,,,EA048,NA,,,, +Ae47,,,EA048,NA,,,, +Ae48,,,EA048,NA,,,, +Ae49,,,EA048,NA,,,, +Ae5,,,EA048,NA,,,, +Ae50,,1920,EA048,8,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,,,EA048,NA,,,, +Ae52,,,EA048,NA,,,, +Ae53,,,EA048,NA,,,, +Ae54,,,EA048,NA,,,, +Ae55,,,EA048,NA,,,, +Ae56,,,EA048,NA,,,, +Ae57,,,EA048,NA,,,, +Ae58,,,EA048,NA,,,, +Ae59,,,EA048,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA048,8,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,,EA048,NA,,,, +Ae8,,1910,EA048,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA048,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA048,8,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA048,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,,EA048,NA,,,, +Af12,,,EA048,NA,,,, +Af13,,,EA048,NA,,,, +Af14,,1930,EA048,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA048,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA048,NA,,,, +Af17,,,EA048,NA,,,, +Af18,,,EA048,NA,,,, +Af19,,1950,EA048,8,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p72, +Af2,,,EA048,NA,,,, +Af20,,,EA048,NA,,,, +Af21,,,EA048,NA,,,, +Af22,,1940,EA048,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,,,EA048,NA,,,, +Af24,,,EA048,NA,,,, +Af25,,1930,EA048,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA048,NA,,,, +Af27,,,EA048,NA,,,, +Af28,,1910,EA048,8,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA048,NA,,,, +Af3,,,EA048,NA,,,, +Af30,,,EA048,NA,,,, +Af31,,,EA048,NA,,,, +Af32,,,EA048,NA,,,, +Af33,,,EA048,NA,,,, +Af34,,,EA048,NA,,,, +Af35,,,EA048,NA,,,, +Af36,with special reference to the Glidyi,1900,EA048,8,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA048,NA,,,, +Af38,,,EA048,NA,,,, +Af39,,,EA048,NA,,,, +Af4,,1930,EA048,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA048,NA,,,, +Af41,,,EA048,NA,,,, +Af42,,,EA048,NA,,,, +Af43,,,EA048,NA,,,, +Af44,,,EA048,NA,,,, +Af45,,,EA048,NA,,,, +Af46,,,EA048,NA,,,, +Af47,,,EA048,NA,,,, +Af48,,,EA048,NA,,,, +Af49,,,EA048,NA,,,, +Af5,,1930,EA048,8,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA048,NA,,,, +Af51,,,EA048,NA,,,, +Af52,,1920,EA048,1,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA048,NA,,,, +Af54,,1930,EA048,9,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA048,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA048,NA,Rude rafts only,schwab1947; viard1934,EthnographicAtlas_1967_p72,"Assume Murdock comment refers to Col 48, not Col 49 as stated in Gray (1999)" +Af57,,,EA048,NA,,,, +Af58,,,EA048,NA,,,, +Af6,,,EA048,NA,,,, +Af7,,1950,EA048,8,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,1930,EA048,8,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,,EA048,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA048,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,,EA048,NA,,,, +Ag11,,,EA048,NA,,,, +Ag12,,,EA048,NA,,,, +Ag13,,,EA048,NA,,,, +Ag14,,,EA048,NA,,,, +Ag15,,,EA048,NA,,,, +Ag16,,,EA048,NA,,,, +Ag17,,,EA048,NA,,,, +Ag18,,,EA048,NA,,,, +Ag19,,,EA048,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA048,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA048,NA,,,, +Ag21,,,EA048,NA,,,, +Ag22,with special reference to those of Sine,1920,EA048,8,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA048,NA,,,, +Ag24,,,EA048,NA,,,, +Ag25,,,EA048,NA,,,, +Ag26,,,EA048,NA,,,, +Ag27,,,EA048,NA,,,, +Ag28,,,EA048,NA,,,, +Ag29,,,EA048,NA,,,, +Ag3,,,EA048,NA,,,, +Ag30,,,EA048,NA,,,, +Ag31,,,EA048,NA,,,, +Ag32,,,EA048,NA,,,, +Ag33,,,EA048,NA,,,, +Ag34,,,EA048,NA,,,, +Ag35,,,EA048,NA,,,, +Ag36,,,EA048,NA,,,, +Ag37,,,EA048,NA,,,, +Ag38,,,EA048,NA,,,, +Ag39,,,EA048,NA,,,, +Ag4,Tallensi Tribe,1930,EA048,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA048,NA,,,, +Ag41,,,EA048,NA,,,, +Ag42,,,EA048,NA,,,, +Ag43,,,EA048,NA,,,, +Ag44,,,EA048,NA,,,, +Ag45,,,EA048,NA,,,, +Ag46,,,EA048,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA048,8,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,,EA048,NA,,,, +Ag49,,,EA048,NA,,,, +Ag5,,,EA048,NA,,,, +Ag50,,,EA048,NA,,,, +Ag51,,,EA048,NA,,,, +Ag52,,,EA048,NA,,,, +Ag53,,,EA048,NA,,,, +Ag54,,1910,EA048,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA048,NA,,,, +Ag7,,,EA048,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA048,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA048,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,Zaria Province,1930,EA048,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA048,NA,,,, +Ah11,,,EA048,NA,,,, +Ah12,,,EA048,NA,,,, +Ah13,,,EA048,NA,,,, +Ah14,,,EA048,NA,,,, +Ah15,,1920,EA048,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA048,NA,,,, +Ah17,,,EA048,NA,,,, +Ah18,,,EA048,NA,,,, +Ah19,,,EA048,NA,,,, +Ah2,,,EA048,NA,,,, +Ah20,,,EA048,NA,,,, +Ah21,,,EA048,NA,,,, +Ah22,,,EA048,NA,,,, +Ah23,,,EA048,NA,,,, +Ah24,,,EA048,NA,,,, +Ah25,,,EA048,NA,,,, +Ah26,,,EA048,NA,,,, +Ah27,,,EA048,NA,,,, +Ah28,,,EA048,NA,,,, +Ah29,,,EA048,NA,,,, +Ah3,Tar of Benue Province,1920,EA048,9,Crude rafts only,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA048,NA,,,, +Ah31,,,EA048,NA,,,, +Ah32,,,EA048,NA,,,, +Ah33,,,EA048,NA,,,, +Ah34,,,EA048,NA,,,, +Ah35,,,EA048,NA,,,, +Ah36,,,EA048,NA,,,, +Ah37,,,EA048,NA,,,, +Ah38,,,EA048,NA,,,, +Ah39,,1950,EA048,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA048,NA,,,, +Ah5,,,EA048,NA,,,, +Ah6,,,EA048,NA,,,, +Ah7,,1940,EA048,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,,EA048,NA,,,, +Ah9,,1920,EA048,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,,EA048,NA,,,, +Ai10,Nuba Hills,1940,EA048,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA048,8,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA048,NA,,,, +Ai13,,,EA048,NA,,,, +Ai14,,1920,EA048,8,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,1900,EA048,8,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA048,NA,,,, +Ai17,,,EA048,NA,,,, +Ai18,,1880,EA048,8,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA048,NA,,,, +Ai2,,,EA048,NA,,,, +Ai20,,,EA048,NA,,,, +Ai21,,,EA048,NA,,,, +Ai22,,,EA048,NA,,,, +Ai23,,,EA048,NA,,,, +Ai24,,,EA048,NA,,,, +Ai25,,,EA048,NA,,,, +Ai26,,1920,EA048,8,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA048,NA,,,, +Ai28,,,EA048,NA,,,, +Ai29,,,EA048,NA,,,, +Ai3,,1920,EA048,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA048,8,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,,EA048,NA,,,, +Ai32,,,EA048,NA,,,, +Ai33,,1940,EA048,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p76, +Ai34,,,EA048,NA,,,, +Ai35,,,EA048,NA,,,, +Ai36,,,EA048,NA,,,, +Ai37,,,EA048,NA,,,, +Ai38,,1930,EA048,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA048,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA048,NA,,,, +Ai40,,1940,EA048,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA048,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA048,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA048,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,1920,EA048,8,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p76, +Ai45,,,EA048,NA,,,, +Ai46,,,EA048,NA,,,, +Ai47,,,EA048,NA,,,, +Ai5,,1920,EA048,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA048,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,,EA048,NA,,,, +Ai8,,1930,EA048,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA048,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,,EA048,NA,,,, +Aj10,,,EA048,NA,,,, +Aj11,,,EA048,NA,,,, +Aj12,,,EA048,NA,,,, +Aj13,,,EA048,NA,,,, +Aj14,,,EA048,NA,,,, +Aj15,,,EA048,NA,,,, +Aj16,with special reference to the Riverain Mondari,1930,EA048,8,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA048,8,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,,EA048,NA,,,, +Aj19,,,EA048,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA048,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA048,NA,,,, +Aj21,,,EA048,NA,,,, +Aj22,,,EA048,NA,,,, +Aj23,,,EA048,NA,,,, +Aj24,,,EA048,NA,,,, +Aj25,,,EA048,NA,,,, +Aj26,,,EA048,NA,,,, +Aj27,,,EA048,NA,,,, +Aj28,,,EA048,NA,,,, +Aj29,,,EA048,NA,,,, +Aj3,,1930,EA048,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA048,NA,,,, +Aj31,,,EA048,NA,,,, +Aj4,,,EA048,NA,,,, +Aj5,,1920,EA048,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA048,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA048,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,,EA048,NA,,,, +Aj9,,1920,EA048,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA048,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA048,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,,EA048,NA,,,, +Ca12,,,EA048,NA,,,, +Ca13,,,EA048,NA,,,, +Ca14,,1950,EA048,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,,EA048,NA,,,, +Ca16,,,EA048,NA,,,, +Ca17,,,EA048,NA,,,, +Ca18,,,EA048,NA,,,, +Ca19,,1950,EA048,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA048,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA048,NA,,,, +Ca21,,1950,EA048,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,,EA048,NA,,,, +Ca23,,1950,EA048,9,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA048,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,,EA048,NA,,,, +Ca26,,,EA048,NA,,,, +Ca27,,,EA048,NA,,,, +Ca28,,,EA048,NA,,,, +Ca29,,,EA048,NA,,,, +Ca3,,,EA048,NA,,,, +Ca30,,,EA048,NA,,,, +Ca31,,,EA048,NA,,,, +Ca32,,,EA048,NA,,,, +Ca33,,,EA048,NA,,,, +Ca34,,,EA048,NA,,,, +Ca35,,,EA048,NA,,,, +Ca36,,,EA048,NA,,,, +Ca37,,,EA048,NA,,,, +Ca38,,,EA048,NA,,,, +Ca39,,,EA048,NA,,,, +Ca4,,,EA048,NA,,,, +Ca40,,,EA048,NA,,,, +Ca41,,,EA048,NA,,,, +Ca42,,,EA048,NA,,,, +Ca43,,,EA048,NA,,,, +Ca5,,,EA048,NA,,,, +Ca6,,,EA048,NA,,,, +Ca7,,,EA048,NA,,,, +Ca8,,,EA048,NA,,,, +Ca9,,,EA048,NA,,,, +Cb1,,,EA048,NA,,,, +Cb10,,,EA048,NA,,,, +Cb11,,,EA048,NA,,,, +Cb12,,,EA048,NA,,,, +Cb13,,,EA048,NA,,,, +Cb14,,,EA048,NA,,,, +Cb15,,,EA048,NA,,,, +Cb16,,,EA048,NA,,,, +Cb17,,,EA048,NA,,,, +Cb18,,,EA048,NA,,,, +Cb19,,,EA048,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA048,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,,EA048,NA,,,, +Cb21,,,EA048,NA,,,, +Cb22,,,EA048,NA,,,, +Cb23,,,EA048,NA,,,, +Cb24,,,EA048,NA,,,, +Cb25,,,EA048,NA,,,, +Cb26,,,EA048,NA,,,, +Cb27,,,EA048,NA,,,, +Cb28,,,EA048,NA,,,, +Cb29,,,EA048,NA,,,, +Cb3,Bamba division,1940,EA048,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA048,NA,,,, +Cb5,,1910,EA048,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p80, +Cb6,,,EA048,NA,,,, +Cb7,,,EA048,NA,,,, +Cb8,,,EA048,NA,,,, +Cb9,,,EA048,NA,,,, +Cc1,,1950,EA048,9,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA048,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA048,NA,,,, +Cc12,,,EA048,NA,,,, +Cc13,,,EA048,NA,,,, +Cc14,,1880,EA048,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA048,NA,,,, +Cc16,,1930,EA048,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA048,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA048,NA,,,, +Cc19,,,EA048,NA,,,, +Cc2,Nomads of Tibesti,1950,EA048,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA048,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA048,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,,EA048,NA,,,, +Cc5,,1910,EA048,9,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA048,NA,,,, +Cc7,,,EA048,NA,,,, +Cc8,,,EA048,NA,,,, +Cc9,Ahaggaren tribe,1920,EA048,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA048,8,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA048,NA,,,, +Cd11,,1500,EA048,9,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p84, +Cd12,,,EA048,NA,,,, +Cd13,,,EA048,NA,,,, +Cd14,,,EA048,NA,,,, +Cd15,,,EA048,NA,,,, +Cd16,,,EA048,NA,,,, +Cd17,,,EA048,NA,,,, +Cd18,,,EA048,NA,,,, +Cd19,,,EA048,NA,,,, +Cd2,Town and environs of Silwa,1950,EA048,8,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA048,NA,,,, +Cd21,,,EA048,NA,,,, +Cd3,Entirety: Moroccan,1920,EA048,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA048,8,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA048,9,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,with special reference to the New Empire,-1400,EA048,8,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA048,NA,,,, +Cd8,,,EA048,NA,,,, +Cd9,,,EA048,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA048,8,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA048,NA,,,, +Ce3,City and environs of Rome,100,EA048,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA048,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA048,1,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA048,8,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA048,8,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA048,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA048,1,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA048,NA,,,, +Cf3,,1930,EA048,1,,munch1945,EthnographicAtlas_1967_p84, +Cf4,,,EA048,NA,,,, +Cf5,,1930,EA048,8,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA048,7,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA048,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,,,EA048,NA,,,, +Cg4,Konkama District,1950,EA048,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA048,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA048,8,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA048,NA,,,, +Ch11,Viriatino Village,1955,EA048,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA048,NA,,,, +Ch3,with special reference to the Hana district of central Moravia,1940,EA048,8,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA048,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA048,8,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA048,8,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA048,8,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,,EA048,NA,,,, +Ch9,,1930,EA048,8,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA048,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,,,EA048,NA,,,, +Ci11,,1940,EA048,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA048,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA048,NA,,,, +Ci3,,,EA048,NA,,,, +Ci4,,,EA048,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA048,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA048,NA,,,, +Ci7,,,EA048,NA,,,, +Ci8,,,EA048,NA,,,, +Ci9,,,EA048,NA,,,, +Cj1,,,EA048,NA,,,, +Cj10,with special reference to the village of ech-Chibayish,1950,EA048,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA048,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA048,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA048,8,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA048,9,But boats are made on the coast,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA048,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA048,8,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA048,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA048,NA,,,, +Ea1,,,EA048,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA048,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA048,NA,,,, +Ea12,,,EA048,NA,,,, +Ea13,Mohla Village,1950,EA048,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA048,NA,,,, +Ea3,,,EA048,NA,,,, +Ea4,,,EA048,NA,,,, +Ea5,,1890,EA048,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA048,9,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA048,9,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA048,9,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,,EA048,NA,,,, +Eb1,Great Horde,1910,EA048,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA048,9,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA048,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA048,NA,,,, +Eb5,,,EA048,NA,,,, +Eb6,,,EA048,NA,,,, +Eb7,,1930,EA048,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA048,NA,,,, +Ec1,Sakhalin Island,1920,EA048,8,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA048,8,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA048,8,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA048,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA048,8,Boats are largely confined to the Maritime Chukchee,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA048,8,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA048,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,,,EA048,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA048,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA048,NA,,,, +Ec9,,,EA048,NA,,,, +Ed1,Kanghwa Island,1950,EA048,8,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,,,EA048,NA,,,, +Ed13,,,EA048,NA,,,, +Ed14,,,EA048,NA,,,, +Ed15a,,,EA048,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA048,8,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA048,NA,,,, +Ed2,,,EA048,NA,,,, +Ed3,,,EA048,NA,,,, +Ed4,,,EA048,NA,,,, +Ed5,Okayama,1950,EA048,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA048,NA,,,, +Ed7,,1950,EA048,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA048,1,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA048,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA048,9,Rafts only,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA048,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA048,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA048,8,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA048,9,Rafts only,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA048,9,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA048,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA048,8,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,,,EA048,NA,,,, +Ef10,,,EA048,NA,,,, +Ef11,Village and environs of Senapur,1945,EA048,9,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA048,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA048,NA,,,, +Ef4,,,EA048,NA,,,, +Ef5,,1900,EA048,8,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,,EA048,NA,,,, +Ef7,,,EA048,NA,,,, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA048,1,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,,,EA048,NA,,,, +Eg1,with special reference to the forest group,1940,EA048,9,Rafts only,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,,,EA048,NA,,,, +Eg11,,,EA048,NA,,,, +Eg12,,,EA048,NA,,,, +Eg13,Bastar State,1941,EA048,9,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA048,1,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,,,EA048,NA,,,, +Eg3,Hill Maria,1938,EA048,1,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA048,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA048,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,,,EA048,NA,,,, +Eg7,,,EA048,NA,,,, +Eg8,,1940,EA048,9,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,,EA048,NA,,,, +Eh1,,1870,EA048,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA048,NA,,,, +Eh2,,,EA048,NA,,,, +Eh3,Menabe subtribe,1930,EA048,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA048,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA048,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA048,8,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p92, +Eh7,,1900,EA048,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA048,8,"But McLeod reports activity is absent or unimportant (EA048 code ""9"", EA059 code ""10"")",faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA048,NA,,,, +Ei1,Rengsanggr,1900,EA048,9,"But in one limited region 'males alone' (EA048 code ""1""), with no specialization specified (EA059 code ""9"")",burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA048,NA,,,, +Ei11,,1910,EA048,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA048,NA,,,, +Ei13,,1910,EA048,9,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA048,9,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA048,NA,,,, +Ei16,,1910,EA048,9,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA048,NA,,,, +Ei18,,,EA048,NA,,,, +Ei19,,,EA048,NA,,,, +Ei2,,,EA048,NA,,,, +Ei20,,,EA048,NA,,,, +Ei3,Nondwin Village,1950,EA048,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,,,EA048,NA,,,, +Ei5,,,EA048,NA,,,, +Ei6,,,EA048,NA,,,, +Ei7,,,EA048,NA,,,, +Ei8,with special reference to those of the Jaintia Hills,1900,EA048,8,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,,EA048,NA,,,, +Ej1,,,EA048,NA,,,, +Ej10,Ko-Sier Village,1950,EA048,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA048,NA,,,, +Ej12,,,EA048,NA,,,, +Ej13,,,EA048,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA048,9,Bamboo rafts only,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA048,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA048,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,,,EA048,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA048,9,Bamboo rafts only,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA048,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,,EA048,NA,,,, +Ej6,of the Mergui Archipelago,1920,EA048,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,,EA048,NA,,,, +Ej8,with special reference to those of Trengganu,1940,EA048,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA048,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,,,EA048,NA,,,, +Ia10,,,EA048,NA,,,, +Ia11,,,EA048,NA,,,, +Ia12,,1950,EA048,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA048,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA048,8,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA048,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA048,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA048,NA,,,, +Ia18,,,EA048,NA,,,, +Ia2,,1950,EA048,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,,,EA048,NA,,,, +Ia4,,,EA048,NA,,,, +Ia5,,1950,EA048,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,,,EA048,NA,,,, +Ia7,,,EA048,NA,,,, +Ia8,,,EA048,NA,,,, +Ia9,,,EA048,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA048,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA048,9,"But in coastal towns 'males alone' (EA048 code ""1""), with craft specialization (EA059 code ""3"")",dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA048,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA048,8,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA048,8,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,1920,EA048,8,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA048,8,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,with special reference to the Ridan group,1900,EA048,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA048,NA,,,, +Ic1,Borongloe,1940,EA048,8,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA048,8,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,Allang,1950,EA048,8,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA048,NA,,,, +Ic13,,,EA048,NA,,,, +Ic2,,,EA048,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA048,8,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA048,NA,,,, +Ic5,Bare'e subgroup,1910,EA048,8,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA048,8,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA048,8,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,1890,EA048,8,,pleyte1893,EthnographicAtlas_1967_p96, +Ic9,with special reference to eastern Sumba,1930,EA048,8,,nooteboom1940,EthnographicAtlas_1967_p96, +Id1,Alice Springs and environs,1900,EA048,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA048,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA048,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA048,NA,,,, +Id13,,1930,EA048,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA048,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA048,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,,EA048,NA,,,, +Id5,,,EA048,NA,,,, +Id6,,,EA048,NA,,,, +Id7,,,EA048,NA,,,, +Id8,,1830,EA048,9,Rafts only,roth1890,EthnographicAtlas_1967_p96, +Id9,,,EA048,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA048,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA048,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA048,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA048,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA048,8,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA048,8,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,,,EA048,NA,,,, +Ie16,,,EA048,NA,,,, +Ie17,,1940,EA048,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA048,1,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA048,1,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA048,9,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA048,8,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA048,1,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA048,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA048,8,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,,EA048,NA,,,, +Ie25,,1920,EA048,9,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA048,9,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,,EA048,NA,,,, +Ie28,,1940,EA048,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA048,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,,,EA048,NA,,,, +Ie30,,1950,EA048,8,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,1950,EA048,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA048,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA048,NA,,,, +Ie34,,,EA048,NA,,,, +Ie35,,1930,EA048,1,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA048,NA,,,, +Ie37,,,EA048,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA048,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA048,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA048,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA048,1,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,,EA048,NA,,,, +Ie7,with special reference to the Mae group,1950,EA048,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA048,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA048,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA048,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA048,NA,,,, +If11,,1860,EA048,1,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA048,8,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA048,8,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA048,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA048,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA048,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA048,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA048,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA048,1,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA048,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA048,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA048,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA048,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA048,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA048,1,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA048,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA048,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA048,1,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,,,EA048,NA,,,, +Ig13,,1900,EA048,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,1900,EA048,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA048,NA,,,, +Ig16,,,EA048,NA,,,, +Ig17,,,EA048,NA,,,, +Ig18,,,EA048,NA,,,, +Ig19,,,EA048,NA,,,, +Ig2,Kiriwina Island,1910,EA048,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA048,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA048,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA048,1,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA048,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA048,8,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA048,1,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA048,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA048,NA,,,, +Ig9,Peri Village,1920,EA048,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA048,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,Whitsands,1920,EA048,8,,humphreys1926,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA048,NA,,,, +Ih12,,,EA048,NA,,,, +Ih13,,,EA048,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA048,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA048,1,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA048,8,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p100, +Ih4,Lau Island,1920,EA048,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA048,NA,,,, +Ih6,,1890,EA048,8,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA048,8,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,,,EA048,NA,,,, +Ih9,Graciosa Bay,1930,EA048,1,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA048,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA048,NA,,,, +Ii12,Pangai,1920,EA048,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA048,1,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA048,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA048,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA048,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA048,1,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA048,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA048,8,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA048,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA048,1,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA048,1,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA048,1,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA048,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA048,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA048,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA048,1,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA048,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA048,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA048,1,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA048,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA048,1,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA048,1,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA048,2,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA048,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA048,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA048,1,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA048,1,But boats were lacking until the kayak was introduced in 1862,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA048,6,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA048,3,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA048,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA048,8,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA048,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA048,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA048,3,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA048,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA048,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA048,3,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA048,8,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA048,3,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA048,8,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA048,8,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA048,8,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA048,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA048,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA048,1,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA048,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA048,2,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA048,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA048,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA048,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA048,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA048,8,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA048,4,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA048,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA048,8,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA048,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA048,8,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA048,8,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA048,NA,,,, +Na45,,1900,EA048,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA048,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA048,1,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA048,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA048,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA048,8,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA048,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,,EA048,NA,,,, +Nb11,with special reference to the Central Nootka,1880,EA048,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA048,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA048,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA048,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA048,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA048,8,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA048,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA048,1,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA048,8,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA048,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA048,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA048,8,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA048,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA048,8,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA048,1,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA048,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA048,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA048,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA048,8,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA048,8,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA048,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA048,8,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA048,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,,,EA048,NA,,,, +Nb33,,1860,EA048,9,Log rafts only,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA048,8,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA048,8,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA048,8,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA048,8,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA048,8,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA048,8,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA048,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA048,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA048,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA048,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA048,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA048,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA048,9,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA048,8,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA048,8,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA048,8,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA048,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA048,9,Rafts only,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA048,9,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,,EA048,NA,,,, +Nc17,with special reference to those of Kalekau,1860,EA048,9,Log rafts only,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA048,9,But men make balsa rafts,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA048,9,Rafts only,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA048,9,Rafts of tule reeds only,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA048,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,,EA048,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA048,9,Balsa rafts only,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA048,9,Log rafts only,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA048,9,But men make balsa rafts,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,,EA048,NA,,,, +Nc26,,1770,EA048,9,Balsa canoes only,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA048,NA,,,, +Nc28,,1800,EA048,8,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA048,8,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA048,9,Rafts of tule reeds only,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA048,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA048,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA048,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA048,9,Balsa rafts only,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA048,9,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA048,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA048,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA048,9,Balsa rafts only,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA048,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA048,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA048,8,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA048,1,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA048,8,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA048,8,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA048,8,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA048,8,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA048,8,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA048,1,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA048,8,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA048,8,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA048,1,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA048,8,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA048,9,Rafts only,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA048,8,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA048,9,Balsa rafts only,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA048,9,Balsa rafts only,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA048,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA048,9,Rafts only,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA048,9,Balsa rafts only,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA048,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA048,9,Balsa rafts only,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA048,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA048,9,Balsa rafts only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA048,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,,EA048,NA,,,, +Nd31,,1850,EA048,9,Log rafts only,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA048,9,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA048,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA048,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA048,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA048,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA048,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA048,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA048,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA048,1,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA048,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA048,9,Balsa rafts only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA048,9,Balsa rafts only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA048,9,Balsa rafts only,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA048,9,Balsa rafts only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA048,9,Balsa rafts only,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA048,9,Balsa rafts only,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA048,9,Balsa rafts only,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA048,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA048,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA048,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA048,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,,EA048,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA048,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA048,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA048,9,Rafts only,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA048,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA048,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA048,9,But balsa rafts were made,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA048,9,Rafts only,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA048,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA048,9,Rafts only,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA048,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA048,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA048,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA048,9,Balsa rafts only,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA048,8,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA048,9,Rafts only,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA048,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA048,9,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA048,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA048,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA048,8,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA048,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA048,6,Skin bullboats,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA048,8,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA048,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA048,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA048,8,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA048,6,Skin bullboats,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA048,8,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,,EA048,NA,,,, +Ne18,,1850,EA048,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA048,8,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,,EA048,NA,,,, +Ne20,,,EA048,NA,,,, +Ne21,,,EA048,NA,,,, +Ne3,Comanche Tribe,1870,EA048,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA048,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,,EA048,NA,,,, +Ne6,,,EA048,NA,,,, +Ne7,,1880,EA048,9,Rafts only,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,,EA048,NA,,,, +Ne9,,,EA048,NA,,,, +Nf10,,,EA048,NA,,,, +Nf11,,,EA048,NA,,,, +Nf12,,,EA048,NA,,,, +Nf13,with special reference to the Kiskopotha band,1820,EA048,8,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA048,8,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA048,NA,,,, +Nf2,,1850,EA048,8,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA048,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA048,8,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,,EA048,NA,,,, +Nf6,,,EA048,NA,,,, +Nf7,Tama Reservation,1830,EA048,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,,EA048,NA,,,, +Nf9,,1870,EA048,8,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA048,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA048,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA048,8,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA048,8,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA048,NA,,,, +Ng14,,,EA048,NA,,,, +Ng15,,,EA048,NA,,,, +Ng2,,,EA048,NA,,,, +Ng3,Upper division in Alabama,1750,EA048,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA048,NA,,,, +Ng5,,1750,EA048,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA048,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA048,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA048,8,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA048,NA,,,, +Nh1,Central band,1880,EA048,9,Rafts only,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA048,NA,,,, +Nh11,,,EA048,NA,,,, +Nh12,,1920,EA048,9,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA048,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA048,NA,,,, +Nh15,,1870,EA048,9,Rafts only,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA048,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA048,9,Rafts only,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA048,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA048,9,Rafts only,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA048,9,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA048,9,Balsa rafts only,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA048,9,Balsa rafts only,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA048,9,Balsa rafts only,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA048,1,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA048,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA048,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA048,NA,,,, +Nh27,,,EA048,NA,,,, +Nh3,,1930,EA048,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA048,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA048,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA048,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA048,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA048,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,,EA048,NA,,,, +Ni1,,,EA048,NA,,,, +Ni2,,1930,EA048,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,,,EA048,NA,,,, +Ni4,,1900,EA048,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA048,9,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA048,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA048,8,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA048,NA,,,, +Ni9,,,EA048,NA,,,, +Nj1,,,EA048,NA,,,, +Nj10,mountain village of Yalagag,1940,EA048,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA048,NA,,,, +Nj12,,,EA048,NA,,,, +Nj13,,,EA048,NA,,,, +Nj14,,,EA048,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA048,8,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,,,EA048,NA,,,, +Nj4,,,EA048,NA,,,, +Nj5,,,EA048,NA,,,, +Nj6,,,EA048,NA,,,, +Nj7,with special reference to Ayutla,1930,EA048,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA048,8,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA048,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA048,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,,EA048,NA,,,, +Sa11,,,EA048,NA,,,, +Sa12,,,EA048,NA,,,, +Sa13,Town of Chichicastenango,1930,EA048,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA048,NA,,,, +Sa15,,,EA048,NA,,,, +Sa16,,,EA048,NA,,,, +Sa17,,,EA048,NA,,,, +Sa2,,,EA048,NA,,,, +Sa3,,,EA048,NA,,,, +Sa4,with special reference to those of Panama,1960,EA048,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA048,9,"Entry follows Stone and Pittier, who report dugout canoes in some regions; Gann and Skinner deny the presence of water craft",gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA048,8,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA048,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA048,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA048,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA048,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA048,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA048,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA048,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA048,8,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p120, +Sb6,Goajiro Tribe,1940,EA048,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,,,EA048,NA,,,, +Sb8,,1520,EA048,1,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA048,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA048,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA048,8,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,,EA048,NA,,,, +Sc12,,,EA048,NA,,,, +Sc13,,1950,EA048,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA048,8,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA048,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA048,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,,EA048,NA,,,, +Sc18,,1960,EA048,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA048,1,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA048,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA048,1,But the agricultural Guahibo make dugout canoes,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA048,1,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA048,8,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA048,1,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA048,8,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,,EA048,NA,,,, +Sd1,Cabrura village,1950,EA048,9,But barks canoes were formerly used,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA048,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA048,1,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA048,9,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA048,8,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA048,1,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA048,1,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA048,9,Balsa rafts only,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA048,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA048,9,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,1670,EA048,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p120, +Se11,,1960,EA048,1,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA048,NA,,,, +Se2,,1940,EA048,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA048,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA048,1,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA048,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA048,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA048,NA,,,, +Se8,Upper Inuya River,1950,EA048,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA048,8,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA048,8,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA048,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA048,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,,EA048,NA,,,, +Sf5,,1900,EA048,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,,EA048,NA,,,, +Sf7,,1900,EA048,8,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA048,NA,,,, +Sf9,,,EA048,NA,,,, +Sg1,Eastern and central,1870,EA048,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA048,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,,,EA048,NA,,,, +Sg4,Equestrian,1870,EA048,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA048,1,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA048,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,,EA048,NA,,,, +Sh3,Those in contact with mission,1800,EA048,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,,EA048,NA,,,, +Sh5,,1910,EA048,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA048,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA048,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA048,9,"Formerly 'males alone' (EA048 code ""1""), with no specialization specified (EA059 code ""9"")",karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA048,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA048,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA048,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA048,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA048,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA048,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA048,1,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA048,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,with special reference to the Cozarimi,1910,EA048,9,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,,EA048,NA,,,, +Si9,,,EA048,NA,,,, +Sj1,,,EA048,NA,,,, +Sj10,Taquapiri,1950,EA048,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA048,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,,EA048,NA,,,, +Sj3,Duque de Caxias Reservation,1910,EA048,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA048,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA048,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,,,EA048,NA,,,, +Sj7,,1920,EA048,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA048,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA048,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA048,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA048,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA048,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA048,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA048,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA048,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA048,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA048,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA048,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA048,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA048,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA048,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA048,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA048,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA048,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA048,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA048,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA048,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA048,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA048,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA048,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA048,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA048,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA048,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA048,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA048,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA048,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA049,6,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA049,6,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA049,3,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA049,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA049,6,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA049,NA,,,, +Aa7,,1910,EA049,6,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,,EA049,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA049,6,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,,EA049,NA,,,, +Ab10,,1936,EA049,2,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,,EA049,NA,,,, +Ab12,,1830,EA049,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,,,EA049,NA,,,, +Ab14,,1930,EA049,2,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,,EA049,NA,,,, +Ab16,,,EA049,NA,,,, +Ab17,,,EA049,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA049,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA049,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA049,4,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA049,NA,,,, +Ab21a,,,EA049,NA,,,, +Ab21b,,,EA049,NA,,,, +Ab22,,,EA049,NA,,,, +Ab3,Ruling Luyana,1890,EA049,3,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA049,1,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA049,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA049,3,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA049,NA,,,, +Ab8,Basuto,1860,EA049,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA049,2,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA049,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,,EA049,NA,,,, +Ac11,,,EA049,NA,,,, +Ac12,,,EA049,NA,,,, +Ac13,,,EA049,NA,,,, +Ac14,,,EA049,NA,,,, +Ac15,,,EA049,NA,,,, +Ac16,,,EA049,NA,,,, +Ac17,Feshi territory lineage center,1910,EA049,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA049,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA049,NA,,,, +Ac2,,,EA049,NA,,,, +Ac20,,,EA049,NA,,,, +Ac21,,,EA049,NA,,,, +Ac22,,,EA049,NA,,,, +Ac23,with special reference to the western Lele,1950,EA049,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA049,NA,,,, +Ac25,,,EA049,NA,,,, +Ac26,,,EA049,NA,,,, +Ac27,,,EA049,NA,,,, +Ac28,,,EA049,NA,,,, +Ac29,,,EA049,NA,,,, +Ac3,Zambia branch,1900,EA049,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA049,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,,EA049,NA,,,, +Ac32,,,EA049,NA,,,, +Ac33,,,EA049,NA,,,, +Ac34,,,EA049,NA,,,, +Ac35,,,EA049,NA,,,, +Ac36,,,EA049,NA,,,, +Ac37,,,EA049,NA,,,, +Ac38,,,EA049,NA,,,, +Ac39,,,EA049,NA,,,, +Ac4,,,EA049,NA,,,, +Ac40,,,EA049,NA,,,, +Ac41,,,EA049,NA,,,, +Ac42,,,EA049,NA,,,, +Ac43,,,EA049,NA,,,, +Ac5,,,EA049,NA,,,, +Ac6,,,EA049,NA,,,, +Ac7,,1920,EA049,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,,EA049,NA,,,, +Ac9,,,EA049,NA,,,, +Ad1,,,EA049,NA,,,, +Ad10,,,EA049,NA,,,, +Ad11,,1930,EA049,1,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA049,NA,,,, +Ad13,,1930,EA049,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,Morogoro District,1930,EA049,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p68, +Ad15,,,EA049,NA,,,, +Ad16,,,EA049,NA,,,, +Ad17,,1920,EA049,2,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA049,NA,,,, +Ad19,,1910,EA049,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA049,3,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA049,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,,EA049,NA,,,, +Ad22,,,EA049,NA,,,, +Ad23,,,EA049,NA,,,, +Ad24,,,EA049,NA,,,, +Ad25,,,EA049,NA,,,, +Ad26,,,EA049,NA,,,, +Ad27,,,EA049,NA,,,, +Ad28,,,EA049,NA,,,, +Ad29,,1930,EA049,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA049,2,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,,EA049,NA,,,, +Ad31,,1910,EA049,2,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,,EA049,NA,,,, +Ad33,,,EA049,NA,,,, +Ad34,,,EA049,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA049,3,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA049,NA,,,, +Ad37,,,EA049,NA,,,, +Ad38,,,EA049,NA,,,, +Ad39,,,EA049,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA049,3,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA049,NA,,,, +Ad41,,1930,EA049,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,,EA049,NA,,,, +Ad43,,,EA049,NA,,,, +Ad44,,,EA049,NA,,,, +Ad45,,1920,EA049,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,,EA049,NA,,,, +Ad47,,,EA049,NA,,,, +Ad48,,1950,EA049,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA049,NA,,,, +Ad5,,,EA049,NA,,,, +Ad50,,,EA049,NA,,,, +Ad51,,,EA049,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA049,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA049,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA049,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,,EA049,NA,,,, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA049,1,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA049,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA049,1,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,,EA049,NA,,,, +Ae13,,,EA049,NA,,,, +Ae14,,1950,EA049,1,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,,EA049,NA,,,, +Ae16,,,EA049,NA,,,, +Ae17,,,EA049,NA,,,, +Ae18,,,EA049,NA,,,, +Ae19,,,EA049,NA,,,, +Ae2,,,EA049,NA,,,, +Ae20,,,EA049,NA,,,, +Ae21,,,EA049,NA,,,, +Ae22,,,EA049,NA,,,, +Ae23,,,EA049,NA,,,, +Ae24,,,EA049,NA,,,, +Ae25,,,EA049,NA,,,, +Ae26,,,EA049,NA,,,, +Ae27,,,EA049,NA,,,, +Ae28,,,EA049,NA,,,, +Ae29,,,EA049,NA,,,, +Ae3,,,EA049,NA,,,, +Ae30,,,EA049,NA,,,, +Ae31,,,EA049,NA,,,, +Ae32,,,EA049,NA,,,, +Ae33,,1920,EA049,2,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA049,NA,,,, +Ae35,,,EA049,NA,,,, +Ae36,,,EA049,NA,,,, +Ae37,,,EA049,NA,,,, +Ae38,,,EA049,NA,,,, +Ae39,,1920,EA049,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA049,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA049,NA,,,, +Ae41,,,EA049,NA,,,, +Ae42,,,EA049,NA,,,, +Ae43,,,EA049,NA,,,, +Ae44,,,EA049,NA,,,, +Ae45,,,EA049,NA,,,, +Ae46,,,EA049,NA,,,, +Ae47,,,EA049,NA,,,, +Ae48,,,EA049,NA,,,, +Ae49,,,EA049,NA,,,, +Ae5,,1910,EA049,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA049,3,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA049,3,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,1950,EA049,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,,EA049,NA,,,, +Ae54,,,EA049,NA,,,, +Ae55,,1950,EA049,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,1950,EA049,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae57,,,EA049,NA,,,, +Ae58,,,EA049,NA,,,, +Ae59,,,EA049,NA,,,, +Ae6,,,EA049,NA,,,, +Ae7,,,EA049,NA,,,, +Ae8,,1910,EA049,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA049,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,,,EA049,NA,,,, +Af10,,1930,EA049,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,,EA049,NA,,,, +Af12,,,EA049,NA,,,, +Af13,,,EA049,NA,,,, +Af14,,1930,EA049,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA049,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA049,NA,,,, +Af17,,,EA049,NA,,,, +Af18,,,EA049,NA,,,, +Af19,,,EA049,NA,,,, +Af2,,,EA049,NA,,,, +Af20,,,EA049,NA,,,, +Af21,,,EA049,NA,,,, +Af22,,,EA049,NA,,,, +Af23,with special reference to the village of Mgbom,1950,EA049,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA049,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,,EA049,NA,,,, +Af26,,,EA049,NA,,,, +Af27,,,EA049,NA,,,, +Af28,,,EA049,NA,,,, +Af29,,,EA049,NA,,,, +Af3,,,EA049,NA,,,, +Af30,,,EA049,NA,,,, +Af31,,,EA049,NA,,,, +Af32,,,EA049,NA,,,, +Af33,,,EA049,NA,,,, +Af34,,,EA049,NA,,,, +Af35,,,EA049,NA,,,, +Af36,,,EA049,NA,,,, +Af37,,,EA049,NA,,,, +Af38,,,EA049,NA,,,, +Af39,,,EA049,NA,,,, +Af4,,1930,EA049,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA049,NA,,,, +Af41,,,EA049,NA,,,, +Af42,,,EA049,NA,,,, +Af43,,,EA049,NA,,,, +Af44,,,EA049,NA,,,, +Af45,,,EA049,NA,,,, +Af46,,,EA049,NA,,,, +Af47,,,EA049,NA,,,, +Af48,,,EA049,NA,,,, +Af49,,,EA049,NA,,,, +Af5,,1930,EA049,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA049,NA,,,, +Af51,,,EA049,NA,,,, +Af52,,1920,EA049,1,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA049,NA,,,, +Af54,,,EA049,NA,,,, +Af55,,,EA049,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA049,9,,schwab1947; viard1934,EthnographicAtlas_1967_p72,"Assume Murdock comment refers to Col 48, not Col 49 as stated in Gray (1999)" +Af57,,,EA049,NA,,,, +Af58,,,EA049,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA049,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,,EA049,NA,,,, +Af8,,,EA049,NA,,,, +Af9,,,EA049,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA049,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA049,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA049,2,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA049,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,,EA049,NA,,,, +Ag14,,,EA049,NA,,,, +Ag15,,,EA049,NA,,,, +Ag16,,,EA049,NA,,,, +Ag17,,,EA049,NA,,,, +Ag18,,,EA049,NA,,,, +Ag19,,,EA049,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA049,2,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA049,NA,,,, +Ag21,,1910,EA049,1,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,,,EA049,NA,,,, +Ag23,,,EA049,NA,,,, +Ag24,,,EA049,NA,,,, +Ag25,,,EA049,NA,,,, +Ag26,,,EA049,NA,,,, +Ag27,,,EA049,NA,,,, +Ag28,,,EA049,NA,,,, +Ag29,,,EA049,NA,,,, +Ag3,,,EA049,NA,,,, +Ag30,,,EA049,NA,,,, +Ag31,,,EA049,NA,,,, +Ag32,,,EA049,NA,,,, +Ag33,,,EA049,NA,,,, +Ag34,,,EA049,NA,,,, +Ag35,,,EA049,NA,,,, +Ag36,,,EA049,NA,,,, +Ag37,,,EA049,NA,,,, +Ag38,,,EA049,NA,,,, +Ag39,,1910,EA049,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA049,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA049,NA,,,, +Ag41,,1920,EA049,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p72, +Ag42,,,EA049,NA,,,, +Ag43,,,EA049,NA,,,, +Ag44,,,EA049,NA,,,, +Ag45,,,EA049,NA,,,, +Ag46,,,EA049,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA049,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA049,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,,EA049,NA,,,, +Ag5,,1930,EA049,3,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,,EA049,NA,,,, +Ag51,,,EA049,NA,,,, +Ag52,,,EA049,NA,,,, +Ag53,with special reference to those of Garango,1960,EA049,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA049,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA049,NA,,,, +Ag7,,,EA049,NA,,,, +Ag8,,,EA049,NA,,,, +Ag9,,,EA049,NA,,,, +Ah1,Zaria Province,1930,EA049,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA049,NA,,,, +Ah11,,,EA049,NA,,,, +Ah12,,,EA049,NA,,,, +Ah13,,,EA049,NA,,,, +Ah14,,,EA049,NA,,,, +Ah15,,,EA049,NA,,,, +Ah16,,,EA049,NA,,,, +Ah17,,,EA049,NA,,,, +Ah18,,,EA049,NA,,,, +Ah19,,,EA049,NA,,,, +Ah2,,,EA049,NA,,,, +Ah20,,1920,EA049,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA049,NA,,,, +Ah22,,,EA049,NA,,,, +Ah23,,,EA049,NA,,,, +Ah24,,,EA049,NA,,,, +Ah25,,,EA049,NA,,,, +Ah26,,,EA049,NA,,,, +Ah27,,,EA049,NA,,,, +Ah28,,,EA049,NA,,,, +Ah29,,,EA049,NA,,,, +Ah3,Tar of Benue Province,1920,EA049,2,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA049,NA,,,, +Ah31,,,EA049,NA,,,, +Ah32,,,EA049,NA,,,, +Ah33,,,EA049,NA,,,, +Ah34,,,EA049,NA,,,, +Ah35,,,EA049,NA,,,, +Ah36,,1920,EA049,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA049,NA,,,, +Ah38,,,EA049,NA,,,, +Ah39,,1950,EA049,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA049,NA,,,, +Ah5,,,EA049,NA,,,, +Ah6,,,EA049,NA,,,, +Ah7,,1940,EA049,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,,EA049,NA,,,, +Ah9,,1920,EA049,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,,EA049,NA,,,, +Ai10,,,EA049,NA,,,, +Ai11,,,EA049,NA,,,, +Ai12,,,EA049,NA,,,, +Ai13,,,EA049,NA,,,, +Ai14,,,EA049,NA,,,, +Ai15,,,EA049,NA,,,, +Ai16,,,EA049,NA,,,, +Ai17,,,EA049,NA,,,, +Ai18,,,EA049,NA,,,, +Ai19,,,EA049,NA,,,, +Ai2,,,EA049,NA,,,, +Ai20,,,EA049,NA,,,, +Ai21,,,EA049,NA,,,, +Ai22,,,EA049,NA,,,, +Ai23,,,EA049,NA,,,, +Ai24,,,EA049,NA,,,, +Ai25,,,EA049,NA,,,, +Ai26,,,EA049,NA,,,, +Ai27,,,EA049,NA,,,, +Ai28,,,EA049,NA,,,, +Ai29,,,EA049,NA,,,, +Ai3,,1920,EA049,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,,EA049,NA,,,, +Ai31,,,EA049,NA,,,, +Ai32,,1920,EA049,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p76, +Ai33,,1940,EA049,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p76, +Ai34,,,EA049,NA,,,, +Ai35,,1870,EA049,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA049,2,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA049,NA,,,, +Ai38,,,EA049,NA,,,, +Ai39,,,EA049,NA,,,, +Ai4,,,EA049,NA,,,, +Ai40,,,EA049,NA,,,, +Ai41,,,EA049,NA,,,, +Ai42,,,EA049,NA,,,, +Ai43,,,EA049,NA,,,, +Ai44,,,EA049,NA,,,, +Ai45,,,EA049,NA,,,, +Ai46,,,EA049,NA,,,, +Ai47,Northern division,1939,EA049,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,,EA049,NA,,,, +Ai6,Shilluk Kingdom,1900,EA049,3,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,,EA049,NA,,,, +Ai8,,,EA049,NA,,,, +Ai9,,,EA049,NA,,,, +Aj1,,,EA049,NA,,,, +Aj10,,,EA049,NA,,,, +Aj11,,,EA049,NA,,,, +Aj12,,,EA049,NA,,,, +Aj13,,,EA049,NA,,,, +Aj14,,,EA049,NA,,,, +Aj15,,1900,EA049,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,,,EA049,NA,,,, +Aj17,,1890,EA049,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,,EA049,NA,,,, +Aj19,,,EA049,NA,,,, +Aj2,,,EA049,NA,,,, +Aj20,,,EA049,NA,,,, +Aj21,,,EA049,NA,,,, +Aj22,,1930,EA049,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA049,6,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,,EA049,NA,,,, +Aj25,,,EA049,NA,,,, +Aj26,,,EA049,NA,,,, +Aj27,,,EA049,NA,,,, +Aj28,,,EA049,NA,,,, +Aj29,,,EA049,NA,,,, +Aj3,,,EA049,NA,,,, +Aj30,,,EA049,NA,,,, +Aj31,,,EA049,NA,,,, +Aj4,,,EA049,NA,,,, +Aj5,,1920,EA049,4,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,,EA049,NA,,,, +Aj7,,1910,EA049,3,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,,EA049,NA,,,, +Aj9,,1920,EA049,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA049,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,,EA049,NA,,,, +Ca11,,1890,EA049,1,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA049,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA049,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,,EA049,NA,,,, +Ca15,,,EA049,NA,,,, +Ca16,,,EA049,NA,,,, +Ca17,,1950,EA049,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA049,NA,,,, +Ca19,,1950,EA049,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA049,5,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA049,NA,,,, +Ca21,,1950,EA049,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,,EA049,NA,,,, +Ca23,,,EA049,NA,,,, +Ca24,,,EA049,NA,,,, +Ca25,,,EA049,NA,,,, +Ca26,,,EA049,NA,,,, +Ca27,,,EA049,NA,,,, +Ca28,,,EA049,NA,,,, +Ca29,,,EA049,NA,,,, +Ca3,,,EA049,NA,,,, +Ca30,,,EA049,NA,,,, +Ca31,,,EA049,NA,,,, +Ca32,,,EA049,NA,,,, +Ca33,,,EA049,NA,,,, +Ca34,,,EA049,NA,,,, +Ca35,,,EA049,NA,,,, +Ca36,,,EA049,NA,,,, +Ca37,,,EA049,NA,,,, +Ca38,,,EA049,NA,,,, +Ca39,,,EA049,NA,,,, +Ca4,,,EA049,NA,,,, +Ca40,,,EA049,NA,,,, +Ca41,,1950,EA049,1,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA049,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA049,NA,,,, +Ca5,,,EA049,NA,,,, +Ca6,,1880,EA049,6,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p80, +Ca7,Gondar district,1950,EA049,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA049,NA,,,, +Ca9,,,EA049,NA,,,, +Cb1,,,EA049,NA,,,, +Cb10,,,EA049,NA,,,, +Cb11,,,EA049,NA,,,, +Cb12,,,EA049,NA,,,, +Cb13,,,EA049,NA,,,, +Cb14,,,EA049,NA,,,, +Cb15,,,EA049,NA,,,, +Cb16,,,EA049,NA,,,, +Cb17,,,EA049,NA,,,, +Cb18,,,EA049,NA,,,, +Cb19,,,EA049,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA049,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,,EA049,NA,,,, +Cb21,,,EA049,NA,,,, +Cb22,,,EA049,NA,,,, +Cb23,,,EA049,NA,,,, +Cb24,,,EA049,NA,,,, +Cb25,,,EA049,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA049,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA049,NA,,,, +Cb28,,,EA049,NA,,,, +Cb29,,,EA049,NA,,,, +Cb3,Bamba division,1940,EA049,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA049,NA,,,, +Cb5,,,EA049,NA,,,, +Cb6,,,EA049,NA,,,, +Cb7,,,EA049,NA,,,, +Cb8,,,EA049,NA,,,, +Cb9,,,EA049,NA,,,, +Cc1,,1950,EA049,6,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA049,6,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA049,NA,,,, +Cc12,,,EA049,NA,,,, +Cc13,,,EA049,NA,,,, +Cc14,,1880,EA049,6,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA049,NA,,,, +Cc16,,,EA049,NA,,,, +Cc17,,1930,EA049,6,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA049,NA,,,, +Cc19,,,EA049,NA,,,, +Cc2,Nomads of Tibesti,1950,EA049,6,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,,,EA049,NA,,,, +Cc3,,,EA049,NA,,,, +Cc4,,,EA049,NA,,,, +Cc5,,,EA049,NA,,,, +Cc6,,,EA049,NA,,,, +Cc7,,,EA049,NA,,,, +Cc8,,,EA049,NA,,,, +Cc9,Ahaggaren tribe,1920,EA049,6,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,,,EA049,NA,,,, +Cd10,,,EA049,NA,,,, +Cd11,,,EA049,NA,,,, +Cd12,,,EA049,NA,,,, +Cd13,,,EA049,NA,,,, +Cd14,,,EA049,NA,,,, +Cd15,,,EA049,NA,,,, +Cd16,,,EA049,NA,,,, +Cd17,,,EA049,NA,,,, +Cd18,,,EA049,NA,,,, +Cd19,,,EA049,NA,,,, +Cd2,,,EA049,NA,,,, +Cd20,,,EA049,NA,,,, +Cd21,,,EA049,NA,,,, +Cd3,Entirety: Moroccan,1920,EA049,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,,EA049,NA,,,, +Cd5,,,EA049,NA,,,, +Cd6,,,EA049,NA,,,, +Cd7,,,EA049,NA,,,, +Cd8,,,EA049,NA,,,, +Cd9,,,EA049,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA049,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA049,NA,,,, +Ce3,City and environs of Rome,100,EA049,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA049,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA049,1,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA049,1,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA049,1,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA049,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA049,1,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA049,NA,,,, +Cf3,,1930,EA049,1,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA049,1,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,,EA049,NA,,,, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA049,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA049,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA049,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA049,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA049,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA049,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA049,NA,,,, +Ch11,Viriatino Village,1955,EA049,8,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA049,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA049,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,1900,EA049,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p84, +Ch5,with special reference to the village of Dragelevtsy,1940,EA049,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,,EA049,NA,,,, +Ch7,,,EA049,NA,,,, +Ch8,,,EA049,NA,,,, +Ch9,,,EA049,NA,,,, +Ci1,with special reference to the Baga Dorbed group,1920,EA049,4,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA049,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA049,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA049,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA049,NA,,,, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA049,9,,gadzhieva1958,EthnographicAtlas_1967_p84, +Ci4,,,EA049,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA049,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA049,NA,,,, +Ci7,,,EA049,NA,,,, +Ci8,,,EA049,NA,,,, +Ci9,,,EA049,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA049,2,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA049,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA049,6,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA049,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA049,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA049,6,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA049,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA049,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA049,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA049,NA,,,, +Ea1,,,EA049,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA049,6,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA049,NA,,,, +Ea12,,,EA049,NA,,,, +Ea13,Mohla Village,1950,EA049,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA049,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA049,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA049,1,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA049,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA049,4,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA049,1,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA049,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA049,1,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA049,6,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,,EA049,NA,,,, +Eb3,Narobanchin Territory,1940,EA049,2,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA049,NA,,,, +Eb5,,,EA049,NA,,,, +Eb6,,,EA049,NA,,,, +Eb7,,1930,EA049,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA049,NA,,,, +Ec1,Sakhalin Island,1920,EA049,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,,,EA049,NA,,,, +Ec11,,,EA049,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA049,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA049,3,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA049,6,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,,,EA049,NA,,,, +Ec6,,,EA049,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA049,3,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA049,NA,,,, +Ec9,,,EA049,NA,,,, +Ed1,Kanghwa Island,1950,EA049,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,,,EA049,NA,,,, +Ed13,,,EA049,NA,,,, +Ed14,,,EA049,NA,,,, +Ed15a,,,EA049,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA049,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA049,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA049,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,,,EA049,NA,,,, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA049,1,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA049,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA049,NA,,,, +Ed7,,1950,EA049,2,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA049,1,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,,EA049,NA,,,, +Ee1,,1940,EA049,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA049,2,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA049,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,,,EA049,NA,,,, +Ee5,with special reference to the Shina tribe,1870,EA049,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA049,1,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA049,NA,,,, +Ee8,,,EA049,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA049,3,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA049,NA,,,, +Ef11,Village and environs of Senapur,1945,EA049,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA049,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA049,NA,,,, +Ef4,,,EA049,NA,,,, +Ef5,,1900,EA049,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA049,1,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA049,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA049,1,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,,,EA049,NA,,,, +Eg1,with special reference to the forest group,1940,EA049,2,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA049,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA049,NA,,,, +Eg12,,,EA049,NA,,,, +Eg13,Bastar State,1941,EA049,2,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,,,EA049,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA049,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA049,3,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA049,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA049,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,,,EA049,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA049,1,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA049,2,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,,EA049,NA,,,, +Eh1,,1870,EA049,5,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA049,NA,,,, +Eh2,,1900,EA049,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA049,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,,,EA049,NA,,,, +Eh5,Car Nicobar of North Islands,1890,EA049,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA049,NA,,,, +Eh7,,1900,EA049,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA049,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA049,NA,,,, +Ei1,Rengsanggr,1900,EA049,1,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA049,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA049,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA049,NA,,,, +Ei13,,,EA049,NA,,,, +Ei14,with special reference to the Chongli,1920,EA049,1,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA049,NA,,,, +Ei16,,,EA049,NA,,,, +Ei17,,,EA049,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA049,1,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,,EA049,NA,,,, +Ei2,,1920,EA049,1,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA049,NA,,,, +Ei3,Nondwin Village,1950,EA049,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA049,1,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA049,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,,EA049,NA,,,, +Ei7,,1910,EA049,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA049,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA049,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA049,2,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA049,4,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA049,NA,,,, +Ej12,,1960,EA049,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA049,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,,,EA049,NA,,,, +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA049,1,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA049,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA049,2,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA049,6,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA049,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA049,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,,,EA049,NA,,,, +Ej7,,,EA049,NA,,,, +Ej8,with special reference to those of Trengganu,1940,EA049,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA049,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA049,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,,EA049,NA,,,, +Ia11,,,EA049,NA,,,, +Ia12,,,EA049,NA,,,, +Ia13,Tawi-Tawi and adjacent islands,1960,EA049,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,,EA049,NA,,,, +Ia15,,,EA049,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA049,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA049,NA,,,, +Ia18,,,EA049,NA,,,, +Ia2,,1950,EA049,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,,,EA049,NA,,,, +Ia4,,,EA049,NA,,,, +Ia5,,,EA049,NA,,,, +Ia6,,,EA049,NA,,,, +Ia7,,,EA049,NA,,,, +Ia8,,,EA049,NA,,,, +Ia9,,,EA049,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA049,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA049,2,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA049,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,,,EA049,NA,,,, +Ib5,,,EA049,NA,,,, +Ib6,,,EA049,NA,,,, +Ib7,,,EA049,NA,,,, +Ib8,,,EA049,NA,,,, +Ib9,,,EA049,NA,,,, +Ic1,Borongloe,1940,EA049,1,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA049,NA,,,, +Ic11,Allang,1950,EA049,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA049,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA049,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA049,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,,,EA049,NA,,,, +Ic4,,,EA049,NA,,,, +Ic5,,,EA049,NA,,,, +Ic6,,,EA049,NA,,,, +Ic7,,,EA049,NA,,,, +Ic8,,,EA049,NA,,,, +Ic9,,,EA049,NA,,,, +Id1,Alice Springs and environs,1900,EA049,6,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA049,4,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,,EA049,NA,,,, +Id12,,,EA049,NA,,,, +Id13,,,EA049,NA,,,, +Id2,,1930,EA049,5,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,,,EA049,NA,,,, +Id4,,,EA049,NA,,,, +Id5,,,EA049,NA,,,, +Id6,,,EA049,NA,,,, +Id7,,,EA049,NA,,,, +Id8,,1830,EA049,6,,roth1890,EthnographicAtlas_1967_p96, +Id9,,,EA049,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA049,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA049,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA049,1,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA049,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA049,NA,,,, +Ie14,,,EA049,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA049,1,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA049,NA,,,, +Ie17,,1940,EA049,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,,,EA049,NA,,,, +Ie19,with special reference to the coastal inhabitants,1910,EA049,1,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,,EA049,NA,,,, +Ie20,,,EA049,NA,,,, +Ie21,,,EA049,NA,,,, +Ie22,,,EA049,NA,,,, +Ie23,,,EA049,NA,,,, +Ie24,,,EA049,NA,,,, +Ie25,,,EA049,NA,,,, +Ie26,,,EA049,NA,,,, +Ie27,,,EA049,NA,,,, +Ie28,,1940,EA049,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA049,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,,,EA049,NA,,,, +Ie30,,,EA049,NA,,,, +Ie31,,1950,EA049,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA049,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA049,NA,,,, +Ie34,,,EA049,NA,,,, +Ie35,,1930,EA049,1,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA049,NA,,,, +Ie37,,,EA049,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA049,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA049,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA049,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA049,1,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,,EA049,NA,,,, +Ie7,with special reference to the Mae group,1950,EA049,2,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA049,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,,EA049,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA049,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA049,NA,,,, +If11,,1860,EA049,1,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,,EA049,NA,,,, +If13,,,EA049,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA049,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA049,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA049,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA049,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA049,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA049,1,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA049,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA049,2,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA049,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA049,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA049,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA049,1,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA049,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA049,1,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA049,1,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,,,EA049,NA,,,, +Ig13,,,EA049,NA,,,, +Ig14,,1900,EA049,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA049,NA,,,, +Ig16,,,EA049,NA,,,, +Ig17,,,EA049,NA,,,, +Ig18,,,EA049,NA,,,, +Ig19,,,EA049,NA,,,, +Ig2,Kiriwina Island,1910,EA049,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA049,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA049,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA049,1,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA049,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,,EA049,NA,,,, +Ig6,,1900,EA049,1,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA049,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA049,NA,,,, +Ig9,Peri Village,1920,EA049,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,,EA049,NA,,,, +Ih10,,,EA049,NA,,,, +Ih11,,,EA049,NA,,,, +Ih12,,,EA049,NA,,,, +Ih13,,,EA049,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA049,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,,,EA049,NA,,,, +Ih3,,,EA049,NA,,,, +Ih4,Lau Island,1920,EA049,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA049,NA,,,, +Ih6,,,EA049,NA,,,, +Ih7,,1910,EA049,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA049,1,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA049,1,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA049,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA049,NA,,,, +Ii12,Pangai,1920,EA049,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA049,1,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA049,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA049,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA049,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA049,2,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA049,3,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,,,EA049,NA,,,, +Ii7,,1910,EA049,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA049,1,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA049,1,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA049,1,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA049,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA049,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA049,2,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,,EA049,NA,,,, +Ij5,,1900,EA049,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA049,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA049,1,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,,EA049,NA,,,, +Ij9,,,EA049,NA,,,, +Na1,,1930,EA049,3,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA049,1,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA049,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA049,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA049,1,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA049,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA049,1,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA049,5,,osgood1931,EthnographicAtlas_1967_p104, +Na17,,,EA049,NA,,,, +Na19,,,EA049,NA,,,, +Na2,,1880,EA049,4,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,,,EA049,NA,,,, +Na21,,1900,EA049,3,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA049,2,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA049,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA049,4,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA049,3,"Formerly males alone (EA049 code ""1""), with no specialization specified (EA060 code ""9"")",birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA049,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA049,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,,EA049,NA,,,, +Na29,,1850,EA049,6,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA049,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA049,6,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA049,6,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA049,4,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA049,6,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA049,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA049,6,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA049,5,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA049,6,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA049,6,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,,,EA049,NA,,,, +Na4,Upper Liard and Dease River Group,1920,EA049,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,,EA049,NA,,,, +Na41,Mainland division,1700,EA049,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,,,EA049,NA,,,, +Na43,,,EA049,NA,,,, +Na44,,,EA049,NA,,,, +Na45,,1900,EA049,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA049,6,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA049,2,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA049,3,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA049,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,,,EA049,NA,,,, +Nb1,Masset Town,1890,EA049,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,,EA049,NA,,,, +Nb11,with special reference to the Central Nootka,1880,EA049,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA049,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA049,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA049,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA049,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,,EA049,NA,,,, +Nb17,,1870,EA049,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,,EA049,NA,,,, +Nb19,,,EA049,NA,,,, +Nb2,Twana Tribe,1850,EA049,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,,EA049,NA,,,, +Nb21,,,EA049,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA049,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,,EA049,NA,,,, +Nb24,,1860,EA049,1,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA049,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA049,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA049,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA049,2,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,,EA049,NA,,,, +Nb3,,1890,EA049,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,,EA049,NA,,,, +Nb31,,,EA049,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA049,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,,EA049,NA,,,, +Nb34,,,EA049,NA,,,, +Nb35,,,EA049,NA,,,, +Nb36,,,EA049,NA,,,, +Nb37,,,EA049,NA,,,, +Nb38,,,EA049,NA,,,, +Nb39,,,EA049,NA,,,, +Nb4,,1850,EA049,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA049,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,,EA049,NA,,,, +Nb7,,1880,EA049,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,,EA049,NA,,,, +Nb9,"Central group, lower B.C. River",1880,EA049,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA049,2,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA049,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,,EA049,NA,,,, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA049,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA049,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA049,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,,EA049,NA,,,, +Nc16,,,EA049,NA,,,, +Nc17,,,EA049,NA,,,, +Nc18,"Clear Lake, Village of Cignon",1860,EA049,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,,,EA049,NA,,,, +Nc2,,1850,EA049,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA049,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,,EA049,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA049,4,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA049,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,,,EA049,NA,,,, +Nc25,,1860,EA049,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,,EA049,NA,,,, +Nc27,,,EA049,NA,,,, +Nc28,,,EA049,NA,,,, +Nc29,,,EA049,NA,,,, +Nc3,,,EA049,NA,,,, +Nc30,,,EA049,NA,,,, +Nc31,,,EA049,NA,,,, +Nc32,,,EA049,NA,,,, +Nc33,,,EA049,NA,,,, +Nc34,,,EA049,NA,,,, +Nc4,,1860,EA049,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,,,EA049,NA,,,, +Nc6,,,EA049,NA,,,, +Nc7,,1850,EA049,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA049,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA049,3,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA049,1,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,,EA049,NA,,,, +Nd11,,,EA049,NA,,,, +Nd12,,1860,EA049,6,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA049,6,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA049,6,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA049,6,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,,EA049,NA,,,, +Nd17,,,EA049,NA,,,, +Nd18,,,EA049,NA,,,, +Nd19,,,EA049,NA,,,, +Nd2,,1860,EA049,6,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,,EA049,NA,,,, +Nd21,,1870,EA049,6,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA049,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA049,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA049,4,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA049,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA049,3,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA049,3,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA049,4,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA049,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA049,2,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA049,1,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,,EA049,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA049,1,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,,,EA049,NA,,,, +Nd34,,1870,EA049,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA049,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA049,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA049,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA049,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA049,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,,EA049,NA,,,, +Nd40,,,EA049,NA,,,, +Nd41,,1870,EA049,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA049,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA049,4,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA049,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA049,6,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,,EA049,NA,,,, +Nd47,,,EA049,NA,,,, +Nd48,with special reference to those of Deep Creek,1860,EA049,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA049,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,,EA049,NA,,,, +Nd50,,,EA049,NA,,,, +Nd51,,,EA049,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA049,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA049,3,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,,,EA049,NA,,,, +Nd55,,,EA049,NA,,,, +Nd56,,1860,EA049,4,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,,EA049,NA,,,, +Nd58,,1860,EA049,6,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,,EA049,NA,,,, +Nd6,,1850,EA049,4,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA049,6,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA049,6,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA049,6,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,,,EA049,NA,,,, +Nd64,with special reference to the Kucundika,1860,EA049,6,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA049,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA049,6,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA049,6,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA049,3,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA049,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,,EA049,NA,,,, +Ne1,Gros Ventre Tribe,1880,EA049,6,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,,EA049,NA,,,, +Ne11,,1870,EA049,6,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA049,6,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA049,6,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA049,6,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA049,5,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA049,6,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA049,6,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA049,6,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA049,6,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA049,6,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,,EA049,NA,,,, +Ne21,,,EA049,NA,,,, +Ne3,,,EA049,NA,,,, +Ne4,,1870,EA049,6,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA049,6,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,,EA049,NA,,,, +Ne7,,1880,EA049,6,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA049,6,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA049,6,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA049,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA049,1,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA049,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA049,6,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA049,1,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA049,NA,,,, +Nf2,,1850,EA049,6,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA049,3,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA049,6,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA049,2,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA049,3,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA049,6,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA049,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA049,6,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA049,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA049,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,,EA049,NA,,,, +Ng12,,1760,EA049,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA049,NA,,,, +Ng14,,,EA049,NA,,,, +Ng15,,,EA049,NA,,,, +Ng2,,,EA049,NA,,,, +Ng3,Upper division in Alabama,1750,EA049,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA049,NA,,,, +Ng5,,,EA049,NA,,,, +Ng6,with special reference to the Munsee,1700,EA049,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA049,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA049,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA049,NA,,,, +Nh1,Central band,1880,EA049,6,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA049,NA,,,, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA049,2,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,,EA049,NA,,,, +Nh13,,,EA049,NA,,,, +Nh14,,,EA049,NA,,,, +Nh15,,1870,EA049,4,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA049,6,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA049,5,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA049,2,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,,EA049,NA,,,, +Nh2,,,EA049,NA,,,, +Nh20,,1860,EA049,1,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA049,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,,EA049,NA,,,, +Nh23,,1870,EA049,1,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,,EA049,NA,,,, +Nh25,,,EA049,NA,,,, +Nh26,,,EA049,NA,,,, +Nh27,,,EA049,NA,,,, +Nh3,,1930,EA049,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,,,EA049,NA,,,, +Nh5,,1850,EA049,1,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,,EA049,NA,,,, +Nh7,,,EA049,NA,,,, +Nh8,,,EA049,NA,,,, +Nh9,,,EA049,NA,,,, +Ni1,,1930,EA049,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,,EA049,NA,,,, +Ni3,Huichol Tribe,1920,EA049,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA049,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA049,1,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA049,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,,EA049,NA,,,, +Ni8,,,EA049,NA,,,, +Ni9,,,EA049,NA,,,, +Nj1,,,EA049,NA,,,, +Nj10,mountain village of Yalagag,1940,EA049,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA049,NA,,,, +Nj12,,,EA049,NA,,,, +Nj13,,,EA049,NA,,,, +Nj14,,,EA049,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA049,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,,,EA049,NA,,,, +Nj4,,1940,EA049,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA049,NA,,,, +Nj6,,,EA049,NA,,,, +Nj7,with special reference to Ayutla,1930,EA049,1,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA049,1,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA049,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA049,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA049,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA049,NA,,,, +Sa12,,,EA049,NA,,,, +Sa13,Town of Chichicastenango,1930,EA049,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA049,NA,,,, +Sa15,,,EA049,NA,,,, +Sa16,,,EA049,NA,,,, +Sa17,,,EA049,NA,,,, +Sa2,,,EA049,NA,,,, +Sa3,,1930,EA049,1,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,,,EA049,NA,,,, +Sa5,,,EA049,NA,,,, +Sa6,,,EA049,NA,,,, +Sa7,,1940,EA049,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA049,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA049,4,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA049,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA049,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA049,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA049,2,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA049,NA,,,, +Sb6,Goajiro Tribe,1940,EA049,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,,,EA049,NA,,,, +Sb8,,,EA049,NA,,,, +Sb9,,,EA049,NA,,,, +Sc1,,1950,EA049,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA049,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA049,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA049,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA049,4,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA049,1,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA049,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA049,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,,EA049,NA,,,, +Sc18,,1960,EA049,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA049,1,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA049,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA049,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,,EA049,NA,,,, +Sc6,,,EA049,NA,,,, +Sc7,,1950,EA049,1,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,,EA049,NA,,,, +Sc9,,1950,EA049,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA049,2,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA049,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA049,1,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,,EA049,NA,,,, +Sd5,,,EA049,NA,,,, +Sd6,,1960,EA049,1,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA049,1,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,,EA049,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA049,2,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA049,1,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA049,NA,,,, +Se11,,1960,EA049,1,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA049,NA,,,, +Se2,,1940,EA049,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA049,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA049,2,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA049,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA049,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA049,NA,,,, +Se8,Upper Inuya River,1950,EA049,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,,EA049,NA,,,, +Sf1,City and environs of Cuzco,1530,EA049,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA049,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,,,EA049,NA,,,, +Sf4,,,EA049,NA,,,, +Sf5,,1900,EA049,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,,EA049,NA,,,, +Sf7,,,EA049,NA,,,, +Sf8,,,EA049,NA,,,, +Sf9,,,EA049,NA,,,, +Sg1,Eastern and central,1870,EA049,3,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA049,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,,,EA049,NA,,,, +Sg4,Equestrian,1870,EA049,6,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA049,1,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA049,6,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA049,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,,,EA049,NA,,,, +Sh4,,,EA049,NA,,,, +Sh5,,1910,EA049,4,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,,EA049,NA,,,, +Sh7,,1900,EA049,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA049,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA049,3,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA049,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA049,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA049,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA049,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA049,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA049,1,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,,EA049,NA,,,, +Si7,with special reference to the Cozarimi,1910,EA049,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,,EA049,NA,,,, +Si9,,,EA049,NA,,,, +Sj1,,,EA049,NA,,,, +Sj10,,,EA049,NA,,,, +Sj11,Village of Sao Domingo,1958,EA049,5,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA049,2,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA049,5,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA049,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,,,EA049,NA,,,, +Sj6,,,EA049,NA,,,, +Sj7,,,EA049,NA,,,, +Sj8,Hinterland of Rio de Janeiro,1600,EA049,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA049,2,"Formerly males alone (EA049 code ""6""), with no specialization specified (EA060 code ""9"")",dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA049,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA049,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA049,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA049,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA049,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA049,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA049,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA049,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA049,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA049,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA049,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA049,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA049,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA049,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA049,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA049,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA049,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA049,6,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA049,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA049,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA049,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA049,6,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA049,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA049,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA049,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA049,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA049,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA005,0,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA005,0,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA005,0,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA005,0,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA005,0,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA005,5,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA005,0,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA005,0,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA005,0,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA005,0,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA005,5,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA005,5,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA005,5,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA005,5,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA005,6,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA005,6,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA005,5,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA005,5,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA005,5,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA005,5,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA005,6,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA005,5,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA005,6,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA005,6,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA005,6,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA005,4,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA005,5,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA005,5,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA005,6,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA005,4,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA005,5,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA005,5,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA005,6,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA005,5,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA005,6,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA005,5,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA005,4,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA005,6,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA005,6,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA005,6,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA005,6,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA005,6,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA005,7,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA005,6,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA005,7,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA005,7,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA005,5,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA005,7,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA005,7,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA005,5,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA005,5,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA005,7,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA005,3,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA005,8,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA005,7,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA005,6,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA005,6,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA005,5,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA005,6,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA005,5,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA005,5,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA005,7,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA005,6,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA005,6,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA005,5,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA005,6,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA005,6,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA005,8,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA005,7,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA005,7,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA005,6,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA005,6,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA005,6,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA005,5,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA005,6,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA005,4,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA005,6,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA005,6,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA005,7,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA005,6,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA005,7,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA005,8,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA005,6,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA005,6,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA005,6,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA005,6,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA005,6,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA005,7,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA005,6,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA005,7,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA005,4,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA005,5,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA005,5,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA005,5,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA005,7,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA005,6,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA005,6,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA005,6,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA005,6,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA005,6,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA005,7,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA005,6,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA005,6,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA005,6,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA005,6,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA005,6,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA005,5,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA005,8,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA005,7,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA005,7,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA005,6,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA005,5,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA005,4,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA005,5,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA005,5,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA005,6,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA005,8,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA005,6,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA005,6,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA005,4,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA005,6,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA005,7,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA005,6,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA005,7,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA005,6,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA005,6,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA005,6,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA005,6,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA005,2,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA005,6,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA005,5,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA005,5,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA005,5,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA005,8,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA005,5,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA005,7,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA005,5,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA005,5,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA005,5,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA005,5,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA005,5,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA005,6,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA005,6,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA005,7,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA005,6,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA005,4,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA005,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA005,2,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA005,5,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA005,9,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA005,7,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA005,5,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA005,7,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA005,6,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA005,7,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA005,8,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA005,7,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA005,8,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA005,6,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA005,6,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA005,7,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA005,6,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA005,5,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA005,7,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA005,7,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA005,6,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA005,8,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA005,5,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA005,6,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA005,6,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA005,8,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA005,7,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA005,7,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA005,8,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA005,6,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA005,8,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA005,7,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA005,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA005,8,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA005,8,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA005,7,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA005,4,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA005,7,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA005,6,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA005,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA005,5,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA005,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA005,6,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA005,8,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA005,5,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA005,6,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA005,6,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA005,7,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA005,7,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA005,7,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA005,5,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA005,9,,neel1913; paulme1954,EthnographicAtlas_1967_p66,"Corrected Gray 1999, v5 was coded as ""8""" +Af20,,1910,EA005,6,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA005,5,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA005,2,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA005,6,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA005,7,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA005,5,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA005,7,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA005,7,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA005,6,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA005,7,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA005,7,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA005,7,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA005,7,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA005,8,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA005,7,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA005,9,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA005,8,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA005,6,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA005,6,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA005,8,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA005,8,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA005,7,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA005,6,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA005,8,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA005,7,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA005,4,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA005,1,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA005,4,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA005,7,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA005,7,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA005,6,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA005,6,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA005,7,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA005,7,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA005,5,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA005,5,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA005,8,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA005,7,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA005,7,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA005,6,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA005,6,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA005,6,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA005,8,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA005,7,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA005,7,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA005,6,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA005,5,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA005,6,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA005,6,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA005,6,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA005,6,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA005,5,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA005,6,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA005,7,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA005,6,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA005,5,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA005,4,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA005,7,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA005,6,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA005,6,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA005,5,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA005,5,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA005,6,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA005,7,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA005,6,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA005,7,But the economy is primarily mercantile,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA005,5,"But the Nono subsist mainly by trade, leaving fishing largely to the Bobo, animal husbandry to the Fulani, and agriculture to hired laborers",monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA005,7,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA005,6,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA005,7,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA005,6,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA005,7,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA005,6,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA005,6,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA005,6,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA005,7,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA005,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA005,7,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA005,7,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA005,7,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA005,5,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA005,7,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA005,6,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA005,8,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA005,8,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA005,6,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA005,7,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA005,6,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA005,7,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA005,6,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA005,6,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA005,7,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA005,7,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA005,7,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA005,7,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA005,8,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA005,5,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA005,3,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA005,6,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA005,6,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA005,5,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA005,7,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA005,6,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA005,6,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA005,6,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA005,7,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA005,5,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA005,7,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA005,7,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA005,7,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA005,7,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA005,6,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA005,7,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA005,6,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA005,8,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA005,7,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA005,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA005,7,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA005,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA005,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA005,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA005,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA005,5,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA005,7,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA005,7,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA005,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA005,6,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA005,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA005,6,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA005,8,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA005,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA005,8,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA005,8,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA005,8,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74, +Ah5,,1930,EA005,6,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA005,6,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA005,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA005,6,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA005,7,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA005,7,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA005,6,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA005,6,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA005,6,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA005,5,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA005,4,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA005,5,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA005,5,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA005,7,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA005,4,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA005,6,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA005,7,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA005,5,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA005,5,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA005,6,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA005,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA005,9,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA005,6,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA005,6,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA005,6,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA005,7,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA005,6,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA005,6,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA005,6,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA005,6,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA005,5,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA005,4,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA005,5,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA005,5,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA005,6,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA005,8,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA005,6,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA005,6,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA005,6,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA005,6,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA005,6,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA005,6,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA005,6,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA005,6,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA005,6,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA005,6,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA005,6,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA005,7,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA005,5,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA005,6,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA005,5,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA005,5,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA005,6,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA005,5,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA005,3,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA005,4,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA005,6,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA005,8,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA005,6,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA005,5,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA005,5,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA005,3,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA005,4,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA005,0,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA005,5,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA005,6,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA005,7,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA005,3,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA005,3,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA005,4,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA005,6,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA005,4,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA005,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA005,0,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA005,4,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA005,4,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA005,5,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA005,5,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA005,4,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA005,6,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA005,5,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA005,5,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA005,5,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA005,8,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA005,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA005,4,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA005,6,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA005,6,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA005,7,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA005,7,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA005,6,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA005,6,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA005,6,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA005,4,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA005,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA005,3,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA005,4,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA005,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA005,7,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA005,6,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA005,7,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA005,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA005,6,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA005,7,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA005,8,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA005,7,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA005,6,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA005,7,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA005,7,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA005,6,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA005,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA005,1,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA005,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA005,1,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA005,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA005,7,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA005,5,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA005,8,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA005,8,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA005,7,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA005,2,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA005,2,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA005,0,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA005,6,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA005,6,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA005,5,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA005,7,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA005,7,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA005,1,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA005,3,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA005,2,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA005,5,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA005,3,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA005,2,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA005,6,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA005,6,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA005,6,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA005,6,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA005,5,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA005,1,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA005,6,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA005,5,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA005,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA005,7,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA005,6,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA005,6,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA005,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA005,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA005,5,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA005,5,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA005,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA005,7,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA005,6,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA005,2,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA005,7,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA005,2,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA005,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA005,3,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA005,2,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA005,6,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA005,4,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA005,6,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA005,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA005,2,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA005,2,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA005,3,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA005,5,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA005,3,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA005,7,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA005,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA005,3,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA005,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA005,1,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA005,3,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA005,3,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA005,6,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA005,4,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA005,6,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA005,7,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA005,3,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA005,3,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA005,7,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA005,6,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA005,2,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA005,3,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA005,7,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA005,6,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA005,4,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA005,7,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA005,5,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA005,7,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA005,6,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA005,7,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA005,5,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA005,6,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA005,6,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA005,6,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA005,5,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA005,6,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA005,5,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA005,8,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA005,7,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA005,6,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA005,5,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA005,6,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA005,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA005,4,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA005,6,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA005,7,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA005,6,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA005,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA005,5,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA005,0,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA005,6,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA005,6,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA005,7,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA005,7,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA005,4,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA005,7,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA005,5,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA005,8,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA005,6,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA005,6,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA005,7,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA005,5,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA005,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA005,7,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA005,5,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA005,3,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA005,5,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA005,7,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA005,5,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA005,6,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA005,4,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA005,5,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA005,7,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA005,4,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA005,6,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA005,3,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA005,0,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA005,4,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA005,6,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA005,0,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA005,7,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA005,7,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA005,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA005,7,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA005,5,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA005,4,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA005,7,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA005,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA005,8,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA005,7,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA005,5,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA005,4,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA005,6,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA005,1,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA005,6,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA005,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA005,7,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA005,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA005,6,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA005,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA005,6,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA005,6,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA005,1,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA005,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA005,2,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA005,0,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA005,0,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA005,0,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA005,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA005,0,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA005,0,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA005,0,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA005,0,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA005,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA005,0,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA005,2,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA005,6,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA005,7,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA005,7,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA005,7,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA005,8,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA005,8,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA005,8,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA005,6,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA005,7,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA005,6,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA005,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA005,7,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA005,6,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA005,7,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA005,7,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA005,4,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA005,6,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA005,6,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA005,6,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA005,6,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA005,5,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA005,7,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA005,7,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA005,7,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA005,8,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA005,8,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA005,6,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA005,6,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA005,6,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA005,5,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA005,7,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA005,6,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA005,6,But the Pandit themselves do not engage in food production,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA005,7,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA005,0,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA005,7,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA005,7,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA005,8,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA005,5,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA005,6,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA005,6,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA005,5,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA005,0,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA005,6,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA005,6,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA005,5,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA005,7,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA005,6,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA005,0,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA005,8,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA005,7,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA005,6,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA005,0,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA005,5,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA005,6,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA005,3,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA005,4,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA005,5,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA005,8,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA005,6,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA005,5,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA005,5,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA005,6,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA005,6,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA005,5,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA005,5,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA005,5,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA005,8,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA005,6,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA005,5,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA005,7,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA005,8,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA005,6,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA005,6,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA005,7,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA005,6,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA005,5,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA005,6,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA005,5,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA005,8,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA005,8,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA005,8,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA005,5,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA005,6,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA005,5,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA005,8,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA005,5,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA005,0,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA005,6,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA005,6,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA005,0,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA005,5,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA005,6,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA005,8,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA005,6,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA005,6,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA005,7,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA005,7,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA005,2,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA005,5,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA005,6,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA005,6,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA005,7,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA005,8,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA005,7,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA005,6,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA005,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA005,7,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA005,6,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA005,7,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA005,7,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA005,7,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA005,6,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA005,8,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA005,7,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA005,7,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA005,5,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA005,7,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA005,6,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA005,2,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA005,7,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA005,6,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA005,6,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA005,6,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA005,7,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA005,8,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA005,7,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA005,7,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA005,7,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA005,6,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA005,5,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA005,5,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA005,5,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA005,7,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA005,0,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA005,0,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA005,0,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA005,0,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA005,0,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA005,0,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA005,0,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA005,0,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA005,0,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA005,0,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA005,0,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,1830,EA005,0,,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA005,0,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA005,6,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA005,5,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA005,7,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA005,4,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA005,5,,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA005,6,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA005,6,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA005,4,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA005,7,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA005,6,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA005,4,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA005,7,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA005,5,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA005,5,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA005,6,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA005,5,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA005,6,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA005,7,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA005,6,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA005,5,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA005,6,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA005,6,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA005,6,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA005,1,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA005,7,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA005,5,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA005,1,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA005,1,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA005,6,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA005,0,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA005,5,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA005,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA005,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA005,5,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA005,7,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA005,2,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA005,7,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA005,2,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA005,5,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA005,5,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA005,5,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA005,5,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA005,5,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA005,6,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA005,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA005,5,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA005,5,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA005,4,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA005,5,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA005,5,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA005,5,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA005,6,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA005,5,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA005,4,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA005,7,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA005,5,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA005,5,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA005,6,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA005,3,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA005,6,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA005,4,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA005,5,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA005,4,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA005,6,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA005,3,Primarily traders,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA005,5,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA005,6,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA005,5,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA005,6,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA005,6,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA005,5,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA005,4,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA005,6,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA005,6,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA005,4,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA005,7,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA005,0,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA005,6,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA005,7,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA005,6,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA005,5,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA005,8,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA005,4,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA005,5,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA005,7,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA005,5,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA005,6,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA005,7,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA005,5,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA005,6,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA005,5,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA005,6,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA005,6,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA005,6,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA005,6,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA005,6,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA005,5,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA005,5,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA005,4,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA005,5,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA005,4,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA005,5,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA005,6,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA005,5,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA005,6,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA005,4,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA005,4,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA005,5,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA005,5,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA005,4,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA005,5,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA005,4,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA005,5,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA005,7,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA005,0,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA005,0,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA005,0,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA005,0,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA005,0,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA005,0,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA005,0,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA005,0,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA005,0,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA005,0,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA005,0,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA005,0,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA005,0,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA005,0,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA005,0,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA005,0,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA005,0,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA005,0,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA005,0,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA005,0,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA005,0,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA005,0,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA005,0,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA005,0,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA005,0,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA005,0,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA005,0,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA005,0,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA005,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA005,0,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA005,0,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA005,0,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA005,0,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA005,3,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA005,0,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA005,3,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA005,0,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA005,0,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA005,0,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA005,0,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA005,0,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA005,0,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA005,0,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA005,0,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA005,0,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA005,0,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA005,0,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA005,0,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA005,0,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA005,0,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA005,0,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA005,0,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA005,0,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA005,0,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA005,0,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA005,0,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA005,0,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA005,0,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA005,0,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA005,0,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA005,0,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA005,0,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA005,0,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA005,0,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA005,0,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA005,0,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA005,0,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA005,0,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA005,0,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA005,0,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA005,0,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA005,0,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA005,0,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA005,0,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA005,0,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA005,0,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA005,0,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA005,0,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA005,0,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA005,0,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA005,0,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA005,0,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA005,0,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA005,0,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA005,0,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA005,0,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA005,0,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA005,0,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA005,0,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA005,0,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA005,0,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA005,0,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA005,0,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA005,0,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA005,0,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA005,0,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA005,0,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA005,0,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA005,0,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA005,0,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA005,0,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA005,0,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA005,0,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA005,0,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA005,0,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA005,0,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA005,0,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA005,0,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA005,0,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA005,0,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA005,0,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA005,0,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA005,0,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA005,0,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA005,0,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA005,0,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA005,0,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA005,0,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA005,0,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA005,0,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA005,0,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA005,0,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA005,0,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA005,0,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA005,0,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA005,0,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA005,0,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA005,0,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA005,0,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA005,0,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA005,0,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA005,0,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA005,0,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA005,0,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA005,0,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA005,0,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA005,0,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA005,0,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA005,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA005,5,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA005,0,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA005,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA005,0,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA005,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA005,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA005,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA005,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA005,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA005,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA005,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA005,0,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA005,0,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA005,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA005,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA005,0,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA005,0,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA005,0,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA005,0,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA005,0,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA005,0,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA005,0,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA005,0,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA005,0,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA005,0,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA005,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA005,0,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA005,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA005,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA005,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA005,0,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA005,0,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA005,0,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA005,0,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA005,0,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA005,0,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA005,0,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA005,0,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA005,0,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA005,0,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA005,0,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA005,1,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA005,0,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA005,0,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA005,0,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA005,0,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA005,5,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA005,0,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA005,0,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA005,0,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA005,0,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA005,6,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA005,0,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA005,0,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA005,0,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA005,0,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA005,0,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA005,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,1760,EA005,0,,driverandmassey1957; garcia1760; romneynd,Ethnology_Vol7_No1_Jan_1968, +Ne3,Comanche Tribe,1870,EA005,0,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA005,0,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA005,0,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA005,5,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA005,0,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA005,0,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA005,0,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA005,5,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA005,4,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA005,3,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA005,3,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA005,4,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA005,4,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA005,3,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA005,4,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA005,4,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA005,5,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA005,5,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA005,4,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA005,5,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA005,2,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA005,5,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA005,4,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA005,6,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA005,4,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA005,2,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA005,6,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA005,4,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA005,NA,"The original subsistence economy, based on agriculture supplemented by hunting, has been largely replaced by a wage economy",spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA005,4,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA005,2,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA005,5,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA005,4,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA005,5,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA005,4,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA005,7,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA005,0,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA005,7,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA005,8,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA005,6,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA005,7,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA005,7,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA005,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA005,2,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA005,3,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA005,7,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA005,4,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA005,7,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA005,4,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA005,4,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA005,5,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA005,1,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA005,0,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA005,7,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA005,8,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA005,9,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA005,4,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA005,8,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA005,3,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA005,7,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA005,7,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA005,7,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA005,7,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA005,5,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA005,5,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA005,5,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA005,0,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA005,0,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA005,5,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA005,6,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA005,5,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,1920,EA005,8,,mason1948; radin1931,Ethnology_Vol7_No1_Jan_1968, +Nj1,Ojitlan,1940,EA005,8,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA005,8,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA005,7,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,1950,EA005,8,,romneyandromney1963,Ethnology_Vol7_No1_Jan_1968, +Nj13,,1900,EA005,8,,soustelle1937,Ethnology_Vol7_No1_Jan_1968, +Nj14,,1960,EA005,8,,turnerandolmstead1966,Ethnology_Vol7_No1_Jan_1968, +Nj2,City & environs of Tenochtitlan,1520,EA005,7,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA005,8,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA005,6,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA005,8,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA005,4,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA005,8,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA005,7,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA005,8,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA005,6,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA005,6,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA005,8,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA005,7,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA005,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA005,4,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA005,8,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA005,7,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA005,9,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA005,7,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA005,6,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA005,6,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA005,5,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA005,7,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA005,6,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA005,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA005,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA005,4,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA005,8,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA005,3,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA005,8,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA005,0,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA005,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA005,5,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA005,6,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA005,8,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA005,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA005,5,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA005,6,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA005,5,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA005,5,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA005,5,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA005,4,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA005,3,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA005,6,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA005,8,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA005,4,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA005,4,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA005,4,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA005,4,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA005,5,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA005,4,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA005,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA005,5,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA005,4,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA005,5,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA005,5,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA005,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA005,6,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA005,0,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA005,5,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA005,2,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA005,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA005,1,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA005,4,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA005,4,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA005,5,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA005,4,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA005,6,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA005,4,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA005,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA005,4,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA005,7,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA005,5,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA005,3,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA005,7,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA005,6,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA005,5,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA005,6,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA005,6,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA005,8,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA005,5,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA005,4,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA005,1,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA005,0,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA005,6,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA005,0,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA005,0,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA005,0,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA005,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA005,3,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA005,0,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA005,2,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA005,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA005,0,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA005,5,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA005,3,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA005,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA005,0,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA005,7,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA005,4,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA005,5,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA005,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA005,4,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA005,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA005,5,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA005,5,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,1940,EA005,4,,levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA005,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA005,5,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA005,2,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA005,4,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA005,0,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA005,4,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA005,0,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA005,5,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA005,5,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA005,4,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA005,6,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA005,5,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA005,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA005,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA005,8,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA005,6,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA005,7,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA005,7,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA005,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA005,6,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA005,7,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA005,8,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA005,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA005,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA005,6,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA005,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA005,7,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA005,7,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA005,0,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA005,0,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA005,0,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA005,0,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA005,0,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA005,0,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA005,0,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA005,0,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA005,0,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA005,0,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA050,5,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA050,5,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA050,6,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA050,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA050,6,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,1920,EA050,6,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p64, +Aa7,,1910,EA050,6,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA050,6,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA050,6,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA050,6,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA050,6,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA050,6,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA050,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA050,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA050,6,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA050,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA050,6,,earthy1933,EthnographicAtlas_1967_p64, +Ab17,,,EA050,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA050,6,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA050,5,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA050,6,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA050,NA,,,, +Ab21a,,,EA050,NA,,,, +Ab21b,,,EA050,NA,,,, +Ab22,,,EA050,NA,,,, +Ab3,Ruling Luyana,1890,EA050,5,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA050,6,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA050,6,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA050,5,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA050,9,,langandtastevin1937,EthnographicAtlas_1967_p64, +Ab8,Basuto,1860,EA050,6,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA050,6,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA050,6,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA050,6,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,,EA050,NA,,,, +Ac12,,,EA050,NA,,,, +Ac13,,,EA050,NA,,,, +Ac14,,1900,EA050,3,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p64, +Ac15,,,EA050,NA,,,, +Ac16,,,EA050,NA,,,, +Ac17,,,EA050,NA,,,, +Ac18,,1910,EA050,4,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA050,NA,,,, +Ac2,,,EA050,NA,,,, +Ac20,,,EA050,NA,,,, +Ac21,,,EA050,NA,,,, +Ac22,,,EA050,NA,,,, +Ac23,with special reference to the western Lele,1950,EA050,6,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA050,NA,,,, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA050,3,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p64, +Ac26,,,EA050,NA,,,, +Ac27,,,EA050,NA,,,, +Ac28,,,EA050,NA,,,, +Ac29,,,EA050,NA,,,, +Ac3,Zambia branch,1900,EA050,5,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA050,6,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA050,6,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA050,NA,,,, +Ac33,,,EA050,NA,,,, +Ac34,,,EA050,NA,,,, +Ac35,,,EA050,NA,,,, +Ac36,,,EA050,NA,,,, +Ac37,,,EA050,NA,,,, +Ac38,,,EA050,NA,,,, +Ac39,,,EA050,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA050,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA050,NA,,,, +Ac41,,,EA050,NA,,,, +Ac42,,,EA050,NA,,,, +Ac43,,,EA050,NA,,,, +Ac5,,1920,EA050,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA050,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA050,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,,EA050,NA,,,, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA050,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA050,9,,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,,EA050,NA,,,, +Ad11,,1930,EA050,5,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA050,NA,,,, +Ad13,,1930,EA050,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA050,NA,,,, +Ad15,,,EA050,NA,,,, +Ad16,,,EA050,NA,,,, +Ad17,,1920,EA050,6,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA050,NA,,,, +Ad19,,,EA050,NA,,,, +Ad2,,1950,EA050,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA050,5,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,,EA050,NA,,,, +Ad22,,1950,EA050,5,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA050,NA,,,, +Ad24,,,EA050,NA,,,, +Ad25,,,EA050,NA,,,, +Ad26,,,EA050,NA,,,, +Ad27,,,EA050,NA,,,, +Ad28,,,EA050,NA,,,, +Ad29,,,EA050,NA,,,, +Ad3,,1910,EA050,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA050,6,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,,EA050,NA,,,, +Ad32,,,EA050,NA,,,, +Ad33,,,EA050,NA,,,, +Ad34,,,EA050,NA,,,, +Ad35,,,EA050,NA,,,, +Ad36,,,EA050,NA,,,, +Ad37,,,EA050,NA,,,, +Ad38,,,EA050,NA,,,, +Ad39,,1950,EA050,9,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA050,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA050,NA,,,, +Ad41,,,EA050,NA,,,, +Ad42,,,EA050,NA,,,, +Ad43,,,EA050,NA,,,, +Ad44,,,EA050,NA,,,, +Ad45,,,EA050,NA,,,, +Ad46,,,EA050,NA,,,, +Ad47,,1900,EA050,5,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA050,NA,,,, +Ad49,,,EA050,NA,,,, +Ad5,,,EA050,NA,,,, +Ad50,,,EA050,NA,,,, +Ad51,,,EA050,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA050,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA050,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA050,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,1900,EA050,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,,,EA050,NA,,,, +Ae10,,1910,EA050,3,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,,EA050,NA,,,, +Ae12,,,EA050,NA,,,, +Ae13,,,EA050,NA,,,, +Ae14,,,EA050,NA,,,, +Ae15,,,EA050,NA,,,, +Ae16,,,EA050,NA,,,, +Ae17,,1900,EA050,5,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA050,6,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA050,NA,,,, +Ae2,,1950,EA050,2,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA050,NA,,,, +Ae21,,,EA050,NA,,,, +Ae22,,,EA050,NA,,,, +Ae23,,,EA050,NA,,,, +Ae24,,,EA050,NA,,,, +Ae25,,,EA050,NA,,,, +Ae26,,,EA050,NA,,,, +Ae27,,,EA050,NA,,,, +Ae28,,,EA050,NA,,,, +Ae29,,1900,EA050,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA050,5,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA050,NA,,,, +Ae31,,,EA050,NA,,,, +Ae32,,,EA050,NA,,,, +Ae33,,,EA050,NA,,,, +Ae34,,,EA050,NA,,,, +Ae35,,,EA050,NA,,,, +Ae36,,,EA050,NA,,,, +Ae37,,,EA050,NA,,,, +Ae38,,,EA050,NA,,,, +Ae39,,1920,EA050,6,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA050,6,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA050,NA,,,, +Ae41,,,EA050,NA,,,, +Ae42,,,EA050,NA,,,, +Ae43,,,EA050,NA,,,, +Ae44,,,EA050,NA,,,, +Ae45,,,EA050,NA,,,, +Ae46,,,EA050,NA,,,, +Ae47,,,EA050,NA,,,, +Ae48,,,EA050,NA,,,, +Ae49,,,EA050,NA,,,, +Ae5,,1910,EA050,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,,EA050,NA,,,, +Ae51,,,EA050,NA,,,, +Ae52,,,EA050,NA,,,, +Ae53,,,EA050,NA,,,, +Ae54,,,EA050,NA,,,, +Ae55,,,EA050,NA,,,, +Ae56,,,EA050,NA,,,, +Ae57,,,EA050,NA,,,, +Ae58,,,EA050,NA,,,, +Ae59,,,EA050,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA050,6,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,,EA050,NA,,,, +Ae8,,1910,EA050,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,,EA050,NA,,,, +Af1,City and environs of Abomey,1890,EA050,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA050,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,,EA050,NA,,,, +Af12,,,EA050,NA,,,, +Af13,,,EA050,NA,,,, +Af14,,,EA050,NA,,,, +Af15,,1920,EA050,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA050,NA,,,, +Af17,,,EA050,NA,,,, +Af18,,,EA050,NA,,,, +Af19,,,EA050,NA,,,, +Af2,,1950,EA050,9,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,,EA050,NA,,,, +Af21,,,EA050,NA,,,, +Af22,,,EA050,NA,,,, +Af23,,,EA050,NA,,,, +Af24,,1900,EA050,6,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA050,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA050,NA,,,, +Af27,,,EA050,NA,,,, +Af28,,,EA050,NA,,,, +Af29,,,EA050,NA,,,, +Af3,Kumasi State,1900,EA050,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA050,NA,,,, +Af31,,,EA050,NA,,,, +Af32,,,EA050,NA,,,, +Af33,,,EA050,NA,,,, +Af34,,,EA050,NA,,,, +Af35,,,EA050,NA,,,, +Af36,,,EA050,NA,,,, +Af37,,,EA050,NA,,,, +Af38,,,EA050,NA,,,, +Af39,,,EA050,NA,,,, +Af4,,1930,EA050,4,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA050,NA,,,, +Af41,,,EA050,NA,,,, +Af42,,,EA050,NA,,,, +Af43,,,EA050,NA,,,, +Af44,,,EA050,NA,,,, +Af45,,,EA050,NA,,,, +Af46,,,EA050,NA,,,, +Af47,,,EA050,NA,,,, +Af48,,,EA050,NA,,,, +Af49,,,EA050,NA,,,, +Af5,,1930,EA050,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA050,NA,,,, +Af51,,1920,EA050,1,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA050,6,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA050,NA,,,, +Af54,,,EA050,NA,,,, +Af55,,,EA050,NA,,,, +Af56,,,EA050,NA,,,, +Af57,,,EA050,NA,,,, +Af58,,,EA050,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA050,6,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,1950,EA050,6,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,1930,EA050,5,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,,EA050,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA050,5,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA050,6,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA050,6,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,,EA050,NA,,,, +Ag13,,,EA050,NA,,,, +Ag14,,,EA050,NA,,,, +Ag15,,,EA050,NA,,,, +Ag16,,1930,EA050,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p72, +Ag17,,,EA050,NA,,,, +Ag18,,1930,EA050,1,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p72, +Ag19,,,EA050,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA050,6,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA050,NA,,,, +Ag21,,1910,EA050,6,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,,,EA050,NA,,,, +Ag23,,,EA050,NA,,,, +Ag24,,,EA050,NA,,,, +Ag25,,,EA050,NA,,,, +Ag26,,,EA050,NA,,,, +Ag27,,,EA050,NA,,,, +Ag28,,,EA050,NA,,,, +Ag29,,,EA050,NA,,,, +Ag3,,1930,EA050,4,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA050,6,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,,EA050,NA,,,, +Ag32,,1900,EA050,6,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA050,NA,,,, +Ag34,,,EA050,NA,,,, +Ag35,,,EA050,NA,,,, +Ag36,,,EA050,NA,,,, +Ag37,,,EA050,NA,,,, +Ag38,,,EA050,NA,,,, +Ag39,,1910,EA050,6,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA050,6,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA050,NA,,,, +Ag41,,,EA050,NA,,,, +Ag42,,,EA050,NA,,,, +Ag43,,,EA050,NA,,,, +Ag44,,,EA050,NA,,,, +Ag45,,,EA050,NA,,,, +Ag46,,,EA050,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA050,6,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,,EA050,NA,,,, +Ag49,,,EA050,NA,,,, +Ag5,,1930,EA050,6,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,,EA050,NA,,,, +Ag51,,,EA050,NA,,,, +Ag52,,,EA050,NA,,,, +Ag53,with special reference to those of Garango,1960,EA050,6,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA050,6,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA050,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,1930,EA050,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p72, +Ag8,with special reference to the Coniagui,1910,EA050,6,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA050,6,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,,,EA050,NA,,,, +Ah10,,,EA050,NA,,,, +Ah11,,1950,EA050,1,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA050,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA050,6,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,,EA050,NA,,,, +Ah15,,,EA050,NA,,,, +Ah16,,,EA050,NA,,,, +Ah17,,,EA050,NA,,,, +Ah18,,,EA050,NA,,,, +Ah19,,,EA050,NA,,,, +Ah2,,,EA050,NA,,,, +Ah20,,,EA050,NA,,,, +Ah21,,,EA050,NA,,,, +Ah22,,,EA050,NA,,,, +Ah23,,,EA050,NA,,,, +Ah24,,,EA050,NA,,,, +Ah25,,,EA050,NA,,,, +Ah26,,,EA050,NA,,,, +Ah27,,,EA050,NA,,,, +Ah28,,,EA050,NA,,,, +Ah29,,,EA050,NA,,,, +Ah3,Tar of Benue Province,1920,EA050,6,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA050,NA,,,, +Ah31,,,EA050,NA,,,, +Ah32,,,EA050,NA,,,, +Ah33,,,EA050,NA,,,, +Ah34,,,EA050,NA,,,, +Ah35,,,EA050,NA,,,, +Ah36,,,EA050,NA,,,, +Ah37,,,EA050,NA,,,, +Ah38,,,EA050,NA,,,, +Ah39,,1950,EA050,6,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,1920,EA050,9,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p76, +Ah5,,,EA050,NA,,,, +Ah6,,,EA050,NA,,,, +Ah7,,1940,EA050,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA050,5,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA050,3,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,,EA050,NA,,,, +Ai10,Nuba Hills,1940,EA050,5,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA050,6,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA050,NA,,,, +Ai13,,,EA050,NA,,,, +Ai14,,,EA050,NA,,,, +Ai15,,,EA050,NA,,,, +Ai16,,,EA050,NA,,,, +Ai17,,,EA050,NA,,,, +Ai18,,,EA050,NA,,,, +Ai19,,,EA050,NA,,,, +Ai2,,,EA050,NA,,,, +Ai20,,,EA050,NA,,,, +Ai21,,1880,EA050,6,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p76, +Ai22,,,EA050,NA,,,, +Ai23,,,EA050,NA,,,, +Ai24,,,EA050,NA,,,, +Ai25,,,EA050,NA,,,, +Ai26,,,EA050,NA,,,, +Ai27,,,EA050,NA,,,, +Ai28,,1910,EA050,1,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA050,6,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA050,5,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,,EA050,NA,,,, +Ai31,,,EA050,NA,,,, +Ai32,,,EA050,NA,,,, +Ai33,,,EA050,NA,,,, +Ai34,,,EA050,NA,,,, +Ai35,,1870,EA050,4,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,,EA050,NA,,,, +Ai37,,,EA050,NA,,,, +Ai38,,,EA050,NA,,,, +Ai39,,,EA050,NA,,,, +Ai4,,,EA050,NA,,,, +Ai40,,,EA050,NA,,,, +Ai41,,,EA050,NA,,,, +Ai42,,,EA050,NA,,,, +Ai43,,1930,EA050,6,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,,EA050,NA,,,, +Ai45,,,EA050,NA,,,, +Ai46,,,EA050,NA,,,, +Ai47,,,EA050,NA,,,, +Ai5,,,EA050,NA,,,, +Ai6,Shilluk Kingdom,1900,EA050,6,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA050,4,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA050,5,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,,,EA050,NA,,,, +Aj1,,,EA050,NA,,,, +Aj10,,,EA050,NA,,,, +Aj11,,,EA050,NA,,,, +Aj12,,,EA050,NA,,,, +Aj13,,,EA050,NA,,,, +Aj14,,,EA050,NA,,,, +Aj15,,,EA050,NA,,,, +Aj16,,,EA050,NA,,,, +Aj17,,,EA050,NA,,,, +Aj18,,,EA050,NA,,,, +Aj19,,,EA050,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA050,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA050,NA,,,, +Aj21,,,EA050,NA,,,, +Aj22,,,EA050,NA,,,, +Aj23,,1950,EA050,4,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,,EA050,NA,,,, +Aj25,,,EA050,NA,,,, +Aj26,,1910,EA050,4,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA050,NA,,,, +Aj28,,,EA050,NA,,,, +Aj29,,,EA050,NA,,,, +Aj3,,1930,EA050,6,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA050,NA,,,, +Aj31,,,EA050,NA,,,, +Aj4,,1920,EA050,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA050,6,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA050,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,,EA050,NA,,,, +Aj8,,1920,EA050,9,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,,EA050,NA,,,, +Ca1,Town of Buso,1930,EA050,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,,EA050,NA,,,, +Ca11,,,EA050,NA,,,, +Ca12,,,EA050,NA,,,, +Ca13,,,EA050,NA,,,, +Ca14,,,EA050,NA,,,, +Ca15,,,EA050,NA,,,, +Ca16,,,EA050,NA,,,, +Ca17,,,EA050,NA,,,, +Ca18,,,EA050,NA,,,, +Ca19,,,EA050,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA050,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA050,NA,,,, +Ca21,,,EA050,NA,,,, +Ca22,,,EA050,NA,,,, +Ca23,,,EA050,NA,,,, +Ca24,,,EA050,NA,,,, +Ca25,,,EA050,NA,,,, +Ca26,,,EA050,NA,,,, +Ca27,,,EA050,NA,,,, +Ca28,,,EA050,NA,,,, +Ca29,,,EA050,NA,,,, +Ca3,,,EA050,NA,,,, +Ca30,,,EA050,NA,,,, +Ca31,,,EA050,NA,,,, +Ca32,,,EA050,NA,,,, +Ca33,,,EA050,NA,,,, +Ca34,,,EA050,NA,,,, +Ca35,,,EA050,NA,,,, +Ca36,,,EA050,NA,,,, +Ca37,,,EA050,NA,,,, +Ca38,,,EA050,NA,,,, +Ca39,,,EA050,NA,,,, +Ca4,,1950,EA050,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,,EA050,NA,,,, +Ca41,,,EA050,NA,,,, +Ca42,,,EA050,NA,,,, +Ca43,,,EA050,NA,,,, +Ca5,,,EA050,NA,,,, +Ca6,,,EA050,NA,,,, +Ca7,,,EA050,NA,,,, +Ca8,,,EA050,NA,,,, +Ca9,,,EA050,NA,,,, +Cb1,,,EA050,NA,,,, +Cb10,,,EA050,NA,,,, +Cb11,,,EA050,NA,,,, +Cb12,,,EA050,NA,,,, +Cb13,,,EA050,NA,,,, +Cb14,,,EA050,NA,,,, +Cb15,,,EA050,NA,,,, +Cb16,,,EA050,NA,,,, +Cb17,,,EA050,NA,,,, +Cb18,,,EA050,NA,,,, +Cb19,,,EA050,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA050,5,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA050,6,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA050,6,,pfeffer1936,EthnographicAtlas_1967_p84, +Cb22,,,EA050,NA,,,, +Cb23,,,EA050,NA,,,, +Cb24,Wodaabe of Niger,1950,EA050,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p84, +Cb25,,,EA050,NA,,,, +Cb26,,,EA050,NA,,,, +Cb27,,,EA050,NA,,,, +Cb28,,,EA050,NA,,,, +Cb29,,,EA050,NA,,,, +Cb3,Bamba division,1940,EA050,9,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,1920,EA050,9,,reid1930,EthnographicAtlas_1967_p80, +Cb5,,,EA050,NA,,,, +Cb6,,1920,EA050,9,,woodnd,EthnographicAtlas_1967_p80, +Cb7,,,EA050,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA050,9,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p80, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA050,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,,EA050,NA,,,, +Cc10,,1900,EA050,5,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA050,NA,,,, +Cc12,,,EA050,NA,,,, +Cc13,,,EA050,NA,,,, +Cc14,,1880,EA050,6,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA050,NA,,,, +Cc16,,1930,EA050,6,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,,EA050,NA,,,, +Cc18,,,EA050,NA,,,, +Cc19,,,EA050,NA,,,, +Cc2,Nomads of Tibesti,1950,EA050,6,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,,,EA050,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA050,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA050,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,,EA050,NA,,,, +Cc6,,,EA050,NA,,,, +Cc7,,,EA050,NA,,,, +Cc8,,,EA050,NA,,,, +Cc9,Ahaggaren tribe,1920,EA050,6,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,,,EA050,NA,,,, +Cd10,,,EA050,NA,,,, +Cd11,,,EA050,NA,,,, +Cd12,,,EA050,NA,,,, +Cd13,,,EA050,NA,,,, +Cd14,,,EA050,NA,,,, +Cd15,,,EA050,NA,,,, +Cd16,,,EA050,NA,,,, +Cd17,,,EA050,NA,,,, +Cd18,,,EA050,NA,,,, +Cd19,,,EA050,NA,,,, +Cd2,Town and environs of Silwa,1950,EA050,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA050,NA,,,, +Cd21,,,EA050,NA,,,, +Cd3,Entirety: Moroccan,1920,EA050,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA050,6,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA050,6,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,,,EA050,NA,,,, +Cd7,,,EA050,NA,,,, +Cd8,,,EA050,NA,,,, +Cd9,,,EA050,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA050,6,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA050,NA,,,, +Ce3,,,EA050,NA,,,, +Ce4,Labourd,1930,EA050,9,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA050,9,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA050,9,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA050,9,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA050,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA050,9,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA050,NA,,,, +Cf3,,1930,EA050,1,,munch1945,EthnographicAtlas_1967_p84, +Cf4,,,EA050,NA,,,, +Cf5,,,EA050,NA,,,, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA050,9,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA050,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA050,9,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA050,6,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA050,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA050,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA050,NA,,,, +Ch11,Viriatino Village,1955,EA050,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA050,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA050,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA050,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA050,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,,EA050,NA,,,, +Ch7,,1930,EA050,6,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,1940,EA050,9,,hanzeli1955,EthnographicAtlas_1967_p84, +Ch9,,,EA050,NA,,,, +Ci1,with special reference to the Baga Dorbed group,1920,EA050,6,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,,,EA050,NA,,,, +Ci11,,1940,EA050,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA050,8,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA050,NA,,,, +Ci3,,,EA050,NA,,,, +Ci4,,1920,EA050,9,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA050,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA050,NA,,,, +Ci7,,,EA050,NA,,,, +Ci8,,,EA050,NA,,,, +Ci9,,,EA050,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA050,9,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA050,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA050,6,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA050,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA050,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA050,9,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA050,NA,,,, +Cj7,,,EA050,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA050,4,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA050,NA,,,, +Ea1,,,EA050,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA050,6,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA050,NA,,,, +Ea12,,,EA050,NA,,,, +Ea13,Mohla Village,1950,EA050,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA050,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA050,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA050,4,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,,EA050,NA,,,, +Ea6,Nomadic branch,1958,EA050,6,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,,EA050,NA,,,, +Ea8,,,EA050,NA,,,, +Ea9,,1950,EA050,9,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA050,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA050,9,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA050,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA050,NA,,,, +Eb5,,,EA050,NA,,,, +Eb6,,,EA050,NA,,,, +Eb7,,,EA050,NA,,,, +Eb8,,,EA050,NA,,,, +Ec1,Sakhalin Island,1920,EA050,6,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,,,EA050,NA,,,, +Ec11,,,EA050,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA050,6,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA050,6,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA050,6,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA050,6,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,,,EA050,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA050,6,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA050,NA,,,, +Ec9,,1920,EA050,9,,lattimore1933,EthnographicAtlas_1967_p88, +Ed1,Kanghwa Island,1950,EA050,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA050,9,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA050,NA,,,, +Ed14,,,EA050,NA,,,, +Ed15a,,,EA050,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA050,9,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA050,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA050,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA050,6,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA050,9,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA050,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA050,9,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA050,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA050,9,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,,EA050,NA,,,, +Ee1,,1940,EA050,5,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA050,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA050,6,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA050,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA050,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA050,9,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA050,NA,,,, +Ee8,,,EA050,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA050,6,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA050,NA,,,, +Ef11,Village and environs of Senapur,1945,EA050,9,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA050,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA050,NA,,,, +Ef4,,,EA050,NA,,,, +Ef5,,1900,EA050,5,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA050,6,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,,,EA050,NA,,,, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA050,5,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA050,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA050,4,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA050,9,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA050,NA,,,, +Eg12,,,EA050,NA,,,, +Eg13,Bastar State,1941,EA050,5,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA050,3,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA050,9,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA050,5,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA050,6,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA050,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,with special reference to Northern Kerala,1799,EA050,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA050,6,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA050,5,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,1930,EA050,6,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA050,5,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA050,NA,,,, +Eh2,,1900,EA050,4,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA050,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA050,3,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA050,6,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA050,NA,,,, +Eh7,,,EA050,NA,,,, +Eh8,,1900,EA050,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA050,NA,,,, +Ei1,Rengsanggr,1900,EA050,4,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA050,NA,,,, +Ei11,,,EA050,NA,,,, +Ei12,,,EA050,NA,,,, +Ei13,,1910,EA050,9,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA050,9,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA050,NA,,,, +Ei16,,1910,EA050,9,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA050,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA050,9,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,,EA050,NA,,,, +Ei2,,1920,EA050,9,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA050,NA,,,, +Ei3,Nondwin Village,1950,EA050,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA050,9,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA050,6,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA050,9,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA050,2,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA050,6,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA050,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA050,6,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA050,6,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA050,9,,lafont1964,EthnographicAtlas_1967_p92, +Ej12,,1960,EA050,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA050,6,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA050,3,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA050,8,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA050,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA050,6,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA050,3,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,,,EA050,NA,,,, +Ej5,,,EA050,NA,,,, +Ej6,of the Mergui Archipelago,1920,EA050,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA050,4,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,,,EA050,NA,,,, +Ej9,,1940,EA050,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA050,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,,EA050,NA,,,, +Ia11,,,EA050,NA,,,, +Ia12,,,EA050,NA,,,, +Ia13,Tawi-Tawi and adjacent islands,1960,EA050,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA050,6,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA050,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA050,4,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA050,NA,,,, +Ia18,,,EA050,NA,,,, +Ia2,,1950,EA050,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,,,EA050,NA,,,, +Ia4,with special reference to the Eastern Subanun,1950,EA050,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p92, +Ia5,,1950,EA050,5,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,,,EA050,NA,,,, +Ia7,,,EA050,NA,,,, +Ia8,,,EA050,NA,,,, +Ia9,,,EA050,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA050,4,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA050,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA050,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA050,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA050,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,,EA050,NA,,,, +Ib7,with special reference to those of North Pageh,1920,EA050,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,,,EA050,NA,,,, +Ib9,,,EA050,NA,,,, +Ic1,Borongloe,1940,EA050,9,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA050,NA,,,, +Ic11,,,EA050,NA,,,, +Ic12,,,EA050,NA,,,, +Ic13,,,EA050,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA050,5,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,,,EA050,NA,,,, +Ic4,,,EA050,NA,,,, +Ic5,,,EA050,NA,,,, +Ic6,,1930,EA050,1,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,,,EA050,NA,,,, +Ic8,,,EA050,NA,,,, +Ic9,,,EA050,NA,,,, +Id1,Alice Springs and environs,1900,EA050,6,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA050,6,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA050,6,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA050,6,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA050,5,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA050,5,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA050,6,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA050,6,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA050,6,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA050,6,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA050,6,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA050,6,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA050,6,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA050,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,,,EA050,NA,,,, +Ie11,,1950,EA050,3,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA050,4,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA050,3,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,,EA050,NA,,,, +Ie15,,,EA050,NA,,,, +Ie16,,1940,EA050,2,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,,EA050,NA,,,, +Ie18,Bamol Village,1940,EA050,3,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA050,3,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA050,9,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,,EA050,NA,,,, +Ie21,,,EA050,NA,,,, +Ie22,,,EA050,NA,,,, +Ie23,,,EA050,NA,,,, +Ie24,,,EA050,NA,,,, +Ie25,,,EA050,NA,,,, +Ie26,,,EA050,NA,,,, +Ie27,,1910,EA050,1,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,,EA050,NA,,,, +Ie29,,,EA050,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA050,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA050,3,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,,EA050,NA,,,, +Ie32,,,EA050,NA,,,, +Ie33,with special reference to the village of Muramarew,1950,EA050,6,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA050,NA,,,, +Ie35,,1930,EA050,2,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA050,NA,,,, +Ie37,,,EA050,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA050,4,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA050,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA050,5,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA050,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA050,2,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA050,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA050,3,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA050,4,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA050,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA050,NA,,,, +If11,,1860,EA050,9,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA050,9,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA050,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA050,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA050,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA050,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA050,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA050,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA050,9,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA050,6,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA050,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA050,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA050,4,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA050,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,,EA050,NA,,,, +Ig1,Northeastern group,1940,EA050,5,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA050,2,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA050,2,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,,,EA050,NA,,,, +Ig13,,,EA050,NA,,,, +Ig14,,,EA050,NA,,,, +Ig15,,,EA050,NA,,,, +Ig16,,,EA050,NA,,,, +Ig17,,,EA050,NA,,,, +Ig18,,,EA050,NA,,,, +Ig19,,,EA050,NA,,,, +Ig2,Kiriwina Island,1910,EA050,6,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,,,EA050,NA,,,, +Ig21,with special reference to Boieng Island,1930,EA050,6,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA050,5,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA050,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA050,9,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA050,9,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA050,2,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA050,NA,,,, +Ig9,Peri Village,1920,EA050,6,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA050,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,,,EA050,NA,,,, +Ih11,,,EA050,NA,,,, +Ih12,,,EA050,NA,,,, +Ih13,,,EA050,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA050,8,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA050,9,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA050,NA,,,, +Ih4,Lau Island,1920,EA050,5,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA050,NA,,,, +Ih6,,1890,EA050,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA050,2,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA050,6,,quain1949,EthnographicAtlas_1967_p100, +Ih9,,,EA050,NA,,,, +Ii1,with special reference to American Samoa,1920,EA050,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA050,NA,,,, +Ii12,,,EA050,NA,,,, +Ii13,,,EA050,NA,,,, +Ii14,,1829,EA050,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA050,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA050,2,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA050,9,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA050,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA050,9,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA050,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,,EA050,NA,,,, +Ii9,,,EA050,NA,,,, +Ij1,,1820,EA050,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA050,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA050,2,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA050,6,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA050,9,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA050,4,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,,EA050,NA,,,, +Ij7,,,EA050,NA,,,, +Ij8,,,EA050,NA,,,, +Ij9,,,EA050,NA,,,, +Na1,,1930,EA050,2,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA050,5,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA050,5,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA050,6,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,,EA050,NA,,,, +Na14,,1880,EA050,3,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA050,6,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,,EA050,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA050,6,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA050,6,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA050,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,,,EA050,NA,,,, +Na21,,1900,EA050,5,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA050,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA050,6,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA050,6,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA050,5,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA050,6,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,,EA050,NA,,,, +Na28,,,EA050,NA,,,, +Na29,,1850,EA050,5,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA050,6,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,,EA050,NA,,,, +Na31,with special reference to those of Albany and Moose Creek,1850,EA050,6,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA050,6,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA050,6,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,,,EA050,NA,,,, +Na35,,1800,EA050,6,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA050,6,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA050,5,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA050,5,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA050,5,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA050,6,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,,EA050,NA,,,, +Na41,,,EA050,NA,,,, +Na42,,,EA050,NA,,,, +Na43,,1920,EA050,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA050,NA,,,, +Na45,,1900,EA050,6,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA050,6,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA050,6,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA050,6,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA050,6,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA050,6,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA050,6,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA050,6,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA050,6,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,,EA050,NA,,,, +Nb13,,,EA050,NA,,,, +Nb14,,,EA050,NA,,,, +Nb15,,1880,EA050,6,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA050,6,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA050,5,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA050,6,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA050,6,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA050,6,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,,EA050,NA,,,, +Nb21,,,EA050,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA050,6,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,,EA050,NA,,,, +Nb24,,1860,EA050,6,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA050,6,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA050,6,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA050,5,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA050,6,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,,EA050,NA,,,, +Nb3,,1890,EA050,6,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA050,6,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,,EA050,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA050,5,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA050,4,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA050,5,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA050,4,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA050,5,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA050,5,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA050,6,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA050,6,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA050,5,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA050,6,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA050,5,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA050,6,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,,EA050,NA,,,, +Nb9,"Central group, lower B.C. River",1880,EA050,6,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA050,6,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA050,6,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA050,5,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA050,5,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA050,5,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA050,5,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA050,5,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA050,5,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA050,4,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA050,5,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,,,EA050,NA,,,, +Nc2,,1850,EA050,5,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA050,5,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,,EA050,NA,,,, +Nc22,,,EA050,NA,,,, +Nc23,,1870,EA050,5,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA050,6,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA050,5,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA050,6,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA050,NA,,,, +Nc28,,,EA050,NA,,,, +Nc29,,1770,EA050,6,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA050,4,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,,EA050,NA,,,, +Nc31,,,EA050,NA,,,, +Nc32,,1870,EA050,6,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA050,5,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA050,5,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA050,6,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,,,EA050,NA,,,, +Nc6,with special reference to the Southern Diegueno,1850,EA050,6,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA050,5,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA050,6,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA050,6,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA050,5,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,,EA050,NA,,,, +Nd11,with special reference to the southeastern Shuswap,1850,EA050,6,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA050,6,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA050,6,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA050,5,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA050,6,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA050,6,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA050,6,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA050,6,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA050,6,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA050,5,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA050,6,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA050,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA050,6,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA050,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA050,5,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA050,5,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA050,6,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA050,5,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA050,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA050,6,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA050,6,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA050,5,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA050,6,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA050,6,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA050,5,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA050,6,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA050,5,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA050,6,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA050,6,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA050,6,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA050,5,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA050,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA050,4,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA050,5,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA050,6,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA050,6,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA050,5,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA050,5,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA050,5,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA050,4,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA050,5,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA050,5,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA050,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA050,5,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA050,6,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA050,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA050,6,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA050,6,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA050,5,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA050,6,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA050,5,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,,EA050,NA,,,, +Nd7,Lower or eastern branch,1880,EA050,6,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA050,5,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,,EA050,NA,,,, +Ne1,Gros Ventre Tribe,1880,EA050,6,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,,EA050,NA,,,, +Ne11,,1870,EA050,6,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA050,6,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA050,6,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA050,5,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA050,6,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA050,5,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,,EA050,NA,,,, +Ne18,,1850,EA050,6,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA050,6,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA050,6,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,,EA050,NA,,,, +Ne21,,,EA050,NA,,,, +Ne3,Comanche Tribe,1870,EA050,6,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA050,6,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA050,6,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA050,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA050,6,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA050,5,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA050,6,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,,EA050,NA,,,, +Nf11,,,EA050,NA,,,, +Nf12,,1850,EA050,6,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,,,EA050,NA,,,, +Nf14,,,EA050,NA,,,, +Nf15,,,EA050,NA,,,, +Nf2,,1850,EA050,5,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA050,6,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA050,6,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA050,6,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,,,EA050,NA,,,, +Nf7,,,EA050,NA,,,, +Nf8,,1770,EA050,6,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA050,5,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA050,6,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA050,6,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,,EA050,NA,,,, +Ng12,,,EA050,NA,,,, +Ng13,,,EA050,NA,,,, +Ng14,,,EA050,NA,,,, +Ng15,,,EA050,NA,,,, +Ng2,,,EA050,NA,,,, +Ng3,Upper division in Alabama,1750,EA050,6,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA050,NA,,,, +Ng5,,1750,EA050,6,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA050,5,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,,,EA050,NA,,,, +Ng8,,,EA050,NA,,,, +Ng9,,,EA050,NA,,,, +Nh1,Central band,1880,EA050,6,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA050,NA,,,, +Nh11,,,EA050,NA,,,, +Nh12,,,EA050,NA,,,, +Nh13,,,EA050,NA,,,, +Nh14,,,EA050,NA,,,, +Nh15,,1870,EA050,6,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA050,6,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA050,6,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA050,6,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA050,5,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,,EA050,NA,,,, +Nh20,,,EA050,NA,,,, +Nh21,,,EA050,NA,,,, +Nh22,,,EA050,NA,,,, +Nh23,,1870,EA050,5,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA050,6,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,,EA050,NA,,,, +Nh26,,,EA050,NA,,,, +Nh27,,,EA050,NA,,,, +Nh3,,1930,EA050,6,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA050,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA050,6,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,,EA050,NA,,,, +Nh7,,,EA050,NA,,,, +Nh8,,1920,EA050,4,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,,EA050,NA,,,, +Ni1,,1930,EA050,6,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA050,6,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA050,2,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,,EA050,NA,,,, +Ni5,,1570,EA050,6,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA050,3,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,,EA050,NA,,,, +Ni8,,,EA050,NA,,,, +Ni9,,,EA050,NA,,,, +Nj1,Ojitlan,1940,EA050,6,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,,,EA050,NA,,,, +Nj11,,,EA050,NA,,,, +Nj12,,,EA050,NA,,,, +Nj13,,,EA050,NA,,,, +Nj14,,,EA050,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA050,8,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA050,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA050,6,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA050,NA,,,, +Nj6,,,EA050,NA,,,, +Nj7,with special reference to Ayutla,1930,EA050,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA050,NA,,,, +Nj9,,1960,EA050,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA050,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,,EA050,NA,,,, +Sa11,,,EA050,NA,,,, +Sa12,,,EA050,NA,,,, +Sa13,,,EA050,NA,,,, +Sa14,,,EA050,NA,,,, +Sa15,,,EA050,NA,,,, +Sa16,,,EA050,NA,,,, +Sa17,,,EA050,NA,,,, +Sa2,,,EA050,NA,,,, +Sa3,,1930,EA050,5,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,,,EA050,NA,,,, +Sa5,,1950,EA050,5,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA050,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,,EA050,NA,,,, +Sa8,,,EA050,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA050,4,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA050,6,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA050,6,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA050,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA050,5,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA050,NA,,,, +Sb6,Goajiro Tribe,1940,EA050,6,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,,,EA050,NA,,,, +Sb8,,,EA050,NA,,,, +Sb9,,1930,EA050,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA050,4,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,,EA050,NA,,,, +Sc11,,1930,EA050,6,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,,EA050,NA,,,, +Sc13,,,EA050,NA,,,, +Sc14,,,EA050,NA,,,, +Sc15,,,EA050,NA,,,, +Sc16,,,EA050,NA,,,, +Sc17,,,EA050,NA,,,, +Sc18,,1960,EA050,4,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA050,6,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA050,5,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA050,5,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA050,6,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA050,4,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA050,6,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA050,6,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA050,6,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA050,4,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA050,4,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,,EA050,NA,,,, +Sd4,,,EA050,NA,,,, +Sd5,,1950,EA050,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA050,6,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA050,5,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,,EA050,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA050,6,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA050,4,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA050,NA,,,, +Se11,,1960,EA050,5,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA050,NA,,,, +Se2,,1940,EA050,4,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA050,5,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,,EA050,NA,,,, +Se5,Village on Caduiari River,1940,EA050,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA050,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA050,NA,,,, +Se8,Upper Inuya River,1950,EA050,4,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,,EA050,NA,,,, +Sf1,City and environs of Cuzco,1530,EA050,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA050,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA050,6,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA050,5,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,,EA050,NA,,,, +Sf6,,,EA050,NA,,,, +Sf7,,,EA050,NA,,,, +Sf8,,,EA050,NA,,,, +Sf9,,,EA050,NA,,,, +Sg1,Eastern and central,1870,EA050,6,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA050,6,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA050,6,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA050,4,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,,,EA050,NA,,,, +Sh1,,1860,EA050,5,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA050,4,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA050,5,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA050,4,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA050,5,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA050,4,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,,EA050,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA050,6,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA050,6,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA050,6,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA050,3,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA050,5,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,,,EA050,NA,,,, +Si4,Cocozu Group,1940,EA050,5,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA050,6,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA050,2,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,,,EA050,NA,,,, +Si8,,1940,EA050,6,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA050,NA,,,, +Sj1,,1950,EA050,3,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA050,5,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA050,5,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA050,6,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA050,5,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA050,5,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA050,6,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,,,EA050,NA,,,, +Sj7,,1920,EA050,6,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA050,6,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA050,6,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA050,6,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA050,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA050,6,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA050,6,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA050,6,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA050,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA050,5,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA050,5,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA050,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA050,6,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA050,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA050,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA050,6,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA050,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA050,6,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA050,5,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA050,5,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA050,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA050,6,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA050,6,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA050,6,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA050,6,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA050,6,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA050,6,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA050,6,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA050,6,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA050,6,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA051,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA051,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA051,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA051,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA051,2,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,1920,EA051,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p64, +Aa7,,1910,EA051,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA051,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA051,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA051,1,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA051,1,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA051,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA051,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA051,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA051,1,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA051,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA051,1,,earthy1933,EthnographicAtlas_1967_p64, +Ab17,,,EA051,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA051,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA051,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA051,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA051,NA,,,, +Ab21a,,,EA051,NA,,,, +Ab21b,,,EA051,NA,,,, +Ab22,,,EA051,NA,,,, +Ab3,Ruling Luyana,1890,EA051,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA051,1,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA051,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA051,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA051,1,,langandtastevin1937,EthnographicAtlas_1967_p64, +Ab8,Basuto,1860,EA051,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA051,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA051,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA051,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA051,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,1920,EA051,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p64, +Ac13,,,EA051,NA,,,, +Ac14,,1900,EA051,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p64, +Ac15,,,EA051,NA,,,, +Ac16,,,EA051,NA,,,, +Ac17,Feshi territory lineage center,1910,EA051,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA051,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA051,NA,,,, +Ac2,,1920,EA051,9,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p64, +Ac20,,,EA051,NA,,,, +Ac21,,1910,EA051,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p64, +Ac22,,1930,EA051,1,,mertens1935,EthnographicAtlas_1967_p64, +Ac23,with special reference to the western Lele,1950,EA051,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA051,NA,,,, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA051,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p64, +Ac26,,,EA051,NA,,,, +Ac27,,,EA051,NA,,,, +Ac28,,1930,EA051,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA051,NA,,,, +Ac3,Zambia branch,1900,EA051,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA051,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA051,2,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA051,NA,,,, +Ac33,,1940,EA051,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,1940,EA051,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA051,NA,,,, +Ac36,,1920,EA051,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p64, +Ac37,,,EA051,NA,,,, +Ac38,,1910,EA051,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA051,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA051,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA051,NA,,,, +Ac41,,,EA051,NA,,,, +Ac42,,,EA051,NA,,,, +Ac43,,,EA051,NA,,,, +Ac5,,1920,EA051,1,There are also professional hippopotamus hunters,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA051,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA051,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA051,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA051,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA051,1,,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA051,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA051,1,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA051,NA,,,, +Ad13,,1930,EA051,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA051,NA,,,, +Ad15,,1900,EA051,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p68, +Ad16,,1920,EA051,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA051,1,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA051,NA,,,, +Ad19,,1910,EA051,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA051,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA051,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,1930,EA051,1,,maurice193538,EthnographicAtlas_1967_p68, +Ad22,,1950,EA051,1,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA051,NA,,,, +Ad24,,1910,EA051,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA051,NA,,,, +Ad26,,,EA051,NA,,,, +Ad27,,,EA051,NA,,,, +Ad28,,1880,EA051,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA051,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA051,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA051,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,1910,EA051,1,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA051,1,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p68, +Ad33,,1900,EA051,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,1910,EA051,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA051,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA051,NA,,,, +Ad37,,,EA051,NA,,,, +Ad38,,,EA051,NA,,,, +Ad39,,1950,EA051,1,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA051,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA051,NA,,,, +Ad41,,1930,EA051,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,1900,EA051,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p68, +Ad43,,,EA051,NA,,,, +Ad44,,,EA051,NA,,,, +Ad45,,1920,EA051,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,1950,EA051,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA051,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA051,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA051,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA051,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA051,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA051,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA051,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA051,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA051,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,1900,EA051,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA051,1,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA051,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA051,1,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA051,1,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA051,NA,,,, +Ae14,,1950,EA051,1,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,1940,EA051,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p68, +Ae16,,,EA051,NA,,,, +Ae17,,1900,EA051,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA051,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA051,NA,,,, +Ae2,,1950,EA051,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA051,NA,,,, +Ae21,,,EA051,NA,,,, +Ae22,with special reference to the Bankutu,1900,EA051,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p68, +Ae23,,,EA051,NA,,,, +Ae24,,,EA051,NA,,,, +Ae25,,,EA051,NA,,,, +Ae26,,,EA051,NA,,,, +Ae27,,,EA051,NA,,,, +Ae28,,1900,EA051,1,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,1900,EA051,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA051,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA051,NA,,,, +Ae31,,1920,EA051,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA051,NA,,,, +Ae33,,1920,EA051,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA051,NA,,,, +Ae35,,,EA051,NA,,,, +Ae36,,,EA051,NA,,,, +Ae37,,,EA051,NA,,,, +Ae38,,1920,EA051,1,,wijnant192526,EthnographicAtlas_1967_p68, +Ae39,,1920,EA051,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA051,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA051,NA,,,, +Ae41,,1940,EA051,1,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA051,NA,,,, +Ae43,,,EA051,NA,,,, +Ae44,,,EA051,NA,,,, +Ae45,,,EA051,NA,,,, +Ae46,,,EA051,NA,,,, +Ae47,,,EA051,NA,,,, +Ae48,,,EA051,NA,,,, +Ae49,,,EA051,NA,,,, +Ae5,,1910,EA051,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA051,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA051,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,1950,EA051,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,,EA051,NA,,,, +Ae54,,,EA051,NA,,,, +Ae55,,1950,EA051,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,1950,EA051,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae57,,,EA051,NA,,,, +Ae58,,,EA051,NA,,,, +Ae59,,,EA051,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA051,1,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,1910,EA051,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA051,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA051,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA051,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA051,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA051,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA051,NA,,,, +Af13,,1920,EA051,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,1930,EA051,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA051,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA051,NA,,,, +Af17,,,EA051,NA,,,, +Af18,,,EA051,NA,,,, +Af19,,1950,EA051,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p72, +Af2,,1950,EA051,1,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA051,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA051,NA,,,, +Af22,,1940,EA051,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,,,EA051,NA,,,, +Af24,,1900,EA051,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA051,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA051,NA,,,, +Af27,,,EA051,NA,,,, +Af28,,1910,EA051,1,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA051,NA,,,, +Af3,Kumasi State,1900,EA051,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA051,NA,,,, +Af31,,,EA051,NA,,,, +Af32,Abeouta Province and Benin,1920,EA051,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,,,EA051,NA,,,, +Af34,,,EA051,NA,,,, +Af35,,,EA051,NA,,,, +Af36,with special reference to the Glidyi,1900,EA051,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA051,NA,,,, +Af38,,,EA051,NA,,,, +Af39,,,EA051,NA,,,, +Af4,,1930,EA051,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA051,NA,,,, +Af41,,,EA051,NA,,,, +Af42,,1900,EA051,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,1930,EA051,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p72, +Af44,,,EA051,NA,,,, +Af45,,,EA051,NA,,,, +Af46,,,EA051,NA,,,, +Af47,,,EA051,NA,,,, +Af48,,,EA051,NA,,,, +Af49,,1940,EA051,1,,schwab1947,EthnographicAtlas_1967_p72, +Af5,,1930,EA051,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA051,NA,,,, +Af51,,1920,EA051,1,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA051,1,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA051,NA,,,, +Af54,,1930,EA051,1,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA051,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA051,1,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA051,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA051,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA051,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,1950,EA051,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,1930,EA051,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,1900,EA051,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p72, +Ag1,Segou to Bamako on Niger River,1920,EA051,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA051,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA051,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA051,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,,EA051,NA,,,, +Ag14,,,EA051,NA,,,, +Ag15,,,EA051,NA,,,, +Ag16,,1930,EA051,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p72, +Ag17,,,EA051,NA,,,, +Ag18,,1930,EA051,1,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p72, +Ag19,with special reference to the Felup,1930,EA051,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p72, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA051,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA051,NA,,,, +Ag21,,1910,EA051,1,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,with special reference to those of Sine,1920,EA051,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA051,NA,,,, +Ag24,,,EA051,NA,,,, +Ag25,,,EA051,NA,,,, +Ag26,,,EA051,NA,,,, +Ag27,,1910,EA051,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p72, +Ag28,,,EA051,NA,,,, +Ag29,,,EA051,NA,,,, +Ag3,,1930,EA051,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA051,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,1910,EA051,1,,cheron1913; holas1957,EthnographicAtlas_1967_p72, +Ag32,,1900,EA051,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA051,NA,,,, +Ag34,,,EA051,NA,,,, +Ag35,,,EA051,NA,,,, +Ag36,,,EA051,NA,,,, +Ag37,,,EA051,NA,,,, +Ag38,,,EA051,NA,,,, +Ag39,,,EA051,NA,,,, +Ag4,Tallensi Tribe,1930,EA051,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA051,NA,,,, +Ag41,,,EA051,NA,,,, +Ag42,,,EA051,NA,,,, +Ag43,,,EA051,NA,,,, +Ag44,,,EA051,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA051,1,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA051,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA051,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA051,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,1930,EA051,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA051,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,1910,EA051,1,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA051,NA,,,, +Ag52,,,EA051,NA,,,, +Ag53,with special reference to those of Garango,1960,EA051,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA051,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA051,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,1930,EA051,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p72, +Ag8,with special reference to the Coniagui,1910,EA051,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA051,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,Zaria Province,1930,EA051,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA051,NA,,,, +Ah11,,,EA051,NA,,,, +Ah12,,,EA051,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA051,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA051,1,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah15,,1920,EA051,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA051,NA,,,, +Ah17,,,EA051,NA,,,, +Ah18,,,EA051,NA,,,, +Ah19,,1930,EA051,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p76, +Ah2,,1920,EA051,1,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,1920,EA051,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA051,NA,,,, +Ah22,,,EA051,NA,,,, +Ah23,,,EA051,NA,,,, +Ah24,,,EA051,NA,,,, +Ah25,,,EA051,NA,,,, +Ah26,,,EA051,NA,,,, +Ah27,,,EA051,NA,,,, +Ah28,,,EA051,NA,,,, +Ah29,,,EA051,NA,,,, +Ah3,Tar of Benue Province,1920,EA051,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,1920,EA051,1,,meek1931b,EthnographicAtlas_1967_p76, +Ah31,,1910,EA051,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p76, +Ah32,,,EA051,NA,,,, +Ah33,,1920,EA051,1,,meek1931b; temple1922,EthnographicAtlas_1967_p76, +Ah34,,,EA051,NA,,,, +Ah35,,,EA051,NA,,,, +Ah36,,1920,EA051,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA051,NA,,,, +Ah38,,1930,EA051,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA051,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,1920,EA051,9,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p76, +Ah5,,,EA051,NA,,,, +Ah6,,,EA051,NA,,,, +Ah7,,1940,EA051,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA051,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA051,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA051,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA051,1,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA051,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,1950,EA051,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p76, +Ai13,,,EA051,NA,,,, +Ai14,,1920,EA051,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,,EA051,NA,,,, +Ai16,,,EA051,NA,,,, +Ai17,,,EA051,NA,,,, +Ai18,,,EA051,NA,,,, +Ai19,,,EA051,NA,,,, +Ai2,,,EA051,NA,,,, +Ai20,,,EA051,NA,,,, +Ai21,,,EA051,NA,,,, +Ai22,,1890,EA051,1,,delafosse1897,EthnographicAtlas_1967_p76, +Ai23,,1920,EA051,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA051,NA,,,, +Ai25,,,EA051,NA,,,, +Ai26,,1920,EA051,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA051,NA,,,, +Ai28,,1910,EA051,1,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA051,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA051,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA051,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,1920,EA051,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,,EA051,NA,,,, +Ai33,,,EA051,NA,,,, +Ai34,,1880,EA051,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA051,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA051,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA051,NA,,,, +Ai38,,1930,EA051,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA051,1,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA051,NA,,,, +Ai40,,1940,EA051,1,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA051,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA051,1,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA051,1,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,1920,EA051,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p76, +Ai45,,,EA051,NA,,,, +Ai46,,1930,EA051,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p76, +Ai47,Northern division,1939,EA051,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,1920,EA051,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA051,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA051,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA051,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA051,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,1950,EA051,1,,lawrance1957,EthnographicAtlas_1967_p76, +Aj10,,,EA051,NA,,,, +Aj11,,1900,EA051,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p80, +Aj12,,1920,EA051,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj13,,1930,EA051,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA051,NA,,,, +Aj15,,1900,EA051,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA051,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA051,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,1950,EA051,1,,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,1920,EA051,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p80, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA051,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,1940,EA051,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p80, +Aj21,,1930,EA051,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,1930,EA051,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA051,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA051,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA051,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA051,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA051,NA,,,, +Aj28,,1940,EA051,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA051,NA,,,, +Aj3,,1930,EA051,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA051,NA,,,, +Aj31,,,EA051,NA,,,, +Aj4,,1920,EA051,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA051,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA051,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA051,1,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA051,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA051,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA051,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA051,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA051,1,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA051,1,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA051,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA051,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA051,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA051,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA051,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA051,NA,,,, +Ca19,,1950,EA051,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA051,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA051,NA,,,, +Ca21,,,EA051,NA,,,, +Ca22,,,EA051,NA,,,, +Ca23,,1950,EA051,1,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA051,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,,EA051,NA,,,, +Ca26,,,EA051,NA,,,, +Ca27,,,EA051,NA,,,, +Ca28,,1950,EA051,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA051,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,1950,EA051,1,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p80, +Ca30,Kafa Kingdom,1890,EA051,1,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,,EA051,NA,,,, +Ca32,,,EA051,NA,,,, +Ca33,,,EA051,NA,,,, +Ca34,,,EA051,NA,,,, +Ca35,,,EA051,NA,,,, +Ca36,,,EA051,NA,,,, +Ca37,,,EA051,NA,,,, +Ca38,,,EA051,NA,,,, +Ca39,,1930,EA051,1,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,1950,EA051,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA051,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,,EA051,NA,,,, +Ca42,,1950,EA051,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA051,NA,,,, +Ca5,,1930,EA051,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p80, +Ca6,,,EA051,NA,,,, +Ca7,Gondar district,1950,EA051,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,1940,EA051,1,,leslau1950; shack1963,EthnographicAtlas_1967_p80, +Ca9,,,EA051,NA,,,, +Cb1,,,EA051,NA,,,, +Cb10,,,EA051,NA,,,, +Cb11,,,EA051,NA,,,, +Cb12,,,EA051,NA,,,, +Cb13,,,EA051,NA,,,, +Cb14,,,EA051,NA,,,, +Cb15,,,EA051,NA,,,, +Cb16,,,EA051,NA,,,, +Cb17,Jebel Marra,1880,EA051,1,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,1930,EA051,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p80, +Cb19,,,EA051,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA051,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA051,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA051,1,,pfeffer1936,EthnographicAtlas_1967_p84, +Cb22,,,EA051,NA,,,, +Cb23,,1930,EA051,1,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,Wodaabe of Niger,1950,EA051,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p84, +Cb25,,,EA051,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA051,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA051,NA,,,, +Cb28,,,EA051,NA,,,, +Cb29,,,EA051,NA,,,, +Cb3,Bamba division,1940,EA051,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,1920,EA051,1,,reid1930,EthnographicAtlas_1967_p80, +Cb5,,1910,EA051,9,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p80, +Cb6,,1920,EA051,1,,woodnd,EthnographicAtlas_1967_p80, +Cb7,,1920,EA051,1,,meek1931b:288-310,EthnographicAtlas_1967_p80, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA051,9,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p80, +Cb9,,,EA051,NA,,,, +Cc1,,1950,EA051,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA051,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA051,NA,,,, +Cc12,,1944,EA051,1,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA051,NA,,,, +Cc14,,1880,EA051,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA051,NA,,,, +Cc16,,1930,EA051,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA051,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA051,NA,,,, +Cc19,,,EA051,NA,,,, +Cc2,Nomads of Tibesti,1950,EA051,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA051,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA051,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA051,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA051,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA051,NA,,,, +Cc7,,,EA051,NA,,,, +Cc8,,,EA051,NA,,,, +Cc9,Ahaggaren tribe,1920,EA051,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA051,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA051,NA,,,, +Cd11,,1500,EA051,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p84, +Cd12,,,EA051,NA,,,, +Cd13,,,EA051,NA,,,, +Cd14,,,EA051,NA,,,, +Cd15,,,EA051,NA,,,, +Cd16,,,EA051,NA,,,, +Cd17,,,EA051,NA,,,, +Cd18,,,EA051,NA,,,, +Cd19,,,EA051,NA,,,, +Cd2,Town and environs of Silwa,1950,EA051,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA051,NA,,,, +Cd21,,,EA051,NA,,,, +Cd3,Entirety: Moroccan,1920,EA051,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA051,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA051,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,with special reference to the New Empire,-1400,EA051,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA051,NA,,,, +Cd8,,,EA051,NA,,,, +Cd9,,,EA051,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA051,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA051,NA,,,, +Ce3,,,EA051,NA,,,, +Ce4,Labourd,1930,EA051,9,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA051,1,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA051,1,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA051,9,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA051,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA051,1,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA051,NA,,,, +Cf3,,1930,EA051,1,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA051,1,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA051,1,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA051,9,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA051,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA051,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA051,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA051,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA051,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA051,NA,,,, +Ch11,Viriatino Village,1955,EA051,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA051,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA051,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,1900,EA051,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p84, +Ch5,with special reference to the village of Dragelevtsy,1940,EA051,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA051,1,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA051,1,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,,EA051,NA,,,, +Ch9,,1930,EA051,1,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA051,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA051,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA051,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA051,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA051,1,,grigolia1939,EthnographicAtlas_1967_p84, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA051,9,,gadzhieva1958,EthnographicAtlas_1967_p84, +Ci4,,1920,EA051,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA051,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA051,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p84, +Ci7,,1900,EA051,1,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p84, +Ci8,,,EA051,NA,,,, +Ci9,,,EA051,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA051,1,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,,,EA051,NA,,,, +Cj2,Unspecified,1920,EA051,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA051,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA051,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA051,1,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA051,NA,,,, +Cj7,,,EA051,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA051,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA051,NA,,,, +Ea1,,1950,EA051,1,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,,,EA051,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA051,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA051,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA051,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA051,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA051,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA051,1,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA051,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA051,1,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA051,9,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA051,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA051,9,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA051,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA051,1,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA051,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA051,NA,,,, +Eb5,,,EA051,NA,,,, +Eb6,,,EA051,NA,,,, +Eb7,,1930,EA051,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA051,NA,,,, +Ec1,Sakhalin Island,1920,EA051,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA051,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA051,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA051,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA051,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA051,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA051,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,Upper Kolyma River,1850,EA051,1,,jochelson191926,EthnographicAtlas_1967_p88, +Ec7,Saru Basin in Hokkaido,1900,EA051,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,1900,EA051,1,,shimkin1939,EthnographicAtlas_1967_p88, +Ec9,,1920,EA051,1,,lattimore1933,EthnographicAtlas_1967_p88, +Ed1,Kanghwa Island,1950,EA051,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA051,9,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA051,NA,,,, +Ed14,,,EA051,NA,,,, +Ed15a,,,EA051,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA051,9,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA051,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA051,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA051,9,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA051,1,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA051,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA051,9,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA051,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA051,9,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA051,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA051,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA051,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA051,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA051,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA051,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,,,EA051,NA,,,, +Ee7,,,EA051,NA,,,, +Ee8,,,EA051,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA051,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA051,NA,,,, +Ef11,Village and environs of Senapur,1945,EA051,9,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA051,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA051,NA,,,, +Ef4,,,EA051,NA,,,, +Ef5,,1900,EA051,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA051,1,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA051,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA051,1,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA051,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA051,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA051,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA051,NA,,,, +Eg12,,,EA051,NA,,,, +Eg13,Bastar State,1941,EA051,1,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA051,1,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA051,9,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA051,1,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA051,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA051,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,with special reference to Northern Kerala,1799,EA051,1,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA051,1,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA051,9,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,1930,EA051,1,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA051,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA051,NA,,,, +Eh2,,1900,EA051,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA051,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA051,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA051,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA051,NA,,,, +Eh7,,1900,EA051,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA051,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,1930,EA051,1,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA051,1,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA051,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA051,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA051,NA,,,, +Ei13,,1910,EA051,1,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA051,1,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA051,NA,,,, +Ei16,,1910,EA051,1,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA051,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA051,9,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,1940,EA051,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA051,1,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA051,NA,,,, +Ei3,Nondwin Village,1950,EA051,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA051,1,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA051,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA051,1,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA051,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA051,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA051,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA051,1,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA051,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA051,9,,lafont1964,EthnographicAtlas_1967_p92, +Ej12,,1960,EA051,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA051,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA051,1,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA051,2,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA051,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA051,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA051,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,,,EA051,NA,,,, +Ej5,,,EA051,NA,,,, +Ej6,of the Mergui Archipelago,1920,EA051,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA051,1,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA051,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA051,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA051,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA051,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA051,1,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA051,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA051,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA051,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA051,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA051,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA051,NA,,,, +Ia18,,,EA051,NA,,,, +Ia2,,1950,EA051,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,,,EA051,NA,,,, +Ia4,with special reference to the Eastern Subanun,1950,EA051,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p92, +Ia5,,1950,EA051,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA051,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA051,1,,fox1954,EthnographicAtlas_1967_p92, +Ia8,,,EA051,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA051,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA051,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA051,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA051,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA051,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA051,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,,EA051,NA,,,, +Ib7,with special reference to those of North Pageh,1920,EA051,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,with special reference to the Ridan group,1900,EA051,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA051,NA,,,, +Ic1,Borongloe,1940,EA051,9,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA051,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,,,EA051,NA,,,, +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA051,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA051,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA051,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,with special reference to the Mountain Belu,1950,EA051,1,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA051,NA,,,, +Ic5,Bare'e subgroup,1910,EA051,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA051,1,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,,,EA051,NA,,,, +Ic8,,1890,EA051,1,,pleyte1893,EthnographicAtlas_1967_p96, +Ic9,with special reference to eastern Sumba,1930,EA051,1,,nooteboom1940,EthnographicAtlas_1967_p96, +Id1,Alice Springs and environs,1900,EA051,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA051,1,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA051,2,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA051,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA051,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA051,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA051,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA051,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA051,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA051,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA051,1,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA051,1,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA051,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA051,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA051,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA051,1,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA051,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA051,1,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA051,1,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,Kalabu; Northern Abelam,1930,EA051,1,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA051,1,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA051,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA051,1,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA051,1,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA051,1,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA051,1,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA051,1,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,,EA051,NA,,,, +Ie23,,1950,EA051,1,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,1870,EA051,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA051,1,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA051,1,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,1910,EA051,1,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,1940,EA051,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA051,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA051,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA051,1,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,1950,EA051,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA051,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA051,1,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA051,NA,,,, +Ie35,,1930,EA051,1,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA051,NA,,,, +Ie37,,,EA051,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA051,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA051,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA051,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA051,1,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA051,1,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA051,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA051,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA051,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA051,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA051,NA,,,, +If11,,1860,EA051,9,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA051,9,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA051,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA051,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA051,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA051,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA051,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA051,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA051,9,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA051,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA051,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA051,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA051,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA051,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,,EA051,NA,,,, +Ig1,Northeastern group,1940,EA051,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA051,1,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA051,1,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,with special reference to the Varisi,1900,EA051,1,,scheffler1965,EthnographicAtlas_1967_p100, +Ig13,,1900,EA051,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,1900,EA051,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA051,NA,,,, +Ig16,,,EA051,NA,,,, +Ig17,,,EA051,NA,,,, +Ig18,,,EA051,NA,,,, +Ig19,,,EA051,NA,,,, +Ig2,Kiriwina Island,1910,EA051,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA051,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA051,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA051,1,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA051,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA051,1,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA051,1,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA051,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA051,NA,,,, +Ig9,Peri Village,1920,EA051,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA051,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,Whitsands,1920,EA051,1,,humphreys1926,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA051,NA,,,, +Ih12,,,EA051,NA,,,, +Ih13,,,EA051,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA051,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA051,1,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA051,NA,,,, +Ih4,Lau Island,1920,EA051,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA051,NA,,,, +Ih6,,1890,EA051,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA051,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA051,1,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA051,1,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA051,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA051,NA,,,, +Ii12,,,EA051,NA,,,, +Ii13,,1830,EA051,9,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA051,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA051,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA051,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA051,9,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA051,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA051,9,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA051,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,,EA051,NA,,,, +Ii9,,1840,EA051,9,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA051,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA051,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA051,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA051,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA051,9,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA051,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA051,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA051,9,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA051,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,,EA051,NA,,,, +Na1,,1930,EA051,1,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA051,1,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA051,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA051,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA051,1,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA051,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA051,2,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA051,1,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA051,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA051,2,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA051,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA051,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA051,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA051,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA051,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA051,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA051,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA051,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA051,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA051,1,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA051,1,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA051,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA051,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA051,1,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA051,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA051,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA051,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA051,1,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA051,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA051,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA051,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA051,1,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA051,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA051,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA051,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA051,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA051,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA051,NA,,,, +Na45,,1900,EA051,2,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA051,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA051,1,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA051,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA051,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA051,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA051,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA051,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA051,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA051,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA051,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA051,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA051,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA051,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA051,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA051,1,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA051,1,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA051,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA051,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA051,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA051,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA051,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA051,1,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA051,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA051,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA051,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA051,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,,EA051,NA,,,, +Nb3,,1890,EA051,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA051,1,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA051,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA051,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA051,1,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA051,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA051,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA051,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA051,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA051,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA051,1,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA051,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA051,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA051,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA051,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA051,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA051,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA051,1,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA051,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA051,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA051,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA051,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA051,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA051,1,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA051,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA051,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA051,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA051,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA051,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA051,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA051,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA051,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA051,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA051,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA051,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA051,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA051,1,,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA051,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA051,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA051,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA051,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA051,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA051,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA051,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA051,1,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA051,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA051,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA051,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA051,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA051,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA051,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA051,1,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA051,2,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA051,1,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA051,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA051,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA051,1,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA051,2,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA051,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA051,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA051,1,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA051,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA051,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA051,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA051,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA051,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA051,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA051,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA051,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA051,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA051,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA051,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA051,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA051,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA051,1,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA051,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA051,1,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA051,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA051,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA051,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA051,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA051,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA051,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA051,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA051,1,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA051,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA051,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA051,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA051,1,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA051,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA051,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA051,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA051,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA051,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA051,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA051,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA051,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA051,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA051,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA051,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA051,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA051,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA051,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA051,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA051,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA051,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA051,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA051,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA051,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA051,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA051,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA051,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA051,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA051,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA051,1,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA051,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA051,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA051,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA051,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA051,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA051,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA051,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA051,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA051,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA051,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA051,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA051,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA051,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA051,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA051,1,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA051,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA051,NA,,,, +Ne3,Comanche Tribe,1870,EA051,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA051,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA051,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA051,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA051,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA051,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA051,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA051,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA051,1,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA051,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA051,1,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA051,1,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA051,NA,,,, +Nf2,,1850,EA051,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA051,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA051,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA051,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA051,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA051,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA051,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA051,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA051,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA051,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA051,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA051,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA051,NA,,,, +Ng14,,,EA051,NA,,,, +Ng15,,,EA051,NA,,,, +Ng2,,,EA051,NA,,,, +Ng3,Upper division in Alabama,1750,EA051,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA051,NA,,,, +Ng5,,1750,EA051,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA051,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA051,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA051,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA051,NA,,,, +Nh1,Central band,1880,EA051,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,1920,EA051,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p116, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA051,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA051,1,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA051,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA051,NA,,,, +Nh15,,1870,EA051,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA051,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA051,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA051,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA051,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA051,1,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA051,1,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA051,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA051,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA051,1,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA051,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA051,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA051,NA,,,, +Nh27,,,EA051,NA,,,, +Nh3,,1930,EA051,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA051,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA051,1,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA051,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA051,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA051,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,1920,EA051,1,,parsons1939; trager1943,EthnographicAtlas_1967_p116, +Ni1,,1930,EA051,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA051,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA051,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA051,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA051,1,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA051,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA051,1,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA051,NA,,,, +Ni9,,,EA051,NA,,,, +Nj1,Ojitlan,1940,EA051,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA051,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA051,NA,,,, +Nj12,,,EA051,NA,,,, +Nj13,,,EA051,NA,,,, +Nj14,,,EA051,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA051,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA051,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA051,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA051,NA,,,, +Nj6,,,EA051,NA,,,, +Nj7,with special reference to Ayutla,1930,EA051,1,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA051,1,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA051,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA051,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA051,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA051,NA,,,, +Sa12,,1948,EA051,1,,stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA051,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA051,NA,,,, +Sa15,,,EA051,NA,,,, +Sa16,,,EA051,NA,,,, +Sa17,,,EA051,NA,,,, +Sa2,,,EA051,NA,,,, +Sa3,,1930,EA051,1,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA051,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA051,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA051,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA051,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA051,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA051,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA051,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA051,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA051,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA051,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA051,NA,,,, +Sb6,Goajiro Tribe,1940,EA051,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA051,1,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA051,1,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA051,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA051,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA051,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA051,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA051,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA051,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA051,1,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA051,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA051,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA051,1,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA051,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA051,1,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA051,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA051,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA051,1,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA051,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA051,1,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA051,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA051,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA051,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA051,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA051,1,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA051,1,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA051,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA051,1,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA051,1,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA051,1,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA051,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA051,1,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA051,NA,,,, +Se11,,1960,EA051,1,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA051,NA,,,, +Se2,,1940,EA051,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA051,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA051,1,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA051,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA051,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA051,NA,,,, +Se8,Upper Inuya River,1950,EA051,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA051,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA051,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA051,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA051,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA051,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA051,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA051,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA051,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA051,NA,,,, +Sf9,,,EA051,NA,,,, +Sg1,Eastern and central,1870,EA051,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA051,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA051,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA051,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA051,1,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA051,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA051,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA051,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA051,1,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA051,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA051,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA051,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA051,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA051,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA051,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA051,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA051,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA051,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA051,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA051,1,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA051,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,with special reference to the Cozarimi,1910,EA051,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,1940,EA051,1,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA051,NA,,,, +Sj1,,1950,EA051,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA051,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA051,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA051,1,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA051,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA051,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA051,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,with special reference to the Guajajara subgroup,1930,EA051,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA051,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA051,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA051,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA051,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA051,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA051,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA051,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA051,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA051,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA051,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA051,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA051,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA051,9,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA051,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA051,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA051,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA051,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA051,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA051,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA051,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA051,2,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA051,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA051,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA051,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA051,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA051,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA051,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA051,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA051,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA051,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA052,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA052,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA052,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA052,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA052,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,1920,EA052,6,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p64, +Aa7,,1910,EA052,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,,EA052,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA052,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA052,9,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA052,2,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,,EA052,NA,,,, +Ab12,,1830,EA052,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA052,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA052,9,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA052,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA052,NA,,,, +Ab17,,,EA052,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA052,2,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA052,2,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA052,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA052,NA,,,, +Ab21a,,,EA052,NA,,,, +Ab21b,,,EA052,NA,,,, +Ab22,,,EA052,NA,,,, +Ab3,Ruling Luyana,1890,EA052,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA052,1,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA052,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA052,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA052,4,,langandtastevin1937,EthnographicAtlas_1967_p64, +Ab8,Basuto,1860,EA052,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA052,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA052,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA052,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA052,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,1920,EA052,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p64, +Ac13,,1950,EA052,1,,tew1950; velsen1964,EthnographicAtlas_1967_p64, +Ac14,,1900,EA052,2,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p64, +Ac15,,,EA052,NA,,,, +Ac16,,,EA052,NA,,,, +Ac17,Feshi territory lineage center,1910,EA052,4,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA052,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA052,NA,,,, +Ac2,,1920,EA052,6,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p64, +Ac20,,,EA052,NA,,,, +Ac21,,1910,EA052,3,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p64, +Ac22,,1930,EA052,5,,mertens1935,EthnographicAtlas_1967_p64, +Ac23,with special reference to the western Lele,1950,EA052,6,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA052,NA,,,, +Ac25,,,EA052,NA,,,, +Ac26,,,EA052,NA,,,, +Ac27,,,EA052,NA,,,, +Ac28,,1930,EA052,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA052,NA,,,, +Ac3,Zambia branch,1900,EA052,2,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA052,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA052,2,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA052,NA,,,, +Ac33,,1940,EA052,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,1940,EA052,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA052,NA,,,, +Ac36,,,EA052,NA,,,, +Ac37,,,EA052,NA,,,, +Ac38,,1910,EA052,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA052,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA052,2,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA052,NA,,,, +Ac41,,,EA052,NA,,,, +Ac42,,,EA052,NA,,,, +Ac43,,,EA052,NA,,,, +Ac5,,1920,EA052,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA052,2,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA052,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA052,2,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA052,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA052,1,,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA052,6,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA052,1,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA052,NA,,,, +Ad13,,1930,EA052,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA052,NA,,,, +Ad15,,,EA052,NA,,,, +Ad16,,1920,EA052,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,,EA052,NA,,,, +Ad18,,,EA052,NA,,,, +Ad19,,1910,EA052,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA052,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,,EA052,NA,,,, +Ad21,,1930,EA052,1,,maurice193538,EthnographicAtlas_1967_p68, +Ad22,,,EA052,NA,,,, +Ad23,,,EA052,NA,,,, +Ad24,,1910,EA052,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA052,NA,,,, +Ad26,,1910,EA052,9,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,,EA052,NA,,,, +Ad28,,1880,EA052,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA052,3,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA052,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,,EA052,NA,,,, +Ad31,,,EA052,NA,,,, +Ad32,,,EA052,NA,,,, +Ad33,,1900,EA052,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,1910,EA052,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA052,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA052,NA,,,, +Ad37,,,EA052,NA,,,, +Ad38,,,EA052,NA,,,, +Ad39,,1950,EA052,9,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA052,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA052,NA,,,, +Ad41,,1930,EA052,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,1900,EA052,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p68, +Ad43,,,EA052,NA,,,, +Ad44,,1920,EA052,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,,EA052,NA,,,, +Ad46,,1950,EA052,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,,EA052,NA,,,, +Ad48,,1950,EA052,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA052,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA052,NA,,,, +Ad50,,,EA052,NA,,,, +Ad51,,1930,EA052,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA052,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA052,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA052,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,,EA052,NA,,,, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA052,1,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA052,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA052,2,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA052,2,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA052,NA,,,, +Ae14,,,EA052,NA,,,, +Ae15,,1940,EA052,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p68, +Ae16,,,EA052,NA,,,, +Ae17,,1900,EA052,2,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA052,2,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA052,NA,,,, +Ae2,,1950,EA052,6,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA052,NA,,,, +Ae21,,,EA052,NA,,,, +Ae22,,,EA052,NA,,,, +Ae23,,,EA052,NA,,,, +Ae24,,,EA052,NA,,,, +Ae25,,,EA052,NA,,,, +Ae26,,,EA052,NA,,,, +Ae27,,,EA052,NA,,,, +Ae28,,1900,EA052,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,1900,EA052,2,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA052,2,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA052,NA,,,, +Ae31,,,EA052,NA,,,, +Ae32,,,EA052,NA,,,, +Ae33,,1920,EA052,3,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA052,NA,,,, +Ae35,,,EA052,NA,,,, +Ae36,,,EA052,NA,,,, +Ae37,,,EA052,NA,,,, +Ae38,,1920,EA052,6,,wijnant192526,EthnographicAtlas_1967_p68, +Ae39,,1920,EA052,4,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA052,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA052,NA,,,, +Ae41,,1940,EA052,6,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA052,NA,,,, +Ae43,,,EA052,NA,,,, +Ae44,,,EA052,NA,,,, +Ae45,,,EA052,NA,,,, +Ae46,,,EA052,NA,,,, +Ae47,,,EA052,NA,,,, +Ae48,,1930,EA052,2,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae49,,,EA052,NA,,,, +Ae5,,1910,EA052,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,,EA052,NA,,,, +Ae51,Ndiki subtribe,1940,EA052,4,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,,EA052,NA,,,, +Ae53,,,EA052,NA,,,, +Ae54,,,EA052,NA,,,, +Ae55,,1950,EA052,6,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,,EA052,NA,,,, +Ae57,,,EA052,NA,,,, +Ae58,,,EA052,NA,,,, +Ae59,,,EA052,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA052,2,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,1910,EA052,5,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA052,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA052,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA052,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA052,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA052,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA052,NA,,,, +Af13,,1920,EA052,2,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,1930,EA052,2,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA052,5,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA052,NA,,,, +Af17,,,EA052,NA,,,, +Af18,,,EA052,NA,,,, +Af19,,1950,EA052,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p72, +Af2,,1950,EA052,2,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA052,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA052,NA,,,, +Af22,,1940,EA052,2,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,with special reference to the village of Mgbom,1950,EA052,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,,EA052,NA,,,, +Af25,,1930,EA052,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA052,NA,,,, +Af27,,,EA052,NA,,,, +Af28,,,EA052,NA,,,, +Af29,,,EA052,NA,,,, +Af3,Kumasi State,1900,EA052,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA052,NA,,,, +Af31,,,EA052,NA,,,, +Af32,,,EA052,NA,,,, +Af33,,,EA052,NA,,,, +Af34,,,EA052,NA,,,, +Af35,,,EA052,NA,,,, +Af36,with special reference to the Glidyi,1900,EA052,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA052,NA,,,, +Af38,,,EA052,NA,,,, +Af39,,,EA052,NA,,,, +Af4,,1930,EA052,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA052,NA,,,, +Af41,,,EA052,NA,,,, +Af42,,1900,EA052,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,1930,EA052,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p72, +Af44,,,EA052,NA,,,, +Af45,,,EA052,NA,,,, +Af46,,,EA052,NA,,,, +Af47,,,EA052,NA,,,, +Af48,,,EA052,NA,,,, +Af49,,1940,EA052,2,,schwab1947,EthnographicAtlas_1967_p72, +Af5,,1930,EA052,5,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA052,NA,,,, +Af51,,1920,EA052,6,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA052,6,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA052,NA,,,, +Af54,,1930,EA052,3,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA052,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA052,4,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA052,5,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA052,NA,,,, +Af6,,,EA052,NA,,,, +Af7,,1950,EA052,2,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,,EA052,NA,,,, +Af9,,1900,EA052,4,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p72, +Ag1,Segou to Bamako on Niger River,1920,EA052,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA052,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA052,4,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA052,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,,EA052,NA,,,, +Ag14,,,EA052,NA,,,, +Ag15,,,EA052,NA,,,, +Ag16,,1930,EA052,6,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p72, +Ag17,,,EA052,NA,,,, +Ag18,,1930,EA052,3,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p72, +Ag19,with special reference to the Felup,1930,EA052,3,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p72, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA052,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA052,NA,,,, +Ag21,,1910,EA052,1,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,with special reference to those of Sine,1920,EA052,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA052,NA,,,, +Ag24,,,EA052,NA,,,, +Ag25,,,EA052,NA,,,, +Ag26,,,EA052,NA,,,, +Ag27,,1910,EA052,9,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p72, +Ag28,,,EA052,NA,,,, +Ag29,,,EA052,NA,,,, +Ag3,,1930,EA052,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA052,5,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,,EA052,NA,,,, +Ag32,,1900,EA052,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA052,NA,,,, +Ag34,,,EA052,NA,,,, +Ag35,,,EA052,NA,,,, +Ag36,,,EA052,NA,,,, +Ag37,,,EA052,NA,,,, +Ag38,,,EA052,NA,,,, +Ag39,,,EA052,NA,,,, +Ag4,Tallensi Tribe,1930,EA052,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA052,NA,,,, +Ag41,,,EA052,NA,,,, +Ag42,,,EA052,NA,,,, +Ag43,,,EA052,NA,,,, +Ag44,,,EA052,NA,,,, +Ag45,,,EA052,NA,,,, +Ag46,,,EA052,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA052,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA052,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,,EA052,NA,,,, +Ag5,,1930,EA052,4,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,1910,EA052,2,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA052,NA,,,, +Ag52,,,EA052,NA,,,, +Ag53,,,EA052,NA,,,, +Ag54,,1910,EA052,6,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA052,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,1930,EA052,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p72, +Ag8,with special reference to the Coniagui,1910,EA052,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA052,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,,,EA052,NA,,,, +Ah10,,,EA052,NA,,,, +Ah11,,1950,EA052,1,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA052,NA,,,, +Ah13,,,EA052,NA,,,, +Ah14,,,EA052,NA,,,, +Ah15,,1920,EA052,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA052,NA,,,, +Ah17,,,EA052,NA,,,, +Ah18,,,EA052,NA,,,, +Ah19,,1930,EA052,5,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p76, +Ah2,,1920,EA052,1,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,1920,EA052,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA052,NA,,,, +Ah22,,,EA052,NA,,,, +Ah23,,,EA052,NA,,,, +Ah24,,,EA052,NA,,,, +Ah25,,,EA052,NA,,,, +Ah26,,,EA052,NA,,,, +Ah27,,,EA052,NA,,,, +Ah28,,,EA052,NA,,,, +Ah29,,,EA052,NA,,,, +Ah3,Tar of Benue Province,1920,EA052,2,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA052,NA,,,, +Ah31,,,EA052,NA,,,, +Ah32,,,EA052,NA,,,, +Ah33,,,EA052,NA,,,, +Ah34,,,EA052,NA,,,, +Ah35,,,EA052,NA,,,, +Ah36,,,EA052,NA,,,, +Ah37,,,EA052,NA,,,, +Ah38,,,EA052,NA,,,, +Ah39,,,EA052,NA,,,, +Ah4,,1920,EA052,9,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p76, +Ah5,,,EA052,NA,,,, +Ah6,,,EA052,NA,,,, +Ah7,,1940,EA052,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA052,4,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA052,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA052,5,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA052,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA052,2,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA052,NA,,,, +Ai13,,,EA052,NA,,,, +Ai14,,1920,EA052,3,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,1900,EA052,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA052,NA,,,, +Ai17,,,EA052,NA,,,, +Ai18,,1880,EA052,1,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA052,NA,,,, +Ai2,,,EA052,NA,,,, +Ai20,,,EA052,NA,,,, +Ai21,,1880,EA052,1,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p76, +Ai22,,,EA052,NA,,,, +Ai23,,1920,EA052,3,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA052,NA,,,, +Ai25,,1950,EA052,4,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,,EA052,NA,,,, +Ai27,,,EA052,NA,,,, +Ai28,,1910,EA052,2,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA052,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA052,5,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA052,1,Mainly by Pygmies,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,,EA052,NA,,,, +Ai32,,,EA052,NA,,,, +Ai33,,,EA052,NA,,,, +Ai34,,1880,EA052,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA052,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA052,4,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA052,NA,,,, +Ai38,,,EA052,NA,,,, +Ai39,,,EA052,NA,,,, +Ai4,,,EA052,NA,,,, +Ai40,,,EA052,NA,,,, +Ai41,,,EA052,NA,,,, +Ai42,,,EA052,NA,,,, +Ai43,,1930,EA052,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,,EA052,NA,,,, +Ai45,,,EA052,NA,,,, +Ai46,,1930,EA052,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p76, +Ai47,,,EA052,NA,,,, +Ai5,,1920,EA052,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,,,EA052,NA,,,, +Ai7,,1910,EA052,4,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA052,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA052,4,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,1950,EA052,2,,lawrance1957,EthnographicAtlas_1967_p76, +Aj10,,,EA052,NA,,,, +Aj11,,1900,EA052,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p80, +Aj12,,1920,EA052,6,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj13,,1930,EA052,2,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA052,NA,,,, +Aj15,,1900,EA052,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA052,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,,EA052,NA,,,, +Aj18,,1950,EA052,9,,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,1920,EA052,9,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p80, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA052,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,1940,EA052,9,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p80, +Aj21,,1930,EA052,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,,EA052,NA,,,, +Aj23,,1950,EA052,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA052,9,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA052,9,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA052,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA052,NA,,,, +Aj28,,1940,EA052,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA052,NA,,,, +Aj3,,1930,EA052,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA052,NA,,,, +Aj31,,,EA052,NA,,,, +Aj4,,1920,EA052,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA052,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA052,3,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA052,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA052,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,,EA052,NA,,,, +Ca1,Town of Buso,1930,EA052,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA052,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA052,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA052,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA052,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA052,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA052,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA052,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA052,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA052,NA,,,, +Ca19,,1950,EA052,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA052,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA052,NA,,,, +Ca21,,1950,EA052,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA052,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA052,9,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA052,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA052,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA052,NA,,,, +Ca27,,,EA052,NA,,,, +Ca28,,1950,EA052,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,,EA052,NA,,,, +Ca3,,1950,EA052,9,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p80, +Ca30,Kafa Kingdom,1890,EA052,1,By an outcaste group (Manjo hunters),bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,,EA052,NA,,,, +Ca32,,,EA052,NA,,,, +Ca33,,,EA052,NA,,,, +Ca34,,,EA052,NA,,,, +Ca35,,,EA052,NA,,,, +Ca36,,,EA052,NA,,,, +Ca37,,,EA052,NA,,,, +Ca38,,,EA052,NA,,,, +Ca39,,,EA052,NA,,,, +Ca4,,1950,EA052,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA052,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA052,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA052,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA052,NA,,,, +Ca5,,1930,EA052,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p80, +Ca6,,,EA052,NA,,,, +Ca7,Gondar district,1950,EA052,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA052,NA,,,, +Ca9,,,EA052,NA,,,, +Cb1,,,EA052,NA,,,, +Cb10,,,EA052,NA,,,, +Cb11,,,EA052,NA,,,, +Cb12,,,EA052,NA,,,, +Cb13,,,EA052,NA,,,, +Cb14,,,EA052,NA,,,, +Cb15,,,EA052,NA,,,, +Cb16,,,EA052,NA,,,, +Cb17,Jebel Marra,1880,EA052,5,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,,EA052,NA,,,, +Cb19,,,EA052,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA052,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA052,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA052,9,,pfeffer1936,EthnographicAtlas_1967_p84, +Cb22,,,EA052,NA,,,, +Cb23,,1930,EA052,1,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,Wodaabe of Niger,1950,EA052,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p84, +Cb25,,,EA052,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA052,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA052,NA,,,, +Cb28,,,EA052,NA,,,, +Cb29,,,EA052,NA,,,, +Cb3,Bamba division,1940,EA052,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,1920,EA052,9,,reid1930,EthnographicAtlas_1967_p80, +Cb5,,1910,EA052,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p80, +Cb6,,1920,EA052,3,,woodnd,EthnographicAtlas_1967_p80, +Cb7,,,EA052,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA052,9,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p80, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA052,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,1950,EA052,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA052,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA052,NA,,,, +Cc12,,1944,EA052,9,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA052,NA,,,, +Cc14,,1880,EA052,6,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA052,NA,,,, +Cc16,,1930,EA052,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA052,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA052,NA,,,, +Cc19,,,EA052,NA,,,, +Cc2,Nomads of Tibesti,1950,EA052,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA052,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA052,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA052,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA052,9,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA052,NA,,,, +Cc7,,,EA052,NA,,,, +Cc8,,,EA052,NA,,,, +Cc9,Ahaggaren tribe,1920,EA052,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA052,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA052,NA,,,, +Cd11,,1500,EA052,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p84, +Cd12,,,EA052,NA,,,, +Cd13,,,EA052,NA,,,, +Cd14,,,EA052,NA,,,, +Cd15,,,EA052,NA,,,, +Cd16,,,EA052,NA,,,, +Cd17,,,EA052,NA,,,, +Cd18,,,EA052,NA,,,, +Cd19,,,EA052,NA,,,, +Cd2,Town and environs of Silwa,1950,EA052,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA052,NA,,,, +Cd21,,,EA052,NA,,,, +Cd3,Entirety: Moroccan,1920,EA052,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA052,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,,,EA052,NA,,,, +Cd6,,,EA052,NA,,,, +Cd7,,,EA052,NA,,,, +Cd8,,,EA052,NA,,,, +Cd9,,,EA052,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA052,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA052,NA,,,, +Ce3,,,EA052,NA,,,, +Ce4,Labourd,1930,EA052,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA052,3,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA052,1,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA052,1,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA052,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA052,1,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA052,NA,,,, +Cf3,,1930,EA052,1,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA052,1,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA052,1,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA052,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA052,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,,,EA052,NA,,,, +Cg4,Konkama District,1950,EA052,4,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA052,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA052,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA052,NA,,,, +Ch11,Viriatino Village,1955,EA052,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA052,NA,,,, +Ch3,with special reference to the Hana district of central Moravia,1940,EA052,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA052,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA052,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA052,1,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA052,1,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,,EA052,NA,,,, +Ch9,,1930,EA052,1,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA052,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA052,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA052,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA052,8,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA052,1,,grigolia1939,EthnographicAtlas_1967_p84, +Ci3,,,EA052,NA,,,, +Ci4,,1920,EA052,9,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA052,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA052,NA,,,, +Ci7,,,EA052,NA,,,, +Ci8,,,EA052,NA,,,, +Ci9,,,EA052,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA052,9,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA052,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA052,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA052,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA052,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA052,9,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA052,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA052,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA052,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA052,NA,,,, +Ea1,,,EA052,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA052,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA052,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,,EA052,NA,,,, +Ea13,Mohla Village,1950,EA052,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA052,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA052,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA052,9,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA052,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA052,9,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA052,9,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA052,9,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,,EA052,NA,,,, +Eb1,Great Horde,1910,EA052,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA052,1,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA052,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA052,NA,,,, +Eb5,,,EA052,NA,,,, +Eb6,,,EA052,NA,,,, +Eb7,,1930,EA052,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA052,NA,,,, +Ec1,Sakhalin Island,1920,EA052,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA052,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA052,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA052,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA052,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA052,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA052,2,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,Upper Kolyma River,1850,EA052,1,,jochelson191926,EthnographicAtlas_1967_p88, +Ec7,Saru Basin in Hokkaido,1900,EA052,3,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,1900,EA052,1,,shimkin1939,EthnographicAtlas_1967_p88, +Ec9,,1920,EA052,3,,lattimore1933,EthnographicAtlas_1967_p88, +Ed1,Kanghwa Island,1950,EA052,2,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,,,EA052,NA,,,, +Ed13,,,EA052,NA,,,, +Ed14,,,EA052,NA,,,, +Ed15a,,,EA052,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA052,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA052,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA052,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA052,6,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA052,1,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA052,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA052,1,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA052,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA052,1,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA052,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA052,4,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA052,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA052,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA052,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA052,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA052,9,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA052,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA052,4,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA052,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA052,NA,,,, +Ef11,Village and environs of Senapur,1945,EA052,9,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA052,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA052,NA,,,, +Ef4,,,EA052,NA,,,, +Ef5,,1900,EA052,4,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA052,2,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA052,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA052,1,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA052,6,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA052,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA052,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA052,NA,,,, +Eg12,,,EA052,NA,,,, +Eg13,Bastar State,1941,EA052,1,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA052,2,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,,,EA052,NA,,,, +Eg3,Hill Maria,1938,EA052,1,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA052,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA052,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,with special reference to Northern Kerala,1799,EA052,1,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA052,2,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA052,9,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,1930,EA052,4,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA052,3,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA052,NA,,,, +Eh2,,1900,EA052,5,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA052,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA052,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA052,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA052,NA,,,, +Eh7,,1900,EA052,5,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA052,2,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,1930,EA052,2,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA052,3,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA052,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA052,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA052,NA,,,, +Ei13,,1910,EA052,2,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA052,1,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA052,NA,,,, +Ei16,,1910,EA052,1,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA052,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA052,9,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,1940,EA052,2,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA052,1,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA052,NA,,,, +Ei3,Nondwin Village,1950,EA052,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA052,1,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA052,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA052,9,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA052,4,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA052,4,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA052,2,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA052,1,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA052,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA052,NA,,,, +Ej12,,1960,EA052,4,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA052,2,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA052,3,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA052,2,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA052,4,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA052,4,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA052,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA052,2,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA052,2,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,of the Mergui Archipelago,1920,EA052,2,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA052,4,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA052,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA052,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA052,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA052,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA052,1,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA052,2,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA052,2,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA052,2,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA052,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA052,2,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA052,NA,,,, +Ia18,,,EA052,NA,,,, +Ia2,,1950,EA052,4,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA052,5,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,with special reference to the Eastern Subanun,1950,EA052,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p92, +Ia5,,1950,EA052,2,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA052,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA052,2,,fox1954,EthnographicAtlas_1967_p92, +Ia8,,,EA052,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA052,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA052,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA052,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA052,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,,,EA052,NA,,,, +Ib5,with special reference to the village of Sensuron,1920,EA052,3,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,1920,EA052,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA052,2,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,,,EA052,NA,,,, +Ib9,,,EA052,NA,,,, +Ic1,Borongloe,1940,EA052,1,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA052,3,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,,,EA052,NA,,,, +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA052,4,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA052,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA052,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,,,EA052,NA,,,, +Ic4,,,EA052,NA,,,, +Ic5,,,EA052,NA,,,, +Ic6,,1930,EA052,1,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,,,EA052,NA,,,, +Ic8,,,EA052,NA,,,, +Ic9,,,EA052,NA,,,, +Id1,Alice Springs and environs,1900,EA052,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA052,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA052,3,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA052,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA052,3,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA052,2,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA052,3,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA052,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA052,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA052,3,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA052,2,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA052,6,,roth1890,EthnographicAtlas_1967_p96, +Id9,,,EA052,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA052,6,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA052,2,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA052,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA052,6,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA052,2,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA052,2,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,,,EA052,NA,,,, +Ie16,,1940,EA052,3,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA052,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA052,5,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA052,6,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA052,9,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA052,2,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA052,3,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA052,4,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA052,2,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,,EA052,NA,,,, +Ie25,,1920,EA052,1,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,,EA052,NA,,,, +Ie27,,1910,EA052,1,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,1940,EA052,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA052,2,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA052,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA052,3,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,,EA052,NA,,,, +Ie32,,1964,EA052,3,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA052,NA,,,, +Ie34,,,EA052,NA,,,, +Ie35,,1930,EA052,2,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA052,NA,,,, +Ie37,,,EA052,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA052,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA052,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA052,2,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA052,3,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA052,1,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA052,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA052,5,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA052,2,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA052,2,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA052,NA,,,, +If11,,1860,EA052,3,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA052,3,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA052,3,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA052,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA052,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA052,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA052,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA052,3,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA052,2,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA052,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA052,2,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA052,2,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA052,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA052,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA052,1,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA052,3,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA052,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA052,1,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,,,EA052,NA,,,, +Ig13,,1900,EA052,2,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,1900,EA052,3,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA052,NA,,,, +Ig16,,,EA052,NA,,,, +Ig17,,,EA052,NA,,,, +Ig18,,,EA052,NA,,,, +Ig19,,,EA052,NA,,,, +Ig2,Kiriwina Island,1910,EA052,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA052,3,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA052,2,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA052,2,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA052,2,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA052,2,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA052,2,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA052,3,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA052,NA,,,, +Ig9,Peri Village,1920,EA052,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA052,2,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,,,EA052,NA,,,, +Ih11,,,EA052,NA,,,, +Ih12,,,EA052,NA,,,, +Ih13,,,EA052,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA052,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA052,2,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA052,NA,,,, +Ih4,Lau Island,1920,EA052,3,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA052,NA,,,, +Ih6,,1890,EA052,3,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA052,2,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA052,5,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA052,2,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA052,3,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA052,NA,,,, +Ii12,Pangai,1920,EA052,2,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA052,3,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA052,2,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA052,3,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA052,3,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA052,3,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA052,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA052,3,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA052,2,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA052,5,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA052,3,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA052,2,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA052,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA052,2,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA052,2,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA052,3,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA052,2,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA052,2,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA052,2,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA052,2,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA052,2,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA052,1,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA052,2,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA052,2,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA052,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA052,1,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA052,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA052,2,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA052,1,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA052,2,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA052,2,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA052,3,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA052,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA052,2,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA052,2,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA052,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA052,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA052,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA052,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA052,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA052,1,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,,EA052,NA,,,, +Na3,Coronation Gulf,1920,EA052,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA052,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA052,4,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA052,4,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA052,2,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA052,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA052,2,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA052,5,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA052,4,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA052,2,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA052,2,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA052,4,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA052,2,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA052,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,,,EA052,NA,,,, +Na43,,1920,EA052,2,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA052,NA,,,, +Na45,,1900,EA052,4,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,,,EA052,NA,,,, +Na6,,1930,EA052,2,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA052,2,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA052,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA052,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA052,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA052,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA052,2,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA052,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA052,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA052,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA052,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA052,2,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA052,2,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA052,1,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA052,1,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA052,2,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA052,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,,EA052,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA052,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA052,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA052,1,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA052,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA052,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA052,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA052,2,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,,EA052,NA,,,, +Nb3,,1890,EA052,2,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,,EA052,NA,,,, +Nb31,,1870,EA052,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA052,2,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA052,1,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA052,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA052,2,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA052,2,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA052,2,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA052,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA052,2,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA052,2,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA052,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA052,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA052,2,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA052,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA052,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA052,2,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA052,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA052,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA052,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA052,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA052,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA052,2,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA052,2,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA052,2,Essene reports that women engage in fishing,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA052,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,,,EA052,NA,,,, +Nc2,,1850,EA052,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA052,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,,EA052,NA,,,, +Nc22,,,EA052,NA,,,, +Nc23,,,EA052,NA,,,, +Nc24,,,EA052,NA,,,, +Nc25,,1860,EA052,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,,EA052,NA,,,, +Nc27,,,EA052,NA,,,, +Nc28,,,EA052,NA,,,, +Nc29,,,EA052,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA052,2,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,,EA052,NA,,,, +Nc31,with special reference to the Desert Cahuilla,1870,EA052,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,,EA052,NA,,,, +Nc33,,,EA052,NA,,,, +Nc34,,,EA052,NA,,,, +Nc4,,1860,EA052,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,,,EA052,NA,,,, +Nc6,with special reference to the Southern Diegueno,1850,EA052,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA052,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA052,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA052,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA052,2,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA052,2,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA052,2,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA052,2,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA052,2,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA052,2,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA052,1,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA052,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA052,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA052,1,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA052,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA052,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA052,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA052,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA052,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA052,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA052,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA052,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA052,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA052,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA052,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA052,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA052,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA052,1,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA052,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA052,9,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA052,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA052,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA052,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA052,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA052,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA052,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA052,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA052,2,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,,EA052,NA,,,, +Nd41,,,EA052,NA,,,, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA052,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA052,1,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA052,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA052,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA052,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA052,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,,,EA052,NA,,,, +Nd49,,,EA052,NA,,,, +Nd5,,,EA052,NA,,,, +Nd50,,,EA052,NA,,,, +Nd51,,,EA052,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA052,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA052,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA052,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA052,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA052,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,,EA052,NA,,,, +Nd58,,1860,EA052,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,,EA052,NA,,,, +Nd6,,1850,EA052,4,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,,EA052,NA,,,, +Nd61,,,EA052,NA,,,, +Nd62,,1860,EA052,2,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA052,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA052,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA052,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA052,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA052,9,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA052,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA052,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA052,2,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA052,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA052,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA052,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA052,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA052,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA052,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,,,EA052,NA,,,, +Ne16,,1800,EA052,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA052,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA052,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA052,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA052,9,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA052,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA052,NA,,,, +Ne3,Comanche Tribe,1870,EA052,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA052,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA052,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA052,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA052,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA052,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA052,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,,EA052,NA,,,, +Nf11,,1870,EA052,1,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA052,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,,,EA052,NA,,,, +Nf14,,,EA052,NA,,,, +Nf15,,,EA052,NA,,,, +Nf2,,1850,EA052,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA052,4,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,,EA052,NA,,,, +Nf5,,1860,EA052,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,,,EA052,NA,,,, +Nf7,,,EA052,NA,,,, +Nf8,,,EA052,NA,,,, +Nf9,,1870,EA052,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA052,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA052,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA052,4,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,,EA052,NA,,,, +Ng13,,,EA052,NA,,,, +Ng14,,,EA052,NA,,,, +Ng15,,,EA052,NA,,,, +Ng2,,,EA052,NA,,,, +Ng3,Upper division in Alabama,1750,EA052,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA052,NA,,,, +Ng5,,1750,EA052,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA052,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA052,1,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,,EA052,NA,,,, +Ng9,,,EA052,NA,,,, +Nh1,Central band,1880,EA052,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,1920,EA052,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p116, +Nh11,,,EA052,NA,,,, +Nh12,,1920,EA052,9,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA052,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA052,NA,,,, +Nh15,,,EA052,NA,,,, +Nh16,,,EA052,NA,,,, +Nh17,,1870,EA052,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA052,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,,EA052,NA,,,, +Nh2,,1950,EA052,9,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,,EA052,NA,,,, +Nh21,,,EA052,NA,,,, +Nh22,,,EA052,NA,,,, +Nh23,,1870,EA052,1,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA052,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA052,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA052,NA,,,, +Nh27,,,EA052,NA,,,, +Nh3,,1930,EA052,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA052,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA052,1,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA052,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA052,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA052,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,1920,EA052,9,,parsons1939; trager1943,EthnographicAtlas_1967_p116, +Ni1,,1930,EA052,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA052,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA052,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,,EA052,NA,,,, +Ni5,,,EA052,NA,,,, +Ni6,,,EA052,NA,,,, +Ni7,,1870,EA052,2,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA052,NA,,,, +Ni9,,,EA052,NA,,,, +Nj1,Ojitlan,1940,EA052,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA052,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA052,NA,,,, +Nj12,,,EA052,NA,,,, +Nj13,,,EA052,NA,,,, +Nj14,,,EA052,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA052,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA052,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA052,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA052,NA,,,, +Nj6,,,EA052,NA,,,, +Nj7,with special reference to Ayutla,1930,EA052,1,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA052,NA,,,, +Nj9,,1960,EA052,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA052,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA052,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA052,NA,,,, +Sa12,,1948,EA052,1,,stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA052,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA052,NA,,,, +Sa15,,,EA052,NA,,,, +Sa16,,,EA052,NA,,,, +Sa17,,,EA052,NA,,,, +Sa2,,,EA052,NA,,,, +Sa3,,1930,EA052,2,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA052,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA052,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA052,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA052,3,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA052,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA052,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA052,2,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA052,4,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA052,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA052,2,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA052,NA,,,, +Sb6,Goajiro Tribe,1940,EA052,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA052,2,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA052,1,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA052,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA052,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,,EA052,NA,,,, +Sc11,,1930,EA052,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA052,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA052,2,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA052,1,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,,EA052,NA,,,, +Sc16,with special reference to the Makitare,1920,EA052,2,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA052,1,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA052,2,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA052,1,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA052,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA052,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA052,2,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA052,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA052,2,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA052,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA052,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA052,2,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA052,2,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA052,2,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA052,3,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA052,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA052,1,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA052,2,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,,EA052,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA052,3,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA052,1,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA052,NA,,,, +Se11,,1960,EA052,1,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA052,NA,,,, +Se2,,1940,EA052,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA052,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA052,2,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA052,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA052,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA052,NA,,,, +Se8,Upper Inuya River,1950,EA052,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA052,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA052,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA052,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA052,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA052,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA052,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,,EA052,NA,,,, +Sf7,,1900,EA052,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA052,NA,,,, +Sf9,,,EA052,NA,,,, +Sg1,Eastern and central,1870,EA052,3,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA052,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA052,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,,,EA052,NA,,,, +Sg5,with special reference to the southern bands,1900,EA052,3,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA052,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA052,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA052,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA052,2,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA052,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,,EA052,NA,,,, +Sh7,,1900,EA052,3,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA052,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA052,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA052,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA052,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA052,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA052,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA052,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA052,1,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA052,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,,,EA052,NA,,,, +Si8,,1940,EA052,4,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA052,NA,,,, +Sj1,,,EA052,NA,,,, +Sj10,Taquapiri,1950,EA052,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA052,2,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA052,2,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA052,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA052,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA052,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,,,EA052,NA,,,, +Sj7,,1920,EA052,2,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA052,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA052,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA052,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA052,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA052,8,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA052,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA052,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA052,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA052,4,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA052,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA052,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA052,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA052,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA052,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA052,4,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA052,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA052,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA052,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA052,4,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA052,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA052,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA052,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA052,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA052,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA052,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA052,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA052,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA052,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA052,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA053,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA053,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA053,3,Women milk and children do most of the herding,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA053,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA053,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,1920,EA053,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p64, +Aa7,,1910,EA053,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA053,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA053,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA053,4,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA053,2,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA053,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA053,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA053,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA053,2,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA053,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA053,1,,earthy1933,EthnographicAtlas_1967_p64, +Ab17,,,EA053,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA053,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA053,2,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA053,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA053,NA,,,, +Ab21a,,,EA053,NA,,,, +Ab21b,,,EA053,NA,,,, +Ab22,,,EA053,NA,,,, +Ab3,Ruling Luyana,1890,EA053,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA053,1,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA053,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA053,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA053,1,,langandtastevin1937,EthnographicAtlas_1967_p64, +Ab8,Basuto,1860,EA053,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA053,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA053,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA053,2,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,,EA053,NA,,,, +Ac12,,,EA053,NA,,,, +Ac13,,,EA053,NA,,,, +Ac14,,,EA053,NA,,,, +Ac15,,,EA053,NA,,,, +Ac16,,,EA053,NA,,,, +Ac17,,,EA053,NA,,,, +Ac18,,1910,EA053,2,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA053,NA,,,, +Ac2,,,EA053,NA,,,, +Ac20,,,EA053,NA,,,, +Ac21,,,EA053,NA,,,, +Ac22,,1930,EA053,1,,mertens1935,EthnographicAtlas_1967_p64, +Ac23,,,EA053,NA,,,, +Ac24,,,EA053,NA,,,, +Ac25,,,EA053,NA,,,, +Ac26,,,EA053,NA,,,, +Ac27,,,EA053,NA,,,, +Ac28,,,EA053,NA,,,, +Ac29,,,EA053,NA,,,, +Ac3,,,EA053,NA,,,, +Ac30,,1940,EA053,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,,EA053,NA,,,, +Ac32,,,EA053,NA,,,, +Ac33,,1940,EA053,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,,EA053,NA,,,, +Ac35,,,EA053,NA,,,, +Ac36,,,EA053,NA,,,, +Ac37,,,EA053,NA,,,, +Ac38,,,EA053,NA,,,, +Ac39,,,EA053,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA053,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA053,NA,,,, +Ac41,,,EA053,NA,,,, +Ac42,,,EA053,NA,,,, +Ac43,,,EA053,NA,,,, +Ac5,,1920,EA053,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,,EA053,NA,,,, +Ac7,,,EA053,NA,,,, +Ac8,,,EA053,NA,,,, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA053,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA053,2,,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA053,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA053,1,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA053,NA,,,, +Ad13,,1930,EA053,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA053,NA,,,, +Ad15,,1900,EA053,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p68, +Ad16,,1920,EA053,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA053,1,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA053,NA,,,, +Ad19,,1910,EA053,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA053,2,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA053,2,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,1930,EA053,1,,maurice193538,EthnographicAtlas_1967_p68, +Ad22,,1950,EA053,2,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA053,NA,,,, +Ad24,,1910,EA053,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA053,NA,,,, +Ad26,,1910,EA053,2,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,,EA053,NA,,,, +Ad28,,,EA053,NA,,,, +Ad29,,1930,EA053,2,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA053,3,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA053,2,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,1910,EA053,1,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA053,2,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p68, +Ad33,,1900,EA053,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,1910,EA053,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA053,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA053,NA,,,, +Ad37,,,EA053,NA,,,, +Ad38,,,EA053,NA,,,, +Ad39,,1950,EA053,3,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA053,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA053,NA,,,, +Ad41,,1930,EA053,2,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,1900,EA053,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p68, +Ad43,,,EA053,NA,,,, +Ad44,,1920,EA053,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,1920,EA053,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,1950,EA053,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA053,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA053,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA053,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA053,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA053,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,,EA053,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA053,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA053,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA053,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,1900,EA053,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA053,1,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA053,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,,EA053,NA,,,, +Ae12,,,EA053,NA,,,, +Ae13,,,EA053,NA,,,, +Ae14,,1950,EA053,1,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,1940,EA053,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p68, +Ae16,,,EA053,NA,,,, +Ae17,,,EA053,NA,,,, +Ae18,,1900,EA053,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA053,NA,,,, +Ae2,,1950,EA053,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA053,NA,,,, +Ae21,,,EA053,NA,,,, +Ae22,,,EA053,NA,,,, +Ae23,,,EA053,NA,,,, +Ae24,,,EA053,NA,,,, +Ae25,,,EA053,NA,,,, +Ae26,,,EA053,NA,,,, +Ae27,,,EA053,NA,,,, +Ae28,,,EA053,NA,,,, +Ae29,,,EA053,NA,,,, +Ae3,,1910,EA053,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA053,NA,,,, +Ae31,,,EA053,NA,,,, +Ae32,,,EA053,NA,,,, +Ae33,,,EA053,NA,,,, +Ae34,,,EA053,NA,,,, +Ae35,,,EA053,NA,,,, +Ae36,,,EA053,NA,,,, +Ae37,,,EA053,NA,,,, +Ae38,,,EA053,NA,,,, +Ae39,,1920,EA053,5,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA053,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA053,NA,,,, +Ae41,,,EA053,NA,,,, +Ae42,,,EA053,NA,,,, +Ae43,,,EA053,NA,,,, +Ae44,,,EA053,NA,,,, +Ae45,,,EA053,NA,,,, +Ae46,,,EA053,NA,,,, +Ae47,,,EA053,NA,,,, +Ae48,,,EA053,NA,,,, +Ae49,,,EA053,NA,,,, +Ae5,,,EA053,NA,,,, +Ae50,,1920,EA053,3,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA053,3,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,,EA053,NA,,,, +Ae53,,,EA053,NA,,,, +Ae54,,,EA053,NA,,,, +Ae55,,,EA053,NA,,,, +Ae56,,,EA053,NA,,,, +Ae57,,,EA053,NA,,,, +Ae58,,,EA053,NA,,,, +Ae59,,,EA053,NA,,,, +Ae6,,,EA053,NA,,,, +Ae7,,,EA053,NA,,,, +Ae8,,1910,EA053,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,,EA053,NA,,,, +Af1,City and environs of Abomey,1890,EA053,4,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA053,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,,EA053,NA,,,, +Af12,,,EA053,NA,,,, +Af13,,,EA053,NA,,,, +Af14,,,EA053,NA,,,, +Af15,,,EA053,NA,,,, +Af16,,,EA053,NA,,,, +Af17,,,EA053,NA,,,, +Af18,,,EA053,NA,,,, +Af19,,1950,EA053,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p72, +Af2,,1950,EA053,2,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA053,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA053,NA,,,, +Af22,,,EA053,NA,,,, +Af23,,,EA053,NA,,,, +Af24,,,EA053,NA,,,, +Af25,,,EA053,NA,,,, +Af26,,,EA053,NA,,,, +Af27,,,EA053,NA,,,, +Af28,,,EA053,NA,,,, +Af29,,,EA053,NA,,,, +Af3,,,EA053,NA,,,, +Af30,,,EA053,NA,,,, +Af31,,,EA053,NA,,,, +Af32,Abeouta Province and Benin,1920,EA053,6,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,,,EA053,NA,,,, +Af34,,,EA053,NA,,,, +Af35,,,EA053,NA,,,, +Af36,,,EA053,NA,,,, +Af37,,,EA053,NA,,,, +Af38,,,EA053,NA,,,, +Af39,,,EA053,NA,,,, +Af4,,1930,EA053,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA053,NA,,,, +Af41,,,EA053,NA,,,, +Af42,,,EA053,NA,,,, +Af43,,,EA053,NA,,,, +Af44,,,EA053,NA,,,, +Af45,,,EA053,NA,,,, +Af46,,,EA053,NA,,,, +Af47,,,EA053,NA,,,, +Af48,,,EA053,NA,,,, +Af49,,,EA053,NA,,,, +Af5,,,EA053,NA,,,, +Af50,,,EA053,NA,,,, +Af51,,,EA053,NA,,,, +Af52,,1920,EA053,1,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA053,NA,,,, +Af54,,,EA053,NA,,,, +Af55,,,EA053,NA,,,, +Af56,,,EA053,NA,,,, +Af57,,,EA053,NA,,,, +Af58,,,EA053,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA053,6,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,,EA053,NA,,,, +Af8,,1930,EA053,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,,EA053,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA053,3,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA053,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA053,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA053,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,,EA053,NA,,,, +Ag14,,,EA053,NA,,,, +Ag15,,,EA053,NA,,,, +Ag16,,1930,EA053,6,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p72, +Ag17,,,EA053,NA,,,, +Ag18,,,EA053,NA,,,, +Ag19,with special reference to the Felup,1930,EA053,2,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p72, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA053,1,"Boys herd all animals except cattle, which are herded and milked exclusively by Fulani",hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA053,NA,,,, +Ag21,,1910,EA053,1,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,with special reference to those of Sine,1920,EA053,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA053,NA,,,, +Ag24,,,EA053,NA,,,, +Ag25,,1900,EA053,NA,Cattle are herded and milked exclusively by Fulani,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p72, +Ag26,,1930,EA053,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p72, +Ag27,,,EA053,NA,,,, +Ag28,,,EA053,NA,,,, +Ag29,,,EA053,NA,,,, +Ag3,,1930,EA053,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,,EA053,NA,,,, +Ag31,,,EA053,NA,,,, +Ag32,,,EA053,NA,,,, +Ag33,,,EA053,NA,,,, +Ag34,,,EA053,NA,,,, +Ag35,,,EA053,NA,,,, +Ag36,,,EA053,NA,,,, +Ag37,,,EA053,NA,,,, +Ag38,,,EA053,NA,,,, +Ag39,,,EA053,NA,,,, +Ag4,Tallensi Tribe,1930,EA053,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA053,NA,,,, +Ag41,,,EA053,NA,,,, +Ag42,,,EA053,NA,,,, +Ag43,,,EA053,NA,,,, +Ag44,,,EA053,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA053,1,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA053,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA053,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,,EA053,NA,,,, +Ag49,,,EA053,NA,,,, +Ag5,,1930,EA053,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,,EA053,NA,,,, +Ag51,,,EA053,NA,,,, +Ag52,,,EA053,NA,,,, +Ag53,,,EA053,NA,,,, +Ag54,,1910,EA053,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA053,3,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,1930,EA053,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p72, +Ag8,with special reference to the Coniagui,1910,EA053,4,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA053,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,Zaria Province,1930,EA053,4,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA053,NA,,,, +Ah11,,1950,EA053,4,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA053,NA,,,, +Ah13,,,EA053,NA,,,, +Ah14,,,EA053,NA,,,, +Ah15,,,EA053,NA,,,, +Ah16,,,EA053,NA,,,, +Ah17,,,EA053,NA,,,, +Ah18,,,EA053,NA,,,, +Ah19,,1930,EA053,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p76, +Ah2,,1920,EA053,4,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,1920,EA053,4,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA053,NA,,,, +Ah22,,,EA053,NA,,,, +Ah23,,,EA053,NA,,,, +Ah24,,,EA053,NA,,,, +Ah25,,,EA053,NA,,,, +Ah26,,,EA053,NA,,,, +Ah27,,,EA053,NA,,,, +Ah28,,,EA053,NA,,,, +Ah29,,,EA053,NA,,,, +Ah3,,,EA053,NA,,,, +Ah30,,1920,EA053,1,,meek1931b,EthnographicAtlas_1967_p76, +Ah31,,,EA053,NA,,,, +Ah32,,,EA053,NA,,,, +Ah33,,,EA053,NA,,,, +Ah34,,,EA053,NA,,,, +Ah35,,,EA053,NA,,,, +Ah36,,,EA053,NA,,,, +Ah37,,,EA053,NA,,,, +Ah38,,,EA053,NA,,,, +Ah39,,1950,EA053,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA053,NA,,,, +Ah5,,,EA053,NA,,,, +Ah6,,,EA053,NA,,,, +Ah7,,,EA053,NA,,,, +Ah8,,1910,EA053,4,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA053,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,,EA053,NA,,,, +Ai10,Nuba Hills,1940,EA053,2,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,,EA053,NA,,,, +Ai12,,1950,EA053,4,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p76, +Ai13,,,EA053,NA,,,, +Ai14,,,EA053,NA,,,, +Ai15,,,EA053,NA,,,, +Ai16,,,EA053,NA,,,, +Ai17,,1930,EA053,4,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,,EA053,NA,,,, +Ai19,,,EA053,NA,,,, +Ai2,,,EA053,NA,,,, +Ai20,,,EA053,NA,,,, +Ai21,,,EA053,NA,,,, +Ai22,,,EA053,NA,,,, +Ai23,,,EA053,NA,,,, +Ai24,,,EA053,NA,,,, +Ai25,,,EA053,NA,,,, +Ai26,,,EA053,NA,,,, +Ai27,,,EA053,NA,,,, +Ai28,,,EA053,NA,,,, +Ai29,,1920,EA053,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA053,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,,EA053,NA,,,, +Ai31,,1920,EA053,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA053,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p76, +Ai33,,1940,EA053,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p76, +Ai34,,1880,EA053,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,,EA053,NA,,,, +Ai36,,1920,EA053,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA053,NA,,,, +Ai38,,1930,EA053,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA053,2,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA053,NA,,,, +Ai40,,1940,EA053,2,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA053,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA053,2,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA053,2,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,,EA053,NA,,,, +Ai45,,,EA053,NA,,,, +Ai46,,,EA053,NA,,,, +Ai47,,,EA053,NA,,,, +Ai5,,,EA053,NA,,,, +Ai6,Shilluk Kingdom,1900,EA053,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA053,6,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA053,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA053,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,1950,EA053,1,,lawrance1957,EthnographicAtlas_1967_p76, +Aj10,,,EA053,NA,,,, +Aj11,,1900,EA053,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p80, +Aj12,,1920,EA053,2,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj13,,1930,EA053,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA053,NA,,,, +Aj15,,1900,EA053,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA053,2,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA053,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,1950,EA053,3,,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,1920,EA053,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p80, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA053,3,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,1940,EA053,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p80, +Aj21,,1930,EA053,2,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,1930,EA053,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA053,3,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA053,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA053,2,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA053,3,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA053,NA,,,, +Aj28,,1940,EA053,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA053,NA,,,, +Aj3,,1930,EA053,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA053,NA,,,, +Aj31,,,EA053,NA,,,, +Aj4,,1920,EA053,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA053,3,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA053,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA053,3,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA053,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA053,3,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA053,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA053,2,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA053,3,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA053,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA053,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA053,3,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA053,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA053,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA053,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA053,NA,,,, +Ca19,,1950,EA053,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA053,3,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA053,NA,,,, +Ca21,,1950,EA053,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA053,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA053,1,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,,EA053,NA,,,, +Ca25,,1950,EA053,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA053,NA,,,, +Ca27,,,EA053,NA,,,, +Ca28,,1950,EA053,1,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,,EA053,NA,,,, +Ca3,,1950,EA053,2,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p80, +Ca30,Kafa Kingdom,1890,EA053,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,1860,EA053,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA053,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA053,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA053,NA,,,, +Ca35,,,EA053,NA,,,, +Ca36,,,EA053,NA,,,, +Ca37,,,EA053,NA,,,, +Ca38,,,EA053,NA,,,, +Ca39,,1930,EA053,3,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,1950,EA053,1,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA053,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,,EA053,NA,,,, +Ca42,,1950,EA053,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA053,NA,,,, +Ca5,,1930,EA053,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p80, +Ca6,,1880,EA053,3,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p80, +Ca7,Gondar district,1950,EA053,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA053,NA,,,, +Ca9,,,EA053,NA,,,, +Cb1,,,EA053,NA,,,, +Cb10,,,EA053,NA,,,, +Cb11,,,EA053,NA,,,, +Cb12,,,EA053,NA,,,, +Cb13,,,EA053,NA,,,, +Cb14,,,EA053,NA,,,, +Cb15,,,EA053,NA,,,, +Cb16,,,EA053,NA,,,, +Cb17,Jebel Marra,1880,EA053,3,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,,EA053,NA,,,, +Cb19,,1870,EA053,3,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p80, +Cb2,Upper and lower Salum in Gambia,1950,EA053,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA053,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA053,3,,pfeffer1936,EthnographicAtlas_1967_p84, +Cb22,,,EA053,NA,,,, +Cb23,,1930,EA053,1,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,Wodaabe of Niger,1950,EA053,2,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p84, +Cb25,,,EA053,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA053,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA053,NA,,,, +Cb28,,,EA053,NA,,,, +Cb29,,,EA053,NA,,,, +Cb3,,,EA053,NA,,,, +Cb4,,1920,EA053,2,,reid1930,EthnographicAtlas_1967_p80, +Cb5,,,EA053,NA,,,, +Cb6,,,EA053,NA,,,, +Cb7,,,EA053,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA053,2,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p80, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA053,3,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,1950,EA053,2,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA053,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA053,NA,,,, +Cc12,,1944,EA053,1,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA053,NA,,,, +Cc14,,1880,EA053,3,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA053,NA,,,, +Cc16,,1930,EA053,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA053,2,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA053,NA,,,, +Cc19,,,EA053,NA,,,, +Cc2,Nomads of Tibesti,1950,EA053,3,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA053,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA053,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA053,2,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA053,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA053,NA,,,, +Cc7,,,EA053,NA,,,, +Cc8,,,EA053,NA,,,, +Cc9,Ahaggaren tribe,1920,EA053,3,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA053,4,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA053,NA,,,, +Cd11,,,EA053,NA,,,, +Cd12,,1870,EA053,3,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA053,NA,,,, +Cd14,,,EA053,NA,,,, +Cd15,,,EA053,NA,,,, +Cd16,,,EA053,NA,,,, +Cd17,,,EA053,NA,,,, +Cd18,,,EA053,NA,,,, +Cd19,,,EA053,NA,,,, +Cd2,Town and environs of Silwa,1950,EA053,2,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA053,NA,,,, +Cd21,,,EA053,NA,,,, +Cd3,Entirety: Moroccan,1920,EA053,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,,EA053,NA,,,, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA053,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,with special reference to the New Empire,-1400,EA053,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA053,NA,,,, +Cd8,,,EA053,NA,,,, +Cd9,,,EA053,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA053,2,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA053,NA,,,, +Ce3,,,EA053,NA,,,, +Ce4,Labourd,1930,EA053,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA053,3,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA053,1,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA053,1,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA053,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA053,1,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA053,NA,,,, +Cf3,,1930,EA053,3,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA053,2,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA053,3,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA053,2,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA053,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA053,2,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA053,4,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA053,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA053,5,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA053,NA,,,, +Ch11,Viriatino Village,1955,EA053,2,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA053,3,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA053,6,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA053,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA053,4,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA053,4,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA053,5,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,,EA053,NA,,,, +Ch9,,1930,EA053,5,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA053,2,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA053,6,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA053,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA053,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA053,2,,grigolia1939,EthnographicAtlas_1967_p84, +Ci3,,,EA053,NA,,,, +Ci4,,1920,EA053,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA053,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA053,NA,,,, +Ci7,,,EA053,NA,,,, +Ci8,,,EA053,NA,,,, +Ci9,,,EA053,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA053,2,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA053,5,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA053,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA053,2,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA053,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA053,1,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA053,NA,,,, +Cj7,,,EA053,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA053,2,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,1950,EA053,3,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA053,1,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,with special reference to the more nomadic groups,1950,EA053,3,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA053,2,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA053,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA053,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA053,2,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA053,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA053,3,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA053,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA053,2,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA053,2,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA053,2,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA053,3,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA053,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA053,3,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA053,3,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA053,NA,,,, +Eb5,,,EA053,NA,,,, +Eb6,,,EA053,NA,,,, +Eb7,,1930,EA053,3,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA053,NA,,,, +Ec1,Sakhalin Island,1920,EA053,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA053,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA053,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA053,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA053,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA053,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA053,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,Upper Kolyma River,1850,EA053,9,,jochelson191926,EthnographicAtlas_1967_p88, +Ec7,Saru Basin in Hokkaido,1900,EA053,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,1900,EA053,1,,shimkin1939,EthnographicAtlas_1967_p88, +Ec9,,,EA053,NA,,,, +Ed1,Kanghwa Island,1950,EA053,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA053,1,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA053,NA,,,, +Ed14,,,EA053,NA,,,, +Ed15a,,,EA053,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA053,8,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA053,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA053,4,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA053,2,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA053,6,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA053,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA053,5,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA053,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,,EA053,NA,,,, +Ed9,,1930,EA053,3,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA053,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA053,1,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA053,4,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA053,3,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA053,2,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA053,2,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA053,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA053,3,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA053,2,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA053,NA,,,, +Ef11,Village and environs of Senapur,1945,EA053,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA053,2,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA053,NA,,,, +Ef4,,,EA053,NA,,,, +Ef5,,1900,EA053,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA053,2,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA053,5,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA053,1,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA053,3,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA053,2,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA053,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA053,NA,,,, +Eg12,,,EA053,NA,,,, +Eg13,Bastar State,1941,EA053,3,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,,,EA053,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA053,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA053,2,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA053,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,,EA053,NA,,,, +Eg6,with special reference to Northern Kerala,1799,EA053,2,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA053,1,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA053,2,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,1930,EA053,9,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA053,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA053,NA,,,, +Eh2,,1900,EA053,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA053,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA053,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA053,6,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA053,NA,,,, +Eh7,,1900,EA053,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA053,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,1930,EA053,1,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA053,3,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA053,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,,EA053,NA,,,, +Ei12,,,EA053,NA,,,, +Ei13,,,EA053,NA,,,, +Ei14,,,EA053,NA,,,, +Ei15,,,EA053,NA,,,, +Ei16,,,EA053,NA,,,, +Ei17,,,EA053,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA053,2,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,,EA053,NA,,,, +Ei2,,1920,EA053,1,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA053,NA,,,, +Ei3,Nondwin Village,1950,EA053,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA053,3,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA053,5,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA053,3,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,,EA053,NA,,,, +Ei8,with special reference to those of the Jaintia Hills,1900,EA053,2,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA053,2,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA053,3,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA053,4,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA053,NA,,,, +Ej12,,1960,EA053,2,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,,EA053,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA053,9,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA053,3,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA053,4,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA053,4,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA053,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,,,EA053,NA,,,, +Ej5,,1950,EA053,6,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,of the Mergui Archipelago,1920,EA053,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA053,4,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA053,2,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA053,4,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA053,6,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA053,6,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA053,2,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,,EA053,NA,,,, +Ia13,,,EA053,NA,,,, +Ia14,,1930,EA053,6,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA053,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA053,4,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA053,NA,,,, +Ia18,,,EA053,NA,,,, +Ia2,,1950,EA053,2,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,,,EA053,NA,,,, +Ia4,,,EA053,NA,,,, +Ia5,,1950,EA053,2,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA053,6,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA053,NA,,,, +Ia8,,,EA053,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA053,2,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA053,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA053,2,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA053,3,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA053,2,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA053,3,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,,EA053,NA,,,, +Ib7,,,EA053,NA,,,, +Ib8,with special reference to the Ridan group,1900,EA053,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA053,NA,,,, +Ic1,Borongloe,1940,EA053,2,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA053,NA,,,, +Ic11,,,EA053,NA,,,, +Ic12,,,EA053,NA,,,, +Ic13,,,EA053,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA053,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,with special reference to the Mountain Belu,1950,EA053,2,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA053,NA,,,, +Ic5,,,EA053,NA,,,, +Ic6,,1930,EA053,5,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA053,3,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,,EA053,NA,,,, +Ic9,,,EA053,NA,,,, +Id1,Alice Springs and environs,1900,EA053,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA053,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA053,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA053,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA053,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA053,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA053,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA053,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA053,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA053,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA053,9,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA053,9,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA053,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA053,6,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA053,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA053,5,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA053,6,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA053,9,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,,EA053,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA053,6,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA053,6,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA053,6,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,,,EA053,NA,,,, +Ie19,with special reference to the coastal inhabitants,1910,EA053,6,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA053,6,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,,EA053,NA,,,, +Ie21,,,EA053,NA,,,, +Ie22,,,EA053,NA,,,, +Ie23,,1950,EA053,6,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,,EA053,NA,,,, +Ie25,,1920,EA053,6,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,,EA053,NA,,,, +Ie27,,,EA053,NA,,,, +Ie28,,,EA053,NA,,,, +Ie29,,,EA053,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA053,6,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA053,9,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,,EA053,NA,,,, +Ie32,,1964,EA053,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA053,NA,,,, +Ie34,,,EA053,NA,,,, +Ie35,,1930,EA053,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA053,NA,,,, +Ie37,,,EA053,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA053,4,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA053,6,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,,,EA053,NA,,,, +Ie5,,1930,EA053,6,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA053,1,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA053,5,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA053,6,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA053,4,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,,,EA053,NA,,,, +If10,,,EA053,NA,,,, +If11,,,EA053,NA,,,, +If12,,,EA053,NA,,,, +If13,,1900,EA053,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA053,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,,EA053,NA,,,, +If16,,1960,EA053,6,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA053,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA053,6,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,,,EA053,NA,,,, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA053,6,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,,EA053,NA,,,, +If6,Island,1910,EA053,6,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA053,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,,,EA053,NA,,,, +If9,,,EA053,NA,,,, +Ig1,Northeastern group,1940,EA053,5,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA053,5,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,,EA053,NA,,,, +Ig12,,,EA053,NA,,,, +Ig13,,1900,EA053,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,,EA053,NA,,,, +Ig15,,,EA053,NA,,,, +Ig16,,,EA053,NA,,,, +Ig17,,,EA053,NA,,,, +Ig18,,,EA053,NA,,,, +Ig19,,,EA053,NA,,,, +Ig2,Kiriwina Island,1910,EA053,6,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA053,4,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA053,NA,,,, +Ig3,,1930,EA053,6,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA053,6,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,,EA053,NA,,,, +Ig6,,1900,EA053,6,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA053,6,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA053,NA,,,, +Ig9,Peri Village,1920,EA053,5,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA053,2,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,,,EA053,NA,,,, +Ih11,,,EA053,NA,,,, +Ih12,,,EA053,NA,,,, +Ih13,,,EA053,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA053,8,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA053,2,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA053,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p100, +Ih4,Lau Island,1920,EA053,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA053,NA,,,, +Ih6,,,EA053,NA,,,, +Ih7,,,EA053,NA,,,, +Ih8,with special reference to the village of Nakaroka,1940,EA053,4,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA053,4,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA053,4,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA053,NA,,,, +Ii12,Pangai,1920,EA053,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA053,6,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA053,4,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA053,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA053,4,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,,,EA053,NA,,,, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA053,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA053,9,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,,EA053,NA,,,, +Ii8,,1840,EA053,6,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA053,9,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA053,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA053,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA053,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA053,6,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA053,9,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA053,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,,EA053,NA,,,, +Ij7,,1900,EA053,9,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,,EA053,NA,,,, +Ij9,,1860,EA053,9,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA053,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA053,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA053,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA053,6,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA053,9,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA053,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA053,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA053,9,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA053,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA053,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA053,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA053,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA053,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA053,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA053,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA053,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA053,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA053,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA053,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA053,9,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA053,9,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA053,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA053,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA053,9,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA053,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA053,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA053,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA053,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA053,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA053,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA053,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA053,9,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA053,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA053,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA053,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA053,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA053,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA053,NA,,,, +Na45,,1900,EA053,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA053,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA053,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA053,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA053,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA053,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA053,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA053,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA053,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA053,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA053,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA053,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA053,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA053,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA053,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA053,9,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA053,9,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA053,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA053,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA053,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA053,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA053,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA053,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA053,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA053,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA053,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA053,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA053,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA053,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA053,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA053,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA053,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA053,9,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA053,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA053,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA053,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA053,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA053,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA053,9,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA053,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA053,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA053,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA053,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA053,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA053,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA053,9,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA053,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA053,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA053,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA053,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA053,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA053,9,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA053,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA053,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA053,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA053,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA053,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA053,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA053,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA053,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA053,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA053,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA053,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA053,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA053,9,,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA053,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA053,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA053,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA053,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA053,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA053,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA053,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA053,9,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA053,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA053,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA053,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA053,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA053,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA053,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA053,9,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA053,9,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA053,9,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA053,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA053,2,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,,EA053,NA,,,, +Nd15,,1880,EA053,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,,EA053,NA,,,, +Nd17,,1870,EA053,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA053,9,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,,EA053,NA,,,, +Nd2,,1860,EA053,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA053,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA053,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA053,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA053,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA053,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA053,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA053,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA053,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA053,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA053,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA053,9,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA053,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA053,9,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA053,9,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA053,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA053,9,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA053,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA053,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA053,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA053,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA053,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA053,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA053,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA053,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA053,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA053,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA053,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA053,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA053,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA053,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,,EA053,NA,,,, +Nd58,,,EA053,NA,,,, +Nd59,,1860,EA053,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA053,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA053,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA053,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA053,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,,,EA053,NA,,,, +Nd64,with special reference to the Kucundika,1860,EA053,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA053,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA053,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA053,9,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA053,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA053,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA053,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA053,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,,EA053,NA,,,, +Ne11,,1870,EA053,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA053,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA053,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA053,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA053,2,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA053,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,,EA053,NA,,,, +Ne18,,1850,EA053,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA053,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA053,1,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,,EA053,NA,,,, +Ne21,,,EA053,NA,,,, +Ne3,Comanche Tribe,1870,EA053,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA053,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA053,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA053,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA053,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA053,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA053,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA053,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA053,1,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA053,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA053,9,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA053,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA053,NA,,,, +Nf2,,1850,EA053,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA053,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA053,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA053,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA053,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA053,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA053,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA053,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA053,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA053,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA053,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA053,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA053,NA,,,, +Ng14,,,EA053,NA,,,, +Ng15,,,EA053,NA,,,, +Ng2,,,EA053,NA,,,, +Ng3,Upper division in Alabama,1750,EA053,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA053,NA,,,, +Ng5,,1750,EA053,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA053,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA053,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA053,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA053,NA,,,, +Nh1,Central band,1880,EA053,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA053,NA,,,, +Nh11,,,EA053,NA,,,, +Nh12,,,EA053,NA,,,, +Nh13,,,EA053,NA,,,, +Nh14,,,EA053,NA,,,, +Nh15,,1870,EA053,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,,,EA053,NA,,,, +Nh17,,1870,EA053,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA053,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA053,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA053,1,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA053,9,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA053,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA053,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA053,6,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,,EA053,NA,,,, +Nh25,,,EA053,NA,,,, +Nh26,,,EA053,NA,,,, +Nh27,,,EA053,NA,,,, +Nh3,,1930,EA053,4,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,,,EA053,NA,,,, +Nh5,,1850,EA053,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA053,2,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,,EA053,NA,,,, +Nh8,,,EA053,NA,,,, +Nh9,,,EA053,NA,,,, +Ni1,,1930,EA053,3,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA053,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA053,3,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA053,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA053,9,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA053,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA053,9,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA053,NA,,,, +Ni9,,,EA053,NA,,,, +Nj1,Ojitlan,1940,EA053,6,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA053,4,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA053,NA,,,, +Nj12,,,EA053,NA,,,, +Nj13,,,EA053,NA,,,, +Nj14,,,EA053,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA053,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,,,EA053,NA,,,, +Nj4,,1940,EA053,3,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA053,NA,,,, +Nj6,,,EA053,NA,,,, +Nj7,with special reference to Ayutla,1930,EA053,1,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA053,9,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA053,4,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA053,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,,EA053,NA,,,, +Sa11,,,EA053,NA,,,, +Sa12,,,EA053,NA,,,, +Sa13,Town of Chichicastenango,1930,EA053,4,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA053,NA,,,, +Sa15,,,EA053,NA,,,, +Sa16,,,EA053,NA,,,, +Sa17,,,EA053,NA,,,, +Sa2,,,EA053,NA,,,, +Sa3,,1930,EA053,3,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA053,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,,EA053,NA,,,, +Sa6,,1520,EA053,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA053,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA053,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p120, +Sa9,,,EA053,NA,,,, +Sb1,Dominica Island,1650,EA053,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,,EA053,NA,,,, +Sb3,,,EA053,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA053,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA053,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p120, +Sb6,Goajiro Tribe,1940,EA053,3,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA053,9,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA053,9,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA053,5,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA053,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA053,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA053,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA053,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA053,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA053,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA053,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA053,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA053,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA053,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA053,1,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA053,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA053,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA053,9,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA053,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA053,9,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA053,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA053,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA053,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA053,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA053,9,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA053,9,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA053,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA053,9,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA053,9,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA053,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA053,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA053,9,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,1670,EA053,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p120, +Se11,,1960,EA053,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA053,NA,,,, +Se2,,1940,EA053,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA053,6,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA053,9,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA053,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA053,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA053,NA,,,, +Se8,Upper Inuya River,1950,EA053,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA053,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA053,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA053,5,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,,,EA053,NA,,,, +Sf4,,1950,EA053,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA053,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA053,9,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA053,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA053,NA,,,, +Sf9,,,EA053,NA,,,, +Sg1,Eastern and central,1870,EA053,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA053,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA053,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA053,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA053,9,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA053,6,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,,EA053,NA,,,, +Sh3,Those in contact with mission,1800,EA053,4,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA053,1,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA053,5,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA053,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA053,4,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,,,EA053,NA,,,, +Sh9,Those in contact with mission,1890,EA053,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA053,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA053,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA053,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA053,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA053,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA053,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA053,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,,,EA053,NA,,,, +Si8,,1940,EA053,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA053,NA,,,, +Sj1,,1950,EA053,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA053,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA053,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA053,9,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA053,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA053,6,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA053,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,,,EA053,NA,,,, +Sj7,,1920,EA053,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA053,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA053,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA053,3,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA053,3,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA053,5,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA053,5,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA053,3,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA053,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA053,2,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA053,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA053,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA053,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA053,8,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA053,2,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA053,4,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA053,2,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA053,5,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA053,5,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA053,2,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA053,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA053,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA053,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA053,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA053,5,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA053,5,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA053,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA053,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA053,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA053,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA054,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA054,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA054,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA054,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA054,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,1920,EA054,5,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p64, +Aa7,,1910,EA054,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA054,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA054,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA054,9,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA054,5,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA054,5,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA054,5,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA054,5,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA054,3,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA054,5,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA054,5,,earthy1933,EthnographicAtlas_1967_p64, +Ab17,,,EA054,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA054,4,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA054,6,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA054,5,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA054,NA,,,, +Ab21a,,,EA054,NA,,,, +Ab21b,,,EA054,NA,,,, +Ab22,,,EA054,NA,,,, +Ab3,Ruling Luyana,1890,EA054,5,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA054,5,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA054,5,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA054,5,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA054,4,,langandtastevin1937,EthnographicAtlas_1967_p64, +Ab8,Basuto,1860,EA054,5,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA054,5,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA054,5,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA054,5,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA054,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,1920,EA054,5,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p64, +Ac13,,1950,EA054,6,,tew1950; velsen1964,EthnographicAtlas_1967_p64, +Ac14,,1900,EA054,5,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p64, +Ac15,,,EA054,NA,,,, +Ac16,,,EA054,NA,,,, +Ac17,Feshi territory lineage center,1910,EA054,5,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA054,5,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA054,NA,,,, +Ac2,,1920,EA054,5,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p64, +Ac20,,,EA054,NA,,,, +Ac21,,1910,EA054,5,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p64, +Ac22,,1930,EA054,5,,mertens1935,EthnographicAtlas_1967_p64, +Ac23,with special reference to the western Lele,1950,EA054,5,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA054,NA,,,, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA054,5,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p64, +Ac26,,,EA054,NA,,,, +Ac27,,,EA054,NA,,,, +Ac28,,1930,EA054,5,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA054,NA,,,, +Ac3,Zambia branch,1900,EA054,5,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA054,5,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA054,5,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA054,NA,,,, +Ac33,,1940,EA054,5,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,1940,EA054,5,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA054,NA,,,, +Ac36,,1920,EA054,5,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p64, +Ac37,,,EA054,NA,,,, +Ac38,,1910,EA054,5,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA054,5,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA054,5,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA054,NA,,,, +Ac41,,,EA054,NA,,,, +Ac42,,,EA054,NA,,,, +Ac43,,,EA054,NA,,,, +Ac5,,1920,EA054,4,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA054,5,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA054,5,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA054,5,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA054,5,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA054,4,,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA054,5,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA054,5,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA054,NA,,,, +Ad13,,1930,EA054,5,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,Morogoro District,1930,EA054,4,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p68, +Ad15,,1900,EA054,4,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p68, +Ad16,,1920,EA054,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA054,4,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA054,NA,,,, +Ad19,,1910,EA054,5,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA054,5,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA054,5,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,1930,EA054,5,,maurice193538,EthnographicAtlas_1967_p68, +Ad22,,1950,EA054,5,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA054,NA,,,, +Ad24,,1910,EA054,5,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA054,NA,,,, +Ad26,,1910,EA054,5,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,1880,EA054,5,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA054,5,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA054,4,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA054,3,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA054,5,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,1910,EA054,5,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA054,5,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p68, +Ad33,,1900,EA054,5,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,1910,EA054,5,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA054,5,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA054,NA,,,, +Ad37,,,EA054,NA,,,, +Ad38,,,EA054,NA,,,, +Ad39,,1950,EA054,3,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA054,5,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA054,NA,,,, +Ad41,,1930,EA054,5,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,1900,EA054,5,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p68, +Ad43,,,EA054,NA,,,, +Ad44,,1920,EA054,2,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,1920,EA054,5,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,1950,EA054,5,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA054,5,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA054,5,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA054,5,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA054,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA054,4,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA054,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA054,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA054,5,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA054,5,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,1900,EA054,5,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA054,5,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA054,5,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA054,5,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA054,5,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA054,NA,,,, +Ae14,,1950,EA054,5,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,1940,EA054,3,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p68, +Ae16,,,EA054,NA,,,, +Ae17,,1900,EA054,5,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA054,5,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA054,NA,,,, +Ae2,,1950,EA054,5,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA054,NA,,,, +Ae21,,,EA054,NA,,,, +Ae22,with special reference to the Bankutu,1900,EA054,5,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p68, +Ae23,,,EA054,NA,,,, +Ae24,,,EA054,NA,,,, +Ae25,,,EA054,NA,,,, +Ae26,,,EA054,NA,,,, +Ae27,,,EA054,NA,,,, +Ae28,,1900,EA054,5,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,1900,EA054,5,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA054,5,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA054,NA,,,, +Ae31,,1920,EA054,5,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA054,NA,,,, +Ae33,,1920,EA054,5,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA054,NA,,,, +Ae35,,,EA054,NA,,,, +Ae36,,,EA054,NA,,,, +Ae37,,,EA054,NA,,,, +Ae38,,1920,EA054,5,,wijnant192526,EthnographicAtlas_1967_p68, +Ae39,,1920,EA054,5,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA054,5,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA054,NA,,,, +Ae41,,1940,EA054,5,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA054,NA,,,, +Ae43,,,EA054,NA,,,, +Ae44,,,EA054,NA,,,, +Ae45,,,EA054,NA,,,, +Ae46,,,EA054,NA,,,, +Ae47,,,EA054,NA,,,, +Ae48,,1930,EA054,5,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae49,,,EA054,NA,,,, +Ae5,,1910,EA054,5,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA054,5,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA054,5,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,1950,EA054,5,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,,EA054,NA,,,, +Ae54,,,EA054,NA,,,, +Ae55,,1950,EA054,5,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,1950,EA054,5,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae57,,,EA054,NA,,,, +Ae58,,,EA054,NA,,,, +Ae59,,,EA054,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA054,5,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,1910,EA054,5,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA054,4,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA054,5,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA054,5,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA054,5,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA054,5,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA054,NA,,,, +Af13,,1920,EA054,5,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,1930,EA054,5,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA054,5,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA054,NA,,,, +Af17,,,EA054,NA,,,, +Af18,,,EA054,NA,,,, +Af19,,1950,EA054,3,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p72, +Af2,,1950,EA054,4,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA054,5,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA054,NA,,,, +Af22,,1940,EA054,NA,Performed almost exclusively by slaves,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,with special reference to the village of Mgbom,1950,EA054,5,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA054,3,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA054,5,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA054,NA,,,, +Af27,,,EA054,NA,,,, +Af28,,1910,EA054,2,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA054,NA,,,, +Af3,Kumasi State,1900,EA054,3,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA054,NA,,,, +Af31,,,EA054,NA,,,, +Af32,Abeouta Province and Benin,1920,EA054,2,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA054,2,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA054,NA,,,, +Af35,,,EA054,NA,,,, +Af36,with special reference to the Glidyi,1900,EA054,4,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA054,NA,,,, +Af38,,,EA054,NA,,,, +Af39,,,EA054,NA,,,, +Af4,,1930,EA054,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA054,NA,,,, +Af41,,,EA054,NA,,,, +Af42,,1900,EA054,4,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,1930,EA054,2,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p72, +Af44,,,EA054,NA,,,, +Af45,,,EA054,NA,,,, +Af46,,,EA054,NA,,,, +Af47,,,EA054,NA,,,, +Af48,,,EA054,NA,,,, +Af49,,1940,EA054,5,,schwab1947,EthnographicAtlas_1967_p72, +Af5,,1930,EA054,3,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA054,NA,,,, +Af51,,1920,EA054,5,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA054,5,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA054,NA,,,, +Af54,,1930,EA054,5,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA054,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA054,5,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA054,3,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA054,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA054,2,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,1950,EA054,5,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,1930,EA054,2,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,1900,EA054,2,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p72, +Ag1,Segou to Bamako on Niger River,1920,EA054,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA054,3,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA054,2,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA054,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,1910,EA054,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p72, +Ag14,,,EA054,NA,,,, +Ag15,,,EA054,NA,,,, +Ag16,,1930,EA054,2,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p72, +Ag17,,,EA054,NA,,,, +Ag18,,1930,EA054,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p72, +Ag19,with special reference to the Felup,1930,EA054,5,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p72, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA054,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA054,NA,,,, +Ag21,,1910,EA054,3,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,with special reference to those of Sine,1920,EA054,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA054,NA,,,, +Ag24,,,EA054,NA,,,, +Ag25,,1900,EA054,2,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p72, +Ag26,,1930,EA054,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p72, +Ag27,,1910,EA054,2,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p72, +Ag28,,,EA054,NA,,,, +Ag29,,,EA054,NA,,,, +Ag3,,1930,EA054,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA054,2,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,1910,EA054,2,,cheron1913; holas1957,EthnographicAtlas_1967_p72, +Ag32,,1900,EA054,2,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA054,NA,,,, +Ag34,,,EA054,NA,,,, +Ag35,,,EA054,NA,,,, +Ag36,,,EA054,NA,,,, +Ag37,,,EA054,NA,,,, +Ag38,,,EA054,NA,,,, +Ag39,,1910,EA054,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA054,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA054,NA,,,, +Ag41,,1920,EA054,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p72, +Ag42,,,EA054,NA,,,, +Ag43,,,EA054,NA,,,, +Ag44,,,EA054,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA054,4,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA054,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA054,4,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA054,2,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,1930,EA054,5,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA054,2,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,1910,EA054,2,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA054,NA,,,, +Ag52,,,EA054,NA,,,, +Ag53,with special reference to those of Garango,1960,EA054,3,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA054,3,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA054,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,1930,EA054,2,,malzy1946; ortoli1939,EthnographicAtlas_1967_p72, +Ag8,with special reference to the Coniagui,1910,EA054,3,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA054,2,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,Zaria Province,1930,EA054,2,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA054,NA,,,, +Ah11,,1950,EA054,3,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA054,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA054,4,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,,EA054,NA,,,, +Ah15,,1920,EA054,2,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA054,NA,,,, +Ah17,,,EA054,NA,,,, +Ah18,,,EA054,NA,,,, +Ah19,,1930,EA054,2,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p76, +Ah2,,1920,EA054,2,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,1920,EA054,2,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA054,NA,,,, +Ah22,,,EA054,NA,,,, +Ah23,,,EA054,NA,,,, +Ah24,,,EA054,NA,,,, +Ah25,,,EA054,NA,,,, +Ah26,,,EA054,NA,,,, +Ah27,,,EA054,NA,,,, +Ah28,,,EA054,NA,,,, +Ah29,,,EA054,NA,,,, +Ah3,Tar of Benue Province,1920,EA054,3,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,1920,EA054,2,,meek1931b,EthnographicAtlas_1967_p76, +Ah31,,1910,EA054,5,,haughton1912; meek1931b,EthnographicAtlas_1967_p76, +Ah32,,,EA054,NA,,,, +Ah33,,1920,EA054,4,,meek1931b; temple1922,EthnographicAtlas_1967_p76, +Ah34,,,EA054,NA,,,, +Ah35,,,EA054,NA,,,, +Ah36,,1920,EA054,4,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA054,NA,,,, +Ah38,,1930,EA054,4,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA054,4,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,1920,EA054,2,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p76, +Ah5,,,EA054,NA,,,, +Ah6,,,EA054,NA,,,, +Ah7,,1940,EA054,3,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA054,5,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA054,3,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA054,5,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA054,4,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA054,5,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,1950,EA054,4,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p76, +Ai13,,,EA054,NA,,,, +Ai14,,,EA054,NA,,,, +Ai15,,1900,EA054,5,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA054,NA,,,, +Ai17,,1930,EA054,4,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA054,4,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA054,NA,,,, +Ai2,,,EA054,NA,,,, +Ai20,,,EA054,NA,,,, +Ai21,,,EA054,NA,,,, +Ai22,,1890,EA054,4,,delafosse1897,EthnographicAtlas_1967_p76, +Ai23,,1920,EA054,5,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA054,NA,,,, +Ai25,,1950,EA054,5,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA054,5,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA054,NA,,,, +Ai28,,1910,EA054,5,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA054,4,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA054,5,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA054,5,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,1920,EA054,4,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA054,4,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p76, +Ai33,,1940,EA054,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p76, +Ai34,,1880,EA054,3,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA054,5,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA054,5,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA054,NA,,,, +Ai38,,1930,EA054,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA054,3,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA054,NA,,,, +Ai40,,1940,EA054,4,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA054,4,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA054,3,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA054,5,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,1920,EA054,4,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p76, +Ai45,,,EA054,NA,,,, +Ai46,,1930,EA054,4,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p76, +Ai47,,,EA054,NA,,,, +Ai5,,1920,EA054,5,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA054,4,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA054,5,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA054,4,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA054,4,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,1950,EA054,5,,lawrance1957,EthnographicAtlas_1967_p76, +Aj10,,,EA054,NA,,,, +Aj11,,1900,EA054,4,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p80, +Aj12,,1920,EA054,3,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj13,,1930,EA054,5,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA054,NA,,,, +Aj15,,1900,EA054,3,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA054,3,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA054,3,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,1950,EA054,3,,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,1920,EA054,5,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p80, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA054,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA054,NA,,,, +Aj21,,1930,EA054,5,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,1930,EA054,4,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA054,5,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA054,5,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA054,5,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA054,5,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA054,NA,,,, +Aj28,,1940,EA054,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA054,NA,,,, +Aj3,,1930,EA054,4,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA054,NA,,,, +Aj31,,,EA054,NA,,,, +Aj4,,1920,EA054,5,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA054,6,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA054,4,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA054,5,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA054,3,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA054,3,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA054,4,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,,EA054,NA,,,, +Ca11,,1890,EA054,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA054,1,Formerly mainly by slaves,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA054,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA054,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA054,4,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA054,4,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA054,4,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA054,NA,,,, +Ca19,,1950,EA054,3,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA054,NA,Performed by slaves,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA054,NA,,,, +Ca21,,,EA054,NA,,,, +Ca22,,1950,EA054,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA054,4,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,,EA054,NA,,,, +Ca25,,1950,EA054,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA054,NA,,,, +Ca27,,,EA054,NA,,,, +Ca28,,1950,EA054,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA054,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,1950,EA054,2,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p80, +Ca30,,,EA054,NA,,,, +Ca31,,1860,EA054,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA054,4,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA054,4,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA054,NA,,,, +Ca35,,,EA054,NA,,,, +Ca36,,,EA054,NA,,,, +Ca37,,,EA054,NA,,,, +Ca38,,,EA054,NA,,,, +Ca39,,1930,EA054,1,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,1950,EA054,1,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA054,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA054,5,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA054,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA054,NA,,,, +Ca5,,1930,EA054,6,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p80, +Ca6,,1880,EA054,NA,Performed only by serfs,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p80, +Ca7,Gondar district,1950,EA054,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,1940,EA054,2,,leslau1950; shack1963,EthnographicAtlas_1967_p80, +Ca9,,,EA054,NA,,,, +Cb1,,,EA054,NA,,,, +Cb10,,,EA054,NA,,,, +Cb11,,,EA054,NA,,,, +Cb12,,,EA054,NA,,,, +Cb13,,,EA054,NA,,,, +Cb14,,,EA054,NA,,,, +Cb15,,,EA054,NA,,,, +Cb16,,,EA054,NA,,,, +Cb17,Jebel Marra,1880,EA054,4,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,1930,EA054,2,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p80, +Cb19,,1870,EA054,4,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p80, +Cb2,Upper and lower Salum in Gambia,1950,EA054,2,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA054,2,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA054,9,,pfeffer1936,EthnographicAtlas_1967_p84, +Cb22,,1920,EA054,NA,Agriculture is largely performed by Negro serfs,coutouly1923; delmond1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb23,,1930,EA054,2,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,,,EA054,NA,,,, +Cb25,,,EA054,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA054,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA054,NA,,,, +Cb28,,,EA054,NA,,,, +Cb29,,,EA054,NA,,,, +Cb3,Bamba division,1940,EA054,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,1920,EA054,2,,reid1930,EthnographicAtlas_1967_p80, +Cb5,,,EA054,NA,,,, +Cb6,,1920,EA054,4,,woodnd,EthnographicAtlas_1967_p80, +Cb7,,1920,EA054,4,,meek1931b:288-310,EthnographicAtlas_1967_p80, +Cb8,,,EA054,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA054,2,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,1950,EA054,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA054,3,Performed by serfs and slaves,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA054,NA,,,, +Cc12,,1944,EA054,NA,Agriculture is done only by slaves and serfs,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA054,NA,,,, +Cc14,,1880,EA054,NA,Agriculture is performed mainly by slaves and serfs,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA054,NA,,,, +Cc16,,1930,EA054,NA,Performed exclusively by serfs and slaves,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA054,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA054,NA,,,, +Cc19,,,EA054,NA,,,, +Cc2,Nomads of Tibesti,1950,EA054,5,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA054,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA054,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA054,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA054,NA,Performed exclusively by sedentary serfs,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA054,NA,,,, +Cc7,Timbuctoo,1950,EA054,NA,Performed by slaves or serfs,miner1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA054,NA,,,, +Cc9,Ahaggaren tribe,1920,EA054,NA,Agriculture is performed exclusively by slaves and serfs,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA054,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA054,NA,,,, +Cd11,,1500,EA054,3,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p84, +Cd12,,1870,EA054,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA054,NA,,,, +Cd14,,,EA054,NA,,,, +Cd15,,,EA054,NA,,,, +Cd16,,,EA054,NA,,,, +Cd17,,,EA054,NA,,,, +Cd18,,,EA054,NA,,,, +Cd19,,,EA054,NA,,,, +Cd2,Town and environs of Silwa,1950,EA054,2,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA054,NA,,,, +Cd21,,,EA054,NA,,,, +Cd3,Entirety: Moroccan,1920,EA054,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA054,4,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA054,2,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,with special reference to the New Empire,-1400,EA054,2,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA054,NA,,,, +Cd8,,,EA054,NA,,,, +Cd9,,,EA054,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA054,4,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA054,NA,,,, +Ce3,,,EA054,NA,,,, +Ce4,Labourd,1930,EA054,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA054,3,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA054,2,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA054,3,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA054,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA054,1,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA054,NA,,,, +Cf3,,1930,EA054,1,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA054,2,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA054,2,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA054,2,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA054,2,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA054,2,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA054,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA054,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA054,4,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA054,NA,,,, +Ch11,Viriatino Village,1955,EA054,2,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA054,2,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA054,4,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,1900,EA054,3,,heffner1955; wichmann1913,EthnographicAtlas_1967_p84, +Ch5,with special reference to the village of Dragelevtsy,1940,EA054,4,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA054,2,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA054,2,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,1940,EA054,2,,hanzeli1955,EthnographicAtlas_1967_p84, +Ch9,,1930,EA054,2,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA054,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA054,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA054,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA054,2,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA054,5,,grigolia1939,EthnographicAtlas_1967_p84, +Ci3,,,EA054,NA,,,, +Ci4,,1920,EA054,2,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA054,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA054,5,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p84, +Ci7,,1900,EA054,2,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p84, +Ci8,,,EA054,NA,,,, +Ci9,,,EA054,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA054,2,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA054,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA054,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA054,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA054,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA054,9,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA054,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA054,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA054,2,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA054,NA,,,, +Ea1,,1950,EA054,1,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,with special reference to the more nomadic groups,1950,EA054,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA054,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA054,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA054,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA054,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA054,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA054,3,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA054,5,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,,,EA054,NA,,,, +Ea7,,1950,EA054,1,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA054,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA054,2,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA054,4,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA054,4,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA054,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA054,NA,,,, +Eb5,,,EA054,NA,,,, +Eb6,,,EA054,NA,,,, +Eb7,,1930,EA054,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA054,NA,,,, +Ec1,Sakhalin Island,1920,EA054,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA054,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA054,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA054,6,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA054,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA054,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA054,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,Upper Kolyma River,1850,EA054,9,,jochelson191926,EthnographicAtlas_1967_p88, +Ec7,Saru Basin in Hokkaido,1900,EA054,5,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,1900,EA054,9,,shimkin1939,EthnographicAtlas_1967_p88, +Ec9,,1920,EA054,6,,lattimore1933,EthnographicAtlas_1967_p88, +Ed1,Kanghwa Island,1950,EA054,4,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA054,4,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA054,NA,,,, +Ed14,,,EA054,NA,,,, +Ed15a,,,EA054,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA054,2,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA054,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA054,4,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA054,2,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA054,2,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA054,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA054,1,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA054,4,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA054,4,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA054,3,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA054,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA054,4,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA054,4,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA054,4,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA054,5,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA054,3,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA054,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA054,3,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA054,4,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA054,NA,,,, +Ef11,Village and environs of Senapur,1945,EA054,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA054,2,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA054,NA,,,, +Ef4,,,EA054,NA,,,, +Ef5,,1900,EA054,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA054,3,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA054,2,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA054,2,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA054,4,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA054,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA054,2,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA054,NA,,,, +Eg12,,,EA054,NA,,,, +Eg13,Bastar State,1941,EA054,2,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA054,3,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA054,2,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA054,3,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA054,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA054,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,with special reference to Northern Kerala,1799,EA054,2,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA054,4,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA054,2,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,1930,EA054,4,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA054,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA054,NA,,,, +Eh2,,1900,EA054,5,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA054,3,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA054,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA054,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA054,2,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p92, +Eh7,,1900,EA054,4,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA054,4,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,1930,EA054,3,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA054,3,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA054,3,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA054,4,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA054,NA,,,, +Ei13,,1910,EA054,4,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA054,4,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA054,NA,,,, +Ei16,,1910,EA054,4,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA054,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA054,4,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,1940,EA054,4,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA054,2,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA054,NA,,,, +Ei3,Nondwin Village,1950,EA054,2,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA054,4,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA054,2,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA054,4,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA054,4,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA054,5,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA054,3,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA054,4,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA054,2,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA054,2,,lafont1964,EthnographicAtlas_1967_p92, +Ej12,,1960,EA054,4,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA054,3,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA054,3,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA054,4,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA054,5,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA054,4,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA054,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA054,2,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA054,4,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,of the Mergui Archipelago,1920,EA054,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA054,5,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA054,4,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA054,2,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA054,5,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA054,5,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA054,5,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA054,4,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA054,5,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA054,3,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA054,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA054,3,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA054,NA,,,, +Ia18,,,EA054,NA,,,, +Ia2,,1950,EA054,4,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA054,5,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,with special reference to the Eastern Subanun,1950,EA054,4,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p92, +Ia5,,1950,EA054,4,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA054,5,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA054,4,,fox1954,EthnographicAtlas_1967_p92, +Ia8,,,EA054,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA054,4,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA054,4,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA054,3,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA054,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA054,4,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA054,3,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,1920,EA054,2,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA054,3,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,,,EA054,NA,,,, +Ib9,,,EA054,NA,,,, +Ic1,Borongloe,1940,EA054,2,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA054,4,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,Allang,1950,EA054,4,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA054,4,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA054,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA054,5,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,with special reference to the Mountain Belu,1950,EA054,3,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA054,NA,,,, +Ic5,Bare'e subgroup,1910,EA054,4,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA054,5,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA054,2,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,,EA054,NA,,,, +Ic9,with special reference to eastern Sumba,1930,EA054,5,,nooteboom1940,EthnographicAtlas_1967_p96, +Id1,Alice Springs and environs,1900,EA054,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA054,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA054,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA054,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA054,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA054,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA054,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA054,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA054,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA054,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA054,9,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA054,9,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA054,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA054,3,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA054,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA054,5,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA054,4,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA054,4,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA054,5,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,Kalabu; Northern Abelam,1930,EA054,3,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA054,5,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA054,5,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA054,2,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA054,5,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA054,3,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA054,4,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA054,4,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA054,4,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA054,3,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,1870,EA054,3,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA054,3,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA054,2,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,1910,EA054,6,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,1940,EA054,5,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA054,5,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA054,2,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA054,NA,,,, +Ie31,,1950,EA054,5,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA054,2,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA054,NA,,,, +Ie34,,,EA054,NA,,,, +Ie35,,1930,EA054,4,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA054,NA,,,, +Ie37,,,EA054,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA054,3,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA054,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA054,3,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA054,4,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA054,5,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA054,3,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA054,2,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA054,5,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA054,5,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA054,NA,,,, +If11,,1860,EA054,1,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA054,1,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA054,4,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA054,5,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA054,6,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA054,5,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA054,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA054,2,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA054,2,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA054,3,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA054,2,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA054,5,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA054,4,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA054,4,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA054,5,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA054,4,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA054,5,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA054,5,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,with special reference to the Varisi,1900,EA054,3,,scheffler1965,EthnographicAtlas_1967_p100, +Ig13,,1900,EA054,2,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,1900,EA054,3,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA054,NA,,,, +Ig16,,,EA054,NA,,,, +Ig17,,,EA054,NA,,,, +Ig18,,,EA054,NA,,,, +Ig19,,,EA054,NA,,,, +Ig2,Kiriwina Island,1910,EA054,3,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA054,3,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA054,3,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA054,5,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA054,5,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA054,4,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA054,4,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA054,4,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA054,NA,,,, +Ig9,Peri Village,1920,EA054,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,,EA054,NA,,,, +Ih10,Whitsands,1920,EA054,4,,humphreys1926,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA054,NA,,,, +Ih12,,,EA054,NA,,,, +Ih13,,,EA054,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA054,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA054,4,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA054,NA,,,, +Ih4,Lau Island,1920,EA054,2,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA054,5,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p100, +Ih6,,1890,EA054,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA054,6,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA054,2,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA054,5,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA054,3,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA054,NA,,,, +Ii12,Pangai,1920,EA054,2,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA054,1,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA054,2,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA054,5,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA054,6,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA054,2,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA054,5,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA054,1,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA054,6,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA054,1,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA054,4,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA054,6,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA054,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA054,2,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA054,2,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,,EA054,NA,,,, +Ij5,,1900,EA054,2,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA054,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA054,4,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA054,2,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA054,2,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA054,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA054,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA054,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA054,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA054,9,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA054,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA054,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA054,9,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA054,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA054,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA054,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA054,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA054,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA054,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA054,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA054,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA054,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA054,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA054,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA054,9,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA054,9,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA054,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA054,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA054,9,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA054,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA054,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA054,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA054,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA054,5,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA054,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA054,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA054,9,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA054,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA054,6,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA054,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA054,5,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA054,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA054,NA,,,, +Na45,,1900,EA054,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA054,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA054,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA054,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA054,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA054,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA054,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA054,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA054,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA054,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA054,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA054,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA054,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA054,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA054,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA054,9,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA054,9,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA054,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA054,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA054,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA054,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA054,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA054,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA054,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA054,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA054,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA054,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA054,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA054,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA054,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA054,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA054,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA054,9,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA054,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA054,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA054,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA054,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA054,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA054,9,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA054,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA054,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA054,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA054,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA054,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA054,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA054,9,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA054,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA054,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA054,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA054,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA054,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA054,9,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA054,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA054,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA054,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA054,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA054,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA054,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA054,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA054,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA054,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA054,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA054,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA054,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA054,9,,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA054,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA054,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA054,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA054,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA054,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA054,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA054,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA054,9,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA054,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA054,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA054,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA054,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA054,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA054,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA054,9,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA054,9,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA054,9,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA054,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA054,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA054,9,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA054,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA054,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA054,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA054,9,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA054,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA054,3,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA054,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA054,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA054,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA054,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA054,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA054,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA054,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA054,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA054,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA054,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA054,2,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA054,9,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,,EA054,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA054,9,"But for the Panamint of Death Valley 'equal participation' (EA054 code ""4""), with no specialization specified (EA065 code ""9"")",driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA054,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA054,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA054,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA054,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,,EA054,NA,,,, +Nd38,,,EA054,NA,,,, +Nd39,,,EA054,NA,,,, +Nd4,,1870,EA054,9,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA054,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA054,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA054,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA054,9,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA054,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA054,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA054,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA054,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA054,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA054,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA054,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA054,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,,EA054,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA054,2,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA054,3,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,,,EA054,NA,,,, +Nd55,,,EA054,NA,,,, +Nd56,,,EA054,NA,,,, +Nd57,,1860,EA054,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA054,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA054,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA054,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA054,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA054,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA054,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA054,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA054,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA054,2,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA054,4,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA054,4,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA054,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA054,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA054,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA054,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA054,6,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA054,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA054,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA054,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA054,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA054,6,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA054,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA054,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA054,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA054,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA054,9,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA054,6,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA054,NA,,,, +Ne3,Comanche Tribe,1870,EA054,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,,EA054,NA,,,, +Ne5,,1860,EA054,6,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA054,6,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA054,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA054,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA054,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,,EA054,NA,,,, +Nf11,,1870,EA054,5,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA054,6,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA054,6,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA054,5,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA054,NA,,,, +Nf2,,1850,EA054,5,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA054,5,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA054,6,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA054,6,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA054,6,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA054,6,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA054,5,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA054,6,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA054,6,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA054,6,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA054,4,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA054,5,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA054,NA,,,, +Ng14,,,EA054,NA,,,, +Ng15,,,EA054,NA,,,, +Ng2,,,EA054,NA,,,, +Ng3,Upper division in Alabama,1750,EA054,5,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA054,NA,,,, +Ng5,,1750,EA054,5,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA054,5,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA054,5,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA054,5,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA054,NA,,,, +Nh1,Central band,1880,EA054,4,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA054,NA,,,, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA054,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA054,2,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA054,2,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA054,NA,,,, +Nh15,,1870,EA054,5,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA054,4,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA054,5,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA054,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA054,4,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA054,1,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA054,4,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA054,4,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA054,4,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA054,5,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA054,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA054,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA054,NA,,,, +Nh27,,,EA054,NA,,,, +Nh3,,1930,EA054,2,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA054,2,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA054,2,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA054,2,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA054,2,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA054,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,1920,EA054,1,,parsons1939; trager1943,EthnographicAtlas_1967_p116, +Ni1,,1930,EA054,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA054,2,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA054,2,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA054,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA054,9,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA054,2,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA054,1,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA054,NA,,,, +Ni9,,,EA054,NA,,,, +Nj1,Ojitlan,1940,EA054,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA054,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA054,NA,,,, +Nj12,,,EA054,NA,,,, +Nj13,,,EA054,NA,,,, +Nj14,,,EA054,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA054,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA054,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA054,2,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA054,NA,,,, +Nj6,,,EA054,NA,,,, +Nj7,with special reference to Ayutla,1930,EA054,2,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA054,1,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA054,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA054,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA054,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA054,NA,,,, +Sa12,,1948,EA054,1,,stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA054,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA054,NA,,,, +Sa15,,,EA054,NA,,,, +Sa16,,,EA054,NA,,,, +Sa17,,,EA054,NA,,,, +Sa2,,,EA054,NA,,,, +Sa3,,1930,EA054,1,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA054,4,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA054,4,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA054,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA054,5,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA054,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p120, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA054,6,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA054,5,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA054,4,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA054,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA054,3,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA054,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p120, +Sb6,Goajiro Tribe,1940,EA054,6,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA054,3,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA054,5,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA054,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA054,5,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA054,2,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA054,3,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA054,5,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA054,5,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA054,4,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA054,5,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA054,5,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA054,5,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA054,5,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA054,2,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA054,3,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA054,2,"But among the agricultural Guahibo 'males alone' (EA054 code ""1""), with no specialization specified (EA065 code ""9"")",wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA054,5,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA054,5,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA054,5,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA054,5,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA054,5,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA054,3,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA054,2,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA054,4,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA054,5,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA054,3,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA054,9,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA054,5,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,,EA054,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA054,2,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA054,4,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA054,NA,,,, +Se11,,1960,EA054,5,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA054,NA,,,, +Se2,,1940,EA054,5,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA054,5,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA054,5,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA054,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA054,5,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA054,NA,,,, +Se8,Upper Inuya River,1950,EA054,3,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA054,6,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA054,2,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA054,4,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA054,5,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA054,3,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA054,4,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA054,4,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA054,6,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA054,NA,,,, +Sf9,,,EA054,NA,,,, +Sg1,Eastern and central,1870,EA054,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA054,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA054,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA054,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA054,9,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA054,5,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA054,3,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA054,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA054,5,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA054,3,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA054,6,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA054,2,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA054,3,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA054,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA054,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA054,2,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA054,3,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA054,3,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA054,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA054,2,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,,EA054,NA,,,, +Si7,,,EA054,NA,,,, +Si8,,1940,EA054,1,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA054,NA,,,, +Sj1,,1950,EA054,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA054,2,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA054,2,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA054,5,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA054,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA054,5,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA054,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,with special reference to the Guajajara subgroup,1930,EA054,2,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA054,4,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA054,5,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA054,3,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA054,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA054,2,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA054,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA054,2,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA054,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA054,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA054,2,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA054,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA054,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA054,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA054,8,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA054,3,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA054,4,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA054,2,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA054,2,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA054,5,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA054,2,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA054,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA054,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA054,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA054,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA054,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA054,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA054,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA054,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA054,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA054,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA055,10,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA055,10,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA055,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA055,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA055,10,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA055,NA,,,, +Aa7,,1910,EA055,10,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA055,10,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA055,10,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA055,3,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA055,3,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA055,3,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA055,3,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA055,3,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA055,3,Formerly though not recently,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA055,3,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA055,NA,,,, +Ab17,,,EA055,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA055,3,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA055,3,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA055,3,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA055,NA,,,, +Ab21a,,,EA055,NA,,,, +Ab21b,,,EA055,NA,,,, +Ab22,,,EA055,NA,,,, +Ab3,Ruling Luyana,1890,EA055,3,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA055,3,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA055,3,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA055,3,But no longer practiced,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA055,NA,,,, +Ab8,Basuto,1860,EA055,3,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA055,3,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA055,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA055,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA055,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,1920,EA055,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p64, +Ac13,,1950,EA055,3,,tew1950; velsen1964,EthnographicAtlas_1967_p64, +Ac14,,1900,EA055,3,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p64, +Ac15,,,EA055,NA,,,, +Ac16,,,EA055,NA,,,, +Ac17,Feshi territory lineage center,1910,EA055,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA055,3,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA055,NA,,,, +Ac2,,,EA055,NA,,,, +Ac20,,,EA055,NA,,,, +Ac21,,,EA055,NA,,,, +Ac22,,,EA055,NA,,,, +Ac23,with special reference to the western Lele,1950,EA055,3,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA055,NA,,,, +Ac25,,,EA055,NA,,,, +Ac26,,,EA055,NA,,,, +Ac27,,,EA055,NA,,,, +Ac28,,1930,EA055,3,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA055,NA,,,, +Ac3,Zambia branch,1900,EA055,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA055,3,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA055,3,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA055,NA,,,, +Ac33,,1940,EA055,10,"Formerly 'males alone' (EA044 code ""1"") with craft specialization (EA055 code ""3"")",lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,1940,EA055,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA055,NA,,,, +Ac36,,1920,EA055,3,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p64, +Ac37,,,EA055,NA,,,, +Ac38,,1910,EA055,3,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA055,3,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA055,3,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA055,NA,,,, +Ac41,,,EA055,NA,,,, +Ac42,,,EA055,NA,,,, +Ac43,,,EA055,NA,,,, +Ac5,,1920,EA055,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA055,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA055,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA055,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA055,3,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA055,10,Despised as slave occupation,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA055,3,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA055,3,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA055,NA,,,, +Ad13,,1930,EA055,3,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,Morogoro District,1930,EA055,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p68, +Ad15,,1900,EA055,3,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p68, +Ad16,,1920,EA055,3,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA055,3,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA055,NA,,,, +Ad19,,1910,EA055,3,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA055,3,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA055,3,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,,EA055,NA,,,, +Ad22,,1950,EA055,3,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA055,NA,,,, +Ad24,,1910,EA055,3,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA055,NA,,,, +Ad26,,1910,EA055,3,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,1880,EA055,3,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA055,3,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA055,3,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA055,3,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA055,3,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,1910,EA055,3,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA055,3,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p68, +Ad33,,1900,EA055,3,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,1910,EA055,3,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA055,3,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA055,NA,,,, +Ad37,,,EA055,NA,,,, +Ad38,,,EA055,NA,,,, +Ad39,,1950,EA055,3,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA055,3,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA055,NA,,,, +Ad41,,1930,EA055,3,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,1900,EA055,3,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p68, +Ad43,,,EA055,NA,,,, +Ad44,,1920,EA055,3,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,1920,EA055,3,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,1950,EA055,3,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA055,3,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA055,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA055,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA055,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA055,3,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA055,3,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA055,3,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA055,3,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA055,3,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,1900,EA055,3,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA055,3,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA055,3,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA055,3,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA055,3,Formerly,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA055,NA,,,, +Ae14,,1950,EA055,3,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,1940,EA055,3,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p68, +Ae16,,,EA055,NA,,,, +Ae17,,1900,EA055,3,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA055,3,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA055,NA,,,, +Ae2,,1950,EA055,3,Formerly,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA055,NA,,,, +Ae21,,,EA055,NA,,,, +Ae22,,,EA055,NA,,,, +Ae23,,,EA055,NA,,,, +Ae24,,,EA055,NA,,,, +Ae25,,,EA055,NA,,,, +Ae26,,,EA055,NA,,,, +Ae27,,,EA055,NA,,,, +Ae28,,,EA055,NA,,,, +Ae29,,1900,EA055,3,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA055,3,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA055,NA,,,, +Ae31,,1920,EA055,3,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA055,NA,,,, +Ae33,,1920,EA055,3,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA055,NA,,,, +Ae35,,,EA055,NA,,,, +Ae36,,,EA055,NA,,,, +Ae37,,,EA055,NA,,,, +Ae38,,,EA055,NA,,,, +Ae39,,1920,EA055,3,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA055,3,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA055,NA,,,, +Ae41,,1940,EA055,3,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA055,NA,,,, +Ae43,,,EA055,NA,,,, +Ae44,,,EA055,NA,,,, +Ae45,,,EA055,NA,,,, +Ae46,,,EA055,NA,,,, +Ae47,,,EA055,NA,,,, +Ae48,,1930,EA055,3,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae49,,,EA055,NA,,,, +Ae5,,1910,EA055,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA055,3,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA055,3,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,1950,EA055,3,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,,EA055,NA,,,, +Ae54,,,EA055,NA,,,, +Ae55,,1950,EA055,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,,EA055,NA,,,, +Ae57,,,EA055,NA,,,, +Ae58,,,EA055,NA,,,, +Ae59,,,EA055,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA055,3,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,1910,EA055,3,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA055,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA055,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA055,3,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA055,3,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA055,3,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA055,NA,,,, +Af13,,1920,EA055,3,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,1930,EA055,3,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA055,3,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA055,NA,,,, +Af17,,,EA055,NA,,,, +Af18,,,EA055,NA,,,, +Af19,,,EA055,NA,,,, +Af2,,1950,EA055,3,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,,EA055,NA,,,, +Af21,,,EA055,NA,,,, +Af22,,1940,EA055,3,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,with special reference to the village of Mgbom,1950,EA055,3,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA055,3,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA055,3,But smiths are aliens of the Ibo tribes,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA055,NA,,,, +Af27,,,EA055,NA,,,, +Af28,,1910,EA055,3,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA055,NA,,,, +Af3,Kumasi State,1900,EA055,3,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA055,NA,,,, +Af31,,,EA055,NA,,,, +Af32,Abeouta Province and Benin,1920,EA055,3,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA055,3,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA055,NA,,,, +Af35,,,EA055,NA,,,, +Af36,with special reference to the Glidyi,1900,EA055,3,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA055,NA,,,, +Af38,,,EA055,NA,,,, +Af39,,,EA055,NA,,,, +Af4,,,EA055,NA,,,, +Af40,,,EA055,NA,,,, +Af41,,,EA055,NA,,,, +Af42,,1900,EA055,3,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,,EA055,NA,,,, +Af44,,,EA055,NA,,,, +Af45,,,EA055,NA,,,, +Af46,,,EA055,NA,,,, +Af47,,,EA055,NA,,,, +Af48,,,EA055,NA,,,, +Af49,,1940,EA055,3,,schwab1947,EthnographicAtlas_1967_p72, +Af5,,1930,EA055,3,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA055,NA,,,, +Af51,,1920,EA055,3,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA055,3,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA055,NA,,,, +Af54,,1930,EA055,3,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA055,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA055,3,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA055,3,But these specialists are aliens of the Yalunka tribe,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA055,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA055,3,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,,EA055,NA,,,, +Af8,,1930,EA055,3,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,1900,EA055,3,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p72, +Ag1,Segou to Bamako on Niger River,1920,EA055,3,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA055,3,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA055,3,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA055,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,1910,EA055,3,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p72, +Ag14,,,EA055,NA,,,, +Ag15,,,EA055,NA,,,, +Ag16,,,EA055,NA,,,, +Ag17,,,EA055,NA,,,, +Ag18,,,EA055,NA,,,, +Ag19,,,EA055,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA055,3,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA055,NA,,,, +Ag21,,1910,EA055,3,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,with special reference to those of Sine,1920,EA055,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA055,NA,,,, +Ag24,,,EA055,NA,,,, +Ag25,,1900,EA055,3,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p72, +Ag26,,1930,EA055,3,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p72, +Ag27,,1910,EA055,3,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p72, +Ag28,,,EA055,NA,,,, +Ag29,,,EA055,NA,,,, +Ag3,,1930,EA055,3,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA055,3,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,1910,EA055,3,,cheron1913; holas1957,EthnographicAtlas_1967_p72, +Ag32,,1900,EA055,3,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA055,NA,,,, +Ag34,,,EA055,NA,,,, +Ag35,,,EA055,NA,,,, +Ag36,,,EA055,NA,,,, +Ag37,,,EA055,NA,,,, +Ag38,,,EA055,NA,,,, +Ag39,,1910,EA055,3,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA055,3,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA055,NA,,,, +Ag41,,1920,EA055,3,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p72, +Ag42,,,EA055,NA,,,, +Ag43,,,EA055,NA,,,, +Ag44,,,EA055,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA055,3,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA055,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA055,3,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA055,3,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,1930,EA055,3,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA055,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,1910,EA055,3,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA055,NA,,,, +Ag52,,,EA055,NA,,,, +Ag53,with special reference to those of Garango,1960,EA055,3,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA055,3,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA055,3,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,,EA055,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA055,3,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA055,3,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,Zaria Province,1930,EA055,10,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA055,NA,,,, +Ah11,,1950,EA055,3,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA055,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA055,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA055,3,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah15,,1920,EA055,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA055,NA,,,, +Ah17,,,EA055,NA,,,, +Ah18,,,EA055,NA,,,, +Ah19,,,EA055,NA,,,, +Ah2,,1920,EA055,3,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,,EA055,NA,,,, +Ah21,,,EA055,NA,,,, +Ah22,,,EA055,NA,,,, +Ah23,,,EA055,NA,,,, +Ah24,,,EA055,NA,,,, +Ah25,,,EA055,NA,,,, +Ah26,,,EA055,NA,,,, +Ah27,,,EA055,NA,,,, +Ah28,,,EA055,NA,,,, +Ah29,,,EA055,NA,,,, +Ah3,Tar of Benue Province,1920,EA055,3,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,1920,EA055,3,,meek1931b,EthnographicAtlas_1967_p76, +Ah31,,1910,EA055,3,,haughton1912; meek1931b,EthnographicAtlas_1967_p76, +Ah32,,,EA055,NA,,,, +Ah33,,1920,EA055,3,,meek1931b; temple1922,EthnographicAtlas_1967_p76, +Ah34,,,EA055,NA,,,, +Ah35,,,EA055,NA,,,, +Ah36,,,EA055,NA,,,, +Ah37,,,EA055,NA,,,, +Ah38,,1930,EA055,3,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA055,3,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,1920,EA055,3,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p76, +Ah5,,,EA055,NA,,,, +Ah6,,,EA055,NA,,,, +Ah7,,1940,EA055,3,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA055,3,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA055,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA055,3,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA055,10,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA055,3,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA055,NA,,,, +Ai13,,,EA055,NA,,,, +Ai14,,1920,EA055,3,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,1900,EA055,3,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA055,NA,,,, +Ai17,,1930,EA055,3,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA055,10,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA055,NA,,,, +Ai2,,,EA055,NA,,,, +Ai20,,,EA055,NA,,,, +Ai21,,1880,EA055,3,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p76, +Ai22,,,EA055,NA,,,, +Ai23,,1920,EA055,3,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA055,NA,,,, +Ai25,,1950,EA055,3,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA055,3,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA055,NA,,,, +Ai28,,1910,EA055,3,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA055,3,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA055,3,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA055,3,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,1920,EA055,3,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA055,3,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p76, +Ai33,,1940,EA055,3,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p76, +Ai34,,1880,EA055,3,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA055,3,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA055,3,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA055,NA,,,, +Ai38,,1930,EA055,10,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA055,10,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA055,NA,,,, +Ai40,,1940,EA055,10,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA055,10,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA055,10,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA055,10,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,,EA055,NA,,,, +Ai45,,,EA055,NA,,,, +Ai46,,,EA055,NA,,,, +Ai47,Northern division,1939,EA055,10,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,1920,EA055,3,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA055,3,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA055,3,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA055,10,Except for a few acculturated male craftsmen,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA055,3,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,,EA055,NA,,,, +Aj10,,,EA055,NA,,,, +Aj11,,1900,EA055,3,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p80, +Aj12,,1920,EA055,3,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj13,,1930,EA055,3,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA055,NA,,,, +Aj15,,1900,EA055,3,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA055,3,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA055,3,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,1950,EA055,10,Iron products obtained by trade from the Dime or Maji tribes,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,1920,EA055,3,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p80, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA055,3,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,1940,EA055,3,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p80, +Aj21,,1930,EA055,10,Ironware is obtained by trade from the Labwor,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,1930,EA055,3,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA055,10,The products are obtained by trade from the Hill Suk,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA055,3,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA055,3,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA055,3,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA055,NA,,,, +Aj28,,1940,EA055,3,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA055,NA,,,, +Aj3,,1930,EA055,10,"There are a few smiths; iron working is ""a recent innovation""",evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA055,NA,,,, +Aj31,,,EA055,NA,,,, +Aj4,,1920,EA055,3,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,,EA055,NA,,,, +Aj6,,1940,EA055,3,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA055,3,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA055,3,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA055,3,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA055,3,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA055,3,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA055,3,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA055,3,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA055,3,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA055,3,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA055,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA055,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA055,10,Products obtained by trade with neighboring tribes,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,1940,EA055,NA,Ironware obtained by trade with other tribes,cerulli1956; jensen1959; ricci1950,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Ca19,,1950,EA055,3,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA055,3,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA055,NA,,,, +Ca21,,1950,EA055,3,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA055,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA055,3,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA055,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA055,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA055,NA,,,, +Ca27,,,EA055,NA,,,, +Ca28,,1950,EA055,10,Iron wares are obtained in trade from the Dime,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA055,3,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,1950,EA055,3,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p80, +Ca30,Kafa Kingdom,1890,EA055,3,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,1860,EA055,3,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA055,10,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA055,10,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA055,NA,,,, +Ca35,,,EA055,NA,,,, +Ca36,,,EA055,NA,,,, +Ca37,,,EA055,NA,,,, +Ca38,,,EA055,NA,,,, +Ca39,,1930,EA055,3,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,1950,EA055,3,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA055,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA055,3,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA055,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA055,NA,,,, +Ca5,,,EA055,NA,,,, +Ca6,,1880,EA055,3,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p80, +Ca7,Gondar district,1950,EA055,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,1940,EA055,3,,leslau1950; shack1963,EthnographicAtlas_1967_p80, +Ca9,,,EA055,NA,,,, +Cb1,,,EA055,NA,,,, +Cb10,,,EA055,NA,,,, +Cb11,,,EA055,NA,,,, +Cb12,,,EA055,NA,,,, +Cb13,,,EA055,NA,,,, +Cb14,,,EA055,NA,,,, +Cb15,,,EA055,NA,,,, +Cb16,,,EA055,NA,,,, +Cb17,Jebel Marra,1880,EA055,3,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,1930,EA055,3,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p80, +Cb19,,1870,EA055,3,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p80, +Cb2,Upper and lower Salum in Gambia,1950,EA055,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA055,3,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA055,NA,,,, +Cb22,,,EA055,NA,,,, +Cb23,,1930,EA055,3,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,,,EA055,NA,,,, +Cb25,,,EA055,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA055,3,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA055,NA,,,, +Cb28,,,EA055,NA,,,, +Cb29,,,EA055,NA,,,, +Cb3,Bamba division,1940,EA055,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA055,NA,,,, +Cb5,,1910,EA055,3,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p80, +Cb6,,1920,EA055,3,,woodnd,EthnographicAtlas_1967_p80, +Cb7,,1920,EA055,3,,meek1931b:288-310,EthnographicAtlas_1967_p80, +Cb8,,,EA055,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA055,3,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,1950,EA055,3,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA055,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA055,NA,,,, +Cc12,,1944,EA055,3,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA055,NA,,,, +Cc14,,1880,EA055,3,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA055,NA,,,, +Cc16,,,EA055,NA,,,, +Cc17,,1930,EA055,3,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA055,NA,,,, +Cc19,,,EA055,NA,,,, +Cc2,Nomads of Tibesti,1950,EA055,3,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA055,3,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA055,10,Alien itinerant smiths only,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA055,3,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA055,3,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA055,NA,,,, +Cc7,,,EA055,NA,,,, +Cc8,,,EA055,NA,,,, +Cc9,Ahaggaren tribe,1920,EA055,3,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA055,3,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA055,NA,,,, +Cd11,,1500,EA055,10,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p84, +Cd12,,1870,EA055,3,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA055,NA,,,, +Cd14,,,EA055,NA,,,, +Cd15,,,EA055,NA,,,, +Cd16,,,EA055,NA,,,, +Cd17,,,EA055,NA,,,, +Cd18,,,EA055,NA,,,, +Cd19,,,EA055,NA,,,, +Cd2,Town and environs of Silwa,1950,EA055,3,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA055,NA,,,, +Cd21,,,EA055,NA,,,, +Cd3,Entirety: Moroccan,1920,EA055,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA055,3,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA055,3,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,with special reference to the New Empire,-1400,EA055,3,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA055,NA,,,, +Cd8,,,EA055,NA,,,, +Cd9,,,EA055,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA055,3,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA055,NA,,,, +Ce3,City and environs of Rome,100,EA055,3,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA055,3,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA055,3,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA055,3,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA055,3,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA055,3,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA055,3,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA055,NA,,,, +Cf3,,1930,EA055,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA055,3,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA055,3,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA055,3,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA055,3,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA055,3,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA055,10,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA055,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA055,3,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA055,NA,,,, +Ch11,Viriatino Village,1955,EA055,4,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA055,3,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA055,3,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,1900,EA055,3,,heffner1955; wichmann1913,EthnographicAtlas_1967_p84, +Ch5,with special reference to the village of Dragelevtsy,1940,EA055,3,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA055,3,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA055,3,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,1940,EA055,3,,hanzeli1955,EthnographicAtlas_1967_p84, +Ch9,,1930,EA055,3,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA055,3,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA055,3,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA055,3,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA055,3,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA055,3,,grigolia1939,EthnographicAtlas_1967_p84, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA055,3,,gadzhieva1958,EthnographicAtlas_1967_p84, +Ci4,,1920,EA055,3,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA055,3,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA055,3,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p84, +Ci7,,1900,EA055,3,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p84, +Ci8,,,EA055,NA,,,, +Ci9,,,EA055,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA055,3,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA055,3,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA055,3,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA055,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA055,3,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA055,3,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA055,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA055,3,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA055,3,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,1950,EA055,3,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA055,3,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,with special reference to the more nomadic groups,1950,EA055,3,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA055,3,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA055,3,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA055,3,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA055,3,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA055,3,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA055,3,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA055,3,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA055,3,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA055,3,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA055,3,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA055,3,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA055,3,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA055,3,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA055,3,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA055,NA,,,, +Eb5,,,EA055,NA,,,, +Eb6,,,EA055,NA,,,, +Eb7,,1930,EA055,3,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA055,NA,,,, +Ec1,Sakhalin Island,1920,EA055,3,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,,,EA055,NA,,,, +Ec11,,1900,EA055,10,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA055,3,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA055,3,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA055,10,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA055,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,Upper Kolyma River,1850,EA055,10,,jochelson191926,EthnographicAtlas_1967_p88, +Ec7,Saru Basin in Hokkaido,1900,EA055,10,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA055,NA,,,, +Ec9,,,EA055,NA,,,, +Ed1,Kanghwa Island,1950,EA055,3,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA055,3,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA055,NA,,,, +Ed14,,,EA055,NA,,,, +Ed15a,,,EA055,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA055,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA055,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA055,3,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA055,3,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA055,3,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA055,4,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA055,3,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA055,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA055,3,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA055,10,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA055,3,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA055,3,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA055,10,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA055,3,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA055,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA055,3,"But smiths are Nepali, not Sherpa",furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA055,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA055,3,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA055,3,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA055,NA,,,, +Ef11,Village and environs of Senapur,1945,EA055,3,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA055,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA055,NA,,,, +Ef4,,,EA055,NA,,,, +Ef5,,1900,EA055,3,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,,EA055,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA055,3,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA055,3,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA055,3,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA055,10,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA055,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA055,NA,,,, +Eg12,,,EA055,NA,,,, +Eg13,Bastar State,1941,EA055,10,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA055,10,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA055,3,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA055,10,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA055,10,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA055,3,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,with special reference to Northern Kerala,1799,EA055,3,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,,,EA055,NA,,,, +Eg8,,1940,EA055,3,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,,EA055,NA,,,, +Eh1,,1870,EA055,10,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA055,NA,,,, +Eh2,,1900,EA055,3,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA055,3,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA055,10,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA055,3,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA055,3,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p92, +Eh7,,1900,EA055,3,"But McLeod reports 'activity is absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA055,3,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,1930,EA055,3,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA055,10,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA055,10,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA055,3,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA055,NA,,,, +Ei13,,1910,EA055,3,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA055,3,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA055,NA,,,, +Ei16,,1910,EA055,3,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA055,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA055,3,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,1940,EA055,3,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA055,3,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA055,NA,,,, +Ei3,Nondwin Village,1950,EA055,3,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA055,3,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA055,3,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA055,3,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA055,10,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA055,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA055,10,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA055,10,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA055,3,Itinerant smiths,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA055,3,,lafont1964,EthnographicAtlas_1967_p92, +Ej12,,1960,EA055,3,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA055,3,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA055,10,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA055,3,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA055,10,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA055,3,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA055,10,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA055,3,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA055,3,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,of the Mergui Archipelago,1920,EA055,10,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA055,3,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA055,3,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA055,3,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA055,3,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA055,3,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA055,3,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA055,3,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA055,10,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA055,3,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA055,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA055,3,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA055,NA,,,, +Ia18,,,EA055,NA,,,, +Ia2,,1950,EA055,3,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA055,3,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,,,EA055,NA,,,, +Ia5,,1950,EA055,3,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA055,3,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA055,3,,fox1954,EthnographicAtlas_1967_p92, +Ia8,,,EA055,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA055,3,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA055,3,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA055,3,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA055,3,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA055,3,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,,,EA055,NA,,,, +Ib6,,1920,EA055,3,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA055,10,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,with special reference to the Ridan group,1900,EA055,10,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA055,NA,,,, +Ic1,Borongloe,1940,EA055,3,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA055,10,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,Allang,1950,EA055,3,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA055,3,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA055,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA055,3,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,with special reference to the Mountain Belu,1950,EA055,3,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA055,NA,,,, +Ic5,Bare'e subgroup,1910,EA055,3,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA055,3,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA055,3,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,1890,EA055,10,,pleyte1893,EthnographicAtlas_1967_p96, +Ic9,with special reference to eastern Sumba,1930,EA055,3,,nooteboom1940,EthnographicAtlas_1967_p96, +Id1,Alice Springs and environs,1900,EA055,10,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA055,10,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA055,10,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA055,10,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA055,10,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA055,10,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA055,10,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA055,10,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA055,10,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA055,10,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA055,10,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA055,10,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA055,10,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA055,10,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA055,10,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA055,10,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA055,10,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA055,10,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA055,10,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,Kalabu; Northern Abelam,1930,EA055,10,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA055,10,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA055,10,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA055,10,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA055,10,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA055,10,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA055,10,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA055,10,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA055,10,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA055,10,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,1870,EA055,10,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA055,10,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA055,10,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,1910,EA055,10,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,1940,EA055,10,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA055,10,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA055,10,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA055,10,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,1950,EA055,10,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA055,10,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA055,10,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA055,NA,,,, +Ie35,,1930,EA055,10,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA055,NA,,,, +Ie37,,,EA055,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA055,10,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA055,10,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA055,10,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA055,10,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA055,10,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA055,10,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA055,10,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA055,10,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA055,10,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA055,NA,,,, +If11,,1860,EA055,10,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA055,10,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA055,10,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA055,10,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA055,10,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA055,10,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA055,10,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA055,10,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA055,10,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA055,10,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA055,10,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA055,10,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA055,10,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA055,3,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA055,10,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA055,10,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA055,10,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA055,10,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,with special reference to the Varisi,1900,EA055,10,,scheffler1965,EthnographicAtlas_1967_p100, +Ig13,,1900,EA055,10,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,1900,EA055,10,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA055,NA,,,, +Ig16,,,EA055,NA,,,, +Ig17,,,EA055,NA,,,, +Ig18,,,EA055,NA,,,, +Ig19,,,EA055,NA,,,, +Ig2,Kiriwina Island,1910,EA055,10,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA055,10,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA055,10,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA055,10,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA055,10,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA055,10,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA055,10,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA055,10,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA055,NA,,,, +Ig9,Peri Village,1920,EA055,10,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA055,10,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,Whitsands,1920,EA055,10,,humphreys1926,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA055,NA,,,, +Ih12,,,EA055,NA,,,, +Ih13,,,EA055,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA055,10,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA055,10,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA055,10,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p100, +Ih4,Lau Island,1920,EA055,10,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA055,10,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p100, +Ih6,,1890,EA055,10,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA055,10,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA055,10,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA055,10,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA055,10,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA055,NA,,,, +Ii12,Pangai,1920,EA055,10,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA055,10,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA055,10,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA055,10,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA055,10,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA055,10,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA055,10,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA055,10,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA055,10,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA055,10,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA055,10,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA055,10,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA055,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA055,10,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA055,10,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA055,10,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA055,10,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA055,10,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA055,10,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA055,10,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA055,10,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA055,10,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA055,10,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA055,10,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA055,10,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA055,10,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA055,10,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA055,10,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA055,10,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA055,10,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA055,10,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA055,10,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA055,10,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA055,10,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA055,10,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA055,10,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA055,10,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA055,9,"Though ironworking is very old, it is confined to cold hammering and filing",birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA055,10,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA055,10,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA055,10,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA055,10,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA055,10,But some cold working of native copper,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA055,10,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA055,10,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA055,10,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA055,10,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA055,10,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA055,10,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA055,10,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA055,10,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA055,10,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA055,10,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA055,10,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA055,10,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA055,10,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA055,10,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA055,10,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA055,NA,,,, +Na45,,1900,EA055,10,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA055,10,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA055,10,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA055,10,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA055,10,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA055,10,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA055,10,But men made artifacts of beaten copper,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA055,10,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA055,10,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA055,10,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA055,10,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA055,10,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA055,10,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA055,10,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA055,10,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA055,10,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA055,10,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA055,10,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA055,10,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA055,10,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA055,10,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA055,10,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA055,10,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA055,10,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA055,10,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA055,10,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA055,10,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA055,10,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA055,10,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA055,10,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA055,10,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA055,10,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA055,10,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA055,10,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA055,10,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA055,10,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA055,10,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA055,10,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA055,10,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA055,10,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA055,10,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA055,10,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA055,10,But artifacts were made of beaten copper,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA055,10,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA055,10,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA055,10,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA055,10,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA055,10,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA055,10,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA055,10,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA055,10,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA055,10,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA055,10,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA055,10,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA055,10,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA055,10,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA055,10,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA055,10,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA055,10,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA055,10,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA055,10,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA055,10,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA055,10,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA055,10,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA055,10,,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA055,10,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA055,10,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA055,10,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA055,10,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA055,10,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA055,10,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA055,10,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA055,10,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA055,10,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA055,10,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA055,10,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA055,10,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA055,10,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA055,10,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA055,10,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA055,10,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA055,10,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA055,10,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA055,10,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA055,10,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA055,10,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA055,10,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA055,10,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA055,10,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA055,10,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA055,10,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA055,10,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA055,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA055,10,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA055,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA055,10,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA055,10,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA055,10,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA055,10,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA055,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA055,10,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA055,10,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA055,10,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA055,10,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA055,10,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA055,10,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA055,10,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA055,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA055,10,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA055,10,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA055,10,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA055,10,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA055,10,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA055,10,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA055,10,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA055,10,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA055,10,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA055,10,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA055,10,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA055,10,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA055,10,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA055,10,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA055,10,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA055,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA055,10,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA055,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA055,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA055,10,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA055,10,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA055,10,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA055,10,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA055,10,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA055,10,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA055,10,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA055,10,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA055,10,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA055,10,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA055,10,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA055,10,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA055,10,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA055,10,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA055,10,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA055,10,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA055,10,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA055,10,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA055,10,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA055,10,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA055,10,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA055,10,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA055,NA,,,, +Ne3,Comanche Tribe,1870,EA055,10,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA055,10,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA055,10,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA055,10,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA055,10,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA055,10,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA055,10,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA055,10,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA055,10,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA055,10,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA055,10,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA055,10,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA055,NA,,,, +Nf2,,1850,EA055,10,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA055,10,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA055,10,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA055,10,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA055,10,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA055,10,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA055,10,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA055,10,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA055,10,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA055,10,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA055,10,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA055,10,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA055,NA,,,, +Ng14,,,EA055,NA,,,, +Ng15,,,EA055,NA,,,, +Ng2,,,EA055,NA,,,, +Ng3,Upper division in Alabama,1750,EA055,10,"But aboriginally men did some work in copper, and probably also in silver and gold, although without the use of fire",bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA055,NA,,,, +Ng5,,1750,EA055,10,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA055,10,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA055,10,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA055,10,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA055,NA,,,, +Nh1,Central band,1880,EA055,10,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,1920,EA055,10,,parsons1932a; trager1943,EthnographicAtlas_1967_p116, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA055,10,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA055,10,But a little silversmithing today,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA055,10,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA055,NA,,,, +Nh15,,1870,EA055,10,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA055,10,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA055,10,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA055,10,"But aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA055,10,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA055,10,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA055,10,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA055,10,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA055,10,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA055,10,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA055,10,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA055,10,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA055,NA,,,, +Nh27,,,EA055,NA,,,, +Nh3,,1930,EA055,3,"But aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA055,10,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA055,10,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA055,10,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA055,10,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA055,10,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,1920,EA055,10,,parsons1939; trager1943,EthnographicAtlas_1967_p116, +Ni1,,1930,EA055,10,Iron working is done by itinerant Mexican smiths,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA055,10,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA055,10,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA055,10,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA055,10,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA055,10,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA055,10,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA055,NA,,,, +Ni9,,,EA055,NA,,,, +Nj1,Ojitlan,1940,EA055,10,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,,,EA055,NA,,,, +Nj11,,,EA055,NA,,,, +Nj12,,,EA055,NA,,,, +Nj13,,,EA055,NA,,,, +Nj14,,,EA055,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA055,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA055,10,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA055,10,But gold was worked aboriginally,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA055,NA,,,, +Nj6,,,EA055,NA,,,, +Nj7,with special reference to Ayutla,1930,EA055,10,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA055,9,"Work was done in gold, silver, and copper",foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA055,3,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA055,10,But gold was worked aboriginally,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA055,10,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA055,NA,,,, +Sa12,,1948,EA055,10,,stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA055,10,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA055,NA,,,, +Sa15,,,EA055,NA,,,, +Sa16,,,EA055,NA,,,, +Sa17,,,EA055,NA,,,, +Sa2,,,EA055,NA,,,, +Sa3,,1930,EA055,10,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA055,10,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA055,10,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA055,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA055,10,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA055,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA055,10,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA055,10,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA055,10,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA055,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA055,10,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA055,10,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p120, +Sb6,Goajiro Tribe,1940,EA055,10,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA055,10,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA055,10,But gold was beaten into ornaments,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,,EA055,NA,,,, +Sc1,,1950,EA055,10,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA055,10,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA055,10,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA055,10,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA055,10,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA055,10,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA055,10,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA055,10,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA055,10,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA055,10,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA055,10,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA055,10,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA055,10,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA055,10,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA055,10,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA055,10,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA055,10,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA055,10,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA055,10,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA055,10,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA055,10,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA055,10,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA055,10,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA055,10,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA055,10,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA055,10,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA055,10,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA055,10,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,1670,EA055,10,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p120, +Se11,,1960,EA055,10,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA055,NA,,,, +Se2,,1940,EA055,10,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA055,10,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA055,10,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA055,10,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA055,10,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA055,NA,,,, +Se8,Upper Inuya River,1950,EA055,10,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA055,10,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA055,3,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA055,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA055,10,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA055,10,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA055,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA055,9,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA055,10,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA055,NA,,,, +Sf9,,,EA055,NA,,,, +Sg1,Eastern and central,1870,EA055,10,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA055,9,"Aboriginally 'activity absent or unimportant' (EA044 code ""9"", EA055 code ""10"")",faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA055,10,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA055,9,But silversmithing and loom weaving are relatively recent introductions,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA055,10,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA055,10,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA055,10,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA055,10,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA055,10,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA055,10,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA055,10,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA055,10,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA055,10,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA055,10,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA055,10,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA055,10,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA055,10,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA055,10,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA055,10,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA055,10,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA055,10,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,with special reference to the Cozarimi,1910,EA055,10,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,1940,EA055,10,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA055,NA,,,, +Sj1,,1950,EA055,10,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA055,10,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA055,10,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA055,10,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA055,10,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA055,10,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA055,10,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,with special reference to the Guajajara subgroup,1930,EA055,10,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA055,10,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA055,10,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA055,10,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA055,10,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA055,10,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA055,10,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA055,10,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA055,3,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA055,3,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA055,3,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA055,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA055,10,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA055,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA055,3,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA055,3,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA055,3,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA055,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA055,10,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA055,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA055,3,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA055,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA055,10,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA055,10,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA055,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA055,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA055,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA055,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,,,EA055,NA,,,, +ec20,Oroch people as a whole,1890,EA055,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA055,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA056,10,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA056,10,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA056,10,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA056,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA056,10,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA056,NA,,,, +Aa7,,1910,EA056,10,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA056,10,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA056,10,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA056,10,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA056,10,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA056,10,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA056,10,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA056,10,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA056,10,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA056,10,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA056,NA,,,, +Ab17,,,EA056,NA,,,, +Ab18,,,EA056,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA056,10,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA056,10,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA056,NA,,,, +Ab21a,,,EA056,NA,,,, +Ab21b,,,EA056,NA,,,, +Ab22,,,EA056,NA,,,, +Ab3,Ruling Luyana,1890,EA056,10,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA056,10,But cotton cloth was formerly woven,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA056,10,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA056,9,But no longer practiced,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA056,NA,,,, +Ab8,Basuto,1860,EA056,10,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA056,10,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA056,10,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA056,10,By men of a neighboring tribe,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA056,9,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,,EA056,NA,,,, +Ac13,,,EA056,NA,,,, +Ac14,,,EA056,NA,,,, +Ac15,,,EA056,NA,,,, +Ac16,,,EA056,NA,,,, +Ac17,,,EA056,NA,,,, +Ac18,,,EA056,NA,,,, +Ac19,,,EA056,NA,,,, +Ac2,,,EA056,NA,,,, +Ac20,,,EA056,NA,,,, +Ac21,,,EA056,NA,,,, +Ac22,,,EA056,NA,,,, +Ac23,with special reference to the western Lele,1950,EA056,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA056,NA,,,, +Ac25,,,EA056,NA,,,, +Ac26,,,EA056,NA,,,, +Ac27,,,EA056,NA,,,, +Ac28,,1930,EA056,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA056,NA,,,, +Ac3,Zambia branch,1900,EA056,10,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,,EA056,NA,,,, +Ac31,,1910,EA056,10,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA056,NA,,,, +Ac33,,,EA056,NA,,,, +Ac34,,1940,EA056,10,"Formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA056,NA,,,, +Ac36,,,EA056,NA,,,, +Ac37,,,EA056,NA,,,, +Ac38,,1910,EA056,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,,EA056,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA056,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA056,NA,,,, +Ac41,,,EA056,NA,,,, +Ac42,,,EA056,NA,,,, +Ac43,,,EA056,NA,,,, +Ac5,,,EA056,NA,,,, +Ac6,,1930,EA056,10,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA056,10,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA056,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,,,EA056,NA,,,, +Ad1,,,EA056,NA,,,, +Ad10,,,EA056,NA,,,, +Ad11,,1930,EA056,10,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA056,NA,,,, +Ad13,,,EA056,NA,,,, +Ad14,Morogoro District,1930,EA056,10,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p68, +Ad15,,1900,EA056,9,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p68, +Ad16,,1920,EA056,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA056,9,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA056,NA,,,, +Ad19,,1910,EA056,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA056,10,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA056,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,,EA056,NA,,,, +Ad22,,1950,EA056,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA056,NA,,,, +Ad24,,,EA056,NA,,,, +Ad25,,,EA056,NA,,,, +Ad26,,1910,EA056,10,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,1880,EA056,10,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA056,NA,,,, +Ad29,,1930,EA056,10,"Formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA056,10,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,,EA056,NA,,,, +Ad31,,,EA056,NA,,,, +Ad32,,,EA056,NA,,,, +Ad33,,,EA056,NA,,,, +Ad34,,,EA056,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA056,10,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA056,NA,,,, +Ad37,,,EA056,NA,,,, +Ad38,,,EA056,NA,,,, +Ad39,,,EA056,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA056,10,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA056,NA,,,, +Ad41,,,EA056,NA,,,, +Ad42,,,EA056,NA,,,, +Ad43,,,EA056,NA,,,, +Ad44,,1920,EA056,10,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,,EA056,NA,,,, +Ad46,,1950,EA056,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA056,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA056,10,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA056,NA,,,, +Ad5,,,EA056,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA056,10,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA056,10,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA056,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA056,10,But men made bark cloth,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,,,EA056,NA,,,, +Ad9,,1900,EA056,10,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA056,10,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA056,10,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,,EA056,NA,,,, +Ae12,,,EA056,NA,,,, +Ae13,,,EA056,NA,,,, +Ae14,,,EA056,NA,,,, +Ae15,,,EA056,NA,,,, +Ae16,,,EA056,NA,,,, +Ae17,,1900,EA056,10,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA056,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA056,NA,,,, +Ae2,,,EA056,NA,,,, +Ae20,,,EA056,NA,,,, +Ae21,,,EA056,NA,,,, +Ae22,,,EA056,NA,,,, +Ae23,,,EA056,NA,,,, +Ae24,,,EA056,NA,,,, +Ae25,,,EA056,NA,,,, +Ae26,,,EA056,NA,,,, +Ae27,,,EA056,NA,,,, +Ae28,,1900,EA056,10,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,,EA056,NA,,,, +Ae3,,1910,EA056,10,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA056,NA,,,, +Ae31,,1920,EA056,10,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA056,NA,,,, +Ae33,,1920,EA056,10,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA056,NA,,,, +Ae35,,,EA056,NA,,,, +Ae36,,,EA056,NA,,,, +Ae37,,,EA056,NA,,,, +Ae38,,,EA056,NA,,,, +Ae39,,1920,EA056,10,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA056,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA056,NA,,,, +Ae41,,1940,EA056,9,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA056,NA,,,, +Ae43,,,EA056,NA,,,, +Ae44,,,EA056,NA,,,, +Ae45,,,EA056,NA,,,, +Ae46,,,EA056,NA,,,, +Ae47,,,EA056,NA,,,, +Ae48,,1930,EA056,9,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae49,,,EA056,NA,,,, +Ae5,,1910,EA056,3,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA056,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA056,10,Small carrying bags only,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,,EA056,NA,,,, +Ae53,,,EA056,NA,,,, +Ae54,,,EA056,NA,,,, +Ae55,,,EA056,NA,,,, +Ae56,,,EA056,NA,,,, +Ae57,,,EA056,NA,,,, +Ae58,,,EA056,NA,,,, +Ae59,,,EA056,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA056,9,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,1910,EA056,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA056,10,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA056,10,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA056,3,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA056,10,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA056,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA056,NA,,,, +Af13,,1920,EA056,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,1930,EA056,9,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA056,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA056,NA,,,, +Af17,,,EA056,NA,,,, +Af18,,,EA056,NA,,,, +Af19,,,EA056,NA,,,, +Af2,,1950,EA056,10,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA056,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA056,NA,,,, +Af22,,1940,EA056,10,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,with special reference to the village of Mgbom,1950,EA056,10,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA056,3,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA056,10,"But probably formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA056,NA,,,, +Af27,,,EA056,NA,,,, +Af28,,1910,EA056,9,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA056,NA,,,, +Af3,Kumasi State,1900,EA056,3,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA056,NA,,,, +Af31,,,EA056,NA,,,, +Af32,Abeouta Province and Benin,1920,EA056,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA056,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA056,NA,,,, +Af35,,,EA056,NA,,,, +Af36,with special reference to the Glidyi,1900,EA056,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA056,NA,,,, +Af38,,,EA056,NA,,,, +Af39,,,EA056,NA,,,, +Af4,,,EA056,NA,,,, +Af40,,,EA056,NA,,,, +Af41,,,EA056,NA,,,, +Af42,,1900,EA056,9,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,,EA056,NA,,,, +Af44,,,EA056,NA,,,, +Af45,,,EA056,NA,,,, +Af46,,,EA056,NA,,,, +Af47,,,EA056,NA,,,, +Af48,,,EA056,NA,,,, +Af49,,,EA056,NA,,,, +Af5,,1930,EA056,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA056,NA,,,, +Af51,,,EA056,NA,,,, +Af52,,1920,EA056,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA056,NA,,,, +Af54,,1930,EA056,9,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA056,NA,,,, +Af56,,,EA056,NA,,,, +Af57,,1910,EA056,9,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA056,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA056,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,,EA056,NA,,,, +Af8,,1930,EA056,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,,EA056,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA056,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,,EA056,NA,,,, +Ag11,,,EA056,NA,,,, +Ag12,,,EA056,NA,,,, +Ag13,,1910,EA056,9,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p72, +Ag14,,,EA056,NA,,,, +Ag15,,,EA056,NA,,,, +Ag16,,,EA056,NA,,,, +Ag17,,,EA056,NA,,,, +Ag18,,,EA056,NA,,,, +Ag19,,,EA056,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA056,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA056,NA,,,, +Ag21,,,EA056,NA,,,, +Ag22,with special reference to those of Sine,1920,EA056,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA056,NA,,,, +Ag24,,,EA056,NA,,,, +Ag25,,,EA056,NA,,,, +Ag26,,,EA056,NA,,,, +Ag27,,,EA056,NA,,,, +Ag28,,,EA056,NA,,,, +Ag29,,,EA056,NA,,,, +Ag3,,,EA056,NA,,,, +Ag30,,1910,EA056,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,1910,EA056,9,,cheron1913; holas1957,EthnographicAtlas_1967_p72, +Ag32,,,EA056,NA,,,, +Ag33,,,EA056,NA,,,, +Ag34,,,EA056,NA,,,, +Ag35,,,EA056,NA,,,, +Ag36,,,EA056,NA,,,, +Ag37,,,EA056,NA,,,, +Ag38,,,EA056,NA,,,, +Ag39,,,EA056,NA,,,, +Ag4,Tallensi Tribe,1930,EA056,10,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA056,NA,,,, +Ag41,,,EA056,NA,,,, +Ag42,,,EA056,NA,,,, +Ag43,,,EA056,NA,,,, +Ag44,,,EA056,NA,,,, +Ag45,,,EA056,NA,,,, +Ag46,,,EA056,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA056,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA056,3,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,1930,EA056,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA056,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,,EA056,NA,,,, +Ag51,,,EA056,NA,,,, +Ag52,,,EA056,NA,,,, +Ag53,with special reference to those of Garango,1960,EA056,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA056,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA056,NA,,,, +Ag7,,,EA056,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA056,9,But weaving is confined to a few special products,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,,EA056,NA,,,, +Ah1,Zaria Province,1930,EA056,10,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA056,NA,,,, +Ah11,,1950,EA056,9,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA056,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA056,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA056,9,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah15,,1920,EA056,10,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA056,NA,,,, +Ah17,,,EA056,NA,,,, +Ah18,,,EA056,NA,,,, +Ah19,,,EA056,NA,,,, +Ah2,,1920,EA056,9,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,,EA056,NA,,,, +Ah21,,,EA056,NA,,,, +Ah22,,,EA056,NA,,,, +Ah23,,,EA056,NA,,,, +Ah24,,,EA056,NA,,,, +Ah25,,,EA056,NA,,,, +Ah26,,,EA056,NA,,,, +Ah27,,,EA056,NA,,,, +Ah28,,,EA056,NA,,,, +Ah29,,,EA056,NA,,,, +Ah3,Tar of Benue Province,1920,EA056,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA056,NA,,,, +Ah31,,,EA056,NA,,,, +Ah32,,,EA056,NA,,,, +Ah33,,,EA056,NA,,,, +Ah34,,,EA056,NA,,,, +Ah35,,,EA056,NA,,,, +Ah36,,1920,EA056,10,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA056,NA,,,, +Ah38,,1930,EA056,10,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA056,10,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA056,NA,,,, +Ah5,,,EA056,NA,,,, +Ah6,,,EA056,NA,,,, +Ah7,,1940,EA056,10,But women weave small bags,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,,EA056,NA,,,, +Ah9,,1920,EA056,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA056,10,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA056,10,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA056,10,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA056,NA,,,, +Ai13,,,EA056,NA,,,, +Ai14,,1920,EA056,9,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,1900,EA056,9,But infrequent,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA056,NA,,,, +Ai17,,1930,EA056,10,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA056,3,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA056,NA,,,, +Ai2,,,EA056,NA,,,, +Ai20,,,EA056,NA,,,, +Ai21,,1880,EA056,9,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p76, +Ai22,,,EA056,NA,,,, +Ai23,,1920,EA056,10,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA056,NA,,,, +Ai25,,1950,EA056,10,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA056,10,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA056,NA,,,, +Ai28,,1910,EA056,10,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA056,10,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA056,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA056,10,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,,EA056,NA,,,, +Ai32,,,EA056,NA,,,, +Ai33,,,EA056,NA,,,, +Ai34,,,EA056,NA,,,, +Ai35,,,EA056,NA,,,, +Ai36,,1920,EA056,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA056,NA,,,, +Ai38,,1930,EA056,10,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA056,10,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA056,NA,,,, +Ai40,,1940,EA056,10,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA056,10,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA056,10,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA056,10,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,,EA056,NA,,,, +Ai45,,,EA056,NA,,,, +Ai46,,,EA056,NA,,,, +Ai47,Northern division,1939,EA056,10,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,1920,EA056,10,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA056,10,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA056,10,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA056,10,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,,,EA056,NA,,,, +Aj1,,,EA056,NA,,,, +Aj10,,,EA056,NA,,,, +Aj11,,,EA056,NA,,,, +Aj12,,,EA056,NA,,,, +Aj13,,,EA056,NA,,,, +Aj14,,,EA056,NA,,,, +Aj15,,1900,EA056,9,Aprons only,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,,,EA056,NA,,,, +Aj17,,1890,EA056,10,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,,EA056,NA,,,, +Aj19,,,EA056,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA056,10,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA056,NA,,,, +Aj21,,,EA056,NA,,,, +Aj22,,,EA056,NA,,,, +Aj23,,,EA056,NA,,,, +Aj24,,,EA056,NA,,,, +Aj25,,,EA056,NA,,,, +Aj26,,,EA056,NA,,,, +Aj27,,,EA056,NA,,,, +Aj28,,,EA056,NA,,,, +Aj29,,,EA056,NA,,,, +Aj3,,1930,EA056,10,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA056,NA,,,, +Aj31,,,EA056,NA,,,, +Aj4,,1920,EA056,10,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,,EA056,NA,,,, +Aj6,,1940,EA056,10,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA056,10,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA056,10,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA056,10,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA056,3,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,,EA056,NA,,,, +Ca11,,,EA056,NA,,,, +Ca12,,1880,EA056,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,,,EA056,NA,,,, +Ca14,,1950,EA056,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA056,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA056,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA056,10,Products obtained by trade with neighboring tribes,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA056,NA,,,, +Ca19,,1950,EA056,10,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA056,3,But weaving is mainly done by sedentary rather than nomadic Somali,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA056,NA,,,, +Ca21,,1950,EA056,10,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA056,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA056,10,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,,EA056,NA,,,, +Ca25,,,EA056,NA,,,, +Ca26,,,EA056,NA,,,, +Ca27,,,EA056,NA,,,, +Ca28,,1950,EA056,10,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA056,9,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,,EA056,NA,,,, +Ca30,Kafa Kingdom,1890,EA056,9,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,1860,EA056,9,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA056,10,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA056,10,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA056,NA,,,, +Ca35,,,EA056,NA,,,, +Ca36,,,EA056,NA,,,, +Ca37,,,EA056,NA,,,, +Ca38,,,EA056,NA,,,, +Ca39,,1930,EA056,3,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,,EA056,NA,,,, +Ca40,,1950,EA056,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA056,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA056,10,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA056,NA,,,, +Ca5,,,EA056,NA,,,, +Ca6,,,EA056,NA,,,, +Ca7,Gondar district,1950,EA056,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA056,NA,,,, +Ca9,,,EA056,NA,,,, +Cb1,,,EA056,NA,,,, +Cb10,,,EA056,NA,,,, +Cb11,,,EA056,NA,,,, +Cb12,,,EA056,NA,,,, +Cb13,,,EA056,NA,,,, +Cb14,,,EA056,NA,,,, +Cb15,,,EA056,NA,,,, +Cb16,,,EA056,NA,,,, +Cb17,,,EA056,NA,,,, +Cb18,,1930,EA056,9,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p80, +Cb19,,,EA056,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA056,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA056,3,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA056,NA,,,, +Cb22,,,EA056,NA,,,, +Cb23,,1930,EA056,3,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,,,EA056,NA,,,, +Cb25,,,EA056,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA056,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA056,NA,,,, +Cb28,,,EA056,NA,,,, +Cb29,,,EA056,NA,,,, +Cb3,Bamba division,1940,EA056,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA056,NA,,,, +Cb5,,,EA056,NA,,,, +Cb6,,,EA056,NA,,,, +Cb7,,1920,EA056,9,,meek1931b:288-310,EthnographicAtlas_1967_p80, +Cb8,,,EA056,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA056,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,1950,EA056,9,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA056,10,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA056,NA,,,, +Cc12,,,EA056,NA,,,, +Cc13,,,EA056,NA,,,, +Cc14,,1880,EA056,10,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA056,NA,,,, +Cc16,,1930,EA056,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA056,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA056,NA,,,, +Cc19,,,EA056,NA,,,, +Cc2,Nomads of Tibesti,1950,EA056,10,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,,,EA056,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA056,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA056,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,,EA056,NA,,,, +Cc6,,,EA056,NA,,,, +Cc7,,,EA056,NA,,,, +Cc8,,,EA056,NA,,,, +Cc9,Ahaggaren tribe,1920,EA056,10,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,,,EA056,NA,,,, +Cd10,,,EA056,NA,,,, +Cd11,,,EA056,NA,,,, +Cd12,,1870,EA056,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA056,NA,,,, +Cd14,,,EA056,NA,,,, +Cd15,,,EA056,NA,,,, +Cd16,,,EA056,NA,,,, +Cd17,,,EA056,NA,,,, +Cd18,,,EA056,NA,,,, +Cd19,,,EA056,NA,,,, +Cd2,Town and environs of Silwa,1950,EA056,3,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA056,NA,,,, +Cd21,,,EA056,NA,,,, +Cd3,Entirety: Moroccan,1920,EA056,9,Also male specialists using a more advanced type of loom,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA056,3,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,,,EA056,NA,,,, +Cd6,with special reference to the New Empire,-1400,EA056,3,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA056,NA,,,, +Cd8,,,EA056,NA,,,, +Cd9,,,EA056,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA056,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA056,NA,,,, +Ce3,,,EA056,NA,,,, +Ce4,,,EA056,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA056,4,Presumably industrial specialization only,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA056,4,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA056,4,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA056,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA056,4,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA056,NA,,,, +Cf3,,1930,EA056,10,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA056,4,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA056,4,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA056,4,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA056,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,,,EA056,NA,,,, +Cg4,Konkama District,1950,EA056,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA056,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA056,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA056,NA,,,, +Ch11,,,EA056,NA,,,, +Ch2,,1890,EA056,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA056,4,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA056,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA056,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA056,4,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA056,4,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,1940,EA056,9,,hanzeli1955,EthnographicAtlas_1967_p84, +Ch9,,1930,EA056,4,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,,,EA056,NA,,,, +Ci10,Vicinity of Erevan,1900,EA056,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA056,3,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA056,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA056,NA,,,, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA056,9,,gadzhieva1958,EthnographicAtlas_1967_p84, +Ci4,,,EA056,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA056,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA056,NA,,,, +Ci7,,1900,EA056,9,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p84, +Ci8,,,EA056,NA,,,, +Ci9,,,EA056,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA056,4,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA056,3,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA056,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA056,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA056,3,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA056,9,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA056,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA056,4,"Formerly females alone (EA045 code ""6""), with no specialization specified (EA056 code ""9"")",davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA056,10,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,1950,EA056,3,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA056,9,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,,,EA056,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA056,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA056,9,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA056,3,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA056,3,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA056,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA056,3,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA056,3,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA056,9,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA056,9,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA056,9,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA056,9,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA056,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA056,3,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA056,10,But felt is manufactured by both sexes,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA056,NA,,,, +Eb5,,,EA056,NA,,,, +Eb6,,,EA056,NA,,,, +Eb7,,,EA056,NA,,,, +Eb8,,,EA056,NA,,,, +Ec1,Sakhalin Island,1920,EA056,10,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA056,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA056,10,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA056,3,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA056,10,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA056,10,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA056,10,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,,,EA056,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA056,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA056,NA,,,, +Ec9,,,EA056,NA,,,, +Ed1,Kanghwa Island,1950,EA056,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA056,9,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA056,NA,,,, +Ed14,,,EA056,NA,,,, +Ed15a,,,EA056,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA056,4,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA056,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA056,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA056,9,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA056,9,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA056,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA056,9,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA056,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA056,9,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA056,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA056,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA056,3,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA056,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA056,3,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA056,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA056,9,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA056,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA056,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA056,3,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA056,NA,,,, +Ef11,Village and environs of Senapur,1945,EA056,3,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA056,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA056,NA,,,, +Ef4,,,EA056,NA,,,, +Ef5,,1900,EA056,10,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,,EA056,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA056,3,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA056,3,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA056,3,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA056,10,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA056,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA056,NA,,,, +Eg12,,,EA056,NA,,,, +Eg13,Bastar State,1941,EA056,10,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA056,10,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA056,3,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA056,10,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA056,10,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,,EA056,NA,,,, +Eg6,,,EA056,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA056,10,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA056,10,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,,EA056,NA,,,, +Eh1,,1870,EA056,10,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA056,NA,,,, +Eh2,,1900,EA056,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA056,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA056,10,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA056,10,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA056,NA,,,, +Eh7,,1900,EA056,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA056,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA056,NA,,,, +Ei1,Rengsanggr,1900,EA056,9,But rare today,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA056,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA056,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA056,NA,,,, +Ei13,,1910,EA056,9,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA056,9,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA056,NA,,,, +Ei16,,1910,EA056,9,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA056,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA056,9,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,1940,EA056,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA056,9,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA056,NA,,,, +Ei3,Nondwin Village,1950,EA056,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA056,9,,parry1932,EthnographicAtlas_1967_p92, +Ei5,,,EA056,NA,,,, +Ei6,,1930,EA056,9,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA056,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA056,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA056,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA056,10,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA056,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA056,9,,lafont1964,EthnographicAtlas_1967_p92, +Ej12,,1960,EA056,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA056,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA056,10,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA056,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA056,10,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA056,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA056,10,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA056,3,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA056,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,of the Mergui Archipelago,1920,EA056,10,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA056,9,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA056,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,,EA056,NA,,,, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA056,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA056,10,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA056,9,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA056,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA056,10,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA056,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA056,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA056,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA056,NA,,,, +Ia18,,,EA056,NA,,,, +Ia2,,1950,EA056,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA056,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,,,EA056,NA,,,, +Ia5,,1950,EA056,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA056,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA056,NA,,,, +Ia8,,,EA056,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA056,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA056,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA056,10,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA056,3,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA056,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA056,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,1920,EA056,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA056,10,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,with special reference to the Ridan group,1900,EA056,10,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA056,NA,,,, +Ic1,Borongloe,1940,EA056,9,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA056,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,Allang,1950,EA056,9,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA056,NA,,,, +Ic13,,,EA056,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA056,10,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,with special reference to the Mountain Belu,1950,EA056,9,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA056,NA,,,, +Ic5,Bare'e subgroup,1910,EA056,10,But weaving has been recently introduced,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA056,9,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA056,9,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,1890,EA056,10,,pleyte1893,EthnographicAtlas_1967_p96, +Ic9,,,EA056,NA,,,, +Id1,Alice Springs and environs,1900,EA056,10,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA056,10,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA056,10,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA056,10,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA056,10,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA056,10,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA056,10,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA056,10,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA056,10,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA056,10,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA056,10,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA056,10,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA056,10,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA056,10,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA056,10,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA056,10,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA056,10,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA056,10,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA056,10,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,Kalabu; Northern Abelam,1930,EA056,10,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA056,10,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA056,10,Armbands and belts only,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA056,10,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA056,10,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA056,10,But women weave net bags,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA056,10,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA056,10,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA056,10,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA056,10,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,1870,EA056,10,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA056,10,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA056,10,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,1910,EA056,10,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,1940,EA056,10,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA056,10,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA056,10,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA056,10,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,1950,EA056,10,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA056,10,But women make net bags,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA056,10,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA056,NA,,,, +Ie35,,1930,EA056,10,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA056,NA,,,, +Ie37,,,EA056,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA056,10,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA056,10,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA056,10,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA056,10,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,,EA056,NA,,,, +Ie7,with special reference to the Mae group,1950,EA056,10,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA056,10,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA056,10,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA056,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA056,NA,,,, +If11,,1860,EA056,9,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA056,10,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA056,10,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA056,10,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA056,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA056,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA056,10,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA056,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA056,10,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA056,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA056,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA056,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA056,10,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA056,10,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,,EA056,NA,,,, +Ig1,Northeastern group,1940,EA056,10,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA056,10,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA056,10,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,with special reference to the Varisi,1900,EA056,10,,scheffler1965,EthnographicAtlas_1967_p100, +Ig13,,,EA056,NA,,,, +Ig14,,1900,EA056,10,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA056,NA,,,, +Ig16,,,EA056,NA,,,, +Ig17,,,EA056,NA,,,, +Ig18,,,EA056,NA,,,, +Ig19,,,EA056,NA,,,, +Ig2,Kiriwina Island,1910,EA056,10,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA056,10,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA056,10,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA056,10,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA056,10,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA056,10,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA056,10,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA056,10,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA056,NA,,,, +Ig9,Peri Village,1920,EA056,10,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA056,10,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,Whitsands,1920,EA056,10,,humphreys1926,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA056,NA,,,, +Ih12,,,EA056,NA,,,, +Ih13,,,EA056,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA056,10,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA056,10,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA056,10,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p100, +Ih4,Lau Island,1920,EA056,10,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA056,10,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p100, +Ih6,,1890,EA056,10,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA056,10,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA056,10,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA056,3,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA056,10,"Women plait fine mats, but there is no true weaving",buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA056,NA,,,, +Ii12,Pangai,1920,EA056,10,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA056,10,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA056,10,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA056,10,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA056,10,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA056,10,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA056,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA056,10,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA056,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA056,10,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA056,10,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA056,10,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA056,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA056,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA056,10,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA056,10,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA056,10,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA056,10,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA056,10,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA056,10,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA056,10,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA056,10,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA056,10,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA056,10,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA056,10,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA056,10,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA056,10,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA056,10,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA056,10,Woven rabbit skin blankets only,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA056,10,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA056,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA056,10,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA056,10,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA056,10,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA056,10,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA056,10,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA056,10,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA056,10,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA056,10,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA056,10,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA056,10,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA056,10,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA056,10,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA056,10,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA056,10,Rabbit skin blankets only,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA056,10,Rabbit skin blankets only,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA056,10,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA056,10,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA056,10,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA056,10,Woven rabbit skin blankets only,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA056,10,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA056,10,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA056,10,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA056,10,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA056,10,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA056,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA056,10,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA056,10,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA056,NA,,,, +Na45,,1900,EA056,10,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA056,10,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA056,10,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA056,10,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA056,10,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA056,10,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA056,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,,EA056,NA,,,, +Nb11,with special reference to the Central Nootka,1880,EA056,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA056,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA056,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA056,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA056,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA056,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA056,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,,EA056,NA,,,, +Nb19,,1850,EA056,10,But blankets were woven of twisted rabbit skin strips,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA056,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA056,10,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,,EA056,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA056,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA056,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA056,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA056,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA056,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA056,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA056,10,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA056,10,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA056,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,,EA056,NA,,,, +Nb31,,1870,EA056,10,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA056,10,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA056,10,Woven rabbit skin blankets only,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA056,10,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA056,10,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA056,10,But both sexes wove blankets of rabbit skin strips,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA056,10,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA056,9,But only blankets woven of rabbit skin strips,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA056,10,But only blankets woven of rabbit skin strips,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA056,10,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA056,10,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA056,10,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA056,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA056,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA056,10,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA056,10,But strips of rabbit fur were woven on a frame into blankets,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA056,10,Rabbit skin blankets only,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA056,10,Rabbit skin blankets only,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA056,10,Rabbit skin blankets only,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA056,10,Rabbit skin blankets only,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA056,10,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA056,10,Woven rabbit skin blankets only,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA056,10,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA056,10,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA056,10,Rabbit skin blankets only,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA056,10,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA056,10,But men wove strips of rabbit fur into blankets on a frame,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA056,10,Rabbit skin blankets and feather capes only,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA056,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA056,10,Rabbit skin blankets only,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA056,10,Entry follows Gayton and Driver; Aginsky reports F,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA056,10,Rabbit skin blankets only,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA056,10,Rabbit skin blankets only,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA056,9,Rabbit skin blankets only,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA056,10,Rabbit skin blankets only,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA056,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA056,10,Rabbit skin blankets only,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA056,10,Blankets were woven from strips of rabbit fur,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA056,10,Rabbit skin blankets only,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA056,10,Rabbit skin blankets only,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA056,10,Rabbit skin blankets only,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA056,10,Rabbit skin blankets only,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA056,10,Rabbit skin blankets only,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA056,10,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA056,10,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA056,10,Only blankets woven from strips of rabbit fur,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA056,10,But a few rabbit-skin blankets are woven,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA056,10,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA056,10,Rabbit skin blankets only,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA056,10,But blankets were woven from strips of rabbit fur,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA056,9,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA056,10,Rabbit skin blankets only,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA056,10,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA056,9,Rabbit skin blankets only,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA056,10,Rabbit skin blankets only,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA056,10,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA056,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA056,10,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA056,10,Woven packstraps and rabbit skin blankets only,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA056,10,Rabbit skin blankets only,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA056,10,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA056,10,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA056,9,Fur-strip blankets only,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA056,10,Fur-strip blankets only,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA056,9,Fur-strip blankets only,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA056,10,Rabbit skin blankets only,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA056,9,Fur-strip blankets only,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA056,10,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA056,10,Fur-strip blankets only,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA056,9,Fur-strip blankets only,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA056,9,Fur-strip blankets only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA056,10,Blankets were woven from rabbit skin strips,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA056,10,Rabbit skin blankets only,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA056,9,Rabbit skin blankets only,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA056,10,Rabbit skin blankets only,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA056,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA056,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA056,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA056,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA056,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA056,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA056,9,Fur-strip blankets only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA056,10,Rabbit skin blankets only,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA056,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA056,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA056,9,Fur-strip blankets only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA056,9,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA056,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA056,10,But rare,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA056,9,But rare,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA056,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA056,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA056,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA056,10,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA056,9,Rabbit skin blankets only,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA056,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA056,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA056,10,Rabbit skin blankets only,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA056,10,Rabbit skin blankets only,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA056,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA056,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA056,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA056,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA056,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA056,10,"But blankets were woven from strips of rabbit fur, chiefly by women",barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA056,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA056,9,Rabbit skin blankets only,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA056,10,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA056,10,A few rabbit skin blankets only,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA056,10,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA056,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA056,10,Rabbit skin blankets only,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,,EA056,NA,,,, +Nd7,Lower or eastern branch,1880,EA056,10,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA056,10,But bands influenced by the Coast Salish did some weaving,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA056,10,Rabbit skin blankets only,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA056,10,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA056,10,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA056,10,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA056,10,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA056,10,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA056,10,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA056,10,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA056,10,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA056,10,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA056,10,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA056,10,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA056,10,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA056,10,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA056,NA,,,, +Ne3,Comanche Tribe,1870,EA056,10,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA056,10,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA056,10,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA056,10,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA056,10,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA056,10,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA056,10,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA056,10,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA056,10,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA056,10,But finger-woven bands and sashes were made,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA056,10,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA056,10,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA056,NA,,,, +Nf2,,,EA056,NA,,,, +Nf3,Omaha Tribe,1850,EA056,10,Scarves only,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA056,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA056,10,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA056,10,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA056,10,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA056,10,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,,EA056,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA056,10,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA056,10,Burden straps only,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,,EA056,NA,,,, +Ng12,,1760,EA056,10,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA056,NA,,,, +Ng14,,,EA056,NA,,,, +Ng15,,,EA056,NA,,,, +Ng2,,,EA056,NA,,,, +Ng3,Upper division in Alabama,1750,EA056,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA056,NA,,,, +Ng5,,,EA056,NA,,,, +Ng6,,,EA056,NA,,,, +Ng7,Natchez Kingdom,1700,EA056,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA056,10,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA056,NA,,,, +Nh1,Central band,1880,EA056,10,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,1920,EA056,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p116, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA056,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA056,10,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,,EA056,NA,,,, +Nh14,,,EA056,NA,,,, +Nh15,,1870,EA056,10,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA056,10,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA056,10,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA056,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA056,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA056,9,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA056,9,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA056,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA056,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA056,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA056,10,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA056,10,"But probably formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA056,NA,,,, +Nh27,,,EA056,NA,,,, +Nh3,,1930,EA056,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA056,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA056,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA056,10,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,,EA056,NA,,,, +Nh8,,1920,EA056,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,,EA056,NA,,,, +Ni1,,1930,EA056,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA056,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA056,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA056,10,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA056,10,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA056,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA056,9,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA056,NA,,,, +Ni9,,,EA056,NA,,,, +Nj1,Ojitlan,1940,EA056,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA056,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA056,NA,,,, +Nj12,,,EA056,NA,,,, +Nj13,,,EA056,NA,,,, +Nj14,,,EA056,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA056,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA056,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA056,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA056,NA,,,, +Nj6,,,EA056,NA,,,, +Nj7,with special reference to Ayutla,1930,EA056,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA056,9,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA056,3,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA056,9,But only hammocks today,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA056,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA056,NA,,,, +Sa12,,1948,EA056,10,"Weaving was formerly done (formerly present, though sex participation unspecified (EA045 code ""8"") and no specialization specified (EA056 code ""9"")",stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA056,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA056,NA,,,, +Sa15,,,EA056,NA,,,, +Sa16,,,EA056,NA,,,, +Sa17,,,EA056,NA,,,, +Sa2,,,EA056,NA,,,, +Sa3,,1930,EA056,10,Agave bags only,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA056,10,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA056,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA056,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA056,10,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA056,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p120, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA056,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA056,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA056,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA056,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA056,10,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA056,NA,,,, +Sb6,Goajiro Tribe,1940,EA056,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA056,9,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA056,10,But hammocks were woven,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA056,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA056,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA056,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,,EA056,NA,,,, +Sc12,,1910,EA056,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,,EA056,NA,,,, +Sc14,,1890,EA056,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA056,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA056,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA056,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA056,10,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA056,10,But hammocks are made,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA056,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA056,10,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA056,9,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,,,EA056,NA,,,, +Sc7,,1950,EA056,10,Chiefly hammocks,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA056,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA056,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA056,10,Hammocks only,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA056,10,Hammocks only,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA056,9,Hammocks only,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA056,10,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA056,10,Hammocks only,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,,EA056,NA,,,, +Sd7,,1950,EA056,9,"Mean weave hammocks and loincloths, women aprons",fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA056,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA056,10,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA056,10,Hammocks only,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,1670,EA056,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p120, +Se11,,1960,EA056,10,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA056,NA,,,, +Se2,,1940,EA056,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA056,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA056,10,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA056,10,But men make hammocks,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA056,10,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA056,NA,,,, +Se8,Upper Inuya River,1950,EA056,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA056,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA056,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA056,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA056,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA056,9,A few ornamented cloths only,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA056,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA056,9,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA056,3,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA056,NA,,,, +Sf9,,,EA056,NA,,,, +Sg1,Eastern and central,1870,EA056,10,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA056,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA056,10,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA056,9,But silversmithing and loom weaving are relatively recent introductions,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA056,10,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA056,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA056,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA056,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA056,9,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA056,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA056,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA056,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA056,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA056,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA056,10,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA056,10,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA056,10,Hammocks only,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA056,10,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA056,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA056,10,Hammocks only,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA056,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,with special reference to the Cozarimi,1910,EA056,9,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,1940,EA056,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA056,NA,,,, +Sj1,,1950,EA056,9,But not aboriginal,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA056,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA056,10,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA056,10,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA056,10,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA056,10,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA056,10,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,with special reference to the Guajajara subgroup,1930,EA056,10,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA056,10,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA056,10,Hammocks only,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA056,10,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA056,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA056,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA056,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA056,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA056,4,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA056,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA056,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA056,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA056,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA056,4,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA056,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA056,10,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA056,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA056,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA056,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA056,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA056,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA056,10,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA056,10,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA056,10,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA056,10,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA056,10,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA056,10,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA056,10,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA056,10,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA056,10,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA056,10,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA057,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA057,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA057,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA057,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA057,10,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA057,NA,,,, +Aa7,,1910,EA057,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,,EA057,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA057,10,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA057,9,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA057,9,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA057,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA057,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA057,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA057,9,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA057,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA057,NA,,,, +Ab17,,,EA057,NA,,,, +Ab18,,,EA057,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA057,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA057,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA057,NA,,,, +Ab21a,,,EA057,NA,,,, +Ab21b,,,EA057,NA,,,, +Ab22,,,EA057,NA,,,, +Ab3,Ruling Luyana,1890,EA057,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA057,10,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA057,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA057,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA057,NA,,,, +Ab8,,,EA057,NA,,,, +Ab9,,1870,EA057,3,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA057,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA057,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,,EA057,NA,,,, +Ac12,,,EA057,NA,,,, +Ac13,,,EA057,NA,,,, +Ac14,,,EA057,NA,,,, +Ac15,,,EA057,NA,,,, +Ac16,,,EA057,NA,,,, +Ac17,,,EA057,NA,,,, +Ac18,,1910,EA057,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA057,NA,,,, +Ac2,,,EA057,NA,,,, +Ac20,,,EA057,NA,,,, +Ac21,,,EA057,NA,,,, +Ac22,,,EA057,NA,,,, +Ac23,,,EA057,NA,,,, +Ac24,,,EA057,NA,,,, +Ac25,,,EA057,NA,,,, +Ac26,,,EA057,NA,,,, +Ac27,,,EA057,NA,,,, +Ac28,,,EA057,NA,,,, +Ac29,,,EA057,NA,,,, +Ac3,Zambia branch,1900,EA057,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,,EA057,NA,,,, +Ac31,,1910,EA057,10,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA057,NA,,,, +Ac33,,,EA057,NA,,,, +Ac34,,1940,EA057,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA057,NA,,,, +Ac36,,,EA057,NA,,,, +Ac37,,,EA057,NA,,,, +Ac38,,,EA057,NA,,,, +Ac39,,,EA057,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA057,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA057,NA,,,, +Ac41,,,EA057,NA,,,, +Ac42,,,EA057,NA,,,, +Ac43,,,EA057,NA,,,, +Ac5,,,EA057,NA,,,, +Ac6,,,EA057,NA,,,, +Ac7,,1920,EA057,10,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,,EA057,NA,,,, +Ac9,,,EA057,NA,,,, +Ad1,,1950,EA057,10,Despised as slave occupation,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,,EA057,NA,,,, +Ad11,,,EA057,NA,,,, +Ad12,,,EA057,NA,,,, +Ad13,,1930,EA057,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA057,NA,,,, +Ad15,,,EA057,NA,,,, +Ad16,,,EA057,NA,,,, +Ad17,,,EA057,NA,,,, +Ad18,,,EA057,NA,,,, +Ad19,,,EA057,NA,,,, +Ad2,,1950,EA057,3,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,,EA057,NA,,,, +Ad21,,,EA057,NA,,,, +Ad22,,,EA057,NA,,,, +Ad23,,,EA057,NA,,,, +Ad24,,,EA057,NA,,,, +Ad25,,,EA057,NA,,,, +Ad26,,,EA057,NA,,,, +Ad27,,,EA057,NA,,,, +Ad28,,,EA057,NA,,,, +Ad29,,1930,EA057,10,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA057,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,,EA057,NA,,,, +Ad31,,,EA057,NA,,,, +Ad32,,,EA057,NA,,,, +Ad33,,,EA057,NA,,,, +Ad34,,,EA057,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA057,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA057,NA,,,, +Ad37,,,EA057,NA,,,, +Ad38,,,EA057,NA,,,, +Ad39,,,EA057,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA057,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA057,NA,,,, +Ad41,,,EA057,NA,,,, +Ad42,,,EA057,NA,,,, +Ad43,,,EA057,NA,,,, +Ad44,,,EA057,NA,,,, +Ad45,,,EA057,NA,,,, +Ad46,,1950,EA057,10,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,,EA057,NA,,,, +Ad48,,1950,EA057,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA057,NA,,,, +Ad5,,,EA057,NA,,,, +Ad50,,,EA057,NA,,,, +Ad51,,,EA057,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA057,10,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA057,3,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,,,EA057,NA,,,, +Ad9,,1900,EA057,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,,,EA057,NA,,,, +Ae10,,1910,EA057,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA057,10,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,,EA057,NA,,,, +Ae13,,,EA057,NA,,,, +Ae14,,1950,EA057,9,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,,EA057,NA,,,, +Ae16,,,EA057,NA,,,, +Ae17,,,EA057,NA,,,, +Ae18,,,EA057,NA,,,, +Ae19,,,EA057,NA,,,, +Ae2,,,EA057,NA,,,, +Ae20,,,EA057,NA,,,, +Ae21,,,EA057,NA,,,, +Ae22,,,EA057,NA,,,, +Ae23,,,EA057,NA,,,, +Ae24,,,EA057,NA,,,, +Ae25,,,EA057,NA,,,, +Ae26,,,EA057,NA,,,, +Ae27,,,EA057,NA,,,, +Ae28,,1900,EA057,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,,EA057,NA,,,, +Ae3,,,EA057,NA,,,, +Ae30,,,EA057,NA,,,, +Ae31,,,EA057,NA,,,, +Ae32,,,EA057,NA,,,, +Ae33,,,EA057,NA,,,, +Ae34,,,EA057,NA,,,, +Ae35,,,EA057,NA,,,, +Ae36,,,EA057,NA,,,, +Ae37,,,EA057,NA,,,, +Ae38,,,EA057,NA,,,, +Ae39,,1920,EA057,10,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA057,10,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA057,NA,,,, +Ae41,,,EA057,NA,,,, +Ae42,,,EA057,NA,,,, +Ae43,,,EA057,NA,,,, +Ae44,,,EA057,NA,,,, +Ae45,,,EA057,NA,,,, +Ae46,,,EA057,NA,,,, +Ae47,,,EA057,NA,,,, +Ae48,,,EA057,NA,,,, +Ae49,,,EA057,NA,,,, +Ae5,,,EA057,NA,,,, +Ae50,,1920,EA057,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,,,EA057,NA,,,, +Ae52,,,EA057,NA,,,, +Ae53,,,EA057,NA,,,, +Ae54,,,EA057,NA,,,, +Ae55,,,EA057,NA,,,, +Ae56,,,EA057,NA,,,, +Ae57,,,EA057,NA,,,, +Ae58,,,EA057,NA,,,, +Ae59,,,EA057,NA,,,, +Ae6,,,EA057,NA,,,, +Ae7,,1910,EA057,10,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA057,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,,EA057,NA,,,, +Af1,City and environs of Abomey,1890,EA057,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA057,10,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA057,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA057,NA,,,, +Af13,,,EA057,NA,,,, +Af14,,,EA057,NA,,,, +Af15,,,EA057,NA,,,, +Af16,,,EA057,NA,,,, +Af17,,,EA057,NA,,,, +Af18,,,EA057,NA,,,, +Af19,,,EA057,NA,,,, +Af2,,,EA057,NA,,,, +Af20,,,EA057,NA,,,, +Af21,,,EA057,NA,,,, +Af22,,,EA057,NA,,,, +Af23,with special reference to the village of Mgbom,1950,EA057,10,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA057,3,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,,EA057,NA,,,, +Af26,,,EA057,NA,,,, +Af27,,,EA057,NA,,,, +Af28,,1910,EA057,3,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA057,NA,,,, +Af3,,,EA057,NA,,,, +Af30,,,EA057,NA,,,, +Af31,,,EA057,NA,,,, +Af32,,,EA057,NA,,,, +Af33,,,EA057,NA,,,, +Af34,,,EA057,NA,,,, +Af35,,,EA057,NA,,,, +Af36,,,EA057,NA,,,, +Af37,,,EA057,NA,,,, +Af38,,,EA057,NA,,,, +Af39,,,EA057,NA,,,, +Af4,,,EA057,NA,,,, +Af40,,,EA057,NA,,,, +Af41,,,EA057,NA,,,, +Af42,,,EA057,NA,,,, +Af43,,,EA057,NA,,,, +Af44,,,EA057,NA,,,, +Af45,,,EA057,NA,,,, +Af46,,,EA057,NA,,,, +Af47,,,EA057,NA,,,, +Af48,,,EA057,NA,,,, +Af49,,,EA057,NA,,,, +Af5,,1930,EA057,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA057,NA,,,, +Af51,,1920,EA057,10,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,,EA057,NA,,,, +Af53,,,EA057,NA,,,, +Af54,,1930,EA057,9,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA057,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA057,10,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA057,3,But these specialists are aliens of the Yalunka tribe,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA057,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA057,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,,EA057,NA,,,, +Af8,,,EA057,NA,,,, +Af9,,,EA057,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA057,3,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA057,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,,EA057,NA,,,, +Ag12,,1910,EA057,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,,EA057,NA,,,, +Ag14,,,EA057,NA,,,, +Ag15,,,EA057,NA,,,, +Ag16,,,EA057,NA,,,, +Ag17,,,EA057,NA,,,, +Ag18,,,EA057,NA,,,, +Ag19,,,EA057,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA057,3,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA057,NA,,,, +Ag21,,,EA057,NA,,,, +Ag22,with special reference to those of Sine,1920,EA057,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA057,NA,,,, +Ag24,,,EA057,NA,,,, +Ag25,,1900,EA057,3,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p72, +Ag26,,1930,EA057,3,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p72, +Ag27,,,EA057,NA,,,, +Ag28,,,EA057,NA,,,, +Ag29,,,EA057,NA,,,, +Ag3,,1930,EA057,3,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA057,3,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,,EA057,NA,,,, +Ag32,,1900,EA057,3,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA057,NA,,,, +Ag34,,,EA057,NA,,,, +Ag35,,,EA057,NA,,,, +Ag36,,,EA057,NA,,,, +Ag37,,,EA057,NA,,,, +Ag38,,,EA057,NA,,,, +Ag39,,,EA057,NA,,,, +Ag4,Tallensi Tribe,1930,EA057,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA057,NA,,,, +Ag41,,1920,EA057,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p72, +Ag42,,,EA057,NA,,,, +Ag43,,,EA057,NA,,,, +Ag44,,,EA057,NA,,,, +Ag45,,,EA057,NA,,,, +Ag46,,,EA057,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA057,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,,EA057,NA,,,, +Ag49,,1930,EA057,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA057,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,,EA057,NA,,,, +Ag51,,,EA057,NA,,,, +Ag52,,,EA057,NA,,,, +Ag53,,,EA057,NA,,,, +Ag54,,1910,EA057,3,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA057,NA,,,, +Ag7,,,EA057,NA,,,, +Ag8,,,EA057,NA,,,, +Ag9,,1930,EA057,3,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,,,EA057,NA,,,, +Ah10,,,EA057,NA,,,, +Ah11,,,EA057,NA,,,, +Ah12,,,EA057,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA057,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA057,9,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah15,,,EA057,NA,,,, +Ah16,,,EA057,NA,,,, +Ah17,,,EA057,NA,,,, +Ah18,,,EA057,NA,,,, +Ah19,,,EA057,NA,,,, +Ah2,,,EA057,NA,,,, +Ah20,,,EA057,NA,,,, +Ah21,,,EA057,NA,,,, +Ah22,,,EA057,NA,,,, +Ah23,,,EA057,NA,,,, +Ah24,,,EA057,NA,,,, +Ah25,,,EA057,NA,,,, +Ah26,,,EA057,NA,,,, +Ah27,,,EA057,NA,,,, +Ah28,,,EA057,NA,,,, +Ah29,,,EA057,NA,,,, +Ah3,Tar of Benue Province,1920,EA057,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA057,NA,,,, +Ah31,,,EA057,NA,,,, +Ah32,,,EA057,NA,,,, +Ah33,,,EA057,NA,,,, +Ah34,,,EA057,NA,,,, +Ah35,,,EA057,NA,,,, +Ah36,,1920,EA057,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA057,NA,,,, +Ah38,,1930,EA057,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA057,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA057,NA,,,, +Ah5,,,EA057,NA,,,, +Ah6,,,EA057,NA,,,, +Ah7,,1940,EA057,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,,EA057,NA,,,, +Ah9,,1920,EA057,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,,EA057,NA,,,, +Ai10,,,EA057,NA,,,, +Ai11,,,EA057,NA,,,, +Ai12,,,EA057,NA,,,, +Ai13,,,EA057,NA,,,, +Ai14,,1920,EA057,10,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,,EA057,NA,,,, +Ai16,,,EA057,NA,,,, +Ai17,,,EA057,NA,,,, +Ai18,,,EA057,NA,,,, +Ai19,,,EA057,NA,,,, +Ai2,,,EA057,NA,,,, +Ai20,,,EA057,NA,,,, +Ai21,,,EA057,NA,,,, +Ai22,,,EA057,NA,,,, +Ai23,,,EA057,NA,,,, +Ai24,,,EA057,NA,,,, +Ai25,,,EA057,NA,,,, +Ai26,,,EA057,NA,,,, +Ai27,,,EA057,NA,,,, +Ai28,,1910,EA057,10,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,,EA057,NA,,,, +Ai3,,1920,EA057,10,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,,EA057,NA,,,, +Ai31,,1920,EA057,9,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,,EA057,NA,,,, +Ai33,,,EA057,NA,,,, +Ai34,,,EA057,NA,,,, +Ai35,,,EA057,NA,,,, +Ai36,,,EA057,NA,,,, +Ai37,,,EA057,NA,,,, +Ai38,,,EA057,NA,,,, +Ai39,,,EA057,NA,,,, +Ai4,,,EA057,NA,,,, +Ai40,,,EA057,NA,,,, +Ai41,,,EA057,NA,,,, +Ai42,,,EA057,NA,,,, +Ai43,,,EA057,NA,,,, +Ai44,,,EA057,NA,,,, +Ai45,,,EA057,NA,,,, +Ai46,,,EA057,NA,,,, +Ai47,Northern division,1939,EA057,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,1920,EA057,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA057,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,,EA057,NA,,,, +Ai8,,,EA057,NA,,,, +Ai9,,,EA057,NA,,,, +Aj1,,,EA057,NA,,,, +Aj10,,,EA057,NA,,,, +Aj11,,,EA057,NA,,,, +Aj12,,,EA057,NA,,,, +Aj13,,,EA057,NA,,,, +Aj14,,,EA057,NA,,,, +Aj15,,,EA057,NA,,,, +Aj16,with special reference to the Riverain Mondari,1930,EA057,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,,EA057,NA,,,, +Aj18,,1950,EA057,9,,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,,EA057,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA057,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA057,NA,,,, +Aj21,,1930,EA057,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,,EA057,NA,,,, +Aj23,,,EA057,NA,,,, +Aj24,,,EA057,NA,,,, +Aj25,,,EA057,NA,,,, +Aj26,,,EA057,NA,,,, +Aj27,,,EA057,NA,,,, +Aj28,,,EA057,NA,,,, +Aj29,,,EA057,NA,,,, +Aj3,,,EA057,NA,,,, +Aj30,,,EA057,NA,,,, +Aj31,,,EA057,NA,,,, +Aj4,,,EA057,NA,,,, +Aj5,,1920,EA057,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA057,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA057,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,,EA057,NA,,,, +Aj9,,1920,EA057,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA057,3,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA057,3,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA057,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA057,3,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA057,3,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA057,3,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA057,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA057,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA057,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA057,NA,,,, +Ca19,,,EA057,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA057,3,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA057,NA,,,, +Ca21,,,EA057,NA,,,, +Ca22,,,EA057,NA,,,, +Ca23,,1950,EA057,3,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA057,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA057,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA057,NA,,,, +Ca27,,,EA057,NA,,,, +Ca28,,1950,EA057,3,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA057,3,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,,EA057,NA,,,, +Ca30,Kafa Kingdom,1890,EA057,3,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,1860,EA057,9,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA057,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA057,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA057,NA,,,, +Ca35,,,EA057,NA,,,, +Ca36,,,EA057,NA,,,, +Ca37,,,EA057,NA,,,, +Ca38,,,EA057,NA,,,, +Ca39,,1930,EA057,3,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,1950,EA057,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA057,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA057,3,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,,EA057,NA,,,, +Ca43,,,EA057,NA,,,, +Ca5,,1930,EA057,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p80, +Ca6,,,EA057,NA,,,, +Ca7,Gondar district,1950,EA057,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA057,NA,,,, +Ca9,,,EA057,NA,,,, +Cb1,,,EA057,NA,,,, +Cb10,,,EA057,NA,,,, +Cb11,,,EA057,NA,,,, +Cb12,,,EA057,NA,,,, +Cb13,,,EA057,NA,,,, +Cb14,,,EA057,NA,,,, +Cb15,,,EA057,NA,,,, +Cb16,,,EA057,NA,,,, +Cb17,,,EA057,NA,,,, +Cb18,,,EA057,NA,,,, +Cb19,,1870,EA057,9,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p80, +Cb2,Upper and lower Salum in Gambia,1950,EA057,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,,EA057,NA,,,, +Cb21,,,EA057,NA,,,, +Cb22,,,EA057,NA,,,, +Cb23,,1930,EA057,3,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,Wodaabe of Niger,1950,EA057,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p84, +Cb25,,,EA057,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA057,3,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA057,NA,,,, +Cb28,,,EA057,NA,,,, +Cb29,,,EA057,NA,,,, +Cb3,Bamba division,1940,EA057,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA057,NA,,,, +Cb5,,,EA057,NA,,,, +Cb6,,,EA057,NA,,,, +Cb7,,,EA057,NA,,,, +Cb8,,,EA057,NA,,,, +Cb9,,,EA057,NA,,,, +Cc1,,1950,EA057,9,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA057,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA057,NA,,,, +Cc12,,,EA057,NA,,,, +Cc13,,,EA057,NA,,,, +Cc14,,1880,EA057,3,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA057,NA,,,, +Cc16,,1930,EA057,3,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA057,3,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA057,NA,,,, +Cc19,,,EA057,NA,,,, +Cc2,Nomads of Tibesti,1950,EA057,3,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA057,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA057,3,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA057,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA057,3,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA057,NA,,,, +Cc7,,,EA057,NA,,,, +Cc8,,,EA057,NA,,,, +Cc9,Ahaggaren tribe,1920,EA057,9,But rare,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,,,EA057,NA,,,, +Cd10,,,EA057,NA,,,, +Cd11,,,EA057,NA,,,, +Cd12,,1870,EA057,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA057,NA,,,, +Cd14,,,EA057,NA,,,, +Cd15,,,EA057,NA,,,, +Cd16,,,EA057,NA,,,, +Cd17,,,EA057,NA,,,, +Cd18,,,EA057,NA,,,, +Cd19,,,EA057,NA,,,, +Cd2,Town and environs of Silwa,1950,EA057,3,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA057,NA,,,, +Cd21,,,EA057,NA,,,, +Cd3,Entirety: Moroccan,1920,EA057,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA057,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA057,3,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,,,EA057,NA,,,, +Cd7,,,EA057,NA,,,, +Cd8,,,EA057,NA,,,, +Cd9,,,EA057,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA057,3,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA057,NA,,,, +Ce3,City and environs of Rome,100,EA057,3,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA057,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA057,9,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA057,3,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,,,EA057,NA,,,, +Ce8,,,EA057,NA,,,, +Cf1,Small City in Connecticut,1920,EA057,4,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA057,NA,,,, +Cf3,,1930,EA057,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA057,9,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA057,4,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA057,4,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,,EA057,NA,,,, +Cg3,,,EA057,NA,,,, +Cg4,Konkama District,1950,EA057,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA057,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA057,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA057,NA,,,, +Ch11,,,EA057,NA,,,, +Ch2,,1890,EA057,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA057,4,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,1900,EA057,9,,heffner1955; wichmann1913,EthnographicAtlas_1967_p84, +Ch5,with special reference to the village of Dragelevtsy,1940,EA057,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,,EA057,NA,,,, +Ch7,,,EA057,NA,,,, +Ch8,,,EA057,NA,,,, +Ch9,,1930,EA057,9,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA057,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA057,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA057,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA057,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA057,NA,,,, +Ci3,,,EA057,NA,,,, +Ci4,,,EA057,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA057,10,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA057,9,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p84, +Ci7,,1900,EA057,9,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p84, +Ci8,,,EA057,NA,,,, +Ci9,,,EA057,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA057,9,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,,,EA057,NA,,,, +Cj2,Unspecified,1920,EA057,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA057,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA057,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,,EA057,NA,,,, +Cj6,,,EA057,NA,,,, +Cj7,,,EA057,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA057,3,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,1950,EA057,3,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA057,3,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,with special reference to the more nomadic groups,1950,EA057,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA057,NA,,,, +Ea12,,1940,EA057,9,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,,,EA057,NA,,,, +Ea2,,,EA057,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA057,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA057,9,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA057,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA057,9,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,,EA057,NA,,,, +Ea8,,,EA057,NA,,,, +Ea9,,1950,EA057,9,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA057,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA057,9,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA057,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA057,NA,,,, +Eb5,,,EA057,NA,,,, +Eb6,,,EA057,NA,,,, +Eb7,,1930,EA057,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA057,NA,,,, +Ec1,Sakhalin Island,1920,EA057,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA057,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,,EA057,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA057,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA057,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA057,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA057,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,,,EA057,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA057,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA057,NA,,,, +Ec9,,,EA057,NA,,,, +Ed1,Kanghwa Island,1950,EA057,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,,,EA057,NA,,,, +Ed13,,,EA057,NA,,,, +Ed14,,,EA057,NA,,,, +Ed15a,,,EA057,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA057,10,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA057,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA057,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,,,EA057,NA,,,, +Ed4,,,EA057,NA,,,, +Ed5,,,EA057,NA,,,, +Ed6,,,EA057,NA,,,, +Ed7,,,EA057,NA,,,, +Ed8,,1930,EA057,9,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA057,9,But very unimportant,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA057,10,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA057,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA057,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA057,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA057,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA057,9,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA057,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA057,3,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,,,EA057,NA,,,, +Ef10,,,EA057,NA,,,, +Ef11,Village and environs of Senapur,1945,EA057,3,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA057,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA057,NA,,,, +Ef4,,,EA057,NA,,,, +Ef5,,1900,EA057,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,,EA057,NA,,,, +Ef7,,,EA057,NA,,,, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA057,3,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA057,3,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA057,10,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA057,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA057,NA,,,, +Eg12,,,EA057,NA,,,, +Eg13,,,EA057,NA,,,, +Eg14,,,EA057,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA057,3,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,,,EA057,NA,,,, +Eg4,,,EA057,NA,,,, +Eg5,,,EA057,NA,,,, +Eg6,,,EA057,NA,,,, +Eg7,,,EA057,NA,,,, +Eg8,,,EA057,NA,,,, +Eg9,,,EA057,NA,,,, +Eh1,,1870,EA057,10,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA057,NA,,,, +Eh2,,1900,EA057,10,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA057,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA057,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,,,EA057,NA,,,, +Eh6,,,EA057,NA,,,, +Eh7,,,EA057,NA,,,, +Eh8,,1900,EA057,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA057,NA,,,, +Ei1,Rengsanggr,1900,EA057,10,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA057,NA,,,, +Ei11,,,EA057,NA,,,, +Ei12,,,EA057,NA,,,, +Ei13,,1910,EA057,10,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA057,10,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA057,NA,,,, +Ei16,,,EA057,NA,,,, +Ei17,,,EA057,NA,,,, +Ei18,,,EA057,NA,,,, +Ei19,,,EA057,NA,,,, +Ei2,,1920,EA057,10,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA057,NA,,,, +Ei3,,,EA057,NA,,,, +Ei4,Lakher Tribe,1930,EA057,10,,parry1932,EthnographicAtlas_1967_p92, +Ei5,,,EA057,NA,,,, +Ei6,,1930,EA057,10,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,,EA057,NA,,,, +Ei8,with special reference to those of the Jaintia Hills,1900,EA057,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,,EA057,NA,,,, +Ej1,,,EA057,NA,,,, +Ej10,Ko-Sier Village,1950,EA057,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA057,NA,,,, +Ej12,,,EA057,NA,,,, +Ej13,,,EA057,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA057,10,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA057,NA,,,, +Ej16,,,EA057,NA,,,, +Ej2,,,EA057,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA057,10,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,,,EA057,NA,,,, +Ej5,,,EA057,NA,,,, +Ej6,,,EA057,NA,,,, +Ej7,,,EA057,NA,,,, +Ej8,,,EA057,NA,,,, +Ej9,,,EA057,NA,,,, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA057,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,,EA057,NA,,,, +Ia11,,1930,EA057,9,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,,EA057,NA,,,, +Ia13,,,EA057,NA,,,, +Ia14,,,EA057,NA,,,, +Ia15,,,EA057,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA057,10,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA057,NA,,,, +Ia18,,,EA057,NA,,,, +Ia2,,1950,EA057,10,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA057,10,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,,,EA057,NA,,,, +Ia5,,,EA057,NA,,,, +Ia6,Su-Paiwan Village,1930,EA057,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA057,NA,,,, +Ia8,,,EA057,NA,,,, +Ia9,,,EA057,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA057,10,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA057,10,"For rural Java, but leather work is produced by urban craftsmen, mainly Chinese",dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA057,10,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,,,EA057,NA,,,, +Ib5,,,EA057,NA,,,, +Ib6,,,EA057,NA,,,, +Ib7,with special reference to those of North Pageh,1920,EA057,10,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,,,EA057,NA,,,, +Ib9,,,EA057,NA,,,, +Ic1,,,EA057,NA,,,, +Ic10,,,EA057,NA,,,, +Ic11,,,EA057,NA,,,, +Ic12,,,EA057,NA,,,, +Ic13,,,EA057,NA,,,, +Ic2,,,EA057,NA,,,, +Ic3,,,EA057,NA,,,, +Ic4,,,EA057,NA,,,, +Ic5,Bare'e subgroup,1910,EA057,10,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,,EA057,NA,,,, +Ic7,,,EA057,NA,,,, +Ic8,,,EA057,NA,,,, +Ic9,,,EA057,NA,,,, +Id1,Alice Springs and environs,1900,EA057,10,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA057,10,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA057,10,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA057,NA,,,, +Id13,,1930,EA057,10,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA057,10,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,,,EA057,NA,,,, +Id4,,1900,EA057,10,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA057,10,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA057,10,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,,EA057,NA,,,, +Id8,,1830,EA057,10,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA057,10,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA057,10,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA057,10,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA057,10,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA057,10,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA057,NA,,,, +Ie14,,,EA057,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA057,10,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA057,NA,,,, +Ie17,,,EA057,NA,,,, +Ie18,Bamol Village,1940,EA057,10,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA057,10,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,,EA057,NA,,,, +Ie20,,1900,EA057,10,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,,EA057,NA,,,, +Ie22,,1900,EA057,10,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,,EA057,NA,,,, +Ie24,,1870,EA057,10,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA057,10,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA057,10,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,,EA057,NA,,,, +Ie28,,,EA057,NA,,,, +Ie29,,,EA057,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA057,10,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA057,NA,,,, +Ie31,,1950,EA057,10,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA057,10,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA057,NA,,,, +Ie34,,,EA057,NA,,,, +Ie35,,,EA057,NA,,,, +Ie36,,,EA057,NA,,,, +Ie37,,,EA057,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA057,10,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA057,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA057,10,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA057,10,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,,EA057,NA,,,, +Ie7,with special reference to the Mae group,1950,EA057,10,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,,,EA057,NA,,,, +Ie9,,1920,EA057,10,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,,,EA057,NA,,,, +If10,,,EA057,NA,,,, +If11,,1860,EA057,10,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA057,10,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA057,10,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA057,10,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA057,10,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA057,10,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA057,10,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA057,10,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA057,10,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA057,10,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA057,10,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA057,10,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA057,10,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA057,10,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA057,10,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA057,10,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA057,10,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA057,10,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,,,EA057,NA,,,, +Ig13,,,EA057,NA,,,, +Ig14,,1900,EA057,10,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA057,NA,,,, +Ig16,,,EA057,NA,,,, +Ig17,,,EA057,NA,,,, +Ig18,,,EA057,NA,,,, +Ig19,,,EA057,NA,,,, +Ig2,Kiriwina Island,1910,EA057,10,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,,,EA057,NA,,,, +Ig21,,,EA057,NA,,,, +Ig3,,1930,EA057,10,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA057,10,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,,EA057,NA,,,, +Ig6,,1900,EA057,10,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,,EA057,NA,,,, +Ig8,,,EA057,NA,,,, +Ig9,,,EA057,NA,,,, +Ih1,,,EA057,NA,,,, +Ih10,,,EA057,NA,,,, +Ih11,,,EA057,NA,,,, +Ih12,,,EA057,NA,,,, +Ih13,,,EA057,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA057,10,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA057,10,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA057,NA,,,, +Ih4,Lau Island,1920,EA057,10,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA057,NA,,,, +Ih6,,,EA057,NA,,,, +Ih7,,,EA057,NA,,,, +Ih8,with special reference to the village of Nakaroka,1940,EA057,10,,quain1949,EthnographicAtlas_1967_p100, +Ih9,,,EA057,NA,,,, +Ii1,with special reference to American Samoa,1920,EA057,10,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA057,NA,,,, +Ii12,Pangai,1920,EA057,10,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA057,10,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA057,10,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA057,10,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA057,10,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA057,10,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA057,10,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA057,10,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA057,10,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA057,10,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA057,10,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA057,10,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA057,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA057,10,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA057,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA057,10,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA057,10,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA057,10,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA057,10,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA057,10,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA057,10,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA057,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA057,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA057,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA057,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA057,9,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA057,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA057,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA057,9,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA057,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA057,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA057,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA057,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA057,10,"Men scrape and women chew skins, but the preparation is strictly mechanical",birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA057,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA057,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA057,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA057,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA057,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA057,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA057,9,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA057,9,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA057,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA057,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA057,9,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA057,9,"In Murdock (1964a) coded as 'equal participation' (EA046 code ""4"") with the comment ""Entry follows Lips; Burgesse reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9""). In EA the entry is 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA057,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA057,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA057,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA057,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA057,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA057,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA057,9,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA057,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,,EA057,NA,,,, +Na41,Mainland division,1700,EA057,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA057,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA057,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA057,NA,,,, +Na45,,1900,EA057,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA057,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA057,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA057,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA057,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA057,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA057,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,,EA057,NA,,,, +Nb11,with special reference to the Central Nootka,1880,EA057,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA057,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA057,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA057,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA057,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA057,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA057,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA057,9,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA057,9,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA057,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,,EA057,NA,,,, +Nb21,,1860,EA057,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA057,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA057,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA057,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA057,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA057,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA057,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,,EA057,NA,,,, +Nb29,,,EA057,NA,,,, +Nb3,,,EA057,NA,,,, +Nb30,,1860,EA057,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,,EA057,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA057,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA057,9,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA057,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA057,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA057,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA057,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA057,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA057,9,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA057,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA057,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA057,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,,EA057,NA,,,, +Nb8,,1880,EA057,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,,,EA057,NA,,,, +Nc1,,1850,EA057,9,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA057,9,"Entry follows Voegelin; Stewart reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA057,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA057,9,"Entry follows Voegelin; Dixon reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA057,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA057,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA057,9,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,,EA057,NA,,,, +Nc17,with special reference to those of Kalekau,1860,EA057,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA057,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA057,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA057,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA057,9,Skins were scraped but not actually tanned,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,,EA057,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA057,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA057,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA057,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA057,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA057,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA057,9,,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA057,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA057,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,,,EA057,NA,,,, +Nc30,,1870,EA057,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA057,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA057,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA057,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,,EA057,NA,,,, +Nc4,,1860,EA057,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,,,EA057,NA,,,, +Nc6,with special reference to the Southern Diegueno,1850,EA057,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA057,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA057,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA057,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA057,9,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA057,9,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA057,9,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA057,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA057,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA057,9,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA057,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA057,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA057,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA057,9,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA057,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA057,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA057,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA057,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA057,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA057,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA057,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA057,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA057,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA057,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA057,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA057,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,,EA057,NA,,,, +Nd31,,1850,EA057,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA057,9,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA057,9,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA057,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA057,9,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA057,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA057,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA057,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA057,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA057,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA057,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA057,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA057,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA057,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA057,9,"Entry follows Stewart; Drucker reports 'males alone' (EA046 code ""1""), with no specialization specified (EA057 code ""9"")",drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA057,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA057,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA057,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA057,9,"Entry follows Kelly; Stewart reports 'females alone' (EA046 code ""6""), with no specialization specified (EA057 code ""9"")",kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA057,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA057,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA057,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA057,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA057,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA057,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA057,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA057,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA057,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA057,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA057,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA057,9,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA057,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA057,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA057,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA057,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA057,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA057,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA057,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA057,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA057,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA057,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA057,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA057,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA057,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA057,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA057,9,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA057,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA057,NA,,,, +Ne3,Comanche Tribe,1870,EA057,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA057,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA057,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,,EA057,NA,,,, +Ne7,,1880,EA057,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA057,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA057,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA057,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA057,9,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA057,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA057,9,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA057,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA057,NA,,,, +Nf2,,1850,EA057,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA057,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA057,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,,EA057,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA057,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA057,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA057,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA057,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA057,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA057,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA057,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA057,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA057,NA,,,, +Ng14,,,EA057,NA,,,, +Ng15,,,EA057,NA,,,, +Ng2,,,EA057,NA,,,, +Ng3,Upper division in Alabama,1750,EA057,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA057,NA,,,, +Ng5,,,EA057,NA,,,, +Ng6,with special reference to the Munsee,1700,EA057,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA057,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,,EA057,NA,,,, +Ng9,,,EA057,NA,,,, +Nh1,Central band,1880,EA057,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA057,NA,,,, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA057,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA057,9,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,,EA057,NA,,,, +Nh14,,,EA057,NA,,,, +Nh15,,1870,EA057,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA057,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA057,9,"But in some bands: 'males alone' (EA046 code ""1""), with no specialization specified (EA057 code ""9"")",gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA057,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA057,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,,EA057,NA,,,, +Nh20,,,EA057,NA,,,, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA057,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA057,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA057,10,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA057,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA057,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA057,NA,,,, +Nh27,,,EA057,NA,,,, +Nh3,,1930,EA057,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,,,EA057,NA,,,, +Nh5,,1850,EA057,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,,EA057,NA,,,, +Nh7,,,EA057,NA,,,, +Nh8,,,EA057,NA,,,, +Nh9,,,EA057,NA,,,, +Ni1,,1930,EA057,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA057,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA057,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,,EA057,NA,,,, +Ni5,,1570,EA057,9,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA057,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA057,9,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA057,NA,,,, +Ni9,,,EA057,NA,,,, +Nj1,,,EA057,NA,,,, +Nj10,,,EA057,NA,,,, +Nj11,,,EA057,NA,,,, +Nj12,,,EA057,NA,,,, +Nj13,,,EA057,NA,,,, +Nj14,,,EA057,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA057,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,,,EA057,NA,,,, +Nj4,,,EA057,NA,,,, +Nj5,,,EA057,NA,,,, +Nj6,,,EA057,NA,,,, +Nj7,with special reference to Ayutla,1930,EA057,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA057,NA,,,, +Nj9,,1960,EA057,10,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,,,EA057,NA,,,, +Sa10,,1900,EA057,10,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA057,NA,,,, +Sa12,,1948,EA057,9,,stone1948,EthnographicAtlas_1967_p120, +Sa13,,,EA057,NA,,,, +Sa14,,,EA057,NA,,,, +Sa15,,,EA057,NA,,,, +Sa16,,,EA057,NA,,,, +Sa17,,,EA057,NA,,,, +Sa2,,,EA057,NA,,,, +Sa3,,1930,EA057,9,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,,,EA057,NA,,,, +Sa5,,1950,EA057,10,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,,EA057,NA,,,, +Sa7,,1940,EA057,10,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA057,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA057,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,,,EA057,NA,,,, +Sb2,,,EA057,NA,,,, +Sb3,,,EA057,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA057,10,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA057,NA,,,, +Sb6,Goajiro Tribe,1940,EA057,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA057,10,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA057,10,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA057,3,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA057,10,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA057,10,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA057,10,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA057,10,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA057,10,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA057,10,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA057,10,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA057,10,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA057,10,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA057,10,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,,EA057,NA,,,, +Sc3,Barama River,1930,EA057,10,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA057,10,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,,EA057,NA,,,, +Sc6,,,EA057,NA,,,, +Sc7,,1950,EA057,10,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,,EA057,NA,,,, +Sc9,,1950,EA057,10,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,,,EA057,NA,,,, +Sd2,,1930,EA057,10,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA057,10,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,,EA057,NA,,,, +Sd5,,,EA057,NA,,,, +Sd6,,1960,EA057,10,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,,EA057,NA,,,, +Sd8,,1950,EA057,10,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA057,10,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA057,10,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA057,NA,,,, +Se11,,1960,EA057,10,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA057,NA,,,, +Se2,,,EA057,NA,,,, +Se3,,1930,EA057,10,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA057,9,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA057,10,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA057,10,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA057,NA,,,, +Se8,Upper Inuya River,1950,EA057,10,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA057,10,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA057,10,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA057,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,,,EA057,NA,,,, +Sf4,,,EA057,NA,,,, +Sf5,,,EA057,NA,,,, +Sf6,,,EA057,NA,,,, +Sf7,,,EA057,NA,,,, +Sf8,,,EA057,NA,,,, +Sf9,,,EA057,NA,,,, +Sg1,Eastern and central,1870,EA057,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA057,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA057,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA057,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA057,10,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA057,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA057,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA057,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA057,9,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA057,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA057,10,But there was no actual tanning,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA057,9,But tanning is not aboriginal,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124,"Assume Murdock comment meant for Col 46, not Col 47 as stated Gray (1999)" +Sh8,with special reference to those of the Argentine Chaco,1964,EA057,10,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA057,10,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,,,EA057,NA,,,, +Si10,,1950,EA057,10,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,,,EA057,NA,,,, +Si3,Simao Lopes,1940,EA057,10,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA057,10,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,,EA057,NA,,,, +Si6,,,EA057,NA,,,, +Si7,,,EA057,NA,,,, +Si8,,,EA057,NA,,,, +Si9,,,EA057,NA,,,, +Sj1,,,EA057,NA,,,, +Sj10,Taquapiri,1950,EA057,10,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,,,EA057,NA,,,, +Sj2,,,EA057,NA,,,, +Sj3,,,EA057,NA,,,, +Sj4,Ramcocamecra or Canella,1930,EA057,10,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,,,EA057,NA,,,, +Sj6,,,EA057,NA,,,, +Sj7,,,EA057,NA,,,, +Sj8,Hinterland of Rio de Janeiro,1600,EA057,10,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,,EA057,NA,,,, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA057,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA057,10,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA057,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA057,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA057,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA057,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,,,EA057,NA,,,, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA057,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA057,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA057,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,,,EA057,NA,,,, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA057,3,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA057,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA057,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA057,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA057,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA057,3,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA057,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA057,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA057,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA057,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA057,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA057,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA057,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA057,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA057,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA057,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA058,10,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA058,10,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA058,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA058,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA058,10,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA058,NA,,,, +Aa7,,1910,EA058,10,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA058,10,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA058,NA,,,, +Ab1,,,EA058,NA,,,, +Ab10,,1936,EA058,9,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA058,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA058,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA058,3,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA058,9,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA058,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA058,NA,,,, +Ab17,,,EA058,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA058,9,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA058,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,,EA058,NA,,,, +Ab20,,,EA058,NA,,,, +Ab21a,,,EA058,NA,,,, +Ab21b,,,EA058,NA,,,, +Ab22,,,EA058,NA,,,, +Ab3,Ruling Luyana,1890,EA058,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA058,9,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA058,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA058,3,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA058,NA,,,, +Ab8,Basuto,1860,EA058,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA058,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA058,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA058,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA058,9,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,1920,EA058,9,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p64, +Ac13,,1950,EA058,9,,tew1950; velsen1964,EthnographicAtlas_1967_p64, +Ac14,,,EA058,NA,,,, +Ac15,,,EA058,NA,,,, +Ac16,,,EA058,NA,,,, +Ac17,Feshi territory lineage center,1910,EA058,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA058,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA058,NA,,,, +Ac2,,,EA058,NA,,,, +Ac20,,,EA058,NA,,,, +Ac21,,,EA058,NA,,,, +Ac22,,,EA058,NA,,,, +Ac23,with special reference to the western Lele,1950,EA058,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA058,NA,,,, +Ac25,,,EA058,NA,,,, +Ac26,,,EA058,NA,,,, +Ac27,,,EA058,NA,,,, +Ac28,,1930,EA058,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA058,NA,,,, +Ac3,Zambia branch,1900,EA058,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA058,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA058,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA058,NA,,,, +Ac33,,1940,EA058,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,1940,EA058,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA058,NA,,,, +Ac36,,,EA058,NA,,,, +Ac37,,,EA058,NA,,,, +Ac38,,1910,EA058,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA058,9,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA058,10,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA058,NA,,,, +Ac41,,,EA058,NA,,,, +Ac42,,,EA058,NA,,,, +Ac43,,,EA058,NA,,,, +Ac5,,1920,EA058,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,,EA058,NA,,,, +Ac7,,1920,EA058,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA058,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA058,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA058,10,Despised as slave occupation,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA058,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA058,9,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA058,NA,,,, +Ad13,,1930,EA058,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,Morogoro District,1930,EA058,9,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p68, +Ad15,,,EA058,NA,,,, +Ad16,,1920,EA058,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA058,9,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA058,NA,,,, +Ad19,,1910,EA058,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA058,3,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA058,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,,EA058,NA,,,, +Ad22,,1950,EA058,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA058,NA,,,, +Ad24,,1910,EA058,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA058,NA,,,, +Ad26,,1910,EA058,9,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,1880,EA058,9,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA058,9,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA058,9,Formerly,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA058,10,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA058,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,1910,EA058,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA058,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p68, +Ad33,,,EA058,NA,,,, +Ad34,,1910,EA058,3,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA058,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA058,NA,,,, +Ad37,,,EA058,NA,,,, +Ad38,,,EA058,NA,,,, +Ad39,,1950,EA058,3,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA058,3,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA058,NA,,,, +Ad41,,,EA058,NA,,,, +Ad42,,,EA058,NA,,,, +Ad43,,,EA058,NA,,,, +Ad44,,1920,EA058,9,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,1920,EA058,9,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,1950,EA058,3,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA058,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA058,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA058,NA,,,, +Ad5,,,EA058,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA058,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA058,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA058,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA058,3,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,,,EA058,NA,,,, +Ad9,,1900,EA058,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA058,9,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA058,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA058,9,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA058,9,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA058,NA,,,, +Ae14,,1950,EA058,3,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,,EA058,NA,,,, +Ae16,,,EA058,NA,,,, +Ae17,,1900,EA058,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA058,3,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA058,NA,,,, +Ae2,,1950,EA058,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA058,NA,,,, +Ae21,,,EA058,NA,,,, +Ae22,,,EA058,NA,,,, +Ae23,,,EA058,NA,,,, +Ae24,,,EA058,NA,,,, +Ae25,,,EA058,NA,,,, +Ae26,,,EA058,NA,,,, +Ae27,,,EA058,NA,,,, +Ae28,,1900,EA058,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,1900,EA058,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA058,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA058,NA,,,, +Ae31,,1920,EA058,9,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA058,NA,,,, +Ae33,,1920,EA058,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA058,NA,,,, +Ae35,,,EA058,NA,,,, +Ae36,,,EA058,NA,,,, +Ae37,,,EA058,NA,,,, +Ae38,,,EA058,NA,,,, +Ae39,,1920,EA058,10,"But in some villages probably present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA058,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA058,NA,,,, +Ae41,,1940,EA058,9,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA058,NA,,,, +Ae43,,,EA058,NA,,,, +Ae44,,,EA058,NA,,,, +Ae45,,,EA058,NA,,,, +Ae46,,,EA058,NA,,,, +Ae47,,,EA058,NA,,,, +Ae48,,1930,EA058,9,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae49,,,EA058,NA,,,, +Ae5,,1910,EA058,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA058,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA058,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,1950,EA058,9,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,,EA058,NA,,,, +Ae54,,,EA058,NA,,,, +Ae55,,1950,EA058,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,1950,EA058,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae57,,,EA058,NA,,,, +Ae58,,,EA058,NA,,,, +Ae59,,,EA058,NA,,,, +Ae6,,,EA058,NA,,,, +Ae7,,1910,EA058,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA058,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA058,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA058,3,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA058,3,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA058,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA058,NA,,,, +Af13,,1920,EA058,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,,EA058,NA,,,, +Af15,,1920,EA058,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA058,NA,,,, +Af17,,,EA058,NA,,,, +Af18,,,EA058,NA,,,, +Af19,,,EA058,NA,,,, +Af2,,1950,EA058,9,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA058,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA058,NA,,,, +Af22,,1940,EA058,9,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,with special reference to the village of Mgbom,1950,EA058,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA058,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA058,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA058,NA,,,, +Af27,,,EA058,NA,,,, +Af28,,1910,EA058,9,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA058,NA,,,, +Af3,Kumasi State,1900,EA058,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA058,NA,,,, +Af31,,,EA058,NA,,,, +Af32,Abeouta Province and Benin,1920,EA058,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA058,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA058,NA,,,, +Af35,,,EA058,NA,,,, +Af36,with special reference to the Glidyi,1900,EA058,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA058,NA,,,, +Af38,,,EA058,NA,,,, +Af39,,,EA058,NA,,,, +Af4,,,EA058,NA,,,, +Af40,,,EA058,NA,,,, +Af41,,,EA058,NA,,,, +Af42,,1900,EA058,9,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,,EA058,NA,,,, +Af44,,,EA058,NA,,,, +Af45,,,EA058,NA,,,, +Af46,,,EA058,NA,,,, +Af47,,,EA058,NA,,,, +Af48,,,EA058,NA,,,, +Af49,,1940,EA058,9,,schwab1947,EthnographicAtlas_1967_p72, +Af5,,1930,EA058,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA058,NA,,,, +Af51,,1920,EA058,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA058,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA058,NA,,,, +Af54,,1930,EA058,9,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA058,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA058,9,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA058,9,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA058,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA058,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,1950,EA058,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,1930,EA058,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,,EA058,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA058,3,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA058,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA058,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA058,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,1910,EA058,9,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p72, +Ag14,,,EA058,NA,,,, +Ag15,,,EA058,NA,,,, +Ag16,,,EA058,NA,,,, +Ag17,,,EA058,NA,,,, +Ag18,,,EA058,NA,,,, +Ag19,,,EA058,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA058,3,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA058,NA,,,, +Ag21,,1910,EA058,9,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,,,EA058,NA,,,, +Ag23,,,EA058,NA,,,, +Ag24,,,EA058,NA,,,, +Ag25,,,EA058,NA,,,, +Ag26,,1930,EA058,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p72, +Ag27,,,EA058,NA,,,, +Ag28,,,EA058,NA,,,, +Ag29,,,EA058,NA,,,, +Ag3,,,EA058,NA,,,, +Ag30,,1910,EA058,3,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,1910,EA058,3,,cheron1913; holas1957,EthnographicAtlas_1967_p72, +Ag32,,1900,EA058,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA058,NA,,,, +Ag34,,,EA058,NA,,,, +Ag35,,,EA058,NA,,,, +Ag36,,,EA058,NA,,,, +Ag37,,,EA058,NA,,,, +Ag38,,,EA058,NA,,,, +Ag39,,1910,EA058,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA058,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA058,NA,,,, +Ag41,,1920,EA058,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p72, +Ag42,,,EA058,NA,,,, +Ag43,,,EA058,NA,,,, +Ag44,,,EA058,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA058,3,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA058,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA058,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA058,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,1930,EA058,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA058,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,1910,EA058,9,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA058,NA,,,, +Ag52,,,EA058,NA,,,, +Ag53,with special reference to those of Garango,1960,EA058,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA058,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA058,NA,,,, +Ag7,,,EA058,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA058,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,,EA058,NA,,,, +Ah1,Zaria Province,1930,EA058,10,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA058,NA,,,, +Ah11,,1950,EA058,9,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA058,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA058,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA058,9,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah15,,1920,EA058,10,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA058,NA,,,, +Ah17,,,EA058,NA,,,, +Ah18,,,EA058,NA,,,, +Ah19,,1930,EA058,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p76, +Ah2,,1920,EA058,9,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,1920,EA058,10,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA058,NA,,,, +Ah22,,,EA058,NA,,,, +Ah23,,,EA058,NA,,,, +Ah24,,,EA058,NA,,,, +Ah25,,,EA058,NA,,,, +Ah26,,,EA058,NA,,,, +Ah27,,,EA058,NA,,,, +Ah28,,,EA058,NA,,,, +Ah29,,,EA058,NA,,,, +Ah3,Tar of Benue Province,1920,EA058,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA058,NA,,,, +Ah31,,,EA058,NA,,,, +Ah32,,,EA058,NA,,,, +Ah33,,,EA058,NA,,,, +Ah34,,,EA058,NA,,,, +Ah35,,,EA058,NA,,,, +Ah36,,1920,EA058,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA058,NA,,,, +Ah38,,1930,EA058,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA058,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA058,NA,,,, +Ah5,,,EA058,NA,,,, +Ah6,,,EA058,NA,,,, +Ah7,,1940,EA058,3,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA058,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA058,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA058,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA058,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA058,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA058,NA,,,, +Ai13,,,EA058,NA,,,, +Ai14,,1920,EA058,9,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,1900,EA058,9,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA058,NA,,,, +Ai17,,1930,EA058,9,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA058,9,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA058,NA,,,, +Ai2,,,EA058,NA,,,, +Ai20,,,EA058,NA,,,, +Ai21,,,EA058,NA,,,, +Ai22,,,EA058,NA,,,, +Ai23,,1920,EA058,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA058,NA,,,, +Ai25,,1950,EA058,9,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA058,9,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA058,NA,,,, +Ai28,,1910,EA058,9,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA058,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA058,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA058,9,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,1920,EA058,9,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA058,9,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p76, +Ai33,,,EA058,NA,,,, +Ai34,,,EA058,NA,,,, +Ai35,,1870,EA058,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA058,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA058,NA,,,, +Ai38,,1930,EA058,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA058,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA058,NA,,,, +Ai40,,1940,EA058,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA058,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA058,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA058,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,1920,EA058,9,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p76, +Ai45,,,EA058,NA,,,, +Ai46,,,EA058,NA,,,, +Ai47,Northern division,1939,EA058,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,1920,EA058,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA058,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA058,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA058,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA058,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,,EA058,NA,,,, +Aj10,,,EA058,NA,,,, +Aj11,,,EA058,NA,,,, +Aj12,,,EA058,NA,,,, +Aj13,,1930,EA058,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA058,NA,,,, +Aj15,,1900,EA058,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA058,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA058,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,,EA058,NA,,,, +Aj19,,,EA058,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA058,9,A very few women made pottery,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA058,NA,,,, +Aj21,,1930,EA058,10,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,1930,EA058,9,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA058,10,The products are obtained by trade from the Hill Suk,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA058,9,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA058,9,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA058,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA058,NA,,,, +Aj28,,,EA058,NA,,,, +Aj29,,,EA058,NA,,,, +Aj3,,1930,EA058,10,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA058,NA,,,, +Aj31,,,EA058,NA,,,, +Aj4,,1920,EA058,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA058,10,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA058,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA058,3,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA058,9,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA058,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA058,3,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA058,10,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA058,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA058,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA058,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA058,3,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,,EA058,NA,,,, +Ca16,,1930,EA058,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA058,10,Products obtained by trade with neighboring tribes,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA058,NA,,,, +Ca19,,1950,EA058,10,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA058,10,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA058,NA,,,, +Ca21,,1950,EA058,10,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA058,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA058,3,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA058,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA058,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA058,NA,,,, +Ca27,,,EA058,NA,,,, +Ca28,,1950,EA058,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA058,9,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,,EA058,NA,,,, +Ca30,Kafa Kingdom,1890,EA058,3,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,1860,EA058,9,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA058,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA058,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA058,NA,,,, +Ca35,,,EA058,NA,,,, +Ca36,,,EA058,NA,,,, +Ca37,,,EA058,NA,,,, +Ca38,,,EA058,NA,,,, +Ca39,,1930,EA058,3,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,,EA058,NA,,,, +Ca40,,1950,EA058,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA058,3,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA058,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA058,NA,,,, +Ca5,,,EA058,NA,,,, +Ca6,,,EA058,NA,,,, +Ca7,Gondar district,1950,EA058,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA058,NA,,,, +Ca9,,,EA058,NA,,,, +Cb1,,,EA058,NA,,,, +Cb10,,,EA058,NA,,,, +Cb11,,,EA058,NA,,,, +Cb12,,,EA058,NA,,,, +Cb13,,,EA058,NA,,,, +Cb14,,,EA058,NA,,,, +Cb15,with special reference to the Humr,1940,EA058,NA,"Made by the kindred Messiria, not by the Humr proper",cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,,EA058,NA,,,, +Cb17,Jebel Marra,1880,EA058,3,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,1930,EA058,3,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p80, +Cb19,,1870,EA058,9,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p80, +Cb2,Upper and lower Salum in Gambia,1950,EA058,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA058,3,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA058,NA,,,, +Cb22,,,EA058,NA,,,, +Cb23,,,EA058,NA,,,, +Cb24,,,EA058,NA,,,, +Cb25,,,EA058,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA058,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA058,NA,,,, +Cb28,,,EA058,NA,,,, +Cb29,,,EA058,NA,,,, +Cb3,Bamba division,1940,EA058,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA058,NA,,,, +Cb5,,,EA058,NA,,,, +Cb6,,,EA058,NA,,,, +Cb7,,,EA058,NA,,,, +Cb8,,,EA058,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA058,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,,EA058,NA,,,, +Cc10,,1900,EA058,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA058,NA,,,, +Cc12,,1944,EA058,10,Pottery is imported from Tuat,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA058,NA,,,, +Cc14,,1880,EA058,3,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA058,NA,,,, +Cc16,,1930,EA058,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,,EA058,NA,,,, +Cc18,,,EA058,NA,,,, +Cc19,,,EA058,NA,,,, +Cc2,Nomads of Tibesti,1950,EA058,3,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,,,EA058,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA058,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,,EA058,NA,,,, +Cc5,,,EA058,NA,,,, +Cc6,,,EA058,NA,,,, +Cc7,,,EA058,NA,,,, +Cc8,,,EA058,NA,,,, +Cc9,Ahaggaren tribe,1920,EA058,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,,,EA058,NA,,,, +Cd10,,,EA058,NA,,,, +Cd11,,,EA058,NA,,,, +Cd12,,1870,EA058,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA058,NA,,,, +Cd14,,,EA058,NA,,,, +Cd15,,,EA058,NA,,,, +Cd16,,,EA058,NA,,,, +Cd17,,,EA058,NA,,,, +Cd18,,,EA058,NA,,,, +Cd19,,,EA058,NA,,,, +Cd2,Town and environs of Silwa,1950,EA058,3,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA058,NA,,,, +Cd21,,,EA058,NA,,,, +Cd3,Entirety: Moroccan,1920,EA058,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA058,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,,,EA058,NA,,,, +Cd6,with special reference to the New Empire,-1400,EA058,3,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA058,NA,,,, +Cd8,,,EA058,NA,,,, +Cd9,,,EA058,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA058,9,There are also professional male potters in the towns,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA058,NA,,,, +Ce3,,,EA058,NA,,,, +Ce4,,,EA058,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA058,4,Presumably industrial specialization only,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA058,4,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA058,4,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,,,EA058,NA,,,, +Cf1,Small City in Connecticut,1920,EA058,4,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA058,NA,,,, +Cf3,,1930,EA058,10,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA058,9,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA058,4,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA058,4,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,,EA058,NA,,,, +Cg3,,,EA058,NA,,,, +Cg4,Konkama District,1950,EA058,10,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA058,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA058,3,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA058,NA,,,, +Ch11,,,EA058,NA,,,, +Ch2,,1890,EA058,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA058,4,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA058,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA058,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA058,9,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA058,9,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,1940,EA058,9,,hanzeli1955,EthnographicAtlas_1967_p84, +Ch9,,1930,EA058,9,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,,,EA058,NA,,,, +Ci10,Vicinity of Erevan,1900,EA058,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA058,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA058,10,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA058,NA,,,, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA058,9,,gadzhieva1958,EthnographicAtlas_1967_p84, +Ci4,,,EA058,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA058,10,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA058,NA,,,, +Ci7,,,EA058,NA,,,, +Ci8,,,EA058,NA,,,, +Ci9,,,EA058,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA058,9,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,,,EA058,NA,,,, +Cj2,,,EA058,NA,,,, +Cj3,,-800,EA058,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA058,3,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,,EA058,NA,,,, +Cj6,,,EA058,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA058,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA058,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,1950,EA058,3,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA058,9,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,,,EA058,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA058,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,,EA058,NA,,,, +Ea13,Mohla Village,1950,EA058,3,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA058,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA058,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA058,3,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,,EA058,NA,,,, +Ea6,Nomadic branch,1958,EA058,10,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,,EA058,NA,,,, +Ea8,,,EA058,NA,,,, +Ea9,,1950,EA058,9,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA058,10,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA058,10,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA058,10,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA058,NA,,,, +Eb5,,,EA058,NA,,,, +Eb6,,,EA058,NA,,,, +Eb7,,,EA058,NA,,,, +Eb8,,,EA058,NA,,,, +Ec1,Sakhalin Island,1920,EA058,10,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA058,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA058,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA058,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA058,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA058,10,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA058,9,But practiced in the recent past,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,,,EA058,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA058,10,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA058,NA,,,, +Ec9,,,EA058,NA,,,, +Ed1,Kanghwa Island,1950,EA058,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA058,9,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA058,NA,,,, +Ed14,,,EA058,NA,,,, +Ed15a,,,EA058,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA058,9,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA058,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA058,10,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA058,9,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA058,9,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA058,4,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA058,9,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA058,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,,EA058,NA,,,, +Ed9,,1930,EA058,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA058,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA058,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA058,10,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,,,EA058,NA,,,, +Ee5,with special reference to the Shina tribe,1870,EA058,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,,,EA058,NA,,,, +Ee7,,,EA058,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA058,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA058,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA058,NA,,,, +Ef11,Village and environs of Senapur,1945,EA058,3,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA058,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA058,NA,,,, +Ef4,,,EA058,NA,,,, +Ef5,,1900,EA058,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,,EA058,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA058,10,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA058,3,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA058,3,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA058,10,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA058,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA058,NA,,,, +Eg12,,,EA058,NA,,,, +Eg13,Bastar State,1941,EA058,10,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA058,10,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA058,3,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA058,10,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA058,10,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,,EA058,NA,,,, +Eg6,,,EA058,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA058,9,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,,EA058,NA,,,, +Eg9,,1930,EA058,9,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA058,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA058,NA,,,, +Eh2,,,EA058,NA,,,, +Eh3,Menabe subtribe,1930,EA058,10,"But formerly present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA058,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA058,3,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA058,9,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p92, +Eh7,,1900,EA058,10,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA058,10,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA058,NA,,,, +Ei1,Rengsanggr,1900,EA058,9,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA058,10,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA058,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA058,NA,,,, +Ei13,,1910,EA058,9,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA058,9,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA058,NA,,,, +Ei16,,1910,EA058,9,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA058,NA,,,, +Ei18,,,EA058,NA,,,, +Ei19,,1940,EA058,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA058,9,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA058,NA,,,, +Ei3,Nondwin Village,1950,EA058,3,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA058,9,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA058,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA058,10,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA058,10,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA058,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA058,10,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA058,10,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA058,10,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA058,NA,,,, +Ej12,,,EA058,NA,,,, +Ej13,,1940,EA058,3,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA058,10,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA058,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,,,EA058,NA,,,, +Ej2,with special reference to the village of Sar Luk,1940,EA058,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA058,10,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA058,3,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA058,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,,,EA058,NA,,,, +Ej7,,,EA058,NA,,,, +Ej8,with special reference to those of Trengganu,1940,EA058,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,,EA058,NA,,,, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA058,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA058,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA058,9,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA058,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA058,10,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA058,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA058,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA058,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA058,NA,,,, +Ia18,,,EA058,NA,,,, +Ia2,,1950,EA058,10,Obtained by trade from the neighboring Kankanay,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA058,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,,,EA058,NA,,,, +Ia5,,,EA058,NA,,,, +Ia6,Su-Paiwan Village,1930,EA058,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA058,NA,,,, +Ia8,,,EA058,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA058,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA058,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA058,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA058,3,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA058,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA058,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,1920,EA058,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA058,10,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,with special reference to the Ridan group,1900,EA058,10,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA058,NA,,,, +Ic1,Borongloe,1940,EA058,9,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA058,10,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,Allang,1950,EA058,9,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA058,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA058,NA,,,, +Ic2,,,EA058,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA058,9,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA058,NA,,,, +Ic5,Bare'e subgroup,1910,EA058,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA058,9,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA058,10,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,1890,EA058,10,,pleyte1893,EthnographicAtlas_1967_p96, +Ic9,with special reference to eastern Sumba,1930,EA058,9,,nooteboom1940,EthnographicAtlas_1967_p96, +Id1,Alice Springs and environs,1900,EA058,10,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA058,10,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA058,10,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA058,10,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA058,10,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA058,10,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA058,10,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA058,10,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA058,10,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA058,10,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA058,9,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA058,10,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA058,10,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA058,10,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA058,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA058,10,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA058,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA058,NA,,,, +Ie14,,,EA058,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA058,9,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA058,10,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA058,10,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA058,10,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA058,10,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA058,10,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA058,9,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA058,9,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA058,10,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA058,10,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,1870,EA058,10,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA058,10,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA058,10,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,,EA058,NA,,,, +Ie28,,1940,EA058,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,,,EA058,NA,,,, +Ie3,,,EA058,NA,,,, +Ie30,,1950,EA058,10,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,1950,EA058,10,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA058,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA058,NA,,,, +Ie34,,,EA058,NA,,,, +Ie35,,,EA058,NA,,,, +Ie36,,,EA058,NA,,,, +Ie37,,,EA058,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA058,10,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA058,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA058,10,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA058,10,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,,EA058,NA,,,, +Ie7,with special reference to the Mae group,1950,EA058,10,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA058,10,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA058,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA058,9,But extinct today,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA058,NA,,,, +If11,,1860,EA058,10,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA058,10,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA058,10,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA058,10,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,,EA058,NA,,,, +If16,,1960,EA058,10,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA058,10,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA058,10,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA058,10,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA058,10,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA058,10,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,,,EA058,NA,,,, +If7,with special reference to the inhabitants of Onotoa,1940,EA058,10,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA058,10,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA058,10,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA058,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA058,10,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA058,10,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,with special reference to the Varisi,1900,EA058,9,,scheffler1965,EthnographicAtlas_1967_p100, +Ig13,,,EA058,NA,,,, +Ig14,,1900,EA058,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA058,NA,,,, +Ig16,,,EA058,NA,,,, +Ig17,,,EA058,NA,,,, +Ig18,,,EA058,NA,,,, +Ig19,,,EA058,NA,,,, +Ig2,Kiriwina Island,1910,EA058,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,,,EA058,NA,,,, +Ig21,with special reference to Boieng Island,1930,EA058,10,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA058,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA058,10,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,,EA058,NA,,,, +Ig6,,1900,EA058,10,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,,EA058,NA,,,, +Ig8,,,EA058,NA,,,, +Ig9,Peri Village,1920,EA058,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA058,10,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,,,EA058,NA,,,, +Ih11,,,EA058,NA,,,, +Ih12,,,EA058,NA,,,, +Ih13,,,EA058,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA058,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA058,10,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA058,10,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p100, +Ih4,Lau Island,1920,EA058,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA058,NA,,,, +Ih6,,,EA058,NA,,,, +Ih7,,,EA058,NA,,,, +Ih8,,,EA058,NA,,,, +Ih9,Graciosa Bay,1930,EA058,10,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA058,10,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA058,NA,,,, +Ii12,Pangai,1920,EA058,10,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA058,10,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA058,10,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA058,10,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA058,10,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA058,10,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA058,10,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA058,10,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA058,10,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA058,10,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA058,10,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA058,10,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA058,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA058,10,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA058,10,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA058,10,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA058,10,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA058,10,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA058,10,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA058,10,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA058,10,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA058,10,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA058,10,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA058,9,But pottery was given up sometime after 1912,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA058,10,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA058,9,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA058,10,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA058,10,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA058,10,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA058,10,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA058,10,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA058,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA058,10,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA058,10,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA058,10,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA058,10,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA058,10,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,,,EA058,NA,,,, +Na26,with special reference to the Iliamna,1870,EA058,10,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA058,10,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA058,10,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA058,10,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA058,10,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA058,10,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA058,10,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA058,10,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA058,10,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA058,10,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA058,10,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA058,10,But pottery was made prior to the mid-nineteenth century,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA058,10,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA058,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA058,10,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA058,10,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA058,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA058,10,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,,,EA058,NA,,,, +Na43,,,EA058,NA,,,, +Na44,,,EA058,NA,,,, +Na45,,,EA058,NA,,,, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA058,10,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA058,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA058,10,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA058,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA058,10,But pottery is found in archaeological sites,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA058,10,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA058,10,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA058,10,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA058,10,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA058,10,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA058,10,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA058,10,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA058,10,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA058,10,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA058,10,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA058,10,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA058,10,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA058,10,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA058,10,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA058,10,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA058,10,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA058,10,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA058,10,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA058,10,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA058,10,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA058,10,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA058,10,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA058,10,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA058,10,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA058,10,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA058,10,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA058,10,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA058,10,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA058,10,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA058,10,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA058,10,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA058,10,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA058,10,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA058,10,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA058,10,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA058,10,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA058,10,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA058,10,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA058,10,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA058,10,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA058,10,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA058,10,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA058,10,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA058,10,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA058,10,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA058,10,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA058,10,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA058,10,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA058,10,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA058,10,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA058,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA058,10,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA058,10,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA058,10,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA058,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA058,10,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA058,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA058,10,"Entry follows Mason; Harrington reports 'present, though sex participation unspecified' (EA047 code ""9"") and no specialization specified (EA058 code ""9""), perhaps for the post mission period",harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA058,NA,,,, +Nc28,,1800,EA058,10,"Entry follows Kroeber; Harrington reports 'present, though sex participation unspecified' (EA047 code ""9"") and no specialization specified (EA058 code ""9""), perhaps for the post mission period",harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA058,10,But pottery was made in the post-mission period,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA058,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA058,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA058,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA058,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA058,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA058,9,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA058,10,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA058,10,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA058,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA058,10,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA058,10,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA058,10,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA058,10,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA058,10,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA058,10,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA058,10,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA058,10,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA058,10,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA058,10,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA058,10,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,,EA058,NA,,,, +Nd18,,1860,EA058,10,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA058,10,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA058,10,But women made clay pipes,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA058,10,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA058,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA058,10,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA058,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA058,10,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA058,10,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA058,10,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA058,10,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA058,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA058,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA058,9,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA058,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA058,9,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA058,9,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA058,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA058,9,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA058,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA058,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA058,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,,EA058,NA,,,, +Nd48,with special reference to those of Deep Creek,1860,EA058,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA058,10,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA058,10,But pottery was made at an earlier period,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA058,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA058,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA058,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA058,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA058,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA058,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA058,10,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA058,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA058,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA058,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA058,10,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA058,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA058,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA058,10,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA058,10,But pottery was made in the prehistoric period,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA058,10,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA058,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA058,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA058,9,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA058,9,"But the pots were sun-dried, not fired",boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA058,10,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA058,10,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA058,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA058,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA058,10,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA058,10,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA058,10,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA058,10,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA058,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA058,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,,EA058,NA,,,, +Ne18,,1850,EA058,10,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA058,10,But a tradition that pottery was formerly made,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA058,10,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA058,10,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA058,NA,,,, +Ne3,Comanche Tribe,1870,EA058,10,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA058,10,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA058,9,But pottery disappeared after European contact,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA058,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA058,10,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA058,10,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA058,10,But pottery was made at an earlier date,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA058,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA058,9,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA058,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA058,9,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA058,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA058,NA,,,, +Nf2,,1850,EA058,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA058,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA058,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,,EA058,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA058,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA058,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA058,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA058,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA058,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA058,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA058,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA058,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA058,NA,,,, +Ng14,,,EA058,NA,,,, +Ng15,,,EA058,NA,,,, +Ng2,,,EA058,NA,,,, +Ng3,Upper division in Alabama,1750,EA058,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA058,NA,,,, +Ng5,,1750,EA058,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA058,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA058,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA058,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA058,NA,,,, +Nh1,Central band,1880,EA058,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,1920,EA058,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p116, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA058,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA058,9,But pottery is no longer made today,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA058,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA058,NA,,,, +Nh15,,1870,EA058,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA058,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA058,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA058,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA058,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA058,9,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA058,9,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA058,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA058,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA058,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,,EA058,NA,,,, +Nh25,,1920,EA058,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA058,NA,,,, +Nh27,,,EA058,NA,,,, +Nh3,,1930,EA058,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA058,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA058,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA058,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA058,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA058,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,1920,EA058,9,,parsons1939; trager1943,EthnographicAtlas_1967_p116, +Ni1,,1930,EA058,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA058,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA058,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA058,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA058,10,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA058,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA058,9,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA058,NA,,,, +Ni9,,,EA058,NA,,,, +Nj1,Ojitlan,1940,EA058,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA058,3,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA058,NA,,,, +Nj12,,,EA058,NA,,,, +Nj13,,,EA058,NA,,,, +Nj14,,,EA058,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA058,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA058,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA058,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA058,NA,,,, +Nj6,,,EA058,NA,,,, +Nj7,with special reference to Ayutla,1930,EA058,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA058,9,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA058,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA058,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA058,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA058,NA,,,, +Sa12,,1948,EA058,9,,stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA058,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA058,NA,,,, +Sa15,,,EA058,NA,,,, +Sa16,,,EA058,NA,,,, +Sa17,,,EA058,NA,,,, +Sa2,,,EA058,NA,,,, +Sa3,,1930,EA058,9,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA058,2,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA058,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA058,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA058,10,"There is incidental mention of pots, but they are presumably obtained through trade",solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA058,9,Traded from a neighboring village,wagley1941; wagley1949b,EthnographicAtlas_1967_p120, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA058,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA058,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA058,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA058,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA058,10,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA058,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p120, +Sb6,Goajiro Tribe,1940,EA058,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA058,9,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA058,9,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA058,3,But only outside of the valley,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA058,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA058,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,,EA058,NA,,,, +Sc12,,1910,EA058,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,,EA058,NA,,,, +Sc14,,1890,EA058,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA058,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA058,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,,EA058,NA,,,, +Sc18,,1960,EA058,10,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA058,9,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA058,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA058,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA058,9,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,,,EA058,NA,,,, +Sc7,,1950,EA058,9,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA058,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA058,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA058,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA058,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA058,9,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,,EA058,NA,,,, +Sd5,,1950,EA058,10,"But formerly present, though sex participation unspecified (EA047 code ""8"") and no specialization specified (EA058 code ""9"")",lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA058,9,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA058,9,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA058,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA058,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA058,9,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,1670,EA058,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p120, +Se11,,1960,EA058,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA058,NA,,,, +Se2,,1940,EA058,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA058,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA058,2,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA058,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA058,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA058,NA,,,, +Se8,Upper Inuya River,1950,EA058,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA058,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA058,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA058,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA058,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA058,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA058,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA058,9,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA058,10,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA058,NA,,,, +Sf9,,,EA058,NA,,,, +Sg1,Eastern and central,1870,EA058,10,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA058,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA058,10,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA058,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA058,10,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA058,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA058,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA058,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA058,9,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA058,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA058,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA058,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124,"Assume Murdock comment meant for Col 46, not Col 47 as stated Gray (1999)" +Sh8,with special reference to those of the Argentine Chaco,1964,EA058,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA058,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA058,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA058,10,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA058,10,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA058,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA058,10,But some groups make crude pottery,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA058,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA058,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,with special reference to the Cozarimi,1910,EA058,9,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,1940,EA058,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA058,NA,,,, +Sj1,,1950,EA058,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA058,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA058,10,But pottery was formerly made,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA058,10,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA058,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA058,10,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA058,10,But pottery has been made in recent times,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,with special reference to the Guajajara subgroup,1930,EA058,10,But pottery was formerly made,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA058,10,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA058,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA058,10,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA058,10,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA058,10,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA058,10,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA058,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA058,10,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA058,10,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA058,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA058,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA058,10,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA058,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA058,10,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA058,10,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA058,3,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA058,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,,,EA058,NA,,,, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA058,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,,,EA058,NA,,,, +ec12,Avam (Western) group,1930,EA058,10,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA058,10,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA058,10,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA058,10,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA058,10,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA058,10,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA058,10,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA058,10,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA058,10,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA058,10,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA059,10,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA059,10,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA059,10,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA059,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA059,10,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA059,NA,,,, +Aa7,,1910,EA059,10,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA059,10,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA059,10,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA059,10,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,,EA059,NA,,,, +Ab11,,,EA059,NA,,,, +Ab12,,1830,EA059,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA059,10,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA059,10,But bark canoes are mentioned in traditions,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,,EA059,NA,,,, +Ab16,,,EA059,NA,,,, +Ab17,,,EA059,NA,,,, +Ab18,,,EA059,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA059,10,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,,EA059,NA,,,, +Ab20,,,EA059,NA,,,, +Ab21a,,,EA059,NA,,,, +Ab21b,,,EA059,NA,,,, +Ab22,,,EA059,NA,,,, +Ab3,Ruling Luyana,1890,EA059,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA059,9,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA059,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA059,10,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA059,NA,,,, +Ab8,,,EA059,NA,,,, +Ab9,,,EA059,NA,,,, +Ac1,,1920,EA059,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA059,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,,EA059,NA,,,, +Ac12,,,EA059,NA,,,, +Ac13,,1950,EA059,9,,tew1950; velsen1964,EthnographicAtlas_1967_p64, +Ac14,,,EA059,NA,,,, +Ac15,,,EA059,NA,,,, +Ac16,,,EA059,NA,,,, +Ac17,,,EA059,NA,,,, +Ac18,,1910,EA059,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA059,NA,,,, +Ac2,,,EA059,NA,,,, +Ac20,,,EA059,NA,,,, +Ac21,,,EA059,NA,,,, +Ac22,,,EA059,NA,,,, +Ac23,,,EA059,NA,,,, +Ac24,,,EA059,NA,,,, +Ac25,,,EA059,NA,,,, +Ac26,,,EA059,NA,,,, +Ac27,,,EA059,NA,,,, +Ac28,,,EA059,NA,,,, +Ac29,,,EA059,NA,,,, +Ac3,Zambia branch,1900,EA059,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,,EA059,NA,,,, +Ac31,,1910,EA059,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA059,NA,,,, +Ac33,,,EA059,NA,,,, +Ac34,,1940,EA059,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA059,NA,,,, +Ac36,,,EA059,NA,,,, +Ac37,,,EA059,NA,,,, +Ac38,,1910,EA059,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA059,9,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,,,EA059,NA,,,, +Ac40,,,EA059,NA,,,, +Ac41,,,EA059,NA,,,, +Ac42,,,EA059,NA,,,, +Ac43,,,EA059,NA,,,, +Ac5,,1920,EA059,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA059,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA059,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA059,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,,,EA059,NA,,,, +Ad1,,,EA059,NA,,,, +Ad10,,,EA059,NA,,,, +Ad11,,1930,EA059,9,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA059,NA,,,, +Ad13,,1930,EA059,3,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA059,NA,,,, +Ad15,,,EA059,NA,,,, +Ad16,,1920,EA059,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,,EA059,NA,,,, +Ad18,,,EA059,NA,,,, +Ad19,,,EA059,NA,,,, +Ad2,,1950,EA059,3,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,,EA059,NA,,,, +Ad21,,,EA059,NA,,,, +Ad22,,,EA059,NA,,,, +Ad23,,,EA059,NA,,,, +Ad24,,1910,EA059,10,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA059,NA,,,, +Ad26,,,EA059,NA,,,, +Ad27,,1880,EA059,9,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA059,NA,,,, +Ad29,,1930,EA059,3,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA059,10,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA059,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,,EA059,NA,,,, +Ad32,,,EA059,NA,,,, +Ad33,,1900,EA059,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,,EA059,NA,,,, +Ad35,,,EA059,NA,,,, +Ad36,,,EA059,NA,,,, +Ad37,,,EA059,NA,,,, +Ad38,,,EA059,NA,,,, +Ad39,,1950,EA059,10,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA059,10,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA059,NA,,,, +Ad41,,,EA059,NA,,,, +Ad42,,,EA059,NA,,,, +Ad43,,,EA059,NA,,,, +Ad44,,,EA059,NA,,,, +Ad45,,,EA059,NA,,,, +Ad46,,1950,EA059,3,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,,EA059,NA,,,, +Ad48,,1950,EA059,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA059,NA,,,, +Ad5,,,EA059,NA,,,, +Ad50,,,EA059,NA,,,, +Ad51,,,EA059,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA059,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA059,3,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,,,EA059,NA,,,, +Ad9,,1900,EA059,10,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA059,10,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA059,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA059,9,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA059,9,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA059,NA,,,, +Ae14,,1950,EA059,9,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,,EA059,NA,,,, +Ae16,,,EA059,NA,,,, +Ae17,,,EA059,NA,,,, +Ae18,,1900,EA059,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA059,NA,,,, +Ae2,,1950,EA059,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA059,NA,,,, +Ae21,,,EA059,NA,,,, +Ae22,,,EA059,NA,,,, +Ae23,,,EA059,NA,,,, +Ae24,,,EA059,NA,,,, +Ae25,,,EA059,NA,,,, +Ae26,,,EA059,NA,,,, +Ae27,,,EA059,NA,,,, +Ae28,,1900,EA059,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,1900,EA059,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA059,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA059,NA,,,, +Ae31,,,EA059,NA,,,, +Ae32,,,EA059,NA,,,, +Ae33,,,EA059,NA,,,, +Ae34,,,EA059,NA,,,, +Ae35,,,EA059,NA,,,, +Ae36,,,EA059,NA,,,, +Ae37,,,EA059,NA,,,, +Ae38,,,EA059,NA,,,, +Ae39,,1920,EA059,10,"But in some villages probably 'present, though sex participation unspecified' (EA048 code ""9"") and no specialization specified (EA059 code ""9"")",burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA059,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA059,NA,,,, +Ae41,,,EA059,NA,,,, +Ae42,,,EA059,NA,,,, +Ae43,,,EA059,NA,,,, +Ae44,,,EA059,NA,,,, +Ae45,,,EA059,NA,,,, +Ae46,,,EA059,NA,,,, +Ae47,,,EA059,NA,,,, +Ae48,,,EA059,NA,,,, +Ae49,,,EA059,NA,,,, +Ae5,,,EA059,NA,,,, +Ae50,,1920,EA059,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,,,EA059,NA,,,, +Ae52,,,EA059,NA,,,, +Ae53,,,EA059,NA,,,, +Ae54,,,EA059,NA,,,, +Ae55,,,EA059,NA,,,, +Ae56,,,EA059,NA,,,, +Ae57,,,EA059,NA,,,, +Ae58,,,EA059,NA,,,, +Ae59,,,EA059,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA059,9,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,,EA059,NA,,,, +Ae8,,1910,EA059,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA059,10,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA059,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA059,10,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,,EA059,NA,,,, +Af12,,,EA059,NA,,,, +Af13,,,EA059,NA,,,, +Af14,,1930,EA059,9,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA059,10,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA059,NA,,,, +Af17,,,EA059,NA,,,, +Af18,,,EA059,NA,,,, +Af19,,1950,EA059,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p72, +Af2,,,EA059,NA,,,, +Af20,,,EA059,NA,,,, +Af21,,,EA059,NA,,,, +Af22,,1940,EA059,9,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,,,EA059,NA,,,, +Af24,,,EA059,NA,,,, +Af25,,1930,EA059,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA059,NA,,,, +Af27,,,EA059,NA,,,, +Af28,,1910,EA059,9,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA059,NA,,,, +Af3,,,EA059,NA,,,, +Af30,,,EA059,NA,,,, +Af31,,,EA059,NA,,,, +Af32,,,EA059,NA,,,, +Af33,,,EA059,NA,,,, +Af34,,,EA059,NA,,,, +Af35,,,EA059,NA,,,, +Af36,with special reference to the Glidyi,1900,EA059,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA059,NA,,,, +Af38,,,EA059,NA,,,, +Af39,,,EA059,NA,,,, +Af4,,1930,EA059,10,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA059,NA,,,, +Af41,,,EA059,NA,,,, +Af42,,,EA059,NA,,,, +Af43,,,EA059,NA,,,, +Af44,,,EA059,NA,,,, +Af45,,,EA059,NA,,,, +Af46,,,EA059,NA,,,, +Af47,,,EA059,NA,,,, +Af48,,,EA059,NA,,,, +Af49,,,EA059,NA,,,, +Af5,,1930,EA059,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA059,NA,,,, +Af51,,,EA059,NA,,,, +Af52,,1920,EA059,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA059,NA,,,, +Af54,,1930,EA059,10,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA059,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA059,NA,Rude rafts only,schwab1947; viard1934,EthnographicAtlas_1967_p72,"Assume Murdock comment refers to Col 59, not Col 60 as stated in Gray (1999)" +Af57,,,EA059,NA,,,, +Af58,,,EA059,NA,,,, +Af6,,,EA059,NA,,,, +Af7,,1950,EA059,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,1930,EA059,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,,EA059,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA059,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,,EA059,NA,,,, +Ag11,,,EA059,NA,,,, +Ag12,,,EA059,NA,,,, +Ag13,,,EA059,NA,,,, +Ag14,,,EA059,NA,,,, +Ag15,,,EA059,NA,,,, +Ag16,,,EA059,NA,,,, +Ag17,,,EA059,NA,,,, +Ag18,,,EA059,NA,,,, +Ag19,,,EA059,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA059,10,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA059,NA,,,, +Ag21,,,EA059,NA,,,, +Ag22,with special reference to those of Sine,1920,EA059,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA059,NA,,,, +Ag24,,,EA059,NA,,,, +Ag25,,,EA059,NA,,,, +Ag26,,,EA059,NA,,,, +Ag27,,,EA059,NA,,,, +Ag28,,,EA059,NA,,,, +Ag29,,,EA059,NA,,,, +Ag3,,,EA059,NA,,,, +Ag30,,,EA059,NA,,,, +Ag31,,,EA059,NA,,,, +Ag32,,,EA059,NA,,,, +Ag33,,,EA059,NA,,,, +Ag34,,,EA059,NA,,,, +Ag35,,,EA059,NA,,,, +Ag36,,,EA059,NA,,,, +Ag37,,,EA059,NA,,,, +Ag38,,,EA059,NA,,,, +Ag39,,,EA059,NA,,,, +Ag4,Tallensi Tribe,1930,EA059,10,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA059,NA,,,, +Ag41,,,EA059,NA,,,, +Ag42,,,EA059,NA,,,, +Ag43,,,EA059,NA,,,, +Ag44,,,EA059,NA,,,, +Ag45,,,EA059,NA,,,, +Ag46,,,EA059,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA059,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,,EA059,NA,,,, +Ag49,,,EA059,NA,,,, +Ag5,,,EA059,NA,,,, +Ag50,,,EA059,NA,,,, +Ag51,,,EA059,NA,,,, +Ag52,,,EA059,NA,,,, +Ag53,,,EA059,NA,,,, +Ag54,,1910,EA059,10,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA059,NA,,,, +Ag7,,,EA059,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA059,10,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA059,3,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,Zaria Province,1930,EA059,10,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA059,NA,,,, +Ah11,,,EA059,NA,,,, +Ah12,,,EA059,NA,,,, +Ah13,,,EA059,NA,,,, +Ah14,,,EA059,NA,,,, +Ah15,,1920,EA059,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA059,NA,,,, +Ah17,,,EA059,NA,,,, +Ah18,,,EA059,NA,,,, +Ah19,,,EA059,NA,,,, +Ah2,,,EA059,NA,,,, +Ah20,,,EA059,NA,,,, +Ah21,,,EA059,NA,,,, +Ah22,,,EA059,NA,,,, +Ah23,,,EA059,NA,,,, +Ah24,,,EA059,NA,,,, +Ah25,,,EA059,NA,,,, +Ah26,,,EA059,NA,,,, +Ah27,,,EA059,NA,,,, +Ah28,,,EA059,NA,,,, +Ah29,,,EA059,NA,,,, +Ah3,Tar of Benue Province,1920,EA059,10,Crude rafts only,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA059,NA,,,, +Ah31,,,EA059,NA,,,, +Ah32,,,EA059,NA,,,, +Ah33,,,EA059,NA,,,, +Ah34,,,EA059,NA,,,, +Ah35,,,EA059,NA,,,, +Ah36,,,EA059,NA,,,, +Ah37,,,EA059,NA,,,, +Ah38,,,EA059,NA,,,, +Ah39,,1950,EA059,10,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA059,NA,,,, +Ah5,,,EA059,NA,,,, +Ah6,,,EA059,NA,,,, +Ah7,,1940,EA059,10,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,,EA059,NA,,,, +Ah9,,1920,EA059,10,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,,EA059,NA,,,, +Ai10,Nuba Hills,1940,EA059,10,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA059,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA059,NA,,,, +Ai13,,,EA059,NA,,,, +Ai14,,1920,EA059,9,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,1900,EA059,9,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA059,NA,,,, +Ai17,,,EA059,NA,,,, +Ai18,,1880,EA059,9,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA059,NA,,,, +Ai2,,,EA059,NA,,,, +Ai20,,,EA059,NA,,,, +Ai21,,,EA059,NA,,,, +Ai22,,,EA059,NA,,,, +Ai23,,,EA059,NA,,,, +Ai24,,,EA059,NA,,,, +Ai25,,,EA059,NA,,,, +Ai26,,1920,EA059,9,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA059,NA,,,, +Ai28,,,EA059,NA,,,, +Ai29,,,EA059,NA,,,, +Ai3,,1920,EA059,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA059,9,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,,EA059,NA,,,, +Ai32,,,EA059,NA,,,, +Ai33,,1940,EA059,9,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p76, +Ai34,,,EA059,NA,,,, +Ai35,,,EA059,NA,,,, +Ai36,,,EA059,NA,,,, +Ai37,,,EA059,NA,,,, +Ai38,,1930,EA059,10,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA059,10,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA059,NA,,,, +Ai40,,1940,EA059,10,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA059,10,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA059,10,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA059,10,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,1920,EA059,9,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p76, +Ai45,,,EA059,NA,,,, +Ai46,,,EA059,NA,,,, +Ai47,,,EA059,NA,,,, +Ai5,,1920,EA059,10,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA059,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,,EA059,NA,,,, +Ai8,,1930,EA059,10,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA059,3,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,,EA059,NA,,,, +Aj10,,,EA059,NA,,,, +Aj11,,,EA059,NA,,,, +Aj12,,,EA059,NA,,,, +Aj13,,,EA059,NA,,,, +Aj14,,,EA059,NA,,,, +Aj15,,,EA059,NA,,,, +Aj16,with special reference to the Riverain Mondari,1930,EA059,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA059,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,,EA059,NA,,,, +Aj19,,,EA059,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA059,10,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA059,NA,,,, +Aj21,,,EA059,NA,,,, +Aj22,,,EA059,NA,,,, +Aj23,,,EA059,NA,,,, +Aj24,,,EA059,NA,,,, +Aj25,,,EA059,NA,,,, +Aj26,,,EA059,NA,,,, +Aj27,,,EA059,NA,,,, +Aj28,,,EA059,NA,,,, +Aj29,,,EA059,NA,,,, +Aj3,,1930,EA059,10,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA059,NA,,,, +Aj31,,,EA059,NA,,,, +Aj4,,,EA059,NA,,,, +Aj5,,1920,EA059,10,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA059,10,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA059,10,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,,EA059,NA,,,, +Aj9,,1920,EA059,10,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA059,10,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA059,10,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,,EA059,NA,,,, +Ca12,,,EA059,NA,,,, +Ca13,,,EA059,NA,,,, +Ca14,,1950,EA059,10,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,,EA059,NA,,,, +Ca16,,,EA059,NA,,,, +Ca17,,,EA059,NA,,,, +Ca18,,,EA059,NA,,,, +Ca19,,1950,EA059,10,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA059,10,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA059,NA,,,, +Ca21,,1950,EA059,10,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,,EA059,NA,,,, +Ca23,,1950,EA059,10,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA059,10,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,,EA059,NA,,,, +Ca26,,,EA059,NA,,,, +Ca27,,,EA059,NA,,,, +Ca28,,,EA059,NA,,,, +Ca29,,,EA059,NA,,,, +Ca3,,,EA059,NA,,,, +Ca30,,,EA059,NA,,,, +Ca31,,,EA059,NA,,,, +Ca32,,,EA059,NA,,,, +Ca33,,,EA059,NA,,,, +Ca34,,,EA059,NA,,,, +Ca35,,,EA059,NA,,,, +Ca36,,,EA059,NA,,,, +Ca37,,,EA059,NA,,,, +Ca38,,,EA059,NA,,,, +Ca39,,,EA059,NA,,,, +Ca4,,,EA059,NA,,,, +Ca40,,,EA059,NA,,,, +Ca41,,,EA059,NA,,,, +Ca42,,,EA059,NA,,,, +Ca43,,,EA059,NA,,,, +Ca5,,,EA059,NA,,,, +Ca6,,,EA059,NA,,,, +Ca7,,,EA059,NA,,,, +Ca8,,,EA059,NA,,,, +Ca9,,,EA059,NA,,,, +Cb1,,,EA059,NA,,,, +Cb10,,,EA059,NA,,,, +Cb11,,,EA059,NA,,,, +Cb12,,,EA059,NA,,,, +Cb13,,,EA059,NA,,,, +Cb14,,,EA059,NA,,,, +Cb15,,,EA059,NA,,,, +Cb16,,,EA059,NA,,,, +Cb17,,,EA059,NA,,,, +Cb18,,,EA059,NA,,,, +Cb19,,,EA059,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA059,10,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,,EA059,NA,,,, +Cb21,,,EA059,NA,,,, +Cb22,,,EA059,NA,,,, +Cb23,,,EA059,NA,,,, +Cb24,,,EA059,NA,,,, +Cb25,,,EA059,NA,,,, +Cb26,,,EA059,NA,,,, +Cb27,,,EA059,NA,,,, +Cb28,,,EA059,NA,,,, +Cb29,,,EA059,NA,,,, +Cb3,Bamba division,1940,EA059,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA059,NA,,,, +Cb5,,1910,EA059,9,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p80, +Cb6,,,EA059,NA,,,, +Cb7,,,EA059,NA,,,, +Cb8,,,EA059,NA,,,, +Cb9,,,EA059,NA,,,, +Cc1,,1950,EA059,10,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA059,10,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA059,NA,,,, +Cc12,,,EA059,NA,,,, +Cc13,,,EA059,NA,,,, +Cc14,,1880,EA059,10,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA059,NA,,,, +Cc16,,1930,EA059,10,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA059,10,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA059,NA,,,, +Cc19,,,EA059,NA,,,, +Cc2,Nomads of Tibesti,1950,EA059,10,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA059,10,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA059,10,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,,EA059,NA,,,, +Cc5,,1910,EA059,10,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA059,NA,,,, +Cc7,,,EA059,NA,,,, +Cc8,,,EA059,NA,,,, +Cc9,Ahaggaren tribe,1920,EA059,10,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA059,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA059,NA,,,, +Cd11,,1500,EA059,10,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p84, +Cd12,,,EA059,NA,,,, +Cd13,,,EA059,NA,,,, +Cd14,,,EA059,NA,,,, +Cd15,,,EA059,NA,,,, +Cd16,,,EA059,NA,,,, +Cd17,,,EA059,NA,,,, +Cd18,,,EA059,NA,,,, +Cd19,,,EA059,NA,,,, +Cd2,Town and environs of Silwa,1950,EA059,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA059,NA,,,, +Cd21,,,EA059,NA,,,, +Cd3,Entirety: Moroccan,1920,EA059,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA059,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA059,10,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,with special reference to the New Empire,-1400,EA059,9,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA059,NA,,,, +Cd8,,,EA059,NA,,,, +Cd9,,,EA059,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA059,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA059,NA,,,, +Ce3,City and environs of Rome,100,EA059,9,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA059,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA059,9,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA059,9,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA059,9,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA059,10,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA059,3,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA059,NA,,,, +Cf3,,1930,EA059,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,,,EA059,NA,,,, +Cf5,,1930,EA059,9,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA059,4,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA059,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,,,EA059,NA,,,, +Cg4,Konkama District,1950,EA059,10,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA059,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA059,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA059,NA,,,, +Ch11,Viriatino Village,1955,EA059,10,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA059,NA,,,, +Ch3,with special reference to the Hana district of central Moravia,1940,EA059,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA059,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA059,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA059,9,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA059,9,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,,EA059,NA,,,, +Ch9,,1930,EA059,9,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA059,10,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,,,EA059,NA,,,, +Ci11,,1940,EA059,10,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA059,10,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA059,NA,,,, +Ci3,,,EA059,NA,,,, +Ci4,,,EA059,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA059,10,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA059,NA,,,, +Ci7,,,EA059,NA,,,, +Ci8,,,EA059,NA,,,, +Ci9,,,EA059,NA,,,, +Cj1,,,EA059,NA,,,, +Cj10,with special reference to the village of ech-Chibayish,1950,EA059,3,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA059,10,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA059,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA059,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA059,10,But boats are made on the coast,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA059,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA059,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA059,10,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA059,NA,,,, +Ea1,,,EA059,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA059,10,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA059,NA,,,, +Ea12,,,EA059,NA,,,, +Ea13,Mohla Village,1950,EA059,10,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA059,NA,,,, +Ea3,,,EA059,NA,,,, +Ea4,,,EA059,NA,,,, +Ea5,,1890,EA059,10,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA059,10,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA059,10,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA059,10,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,,EA059,NA,,,, +Eb1,Great Horde,1910,EA059,10,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA059,10,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA059,10,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA059,NA,,,, +Eb5,,,EA059,NA,,,, +Eb6,,,EA059,NA,,,, +Eb7,,1930,EA059,10,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA059,NA,,,, +Ec1,Sakhalin Island,1920,EA059,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA059,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA059,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA059,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA059,9,Boats are largely confined to the Maritime Chukchee,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA059,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA059,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,,,EA059,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA059,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA059,NA,,,, +Ec9,,,EA059,NA,,,, +Ed1,Kanghwa Island,1950,EA059,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,,,EA059,NA,,,, +Ed13,,,EA059,NA,,,, +Ed14,,,EA059,NA,,,, +Ed15a,,,EA059,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA059,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA059,NA,,,, +Ed2,,,EA059,NA,,,, +Ed3,,,EA059,NA,,,, +Ed4,,,EA059,NA,,,, +Ed5,Okayama,1950,EA059,10,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA059,NA,,,, +Ed7,,1950,EA059,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA059,9,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA059,10,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA059,10,Rafts only,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA059,10,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA059,10,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA059,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA059,10,Rafts only,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA059,10,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA059,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA059,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,,,EA059,NA,,,, +Ef10,,,EA059,NA,,,, +Ef11,Village and environs of Senapur,1945,EA059,10,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA059,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA059,NA,,,, +Ef4,,,EA059,NA,,,, +Ef5,,1900,EA059,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,,EA059,NA,,,, +Ef7,,,EA059,NA,,,, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA059,3,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,,,EA059,NA,,,, +Eg1,with special reference to the forest group,1940,EA059,10,Rafts only,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,,,EA059,NA,,,, +Eg11,,,EA059,NA,,,, +Eg12,,,EA059,NA,,,, +Eg13,Bastar State,1941,EA059,10,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA059,9,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,,,EA059,NA,,,, +Eg3,Hill Maria,1938,EA059,9,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA059,10,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA059,10,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,,,EA059,NA,,,, +Eg7,,,EA059,NA,,,, +Eg8,,1940,EA059,10,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,,EA059,NA,,,, +Eh1,,1870,EA059,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA059,NA,,,, +Eh2,,,EA059,NA,,,, +Eh3,Menabe subtribe,1930,EA059,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA059,10,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA059,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA059,9,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p92, +Eh7,,1900,EA059,10,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA059,9,"But McLeod reports activity is absent or unimportant (EA048 code ""9"", EA059 code ""10"")",faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA059,NA,,,, +Ei1,Rengsanggr,1900,EA059,10,"But in one limited region 'males alone' (EA048 code ""1""), with no specialization specified (EA059 code ""9"")",burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA059,NA,,,, +Ei11,,1910,EA059,10,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA059,NA,,,, +Ei13,,1910,EA059,10,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA059,10,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA059,NA,,,, +Ei16,,1910,EA059,10,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA059,NA,,,, +Ei18,,,EA059,NA,,,, +Ei19,,,EA059,NA,,,, +Ei2,,,EA059,NA,,,, +Ei20,,,EA059,NA,,,, +Ei3,Nondwin Village,1950,EA059,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,,,EA059,NA,,,, +Ei5,,,EA059,NA,,,, +Ei6,,,EA059,NA,,,, +Ei7,,,EA059,NA,,,, +Ei8,with special reference to those of the Jaintia Hills,1900,EA059,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,,EA059,NA,,,, +Ej1,,,EA059,NA,,,, +Ej10,Ko-Sier Village,1950,EA059,10,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA059,NA,,,, +Ej12,,,EA059,NA,,,, +Ej13,,,EA059,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA059,10,Bamboo rafts only,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA059,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA059,10,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,,,EA059,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA059,10,Bamboo rafts only,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA059,9,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,,EA059,NA,,,, +Ej6,of the Mergui Archipelago,1920,EA059,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,,EA059,NA,,,, +Ej8,with special reference to those of Trengganu,1940,EA059,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA059,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,,,EA059,NA,,,, +Ia10,,,EA059,NA,,,, +Ia11,,,EA059,NA,,,, +Ia12,,1950,EA059,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA059,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA059,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA059,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA059,10,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA059,NA,,,, +Ia18,,,EA059,NA,,,, +Ia2,,1950,EA059,10,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,,,EA059,NA,,,, +Ia4,,,EA059,NA,,,, +Ia5,,1950,EA059,10,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,,,EA059,NA,,,, +Ia7,,,EA059,NA,,,, +Ia8,,,EA059,NA,,,, +Ia9,,,EA059,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA059,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA059,10,"But in coastal towns 'males alone' (EA048 code ""1""), with craft specialization (EA059 code ""3"")",dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA059,10,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA059,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA059,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,1920,EA059,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA059,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,with special reference to the Ridan group,1900,EA059,10,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA059,NA,,,, +Ic1,Borongloe,1940,EA059,9,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA059,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,Allang,1950,EA059,9,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA059,NA,,,, +Ic13,,,EA059,NA,,,, +Ic2,,,EA059,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA059,9,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA059,NA,,,, +Ic5,Bare'e subgroup,1910,EA059,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA059,9,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA059,9,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,1890,EA059,9,,pleyte1893,EthnographicAtlas_1967_p96, +Ic9,with special reference to eastern Sumba,1930,EA059,9,,nooteboom1940,EthnographicAtlas_1967_p96, +Id1,Alice Springs and environs,1900,EA059,10,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA059,10,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA059,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA059,NA,,,, +Id13,,1930,EA059,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA059,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA059,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,,EA059,NA,,,, +Id5,,,EA059,NA,,,, +Id6,,,EA059,NA,,,, +Id7,,,EA059,NA,,,, +Id8,,1830,EA059,10,Rafts only,roth1890,EthnographicAtlas_1967_p96, +Id9,,,EA059,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA059,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA059,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA059,10,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA059,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA059,9,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA059,9,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,,,EA059,NA,,,, +Ie16,,,EA059,NA,,,, +Ie17,,1940,EA059,10,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA059,9,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA059,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA059,10,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA059,9,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA059,9,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA059,10,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA059,9,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,,EA059,NA,,,, +Ie25,,1920,EA059,10,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA059,10,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,,EA059,NA,,,, +Ie28,,1940,EA059,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA059,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,,,EA059,NA,,,, +Ie30,,1950,EA059,9,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,1950,EA059,10,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA059,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA059,NA,,,, +Ie34,,,EA059,NA,,,, +Ie35,,1930,EA059,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA059,NA,,,, +Ie37,,,EA059,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA059,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA059,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA059,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA059,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,,EA059,NA,,,, +Ie7,with special reference to the Mae group,1950,EA059,10,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA059,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA059,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA059,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA059,NA,,,, +If11,,1860,EA059,9,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA059,9,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA059,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA059,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA059,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA059,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA059,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA059,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA059,9,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA059,3,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA059,3,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA059,3,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA059,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA059,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA059,9,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA059,10,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA059,10,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA059,9,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,,,EA059,NA,,,, +Ig13,,1900,EA059,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,1900,EA059,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA059,NA,,,, +Ig16,,,EA059,NA,,,, +Ig17,,,EA059,NA,,,, +Ig18,,,EA059,NA,,,, +Ig19,,,EA059,NA,,,, +Ig2,Kiriwina Island,1910,EA059,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA059,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA059,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA059,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA059,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA059,9,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA059,3,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA059,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA059,NA,,,, +Ig9,Peri Village,1920,EA059,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA059,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,Whitsands,1920,EA059,9,,humphreys1926,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA059,NA,,,, +Ih12,,,EA059,NA,,,, +Ih13,,,EA059,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA059,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA059,9,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA059,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p100, +Ih4,Lau Island,1920,EA059,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA059,NA,,,, +Ih6,,1890,EA059,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA059,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,,,EA059,NA,,,, +Ih9,Graciosa Bay,1930,EA059,3,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA059,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA059,NA,,,, +Ii12,Pangai,1920,EA059,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA059,3,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA059,3,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA059,3,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA059,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA059,3,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA059,3,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA059,9,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA059,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA059,3,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA059,9,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA059,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA059,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA059,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA059,3,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA059,9,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA059,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA059,3,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA059,3,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA059,3,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA059,9,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA059,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA059,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA059,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA059,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA059,9,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA059,9,But boats were lacking until the kayak was introduced in 1862,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA059,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA059,9,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA059,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA059,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA059,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA059,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA059,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA059,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA059,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA059,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA059,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA059,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA059,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA059,9,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA059,9,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA059,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA059,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA059,9,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA059,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA059,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA059,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA059,10,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA059,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA059,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA059,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA059,9,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA059,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA059,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA059,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA059,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA059,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA059,NA,,,, +Na45,,1900,EA059,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA059,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA059,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA059,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA059,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA059,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA059,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,,EA059,NA,,,, +Nb11,with special reference to the Central Nootka,1880,EA059,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA059,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA059,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA059,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA059,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA059,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA059,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA059,9,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA059,9,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA059,3,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA059,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA059,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA059,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA059,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA059,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA059,3,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA059,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA059,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA059,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA059,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA059,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA059,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA059,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,,,EA059,NA,,,, +Nb33,,1860,EA059,10,Log rafts only,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA059,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA059,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA059,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA059,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA059,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA059,9,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA059,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA059,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA059,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA059,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA059,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA059,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA059,10,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA059,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA059,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA059,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA059,10,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA059,10,Rafts only,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA059,10,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,,EA059,NA,,,, +Nc17,with special reference to those of Kalekau,1860,EA059,10,Log rafts only,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA059,10,But men make balsa rafts,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA059,10,Rafts only,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA059,10,Rafts of tule reeds only,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA059,10,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,,EA059,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA059,10,Balsa rafts only,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA059,10,Log rafts only,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA059,10,But men make balsa rafts,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,,EA059,NA,,,, +Nc26,,1770,EA059,10,Balsa canoes only,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA059,NA,,,, +Nc28,,1800,EA059,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA059,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA059,10,Rafts of tule reeds only,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA059,10,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA059,10,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA059,10,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA059,10,Balsa rafts only,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA059,10,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA059,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA059,10,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA059,10,Balsa rafts only,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA059,10,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA059,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA059,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA059,9,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA059,9,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA059,9,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA059,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA059,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA059,9,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA059,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA059,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA059,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA059,9,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA059,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA059,10,Rafts only,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA059,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA059,10,Balsa rafts only,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA059,10,Balsa rafts only,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA059,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA059,10,Rafts only,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA059,10,Balsa rafts only,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA059,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA059,10,Balsa rafts only,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA059,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA059,10,Balsa rafts only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA059,10,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,,EA059,NA,,,, +Nd31,,1850,EA059,10,Log rafts only,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA059,10,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA059,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA059,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA059,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA059,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA059,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA059,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA059,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA059,9,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA059,10,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA059,10,Balsa rafts only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA059,10,Balsa rafts only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA059,10,Balsa rafts only,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA059,10,Balsa rafts only,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA059,10,Balsa rafts only,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA059,10,Balsa rafts only,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA059,10,Balsa rafts only,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA059,10,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA059,10,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA059,10,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA059,10,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,,EA059,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA059,10,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA059,10,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA059,10,Rafts only,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA059,10,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA059,10,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA059,10,But balsa rafts were made,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA059,10,Rafts only,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA059,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA059,10,Rafts only,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA059,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA059,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA059,10,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA059,10,Balsa rafts only,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA059,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA059,10,Rafts only,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA059,10,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA059,10,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA059,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA059,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA059,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA059,10,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA059,9,Skin bullboats,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA059,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA059,10,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA059,10,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA059,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA059,9,Skin bullboats,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA059,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,,EA059,NA,,,, +Ne18,,1850,EA059,10,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA059,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,,EA059,NA,,,, +Ne20,,,EA059,NA,,,, +Ne21,,,EA059,NA,,,, +Ne3,Comanche Tribe,1870,EA059,10,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA059,10,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,,EA059,NA,,,, +Ne6,,,EA059,NA,,,, +Ne7,,1880,EA059,10,Rafts only,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,,EA059,NA,,,, +Ne9,,,EA059,NA,,,, +Nf10,,,EA059,NA,,,, +Nf11,,,EA059,NA,,,, +Nf12,,,EA059,NA,,,, +Nf13,with special reference to the Kiskopotha band,1820,EA059,9,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA059,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA059,NA,,,, +Nf2,,1850,EA059,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA059,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA059,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,,EA059,NA,,,, +Nf6,,,EA059,NA,,,, +Nf7,Tama Reservation,1830,EA059,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,,EA059,NA,,,, +Nf9,,1870,EA059,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA059,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA059,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA059,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA059,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA059,NA,,,, +Ng14,,,EA059,NA,,,, +Ng15,,,EA059,NA,,,, +Ng2,,,EA059,NA,,,, +Ng3,Upper division in Alabama,1750,EA059,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA059,NA,,,, +Ng5,,1750,EA059,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA059,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA059,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA059,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA059,NA,,,, +Nh1,Central band,1880,EA059,10,Rafts only,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA059,NA,,,, +Nh11,,,EA059,NA,,,, +Nh12,,1920,EA059,10,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA059,10,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA059,NA,,,, +Nh15,,1870,EA059,10,Rafts only,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA059,10,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA059,10,Rafts only,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA059,10,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA059,10,Rafts only,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA059,10,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA059,10,Balsa rafts only,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA059,10,Balsa rafts only,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA059,10,Balsa rafts only,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA059,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA059,10,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA059,10,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA059,NA,,,, +Nh27,,,EA059,NA,,,, +Nh3,,1930,EA059,10,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA059,10,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA059,10,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA059,10,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA059,10,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA059,10,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,,EA059,NA,,,, +Ni1,,,EA059,NA,,,, +Ni2,,1930,EA059,10,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,,,EA059,NA,,,, +Ni4,,1900,EA059,10,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA059,10,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA059,10,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA059,9,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA059,NA,,,, +Ni9,,,EA059,NA,,,, +Nj1,,,EA059,NA,,,, +Nj10,mountain village of Yalagag,1940,EA059,10,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA059,NA,,,, +Nj12,,,EA059,NA,,,, +Nj13,,,EA059,NA,,,, +Nj14,,,EA059,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA059,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,,,EA059,NA,,,, +Nj4,,,EA059,NA,,,, +Nj5,,,EA059,NA,,,, +Nj6,,,EA059,NA,,,, +Nj7,with special reference to Ayutla,1930,EA059,10,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA059,9,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA059,10,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA059,3,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,,EA059,NA,,,, +Sa11,,,EA059,NA,,,, +Sa12,,,EA059,NA,,,, +Sa13,Town of Chichicastenango,1930,EA059,10,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA059,NA,,,, +Sa15,,,EA059,NA,,,, +Sa16,,,EA059,NA,,,, +Sa17,,,EA059,NA,,,, +Sa2,,,EA059,NA,,,, +Sa3,,,EA059,NA,,,, +Sa4,with special reference to those of Panama,1960,EA059,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA059,10,"Entry follows Stone and Pittier, who report dugout canoes in some regions; Gann and Skinner deny the presence of water craft",gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA059,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA059,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA059,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA059,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA059,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA059,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA059,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA059,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA059,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p120, +Sb6,Goajiro Tribe,1940,EA059,10,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,,,EA059,NA,,,, +Sb8,,1520,EA059,9,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA059,3,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA059,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA059,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,,EA059,NA,,,, +Sc12,,,EA059,NA,,,, +Sc13,,1950,EA059,10,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA059,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA059,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA059,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,,EA059,NA,,,, +Sc18,,1960,EA059,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA059,9,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA059,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA059,9,But the agricultural Guahibo make dugout canoes,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA059,9,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA059,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA059,9,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA059,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,,EA059,NA,,,, +Sd1,Cabrura village,1950,EA059,10,But barks canoes were formerly used,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA059,10,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA059,9,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA059,10,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA059,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA059,9,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA059,9,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA059,9,Balsa rafts only,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA059,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA059,10,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,1670,EA059,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p120, +Se11,,1960,EA059,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA059,NA,,,, +Se2,,1940,EA059,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA059,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA059,9,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA059,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA059,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA059,NA,,,, +Se8,Upper Inuya River,1950,EA059,10,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA059,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA059,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA059,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA059,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,,EA059,NA,,,, +Sf5,,1900,EA059,10,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,,EA059,NA,,,, +Sf7,,1900,EA059,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA059,NA,,,, +Sf9,,,EA059,NA,,,, +Sg1,Eastern and central,1870,EA059,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA059,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,,,EA059,NA,,,, +Sg4,Equestrian,1870,EA059,10,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA059,9,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA059,10,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,,EA059,NA,,,, +Sh3,Those in contact with mission,1800,EA059,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,,EA059,NA,,,, +Sh5,,1910,EA059,10,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA059,10,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA059,10,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA059,10,"Formerly 'males alone' (EA048 code ""1""), with no specialization specified (EA059 code ""9"")",karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA059,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA059,10,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA059,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA059,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA059,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA059,10,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA059,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA059,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,with special reference to the Cozarimi,1910,EA059,10,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,,EA059,NA,,,, +Si9,,,EA059,NA,,,, +Sj1,,,EA059,NA,,,, +Sj10,Taquapiri,1950,EA059,10,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA059,10,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,,EA059,NA,,,, +Sj3,Duque de Caxias Reservation,1910,EA059,10,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA059,10,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA059,10,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,,,EA059,NA,,,, +Sj7,,1920,EA059,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA059,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA059,10,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA059,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA059,10,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA059,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA059,3,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA059,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA059,10,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA059,3,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA059,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA059,10,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA059,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA059,10,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA059,10,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA059,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA059,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA059,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA059,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA059,3,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA059,10,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA059,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA059,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA059,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA059,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA059,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA059,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA059,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA059,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA059,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA006,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA006,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA006,4,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA006,2,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA006,5,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA006,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA006,3,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA006,2,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA006,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA006,1,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA006,1,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA006,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA006,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA006,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA006,1,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA006,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA006,1,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA006,1,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA006,1,"Bride service (code ""2"") plus token bride price (code ""3"") with uxorilocal residence as a patterned alternative",bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA006,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA006,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA006,1,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA006,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA006,1,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA006,1,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA006,3,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA006,1,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA006,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA006,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA006,1,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA006,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA006,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA006,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA006,2,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA006,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA006,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA006,1,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA006,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA006,1,"Alternatively code ""3"", token bride price, in which case children belong to the MoBr",tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA006,1,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA006,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA006,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA006,1,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA006,3,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA006,1,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA006,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA006,1,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA006,1,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA006,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA006,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA006,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA006,3,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA006,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA006,1,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA006,2,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA006,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA006,1,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA006,3,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA006,2,"Formerly code ""1"", bride wealth, with ""2"", bride service, as alternative",lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA006,2,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA006,2,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA006,1,"Formerly Bride service (code ""2"") with token bride price (code ""3"")",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA006,2,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA006,2,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA006,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA006,1,"A patterned alternative is code ""3"", token bride price, with alternating Uxorilocal and Avunculocal residence",tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA006,2,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA006,2,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA006,2,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA006,1,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA006,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA006,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA006,6,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA006,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA006,3,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA006,1,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA006,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA006,1,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA006,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA006,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA006,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA006,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA006,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA006,1,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA006,1,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA006,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA006,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA006,1,"Alternatively code ""3"", token bride price, with code ""2"", bride service as alternate/supplementary; in this case children are affiliated with the mother's group",blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA006,1,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA006,1,"Alternatively code ""6"", absence of consideration, in which case children are affiliated with the mother's kin group",abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA006,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA006,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA006,1,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA006,1,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA006,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA006,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA006,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA006,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA006,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA006,1,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA006,1,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA006,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA006,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA006,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA006,1,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA006,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA006,3,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA006,1,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA006,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA006,1,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA006,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA006,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA006,1,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA006,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA006,1,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA006,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA006,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA006,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA006,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA006,1,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA006,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA006,3,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA006,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA006,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA006,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA006,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA006,5,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA006,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA006,1,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA006,1,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA006,1,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA006,1,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA006,1,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA006,1,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA006,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA006,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA006,1,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA006,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA006,1,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA006,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA006,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA006,1,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA006,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA006,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA006,1,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA006,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA006,1,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA006,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA006,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA006,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA006,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA006,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA006,5,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA006,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA006,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA006,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA006,1,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA006,1,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA006,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA006,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA006,1,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA006,1,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA006,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA006,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA006,1,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA006,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA006,1,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA006,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA006,1,Usually after capture,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA006,1,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA006,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA006,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA006,5,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA006,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA006,1,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA006,1,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA006,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA006,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA006,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA006,3,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA006,1,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA006,1,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA006,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA006,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA006,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA006,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA006,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA006,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA006,1,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA006,2,"But usually code ""1"", bride wealth, today",brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA006,1,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA006,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA006,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA006,1,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA006,2,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA006,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA006,1,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA006,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA006,1,"Alternatively code ""3"", token bride price, in which case children belong to their mother's group",granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA006,3,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA006,1,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA006,2,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA006,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA006,1,"Or alternatively bride service (code ""2"") plus token bride price (code ""3""), in which case children belong to the mother's kin group",bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA006,5,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA006,2,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA006,1,"Formerly also code ""6,"" exchange of a sister or female relative",armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA006,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA006,1,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA006,1,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA006,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA006,1,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA006,1,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA006,1,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA006,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA006,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA006,1,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA006,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA006,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA006,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA006,1,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA006,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA006,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA006,3,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA006,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA006,1,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA006,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA006,1,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA006,1,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA006,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA006,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA006,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA006,1,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA006,1,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA006,1,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA006,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA006,1,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA006,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA006,1,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA006,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA006,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA006,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA006,3,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA006,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA006,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA006,2,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA006,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA006,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA006,5,Formerly,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA006,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA006,2,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA006,2,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA006,6,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA006,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA006,1,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA006,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA006,1,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA006,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA006,1,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA006,1,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA006,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA006,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA006,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA006,1,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA006,3,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA006,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA006,2,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA006,1,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA006,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA006,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA006,2,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA006,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA006,1,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA006,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA006,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA006,1,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA006,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA006,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA006,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA006,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA006,3,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA006,1,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA006,3,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA006,1,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA006,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA006,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA006,2,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA006,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA006,5,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA006,2,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA006,1,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA006,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA006,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA006,1,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA006,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA006,2,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA006,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA006,3,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA006,1,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA006,5,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA006,5,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA006,2,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA006,1,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA006,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA006,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA006,1,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA006,1,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA006,2,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA006,1,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA006,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA006,1,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA006,1,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA006,2,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA006,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA006,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA006,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA006,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA006,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA006,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA006,5,"Alternatively code ""3"", token bride price, involving avunculocal residence and affiliation with mother's kin group",bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA006,1,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA006,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA006,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA006,1,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA006,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA006,1,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA006,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA006,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA006,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA006,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA006,5,"Exchange marriage, formerly preferred, is now abolished and has been replaced by bride-price, its former alternative",meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74,"Assume Murdock comment refers to Col 12, not Col 14 as stated in Gray (1999)" +Ah5,,1930,EA006,1,"Exchange marriage has been abolished by the British administration; payment of a bride-price, formerly a less preferred mode, is now the rule",meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA006,3,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA006,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA006,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA006,5,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA006,5,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA006,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA006,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA006,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA006,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA006,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA006,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA006,1,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA006,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA006,1,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA006,1,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA006,1,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA006,1,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA006,1,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA006,1,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA006,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA006,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA006,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA006,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA006,1,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA006,1,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA006,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA006,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA006,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA006,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA006,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA006,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA006,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA006,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA006,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA006,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA006,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA006,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA006,2,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA006,1,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA006,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA006,1,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA006,1,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA006,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA006,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA006,5,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA006,5,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA006,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA006,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA006,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA006,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA006,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA006,1,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA006,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA006,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA006,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA006,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA006,1,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA006,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA006,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA006,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA006,1,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA006,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA006,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA006,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA006,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA006,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA006,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA006,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA006,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA006,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA006,1,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA006,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA006,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA006,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA006,1,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA006,1,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA006,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA006,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA006,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA006,1,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA006,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA006,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA006,6,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA006,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA006,1,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA006,1,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA006,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA006,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA006,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA006,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA006,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA006,1,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA006,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA006,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA006,1,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA006,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA006,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA006,1,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA006,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA006,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA006,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,,EA006,NA,,,, +Ca28,,1950,EA006,1,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA006,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA006,7,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA006,1,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA006,6,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA006,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA006,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA006,1,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA006,1,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA006,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA006,1,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA006,1,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA006,1,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA006,1,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA006,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA006,6,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA006,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA006,2,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA006,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA006,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA006,6,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA006,1,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA006,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA006,1,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA006,1,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA006,1,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA006,1,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA006,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA006,1,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA006,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA006,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA006,1,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA006,4,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA006,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA006,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA006,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA006,1,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA006,1,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA006,1,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA006,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA006,1,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA006,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA006,1,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA006,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA006,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA006,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA006,1,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA006,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA006,2,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA006,1,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA006,1,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA006,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA006,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA006,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA006,1,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA006,1,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA006,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA006,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA006,NA,,,, +Cc16,,1930,EA006,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA006,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA006,1,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA006,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA006,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA006,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA006,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA006,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA006,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA006,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA006,1,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA006,1,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA006,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA006,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA006,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA006,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA006,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA006,1,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA006,1,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA006,1,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA006,1,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA006,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA006,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA006,1,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA006,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA006,1,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA006,1,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA006,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA006,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA006,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA006,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA006,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA006,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA006,1,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA006,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA006,6,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA006,7,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA006,7,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA006,6,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA006,6,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA006,7,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA006,7,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA006,6,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA006,7,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA006,6,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA006,6,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA006,7,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA006,6,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA006,7,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA006,7,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA006,6,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA006,7,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA006,7,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA006,6,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA006,4,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA006,7,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA006,7,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA006,7,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA006,6,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA006,7,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA006,7,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA006,4,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA006,7,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA006,4,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA006,7,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA006,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA006,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA006,1,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA006,1,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA006,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA006,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA006,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA006,1,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA006,7,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA006,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA006,1,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA006,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA006,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA006,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA006,3,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA006,1,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA006,1,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA006,6,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA006,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA006,1,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA006,1,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA006,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA006,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA006,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA006,7,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA006,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA006,1,The dowry is approximately equal in value to the bride-price,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA006,1,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA006,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA006,1,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA006,1,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA006,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA006,1,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA006,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA006,1,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA006,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA006,1,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA006,1,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA006,1,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA006,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA006,1,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA006,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA006,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA006,1,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA006,4,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA006,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA006,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA006,2,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA006,2,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA006,6,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA006,1,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA006,1,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA006,6,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA006,7,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA006,6,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA006,1,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA006,6,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA006,7,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA006,1,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA006,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA006,1,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA006,1,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA006,4,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA006,1,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA006,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA006,1,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA006,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA006,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA006,3,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA006,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA006,7,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA006,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA006,7,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA006,1,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA006,7,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA006,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA006,1,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA006,4,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA006,7,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA006,1,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA006,1,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA006,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA006,1,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA006,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA006,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA006,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA006,3,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA006,7,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,,,EA006,NA,,,, +Eg12,with special reference to the Bondo,1940,EA006,1,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA006,1,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA006,3,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA006,7,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA006,1,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA006,3,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA006,6,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA006,6,Entry pertains to the Nayar caste; a bride-price and a dowry are customary in the Tiyyar and Mappilla castes,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA006,1,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA006,1,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA006,1,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA006,6,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA006,3,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA006,3,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA006,3,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA006,3,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA006,6,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA006,7,The dowry is really a daughter's inheritance received in advance,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA006,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA006,6,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA006,3,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA006,6,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA006,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA006,2,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA006,1,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA006,3,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA006,3,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA006,1,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA006,1,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA006,6,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA006,1,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA006,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA006,1,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA006,1,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA006,7,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA006,1,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA006,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA006,2,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA006,6,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA006,6,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA006,1,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA006,1,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA006,7,"Entry follows Donoghue; other sources report code ""1"", bride wealth",donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA006,3,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA006,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA006,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA006,6,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA006,3,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA006,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA006,4,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA006,6,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA006,3,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA006,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA006,6,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA006,6,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA006,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA006,3,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA006,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA006,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA006,6,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA006,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA006,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA006,6,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA006,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA006,6,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA006,1,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA006,6,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA006,4,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA006,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA006,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA006,2,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA006,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA006,2,"Formerly code ""1"", bride wealth",fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA006,2,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA006,6,"Entry follows Mabuchi; Wei reports code ""1"", bride wealth",mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA006,6,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA006,6,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA006,3,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA006,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA006,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA006,6,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA006,2,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA006,2,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA006,1,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA006,1,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA006,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA006,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA006,6,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA006,1,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA006,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA006,1,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA006,1,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA006,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA006,1,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA006,1,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA006,1,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA006,4,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA006,7,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA006,3,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA006,5,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA006,6,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA006,6,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA006,2,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA006,1,"Formerly code ""6,"" exchange of a sister or female relative",basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA006,5,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA006,5,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA006,7,"Also code ""6"", absence of consideration",mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,,EA006,NA,,,, +Id8,,1830,EA006,6,Marriage by capture was common,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA006,5,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA006,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA006,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA006,4,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA006,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA006,5,"Recently more commonly code ""1"", bride wealth",landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA006,5,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA006,1,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA006,1,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA006,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA006,5,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA006,5,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA006,5,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA006,1,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA006,4,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA006,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA006,1,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA006,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA006,1,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA006,5,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA006,5,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA006,5,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA006,6,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA006,6,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA006,5,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA006,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA006,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA006,5,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA006,1,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA006,1,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA006,5,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA006,1,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA006,4,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA006,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA006,4,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA006,5,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA006,4,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA006,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA006,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA006,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA006,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA006,6,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA006,6,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA006,6,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA006,6,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA006,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA006,6,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA006,6,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA006,6,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA006,6,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA006,6,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA006,6,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA006,6,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA006,6,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA006,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA006,6,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA006,2,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA006,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA006,4,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA006,1,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA006,1,But no bride-price is paid when residence is uxorilocal,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA006,6,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA006,4,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,,EA006,NA,,,, +Ig16,,,EA006,NA,,,, +Ig17,,1950,EA006,1,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA006,1,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA006,1,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA006,4,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA006,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA006,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA006,1,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA006,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA006,4,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA006,1,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA006,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA006,1,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA006,4,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA006,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA006,1,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA006,1,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA006,1,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA006,5,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA006,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA006,1,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA006,5,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA006,4,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA006,5,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA006,6,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA006,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA006,4,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA006,1,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA006,4,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA006,6,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA006,6,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA006,6,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA006,4,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA006,4,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA006,4,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA006,4,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA006,6,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA006,6,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA006,6,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA006,6,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA006,6,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA006,6,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA006,6,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA006,6,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA006,6,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA006,6,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA006,6,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA006,6,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA006,6,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA006,6,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA006,6,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA006,3,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA006,6,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA006,2,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA006,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA006,2,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA006,6,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA006,6,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA006,6,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA006,2,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA006,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA006,6,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA006,6,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA006,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA006,6,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA006,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA006,6,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA006,6,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA006,2,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA006,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA006,2,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA006,6,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA006,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA006,6,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA006,6,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA006,2,"In Murdock (1964a) coded as code ""6"", absence of consideration with the comment ""Entry follows Lips; Burgesse reports code ""2"", bride service. In EA the entry is code ""2"", bride service",burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA006,6,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA006,6,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA006,6,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA006,6,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA006,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA006,6,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA006,2,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA006,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA006,NA,,,, +Na41,Mainland division,1700,EA006,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA006,6,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA006,6,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA006,6,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA006,6,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA006,6,"Alternatively code ""6"", absence of consideration",lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA006,6,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA006,2,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA006,6,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA006,2,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA006,2,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA006,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA006,4,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA006,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA006,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA006,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA006,4,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA006,4,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA006,4,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA006,1,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA006,1,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA006,4,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA006,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA006,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA006,4,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA006,4,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA006,4,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA006,3,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA006,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA006,4,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA006,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA006,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA006,4,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA006,1,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA006,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA006,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA006,1,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA006,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA006,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA006,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA006,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA006,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA006,1,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA006,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA006,2,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA006,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA006,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA006,4,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA006,4,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA006,4,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA006,1,"Entry follows Voegelin; Stewart reports code ""6"", absence of consideration",goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA006,2,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA006,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA006,6,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA006,6,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA006,6,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA006,6,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA006,6,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA006,6,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA006,6,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA006,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA006,6,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA006,6,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA006,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA006,6,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA006,6,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA006,6,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA006,6,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA006,1,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA006,6,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA006,6,"Entry follows Harrington; Kroeber reports code ""3"", token bride price",harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA006,6,Entry follows Gayton: Kroeber reports a bride-price,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA006,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA006,6,"But Strong reports code ""1"", bride wealth",drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA006,6,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA006,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA006,1,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA006,4,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA006,6,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA006,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA006,4,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA006,4,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA006,4,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA006,4,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA006,6,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA006,4,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA006,6,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA006,6,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA006,6,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA006,4,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA006,6,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA006,4,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA006,4,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA006,4,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA006,6,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA006,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA006,6,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA006,6,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA006,6,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA006,2,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA006,6,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA006,6,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA006,6,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA006,6,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA006,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA006,3,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA006,3,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA006,6,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA006,6,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA006,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA006,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA006,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA006,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA006,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA006,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA006,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA006,3,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA006,6,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA006,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA006,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA006,6,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA006,6,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA006,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA006,2,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA006,6,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA006,6,"But Malouf reports code ""1"", bride wealth",malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA006,6,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA006,6,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA006,6,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA006,6,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA006,6,"But Lowie reports code ""2"", bride service",drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA006,6,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA006,6,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA006,6,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA006,6,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA006,6,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA006,6,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA006,6,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA006,6,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA006,6,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA006,3,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA006,3,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA006,6,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA006,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA006,6,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA006,3,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA006,1,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA006,6,"But Chamberlain reports code ""1"", bride wealth",boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA006,4,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA006,6,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA006,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA006,6,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA006,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA006,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA006,4,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA006,6,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA006,6,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA006,2,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA006,6,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA006,4,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA006,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA006,4,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA006,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA006,NA,,,, +Ne3,Comanche Tribe,1870,EA006,6,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA006,3,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA006,3,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA006,6,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA006,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA006,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA006,6,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA006,6,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA006,1,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA006,3,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA006,3,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA006,6,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA006,2,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA006,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA006,4,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA006,4,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA006,2,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA006,6,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA006,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA006,6,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA006,6,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA006,6,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA006,6,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA006,6,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA006,6,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA006,2,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA006,6,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA006,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA006,6,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA006,3,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA006,2,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA006,6,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA006,6,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA006,6,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,,EA006,NA,,,, +Ng9,,1920,EA006,6,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA006,6,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA006,6,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA006,6,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA006,6,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA006,6,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA006,6,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA006,6,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA006,6,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA006,3,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA006,6,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA006,2,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA006,6,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA006,6,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA006,6,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA006,6,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA006,6,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA006,6,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA006,6,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA006,6,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA006,6,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA006,3,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA006,6,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA006,6,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA006,6,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA006,6,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA006,6,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA006,6,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA006,2,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA006,6,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA006,6,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA006,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA006,6,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA006,6,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA006,6,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA006,6,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,,EA006,NA,,,, +Nj1,Ojitlan,1940,EA006,6,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA006,6,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA006,1,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,,EA006,NA,,,, +Nj13,,,EA006,NA,,,, +Nj14,,,EA006,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA006,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA006,6,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA006,6,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA006,6,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA006,6,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA006,6,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA006,6,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA006,6,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA006,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA006,3,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA006,3,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA006,6,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA006,3,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA006,2,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA006,6,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,,EA006,NA,,,, +Sa17,with special reference to the village of Chinantla,1950,EA006,6,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA006,2,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA006,2,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA006,6,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA006,2,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA006,2,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA006,6,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA006,3,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA006,3,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA006,2,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA006,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA006,6,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA006,6,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA006,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA006,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA006,6,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA006,1,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA006,6,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA006,2,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA006,2,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA006,2,"Or alternatively code ""1"", bride wealth",simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA006,2,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA006,6,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,,EA006,NA,,,, +Sc15,,1910,EA006,2,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA006,6,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA006,6,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA006,6,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA006,2,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA006,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA006,2,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA006,2,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA006,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA006,2,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA006,6,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,,EA006,NA,,,, +Sd1,Cabrura village,1950,EA006,2,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA006,6,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA006,6,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA006,6,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA006,2,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA006,2,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA006,2,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA006,2,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA006,5,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA006,6,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA006,2,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA006,6,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA006,5,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA006,5,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA006,2,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA006,2,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA006,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA006,2,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA006,6,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA006,2,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA006,2,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA006,6,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA006,6,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA006,6,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA006,3,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA006,6,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA006,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA006,6,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA006,6,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA006,6,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA006,2,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA006,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA006,6,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA006,4,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA006,6,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA006,2,Entry follows Fock; earlier sources report a modest bride-price,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA006,6,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA006,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA006,6,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA006,2,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA006,2,"Entry follows Boggiani; Baldus reports code ""1"", bride wealth",baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA006,2,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA006,6,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA006,6,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA006,6,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA006,6,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA006,3,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA006,6,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA006,6,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA006,2,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,,EA006,NA,,,, +Si7,with special reference to the Cozarimi,1910,EA006,6,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA006,6,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA006,NA,,,, +Sj1,,1950,EA006,6,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA006,6,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA006,2,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA006,6,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA006,6,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA006,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA006,6,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA006,2,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA006,3,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA006,2,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA006,6,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA006,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA006,4,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA006,4,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA006,7,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA006,7,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA006,4,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA006,7,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA006,7,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA006,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA006,7,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA006,7,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA006,7,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA006,7,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA006,7,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA006,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA006,7,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA006,6,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA006,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA006,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA006,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA006,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA006,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA006,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA006,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA006,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA006,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA006,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA060,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA060,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA060,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA060,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA060,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,,EA060,NA,,,, +Aa7,,1910,EA060,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,,EA060,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA060,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,,EA060,NA,,,, +Ab10,,1936,EA060,9,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,,EA060,NA,,,, +Ab12,,1830,EA060,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA060,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,,EA060,NA,,,, +Ab15,,,EA060,NA,,,, +Ab16,,,EA060,NA,,,, +Ab17,,,EA060,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA060,9,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA060,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA060,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA060,NA,,,, +Ab21a,,,EA060,NA,,,, +Ab21b,,,EA060,NA,,,, +Ab22,,,EA060,NA,,,, +Ab3,Ruling Luyana,1890,EA060,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA060,9,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA060,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA060,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,,,EA060,NA,,,, +Ab8,Basuto,1860,EA060,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA060,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA060,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,,EA060,NA,,,, +Ac11,,,EA060,NA,,,, +Ac12,,,EA060,NA,,,, +Ac13,,,EA060,NA,,,, +Ac14,,,EA060,NA,,,, +Ac15,,,EA060,NA,,,, +Ac16,,,EA060,NA,,,, +Ac17,Feshi territory lineage center,1910,EA060,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA060,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA060,NA,,,, +Ac2,,,EA060,NA,,,, +Ac20,,,EA060,NA,,,, +Ac21,,,EA060,NA,,,, +Ac22,,,EA060,NA,,,, +Ac23,with special reference to the western Lele,1950,EA060,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA060,NA,,,, +Ac25,,,EA060,NA,,,, +Ac26,,,EA060,NA,,,, +Ac27,,,EA060,NA,,,, +Ac28,,,EA060,NA,,,, +Ac29,,,EA060,NA,,,, +Ac3,Zambia branch,1900,EA060,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA060,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,,EA060,NA,,,, +Ac32,,,EA060,NA,,,, +Ac33,,,EA060,NA,,,, +Ac34,,,EA060,NA,,,, +Ac35,,,EA060,NA,,,, +Ac36,,,EA060,NA,,,, +Ac37,,,EA060,NA,,,, +Ac38,,,EA060,NA,,,, +Ac39,,,EA060,NA,,,, +Ac4,,,EA060,NA,,,, +Ac40,,,EA060,NA,,,, +Ac41,,,EA060,NA,,,, +Ac42,,,EA060,NA,,,, +Ac43,,,EA060,NA,,,, +Ac5,,,EA060,NA,,,, +Ac6,,,EA060,NA,,,, +Ac7,,1920,EA060,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,,EA060,NA,,,, +Ac9,,,EA060,NA,,,, +Ad1,,,EA060,NA,,,, +Ad10,,,EA060,NA,,,, +Ad11,,1930,EA060,9,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA060,NA,,,, +Ad13,,1930,EA060,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,Morogoro District,1930,EA060,9,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p68, +Ad15,,,EA060,NA,,,, +Ad16,,,EA060,NA,,,, +Ad17,,1920,EA060,9,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA060,NA,,,, +Ad19,,1910,EA060,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA060,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA060,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,,EA060,NA,,,, +Ad22,,,EA060,NA,,,, +Ad23,,,EA060,NA,,,, +Ad24,,,EA060,NA,,,, +Ad25,,,EA060,NA,,,, +Ad26,,,EA060,NA,,,, +Ad27,,,EA060,NA,,,, +Ad28,,,EA060,NA,,,, +Ad29,,1930,EA060,3,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA060,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,,EA060,NA,,,, +Ad31,,1910,EA060,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,,EA060,NA,,,, +Ad33,,,EA060,NA,,,, +Ad34,,,EA060,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA060,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA060,NA,,,, +Ad37,,,EA060,NA,,,, +Ad38,,,EA060,NA,,,, +Ad39,,,EA060,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA060,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA060,NA,,,, +Ad41,,1930,EA060,10,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,,EA060,NA,,,, +Ad43,,,EA060,NA,,,, +Ad44,,,EA060,NA,,,, +Ad45,,1920,EA060,9,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,,EA060,NA,,,, +Ad47,,,EA060,NA,,,, +Ad48,,1950,EA060,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA060,NA,,,, +Ad5,,,EA060,NA,,,, +Ad50,,,EA060,NA,,,, +Ad51,,,EA060,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA060,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA060,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA060,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,,EA060,NA,,,, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA060,9,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA060,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA060,9,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,,EA060,NA,,,, +Ae13,,,EA060,NA,,,, +Ae14,,1950,EA060,9,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,,EA060,NA,,,, +Ae16,,,EA060,NA,,,, +Ae17,,,EA060,NA,,,, +Ae18,,,EA060,NA,,,, +Ae19,,,EA060,NA,,,, +Ae2,,,EA060,NA,,,, +Ae20,,,EA060,NA,,,, +Ae21,,,EA060,NA,,,, +Ae22,,,EA060,NA,,,, +Ae23,,,EA060,NA,,,, +Ae24,,,EA060,NA,,,, +Ae25,,,EA060,NA,,,, +Ae26,,,EA060,NA,,,, +Ae27,,,EA060,NA,,,, +Ae28,,,EA060,NA,,,, +Ae29,,,EA060,NA,,,, +Ae3,,,EA060,NA,,,, +Ae30,,,EA060,NA,,,, +Ae31,,,EA060,NA,,,, +Ae32,,,EA060,NA,,,, +Ae33,,1920,EA060,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA060,NA,,,, +Ae35,,,EA060,NA,,,, +Ae36,,,EA060,NA,,,, +Ae37,,,EA060,NA,,,, +Ae38,,,EA060,NA,,,, +Ae39,,1920,EA060,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA060,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA060,NA,,,, +Ae41,,,EA060,NA,,,, +Ae42,,,EA060,NA,,,, +Ae43,,,EA060,NA,,,, +Ae44,,,EA060,NA,,,, +Ae45,,,EA060,NA,,,, +Ae46,,,EA060,NA,,,, +Ae47,,,EA060,NA,,,, +Ae48,,,EA060,NA,,,, +Ae49,,,EA060,NA,,,, +Ae5,,1910,EA060,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA060,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA060,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,1950,EA060,9,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,,EA060,NA,,,, +Ae54,,,EA060,NA,,,, +Ae55,,1950,EA060,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,1950,EA060,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae57,,,EA060,NA,,,, +Ae58,,,EA060,NA,,,, +Ae59,,,EA060,NA,,,, +Ae6,,,EA060,NA,,,, +Ae7,,,EA060,NA,,,, +Ae8,,1910,EA060,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA060,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,,,EA060,NA,,,, +Af10,,1930,EA060,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,,EA060,NA,,,, +Af12,,,EA060,NA,,,, +Af13,,,EA060,NA,,,, +Af14,,1930,EA060,9,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA060,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA060,NA,,,, +Af17,,,EA060,NA,,,, +Af18,,,EA060,NA,,,, +Af19,,,EA060,NA,,,, +Af2,,,EA060,NA,,,, +Af20,,,EA060,NA,,,, +Af21,,,EA060,NA,,,, +Af22,,,EA060,NA,,,, +Af23,with special reference to the village of Mgbom,1950,EA060,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA060,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,,EA060,NA,,,, +Af26,,,EA060,NA,,,, +Af27,,,EA060,NA,,,, +Af28,,,EA060,NA,,,, +Af29,,,EA060,NA,,,, +Af3,,,EA060,NA,,,, +Af30,,,EA060,NA,,,, +Af31,,,EA060,NA,,,, +Af32,,,EA060,NA,,,, +Af33,,,EA060,NA,,,, +Af34,,,EA060,NA,,,, +Af35,,,EA060,NA,,,, +Af36,,,EA060,NA,,,, +Af37,,,EA060,NA,,,, +Af38,,,EA060,NA,,,, +Af39,,,EA060,NA,,,, +Af4,,1930,EA060,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA060,NA,,,, +Af41,,,EA060,NA,,,, +Af42,,,EA060,NA,,,, +Af43,,,EA060,NA,,,, +Af44,,,EA060,NA,,,, +Af45,,,EA060,NA,,,, +Af46,,,EA060,NA,,,, +Af47,,,EA060,NA,,,, +Af48,,,EA060,NA,,,, +Af49,,,EA060,NA,,,, +Af5,,1930,EA060,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA060,NA,,,, +Af51,,,EA060,NA,,,, +Af52,,1920,EA060,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA060,NA,,,, +Af54,,,EA060,NA,,,, +Af55,,,EA060,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA060,10,,schwab1947; viard1934,EthnographicAtlas_1967_p72,"Assume Murdock comment refers to Col 59, not Col 60 as stated in Gray (1999)" +Af57,,,EA060,NA,,,, +Af58,,,EA060,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA060,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,,EA060,NA,,,, +Af8,,,EA060,NA,,,, +Af9,,,EA060,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA060,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA060,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA060,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA060,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,,EA060,NA,,,, +Ag14,,,EA060,NA,,,, +Ag15,,,EA060,NA,,,, +Ag16,,,EA060,NA,,,, +Ag17,,,EA060,NA,,,, +Ag18,,,EA060,NA,,,, +Ag19,,,EA060,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA060,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA060,NA,,,, +Ag21,,1910,EA060,9,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,,,EA060,NA,,,, +Ag23,,,EA060,NA,,,, +Ag24,,,EA060,NA,,,, +Ag25,,,EA060,NA,,,, +Ag26,,,EA060,NA,,,, +Ag27,,,EA060,NA,,,, +Ag28,,,EA060,NA,,,, +Ag29,,,EA060,NA,,,, +Ag3,,,EA060,NA,,,, +Ag30,,,EA060,NA,,,, +Ag31,,,EA060,NA,,,, +Ag32,,,EA060,NA,,,, +Ag33,,,EA060,NA,,,, +Ag34,,,EA060,NA,,,, +Ag35,,,EA060,NA,,,, +Ag36,,,EA060,NA,,,, +Ag37,,,EA060,NA,,,, +Ag38,,,EA060,NA,,,, +Ag39,,1910,EA060,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA060,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA060,NA,,,, +Ag41,,1920,EA060,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p72, +Ag42,,,EA060,NA,,,, +Ag43,,,EA060,NA,,,, +Ag44,,,EA060,NA,,,, +Ag45,,,EA060,NA,,,, +Ag46,,,EA060,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA060,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA060,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,,EA060,NA,,,, +Ag5,,1930,EA060,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,,EA060,NA,,,, +Ag51,,,EA060,NA,,,, +Ag52,,,EA060,NA,,,, +Ag53,with special reference to those of Garango,1960,EA060,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA060,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA060,NA,,,, +Ag7,,,EA060,NA,,,, +Ag8,,,EA060,NA,,,, +Ag9,,,EA060,NA,,,, +Ah1,Zaria Province,1930,EA060,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA060,NA,,,, +Ah11,,,EA060,NA,,,, +Ah12,,,EA060,NA,,,, +Ah13,,,EA060,NA,,,, +Ah14,,,EA060,NA,,,, +Ah15,,,EA060,NA,,,, +Ah16,,,EA060,NA,,,, +Ah17,,,EA060,NA,,,, +Ah18,,,EA060,NA,,,, +Ah19,,,EA060,NA,,,, +Ah2,,,EA060,NA,,,, +Ah20,,1920,EA060,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA060,NA,,,, +Ah22,,,EA060,NA,,,, +Ah23,,,EA060,NA,,,, +Ah24,,,EA060,NA,,,, +Ah25,,,EA060,NA,,,, +Ah26,,,EA060,NA,,,, +Ah27,,,EA060,NA,,,, +Ah28,,,EA060,NA,,,, +Ah29,,,EA060,NA,,,, +Ah3,Tar of Benue Province,1920,EA060,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA060,NA,,,, +Ah31,,,EA060,NA,,,, +Ah32,,,EA060,NA,,,, +Ah33,,,EA060,NA,,,, +Ah34,,,EA060,NA,,,, +Ah35,,,EA060,NA,,,, +Ah36,,1920,EA060,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA060,NA,,,, +Ah38,,,EA060,NA,,,, +Ah39,,1950,EA060,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA060,NA,,,, +Ah5,,,EA060,NA,,,, +Ah6,,,EA060,NA,,,, +Ah7,,1940,EA060,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,,EA060,NA,,,, +Ah9,,1920,EA060,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,,EA060,NA,,,, +Ai10,,,EA060,NA,,,, +Ai11,,,EA060,NA,,,, +Ai12,,,EA060,NA,,,, +Ai13,,,EA060,NA,,,, +Ai14,,,EA060,NA,,,, +Ai15,,,EA060,NA,,,, +Ai16,,,EA060,NA,,,, +Ai17,,,EA060,NA,,,, +Ai18,,,EA060,NA,,,, +Ai19,,,EA060,NA,,,, +Ai2,,,EA060,NA,,,, +Ai20,,,EA060,NA,,,, +Ai21,,,EA060,NA,,,, +Ai22,,,EA060,NA,,,, +Ai23,,,EA060,NA,,,, +Ai24,,,EA060,NA,,,, +Ai25,,,EA060,NA,,,, +Ai26,,,EA060,NA,,,, +Ai27,,,EA060,NA,,,, +Ai28,,,EA060,NA,,,, +Ai29,,,EA060,NA,,,, +Ai3,,1920,EA060,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,,EA060,NA,,,, +Ai31,,,EA060,NA,,,, +Ai32,,1920,EA060,9,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p76, +Ai33,,1940,EA060,9,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p76, +Ai34,,,EA060,NA,,,, +Ai35,,1870,EA060,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA060,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA060,NA,,,, +Ai38,,,EA060,NA,,,, +Ai39,,,EA060,NA,,,, +Ai4,,,EA060,NA,,,, +Ai40,,,EA060,NA,,,, +Ai41,,,EA060,NA,,,, +Ai42,,,EA060,NA,,,, +Ai43,,,EA060,NA,,,, +Ai44,,,EA060,NA,,,, +Ai45,,,EA060,NA,,,, +Ai46,,,EA060,NA,,,, +Ai47,Northern division,1939,EA060,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,,EA060,NA,,,, +Ai6,Shilluk Kingdom,1900,EA060,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,,EA060,NA,,,, +Ai8,,,EA060,NA,,,, +Ai9,,,EA060,NA,,,, +Aj1,,,EA060,NA,,,, +Aj10,,,EA060,NA,,,, +Aj11,,,EA060,NA,,,, +Aj12,,,EA060,NA,,,, +Aj13,,,EA060,NA,,,, +Aj14,,,EA060,NA,,,, +Aj15,,1900,EA060,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,,,EA060,NA,,,, +Aj17,,1890,EA060,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,,EA060,NA,,,, +Aj19,,,EA060,NA,,,, +Aj2,,,EA060,NA,,,, +Aj20,,,EA060,NA,,,, +Aj21,,,EA060,NA,,,, +Aj22,,1930,EA060,9,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA060,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,,EA060,NA,,,, +Aj25,,,EA060,NA,,,, +Aj26,,,EA060,NA,,,, +Aj27,,,EA060,NA,,,, +Aj28,,,EA060,NA,,,, +Aj29,,,EA060,NA,,,, +Aj3,,,EA060,NA,,,, +Aj30,,,EA060,NA,,,, +Aj31,,,EA060,NA,,,, +Aj4,,,EA060,NA,,,, +Aj5,,1920,EA060,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,,EA060,NA,,,, +Aj7,,1910,EA060,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,,EA060,NA,,,, +Aj9,,1920,EA060,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA060,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,,EA060,NA,,,, +Ca11,,1890,EA060,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA060,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA060,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,,EA060,NA,,,, +Ca15,,,EA060,NA,,,, +Ca16,,,EA060,NA,,,, +Ca17,,1950,EA060,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA060,NA,,,, +Ca19,,1950,EA060,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA060,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA060,NA,,,, +Ca21,,1950,EA060,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,,EA060,NA,,,, +Ca23,,,EA060,NA,,,, +Ca24,,,EA060,NA,,,, +Ca25,,,EA060,NA,,,, +Ca26,,,EA060,NA,,,, +Ca27,,,EA060,NA,,,, +Ca28,,,EA060,NA,,,, +Ca29,,,EA060,NA,,,, +Ca3,,,EA060,NA,,,, +Ca30,,,EA060,NA,,,, +Ca31,,,EA060,NA,,,, +Ca32,,,EA060,NA,,,, +Ca33,,,EA060,NA,,,, +Ca34,,,EA060,NA,,,, +Ca35,,,EA060,NA,,,, +Ca36,,,EA060,NA,,,, +Ca37,,,EA060,NA,,,, +Ca38,,,EA060,NA,,,, +Ca39,,,EA060,NA,,,, +Ca4,,,EA060,NA,,,, +Ca40,,,EA060,NA,,,, +Ca41,,1950,EA060,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA060,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA060,NA,,,, +Ca5,,,EA060,NA,,,, +Ca6,,1880,EA060,9,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p80, +Ca7,Gondar district,1950,EA060,9,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA060,NA,,,, +Ca9,,,EA060,NA,,,, +Cb1,,,EA060,NA,,,, +Cb10,,,EA060,NA,,,, +Cb11,,,EA060,NA,,,, +Cb12,,,EA060,NA,,,, +Cb13,,,EA060,NA,,,, +Cb14,,,EA060,NA,,,, +Cb15,,,EA060,NA,,,, +Cb16,,,EA060,NA,,,, +Cb17,,,EA060,NA,,,, +Cb18,,,EA060,NA,,,, +Cb19,,,EA060,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA060,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,,EA060,NA,,,, +Cb21,,,EA060,NA,,,, +Cb22,,,EA060,NA,,,, +Cb23,,,EA060,NA,,,, +Cb24,,,EA060,NA,,,, +Cb25,,,EA060,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA060,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA060,NA,,,, +Cb28,,,EA060,NA,,,, +Cb29,,,EA060,NA,,,, +Cb3,Bamba division,1940,EA060,9,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,,EA060,NA,,,, +Cb5,,,EA060,NA,,,, +Cb6,,,EA060,NA,,,, +Cb7,,,EA060,NA,,,, +Cb8,,,EA060,NA,,,, +Cb9,,,EA060,NA,,,, +Cc1,,1950,EA060,9,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA060,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA060,NA,,,, +Cc12,,,EA060,NA,,,, +Cc13,,,EA060,NA,,,, +Cc14,,1880,EA060,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA060,NA,,,, +Cc16,,,EA060,NA,,,, +Cc17,,1930,EA060,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA060,NA,,,, +Cc19,,,EA060,NA,,,, +Cc2,Nomads of Tibesti,1950,EA060,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,,,EA060,NA,,,, +Cc3,,,EA060,NA,,,, +Cc4,,,EA060,NA,,,, +Cc5,,,EA060,NA,,,, +Cc6,,,EA060,NA,,,, +Cc7,,,EA060,NA,,,, +Cc8,,,EA060,NA,,,, +Cc9,Ahaggaren tribe,1920,EA060,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,,,EA060,NA,,,, +Cd10,,,EA060,NA,,,, +Cd11,,,EA060,NA,,,, +Cd12,,,EA060,NA,,,, +Cd13,,,EA060,NA,,,, +Cd14,,,EA060,NA,,,, +Cd15,,,EA060,NA,,,, +Cd16,,,EA060,NA,,,, +Cd17,,,EA060,NA,,,, +Cd18,,,EA060,NA,,,, +Cd19,,,EA060,NA,,,, +Cd2,,,EA060,NA,,,, +Cd20,,,EA060,NA,,,, +Cd21,,,EA060,NA,,,, +Cd3,Entirety: Moroccan,1920,EA060,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,,EA060,NA,,,, +Cd5,,,EA060,NA,,,, +Cd6,,,EA060,NA,,,, +Cd7,,,EA060,NA,,,, +Cd8,,,EA060,NA,,,, +Cd9,,,EA060,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA060,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA060,NA,,,, +Ce3,City and environs of Rome,100,EA060,3,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA060,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA060,9,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA060,9,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA060,3,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA060,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA060,3,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA060,NA,,,, +Cf3,,1930,EA060,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA060,9,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,,EA060,NA,,,, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA060,3,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA060,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA060,9,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA060,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA060,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA060,3,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA060,NA,,,, +Ch11,Viriatino Village,1955,EA060,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA060,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA060,3,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,1900,EA060,9,,heffner1955; wichmann1913,EthnographicAtlas_1967_p84, +Ch5,with special reference to the village of Dragelevtsy,1940,EA060,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,,EA060,NA,,,, +Ch7,,,EA060,NA,,,, +Ch8,,,EA060,NA,,,, +Ch9,,,EA060,NA,,,, +Ci1,with special reference to the Baga Dorbed group,1920,EA060,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA060,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA060,3,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA060,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA060,NA,,,, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA060,10,,gadzhieva1958,EthnographicAtlas_1967_p84, +Ci4,,,EA060,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA060,3,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA060,NA,,,, +Ci7,,,EA060,NA,,,, +Ci8,,,EA060,NA,,,, +Ci9,,,EA060,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA060,9,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA060,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA060,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA060,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA060,3,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA060,9,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA060,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA060,3,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA060,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA060,NA,,,, +Ea1,,,EA060,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA060,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA060,NA,,,, +Ea12,,,EA060,NA,,,, +Ea13,Mohla Village,1950,EA060,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA060,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA060,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA060,9,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA060,3,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA060,9,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA060,9,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA060,3,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA060,3,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA060,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,,EA060,NA,,,, +Eb3,Narobanchin Territory,1940,EA060,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA060,NA,,,, +Eb5,,,EA060,NA,,,, +Eb6,,,EA060,NA,,,, +Eb7,,1930,EA060,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA060,NA,,,, +Ec1,Sakhalin Island,1920,EA060,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,,,EA060,NA,,,, +Ec11,,,EA060,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA060,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA060,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA060,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,,,EA060,NA,,,, +Ec6,,,EA060,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA060,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA060,NA,,,, +Ec9,,,EA060,NA,,,, +Ed1,Kanghwa Island,1950,EA060,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,,,EA060,NA,,,, +Ed13,,,EA060,NA,,,, +Ed14,,,EA060,NA,,,, +Ed15a,,,EA060,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA060,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA060,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA060,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,,,EA060,NA,,,, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA060,9,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA060,3,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA060,NA,,,, +Ed7,,1950,EA060,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA060,3,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,,EA060,NA,,,, +Ee1,,1940,EA060,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA060,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA060,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,,,EA060,NA,,,, +Ee5,with special reference to the Shina tribe,1870,EA060,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA060,3,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA060,NA,,,, +Ee8,,,EA060,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA060,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA060,NA,,,, +Ef11,Village and environs of Senapur,1945,EA060,3,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA060,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA060,NA,,,, +Ef4,,,EA060,NA,,,, +Ef5,,1900,EA060,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA060,9,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA060,3,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA060,3,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,,,EA060,NA,,,, +Eg1,with special reference to the forest group,1940,EA060,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA060,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA060,NA,,,, +Eg12,,,EA060,NA,,,, +Eg13,Bastar State,1941,EA060,9,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,,,EA060,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA060,3,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA060,9,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA060,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA060,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,,,EA060,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA060,9,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA060,9,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,,EA060,NA,,,, +Eh1,,1870,EA060,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA060,NA,,,, +Eh2,,1900,EA060,3,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA060,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,,,EA060,NA,,,, +Eh5,Car Nicobar of North Islands,1890,EA060,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA060,NA,,,, +Eh7,,1900,EA060,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA060,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA060,NA,,,, +Ei1,Rengsanggr,1900,EA060,9,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA060,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA060,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA060,NA,,,, +Ei13,,,EA060,NA,,,, +Ei14,with special reference to the Chongli,1920,EA060,9,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA060,NA,,,, +Ei16,,,EA060,NA,,,, +Ei17,,,EA060,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA060,9,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,,EA060,NA,,,, +Ei2,,1920,EA060,9,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA060,NA,,,, +Ei3,Nondwin Village,1950,EA060,3,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA060,9,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA060,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,,EA060,NA,,,, +Ei7,,1910,EA060,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA060,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA060,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA060,9,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA060,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA060,NA,,,, +Ej12,,1960,EA060,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA060,3,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,,,EA060,NA,,,, +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA060,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA060,3,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA060,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA060,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA060,3,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA060,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,,,EA060,NA,,,, +Ej7,,,EA060,NA,,,, +Ej8,with special reference to those of Trengganu,1940,EA060,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA060,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA060,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,,EA060,NA,,,, +Ia11,,,EA060,NA,,,, +Ia12,,,EA060,NA,,,, +Ia13,Tawi-Tawi and adjacent islands,1960,EA060,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,,EA060,NA,,,, +Ia15,,,EA060,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA060,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA060,NA,,,, +Ia18,,,EA060,NA,,,, +Ia2,,1950,EA060,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,,,EA060,NA,,,, +Ia4,,,EA060,NA,,,, +Ia5,,,EA060,NA,,,, +Ia6,,,EA060,NA,,,, +Ia7,,,EA060,NA,,,, +Ia8,,,EA060,NA,,,, +Ia9,,,EA060,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA060,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA060,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA060,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,,,EA060,NA,,,, +Ib5,,,EA060,NA,,,, +Ib6,,,EA060,NA,,,, +Ib7,,,EA060,NA,,,, +Ib8,,,EA060,NA,,,, +Ib9,,,EA060,NA,,,, +Ic1,Borongloe,1940,EA060,9,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA060,NA,,,, +Ic11,Allang,1950,EA060,9,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA060,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA060,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA060,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,,,EA060,NA,,,, +Ic4,,,EA060,NA,,,, +Ic5,,,EA060,NA,,,, +Ic6,,,EA060,NA,,,, +Ic7,,,EA060,NA,,,, +Ic8,,,EA060,NA,,,, +Ic9,,,EA060,NA,,,, +Id1,Alice Springs and environs,1900,EA060,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA060,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,,EA060,NA,,,, +Id12,,,EA060,NA,,,, +Id13,,,EA060,NA,,,, +Id2,,1930,EA060,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,,,EA060,NA,,,, +Id4,,,EA060,NA,,,, +Id5,,,EA060,NA,,,, +Id6,,,EA060,NA,,,, +Id7,,,EA060,NA,,,, +Id8,,1830,EA060,9,,roth1890,EthnographicAtlas_1967_p96, +Id9,,,EA060,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA060,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA060,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA060,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA060,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA060,NA,,,, +Ie14,,,EA060,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA060,9,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA060,NA,,,, +Ie17,,1940,EA060,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,,,EA060,NA,,,, +Ie19,with special reference to the coastal inhabitants,1910,EA060,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,,EA060,NA,,,, +Ie20,,,EA060,NA,,,, +Ie21,,,EA060,NA,,,, +Ie22,,,EA060,NA,,,, +Ie23,,,EA060,NA,,,, +Ie24,,,EA060,NA,,,, +Ie25,,,EA060,NA,,,, +Ie26,,,EA060,NA,,,, +Ie27,,,EA060,NA,,,, +Ie28,,1940,EA060,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA060,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,,,EA060,NA,,,, +Ie30,,,EA060,NA,,,, +Ie31,,1950,EA060,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA060,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA060,NA,,,, +Ie34,,,EA060,NA,,,, +Ie35,,1930,EA060,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA060,NA,,,, +Ie37,,,EA060,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA060,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA060,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA060,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA060,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,,EA060,NA,,,, +Ie7,with special reference to the Mae group,1950,EA060,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA060,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,,EA060,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA060,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA060,NA,,,, +If11,,1860,EA060,9,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,,EA060,NA,,,, +If13,,,EA060,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA060,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA060,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA060,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA060,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA060,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA060,9,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA060,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA060,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA060,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA060,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA060,3,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA060,9,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA060,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA060,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA060,9,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,,,EA060,NA,,,, +Ig13,,,EA060,NA,,,, +Ig14,,1900,EA060,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA060,NA,,,, +Ig16,,,EA060,NA,,,, +Ig17,,,EA060,NA,,,, +Ig18,,,EA060,NA,,,, +Ig19,,,EA060,NA,,,, +Ig2,Kiriwina Island,1910,EA060,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA060,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA060,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA060,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA060,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,,EA060,NA,,,, +Ig6,,1900,EA060,9,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA060,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA060,NA,,,, +Ig9,Peri Village,1920,EA060,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,,EA060,NA,,,, +Ih10,,,EA060,NA,,,, +Ih11,,,EA060,NA,,,, +Ih12,,,EA060,NA,,,, +Ih13,,,EA060,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA060,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,,,EA060,NA,,,, +Ih3,,,EA060,NA,,,, +Ih4,Lau Island,1920,EA060,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA060,NA,,,, +Ih6,,,EA060,NA,,,, +Ih7,,1910,EA060,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA060,9,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA060,9,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA060,3,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA060,NA,,,, +Ii12,Pangai,1920,EA060,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA060,3,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA060,3,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA060,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA060,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA060,9,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA060,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,,,EA060,NA,,,, +Ii7,,1910,EA060,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA060,9,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA060,9,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA060,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA060,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA060,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA060,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,,EA060,NA,,,, +Ij5,,1900,EA060,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA060,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA060,3,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,,EA060,NA,,,, +Ij9,,,EA060,NA,,,, +Na1,,1930,EA060,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA060,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA060,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA060,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA060,9,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA060,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA060,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA060,9,,osgood1931,EthnographicAtlas_1967_p104, +Na17,,,EA060,NA,,,, +Na19,,,EA060,NA,,,, +Na2,,1880,EA060,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,,,EA060,NA,,,, +Na21,,1900,EA060,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA060,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA060,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA060,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA060,9,"Formerly males alone (EA049 code ""1""), with no specialization specified (EA060 code ""9"")",birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA060,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA060,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,,EA060,NA,,,, +Na29,,1850,EA060,9,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA060,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA060,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA060,9,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA060,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA060,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA060,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA060,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA060,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA060,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA060,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,,,EA060,NA,,,, +Na4,Upper Liard and Dease River Group,1920,EA060,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,,EA060,NA,,,, +Na41,Mainland division,1700,EA060,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,,,EA060,NA,,,, +Na43,,,EA060,NA,,,, +Na44,,,EA060,NA,,,, +Na45,,1900,EA060,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA060,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA060,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA060,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA060,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,,,EA060,NA,,,, +Nb1,Masset Town,1890,EA060,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,,EA060,NA,,,, +Nb11,with special reference to the Central Nootka,1880,EA060,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA060,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA060,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA060,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA060,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,,EA060,NA,,,, +Nb17,,1870,EA060,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,,EA060,NA,,,, +Nb19,,,EA060,NA,,,, +Nb2,Twana Tribe,1850,EA060,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,,EA060,NA,,,, +Nb21,,,EA060,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA060,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,,EA060,NA,,,, +Nb24,,1860,EA060,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA060,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA060,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA060,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA060,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,,EA060,NA,,,, +Nb3,,1890,EA060,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,,EA060,NA,,,, +Nb31,,,EA060,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA060,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,,EA060,NA,,,, +Nb34,,,EA060,NA,,,, +Nb35,,,EA060,NA,,,, +Nb36,,,EA060,NA,,,, +Nb37,,,EA060,NA,,,, +Nb38,,,EA060,NA,,,, +Nb39,,,EA060,NA,,,, +Nb4,,1850,EA060,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA060,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,,EA060,NA,,,, +Nb7,,1880,EA060,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,,EA060,NA,,,, +Nb9,"Central group, lower B.C. River",1880,EA060,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA060,9,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA060,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,,EA060,NA,,,, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA060,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA060,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA060,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,,EA060,NA,,,, +Nc16,,,EA060,NA,,,, +Nc17,,,EA060,NA,,,, +Nc18,"Clear Lake, Village of Cignon",1860,EA060,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,,,EA060,NA,,,, +Nc2,,1850,EA060,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,,EA060,NA,,,, +Nc21,,1860,EA060,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA060,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA060,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,,,EA060,NA,,,, +Nc25,,1860,EA060,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,,EA060,NA,,,, +Nc27,,,EA060,NA,,,, +Nc28,,,EA060,NA,,,, +Nc29,,,EA060,NA,,,, +Nc3,,,EA060,NA,,,, +Nc30,,,EA060,NA,,,, +Nc31,,,EA060,NA,,,, +Nc32,,,EA060,NA,,,, +Nc33,,,EA060,NA,,,, +Nc34,,,EA060,NA,,,, +Nc4,,1860,EA060,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,,,EA060,NA,,,, +Nc6,,,EA060,NA,,,, +Nc7,,1850,EA060,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA060,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA060,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA060,9,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,,EA060,NA,,,, +Nd11,,,EA060,NA,,,, +Nd12,,1860,EA060,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA060,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA060,9,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA060,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,,EA060,NA,,,, +Nd17,,,EA060,NA,,,, +Nd18,,,EA060,NA,,,, +Nd19,,,EA060,NA,,,, +Nd2,,1860,EA060,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,,EA060,NA,,,, +Nd21,,1870,EA060,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA060,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA060,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA060,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA060,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA060,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA060,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA060,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA060,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA060,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA060,9,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,,EA060,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA060,9,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,,,EA060,NA,,,, +Nd34,,1870,EA060,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA060,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA060,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA060,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA060,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA060,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,,EA060,NA,,,, +Nd40,,,EA060,NA,,,, +Nd41,,1870,EA060,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA060,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA060,9,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA060,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA060,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,,EA060,NA,,,, +Nd47,,,EA060,NA,,,, +Nd48,with special reference to those of Deep Creek,1860,EA060,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA060,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,,EA060,NA,,,, +Nd50,,,EA060,NA,,,, +Nd51,,,EA060,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA060,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA060,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,,,EA060,NA,,,, +Nd55,,,EA060,NA,,,, +Nd56,,1860,EA060,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,,EA060,NA,,,, +Nd58,,1860,EA060,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,,EA060,NA,,,, +Nd6,,1850,EA060,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA060,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA060,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA060,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,,,EA060,NA,,,, +Nd64,with special reference to the Kucundika,1860,EA060,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA060,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA060,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA060,9,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA060,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA060,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,,EA060,NA,,,, +Ne1,Gros Ventre Tribe,1880,EA060,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,,EA060,NA,,,, +Ne11,,1870,EA060,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA060,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA060,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA060,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA060,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA060,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA060,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA060,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA060,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA060,9,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,,EA060,NA,,,, +Ne21,,,EA060,NA,,,, +Ne3,,,EA060,NA,,,, +Ne4,,1870,EA060,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA060,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,,EA060,NA,,,, +Ne7,,1880,EA060,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA060,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA060,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA060,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA060,9,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA060,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA060,9,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA060,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA060,NA,,,, +Nf2,,1850,EA060,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA060,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA060,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA060,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA060,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA060,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA060,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA060,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA060,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA060,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,,EA060,NA,,,, +Ng12,,1760,EA060,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA060,NA,,,, +Ng14,,,EA060,NA,,,, +Ng15,,,EA060,NA,,,, +Ng2,,,EA060,NA,,,, +Ng3,Upper division in Alabama,1750,EA060,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA060,NA,,,, +Ng5,,,EA060,NA,,,, +Ng6,with special reference to the Munsee,1700,EA060,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA060,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA060,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA060,NA,,,, +Nh1,Central band,1880,EA060,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA060,NA,,,, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA060,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,,EA060,NA,,,, +Nh13,,,EA060,NA,,,, +Nh14,,,EA060,NA,,,, +Nh15,,1870,EA060,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA060,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA060,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA060,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,,EA060,NA,,,, +Nh2,,,EA060,NA,,,, +Nh20,,1860,EA060,9,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA060,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,,EA060,NA,,,, +Nh23,,1870,EA060,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,,EA060,NA,,,, +Nh25,,,EA060,NA,,,, +Nh26,,,EA060,NA,,,, +Nh27,,,EA060,NA,,,, +Nh3,,1930,EA060,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,,,EA060,NA,,,, +Nh5,,1850,EA060,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,,EA060,NA,,,, +Nh7,,,EA060,NA,,,, +Nh8,,,EA060,NA,,,, +Nh9,,,EA060,NA,,,, +Ni1,,1930,EA060,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,,EA060,NA,,,, +Ni3,Huichol Tribe,1920,EA060,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA060,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA060,9,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA060,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,,EA060,NA,,,, +Ni8,,,EA060,NA,,,, +Ni9,,,EA060,NA,,,, +Nj1,,,EA060,NA,,,, +Nj10,mountain village of Yalagag,1940,EA060,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA060,NA,,,, +Nj12,,,EA060,NA,,,, +Nj13,,,EA060,NA,,,, +Nj14,,,EA060,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA060,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,,,EA060,NA,,,, +Nj4,,1940,EA060,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA060,NA,,,, +Nj6,,,EA060,NA,,,, +Nj7,with special reference to Ayutla,1930,EA060,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA060,9,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA060,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA060,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA060,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA060,NA,,,, +Sa12,,,EA060,NA,,,, +Sa13,Town of Chichicastenango,1930,EA060,3,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA060,NA,,,, +Sa15,,,EA060,NA,,,, +Sa16,,,EA060,NA,,,, +Sa17,,,EA060,NA,,,, +Sa2,,,EA060,NA,,,, +Sa3,,1930,EA060,9,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,,,EA060,NA,,,, +Sa5,,,EA060,NA,,,, +Sa6,,,EA060,NA,,,, +Sa7,,1940,EA060,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA060,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA060,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA060,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA060,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA060,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA060,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA060,NA,,,, +Sb6,Goajiro Tribe,1940,EA060,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,,,EA060,NA,,,, +Sb8,,,EA060,NA,,,, +Sb9,,,EA060,NA,,,, +Sc1,,1950,EA060,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA060,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA060,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA060,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA060,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA060,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA060,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA060,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,,EA060,NA,,,, +Sc18,,1960,EA060,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA060,9,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA060,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA060,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,,EA060,NA,,,, +Sc6,,,EA060,NA,,,, +Sc7,,1950,EA060,9,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,,EA060,NA,,,, +Sc9,,1950,EA060,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA060,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA060,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA060,9,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,,EA060,NA,,,, +Sd5,,,EA060,NA,,,, +Sd6,,1960,EA060,9,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA060,9,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,,EA060,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA060,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA060,9,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA060,NA,,,, +Se11,,1960,EA060,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA060,NA,,,, +Se2,,1940,EA060,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA060,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA060,9,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA060,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA060,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA060,NA,,,, +Se8,Upper Inuya River,1950,EA060,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,,EA060,NA,,,, +Sf1,City and environs of Cuzco,1530,EA060,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA060,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,,,EA060,NA,,,, +Sf4,,,EA060,NA,,,, +Sf5,,1900,EA060,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA060,9,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,,EA060,NA,,,, +Sf8,,,EA060,NA,,,, +Sf9,,,EA060,NA,,,, +Sg1,Eastern and central,1870,EA060,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA060,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,,,EA060,NA,,,, +Sg4,Equestrian,1870,EA060,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,,,EA060,NA,,,, +Sh1,,1860,EA060,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA060,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,,,EA060,NA,,,, +Sh4,,,EA060,NA,,,, +Sh5,,1910,EA060,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,,EA060,NA,,,, +Sh7,,1900,EA060,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA060,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA060,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA060,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA060,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA060,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA060,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA060,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA060,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,,EA060,NA,,,, +Si7,with special reference to the Cozarimi,1910,EA060,9,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,,EA060,NA,,,, +Si9,,,EA060,NA,,,, +Sj1,,,EA060,NA,,,, +Sj10,,,EA060,NA,,,, +Sj11,Village of Sao Domingo,1958,EA060,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA060,9,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA060,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA060,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,,,EA060,NA,,,, +Sj6,,,EA060,NA,,,, +Sj7,,,EA060,NA,,,, +Sj8,Hinterland of Rio de Janeiro,1600,EA060,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA060,9,"Formerly males alone (EA049 code ""6""), with no specialization specified (EA060 code ""9"")",dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA060,3,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA060,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA060,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA060,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA060,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA060,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA060,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA060,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA060,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA060,9,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA060,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA060,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA060,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA060,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA060,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA060,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA060,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA060,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA060,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA060,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA060,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA060,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA060,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA060,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA060,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA060,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA060,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA061,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA061,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA061,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA061,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA061,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,1920,EA061,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p64, +Aa7,,1910,EA061,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA061,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA061,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA061,9,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA061,9,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA061,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA061,10,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA061,10,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA061,9,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA061,10,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA061,9,,earthy1933,EthnographicAtlas_1967_p64, +Ab17,,,EA061,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA061,9,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA061,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA061,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA061,NA,,,, +Ab21a,,,EA061,NA,,,, +Ab21b,,,EA061,NA,,,, +Ab22,,,EA061,NA,,,, +Ab3,Ruling Luyana,1890,EA061,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA061,9,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA061,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA061,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA061,10,,langandtastevin1937,EthnographicAtlas_1967_p64, +Ab8,Basuto,1860,EA061,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA061,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA061,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA061,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,,EA061,NA,,,, +Ac12,,,EA061,NA,,,, +Ac13,,,EA061,NA,,,, +Ac14,,1900,EA061,9,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p64, +Ac15,,,EA061,NA,,,, +Ac16,,,EA061,NA,,,, +Ac17,,,EA061,NA,,,, +Ac18,,1910,EA061,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA061,NA,,,, +Ac2,,,EA061,NA,,,, +Ac20,,,EA061,NA,,,, +Ac21,,,EA061,NA,,,, +Ac22,,,EA061,NA,,,, +Ac23,with special reference to the western Lele,1950,EA061,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA061,NA,,,, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA061,9,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p64, +Ac26,,,EA061,NA,,,, +Ac27,,,EA061,NA,,,, +Ac28,,,EA061,NA,,,, +Ac29,,,EA061,NA,,,, +Ac3,Zambia branch,1900,EA061,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA061,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA061,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA061,NA,,,, +Ac33,,,EA061,NA,,,, +Ac34,,,EA061,NA,,,, +Ac35,,,EA061,NA,,,, +Ac36,,,EA061,NA,,,, +Ac37,,,EA061,NA,,,, +Ac38,,,EA061,NA,,,, +Ac39,,,EA061,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA061,10,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA061,NA,,,, +Ac41,,,EA061,NA,,,, +Ac42,,,EA061,NA,,,, +Ac43,,,EA061,NA,,,, +Ac5,,1920,EA061,10,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA061,10,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA061,10,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,,EA061,NA,,,, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA061,10,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA061,10,,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,,EA061,NA,,,, +Ad11,,1930,EA061,9,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA061,NA,,,, +Ad13,,1930,EA061,10,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA061,NA,,,, +Ad15,,,EA061,NA,,,, +Ad16,,,EA061,NA,,,, +Ad17,,1920,EA061,9,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA061,NA,,,, +Ad19,,,EA061,NA,,,, +Ad2,,1950,EA061,10,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA061,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,,EA061,NA,,,, +Ad22,,1950,EA061,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA061,NA,,,, +Ad24,,,EA061,NA,,,, +Ad25,,,EA061,NA,,,, +Ad26,,,EA061,NA,,,, +Ad27,,,EA061,NA,,,, +Ad28,,,EA061,NA,,,, +Ad29,,,EA061,NA,,,, +Ad3,,1910,EA061,10,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA061,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,,EA061,NA,,,, +Ad32,,,EA061,NA,,,, +Ad33,,,EA061,NA,,,, +Ad34,,,EA061,NA,,,, +Ad35,,,EA061,NA,,,, +Ad36,,,EA061,NA,,,, +Ad37,,,EA061,NA,,,, +Ad38,,,EA061,NA,,,, +Ad39,,1950,EA061,10,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA061,10,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA061,NA,,,, +Ad41,,,EA061,NA,,,, +Ad42,,,EA061,NA,,,, +Ad43,,,EA061,NA,,,, +Ad44,,,EA061,NA,,,, +Ad45,,,EA061,NA,,,, +Ad46,,,EA061,NA,,,, +Ad47,,1900,EA061,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA061,NA,,,, +Ad49,,,EA061,NA,,,, +Ad5,,,EA061,NA,,,, +Ad50,,,EA061,NA,,,, +Ad51,,,EA061,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA061,10,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA061,10,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA061,10,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,1900,EA061,10,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,,,EA061,NA,,,, +Ae10,,1910,EA061,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,,EA061,NA,,,, +Ae12,,,EA061,NA,,,, +Ae13,,,EA061,NA,,,, +Ae14,,,EA061,NA,,,, +Ae15,,,EA061,NA,,,, +Ae16,,,EA061,NA,,,, +Ae17,,1900,EA061,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA061,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA061,NA,,,, +Ae2,,1950,EA061,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA061,NA,,,, +Ae21,,,EA061,NA,,,, +Ae22,,,EA061,NA,,,, +Ae23,,,EA061,NA,,,, +Ae24,,,EA061,NA,,,, +Ae25,,,EA061,NA,,,, +Ae26,,,EA061,NA,,,, +Ae27,,,EA061,NA,,,, +Ae28,,,EA061,NA,,,, +Ae29,,1900,EA061,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA061,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA061,NA,,,, +Ae31,,,EA061,NA,,,, +Ae32,,,EA061,NA,,,, +Ae33,,,EA061,NA,,,, +Ae34,,,EA061,NA,,,, +Ae35,,,EA061,NA,,,, +Ae36,,,EA061,NA,,,, +Ae37,,,EA061,NA,,,, +Ae38,,,EA061,NA,,,, +Ae39,,1920,EA061,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA061,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA061,NA,,,, +Ae41,,,EA061,NA,,,, +Ae42,,,EA061,NA,,,, +Ae43,,,EA061,NA,,,, +Ae44,,,EA061,NA,,,, +Ae45,,,EA061,NA,,,, +Ae46,,,EA061,NA,,,, +Ae47,,,EA061,NA,,,, +Ae48,,,EA061,NA,,,, +Ae49,,,EA061,NA,,,, +Ae5,,1910,EA061,10,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,,EA061,NA,,,, +Ae51,,,EA061,NA,,,, +Ae52,,,EA061,NA,,,, +Ae53,,,EA061,NA,,,, +Ae54,,,EA061,NA,,,, +Ae55,,,EA061,NA,,,, +Ae56,,,EA061,NA,,,, +Ae57,,,EA061,NA,,,, +Ae58,,,EA061,NA,,,, +Ae59,,,EA061,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA061,9,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,,EA061,NA,,,, +Ae8,,1910,EA061,10,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,,EA061,NA,,,, +Af1,City and environs of Abomey,1890,EA061,10,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA061,10,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,,EA061,NA,,,, +Af12,,,EA061,NA,,,, +Af13,,,EA061,NA,,,, +Af14,,,EA061,NA,,,, +Af15,,1920,EA061,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA061,NA,,,, +Af17,,,EA061,NA,,,, +Af18,,,EA061,NA,,,, +Af19,,,EA061,NA,,,, +Af2,,1950,EA061,10,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,,EA061,NA,,,, +Af21,,,EA061,NA,,,, +Af22,,,EA061,NA,,,, +Af23,,,EA061,NA,,,, +Af24,,1900,EA061,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA061,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA061,NA,,,, +Af27,,,EA061,NA,,,, +Af28,,,EA061,NA,,,, +Af29,,,EA061,NA,,,, +Af3,Kumasi State,1900,EA061,10,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA061,NA,,,, +Af31,,,EA061,NA,,,, +Af32,,,EA061,NA,,,, +Af33,,,EA061,NA,,,, +Af34,,,EA061,NA,,,, +Af35,,,EA061,NA,,,, +Af36,,,EA061,NA,,,, +Af37,,,EA061,NA,,,, +Af38,,,EA061,NA,,,, +Af39,,,EA061,NA,,,, +Af4,,1930,EA061,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA061,NA,,,, +Af41,,,EA061,NA,,,, +Af42,,,EA061,NA,,,, +Af43,,,EA061,NA,,,, +Af44,,,EA061,NA,,,, +Af45,,,EA061,NA,,,, +Af46,,,EA061,NA,,,, +Af47,,,EA061,NA,,,, +Af48,,,EA061,NA,,,, +Af49,,,EA061,NA,,,, +Af5,,1930,EA061,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA061,NA,,,, +Af51,,1920,EA061,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA061,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA061,NA,,,, +Af54,,,EA061,NA,,,, +Af55,,,EA061,NA,,,, +Af56,,,EA061,NA,,,, +Af57,,,EA061,NA,,,, +Af58,,,EA061,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA061,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,1950,EA061,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,1930,EA061,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,,EA061,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA061,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA061,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA061,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,,EA061,NA,,,, +Ag13,,,EA061,NA,,,, +Ag14,,,EA061,NA,,,, +Ag15,,,EA061,NA,,,, +Ag16,,1930,EA061,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p72, +Ag17,,,EA061,NA,,,, +Ag18,,1930,EA061,9,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p72, +Ag19,,,EA061,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA061,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA061,NA,,,, +Ag21,,1910,EA061,9,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,,,EA061,NA,,,, +Ag23,,,EA061,NA,,,, +Ag24,,,EA061,NA,,,, +Ag25,,,EA061,NA,,,, +Ag26,,,EA061,NA,,,, +Ag27,,,EA061,NA,,,, +Ag28,,,EA061,NA,,,, +Ag29,,,EA061,NA,,,, +Ag3,,1930,EA061,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA061,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,,EA061,NA,,,, +Ag32,,1900,EA061,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA061,NA,,,, +Ag34,,,EA061,NA,,,, +Ag35,,,EA061,NA,,,, +Ag36,,,EA061,NA,,,, +Ag37,,,EA061,NA,,,, +Ag38,,,EA061,NA,,,, +Ag39,,1910,EA061,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA061,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA061,NA,,,, +Ag41,,,EA061,NA,,,, +Ag42,,,EA061,NA,,,, +Ag43,,,EA061,NA,,,, +Ag44,,,EA061,NA,,,, +Ag45,,,EA061,NA,,,, +Ag46,,,EA061,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA061,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,,EA061,NA,,,, +Ag49,,,EA061,NA,,,, +Ag5,,1930,EA061,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,,EA061,NA,,,, +Ag51,,,EA061,NA,,,, +Ag52,,,EA061,NA,,,, +Ag53,with special reference to those of Garango,1960,EA061,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA061,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA061,10,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,1930,EA061,10,,malzy1946; ortoli1939,EthnographicAtlas_1967_p72, +Ag8,with special reference to the Coniagui,1910,EA061,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA061,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,,,EA061,NA,,,, +Ah10,,,EA061,NA,,,, +Ah11,,1950,EA061,9,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA061,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA061,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,,EA061,NA,,,, +Ah15,,,EA061,NA,,,, +Ah16,,,EA061,NA,,,, +Ah17,,,EA061,NA,,,, +Ah18,,,EA061,NA,,,, +Ah19,,,EA061,NA,,,, +Ah2,,,EA061,NA,,,, +Ah20,,,EA061,NA,,,, +Ah21,,,EA061,NA,,,, +Ah22,,,EA061,NA,,,, +Ah23,,,EA061,NA,,,, +Ah24,,,EA061,NA,,,, +Ah25,,,EA061,NA,,,, +Ah26,,,EA061,NA,,,, +Ah27,,,EA061,NA,,,, +Ah28,,,EA061,NA,,,, +Ah29,,,EA061,NA,,,, +Ah3,Tar of Benue Province,1920,EA061,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA061,NA,,,, +Ah31,,,EA061,NA,,,, +Ah32,,,EA061,NA,,,, +Ah33,,,EA061,NA,,,, +Ah34,,,EA061,NA,,,, +Ah35,,,EA061,NA,,,, +Ah36,,,EA061,NA,,,, +Ah37,,,EA061,NA,,,, +Ah38,,,EA061,NA,,,, +Ah39,,1950,EA061,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,1920,EA061,10,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p76, +Ah5,,,EA061,NA,,,, +Ah6,,,EA061,NA,,,, +Ah7,,1940,EA061,10,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA061,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA061,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,,EA061,NA,,,, +Ai10,Nuba Hills,1940,EA061,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA061,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA061,NA,,,, +Ai13,,,EA061,NA,,,, +Ai14,,,EA061,NA,,,, +Ai15,,,EA061,NA,,,, +Ai16,,,EA061,NA,,,, +Ai17,,,EA061,NA,,,, +Ai18,,,EA061,NA,,,, +Ai19,,,EA061,NA,,,, +Ai2,,,EA061,NA,,,, +Ai20,,,EA061,NA,,,, +Ai21,,1880,EA061,9,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p76, +Ai22,,,EA061,NA,,,, +Ai23,,,EA061,NA,,,, +Ai24,,,EA061,NA,,,, +Ai25,,,EA061,NA,,,, +Ai26,,,EA061,NA,,,, +Ai27,,,EA061,NA,,,, +Ai28,,1910,EA061,9,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA061,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA061,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,,EA061,NA,,,, +Ai31,,,EA061,NA,,,, +Ai32,,,EA061,NA,,,, +Ai33,,,EA061,NA,,,, +Ai34,,,EA061,NA,,,, +Ai35,,1870,EA061,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,,EA061,NA,,,, +Ai37,,,EA061,NA,,,, +Ai38,,,EA061,NA,,,, +Ai39,,,EA061,NA,,,, +Ai4,,,EA061,NA,,,, +Ai40,,,EA061,NA,,,, +Ai41,,,EA061,NA,,,, +Ai42,,,EA061,NA,,,, +Ai43,,1930,EA061,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,,EA061,NA,,,, +Ai45,,,EA061,NA,,,, +Ai46,,,EA061,NA,,,, +Ai47,,,EA061,NA,,,, +Ai5,,,EA061,NA,,,, +Ai6,Shilluk Kingdom,1900,EA061,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA061,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA061,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,,,EA061,NA,,,, +Aj1,,,EA061,NA,,,, +Aj10,,,EA061,NA,,,, +Aj11,,,EA061,NA,,,, +Aj12,,,EA061,NA,,,, +Aj13,,,EA061,NA,,,, +Aj14,,,EA061,NA,,,, +Aj15,,,EA061,NA,,,, +Aj16,,,EA061,NA,,,, +Aj17,,,EA061,NA,,,, +Aj18,,,EA061,NA,,,, +Aj19,,,EA061,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA061,10,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA061,NA,,,, +Aj21,,,EA061,NA,,,, +Aj22,,,EA061,NA,,,, +Aj23,,1950,EA061,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,,EA061,NA,,,, +Aj25,,,EA061,NA,,,, +Aj26,,1910,EA061,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA061,NA,,,, +Aj28,,,EA061,NA,,,, +Aj29,,,EA061,NA,,,, +Aj3,,1930,EA061,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA061,NA,,,, +Aj31,,,EA061,NA,,,, +Aj4,,1920,EA061,10,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA061,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA061,10,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,,EA061,NA,,,, +Aj8,,1920,EA061,10,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,,EA061,NA,,,, +Ca1,Town of Buso,1930,EA061,10,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,,EA061,NA,,,, +Ca11,,,EA061,NA,,,, +Ca12,,,EA061,NA,,,, +Ca13,,,EA061,NA,,,, +Ca14,,,EA061,NA,,,, +Ca15,,,EA061,NA,,,, +Ca16,,,EA061,NA,,,, +Ca17,,,EA061,NA,,,, +Ca18,,,EA061,NA,,,, +Ca19,,,EA061,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA061,10,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA061,NA,,,, +Ca21,,,EA061,NA,,,, +Ca22,,,EA061,NA,,,, +Ca23,,,EA061,NA,,,, +Ca24,,,EA061,NA,,,, +Ca25,,,EA061,NA,,,, +Ca26,,,EA061,NA,,,, +Ca27,,,EA061,NA,,,, +Ca28,,,EA061,NA,,,, +Ca29,,,EA061,NA,,,, +Ca3,,,EA061,NA,,,, +Ca30,,,EA061,NA,,,, +Ca31,,,EA061,NA,,,, +Ca32,,,EA061,NA,,,, +Ca33,,,EA061,NA,,,, +Ca34,,,EA061,NA,,,, +Ca35,,,EA061,NA,,,, +Ca36,,,EA061,NA,,,, +Ca37,,,EA061,NA,,,, +Ca38,,,EA061,NA,,,, +Ca39,,,EA061,NA,,,, +Ca4,,1950,EA061,10,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,,EA061,NA,,,, +Ca41,,,EA061,NA,,,, +Ca42,,,EA061,NA,,,, +Ca43,,,EA061,NA,,,, +Ca5,,,EA061,NA,,,, +Ca6,,,EA061,NA,,,, +Ca7,,,EA061,NA,,,, +Ca8,,,EA061,NA,,,, +Ca9,,,EA061,NA,,,, +Cb1,,,EA061,NA,,,, +Cb10,,,EA061,NA,,,, +Cb11,,,EA061,NA,,,, +Cb12,,,EA061,NA,,,, +Cb13,,,EA061,NA,,,, +Cb14,,,EA061,NA,,,, +Cb15,,,EA061,NA,,,, +Cb16,,,EA061,NA,,,, +Cb17,,,EA061,NA,,,, +Cb18,,,EA061,NA,,,, +Cb19,,,EA061,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA061,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA061,9,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA061,9,,pfeffer1936,EthnographicAtlas_1967_p84, +Cb22,,,EA061,NA,,,, +Cb23,,,EA061,NA,,,, +Cb24,Wodaabe of Niger,1950,EA061,10,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p84, +Cb25,,,EA061,NA,,,, +Cb26,,,EA061,NA,,,, +Cb27,,,EA061,NA,,,, +Cb28,,,EA061,NA,,,, +Cb29,,,EA061,NA,,,, +Cb3,Bamba division,1940,EA061,10,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,1920,EA061,10,,reid1930,EthnographicAtlas_1967_p80, +Cb5,,,EA061,NA,,,, +Cb6,,1920,EA061,10,,woodnd,EthnographicAtlas_1967_p80, +Cb7,,,EA061,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA061,10,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p80, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA061,10,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,,EA061,NA,,,, +Cc10,,1900,EA061,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA061,NA,,,, +Cc12,,,EA061,NA,,,, +Cc13,,,EA061,NA,,,, +Cc14,,1880,EA061,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA061,NA,,,, +Cc16,,1930,EA061,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,,EA061,NA,,,, +Cc18,,,EA061,NA,,,, +Cc19,,,EA061,NA,,,, +Cc2,Nomads of Tibesti,1950,EA061,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,,,EA061,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA061,10,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA061,10,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,,EA061,NA,,,, +Cc6,,,EA061,NA,,,, +Cc7,,,EA061,NA,,,, +Cc8,,,EA061,NA,,,, +Cc9,Ahaggaren tribe,1920,EA061,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,,,EA061,NA,,,, +Cd10,,,EA061,NA,,,, +Cd11,,,EA061,NA,,,, +Cd12,,,EA061,NA,,,, +Cd13,,,EA061,NA,,,, +Cd14,,,EA061,NA,,,, +Cd15,,,EA061,NA,,,, +Cd16,,,EA061,NA,,,, +Cd17,,,EA061,NA,,,, +Cd18,,,EA061,NA,,,, +Cd19,,,EA061,NA,,,, +Cd2,Town and environs of Silwa,1950,EA061,10,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA061,NA,,,, +Cd21,,,EA061,NA,,,, +Cd3,Entirety: Moroccan,1920,EA061,10,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA061,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA061,9,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,,,EA061,NA,,,, +Cd7,,,EA061,NA,,,, +Cd8,,,EA061,NA,,,, +Cd9,,,EA061,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA061,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA061,NA,,,, +Ce3,,,EA061,NA,,,, +Ce4,Labourd,1930,EA061,10,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA061,10,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA061,10,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA061,10,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA061,10,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA061,10,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA061,NA,,,, +Cf3,,1930,EA061,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,,,EA061,NA,,,, +Cf5,,,EA061,NA,,,, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA061,10,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA061,10,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA061,10,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA061,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA061,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA061,10,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA061,NA,,,, +Ch11,Viriatino Village,1955,EA061,10,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA061,10,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA061,10,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA061,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA061,10,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,,EA061,NA,,,, +Ch7,,1930,EA061,9,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,1940,EA061,10,,hanzeli1955,EthnographicAtlas_1967_p84, +Ch9,,,EA061,NA,,,, +Ci1,with special reference to the Baga Dorbed group,1920,EA061,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,,,EA061,NA,,,, +Ci11,,1940,EA061,10,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA061,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA061,NA,,,, +Ci3,,,EA061,NA,,,, +Ci4,,1920,EA061,10,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA061,10,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA061,NA,,,, +Ci7,,,EA061,NA,,,, +Ci8,,,EA061,NA,,,, +Ci9,,,EA061,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA061,10,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA061,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA061,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA061,10,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA061,10,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA061,10,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA061,NA,,,, +Cj7,,,EA061,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA061,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA061,NA,,,, +Ea1,,,EA061,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA061,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA061,NA,,,, +Ea12,,,EA061,NA,,,, +Ea13,Mohla Village,1950,EA061,10,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA061,10,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA061,10,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA061,9,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,,EA061,NA,,,, +Ea6,Nomadic branch,1958,EA061,9,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,,EA061,NA,,,, +Ea8,,,EA061,NA,,,, +Ea9,,1950,EA061,10,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA061,10,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA061,10,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA061,10,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA061,NA,,,, +Eb5,,,EA061,NA,,,, +Eb6,,,EA061,NA,,,, +Eb7,,,EA061,NA,,,, +Eb8,,,EA061,NA,,,, +Ec1,Sakhalin Island,1920,EA061,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,,,EA061,NA,,,, +Ec11,,,EA061,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA061,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA061,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA061,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA061,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,,,EA061,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA061,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,,EA061,NA,,,, +Ec9,,1920,EA061,10,,lattimore1933,EthnographicAtlas_1967_p88, +Ed1,Kanghwa Island,1950,EA061,10,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA061,10,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA061,NA,,,, +Ed14,,,EA061,NA,,,, +Ed15a,,,EA061,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA061,10,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA061,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA061,10,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA061,9,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA061,10,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA061,10,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA061,10,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA061,10,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA061,10,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,,EA061,NA,,,, +Ee1,,1940,EA061,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA061,10,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA061,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA061,10,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA061,10,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA061,10,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA061,NA,,,, +Ee8,,,EA061,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA061,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA061,NA,,,, +Ef11,Village and environs of Senapur,1945,EA061,10,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA061,10,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA061,NA,,,, +Ef4,,,EA061,NA,,,, +Ef5,,1900,EA061,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA061,9,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,,,EA061,NA,,,, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA061,9,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA061,10,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA061,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA061,10,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA061,NA,,,, +Eg12,,,EA061,NA,,,, +Eg13,Bastar State,1941,EA061,9,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA061,9,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA061,10,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA061,9,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA061,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA061,10,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,with special reference to Northern Kerala,1799,EA061,10,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA061,9,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA061,9,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,1930,EA061,9,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA061,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA061,NA,,,, +Eh2,,1900,EA061,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA061,10,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA061,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA061,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA061,NA,,,, +Eh7,,,EA061,NA,,,, +Eh8,,1900,EA061,10,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,,EA061,NA,,,, +Ei1,Rengsanggr,1900,EA061,9,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA061,NA,,,, +Ei11,,,EA061,NA,,,, +Ei12,,,EA061,NA,,,, +Ei13,,1910,EA061,10,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA061,10,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA061,NA,,,, +Ei16,,1910,EA061,10,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA061,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA061,10,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,,EA061,NA,,,, +Ei2,,1920,EA061,10,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA061,NA,,,, +Ei3,Nondwin Village,1950,EA061,10,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA061,10,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA061,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA061,10,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA061,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA061,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA061,10,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA061,9,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA061,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA061,10,,lafont1964,EthnographicAtlas_1967_p92, +Ej12,,1960,EA061,10,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA061,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA061,9,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA061,10,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA061,10,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA061,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA061,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,,,EA061,NA,,,, +Ej5,,,EA061,NA,,,, +Ej6,of the Mergui Archipelago,1920,EA061,10,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA061,9,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,,,EA061,NA,,,, +Ej9,,1940,EA061,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA061,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,,EA061,NA,,,, +Ia11,,,EA061,NA,,,, +Ia12,,,EA061,NA,,,, +Ia13,Tawi-Tawi and adjacent islands,1960,EA061,10,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA061,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA061,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA061,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA061,NA,,,, +Ia18,,,EA061,NA,,,, +Ia2,,1950,EA061,10,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,,,EA061,NA,,,, +Ia4,with special reference to the Eastern Subanun,1950,EA061,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p92, +Ia5,,1950,EA061,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,,,EA061,NA,,,, +Ia7,,,EA061,NA,,,, +Ia8,,,EA061,NA,,,, +Ia9,,,EA061,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA061,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA061,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA061,10,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA061,10,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA061,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,,EA061,NA,,,, +Ib7,with special reference to those of North Pageh,1920,EA061,10,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,,,EA061,NA,,,, +Ib9,,,EA061,NA,,,, +Ic1,Borongloe,1940,EA061,10,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA061,NA,,,, +Ic11,,,EA061,NA,,,, +Ic12,,,EA061,NA,,,, +Ic13,,,EA061,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA061,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,,,EA061,NA,,,, +Ic4,,,EA061,NA,,,, +Ic5,,,EA061,NA,,,, +Ic6,,1930,EA061,9,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,,,EA061,NA,,,, +Ic8,,,EA061,NA,,,, +Ic9,,,EA061,NA,,,, +Id1,Alice Springs and environs,1900,EA061,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA061,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA061,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA061,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA061,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA061,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA061,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA061,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA061,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA061,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA061,9,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA061,9,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA061,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA061,10,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,,,EA061,NA,,,, +Ie11,,1950,EA061,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA061,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA061,9,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,,EA061,NA,,,, +Ie15,,,EA061,NA,,,, +Ie16,,1940,EA061,9,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,,EA061,NA,,,, +Ie18,Bamol Village,1940,EA061,9,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA061,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA061,10,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,,EA061,NA,,,, +Ie21,,,EA061,NA,,,, +Ie22,,,EA061,NA,,,, +Ie23,,,EA061,NA,,,, +Ie24,,,EA061,NA,,,, +Ie25,,,EA061,NA,,,, +Ie26,,,EA061,NA,,,, +Ie27,,1910,EA061,9,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,,EA061,NA,,,, +Ie29,,,EA061,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA061,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA061,9,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,,EA061,NA,,,, +Ie32,,,EA061,NA,,,, +Ie33,with special reference to the village of Muramarew,1950,EA061,9,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA061,NA,,,, +Ie35,,1930,EA061,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA061,NA,,,, +Ie37,,,EA061,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA061,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA061,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA061,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA061,10,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA061,9,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA061,10,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA061,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA061,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA061,10,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA061,NA,,,, +If11,,1860,EA061,10,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA061,10,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA061,10,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA061,10,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA061,10,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA061,10,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA061,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA061,10,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA061,10,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA061,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA061,10,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA061,10,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA061,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA061,10,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,,EA061,NA,,,, +Ig1,Northeastern group,1940,EA061,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA061,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA061,9,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,,,EA061,NA,,,, +Ig13,,,EA061,NA,,,, +Ig14,,,EA061,NA,,,, +Ig15,,,EA061,NA,,,, +Ig16,,,EA061,NA,,,, +Ig17,,,EA061,NA,,,, +Ig18,,,EA061,NA,,,, +Ig19,,,EA061,NA,,,, +Ig2,Kiriwina Island,1910,EA061,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,,,EA061,NA,,,, +Ig21,with special reference to Boieng Island,1930,EA061,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA061,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA061,10,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA061,10,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA061,10,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA061,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA061,NA,,,, +Ig9,Peri Village,1920,EA061,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA061,10,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,,,EA061,NA,,,, +Ih11,,,EA061,NA,,,, +Ih12,,,EA061,NA,,,, +Ih13,,,EA061,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA061,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA061,10,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA061,NA,,,, +Ih4,Lau Island,1920,EA061,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA061,NA,,,, +Ih6,,1890,EA061,10,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA061,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA061,9,,quain1949,EthnographicAtlas_1967_p100, +Ih9,,,EA061,NA,,,, +Ii1,with special reference to American Samoa,1920,EA061,10,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA061,NA,,,, +Ii12,,,EA061,NA,,,, +Ii13,,,EA061,NA,,,, +Ii14,,1829,EA061,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA061,10,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA061,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA061,10,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA061,10,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA061,10,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA061,10,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,,EA061,NA,,,, +Ii9,,,EA061,NA,,,, +Ij1,,1820,EA061,10,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA061,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA061,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA061,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA061,10,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA061,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,,EA061,NA,,,, +Ij7,,,EA061,NA,,,, +Ij8,,,EA061,NA,,,, +Ij9,,,EA061,NA,,,, +Na1,,1930,EA061,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA061,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA061,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA061,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,,EA061,NA,,,, +Na14,,1880,EA061,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA061,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,,EA061,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA061,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA061,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA061,10,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,,,EA061,NA,,,, +Na21,,1900,EA061,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA061,10,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA061,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA061,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA061,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA061,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,,EA061,NA,,,, +Na28,,,EA061,NA,,,, +Na29,,1850,EA061,9,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA061,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,,EA061,NA,,,, +Na31,with special reference to those of Albany and Moose Creek,1850,EA061,9,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA061,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA061,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,,,EA061,NA,,,, +Na35,,1800,EA061,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA061,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA061,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA061,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA061,9,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA061,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,,EA061,NA,,,, +Na41,,,EA061,NA,,,, +Na42,,,EA061,NA,,,, +Na43,,1920,EA061,10,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA061,NA,,,, +Na45,,1900,EA061,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA061,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA061,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA061,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA061,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA061,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA061,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA061,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA061,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,,EA061,NA,,,, +Nb13,,,EA061,NA,,,, +Nb14,,,EA061,NA,,,, +Nb15,,1880,EA061,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA061,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA061,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA061,9,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA061,9,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA061,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,,EA061,NA,,,, +Nb21,,,EA061,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA061,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,,EA061,NA,,,, +Nb24,,1860,EA061,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA061,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA061,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA061,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA061,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,,EA061,NA,,,, +Nb3,,1890,EA061,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA061,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,,EA061,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA061,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA061,9,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA061,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA061,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA061,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA061,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA061,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA061,9,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA061,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA061,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA061,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA061,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,,EA061,NA,,,, +Nb9,"Central group, lower B.C. River",1880,EA061,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA061,9,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA061,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA061,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA061,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA061,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA061,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA061,9,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA061,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA061,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA061,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,,,EA061,NA,,,, +Nc2,,1850,EA061,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA061,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,,EA061,NA,,,, +Nc22,,,EA061,NA,,,, +Nc23,,1870,EA061,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA061,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA061,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA061,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA061,NA,,,, +Nc28,,,EA061,NA,,,, +Nc29,,1770,EA061,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA061,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,,EA061,NA,,,, +Nc31,,,EA061,NA,,,, +Nc32,,1870,EA061,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA061,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA061,9,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA061,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,,,EA061,NA,,,, +Nc6,with special reference to the Southern Diegueno,1850,EA061,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA061,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA061,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA061,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA061,9,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,,EA061,NA,,,, +Nd11,with special reference to the southeastern Shuswap,1850,EA061,9,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA061,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA061,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA061,9,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA061,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA061,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA061,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA061,9,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA061,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA061,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA061,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA061,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA061,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA061,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA061,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA061,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA061,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA061,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA061,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA061,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA061,9,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA061,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA061,9,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA061,9,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA061,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA061,9,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA061,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA061,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA061,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA061,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA061,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA061,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA061,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA061,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA061,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA061,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA061,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA061,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA061,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA061,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA061,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA061,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA061,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA061,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA061,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA061,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA061,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA061,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA061,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA061,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA061,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,,EA061,NA,,,, +Nd7,Lower or eastern branch,1880,EA061,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA061,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,,EA061,NA,,,, +Ne1,Gros Ventre Tribe,1880,EA061,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,,EA061,NA,,,, +Ne11,,1870,EA061,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA061,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA061,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA061,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA061,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA061,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,,EA061,NA,,,, +Ne18,,1850,EA061,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA061,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA061,9,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,,EA061,NA,,,, +Ne21,,,EA061,NA,,,, +Ne3,Comanche Tribe,1870,EA061,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA061,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA061,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA061,10,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA061,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA061,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA061,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,,EA061,NA,,,, +Nf11,,,EA061,NA,,,, +Nf12,,1850,EA061,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,,,EA061,NA,,,, +Nf14,,,EA061,NA,,,, +Nf15,,,EA061,NA,,,, +Nf2,,1850,EA061,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA061,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA061,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA061,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,,,EA061,NA,,,, +Nf7,,,EA061,NA,,,, +Nf8,,1770,EA061,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA061,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA061,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA061,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,,EA061,NA,,,, +Ng12,,,EA061,NA,,,, +Ng13,,,EA061,NA,,,, +Ng14,,,EA061,NA,,,, +Ng15,,,EA061,NA,,,, +Ng2,,,EA061,NA,,,, +Ng3,Upper division in Alabama,1750,EA061,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA061,NA,,,, +Ng5,,1750,EA061,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA061,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,,,EA061,NA,,,, +Ng8,,,EA061,NA,,,, +Ng9,,,EA061,NA,,,, +Nh1,Central band,1880,EA061,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA061,NA,,,, +Nh11,,,EA061,NA,,,, +Nh12,,,EA061,NA,,,, +Nh13,,,EA061,NA,,,, +Nh14,,,EA061,NA,,,, +Nh15,,1870,EA061,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA061,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA061,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA061,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA061,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,,EA061,NA,,,, +Nh20,,,EA061,NA,,,, +Nh21,,,EA061,NA,,,, +Nh22,,,EA061,NA,,,, +Nh23,,1870,EA061,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA061,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,,EA061,NA,,,, +Nh26,,,EA061,NA,,,, +Nh27,,,EA061,NA,,,, +Nh3,,1930,EA061,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA061,10,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA061,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,,EA061,NA,,,, +Nh7,,,EA061,NA,,,, +Nh8,,1920,EA061,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,,EA061,NA,,,, +Ni1,,1930,EA061,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA061,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA061,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,,EA061,NA,,,, +Ni5,,1570,EA061,9,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA061,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,,EA061,NA,,,, +Ni8,,,EA061,NA,,,, +Ni9,,,EA061,NA,,,, +Nj1,Ojitlan,1940,EA061,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,,,EA061,NA,,,, +Nj11,,,EA061,NA,,,, +Nj12,,,EA061,NA,,,, +Nj13,,,EA061,NA,,,, +Nj14,,,EA061,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA061,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA061,10,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA061,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA061,NA,,,, +Nj6,,,EA061,NA,,,, +Nj7,with special reference to Ayutla,1930,EA061,10,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA061,NA,,,, +Nj9,,1960,EA061,10,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA061,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,,EA061,NA,,,, +Sa11,,,EA061,NA,,,, +Sa12,,,EA061,NA,,,, +Sa13,,,EA061,NA,,,, +Sa14,,,EA061,NA,,,, +Sa15,,,EA061,NA,,,, +Sa16,,,EA061,NA,,,, +Sa17,,,EA061,NA,,,, +Sa2,,,EA061,NA,,,, +Sa3,,1930,EA061,9,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,,,EA061,NA,,,, +Sa5,,1950,EA061,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA061,10,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,,EA061,NA,,,, +Sa8,,,EA061,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA061,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA061,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA061,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA061,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA061,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA061,NA,,,, +Sb6,Goajiro Tribe,1940,EA061,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,,,EA061,NA,,,, +Sb8,,,EA061,NA,,,, +Sb9,,1930,EA061,10,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA061,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,,EA061,NA,,,, +Sc11,,1930,EA061,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,,EA061,NA,,,, +Sc13,,,EA061,NA,,,, +Sc14,,,EA061,NA,,,, +Sc15,,,EA061,NA,,,, +Sc16,,,EA061,NA,,,, +Sc17,,,EA061,NA,,,, +Sc18,,1960,EA061,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA061,9,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA061,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA061,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA061,9,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA061,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA061,9,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA061,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA061,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA061,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA061,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,,EA061,NA,,,, +Sd4,,,EA061,NA,,,, +Sd5,,1950,EA061,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA061,9,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA061,9,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,,EA061,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA061,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA061,9,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA061,NA,,,, +Se11,,1960,EA061,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA061,NA,,,, +Se2,,1940,EA061,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA061,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,,EA061,NA,,,, +Se5,Village on Caduiari River,1940,EA061,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA061,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA061,NA,,,, +Se8,Upper Inuya River,1950,EA061,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,,EA061,NA,,,, +Sf1,City and environs of Cuzco,1530,EA061,10,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA061,10,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA061,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA061,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,,EA061,NA,,,, +Sf6,,,EA061,NA,,,, +Sf7,,,EA061,NA,,,, +Sf8,,,EA061,NA,,,, +Sf9,,,EA061,NA,,,, +Sg1,Eastern and central,1870,EA061,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA061,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA061,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA061,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,,,EA061,NA,,,, +Sh1,,1860,EA061,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA061,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA061,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA061,9,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA061,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA061,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,,EA061,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA061,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA061,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA061,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA061,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA061,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,,,EA061,NA,,,, +Si4,Cocozu Group,1940,EA061,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA061,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA061,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,,,EA061,NA,,,, +Si8,,1940,EA061,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA061,NA,,,, +Sj1,,1950,EA061,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA061,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA061,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA061,9,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA061,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA061,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA061,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,,,EA061,NA,,,, +Sj7,,1920,EA061,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA061,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA061,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA061,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA061,10,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA061,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA061,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA061,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA061,10,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA061,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA061,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA061,10,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA061,9,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA061,10,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA061,10,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA061,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA061,10,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA061,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA061,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA061,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA061,10,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA061,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA061,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA061,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA061,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA061,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA061,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA061,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA061,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA061,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA062,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA062,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA062,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA062,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA062,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,1920,EA062,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p64, +Aa7,,1910,EA062,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,,EA062,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA062,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA062,9,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA062,9,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA062,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA062,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA062,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA062,9,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA062,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA062,9,,earthy1933,EthnographicAtlas_1967_p64, +Ab17,,,EA062,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA062,9,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA062,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA062,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA062,NA,,,, +Ab21a,,,EA062,NA,,,, +Ab21b,,,EA062,NA,,,, +Ab22,,,EA062,NA,,,, +Ab3,Ruling Luyana,1890,EA062,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA062,9,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA062,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA062,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA062,9,,langandtastevin1937,EthnographicAtlas_1967_p64, +Ab8,Basuto,1860,EA062,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA062,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA062,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA062,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA062,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,1920,EA062,9,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p64, +Ac13,,,EA062,NA,,,, +Ac14,,1900,EA062,9,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p64, +Ac15,,,EA062,NA,,,, +Ac16,,,EA062,NA,,,, +Ac17,Feshi territory lineage center,1910,EA062,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA062,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA062,NA,,,, +Ac2,,1920,EA062,10,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p64, +Ac20,,,EA062,NA,,,, +Ac21,,1910,EA062,9,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p64, +Ac22,,1930,EA062,9,,mertens1935,EthnographicAtlas_1967_p64, +Ac23,with special reference to the western Lele,1950,EA062,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA062,NA,,,, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA062,9,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p64, +Ac26,,,EA062,NA,,,, +Ac27,,,EA062,NA,,,, +Ac28,,1930,EA062,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA062,NA,,,, +Ac3,Zambia branch,1900,EA062,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA062,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA062,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA062,NA,,,, +Ac33,,1940,EA062,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,1940,EA062,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA062,NA,,,, +Ac36,,1920,EA062,9,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p64, +Ac37,,,EA062,NA,,,, +Ac38,,1910,EA062,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA062,9,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA062,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA062,NA,,,, +Ac41,,,EA062,NA,,,, +Ac42,,,EA062,NA,,,, +Ac43,,,EA062,NA,,,, +Ac5,,1920,EA062,9,There are also professional hippopotamus hunters,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA062,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA062,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA062,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA062,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA062,9,,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA062,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA062,9,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA062,NA,,,, +Ad13,,1930,EA062,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA062,NA,,,, +Ad15,,1900,EA062,9,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p68, +Ad16,,1920,EA062,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA062,9,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA062,NA,,,, +Ad19,,1910,EA062,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA062,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA062,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,1930,EA062,9,,maurice193538,EthnographicAtlas_1967_p68, +Ad22,,1950,EA062,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA062,NA,,,, +Ad24,,1910,EA062,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA062,NA,,,, +Ad26,,,EA062,NA,,,, +Ad27,,,EA062,NA,,,, +Ad28,,1880,EA062,3,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA062,9,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA062,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA062,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,1910,EA062,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA062,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p68, +Ad33,,1900,EA062,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,1910,EA062,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA062,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA062,NA,,,, +Ad37,,,EA062,NA,,,, +Ad38,,,EA062,NA,,,, +Ad39,,1950,EA062,9,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA062,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA062,NA,,,, +Ad41,,1930,EA062,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,1900,EA062,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p68, +Ad43,,,EA062,NA,,,, +Ad44,,,EA062,NA,,,, +Ad45,,1920,EA062,9,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,1950,EA062,3,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA062,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA062,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA062,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA062,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA062,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA062,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA062,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA062,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA062,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,1900,EA062,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA062,9,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA062,3,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA062,9,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA062,9,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA062,NA,,,, +Ae14,,1950,EA062,9,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,1940,EA062,9,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p68, +Ae16,,,EA062,NA,,,, +Ae17,,1900,EA062,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA062,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA062,NA,,,, +Ae2,,1950,EA062,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA062,NA,,,, +Ae21,,,EA062,NA,,,, +Ae22,with special reference to the Bankutu,1900,EA062,9,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p68, +Ae23,,,EA062,NA,,,, +Ae24,,,EA062,NA,,,, +Ae25,,,EA062,NA,,,, +Ae26,,,EA062,NA,,,, +Ae27,,,EA062,NA,,,, +Ae28,,1900,EA062,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,1900,EA062,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA062,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA062,NA,,,, +Ae31,,1920,EA062,9,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA062,NA,,,, +Ae33,,1920,EA062,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA062,NA,,,, +Ae35,,,EA062,NA,,,, +Ae36,,,EA062,NA,,,, +Ae37,,,EA062,NA,,,, +Ae38,,1920,EA062,9,,wijnant192526,EthnographicAtlas_1967_p68, +Ae39,,1920,EA062,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA062,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA062,NA,,,, +Ae41,,1940,EA062,9,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA062,NA,,,, +Ae43,,,EA062,NA,,,, +Ae44,,,EA062,NA,,,, +Ae45,,,EA062,NA,,,, +Ae46,,,EA062,NA,,,, +Ae47,,,EA062,NA,,,, +Ae48,,,EA062,NA,,,, +Ae49,,,EA062,NA,,,, +Ae5,,1910,EA062,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA062,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA062,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,1950,EA062,9,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,,EA062,NA,,,, +Ae54,,,EA062,NA,,,, +Ae55,,1950,EA062,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,1950,EA062,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae57,,,EA062,NA,,,, +Ae58,,,EA062,NA,,,, +Ae59,,,EA062,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA062,9,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,1910,EA062,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA062,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA062,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA062,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA062,10,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA062,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA062,NA,,,, +Af13,,1920,EA062,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,1930,EA062,9,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA062,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA062,NA,,,, +Af17,,,EA062,NA,,,, +Af18,,,EA062,NA,,,, +Af19,,1950,EA062,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p72, +Af2,,1950,EA062,9,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA062,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA062,NA,,,, +Af22,,1940,EA062,9,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,,,EA062,NA,,,, +Af24,,1900,EA062,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA062,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA062,NA,,,, +Af27,,,EA062,NA,,,, +Af28,,1910,EA062,9,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA062,NA,,,, +Af3,Kumasi State,1900,EA062,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA062,NA,,,, +Af31,,,EA062,NA,,,, +Af32,Abeouta Province and Benin,1920,EA062,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,,,EA062,NA,,,, +Af34,,,EA062,NA,,,, +Af35,,,EA062,NA,,,, +Af36,with special reference to the Glidyi,1900,EA062,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA062,NA,,,, +Af38,,,EA062,NA,,,, +Af39,,,EA062,NA,,,, +Af4,,1930,EA062,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA062,NA,,,, +Af41,,,EA062,NA,,,, +Af42,,1900,EA062,9,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,1930,EA062,9,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p72, +Af44,,,EA062,NA,,,, +Af45,,,EA062,NA,,,, +Af46,,,EA062,NA,,,, +Af47,,,EA062,NA,,,, +Af48,,,EA062,NA,,,, +Af49,,1940,EA062,9,,schwab1947,EthnographicAtlas_1967_p72, +Af5,,1930,EA062,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA062,NA,,,, +Af51,,1920,EA062,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA062,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA062,NA,,,, +Af54,,1930,EA062,9,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA062,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA062,9,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA062,3,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA062,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA062,10,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,1950,EA062,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,1930,EA062,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,1900,EA062,9,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p72, +Ag1,Segou to Bamako on Niger River,1920,EA062,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA062,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA062,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA062,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,,EA062,NA,,,, +Ag14,,,EA062,NA,,,, +Ag15,,,EA062,NA,,,, +Ag16,,1930,EA062,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p72, +Ag17,,,EA062,NA,,,, +Ag18,,1930,EA062,9,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p72, +Ag19,with special reference to the Felup,1930,EA062,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p72, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA062,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA062,NA,,,, +Ag21,,1910,EA062,9,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,with special reference to those of Sine,1920,EA062,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA062,NA,,,, +Ag24,,,EA062,NA,,,, +Ag25,,,EA062,NA,,,, +Ag26,,,EA062,NA,,,, +Ag27,,1910,EA062,9,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p72, +Ag28,,,EA062,NA,,,, +Ag29,,,EA062,NA,,,, +Ag3,,1930,EA062,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA062,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,1910,EA062,9,,cheron1913; holas1957,EthnographicAtlas_1967_p72, +Ag32,,1900,EA062,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA062,NA,,,, +Ag34,,,EA062,NA,,,, +Ag35,,,EA062,NA,,,, +Ag36,,,EA062,NA,,,, +Ag37,,,EA062,NA,,,, +Ag38,,,EA062,NA,,,, +Ag39,,,EA062,NA,,,, +Ag4,Tallensi Tribe,1930,EA062,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA062,NA,,,, +Ag41,,,EA062,NA,,,, +Ag42,,,EA062,NA,,,, +Ag43,,,EA062,NA,,,, +Ag44,,,EA062,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA062,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA062,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA062,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA062,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,1930,EA062,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA062,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,1910,EA062,9,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA062,NA,,,, +Ag52,,,EA062,NA,,,, +Ag53,with special reference to those of Garango,1960,EA062,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA062,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA062,10,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,1930,EA062,10,,malzy1946; ortoli1939,EthnographicAtlas_1967_p72, +Ag8,with special reference to the Coniagui,1910,EA062,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA062,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,Zaria Province,1930,EA062,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA062,NA,,,, +Ah11,,,EA062,NA,,,, +Ah12,,,EA062,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA062,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA062,9,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah15,,1920,EA062,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA062,NA,,,, +Ah17,,,EA062,NA,,,, +Ah18,,,EA062,NA,,,, +Ah19,,1930,EA062,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p76, +Ah2,,1920,EA062,9,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,1920,EA062,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA062,NA,,,, +Ah22,,,EA062,NA,,,, +Ah23,,,EA062,NA,,,, +Ah24,,,EA062,NA,,,, +Ah25,,,EA062,NA,,,, +Ah26,,,EA062,NA,,,, +Ah27,,,EA062,NA,,,, +Ah28,,,EA062,NA,,,, +Ah29,,,EA062,NA,,,, +Ah3,Tar of Benue Province,1920,EA062,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,1920,EA062,9,,meek1931b,EthnographicAtlas_1967_p76, +Ah31,,1910,EA062,9,,haughton1912; meek1931b,EthnographicAtlas_1967_p76, +Ah32,,,EA062,NA,,,, +Ah33,,1920,EA062,9,,meek1931b; temple1922,EthnographicAtlas_1967_p76, +Ah34,,,EA062,NA,,,, +Ah35,,,EA062,NA,,,, +Ah36,,1920,EA062,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA062,NA,,,, +Ah38,,1930,EA062,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA062,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,1920,EA062,10,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p76, +Ah5,,,EA062,NA,,,, +Ah6,,,EA062,NA,,,, +Ah7,,1940,EA062,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA062,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA062,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA062,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA062,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA062,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,1950,EA062,9,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p76, +Ai13,,,EA062,NA,,,, +Ai14,,1920,EA062,9,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,,EA062,NA,,,, +Ai16,,,EA062,NA,,,, +Ai17,,,EA062,NA,,,, +Ai18,,,EA062,NA,,,, +Ai19,,,EA062,NA,,,, +Ai2,,,EA062,NA,,,, +Ai20,,,EA062,NA,,,, +Ai21,,,EA062,NA,,,, +Ai22,,1890,EA062,9,,delafosse1897,EthnographicAtlas_1967_p76, +Ai23,,1920,EA062,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA062,NA,,,, +Ai25,,,EA062,NA,,,, +Ai26,,1920,EA062,9,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA062,NA,,,, +Ai28,,1910,EA062,9,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA062,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA062,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA062,9,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,1920,EA062,9,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,,EA062,NA,,,, +Ai33,,,EA062,NA,,,, +Ai34,,1880,EA062,9,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA062,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA062,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA062,NA,,,, +Ai38,,1930,EA062,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA062,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA062,NA,,,, +Ai40,,1940,EA062,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA062,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA062,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA062,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,1920,EA062,9,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p76, +Ai45,,,EA062,NA,,,, +Ai46,,1930,EA062,9,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p76, +Ai47,Northern division,1939,EA062,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p76, +Ai5,,1920,EA062,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA062,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA062,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA062,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA062,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,1950,EA062,9,,lawrance1957,EthnographicAtlas_1967_p76, +Aj10,,,EA062,NA,,,, +Aj11,,1900,EA062,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p80, +Aj12,,1920,EA062,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj13,,1930,EA062,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA062,NA,,,, +Aj15,,1900,EA062,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA062,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA062,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,1950,EA062,9,,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,1920,EA062,9,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p80, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA062,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,1940,EA062,9,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p80, +Aj21,,1930,EA062,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,1930,EA062,9,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA062,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA062,9,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA062,9,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA062,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA062,NA,,,, +Aj28,,1940,EA062,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA062,NA,,,, +Aj3,,1930,EA062,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA062,NA,,,, +Aj31,,,EA062,NA,,,, +Aj4,,1920,EA062,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA062,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA062,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA062,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA062,3,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,,EA062,NA,,,, +Ca1,Town of Buso,1930,EA062,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA062,3,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA062,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA062,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA062,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA062,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA062,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA062,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA062,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA062,NA,,,, +Ca19,,1950,EA062,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA062,3,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA062,NA,,,, +Ca21,,,EA062,NA,,,, +Ca22,,,EA062,NA,,,, +Ca23,,1950,EA062,9,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA062,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,,EA062,NA,,,, +Ca26,,,EA062,NA,,,, +Ca27,,,EA062,NA,,,, +Ca28,,1950,EA062,10,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA062,3,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,1950,EA062,9,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p80, +Ca30,Kafa Kingdom,1890,EA062,9,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,,EA062,NA,,,, +Ca32,,,EA062,NA,,,, +Ca33,,,EA062,NA,,,, +Ca34,,,EA062,NA,,,, +Ca35,,,EA062,NA,,,, +Ca36,,,EA062,NA,,,, +Ca37,,,EA062,NA,,,, +Ca38,,,EA062,NA,,,, +Ca39,,1930,EA062,3,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,1950,EA062,10,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA062,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,,EA062,NA,,,, +Ca42,,1950,EA062,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA062,NA,,,, +Ca5,,1930,EA062,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p80, +Ca6,,1880,EA062,9,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p80, +Ca7,Gondar district,1950,EA062,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,1940,EA062,3,,leslau1950; shack1963,EthnographicAtlas_1967_p80, +Ca9,,,EA062,NA,,,, +Cb1,,,EA062,NA,,,, +Cb10,,,EA062,NA,,,, +Cb11,,,EA062,NA,,,, +Cb12,,,EA062,NA,,,, +Cb13,,,EA062,NA,,,, +Cb14,,,EA062,NA,,,, +Cb15,,,EA062,NA,,,, +Cb16,,,EA062,NA,,,, +Cb17,Jebel Marra,1880,EA062,9,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,1930,EA062,9,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p80, +Cb19,,,EA062,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA062,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA062,9,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA062,9,,pfeffer1936,EthnographicAtlas_1967_p84, +Cb22,,,EA062,NA,,,, +Cb23,,1930,EA062,9,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,Wodaabe of Niger,1950,EA062,10,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p84, +Cb25,,,EA062,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA062,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA062,NA,,,, +Cb28,,,EA062,NA,,,, +Cb29,,,EA062,NA,,,, +Cb3,Bamba division,1940,EA062,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,1920,EA062,9,,reid1930,EthnographicAtlas_1967_p80, +Cb5,,1910,EA062,10,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p80, +Cb6,,1920,EA062,9,,woodnd,EthnographicAtlas_1967_p80, +Cb7,,1920,EA062,9,,meek1931b:288-310,EthnographicAtlas_1967_p80, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA062,10,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p80, +Cb9,,,EA062,NA,,,, +Cc1,,1950,EA062,9,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA062,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA062,NA,,,, +Cc12,,1944,EA062,9,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA062,NA,,,, +Cc14,,1880,EA062,3,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA062,NA,,,, +Cc16,,1930,EA062,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA062,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA062,NA,,,, +Cc19,,,EA062,NA,,,, +Cc2,Nomads of Tibesti,1950,EA062,3,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA062,10,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA062,10,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA062,10,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA062,9,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA062,NA,,,, +Cc7,,,EA062,NA,,,, +Cc8,,,EA062,NA,,,, +Cc9,Ahaggaren tribe,1920,EA062,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA062,10,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA062,NA,,,, +Cd11,,1500,EA062,9,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p84, +Cd12,,,EA062,NA,,,, +Cd13,,,EA062,NA,,,, +Cd14,,,EA062,NA,,,, +Cd15,,,EA062,NA,,,, +Cd16,,,EA062,NA,,,, +Cd17,,,EA062,NA,,,, +Cd18,,,EA062,NA,,,, +Cd19,,,EA062,NA,,,, +Cd2,Town and environs of Silwa,1950,EA062,10,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA062,NA,,,, +Cd21,,,EA062,NA,,,, +Cd3,Entirety: Moroccan,1920,EA062,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA062,10,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA062,9,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,with special reference to the New Empire,-1400,EA062,9,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA062,NA,,,, +Cd8,,,EA062,NA,,,, +Cd9,,,EA062,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA062,10,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA062,NA,,,, +Ce3,,,EA062,NA,,,, +Ce4,Labourd,1930,EA062,10,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA062,9,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA062,9,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA062,10,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA062,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA062,9,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA062,NA,,,, +Cf3,,1930,EA062,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA062,9,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA062,9,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA062,10,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA062,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA062,9,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA062,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA062,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA062,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA062,NA,,,, +Ch11,Viriatino Village,1955,EA062,10,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA062,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA062,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,1900,EA062,9,,heffner1955; wichmann1913,EthnographicAtlas_1967_p84, +Ch5,with special reference to the village of Dragelevtsy,1940,EA062,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA062,9,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA062,9,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,,EA062,NA,,,, +Ch9,,1930,EA062,9,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA062,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA062,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA062,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA062,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA062,9,,grigolia1939,EthnographicAtlas_1967_p84, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA062,10,,gadzhieva1958,EthnographicAtlas_1967_p84, +Ci4,,1920,EA062,9,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA062,10,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA062,9,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p84, +Ci7,,1900,EA062,9,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p84, +Ci8,,,EA062,NA,,,, +Ci9,,,EA062,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA062,9,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,,,EA062,NA,,,, +Cj2,Unspecified,1920,EA062,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA062,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA062,3,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA062,9,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA062,NA,,,, +Cj7,,,EA062,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA062,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA062,NA,,,, +Ea1,,1950,EA062,3,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,,,EA062,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA062,10,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA062,9,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA062,3,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA062,10,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA062,10,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA062,9,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA062,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA062,9,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA062,10,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA062,9,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA062,10,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA062,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA062,9,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA062,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA062,NA,,,, +Eb5,,,EA062,NA,,,, +Eb6,,,EA062,NA,,,, +Eb7,,1930,EA062,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA062,NA,,,, +Ec1,Sakhalin Island,1920,EA062,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA062,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA062,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA062,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA062,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA062,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA062,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,Upper Kolyma River,1850,EA062,9,,jochelson191926,EthnographicAtlas_1967_p88, +Ec7,Saru Basin in Hokkaido,1900,EA062,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,1900,EA062,9,,shimkin1939,EthnographicAtlas_1967_p88, +Ec9,,1920,EA062,9,,lattimore1933,EthnographicAtlas_1967_p88, +Ed1,Kanghwa Island,1950,EA062,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA062,10,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA062,NA,,,, +Ed14,,,EA062,NA,,,, +Ed15a,,,EA062,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA062,10,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA062,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA062,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA062,10,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA062,9,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA062,10,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA062,10,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA062,10,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA062,10,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA062,10,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA062,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA062,10,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA062,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA062,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA062,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,,,EA062,NA,,,, +Ee7,,,EA062,NA,,,, +Ee8,,,EA062,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA062,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA062,NA,,,, +Ef11,Village and environs of Senapur,1945,EA062,10,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA062,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA062,NA,,,, +Ef4,,,EA062,NA,,,, +Ef5,,1900,EA062,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA062,9,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA062,10,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA062,9,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA062,10,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA062,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA062,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA062,NA,,,, +Eg12,,,EA062,NA,,,, +Eg13,Bastar State,1941,EA062,9,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA062,9,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA062,10,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA062,9,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA062,10,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA062,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,with special reference to Northern Kerala,1799,EA062,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA062,9,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA062,10,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,1930,EA062,9,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA062,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA062,NA,,,, +Eh2,,1900,EA062,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA062,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA062,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA062,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA062,NA,,,, +Eh7,,1900,EA062,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA062,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,1930,EA062,9,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA062,9,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA062,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA062,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA062,NA,,,, +Ei13,,1910,EA062,9,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA062,9,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA062,NA,,,, +Ei16,,1910,EA062,9,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA062,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA062,10,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,1940,EA062,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA062,9,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA062,NA,,,, +Ei3,Nondwin Village,1950,EA062,3,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA062,9,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA062,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA062,9,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA062,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA062,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA062,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA062,9,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA062,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA062,10,,lafont1964,EthnographicAtlas_1967_p92, +Ej12,,1960,EA062,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA062,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA062,9,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA062,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA062,10,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA062,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA062,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,,,EA062,NA,,,, +Ej5,,,EA062,NA,,,, +Ej6,of the Mergui Archipelago,1920,EA062,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA062,9,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA062,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA062,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA062,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA062,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA062,9,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA062,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA062,10,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA062,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA062,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA062,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA062,NA,,,, +Ia18,,,EA062,NA,,,, +Ia2,,1950,EA062,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,,,EA062,NA,,,, +Ia4,with special reference to the Eastern Subanun,1950,EA062,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p92, +Ia5,,1950,EA062,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA062,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA062,9,,fox1954,EthnographicAtlas_1967_p92, +Ia8,,,EA062,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA062,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA062,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA062,10,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA062,10,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA062,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA062,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,,EA062,NA,,,, +Ib7,with special reference to those of North Pageh,1920,EA062,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,with special reference to the Ridan group,1900,EA062,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA062,NA,,,, +Ic1,Borongloe,1940,EA062,10,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA062,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,,,EA062,NA,,,, +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA062,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA062,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA062,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,with special reference to the Mountain Belu,1950,EA062,9,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA062,NA,,,, +Ic5,Bare'e subgroup,1910,EA062,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA062,9,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,,,EA062,NA,,,, +Ic8,,1890,EA062,9,,pleyte1893,EthnographicAtlas_1967_p96, +Ic9,with special reference to eastern Sumba,1930,EA062,9,,nooteboom1940,EthnographicAtlas_1967_p96, +Id1,Alice Springs and environs,1900,EA062,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA062,9,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA062,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA062,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA062,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA062,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA062,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA062,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA062,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA062,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA062,9,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA062,9,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA062,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA062,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA062,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA062,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA062,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA062,9,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA062,9,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,Kalabu; Northern Abelam,1930,EA062,9,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA062,9,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA062,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA062,9,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA062,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA062,9,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA062,9,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA062,9,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,,EA062,NA,,,, +Ie23,,1950,EA062,9,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,1870,EA062,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA062,9,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA062,9,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,1910,EA062,9,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,1940,EA062,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA062,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA062,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA062,9,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,1950,EA062,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA062,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA062,9,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA062,NA,,,, +Ie35,,1930,EA062,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA062,NA,,,, +Ie37,,,EA062,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA062,10,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA062,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA062,10,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA062,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA062,9,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA062,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA062,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA062,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA062,10,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA062,NA,,,, +If11,,1860,EA062,10,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA062,10,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA062,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA062,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA062,10,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA062,10,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA062,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA062,10,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA062,10,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA062,10,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA062,10,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA062,10,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA062,10,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA062,10,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,,EA062,NA,,,, +Ig1,Northeastern group,1940,EA062,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA062,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA062,9,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,with special reference to the Varisi,1900,EA062,9,,scheffler1965,EthnographicAtlas_1967_p100, +Ig13,,1900,EA062,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,1900,EA062,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA062,NA,,,, +Ig16,,,EA062,NA,,,, +Ig17,,,EA062,NA,,,, +Ig18,,,EA062,NA,,,, +Ig19,,,EA062,NA,,,, +Ig2,Kiriwina Island,1910,EA062,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA062,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA062,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA062,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA062,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA062,9,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA062,9,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA062,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA062,NA,,,, +Ig9,Peri Village,1920,EA062,10,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA062,10,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,Whitsands,1920,EA062,9,,humphreys1926,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA062,NA,,,, +Ih12,,,EA062,NA,,,, +Ih13,,,EA062,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA062,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA062,9,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA062,NA,,,, +Ih4,Lau Island,1920,EA062,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA062,NA,,,, +Ih6,,1890,EA062,10,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA062,10,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA062,9,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA062,9,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA062,10,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA062,NA,,,, +Ii12,,,EA062,NA,,,, +Ii13,,1830,EA062,10,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA062,10,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA062,10,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA062,10,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA062,10,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA062,10,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA062,10,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA062,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,,EA062,NA,,,, +Ii9,,1840,EA062,10,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA062,10,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA062,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA062,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA062,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA062,10,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA062,10,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA062,10,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA062,10,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA062,10,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,,EA062,NA,,,, +Na1,,1930,EA062,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA062,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA062,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA062,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA062,9,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA062,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA062,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA062,9,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA062,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA062,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA062,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA062,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA062,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA062,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA062,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA062,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA062,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA062,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA062,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA062,9,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA062,9,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA062,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA062,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA062,9,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA062,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA062,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA062,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA062,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA062,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA062,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA062,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA062,9,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA062,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA062,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA062,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA062,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA062,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA062,NA,,,, +Na45,,1900,EA062,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA062,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA062,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA062,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA062,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA062,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA062,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA062,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA062,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA062,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA062,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA062,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA062,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA062,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA062,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA062,9,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA062,9,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA062,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA062,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA062,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA062,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA062,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA062,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA062,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA062,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA062,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA062,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,,EA062,NA,,,, +Nb3,,1890,EA062,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA062,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA062,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA062,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA062,9,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA062,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA062,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA062,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA062,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA062,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA062,9,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA062,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA062,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA062,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA062,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA062,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA062,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA062,9,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA062,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA062,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA062,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA062,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA062,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA062,9,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA062,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA062,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA062,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA062,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA062,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA062,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA062,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA062,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA062,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA062,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA062,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA062,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA062,9,,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA062,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA062,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA062,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA062,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA062,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA062,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA062,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA062,9,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA062,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA062,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA062,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA062,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA062,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA062,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA062,9,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA062,9,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA062,9,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA062,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA062,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA062,9,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA062,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA062,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA062,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA062,9,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA062,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA062,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA062,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA062,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA062,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA062,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA062,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA062,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA062,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA062,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA062,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA062,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA062,9,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA062,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA062,9,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA062,9,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA062,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA062,9,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA062,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA062,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA062,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA062,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA062,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA062,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA062,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA062,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA062,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA062,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA062,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA062,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA062,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA062,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,1860,EA062,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA062,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA062,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA062,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA062,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA062,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA062,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA062,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA062,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA062,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA062,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA062,9,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA062,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA062,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA062,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA062,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA062,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA062,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA062,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA062,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA062,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA062,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA062,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA062,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA062,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA062,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA062,9,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA062,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA062,NA,,,, +Ne3,Comanche Tribe,1870,EA062,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA062,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA062,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA062,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA062,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA062,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA062,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA062,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA062,9,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA062,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA062,9,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA062,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA062,NA,,,, +Nf2,,1850,EA062,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA062,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA062,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA062,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA062,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA062,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA062,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA062,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA062,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA062,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA062,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA062,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA062,NA,,,, +Ng14,,,EA062,NA,,,, +Ng15,,,EA062,NA,,,, +Ng2,,,EA062,NA,,,, +Ng3,Upper division in Alabama,1750,EA062,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA062,NA,,,, +Ng5,,1750,EA062,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA062,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA062,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA062,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA062,NA,,,, +Nh1,Central band,1880,EA062,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,1920,EA062,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p116, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA062,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA062,9,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA062,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA062,NA,,,, +Nh15,,1870,EA062,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA062,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA062,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA062,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA062,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA062,9,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA062,9,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA062,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA062,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA062,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA062,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA062,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA062,NA,,,, +Nh27,,,EA062,NA,,,, +Nh3,,1930,EA062,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA062,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA062,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA062,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA062,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA062,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,1920,EA062,9,,parsons1939; trager1943,EthnographicAtlas_1967_p116, +Ni1,,1930,EA062,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA062,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA062,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA062,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA062,9,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA062,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA062,9,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA062,NA,,,, +Ni9,,,EA062,NA,,,, +Nj1,Ojitlan,1940,EA062,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA062,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA062,NA,,,, +Nj12,,,EA062,NA,,,, +Nj13,,,EA062,NA,,,, +Nj14,,,EA062,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA062,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA062,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA062,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA062,NA,,,, +Nj6,,,EA062,NA,,,, +Nj7,with special reference to Ayutla,1930,EA062,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA062,9,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA062,10,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA062,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA062,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA062,NA,,,, +Sa12,,1948,EA062,9,,stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA062,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA062,NA,,,, +Sa15,,,EA062,NA,,,, +Sa16,,,EA062,NA,,,, +Sa17,,,EA062,NA,,,, +Sa2,,,EA062,NA,,,, +Sa3,,1930,EA062,9,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA062,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA062,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA062,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA062,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA062,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA062,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA062,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA062,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA062,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA062,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA062,NA,,,, +Sb6,Goajiro Tribe,1940,EA062,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA062,9,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA062,9,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA062,10,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA062,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA062,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA062,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA062,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA062,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA062,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA062,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA062,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA062,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA062,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA062,9,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA062,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA062,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA062,9,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA062,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA062,9,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA062,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA062,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA062,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA062,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA062,9,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA062,9,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA062,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA062,9,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA062,9,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA062,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA062,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA062,9,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA062,NA,,,, +Se11,,1960,EA062,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA062,NA,,,, +Se2,,1940,EA062,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA062,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA062,9,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA062,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA062,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA062,NA,,,, +Se8,Upper Inuya River,1950,EA062,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA062,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA062,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA062,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA062,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA062,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA062,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA062,9,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA062,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA062,NA,,,, +Sf9,,,EA062,NA,,,, +Sg1,Eastern and central,1870,EA062,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA062,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA062,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA062,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA062,9,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA062,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA062,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA062,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA062,9,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA062,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA062,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA062,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA062,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA062,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA062,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA062,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA062,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA062,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA062,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA062,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA062,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,with special reference to the Cozarimi,1910,EA062,9,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p124, +Si8,,1940,EA062,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA062,NA,,,, +Sj1,,1950,EA062,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA062,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA062,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA062,9,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA062,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA062,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA062,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,with special reference to the Guajajara subgroup,1930,EA062,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA062,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA062,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA062,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA062,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA062,10,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA062,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA062,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA062,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA062,10,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA062,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA062,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA062,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA062,10,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA062,10,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA062,10,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA062,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA062,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA062,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA062,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA062,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA062,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA062,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA062,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA062,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA062,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA062,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA062,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA062,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA062,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA062,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA063,10,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA063,10,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA063,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA063,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA063,10,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,1920,EA063,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p64, +Aa7,,1910,EA063,10,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,,EA063,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA063,10,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA063,10,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA063,9,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,,EA063,NA,,,, +Ab12,,1830,EA063,10,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA063,10,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA063,10,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA063,10,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,,EA063,NA,,,, +Ab17,,,EA063,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA063,9,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA063,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA063,10,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA063,NA,,,, +Ab21a,,,EA063,NA,,,, +Ab21b,,,EA063,NA,,,, +Ab22,,,EA063,NA,,,, +Ab3,Ruling Luyana,1890,EA063,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA063,9,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA063,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA063,10,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA063,9,,langandtastevin1937,EthnographicAtlas_1967_p64, +Ab8,Basuto,1860,EA063,10,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA063,10,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA063,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA063,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA063,9,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,1920,EA063,9,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p64, +Ac13,,1950,EA063,9,,tew1950; velsen1964,EthnographicAtlas_1967_p64, +Ac14,,1900,EA063,9,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p64, +Ac15,,,EA063,NA,,,, +Ac16,,,EA063,NA,,,, +Ac17,Feshi territory lineage center,1910,EA063,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA063,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA063,NA,,,, +Ac2,,1920,EA063,9,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p64, +Ac20,,,EA063,NA,,,, +Ac21,,1910,EA063,9,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p64, +Ac22,,1930,EA063,9,,mertens1935,EthnographicAtlas_1967_p64, +Ac23,with special reference to the western Lele,1950,EA063,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA063,NA,,,, +Ac25,,,EA063,NA,,,, +Ac26,,,EA063,NA,,,, +Ac27,,,EA063,NA,,,, +Ac28,,1930,EA063,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA063,NA,,,, +Ac3,Zambia branch,1900,EA063,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA063,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA063,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA063,NA,,,, +Ac33,,1940,EA063,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,1940,EA063,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA063,NA,,,, +Ac36,,,EA063,NA,,,, +Ac37,,,EA063,NA,,,, +Ac38,,1910,EA063,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA063,9,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA063,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA063,NA,,,, +Ac41,,,EA063,NA,,,, +Ac42,,,EA063,NA,,,, +Ac43,,,EA063,NA,,,, +Ac5,,1920,EA063,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA063,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA063,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA063,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA063,10,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA063,9,,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA063,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA063,9,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA063,NA,,,, +Ad13,,1930,EA063,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA063,NA,,,, +Ad15,,,EA063,NA,,,, +Ad16,,1920,EA063,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,,EA063,NA,,,, +Ad18,,,EA063,NA,,,, +Ad19,,1910,EA063,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA063,3,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,,EA063,NA,,,, +Ad21,,1930,EA063,9,,maurice193538,EthnographicAtlas_1967_p68, +Ad22,,,EA063,NA,,,, +Ad23,,,EA063,NA,,,, +Ad24,,1910,EA063,10,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA063,NA,,,, +Ad26,,1910,EA063,10,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,,EA063,NA,,,, +Ad28,,1880,EA063,9,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA063,9,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA063,10,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,,EA063,NA,,,, +Ad31,,,EA063,NA,,,, +Ad32,,,EA063,NA,,,, +Ad33,,1900,EA063,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,1910,EA063,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA063,10,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA063,NA,,,, +Ad37,,,EA063,NA,,,, +Ad38,,,EA063,NA,,,, +Ad39,,1950,EA063,10,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA063,10,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA063,NA,,,, +Ad41,,1930,EA063,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,1900,EA063,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p68, +Ad43,,,EA063,NA,,,, +Ad44,,1920,EA063,9,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,,EA063,NA,,,, +Ad46,,1950,EA063,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,,EA063,NA,,,, +Ad48,,1950,EA063,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA063,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA063,NA,,,, +Ad50,,,EA063,NA,,,, +Ad51,,1930,EA063,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA063,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA063,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA063,10,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,,EA063,NA,,,, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA063,9,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA063,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA063,9,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA063,9,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA063,NA,,,, +Ae14,,,EA063,NA,,,, +Ae15,,1940,EA063,9,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p68, +Ae16,,,EA063,NA,,,, +Ae17,,1900,EA063,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA063,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA063,NA,,,, +Ae2,,1950,EA063,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA063,NA,,,, +Ae21,,,EA063,NA,,,, +Ae22,,,EA063,NA,,,, +Ae23,,,EA063,NA,,,, +Ae24,,,EA063,NA,,,, +Ae25,,,EA063,NA,,,, +Ae26,,,EA063,NA,,,, +Ae27,,,EA063,NA,,,, +Ae28,,1900,EA063,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,1900,EA063,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA063,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA063,NA,,,, +Ae31,,,EA063,NA,,,, +Ae32,,,EA063,NA,,,, +Ae33,,1920,EA063,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA063,NA,,,, +Ae35,,,EA063,NA,,,, +Ae36,,,EA063,NA,,,, +Ae37,,,EA063,NA,,,, +Ae38,,1920,EA063,9,,wijnant192526,EthnographicAtlas_1967_p68, +Ae39,,1920,EA063,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA063,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA063,NA,,,, +Ae41,,1940,EA063,9,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA063,NA,,,, +Ae43,,,EA063,NA,,,, +Ae44,,,EA063,NA,,,, +Ae45,,,EA063,NA,,,, +Ae46,,,EA063,NA,,,, +Ae47,,,EA063,NA,,,, +Ae48,,1930,EA063,9,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae49,,,EA063,NA,,,, +Ae5,,1910,EA063,10,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,,EA063,NA,,,, +Ae51,Ndiki subtribe,1940,EA063,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,,EA063,NA,,,, +Ae53,,,EA063,NA,,,, +Ae54,,,EA063,NA,,,, +Ae55,,1950,EA063,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,,EA063,NA,,,, +Ae57,,,EA063,NA,,,, +Ae58,,,EA063,NA,,,, +Ae59,,,EA063,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA063,9,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,1910,EA063,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA063,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA063,10,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA063,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA063,10,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA063,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA063,NA,,,, +Af13,,1920,EA063,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,1930,EA063,9,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA063,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA063,NA,,,, +Af17,,,EA063,NA,,,, +Af18,,,EA063,NA,,,, +Af19,,1950,EA063,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p72, +Af2,,1950,EA063,9,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA063,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA063,NA,,,, +Af22,,1940,EA063,9,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,with special reference to the village of Mgbom,1950,EA063,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,,EA063,NA,,,, +Af25,,1930,EA063,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA063,NA,,,, +Af27,,,EA063,NA,,,, +Af28,,,EA063,NA,,,, +Af29,,,EA063,NA,,,, +Af3,Kumasi State,1900,EA063,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA063,NA,,,, +Af31,,,EA063,NA,,,, +Af32,,,EA063,NA,,,, +Af33,,,EA063,NA,,,, +Af34,,,EA063,NA,,,, +Af35,,,EA063,NA,,,, +Af36,with special reference to the Glidyi,1900,EA063,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA063,NA,,,, +Af38,,,EA063,NA,,,, +Af39,,,EA063,NA,,,, +Af4,,1930,EA063,10,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA063,NA,,,, +Af41,,,EA063,NA,,,, +Af42,,1900,EA063,9,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,1930,EA063,9,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p72, +Af44,,,EA063,NA,,,, +Af45,,,EA063,NA,,,, +Af46,,,EA063,NA,,,, +Af47,,,EA063,NA,,,, +Af48,,,EA063,NA,,,, +Af49,,1940,EA063,9,,schwab1947,EthnographicAtlas_1967_p72, +Af5,,1930,EA063,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA063,NA,,,, +Af51,,1920,EA063,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA063,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA063,NA,,,, +Af54,,1930,EA063,9,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA063,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA063,9,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA063,9,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA063,NA,,,, +Af6,,,EA063,NA,,,, +Af7,,1950,EA063,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,,EA063,NA,,,, +Af9,,1900,EA063,9,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p72, +Ag1,Segou to Bamako on Niger River,1920,EA063,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA063,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA063,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA063,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,,EA063,NA,,,, +Ag14,,,EA063,NA,,,, +Ag15,,,EA063,NA,,,, +Ag16,,1930,EA063,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p72, +Ag17,,,EA063,NA,,,, +Ag18,,1930,EA063,9,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p72, +Ag19,with special reference to the Felup,1930,EA063,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p72, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA063,10,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA063,NA,,,, +Ag21,,1910,EA063,9,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,with special reference to those of Sine,1920,EA063,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA063,NA,,,, +Ag24,,,EA063,NA,,,, +Ag25,,,EA063,NA,,,, +Ag26,,,EA063,NA,,,, +Ag27,,1910,EA063,10,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p72, +Ag28,,,EA063,NA,,,, +Ag29,,,EA063,NA,,,, +Ag3,,1930,EA063,10,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA063,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,,EA063,NA,,,, +Ag32,,1900,EA063,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA063,NA,,,, +Ag34,,,EA063,NA,,,, +Ag35,,,EA063,NA,,,, +Ag36,,,EA063,NA,,,, +Ag37,,,EA063,NA,,,, +Ag38,,,EA063,NA,,,, +Ag39,,,EA063,NA,,,, +Ag4,Tallensi Tribe,1930,EA063,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA063,NA,,,, +Ag41,,,EA063,NA,,,, +Ag42,,,EA063,NA,,,, +Ag43,,,EA063,NA,,,, +Ag44,,,EA063,NA,,,, +Ag45,,,EA063,NA,,,, +Ag46,,,EA063,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA063,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA063,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,,EA063,NA,,,, +Ag5,,1930,EA063,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,1910,EA063,9,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA063,NA,,,, +Ag52,,,EA063,NA,,,, +Ag53,,,EA063,NA,,,, +Ag54,,1910,EA063,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA063,10,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,1930,EA063,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p72, +Ag8,with special reference to the Coniagui,1910,EA063,10,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA063,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,,,EA063,NA,,,, +Ah10,,,EA063,NA,,,, +Ah11,,1950,EA063,9,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA063,NA,,,, +Ah13,,,EA063,NA,,,, +Ah14,,,EA063,NA,,,, +Ah15,,1920,EA063,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA063,NA,,,, +Ah17,,,EA063,NA,,,, +Ah18,,,EA063,NA,,,, +Ah19,,1930,EA063,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p76, +Ah2,,1920,EA063,9,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,1920,EA063,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA063,NA,,,, +Ah22,,,EA063,NA,,,, +Ah23,,,EA063,NA,,,, +Ah24,,,EA063,NA,,,, +Ah25,,,EA063,NA,,,, +Ah26,,,EA063,NA,,,, +Ah27,,,EA063,NA,,,, +Ah28,,,EA063,NA,,,, +Ah29,,,EA063,NA,,,, +Ah3,Tar of Benue Province,1920,EA063,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,,EA063,NA,,,, +Ah31,,,EA063,NA,,,, +Ah32,,,EA063,NA,,,, +Ah33,,,EA063,NA,,,, +Ah34,,,EA063,NA,,,, +Ah35,,,EA063,NA,,,, +Ah36,,,EA063,NA,,,, +Ah37,,,EA063,NA,,,, +Ah38,,,EA063,NA,,,, +Ah39,,,EA063,NA,,,, +Ah4,,1920,EA063,10,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p76, +Ah5,,,EA063,NA,,,, +Ah6,,,EA063,NA,,,, +Ah7,,1940,EA063,10,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA063,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA063,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA063,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA063,10,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA063,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,,EA063,NA,,,, +Ai13,,,EA063,NA,,,, +Ai14,,1920,EA063,9,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p76, +Ai15,,1900,EA063,9,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA063,NA,,,, +Ai17,,,EA063,NA,,,, +Ai18,,1880,EA063,9,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA063,NA,,,, +Ai2,,,EA063,NA,,,, +Ai20,,,EA063,NA,,,, +Ai21,,1880,EA063,9,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p76, +Ai22,,,EA063,NA,,,, +Ai23,,1920,EA063,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA063,NA,,,, +Ai25,,1950,EA063,9,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,,EA063,NA,,,, +Ai27,,,EA063,NA,,,, +Ai28,,1910,EA063,9,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA063,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA063,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA063,9,Mainly by Pygmies,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,,EA063,NA,,,, +Ai32,,,EA063,NA,,,, +Ai33,,,EA063,NA,,,, +Ai34,,1880,EA063,9,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA063,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA063,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA063,NA,,,, +Ai38,,,EA063,NA,,,, +Ai39,,,EA063,NA,,,, +Ai4,,,EA063,NA,,,, +Ai40,,,EA063,NA,,,, +Ai41,,,EA063,NA,,,, +Ai42,,,EA063,NA,,,, +Ai43,,1930,EA063,10,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,,EA063,NA,,,, +Ai45,,,EA063,NA,,,, +Ai46,,1930,EA063,9,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p76, +Ai47,,,EA063,NA,,,, +Ai5,,1920,EA063,10,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,,,EA063,NA,,,, +Ai7,,1910,EA063,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA063,10,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA063,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,1950,EA063,9,,lawrance1957,EthnographicAtlas_1967_p76, +Aj10,,,EA063,NA,,,, +Aj11,,1900,EA063,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p80, +Aj12,,1920,EA063,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj13,,1930,EA063,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA063,NA,,,, +Aj15,,1900,EA063,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA063,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,,EA063,NA,,,, +Aj18,,1950,EA063,10,,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,1920,EA063,10,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p80, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA063,10,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,1940,EA063,10,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p80, +Aj21,,1930,EA063,10,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,,EA063,NA,,,, +Aj23,,1950,EA063,10,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA063,10,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA063,10,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA063,10,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA063,NA,,,, +Aj28,,1940,EA063,10,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA063,NA,,,, +Aj3,,1930,EA063,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA063,NA,,,, +Aj31,,,EA063,NA,,,, +Aj4,,1920,EA063,10,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA063,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA063,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA063,10,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA063,3,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,,EA063,NA,,,, +Ca1,Town of Buso,1930,EA063,10,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA063,10,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA063,10,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA063,10,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA063,10,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA063,10,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA063,10,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA063,10,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA063,10,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA063,NA,,,, +Ca19,,1950,EA063,10,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA063,10,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA063,NA,,,, +Ca21,,1950,EA063,10,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA063,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA063,10,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,1950,EA063,10,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA063,10,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA063,NA,,,, +Ca27,,,EA063,NA,,,, +Ca28,,1950,EA063,10,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,,EA063,NA,,,, +Ca3,,1950,EA063,10,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p80, +Ca30,Kafa Kingdom,1890,EA063,3,By an outcaste group (Manjo hunters),bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,,EA063,NA,,,, +Ca32,,,EA063,NA,,,, +Ca33,,,EA063,NA,,,, +Ca34,,,EA063,NA,,,, +Ca35,,,EA063,NA,,,, +Ca36,,,EA063,NA,,,, +Ca37,,,EA063,NA,,,, +Ca38,,,EA063,NA,,,, +Ca39,,,EA063,NA,,,, +Ca4,,1950,EA063,10,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA063,10,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA063,10,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA063,10,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA063,NA,,,, +Ca5,,1930,EA063,10,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p80, +Ca6,,,EA063,NA,,,, +Ca7,Gondar district,1950,EA063,9,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA063,NA,,,, +Ca9,,,EA063,NA,,,, +Cb1,,,EA063,NA,,,, +Cb10,,,EA063,NA,,,, +Cb11,,,EA063,NA,,,, +Cb12,,,EA063,NA,,,, +Cb13,,,EA063,NA,,,, +Cb14,,,EA063,NA,,,, +Cb15,,,EA063,NA,,,, +Cb16,,,EA063,NA,,,, +Cb17,Jebel Marra,1880,EA063,9,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,,EA063,NA,,,, +Cb19,,,EA063,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA063,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA063,3,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA063,10,,pfeffer1936,EthnographicAtlas_1967_p84, +Cb22,,,EA063,NA,,,, +Cb23,,1930,EA063,9,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,Wodaabe of Niger,1950,EA063,10,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p84, +Cb25,,,EA063,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA063,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA063,NA,,,, +Cb28,,,EA063,NA,,,, +Cb29,,,EA063,NA,,,, +Cb3,Bamba division,1940,EA063,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,1920,EA063,10,,reid1930,EthnographicAtlas_1967_p80, +Cb5,,1910,EA063,9,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p80, +Cb6,,1920,EA063,9,,woodnd,EthnographicAtlas_1967_p80, +Cb7,,,EA063,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA063,10,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p80, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA063,10,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,1950,EA063,3,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA063,10,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA063,NA,,,, +Cc12,,1944,EA063,10,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA063,NA,,,, +Cc14,,1880,EA063,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA063,NA,,,, +Cc16,,1930,EA063,10,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA063,3,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA063,NA,,,, +Cc19,,,EA063,NA,,,, +Cc2,Nomads of Tibesti,1950,EA063,10,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA063,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA063,10,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA063,10,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA063,10,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA063,NA,,,, +Cc7,,,EA063,NA,,,, +Cc8,,,EA063,NA,,,, +Cc9,Ahaggaren tribe,1920,EA063,10,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA063,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA063,NA,,,, +Cd11,,1500,EA063,9,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p84, +Cd12,,,EA063,NA,,,, +Cd13,,,EA063,NA,,,, +Cd14,,,EA063,NA,,,, +Cd15,,,EA063,NA,,,, +Cd16,,,EA063,NA,,,, +Cd17,,,EA063,NA,,,, +Cd18,,,EA063,NA,,,, +Cd19,,,EA063,NA,,,, +Cd2,Town and environs of Silwa,1950,EA063,3,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA063,NA,,,, +Cd21,,,EA063,NA,,,, +Cd3,Entirety: Moroccan,1920,EA063,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA063,10,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,,,EA063,NA,,,, +Cd6,,,EA063,NA,,,, +Cd7,,,EA063,NA,,,, +Cd8,,,EA063,NA,,,, +Cd9,,,EA063,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA063,10,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA063,NA,,,, +Ce3,,,EA063,NA,,,, +Ce4,Labourd,1930,EA063,9,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA063,9,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA063,9,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA063,9,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA063,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA063,3,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA063,NA,,,, +Cf3,,1930,EA063,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA063,9,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA063,9,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA063,3,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA063,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,,,EA063,NA,,,, +Cg4,Konkama District,1950,EA063,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA063,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA063,10,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA063,NA,,,, +Ch11,Viriatino Village,1955,EA063,10,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA063,NA,,,, +Ch3,with special reference to the Hana district of central Moravia,1940,EA063,10,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA063,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA063,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA063,9,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA063,9,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,,EA063,NA,,,, +Ch9,,1930,EA063,3,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA063,10,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA063,10,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA063,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA063,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA063,9,,grigolia1939,EthnographicAtlas_1967_p84, +Ci3,,,EA063,NA,,,, +Ci4,,1920,EA063,10,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA063,10,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA063,NA,,,, +Ci7,,,EA063,NA,,,, +Ci8,,,EA063,NA,,,, +Ci9,,,EA063,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA063,10,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA063,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA063,10,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA063,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA063,3,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA063,10,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA063,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA063,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA063,10,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA063,NA,,,, +Ea1,,,EA063,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA063,10,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA063,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,,EA063,NA,,,, +Ea13,Mohla Village,1950,EA063,3,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA063,10,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA063,10,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA063,10,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA063,10,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA063,10,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA063,10,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA063,10,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,,EA063,NA,,,, +Eb1,Great Horde,1910,EA063,10,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA063,9,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA063,10,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA063,NA,,,, +Eb5,,,EA063,NA,,,, +Eb6,,,EA063,NA,,,, +Eb7,,1930,EA063,10,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA063,NA,,,, +Ec1,Sakhalin Island,1920,EA063,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA063,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA063,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA063,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA063,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA063,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA063,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,Upper Kolyma River,1850,EA063,9,,jochelson191926,EthnographicAtlas_1967_p88, +Ec7,Saru Basin in Hokkaido,1900,EA063,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,1900,EA063,9,,shimkin1939,EthnographicAtlas_1967_p88, +Ec9,,1920,EA063,9,,lattimore1933,EthnographicAtlas_1967_p88, +Ed1,Kanghwa Island,1950,EA063,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,,,EA063,NA,,,, +Ed13,,,EA063,NA,,,, +Ed14,,,EA063,NA,,,, +Ed15a,,,EA063,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA063,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA063,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA063,10,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA063,9,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA063,9,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA063,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA063,9,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA063,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA063,9,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA063,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA063,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA063,10,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA063,10,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA063,3,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA063,10,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA063,10,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA063,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA063,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA063,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA063,NA,,,, +Ef11,Village and environs of Senapur,1945,EA063,10,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA063,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA063,NA,,,, +Ef4,,,EA063,NA,,,, +Ef5,,1900,EA063,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA063,9,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA063,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA063,3,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA063,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA063,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA063,9,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA063,NA,,,, +Eg12,,,EA063,NA,,,, +Eg13,Bastar State,1941,EA063,9,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA063,9,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,,,EA063,NA,,,, +Eg3,Hill Maria,1938,EA063,9,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA063,10,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA063,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,with special reference to Northern Kerala,1799,EA063,3,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA063,9,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA063,10,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,1930,EA063,9,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA063,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA063,NA,,,, +Eh2,,1900,EA063,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA063,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA063,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA063,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA063,NA,,,, +Eh7,,1900,EA063,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA063,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,1930,EA063,9,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA063,9,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA063,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA063,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA063,NA,,,, +Ei13,,1910,EA063,9,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA063,9,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA063,NA,,,, +Ei16,,1910,EA063,9,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA063,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA063,10,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,1940,EA063,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA063,9,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA063,NA,,,, +Ei3,Nondwin Village,1950,EA063,3,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA063,9,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA063,10,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA063,10,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA063,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA063,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA063,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA063,9,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA063,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA063,NA,,,, +Ej12,,1960,EA063,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA063,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA063,9,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA063,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA063,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA063,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA063,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA063,9,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA063,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,of the Mergui Archipelago,1920,EA063,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA063,9,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA063,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA063,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA063,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA063,10,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA063,9,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA063,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA063,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA063,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA063,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA063,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA063,NA,,,, +Ia18,,,EA063,NA,,,, +Ia2,,1950,EA063,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA063,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,with special reference to the Eastern Subanun,1950,EA063,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p92, +Ia5,,1950,EA063,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA063,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA063,9,,fox1954,EthnographicAtlas_1967_p92, +Ia8,,,EA063,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA063,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA063,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA063,10,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA063,10,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,,,EA063,NA,,,, +Ib5,with special reference to the village of Sensuron,1920,EA063,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,1920,EA063,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA063,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,,,EA063,NA,,,, +Ib9,,,EA063,NA,,,, +Ic1,Borongloe,1940,EA063,9,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA063,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,,,EA063,NA,,,, +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA063,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA063,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA063,10,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,,,EA063,NA,,,, +Ic4,,,EA063,NA,,,, +Ic5,,,EA063,NA,,,, +Ic6,,1930,EA063,9,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,,,EA063,NA,,,, +Ic8,,,EA063,NA,,,, +Ic9,,,EA063,NA,,,, +Id1,Alice Springs and environs,1900,EA063,10,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA063,10,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA063,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA063,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA063,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA063,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA063,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA063,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA063,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA063,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA063,9,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA063,9,,roth1890,EthnographicAtlas_1967_p96, +Id9,,,EA063,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA063,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA063,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA063,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA063,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA063,9,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA063,9,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,,,EA063,NA,,,, +Ie16,,1940,EA063,9,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA063,10,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA063,9,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA063,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA063,10,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA063,9,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA063,9,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA063,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA063,9,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,,EA063,NA,,,, +Ie25,,1920,EA063,9,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,,EA063,NA,,,, +Ie27,,1910,EA063,9,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,1940,EA063,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA063,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA063,10,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA063,9,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,,EA063,NA,,,, +Ie32,,1964,EA063,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA063,NA,,,, +Ie34,,,EA063,NA,,,, +Ie35,,1930,EA063,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA063,NA,,,, +Ie37,,,EA063,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA063,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA063,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA063,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA063,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA063,9,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA063,10,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA063,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA063,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA063,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA063,NA,,,, +If11,,1860,EA063,9,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA063,9,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA063,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA063,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA063,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA063,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA063,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA063,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA063,9,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA063,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA063,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA063,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA063,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA063,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA063,9,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA063,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA063,10,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA063,9,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,,,EA063,NA,,,, +Ig13,,1900,EA063,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,1900,EA063,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA063,NA,,,, +Ig16,,,EA063,NA,,,, +Ig17,,,EA063,NA,,,, +Ig18,,,EA063,NA,,,, +Ig19,,,EA063,NA,,,, +Ig2,Kiriwina Island,1910,EA063,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA063,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA063,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA063,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA063,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA063,9,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA063,9,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA063,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA063,NA,,,, +Ig9,Peri Village,1920,EA063,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA063,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,,,EA063,NA,,,, +Ih11,,,EA063,NA,,,, +Ih12,,,EA063,NA,,,, +Ih13,,,EA063,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA063,10,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA063,9,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA063,NA,,,, +Ih4,Lau Island,1920,EA063,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA063,NA,,,, +Ih6,,1890,EA063,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA063,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA063,9,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA063,9,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA063,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA063,NA,,,, +Ii12,Pangai,1920,EA063,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA063,9,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA063,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA063,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA063,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA063,9,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA063,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA063,9,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA063,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA063,9,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA063,9,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA063,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA063,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA063,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA063,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA063,9,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA063,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA063,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA063,9,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA063,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA063,9,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA063,9,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA063,9,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA063,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA063,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA063,9,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA063,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA063,9,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA063,9,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA063,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA063,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA063,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA063,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA063,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA063,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA063,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA063,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA063,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA063,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA063,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA063,9,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,,EA063,NA,,,, +Na3,Coronation Gulf,1920,EA063,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA063,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA063,9,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA063,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA063,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA063,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA063,9,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA063,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA063,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA063,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA063,9,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA063,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA063,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA063,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,,,EA063,NA,,,, +Na43,,1920,EA063,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA063,NA,,,, +Na45,,1900,EA063,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,,,EA063,NA,,,, +Na6,,1930,EA063,9,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA063,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA063,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA063,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA063,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA063,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA063,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA063,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA063,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA063,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA063,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA063,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA063,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA063,9,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA063,9,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA063,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA063,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,,EA063,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA063,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA063,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA063,9,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA063,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA063,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA063,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA063,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,,EA063,NA,,,, +Nb3,,1890,EA063,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,,EA063,NA,,,, +Nb31,,1870,EA063,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA063,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA063,9,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA063,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA063,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA063,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA063,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA063,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA063,9,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA063,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA063,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA063,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA063,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA063,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA063,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA063,9,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA063,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA063,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA063,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA063,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA063,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA063,9,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA063,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA063,9,Essene reports that women engage in fishing,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA063,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,,,EA063,NA,,,, +Nc2,,1850,EA063,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA063,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,,EA063,NA,,,, +Nc22,,,EA063,NA,,,, +Nc23,,,EA063,NA,,,, +Nc24,,,EA063,NA,,,, +Nc25,,1860,EA063,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,,EA063,NA,,,, +Nc27,,,EA063,NA,,,, +Nc28,,,EA063,NA,,,, +Nc29,,,EA063,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA063,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,,EA063,NA,,,, +Nc31,with special reference to the Desert Cahuilla,1870,EA063,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,,EA063,NA,,,, +Nc33,,,EA063,NA,,,, +Nc34,,,EA063,NA,,,, +Nc4,,1860,EA063,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,,,EA063,NA,,,, +Nc6,with special reference to the Southern Diegueno,1850,EA063,10,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA063,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA063,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA063,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA063,9,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA063,9,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA063,9,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA063,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA063,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA063,9,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA063,9,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA063,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA063,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA063,9,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA063,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA063,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA063,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA063,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA063,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA063,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA063,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA063,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA063,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA063,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA063,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA063,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA063,10,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA063,9,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA063,10,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA063,10,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA063,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA063,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA063,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA063,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA063,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA063,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA063,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA063,9,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,,EA063,NA,,,, +Nd41,,,EA063,NA,,,, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA063,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA063,9,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA063,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA063,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA063,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA063,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,,,EA063,NA,,,, +Nd49,,,EA063,NA,,,, +Nd5,,,EA063,NA,,,, +Nd50,,,EA063,NA,,,, +Nd51,,,EA063,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA063,10,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA063,10,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA063,10,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA063,10,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA063,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,,EA063,NA,,,, +Nd58,,1860,EA063,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,,EA063,NA,,,, +Nd6,,1850,EA063,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,,EA063,NA,,,, +Nd61,,,EA063,NA,,,, +Nd62,,1860,EA063,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA063,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA063,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA063,10,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA063,10,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA063,10,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA063,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA063,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA063,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA063,10,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA063,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA063,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA063,10,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA063,10,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA063,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,,,EA063,NA,,,, +Ne16,,1800,EA063,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA063,10,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA063,10,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA063,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA063,10,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA063,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA063,NA,,,, +Ne3,Comanche Tribe,1870,EA063,10,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA063,10,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA063,10,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA063,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA063,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA063,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA063,10,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,,EA063,NA,,,, +Nf11,,1870,EA063,9,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA063,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,,,EA063,NA,,,, +Nf14,,,EA063,NA,,,, +Nf15,,,EA063,NA,,,, +Nf2,,1850,EA063,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA063,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,,EA063,NA,,,, +Nf5,,1860,EA063,10,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,,,EA063,NA,,,, +Nf7,,,EA063,NA,,,, +Nf8,,,EA063,NA,,,, +Nf9,,1870,EA063,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA063,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA063,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA063,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,,EA063,NA,,,, +Ng13,,,EA063,NA,,,, +Ng14,,,EA063,NA,,,, +Ng15,,,EA063,NA,,,, +Ng2,,,EA063,NA,,,, +Ng3,Upper division in Alabama,1750,EA063,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA063,NA,,,, +Ng5,,1750,EA063,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA063,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA063,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,,EA063,NA,,,, +Ng9,,,EA063,NA,,,, +Nh1,Central band,1880,EA063,10,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,1920,EA063,10,,parsons1932a; trager1943,EthnographicAtlas_1967_p116, +Nh11,,,EA063,NA,,,, +Nh12,,1920,EA063,10,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA063,10,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA063,NA,,,, +Nh15,,,EA063,NA,,,, +Nh16,,,EA063,NA,,,, +Nh17,,1870,EA063,10,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA063,10,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,,EA063,NA,,,, +Nh2,,1950,EA063,10,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,,EA063,NA,,,, +Nh21,,,EA063,NA,,,, +Nh22,,,EA063,NA,,,, +Nh23,,1870,EA063,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA063,10,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA063,10,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA063,NA,,,, +Nh27,,,EA063,NA,,,, +Nh3,,1930,EA063,10,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA063,10,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA063,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA063,10,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA063,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA063,10,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,1920,EA063,10,,parsons1939; trager1943,EthnographicAtlas_1967_p116, +Ni1,,1930,EA063,10,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA063,10,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA063,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,,EA063,NA,,,, +Ni5,,,EA063,NA,,,, +Ni6,,,EA063,NA,,,, +Ni7,,1870,EA063,9,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA063,NA,,,, +Ni9,,,EA063,NA,,,, +Nj1,Ojitlan,1940,EA063,10,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA063,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA063,NA,,,, +Nj12,,,EA063,NA,,,, +Nj13,,,EA063,NA,,,, +Nj14,,,EA063,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA063,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA063,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA063,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA063,NA,,,, +Nj6,,,EA063,NA,,,, +Nj7,with special reference to Ayutla,1930,EA063,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA063,NA,,,, +Nj9,,1960,EA063,10,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA063,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA063,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA063,NA,,,, +Sa12,,1948,EA063,9,,stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA063,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA063,NA,,,, +Sa15,,,EA063,NA,,,, +Sa16,,,EA063,NA,,,, +Sa17,,,EA063,NA,,,, +Sa2,,,EA063,NA,,,, +Sa3,,1930,EA063,9,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA063,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA063,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA063,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA063,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,,,EA063,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA063,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA063,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA063,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA063,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA063,10,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA063,NA,,,, +Sb6,Goajiro Tribe,1940,EA063,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA063,9,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA063,9,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA063,10,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA063,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,,EA063,NA,,,, +Sc11,,1930,EA063,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA063,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA063,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA063,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,,EA063,NA,,,, +Sc16,with special reference to the Makitare,1920,EA063,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA063,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA063,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA063,9,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA063,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA063,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA063,9,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA063,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA063,9,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA063,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA063,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA063,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA063,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA063,9,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA063,9,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA063,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA063,9,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA063,9,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,,EA063,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA063,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA063,9,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA063,NA,,,, +Se11,,1960,EA063,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA063,NA,,,, +Se2,,1940,EA063,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA063,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA063,9,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA063,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA063,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA063,NA,,,, +Se8,Upper Inuya River,1950,EA063,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA063,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA063,10,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA063,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA063,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA063,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA063,10,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,,EA063,NA,,,, +Sf7,,1900,EA063,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA063,NA,,,, +Sf9,,,EA063,NA,,,, +Sg1,Eastern and central,1870,EA063,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA063,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA063,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,,,EA063,NA,,,, +Sg5,with special reference to the southern bands,1900,EA063,9,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA063,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA063,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA063,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA063,9,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA063,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,,EA063,NA,,,, +Sh7,,1900,EA063,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA063,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA063,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA063,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA063,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA063,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA063,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA063,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA063,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA063,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,,,EA063,NA,,,, +Si8,,1940,EA063,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA063,NA,,,, +Sj1,,,EA063,NA,,,, +Sj10,Taquapiri,1950,EA063,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA063,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA063,9,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA063,10,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA063,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA063,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,,,EA063,NA,,,, +Sj7,,1920,EA063,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA063,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA063,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA063,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA063,10,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA063,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA063,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA063,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA063,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA063,3,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA063,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA063,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA063,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA063,10,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA063,10,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA063,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA063,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA063,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA063,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA063,3,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA063,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA063,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA063,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA063,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA063,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA063,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA063,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA063,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA063,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA063,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA064,10,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA064,10,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA064,9,Women milk and children do most of the herding,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA064,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA064,10,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,1920,EA064,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p64, +Aa7,,1910,EA064,10,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA064,10,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA064,10,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA064,9,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA064,9,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA064,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA064,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA064,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA064,9,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA064,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA064,1,,earthy1933,EthnographicAtlas_1967_p64, +Ab17,,,EA064,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA064,9,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA064,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA064,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA064,NA,,,, +Ab21a,,,EA064,NA,,,, +Ab21b,,,EA064,NA,,,, +Ab22,,,EA064,NA,,,, +Ab3,Ruling Luyana,1890,EA064,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA064,9,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA064,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA064,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA064,9,,langandtastevin1937,EthnographicAtlas_1967_p64, +Ab8,Basuto,1860,EA064,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA064,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA064,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA064,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,,EA064,NA,,,, +Ac12,,,EA064,NA,,,, +Ac13,,,EA064,NA,,,, +Ac14,,,EA064,NA,,,, +Ac15,,,EA064,NA,,,, +Ac16,,,EA064,NA,,,, +Ac17,,,EA064,NA,,,, +Ac18,,1910,EA064,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA064,NA,,,, +Ac2,,,EA064,NA,,,, +Ac20,,,EA064,NA,,,, +Ac21,,,EA064,NA,,,, +Ac22,,1930,EA064,9,,mertens1935,EthnographicAtlas_1967_p64, +Ac23,,,EA064,NA,,,, +Ac24,,,EA064,NA,,,, +Ac25,,,EA064,NA,,,, +Ac26,,,EA064,NA,,,, +Ac27,,,EA064,NA,,,, +Ac28,,,EA064,NA,,,, +Ac29,,,EA064,NA,,,, +Ac3,,,EA064,NA,,,, +Ac30,,1940,EA064,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,,EA064,NA,,,, +Ac32,,,EA064,NA,,,, +Ac33,,1940,EA064,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,,EA064,NA,,,, +Ac35,,,EA064,NA,,,, +Ac36,,,EA064,NA,,,, +Ac37,,,EA064,NA,,,, +Ac38,,,EA064,NA,,,, +Ac39,,,EA064,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA064,10,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA064,NA,,,, +Ac41,,,EA064,NA,,,, +Ac42,,,EA064,NA,,,, +Ac43,,,EA064,NA,,,, +Ac5,,1920,EA064,10,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,,EA064,NA,,,, +Ac7,,,EA064,NA,,,, +Ac8,,,EA064,NA,,,, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA064,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA064,9,,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA064,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA064,9,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA064,NA,,,, +Ad13,,1930,EA064,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,,,EA064,NA,,,, +Ad15,,1900,EA064,9,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p68, +Ad16,,1920,EA064,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA064,9,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA064,NA,,,, +Ad19,,1910,EA064,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA064,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA064,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,1930,EA064,9,,maurice193538,EthnographicAtlas_1967_p68, +Ad22,,1950,EA064,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA064,NA,,,, +Ad24,,1910,EA064,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA064,NA,,,, +Ad26,,1910,EA064,9,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,,EA064,NA,,,, +Ad28,,,EA064,NA,,,, +Ad29,,1930,EA064,9,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA064,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA064,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,1910,EA064,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA064,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p68, +Ad33,,1900,EA064,10,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,1910,EA064,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA064,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA064,NA,,,, +Ad37,,,EA064,NA,,,, +Ad38,,,EA064,NA,,,, +Ad39,,1950,EA064,9,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA064,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA064,NA,,,, +Ad41,,1930,EA064,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,1900,EA064,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p68, +Ad43,,,EA064,NA,,,, +Ad44,,1920,EA064,9,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,1920,EA064,9,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,1950,EA064,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA064,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA064,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA064,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA064,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA064,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,,EA064,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA064,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA064,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA064,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,1900,EA064,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA064,9,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA064,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,,EA064,NA,,,, +Ae12,,,EA064,NA,,,, +Ae13,,,EA064,NA,,,, +Ae14,,1950,EA064,9,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,1940,EA064,9,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p68, +Ae16,,,EA064,NA,,,, +Ae17,,,EA064,NA,,,, +Ae18,,1900,EA064,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA064,NA,,,, +Ae2,,1950,EA064,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA064,NA,,,, +Ae21,,,EA064,NA,,,, +Ae22,,,EA064,NA,,,, +Ae23,,,EA064,NA,,,, +Ae24,,,EA064,NA,,,, +Ae25,,,EA064,NA,,,, +Ae26,,,EA064,NA,,,, +Ae27,,,EA064,NA,,,, +Ae28,,,EA064,NA,,,, +Ae29,,,EA064,NA,,,, +Ae3,,1910,EA064,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA064,NA,,,, +Ae31,,,EA064,NA,,,, +Ae32,,,EA064,NA,,,, +Ae33,,,EA064,NA,,,, +Ae34,,,EA064,NA,,,, +Ae35,,,EA064,NA,,,, +Ae36,,,EA064,NA,,,, +Ae37,,,EA064,NA,,,, +Ae38,,,EA064,NA,,,, +Ae39,,1920,EA064,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA064,10,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA064,NA,,,, +Ae41,,,EA064,NA,,,, +Ae42,,,EA064,NA,,,, +Ae43,,,EA064,NA,,,, +Ae44,,,EA064,NA,,,, +Ae45,,,EA064,NA,,,, +Ae46,,,EA064,NA,,,, +Ae47,,,EA064,NA,,,, +Ae48,,,EA064,NA,,,, +Ae49,,,EA064,NA,,,, +Ae5,,,EA064,NA,,,, +Ae50,,1920,EA064,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA064,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,,EA064,NA,,,, +Ae53,,,EA064,NA,,,, +Ae54,,,EA064,NA,,,, +Ae55,,,EA064,NA,,,, +Ae56,,,EA064,NA,,,, +Ae57,,,EA064,NA,,,, +Ae58,,,EA064,NA,,,, +Ae59,,,EA064,NA,,,, +Ae6,,,EA064,NA,,,, +Ae7,,,EA064,NA,,,, +Ae8,,1910,EA064,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,,EA064,NA,,,, +Af1,City and environs of Abomey,1890,EA064,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA064,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,,EA064,NA,,,, +Af12,,,EA064,NA,,,, +Af13,,,EA064,NA,,,, +Af14,,,EA064,NA,,,, +Af15,,,EA064,NA,,,, +Af16,,,EA064,NA,,,, +Af17,,,EA064,NA,,,, +Af18,,,EA064,NA,,,, +Af19,,1950,EA064,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p72, +Af2,,1950,EA064,9,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA064,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA064,NA,,,, +Af22,,,EA064,NA,,,, +Af23,,,EA064,NA,,,, +Af24,,,EA064,NA,,,, +Af25,,,EA064,NA,,,, +Af26,,,EA064,NA,,,, +Af27,,,EA064,NA,,,, +Af28,,,EA064,NA,,,, +Af29,,,EA064,NA,,,, +Af3,,,EA064,NA,,,, +Af30,,,EA064,NA,,,, +Af31,,,EA064,NA,,,, +Af32,Abeouta Province and Benin,1920,EA064,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,,,EA064,NA,,,, +Af34,,,EA064,NA,,,, +Af35,,,EA064,NA,,,, +Af36,,,EA064,NA,,,, +Af37,,,EA064,NA,,,, +Af38,,,EA064,NA,,,, +Af39,,,EA064,NA,,,, +Af4,,1930,EA064,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA064,NA,,,, +Af41,,,EA064,NA,,,, +Af42,,,EA064,NA,,,, +Af43,,,EA064,NA,,,, +Af44,,,EA064,NA,,,, +Af45,,,EA064,NA,,,, +Af46,,,EA064,NA,,,, +Af47,,,EA064,NA,,,, +Af48,,,EA064,NA,,,, +Af49,,,EA064,NA,,,, +Af5,,,EA064,NA,,,, +Af50,,,EA064,NA,,,, +Af51,,,EA064,NA,,,, +Af52,,1920,EA064,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA064,NA,,,, +Af54,,,EA064,NA,,,, +Af55,,,EA064,NA,,,, +Af56,,,EA064,NA,,,, +Af57,,,EA064,NA,,,, +Af58,,,EA064,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA064,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,,EA064,NA,,,, +Af8,,1930,EA064,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,,EA064,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA064,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA064,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA064,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA064,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,,EA064,NA,,,, +Ag14,,,EA064,NA,,,, +Ag15,,,EA064,NA,,,, +Ag16,,1930,EA064,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p72, +Ag17,,,EA064,NA,,,, +Ag18,,,EA064,NA,,,, +Ag19,with special reference to the Felup,1930,EA064,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p72, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA064,1,"Boys herd all animals except cattle, which are herded and milked exclusively by Fulani",hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA064,NA,,,, +Ag21,,1910,EA064,9,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,with special reference to those of Sine,1920,EA064,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA064,NA,,,, +Ag24,,,EA064,NA,,,, +Ag25,,1900,EA064,NA,Cattle are herded and milked exclusively by Fulani,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p72, +Ag26,,1930,EA064,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p72, +Ag27,,,EA064,NA,,,, +Ag28,,,EA064,NA,,,, +Ag29,,,EA064,NA,,,, +Ag3,,1930,EA064,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,,EA064,NA,,,, +Ag31,,,EA064,NA,,,, +Ag32,,,EA064,NA,,,, +Ag33,,,EA064,NA,,,, +Ag34,,,EA064,NA,,,, +Ag35,,,EA064,NA,,,, +Ag36,,,EA064,NA,,,, +Ag37,,,EA064,NA,,,, +Ag38,,,EA064,NA,,,, +Ag39,,,EA064,NA,,,, +Ag4,Tallensi Tribe,1930,EA064,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA064,NA,,,, +Ag41,,,EA064,NA,,,, +Ag42,,,EA064,NA,,,, +Ag43,,,EA064,NA,,,, +Ag44,,,EA064,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA064,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA064,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA064,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,,EA064,NA,,,, +Ag49,,,EA064,NA,,,, +Ag5,,1930,EA064,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,,EA064,NA,,,, +Ag51,,,EA064,NA,,,, +Ag52,,,EA064,NA,,,, +Ag53,,,EA064,NA,,,, +Ag54,,1910,EA064,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA064,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,1930,EA064,10,,malzy1946; ortoli1939,EthnographicAtlas_1967_p72, +Ag8,with special reference to the Coniagui,1910,EA064,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA064,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,Zaria Province,1930,EA064,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA064,NA,,,, +Ah11,,1950,EA064,9,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA064,NA,,,, +Ah13,,,EA064,NA,,,, +Ah14,,,EA064,NA,,,, +Ah15,,,EA064,NA,,,, +Ah16,,,EA064,NA,,,, +Ah17,,,EA064,NA,,,, +Ah18,,,EA064,NA,,,, +Ah19,,1930,EA064,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p76, +Ah2,,1920,EA064,1,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,1920,EA064,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA064,NA,,,, +Ah22,,,EA064,NA,,,, +Ah23,,,EA064,NA,,,, +Ah24,,,EA064,NA,,,, +Ah25,,,EA064,NA,,,, +Ah26,,,EA064,NA,,,, +Ah27,,,EA064,NA,,,, +Ah28,,,EA064,NA,,,, +Ah29,,,EA064,NA,,,, +Ah3,,,EA064,NA,,,, +Ah30,,1920,EA064,9,,meek1931b,EthnographicAtlas_1967_p76, +Ah31,,,EA064,NA,,,, +Ah32,,,EA064,NA,,,, +Ah33,,,EA064,NA,,,, +Ah34,,,EA064,NA,,,, +Ah35,,,EA064,NA,,,, +Ah36,,,EA064,NA,,,, +Ah37,,,EA064,NA,,,, +Ah38,,,EA064,NA,,,, +Ah39,,1950,EA064,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,,EA064,NA,,,, +Ah5,,,EA064,NA,,,, +Ah6,,,EA064,NA,,,, +Ah7,,,EA064,NA,,,, +Ah8,,1910,EA064,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA064,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,,EA064,NA,,,, +Ai10,Nuba Hills,1940,EA064,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,,EA064,NA,,,, +Ai12,,1950,EA064,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p76, +Ai13,,,EA064,NA,,,, +Ai14,,,EA064,NA,,,, +Ai15,,,EA064,NA,,,, +Ai16,,,EA064,NA,,,, +Ai17,,1930,EA064,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,,EA064,NA,,,, +Ai19,,,EA064,NA,,,, +Ai2,,,EA064,NA,,,, +Ai20,,,EA064,NA,,,, +Ai21,,,EA064,NA,,,, +Ai22,,,EA064,NA,,,, +Ai23,,,EA064,NA,,,, +Ai24,,,EA064,NA,,,, +Ai25,,,EA064,NA,,,, +Ai26,,,EA064,NA,,,, +Ai27,,,EA064,NA,,,, +Ai28,,,EA064,NA,,,, +Ai29,,1920,EA064,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA064,10,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,,EA064,NA,,,, +Ai31,,1920,EA064,9,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA064,9,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p76, +Ai33,,1940,EA064,9,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p76, +Ai34,,1880,EA064,9,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,,EA064,NA,,,, +Ai36,,1920,EA064,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA064,NA,,,, +Ai38,,1930,EA064,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA064,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA064,NA,,,, +Ai40,,1940,EA064,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA064,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA064,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA064,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,,EA064,NA,,,, +Ai45,,,EA064,NA,,,, +Ai46,,,EA064,NA,,,, +Ai47,,,EA064,NA,,,, +Ai5,,,EA064,NA,,,, +Ai6,Shilluk Kingdom,1900,EA064,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA064,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA064,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA064,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,1950,EA064,9,,lawrance1957,EthnographicAtlas_1967_p76, +Aj10,,,EA064,NA,,,, +Aj11,,1900,EA064,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p80, +Aj12,,1920,EA064,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj13,,1930,EA064,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA064,NA,,,, +Aj15,,1900,EA064,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA064,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA064,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,1950,EA064,9,,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,1920,EA064,9,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p80, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA064,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,1940,EA064,9,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p80, +Aj21,,1930,EA064,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,1930,EA064,9,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA064,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA064,9,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA064,9,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA064,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA064,NA,,,, +Aj28,,1940,EA064,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA064,NA,,,, +Aj3,,1930,EA064,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA064,NA,,,, +Aj31,,,EA064,NA,,,, +Aj4,,1920,EA064,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA064,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA064,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA064,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA064,9,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA064,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA064,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,1880,EA064,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA064,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA064,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA064,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA064,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA064,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA064,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA064,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA064,NA,,,, +Ca19,,1950,EA064,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA064,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA064,NA,,,, +Ca21,,1950,EA064,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA064,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA064,9,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,,EA064,NA,,,, +Ca25,,1950,EA064,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA064,NA,,,, +Ca27,,,EA064,NA,,,, +Ca28,,1950,EA064,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,,EA064,NA,,,, +Ca3,,1950,EA064,9,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p80, +Ca30,Kafa Kingdom,1890,EA064,9,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p80, +Ca31,,1860,EA064,9,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA064,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA064,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA064,NA,,,, +Ca35,,,EA064,NA,,,, +Ca36,,,EA064,NA,,,, +Ca37,,,EA064,NA,,,, +Ca38,,,EA064,NA,,,, +Ca39,,1930,EA064,9,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,1950,EA064,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA064,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,,EA064,NA,,,, +Ca42,,1950,EA064,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA064,NA,,,, +Ca5,,1930,EA064,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p80, +Ca6,,1880,EA064,9,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p80, +Ca7,Gondar district,1950,EA064,9,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,,EA064,NA,,,, +Ca9,,,EA064,NA,,,, +Cb1,,,EA064,NA,,,, +Cb10,,,EA064,NA,,,, +Cb11,,,EA064,NA,,,, +Cb12,,,EA064,NA,,,, +Cb13,,,EA064,NA,,,, +Cb14,,,EA064,NA,,,, +Cb15,,,EA064,NA,,,, +Cb16,,,EA064,NA,,,, +Cb17,Jebel Marra,1880,EA064,9,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,,EA064,NA,,,, +Cb19,,1870,EA064,9,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p80, +Cb2,Upper and lower Salum in Gambia,1950,EA064,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA064,3,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA064,9,,pfeffer1936,EthnographicAtlas_1967_p84, +Cb22,,,EA064,NA,,,, +Cb23,,1930,EA064,9,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,Wodaabe of Niger,1950,EA064,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p84, +Cb25,,,EA064,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA064,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA064,NA,,,, +Cb28,,,EA064,NA,,,, +Cb29,,,EA064,NA,,,, +Cb3,,,EA064,NA,,,, +Cb4,,1920,EA064,9,,reid1930,EthnographicAtlas_1967_p80, +Cb5,,,EA064,NA,,,, +Cb6,,,EA064,NA,,,, +Cb7,,,EA064,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA064,9,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p80, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA064,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,1950,EA064,9,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA064,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA064,NA,,,, +Cc12,,1944,EA064,9,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA064,NA,,,, +Cc14,,1880,EA064,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA064,NA,,,, +Cc16,,1930,EA064,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA064,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA064,NA,,,, +Cc19,,,EA064,NA,,,, +Cc2,Nomads of Tibesti,1950,EA064,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA064,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA064,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA064,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA064,9,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA064,NA,,,, +Cc7,,,EA064,NA,,,, +Cc8,,,EA064,NA,,,, +Cc9,Ahaggaren tribe,1920,EA064,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA064,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA064,NA,,,, +Cd11,,,EA064,NA,,,, +Cd12,,1870,EA064,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA064,NA,,,, +Cd14,,,EA064,NA,,,, +Cd15,,,EA064,NA,,,, +Cd16,,,EA064,NA,,,, +Cd17,,,EA064,NA,,,, +Cd18,,,EA064,NA,,,, +Cd19,,,EA064,NA,,,, +Cd2,Town and environs of Silwa,1950,EA064,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA064,NA,,,, +Cd21,,,EA064,NA,,,, +Cd3,Entirety: Moroccan,1920,EA064,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,,EA064,NA,,,, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA064,9,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,with special reference to the New Empire,-1400,EA064,9,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA064,NA,,,, +Cd8,,,EA064,NA,,,, +Cd9,,,EA064,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA064,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA064,NA,,,, +Ce3,,,EA064,NA,,,, +Ce4,Labourd,1930,EA064,9,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA064,9,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA064,9,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA064,3,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA064,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA064,9,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA064,NA,,,, +Cf3,,1930,EA064,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA064,9,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA064,9,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA064,9,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA064,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA064,9,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA064,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA064,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA064,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA064,NA,,,, +Ch11,Viriatino Village,1955,EA064,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA064,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA064,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,,EA064,NA,,,, +Ch5,with special reference to the village of Dragelevtsy,1940,EA064,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA064,9,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA064,9,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,,EA064,NA,,,, +Ch9,,1930,EA064,9,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA064,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA064,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA064,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA064,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA064,9,,grigolia1939,EthnographicAtlas_1967_p84, +Ci3,,,EA064,NA,,,, +Ci4,,1920,EA064,9,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA064,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA064,NA,,,, +Ci7,,,EA064,NA,,,, +Ci8,,,EA064,NA,,,, +Ci9,,,EA064,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA064,9,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA064,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA064,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA064,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA064,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA064,9,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA064,NA,,,, +Cj7,,,EA064,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA064,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,1950,EA064,9,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA064,9,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,with special reference to the more nomadic groups,1950,EA064,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA064,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA064,9,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA064,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA064,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA064,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA064,9,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA064,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,Nomadic branch,1958,EA064,9,,barth1961; barth1964,EthnographicAtlas_1967_p88, +Ea7,,1950,EA064,9,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA064,9,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA064,9,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA064,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA064,9,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA064,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA064,NA,,,, +Eb5,,,EA064,NA,,,, +Eb6,,,EA064,NA,,,, +Eb7,,1930,EA064,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA064,NA,,,, +Ec1,Sakhalin Island,1920,EA064,10,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA064,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA064,10,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA064,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA064,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA064,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA064,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,Upper Kolyma River,1850,EA064,10,,jochelson191926,EthnographicAtlas_1967_p88, +Ec7,Saru Basin in Hokkaido,1900,EA064,10,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,1900,EA064,9,,shimkin1939,EthnographicAtlas_1967_p88, +Ec9,,,EA064,NA,,,, +Ed1,Kanghwa Island,1950,EA064,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA064,9,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA064,NA,,,, +Ed14,,,EA064,NA,,,, +Ed15a,,,EA064,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA064,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA064,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA064,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA064,9,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA064,9,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA064,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA064,9,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA064,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,,EA064,NA,,,, +Ed9,,1930,EA064,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA064,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA064,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA064,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA064,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA064,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA064,9,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA064,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA064,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA064,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA064,NA,,,, +Ef11,Village and environs of Senapur,1945,EA064,3,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA064,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA064,NA,,,, +Ef4,,,EA064,NA,,,, +Ef5,,1900,EA064,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA064,9,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA064,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA064,9,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA064,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA064,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA064,9,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA064,NA,,,, +Eg12,,,EA064,NA,,,, +Eg13,Bastar State,1941,EA064,9,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,,,EA064,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA064,9,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA064,9,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA064,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,,EA064,NA,,,, +Eg6,with special reference to Northern Kerala,1799,EA064,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA064,9,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA064,9,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,1930,EA064,10,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA064,10,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA064,NA,,,, +Eh2,,1900,EA064,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA064,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA064,10,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA064,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,,,EA064,NA,,,, +Eh7,,1900,EA064,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA064,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,1930,EA064,9,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA064,9,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA064,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,,EA064,NA,,,, +Ei12,,,EA064,NA,,,, +Ei13,,,EA064,NA,,,, +Ei14,,,EA064,NA,,,, +Ei15,,,EA064,NA,,,, +Ei16,,,EA064,NA,,,, +Ei17,,,EA064,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA064,9,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,,EA064,NA,,,, +Ei2,,1920,EA064,9,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA064,NA,,,, +Ei3,Nondwin Village,1950,EA064,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA064,9,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA064,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA064,9,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,,EA064,NA,,,, +Ei8,with special reference to those of the Jaintia Hills,1900,EA064,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA064,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA064,9,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA064,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,,,EA064,NA,,,, +Ej12,,1960,EA064,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,,EA064,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA064,10,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA064,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA064,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA064,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA064,10,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,,,EA064,NA,,,, +Ej5,,1950,EA064,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,of the Mergui Archipelago,1920,EA064,10,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA064,9,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA064,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA064,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA064,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA064,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA064,9,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,,EA064,NA,,,, +Ia13,,,EA064,NA,,,, +Ia14,,1930,EA064,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA064,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA064,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA064,NA,,,, +Ia18,,,EA064,NA,,,, +Ia2,,1950,EA064,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,,,EA064,NA,,,, +Ia4,,,EA064,NA,,,, +Ia5,,1950,EA064,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA064,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA064,NA,,,, +Ia8,,,EA064,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA064,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA064,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA064,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA064,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA064,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA064,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,,EA064,NA,,,, +Ib7,,,EA064,NA,,,, +Ib8,with special reference to the Ridan group,1900,EA064,10,,hagen1908; schebesta1928,EthnographicAtlas_1967_p96, +Ib9,,,EA064,NA,,,, +Ic1,Borongloe,1940,EA064,9,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA064,NA,,,, +Ic11,,,EA064,NA,,,, +Ic12,,,EA064,NA,,,, +Ic13,,,EA064,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA064,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,with special reference to the Mountain Belu,1950,EA064,9,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA064,NA,,,, +Ic5,,,EA064,NA,,,, +Ic6,,1930,EA064,9,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA064,9,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,,EA064,NA,,,, +Ic9,,,EA064,NA,,,, +Id1,Alice Springs and environs,1900,EA064,10,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA064,10,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA064,10,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA064,10,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA064,10,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA064,10,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA064,10,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA064,10,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA064,10,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA064,10,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA064,10,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA064,10,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA064,10,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA064,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA064,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA064,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA064,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA064,10,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,,EA064,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA064,9,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA064,9,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA064,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,,,EA064,NA,,,, +Ie19,with special reference to the coastal inhabitants,1910,EA064,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA064,9,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,,EA064,NA,,,, +Ie21,,,EA064,NA,,,, +Ie22,,,EA064,NA,,,, +Ie23,,1950,EA064,9,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,,EA064,NA,,,, +Ie25,,1920,EA064,9,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,,EA064,NA,,,, +Ie27,,,EA064,NA,,,, +Ie28,,,EA064,NA,,,, +Ie29,,,EA064,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA064,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA064,10,,pouwer1955,EthnographicAtlas_1967_p100, +Ie31,,,EA064,NA,,,, +Ie32,,1964,EA064,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA064,NA,,,, +Ie34,,,EA064,NA,,,, +Ie35,,1930,EA064,10,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA064,NA,,,, +Ie37,,,EA064,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA064,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA064,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,,,EA064,NA,,,, +Ie5,,1930,EA064,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA064,9,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA064,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA064,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA064,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,,,EA064,NA,,,, +If10,,,EA064,NA,,,, +If11,,,EA064,NA,,,, +If12,,,EA064,NA,,,, +If13,,1900,EA064,10,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA064,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,,EA064,NA,,,, +If16,,1960,EA064,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA064,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA064,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,,,EA064,NA,,,, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA064,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,,EA064,NA,,,, +If6,Island,1910,EA064,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA064,10,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,,,EA064,NA,,,, +If9,,,EA064,NA,,,, +Ig1,Northeastern group,1940,EA064,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA064,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,,EA064,NA,,,, +Ig12,,,EA064,NA,,,, +Ig13,,1900,EA064,10,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,,EA064,NA,,,, +Ig15,,,EA064,NA,,,, +Ig16,,,EA064,NA,,,, +Ig17,,,EA064,NA,,,, +Ig18,,,EA064,NA,,,, +Ig19,,,EA064,NA,,,, +Ig2,Kiriwina Island,1910,EA064,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA064,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA064,NA,,,, +Ig3,,1930,EA064,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA064,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,,EA064,NA,,,, +Ig6,,1900,EA064,9,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA064,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA064,NA,,,, +Ig9,Peri Village,1920,EA064,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,1890,EA064,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p100, +Ih10,,,EA064,NA,,,, +Ih11,,,EA064,NA,,,, +Ih12,,,EA064,NA,,,, +Ih13,,,EA064,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA064,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA064,9,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA064,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p100, +Ih4,Lau Island,1920,EA064,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA064,NA,,,, +Ih6,,,EA064,NA,,,, +Ih7,,,EA064,NA,,,, +Ih8,with special reference to the village of Nakaroka,1940,EA064,9,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA064,9,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA064,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA064,NA,,,, +Ii12,Pangai,1920,EA064,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA064,9,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA064,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA064,10,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA064,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,,,EA064,NA,,,, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA064,10,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA064,10,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,,EA064,NA,,,, +Ii8,,1840,EA064,9,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA064,10,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA064,10,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA064,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA064,10,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA064,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,1850,EA064,10,,buck1932a,EthnographicAtlas_1967_p104, +Ij5,,1900,EA064,10,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,,EA064,NA,,,, +Ij7,,1900,EA064,10,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,,EA064,NA,,,, +Ij9,,1860,EA064,10,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA064,10,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA064,10,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA064,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA064,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA064,10,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA064,10,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA064,10,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA064,10,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA064,10,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA064,10,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA064,10,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA064,10,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA064,10,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA064,10,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA064,10,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA064,10,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA064,10,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA064,10,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA064,10,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA064,10,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA064,10,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA064,10,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA064,10,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA064,10,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA064,10,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA064,10,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA064,10,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA064,10,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA064,10,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA064,10,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA064,10,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA064,10,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA064,10,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA064,10,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA064,10,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA064,10,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA064,10,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA064,NA,,,, +Na45,,1900,EA064,10,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA064,10,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA064,10,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA064,10,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA064,10,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA064,10,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA064,10,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA064,10,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA064,10,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA064,10,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA064,10,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA064,10,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA064,10,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA064,10,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA064,10,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA064,10,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA064,10,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA064,10,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA064,10,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA064,10,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA064,10,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA064,10,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA064,10,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA064,10,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA064,10,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA064,10,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA064,10,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA064,10,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA064,10,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA064,10,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA064,10,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA064,10,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA064,10,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA064,10,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA064,10,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA064,10,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA064,10,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA064,10,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA064,10,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA064,10,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA064,10,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA064,10,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA064,10,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA064,10,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA064,10,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA064,10,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA064,10,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA064,10,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA064,10,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA064,10,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA064,10,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA064,10,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA064,10,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA064,10,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA064,10,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA064,10,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA064,10,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA064,10,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA064,10,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA064,10,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA064,10,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA064,10,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA064,10,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA064,10,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA064,10,,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA064,10,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA064,10,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA064,10,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA064,10,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA064,10,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA064,10,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA064,10,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA064,10,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA064,10,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA064,10,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA064,10,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA064,10,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA064,10,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA064,10,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA064,10,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA064,10,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA064,10,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA064,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA064,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,,EA064,NA,,,, +Nd15,,1880,EA064,10,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,,EA064,NA,,,, +Nd17,,1870,EA064,10,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA064,10,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,,EA064,NA,,,, +Nd2,,1860,EA064,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA064,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA064,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA064,10,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA064,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA064,10,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA064,10,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA064,10,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA064,10,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA064,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA064,10,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA064,10,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,1850,EA064,10,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA064,10,,driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA064,10,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA064,10,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA064,10,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA064,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA064,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA064,10,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA064,10,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA064,10,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA064,10,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA064,10,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA064,10,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA064,10,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA064,10,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA064,10,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,Colorado River Reservation,1860,EA064,10,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p112,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA064,10,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA064,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd57,,,EA064,NA,,,, +Nd58,,,EA064,NA,,,, +Nd59,,1860,EA064,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA064,10,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA064,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA064,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA064,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,,,EA064,NA,,,, +Nd64,with special reference to the Kucundika,1860,EA064,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA064,10,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA064,10,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA064,9,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA064,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA064,10,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA064,10,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA064,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,,EA064,NA,,,, +Ne11,,1870,EA064,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA064,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA064,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA064,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA064,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA064,10,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,,EA064,NA,,,, +Ne18,,1850,EA064,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA064,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA064,9,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,,EA064,NA,,,, +Ne21,,,EA064,NA,,,, +Ne3,Comanche Tribe,1870,EA064,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,1870,EA064,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p112, +Ne5,,1860,EA064,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA064,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA064,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA064,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA064,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,1870,EA064,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p116, +Nf11,,1870,EA064,9,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA064,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA064,10,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA064,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA064,NA,,,, +Nf2,,1850,EA064,10,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA064,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA064,10,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA064,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA064,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA064,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA064,10,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA064,10,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA064,10,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA064,10,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA064,10,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA064,10,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA064,NA,,,, +Ng14,,,EA064,NA,,,, +Ng15,,,EA064,NA,,,, +Ng2,,,EA064,NA,,,, +Ng3,Upper division in Alabama,1750,EA064,10,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA064,NA,,,, +Ng5,,1750,EA064,10,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA064,10,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA064,10,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA064,10,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA064,NA,,,, +Nh1,Central band,1880,EA064,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA064,NA,,,, +Nh11,,,EA064,NA,,,, +Nh12,,,EA064,NA,,,, +Nh13,,,EA064,NA,,,, +Nh14,,,EA064,NA,,,, +Nh15,,1870,EA064,10,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,,,EA064,NA,,,, +Nh17,,1870,EA064,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA064,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA064,10,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA064,9,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA064,10,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA064,10,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA064,10,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA064,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,,EA064,NA,,,, +Nh25,,,EA064,NA,,,, +Nh26,,,EA064,NA,,,, +Nh27,,,EA064,NA,,,, +Nh3,,1930,EA064,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,,,EA064,NA,,,, +Nh5,,1850,EA064,10,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA064,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,,EA064,NA,,,, +Nh8,,,EA064,NA,,,, +Nh9,,,EA064,NA,,,, +Ni1,,1930,EA064,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA064,10,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA064,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA064,10,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA064,10,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA064,10,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA064,10,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA064,NA,,,, +Ni9,,,EA064,NA,,,, +Nj1,Ojitlan,1940,EA064,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA064,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA064,NA,,,, +Nj12,,,EA064,NA,,,, +Nj13,,,EA064,NA,,,, +Nj14,,,EA064,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA064,10,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,,,EA064,NA,,,, +Nj4,,1940,EA064,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA064,NA,,,, +Nj6,,,EA064,NA,,,, +Nj7,with special reference to Ayutla,1930,EA064,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA064,10,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA064,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA064,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,,EA064,NA,,,, +Sa11,,,EA064,NA,,,, +Sa12,,,EA064,NA,,,, +Sa13,Town of Chichicastenango,1930,EA064,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA064,NA,,,, +Sa15,,,EA064,NA,,,, +Sa16,,,EA064,NA,,,, +Sa17,,,EA064,NA,,,, +Sa2,,,EA064,NA,,,, +Sa3,,1930,EA064,9,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA064,10,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,,EA064,NA,,,, +Sa6,,1520,EA064,10,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA064,10,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA064,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p120, +Sa9,,,EA064,NA,,,, +Sb1,Dominica Island,1650,EA064,10,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,,EA064,NA,,,, +Sb3,,,EA064,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA064,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA064,10,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p120, +Sb6,Goajiro Tribe,1940,EA064,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA064,10,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA064,10,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA064,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA064,10,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA064,10,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA064,10,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA064,10,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA064,10,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA064,10,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA064,10,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA064,10,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA064,10,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA064,10,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA064,9,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA064,10,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA064,10,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA064,10,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA064,10,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA064,10,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA064,10,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA064,10,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA064,10,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA064,10,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA064,10,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA064,10,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA064,10,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA064,10,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA064,10,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,1950,EA064,10,,wilbert1963,EthnographicAtlas_1967_p120, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA064,10,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA064,10,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,1670,EA064,10,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p120, +Se11,,1960,EA064,10,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA064,NA,,,, +Se2,,1940,EA064,10,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA064,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA064,10,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA064,10,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA064,10,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA064,NA,,,, +Se8,Upper Inuya River,1950,EA064,10,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA064,10,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA064,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA064,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,,,EA064,NA,,,, +Sf4,,1950,EA064,10,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA064,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA064,10,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA064,10,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA064,NA,,,, +Sf9,,,EA064,NA,,,, +Sg1,Eastern and central,1870,EA064,10,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA064,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA064,10,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA064,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA064,10,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA064,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,,EA064,NA,,,, +Sh3,Those in contact with mission,1800,EA064,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA064,9,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA064,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA064,10,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA064,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,,,EA064,NA,,,, +Sh9,Those in contact with mission,1890,EA064,10,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA064,10,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA064,10,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA064,10,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA064,10,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA064,10,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA064,10,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,1900,EA064,10,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p124, +Si7,,,EA064,NA,,,, +Si8,,1940,EA064,10,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA064,NA,,,, +Sj1,,1950,EA064,10,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA064,10,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA064,10,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA064,10,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA064,10,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA064,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA064,10,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,,,EA064,NA,,,, +Sj7,,1920,EA064,10,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA064,10,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA064,10,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA064,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA064,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA064,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA064,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA064,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA064,3,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA064,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA064,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA064,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA064,9,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA064,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA064,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA064,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA064,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA064,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA064,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA064,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA064,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA064,10,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA064,10,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA064,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA064,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA064,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA064,10,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA064,10,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA064,10,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA064,10,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA065,10,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p64, +Aa2,with special reference to Central Dorobo,1920,EA065,10,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p64, +Aa3,Gei/Khauan tribe,1840,EA065,10,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p64, +Aa4,,,EA065,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA065,10,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p64, +Aa6,,1920,EA065,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p64, +Aa7,,1910,EA065,10,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p64, +Aa8,,1850,EA065,10,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA065,10,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p64, +Ab1,,1900,EA065,10,,irle1906; vedder1928,EthnographicAtlas_1967_p64, +Ab10,,1936,EA065,9,,hunter1936,EthnographicAtlas_1967_p64, +Ab11,,1850,EA065,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA065,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p64, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA065,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p64, +Ab14,,1930,EA065,9,,krigeandkrige1943,EthnographicAtlas_1967_p64, +Ab15,,1860,EA065,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA065,9,,earthy1933,EthnographicAtlas_1967_p64, +Ab17,,,EA065,NA,,,, +Ab18,with special reference to the Zezuru,1920,EA065,9,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p64, +Ab19,with special reference to the Kuanyama,1910,EA065,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p64, +Ab2,,1880,EA065,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p64, +Ab20,,,EA065,NA,,,, +Ab21a,,,EA065,NA,,,, +Ab21b,,,EA065,NA,,,, +Ab22,,,EA065,NA,,,, +Ab3,Ruling Luyana,1890,EA065,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p64, +Ab4,,1920,EA065,9,,junod1927,EthnographicAtlas_1967_p64, +Ab5,,1930,EA065,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p64, +Ab6,,1900,EA065,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p64, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA065,9,,langandtastevin1937,EthnographicAtlas_1967_p64, +Ab8,Basuto,1860,EA065,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p64, +Ab9,,1870,EA065,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p64, +Ac1,,1920,EA065,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p64, +Ac10,,1920,EA065,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p64, +Ac11,,1930,EA065,9,,mcculloch1951; white1955,EthnographicAtlas_1967_p64, +Ac12,,1920,EA065,9,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p64, +Ac13,,1950,EA065,9,,tew1950; velsen1964,EthnographicAtlas_1967_p64, +Ac14,,1900,EA065,9,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p64, +Ac15,,,EA065,NA,,,, +Ac16,,,EA065,NA,,,, +Ac17,Feshi territory lineage center,1910,EA065,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p64, +Ac18,,1910,EA065,9,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p64, +Ac19,,,EA065,NA,,,, +Ac2,,1920,EA065,9,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p64, +Ac20,,,EA065,NA,,,, +Ac21,,1910,EA065,9,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p64, +Ac22,,1930,EA065,9,,mertens1935,EthnographicAtlas_1967_p64, +Ac23,with special reference to the western Lele,1950,EA065,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p64, +Ac24,,,EA065,NA,,,, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA065,9,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p64, +Ac26,,,EA065,NA,,,, +Ac27,,,EA065,NA,,,, +Ac28,,1930,EA065,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p64, +Ac29,,,EA065,NA,,,, +Ac3,Zambia branch,1900,EA065,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p64, +Ac30,,1940,EA065,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p64, +Ac31,,1910,EA065,9,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,,EA065,NA,,,, +Ac33,,1940,EA065,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p64, +Ac34,,1940,EA065,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p64, +Ac35,,,EA065,NA,,,, +Ac36,,1920,EA065,9,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p64, +Ac37,,,EA065,NA,,,, +Ac38,,1910,EA065,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p64, +Ac39,,1920,EA065,9,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA065,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p64, +Ac40,,,EA065,NA,,,, +Ac41,,,EA065,NA,,,, +Ac42,,,EA065,NA,,,, +Ac43,,,EA065,NA,,,, +Ac5,,1920,EA065,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p64, +Ac6,,1930,EA065,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p64, +Ac7,,1920,EA065,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p64, +Ac8,,1930,EA065,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p64, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA065,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p64, +Ad1,,1950,EA065,9,,grottanelli1955,EthnographicAtlas_1967_p64, +Ad10,,1910,EA065,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p68, +Ad11,,1930,EA065,9,,culwickandculwick1935,EthnographicAtlas_1967_p68, +Ad12,,,EA065,NA,,,, +Ad13,,1930,EA065,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p68, +Ad14,Morogoro District,1930,EA065,9,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p68, +Ad15,,1900,EA065,9,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p68, +Ad16,,1920,EA065,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p68, +Ad17,,1920,EA065,9,,kootzkretschmer192629,EthnographicAtlas_1967_p68, +Ad18,,,EA065,NA,,,, +Ad19,,1910,EA065,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p68, +Ad2,,1950,EA065,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p64, +Ad20,,1920,EA065,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p68, +Ad21,,1930,EA065,9,,maurice193538,EthnographicAtlas_1967_p68, +Ad22,,1950,EA065,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p68, +Ad23,,,EA065,NA,,,, +Ad24,,1910,EA065,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p68, +Ad25,,,EA065,NA,,,, +Ad26,,1910,EA065,9,,sick1916,EthnographicAtlas_1967_p68, +Ad27,,1880,EA065,9,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA065,9,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA065,9,,ingrams1930; prins1961,EthnographicAtlas_1967_p68, +Ad3,,1910,EA065,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p64, +Ad30,,1890,EA065,9,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p68, +Ad31,,1910,EA065,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA065,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p68, +Ad33,,1900,EA065,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p68, +Ad34,,1910,EA065,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA065,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p68, +Ad36,,,EA065,NA,,,, +Ad37,,,EA065,NA,,,, +Ad38,,,EA065,NA,,,, +Ad39,,1950,EA065,9,,gray1963,EthnographicAtlas_1967_p68, +Ad4,Fort Hall or Metume district,1930,EA065,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p64, +Ad40,,,EA065,NA,,,, +Ad41,,1930,EA065,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p68, +Ad42,,1900,EA065,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p68, +Ad43,,,EA065,NA,,,, +Ad44,,1920,EA065,9,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p68, +Ad45,,1920,EA065,9,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p68, +Ad46,,1950,EA065,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p68, +Ad47,,1900,EA065,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA065,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA065,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA065,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA065,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA065,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA065,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p64, +Ad7,Kyaddondo district (V: Kampala),1880,EA065,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p64, +Ad8,with special reference to the northern or Iringa group,1910,EA065,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p68, +Ad9,,1900,EA065,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p68, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA065,9,,winter1956; winter1958,EthnographicAtlas_1967_p68, +Ae10,,1910,EA065,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA065,9,,delhaise1909a,EthnographicAtlas_1967_p68, +Ae12,,1940,EA065,9,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p68, +Ae13,,,EA065,NA,,,, +Ae14,,1950,EA065,9,,hertefeltetal1962,EthnographicAtlas_1967_p68, +Ae15,,1940,EA065,9,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p68, +Ae16,,,EA065,NA,,,, +Ae17,,1900,EA065,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p68, +Ae18,,1900,EA065,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA065,NA,,,, +Ae2,,1950,EA065,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p68, +Ae20,,,EA065,NA,,,, +Ae21,,,EA065,NA,,,, +Ae22,with special reference to the Bankutu,1900,EA065,9,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p68, +Ae23,,,EA065,NA,,,, +Ae24,,,EA065,NA,,,, +Ae25,,,EA065,NA,,,, +Ae26,,,EA065,NA,,,, +Ae27,,,EA065,NA,,,, +Ae28,,1900,EA065,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p68, +Ae29,,1900,EA065,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p68, +Ae3,,1910,EA065,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p68, +Ae30,,,EA065,NA,,,, +Ae31,,1920,EA065,9,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA065,NA,,,, +Ae33,,1920,EA065,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA065,NA,,,, +Ae35,,,EA065,NA,,,, +Ae36,,,EA065,NA,,,, +Ae37,,,EA065,NA,,,, +Ae38,,1920,EA065,9,,wijnant192526,EthnographicAtlas_1967_p68, +Ae39,,1920,EA065,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p68, +Ae4,Ilanga group,1930,EA065,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p68, +Ae40,,,EA065,NA,,,, +Ae41,,1940,EA065,9,,andersson1953,EthnographicAtlas_1967_p68, +Ae42,,,EA065,NA,,,, +Ae43,,,EA065,NA,,,, +Ae44,,,EA065,NA,,,, +Ae45,,,EA065,NA,,,, +Ae46,,,EA065,NA,,,, +Ae47,,,EA065,NA,,,, +Ae48,,1930,EA065,9,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae49,,,EA065,NA,,,, +Ae5,,1910,EA065,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae50,,1920,EA065,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p68, +Ae51,Ndiki subtribe,1940,EA065,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p68, +Ae52,,1950,EA065,9,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,,EA065,NA,,,, +Ae54,,,EA065,NA,,,, +Ae55,,1950,EA065,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae56,,1950,EA065,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Ae57,,,EA065,NA,,,, +Ae58,,,EA065,NA,,,, +Ae59,,,EA065,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA065,9,,verhulpen1936,EthnographicAtlas_1967_p68, +Ae7,,1910,EA065,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p68, +Ae8,,1910,EA065,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p68, +Ae9,,1950,EA065,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p68, +Af1,City and environs of Abomey,1890,EA065,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p68, +Af10,,1930,EA065,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p72, +Af11,,1920,EA065,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p72, +Af12,,,EA065,NA,,,, +Af13,,1920,EA065,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p72, +Af14,,1930,EA065,9,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af15,,1920,EA065,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p72, +Af16,,,EA065,NA,,,, +Af17,,,EA065,NA,,,, +Af18,,,EA065,NA,,,, +Af19,,1950,EA065,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p72, +Af2,,1950,EA065,9,,neel1913; paulme1954,EthnographicAtlas_1967_p68, +Af20,,1910,EA065,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p72, +Af21,,,EA065,NA,,,, +Af22,,1940,EA065,NA,Performed almost exclusively by slaves,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p72, +Af23,with special reference to the village of Mgbom,1950,EA065,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p72, +Af24,,1900,EA065,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p72, +Af25,,1930,EA065,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p72, +Af26,,,EA065,NA,,,, +Af27,,,EA065,NA,,,, +Af28,,1910,EA065,9,,gunnandconant1960,EthnographicAtlas_1967_p72, +Af29,,,EA065,NA,,,, +Af3,Kumasi State,1900,EA065,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p68, +Af30,,,EA065,NA,,,, +Af31,,,EA065,NA,,,, +Af32,Abeouta Province and Benin,1920,EA065,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA065,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p72,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA065,NA,,,, +Af35,,,EA065,NA,,,, +Af36,with special reference to the Glidyi,1900,EA065,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p72, +Af37,,,EA065,NA,,,, +Af38,,,EA065,NA,,,, +Af39,,,EA065,NA,,,, +Af4,,1930,EA065,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p72, +Af40,,,EA065,NA,,,, +Af41,,,EA065,NA,,,, +Af42,,1900,EA065,9,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p72, +Af43,,1930,EA065,9,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p72, +Af44,,,EA065,NA,,,, +Af45,,,EA065,NA,,,, +Af46,,,EA065,NA,,,, +Af47,,,EA065,NA,,,, +Af48,,,EA065,NA,,,, +Af49,,1940,EA065,9,,schwab1947,EthnographicAtlas_1967_p72, +Af5,,1930,EA065,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p72, +Af50,,,EA065,NA,,,, +Af51,,1920,EA065,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af52,,1920,EA065,9,,tauxier1924a,EthnographicAtlas_1967_p72, +Af53,,,EA065,NA,,,, +Af54,,1930,EA065,9,,germann1933; schwab1947,EthnographicAtlas_1967_p72, +Af55,,,EA065,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA065,9,,schwab1947; viard1934,EthnographicAtlas_1967_p72, +Af57,,1910,EA065,9,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p72, +Af58,,,EA065,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA065,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p72, +Af7,,1950,EA065,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p72, +Af8,,1930,EA065,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p72, +Af9,,1900,EA065,9,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p72, +Ag1,Segou to Bamako on Niger River,1920,EA065,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p72, +Ag10,,1940,EA065,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p72, +Ag11,,1910,EA065,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p72, +Ag12,,1910,EA065,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p72, +Ag13,,1910,EA065,9,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p72, +Ag14,,,EA065,NA,,,, +Ag15,,,EA065,NA,,,, +Ag16,,1930,EA065,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p72, +Ag17,,,EA065,NA,,,, +Ag18,,1930,EA065,9,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p72, +Ag19,with special reference to the Felup,1930,EA065,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p72, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA065,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p72, +Ag20,,,EA065,NA,,,, +Ag21,,1910,EA065,9,,lestrange1950,EthnographicAtlas_1967_p72, +Ag22,with special reference to those of Sine,1920,EA065,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p72, +Ag23,,,EA065,NA,,,, +Ag24,,,EA065,NA,,,, +Ag25,,1900,EA065,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p72, +Ag26,,1930,EA065,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p72, +Ag27,,1910,EA065,9,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p72, +Ag28,,,EA065,NA,,,, +Ag29,,,EA065,NA,,,, +Ag3,,1930,EA065,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p72, +Ag30,,1910,EA065,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p72, +Ag31,,1910,EA065,9,,cheron1913; holas1957,EthnographicAtlas_1967_p72, +Ag32,,1900,EA065,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p72, +Ag33,,,EA065,NA,,,, +Ag34,,,EA065,NA,,,, +Ag35,,,EA065,NA,,,, +Ag36,,,EA065,NA,,,, +Ag37,,,EA065,NA,,,, +Ag38,,,EA065,NA,,,, +Ag39,,1910,EA065,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA065,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p72, +Ag40,,,EA065,NA,,,, +Ag41,,1920,EA065,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p72, +Ag42,,,EA065,NA,,,, +Ag43,,,EA065,NA,,,, +Ag44,,,EA065,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA065,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA065,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA065,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p76, +Ag48,,1890,EA065,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p76, +Ag49,,1930,EA065,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p76, +Ag5,,1930,EA065,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p72, +Ag50,,1910,EA065,9,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA065,NA,,,, +Ag52,,,EA065,NA,,,, +Ag53,with special reference to those of Garango,1960,EA065,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA065,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA065,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p72, +Ag7,,1930,EA065,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p72, +Ag8,with special reference to the Coniagui,1910,EA065,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p72, +Ag9,,1930,EA065,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p72, +Ah1,Zaria Province,1930,EA065,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p76,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA065,NA,,,, +Ah11,,1950,EA065,9,,gunnandconant1960,EthnographicAtlas_1967_p76, +Ah12,,,EA065,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA065,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,,EA065,NA,,,, +Ah15,,1920,EA065,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p76, +Ah16,,,EA065,NA,,,, +Ah17,,,EA065,NA,,,, +Ah18,,,EA065,NA,,,, +Ah19,,1930,EA065,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p76, +Ah2,,1920,EA065,9,,meek1931a,EthnographicAtlas_1967_p76, +Ah20,,1920,EA065,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p76, +Ah21,,,EA065,NA,,,, +Ah22,,,EA065,NA,,,, +Ah23,,,EA065,NA,,,, +Ah24,,,EA065,NA,,,, +Ah25,,,EA065,NA,,,, +Ah26,,,EA065,NA,,,, +Ah27,,,EA065,NA,,,, +Ah28,,,EA065,NA,,,, +Ah29,,,EA065,NA,,,, +Ah3,Tar of Benue Province,1920,EA065,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p76, +Ah30,,1920,EA065,9,,meek1931b,EthnographicAtlas_1967_p76, +Ah31,,1910,EA065,9,,haughton1912; meek1931b,EthnographicAtlas_1967_p76, +Ah32,,,EA065,NA,,,, +Ah33,,1920,EA065,9,,meek1931b; temple1922,EthnographicAtlas_1967_p76, +Ah34,,,EA065,NA,,,, +Ah35,,,EA065,NA,,,, +Ah36,,1920,EA065,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah37,,,EA065,NA,,,, +Ah38,,1930,EA065,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p76, +Ah39,,1950,EA065,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p76, +Ah4,,1920,EA065,9,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p76, +Ah5,,,EA065,NA,,,, +Ah6,,,EA065,NA,,,, +Ah7,,1940,EA065,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p76, +Ah8,,1910,EA065,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p76, +Ah9,,1920,EA065,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p76, +Ai1,,1920,EA065,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p76, +Ai10,Nuba Hills,1940,EA065,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai11,,1900,EA065,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p76, +Ai12,,1950,EA065,9,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p76, +Ai13,,,EA065,NA,,,, +Ai14,,,EA065,NA,,,, +Ai15,,1900,EA065,9,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p76, +Ai16,,,EA065,NA,,,, +Ai17,,1930,EA065,9,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA065,9,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA065,NA,,,, +Ai2,,,EA065,NA,,,, +Ai20,,,EA065,NA,,,, +Ai21,,,EA065,NA,,,, +Ai22,,1890,EA065,9,,delafosse1897,EthnographicAtlas_1967_p76, +Ai23,,1920,EA065,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p76, +Ai24,,,EA065,NA,,,, +Ai25,,1950,EA065,9,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA065,9,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p76, +Ai27,,,EA065,NA,,,, +Ai28,,1910,EA065,9,,delhaise1912,EthnographicAtlas_1967_p76, +Ai29,,1920,EA065,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p76, +Ai3,,1920,EA065,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai30,,1920,EA065,9,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai31,,1920,EA065,9,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA065,9,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p76, +Ai33,,1940,EA065,9,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p76, +Ai34,,1880,EA065,9,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA065,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p76, +Ai36,,1920,EA065,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p76, +Ai37,,,EA065,NA,,,, +Ai38,,1930,EA065,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai39,,1940,EA065,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai4,,,EA065,NA,,,, +Ai40,,1940,EA065,9,,nadel1947,EthnographicAtlas_1967_p76, +Ai41,,1930,EA065,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p76, +Ai42,,1940,EA065,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p76, +Ai43,,1930,EA065,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p76, +Ai44,,1920,EA065,9,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p76, +Ai45,,,EA065,NA,,,, +Ai46,,1930,EA065,9,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p76, +Ai47,,,EA065,NA,,,, +Ai5,,1920,EA065,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p76, +Ai6,Shilluk Kingdom,1900,EA065,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p76, +Ai7,,1910,EA065,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p76, +Ai8,,1930,EA065,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p76, +Ai9,Around Yagoua in Cameroon,1910,EA065,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p76, +Aj1,,1950,EA065,9,,lawrance1957,EthnographicAtlas_1967_p76, +Aj10,,,EA065,NA,,,, +Aj11,,1900,EA065,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p80, +Aj12,,1920,EA065,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj13,,1930,EA065,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA065,NA,,,, +Aj15,,1900,EA065,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p80, +Aj16,with special reference to the Riverain Mondari,1930,EA065,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p80, +Aj17,,1890,EA065,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p80, +Aj18,,1950,EA065,9,,jensen1959,EthnographicAtlas_1967_p80, +Aj19,,1920,EA065,9,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p80, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA065,10,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p80, +Aj20,,,EA065,NA,,,, +Aj21,,1930,EA065,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p80, +Aj22,,1930,EA065,9,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA065,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p80, +Aj24,,1930,EA065,9,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p80, +Aj25,,1920,EA065,9,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA065,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p80, +Aj27,,,EA065,NA,,,, +Aj28,,1940,EA065,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA065,NA,,,, +Aj3,,1930,EA065,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p80, +Aj30,,,EA065,NA,,,, +Aj31,,,EA065,NA,,,, +Aj4,,1920,EA065,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p80, +Aj5,,1920,EA065,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p80, +Aj6,,1940,EA065,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p80, +Aj7,,1910,EA065,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p80, +Aj8,,1920,EA065,9,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p80, +Aj9,,1920,EA065,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p80, +Ca1,Town of Buso,1930,EA065,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p80, +Ca10,,,EA065,NA,,,, +Ca11,,1890,EA065,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p80, +Ca12,,1880,EA065,9,Formerly mainly by slaves,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p80, +Ca13,with special reference to the eastern Macha,1950,EA065,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p80, +Ca14,,1950,EA065,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p80, +Ca15,,1930,EA065,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca16,,1930,EA065,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p80, +Ca17,,1950,EA065,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca18,,,EA065,NA,,,, +Ca19,,1950,EA065,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p80, +Ca2,Dolbahanta clan or subtribe,1950,EA065,NA,Performed by slaves,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p80, +Ca20,,,EA065,NA,,,, +Ca21,,,EA065,NA,,,, +Ca22,,1950,EA065,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA065,9,,jensen1959,EthnographicAtlas_1967_p80, +Ca24,,,EA065,NA,,,, +Ca25,,1950,EA065,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA065,NA,,,, +Ca27,,,EA065,NA,,,, +Ca28,,1950,EA065,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p80, +Ca29,,1920,EA065,9,,huntingford1955b; straube1963,EthnographicAtlas_1967_p80, +Ca3,,1950,EA065,9,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p80, +Ca30,,,EA065,NA,,,, +Ca31,,1860,EA065,9,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p80, +Ca32,,1860,EA065,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca33,,1860,EA065,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p80, +Ca34,,,EA065,NA,,,, +Ca35,,,EA065,NA,,,, +Ca36,,,EA065,NA,,,, +Ca37,,,EA065,NA,,,, +Ca38,,,EA065,NA,,,, +Ca39,,1930,EA065,9,,lewis1965b,EthnographicAtlas_1967_p80, +Ca4,,1950,EA065,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p80, +Ca40,,1950,EA065,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA065,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA065,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA065,NA,,,, +Ca5,,1930,EA065,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p80, +Ca6,,1880,EA065,NA,Performed only by serfs,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p80, +Ca7,Gondar district,1950,EA065,9,,lipsky1962; messing1957,EthnographicAtlas_1967_p80, +Ca8,,1940,EA065,9,,leslau1950; shack1963,EthnographicAtlas_1967_p80, +Ca9,,,EA065,NA,,,, +Cb1,,,EA065,NA,,,, +Cb10,,,EA065,NA,,,, +Cb11,,,EA065,NA,,,, +Cb12,,,EA065,NA,,,, +Cb13,,,EA065,NA,,,, +Cb14,,,EA065,NA,,,, +Cb15,,,EA065,NA,,,, +Cb16,,,EA065,NA,,,, +Cb17,Jebel Marra,1880,EA065,9,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p80, +Cb18,,1930,EA065,9,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p80, +Cb19,,1870,EA065,9,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p80, +Cb2,Upper and lower Salum in Gambia,1950,EA065,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p80, +Cb20,,1920,EA065,9,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA065,10,,pfeffer1936,EthnographicAtlas_1967_p84, +Cb22,,1920,EA065,NA,Agriculture is largely performed by Negro serfs,coutouly1923; delmond1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999, +Cb23,,1930,EA065,9,,kane1939; lafont1939,EthnographicAtlas_1967_p84, +Cb24,,,EA065,NA,,,, +Cb25,,,EA065,NA,,,, +Cb26,Zazzagawa of Zaria,1950,EA065,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p84, +Cb27,,,EA065,NA,,,, +Cb28,,,EA065,NA,,,, +Cb29,,,EA065,NA,,,, +Cb3,Bamba division,1940,EA065,9,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p80, +Cb4,,1920,EA065,9,,reid1930,EthnographicAtlas_1967_p80, +Cb5,,,EA065,NA,,,, +Cb6,,1920,EA065,9,,woodnd,EthnographicAtlas_1967_p80, +Cb7,,1920,EA065,9,,meek1931b:288-310,EthnographicAtlas_1967_p80, +Cb8,,,EA065,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA065,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p80, +Cc1,,1950,EA065,9,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p84, +Cc10,,1900,EA065,9,Performed by serfs and slaves,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p84, +Cc11,,,EA065,NA,,,, +Cc12,,1944,EA065,NA,Agriculture is done only by slaves and serfs,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA065,NA,,,, +Cc14,,1880,EA065,NA,Agriculture is performed mainly by slaves and serfs,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA065,NA,,,, +Cc16,,1930,EA065,NA,Performed exclusively by serfs and slaves,briggs1958; darmagnac1934,EthnographicAtlas_1967_p84, +Cc17,,1930,EA065,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p84, +Cc18,,,EA065,NA,,,, +Cc19,,,EA065,NA,,,, +Cc2,Nomads of Tibesti,1950,EA065,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p84, +Cc20,with special reference to the more nomadic northern groups,1910,EA065,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p84, +Cc3,inhabitants of the oasis of Siwa,1920,EA065,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p84, +Cc4,,1920,EA065,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p84, +Cc5,,1910,EA065,NA,Performed exclusively by sedentary serfs,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p84, +Cc6,,,EA065,NA,,,, +Cc7,Timbuctoo,1950,EA065,NA,Performed by slaves or serfs,miner1953,CorrectedEthnographicAtlas_WorldCultures_Vol10_No1_1999,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA065,NA,,,, +Cc9,Ahaggaren tribe,1920,EA065,NA,Agriculture is performed exclusively by slaves and serfs,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p84, +Cd1,Kenuzi Nubians of Dahmit,1920,EA065,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p84, +Cd10,,,EA065,NA,,,, +Cd11,,1500,EA065,9,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p84, +Cd12,,1870,EA065,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p84, +Cd13,,,EA065,NA,,,, +Cd14,,,EA065,NA,,,, +Cd15,,,EA065,NA,,,, +Cd16,,,EA065,NA,,,, +Cd17,,,EA065,NA,,,, +Cd18,,,EA065,NA,,,, +Cd19,,,EA065,NA,,,, +Cd2,Town and environs of Silwa,1950,EA065,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p84, +Cd20,,,EA065,NA,,,, +Cd21,,,EA065,NA,,,, +Cd3,Entirety: Moroccan,1920,EA065,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p84, +Cd4,,1890,EA065,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p84, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA065,9,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p84, +Cd6,with special reference to the New Empire,-1400,EA065,9,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p84, +Cd7,,,EA065,NA,,,, +Cd8,,,EA065,NA,,,, +Cd9,,,EA065,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA065,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p84, +Ce2,,,EA065,NA,,,, +Ce3,,,EA065,NA,,,, +Ce4,Labourd,1930,EA065,9,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p84,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA065,9,,parsons1964,EthnographicAtlas_1967_p84, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA065,9,,pittrivers1954,EthnographicAtlas_1967_p84, +Ce7,with special reference to the village of Vasilika,1950,EA065,9,,firedl1962,EthnographicAtlas_1967_p84, +Ce8,with special reference to the village of Vera,1934,EA065,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA065,9,,murdocknd,EthnographicAtlas_1967_p84, +Cf2,,,EA065,NA,,,, +Cf3,,1930,EA065,9,,munch1945,EthnographicAtlas_1967_p84, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA065,9,,pierson1951,EthnographicAtlas_1967_p84, +Cf5,,1930,EA065,9,,miner1939,EthnographicAtlas_1967_p84, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA065,9,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p84, +Cg2,,1100,EA065,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p84, +Cg3,County Clare,1930,EA065,9,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p84, +Cg4,Konkama District,1950,EA065,10,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p84, +Cg5,,,EA065,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA065,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p84, +Ch10,,,EA065,NA,,,, +Ch11,Viriatino Village,1955,EA065,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA065,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p84, +Ch3,with special reference to the Hana district of central Moravia,1940,EA065,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p84, +Ch4,,1900,EA065,9,,heffner1955; wichmann1913,EthnographicAtlas_1967_p84, +Ch5,with special reference to the village of Dragelevtsy,1940,EA065,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p84, +Ch6,,1910,EA065,9,,ember1954,EthnographicAtlas_1967_p84, +Ch7,,1930,EA065,9,,friedrich1954,EthnographicAtlas_1967_p84, +Ch8,,1940,EA065,9,,hanzeli1955,EthnographicAtlas_1967_p84, +Ch9,,1930,EA065,9,,maciuika1955,EthnographicAtlas_1967_p84, +Ci1,with special reference to the Baga Dorbed group,1920,EA065,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p84, +Ci10,Vicinity of Erevan,1900,EA065,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p84, +Ci11,,1940,EA065,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p84, +Ci12,Abkhaz Tribe,1880,EA065,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA065,9,,grigolia1939,EthnographicAtlas_1967_p84, +Ci3,,,EA065,NA,,,, +Ci4,,1920,EA065,9,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p84, +Ci5,Northern Anatolian Plateau,1950,EA065,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA065,9,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p84, +Ci7,,1900,EA065,9,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p84, +Ci8,,,EA065,NA,,,, +Ci9,,,EA065,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA065,9,,sweet1960,EthnographicAtlas_1967_p84, +Cj10,with special reference to the village of ech-Chibayish,1950,EA065,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p88, +Cj2,Unspecified,1920,EA065,10,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p84, +Cj3,,-800,EA065,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p88, +Cj4,City and environs of Babylon,-2000,EA065,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p88, +Cj5,,1930,EA065,10,,dickson1949,EthnographicAtlas_1967_p88, +Cj6,,,EA065,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA065,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p88, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA065,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p88, +Cj9,,,EA065,NA,,,, +Ea1,,1950,EA065,9,,bordiend; wilber1964,EthnographicAtlas_1967_p88, +Ea10,with special reference to the more nomadic groups,1950,EA065,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA065,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA065,9,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA065,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA065,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p88, +Ea3,with special reference to the Urazgani,1930,EA065,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p88, +Ea4,,1950,EA065,9,,barth1956b,EthnographicAtlas_1967_p88, +Ea5,,1890,EA065,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p88, +Ea6,,,EA065,NA,,,, +Ea7,,1950,EA065,9,,schurmann1962,EthnographicAtlas_1967_p88, +Ea8,,1920,EA065,9,,feilberg1952; wilson1926,EthnographicAtlas_1967_p88, +Ea9,,1950,EA065,9,,vreeland1957,EthnographicAtlas_1967_p88, +Eb1,Great Horde,1910,EA065,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p88, +Eb2,,1920,EA065,9,,krader1963; schram1954,EthnographicAtlas_1967_p88, +Eb3,Narobanchin Territory,1940,EA065,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p88, +Eb4,,,EA065,NA,,,, +Eb5,,,EA065,NA,,,, +Eb6,,,EA065,NA,,,, +Eb7,,1930,EA065,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p88, +Eb8,,,EA065,NA,,,, +Ec1,Sakhalin Island,1920,EA065,10,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p88, +Ec10,with special reference to those on the Ob River,1880,EA065,10,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p88, +Ec11,,1900,EA065,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA065,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA065,10,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p88, +Ec4,Yurak Tribe,1900,EA065,10,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p88, +Ec5,with special reference to the Maritime Koryak,1900,EA065,10,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p88, +Ec6,Upper Kolyma River,1850,EA065,10,,jochelson191926,EthnographicAtlas_1967_p88, +Ec7,Saru Basin in Hokkaido,1900,EA065,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p88, +Ec8,,1900,EA065,10,,shimkin1939,EthnographicAtlas_1967_p88, +Ec9,,1920,EA065,9,,lattimore1933,EthnographicAtlas_1967_p88, +Ed1,Kanghwa Island,1950,EA065,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p88, +Ed10,with special reference to the village of Taitou,1930,EA065,9,,yang1945,EthnographicAtlas_1967_p88, +Ed13,,,EA065,NA,,,, +Ed14,,,EA065,NA,,,, +Ed15a,,,EA065,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA065,9,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA065,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA065,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p88, +Ed3,Aigun District,1920,EA065,9,,shirokogoroff1924,EthnographicAtlas_1967_p88, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA065,9,,mark1967; ruey1960,EthnographicAtlas_1967_p88, +Ed5,Okayama,1950,EA065,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA065,9,,kulp1925,EthnographicAtlas_1967_p88, +Ed7,,1950,EA065,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p88, +Ed8,,1930,EA065,9,,fitzgerald1941,EthnographicAtlas_1967_p88, +Ed9,,1930,EA065,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p88, +Ee1,,1940,EA065,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p88, +Ee2,Hunza State,1930,EA065,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p88, +Ee3,Lingthem and vicinity,1930,EA065,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p88, +Ee4,with special reference to Central Tibet,1920,EA065,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p88, +Ee5,with special reference to the Shina tribe,1870,EA065,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p88, +Ee6,with special reference to those of Khumbu,1950,EA065,9,,furerhaimendorf1964,EthnographicAtlas_1967_p88, +Ee7,,,EA065,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA065,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA065,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p88, +Ef10,,,EA065,NA,,,, +Ef11,Village and environs of Senapur,1945,EA065,3,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA065,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA065,NA,,,, +Ef4,,,EA065,NA,,,, +Ef5,,1900,EA065,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p88, +Ef6,,1940,EA065,9,,roy1915; roy1951,EthnographicAtlas_1967_p88, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA065,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p88, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA065,9,But the Pandit themselves seldom engage in any manual labor,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p88, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA065,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA065,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p88,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA065,9,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p92, +Eg11,,,EA065,NA,,,, +Eg12,,,EA065,NA,,,, +Eg13,Bastar State,1941,EA065,9,,elwin1957,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA065,9,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA065,9,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p88, +Eg3,Hill Maria,1938,EA065,9,,grigson1938,EthnographicAtlas_1967_p88, +Eg4,Toda Tribe,1900,EA065,10,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p88, +Eg5,,1930,EA065,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p92, +Eg6,with special reference to Northern Kerala,1799,EA065,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p92, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA065,9,,roy1935,EthnographicAtlas_1967_p92, +Eg8,,1940,EA065,9,,griffiths1946,EthnographicAtlas_1967_p92, +Eg9,,1930,EA065,9,,elwin1939,EthnographicAtlas_1967_p92, +Eh1,,1870,EA065,10,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p92, +Eh10,,,EA065,NA,,,, +Eh2,,1900,EA065,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p92, +Eh3,Menabe subtribe,1930,EA065,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p92, +Eh4,with special reference to the Rock Vedda,1900,EA065,10,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA065,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p92, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA065,9,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p92, +Eh7,,1900,EA065,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p92, +Eh8,,1900,EA065,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p92, +Eh9,,1930,EA065,9,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA065,9,,burling1963; playfair1909,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA065,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p92, +Ei11,,1910,EA065,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p92, +Ei12,,,EA065,NA,,,, +Ei13,,1910,EA065,9,,hutton1921a,EthnographicAtlas_1967_p92, +Ei14,with special reference to the Chongli,1920,EA065,9,,mills1926; smith1925b,EthnographicAtlas_1967_p92, +Ei15,,,EA065,NA,,,, +Ei16,,1910,EA065,9,,hutton1921b,EthnographicAtlas_1967_p92, +Ei17,,,EA065,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA065,9,,lowis1906; milne1924,EthnographicAtlas_1967_p92, +Ei19,,1940,EA065,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p92, +Ei2,,1920,EA065,9,,mills1922,EthnographicAtlas_1967_p92, +Ei20,,,EA065,NA,,,, +Ei3,Nondwin Village,1950,EA065,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p92, +Ei4,Lakher Tribe,1930,EA065,9,,parry1932,EthnographicAtlas_1967_p92, +Ei5,with special reference to the Jinghpaw,1940,EA065,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p92, +Ei6,,1930,EA065,9,,das1945; needham1958,EthnographicAtlas_1967_p92, +Ei7,,1910,EA065,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p92, +Ei8,with special reference to those of the Jaintia Hills,1900,EA065,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p92, +Ei9,,1880,EA065,9,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p92, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA065,9,,izikowitz1951,EthnographicAtlas_1967_p92, +Ej10,Ko-Sier Village,1950,EA065,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p92, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA065,9,,lafont1964,EthnographicAtlas_1967_p92, +Ej12,,1960,EA065,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p92, +Ej13,,1940,EA065,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p92, +Ej14,with special reference to the eastern Semai,1960,EA065,9,,dentan1967,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA065,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA065,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA065,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p92, +Ej3,Jehai Group or subtribe,1920,EA065,10,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p92, +Ej4,Red River Delta in Tonkin,1950,EA065,9,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p92, +Ej5,,1950,EA065,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p92, +Ej6,of the Mergui Archipelago,1920,EA065,10,,carrapiett1909; white1922,EthnographicAtlas_1967_p92, +Ej7,,1950,EA065,9,,bernatzik1947,EthnographicAtlas_1967_p92, +Ej8,with special reference to those of Trengganu,1940,EA065,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p92, +Ej9,,1940,EA065,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA065,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p92, +Ia10,,1930,EA065,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p92, +Ia11,,1930,EA065,9,,mabuchi1960,EthnographicAtlas_1967_p92, +Ia12,,1950,EA065,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p96, +Ia13,Tawi-Tawi and adjacent islands,1960,EA065,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p96, +Ia14,,1930,EA065,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p96, +Ia15,,,EA065,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA065,9,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p96, +Ia17,,,EA065,NA,,,, +Ia18,,,EA065,NA,,,, +Ia2,,1950,EA065,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p92, +Ia3,Kiangan Group,1920,EA065,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p92, +Ia4,with special reference to the Eastern Subanun,1950,EA065,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p92, +Ia5,,1950,EA065,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p92, +Ia6,Su-Paiwan Village,1930,EA065,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p92,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA065,9,,fox1954,EthnographicAtlas_1967_p92, +Ia8,,,EA065,NA,,,, +Ia9,with special reference to the southern Ami,1930,EA065,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p92, +Ib1,"Ulu Ai Group, Baleh",1950,EA065,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA065,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA065,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p96, +Ib4,with special reference to the Toba group,1930,EA065,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p96, +Ib5,with special reference to the village of Sensuron,1920,EA065,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p96, +Ib6,,1920,EA065,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p96, +Ib7,with special reference to those of North Pageh,1920,EA065,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p96, +Ib8,,,EA065,NA,,,, +Ib9,,,EA065,NA,,,, +Ic1,Borongloe,1940,EA065,9,,chabot1950,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA065,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p96, +Ic11,Allang,1950,EA065,9,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA065,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA065,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA065,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p96, +Ic3,with special reference to the Mountain Belu,1950,EA065,9,,vroklage1952,EthnographicAtlas_1967_p96, +Ic4,,,EA065,NA,,,, +Ic5,Bare'e subgroup,1910,EA065,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p96, +Ic6,,1930,EA065,9,,drabbe1940,EthnographicAtlas_1967_p96, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA065,9,,vatter1932,EthnographicAtlas_1967_p96, +Ic8,,,EA065,NA,,,, +Ic9,with special reference to eastern Sumba,1930,EA065,9,,nooteboom1940,EthnographicAtlas_1967_p96, +Id1,Alice Springs and environs,1900,EA065,10,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p96, +Id10,,1930,EA065,10,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA065,10,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA065,10,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA065,10,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA065,10,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p96, +Id3,Tiwi Tribe: Melville Island,1920,EA065,10,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p96, +Id4,,1900,EA065,10,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p96, +Id5,,1910,EA065,10,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p96, +Id6,with special reference to the Archer River group,1920,EA065,10,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p96, +Id7,,1940,EA065,10,,falkenberg1962,Ethnology_Vol2_No2_Apr_1963, +Id8,,1830,EA065,10,,roth1890,EthnographicAtlas_1967_p96, +Id9,,1910,EA065,10,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p96, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA065,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA065,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p96, +Ie11,,1950,EA065,9,,bowers1964,EthnographicAtlas_1967_p96, +Ie12,Hongwam subtribe; Rumbima,1930,EA065,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA065,9,,landtman1927,EthnographicAtlas_1967_p96, +Ie14,,1900,EA065,9,,haddon1908,EthnographicAtlas_1967_p96, +Ie15,Kalabu; Northern Abelam,1930,EA065,9,,kaberry1941,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA065,9,,williams194041,EthnographicAtlas_1967_p96, +Ie17,,1940,EA065,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p96, +Ie18,Bamol Village,1940,EA065,9,,serpenti1965,EthnographicAtlas_1967_p96, +Ie19,with special reference to the coastal inhabitants,1910,EA065,9,,vanbaal1966,EthnographicAtlas_1967_p96, +Ie2,,1920,EA065,9,,schmitz1960,EthnographicAtlas_1967_p96, +Ie20,,1900,EA065,9,,seligmann1910,EthnographicAtlas_1967_p96, +Ie21,,1900,EA065,9,,malinowski1916,EthnographicAtlas_1967_p96, +Ie22,,1900,EA065,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p96, +Ie23,,1950,EA065,9,,schoorl1957,EthnographicAtlas_1967_p96, +Ie24,,1870,EA065,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p96, +Ie25,,1920,EA065,9,,williamson1912,EthnographicAtlas_1967_p96, +Ie26,,1940,EA065,9,,read1946; read1950,EthnographicAtlas_1967_p100, +Ie27,,1910,EA065,9,,thurnwald1916,EthnographicAtlas_1967_p100, +Ie28,,1940,EA065,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p100, +Ie29,principally Tsogari,1930,EA065,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA065,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA065,NA,,,, +Ie31,,1950,EA065,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA065,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,,,EA065,NA,,,, +Ie34,,,EA065,NA,,,, +Ie35,,1930,EA065,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA065,NA,,,, +Ie37,,,EA065,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA065,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA065,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA065,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p96,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA065,9,,williams1936,EthnographicAtlas_1967_p96, +Ie6,,1930,EA065,9,,held1947,EthnographicAtlas_1967_p96, +Ie7,with special reference to the Mae group,1950,EA065,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p96, +Ie8,with special reference to the Koriki,1910,EA065,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p96, +Ie9,,1920,EA065,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p96, +If1,"Ulimang, Badeldaob Island",1940,EA065,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA065,NA,,,, +If11,,1860,EA065,9,,sarfert1919,EthnographicAtlas_1967_p100, +If12,,1940,EA065,9,,mason1954,EthnographicAtlas_1967_p100, +If13,,1900,EA065,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p100, +If14,Makin and Butiritari Islands (N),1890,EA065,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p100, +If15,,1930,EA065,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p100, +If16,,1960,EA065,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA065,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA065,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p100, +If3,With special reference to the inhabitants of Majuro,1940,EA065,9,,spoehr1949,EthnographicAtlas_1967_p100, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA065,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p100, +If5,,1910,EA065,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p100, +If6,Island,1910,EA065,9,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p100, +If7,with special reference to the inhabitants of Onotoa,1940,EA065,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p100, +If8,with special reference to those of Saipa,1950,EA065,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p100, +If9,,1900,EA065,9,,lessa1950; william1966,EthnographicAtlas_1967_p100, +Ig1,Northeastern group,1940,EA065,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p100, +Ig10,,1950,EA065,9,,schwartz1964,EthnographicAtlas_1967_p100, +Ig11,,1920,EA065,9,,armstrong1928,EthnographicAtlas_1967_p100, +Ig12,with special reference to the Varisi,1900,EA065,9,,scheffler1965,EthnographicAtlas_1967_p100, +Ig13,,1900,EA065,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p100, +Ig14,,1900,EA065,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p100, +Ig15,,,EA065,NA,,,, +Ig16,,,EA065,NA,,,, +Ig17,,,EA065,NA,,,, +Ig18,,,EA065,NA,,,, +Ig19,,,EA065,NA,,,, +Ig2,Kiriwina Island,1910,EA065,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p100, +Ig20,with special reference to the village of Longgu,1920,EA065,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA065,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA065,9,,blackwood1935,EthnographicAtlas_1967_p100, +Ig4,Lesu Village,1930,EA065,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p100, +Ig5,,1920,EA065,9,,fortune1932b,EthnographicAtlas_1967_p100, +Ig6,,1900,EA065,9,,ivens1927,EthnographicAtlas_1967_p100, +Ig7,,1950,EA065,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p100, +Ig8,,,EA065,NA,,,, +Ig9,Peri Village,1920,EA065,10,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p100, +Ih1,,,EA065,NA,,,, +Ih10,Whitsands,1920,EA065,9,,humphreys1926,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA065,NA,,,, +Ih12,,,EA065,NA,,,, +Ih13,,,EA065,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA065,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA065,9,,deacon1934,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA065,NA,,,, +Ih4,Lau Island,1920,EA065,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA065,9,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p100, +Ih6,,1890,EA065,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p100, +Ih7,,1910,EA065,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p100, +Ih8,with special reference to the village of Nakaroka,1940,EA065,9,,quain1949,EthnographicAtlas_1967_p100, +Ih9,Graciosa Bay,1930,EA065,9,,davenport1964,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA065,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p100, +Ii10,,,EA065,NA,,,, +Ii12,Pangai,1920,EA065,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p100,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA065,9,,burrows1937,EthnographicAtlas_1967_p100, +Ii14,,1829,EA065,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA065,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p100, +Ii3,,1930,EA065,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p100, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA065,9,,kennedy1931; white1965,EthnographicAtlas_1967_p100, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA065,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p100, +Ii6,with special reference to Atafu,1900,EA065,9,,macgregor1937,EthnographicAtlas_1967_p100, +Ii7,,1910,EA065,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p100, +Ii8,,1840,EA065,9,,burrows1936,EthnographicAtlas_1967_p100, +Ii9,,1840,EA065,9,,loeb1926a,EthnographicAtlas_1967_p100, +Ij1,,1820,EA065,9,,buck1934,EthnographicAtlas_1967_p100, +Ij10,,,EA065,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA065,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA065,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p104, +Ij4,,,EA065,NA,,,, +Ij5,,1900,EA065,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p104, +Ij6,,1800,EA065,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p104, +Ij7,,1900,EA065,9,,buck1938; laval1938,EthnographicAtlas_1967_p104, +Ij8,,1900,EA065,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p104, +Ij9,,1860,EA065,9,,metraux1940,EthnographicAtlas_1967_p104, +Na1,,1930,EA065,10,,mckennan1959,EthnographicAtlas_1967_p104, +Na10,,1930,EA065,10,,birketsmith1953,EthnographicAtlas_1967_p104, +Na11,,1920,EA065,10,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p104, +Na12,,1950,EA065,10,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p104, +Na13,,1880,EA065,10,,boas1888; boas190107,EthnographicAtlas_1967_p104, +Na14,,1880,EA065,10,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p104, +Na15,,1860,EA065,10,,helmandlurie1961,EthnographicAtlas_1967_p104, +Na16,,1860,EA065,10,,osgood1931,EthnographicAtlas_1967_p104, +Na17,"Lynx Point band, Fort Simpson",1860,EA065,10,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA065,10,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p104, +Na2,,1880,EA065,10,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p104, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA065,10,,osgood1936; slobodin1962,EthnographicAtlas_1967_p104, +Na21,,1900,EA065,10,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p104, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA065,10,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p104, +Na23,with special reference to the Koksoagmiu,1890,EA065,10,,hawkes1916; turner1894,EthnographicAtlas_1967_p104, +Na24,,1880,EA065,10,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p104, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA065,10,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA065,10,,osgood1933; osgood1937,EthnographicAtlas_1967_p104, +Na27,,1870,EA065,10,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p104, +Na28,,1880,EA065,10,,jenness1937,EthnographicAtlas_1967_p104, +Na29,,1850,EA065,10,,goddard1916,EthnographicAtlas_1967_p104, +Na3,Coronation Gulf,1920,EA065,10,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p104, +Na30,,1880,EA065,10,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p104, +Na31,with special reference to those of Albany and Moose Creek,1850,EA065,10,,skinner1912,EthnographicAtlas_1967_p104, +Na32,Lake St. John & Mistassini Band,1880,EA065,10,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p104, +Na33,Berens River band,1870,EA065,10,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p104, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA065,10,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p104, +Na35,,1800,EA065,10,,cameron1890; grant1890,EthnographicAtlas_1967_p104, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA065,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p104, +Na37,,1880,EA065,10,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p104, +Na38,with special reference to the Lac Vieux Desert band,1800,EA065,10,,grant1890; kinietz1947,EthnographicAtlas_1967_p104, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA065,10,,jenness1935,EthnographicAtlas_1967_p104, +Na4,Upper Liard and Dease River Group,1920,EA065,10,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p104, +Na40,,1650,EA065,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA065,10,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p104, +Na42,Prairie Potawatomi,1760,EA065,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p104, +Na43,,1920,EA065,10,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA065,NA,,,, +Na45,,1900,EA065,10,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA065,10,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p104, +Na6,,1930,EA065,10,,lantis1946,EthnographicAtlas_1967_p104, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA065,10,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p104, +Na8,Shageluk Village,1880,EA065,10,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p104, +Na9,Unalaska Branch (Eastern Aleut),1830,EA065,10,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p104,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA065,10,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p104, +Nb10,,1865,EA065,10,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nb11,with special reference to the Central Nootka,1880,EA065,10,,drucker1951; koppert1930b,EthnographicAtlas_1967_p108, +Nb12,,1880,EA065,10,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA065,10,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p108, +Nb14,,1880,EA065,10,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA065,10,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p108, +Nb16,,1860,EA065,10,,eells1887b; gunthere1927,EthnographicAtlas_1967_p108, +Nb17,,1870,EA065,10,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p108, +Nb18,,1880,EA065,10,,pettitt1950,EthnographicAtlas_1967_p108, +Nb19,,1850,EA065,10,,ray1938; ray1942,EthnographicAtlas_1967_p108, +Nb2,Twana Tribe,1850,EA065,10,,eells1877; elmendorf1960,EthnographicAtlas_1967_p104, +Nb20,,1870,EA065,10,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA065,10,,barnett1937; jacobs1940,EthnographicAtlas_1967_p108, +Nb22,with special reference to the Chilkat,1880,EA065,10,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p108, +Nb23,,1880,EA065,10,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p108, +Nb24,,1860,EA065,10,,colson1953; swan1868,EthnographicAtlas_1967_p108, +Nb25,,1860,EA065,10,,olson1936a; willoughby1889,EthnographicAtlas_1967_p108, +Nb26,,1880,EA065,10,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p108, +Nb27,with special reference to the Tait,1880,EA065,10,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p108, +Nb28,,1860,EA065,10,,barnett1937; drucker1939,EthnographicAtlas_1967_p108, +Nb29,,1860,EA065,10,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA065,10,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p104, +Nb30,,1860,EA065,10,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA065,10,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p108, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA065,10,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p108, +Nb33,,1860,EA065,10,,dixon1910; driver1939,EthnographicAtlas_1967_p108, +Nb34,,1860,EA065,10,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p108, +Nb35,,1860,EA065,10,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p108, +Nb36,,1860,EA065,10,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p108, +Nb37,,1860,EA065,10,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA065,10,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA065,10,,driver1939; nomland1935,EthnographicAtlas_1967_p108, +Nb4,,1850,EA065,10,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p104, +Nb5,Eyak Tribe,1890,EA065,10,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p104, +Nb6,,1870,EA065,10,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p104, +Nb7,,1880,EA065,10,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p104, +Nb8,,1880,EA065,10,,lopatin1945; olson1940,EthnographicAtlas_1967_p104, +Nb9,"Central group, lower B.C. River",1880,EA065,10,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p104, +Nc1,,1850,EA065,10,,goldschmidt1951,EthnographicAtlas_1967_p108, +Nc10,,1860,EA065,10,,goldman1940; goldman1941,EthnographicAtlas_1967_p108, +Nc11,,1860,EA065,10,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p108, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA065,10,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p108, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA065,10,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p108, +Nc14,with special reference to the northeastern Wintu,1860,EA065,10,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p108, +Nc15,,1860,EA065,10,,driver1939; gifford1939,EthnographicAtlas_1967_p108, +Nc16,,1860,EA065,10,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA065,10,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc18,"Clear Lake, Village of Cignon",1860,EA065,10,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p108, +Nc19,with special reference to those near Santa Rosa,1860,EA065,10,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p108, +Nc2,,1850,EA065,10,,gifford1917; voegelin1938,EthnographicAtlas_1967_p108, +Nc20,,1860,EA065,10,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p108, +Nc21,,1860,EA065,10,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA065,10,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p108, +Nc23,,1870,EA065,10,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p108, +Nc24,Tulare Lake,1860,EA065,10,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc25,,1860,EA065,10,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p108, +Nc26,,1770,EA065,10,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA065,10,,driver1937; gifford1917,EthnographicAtlas_1967_p108, +Nc28,,1800,EA065,10,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA065,10,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p108, +Nc3,with special reference to those of the Northern Foothills,1850,EA065,10,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p108, +Nc30,,1870,EA065,10,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc31,with special reference to the Desert Cahuilla,1870,EA065,10,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc32,,1870,EA065,10,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p108, +Nc33,,1860,EA065,10,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p108, +Nc34,,1880,EA065,10,,meigs1939,EthnographicAtlas_1967_p108, +Nc4,,1860,EA065,10,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p108, +Nc5,with special reference to the Central Sierra group,1850,EA065,10,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p108, +Nc6,with special reference to the Southern Diegueno,1850,EA065,10,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p108, +Nc7,,1850,EA065,10,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p108, +Nc8,Klamath Tribe,1860,EA065,10,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p108, +Nc9,,1860,EA065,10,,ray1963; voegelin1942,EthnographicAtlas_1967_p108, +Nd1,,1850,EA065,10,,murdock1958; ray1942,EthnographicAtlas_1967_p108, +Nd10,,1860,EA065,10,,ray1942; teit1900,EthnographicAtlas_1967_p112, +Nd11,with special reference to the southeastern Shuswap,1850,EA065,10,,ray1942; teit1909,EthnographicAtlas_1967_p112, +Nd12,,1860,EA065,10,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p112, +Nd13,,1860,EA065,10,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA065,10,,ray1942; teit1930,EthnographicAtlas_1967_p112, +Nd15,,1880,EA065,10,,clineetal1938,EthnographicAtlas_1967_p112, +Nd16,,1870,EA065,10,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA065,10,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA065,10,,spierandsapir1930,EthnographicAtlas_1967_p112, +Nd19,,1860,EA065,10,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p112, +Nd2,,1860,EA065,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p108, +Nd20,,1850,EA065,10,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p112, +Nd21,,1870,EA065,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA065,10,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p112, +Nd23,,1870,EA065,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA065,10,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p112, +Nd25,,1870,EA065,10,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA065,10,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA065,10,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p112, +Nd28,,1870,EA065,10,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA065,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA065,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p112, +Nd30,,1870,EA065,10,,driver1937; steward1933,EthnographicAtlas_1967_p112, +Nd31,,,EA065,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA065,10,"But for the Panamint of Death Valley 'equal participation' (EA054 code ""4""), with no specialization specified (EA065 code ""9"")",driver1937; steward1938,EthnographicAtlas_1967_p112, +Nd33,including the Belted Range group,1870,EA065,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA065,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA065,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA065,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,,EA065,NA,,,, +Nd38,,,EA065,NA,,,, +Nd39,,,EA065,NA,,,, +Nd4,,1870,EA065,10,,ray1932; ray1942,EthnographicAtlas_1967_p112, +Nd40,,1870,EA065,10,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA065,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA065,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA065,10,,harris1940; steward1941,EthnographicAtlas_1967_p112, +Nd44,,1850,EA065,10,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA065,10,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd46,,1860,EA065,10,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p112, +Nd47,,1850,EA065,10,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA065,10,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p112, +Nd49,including the Kaiparowits band,1860,EA065,10,,kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd5,,1870,EA065,10,,hoebel1939; steward1943,EthnographicAtlas_1967_p112, +Nd50,,1860,EA065,10,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,,EA065,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA065,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd53,,1860,EA065,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p112, +Nd54,,,EA065,NA,,,, +Nd55,,,EA065,NA,,,, +Nd56,,,EA065,NA,,,, +Nd57,,1860,EA065,10,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA065,10,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd59,,1860,EA065,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA065,10,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p112, +Nd60,,1860,EA065,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA065,10,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA065,10,,lowie1924; stewart1942,EthnographicAtlas_1967_p112, +Nd63,with special reference to the Eastern Bannock,1860,EA065,10,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p112, +Nd64,with special reference to the Kucundika,1860,EA065,10,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p112, +Nd65,,1870,EA065,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p112, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA065,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p112, +Nd67,,1870,EA065,9,,gifford1936,EthnographicAtlas_1967_p112, +Nd7,Lower or eastern branch,1880,EA065,10,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p112, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA065,10,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p112, +Nd9,,1860,EA065,10,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p112, +Ne1,Gros Ventre Tribe,1880,EA065,10,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p112, +Ne10,,1860,EA065,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p112, +Ne11,,1870,EA065,10,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p112, +Ne12,,1850,EA065,10,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne13,,1850,EA065,10,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p112, +Ne14,,1850,EA065,10,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p112, +Ne15,Hidatsa Village,1860,EA065,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p112, +Ne16,,1800,EA065,10,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p112, +Ne17,,1860,EA065,10,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p112, +Ne18,,1850,EA065,10,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p112, +Ne19,,1850,EA065,10,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p112, +Ne2,,1870,EA065,10,,mcallister1937,EthnographicAtlas_1967_p112, +Ne20,,1850,EA065,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p116, +Ne21,,,EA065,NA,,,, +Ne3,Comanche Tribe,1870,EA065,10,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p112, +Ne4,,,EA065,NA,,,, +Ne5,,1860,EA065,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p112, +Ne6,,1830,EA065,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p112, +Ne7,,1880,EA065,10,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p112, +Ne8,,1870,EA065,10,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p112, +Ne9,,1860,EA065,10,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p112, +Nf10,,,EA065,NA,,,, +Nf11,,1870,EA065,9,,whitman1937,EthnographicAtlas_1967_p116, +Nf12,,1850,EA065,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p116, +Nf13,with special reference to the Kiskopotha band,1820,EA065,9,,trowbridge1939,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA065,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA065,NA,,,, +Nf2,,1850,EA065,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p116, +Nf3,Omaha Tribe,1850,EA065,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p116, +Nf4,,1720,EA065,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p116, +Nf5,,1860,EA065,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p116, +Nf6,Skidi Band or subtribe,1867,EA065,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p116, +Nf7,Tama Reservation,1830,EA065,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA065,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p116, +Nf9,,1870,EA065,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p116, +Ng1,Bear and Cord Subtribes,1640,EA065,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p116, +Ng10,with special reference to the Seneca tribe,1750,EA065,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p116, +Ng11,,1750,EA065,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p116, +Ng12,,1760,EA065,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p116, +Ng13,,,EA065,NA,,,, +Ng14,,,EA065,NA,,,, +Ng15,,,EA065,NA,,,, +Ng2,,,EA065,NA,,,, +Ng3,Upper division in Alabama,1750,EA065,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p116, +Ng4,,,EA065,NA,,,, +Ng5,,1750,EA065,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p116, +Ng6,with special reference to the Munsee,1700,EA065,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p116, +Ng7,Natchez Kingdom,1700,EA065,9,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p116, +Ng8,,1560,EA065,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p116, +Ng9,,,EA065,NA,,,, +Nh1,Central band,1880,EA065,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p116, +Nh10,,,EA065,NA,,,, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA065,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p116, +Nh12,,1920,EA065,9,,gifford1940; white1942,EthnographicAtlas_1967_p116, +Nh13,,1920,EA065,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p116, +Nh14,,,EA065,NA,,,, +Nh15,,1870,EA065,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA065,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA065,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p116, +Nh18,Old Oraiibi,1920,EA065,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA065,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p116, +Nh2,,1950,EA065,9,,dozier1954,EthnographicAtlas_1967_p116, +Nh20,,1860,EA065,9,,gifford1931,EthnographicAtlas_1967_p116, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA065,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA065,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p116, +Nh23,,1870,EA065,9,,gifford1932a,EthnographicAtlas_1967_p116, +Nh24,,1880,EA065,10,,gifford1940; opler1936a,EthnographicAtlas_1967_p116, +Nh25,,1920,EA065,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p116, +Nh26,,,EA065,NA,,,, +Nh27,,,EA065,NA,,,, +Nh3,,1930,EA065,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p116, +Nh4,Pueblo,1910,EA065,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p116, +Nh5,,1850,EA065,9,,drucker1941; spier1933,EthnographicAtlas_1967_p116, +Nh6,,1890,EA065,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p116, +Nh7,,1890,EA065,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p116, +Nh8,,1920,EA065,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p116, +Nh9,,1920,EA065,9,,parsons1939; trager1943,EthnographicAtlas_1967_p116, +Ni1,,1930,EA065,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p116, +Ni2,,1930,EA065,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p116, +Ni3,Huichol Tribe,1920,EA065,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p116, +Ni4,,1900,EA065,10,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p116, +Ni5,,1570,EA065,10,,driveranddriver1963,EthnographicAtlas_1967_p116, +Ni6,,1840,EA065,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p116, +Ni7,,1870,EA065,9,,beals1943; drucker1941,EthnographicAtlas_1967_p116, +Ni8,,,EA065,NA,,,, +Ni9,,,EA065,NA,,,, +Nj1,Ojitlan,1940,EA065,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p116,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA065,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA065,NA,,,, +Nj12,,,EA065,NA,,,, +Nj13,,,EA065,NA,,,, +Nj14,,,EA065,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA065,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p116, +Nj3,Town and environs of Soteapan,1940,EA065,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p120, +Nj4,,1940,EA065,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p120, +Nj5,,,EA065,NA,,,, +Nj6,,,EA065,NA,,,, +Nj7,with special reference to Ayutla,1930,EA065,9,,beals1945,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA065,9,,foster1948,EthnographicAtlas_1967_p120, +Nj9,,1960,EA065,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p120, +Sa1,San Blas Archipelago,1940,EA065,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p120, +Sa10,,1900,EA065,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p120, +Sa11,,,EA065,NA,,,, +Sa12,,1948,EA065,9,,stone1948,EthnographicAtlas_1967_p120, +Sa13,Town of Chichicastenango,1930,EA065,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p120, +Sa14,,,EA065,NA,,,, +Sa15,,,EA065,NA,,,, +Sa16,,,EA065,NA,,,, +Sa17,,,EA065,NA,,,, +Sa2,,,EA065,NA,,,, +Sa3,,1930,EA065,9,,wisdom1940,EthnographicAtlas_1967_p120, +Sa4,with special reference to those of Panama,1960,EA065,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p120, +Sa5,,1950,EA065,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p120, +Sa6,,1520,EA065,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p120, +Sa7,,1940,EA065,9,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p120, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA065,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p120, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA065,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p120, +Sb1,Dominica Island,1650,EA065,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p120, +Sb2,,1940,EA065,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p120, +Sb3,,,EA065,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA065,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA065,10,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p120, +Sb6,Goajiro Tribe,1940,EA065,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p120, +Sb7,with special reference to the Pariri,1950,EA065,9,,wilbert1961b,EthnographicAtlas_1967_p120, +Sb8,,1520,EA065,9,,rouse1948a,EthnographicAtlas_1967_p120, +Sb9,,1930,EA065,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA065,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,Ethnology_Vol10_No1_Jan_1971, +Sc10,,1900,EA065,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p120, +Sc11,,1930,EA065,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p120, +Sc12,,1910,EA065,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p120, +Sc13,,1950,EA065,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p120, +Sc14,,1890,EA065,9,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA065,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p120, +Sc16,with special reference to the Makitare,1920,EA065,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p120, +Sc17,,1950,EA065,9,,wilbert1963,EthnographicAtlas_1967_p120, +Sc18,,1960,EA065,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA065,9,,leedsnd,EthnographicAtlas_1967_p120, +Sc3,Barama River,1930,EA065,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p120, +Sc4,with special reference to the non-agricultural groups,1950,EA065,9,"But among the agricultural Guahibo 'males alone' (EA054 code ""1""), with no specialization specified (EA065 code ""9"")",wilbert1957b; wilbert1963,EthnographicAtlas_1967_p120, +Sc5,,1900,EA065,9,,farabee1918,EthnographicAtlas_1967_p120, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA065,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA065,9,,wilbert1959b,EthnographicAtlas_1967_p120, +Sc8,,1950,EA065,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p120, +Sc9,,1950,EA065,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p120, +Sd1,Cabrura village,1950,EA065,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p120,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA065,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p120, +Sd3,,1920,EA065,9,,nimuendaju1926,EthnographicAtlas_1967_p120, +Sd4,,1950,EA065,9,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA065,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p120, +Sd6,,1960,EA065,10,,migliazza1964,EthnographicAtlas_1967_p120, +Sd7,,1950,EA065,9,,fock1963,EthnographicAtlas_1967_p120, +Sd8,,,EA065,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA065,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA065,9,,holmberg1950,EthnographicAtlas_1967_p120, +Se10,,,EA065,NA,,,, +Se11,,1960,EA065,9,,prost1965,EthnographicAtlas_1967_p124, +Se12,,,EA065,NA,,,, +Se2,,1940,EA065,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p120, +Se3,,1930,EA065,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p120, +Se4,,1940,EA065,9,,fejos1943,EthnographicAtlas_1967_p120, +Se5,Village on Caduiari River,1940,EA065,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p120, +Se6,,1910,EA065,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p120, +Se7,,,EA065,NA,,,, +Se8,Upper Inuya River,1950,EA065,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p120, +Se9,,1920,EA065,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p120, +Sf1,City and environs of Cuzco,1530,EA065,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p124, +Sf2,Chucuito Clan community in Peru,1940,EA065,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p124, +Sf3,Rio Cayapas Basin,1910,EA065,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p124, +Sf4,,1950,EA065,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p124, +Sf5,,1900,EA065,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p124, +Sf6,,1540,EA065,9,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p124, +Sf7,,1900,EA065,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p124, +Sf8,,,EA065,NA,,,, +Sf9,,,EA065,NA,,,, +Sg1,Eastern and central,1870,EA065,10,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p124, +Sg2,Cholchol,1880,EA065,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA065,10,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p124, +Sg4,Equestrian,1870,EA065,10,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p124, +Sg5,with special reference to the southern bands,1900,EA065,10,,bird1946; cooper1917,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA065,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p124, +Sh2,,1850,EA065,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p124, +Sh3,Those in contact with mission,1800,EA065,10,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p124, +Sh4,,1940,EA065,9,,oberg1949,EthnographicAtlas_1967_p124, +Sh5,,1910,EA065,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p124, +Sh6,,1890,EA065,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p124, +Sh7,,1900,EA065,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p124, +Sh8,with special reference to those of the Argentine Chaco,1964,EA065,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p124, +Sh9,Those in contact with mission,1890,EA065,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p124, +Si1,Kejara,1920,EA065,10,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA065,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA065,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p124, +Si3,Simao Lopes,1940,EA065,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA065,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p124, +Si5,,1940,EA065,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si6,,,EA065,NA,,,, +Si7,,,EA065,NA,,,, +Si8,,1940,EA065,9,,oberg1953:1-144,EthnographicAtlas_1967_p124, +Si9,,,EA065,NA,,,, +Sj1,,1950,EA065,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p124, +Sj10,Taquapiri,1950,EA065,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA065,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA065,9,,nimuendaju1942,EthnographicAtlas_1967_p124, +Sj3,Duque de Caxias Reservation,1910,EA065,10,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p124, +Sj4,Ramcocamecra or Canella,1930,EA065,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p124, +Sj5,Naknenuk subtribe,1880,EA065,10,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p124, +Sj6,with special reference to the Guajajara subgroup,1930,EA065,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p124,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA065,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p124, +Sj8,Hinterland of Rio de Janeiro,1600,EA065,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p124, +Sj9,,1950,EA065,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p124, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA065,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA065,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA065,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA065,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA065,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA065,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA065,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA065,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA065,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA065,9,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA065,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA065,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA065,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA065,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA065,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA065,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA065,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA065,10,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA065,10,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA065,10,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA065,10,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA065,10,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA065,10,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA065,10,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA065,10,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA065,10,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA065,10,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA066,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA066,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA066,2,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA066,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA066,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA066,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA066,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA066,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA066,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA066,2,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA066,2,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA066,4,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA066,4,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA066,3,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA066,4,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,1860,EA066,2,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,,EA066,NA,,,, +Ab17,,,EA066,NA,,,, +Ab18,,,EA066,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA066,4,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA066,4,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA066,4,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA066,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA066,NA,,,, +Ab22,,,EA066,NA,,,, +Ab3,Ruling Luyana,1890,EA066,4,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA066,4,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA066,4,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA066,4,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA066,4,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA066,4,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA066,3,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA066,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA066,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA066,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA066,4,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA066,1,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA066,4,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA066,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,,EA066,NA,,,, +Ac17,Feshi territory lineage center,1910,EA066,4,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,,EA066,NA,,,, +Ac19,,,EA066,NA,,,, +Ac2,,1920,EA066,4,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,,EA066,NA,,,, +Ac21,,1910,EA066,4,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,,EA066,NA,,,, +Ac23,with special reference to the western Lele,1950,EA066,4,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA066,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA066,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA066,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA066,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,,EA066,NA,,,, +Ac29,,,EA066,NA,,,, +Ac3,Zambia branch,1900,EA066,4,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA066,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA066,4,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA066,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA066,4,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA066,4,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,,EA066,NA,,,, +Ac36,,1920,EA066,4,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA066,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA066,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA066,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA066,4,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA066,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA066,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA066,1,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA066,NA,,,, +Ac5,,1920,EA066,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,,EA066,NA,,,, +Ac7,,1920,EA066,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA066,4,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA066,4,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA066,1,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA066,4,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA066,4,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA066,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA066,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA066,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA066,4,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA066,4,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA066,4,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,,EA066,NA,,,, +Ad19,,1910,EA066,4,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA066,4,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA066,4,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA066,4,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA066,4,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA066,4,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA066,4,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA066,1,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA066,1,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA066,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA066,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA066,4,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA066,4,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,,EA066,NA,,,, +Ad31,,,EA066,NA,,,, +Ad32,,1900,EA066,1,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA066,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,,EA066,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA066,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA066,4,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA066,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA066,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA066,3,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA066,2,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA066,NA,,,, +Ad41,,1930,EA066,2,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA066,4,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,1900,EA066,4,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA066,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,1920,EA066,3,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA066,4,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA066,4,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA066,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA066,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA066,2,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA066,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA066,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA066,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA066,4,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA066,4,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA066,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA066,1,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA066,5,"Ethnic classes or castes of herders, tillers, and hunters",czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA066,1,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA066,2,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA066,4,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA066,4,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA066,5,"Ethnic classes or castes of herders, tillers, and hunters",schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,,EA066,NA,,,, +Ae17,,1900,EA066,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA066,2,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA066,4,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA066,2,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA066,2,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA066,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA066,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA066,1,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA066,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA066,2,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA066,4,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,,,EA066,NA,,,, +Ae28,,1900,EA066,2,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA066,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA066,2,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA066,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA066,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA066,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA066,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA066,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA066,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA066,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA066,1,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA066,1,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA066,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA066,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,,EA066,NA,,,, +Ae41,,1940,EA066,1,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA066,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA066,1,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA066,4,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA066,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,,EA066,NA,,,, +Ae47,,1900,EA066,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA066,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,,EA066,NA,,,, +Ae5,,1910,EA066,4,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA066,4,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA066,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,,EA066,NA,,,, +Ae53,,,EA066,NA,,,, +Ae54,,,EA066,NA,,,, +Ae55,,,EA066,NA,,,, +Ae56,,1950,EA066,4,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,,EA066,NA,,,, +Ae58,,1910,EA066,4,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA066,1,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA066,4,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA066,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA066,5,"Ethnic classes or castes of herders, tillers, and hunters",bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA066,4,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA066,4,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA066,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA066,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,,,EA066,NA,,,, +Af13,,1920,EA066,4,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,,EA066,NA,,,, +Af15,,1920,EA066,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA066,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA066,NA,,,, +Af18,,,EA066,NA,,,, +Af19,,1950,EA066,2,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA066,1,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA066,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA066,4,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA066,4,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA066,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA066,4,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA066,2,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA066,2,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA066,2,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,,EA066,NA,,,, +Af29,,1950,EA066,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA066,4,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,,EA066,NA,,,, +Af31,with special reference to the Lafia,1960,EA066,1,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA066,4,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA066,4,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA066,4,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA066,NA,,,, +Af36,with special reference to the Glidyi,1900,EA066,4,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA066,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA066,NA,,,, +Af39,with special reference to the Ndenie,1900,EA066,4,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA066,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA066,4,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA066,3,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA066,4,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,,EA066,NA,,,, +Af44,,1900,EA066,1,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA066,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,,EA066,NA,,,, +Af47,,1940,EA066,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA066,NA,,,, +Af49,,1940,EA066,1,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA066,4,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,,EA066,NA,,,, +Af51,,1920,EA066,1,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA066,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA066,NA,,,, +Af54,,1930,EA066,1,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,1950,EA066,2,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,,,EA066,NA,,,, +Af57,,,EA066,NA,,,, +Af58,,,EA066,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA066,5,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA066,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA066,5,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA066,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA066,4,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA066,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA066,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA066,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,,EA066,NA,,,, +Ag14,,1950,EA066,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA066,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA066,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,1940,EA066,3,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA066,1,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA066,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA066,5,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA066,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA066,1,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA066,4,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA066,2,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,,EA066,NA,,,, +Ag25,,1900,EA066,4,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,,EA066,NA,,,, +Ag27,,1910,EA066,2,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA066,5,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,,EA066,NA,,,, +Ag3,,1930,EA066,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA066,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA066,1,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA066,1,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,,EA066,NA,,,, +Ag34,,1930,EA066,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA066,1,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA066,NA,,,, +Ag37,,1910,EA066,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA066,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA066,1,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA066,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA066,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA066,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA066,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,,EA066,NA,,,, +Ag44,,1910,EA066,4,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA066,4,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA066,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA066,4,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA066,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA066,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA066,1,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA066,1,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA066,1,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,,EA066,NA,,,, +Ag53,,,EA066,NA,,,, +Ag54,,1910,EA066,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA066,4,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA066,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA066,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA066,4,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA066,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA066,1,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,,EA066,NA,,,, +Ah12,,,EA066,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA066,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA066,1,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA066,2,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA066,4,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,,EA066,NA,,,, +Ah18,,,EA066,NA,,,, +Ah19,,1930,EA066,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA066,4,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA066,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA066,NA,,,, +Ah22,,1900,EA066,1,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,,EA066,NA,,,, +Ah24,,1920,EA066,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA066,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA066,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA066,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA066,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA066,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA066,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA066,1,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA066,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA066,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA066,1,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA066,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA066,1,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA066,4,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA066,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA066,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA066,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA066,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA066,1,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA066,1,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA066,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA066,4,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA066,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA066,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA066,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA066,4,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA066,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA066,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,,EA066,NA,,,, +Ai15,,,EA066,NA,,,, +Ai16,,,EA066,NA,,,, +Ai17,,,EA066,NA,,,, +Ai18,,1880,EA066,4,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA066,NA,,,, +Ai2,,1940,EA066,1,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA066,1,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA066,4,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,1890,EA066,1,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA066,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA066,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA066,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA066,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA066,NA,,,, +Ai28,,1910,EA066,1,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA066,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA066,4,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA066,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,1920,EA066,4,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA066,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA066,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA066,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA066,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA066,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA066,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA066,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA066,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA066,NA,,,, +Ai40,,1940,EA066,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA066,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA066,1,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA066,1,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,1920,EA066,4,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p77, +Ai45,,,EA066,NA,,,, +Ai46,,1930,EA066,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA066,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,1920,EA066,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA066,5,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA066,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA066,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA066,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA066,1,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA066,1,But there is a royal lineage,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA066,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,1920,EA066,2,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,1930,EA066,3,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA066,1,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA066,3,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA066,2,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA066,4,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA066,NA,,,, +Aj19,,1920,EA066,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA066,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,,EA066,NA,,,, +Aj21,,1930,EA066,2,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,,EA066,NA,,,, +Aj23,,1950,EA066,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,,EA066,NA,,,, +Aj25,,1920,EA066,2,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA066,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,,EA066,NA,,,, +Aj28,,1940,EA066,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA066,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA066,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA066,NA,,,, +Aj31,,,EA066,NA,,,, +Aj4,,1920,EA066,2,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA066,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA066,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA066,1,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA066,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA066,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA066,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA066,2,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA066,1,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA066,4,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,,,EA066,NA,,,, +Ca14,,1950,EA066,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,,EA066,NA,,,, +Ca16,,,EA066,NA,,,, +Ca17,,1950,EA066,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca18,,,EA066,NA,,,, +Ca19,,1950,EA066,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA066,2,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA066,NA,,,, +Ca21,,1950,EA066,1,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA066,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,,EA066,NA,,,, +Ca24,,,EA066,NA,,,, +Ca25,,,EA066,NA,,,, +Ca26,,,EA066,NA,,,, +Ca27,,1930,EA066,3,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA066,4,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA066,4,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA066,5,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA066,4,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA066,2,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA066,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA066,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA066,NA,,,, +Ca35,,,EA066,NA,,,, +Ca36,,1860,EA066,3,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA066,3,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA066,3,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA066,5,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA066,2,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA066,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA066,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA066,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA066,NA,,,, +Ca5,,1930,EA066,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,1880,EA066,2,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA066,5,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,,EA066,NA,,,, +Ca9,,,EA066,NA,,,, +Cb1,,1940,EA066,4,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA066,1,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA066,NA,,,, +Cb12,,,EA066,NA,,,, +Cb13,,,EA066,NA,,,, +Cb14,,,EA066,NA,,,, +Cb15,with special reference to the Humr,1940,EA066,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,,EA066,NA,,,, +Cb17,Jebel Marra,1880,EA066,4,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA066,4,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA066,4,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA066,5,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,,EA066,NA,,,, +Cb21,,1930,EA066,1,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA066,3,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA066,4,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA066,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA066,2,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA066,5,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,,EA066,NA,,,, +Cb28,,,EA066,NA,,,, +Cb29,,,EA066,NA,,,, +Cb3,Bamba division,1940,EA066,5,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA066,2,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA066,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA066,4,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA066,4,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA066,2,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA066,4,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA066,5,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA066,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA066,3,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA066,3,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA066,3,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA066,4,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA066,3,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA066,3,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,1930,EA066,3,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA066,3,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA066,3,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA066,4,All sources except Fuchs stress sharp class differentiation,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA066,3,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA066,2,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA066,4,The primary distinction is between a literate class with religious and clerical functions and the illiterate common people,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA066,3,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA066,2,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA066,3,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA066,3,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA066,3,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA066,2,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA066,2,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA066,4,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA066,5,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA066,2,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,,EA066,NA,,,, +Cd15,,1910,EA066,2,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA066,5,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA066,2,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA066,3,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA066,5,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA066,5,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,,EA066,NA,,,, +Cd21,,1930,EA066,5,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA066,2,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA066,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA066,1,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA066,5,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA066,2,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA066,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA066,NA,Sharp class distinctions are lacking,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA066,1,"But 'complex stratification' (code ""5"") in the urban population",coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA066,5,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,City and environs of Rome,100,EA066,5,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA066,5,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA066,5,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA066,5,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA066,5,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA066,5,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA066,5,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA066,3,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA066,1,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA066,5,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA066,5,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA066,5,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA066,3,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA066,5,For the Irish in general,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA066,2,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA066,5,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA066,5,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA066,NA,,,, +Ch11,Viriatino Village,1955,EA066,5,But officially disclaimed,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA066,2,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA066,5,,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA066,3,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA066,5,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA066,5,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,1930,EA066,5,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,1940,EA066,5,,hanzeli1955,EthnographicAtlas_1967_p85, +Ch9,,1930,EA066,5,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA066,4,"But formerly D [sic, Gray (1999)]",aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA066,2,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA066,4,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA066,5,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA066,1,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA066,NA,,,, +Ci4,,1920,EA066,4,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA066,5,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA066,4,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,,EA066,NA,,,, +Ci8,,1850,EA066,4,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA066,NA,A small feudal aristocracy of outside origin is reported,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA066,3,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA066,4,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA066,2,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA066,4,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA066,5,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,,EA066,NA,,,, +Cj6,with special reference to the sedentary population,1950,EA066,5,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA066,5,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA066,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA066,4,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA066,3,,bordiend; wilber1964,EthnographicAtlas_1967_p89, +Ea10,with special reference to the more nomadic groups,1950,EA066,4,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA066,5,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA066,4,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA066,4,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA066,5,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA066,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA066,3,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA066,2,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA066,2,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA066,2,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,1920,EA066,4,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,1950,EA066,3,,vreeland1957,EthnographicAtlas_1967_p89, +Eb1,Great Horde,1910,EA066,4,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA066,4,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA066,4,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA066,1,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA066,4,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA066,4,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA066,4,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA066,NA,,,, +Ec1,Sakhalin Island,1920,EA066,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA066,2,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA066,2,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA066,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA066,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA066,2,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA066,2,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA066,1,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA066,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA066,1,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA066,1,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA066,5,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA066,5,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA066,NA,,,, +Ed14,,,EA066,NA,,,, +Ed15a,,,EA066,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA066,5,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA066,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA066,4,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA066,2,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA066,1,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA066,5,"For the region, but 'absent' (code ""1"") in the hamlet",beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA066,5,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA066,4,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA066,2,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA066,2,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA066,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,Hunza State,1930,EA066,5,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p89, +Ee3,Lingthem and vicinity,1930,EA066,2,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA066,5,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA066,4,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA066,2,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA066,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA066,5,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA066,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA066,NA,,,, +Ef11,Village and environs of Senapur,1945,EA066,4,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA066,5,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA066,NA,,,, +Ef4,,1920,EA066,4,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA066,5,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,,EA066,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA066,5,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA066,5,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA066,5,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA066,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA066,5,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA066,NA,,,, +Eg12,,,EA066,NA,,,, +Eg13,Bastar State,1941,EA066,1,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA066,1,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA066,5,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA066,2,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA066,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA066,5,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA066,5,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,,,EA066,NA,,,, +Eg8,,,EA066,NA,,,, +Eg9,,1930,EA066,1,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA066,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA066,NA,,,, +Eh2,,1900,EA066,4,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA066,4,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA066,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA066,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA066,5,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA066,4,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA066,4,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA066,4,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA066,2,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA066,NA,,,, +Ei11,,1910,EA066,2,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA066,2,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA066,2,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA066,2,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA066,NA,,,, +Ei16,,1910,EA066,4,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA066,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA066,2,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA066,4,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA066,2,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA066,NA,,,, +Ei3,Nondwin Village,1950,EA066,5,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA066,4,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA066,4,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA066,2,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA066,2,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA066,4,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,,EA066,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA066,2,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA066,2,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA066,4,,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA066,4,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA066,4,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA066,1,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA066,5,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA066,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA066,2,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA066,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA066,5,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA066,5,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,of the Mergui Archipelago,1920,EA066,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p93, +Ej7,,1950,EA066,1,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA066,4,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA066,2,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA066,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA066,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,1930,EA066,4,,mabuchi1960,EthnographicAtlas_1967_p93, +Ia12,,1950,EA066,5,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,Tawi-Tawi and adjacent islands,1960,EA066,2,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA066,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,with special reference to those of the Agusan Valley,1920,EA066,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA066,2,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA066,NA,,,, +Ia18,,,EA066,NA,,,, +Ia2,,1950,EA066,2,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA066,2,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA066,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA066,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA066,4,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA066,4,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA066,3,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA066,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA066,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA066,5,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA066,5,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA066,2,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA066,2,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA066,4,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA066,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,with special reference to the Ridan group,1900,EA066,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA066,NA,,,, +Ic1,Borongloe,1940,EA066,4,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA066,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA066,4,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA066,1,"But 'dual stratification' (code ""4"") on the coast",goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA066,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA066,2,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p97, +Ic3,with special reference to the Mountain Belu,1950,EA066,4,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,1920,EA066,4,,kruyt1921; wetering1925,Ethnology_Vol2_No1_Jan_1963, +Ic5,Bare'e subgroup,1910,EA066,2,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA066,4,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA066,4,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA066,1,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA066,4,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA066,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA066,1,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA066,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA066,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA066,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA066,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA066,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,1900,EA066,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p97, +Id5,,1910,EA066,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p97, +Id6,with special reference to the Archer River group,1920,EA066,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p97, +Id7,,,EA066,NA,,,, +Id8,,1830,EA066,1,,roth1890,EthnographicAtlas_1967_p97, +Id9,,1910,EA066,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p97, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA066,2,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA066,2,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA066,1,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA066,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA066,1,,landtman1927,EthnographicAtlas_1967_p97, +Ie14,,1900,EA066,1,,haddon1908,EthnographicAtlas_1967_p97, +Ie15,Kalabu; Northern Abelam,1930,EA066,1,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA066,1,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA066,2,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA066,1,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA066,1,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA066,1,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA066,4,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA066,1,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA066,4,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA066,1,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA066,2,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA066,2,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA066,1,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA066,1,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA066,2,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA066,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA066,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA066,1,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA066,2,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA066,2,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA066,1,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA066,NA,,,, +Ie35,,1930,EA066,1,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA066,NA,,,, +Ie37,,,EA066,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA066,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA066,2,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA066,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA066,1,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA066,1,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA066,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA066,2,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA066,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA066,4,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA066,NA,,,, +If11,,1860,EA066,4,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,1940,EA066,1,,mason1954,EthnographicAtlas_1967_p101, +If13,,1900,EA066,4,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p101, +If14,Makin and Butiritari Islands (N),1890,EA066,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA066,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,1960,EA066,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA066,4,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA066,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA066,4,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA066,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA066,4,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA066,4,"Complex stratification into nine social classes and seven ranks, of which three form an endogamous upper caste and four an endogamous lower caste",huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA066,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA066,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA066,1,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA066,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,1950,EA066,1,,schwartz1964,EthnographicAtlas_1967_p101, +Ig11,,1920,EA066,2,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,with special reference to the Varisi,1900,EA066,2,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA066,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA066,2,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA066,NA,,,, +Ig16,,,EA066,NA,,,, +Ig17,,,EA066,NA,,,, +Ig18,,,EA066,NA,,,, +Ig19,,,EA066,NA,,,, +Ig2,Kiriwina Island,1910,EA066,4,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA066,2,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA066,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA066,4,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA066,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA066,1,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA066,1,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA066,2,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA066,NA,,,, +Ig9,Peri Village,1920,EA066,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA066,2,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA066,4,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA066,NA,,,, +Ih12,,,EA066,NA,,,, +Ih13,,,EA066,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA066,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA066,2,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA066,2,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA066,2,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA066,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,1890,EA066,4,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p101, +Ih7,,1910,EA066,4,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA066,1,,quain1949,EthnographicAtlas_1967_p101, +Ih9,Graciosa Bay,1930,EA066,2,,davenport1964,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA066,4,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA066,4,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA066,4,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA066,4,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA066,4,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA066,4,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA066,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA066,4,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA066,2,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA066,1,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA066,4,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA066,4,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA066,4,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA066,4,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,,EA066,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA066,4,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA066,4,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA066,4,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA066,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA066,4,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA066,4,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA066,4,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA066,4,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA066,1,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA066,4,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,,EA066,NA,,,, +Na12,,1950,EA066,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA066,1,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA066,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA066,1,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA066,1,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA066,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA066,4,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA066,2,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA066,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA066,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA066,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA066,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA066,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA066,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA066,4,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA066,2,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA066,1,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA066,1,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA066,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA066,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA066,1,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA066,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA066,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA066,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA066,1,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA066,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA066,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA066,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA066,1,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA066,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA066,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA066,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,Prairie Potawatomi,1760,EA066,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p105, +Na43,,1920,EA066,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA066,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA066,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA066,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA066,2,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA066,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA066,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA066,4,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA066,4,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA066,4,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA066,4,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA066,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA066,2,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA066,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA066,4,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA066,4,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA066,2,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA066,4,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA066,4,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA066,2,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA066,4,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA066,2,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA066,4,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA066,4,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA066,4,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA066,4,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA066,2,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA066,4,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA066,2,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA066,2,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA066,4,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA066,2,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA066,2,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA066,2,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA066,2,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA066,2,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA066,2,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA066,2,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA066,2,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA066,2,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA066,2,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA066,2,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA066,2,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA066,2,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA066,4,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA066,4,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA066,4,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA066,2,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA066,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA066,2,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA066,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA066,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA066,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA066,1,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA066,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,,,EA066,NA,,,, +Nc18,"Clear Lake, Village of Cignon",1860,EA066,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA066,2,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA066,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,,EA066,NA,,,, +Nc21,,1860,EA066,2,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA066,2,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA066,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA066,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA066,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA066,2,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA066,2,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA066,2,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA066,2,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA066,2,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA066,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA066,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA066,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA066,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA066,1,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA066,2,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA066,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA066,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA066,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA066,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA066,2,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA066,2,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA066,2,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA066,1,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA066,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA066,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA066,2,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA066,1,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA066,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA066,2,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA066,2,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA066,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA066,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA066,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA066,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA066,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA066,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA066,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA066,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA066,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA066,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA066,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA066,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA066,1,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA066,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA066,1,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA066,1,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA066,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA066,1,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA066,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA066,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA066,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA066,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA066,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA066,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA066,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA066,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA066,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA066,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA066,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA066,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA066,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA066,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA066,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA066,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA066,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA066,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA066,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA066,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA066,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA066,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA066,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA066,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA066,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA066,1,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA066,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA066,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA066,2,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA066,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,,EA066,NA,,,, +Ne11,,1870,EA066,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA066,2,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA066,2,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA066,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA066,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA066,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA066,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA066,2,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA066,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA066,1,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA066,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA066,NA,,,, +Ne3,Comanche Tribe,1870,EA066,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA066,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA066,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA066,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA066,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA066,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA066,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA066,4,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA066,4,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA066,4,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA066,1,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA066,3,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA066,NA,,,, +Nf2,,1850,EA066,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA066,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA066,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA066,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA066,4,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA066,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA066,4,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,1870,EA066,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p117, +Ng1,Bear and Cord Subtribes,1640,EA066,2,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA066,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA066,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA066,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA066,NA,,,, +Ng14,,,EA066,NA,,,, +Ng15,,,EA066,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA066,1,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA066,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA066,1,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA066,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA066,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA066,3,Four social classes with caste-like features,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA066,4,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,1920,EA066,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA066,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA066,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA066,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA066,2,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA066,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA066,1,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA066,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA066,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA066,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA066,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA066,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA066,1,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,1860,EA066,1,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA066,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA066,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA066,1,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA066,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA066,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA066,NA,,,, +Nh27,,,EA066,NA,,,, +Nh3,,1930,EA066,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA066,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA066,1,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA066,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA066,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA066,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA066,1,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA066,2,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA066,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA066,2,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA066,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA066,1,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA066,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA066,1,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA066,NA,,,, +Ni9,,,EA066,NA,,,, +Nj1,,,EA066,NA,,,, +Nj10,,,EA066,NA,,,, +Nj11,,,EA066,NA,,,, +Nj12,,,EA066,NA,,,, +Nj13,,,EA066,NA,,,, +Nj14,,,EA066,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA066,5,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA066,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,,EA066,NA,,,, +Nj5,,,EA066,NA,,,, +Nj6,with special reference to San Mateo,1950,EA066,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,,,EA066,NA,,,, +Nj8,,1500,EA066,4,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA066,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA066,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA066,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,1880,EA066,4,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA066,4,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA066,2,"But aboriginally 'dual stratification' (code ""4"")",bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA066,NA,,,, +Sa15,,,EA066,NA,,,, +Sa16,,,EA066,NA,,,, +Sa17,,,EA066,NA,,,, +Sa2,,,EA066,NA,,,, +Sa3,,1930,EA066,5,"Though the Choroti themselves are egalitarian, the coresident Ladinos are stratified into classes",wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA066,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA066,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA066,5,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,1940,EA066,1,"Though egalitarian themselves, the Black Carib form an ethnic caste in Honduran society",solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA066,2,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA066,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA066,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA066,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA066,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA066,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA066,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA066,2,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,with special reference to the Pariri,1950,EA066,1,,wilbert1961b,EthnographicAtlas_1967_p121, +Sb8,,1520,EA066,4,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA066,5,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA066,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,1900,EA066,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p121, +Sc11,,1930,EA066,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p121, +Sc12,,1910,EA066,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,1950,EA066,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA066,NA,,,, +Sc15,,1910,EA066,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA066,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA066,1,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA066,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA066,1,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA066,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA066,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA066,1,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA066,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA066,1,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA066,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,1950,EA066,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p121, +Sd1,Cabrura village,1950,EA066,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA066,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,1920,EA066,1,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,1950,EA066,1,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA066,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA066,1,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA066,1,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA066,1,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA066,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA066,1,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA066,2,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA066,1,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA066,NA,,,, +Se2,,1940,EA066,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA066,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA066,1,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA066,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA066,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA066,3,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA066,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA066,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA066,5,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA066,2,But the Aymara form a lower caste in Bolivian society,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA066,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA066,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,,EA066,NA,,,, +Sf6,,1540,EA066,4,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA066,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA066,NA,,,, +Sf9,,,EA066,NA,,,, +Sg1,Eastern and central,1870,EA066,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA066,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA066,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA066,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA066,1,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA066,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA066,4,Land is owned collectively by extended families,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA066,4,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA066,4,"Formerly D [sic, Gray (1999)]",oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA066,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA066,4,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,,EA066,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA066,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA066,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,Kejara,1920,EA066,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA066,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA066,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA066,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA066,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA066,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA066,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA066,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA066,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA066,NA,,,, +Sj1,,1950,EA066,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,Taquapiri,1950,EA066,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA066,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA066,1,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA066,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA066,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA066,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA066,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA066,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA066,2,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA066,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA066,5,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA066,2,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA066,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA066,3,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA066,5,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA066,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA066,2,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA066,2,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA066,5,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA066,5,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA066,5,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA066,5,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA066,2,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA066,5,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA066,2,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA066,2,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA066,2,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA066,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA066,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA066,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA066,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA066,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA066,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA066,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA066,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA066,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA066,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA067,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA067,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA067,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA067,9,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA067,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA067,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA067,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA067,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA067,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA067,9,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA067,9,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA067,2,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA067,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA067,4,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA067,9,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,1860,EA067,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,,EA067,NA,,,, +Ab17,,,EA067,NA,,,, +Ab18,,,EA067,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA067,2,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA067,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA067,9,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA067,9,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA067,NA,,,, +Ab22,,,EA067,NA,,,, +Ab3,Ruling Luyana,1890,EA067,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA067,9,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA067,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA067,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA067,9,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA067,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA067,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA067,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA067,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA067,9,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA067,9,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA067,9,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA067,9,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA067,9,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,,EA067,NA,,,, +Ac17,Feshi territory lineage center,1910,EA067,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,,EA067,NA,,,, +Ac19,,,EA067,NA,,,, +Ac2,,1920,EA067,9,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,,EA067,NA,,,, +Ac21,,1910,EA067,9,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,,EA067,NA,,,, +Ac23,with special reference to the western Lele,1950,EA067,9,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA067,9,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA067,9,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA067,9,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA067,9,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,,EA067,NA,,,, +Ac29,,,EA067,NA,,,, +Ac3,Zambia branch,1900,EA067,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA067,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA067,9,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA067,9,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA067,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA067,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,,EA067,NA,,,, +Ac36,,1920,EA067,9,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA067,9,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA067,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA067,9,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA067,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA067,9,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA067,9,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA067,9,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA067,NA,,,, +Ac5,,1920,EA067,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,,EA067,NA,,,, +Ac7,,1920,EA067,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA067,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA067,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA067,9,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA067,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA067,9,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA067,9,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA067,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA067,9,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA067,9,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA067,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA067,9,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,,EA067,NA,,,, +Ad19,,1910,EA067,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA067,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA067,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA067,9,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA067,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA067,9,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA067,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA067,9,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA067,9,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA067,9,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA067,9,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA067,9,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA067,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,,EA067,NA,,,, +Ad31,,,EA067,NA,,,, +Ad32,,1900,EA067,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA067,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,,EA067,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA067,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA067,9,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA067,9,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA067,9,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA067,9,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA067,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA067,NA,,,, +Ad41,,1930,EA067,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA067,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,1900,EA067,9,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA067,9,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,1920,EA067,9,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA067,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA067,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA067,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA067,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA067,9,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA067,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA067,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA067,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA067,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA067,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA067,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA067,9,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA067,9,"Ethnic classes or castes of herders, tillers, and hunters",czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA067,9,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA067,9,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA067,9,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA067,9,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA067,9,"Ethnic classes or castes of herders, tillers, and hunters",schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,,EA067,NA,,,, +Ae17,,1900,EA067,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA067,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA067,9,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA067,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA067,9,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA067,9,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA067,9,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA067,9,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA067,9,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA067,9,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA067,9,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,,,EA067,NA,,,, +Ae28,,1900,EA067,9,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA067,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA067,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA067,9,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA067,9,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA067,9,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA067,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA067,9,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA067,9,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA067,9,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA067,9,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA067,9,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA067,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA067,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,,EA067,NA,,,, +Ae41,,1940,EA067,9,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA067,9,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA067,9,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA067,9,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA067,9,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,,EA067,NA,,,, +Ae47,,1900,EA067,9,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA067,9,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,,EA067,NA,,,, +Ae5,,1910,EA067,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA067,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA067,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,,EA067,NA,,,, +Ae53,,,EA067,NA,,,, +Ae54,,,EA067,NA,,,, +Ae55,,,EA067,NA,,,, +Ae56,,1950,EA067,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,,EA067,NA,,,, +Ae58,,1910,EA067,9,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA067,9,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA067,9,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA067,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA067,9,"Ethnic classes or castes of herders, tillers, and hunters",bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA067,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA067,5,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA067,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA067,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,,,EA067,NA,,,, +Af13,,1920,EA067,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,,EA067,NA,,,, +Af15,,1920,EA067,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA067,9,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA067,NA,,,, +Af18,,,EA067,NA,,,, +Af19,,1950,EA067,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA067,9,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA067,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA067,9,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA067,9,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA067,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA067,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA067,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA067,9,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA067,9,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,,EA067,NA,,,, +Af29,,1950,EA067,9,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA067,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,,EA067,NA,,,, +Af31,with special reference to the Lafia,1960,EA067,9,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA067,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA067,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA067,9,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA067,NA,,,, +Af36,with special reference to the Glidyi,1900,EA067,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA067,9,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA067,NA,,,, +Af39,with special reference to the Ndenie,1900,EA067,9,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA067,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA067,9,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA067,9,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA067,9,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,,EA067,NA,,,, +Af44,,1900,EA067,9,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA067,9,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,,EA067,NA,,,, +Af47,,1940,EA067,9,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA067,NA,,,, +Af49,,1940,EA067,9,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA067,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,,EA067,NA,,,, +Af51,,1920,EA067,9,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA067,9,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA067,NA,,,, +Af54,,1930,EA067,9,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,1950,EA067,9,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,,,EA067,NA,,,, +Af57,,,EA067,NA,,,, +Af58,,,EA067,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA067,4,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA067,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA067,4,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA067,9,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA067,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA067,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA067,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA067,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,,EA067,NA,,,, +Ag14,,1950,EA067,9,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA067,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA067,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,1940,EA067,9,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA067,9,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA067,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA067,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA067,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA067,9,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA067,5,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA067,9,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,,EA067,NA,,,, +Ag25,,1900,EA067,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,,EA067,NA,,,, +Ag27,,1910,EA067,9,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA067,9,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,,EA067,NA,,,, +Ag3,,1930,EA067,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA067,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA067,9,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA067,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,,EA067,NA,,,, +Ag34,,1930,EA067,9,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA067,9,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA067,NA,,,, +Ag37,,1910,EA067,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA067,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA067,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA067,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA067,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA067,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA067,9,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,,EA067,NA,,,, +Ag44,,1910,EA067,9,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA067,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA067,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA067,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA067,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA067,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA067,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA067,9,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA067,9,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,,EA067,NA,,,, +Ag53,,,EA067,NA,,,, +Ag54,,1910,EA067,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA067,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA067,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA067,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA067,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA067,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA067,9,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,,EA067,NA,,,, +Ah12,,,EA067,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA067,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA067,9,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA067,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA067,9,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,,EA067,NA,,,, +Ah18,,,EA067,NA,,,, +Ah19,,1930,EA067,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA067,9,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA067,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA067,NA,,,, +Ah22,,1900,EA067,9,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,,EA067,NA,,,, +Ah24,,1920,EA067,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA067,9,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA067,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA067,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA067,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA067,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA067,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA067,9,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA067,9,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA067,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA067,9,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA067,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA067,9,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA067,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA067,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA067,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA067,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA067,9,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA067,9,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA067,9,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA067,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA067,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA067,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA067,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA067,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA067,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA067,9,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA067,9,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,,EA067,NA,,,, +Ai15,,,EA067,NA,,,, +Ai16,,,EA067,NA,,,, +Ai17,,,EA067,NA,,,, +Ai18,,1880,EA067,9,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA067,NA,,,, +Ai2,,1940,EA067,9,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA067,9,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA067,9,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,1890,EA067,9,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA067,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA067,9,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA067,9,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA067,9,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA067,NA,,,, +Ai28,,1910,EA067,9,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA067,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA067,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA067,9,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,1920,EA067,9,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA067,9,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA067,9,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA067,9,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA067,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA067,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA067,9,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA067,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA067,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA067,NA,,,, +Ai40,,1940,EA067,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA067,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA067,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA067,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,1920,EA067,9,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p77, +Ai45,,,EA067,NA,,,, +Ai46,,1930,EA067,9,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA067,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,1920,EA067,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA067,4,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA067,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA067,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA067,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA067,9,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA067,9,But there is a royal lineage,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA067,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,1920,EA067,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,1930,EA067,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA067,9,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA067,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA067,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA067,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA067,NA,,,, +Aj19,,1920,EA067,9,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA067,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,,EA067,NA,,,, +Aj21,,1930,EA067,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,,EA067,NA,,,, +Aj23,,1950,EA067,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,,EA067,NA,,,, +Aj25,,1920,EA067,9,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA067,9,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,,EA067,NA,,,, +Aj28,,1940,EA067,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA067,9,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA067,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA067,NA,,,, +Aj31,,,EA067,NA,,,, +Aj4,,1920,EA067,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA067,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA067,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA067,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA067,9,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA067,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA067,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA067,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA067,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA067,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,,,EA067,NA,,,, +Ca14,,1950,EA067,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,,EA067,NA,,,, +Ca16,,,EA067,NA,,,, +Ca17,,1950,EA067,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca18,,,EA067,NA,,,, +Ca19,,1950,EA067,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA067,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA067,NA,,,, +Ca21,,1950,EA067,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA067,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,,EA067,NA,,,, +Ca24,,,EA067,NA,,,, +Ca25,,,EA067,NA,,,, +Ca26,,,EA067,NA,,,, +Ca27,,1930,EA067,9,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA067,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA067,9,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA067,4,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA067,9,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA067,9,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA067,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA067,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA067,NA,,,, +Ca35,,,EA067,NA,,,, +Ca36,,1860,EA067,9,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA067,9,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA067,9,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA067,9,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA067,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA067,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA067,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA067,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA067,NA,,,, +Ca5,,1930,EA067,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,1880,EA067,9,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA067,9,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,,EA067,NA,,,, +Ca9,,,EA067,NA,,,, +Cb1,,1940,EA067,5,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA067,9,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA067,NA,,,, +Cb12,,,EA067,NA,,,, +Cb13,,,EA067,NA,,,, +Cb14,,,EA067,NA,,,, +Cb15,with special reference to the Humr,1940,EA067,9,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,,EA067,NA,,,, +Cb17,Jebel Marra,1880,EA067,9,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA067,9,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA067,9,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA067,4,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,,EA067,NA,,,, +Cb21,,1930,EA067,9,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA067,9,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA067,9,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA067,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA067,9,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA067,4,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,,EA067,NA,,,, +Cb28,,,EA067,NA,,,, +Cb29,,,EA067,NA,,,, +Cb3,Bamba division,1940,EA067,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA067,9,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA067,9,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA067,9,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA067,9,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA067,9,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA067,5,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA067,3,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA067,9,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA067,9,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA067,9,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA067,9,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA067,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA067,9,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA067,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,1930,EA067,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA067,9,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA067,9,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA067,9,All sources except Fuchs stress sharp class differentiation,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA067,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA067,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA067,9,The primary distinction is between a literate class with religious and clerical functions and the illiterate common people,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA067,9,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA067,9,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA067,5,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA067,9,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA067,9,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA067,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA067,9,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA067,9,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA067,3,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA067,9,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,,EA067,NA,,,, +Cd15,,1910,EA067,9,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA067,9,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA067,9,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA067,9,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA067,9,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA067,3,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,,EA067,NA,,,, +Cd21,,1930,EA067,9,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA067,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA067,9,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA067,9,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA067,9,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA067,9,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA067,9,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA067,NA,Sharp class distinctions are lacking,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA067,9,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA067,9,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,City and environs of Rome,100,EA067,9,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA067,9,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA067,9,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA067,9,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA067,9,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA067,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA067,9,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA067,9,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA067,9,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA067,9,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA067,9,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA067,9,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA067,2,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA067,9,For the Irish in general,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA067,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA067,9,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA067,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA067,NA,,,, +Ch11,Viriatino Village,1955,EA067,9,But officially disclaimed,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA067,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA067,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA067,9,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA067,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA067,9,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,1930,EA067,9,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,1940,EA067,9,,hanzeli1955,EthnographicAtlas_1967_p85, +Ch9,,1930,EA067,9,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA067,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA067,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA067,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA067,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA067,9,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA067,NA,,,, +Ci4,,1920,EA067,9,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA067,2,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA067,9,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,,EA067,NA,,,, +Ci8,,1850,EA067,9,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA067,NA,A small feudal aristocracy of outside origin is reported,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA067,5,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA067,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA067,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA067,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA067,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,,EA067,NA,,,, +Cj6,with special reference to the sedentary population,1950,EA067,9,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA067,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA067,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA067,9,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA067,9,,bordiend; wilber1964,EthnographicAtlas_1967_p89, +Ea10,with special reference to the more nomadic groups,1950,EA067,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA067,4,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA067,9,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA067,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA067,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA067,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA067,9,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA067,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA067,9,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA067,9,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,1920,EA067,9,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,1950,EA067,5,,vreeland1957,EthnographicAtlas_1967_p89, +Eb1,Great Horde,1910,EA067,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA067,9,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA067,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA067,9,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA067,9,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA067,9,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA067,2,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA067,NA,,,, +Ec1,Sakhalin Island,1920,EA067,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA067,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA067,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA067,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA067,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA067,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA067,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA067,9,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA067,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA067,9,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA067,9,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA067,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA067,9,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA067,NA,,,, +Ed14,,,EA067,NA,,,, +Ed15a,,,EA067,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA067,9,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA067,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA067,9,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA067,9,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA067,9,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA067,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA067,9,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA067,5,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA067,9,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA067,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA067,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,Hunza State,1930,EA067,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p89, +Ee3,Lingthem and vicinity,1930,EA067,9,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA067,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA067,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA067,9,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA067,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA067,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA067,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA067,NA,,,, +Ef11,Village and environs of Senapur,1945,EA067,3,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA067,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA067,NA,,,, +Ef4,,1920,EA067,9,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA067,9,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,,EA067,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA067,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA067,9,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA067,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA067,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA067,9,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA067,NA,,,, +Eg12,,,EA067,NA,,,, +Eg13,Bastar State,1941,EA067,9,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA067,9,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA067,9,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA067,9,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA067,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA067,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA067,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,,,EA067,NA,,,, +Eg8,,,EA067,NA,,,, +Eg9,,1930,EA067,9,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA067,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA067,NA,,,, +Eh2,,1900,EA067,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA067,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA067,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA067,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA067,9,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA067,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA067,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA067,9,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA067,9,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA067,NA,,,, +Ei11,,1910,EA067,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA067,9,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA067,9,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA067,9,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA067,NA,,,, +Ei16,,1910,EA067,3,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA067,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA067,9,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA067,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA067,9,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA067,NA,,,, +Ei3,Nondwin Village,1950,EA067,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA067,9,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA067,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA067,9,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA067,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA067,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,,EA067,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA067,9,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA067,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA067,9,,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA067,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA067,3,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA067,9,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA067,4,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA067,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA067,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA067,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA067,9,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA067,4,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,of the Mergui Archipelago,1920,EA067,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p93, +Ej7,,1950,EA067,9,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA067,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA067,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA067,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA067,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,1930,EA067,9,,mabuchi1960,EthnographicAtlas_1967_p93, +Ia12,,1950,EA067,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,Tawi-Tawi and adjacent islands,1960,EA067,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA067,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,with special reference to those of the Agusan Valley,1920,EA067,9,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA067,9,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA067,NA,,,, +Ia18,,,EA067,NA,,,, +Ia2,,1950,EA067,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA067,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA067,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA067,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA067,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA067,9,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA067,2,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA067,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA067,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA067,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA067,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA067,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA067,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA067,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA067,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,with special reference to the Ridan group,1900,EA067,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA067,NA,,,, +Ic1,Borongloe,1940,EA067,5,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA067,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA067,9,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA067,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA067,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA067,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p97, +Ic3,with special reference to the Mountain Belu,1950,EA067,9,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,1920,EA067,9,,kruyt1921; wetering1925,Ethnology_Vol2_No1_Jan_1963, +Ic5,Bare'e subgroup,1910,EA067,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA067,9,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA067,9,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA067,9,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA067,9,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA067,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA067,9,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA067,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA067,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA067,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA067,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA067,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,1900,EA067,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p97, +Id5,,1910,EA067,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p97, +Id6,with special reference to the Archer River group,1920,EA067,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p97, +Id7,,,EA067,NA,,,, +Id8,,1830,EA067,9,,roth1890,EthnographicAtlas_1967_p97, +Id9,,1910,EA067,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p97, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA067,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA067,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA067,2,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA067,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA067,9,,landtman1927,EthnographicAtlas_1967_p97, +Ie14,,1900,EA067,9,,haddon1908,EthnographicAtlas_1967_p97, +Ie15,Kalabu; Northern Abelam,1930,EA067,9,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA067,9,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA067,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA067,9,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA067,9,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA067,9,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA067,9,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA067,9,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA067,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA067,9,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA067,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA067,9,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA067,9,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA067,9,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA067,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA067,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA067,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA067,9,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA067,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA067,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA067,9,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA067,NA,,,, +Ie35,,1930,EA067,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA067,NA,,,, +Ie37,,,EA067,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA067,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA067,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA067,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA067,9,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA067,9,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA067,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA067,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA067,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA067,2,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA067,NA,,,, +If11,,1860,EA067,9,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,1940,EA067,9,,mason1954,EthnographicAtlas_1967_p101, +If13,,1900,EA067,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p101, +If14,Makin and Butiritari Islands (N),1890,EA067,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA067,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,1960,EA067,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA067,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA067,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA067,9,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA067,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA067,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA067,9,"Complex stratification into nine social classes and seven ranks, of which three form an endogamous upper caste and four an endogamous lower caste",huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA067,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA067,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA067,9,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA067,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,1950,EA067,9,,schwartz1964,EthnographicAtlas_1967_p101, +Ig11,,1920,EA067,9,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,with special reference to the Varisi,1900,EA067,9,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA067,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA067,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA067,NA,,,, +Ig16,,,EA067,NA,,,, +Ig17,,,EA067,NA,,,, +Ig18,,,EA067,NA,,,, +Ig19,,,EA067,NA,,,, +Ig2,Kiriwina Island,1910,EA067,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA067,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA067,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA067,2,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA067,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA067,9,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA067,9,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA067,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA067,NA,,,, +Ig9,Peri Village,1920,EA067,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA067,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA067,9,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA067,NA,,,, +Ih12,,,EA067,NA,,,, +Ih13,,,EA067,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA067,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA067,9,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA067,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA067,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA067,9,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,1890,EA067,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p101, +Ih7,,1910,EA067,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA067,9,,quain1949,EthnographicAtlas_1967_p101, +Ih9,Graciosa Bay,1930,EA067,9,,davenport1964,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA067,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA067,9,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA067,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA067,9,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA067,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA067,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA067,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA067,9,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA067,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA067,9,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA067,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA067,9,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA067,9,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA067,9,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,,EA067,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA067,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA067,5,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA067,9,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA067,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA067,3,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA067,9,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA067,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA067,9,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA067,9,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA067,9,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,,EA067,NA,,,, +Na12,,1950,EA067,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA067,9,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA067,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA067,9,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA067,9,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA067,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA067,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA067,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA067,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA067,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA067,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA067,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA067,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA067,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA067,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA067,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA067,9,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA067,9,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA067,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA067,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA067,9,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA067,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA067,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA067,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA067,9,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA067,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA067,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA067,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA067,9,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA067,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA067,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA067,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,Prairie Potawatomi,1760,EA067,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p105, +Na43,,1920,EA067,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA067,9,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA067,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA067,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA067,9,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA067,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA067,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA067,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA067,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA067,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA067,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA067,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA067,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA067,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA067,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA067,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA067,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA067,9,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA067,9,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA067,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA067,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA067,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA067,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA067,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA067,9,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA067,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA067,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA067,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA067,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA067,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA067,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA067,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA067,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA067,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA067,9,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA067,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA067,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA067,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA067,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA067,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA067,9,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA067,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA067,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA067,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA067,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA067,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA067,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA067,9,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA067,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA067,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA067,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA067,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA067,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA067,9,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA067,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,,,EA067,NA,,,, +Nc18,"Clear Lake, Village of Cignon",1860,EA067,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA067,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA067,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,,EA067,NA,,,, +Nc21,,1860,EA067,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA067,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA067,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA067,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA067,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA067,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA067,9,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA067,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA067,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA067,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA067,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA067,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA067,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA067,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA067,9,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA067,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA067,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA067,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA067,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA067,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA067,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA067,9,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA067,9,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA067,9,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA067,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA067,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA067,9,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA067,9,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA067,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA067,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA067,9,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA067,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA067,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA067,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA067,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA067,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA067,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA067,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA067,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA067,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA067,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA067,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA067,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA067,9,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA067,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA067,9,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA067,9,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA067,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA067,9,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA067,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA067,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA067,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA067,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA067,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA067,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA067,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA067,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA067,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA067,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA067,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA067,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA067,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA067,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA067,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA067,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA067,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA067,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA067,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA067,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA067,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA067,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA067,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA067,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA067,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA067,9,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA067,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA067,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA067,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA067,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,,EA067,NA,,,, +Ne11,,1870,EA067,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA067,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA067,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA067,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA067,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA067,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA067,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA067,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA067,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA067,9,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA067,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA067,NA,,,, +Ne3,Comanche Tribe,1870,EA067,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA067,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA067,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA067,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA067,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA067,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA067,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA067,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA067,9,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA067,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA067,9,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA067,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA067,NA,,,, +Nf2,,1850,EA067,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA067,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA067,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA067,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA067,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA067,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA067,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,1870,EA067,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p117, +Ng1,Bear and Cord Subtribes,1640,EA067,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA067,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA067,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA067,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA067,NA,,,, +Ng14,,,EA067,NA,,,, +Ng15,,,EA067,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA067,9,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA067,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA067,9,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA067,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA067,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA067,9,Four social classes with caste-like features,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA067,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,1920,EA067,9,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA067,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA067,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA067,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA067,9,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA067,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA067,9,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA067,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA067,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA067,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA067,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA067,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA067,9,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,1860,EA067,9,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA067,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA067,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA067,9,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA067,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA067,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA067,NA,,,, +Nh27,,,EA067,NA,,,, +Nh3,,1930,EA067,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA067,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA067,9,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA067,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA067,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA067,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA067,9,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA067,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA067,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA067,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA067,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA067,9,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA067,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA067,9,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA067,NA,,,, +Ni9,,,EA067,NA,,,, +Nj1,,,EA067,NA,,,, +Nj10,,,EA067,NA,,,, +Nj11,,,EA067,NA,,,, +Nj12,,,EA067,NA,,,, +Nj13,,,EA067,NA,,,, +Nj14,,,EA067,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA067,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA067,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,,EA067,NA,,,, +Nj5,,,EA067,NA,,,, +Nj6,with special reference to San Mateo,1950,EA067,9,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,,,EA067,NA,,,, +Nj8,,1500,EA067,9,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA067,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA067,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA067,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,1880,EA067,9,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA067,9,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA067,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA067,NA,,,, +Sa15,,,EA067,NA,,,, +Sa16,,,EA067,NA,,,, +Sa17,,,EA067,NA,,,, +Sa2,,,EA067,NA,,,, +Sa3,,1930,EA067,9,"Though the Choroti themselves are egalitarian, the coresident Ladinos are stratified into classes",wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA067,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA067,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA067,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,1940,EA067,9,"Though egalitarian themselves, the Black Carib form an ethnic caste in Honduran society",solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA067,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA067,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA067,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA067,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA067,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA067,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA067,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA067,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,with special reference to the Pariri,1950,EA067,9,,wilbert1961b,EthnographicAtlas_1967_p121, +Sb8,,1520,EA067,9,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA067,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA067,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,1900,EA067,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p121, +Sc11,,1930,EA067,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p121, +Sc12,,1910,EA067,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,1950,EA067,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA067,NA,,,, +Sc15,,1910,EA067,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA067,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA067,9,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA067,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA067,9,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA067,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA067,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA067,9,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA067,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA067,9,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA067,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,1950,EA067,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p121, +Sd1,Cabrura village,1950,EA067,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA067,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,1920,EA067,9,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,1950,EA067,9,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA067,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA067,9,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA067,9,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA067,9,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA067,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA067,9,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA067,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA067,9,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA067,NA,,,, +Se2,,1940,EA067,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA067,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA067,9,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA067,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA067,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA067,9,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA067,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA067,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA067,3,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA067,9,But the Aymara form a lower caste in Bolivian society,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA067,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA067,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,,EA067,NA,,,, +Sf6,,1540,EA067,5,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA067,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA067,NA,,,, +Sf9,,,EA067,NA,,,, +Sg1,Eastern and central,1870,EA067,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA067,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA067,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA067,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA067,9,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA067,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA067,9,Land is owned collectively by extended families,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA067,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA067,9,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA067,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA067,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,,EA067,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA067,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA067,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,Kejara,1920,EA067,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA067,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA067,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA067,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA067,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA067,9,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA067,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA067,9,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA067,9,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA067,NA,,,, +Sj1,,1950,EA067,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,Taquapiri,1950,EA067,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA067,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA067,9,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA067,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA067,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA067,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA067,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA067,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA067,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA067,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA067,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA067,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA067,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA067,2,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA067,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA067,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA067,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA067,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA067,2,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA067,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA067,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA067,4,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA067,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA067,2,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA067,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA067,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA067,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA067,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA067,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA067,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA067,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA067,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA067,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA067,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA067,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA067,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA067,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA068,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA068,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA068,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA068,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA068,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA068,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA068,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA068,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA068,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA068,1,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA068,1,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA068,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA068,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA068,3,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA068,1,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,1860,EA068,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,1930,EA068,1,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA068,1,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,,,EA068,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA068,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA068,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA068,1,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA068,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA068,NA,,,, +Ab22,,,EA068,NA,,,, +Ab3,Ruling Luyana,1890,EA068,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA068,1,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA068,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA068,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA068,1,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA068,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA068,3,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA068,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA068,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA068,1,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA068,1,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA068,1,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA068,1,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA068,1,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,,EA068,NA,,,, +Ac17,Feshi territory lineage center,1910,EA068,1,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,,EA068,NA,,,, +Ac19,,,EA068,NA,,,, +Ac2,,1920,EA068,1,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,,EA068,NA,,,, +Ac21,,1910,EA068,1,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,,EA068,NA,,,, +Ac23,with special reference to the western Lele,1950,EA068,2,Dependent Pygmies,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA068,1,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA068,1,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA068,1,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA068,1,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA068,1,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,,EA068,NA,,,, +Ac3,Zambia branch,1900,EA068,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA068,1,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA068,1,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA068,1,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA068,1,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA068,1,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,1900,EA068,1,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA068,1,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA068,1,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA068,1,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA068,1,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA068,3,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA068,1,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA068,1,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA068,1,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA068,NA,,,, +Ac5,,1920,EA068,1,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA068,1,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,1920,EA068,1,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA068,1,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA068,1,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA068,2,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,,EA068,NA,,,, +Ad11,,1930,EA068,1,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA068,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA068,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA068,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA068,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA068,1,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA068,1,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA068,1,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA068,1,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA068,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA068,1,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA068,1,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA068,1,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA068,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA068,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA068,1,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA068,2,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA068,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA068,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,,EA068,NA,,,, +Ad3,,1910,EA068,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,,EA068,NA,,,, +Ad31,,,EA068,NA,,,, +Ad32,,,EA068,NA,,,, +Ad33,,1900,EA068,1,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,,EA068,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA068,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA068,1,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA068,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA068,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA068,2,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA068,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,1950,EA068,1,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA068,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA068,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,1900,EA068,1,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA068,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,1920,EA068,3,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA068,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA068,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA068,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA068,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA068,1,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA068,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA068,1,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA068,1,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA068,1,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA068,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA068,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA068,3,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA068,3,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA068,1,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA068,1,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA068,1,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA068,1,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA068,3,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,,EA068,NA,,,, +Ae17,,1900,EA068,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA068,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA068,1,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA068,1,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA068,3,Pygmies are attached as serfs to minor or minimal lineages,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA068,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA068,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA068,3,Dependent Pygmies,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA068,3,Dependent Pygmies,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA068,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA068,1,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA068,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA068,1,But there are a few dependent Pygmies,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA068,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA068,3,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA068,3,Dependent Pygmies,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA068,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA068,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA068,3,Dependent Pygmies,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA068,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA068,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA068,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA068,1,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA068,1,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA068,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA068,3,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA068,3,Dependent Pygmies,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA068,3,Dependent Pygmies,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA068,3,Dependent Pygmies,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA068,3,Dependent Pygmies,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA068,1,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA068,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA068,3,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA068,3,Dependent Pygmies,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA068,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,,EA068,NA,,,, +Ae5,,1910,EA068,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA068,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA068,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,,EA068,NA,,,, +Ae53,,1920,EA068,3,Dependent Pygmies,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,,EA068,NA,,,, +Ae55,,1950,EA068,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,1950,EA068,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,1930,EA068,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA068,1,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA068,1,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA068,1,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA068,1,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA068,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA068,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA068,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA068,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA068,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA068,1,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA068,1,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,,EA068,NA,,,, +Af15,,1920,EA068,1,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA068,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA068,NA,,,, +Af18,,1900,EA068,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA068,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA068,1,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA068,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA068,1,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA068,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA068,1,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA068,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA068,1,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA068,1,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA068,1,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,,EA068,NA,,,, +Af29,,1950,EA068,1,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA068,1,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,,EA068,NA,,,, +Af31,with special reference to the Lafia,1960,EA068,1,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA068,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA068,1,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA068,1,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA068,NA,,,, +Af36,with special reference to the Glidyi,1900,EA068,1,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA068,1,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA068,NA,,,, +Af39,with special reference to the Ndenie,1900,EA068,1,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA068,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA068,1,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA068,1,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA068,1,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,,EA068,NA,,,, +Af44,,1900,EA068,1,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA068,1,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,,EA068,NA,,,, +Af47,,1940,EA068,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA068,NA,,,, +Af49,,1940,EA068,1,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA068,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA068,1,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA068,1,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA068,1,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA068,NA,,,, +Af54,,1930,EA068,1,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,1950,EA068,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA068,1,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA068,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA068,1,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA068,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA068,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA068,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA068,1,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA068,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA068,1,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA068,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA068,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA068,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA068,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA068,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA068,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,,EA068,NA,,,, +Ag18,,1930,EA068,1,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA068,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA068,2,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA068,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA068,1,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA068,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA068,2,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,,EA068,NA,,,, +Ag25,,1900,EA068,2,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA068,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,,EA068,NA,,,, +Ag28,,,EA068,NA,,,, +Ag29,,,EA068,NA,,,, +Ag3,,1930,EA068,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA068,2,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA068,2,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA068,2,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,,EA068,NA,,,, +Ag34,,1930,EA068,1,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA068,1,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA068,NA,,,, +Ag37,,1910,EA068,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA068,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA068,1,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA068,1,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA068,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA068,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,,EA068,NA,,,, +Ag43,,,EA068,NA,,,, +Ag44,,,EA068,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA068,2,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA068,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA068,2,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA068,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA068,1,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,,EA068,NA,,,, +Ag50,,1910,EA068,1,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA068,1,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,,EA068,NA,,,, +Ag53,with special reference to those of Garango,1960,EA068,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA068,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA068,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA068,2,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA068,2,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA068,2,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA068,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA068,1,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,,EA068,NA,,,, +Ah12,,,EA068,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA068,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA068,1,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA068,1,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA068,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,,EA068,NA,,,, +Ah18,,,EA068,NA,,,, +Ah19,,1930,EA068,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA068,1,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA068,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA068,NA,,,, +Ah22,,1900,EA068,1,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,,EA068,NA,,,, +Ah24,,1920,EA068,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA068,1,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA068,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA068,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA068,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA068,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA068,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA068,1,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA068,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA068,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA068,1,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,,,EA068,NA,,,, +Ah35,,,EA068,NA,,,, +Ah36,,,EA068,NA,,,, +Ah37,,,EA068,NA,,,, +Ah38,,1930,EA068,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA068,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA068,1,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA068,2,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA068,1,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA068,2,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA068,1,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA068,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA068,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA068,1,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA068,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA068,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA068,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,,EA068,NA,,,, +Ai15,,1900,EA068,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA068,2,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,,EA068,NA,,,, +Ai18,,,EA068,NA,,,, +Ai19,,,EA068,NA,,,, +Ai2,,1940,EA068,1,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,,EA068,NA,,,, +Ai21,,,EA068,NA,,,, +Ai22,,1890,EA068,1,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA068,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA068,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA068,1,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA068,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA068,NA,,,, +Ai28,,1910,EA068,1,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA068,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA068,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA068,2,Dependent Pygmies,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,1920,EA068,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA068,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA068,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA068,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA068,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA068,1,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA068,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA068,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA068,1,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA068,NA,,,, +Ai40,,1940,EA068,1,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA068,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA068,1,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA068,1,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,,EA068,NA,,,, +Ai45,,,EA068,NA,,,, +Ai46,,1930,EA068,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA068,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,1920,EA068,1,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA068,1,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA068,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA068,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA068,1,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA068,1,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA068,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA068,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,1920,EA068,2,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,1930,EA068,2,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA068,1,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA068,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA068,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA068,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA068,NA,,,, +Aj19,,,EA068,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA068,2,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA068,2,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,1930,EA068,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,1930,EA068,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA068,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA068,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA068,2,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,,EA068,NA,,,, +Aj27,,,EA068,NA,,,, +Aj28,,1940,EA068,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA068,NA,,,, +Aj3,,1930,EA068,3,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA068,NA,,,, +Aj31,,,EA068,NA,,,, +Aj4,,1920,EA068,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA068,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA068,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA068,1,"Entry follows Huntingford, contra earlier reports of despised occupation groups (code ""2"")",hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA068,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA068,2,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA068,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA068,3,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA068,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA068,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA068,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,1950,EA068,2,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,1930,EA068,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA068,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,1950,EA068,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca18,,,EA068,NA,,,, +Ca19,,1950,EA068,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA068,2,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA068,2,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA068,2,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA068,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA068,2,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,1950,EA068,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA068,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA068,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA068,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA068,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA068,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA068,2,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA068,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA068,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA068,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA068,1,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA068,NA,,,, +Ca35,,,EA068,NA,,,, +Ca36,,,EA068,NA,,,, +Ca37,,,EA068,NA,,,, +Ca38,,,EA068,NA,,,, +Ca39,,1930,EA068,2,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,,EA068,NA,,,, +Ca40,,1950,EA068,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA068,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA068,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA068,NA,,,, +Ca5,,,EA068,NA,,,, +Ca6,,1880,EA068,1,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA068,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA068,2,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,,EA068,NA,,,, +Cb1,,1940,EA068,1,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA068,1,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA068,NA,,,, +Cb12,,,EA068,NA,,,, +Cb13,,,EA068,NA,,,, +Cb14,,,EA068,NA,,,, +Cb15,with special reference to the Humr,1940,EA068,3,"""Descendants of slaves . . . do not fully enjoy the privileges that Humr do""",cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,,EA068,NA,,,, +Cb17,Jebel Marra,1880,EA068,2,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA068,2,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA068,2,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA068,2,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA068,2,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA068,1,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA068,2,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA068,2,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA068,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA068,3,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA068,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA068,2,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,,EA068,NA,,,, +Cb29,,,EA068,NA,,,, +Cb3,Bamba division,1940,EA068,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,,EA068,NA,,,, +Cb5,,1910,EA068,2,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA068,1,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA068,1,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,,,EA068,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA068,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA068,4,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA068,4,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,,EA068,NA,,,, +Cc12,,1944,EA068,2,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA068,2,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA068,2,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA068,2,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA068,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,1930,EA068,2,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA068,2,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA068,2,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA068,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA068,2,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,,,EA068,NA,,,, +Cc4,,1920,EA068,3,,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA068,3,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,,EA068,NA,,,, +Cc7,Timbuctoo,1950,EA068,4,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA068,2,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA068,4,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,,,EA068,NA,,,, +Cd10,,,EA068,NA,,,, +Cd11,,1500,EA068,2,Midwives and mortuary specialists were outcaste groups,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA068,2,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,,EA068,NA,,,, +Cd14,,,EA068,NA,,,, +Cd15,,,EA068,NA,,,, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA068,2,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,,EA068,NA,,,, +Cd18,,,EA068,NA,,,, +Cd19,,,EA068,NA,,,, +Cd2,Town and environs of Silwa,1950,EA068,4,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA068,NA,Class distinctions are not marked,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA068,2,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA068,2,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,,EA068,NA,,,, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA068,1,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,,,EA068,NA,,,, +Cd7,,,EA068,NA,,,, +Cd8,,,EA068,NA,,,, +Cd9,,,EA068,NA,,,, +Ce1,,,EA068,NA,,,, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA068,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,City and environs of Rome,100,EA068,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA068,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA068,1,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,,,EA068,NA,,,, +Ce7,with special reference to the village of Vasilika,1950,EA068,1,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA068,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA068,1,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA068,3,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA068,1,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA068,3,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA068,1,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA068,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA068,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA068,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA068,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA068,1,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA068,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA068,NA,,,, +Ch11,Viriatino Village,1955,EA068,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA068,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA068,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA068,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA068,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,,EA068,NA,,,, +Ch7,,1930,EA068,1,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,1940,EA068,1,,hanzeli1955,EthnographicAtlas_1967_p85, +Ch9,,1930,EA068,2,Jews,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA068,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA068,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA068,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA068,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA068,1,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA068,NA,,,, +Ci4,,1920,EA068,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA068,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA068,NA,,,, +Ci7,,,EA068,NA,,,, +Ci8,,,EA068,NA,,,, +Ci9,,,EA068,NA,,,, +Cj1,,,EA068,NA,,,, +Cj10,with special reference to the village of ech-Chibayish,1950,EA068,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA068,2,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA068,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA068,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA068,1,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,,,EA068,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA068,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA068,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA068,2,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA068,4,,bordiend; wilber1964,EthnographicAtlas_1967_p89, +Ea10,with special reference to the more nomadic groups,1950,EA068,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA068,2,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,,EA068,NA,,,, +Ea13,Mohla Village,1950,EA068,4,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA068,2,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA068,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA068,4,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA068,2,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA068,2,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA068,2,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA068,NA,,,, +Ea9,,,EA068,NA,,,, +Eb1,Great Horde,1910,EA068,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,,EA068,NA,,,, +Eb3,Narobanchin Territory,1940,EA068,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA068,1,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,,,EA068,NA,,,, +Eb6,,,EA068,NA,,,, +Eb7,,1930,EA068,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA068,NA,,,, +Ec1,Sakhalin Island,1920,EA068,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA068,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA068,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA068,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA068,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA068,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA068,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA068,1,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA068,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA068,1,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA068,1,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA068,2,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA068,1,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA068,NA,,,, +Ed14,,,EA068,NA,,,, +Ed15a,,,EA068,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA068,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA068,NA,,,, +Ed2,,,EA068,NA,,,, +Ed3,Aigun District,1920,EA068,1,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA068,1,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA068,2,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA068,1,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA068,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA068,1,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA068,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA068,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,Hunza State,1930,EA068,2,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p89, +Ee3,,,EA068,NA,,,, +Ee4,,,EA068,NA,,,, +Ee5,with special reference to the Shina tribe,1870,EA068,4,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA068,2,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA068,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA068,4,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA068,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA068,NA,,,, +Ef11,Village and environs of Senapur,1945,EA068,4,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA068,4,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA068,NA,,,, +Ef4,,,EA068,NA,,,, +Ef5,,1900,EA068,4,The Bhil form part of a complex caste structure,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA068,4,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA068,4,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA068,4,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA068,4,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA068,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA068,4,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA068,NA,,,, +Eg12,,,EA068,NA,,,, +Eg13,Bastar State,1941,EA068,1,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,,,EA068,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA068,4,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA068,4,The Hindu caste system has exerted considerable influence,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA068,1,Two endogamous moieties exhibit minor caste-like features,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA068,4,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA068,4,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,,,EA068,NA,,,, +Eg8,,1940,EA068,4,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA068,1,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA068,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA068,NA,,,, +Eh2,,1900,EA068,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA068,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA068,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA068,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA068,4,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA068,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA068,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA068,1,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA068,1,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA068,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA068,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA068,1,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA068,1,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA068,1,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA068,NA,,,, +Ei16,,1910,EA068,1,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA068,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA068,1,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA068,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA068,1,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA068,NA,,,, +Ei3,Nondwin Village,1950,EA068,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA068,1,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA068,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA068,1,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA068,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA068,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,,EA068,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA068,1,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA068,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA068,1,"But formerly complex caste stratification (code ""4"")",lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA068,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA068,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA068,1,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA068,3,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA068,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA068,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA068,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA068,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA068,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,of the Mergui Archipelago,1920,EA068,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p93, +Ej7,,1950,EA068,1,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA068,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA068,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA068,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA068,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,1930,EA068,1,,mabuchi1960,EthnographicAtlas_1967_p93, +Ia12,,1950,EA068,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,Tawi-Tawi and adjacent islands,1960,EA068,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA068,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,with special reference to those of the Agusan Valley,1920,EA068,1,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA068,1,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA068,NA,,,, +Ia18,,,EA068,NA,,,, +Ia2,,1950,EA068,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA068,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA068,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA068,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA068,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA068,1,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA068,1,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA068,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA068,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA068,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA068,4,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA068,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA068,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA068,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA068,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,with special reference to the Ridan group,1900,EA068,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA068,NA,,,, +Ic1,Borongloe,1940,EA068,1,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA068,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA068,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA068,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA068,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA068,1,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p97, +Ic3,with special reference to the Mountain Belu,1950,EA068,3,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,1920,EA068,1,,kruyt1921; wetering1925,Ethnology_Vol2_No1_Jan_1963, +Ic5,Bare'e subgroup,1910,EA068,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA068,1,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA068,1,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA068,1,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA068,1,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA068,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA068,1,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA068,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA068,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA068,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA068,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA068,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,1900,EA068,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p97, +Id5,,1910,EA068,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p97, +Id6,with special reference to the Archer River group,1920,EA068,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p97, +Id7,,,EA068,NA,,,, +Id8,,1830,EA068,1,,roth1890,EthnographicAtlas_1967_p97, +Id9,,1910,EA068,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p97, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA068,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA068,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA068,1,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA068,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA068,1,,landtman1927,EthnographicAtlas_1967_p97, +Ie14,,1900,EA068,1,,haddon1908,EthnographicAtlas_1967_p97, +Ie15,Kalabu; Northern Abelam,1930,EA068,1,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA068,1,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA068,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA068,1,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA068,1,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA068,1,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA068,1,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA068,1,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA068,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA068,1,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA068,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA068,1,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA068,1,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA068,1,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA068,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA068,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA068,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA068,1,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA068,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA068,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA068,1,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA068,NA,,,, +Ie35,,1930,EA068,1,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA068,NA,,,, +Ie37,,,EA068,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA068,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA068,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA068,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA068,1,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA068,1,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA068,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA068,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA068,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA068,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA068,NA,,,, +If11,,1860,EA068,1,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,1940,EA068,1,,mason1954,EthnographicAtlas_1967_p101, +If13,,1900,EA068,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p101, +If14,Makin and Butiritari Islands (N),1890,EA068,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA068,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,1960,EA068,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA068,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA068,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA068,1,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA068,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA068,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA068,1,"Complex stratification into nine social classes and seven ranks, of which three form an endogamous upper caste and four an endogamous lower caste",huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA068,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA068,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA068,1,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA068,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,1950,EA068,1,,schwartz1964,EthnographicAtlas_1967_p101, +Ig11,,1920,EA068,1,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,with special reference to the Varisi,1900,EA068,1,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA068,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA068,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA068,NA,,,, +Ig16,,,EA068,NA,,,, +Ig17,,,EA068,NA,,,, +Ig18,,,EA068,NA,,,, +Ig19,,,EA068,NA,,,, +Ig2,Kiriwina Island,1910,EA068,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA068,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA068,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA068,1,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA068,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA068,1,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA068,1,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA068,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA068,NA,,,, +Ig9,Peri Village,1920,EA068,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA068,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA068,1,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA068,NA,,,, +Ih12,,,EA068,NA,,,, +Ih13,,,EA068,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA068,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA068,1,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA068,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA068,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA068,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,1890,EA068,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p101, +Ih7,,1910,EA068,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA068,1,,quain1949,EthnographicAtlas_1967_p101, +Ih9,Graciosa Bay,1930,EA068,1,,davenport1964,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA068,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA068,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA068,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA068,1,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA068,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA068,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA068,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA068,1,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA068,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA068,1,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA068,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA068,1,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA068,1,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA068,1,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,1900,EA068,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA068,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA068,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA068,1,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA068,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA068,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA068,1,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA068,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA068,1,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA068,1,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA068,1,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA068,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA068,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA068,1,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA068,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA068,1,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA068,1,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA068,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA068,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA068,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA068,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA068,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA068,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA068,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA068,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA068,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA068,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA068,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA068,1,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA068,1,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA068,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA068,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA068,1,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA068,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA068,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA068,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA068,1,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA068,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA068,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA068,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA068,1,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA068,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA068,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA068,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,Prairie Potawatomi,1760,EA068,1,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p105, +Na43,,1920,EA068,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA068,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA068,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA068,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA068,1,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA068,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA068,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA068,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA068,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA068,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA068,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA068,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA068,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA068,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA068,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA068,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA068,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA068,1,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA068,1,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA068,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA068,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA068,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA068,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA068,1,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA068,1,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA068,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA068,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA068,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA068,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA068,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA068,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA068,1,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA068,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA068,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA068,1,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA068,1,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA068,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA068,1,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA068,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA068,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA068,1,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA068,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA068,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA068,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA068,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA068,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA068,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA068,1,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA068,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA068,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA068,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA068,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA068,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA068,1,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA068,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA068,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA068,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA068,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA068,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA068,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA068,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA068,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA068,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA068,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA068,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA068,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA068,1,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA068,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA068,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA068,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA068,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA068,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA068,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA068,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA068,1,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA068,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA068,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA068,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA068,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA068,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA068,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA068,1,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA068,1,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA068,1,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA068,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA068,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA068,1,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA068,1,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA068,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA068,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA068,1,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA068,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA068,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA068,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA068,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA068,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA068,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA068,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA068,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA068,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA068,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA068,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA068,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA068,1,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA068,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA068,1,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA068,1,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA068,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA068,1,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA068,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA068,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA068,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA068,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA068,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA068,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA068,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA068,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA068,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA068,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA068,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA068,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA068,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA068,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA068,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA068,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA068,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA068,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA068,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA068,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA068,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA068,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA068,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA068,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA068,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA068,1,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA068,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA068,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA068,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA068,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA068,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA068,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA068,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA068,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA068,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA068,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA068,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA068,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA068,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA068,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA068,1,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA068,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA068,NA,,,, +Ne3,Comanche Tribe,1870,EA068,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA068,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA068,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA068,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA068,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA068,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA068,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA068,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA068,1,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA068,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA068,1,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA068,4,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA068,NA,,,, +Nf2,,1850,EA068,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA068,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA068,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA068,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA068,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA068,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA068,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,1870,EA068,1,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p117, +Ng1,Bear and Cord Subtribes,1640,EA068,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA068,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA068,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA068,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA068,NA,,,, +Ng14,,,EA068,NA,,,, +Ng15,,,EA068,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA068,1,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA068,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA068,1,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA068,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA068,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA068,4,Four social classes with caste-like features,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA068,1,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,1920,EA068,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA068,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA068,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA068,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA068,1,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA068,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA068,1,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA068,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA068,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA068,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA068,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA068,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA068,1,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,1860,EA068,1,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA068,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA068,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA068,1,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA068,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA068,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA068,NA,,,, +Nh27,,,EA068,NA,,,, +Nh3,,1930,EA068,1,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA068,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA068,1,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA068,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA068,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA068,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA068,1,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA068,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA068,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA068,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA068,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA068,1,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA068,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA068,1,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA068,NA,,,, +Ni9,,,EA068,NA,,,, +Nj1,Ojitlan,1940,EA068,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA068,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA068,NA,,,, +Nj12,,,EA068,NA,,,, +Nj13,,,EA068,NA,,,, +Nj14,,,EA068,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA068,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA068,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,1940,EA068,1,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p121, +Nj5,,,EA068,NA,,,, +Nj6,with special reference to San Mateo,1950,EA068,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA068,1,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA068,1,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA068,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA068,1,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA068,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,1880,EA068,1,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA068,1,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA068,3,The Indians form an ethnic caste with respect to the dominant Ladinos,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA068,NA,,,, +Sa15,,,EA068,NA,,,, +Sa16,,,EA068,NA,,,, +Sa17,,,EA068,NA,,,, +Sa2,,,EA068,NA,,,, +Sa3,,1930,EA068,1,"Though the Choroti themselves are egalitarian, the coresident Ladinos are stratified into classes",wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA068,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA068,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA068,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,1940,EA068,1,"Though egalitarian themselves, the Black Carib form an ethnic caste in Honduran society",solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA068,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA068,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA068,1,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA068,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA068,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA068,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA068,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA068,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,with special reference to the Pariri,1950,EA068,1,,wilbert1961b,EthnographicAtlas_1967_p121, +Sb8,,1520,EA068,1,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA068,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA068,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,1900,EA068,1,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p121, +Sc11,,1930,EA068,1,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p121, +Sc12,,1910,EA068,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,1950,EA068,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA068,NA,,,, +Sc15,,1910,EA068,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA068,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA068,1,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA068,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA068,1,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA068,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA068,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA068,1,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA068,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA068,1,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA068,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,1950,EA068,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p121, +Sd1,Cabrura village,1950,EA068,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA068,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,1920,EA068,1,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,1950,EA068,1,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA068,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA068,1,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA068,1,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA068,1,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA068,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA068,1,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA068,1,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA068,1,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA068,NA,,,, +Se2,,1940,EA068,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA068,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA068,1,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA068,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA068,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA068,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA068,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA068,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA068,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA068,1,But the Aymara form a lower caste in Bolivian society,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA068,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA068,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA068,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA068,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA068,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA068,NA,,,, +Sf9,,,EA068,NA,,,, +Sg1,Eastern and central,1870,EA068,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA068,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA068,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA068,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA068,1,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA068,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA068,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA068,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA068,1,"Formerly S [sic, Gray (1999)]",oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA068,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA068,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,1900,EA068,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA068,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA068,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,Kejara,1920,EA068,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA068,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA068,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA068,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA068,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA068,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA068,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA068,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA068,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA068,NA,,,, +Sj1,,1950,EA068,1,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,Taquapiri,1950,EA068,1,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA068,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA068,1,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA068,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA068,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA068,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA068,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA068,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA068,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA068,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA068,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA068,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA068,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA068,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA068,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA068,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA068,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA068,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA068,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA068,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA068,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA068,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA068,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA068,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA068,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA068,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA068,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA068,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA068,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA068,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA068,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA068,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA068,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA068,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA068,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA068,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA068,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA069,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA069,9,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA069,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA069,9,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA069,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA069,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA069,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA069,9,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA069,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA069,9,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA069,9,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA069,9,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA069,9,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA069,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA069,9,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,1860,EA069,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,1930,EA069,9,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA069,9,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,,,EA069,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA069,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA069,9,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA069,9,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA069,9,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA069,NA,,,, +Ab22,,,EA069,NA,,,, +Ab3,Ruling Luyana,1890,EA069,9,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA069,9,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA069,9,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA069,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA069,9,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA069,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA069,9,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA069,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA069,9,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA069,9,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA069,9,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA069,9,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA069,9,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA069,9,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,,EA069,NA,,,, +Ac17,Feshi territory lineage center,1910,EA069,9,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,,EA069,NA,,,, +Ac19,,,EA069,NA,,,, +Ac2,,1920,EA069,9,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,,EA069,NA,,,, +Ac21,,1910,EA069,9,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,,EA069,NA,,,, +Ac23,with special reference to the western Lele,1950,EA069,9,Dependent Pygmies,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA069,9,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA069,9,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA069,9,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA069,9,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA069,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,,EA069,NA,,,, +Ac3,Zambia branch,1900,EA069,9,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA069,9,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA069,9,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA069,9,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA069,9,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA069,9,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,1900,EA069,9,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA069,9,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA069,9,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA069,9,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA069,9,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA069,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA069,9,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA069,9,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA069,9,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA069,NA,,,, +Ac5,,1920,EA069,9,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA069,9,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,1920,EA069,9,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA069,9,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA069,9,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA069,9,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,,EA069,NA,,,, +Ad11,,1930,EA069,9,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA069,9,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA069,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA069,9,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA069,9,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA069,9,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA069,9,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA069,9,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA069,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA069,9,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA069,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA069,9,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA069,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA069,9,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA069,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA069,9,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA069,9,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA069,9,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA069,9,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,,EA069,NA,,,, +Ad3,,1910,EA069,9,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,,EA069,NA,,,, +Ad31,,,EA069,NA,,,, +Ad32,,,EA069,NA,,,, +Ad33,,1900,EA069,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,,EA069,NA,,,, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA069,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA069,9,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA069,9,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA069,9,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA069,9,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA069,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,1950,EA069,9,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA069,9,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA069,9,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,1900,EA069,9,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA069,9,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,1920,EA069,9,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA069,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA069,9,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA069,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA069,9,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA069,9,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA069,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA069,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA069,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA069,9,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA069,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA069,9,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA069,9,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA069,9,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA069,9,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA069,9,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA069,9,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA069,9,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA069,9,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,,EA069,NA,,,, +Ae17,,1900,EA069,9,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA069,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA069,9,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA069,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA069,9,Pygmies are attached as serfs to minor or minimal lineages,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA069,9,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA069,9,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA069,9,Dependent Pygmies,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA069,9,Dependent Pygmies,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA069,9,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA069,9,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA069,9,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA069,9,But there are a few dependent Pygmies,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA069,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA069,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA069,9,Dependent Pygmies,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA069,9,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA069,9,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA069,9,Dependent Pygmies,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA069,9,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA069,9,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA069,9,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA069,9,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA069,9,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA069,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA069,9,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA069,9,Dependent Pygmies,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA069,9,Dependent Pygmies,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA069,9,Dependent Pygmies,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA069,9,Dependent Pygmies,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA069,9,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA069,9,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA069,9,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA069,9,Dependent Pygmies,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA069,9,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,,EA069,NA,,,, +Ae5,,1910,EA069,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA069,9,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA069,9,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,,EA069,NA,,,, +Ae53,,1920,EA069,9,Dependent Pygmies,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,,EA069,NA,,,, +Ae55,,1950,EA069,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,1950,EA069,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,1930,EA069,9,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA069,9,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA069,9,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA069,9,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA069,9,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA069,9,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA069,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA069,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA069,9,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA069,9,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA069,9,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA069,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,,EA069,NA,,,, +Af15,,1920,EA069,9,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA069,9,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA069,NA,,,, +Af18,,1900,EA069,9,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA069,9,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA069,9,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA069,9,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA069,9,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA069,9,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA069,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA069,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA069,9,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA069,9,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA069,9,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,,EA069,NA,,,, +Af29,,1950,EA069,9,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA069,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,,EA069,NA,,,, +Af31,with special reference to the Lafia,1960,EA069,9,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA069,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA069,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA069,9,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA069,NA,,,, +Af36,with special reference to the Glidyi,1900,EA069,9,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA069,9,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA069,NA,,,, +Af39,with special reference to the Ndenie,1900,EA069,9,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA069,9,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA069,9,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA069,9,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA069,9,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,,EA069,NA,,,, +Af44,,1900,EA069,9,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA069,9,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,,EA069,NA,,,, +Af47,,1940,EA069,9,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA069,NA,,,, +Af49,,1940,EA069,9,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA069,9,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA069,9,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA069,9,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA069,9,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA069,NA,,,, +Af54,,1930,EA069,9,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,1950,EA069,9,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA069,9,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA069,9,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA069,9,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA069,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA069,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA069,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA069,9,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA069,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA069,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA069,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA069,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA069,9,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA069,9,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA069,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA069,9,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,,EA069,NA,,,, +Ag18,,1930,EA069,9,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA069,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA069,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA069,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA069,9,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA069,9,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA069,9,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,,EA069,NA,,,, +Ag25,,1900,EA069,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA069,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,,EA069,NA,,,, +Ag28,,,EA069,NA,,,, +Ag29,,,EA069,NA,,,, +Ag3,,1930,EA069,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA069,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA069,9,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA069,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,,EA069,NA,,,, +Ag34,,1930,EA069,9,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA069,9,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA069,NA,,,, +Ag37,,1910,EA069,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA069,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA069,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA069,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA069,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA069,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,,EA069,NA,,,, +Ag43,,,EA069,NA,,,, +Ag44,,,EA069,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA069,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA069,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA069,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA069,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA069,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,,EA069,NA,,,, +Ag50,,1910,EA069,9,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA069,9,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,,EA069,NA,,,, +Ag53,with special reference to those of Garango,1960,EA069,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA069,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA069,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA069,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA069,9,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA069,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA069,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA069,9,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,,EA069,NA,,,, +Ah12,,,EA069,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA069,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA069,9,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA069,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA069,9,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,,EA069,NA,,,, +Ah18,,,EA069,NA,,,, +Ah19,,1930,EA069,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA069,9,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA069,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA069,NA,,,, +Ah22,,1900,EA069,9,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,,EA069,NA,,,, +Ah24,,1920,EA069,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA069,9,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA069,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA069,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA069,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA069,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA069,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA069,9,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA069,9,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA069,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA069,9,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,,,EA069,NA,,,, +Ah35,,,EA069,NA,,,, +Ah36,,,EA069,NA,,,, +Ah37,,,EA069,NA,,,, +Ah38,,1930,EA069,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA069,9,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA069,9,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA069,9,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA069,9,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA069,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA069,9,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA069,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA069,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA069,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA069,9,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA069,9,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA069,9,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,,EA069,NA,,,, +Ai15,,1900,EA069,9,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA069,9,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,,EA069,NA,,,, +Ai18,,,EA069,NA,,,, +Ai19,,,EA069,NA,,,, +Ai2,,1940,EA069,9,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,,EA069,NA,,,, +Ai21,,,EA069,NA,,,, +Ai22,,1890,EA069,9,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA069,9,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA069,9,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA069,9,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA069,9,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA069,NA,,,, +Ai28,,1910,EA069,9,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA069,9,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA069,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA069,9,Dependent Pygmies,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,1920,EA069,9,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA069,9,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA069,9,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA069,9,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA069,9,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA069,9,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA069,9,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA069,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA069,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA069,NA,,,, +Ai40,,1940,EA069,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA069,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA069,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA069,9,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,,EA069,NA,,,, +Ai45,,,EA069,NA,,,, +Ai46,,1930,EA069,9,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA069,9,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,1920,EA069,9,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA069,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA069,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA069,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA069,9,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA069,9,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA069,9,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA069,9,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,1920,EA069,9,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,1930,EA069,9,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA069,9,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA069,9,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA069,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA069,9,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA069,NA,,,, +Aj19,,,EA069,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA069,9,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA069,9,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,1930,EA069,9,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,1930,EA069,9,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA069,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA069,9,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA069,9,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,,EA069,NA,,,, +Aj27,,,EA069,NA,,,, +Aj28,,1940,EA069,9,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,,EA069,NA,,,, +Aj3,,1930,EA069,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA069,NA,,,, +Aj31,,,EA069,NA,,,, +Aj4,,1920,EA069,9,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA069,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA069,9,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA069,9,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA069,3,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA069,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA069,9,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA069,9,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA069,9,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA069,9,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA069,9,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,1950,EA069,9,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,1930,EA069,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA069,9,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,1950,EA069,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca18,,,EA069,NA,,,, +Ca19,,1950,EA069,9,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA069,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA069,9,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA069,9,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA069,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA069,9,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,1950,EA069,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA069,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA069,9,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA069,9,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA069,9,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA069,9,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA069,9,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA069,9,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA069,9,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA069,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA069,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA069,NA,,,, +Ca35,,,EA069,NA,,,, +Ca36,,,EA069,NA,,,, +Ca37,,,EA069,NA,,,, +Ca38,,,EA069,NA,,,, +Ca39,,1930,EA069,9,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,,EA069,NA,,,, +Ca40,,1950,EA069,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA069,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA069,9,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA069,NA,,,, +Ca5,,,EA069,NA,,,, +Ca6,,1880,EA069,9,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA069,9,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA069,9,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,,EA069,NA,,,, +Cb1,,1940,EA069,9,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA069,9,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA069,NA,,,, +Cb12,,,EA069,NA,,,, +Cb13,,,EA069,NA,,,, +Cb14,,,EA069,NA,,,, +Cb15,with special reference to the Humr,1940,EA069,9,"""Descendants of slaves . . . do not fully enjoy the privileges that Humr do""",cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,,EA069,NA,,,, +Cb17,Jebel Marra,1880,EA069,9,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA069,9,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA069,9,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA069,9,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA069,9,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA069,9,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA069,9,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA069,9,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA069,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA069,9,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA069,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA069,9,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,,EA069,NA,,,, +Cb29,,,EA069,NA,,,, +Cb3,Bamba division,1940,EA069,9,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,,EA069,NA,,,, +Cb5,,1910,EA069,9,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA069,9,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA069,9,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,,,EA069,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA069,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA069,2,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA069,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,,EA069,NA,,,, +Cc12,,1944,EA069,9,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA069,9,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA069,9,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA069,9,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA069,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,1930,EA069,9,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA069,9,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA069,9,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA069,9,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA069,9,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,,,EA069,NA,,,, +Cc4,,1920,EA069,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA069,2,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,,EA069,NA,,,, +Cc7,Timbuctoo,1950,EA069,9,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA069,9,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA069,2,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,,,EA069,NA,,,, +Cd10,,,EA069,NA,,,, +Cd11,,1500,EA069,9,Midwives and mortuary specialists were outcaste groups,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA069,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,,EA069,NA,,,, +Cd14,,,EA069,NA,,,, +Cd15,,,EA069,NA,,,, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA069,9,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,,EA069,NA,,,, +Cd18,,,EA069,NA,,,, +Cd19,,,EA069,NA,,,, +Cd2,Town and environs of Silwa,1950,EA069,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA069,NA,Class distinctions are not marked,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA069,9,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA069,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,,EA069,NA,,,, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA069,9,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,,,EA069,NA,,,, +Cd7,,,EA069,NA,,,, +Cd8,,,EA069,NA,,,, +Cd9,,,EA069,NA,,,, +Ce1,,,EA069,NA,,,, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA069,9,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,City and environs of Rome,100,EA069,9,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA069,9,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA069,9,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,,,EA069,NA,,,, +Ce7,with special reference to the village of Vasilika,1950,EA069,9,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA069,9,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA069,9,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA069,9,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA069,9,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA069,9,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA069,9,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA069,9,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA069,9,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA069,9,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA069,9,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA069,9,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA069,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA069,NA,,,, +Ch11,Viriatino Village,1955,EA069,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA069,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA069,9,,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA069,9,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA069,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,,EA069,NA,,,, +Ch7,,1930,EA069,9,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,1940,EA069,9,,hanzeli1955,EthnographicAtlas_1967_p85, +Ch9,,1930,EA069,9,Jews,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA069,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA069,9,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA069,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA069,9,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA069,9,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA069,NA,,,, +Ci4,,1920,EA069,9,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA069,9,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA069,NA,,,, +Ci7,,,EA069,NA,,,, +Ci8,,,EA069,NA,,,, +Ci9,,,EA069,NA,,,, +Cj1,,,EA069,NA,,,, +Cj10,with special reference to the village of ech-Chibayish,1950,EA069,9,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA069,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA069,9,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA069,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA069,9,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,,,EA069,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA069,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA069,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA069,9,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA069,9,,bordiend; wilber1964,EthnographicAtlas_1967_p89, +Ea10,with special reference to the more nomadic groups,1950,EA069,9,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA069,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,,EA069,NA,,,, +Ea13,Mohla Village,1950,EA069,9,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA069,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA069,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA069,9,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA069,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA069,9,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA069,9,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA069,NA,,,, +Ea9,,,EA069,NA,,,, +Eb1,Great Horde,1910,EA069,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,,EA069,NA,,,, +Eb3,Narobanchin Territory,1940,EA069,9,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA069,9,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,,,EA069,NA,,,, +Eb6,,,EA069,NA,,,, +Eb7,,1930,EA069,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA069,NA,,,, +Ec1,Sakhalin Island,1920,EA069,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA069,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA069,9,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA069,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA069,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA069,9,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA069,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA069,9,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA069,9,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA069,9,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA069,9,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA069,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA069,9,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA069,NA,,,, +Ed14,,,EA069,NA,,,, +Ed15a,,,EA069,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA069,9,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA069,NA,,,, +Ed2,,,EA069,NA,,,, +Ed3,Aigun District,1920,EA069,9,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA069,9,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA069,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA069,9,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA069,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA069,9,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA069,9,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA069,9,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,Hunza State,1930,EA069,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p89, +Ee3,,,EA069,NA,,,, +Ee4,,,EA069,NA,,,, +Ee5,with special reference to the Shina tribe,1870,EA069,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA069,3,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA069,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA069,9,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA069,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA069,NA,,,, +Ef11,Village and environs of Senapur,1945,EA069,9,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA069,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA069,NA,,,, +Ef4,,,EA069,NA,,,, +Ef5,,1900,EA069,9,The Bhil form part of a complex caste structure,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA069,9,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA069,9,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA069,9,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA069,9,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA069,9,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA069,9,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA069,NA,,,, +Eg12,,,EA069,NA,,,, +Eg13,Bastar State,1941,EA069,9,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,,,EA069,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA069,9,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA069,9,The Hindu caste system has exerted considerable influence,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA069,9,Two endogamous moieties exhibit minor caste-like features,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA069,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA069,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,,,EA069,NA,,,, +Eg8,,1940,EA069,9,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA069,9,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA069,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA069,NA,,,, +Eh2,,1900,EA069,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA069,9,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA069,9,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA069,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA069,9,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA069,9,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA069,9,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA069,9,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA069,9,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA069,9,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA069,9,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA069,9,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA069,9,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA069,9,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA069,NA,,,, +Ei16,,1910,EA069,9,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA069,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA069,9,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA069,9,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA069,9,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA069,NA,,,, +Ei3,Nondwin Village,1950,EA069,9,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA069,9,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA069,9,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA069,9,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA069,9,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA069,9,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,,EA069,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA069,9,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA069,9,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA069,9,,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA069,9,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA069,9,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA069,9,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA069,9,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA069,9,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA069,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA069,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA069,9,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA069,9,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,of the Mergui Archipelago,1920,EA069,9,,carrapiett1909; white1922,EthnographicAtlas_1967_p93, +Ej7,,1950,EA069,9,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA069,9,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA069,9,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA069,9,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA069,9,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,1930,EA069,9,,mabuchi1960,EthnographicAtlas_1967_p93, +Ia12,,1950,EA069,9,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,Tawi-Tawi and adjacent islands,1960,EA069,9,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA069,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,with special reference to those of the Agusan Valley,1920,EA069,9,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA069,9,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA069,NA,,,, +Ia18,,,EA069,NA,,,, +Ia2,,1950,EA069,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA069,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA069,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA069,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA069,9,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA069,9,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA069,9,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA069,9,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA069,9,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA069,9,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA069,9,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA069,9,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA069,9,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA069,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA069,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,with special reference to the Ridan group,1900,EA069,9,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA069,NA,,,, +Ic1,Borongloe,1940,EA069,9,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA069,9,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA069,9,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA069,9,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA069,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA069,9,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p97, +Ic3,with special reference to the Mountain Belu,1950,EA069,9,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,1920,EA069,9,,kruyt1921; wetering1925,Ethnology_Vol2_No1_Jan_1963, +Ic5,Bare'e subgroup,1910,EA069,9,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA069,9,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA069,9,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA069,9,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA069,9,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA069,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA069,9,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA069,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA069,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA069,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA069,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA069,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,1900,EA069,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p97, +Id5,,1910,EA069,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p97, +Id6,with special reference to the Archer River group,1920,EA069,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p97, +Id7,,,EA069,NA,,,, +Id8,,1830,EA069,9,,roth1890,EthnographicAtlas_1967_p97, +Id9,,1910,EA069,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p97, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA069,9,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA069,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA069,9,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA069,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA069,9,,landtman1927,EthnographicAtlas_1967_p97, +Ie14,,1900,EA069,9,,haddon1908,EthnographicAtlas_1967_p97, +Ie15,Kalabu; Northern Abelam,1930,EA069,9,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA069,9,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA069,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA069,9,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA069,9,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA069,9,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA069,9,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA069,9,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA069,9,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA069,9,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA069,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA069,9,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA069,9,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA069,9,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA069,9,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA069,9,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA069,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA069,9,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA069,9,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA069,9,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA069,9,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA069,NA,,,, +Ie35,,1930,EA069,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA069,NA,,,, +Ie37,,,EA069,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA069,9,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA069,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA069,9,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA069,9,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA069,9,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA069,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA069,9,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA069,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA069,9,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA069,NA,,,, +If11,,1860,EA069,9,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,1940,EA069,9,,mason1954,EthnographicAtlas_1967_p101, +If13,,1900,EA069,9,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p101, +If14,Makin and Butiritari Islands (N),1890,EA069,9,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA069,9,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,1960,EA069,9,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA069,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA069,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA069,9,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA069,9,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA069,9,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA069,9,"Complex stratification into nine social classes and seven ranks, of which three form an endogamous upper caste and four an endogamous lower caste",huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA069,9,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA069,9,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA069,9,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA069,9,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,1950,EA069,9,,schwartz1964,EthnographicAtlas_1967_p101, +Ig11,,1920,EA069,9,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,with special reference to the Varisi,1900,EA069,9,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA069,9,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA069,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA069,NA,,,, +Ig16,,,EA069,NA,,,, +Ig17,,,EA069,NA,,,, +Ig18,,,EA069,NA,,,, +Ig19,,,EA069,NA,,,, +Ig2,Kiriwina Island,1910,EA069,9,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA069,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA069,9,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA069,9,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA069,9,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA069,9,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA069,9,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA069,9,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA069,NA,,,, +Ig9,Peri Village,1920,EA069,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA069,9,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA069,9,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA069,NA,,,, +Ih12,,,EA069,NA,,,, +Ih13,,,EA069,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA069,9,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA069,9,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA069,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA069,9,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA069,9,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,1890,EA069,9,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p101, +Ih7,,1910,EA069,9,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA069,9,,quain1949,EthnographicAtlas_1967_p101, +Ih9,Graciosa Bay,1930,EA069,9,,davenport1964,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA069,9,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA069,9,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA069,9,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA069,9,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA069,9,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA069,9,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA069,9,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA069,9,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA069,9,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA069,9,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA069,9,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA069,9,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA069,9,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA069,9,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,1900,EA069,9,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA069,9,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA069,9,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA069,9,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA069,9,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA069,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA069,9,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA069,9,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA069,9,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA069,9,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA069,9,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA069,9,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA069,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA069,9,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA069,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA069,9,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA069,9,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA069,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA069,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA069,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA069,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA069,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA069,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA069,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA069,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA069,9,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA069,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA069,9,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA069,9,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA069,9,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA069,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA069,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA069,9,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA069,9,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA069,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA069,9,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA069,9,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA069,9,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA069,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA069,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA069,9,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA069,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA069,9,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA069,9,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,Prairie Potawatomi,1760,EA069,9,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p105, +Na43,,1920,EA069,9,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA069,9,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA069,9,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA069,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA069,9,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA069,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA069,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA069,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA069,9,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA069,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA069,9,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA069,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA069,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA069,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA069,9,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA069,9,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA069,9,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA069,9,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA069,9,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA069,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA069,9,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA069,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA069,9,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA069,9,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA069,9,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA069,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA069,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA069,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA069,9,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA069,9,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA069,9,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA069,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA069,9,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA069,9,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA069,9,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA069,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA069,9,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA069,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA069,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA069,9,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA069,9,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA069,9,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA069,9,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA069,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA069,9,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA069,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA069,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA069,9,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA069,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA069,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA069,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA069,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA069,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA069,9,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA069,9,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA069,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA069,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA069,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA069,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA069,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA069,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA069,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA069,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA069,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA069,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA069,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA069,9,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA069,9,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA069,9,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA069,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA069,9,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA069,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA069,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA069,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA069,9,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA069,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA069,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA069,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA069,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA069,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA069,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA069,9,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA069,9,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA069,9,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA069,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA069,9,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA069,9,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA069,9,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA069,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA069,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA069,9,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA069,9,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA069,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA069,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA069,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA069,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA069,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA069,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA069,9,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA069,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA069,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA069,9,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA069,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA069,9,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA069,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA069,9,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA069,9,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA069,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA069,9,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA069,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA069,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA069,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA069,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA069,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA069,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA069,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA069,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA069,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA069,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA069,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA069,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA069,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA069,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA069,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA069,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA069,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA069,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA069,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA069,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA069,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA069,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA069,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA069,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA069,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA069,9,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA069,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA069,9,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA069,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA069,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA069,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA069,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA069,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA069,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA069,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA069,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA069,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA069,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA069,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA069,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA069,9,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA069,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA069,NA,,,, +Ne3,Comanche Tribe,1870,EA069,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA069,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA069,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA069,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA069,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA069,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA069,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA069,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA069,9,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA069,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA069,9,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA069,9,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA069,NA,,,, +Nf2,,1850,EA069,9,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA069,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA069,9,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA069,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA069,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA069,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA069,9,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,1870,EA069,9,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p117, +Ng1,Bear and Cord Subtribes,1640,EA069,9,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA069,9,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA069,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA069,9,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA069,NA,,,, +Ng14,,,EA069,NA,,,, +Ng15,,,EA069,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA069,9,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA069,9,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA069,9,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA069,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA069,9,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA069,9,Four social classes with caste-like features,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA069,9,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,1920,EA069,9,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA069,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA069,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA069,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA069,9,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA069,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA069,9,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA069,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA069,9,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA069,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA069,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA069,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA069,9,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,1860,EA069,9,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA069,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA069,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA069,9,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA069,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA069,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA069,NA,,,, +Nh27,,,EA069,NA,,,, +Nh3,,1930,EA069,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA069,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA069,9,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA069,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA069,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA069,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA069,9,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA069,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA069,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA069,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA069,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA069,9,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA069,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA069,9,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA069,NA,,,, +Ni9,,,EA069,NA,,,, +Nj1,Ojitlan,1940,EA069,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA069,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA069,NA,,,, +Nj12,,,EA069,NA,,,, +Nj13,,,EA069,NA,,,, +Nj14,,,EA069,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA069,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA069,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,1940,EA069,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p121, +Nj5,,,EA069,NA,,,, +Nj6,with special reference to San Mateo,1950,EA069,9,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA069,9,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA069,9,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA069,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA069,9,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA069,9,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,1880,EA069,9,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA069,9,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA069,9,The Indians form an ethnic caste with respect to the dominant Ladinos,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA069,NA,,,, +Sa15,,,EA069,NA,,,, +Sa16,,,EA069,NA,,,, +Sa17,,,EA069,NA,,,, +Sa2,,,EA069,NA,,,, +Sa3,,1930,EA069,9,"Though the Choroti themselves are egalitarian, the coresident Ladinos are stratified into classes",wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA069,9,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA069,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA069,9,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,1940,EA069,9,"Though egalitarian themselves, the Black Carib form an ethnic caste in Honduran society",solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA069,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA069,9,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA069,9,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA069,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA069,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA069,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA069,9,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA069,9,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,with special reference to the Pariri,1950,EA069,9,,wilbert1961b,EthnographicAtlas_1967_p121, +Sb8,,1520,EA069,9,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA069,9,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA069,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,1900,EA069,9,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p121, +Sc11,,1930,EA069,9,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p121, +Sc12,,1910,EA069,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,1950,EA069,9,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA069,NA,,,, +Sc15,,1910,EA069,9,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA069,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA069,9,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA069,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA069,9,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA069,9,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA069,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA069,9,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA069,9,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA069,9,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA069,9,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,1950,EA069,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p121, +Sd1,Cabrura village,1950,EA069,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA069,9,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,1920,EA069,9,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,1950,EA069,9,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA069,9,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA069,9,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA069,9,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA069,9,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA069,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA069,9,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA069,9,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA069,9,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA069,NA,,,, +Se2,,1940,EA069,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA069,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA069,9,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA069,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA069,9,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA069,9,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA069,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA069,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA069,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA069,9,But the Aymara form a lower caste in Bolivian society,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA069,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA069,9,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA069,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA069,9,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA069,9,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA069,NA,,,, +Sf9,,,EA069,NA,,,, +Sg1,Eastern and central,1870,EA069,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA069,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA069,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA069,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA069,9,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA069,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA069,9,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA069,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA069,9,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA069,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA069,9,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,1900,EA069,9,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA069,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA069,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,Kejara,1920,EA069,9,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA069,9,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA069,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA069,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA069,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA069,9,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA069,9,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA069,9,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA069,9,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA069,NA,,,, +Sj1,,1950,EA069,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,Taquapiri,1950,EA069,9,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA069,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA069,9,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA069,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA069,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA069,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA069,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA069,9,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA069,9,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA069,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA069,9,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA069,9,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA069,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA069,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA069,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA069,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA069,9,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA069,9,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA069,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA069,9,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA069,9,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA069,9,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA069,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA069,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA069,9,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA069,9,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA069,9,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA069,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA069,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA069,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA069,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA069,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA069,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA069,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA069,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA069,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA069,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA007,8,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA007,8,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA007,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA007,8,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA007,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA007,8,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA007,8,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA007,8,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA007,8,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA007,8,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA007,8,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA007,8,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA007,8,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA007,8,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA007,8,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA007,8,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA007,8,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA007,8,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA007,8,"Bride service (code ""2"") plus token bride price (code ""3"") with uxorilocal residence as a patterned alternative",bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA007,8,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA007,8,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA007,8,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA007,8,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA007,8,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,1920,EA007,8,,junod1936,Ethnology_Vol7_No1_Jan_1968, +Ab3,Ruling Luyana,1890,EA007,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA007,8,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA007,8,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA007,8,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA007,8,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA007,8,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA007,8,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA007,8,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA007,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA007,8,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA007,8,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA007,8,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA007,8,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA007,8,"Alternatively code ""3"", token bride price, in which case children belong to the MoBr",tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA007,8,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA007,8,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA007,8,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,1880,EA007,8,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA007,8,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA007,8,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA007,8,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA007,8,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA007,8,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA007,8,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA007,8,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA007,8,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA007,8,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA007,8,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA007,8,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA007,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA007,8,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA007,8,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA007,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA007,8,"Formerly code ""1"", bride wealth, with ""2"", bride service, as alternative",lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA007,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA007,3,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA007,8,"Formerly Bride service (code ""2"") with token bride price (code ""3"")",sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA007,8,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA007,8,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA007,3,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA007,8,"A patterned alternative is code ""3"", token bride price, with alternating Uxorilocal and Avunculocal residence",tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA007,8,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA007,3,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA007,8,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA007,2,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA007,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA007,8,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA007,8,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA007,8,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA007,8,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA007,8,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA007,8,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA007,2,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA007,8,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA007,8,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA007,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA007,2,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA007,8,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA007,2,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA007,8,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA007,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA007,8,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA007,8,"Alternatively code ""3"", token bride price, with code ""2"", bride service as alternate/supplementary; in this case children are affiliated with the mother's group",blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA007,8,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA007,8,"Alternatively code ""6"", absence of consideration, in which case children are affiliated with the mother's kin group",abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA007,8,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA007,8,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA007,8,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA007,8,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA007,2,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA007,8,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA007,8,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA007,8,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA007,8,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA007,8,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA007,8,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA007,8,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA007,8,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA007,8,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA007,8,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA007,8,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA007,8,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA007,8,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA007,8,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA007,8,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA007,8,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA007,8,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA007,8,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA007,8,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA007,8,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA007,8,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA007,8,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA007,8,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA007,8,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA007,8,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA007,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA007,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA007,8,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA007,8,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA007,8,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA007,8,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA007,1,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA007,8,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA007,8,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA007,8,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA007,8,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA007,8,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA007,8,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA007,8,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA007,8,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA007,8,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA007,2,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA007,8,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA007,8,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA007,8,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA007,8,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA007,8,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA007,8,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA007,8,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA007,8,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA007,8,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA007,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA007,8,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA007,8,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA007,8,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA007,8,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA007,8,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA007,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA007,8,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA007,8,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA007,8,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA007,8,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA007,8,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA007,8,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA007,8,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA007,8,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA007,8,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA007,8,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA007,8,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA007,8,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA007,8,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA007,8,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA007,5,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA007,8,Usually after capture,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA007,8,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA007,8,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA007,8,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA007,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA007,8,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA007,8,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA007,2,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA007,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA007,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA007,8,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA007,8,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA007,2,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA007,8,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA007,8,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA007,8,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA007,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA007,2,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA007,8,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA007,8,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA007,8,,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA007,8,"But usually code ""1"", bride wealth, today",brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA007,8,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA007,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA007,8,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA007,8,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA007,8,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA007,8,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA007,2,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA007,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA007,8,"Alternatively code ""3"", token bride price, in which case children belong to their mother's group",granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA007,8,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA007,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA007,3,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA007,2,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA007,8,"Or alternatively bride service (code ""2"") plus token bride price (code ""3""), in which case children belong to the mother's kin group",bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA007,1,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA007,3,,gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA007,8,"Formerly also code ""6,"" exchange of a sister or female relative",armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA007,8,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA007,2,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA007,2,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA007,2,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA007,8,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA007,8,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA007,2,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA007,2,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA007,2,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA007,2,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA007,8,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA007,8,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA007,8,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA007,2,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA007,8,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA007,8,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA007,2,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA007,8,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA007,8,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA007,8,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA007,8,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA007,8,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA007,3,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA007,8,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA007,8,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA007,8,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA007,8,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA007,8,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA007,8,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA007,8,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA007,2,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA007,7,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA007,2,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA007,8,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA007,8,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA007,8,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA007,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA007,3,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA007,8,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA007,8,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA007,8,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA007,8,Formerly,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA007,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA007,3,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA007,3,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA007,8,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA007,2,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA007,8,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA007,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA007,8,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA007,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA007,8,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA007,2,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA007,8,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA007,8,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA007,8,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA007,8,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA007,8,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA007,3,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA007,3,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA007,2,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA007,2,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA007,2,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA007,3,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA007,2,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA007,2,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA007,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA007,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA007,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA007,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA007,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA007,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA007,8,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA007,8,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA007,8,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA007,8,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA007,2,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA007,8,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA007,2,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA007,3,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA007,2,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA007,8,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA007,8,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA007,2,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA007,2,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA007,8,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA007,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA007,2,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA007,3,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA007,2,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA007,8,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA007,2,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA007,8,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA007,8,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA007,8,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA007,2,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA007,2,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA007,8,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA007,8,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA007,2,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA007,3,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA007,8,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA007,8,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA007,2,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA007,8,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA007,3,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA007,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA007,8,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA007,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA007,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA007,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA007,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA007,8,"Alternatively code ""3"", token bride price, involving avunculocal residence and affiliation with mother's kin group",bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA007,2,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA007,2,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA007,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA007,2,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA007,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA007,2,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA007,8,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA007,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA007,8,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA007,2,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA007,3,"Exchange marriage, formerly preferred, is now abolished and has been replaced by bride-price, its former alternative",meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74,"Assume Murdock comment refers to Col 12, not Col 14 as stated in Gray (1999)" +Ah5,,1930,EA007,2,"Exchange marriage has been abolished by the British administration; payment of a bride-price, formerly a less preferred mode, is now the rule",meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA007,8,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA007,8,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA007,8,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA007,8,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA007,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA007,8,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA007,8,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA007,2,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA007,8,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA007,8,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA007,8,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA007,8,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA007,8,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA007,8,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA007,8,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA007,2,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA007,8,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA007,8,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA007,8,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA007,8,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA007,2,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA007,8,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA007,8,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA007,8,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA007,8,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA007,8,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA007,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA007,5,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA007,8,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA007,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA007,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA007,2,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA007,2,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA007,8,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA007,8,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA007,8,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA007,8,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA007,3,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA007,7,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA007,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA007,8,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA007,2,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA007,8,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA007,2,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA007,8,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA007,8,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA007,8,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA007,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA007,8,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA007,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA007,8,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA007,8,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA007,2,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA007,8,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA007,8,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA007,2,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA007,2,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA007,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA007,8,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA007,8,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA007,8,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA007,2,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA007,8,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA007,8,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA007,8,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,1930,EA007,8,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA007,8,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA007,8,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA007,8,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA007,8,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA007,8,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA007,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA007,8,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA007,8,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA007,8,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,1920,EA007,8,,driberg1925b; evanspritchard1940c; walsh1922,Ethnology_Vol7_No1_Jan_1968, +Aj4,,1920,EA007,8,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA007,8,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA007,8,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA007,8,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA007,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA007,8,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA007,8,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA007,8,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA007,8,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA007,8,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA007,8,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA007,8,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA007,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA007,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA007,8,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA007,8,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA007,8,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA007,8,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA007,8,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA007,8,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA007,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA007,8,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA007,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA007,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA007,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,,EA007,NA,,,, +Ca28,,1950,EA007,8,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA007,8,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA007,8,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA007,8,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA007,8,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA007,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA007,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA007,8,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA007,8,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA007,8,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA007,8,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA007,8,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA007,8,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA007,8,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA007,8,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA007,8,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA007,8,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,1930,EA007,8,,owen1937; rober1928,Ethnology_Vol7_No1_Jan_1968, +Ca5,,1930,EA007,8,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA007,8,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA007,8,,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA007,8,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA007,8,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA007,8,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA007,2,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA007,8,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA007,8,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA007,8,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA007,8,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA007,8,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA007,8,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA007,8,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA007,7,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA007,8,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA007,8,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA007,8,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA007,8,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA007,8,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA007,8,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA007,8,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA007,8,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA007,7,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA007,2,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA007,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA007,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA007,8,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA007,8,,reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA007,8,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA007,3,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA007,8,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA007,8,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA007,8,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA007,8,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA007,8,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA007,8,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA007,8,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA007,8,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA007,8,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA007,NA,,,, +Cc16,,1930,EA007,8,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA007,8,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA007,8,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA007,8,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA007,8,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA007,8,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA007,8,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA007,8,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA007,7,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA007,8,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA007,8,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA007,8,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA007,8,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA007,8,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA007,8,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA007,8,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA007,8,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA007,8,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA007,8,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA007,8,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA007,8,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA007,8,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA007,8,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA007,8,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA007,8,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA007,8,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA007,8,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA007,8,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA007,8,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA007,8,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA007,8,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA007,8,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA007,8,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA007,8,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA007,8,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA007,8,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA007,8,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA007,8,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA007,8,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA007,8,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA007,8,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA007,8,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA007,8,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA007,8,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA007,8,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA007,8,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA007,8,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA007,8,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA007,8,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA007,8,"When a family has no sons, one daughter remains at home in uxorilocal residence after her marriage, and the groom pays a bride price",arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA007,8,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA007,8,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA007,8,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA007,8,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA007,7,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA007,8,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA007,8,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA007,8,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA007,8,,sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA007,8,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA007,8,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA007,8,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA007,8,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA007,8,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA007,8,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA007,8,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA007,8,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA007,7,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA007,7,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA007,8,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA007,7,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA007,8,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA007,8,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA007,8,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA007,7,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA007,8,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA007,8,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA007,8,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA007,2,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA007,7,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA007,8,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA007,8,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA007,8,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA007,8,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA007,8,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA007,7,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA007,5,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA007,7,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA007,7,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA007,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA007,8,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA007,7,The dowry is approximately equal in value to the bride-price,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA007,8,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA007,8,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA007,2,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA007,8,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,1920,EA007,8,,feilberg1952; wilson1926,EthnographicAtlas_1967_p86, +Ea9,,1950,EA007,8,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA007,7,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA007,8,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA007,7,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA007,8,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA007,8,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA007,8,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA007,8,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA007,7,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA007,8,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA007,8,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA007,8,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA007,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA007,8,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA007,7,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA007,8,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA007,5,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA007,8,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA007,8,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA007,8,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA007,8,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA007,8,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA007,8,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA007,8,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA007,8,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA007,8,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA007,8,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA007,8,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA007,5,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA007,8,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA007,8,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA007,8,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA007,7,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA007,8,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA007,8,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA007,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA007,7,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA007,8,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA007,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA007,8,,biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA007,8,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA007,8,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA007,8,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA007,8,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,Ganges River Valley,1880,EA007,8,,grierson1885; karve1953; mitra1894,Ethnology_Vol7_No1_Jan_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ef11,Village and environs of Senapur,1945,EA007,8,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA007,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA007,8,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA007,8,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA007,8,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA007,8,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA007,8,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA007,8,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA007,7,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA007,8,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA007,8,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,,,EA007,NA,,,, +Eg12,with special reference to the Bondo,1940,EA007,8,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA007,2,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA007,8,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA007,8,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA007,8,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA007,8,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA007,8,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA007,8,Entry pertains to the Nayar caste; a bride-price and a dowry are customary in the Tiyyar and Mappilla castes,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA007,8,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA007,8,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA007,8,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA007,8,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA007,8,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA007,8,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA007,8,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA007,8,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA007,8,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA007,8,The dowry is really a daughter's inheritance received in advance,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA007,8,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA007,8,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA007,2,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA007,8,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA007,8,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA007,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA007,8,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA007,8,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA007,8,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA007,8,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA007,8,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA007,8,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA007,8,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA007,8,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA007,2,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA007,8,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA007,8,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA007,8,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA007,8,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA007,7,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA007,8,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA007,8,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA007,8,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA007,2,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA007,8,"Entry follows Donoghue; other sources report code ""1"", bride wealth",donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA007,8,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA007,8,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA007,8,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA007,8,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA007,8,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA007,8,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA007,8,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA007,8,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA007,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA007,8,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA007,8,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA007,8,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA007,8,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA007,8,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA007,8,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA007,8,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA007,8,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA007,8,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA007,8,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA007,8,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA007,2,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA007,8,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA007,8,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA007,8,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA007,8,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA007,8,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA007,2,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA007,8,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA007,8,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA007,3,"Formerly code ""1"", bride wealth",fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA007,8,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA007,8,"Entry follows Mabuchi; Wei reports code ""1"", bride wealth",mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA007,8,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA007,3,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA007,8,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA007,8,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA007,8,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA007,8,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA007,8,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA007,3,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA007,8,,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA007,8,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA007,8,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA007,8,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA007,8,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,1950,EA007,8,,fischer1957a,Ethnology_Vol7_No1_Jan_1968, +Ic2,Abui of Atimelang Village,1940,EA007,7,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA007,8,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA007,8,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA007,8,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA007,2,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA007,5,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA007,8,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA007,8,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA007,8,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA007,8,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA007,8,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA007,8,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA007,8,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA007,8,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA007,2,"Formerly code ""6,"" exchange of a sister or female relative",basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA007,8,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA007,8,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA007,8,"Also code ""6"", absence of consideration",mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,,EA007,NA,,,, +Id8,,1830,EA007,8,Marriage by capture was common,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA007,8,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA007,8,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA007,2,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA007,1,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA007,8,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA007,8,"Recently more commonly code ""1"", bride wealth",landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA007,8,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA007,5,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA007,8,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA007,8,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA007,1,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA007,8,,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA007,8,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA007,8,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA007,8,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA007,8,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA007,8,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA007,8,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA007,8,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA007,1,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA007,8,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA007,8,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA007,8,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA007,8,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA007,8,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA007,8,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA007,8,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA007,8,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA007,5,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA007,8,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA007,8,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA007,8,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA007,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA007,8,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA007,8,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA007,8,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA007,8,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA007,8,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA007,8,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA007,8,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA007,8,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA007,8,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA007,8,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA007,8,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA007,8,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA007,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA007,8,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA007,8,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA007,8,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA007,8,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA007,8,,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA007,8,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA007,8,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA007,8,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA007,8,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA007,8,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA007,8,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA007,8,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA007,8,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA007,8,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA007,8,But no bride-price is paid when residence is uxorilocal,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA007,8,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA007,8,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,,EA007,NA,,,, +Ig16,,,EA007,NA,,,, +Ig17,,1950,EA007,8,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA007,8,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,1950,EA007,8,,chowning1962; goodenough1952,Ethnology_Vol7_No1_Jan_1968, +Ig2,Kiriwina Island,1910,EA007,8,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA007,8,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA007,5,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA007,8,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA007,8,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA007,8,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA007,8,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA007,5,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA007,8,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA007,8,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA007,8,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA007,8,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,1920,EA007,8,,deacon1929,Ethnology_Vol7_No1_Jan_1968, +Ih12,,1920,EA007,8,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA007,8,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA007,8,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA007,8,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA007,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA007,8,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA007,8,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p98, +Ih6,,1890,EA007,8,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA007,2,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA007,8,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA007,8,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA007,8,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA007,8,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA007,8,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA007,8,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA007,8,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA007,8,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA007,8,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA007,8,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA007,8,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA007,8,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA007,8,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA007,8,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA007,8,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA007,8,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA007,8,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA007,8,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA007,8,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA007,8,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA007,8,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA007,8,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA007,8,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA007,8,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA007,8,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA007,2,,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,1930,EA007,8,,birketsmith1953,EthnographicAtlas_1967_p102, +Na11,,1920,EA007,8,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA007,8,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA007,3,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA007,8,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA007,8,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA007,8,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA007,8,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA007,2,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA007,8,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA007,8,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA007,8,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA007,8,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA007,8,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA007,8,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA007,8,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA007,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA007,8,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA007,8,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA007,8,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA007,8,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA007,8,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA007,8,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA007,8,"In Murdock (1964a) coded as code ""6"", absence of consideration with the comment ""Entry follows Lips; Burgesse reports code ""2"", bride service. In EA the entry is code ""2"", bride service",burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA007,8,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA007,8,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA007,8,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA007,8,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA007,8,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA007,8,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA007,8,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA007,8,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,,EA007,NA,,,, +Na41,Mainland division,1700,EA007,8,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA007,8,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA007,8,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA007,8,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA007,5,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA007,5,"Alternatively code ""6"", absence of consideration",lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA007,8,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA007,8,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA007,8,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA007,8,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA007,8,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA007,8,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA007,8,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA007,8,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA007,8,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA007,8,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA007,1,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA007,8,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA007,1,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA007,8,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA007,8,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA007,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA007,8,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA007,5,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA007,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA007,8,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA007,1,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA007,8,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA007,8,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA007,8,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA007,8,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA007,8,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA007,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA007,8,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA007,8,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA007,8,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA007,8,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA007,8,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA007,8,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA007,8,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA007,8,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA007,8,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA007,8,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA007,8,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA007,8,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA007,8,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA007,7,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,1880,EA007,8,,lopatin1945; olson1940,EthnographicAtlas_1967_p102, +Nb9,"Central group, lower B.C. River",1880,EA007,8,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA007,8,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA007,2,"Entry follows Voegelin; Stewart reports code ""6"", absence of consideration",goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA007,8,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA007,8,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA007,8,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA007,8,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA007,8,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA007,8,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA007,8,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA007,8,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA007,8,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA007,8,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA007,8,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA007,8,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA007,8,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA007,8,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA007,8,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA007,8,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA007,8,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA007,8,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA007,8,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA007,8,"Entry follows Harrington; Kroeber reports code ""3"", token bride price",harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA007,8,Entry follows Gayton: Kroeber reports a bride-price,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA007,8,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA007,8,"But Strong reports code ""1"", bride wealth",drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA007,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA007,8,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA007,8,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA007,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA007,8,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA007,8,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA007,8,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA007,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA007,8,,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA007,8,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA007,8,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA007,8,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA007,8,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA007,8,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA007,8,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA007,8,,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA007,8,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA007,8,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA007,8,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA007,8,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA007,8,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA007,8,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA007,8,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA007,8,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA007,8,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA007,8,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA007,8,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA007,8,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA007,8,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA007,8,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA007,8,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA007,8,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA007,8,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA007,8,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA007,8,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA007,8,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA007,8,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA007,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA007,8,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA007,8,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA007,8,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA007,8,"But Malouf reports code ""1"", bride wealth",malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA007,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA007,8,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA007,8,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA007,8,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA007,8,"But Lowie reports code ""2"", bride service",drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA007,8,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA007,8,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA007,8,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA007,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA007,8,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA007,8,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA007,8,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA007,8,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA007,8,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA007,8,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA007,8,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA007,8,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA007,8,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA007,8,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA007,2,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA007,8,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA007,8,"But Chamberlain reports code ""1"", bride wealth",boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA007,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA007,8,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA007,8,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA007,8,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA007,2,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA007,8,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA007,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA007,8,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA007,8,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA007,8,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA007,8,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA007,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA007,8,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA007,8,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA007,8,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA007,NA,,,, +Ne3,Comanche Tribe,1870,EA007,8,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA007,8,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA007,8,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA007,8,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA007,8,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA007,8,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA007,8,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA007,8,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA007,2,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA007,8,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA007,8,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA007,8,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA007,8,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA007,8,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA007,8,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA007,8,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA007,8,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA007,8,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA007,8,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA007,8,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA007,8,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA007,8,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA007,8,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA007,8,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA007,8,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,NA,EA007,8,,hallowell1926; speck1818; vetromile1866,Ethnology_Vol7_No1_Jan_1968, +Ng14,,NA,EA007,8,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,,EA007,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA007,8,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA007,8,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA007,8,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA007,8,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA007,8,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA007,8,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,,EA007,NA,,,, +Ng9,,1920,EA007,8,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA007,8,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA007,8,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA007,8,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA007,8,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA007,8,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA007,8,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA007,8,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA007,8,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA007,8,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA007,8,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA007,8,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA007,8,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA007,8,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA007,8,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA007,8,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA007,8,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA007,8,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA007,8,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA007,8,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA007,8,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA007,8,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA007,8,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA007,8,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA007,8,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA007,8,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA007,8,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA007,8,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA007,8,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA007,8,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA007,8,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA007,8,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA007,8,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA007,8,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA007,8,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA007,8,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,,EA007,NA,,,, +Nj1,Ojitlan,1940,EA007,8,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA007,8,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA007,8,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,,EA007,NA,,,, +Nj13,,,EA007,NA,,,, +Nj14,,,EA007,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA007,8,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA007,8,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,1940,EA007,8,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p118, +Nj5,,1940,EA007,8,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA007,8,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA007,8,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA007,8,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA007,8,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA007,8,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA007,8,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA007,8,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA007,8,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA007,8,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA007,8,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA007,8,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,,EA007,NA,,,, +Sa17,with special reference to the village of Chinantla,1950,EA007,8,,gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA007,3,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA007,8,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA007,8,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA007,8,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA007,3,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA007,8,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA007,8,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA007,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA007,8,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA007,8,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA007,8,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA007,2,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA007,8,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA007,8,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA007,8,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA007,8,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA007,8,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA007,8,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA007,8,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA007,8,"Or alternatively code ""1"", bride wealth",simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA007,8,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA007,8,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,,EA007,NA,,,, +Sc15,,1910,EA007,8,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA007,8,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA007,8,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA007,2,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA007,8,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA007,8,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA007,8,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA007,8,,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA007,2,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA007,8,,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA007,8,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,,EA007,NA,,,, +Sd1,Cabrura village,1950,EA007,8,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA007,8,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA007,8,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA007,8,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA007,8,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA007,3,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA007,8,,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA007,8,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA007,2,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA007,8,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA007,8,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA007,8,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA007,8,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA007,8,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA007,8,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA007,8,,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA007,8,,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA007,8,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA007,8,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA007,5,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA007,8,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA007,8,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA007,8,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA007,8,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA007,2,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA007,8,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA007,8,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA007,8,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA007,8,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA007,8,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA007,3,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA007,8,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA007,8,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA007,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA007,8,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA007,8,Entry follows Fock; earlier sources report a modest bride-price,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA007,8,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA007,8,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA007,8,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA007,8,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA007,8,"Entry follows Boggiani; Baldus reports code ""1"", bride wealth",baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA007,8,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA007,8,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA007,8,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA007,8,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA007,8,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA007,8,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA007,8,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA007,8,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA007,8,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,,EA007,NA,,,, +Si7,with special reference to the Cozarimi,1910,EA007,8,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,1940,EA007,8,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si9,,,EA007,NA,,,, +Sj1,,1950,EA007,8,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA007,8,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA007,8,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA007,8,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA007,8,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA007,8,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA007,8,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA007,8,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA007,8,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA007,8,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA007,8,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA007,7,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA007,6,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA007,6,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA007,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA007,8,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA007,6,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA007,8,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA007,8,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA007,7,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA007,8,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA007,8,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA007,8,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA007,8,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA007,6,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA007,7,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA007,6,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA007,6,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA007,5,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA007,8,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA007,5,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA007,8,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA007,5,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA007,5,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA007,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA007,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA007,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA007,5,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA070,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA070,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA070,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA070,2,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA070,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA070,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA070,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA070,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA070,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA070,4,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA070,1,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA070,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA070,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA070,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA070,1,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,,EA070,NA,,,, +Ab16,,1930,EA070,1,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA070,3,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA070,3,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA070,4,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA070,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA070,3,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA070,3,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA070,NA,,,, +Ab22,,,EA070,NA,,,, +Ab3,Ruling Luyana,1890,EA070,4,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA070,1,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA070,4,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA070,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA070,3,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA070,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA070,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA070,4,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA070,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA070,4,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA070,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA070,4,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA070,4,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA070,4,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA070,4,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA070,2,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA070,2,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,1880,EA070,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA070,3,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,1920,EA070,4,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA070,2,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA070,3,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA070,3,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA070,4,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA070,4,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA070,4,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,,EA070,NA,,,, +Ac28,,,EA070,NA,,,, +Ac29,,1930,EA070,3,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA070,2,"Entry follows Richards; earlier sources report hereditary slavery (code ""4"")",delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA070,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA070,3,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA070,3,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA070,4,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA070,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,1900,EA070,4,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA070,2,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,,EA070,NA,,,, +Ac38,,1910,EA070,4,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA070,4,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA070,4,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA070,3,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA070,3,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA070,3,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA070,NA,,,, +Ac5,,1920,EA070,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA070,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,1920,EA070,4,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA070,2,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA070,2,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA070,4,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA070,4,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA070,4,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,,EA070,NA,,,, +Ad13,,1930,EA070,2,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA070,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA070,2,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA070,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA070,2,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA070,2,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA070,3,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA070,4,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA070,2,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA070,3,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA070,3,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA070,3,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA070,2,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA070,3,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA070,1,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA070,3,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA070,4,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA070,4,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA070,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA070,3,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,1910,EA070,3,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA070,2,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA070,2,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA070,3,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA070,3,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA070,4,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA070,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA070,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA070,1,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA070,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA070,NA,,,, +Ad41,,,EA070,NA,,,, +Ad42,,1900,EA070,2,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,1900,EA070,4,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,,EA070,NA,,,, +Ad45,,1920,EA070,2,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA070,4,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA070,4,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA070,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA070,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA070,1,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA070,3,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA070,3,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA070,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA070,4,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA070,4,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA070,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA070,1,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA070,2,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA070,4,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA070,4,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,,EA070,NA,,,, +Ae14,,1950,EA070,3,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA070,3,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA070,3,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA070,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA070,4,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA070,4,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA070,2,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA070,2,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA070,4,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA070,3,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA070,3,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA070,3,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA070,2,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA070,2,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA070,3,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA070,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA070,4,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA070,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA070,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA070,3,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA070,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,,EA070,NA,,,, +Ae34,,1920,EA070,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA070,3,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA070,3,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA070,2,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA070,3,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA070,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA070,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA070,3,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA070,3,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA070,2,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA070,3,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA070,3,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA070,4,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA070,3,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA070,3,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA070,3,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,1900,EA070,3,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA070,4,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA070,4,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA070,4,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA070,3,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA070,3,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA070,3,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA070,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,1950,EA070,3,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,1930,EA070,3,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA070,3,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA070,3,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA070,4,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA070,2,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA070,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA070,4,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA070,4,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA070,4,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA070,4,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA070,3,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA070,4,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA070,3,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA070,4,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA070,3,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA070,3,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA070,3,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA070,3,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA070,4,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA070,3,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA070,2,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA070,4,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA070,4,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA070,4,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA070,4,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA070,3,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA070,3,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA070,3,,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA070,3,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA070,2,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA070,3,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA070,3,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA070,4,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA070,3,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA070,3,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA070,NA,,,, +Af36,with special reference to the Glidyi,1900,EA070,3,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA070,4,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA070,4,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA070,4,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA070,2,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA070,4,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA070,3,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA070,4,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA070,3,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,1900,EA070,3,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA070,3,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA070,3,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA070,3,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA070,3,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA070,2,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA070,4,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA070,3,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA070,1,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA070,4,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA070,NA,,,, +Af54,,1930,EA070,3,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,1950,EA070,3,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA070,3,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA070,3,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA070,3,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA070,2,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA070,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA070,4,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA070,4,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA070,4,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA070,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA070,2,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA070,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA070,3,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA070,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA070,3,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA070,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,1940,EA070,3,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA070,3,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA070,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA070,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA070,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA070,1,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA070,4,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA070,3,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA070,3,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA070,4,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA070,3,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA070,3,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA070,4,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,,EA070,NA,,,, +Ag3,,1930,EA070,4,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA070,3,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA070,4,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA070,4,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA070,3,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA070,3,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA070,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA070,NA,,,, +Ag37,,1910,EA070,3,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA070,3,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA070,3,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA070,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA070,3,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,,EA070,NA,,,, +Ag42,,1910,EA070,3,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,,EA070,NA,,,, +Ag44,,1910,EA070,3,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA070,4,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA070,3,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA070,4,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA070,4,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA070,3,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA070,2,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA070,3,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA070,3,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,,EA070,NA,,,, +Ag53,with special reference to those of Garango,1960,EA070,4,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA070,4,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA070,3,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA070,3,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA070,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA070,4,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA070,3,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA070,3,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA070,3,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,,EA070,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA070,3,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA070,3,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,,EA070,NA,,,, +Ah16,,1900,EA070,3,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,,EA070,NA,,,, +Ah18,,1930,EA070,3,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA070,3,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA070,2,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA070,3,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,1920,EA070,3,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA070,3,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,,EA070,NA,,,, +Ah24,,1920,EA070,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA070,3,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA070,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA070,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA070,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA070,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA070,4,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,,EA070,NA,,,, +Ah31,,1910,EA070,3,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA070,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA070,3,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA070,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA070,3,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA070,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA070,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA070,3,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA070,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA070,3,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA070,3,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA070,3,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA070,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA070,4,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA070,3,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA070,2,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA070,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA070,2,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA070,3,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA070,3,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,,EA070,NA,,,, +Ai15,,1900,EA070,3,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,,EA070,NA,,,, +Ai17,,,EA070,NA,,,, +Ai18,,1880,EA070,3,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA070,NA,,,, +Ai2,,1940,EA070,2,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,,EA070,NA,,,, +Ai21,,1880,EA070,4,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,1890,EA070,3,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA070,3,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA070,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA070,3,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA070,4,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,1890,EA070,3,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA070,3,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,,EA070,NA,,,, +Ai3,,1920,EA070,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,,EA070,NA,,,, +Ai31,,1920,EA070,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA070,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,,EA070,NA,,,, +Ai34,,,EA070,NA,,,, +Ai35,,1870,EA070,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA070,3,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA070,3,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,,EA070,NA,,,, +Ai39,,1940,EA070,3,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA070,NA,,,, +Ai40,,1940,EA070,3,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA070,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA070,3,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA070,4,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,,EA070,NA,,,, +Ai45,,,EA070,NA,,,, +Ai46,,1930,EA070,3,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,,,EA070,NA,,,, +Ai5,,1920,EA070,3,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA070,4,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA070,4,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA070,4,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,,,EA070,NA,,,, +Aj1,,1950,EA070,2,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA070,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA070,3,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,1920,EA070,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,,EA070,NA,,,, +Aj14,,,EA070,NA,,,, +Aj15,,1900,EA070,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA070,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA070,3,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA070,NA,,,, +Aj19,,1920,EA070,3,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA070,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA070,3,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,1930,EA070,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,,EA070,NA,,,, +Aj23,,1950,EA070,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,,EA070,NA,,,, +Aj25,,1920,EA070,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA070,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,1920,EA070,1,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA070,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA070,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA070,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA070,NA,,,, +Aj31,,,EA070,NA,,,, +Aj4,,1920,EA070,2,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA070,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA070,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA070,1,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA070,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA070,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA070,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA070,4,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA070,3,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA070,4,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA070,4,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,1950,EA070,2,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,,EA070,NA,,,, +Ca16,,,EA070,NA,,,, +Ca17,,,EA070,NA,,,, +Ca18,,,EA070,NA,,,, +Ca19,,,EA070,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA070,4,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA070,NA,,,, +Ca21,,,EA070,NA,,,, +Ca22,,,EA070,NA,,,, +Ca23,,,EA070,NA,,,, +Ca24,,1950,EA070,3,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,,EA070,NA,,,, +Ca26,,,EA070,NA,,,, +Ca27,,,EA070,NA,,,, +Ca28,,,EA070,NA,,,, +Ca29,,1920,EA070,4,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA070,4,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA070,4,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA070,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA070,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA070,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA070,NA,,,, +Ca35,,,EA070,NA,,,, +Ca36,,1860,EA070,4,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA070,4,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA070,4,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA070,4,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,,EA070,NA,,,, +Ca40,,1950,EA070,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA070,4,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA070,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA070,NA,,,, +Ca5,,1930,EA070,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,1880,EA070,4,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA070,4,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,,EA070,NA,,,, +Ca9,,1890,EA070,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA070,2,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA070,3,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA070,NA,,,, +Cb12,,1920,EA070,3,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA070,3,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA070,3,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA070,4,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA070,3,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA070,3,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA070,4,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA070,4,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA070,4,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA070,3,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA070,3,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA070,3,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA070,4,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,,,EA070,NA,,,, +Cb25,,1930,EA070,3,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA070,3,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA070,3,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,,EA070,NA,,,, +Cb29,,,EA070,NA,,,, +Cb3,Bamba division,1940,EA070,4,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA070,3,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA070,3,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA070,3,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA070,4,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA070,3,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA070,4,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA070,4,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA070,4,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA070,4,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA070,4,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA070,NA,,,, +Cc14,,1880,EA070,4,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA070,4,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA070,4,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,1930,EA070,4,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA070,4,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA070,4,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA070,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA070,4,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA070,4,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA070,3,,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA070,4,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA070,4,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA070,4,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA070,4,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA070,4,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA070,4,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA070,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA070,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA070,4,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,,EA070,NA,,,, +Cd14,,1870,EA070,4,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA070,4,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA070,4,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,,EA070,NA,,,, +Cd18,,1920,EA070,4,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA070,4,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA070,3,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,,EA070,NA,,,, +Cd21,,,EA070,NA,,,, +Cd3,Entirety: Moroccan,1920,EA070,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA070,2,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA070,1,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA070,4,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA070,3,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,,EA070,NA,,,, +Cd9,,1900,EA070,4,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA070,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA070,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,City and environs of Rome,100,EA070,4,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA070,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA070,1,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA070,1,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA070,1,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA070,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA070,1,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA070,2,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA070,1,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA070,4,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA070,1,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA070,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA070,4,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA070,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA070,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA070,1,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA070,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA070,NA,,,, +Ch11,Viriatino Village,1955,EA070,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA070,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA070,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA070,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA070,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA070,1,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,1930,EA070,1,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,1940,EA070,1,,hanzeli1955,EthnographicAtlas_1967_p85, +Ch9,,1930,EA070,1,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,,,EA070,NA,,,, +Ci10,Vicinity of Erevan,1900,EA070,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA070,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA070,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA070,1,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA070,NA,,,, +Ci4,,1920,EA070,3,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA070,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA070,4,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,,EA070,NA,,,, +Ci8,,1850,EA070,4,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA070,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA070,1,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA070,4,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA070,4,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA070,4,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA070,4,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA070,4,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA070,1,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA070,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA070,4,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA070,4,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,,EA070,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA070,4,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA070,4,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,,EA070,NA,,,, +Ea13,Mohla Village,1950,EA070,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA070,3,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA070,3,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,,EA070,NA,,,, +Ea5,,1890,EA070,4,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA070,1,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,,EA070,NA,,,, +Ea8,,1920,EA070,4,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,1950,EA070,4,,vreeland1957,EthnographicAtlas_1967_p89, +Eb1,Great Horde,1910,EA070,4,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA070,3,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA070,4,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA070,1,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA070,3,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA070,3,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA070,4,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA070,NA,,,, +Ec1,Sakhalin Island,1920,EA070,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA070,3,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA070,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA070,3,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA070,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA070,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA070,2,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA070,2,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA070,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA070,1,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA070,3,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA070,4,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA070,NA,,,, +Ed13,,,EA070,NA,,,, +Ed14,,,EA070,NA,,,, +Ed15a,,,EA070,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA070,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA070,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA070,4,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA070,2,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA070,1,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA070,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA070,2,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA070,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA070,1,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,,EA070,NA,,,, +Ee1,,1940,EA070,4,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,,,EA070,NA,,,, +Ee3,Lingthem and vicinity,1930,EA070,4,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA070,3,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA070,4,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA070,4,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA070,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA070,3,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA070,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA070,NA,,,, +Ef11,Village and environs of Senapur,1945,EA070,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA070,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA070,NA,,,, +Ef4,,,EA070,NA,,,, +Ef5,,1900,EA070,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA070,2,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA070,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,,,EA070,NA,,,, +Ef9,,,EA070,NA,,,, +Eg1,with special reference to the forest group,1940,EA070,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA070,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA070,NA,,,, +Eg12,,,EA070,NA,,,, +Eg13,Bastar State,1941,EA070,1,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA070,1,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA070,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA070,1,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA070,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA070,4,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA070,1,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA070,1,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA070,1,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA070,1,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA070,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA070,NA,,,, +Eh2,,1900,EA070,4,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA070,4,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA070,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA070,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA070,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA070,4,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA070,4,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA070,4,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA070,3,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA070,4,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA070,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA070,3,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA070,2,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA070,4,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA070,NA,,,, +Ei16,,1910,EA070,1,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA070,NA,,,, +Ei18,,,EA070,NA,,,, +Ei19,,1940,EA070,4,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA070,4,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA070,NA,,,, +Ei3,Nondwin Village,1950,EA070,3,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA070,4,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA070,3,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,,EA070,NA,,,, +Ei7,,1910,EA070,2,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA070,4,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,,EA070,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA070,1,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA070,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,,,EA070,NA,,,, +Ej12,,,EA070,NA,,,, +Ej13,,1940,EA070,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA070,1,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA070,4,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA070,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA070,2,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA070,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA070,3,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA070,3,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,of the Mergui Archipelago,1920,EA070,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p93, +Ej7,,1950,EA070,1,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA070,2,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA070,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA070,2,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,,EA070,NA,,,, +Ia11,,,EA070,NA,,,, +Ia12,,1950,EA070,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,Tawi-Tawi and adjacent islands,1960,EA070,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA070,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,with special reference to those of the Agusan Valley,1920,EA070,2,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA070,1,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA070,NA,,,, +Ia18,,,EA070,NA,,,, +Ia2,,1950,EA070,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA070,4,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA070,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA070,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA070,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA070,2,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA070,1,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,,,EA070,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA070,4,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA070,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA070,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA070,3,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA070,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA070,4,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA070,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,with special reference to the Ridan group,1900,EA070,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA070,NA,,,, +Ic1,Borongloe,1940,EA070,4,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA070,4,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA070,4,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA070,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA070,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA070,2,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p97, +Ic3,with special reference to the Mountain Belu,1950,EA070,4,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,1920,EA070,2,,kruyt1921; wetering1925,Ethnology_Vol2_No1_Jan_1963, +Ic5,Bare'e subgroup,1910,EA070,3,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA070,2,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA070,4,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA070,4,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA070,4,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA070,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA070,1,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA070,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA070,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA070,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA070,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA070,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,1900,EA070,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p97, +Id5,,1910,EA070,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p97, +Id6,with special reference to the Archer River group,1920,EA070,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p97, +Id7,,,EA070,NA,,,, +Id8,,1830,EA070,1,,roth1890,EthnographicAtlas_1967_p97, +Id9,,1910,EA070,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p97, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA070,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA070,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA070,1,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA070,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA070,1,,landtman1927,EthnographicAtlas_1967_p97, +Ie14,,1900,EA070,1,,haddon1908,EthnographicAtlas_1967_p97, +Ie15,Kalabu; Northern Abelam,1930,EA070,1,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA070,1,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA070,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA070,1,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA070,1,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA070,1,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA070,1,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA070,1,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA070,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA070,1,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA070,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA070,1,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA070,1,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA070,1,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA070,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA070,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA070,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA070,1,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA070,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA070,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA070,1,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA070,NA,,,, +Ie35,,1930,EA070,1,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA070,NA,,,, +Ie37,,,EA070,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA070,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA070,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA070,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA070,1,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA070,2,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA070,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA070,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA070,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA070,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA070,NA,,,, +If11,,1860,EA070,1,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,1940,EA070,1,,mason1954,EthnographicAtlas_1967_p101, +If13,,1900,EA070,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p101, +If14,Makin and Butiritari Islands (N),1890,EA070,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA070,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,1960,EA070,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA070,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA070,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA070,1,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA070,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA070,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA070,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA070,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA070,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA070,1,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA070,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,1950,EA070,1,,schwartz1964,EthnographicAtlas_1967_p101, +Ig11,,1920,EA070,1,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,with special reference to the Varisi,1900,EA070,2,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA070,2,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA070,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA070,NA,,,, +Ig16,,,EA070,NA,,,, +Ig17,,,EA070,NA,,,, +Ig18,,,EA070,NA,,,, +Ig19,,,EA070,NA,,,, +Ig2,Kiriwina Island,1910,EA070,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,,,EA070,NA,,,, +Ig21,with special reference to Boieng Island,1930,EA070,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA070,1,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA070,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA070,1,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA070,1,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA070,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA070,NA,,,, +Ig9,Peri Village,1920,EA070,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA070,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA070,1,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA070,NA,,,, +Ih12,,,EA070,NA,,,, +Ih13,,,EA070,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA070,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA070,1,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA070,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA070,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA070,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,1890,EA070,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p101, +Ih7,,1910,EA070,3,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA070,1,,quain1949,EthnographicAtlas_1967_p101, +Ih9,Graciosa Bay,1930,EA070,2,,davenport1964,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA070,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA070,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA070,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA070,1,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA070,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA070,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA070,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA070,1,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA070,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA070,1,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA070,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA070,1,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA070,1,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA070,1,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,1900,EA070,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA070,2,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA070,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA070,1,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA070,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA070,4,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA070,1,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA070,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA070,2,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA070,1,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA070,3,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA070,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA070,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA070,1,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA070,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA070,1,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA070,1,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA070,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA070,4,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA070,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA070,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA070,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA070,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA070,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA070,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA070,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA070,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA070,4,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA070,1,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA070,1,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA070,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA070,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA070,1,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA070,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA070,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA070,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA070,1,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA070,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA070,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA070,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA070,1,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA070,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA070,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA070,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,,,EA070,NA,,,, +Na43,,1920,EA070,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA070,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA070,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA070,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA070,1,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA070,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA070,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA070,4,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA070,4,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA070,4,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA070,4,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA070,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA070,4,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA070,4,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA070,4,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA070,4,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA070,2,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA070,4,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA070,4,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA070,4,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA070,4,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA070,3,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA070,4,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA070,4,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA070,4,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA070,4,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA070,4,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA070,4,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA070,4,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA070,4,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA070,4,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA070,3,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA070,2,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA070,2,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA070,1,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA070,2,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA070,2,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA070,2,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,,EA070,NA,,,, +Nb38,,,EA070,NA,,,, +Nb39,,1860,EA070,1,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA070,2,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA070,2,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA070,2,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA070,4,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA070,4,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA070,4,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA070,1,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA070,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA070,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA070,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA070,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA070,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA070,1,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA070,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA070,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA070,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA070,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA070,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA070,2,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA070,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA070,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA070,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA070,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA070,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA070,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA070,1,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA070,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA070,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA070,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA070,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA070,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA070,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA070,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA070,1,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA070,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA070,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA070,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA070,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA070,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA070,2,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA070,2,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA070,4,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA070,2,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA070,2,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA070,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA070,2,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA070,1,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA070,2,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA070,2,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA070,4,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA070,2,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA070,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA070,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA070,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA070,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA070,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA070,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA070,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA070,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA070,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA070,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA070,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA070,1,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA070,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA070,1,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA070,1,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA070,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA070,1,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA070,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA070,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA070,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA070,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA070,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA070,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA070,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA070,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA070,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA070,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA070,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA070,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA070,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA070,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA070,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA070,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA070,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA070,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA070,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA070,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA070,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA070,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA070,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA070,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA070,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA070,1,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA070,2,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA070,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA070,2,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA070,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA070,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA070,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA070,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA070,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA070,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA070,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA070,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA070,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA070,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA070,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA070,1,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA070,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA070,NA,,,, +Ne3,Comanche Tribe,1870,EA070,2,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA070,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA070,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA070,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA070,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA070,2,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA070,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA070,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA070,1,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA070,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA070,2,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA070,NA,,,, +Nf15,,,EA070,NA,,,, +Nf2,,1850,EA070,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA070,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA070,3,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA070,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA070,2,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA070,3,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA070,2,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,1870,EA070,3,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p117, +Ng1,Bear and Cord Subtribes,1640,EA070,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA070,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA070,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA070,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA070,NA,,,, +Ng14,,,EA070,NA,,,, +Ng15,,,EA070,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA070,1,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA070,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA070,1,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA070,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA070,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,,,EA070,NA,,,, +Ng8,,,EA070,NA,,,, +Ng9,,1920,EA070,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA070,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA070,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA070,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA070,1,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA070,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA070,1,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA070,2,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA070,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA070,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA070,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA070,2,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA070,1,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,,EA070,NA,,,, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA070,2,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,,EA070,NA,,,, +Nh23,,1870,EA070,1,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA070,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA070,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA070,NA,,,, +Nh27,,,EA070,NA,,,, +Nh3,,1930,EA070,2,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA070,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA070,1,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA070,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA070,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA070,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA070,1,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA070,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA070,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA070,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA070,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA070,1,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA070,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA070,1,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA070,NA,,,, +Ni9,,,EA070,NA,,,, +Nj1,Ojitlan,1940,EA070,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA070,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA070,NA,,,, +Nj12,,,EA070,NA,,,, +Nj13,,,EA070,NA,,,, +Nj14,,,EA070,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA070,2,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA070,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,1940,EA070,3,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p121, +Nj5,,,EA070,NA,,,, +Nj6,with special reference to San Mateo,1950,EA070,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA070,1,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA070,NA,,,, +Nj9,,1960,EA070,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA070,3,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA070,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,1880,EA070,4,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA070,1,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA070,4,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA070,NA,,,, +Sa15,,,EA070,NA,,,, +Sa16,,,EA070,NA,,,, +Sa17,,,EA070,NA,,,, +Sa2,,,EA070,NA,,,, +Sa3,,1930,EA070,1,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA070,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA070,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA070,4,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,1940,EA070,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA070,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA070,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA070,4,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA070,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA070,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA070,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA070,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA070,4,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,with special reference to the Pariri,1950,EA070,1,,wilbert1961b,EthnographicAtlas_1967_p121, +Sb8,,1520,EA070,3,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA070,4,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA070,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,1900,EA070,3,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p121, +Sc11,,,EA070,NA,,,, +Sc12,,,EA070,NA,,,, +Sc13,,1950,EA070,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA070,NA,,,, +Sc15,,1910,EA070,3,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA070,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA070,1,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA070,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA070,1,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA070,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA070,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA070,1,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA070,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA070,1,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA070,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,1950,EA070,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p121, +Sd1,Cabrura village,1950,EA070,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA070,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,1920,EA070,1,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,1950,EA070,1,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA070,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA070,1,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA070,1,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA070,1,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA070,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA070,1,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA070,2,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA070,1,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA070,NA,,,, +Se2,,1940,EA070,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA070,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA070,1,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA070,4,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA070,2,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA070,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA070,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA070,2,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA070,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA070,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA070,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,,EA070,NA,,,, +Sf5,,1900,EA070,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA070,3,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA070,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA070,NA,,,, +Sf9,,,EA070,NA,,,, +Sg1,Eastern and central,1870,EA070,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA070,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA070,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA070,2,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA070,1,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA070,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA070,4,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA070,4,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA070,3,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA070,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA070,3,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,,EA070,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA070,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA070,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,Kejara,1920,EA070,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA070,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA070,2,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA070,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA070,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA070,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA070,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA070,2,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA070,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA070,NA,,,, +Sj1,,1950,EA070,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,,,EA070,NA,,,, +Sj11,Village of Sao Domingo,1958,EA070,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA070,1,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA070,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA070,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA070,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA070,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA070,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA070,2,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA070,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA070,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA070,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA070,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA070,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA070,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA070,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA070,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA070,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA070,1,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA070,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA070,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA070,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA070,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA070,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA070,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA070,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA070,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA070,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA070,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA070,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA070,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA070,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA070,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA070,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA070,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA070,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA070,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA071,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA071,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA071,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA071,3,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA071,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA071,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA071,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA071,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA071,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA071,2,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA071,1,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA071,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA071,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA071,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA071,1,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,,EA071,NA,,,, +Ab16,,1930,EA071,1,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA071,2,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA071,3,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA071,2,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA071,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA071,3,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA071,2,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA071,NA,,,, +Ab22,,,EA071,NA,,,, +Ab3,Ruling Luyana,1890,EA071,3,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA071,1,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA071,3,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA071,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA071,2,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA071,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA071,1,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA071,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA071,2,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA071,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA071,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA071,2,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA071,2,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA071,3,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA071,3,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA071,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA071,2,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,1880,EA071,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA071,2,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,1920,EA071,2,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA071,2,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA071,2,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA071,2,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA071,2,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA071,2,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA071,3,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,,EA071,NA,,,, +Ac28,,,EA071,NA,,,, +Ac29,,1930,EA071,2,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA071,2,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA071,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA071,2,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA071,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA071,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA071,2,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,1900,EA071,3,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA071,2,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,,EA071,NA,,,, +Ac38,,1910,EA071,3,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA071,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA071,3,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA071,3,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA071,3,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA071,3,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA071,3,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA071,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA071,2,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,1920,EA071,2,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA071,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA071,2,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA071,2,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA071,3,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA071,2,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,,EA071,NA,,,, +Ad13,,1930,EA071,2,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA071,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA071,2,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA071,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA071,3,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA071,3,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA071,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA071,2,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA071,3,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA071,2,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA071,2,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA071,3,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA071,3,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA071,3,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA071,1,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA071,3,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA071,3,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA071,2,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA071,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA071,3,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,1910,EA071,3,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA071,3,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA071,3,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA071,2,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA071,2,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA071,3,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA071,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA071,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA071,1,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA071,1,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA071,NA,,,, +Ad41,,,EA071,NA,,,, +Ad42,,1900,EA071,3,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,1900,EA071,2,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,,EA071,NA,,,, +Ad45,,1920,EA071,2,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA071,2,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA071,3,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA071,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA071,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA071,1,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA071,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA071,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA071,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA071,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA071,2,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA071,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA071,1,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA071,2,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA071,3,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA071,2,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,,EA071,NA,,,, +Ae14,,1950,EA071,2,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA071,3,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA071,3,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA071,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA071,3,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA071,3,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA071,2,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA071,3,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA071,3,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA071,3,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA071,3,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA071,3,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA071,3,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA071,3,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA071,3,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA071,3,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA071,3,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA071,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA071,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA071,3,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA071,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,,EA071,NA,,,, +Ae34,,1920,EA071,1,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA071,3,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA071,3,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA071,3,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA071,3,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA071,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA071,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA071,3,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA071,2,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA071,3,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA071,3,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA071,3,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA071,3,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA071,3,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA071,3,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA071,3,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,1900,EA071,3,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA071,2,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA071,3,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA071,3,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA071,2,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA071,2,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA071,2,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA071,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,1950,EA071,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,1930,EA071,2,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA071,3,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA071,2,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA071,2,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA071,3,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA071,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA071,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA071,3,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA071,3,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA071,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA071,2,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA071,3,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA071,2,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA071,3,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA071,3,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA071,2,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA071,2,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA071,2,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA071,2,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA071,3,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA071,3,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA071,2,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA071,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA071,3,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA071,2,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA071,3,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA071,2,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA071,2,,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA071,2,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA071,2,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA071,2,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA071,2,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA071,2,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA071,2,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA071,2,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA071,NA,,,, +Af36,with special reference to the Glidyi,1900,EA071,2,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA071,2,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA071,2,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA071,3,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA071,2,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA071,3,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA071,2,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA071,2,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA071,2,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,1900,EA071,3,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA071,3,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA071,3,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA071,2,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA071,3,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA071,3,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA071,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA071,2,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA071,1,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA071,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA071,NA,,,, +Af54,,1930,EA071,2,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,1950,EA071,3,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA071,2,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA071,2,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA071,2,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA071,2,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA071,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA071,2,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA071,3,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA071,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA071,3,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA071,2,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA071,3,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA071,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA071,1,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA071,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA071,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,1940,EA071,2,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA071,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA071,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA071,2,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA071,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA071,1,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA071,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA071,3,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA071,2,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA071,3,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA071,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA071,2,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA071,2,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,,EA071,NA,,,, +Ag3,,1930,EA071,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA071,3,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA071,3,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA071,3,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA071,2,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA071,2,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA071,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA071,NA,,,, +Ag37,,1910,EA071,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA071,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA071,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA071,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA071,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,,EA071,NA,,,, +Ag42,,1910,EA071,2,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,,EA071,NA,,,, +Ag44,,1910,EA071,3,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA071,2,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA071,2,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA071,3,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA071,3,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA071,3,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA071,2,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA071,3,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA071,2,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,,EA071,NA,,,, +Ag53,with special reference to those of Garango,1960,EA071,2,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA071,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA071,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA071,2,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA071,1,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA071,2,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA071,2,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA071,3,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA071,2,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,,EA071,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA071,2,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA071,2,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,,EA071,NA,,,, +Ah16,,1900,EA071,3,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,,EA071,NA,,,, +Ah18,,1930,EA071,2,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA071,2,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA071,2,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA071,2,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,1920,EA071,3,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA071,3,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,,EA071,NA,,,, +Ah24,,1920,EA071,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA071,2,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA071,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA071,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA071,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA071,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA071,2,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,,EA071,NA,,,, +Ah31,,1910,EA071,3,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA071,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA071,3,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA071,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA071,3,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA071,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA071,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA071,3,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA071,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA071,2,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA071,2,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA071,2,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA071,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA071,3,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA071,2,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA071,3,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA071,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA071,3,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA071,2,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA071,3,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,,EA071,NA,,,, +Ai15,,1900,EA071,3,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,,EA071,NA,,,, +Ai17,,,EA071,NA,,,, +Ai18,,1880,EA071,3,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA071,NA,,,, +Ai2,,1940,EA071,2,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,,EA071,NA,,,, +Ai21,,1880,EA071,3,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,1890,EA071,3,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA071,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA071,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA071,2,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA071,3,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,1890,EA071,3,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA071,3,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,,EA071,NA,,,, +Ai3,,1920,EA071,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,,EA071,NA,,,, +Ai31,,1920,EA071,1,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA071,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,,EA071,NA,,,, +Ai34,,,EA071,NA,,,, +Ai35,,1870,EA071,1,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA071,2,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA071,3,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,,EA071,NA,,,, +Ai39,,1940,EA071,3,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA071,NA,,,, +Ai40,,1940,EA071,3,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA071,3,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA071,3,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA071,3,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,,EA071,NA,,,, +Ai45,,,EA071,NA,,,, +Ai46,,1930,EA071,3,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,,,EA071,NA,,,, +Ai5,,1920,EA071,2,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA071,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA071,3,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA071,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,,,EA071,NA,,,, +Aj1,,1950,EA071,2,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA071,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA071,3,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,1920,EA071,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,,EA071,NA,,,, +Aj14,,,EA071,NA,,,, +Aj15,,1900,EA071,3,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA071,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA071,3,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA071,NA,,,, +Aj19,,1920,EA071,3,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA071,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA071,2,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,1930,EA071,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,,EA071,NA,,,, +Aj23,,1950,EA071,1,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,,EA071,NA,,,, +Aj25,,1920,EA071,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA071,1,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,1920,EA071,1,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA071,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA071,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA071,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA071,NA,,,, +Aj31,,,EA071,NA,,,, +Aj4,,1920,EA071,2,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA071,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA071,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA071,1,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA071,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA071,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA071,1,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA071,3,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA071,3,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA071,3,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA071,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,1950,EA071,2,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,,EA071,NA,,,, +Ca16,,,EA071,NA,,,, +Ca17,,,EA071,NA,,,, +Ca18,,,EA071,NA,,,, +Ca19,,,EA071,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA071,2,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA071,NA,,,, +Ca21,,,EA071,NA,,,, +Ca22,,,EA071,NA,,,, +Ca23,,,EA071,NA,,,, +Ca24,,1950,EA071,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,,EA071,NA,,,, +Ca26,,,EA071,NA,,,, +Ca27,,,EA071,NA,,,, +Ca28,,,EA071,NA,,,, +Ca29,,1920,EA071,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA071,2,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA071,3,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA071,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA071,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA071,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA071,NA,,,, +Ca35,,,EA071,NA,,,, +Ca36,,1860,EA071,3,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA071,3,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA071,3,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA071,3,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,,EA071,NA,,,, +Ca40,,1950,EA071,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA071,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA071,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA071,NA,,,, +Ca5,,1930,EA071,1,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,1880,EA071,3,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA071,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,,EA071,NA,,,, +Ca9,,1890,EA071,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA071,2,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA071,2,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA071,NA,,,, +Cb12,,1920,EA071,3,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA071,3,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA071,3,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA071,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA071,3,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA071,2,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA071,2,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA071,3,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA071,2,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA071,2,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA071,3,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA071,2,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA071,2,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,,,EA071,NA,,,, +Cb25,,1930,EA071,2,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA071,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA071,3,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,,EA071,NA,,,, +Cb29,,,EA071,NA,,,, +Cb3,Bamba division,1940,EA071,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA071,3,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA071,2,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA071,3,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA071,3,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA071,2,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA071,2,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA071,3,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA071,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA071,3,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA071,3,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA071,NA,,,, +Cc14,,1880,EA071,3,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA071,2,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA071,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,1930,EA071,3,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA071,3,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA071,2,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA071,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA071,3,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA071,2,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA071,2,,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA071,2,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA071,3,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA071,3,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA071,3,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA071,3,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA071,3,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA071,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA071,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA071,3,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,,EA071,NA,,,, +Cd14,,1870,EA071,2,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA071,2,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA071,2,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,,EA071,NA,,,, +Cd18,,1920,EA071,2,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA071,2,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA071,2,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,,EA071,NA,,,, +Cd21,,,EA071,NA,,,, +Cd3,Entirety: Moroccan,1920,EA071,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA071,2,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA071,1,But class and caste distinctions and slavery are well developed among the lowland Shluh,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA071,3,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA071,2,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,,EA071,NA,,,, +Cd9,,1900,EA071,2,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA071,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA071,NA,,,, +Ce3,City and environs of Rome,100,EA071,3,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA071,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA071,1,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA071,1,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA071,1,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA071,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA071,1,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA071,3,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA071,1,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA071,2,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA071,1,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA071,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA071,3,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA071,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA071,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA071,1,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA071,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA071,NA,,,, +Ch11,Viriatino Village,1955,EA071,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA071,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA071,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA071,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA071,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA071,1,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,1930,EA071,1,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,1940,EA071,1,,hanzeli1955,EthnographicAtlas_1967_p85, +Ch9,,1930,EA071,1,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,,,EA071,NA,,,, +Ci10,Vicinity of Erevan,1900,EA071,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA071,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA071,2,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA071,1,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA071,NA,,,, +Ci4,,1920,EA071,2,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA071,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA071,3,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,,EA071,NA,,,, +Ci8,,1850,EA071,3,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA071,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA071,1,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA071,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA071,3,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA071,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA071,3,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA071,3,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA071,1,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA071,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA071,3,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA071,3,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,,EA071,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA071,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA071,2,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,,EA071,NA,,,, +Ea13,Mohla Village,1950,EA071,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA071,2,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA071,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,,EA071,NA,,,, +Ea5,,1890,EA071,3,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA071,1,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,,EA071,NA,,,, +Ea8,,1920,EA071,3,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,1950,EA071,2,,vreeland1957,EthnographicAtlas_1967_p89, +Eb1,Great Horde,1910,EA071,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA071,3,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA071,2,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,,,EA071,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA071,2,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,,,EA071,NA,,,, +Eb7,,1930,EA071,2,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA071,NA,,,, +Ec1,Sakhalin Island,1920,EA071,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA071,2,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA071,1,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA071,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA071,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA071,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA071,2,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA071,2,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA071,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA071,1,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA071,3,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA071,2,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA071,NA,,,, +Ed13,,,EA071,NA,,,, +Ed14,,,EA071,NA,,,, +Ed15a,,,EA071,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA071,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA071,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA071,3,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA071,2,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA071,1,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA071,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA071,2,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA071,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA071,1,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,,EA071,NA,,,, +Ee1,,1940,EA071,3,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,,,EA071,NA,,,, +Ee3,Lingthem and vicinity,1930,EA071,2,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA071,3,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA071,3,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA071,2,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA071,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA071,2,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA071,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA071,NA,,,, +Ef11,Village and environs of Senapur,1945,EA071,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA071,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA071,NA,,,, +Ef4,,,EA071,NA,,,, +Ef5,,1900,EA071,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA071,2,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA071,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,,,EA071,NA,,,, +Ef9,,,EA071,NA,,,, +Eg1,with special reference to the forest group,1940,EA071,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA071,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA071,NA,,,, +Eg12,,,EA071,NA,,,, +Eg13,Bastar State,1941,EA071,1,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA071,1,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA071,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA071,1,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA071,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA071,2,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA071,1,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA071,1,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA071,1,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA071,1,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA071,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA071,NA,,,, +Eh2,,1900,EA071,2,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA071,2,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA071,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA071,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA071,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA071,2,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA071,2,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA071,2,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA071,2,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA071,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA071,1,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA071,2,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA071,3,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA071,2,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA071,NA,,,, +Ei16,,1910,EA071,1,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA071,NA,,,, +Ei18,,,EA071,NA,,,, +Ei19,,1940,EA071,3,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA071,2,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA071,NA,,,, +Ei3,Nondwin Village,1950,EA071,2,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA071,3,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA071,2,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,,EA071,NA,,,, +Ei7,,1910,EA071,2,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA071,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,,EA071,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA071,1,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA071,1,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,,,EA071,NA,,,, +Ej12,,,EA071,NA,,,, +Ej13,,1940,EA071,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA071,1,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA071,3,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA071,1,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA071,3,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA071,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA071,2,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA071,2,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,of the Mergui Archipelago,1920,EA071,1,,carrapiett1909; white1922,EthnographicAtlas_1967_p93, +Ej7,,1950,EA071,1,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA071,2,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA071,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA071,2,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,,EA071,NA,,,, +Ia11,,,EA071,NA,,,, +Ia12,,1950,EA071,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,Tawi-Tawi and adjacent islands,1960,EA071,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA071,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,with special reference to those of the Agusan Valley,1920,EA071,2,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA071,1,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA071,NA,,,, +Ia18,,,EA071,NA,,,, +Ia2,,1950,EA071,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA071,2,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA071,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA071,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA071,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA071,2,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA071,1,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,,,EA071,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA071,2,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA071,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA071,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA071,2,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA071,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA071,2,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA071,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,with special reference to the Ridan group,1900,EA071,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA071,NA,,,, +Ic1,Borongloe,1940,EA071,2,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA071,3,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA071,2,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA071,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA071,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA071,2,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p97, +Ic3,with special reference to the Mountain Belu,1950,EA071,2,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,1920,EA071,2,,kruyt1921; wetering1925,Ethnology_Vol2_No1_Jan_1963, +Ic5,Bare'e subgroup,1910,EA071,2,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA071,2,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA071,2,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA071,3,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA071,3,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA071,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA071,1,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA071,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA071,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,1930,EA071,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA071,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA071,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,1900,EA071,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p97, +Id5,,1910,EA071,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p97, +Id6,with special reference to the Archer River group,1920,EA071,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p97, +Id7,,,EA071,NA,,,, +Id8,,1830,EA071,1,,roth1890,EthnographicAtlas_1967_p97, +Id9,,1910,EA071,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p97, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA071,1,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA071,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA071,1,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA071,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA071,1,,landtman1927,EthnographicAtlas_1967_p97, +Ie14,,1900,EA071,1,,haddon1908,EthnographicAtlas_1967_p97, +Ie15,Kalabu; Northern Abelam,1930,EA071,1,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA071,1,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA071,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA071,1,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA071,1,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA071,1,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA071,1,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA071,1,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA071,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA071,1,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA071,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA071,1,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA071,1,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA071,1,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA071,1,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA071,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA071,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA071,1,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA071,1,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA071,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA071,1,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA071,NA,,,, +Ie35,,1930,EA071,1,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA071,NA,,,, +Ie37,,,EA071,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA071,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA071,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA071,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA071,1,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA071,2,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA071,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA071,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA071,1,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA071,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA071,NA,,,, +If11,,1860,EA071,1,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,1940,EA071,1,,mason1954,EthnographicAtlas_1967_p101, +If13,,1900,EA071,1,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p101, +If14,Makin and Butiritari Islands (N),1890,EA071,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA071,1,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,1960,EA071,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA071,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA071,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA071,1,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA071,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA071,1,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA071,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA071,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA071,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA071,1,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA071,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,1950,EA071,1,,schwartz1964,EthnographicAtlas_1967_p101, +Ig11,,1920,EA071,1,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,with special reference to the Varisi,1900,EA071,3,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA071,2,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA071,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA071,NA,,,, +Ig16,,,EA071,NA,,,, +Ig17,,,EA071,NA,,,, +Ig18,,,EA071,NA,,,, +Ig19,,,EA071,NA,,,, +Ig2,Kiriwina Island,1910,EA071,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,,,EA071,NA,,,, +Ig21,with special reference to Boieng Island,1930,EA071,1,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA071,1,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA071,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA071,1,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA071,1,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA071,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA071,NA,,,, +Ig9,Peri Village,1920,EA071,1,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA071,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA071,1,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA071,NA,,,, +Ih12,,,EA071,NA,,,, +Ih13,,,EA071,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA071,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA071,1,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA071,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA071,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA071,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,1890,EA071,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p101, +Ih7,,1910,EA071,2,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA071,1,,quain1949,EthnographicAtlas_1967_p101, +Ih9,Graciosa Bay,1930,EA071,3,,davenport1964,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA071,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA071,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA071,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA071,1,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA071,1,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA071,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA071,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA071,1,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA071,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA071,1,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA071,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA071,1,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA071,1,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA071,1,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,1900,EA071,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA071,3,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA071,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA071,1,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA071,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA071,2,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA071,1,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA071,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA071,3,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA071,1,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA071,2,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA071,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA071,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA071,1,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA071,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA071,1,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA071,1,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA071,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA071,3,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA071,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA071,3,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA071,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA071,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA071,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA071,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA071,1,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA071,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA071,3,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA071,1,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA071,1,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA071,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA071,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA071,1,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA071,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA071,1,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA071,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA071,1,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA071,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA071,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA071,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA071,1,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA071,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA071,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA071,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,,,EA071,NA,,,, +Na43,,1920,EA071,1,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA071,1,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA071,1,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA071,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA071,1,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA071,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA071,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA071,3,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA071,2,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA071,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA071,3,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA071,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA071,3,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA071,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA071,3,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA071,3,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA071,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA071,3,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA071,3,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA071,2,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA071,3,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA071,3,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA071,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA071,3,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA071,3,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA071,3,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA071,3,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA071,3,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA071,3,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA071,3,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA071,2,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA071,3,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA071,3,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA071,3,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA071,1,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA071,3,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA071,3,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA071,3,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,,EA071,NA,,,, +Nb38,,,EA071,NA,,,, +Nb39,,1860,EA071,1,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA071,3,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA071,2,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA071,3,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA071,2,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA071,2,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA071,3,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA071,1,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA071,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA071,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA071,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA071,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA071,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA071,1,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA071,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA071,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA071,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA071,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA071,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA071,3,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA071,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA071,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA071,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA071,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA071,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA071,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA071,1,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA071,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA071,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA071,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA071,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA071,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA071,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA071,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA071,1,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA071,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA071,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA071,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA071,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA071,3,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA071,3,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA071,2,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA071,3,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA071,3,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA071,3,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA071,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA071,3,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA071,1,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA071,3,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA071,3,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA071,3,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA071,3,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA071,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA071,3,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA071,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA071,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA071,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA071,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA071,1,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA071,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA071,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA071,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA071,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA071,1,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA071,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA071,1,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA071,1,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA071,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA071,1,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA071,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA071,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA071,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA071,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA071,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA071,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA071,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA071,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA071,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA071,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA071,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA071,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA071,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA071,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA071,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA071,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA071,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA071,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA071,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA071,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA071,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA071,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA071,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA071,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA071,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA071,1,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA071,2,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA071,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA071,3,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA071,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA071,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA071,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA071,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA071,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA071,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA071,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA071,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA071,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA071,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA071,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA071,1,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA071,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA071,NA,,,, +Ne3,Comanche Tribe,1870,EA071,2,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA071,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA071,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA071,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA071,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA071,3,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA071,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA071,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA071,1,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA071,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA071,3,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA071,NA,,,, +Nf15,,,EA071,NA,,,, +Nf2,,1850,EA071,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA071,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA071,2,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA071,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA071,2,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA071,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA071,3,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,1870,EA071,2,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p117, +Ng1,Bear and Cord Subtribes,1640,EA071,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA071,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA071,1,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA071,1,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA071,NA,,,, +Ng14,,,EA071,NA,,,, +Ng15,,,EA071,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA071,1,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA071,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA071,1,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA071,1,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA071,1,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,,,EA071,NA,,,, +Ng8,,,EA071,NA,,,, +Ng9,,1920,EA071,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA071,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA071,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA071,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA071,1,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA071,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA071,1,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA071,3,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA071,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA071,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA071,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA071,3,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA071,1,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,,EA071,NA,,,, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA071,3,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,,EA071,NA,,,, +Nh23,,1870,EA071,1,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA071,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA071,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA071,NA,,,, +Nh27,,,EA071,NA,,,, +Nh3,,1930,EA071,2,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA071,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA071,1,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA071,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA071,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA071,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA071,1,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA071,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA071,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA071,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA071,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA071,1,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA071,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA071,1,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA071,NA,,,, +Ni9,,,EA071,NA,,,, +Nj1,Ojitlan,1940,EA071,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA071,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA071,NA,,,, +Nj12,,,EA071,NA,,,, +Nj13,,,EA071,NA,,,, +Nj14,,,EA071,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA071,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA071,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,1940,EA071,2,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p121, +Nj5,,,EA071,NA,,,, +Nj6,with special reference to San Mateo,1950,EA071,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA071,1,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA071,NA,,,, +Nj9,,1960,EA071,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA071,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA071,1,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,1880,EA071,3,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA071,1,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA071,2,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA071,NA,,,, +Sa15,,,EA071,NA,,,, +Sa16,,,EA071,NA,,,, +Sa17,,,EA071,NA,,,, +Sa2,,,EA071,NA,,,, +Sa3,,1930,EA071,1,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA071,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA071,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA071,3,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,1940,EA071,1,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA071,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA071,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA071,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA071,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA071,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA071,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA071,1,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA071,3,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,with special reference to the Pariri,1950,EA071,1,,wilbert1961b,EthnographicAtlas_1967_p121, +Sb8,,1520,EA071,3,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA071,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA071,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,1900,EA071,3,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p121, +Sc11,,,EA071,NA,,,, +Sc12,,,EA071,NA,,,, +Sc13,,1950,EA071,1,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA071,NA,,,, +Sc15,,1910,EA071,3,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA071,1,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA071,1,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA071,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA071,1,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA071,1,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA071,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA071,1,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA071,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA071,1,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA071,1,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,1950,EA071,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p121, +Sd1,Cabrura village,1950,EA071,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA071,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,1920,EA071,1,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,1950,EA071,1,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA071,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA071,1,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA071,1,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA071,1,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA071,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA071,1,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA071,3,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA071,1,,prost1965,EthnographicAtlas_1967_p125, +Se12,,1950,EA071,2,,fulop1955,Ethnology_Vol4_No4_Oct_1965, +Se2,,1940,EA071,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA071,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA071,1,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA071,3,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA071,3,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA071,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA071,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA071,3,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA071,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA071,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA071,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,,EA071,NA,,,, +Sf5,,1900,EA071,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA071,3,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA071,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA071,NA,,,, +Sf9,,,EA071,NA,,,, +Sg1,Eastern and central,1870,EA071,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA071,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA071,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA071,3,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA071,1,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA071,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA071,3,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA071,3,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA071,3,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA071,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA071,3,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,,EA071,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA071,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA071,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,Kejara,1920,EA071,1,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA071,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA071,2,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA071,1,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA071,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA071,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA071,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA071,3,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA071,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA071,NA,,,, +Sj1,,1950,EA071,3,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,,,EA071,NA,,,, +Sj11,Village of Sao Domingo,1958,EA071,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA071,1,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA071,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA071,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA071,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA071,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA071,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA071,3,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA071,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA071,1,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA071,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA071,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA071,2,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA071,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA071,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA071,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA071,2,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA071,2,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA071,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA071,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA071,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA071,2,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA071,2,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA071,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA071,2,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA071,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA071,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA071,3,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA071,3,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA071,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA071,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA071,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA071,3,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA071,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA071,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA071,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA072,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA072,7,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA072,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA072,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA072,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,,EA072,NA,,,, +Aa7,,1910,EA072,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,,EA072,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA072,4,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA072,1,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA072,1,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA072,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA072,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA072,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,,EA072,NA,,,, +Ab15,,1860,EA072,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,1930,EA072,1,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA072,1,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA072,1,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA072,3,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA072,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA072,3,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA072,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA072,NA,,,, +Ab22,,,EA072,NA,,,, +Ab3,Ruling Luyana,1890,EA072,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA072,1,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA072,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA072,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA072,2,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA072,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA072,3,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA072,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA072,2,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA072,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA072,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA072,2,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA072,2,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA072,2,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA072,2,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA072,2,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA072,2,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,1880,EA072,6,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA072,2,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,1920,EA072,2,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA072,2,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA072,2,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA072,2,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA072,2,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA072,2,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA072,2,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA072,2,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA072,2,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,,EA072,NA,,,, +Ac3,Zambia branch,1900,EA072,2,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA072,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA072,3,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA072,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA072,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA072,2,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,,EA072,NA,,,, +Ac36,,1920,EA072,1,Formerly matrilineal,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA072,2,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA072,2,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA072,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA072,4,The eldest lineage head succeeds,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA072,2,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA072,NA,Matrilineal,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA072,NA,,,, +Ac43,,,EA072,NA,,,, +Ac5,,1920,EA072,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA072,2,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,1920,EA072,2,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA072,2,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,,,EA072,NA,,,, +Ad1,,1950,EA072,1,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA072,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA072,3,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA072,9,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,,EA072,NA,,,, +Ad14,Morogoro District,1930,EA072,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA072,1,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA072,3,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA072,1,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA072,3,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA072,6,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA072,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA072,1,"But formerly 'matrilineal heir' (code ""2"") in some chiefdoms",blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA072,6,Nq in the royal family [sic Gray (1999)],maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA072,3,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA072,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA072,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,,EA072,NA,,,, +Ad26,,1910,EA072,9,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA072,3,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA072,NA,,,, +Ad29,,1930,EA072,6,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA072,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA072,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,1910,EA072,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA072,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA072,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA072,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA072,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA072,1,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,,EA072,NA,,,, +Ad38,,,EA072,NA,,,, +Ad39,,1950,EA072,6,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA072,2,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA072,NA,,,, +Ad41,,,EA072,NA,,,, +Ad42,,1900,EA072,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,,EA072,NA,,,, +Ad44,,1920,EA072,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,,EA072,NA,,,, +Ad46,,1950,EA072,3,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA072,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA072,1,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA072,NA,,,, +Ad5,,1940,EA072,2,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA072,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA072,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA072,6,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA072,3,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,,,EA072,NA,,,, +Ad9,,1900,EA072,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA072,9,A council of elders only,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA072,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA072,1,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA072,1,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA072,3,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA072,1,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,,EA072,NA,,,, +Ae16,,1910,EA072,1,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA072,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA072,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA072,NA,,,, +Ae2,,1950,EA072,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA072,1,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA072,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA072,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA072,1,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA072,1,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA072,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA072,1,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA072,1,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,,EA072,NA,,,, +Ae29,,1900,EA072,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA072,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,,EA072,NA,,,, +Ae31,,1920,EA072,1,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA072,NA,,,, +Ae33,,1920,EA072,1,"But Moller reports 'patrilineal heir' (code ""1"")",czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA072,NA,,,, +Ae35,,,EA072,NA,,,, +Ae36,,1920,EA072,1,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA072,NA,,,, +Ae38,,1920,EA072,2,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA072,7,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA072,1,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA072,1,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA072,1,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA072,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,,EA072,NA,,,, +Ae44,,1920,EA072,2,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA072,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,,EA072,NA,,,, +Ae47,,1900,EA072,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA072,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,1900,EA072,1,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA072,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA072,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA072,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA072,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA072,2,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA072,2,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,,EA072,NA,,,, +Ae56,,,EA072,NA,,,, +Ae57,,,EA072,NA,,,, +Ae58,,,EA072,NA,,,, +Ae59,,,EA072,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA072,1,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,,EA072,NA,,,, +Ae8,,1910,EA072,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA072,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA072,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA072,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA072,1,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,,,EA072,NA,,,, +Af13,,,EA072,NA,,,, +Af14,,,EA072,NA,,,, +Af15,,1920,EA072,6,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA072,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA072,NA,,,, +Af18,,1900,EA072,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA072,6,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,,EA072,NA,,,, +Af20,,1910,EA072,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,,,EA072,NA,,,, +Af22,,1940,EA072,4,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA072,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA072,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA072,4,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA072,1,"But 'nonhereditary, based on seniority' (code ""4"") in some villages",bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA072,6,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA072,1,,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,,EA072,NA,,,, +Af3,Kumasi State,1900,EA072,6,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,,EA072,NA,,,, +Af31,with special reference to the Lafia,1960,EA072,1,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,,,EA072,NA,,,, +Af33,,,EA072,NA,,,, +Af34,,,EA072,NA,,,, +Af35,,,EA072,NA,,,, +Af36,with special reference to the Glidyi,1900,EA072,6,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,,,EA072,NA,,,, +Af38,,,EA072,NA,,,, +Af39,with special reference to the Ndenie,1900,EA072,2,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA072,2,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA072,2,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA072,2,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA072,6,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA072,1,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,,EA072,NA,,,, +Af45,,1900,EA072,2,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,,EA072,NA,,,, +Af47,,1940,EA072,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA072,1,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA072,1,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA072,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,,EA072,NA,,,, +Af51,,1920,EA072,1,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA072,1,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA072,NA,,,, +Af54,,1930,EA072,1,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,1950,EA072,1,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA072,1,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,,EA072,NA,,,, +Af58,,1900,EA072,5,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA072,1,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA072,4,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA072,4,"But 'patrilineal heir' (code ""1"") in some regions",banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA072,2,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA072,1,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA072,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,,EA072,NA,,,, +Ag12,,1910,EA072,1,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA072,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,,EA072,NA,,,, +Ag15,,,EA072,NA,,,, +Ag16,,1930,EA072,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,,EA072,NA,,,, +Ag18,,1930,EA072,2,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA072,1,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,,,EA072,NA,,,, +Ag20,,,EA072,NA,,,, +Ag21,,1910,EA072,2,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA072,1,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,,EA072,NA,,,, +Ag24,,,EA072,NA,,,, +Ag25,,,EA072,NA,,,, +Ag26,,,EA072,NA,,,, +Ag27,,,EA072,NA,,,, +Ag28,,,EA072,NA,,,, +Ag29,,,EA072,NA,,,, +Ag3,,1930,EA072,1,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA072,1,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA072,1,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,,EA072,NA,,,, +Ag33,,,EA072,NA,,,, +Ag34,,,EA072,NA,,,, +Ag35,,1910,EA072,2,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA072,NA,,,, +Ag37,,1910,EA072,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA072,1,"Entry follows Tauxier; Rattry reports 'nonhereditary through election' (code ""6"")",rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA072,1,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA072,4,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA072,1,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA072,1,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA072,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,,EA072,NA,,,, +Ag44,,1910,EA072,3,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA072,3,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA072,1,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA072,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA072,4,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA072,5,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,,EA072,NA,,,, +Ag50,,1910,EA072,5,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA072,NA,,,, +Ag52,,1950,EA072,6,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA072,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA072,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA072,NA,,,, +Ag7,,,EA072,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA072,2,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA072,1,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA072,4,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA072,4,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,,EA072,NA,,,, +Ah12,,,EA072,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA072,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,,EA072,NA,,,, +Ah15,,1920,EA072,4,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA072,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA072,1,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA072,1,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA072,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA072,1,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,,EA072,NA,,,, +Ah21,,,EA072,NA,,,, +Ah22,,1900,EA072,1,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA072,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,,EA072,NA,,,, +Ah25,,,EA072,NA,,,, +Ah26,,1920,EA072,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA072,NA,,,, +Ah28,,,EA072,NA,,,, +Ah29,,1920,EA072,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA072,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA072,9,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA072,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,,EA072,NA,,,, +Ah33,,,EA072,NA,,,, +Ah34,with special reference to the Malabu,1920,EA072,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,,EA072,NA,,,, +Ah36,,1920,EA072,1,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,,EA072,NA,,,, +Ah38,,1930,EA072,1,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA072,6,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA072,2,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA072,6,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,,EA072,NA,,,, +Ah7,,1940,EA072,6,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,,EA072,NA,,,, +Ah9,,1920,EA072,7,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA072,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA072,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA072,1,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA072,1,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA072,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA072,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p77, +Ai15,,1900,EA072,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA072,5,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA072,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA072,6,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA072,NA,,,, +Ai2,,1940,EA072,1,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,,EA072,NA,,,, +Ai21,,,EA072,NA,,,, +Ai22,,,EA072,NA,,,, +Ai23,,1920,EA072,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA072,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA072,6,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA072,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA072,NA,,,, +Ai28,,1910,EA072,3,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA072,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA072,1,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA072,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,,EA072,NA,,,, +Ai32,,1920,EA072,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA072,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA072,1,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA072,5,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA072,6,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA072,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,,EA072,NA,,,, +Ai39,,,EA072,NA,,,, +Ai4,,,EA072,NA,,,, +Ai40,,1940,EA072,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,,EA072,NA,,,, +Ai42,,1940,EA072,1,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,,EA072,NA,,,, +Ai44,,1920,EA072,1,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p77, +Ai45,,,EA072,NA,,,, +Ai46,,1930,EA072,1,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA072,1,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA072,NA,,,, +Ai6,Shilluk Kingdom,1900,EA072,6,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA072,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,,EA072,NA,,,, +Ai9,,,EA072,NA,,,, +Aj1,,,EA072,NA,,,, +Aj10,,,EA072,NA,,,, +Aj11,,,EA072,NA,,,, +Aj12,,1920,EA072,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,,EA072,NA,,,, +Aj14,,,EA072,NA,,,, +Aj15,,1900,EA072,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA072,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA072,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA072,1,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA072,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA072,9,A council of elders,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA072,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,,EA072,NA,,,, +Aj22,,1930,EA072,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA072,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA072,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,,EA072,NA,,,, +Aj26,,1910,EA072,7,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,,EA072,NA,,,, +Aj28,,1940,EA072,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA072,9,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA072,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA072,NA,,,, +Aj31,,,EA072,NA,,,, +Aj4,,1920,EA072,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA072,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA072,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA072,4,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA072,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA072,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA072,6,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA072,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA072,6,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,,EA072,NA,,,, +Ca13,with special reference to the eastern Macha,1950,EA072,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,1950,EA072,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,1930,EA072,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,,EA072,NA,,,, +Ca17,,,EA072,NA,,,, +Ca18,,1940,EA072,1,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA072,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA072,6,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA072,NA,,,, +Ca21,,,EA072,NA,,,, +Ca22,,,EA072,NA,,,, +Ca23,,1950,EA072,1,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA072,NA,,,, +Ca25,,1950,EA072,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA072,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,,EA072,NA,,,, +Ca28,,,EA072,NA,,,, +Ca29,,1920,EA072,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA072,3,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,,,EA072,NA,,,, +Ca31,,1860,EA072,3,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA072,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA072,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA072,3,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA072,NA,"Patrilineal, though formerly matrilineal",clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,,EA072,NA,,,, +Ca37,,,EA072,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA072,1,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA072,9,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA072,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA072,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA072,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA072,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA072,NA,,,, +Ca5,,1930,EA072,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,,EA072,NA,,,, +Ca7,Gondar district,1950,EA072,3,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,,EA072,NA,,,, +Ca9,,1890,EA072,9,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA072,3,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,,EA072,NA,,,, +Cb11,,1900,EA072,2,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,,EA072,NA,,,, +Cb13,,,EA072,NA,,,, +Cb14,,1910,EA072,6,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA072,5,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA072,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA072,1,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,,EA072,NA,,,, +Cb19,,1870,EA072,3,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA072,1,The head of the founding lineage,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA072,6,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA072,NA,,,, +Cb22,,1920,EA072,3,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA072,5,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA072,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA072,6,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA072,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA072,3,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA072,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA072,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA072,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,,EA072,NA,,,, +Cb5,,1910,EA072,9,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,,EA072,NA,,,, +Cb7,,,EA072,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA072,5,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,,,EA072,NA,,,, +Cc1,,1950,EA072,6,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA072,2,"But mainly 'patrilineal heir' (code ""1"") today",jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA072,2,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,,EA072,NA,,,, +Cc13,,1920,EA072,2,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,,EA072,NA,,,, +Cc15,,1920,EA072,3,"Formerly 'nonhereditary through election' (code ""6"")",chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA072,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,,EA072,NA,,,, +Cc18,,1910,EA072,1,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,,EA072,NA,,,, +Cc2,Nomads of Tibesti,1950,EA072,4,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA072,6,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA072,9,A council of sib chiefs,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA072,9,A separate local council for each of the two classes,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA072,6,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,,EA072,NA,,,, +Cc7,,,EA072,NA,,,, +Cc8,,1890,EA072,1,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA072,2,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,,,EA072,NA,,,, +Cd10,,1900,EA072,3,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA072,2,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA072,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,,EA072,NA,,,, +Cd14,,1870,EA072,6,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA072,9,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,,,EA072,NA,,,, +Cd17,,,EA072,NA,,,, +Cd18,,1920,EA072,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,,EA072,NA,,,, +Cd2,Town and environs of Silwa,1950,EA072,6,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,,EA072,NA,,,, +Cd21,,,EA072,NA,,,, +Cd3,Entirety: Moroccan,1920,EA072,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA072,6,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA072,6,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA072,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA072,9,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,,EA072,NA,,,, +Cd9,,,EA072,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA072,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA072,6,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,,,EA072,NA,,,, +Ce4,,,EA072,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA072,6,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA072,3,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA072,6,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA072,6,"But 'nonhereditary through appointment' (code ""3"") subsequent to 1939",carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA072,6,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,,,EA072,NA,,,, +Cf3,,1930,EA072,9,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA072,6,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA072,6,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA072,6,"Three ""selectmen"" chosen by lot",coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,,EA072,NA,,,, +Cg3,,,EA072,NA,,,, +Cg4,,,EA072,NA,,,, +Cg5,,,EA072,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA072,6,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA072,NA,,,, +Ch11,Viriatino Village,1955,EA072,3,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA072,NA,,,, +Ch3,,,EA072,NA,,,, +Ch4,,,EA072,NA,,,, +Ch5,,,EA072,NA,,,, +Ch6,,,EA072,NA,,,, +Ch7,,1930,EA072,6,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,,EA072,NA,,,, +Ch9,,1930,EA072,7,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA072,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA072,6,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA072,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA072,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA072,9,A village priest but no headman,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA072,NA,,,, +Ci4,,1920,EA072,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA072,6,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA072,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,,EA072,NA,,,, +Ci8,,,EA072,NA,,,, +Ci9,,1910,EA072,9,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA072,6,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA072,3,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,,,EA072,NA,,,, +Cj3,,-800,EA072,3,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA072,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,,EA072,NA,,,, +Cj6,,,EA072,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA072,6,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA072,3,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,,EA072,NA,,,, +Ea1,,,EA072,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA072,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA072,NA,,,, +Ea12,,1940,EA072,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA072,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA072,5,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA072,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA072,9,A council of lineage representatives,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA072,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA072,1,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA072,7,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,1920,EA072,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,1950,EA072,3,,vreeland1957,EthnographicAtlas_1967_p89, +Eb1,,,EA072,NA,,,, +Eb2,,1920,EA072,1,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA072,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA072,7,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,,,EA072,NA,,,, +Eb6,,,EA072,NA,,,, +Eb7,,,EA072,NA,,,, +Eb8,,,EA072,NA,,,, +Ec1,Sakhalin Island,1920,EA072,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,,,EA072,NA,,,, +Ec11,,,EA072,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA072,6,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA072,5,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA072,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA072,4,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA072,4,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA072,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA072,9,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA072,NA,,,, +Ed1,Kanghwa Island,1950,EA072,4,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA072,3,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA072,NA,,,, +Ed14,,,EA072,NA,,,, +Ed15a,,,EA072,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA072,7,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA072,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA072,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA072,6,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA072,3,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA072,6,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA072,3,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA072,6,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA072,6,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA072,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA072,9,A council of elders,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,,,EA072,NA,,,, +Ee3,Lingthem and vicinity,1930,EA072,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA072,6,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,,,EA072,NA,,,, +Ee6,with special reference to those of Khumbu,1950,EA072,7,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA072,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA072,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA072,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA072,NA,,,, +Ef11,Village and environs of Senapur,1945,EA072,7,"Among the Thakur; 'nonhereditary through appointment' (code ""3"") after 1945",cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA072,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA072,NA,,,, +Ef4,,1920,EA072,3,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA072,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA072,6,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA072,6,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,,,EA072,NA,,,, +Ef9,,,EA072,NA,,,, +Eg1,with special reference to the forest group,1940,EA072,7,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,,,EA072,NA,,,, +Eg11,with special reference to the Gommu Koya,1960,EA072,1,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,,,EA072,NA,,,, +Eg13,,,EA072,NA,,,, +Eg14,with special reference to those of the Bison Hills,1940,EA072,1,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,,,EA072,NA,,,, +Eg3,Hill Maria,1938,EA072,1,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA072,7,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA072,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA072,2,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA072,1,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA072,7,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,,EA072,NA,,,, +Eh1,,1870,EA072,7,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA072,NA,,,, +Eh2,,1900,EA072,3,"But originally 'nonhereditary through election' (code ""6"")",grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA072,6,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,,,EA072,NA,,,, +Eh5,Car Nicobar of North Islands,1890,EA072,7,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,,,EA072,NA,,,, +Eh7,,1900,EA072,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA072,1,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA072,1,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA072,2,The heir is a classificatory SiSo who is DaHu,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA072,NA,,,, +Ei11,,1910,EA072,6,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA072,1,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA072,1,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA072,9,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA072,NA,,,, +Ei16,,,EA072,NA,,,, +Ei17,,,EA072,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA072,1,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA072,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA072,1,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA072,NA,,,, +Ei3,Nondwin Village,1950,EA072,3,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA072,1,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA072,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA072,9,A council of eight graded elders,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA072,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA072,7,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,,EA072,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA072,1,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA072,2,"Donoghue reports 'nonhereditary through appointment' (code ""3"")",donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA072,6,,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA072,4,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA072,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA072,9,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA072,NA,,,, +Ej16,Inas District,1958,EA072,6,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA072,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA072,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA072,6,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA072,6,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA072,NA,,,, +Ej7,,1950,EA072,1,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,,,EA072,NA,,,, +Ej9,,1940,EA072,6,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA072,6,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA072,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,1930,EA072,7,,mabuchi1960,EthnographicAtlas_1967_p93, +Ia12,,1950,EA072,6,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,Tawi-Tawi and adjacent islands,1960,EA072,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA072,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,with special reference to those of the Agusan Valley,1920,EA072,5,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA072,7,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA072,NA,,,, +Ia18,,,EA072,NA,,,, +Ia2,,1950,EA072,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA072,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA072,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA072,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA072,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA072,9,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA072,9,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA072,6,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA072,7,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA072,6,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA072,6,Selected by divination,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA072,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA072,7,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA072,2,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA072,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,,,EA072,NA,,,, +Ib9,,,EA072,NA,,,, +Ic1,Borongloe,1940,EA072,1,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA072,6,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA072,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA072,6,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA072,NA,,,, +Ic2,,,EA072,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA072,2,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,,EA072,NA,,,, +Ic5,Bare'e subgroup,1910,EA072,6,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA072,1,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,,,EA072,NA,,,, +Ic8,,1890,EA072,1,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA072,1,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA072,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA072,9,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA072,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA072,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,,EA072,NA,,,, +Id2,,1930,EA072,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA072,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,1900,EA072,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p97, +Id5,,,EA072,NA,,,, +Id6,,,EA072,NA,,,, +Id7,,,EA072,NA,,,, +Id8,,1830,EA072,7,,roth1890,EthnographicAtlas_1967_p97, +Id9,,1910,EA072,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p97, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA072,5,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA072,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA072,7,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA072,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA072,9,,landtman1927,EthnographicAtlas_1967_p97, +Ie14,,1900,EA072,9,,haddon1908,EthnographicAtlas_1967_p97, +Ie15,Kalabu; Northern Abelam,1930,EA072,9,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA072,NA,,,, +Ie17,,1940,EA072,5,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,,,EA072,NA,,,, +Ie19,with special reference to the coastal inhabitants,1910,EA072,9,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA072,5,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA072,1,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,,EA072,NA,,,, +Ie22,,1900,EA072,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA072,5,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA072,5,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA072,1,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA072,7,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA072,9,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA072,5,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA072,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA072,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA072,NA,,,, +Ie31,,,EA072,NA,,,, +Ie32,,1964,EA072,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA072,9,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA072,NA,,,, +Ie35,,1930,EA072,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA072,NA,,,, +Ie37,,,EA072,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA072,5,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA072,1,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA072,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA072,9,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA072,4,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA072,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA072,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA072,7,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA072,2,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA072,NA,,,, +If11,,,EA072,NA,,,, +If12,,1940,EA072,9,,mason1954,EthnographicAtlas_1967_p101, +If13,,,EA072,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA072,4,Within the leading ramage of the village,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,,EA072,NA,,,, +If16,,1960,EA072,2,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA072,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA072,2,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA072,2,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA072,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA072,2,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA072,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA072,6,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA072,6,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA072,2,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA072,5,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA072,NA,,,, +Ig11,,1920,EA072,1,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,with special reference to the Varisi,1900,EA072,1,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA072,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA072,2,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA072,NA,,,, +Ig16,,,EA072,NA,,,, +Ig17,,,EA072,NA,,,, +Ig18,,,EA072,NA,,,, +Ig19,,,EA072,NA,,,, +Ig2,Kiriwina Island,1910,EA072,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA072,5,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA072,NA,,,, +Ig3,,1930,EA072,2,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA072,5,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA072,9,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA072,1,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA072,7,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA072,NA,,,, +Ig9,Peri Village,1920,EA072,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA072,4,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA072,1,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA072,NA,,,, +Ih12,,,EA072,NA,,,, +Ih13,,,EA072,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA072,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA072,1,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA072,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA072,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA072,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,1890,EA072,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p101, +Ih7,,1910,EA072,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,,,EA072,NA,,,, +Ih9,Graciosa Bay,1930,EA072,5,,davenport1964,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA072,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA072,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA072,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA072,1,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA072,7,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA072,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA072,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,,,EA072,NA,,,, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA072,1,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA072,1,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA072,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA072,6,Succession is elective within the ramage,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,,EA072,NA,,,, +Ij1,,1820,EA072,1,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,1900,EA072,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA072,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA072,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA072,1,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA072,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA072,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA072,1,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA072,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA072,1,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA072,7,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA072,1,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA072,NA,Election of village headmen was introduced in 1925,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA072,5,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA072,7,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA072,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA072,7,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA072,7,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA072,7,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA072,9,"But 'matrilineal heir' (code ""2"") for sib chiefs",jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA072,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA072,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA072,4,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA072,4,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA072,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA072,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,,,EA072,NA,,,, +Na26,with special reference to the Iliamna,1870,EA072,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA072,2,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA072,7,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,,EA072,NA,,,, +Na3,Coronation Gulf,1920,EA072,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA072,7,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA072,7,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA072,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA072,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,,,EA072,NA,,,, +Na35,,1800,EA072,1,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA072,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA072,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA072,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA072,1,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA072,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,,EA072,NA,,,, +Na41,Mainland division,1700,EA072,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,,,EA072,NA,,,, +Na43,,,EA072,NA,,,, +Na44,,1910,EA072,7,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA072,4,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA072,4,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA072,9,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA072,7,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA072,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA072,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA072,2,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA072,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA072,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA072,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA072,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA072,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,,EA072,NA,,,, +Nb16,,1860,EA072,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA072,5,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA072,1,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA072,1,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA072,5,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA072,5,"A ""chief"" names his own successor",barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA072,5,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA072,2,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA072,2,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA072,1,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA072,5,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA072,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA072,7,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA072,5,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA072,5,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA072,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA072,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA072,5,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA072,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA072,1,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA072,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA072,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA072,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA072,6,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA072,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA072,1,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA072,5,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA072,2,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA072,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA072,2,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA072,2,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA072,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA072,1,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA072,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA072,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA072,7,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA072,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA072,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA072,7,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA072,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA072,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA072,7,"But often 'matrilineal heir' (code ""2"")",aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA072,2,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA072,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA072,7,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA072,7,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA072,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA072,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,,,EA072,NA,,,, +Nc25,,1860,EA072,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA072,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA072,5,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA072,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA072,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA072,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA072,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA072,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA072,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA072,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA072,1,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA072,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA072,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA072,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA072,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA072,7,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA072,6,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA072,1,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA072,7,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA072,1,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA072,1,"Entry follows Turney-High; Ray reports 'nonhereditary through influence' (code ""5"")",ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,,EA072,NA,,,, +Nd14,,1860,EA072,6,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA072,1,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,,EA072,NA,,,, +Nd17,,,EA072,NA,,,, +Nd18,,1860,EA072,1,"Or alternatively 'patrilineal heir' (code ""1"")",spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA072,7,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA072,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA072,6,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA072,7,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA072,7,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA072,7,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA072,7,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA072,7,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,,EA072,NA,,,, +Nd27,,1860,EA072,7,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA072,7,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA072,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA072,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA072,1,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA072,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA072,1,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA072,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA072,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA072,NA,Nonhereditary succession through appointment by predecessor,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,,EA072,NA,,,, +Nd37,,,EA072,NA,,,, +Nd38,,,EA072,NA,,,, +Nd39,,,EA072,NA,,,, +Nd4,,1870,EA072,1,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,,EA072,NA,,,, +Nd41,,1870,EA072,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA072,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA072,9,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA072,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA072,7,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA072,7,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA072,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA072,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA072,7,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA072,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,,EA072,NA,,,, +Nd51,,,EA072,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA072,4,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA072,7,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA072,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,,,EA072,NA,,,, +Nd56,,1860,EA072,7,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA072,7,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA072,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA072,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA072,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA072,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA072,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,,EA072,NA,,,, +Nd63,with special reference to the Eastern Bannock,1860,EA072,7,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA072,7,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA072,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA072,5,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA072,7,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA072,5,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA072,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA072,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA072,5,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA072,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA072,7,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA072,7,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA072,7,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA072,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA072,7,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA072,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA072,5,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA072,7,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA072,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,,EA072,NA,,,, +Ne20,,,EA072,NA,,,, +Ne21,,,EA072,NA,,,, +Ne3,Comanche Tribe,1870,EA072,7,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA072,5,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA072,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,,EA072,NA,,,, +Ne7,,1880,EA072,5,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA072,5,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA072,5,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA072,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,,EA072,NA,,,, +Nf12,,1850,EA072,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA072,1,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA072,1,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA072,NA,,,, +Nf2,,1850,EA072,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA072,5,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA072,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA072,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA072,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA072,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA072,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,,EA072,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA072,2,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA072,2,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA072,6,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,,EA072,NA,,,, +Ng13,,,EA072,NA,,,, +Ng14,,,EA072,NA,,,, +Ng15,,,EA072,NA,,,, +Ng2,,,EA072,NA,,,, +Ng3,Upper division in Alabama,1750,EA072,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,,EA072,NA,,,, +Ng5,,,EA072,NA,,,, +Ng6,with special reference to the Munsee,1700,EA072,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA072,2,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA072,2,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA072,NA,,,, +Nh1,Central band,1880,EA072,7,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA072,6,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA072,6,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA072,6,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,,EA072,NA,,,, +Nh14,,,EA072,NA,,,, +Nh15,,,EA072,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA072,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA072,2,"But alternatively 'nonhereditary through informal consensus' (code ""7"")",gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA072,2,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA072,7,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,,EA072,NA,,,, +Nh20,,1860,EA072,7,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA072,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA072,7,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA072,9,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA072,7,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA072,6,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA072,NA,,,, +Nh27,,,EA072,NA,,,, +Nh3,,1930,EA072,7,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA072,6,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,,EA072,NA,,,, +Nh6,,1890,EA072,6,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA072,6,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA072,6,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA072,6,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA072,6,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA072,9,A council only,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA072,6,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,,EA072,NA,,,, +Ni5,,1570,EA072,7,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA072,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA072,6,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA072,NA,,,, +Ni9,,,EA072,NA,,,, +Nj1,Ojitlan,1940,EA072,6,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA072,6,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA072,NA,,,, +Nj12,,,EA072,NA,,,, +Nj13,,,EA072,NA,,,, +Nj14,,,EA072,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA072,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA072,6,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,,EA072,NA,,,, +Nj5,,,EA072,NA,,,, +Nj6,,,EA072,NA,,,, +Nj7,with special reference to Ayutla,1930,EA072,6,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA072,1,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA072,4,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA072,6,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,,EA072,NA,,,, +Sa11,,,EA072,NA,,,, +Sa12,,1948,EA072,1,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA072,7,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA072,NA,,,, +Sa15,,,EA072,NA,,,, +Sa16,,,EA072,NA,,,, +Sa17,,,EA072,NA,,,, +Sa2,,,EA072,NA,,,, +Sa3,,1930,EA072,6,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,,,EA072,NA,,,, +Sa5,,,EA072,NA,,,, +Sa6,,,EA072,NA,,,, +Sa7,,1940,EA072,3,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA072,3,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,,,EA072,NA,,,, +Sb1,Dominica Island,1650,EA072,7,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA072,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA072,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA072,6,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA072,NA,,,, +Sb6,Goajiro Tribe,1940,EA072,2,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,with special reference to the Pariri,1950,EA072,4,,wilbert1961b,EthnographicAtlas_1967_p121, +Sb8,,1520,EA072,2,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,,EA072,NA,,,, +Sc1,,1950,EA072,7,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,,EA072,NA,,,, +Sc11,,,EA072,NA,,,, +Sc12,,1910,EA072,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,,EA072,NA,,,, +Sc14,,,EA072,NA,,,, +Sc15,,1910,EA072,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,,,EA072,NA,,,, +Sc17,,,EA072,NA,,,, +Sc18,,1960,EA072,2,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA072,1,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA072,7,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA072,7,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,,EA072,NA,,,, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA072,2,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,,EA072,NA,,,, +Sc8,,,EA072,NA,,,, +Sc9,,,EA072,NA,,,, +Sd1,Cabrura village,1950,EA072,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA072,NA,,,, +Sd3,,1920,EA072,6,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,,EA072,NA,,,, +Sd5,,1950,EA072,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA072,7,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA072,1,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA072,1,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA072,7,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA072,1,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA072,NA,,,, +Se11,,,EA072,NA,,,, +Se12,,,EA072,NA,,,, +Se2,,,EA072,NA,,,, +Se3,,1930,EA072,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA072,6,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA072,1,"Alternatively 'patrilineal heir' (code ""1"")",goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA072,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA072,3,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA072,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,,EA072,NA,,,, +Sf1,,,EA072,NA,,,, +Sf2,,,EA072,NA,,,, +Sf3,Rio Cayapas Basin,1910,EA072,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA072,7,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA072,6,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA072,2,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA072,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA072,NA,,,, +Sf9,,,EA072,NA,,,, +Sg1,Eastern and central,1870,EA072,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA072,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA072,7,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA072,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA072,9,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,,EA072,NA,,,, +Sh2,,1850,EA072,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA072,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,,EA072,NA,,,, +Sh5,,,EA072,NA,,,, +Sh6,,,EA072,NA,,,, +Sh7,,1900,EA072,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA072,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA072,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,Kejara,1920,EA072,2,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA072,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA072,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA072,7,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA072,7,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA072,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA072,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA072,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA072,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA072,NA,,,, +Sj1,,1950,EA072,1,The preferred successor is a grandson,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,,,EA072,NA,,,, +Sj11,Village of Sao Domingo,1958,EA072,7,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA072,1,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA072,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,,,EA072,NA,,,, +Sj5,Naknenuk subtribe,1880,EA072,7,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA072,3,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA072,2,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA072,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA072,2,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA072,6,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA072,6,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA072,6,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA072,6,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA072,6,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA072,6,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA072,6,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA072,6,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA072,6,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA072,6,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA072,6,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA072,6,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA072,3,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA072,6,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA072,6,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA072,6,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA072,6,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA072,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA072,5,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA072,5,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA072,5,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA072,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA072,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA072,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA072,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA072,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA072,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA073,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA073,5,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA073,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA073,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA073,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,,EA073,NA,,,, +Aa7,,1910,EA073,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,,EA073,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA073,5,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA073,2,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA073,1,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA073,1,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA073,1,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA073,1,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,,EA073,NA,,,, +Ab15,,1860,EA073,1,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,1930,EA073,2,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA073,2,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA073,2,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA073,5,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA073,1,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA073,5,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA073,1,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA073,NA,,,, +Ab22,,,EA073,NA,,,, +Ab3,Ruling Luyana,1890,EA073,1,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA073,2,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA073,1,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA073,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA073,3,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA073,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA073,5,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA073,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA073,4,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA073,3,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA073,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA073,3,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA073,4,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA073,4,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA073,4,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA073,4,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA073,4,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,1880,EA073,5,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA073,3,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,1920,EA073,4,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA073,4,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA073,3,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA073,4,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA073,4,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA073,4,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA073,4,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA073,3,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA073,4,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,,EA073,NA,,,, +Ac3,Zambia branch,1900,EA073,4,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA073,4,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA073,5,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA073,4,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA073,4,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA073,4,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,,EA073,NA,,,, +Ac36,,1920,EA073,1,Formerly matrilineal,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA073,4,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA073,4,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA073,3,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA073,5,The eldest lineage head succeeds,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA073,4,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA073,NA,Matrilineal,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,,EA073,NA,,,, +Ac43,,,EA073,NA,,,, +Ac5,,1920,EA073,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA073,4,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,1920,EA073,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA073,4,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,,,EA073,NA,,,, +Ad1,,1950,EA073,1,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA073,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA073,5,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA073,9,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,,EA073,NA,,,, +Ad14,Morogoro District,1930,EA073,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA073,2,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA073,5,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA073,1,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA073,5,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA073,5,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA073,1,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA073,1,"But formerly 'matrilineal heir' (code ""4"") in some chiefdoms",blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA073,5,Nq in the royal family [sic Gray (1999)],maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA073,5,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA073,1,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA073,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,,EA073,NA,,,, +Ad26,,1910,EA073,9,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA073,5,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,,EA073,NA,,,, +Ad29,,1930,EA073,5,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA073,1,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA073,2,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,1910,EA073,9,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA073,9,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA073,9,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA073,9,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA073,9,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA073,2,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,,EA073,NA,,,, +Ad38,,,EA073,NA,,,, +Ad39,,1950,EA073,5,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA073,4,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA073,NA,,,, +Ad41,,,EA073,NA,,,, +Ad42,,1900,EA073,1,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,,EA073,NA,,,, +Ad44,,1920,EA073,1,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,,EA073,NA,,,, +Ad46,,1950,EA073,5,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA073,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA073,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,,EA073,NA,,,, +Ad5,,1940,EA073,4,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA073,3,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA073,3,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA073,5,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA073,5,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,,,EA073,NA,,,, +Ad9,,1900,EA073,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA073,9,A council of elders only,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA073,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA073,2,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA073,1,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA073,5,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA073,1,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,,EA073,NA,,,, +Ae16,,1910,EA073,1,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA073,2,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA073,1,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA073,NA,,,, +Ae2,,1950,EA073,9,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA073,2,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA073,1,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA073,1,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA073,2,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA073,2,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA073,1,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA073,2,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA073,2,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,,EA073,NA,,,, +Ae29,,1900,EA073,2,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA073,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,,EA073,NA,,,, +Ae31,,1920,EA073,2,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA073,NA,,,, +Ae33,,1920,EA073,1,"But Moller reports 'patrilineal heir who takes precedence over a son' (code ""2"")",czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA073,NA,,,, +Ae35,,,EA073,NA,,,, +Ae36,,1920,EA073,2,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,,EA073,NA,,,, +Ae38,,1920,EA073,4,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA073,5,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA073,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA073,2,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA073,1,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA073,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,,EA073,NA,,,, +Ae44,,1920,EA073,4,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA073,1,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,,EA073,NA,,,, +Ae47,,1900,EA073,1,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA073,1,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,1900,EA073,1,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA073,1,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA073,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA073,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA073,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA073,4,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA073,3,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,,EA073,NA,,,, +Ae56,,,EA073,NA,,,, +Ae57,,,EA073,NA,,,, +Ae58,,,EA073,NA,,,, +Ae59,,,EA073,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA073,2,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,,EA073,NA,,,, +Ae8,,1910,EA073,1,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA073,1,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA073,1,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA073,2,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA073,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,,,EA073,NA,,,, +Af13,,,EA073,NA,,,, +Af14,,,EA073,NA,,,, +Af15,,1920,EA073,5,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA073,1,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA073,NA,,,, +Af18,,1900,EA073,1,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA073,5,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,,EA073,NA,,,, +Af20,,1910,EA073,1,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,,,EA073,NA,,,, +Af22,,1940,EA073,5,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA073,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA073,1,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA073,5,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA073,2,"But 'nonhereditary, based on seniority' (code ""4"") in some villages",bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA073,5,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA073,1,,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,,EA073,NA,,,, +Af3,Kumasi State,1900,EA073,5,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,,EA073,NA,,,, +Af31,with special reference to the Lafia,1960,EA073,2,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,,,EA073,NA,,,, +Af33,,,EA073,NA,,,, +Af34,,,EA073,NA,,,, +Af35,,,EA073,NA,,,, +Af36,with special reference to the Glidyi,1900,EA073,5,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,,,EA073,NA,,,, +Af38,,,EA073,NA,,,, +Af39,with special reference to the Ndenie,1900,EA073,4,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA073,4,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA073,4,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA073,4,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA073,5,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA073,2,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,,EA073,NA,,,, +Af45,,1900,EA073,4,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,,EA073,NA,,,, +Af47,,1940,EA073,1,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA073,1,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA073,1,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA073,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,,EA073,NA,,,, +Af51,,1920,EA073,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA073,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA073,NA,,,, +Af54,,1930,EA073,2,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,1950,EA073,2,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA073,1,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,,EA073,NA,,,, +Af58,,1900,EA073,5,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA073,2,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA073,5,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA073,5,"But 'patrilineal heir who takes precedence over a son' (code ""2"") in some regions",banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA073,4,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA073,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA073,9,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,,EA073,NA,,,, +Ag12,,1910,EA073,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA073,1,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,,EA073,NA,,,, +Ag15,,,EA073,NA,,,, +Ag16,,1930,EA073,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,,EA073,NA,,,, +Ag18,,1930,EA073,4,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA073,2,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,,,EA073,NA,,,, +Ag20,,,EA073,NA,,,, +Ag21,,1910,EA073,4,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA073,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,,EA073,NA,,,, +Ag24,,,EA073,NA,,,, +Ag25,,,EA073,NA,,,, +Ag26,,,EA073,NA,,,, +Ag27,,,EA073,NA,,,, +Ag28,,,EA073,NA,,,, +Ag29,,,EA073,NA,,,, +Ag3,,1930,EA073,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA073,2,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA073,2,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,,EA073,NA,,,, +Ag33,,,EA073,NA,,,, +Ag34,,,EA073,NA,,,, +Ag35,,1910,EA073,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA073,NA,,,, +Ag37,,1910,EA073,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA073,2,"Entry follows Tauxier; Rattry reports 'nonhereditary' (code ""5"")",rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA073,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA073,5,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA073,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA073,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA073,2,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,,EA073,NA,,,, +Ag44,,1910,EA073,5,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA073,5,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA073,2,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA073,1,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA073,5,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA073,5,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,,EA073,NA,,,, +Ag50,,1910,EA073,5,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,,EA073,NA,,,, +Ag52,,1950,EA073,5,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA073,1,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA073,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,,EA073,NA,,,, +Ag7,,,EA073,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA073,4,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA073,2,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA073,5,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA073,5,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,,EA073,NA,,,, +Ah12,,,EA073,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA073,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,,EA073,NA,,,, +Ah15,,1920,EA073,5,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA073,1,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA073,2,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA073,2,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA073,2,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA073,2,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,,EA073,NA,,,, +Ah21,,,EA073,NA,,,, +Ah22,,1900,EA073,2,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA073,2,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,,EA073,NA,,,, +Ah25,,,EA073,NA,,,, +Ah26,,1920,EA073,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA073,NA,,,, +Ah28,,,EA073,NA,,,, +Ah29,,1920,EA073,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA073,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA073,9,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA073,2,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,,EA073,NA,,,, +Ah33,,,EA073,NA,,,, +Ah34,with special reference to the Malabu,1920,EA073,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,,EA073,NA,,,, +Ah36,,1920,EA073,2,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,,EA073,NA,,,, +Ah38,,1930,EA073,2,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA073,5,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA073,4,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA073,5,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,,EA073,NA,,,, +Ah7,,1940,EA073,5,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,,EA073,NA,,,, +Ah9,,1920,EA073,5,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA073,2,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA073,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA073,2,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA073,2,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA073,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA073,1,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p77, +Ai15,,1900,EA073,1,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA073,5,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA073,1,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA073,5,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,,EA073,NA,,,, +Ai2,,1940,EA073,2,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,,EA073,NA,,,, +Ai21,,,EA073,NA,,,, +Ai22,,,EA073,NA,,,, +Ai23,,1920,EA073,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA073,1,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA073,5,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA073,1,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA073,NA,,,, +Ai28,,1910,EA073,5,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA073,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA073,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA073,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,,EA073,NA,,,, +Ai32,,1920,EA073,1,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA073,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA073,2,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA073,5,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA073,5,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA073,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,,EA073,NA,,,, +Ai39,,,EA073,NA,,,, +Ai4,,,EA073,NA,,,, +Ai40,,1940,EA073,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,,EA073,NA,,,, +Ai42,,1940,EA073,2,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,,EA073,NA,,,, +Ai44,,1920,EA073,2,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p77, +Ai45,,,EA073,NA,,,, +Ai46,,1930,EA073,2,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA073,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA073,NA,,,, +Ai6,Shilluk Kingdom,1900,EA073,5,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA073,1,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,,EA073,NA,,,, +Ai9,,,EA073,NA,,,, +Aj1,,,EA073,NA,,,, +Aj10,,,EA073,NA,,,, +Aj11,,,EA073,NA,,,, +Aj12,,1920,EA073,1,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,,EA073,NA,,,, +Aj14,,,EA073,NA,,,, +Aj15,,1900,EA073,1,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA073,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA073,1,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA073,2,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA073,1,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA073,9,A council of elders,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA073,1,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,,EA073,NA,,,, +Aj22,,1930,EA073,1,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA073,9,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA073,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,,EA073,NA,,,, +Aj26,,1910,EA073,5,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,,EA073,NA,,,, +Aj28,,1940,EA073,1,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA073,9,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA073,9,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA073,NA,,,, +Aj31,,,EA073,NA,,,, +Aj4,,1920,EA073,1,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA073,9,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA073,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA073,5,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA073,1,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA073,9,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA073,5,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA073,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA073,5,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,,EA073,NA,,,, +Ca13,with special reference to the eastern Macha,1950,EA073,1,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,1950,EA073,1,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,1930,EA073,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,,EA073,NA,,,, +Ca17,,,EA073,NA,,,, +Ca18,,1940,EA073,2,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA073,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA073,5,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA073,NA,,,, +Ca21,,,EA073,NA,,,, +Ca22,,,EA073,NA,,,, +Ca23,,1950,EA073,1,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA073,NA,,,, +Ca25,,1950,EA073,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA073,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,,EA073,NA,,,, +Ca28,,,EA073,NA,,,, +Ca29,,1920,EA073,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA073,5,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,,,EA073,NA,,,, +Ca31,,1860,EA073,5,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA073,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA073,9,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA073,5,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA073,NA,"Patrilineal, though formerly matrilineal",clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,,EA073,NA,,,, +Ca37,,,EA073,NA,,,, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA073,1,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA073,9,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA073,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA073,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA073,9,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA073,1,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA073,NA,,,, +Ca5,,1930,EA073,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,,EA073,NA,,,, +Ca7,Gondar district,1950,EA073,5,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,,EA073,NA,,,, +Ca9,,1890,EA073,9,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA073,5,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,,EA073,NA,,,, +Cb11,,1900,EA073,3,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,,EA073,NA,,,, +Cb13,,,EA073,NA,,,, +Cb14,,1910,EA073,5,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA073,5,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA073,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA073,1,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,,EA073,NA,,,, +Cb19,,1870,EA073,5,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA073,2,The head of the founding lineage,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA073,5,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,,EA073,NA,,,, +Cb22,,1920,EA073,5,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA073,5,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA073,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA073,5,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA073,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA073,5,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA073,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA073,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA073,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,,EA073,NA,,,, +Cb5,,1910,EA073,9,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,,EA073,NA,,,, +Cb7,,,EA073,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA073,5,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,,,EA073,NA,,,, +Cc1,,1950,EA073,5,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA073,4,"But mainly 'hereditary by a son' (code ""1"") today",jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA073,4,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,,EA073,NA,,,, +Cc13,,1920,EA073,3,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,,EA073,NA,,,, +Cc15,,1920,EA073,5,"Formerly 'nonhereditary' (code ""5"")",chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA073,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,,EA073,NA,,,, +Cc18,,1910,EA073,1,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,,EA073,NA,,,, +Cc2,Nomads of Tibesti,1950,EA073,5,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA073,5,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA073,9,A council of sib chiefs,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA073,9,A separate local council for each of the two classes,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA073,5,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,,EA073,NA,,,, +Cc7,,,EA073,NA,,,, +Cc8,,1890,EA073,2,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA073,3,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,,,EA073,NA,,,, +Cd10,,1900,EA073,5,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA073,3,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA073,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,,EA073,NA,,,, +Cd14,,1870,EA073,5,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA073,9,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,,,EA073,NA,,,, +Cd17,,,EA073,NA,,,, +Cd18,,1920,EA073,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,,EA073,NA,,,, +Cd2,Town and environs of Silwa,1950,EA073,5,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,,EA073,NA,,,, +Cd21,,,EA073,NA,,,, +Cd3,Entirety: Moroccan,1920,EA073,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA073,5,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA073,5,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA073,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA073,9,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,,EA073,NA,,,, +Cd9,,,EA073,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA073,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA073,5,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,,,EA073,NA,,,, +Ce4,,,EA073,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA073,5,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA073,5,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA073,5,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA073,5,"But 'nonhereditary' (code ""5"") subsequent to 1939",carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA073,5,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,,,EA073,NA,,,, +Cf3,,1930,EA073,9,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA073,5,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA073,5,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA073,5,"Three ""selectmen"" chosen by lot",coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,,EA073,NA,,,, +Cg3,,,EA073,NA,,,, +Cg4,,,EA073,NA,,,, +Cg5,,,EA073,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA073,5,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA073,NA,,,, +Ch11,Viriatino Village,1955,EA073,5,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA073,NA,,,, +Ch3,,,EA073,NA,,,, +Ch4,,,EA073,NA,,,, +Ch5,,,EA073,NA,,,, +Ch6,,,EA073,NA,,,, +Ch7,,1930,EA073,5,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,,EA073,NA,,,, +Ch9,,1930,EA073,5,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA073,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA073,5,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA073,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA073,5,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA073,9,A village priest but no headman,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA073,NA,,,, +Ci4,,1920,EA073,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA073,5,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA073,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,,EA073,NA,,,, +Ci8,,,EA073,NA,,,, +Ci9,,1910,EA073,9,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA073,5,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA073,5,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,,,EA073,NA,,,, +Cj3,,-800,EA073,5,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA073,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,,EA073,NA,,,, +Cj6,,,EA073,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA073,5,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA073,5,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,,EA073,NA,,,, +Ea1,,,EA073,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA073,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA073,NA,,,, +Ea12,,1940,EA073,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA073,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA073,5,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA073,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA073,9,A council of lineage representatives,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA073,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA073,1,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA073,5,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,1920,EA073,1,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,1950,EA073,5,,vreeland1957,EthnographicAtlas_1967_p89, +Eb1,,,EA073,NA,,,, +Eb2,,1920,EA073,1,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA073,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA073,5,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,,,EA073,NA,,,, +Eb6,,,EA073,NA,,,, +Eb7,,,EA073,NA,,,, +Eb8,,,EA073,NA,,,, +Ec1,Sakhalin Island,1920,EA073,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,,,EA073,NA,,,, +Ec11,,,EA073,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA073,5,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA073,5,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA073,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA073,5,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA073,5,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA073,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA073,9,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA073,NA,,,, +Ed1,Kanghwa Island,1950,EA073,5,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA073,5,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA073,NA,,,, +Ed14,,,EA073,NA,,,, +Ed15a,,,EA073,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA073,5,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA073,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA073,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA073,5,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA073,5,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA073,5,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA073,5,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA073,5,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA073,5,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA073,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA073,9,A council of elders,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,,,EA073,NA,,,, +Ee3,Lingthem and vicinity,1930,EA073,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA073,5,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,,,EA073,NA,,,, +Ee6,with special reference to those of Khumbu,1950,EA073,5,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA073,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA073,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA073,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA073,NA,,,, +Ef11,Village and environs of Senapur,1945,EA073,5,"Among the Thakur; 'nonhereditary' (code ""5"") after 1945",cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA073,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA073,NA,,,, +Ef4,,1920,EA073,5,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA073,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA073,5,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA073,5,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,,,EA073,NA,,,, +Ef9,,,EA073,NA,,,, +Eg1,with special reference to the forest group,1940,EA073,5,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,,,EA073,NA,,,, +Eg11,with special reference to the Gommu Koya,1960,EA073,1,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,,,EA073,NA,,,, +Eg13,,,EA073,NA,,,, +Eg14,with special reference to those of the Bison Hills,1940,EA073,1,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,,,EA073,NA,,,, +Eg3,Hill Maria,1938,EA073,1,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA073,5,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA073,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA073,4,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA073,1,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA073,5,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,,EA073,NA,,,, +Eh1,,1870,EA073,5,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA073,NA,,,, +Eh2,,1900,EA073,5,"But originally 'nonhereditary' (code ""5"")",grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA073,5,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,,,EA073,NA,,,, +Eh5,Car Nicobar of North Islands,1890,EA073,5,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,,,EA073,NA,,,, +Eh7,,1900,EA073,2,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA073,2,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA073,1,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA073,3,The heir is a classificatory SiSo who is DaHu,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA073,NA,,,, +Ei11,,1910,EA073,5,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA073,1,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA073,1,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA073,9,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA073,NA,,,, +Ei16,,,EA073,NA,,,, +Ei17,,,EA073,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA073,2,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA073,1,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA073,2,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA073,NA,,,, +Ei3,Nondwin Village,1950,EA073,5,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA073,1,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA073,1,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA073,9,A council of eight graded elders,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA073,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA073,5,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,,EA073,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA073,1,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA073,3,"Donoghue reports 'nonhereditary' (code ""5"")",donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA073,5,,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA073,5,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA073,1,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA073,9,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA073,NA,,,, +Ej16,Inas District,1958,EA073,5,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA073,9,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA073,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA073,5,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA073,5,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA073,NA,,,, +Ej7,,1950,EA073,2,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,,,EA073,NA,,,, +Ej9,,1940,EA073,5,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA073,5,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA073,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,1930,EA073,5,,mabuchi1960,EthnographicAtlas_1967_p93, +Ia12,,1950,EA073,5,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,Tawi-Tawi and adjacent islands,1960,EA073,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA073,9,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,with special reference to those of the Agusan Valley,1920,EA073,5,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA073,5,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA073,NA,,,, +Ia18,,,EA073,NA,,,, +Ia2,,1950,EA073,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA073,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA073,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA073,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA073,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA073,9,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA073,9,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA073,5,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA073,5,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA073,5,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA073,5,Selected by divination,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA073,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA073,5,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA073,4,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA073,9,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,,,EA073,NA,,,, +Ib9,,,EA073,NA,,,, +Ic1,Borongloe,1940,EA073,1,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA073,5,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA073,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA073,5,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA073,NA,,,, +Ic2,,,EA073,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA073,4,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,,EA073,NA,,,, +Ic5,Bare'e subgroup,1910,EA073,5,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA073,1,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,,,EA073,NA,,,, +Ic8,,1890,EA073,1,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA073,1,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA073,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA073,9,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA073,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,1930,EA073,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,,EA073,NA,,,, +Id2,,1930,EA073,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA073,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,1900,EA073,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p97, +Id5,,,EA073,NA,,,, +Id6,,,EA073,NA,,,, +Id7,,,EA073,NA,,,, +Id8,,1830,EA073,5,,roth1890,EthnographicAtlas_1967_p97, +Id9,,1910,EA073,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p97, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA073,5,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA073,1,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA073,5,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA073,9,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA073,9,,landtman1927,EthnographicAtlas_1967_p97, +Ie14,,1900,EA073,9,,haddon1908,EthnographicAtlas_1967_p97, +Ie15,Kalabu; Northern Abelam,1930,EA073,9,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA073,NA,,,, +Ie17,,1940,EA073,5,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,,,EA073,NA,,,, +Ie19,with special reference to the coastal inhabitants,1910,EA073,9,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA073,5,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA073,1,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,,EA073,NA,,,, +Ie22,,1900,EA073,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA073,5,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA073,5,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA073,1,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA073,5,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA073,9,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA073,5,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA073,1,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA073,9,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA073,NA,,,, +Ie31,,,EA073,NA,,,, +Ie32,,1964,EA073,1,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA073,9,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA073,NA,,,, +Ie35,,1930,EA073,9,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA073,NA,,,, +Ie37,,,EA073,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA073,5,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA073,2,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA073,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA073,9,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA073,5,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA073,9,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA073,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA073,5,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA073,4,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA073,NA,,,, +If11,,,EA073,NA,,,, +If12,,1940,EA073,9,,mason1954,EthnographicAtlas_1967_p101, +If13,,,EA073,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA073,5,Within the leading ramage of the village,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,,EA073,NA,,,, +If16,,1960,EA073,4,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA073,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA073,3,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA073,4,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA073,4,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA073,4,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA073,2,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA073,5,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA073,5,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA073,4,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA073,5,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA073,NA,,,, +Ig11,,1920,EA073,1,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,with special reference to the Varisi,1900,EA073,1,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA073,1,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA073,3,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA073,NA,,,, +Ig16,,,EA073,NA,,,, +Ig17,,,EA073,NA,,,, +Ig18,,,EA073,NA,,,, +Ig19,,,EA073,NA,,,, +Ig2,Kiriwina Island,1910,EA073,3,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA073,5,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA073,NA,,,, +Ig3,,1930,EA073,3,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA073,5,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA073,9,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA073,1,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA073,5,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA073,NA,,,, +Ig9,Peri Village,1920,EA073,9,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA073,5,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA073,1,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA073,NA,,,, +Ih12,,,EA073,NA,,,, +Ih13,,,EA073,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA073,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA073,1,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA073,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA073,2,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA073,1,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,1890,EA073,2,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p101, +Ih7,,1910,EA073,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,,,EA073,NA,,,, +Ih9,Graciosa Bay,1930,EA073,5,,davenport1964,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA073,1,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA073,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA073,1,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA073,2,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA073,5,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA073,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA073,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,,,EA073,NA,,,, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA073,2,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA073,2,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA073,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA073,5,Succession is elective within the ramage,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,,EA073,NA,,,, +Ij1,,1820,EA073,2,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,1900,EA073,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA073,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA073,1,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA073,1,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA073,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA073,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA073,1,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA073,1,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA073,1,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA073,5,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA073,1,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA073,NA,Election of village headmen was introduced in 1925,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA073,5,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA073,5,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA073,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA073,5,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA073,5,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA073,5,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA073,9,"But 'hereditary by a sister's son' (code ""3"") for sib chiefs",jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA073,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA073,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA073,5,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA073,5,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA073,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA073,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,,,EA073,NA,,,, +Na26,with special reference to the Iliamna,1870,EA073,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA073,4,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA073,5,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,,EA073,NA,,,, +Na3,Coronation Gulf,1920,EA073,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA073,5,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA073,5,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA073,1,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA073,9,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,,,EA073,NA,,,, +Na35,,1800,EA073,1,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA073,1,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA073,9,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA073,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA073,1,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA073,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,,EA073,NA,,,, +Na41,Mainland division,1700,EA073,1,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,,,EA073,NA,,,, +Na43,,,EA073,NA,,,, +Na44,,1910,EA073,5,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA073,5,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA073,5,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA073,9,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA073,5,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA073,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA073,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA073,4,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA073,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA073,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA073,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA073,9,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA073,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,,EA073,NA,,,, +Nb16,,1860,EA073,1,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA073,5,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA073,1,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA073,1,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA073,5,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA073,5,"A ""chief"" names his own successor",barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA073,5,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA073,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA073,4,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA073,1,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA073,5,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA073,9,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA073,5,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA073,5,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA073,5,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA073,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA073,9,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA073,5,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA073,2,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA073,1,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA073,9,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA073,1,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA073,9,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA073,5,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA073,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA073,1,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA073,5,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA073,4,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA073,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA073,4,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA073,3,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA073,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA073,1,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA073,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA073,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA073,5,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA073,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA073,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA073,5,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA073,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA073,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA073,5,"But often hereditary by a sister's son' (code ""3"")",aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA073,3,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA073,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA073,5,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA073,5,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA073,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA073,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,,,EA073,NA,,,, +Nc25,,1860,EA073,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA073,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA073,5,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA073,1,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA073,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA073,2,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA073,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA073,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA073,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA073,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA073,1,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA073,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA073,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA073,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA073,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA073,5,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA073,5,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA073,1,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA073,5,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA073,1,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA073,1,"Entry follows Turney-High; Ray reports 'nonhereditary' (code ""5"")",ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,,EA073,NA,,,, +Nd14,,1860,EA073,5,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA073,1,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,,EA073,NA,,,, +Nd17,,,EA073,NA,,,, +Nd18,,1860,EA073,1,"Or alternatively 'patrilineal heir who takes precedence over a son' (code ""2"")",spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA073,5,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA073,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA073,5,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA073,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA073,5,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA073,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA073,5,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA073,5,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,,EA073,NA,,,, +Nd27,,1860,EA073,5,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA073,5,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA073,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA073,2,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA073,1,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA073,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA073,1,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA073,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA073,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA073,NA,Nonhereditary succession through appointment by predecessor,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,,EA073,NA,,,, +Nd37,,,EA073,NA,,,, +Nd38,,,EA073,NA,,,, +Nd39,,,EA073,NA,,,, +Nd4,,1870,EA073,1,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,,EA073,NA,,,, +Nd41,,1870,EA073,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA073,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA073,9,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA073,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA073,5,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA073,5,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA073,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA073,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA073,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA073,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,,EA073,NA,,,, +Nd51,,,EA073,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA073,5,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA073,5,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA073,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,,,EA073,NA,,,, +Nd56,,1860,EA073,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA073,5,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA073,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA073,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA073,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA073,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA073,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,,EA073,NA,,,, +Nd63,with special reference to the Eastern Bannock,1860,EA073,5,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA073,5,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA073,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA073,5,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA073,5,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA073,5,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA073,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA073,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA073,5,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA073,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA073,5,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA073,5,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA073,5,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA073,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA073,5,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA073,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA073,5,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA073,5,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA073,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,,EA073,NA,,,, +Ne20,,,EA073,NA,,,, +Ne21,,,EA073,NA,,,, +Ne3,Comanche Tribe,1870,EA073,5,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA073,5,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA073,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,,EA073,NA,,,, +Ne7,,1880,EA073,5,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA073,5,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA073,5,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA073,2,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,,EA073,NA,,,, +Nf12,,1850,EA073,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA073,1,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA073,1,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA073,NA,,,, +Nf2,,1850,EA073,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA073,5,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA073,1,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA073,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA073,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA073,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA073,1,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,,EA073,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA073,4,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA073,4,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA073,5,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,,EA073,NA,,,, +Ng13,,,EA073,NA,,,, +Ng14,,,EA073,NA,,,, +Ng15,,,EA073,NA,,,, +Ng2,,,EA073,NA,,,, +Ng3,Upper division in Alabama,1750,EA073,4,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,,EA073,NA,,,, +Ng5,,,EA073,NA,,,, +Ng6,with special reference to the Munsee,1700,EA073,4,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA073,3,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA073,3,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA073,NA,,,, +Nh1,Central band,1880,EA073,5,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA073,5,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA073,5,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA073,5,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,,EA073,NA,,,, +Nh14,,,EA073,NA,,,, +Nh15,,,EA073,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA073,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA073,4,"But alternatively 'nonhereditary' (code ""5"")",gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA073,4,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA073,5,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,,EA073,NA,,,, +Nh20,,1860,EA073,5,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA073,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA073,5,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA073,9,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA073,5,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA073,5,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA073,NA,,,, +Nh27,,,EA073,NA,,,, +Nh3,,1930,EA073,5,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA073,5,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,,EA073,NA,,,, +Nh6,,1890,EA073,5,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA073,5,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA073,5,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA073,5,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA073,5,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA073,9,A council only,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA073,5,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,,EA073,NA,,,, +Ni5,,1570,EA073,5,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA073,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA073,5,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA073,NA,,,, +Ni9,,,EA073,NA,,,, +Nj1,Ojitlan,1940,EA073,5,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA073,5,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA073,NA,,,, +Nj12,,,EA073,NA,,,, +Nj13,,,EA073,NA,,,, +Nj14,,,EA073,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA073,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA073,5,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,,EA073,NA,,,, +Nj5,,,EA073,NA,,,, +Nj6,,,EA073,NA,,,, +Nj7,with special reference to Ayutla,1930,EA073,5,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA073,1,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA073,5,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA073,5,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,,EA073,NA,,,, +Sa11,,,EA073,NA,,,, +Sa12,,1948,EA073,1,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA073,5,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA073,NA,,,, +Sa15,,,EA073,NA,,,, +Sa16,,,EA073,NA,,,, +Sa17,,,EA073,NA,,,, +Sa2,,,EA073,NA,,,, +Sa3,,1930,EA073,5,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,,,EA073,NA,,,, +Sa5,,,EA073,NA,,,, +Sa6,,,EA073,NA,,,, +Sa7,,1940,EA073,5,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA073,5,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,,,EA073,NA,,,, +Sb1,Dominica Island,1650,EA073,5,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA073,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA073,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA073,5,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA073,NA,,,, +Sb6,Goajiro Tribe,1940,EA073,3,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,with special reference to the Pariri,1950,EA073,5,,wilbert1961b,EthnographicAtlas_1967_p121, +Sb8,,1520,EA073,3,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,,EA073,NA,,,, +Sc1,,1950,EA073,5,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,,EA073,NA,,,, +Sc11,,,EA073,NA,,,, +Sc12,,1910,EA073,1,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,,EA073,NA,,,, +Sc14,,,EA073,NA,,,, +Sc15,,1910,EA073,1,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,,,EA073,NA,,,, +Sc17,,,EA073,NA,,,, +Sc18,,1960,EA073,4,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA073,2,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA073,5,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA073,5,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,,EA073,NA,,,, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA073,4,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,,EA073,NA,,,, +Sc8,,,EA073,NA,,,, +Sc9,,,EA073,NA,,,, +Sd1,Cabrura village,1950,EA073,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA073,NA,,,, +Sd3,,1920,EA073,5,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,,EA073,NA,,,, +Sd5,,1950,EA073,1,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA073,5,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA073,1,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA073,2,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA073,5,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA073,1,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA073,NA,,,, +Se11,,,EA073,NA,,,, +Se12,,,EA073,NA,,,, +Se2,,,EA073,NA,,,, +Se3,,1930,EA073,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA073,5,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA073,1,"Alternatively 'patrilineal heir who takes precedence over a son' (code ""2"")",goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA073,1,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA073,5,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA073,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,,EA073,NA,,,, +Sf1,,,EA073,NA,,,, +Sf2,,,EA073,NA,,,, +Sf3,Rio Cayapas Basin,1910,EA073,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA073,5,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA073,5,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA073,3,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA073,1,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA073,NA,,,, +Sf9,,,EA073,NA,,,, +Sg1,Eastern and central,1870,EA073,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA073,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA073,5,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA073,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA073,9,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,,EA073,NA,,,, +Sh2,,1850,EA073,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA073,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,,EA073,NA,,,, +Sh5,,,EA073,NA,,,, +Sh6,,,EA073,NA,,,, +Sh7,,1900,EA073,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA073,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA073,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,Kejara,1920,EA073,4,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA073,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA073,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA073,5,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA073,5,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA073,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA073,1,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA073,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA073,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA073,NA,,,, +Sj1,,1950,EA073,2,The preferred successor is a grandson,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,,,EA073,NA,,,, +Sj11,Village of Sao Domingo,1958,EA073,5,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA073,1,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA073,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,,,EA073,NA,,,, +Sj5,Naknenuk subtribe,1880,EA073,5,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA073,5,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA073,4,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA073,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA073,3,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA073,5,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA073,5,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA073,5,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA073,5,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA073,5,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA073,5,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA073,5,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA073,5,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA073,5,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA073,5,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA073,5,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA073,5,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA073,5,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA073,5,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA073,5,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA073,5,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA073,5,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA073,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA073,5,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA073,5,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA073,5,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA073,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA073,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA073,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA073,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA073,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA073,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA074,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA074,7,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA074,1,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA074,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA074,1,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,,EA074,NA,,,, +Aa7,,1910,EA074,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,,EA074,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA074,1,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA074,1,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA074,7,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA074,7,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA074,7,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA074,7,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,,EA074,NA,,,, +Ab15,,1860,EA074,7,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,,EA074,NA,,,, +Ab17,,1920,EA074,7,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA074,7,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA074,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA074,7,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA074,7,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA074,6,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA074,NA,,,, +Ab22,,,EA074,NA,,,, +Ab3,Ruling Luyana,1890,EA074,7,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA074,1,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA074,7,Precise distribution unreported,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA074,1,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA074,2,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA074,1,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA074,7,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA074,1,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA074,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,,EA074,NA,,,, +Ac12,,1920,EA074,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA074,2,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA074,3,"Entry follows Mertens and Van Wing; Ihle and Van de Velde report 'matrilineal by sister's son(s)' (EA074 code ""2"") and 'primogeniture' (EA075 code ""4"")",brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA074,2,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA074,NA,Inheritance is matrilineal,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA074,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,,EA074,NA,,,, +Ac19,,1880,EA074,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,,EA074,NA,,,, +Ac20,,1920,EA074,3,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA074,2,"Entries follows Decker; Torday reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA074,3,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA074,NA,Presumably matrilineal,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA074,NA,"Probably 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4""), despite report that inheritance is patrilineal",baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA074,3,All property escheats to the head of the matrilineage,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,,EA074,NA,,,, +Ac27,,1930,EA074,2,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA074,3,"Alternatively 'patrilineal by heirs' (EA074 code ""6"") and 'primogeniture' (EA075 code ""4"")",baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,1930,EA074,3,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA074,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA074,3,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA074,3,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA074,3,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA074,3,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA074,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,1900,EA074,3,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA074,7,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA074,3,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA074,3,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA074,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA074,1,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA074,3,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA074,NA,Matrilineal,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA074,2,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA074,NA,,,, +Ac5,,,EA074,NA,,,, +Ac6,,,EA074,NA,,,, +Ac7,,,EA074,NA,,,, +Ac8,,1930,EA074,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA074,7,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA074,5,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA074,7,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA074,7,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA074,7,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA074,7,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA074,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA074,6,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA074,6,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA074,6,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA074,3,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA074,NA,"Matrilineal, but sources conflict as to preferred heirs",fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA074,7,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA074,7,But only by sons of wives obtained by a bride-price,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA074,NA,Matrilineal,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA074,7,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA074,7,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA074,1,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA074,3,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA074,7,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA074,2,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA074,2,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA074,4,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA074,7,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA074,3,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,1910,EA074,2,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA074,7,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA074,7,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA074,7,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA074,7,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA074,NA,"By brothers according one source, by eldest sons of each wife according to another",baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA074,7,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA074,6,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA074,7,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA074,7,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,1950,EA074,7,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA074,7,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA074,7,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,,EA074,NA,,,, +Ad44,,,EA074,NA,,,, +Ad45,,1920,EA074,7,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA074,7,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA074,7,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA074,NA,,,, +Ad49,,1950,EA074,7,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA074,7,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,,,EA074,NA,,,, +Ad51,,,EA074,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA074,6,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA074,7,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,,,EA074,NA,,,, +Ad9,,1900,EA074,7,"In the north; 'patrilineal inheritance by heirs who take precedence over sons' (EA074 code ""6"") with 'equal distribution' (EA075 code ""1"") in the south",lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA074,7,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA074,7,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,,EA074,NA,,,, +Ae12,,,EA074,NA,,,, +Ae13,,1920,EA074,NA,Patrilineal,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA074,7,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA074,7,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA074,6,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA074,6,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA074,7,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA074,NA,,,, +Ae2,,1950,EA074,7,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA074,6,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA074,7,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA074,7,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA074,NA,Mixed patrilineal and matrilineal,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA074,6,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA074,7,"Entry follows Torday and Joyce; Heusch reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA074,6,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,,,EA074,NA,,,, +Ae28,,1900,EA074,7,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA074,7,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA074,1,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA074,5,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,,EA074,NA,,,, +Ae32,,1920,EA074,7,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA074,6,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA074,NA,Inheritance is patrilineal,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA074,6,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA074,NA,Inheritance is patrilineal,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA074,6,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA074,3,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA074,6,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA074,6,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA074,7,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA074,6,"Patrilineal, by brothers and sons",andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA074,7,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA074,7,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA074,3,Entry follows Gil-Delgado; Tessmann reports patrilineal inheritance with matrilineal traces,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA074,7,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA074,3,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA074,7,"But the source, Oertzen, elsewhere mentions inheritance by sisters' sons",oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,,EA074,NA,,,, +Ae49,,1900,EA074,7,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA074,7,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA074,7,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA074,7,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA074,7,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA074,7,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA074,2,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA074,7,Patrilineal,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,,EA074,NA,,,, +Ae57,,1930,EA074,7,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA074,6,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA074,7,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA074,6,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA074,7,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA074,7,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,,EA074,NA,,,, +Af1,City and environs of Abomey,1890,EA074,7,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA074,7,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA074,6,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA074,3,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,,EA074,NA,,,, +Af14,,1930,EA074,NA,"Formerly 'matrilineal by a sister's son(s)' (EA074 code ""2"")",hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA074,7,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA074,6,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA074,NA,,,, +Af18,,1900,EA074,7,But formerly matrilineal in the Ekparabong subtribe,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA074,6,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA074,7,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA074,7,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,,,EA074,NA,,,, +Af22,,,EA074,NA,,,, +Af23,with special reference to the village of Mgbom,1950,EA074,NA,Mixed but with a matrilineal emphasis,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA074,7,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA074,7,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA074,NA,Patrilineal or matrilineal depending on mode of marriage,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA074,6,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA074,NA,Patrilineal with local variations regarding participation of brothers and sons,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA074,7,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA074,3,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA074,6,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA074,7,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA074,7,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA074,6,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA074,NA,,,, +Af35,with special reference to the Krobo,1940,EA074,NA,Patrilineal,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA074,7,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA074,6,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA074,3,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA074,2,"But Kobben, as opposed to the earlier sources, reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA074,7,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA074,3,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA074,3,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA074,3,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA074,6,"But Daniell reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,1900,EA074,3,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA074,3,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA074,6,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,,EA074,NA,,,, +Af48,,,EA074,NA,,,, +Af49,,,EA074,NA,,,, +Af5,,1930,EA074,6,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA074,6,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA074,7,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA074,6,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,1950,EA074,6,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA074,7,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,,EA074,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA074,7,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA074,6,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA074,6,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA074,6,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA074,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA074,6,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA074,3,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA074,6,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA074,6,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA074,5,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA074,6,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA074,6,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,,EA074,NA,,,, +Ag15,,1930,EA074,6,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA074,7,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,,EA074,NA,,,, +Ag18,,1930,EA074,3,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA074,6,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA074,6,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA074,1,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA074,3,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA074,3,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA074,6,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA074,7,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA074,7,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA074,6,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA074,4,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA074,6,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA074,6,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA074,6,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA074,6,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA074,6,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA074,6,"Entry follows Vendeix; Delafosse reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA074,7,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA074,7,The sources are in some conflict on rules of inheritance,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA074,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA074,7,The data on inheritance are cloudy and contradictory,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA074,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA074,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA074,3,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA074,6,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA074,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA074,NA,Brothers and sons share in inheritance,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA074,6,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA074,3,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA074,NA,,,, +Ag45,,,EA074,NA,,,, +Ag46,,,EA074,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA074,7,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA074,7,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA074,6,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA074,6,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA074,6,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA074,6,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA074,6,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA074,7,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA074,1,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA074,6,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA074,6,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA074,3,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA074,6,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA074,7,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA074,NA,,,, +Ah11,,1950,EA074,6,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,1920,EA074,7,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA074,7,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA074,6,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA074,6,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA074,7,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA074,7,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA074,7,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA074,7,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA074,7,"Matrilineal by a sister's son(s)' (EA074 code ""2"") or 'patrilineal by son(s)' (EA074 code ""7""), both with 'equal distribution' (EA075 code ""1"") depending on residence",meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA074,7,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA074,NA,,,, +Ah22,,1900,EA074,7,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA074,2,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA074,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,,EA074,NA,,,, +Ah26,,1920,EA074,2,"Entry follows Meek; another source reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA074,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA074,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA074,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA074,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA074,3,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA074,7,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA074,NA,Inheritance is mixed but more matrilineal than patrilineal,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA074,6,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA074,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA074,7,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA074,7,"Formerly 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA074,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA074,6,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA074,7,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,,EA074,NA,,,, +Ah5,,1930,EA074,7,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA074,NA,"Matrilineal but not specified whether 'matrilineal by a sister's son(s)' (EA074 code ""2"") or 'matrilineal by heirs who take precedence over sister's son(s)' (EA074 code ""3"")",dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA074,7,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA074,6,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA074,7,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA074,7,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA074,7,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,,EA074,NA,,,, +Ai12,,1950,EA074,7,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA074,7,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,,EA074,NA,,,, +Ai15,,1900,EA074,7,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA074,7,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,,EA074,NA,,,, +Ai18,,,EA074,NA,,,, +Ai19,,,EA074,NA,,,, +Ai2,,1940,EA074,7,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA074,7,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,,EA074,NA,,,, +Ai22,,1890,EA074,6,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA074,7,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA074,7,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA074,NA,,,, +Ai26,,1920,EA074,7,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA074,NA,,,, +Ai28,,1910,EA074,6,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA074,7,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA074,6,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA074,7,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,,EA074,NA,,,, +Ai32,,,EA074,NA,,,, +Ai33,,1940,EA074,7,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA074,7,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,,EA074,NA,,,, +Ai36,,1920,EA074,6,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA074,7,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA074,NA,"Mixed 'matrilineal by a sister's son(s)' (EA074 code ""2"") and 'patrilineal by son(s)' (EA074 code ""7""), both with 'equal distribution' (EA075 code ""1"")",nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA074,NA,Mixed matrilineal and patrilineal,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA074,NA,,,, +Ai40,,1940,EA074,7,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA074,7,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA074,NA,Mixed matrilineal and patrilineal,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA074,7,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,,EA074,NA,,,, +Ai45,,1930,EA074,7,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,,EA074,NA,,,, +Ai47,Northern division,1939,EA074,6,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA074,NA,,,, +Ai6,Shilluk Kingdom,1900,EA074,7,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA074,7,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA074,7,But eldest son inherits distant fields,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA074,7,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA074,7,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,,EA074,NA,,,, +Aj11,,,EA074,NA,,,, +Aj12,,,EA074,NA,,,, +Aj13,,1930,EA074,7,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA074,NA,,,, +Aj15,,1900,EA074,7,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA074,1,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA074,7,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA074,7,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA074,7,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA074,7,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,,EA074,NA,,,, +Aj21,,,EA074,NA,,,, +Aj22,,1930,EA074,7,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA074,7,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA074,7,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA074,7,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA074,6,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,,EA074,NA,,,, +Aj28,,1940,EA074,7,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA074,1,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA074,7,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA074,NA,,,, +Aj31,,,EA074,NA,,,, +Aj4,,1920,EA074,7,"But often 'matrilineal by heirs who take precedence over sister's son(s)' (EA074 code ""3"") for private hunting tracts",driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA074,7,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA074,7,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA074,7,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA074,7,"Entry follows Seligman; Beaton reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA074,7,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA074,7,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA074,4,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA074,7,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA074,7,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA074,7,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,,EA074,NA,,,, +Ca15,,1930,EA074,7,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA074,7,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,,EA074,NA,,,, +Ca18,,1940,EA074,6,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,,EA074,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA074,4,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA074,NA,,,, +Ca21,,,EA074,NA,,,, +Ca22,,,EA074,NA,,,, +Ca23,,1950,EA074,7,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA074,NA,,,, +Ca25,,1950,EA074,7,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA074,NA,,,, +Ca27,,,EA074,NA,,,, +Ca28,,1950,EA074,7,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA074,7,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA074,7,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA074,7,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,,EA074,NA,,,, +Ca32,,1860,EA074,2,"Entry follows Pollera; Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA074,2,"But Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA074,NA,,,, +Ca35,,1930,EA074,1,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA074,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA074,7,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA074,7,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA074,7,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA074,7,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA074,7,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA074,7,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA074,6,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA074,NA,,,, +Ca5,,,EA074,NA,,,, +Ca6,,,EA074,NA,,,, +Ca7,Gondar district,1950,EA074,7,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA074,7,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,1890,EA074,7,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA074,6,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA074,7,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA074,NA,,,, +Cb12,,,EA074,NA,,,, +Cb13,,,EA074,NA,,,, +Cb14,,,EA074,NA,,,, +Cb15,with special reference to the Humr,1940,EA074,7,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,,EA074,NA,,,, +Cb17,Jebel Marra,1880,EA074,7,"Entry follows Felkin; Beaton reports 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA074,7,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA074,4,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA074,4,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA074,4,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA074,1,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,,EA074,NA,,,, +Cb23,,1930,EA074,7,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA074,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA074,7,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA074,4,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA074,6,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,,EA074,NA,,,, +Cb29,,,EA074,NA,,,, +Cb3,Bamba division,1940,EA074,4,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA074,4,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA074,7,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA074,4,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,,EA074,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA074,1,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA074,7,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA074,4,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA074,2,"Entry follows Rodd; Joubert reports 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA074,2,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,,EA074,NA,,,, +Cc13,,1920,EA074,2,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,,EA074,NA,,,, +Cc15,,,EA074,NA,,,, +Cc16,,,EA074,NA,,,, +Cc17,,1930,EA074,4,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA074,4,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA074,4,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA074,4,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA074,7,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA074,4,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,,EA074,NA,,,, +Cc5,,,EA074,NA,,,, +Cc6,,1910,EA074,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,,,EA074,NA,,,, +Cc8,,,EA074,NA,,,, +Cc9,Ahaggaren tribe,1920,EA074,2,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA074,4,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA074,7,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA074,2,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA074,4,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA074,7,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA074,4,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA074,4,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA074,4,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA074,7,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA074,4,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,,EA074,NA,,,, +Cd2,Town and environs of Silwa,1950,EA074,4,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA074,4,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,,EA074,NA,,,, +Cd3,Entirety: Moroccan,1920,EA074,7,"But theoretically 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA074,7,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA074,4,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA074,7,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA074,7,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA074,7,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA074,4,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA074,7,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA074,NA,,,, +Ce3,City and environs of Rome,100,EA074,5,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA074,5,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA074,4,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA074,5,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA074,5,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA074,4,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA074,5,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,,,EA074,NA,,,, +Cf3,,1930,EA074,5,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA074,5,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA074,7,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA074,5,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA074,7,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA074,7,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA074,7,For tent or cottage and associated movables,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,,EA074,NA,,,, +Ch1,,,EA074,NA,,,, +Ch10,,,EA074,NA,,,, +Ch11,Viriatino Village,1955,EA074,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA074,7,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA074,7,But the youngest son receives the largest share,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA074,5,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA074,4,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA074,7,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,1930,EA074,7,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,,EA074,NA,,,, +Ch9,,1930,EA074,7,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA074,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA074,7,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA074,7,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA074,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA074,7,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA074,NA,,,, +Ci4,,1920,EA074,4,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA074,7,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA074,7,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,,EA074,NA,,,, +Ci8,,,EA074,NA,,,, +Ci9,,1910,EA074,7,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,,,EA074,NA,,,, +Cj10,with special reference to the village of ech-Chibayish,1950,EA074,7,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA074,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA074,7,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA074,7,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA074,4,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA074,4,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA074,7,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA074,4,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,,EA074,NA,,,, +Ea1,,1950,EA074,7,,bordiend; wilber1964,EthnographicAtlas_1967_p89, +Ea10,with special reference to the more nomadic groups,1950,EA074,7,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA074,NA,,,, +Ea12,,,EA074,NA,,,, +Ea13,Mohla Village,1950,EA074,7,"Despite legal change in 1948 to 'inheritance by children of either sex' (EA074 code ""5"") with 'equal distribution' (EA075 code ""1"")",callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA074,4,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA074,7,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA074,4,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA074,7,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA074,1,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA074,7,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA074,NA,,,, +Ea9,,,EA074,NA,,,, +Eb1,Great Horde,1910,EA074,1,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA074,7,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA074,7,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA074,7,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,,,EA074,NA,,,, +Eb6,,,EA074,NA,,,, +Eb7,,1930,EA074,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA074,NA,,,, +Ec1,Sakhalin Island,1920,EA074,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,,,EA074,NA,,,, +Ec11,,,EA074,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA074,6,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA074,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA074,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA074,7,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA074,1,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,,,EA074,NA,,,, +Ec8,,1900,EA074,1,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA074,NA,,,, +Ed1,Kanghwa Island,1950,EA074,7,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA074,7,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA074,NA,,,, +Ed14,,,EA074,NA,,,, +Ed15a,,,EA074,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA074,7,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA074,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA074,7,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA074,7,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA074,7,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA074,7,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA074,7,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA074,7,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA074,7,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA074,7,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA074,7,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,,,EA074,NA,,,, +Ee3,Lingthem and vicinity,1930,EA074,7,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA074,7,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA074,7,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA074,7,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA074,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA074,5,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA074,7,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA074,NA,,,, +Ef11,Village and environs of Senapur,1945,EA074,7,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA074,7,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA074,NA,,,, +Ef4,,1920,EA074,7,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA074,7,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA074,7,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA074,7,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA074,7,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA074,7,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA074,7,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA074,7,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,with special reference to the Gommu Koya,1960,EA074,7,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,,,EA074,NA,,,, +Eg13,,,EA074,NA,,,, +Eg14,,,EA074,NA,,,, +Eg2,,,EA074,NA,,,, +Eg3,Hill Maria,1938,EA074,1,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA074,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA074,7,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,,,EA074,NA,,,, +Eg7,,,EA074,NA,,,, +Eg8,,1940,EA074,7,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,,EA074,NA,,,, +Eh1,,1870,EA074,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA074,NA,,,, +Eh2,,1900,EA074,5,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA074,7,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA074,7,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA074,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA074,5,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA074,7,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,,EA074,NA,,,, +Eh9,,1930,EA074,5,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA074,1,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA074,7,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA074,7,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,,EA074,NA,,,, +Ei13,,1910,EA074,7,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA074,6,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA074,NA,,,, +Ei16,,1910,EA074,7,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA074,NA,,,, +Ei18,,,EA074,NA,,,, +Ei19,,1940,EA074,7,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"") in some localities",bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA074,7,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA074,NA,,,, +Ei3,Nondwin Village,1950,EA074,5,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA074,7,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA074,7,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA074,7,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA074,5,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA074,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,1880,EA074,7,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p93, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA074,1,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA074,NA,Matrilineal,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA074,3,Mainly from mother to youngest daughter,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,,EA074,NA,,,, +Ej13,,1940,EA074,7,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA074,1,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA074,NA,,,, +Ej16,Inas District,1958,EA074,3,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,,,EA074,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA074,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA074,5,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA074,7,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA074,NA,,,, +Ej7,,1950,EA074,7,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA074,7,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA074,5,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA074,7,"But Li reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA074,7,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,,EA074,NA,,,, +Ia12,,1950,EA074,5,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,,,EA074,NA,,,, +Ia14,,1930,EA074,7,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA074,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA074,5,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA074,NA,,,, +Ia18,,,EA074,NA,,,, +Ia2,,1950,EA074,5,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA074,5,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA074,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA074,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA074,5,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA074,5,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA074,5,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA074,2,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA074,5,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA074,5,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA074,7,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA074,7,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA074,5,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA074,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA074,3,Taro land is inherited from Mo to Da,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,,,EA074,NA,,,, +Ib9,,,EA074,NA,,,, +Ic1,,,EA074,NA,,,, +Ic10,Tobelo District,1910,EA074,4,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA074,7,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA074,NA,,,, +Ic13,,,EA074,NA,,,, +Ic2,,,EA074,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA074,1,"Inheritance by widows, then daughters",vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,,EA074,NA,,,, +Ic5,Bare'e subgroup,1910,EA074,5,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA074,7,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA074,7,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA074,7,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA074,7,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA074,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA074,1,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA074,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA074,NA,,,, +Id13,,1930,EA074,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA074,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA074,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,1900,EA074,1,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p97, +Id5,,1910,EA074,1,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p97, +Id6,with special reference to the Archer River group,1920,EA074,1,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p97, +Id7,,,EA074,NA,,,, +Id8,,1830,EA074,1,,roth1890,EthnographicAtlas_1967_p97, +Id9,,1910,EA074,1,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p97, +Ie1,,,EA074,NA,,,, +Ie10,with special reference to the Western Motu,1950,EA074,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA074,7,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA074,7,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA074,NA,,,, +Ie14,,,EA074,NA,,,, +Ie15,,,EA074,NA,,,, +Ie16,,1940,EA074,7,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA074,7,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA074,7,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,,,EA074,NA,,,, +Ie2,,1920,EA074,7,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA074,7,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA074,7,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA074,7,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA074,7,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA074,5,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA074,7,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA074,7,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA074,1,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA074,2,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA074,7,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA074,7,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA074,NA,,,, +Ie31,,1950,EA074,7,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,,EA074,NA,,,, +Ie33,,,EA074,NA,,,, +Ie34,,,EA074,NA,,,, +Ie35,,,EA074,NA,,,, +Ie36,,,EA074,NA,,,, +Ie37,,,EA074,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA074,5,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA074,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA074,7,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA074,1,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA074,NA,,,, +Ie7,with special reference to the Mae group,1950,EA074,7,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA074,7,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,,EA074,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA074,3,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA074,NA,,,, +If11,,,EA074,NA,,,, +If12,,,EA074,NA,,,, +If13,,,EA074,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA074,4,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,,EA074,NA,,,, +If16,,1960,EA074,NA,Predominantly matrilineal,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA074,3,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA074,7,But provisional land rights revert to the matrilineage of the deceased,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA074,3,"Mixed (A man may transmit certain land rights to a son, but others remain within his matrilineage)",spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA074,NA,Matrilineal but without information of the preferred heirs,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA074,3,"But Bascom reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"") in most districts",bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA074,3,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA074,4,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA074,5,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA074,NA,Basically matrilineal,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA074,3,Matrilineal within lineage,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA074,NA,,,, +Ig11,,,EA074,NA,,,, +Ig12,with special reference to the Varisi,1900,EA074,7,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA074,2,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA074,2,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA074,NA,,,, +Ig16,,,EA074,NA,,,, +Ig17,,,EA074,NA,,,, +Ig18,,,EA074,NA,,,, +Ig19,,,EA074,NA,,,, +Ig2,Kiriwina Island,1910,EA074,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA074,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA074,NA,,,, +Ig3,,1930,EA074,NA,"A man may leave his property to his sons, his sister's sons, or both",blackwood1935,EthnographicAtlas_1967_p101, +Ig4,,,EA074,NA,,,, +Ig5,,1920,EA074,2,"Matrilineal, but the exact distribution is not reported",fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA074,5,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,,EA074,NA,,,, +Ig8,,,EA074,NA,,,, +Ig9,Peri Village,1920,EA074,1,Most of a deceased man's property is plundered by the agnatic kinsmen of his MoBr,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA074,2,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA074,7,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA074,NA,,,, +Ih12,,,EA074,NA,,,, +Ih13,,,EA074,NA,,,, +Ih14,,,EA074,NA,,,, +Ih2,,,EA074,NA,,,, +Ih3,Bunlap Village,1950,EA074,1,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,,,EA074,NA,,,, +Ih5,,,EA074,NA,,,, +Ih6,,,EA074,NA,,,, +Ih7,,1910,EA074,7,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA074,NA,Mixed but mainly patrilineal,quain1949,EthnographicAtlas_1967_p101, +Ih9,,,EA074,NA,,,, +Ii1,,,EA074,NA,,,, +Ii10,,1950,EA074,7,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA074,6,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA074,NA,Land is collectively owned by ramages,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,,EA074,NA,,,, +Ii2,Ravenga District,1930,EA074,7,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,,EA074,NA,,,, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA074,6,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA074,NA,"Taro plots descend from Mo to Da, but other land is owned collectively by ramages",hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA074,NA,Land is collectively owned by ramages,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA074,5,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA074,NA,"Land is owned by ramages; inheritance, though basically bilateral, is predominantly patrilineal",burrows1936,EthnographicAtlas_1967_p101, +Ii9,,,EA074,NA,,,, +Ij1,,,EA074,NA,,,, +Ij10,,1900,EA074,7,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA074,7,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA074,4,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,,EA074,NA,,,, +Ij5,,1900,EA074,5,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA074,5,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA074,7,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,,EA074,NA,,,, +Ij9,,,EA074,NA,,,, +Na1,,1930,EA074,1,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA074,5,"Houses were owned by females and inherited by the eldest child who, if a male, gave the house to his wife",birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,,EA074,NA,,,, +Na12,,1950,EA074,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA074,1,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA074,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,,EA074,NA,,,, +Na16,,1860,EA074,1,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA074,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA074,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA074,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA074,7,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA074,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA074,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA074,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA074,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,,,EA074,NA,,,, +Na26,with special reference to the Iliamna,1870,EA074,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,,EA074,NA,,,, +Na28,,1880,EA074,1,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA074,1,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA074,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA074,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,,,EA074,NA,,,, +Na32,Lake St. John & Mistassini Band,1880,EA074,7,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,,,EA074,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA074,7,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,,EA074,NA,,,, +Na36,,,EA074,NA,,,, +Na37,,1880,EA074,4,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,,,EA074,NA,,,, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA074,1,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA074,NA,Trap lines are inherited by DaHu,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,,EA074,NA,,,, +Na41,,,EA074,NA,,,, +Na42,,,EA074,NA,,,, +Na43,,,EA074,NA,,,, +Na44,,,EA074,NA,,,, +Na45,,,EA074,NA,,,, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA074,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA074,1,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA074,7,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA074,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA074,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA074,3,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,,EA074,NA,,,, +Nb11,,,EA074,NA,,,, +Nb12,,,EA074,NA,,,, +Nb13,,,EA074,NA,,,, +Nb14,,,EA074,NA,,,, +Nb15,,,EA074,NA,,,, +Nb16,,1860,EA074,7,With reference to inheritance of dwellings,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,,EA074,NA,,,, +Nb18,,,EA074,NA,,,, +Nb19,,,EA074,NA,,,, +Nb2,Twana Tribe,1850,EA074,1,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,,EA074,NA,,,, +Nb21,,1860,EA074,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA074,NA,Matrilineal inheritance with collective ownership,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,,EA074,NA,,,, +Nb24,,1860,EA074,1,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA074,1,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,,EA074,NA,,,, +Nb27,with special reference to the Tait,1880,EA074,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,,EA074,NA,,,, +Nb29,,,EA074,NA,,,, +Nb3,,,EA074,NA,,,, +Nb30,,,EA074,NA,,,, +Nb31,,,EA074,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA074,6,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA074,1,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,,EA074,NA,,,, +Nb35,,,EA074,NA,,,, +Nb36,,,EA074,NA,,,, +Nb37,,1860,EA074,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,,,EA074,NA,,,, +Nb39,,1860,EA074,1,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,,EA074,NA,,,, +Nb5,,,EA074,NA,,,, +Nb6,,1870,EA074,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA074,3,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA074,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA074,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,,EA074,NA,,,, +Nc10,,,EA074,NA,,,, +Nc11,,1860,EA074,7,"Entry pertains to northern Yana; 'no inheritance of real property' (code ""1"") for central Yana",gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA074,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,,,EA074,NA,,,, +Nc14,with special reference to the northeastern Wintu,1860,EA074,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA074,1,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,,EA074,NA,,,, +Nc17,with special reference to those of Kalekau,1860,EA074,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA074,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA074,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA074,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA074,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA074,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,,,EA074,NA,,,, +Nc23,,1870,EA074,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA074,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,,EA074,NA,,,, +Nc26,,1770,EA074,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA074,NA,,,, +Nc28,,,EA074,NA,,,, +Nc29,,,EA074,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA074,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,,EA074,NA,,,, +Nc31,,,EA074,NA,,,, +Nc32,,,EA074,NA,,,, +Nc33,,,EA074,NA,,,, +Nc34,,,EA074,NA,,,, +Nc4,,1860,EA074,7,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA074,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA074,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA074,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA074,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA074,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA074,1,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,,EA074,NA,,,, +Nd11,with special reference to the southeastern Shuswap,1850,EA074,1,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA074,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,,EA074,NA,,,, +Nd14,,1860,EA074,1,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA074,1,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,,EA074,NA,,,, +Nd17,,,EA074,NA,,,, +Nd18,,,EA074,NA,,,, +Nd19,,,EA074,NA,,,, +Nd2,,1860,EA074,1,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA074,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,,EA074,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA074,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,,EA074,NA,,,, +Nd24,,1870,EA074,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,,EA074,NA,,,, +Nd26,,1870,EA074,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA074,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,,EA074,NA,,,, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA074,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA074,7,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA074,1,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,,EA074,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA074,1,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA074,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA074,NA,"Eagle nests were individually owned, but the mode of inheritance is not reported",steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,,EA074,NA,,,, +Nd36,,,EA074,NA,,,, +Nd37,,,EA074,NA,,,, +Nd38,,,EA074,NA,,,, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA074,NA,"""Farmed plots were inherited by a man's wife or children""",steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA074,1,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA074,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,,EA074,NA,,,, +Nd42,,,EA074,NA,,,, +Nd43,,1860,EA074,1,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,,EA074,NA,,,, +Nd45,,1860,EA074,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA074,1,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA074,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA074,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA074,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA074,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA074,NA,"Eagle nests were owned by men and inherited ""by a son""",kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,,EA074,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA074,5,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA074,7,Springs and eagle nests were owned by males and inherited by the oldest son or nearest male relative,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,,,EA074,NA,,,, +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA074,7,Pine nut tracts were inherited by a man's sons,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA074,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA074,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA074,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA074,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA074,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA074,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA074,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA074,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA074,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA074,1,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,,EA074,NA,,,, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA074,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA074,1,"But eagle nests were ""transmitted from father to son""",gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA074,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA074,7,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA074,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA074,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA074,NA,Possibly from Mo to Da,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA074,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA074,1,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA074,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA074,1,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA074,NA,Possibly from Mo to Da,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA074,1,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA074,1,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA074,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA074,1,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA074,1,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,,EA074,NA,,,, +Ne21,,,EA074,NA,,,, +Ne3,Comanche Tribe,1870,EA074,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA074,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA074,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA074,NA,Land was owned by women and inherited from Mo to Da,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA074,1,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA074,1,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA074,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,,EA074,NA,,,, +Nf11,,,EA074,NA,,,, +Nf12,,,EA074,NA,,,, +Nf13,with special reference to the Kiskopotha band,1820,EA074,1,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA074,NA,,,, +Nf15,,,EA074,NA,,,, +Nf2,,,EA074,NA,,,, +Nf3,Omaha Tribe,1850,EA074,7,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA074,NA,,,, +Nf5,,,EA074,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA074,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,,,EA074,NA,,,, +Nf8,,,EA074,NA,,,, +Nf9,,,EA074,NA,,,, +Ng1,,,EA074,NA,,,, +Ng10,,,EA074,NA,,,, +Ng11,,,EA074,NA,,,, +Ng12,,,EA074,NA,,,, +Ng13,,,EA074,NA,,,, +Ng14,,,EA074,NA,,,, +Ng15,,,EA074,NA,,,, +Ng2,,,EA074,NA,,,, +Ng3,,,EA074,NA,,,, +Ng4,,1900,EA074,7,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,,EA074,NA,,,, +Ng6,with special reference to the Munsee,1700,EA074,3,Land was probably owned collectively by matrilineages,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,,,EA074,NA,,,, +Ng8,,1560,EA074,2,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,1920,EA074,5,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA074,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA074,5,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA074,5,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA074,5,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA074,5,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA074,NA,Inheritance is mixed,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,,EA074,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA074,5,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA074,5,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA074,3,Matrilineal inheritance within the lineage,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA074,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA074,3,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,1860,EA074,1,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,,,EA074,NA,,,, +Nh22,,1860,EA074,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA074,1,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA074,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA074,7,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA074,NA,,,, +Nh27,,,EA074,NA,,,, +Nh3,,,EA074,NA,,,, +Nh4,Pueblo,1910,EA074,3,A man's land is inherited by his daughters,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA074,5,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,,EA074,NA,,,, +Nh7,,,EA074,NA,,,, +Nh8,,,EA074,NA,,,, +Nh9,,,EA074,NA,,,, +Ni1,,1930,EA074,5,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA074,7,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA074,6,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA074,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA074,1,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA074,7,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,,EA074,NA,,,, +Ni8,,,EA074,NA,,,, +Ni9,,,EA074,NA,,,, +Nj1,Ojitlan,1940,EA074,7,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA074,5,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA074,NA,,,, +Nj12,,,EA074,NA,,,, +Nj13,,,EA074,NA,,,, +Nj14,,,EA074,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA074,7,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA074,7,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,,EA074,NA,,,, +Nj5,,,EA074,NA,,,, +Nj6,,,EA074,NA,,,, +Nj7,with special reference to Ayutla,1930,EA074,5,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA074,7,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA074,7,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,,,EA074,NA,,,, +Sa10,,,EA074,NA,,,, +Sa11,,,EA074,NA,,,, +Sa12,,,EA074,NA,,,, +Sa13,Town of Chichicastenango,1930,EA074,7,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA074,NA,,,, +Sa15,,,EA074,NA,,,, +Sa16,,,EA074,NA,,,, +Sa17,,,EA074,NA,,,, +Sa2,,,EA074,NA,,,, +Sa3,,1930,EA074,5,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA074,7,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA074,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA074,6,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,,EA074,NA,,,, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA074,7,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,,,EA074,NA,,,, +Sb1,Dominica Island,1650,EA074,NA,Probably matrilineal,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA074,7,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA074,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA074,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA074,NA,,,, +Sb6,,,EA074,NA,,,, +Sb7,,,EA074,NA,,,, +Sb8,,,EA074,NA,,,, +Sb9,,1930,EA074,5,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA074,1,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,,EA074,NA,,,, +Sc11,,,EA074,NA,,,, +Sc12,,,EA074,NA,,,, +Sc13,,,EA074,NA,,,, +Sc14,,,EA074,NA,,,, +Sc15,,,EA074,NA,,,, +Sc16,,,EA074,NA,,,, +Sc17,,,EA074,NA,,,, +Sc18,,1960,EA074,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA074,5,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,,,EA074,NA,,,, +Sc4,with special reference to the non-agricultural groups,1950,EA074,1,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,,EA074,NA,,,, +Sc6,,,EA074,NA,,,, +Sc7,,,EA074,NA,,,, +Sc8,,,EA074,NA,,,, +Sc9,,,EA074,NA,,,, +Sd1,Cabrura village,1950,EA074,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA074,NA,,,, +Sd3,,,EA074,NA,,,, +Sd4,,,EA074,NA,,,, +Sd5,,,EA074,NA,,,, +Sd6,,,EA074,NA,,,, +Sd7,,,EA074,NA,,,, +Sd8,,,EA074,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA074,1,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA074,1,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA074,NA,,,, +Se11,,,EA074,NA,,,, +Se12,,,EA074,NA,,,, +Se2,,1940,EA074,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA074,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA074,1,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA074,1,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,,EA074,NA,,,, +Se7,,,EA074,NA,,,, +Se8,Upper Inuya River,1950,EA074,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA074,1,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA074,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA074,7,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,,,EA074,NA,,,, +Sf4,,,EA074,NA,,,, +Sf5,,1900,EA074,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA074,7,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,,EA074,NA,,,, +Sf8,,,EA074,NA,,,, +Sf9,,,EA074,NA,,,, +Sg1,Eastern and central,1870,EA074,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA074,7,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA074,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA074,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA074,1,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA074,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,,EA074,NA,,,, +Sh3,Those in contact with mission,1800,EA074,1,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,,EA074,NA,,,, +Sh5,,1910,EA074,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,,EA074,NA,,,, +Sh7,,1900,EA074,7,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA074,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA074,1,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,,,EA074,NA,,,, +Si10,,,EA074,NA,,,, +Si2,Village of Vanivani,1930,EA074,1,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,,,EA074,NA,,,, +Si4,Cocozu Group,1940,EA074,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA074,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,,EA074,NA,,,, +Si7,,,EA074,NA,,,, +Si8,,,EA074,NA,,,, +Si9,,,EA074,NA,,,, +Sj1,,,EA074,NA,,,, +Sj10,,,EA074,NA,,,, +Sj11,Village of Sao Domingo,1958,EA074,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,,EA074,NA,,,, +Sj3,Duque de Caxias Reservation,1910,EA074,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA074,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA074,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA074,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,,EA074,NA,,,, +Sj8,,,EA074,NA,,,, +Sj9,,,EA074,NA,,,, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA074,7,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA074,7,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA074,7,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA074,7,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA074,7,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA074,7,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA074,7,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA074,7,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA074,7,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA074,7,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA074,7,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA074,7,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA074,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA074,7,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA074,7,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA074,7,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA074,7,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA074,1,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA074,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA074,1,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA074,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA074,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA074,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA074,1,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA074,1,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA074,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA074,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA075,9,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA075,4,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA075,9,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA075,9,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA075,9,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,,EA075,NA,,,, +Aa7,,1910,EA075,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,,EA075,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA075,9,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA075,9,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA075,4,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA075,4,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA075,4,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA075,4,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,,EA075,NA,,,, +Ab15,,1860,EA075,4,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,,EA075,NA,,,, +Ab17,,1920,EA075,1,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA075,4,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA075,9,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA075,4,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,,EA075,NA,,,, +Ab21a,,1930,EA075,4,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA075,NA,,,, +Ab22,,,EA075,NA,,,, +Ab3,Ruling Luyana,1890,EA075,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA075,9,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA075,NA,Precise distribution unreported,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA075,9,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA075,4,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA075,9,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA075,4,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA075,9,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,,EA075,NA,,,, +Ac11,,,EA075,NA,,,, +Ac12,,1920,EA075,4,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,,EA075,NA,,,, +Ac14,,1900,EA075,4,"Entry follows Mertens and Van Wing; Ihle and Van de Velde report 'matrilineal by sister's son(s)' (EA074 code ""2"") and 'primogeniture' (EA075 code ""4"")",brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA075,4,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA075,NA,Inheritance is matrilineal,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA075,4,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,,EA075,NA,,,, +Ac19,,1880,EA075,4,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,,EA075,NA,,,, +Ac20,,1920,EA075,4,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA075,1,"Entries follows Decker; Torday reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,,EA075,NA,,,, +Ac23,with special reference to the western Lele,1950,EA075,NA,Presumably matrilineal,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA075,NA,"Probably 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4""), despite report that inheritance is patrilineal",baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA075,4,All property escheats to the head of the matrilineage,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,,EA075,NA,,,, +Ac27,,,EA075,NA,,,, +Ac28,,1930,EA075,4,"Alternatively 'patrilineal by heirs' (EA074 code ""6"") and 'primogeniture' (EA075 code ""4"")",baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,1930,EA075,2,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA075,4,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA075,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA075,4,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA075,4,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA075,4,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA075,2,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,1900,EA075,2,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA075,4,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA075,2,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA075,4,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,,EA075,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA075,9,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA075,4,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA075,NA,Matrilineal,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA075,4,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA075,NA,,,, +Ac5,,,EA075,NA,,,, +Ac6,,,EA075,NA,,,, +Ac7,,,EA075,NA,,,, +Ac8,,1930,EA075,4,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,,,EA075,NA,,,, +Ad1,,1950,EA075,1,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA075,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA075,1,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA075,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA075,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA075,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA075,4,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA075,4,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA075,1,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA075,1,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA075,NA,"Matrilineal, but sources conflict as to preferred heirs",fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA075,4,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA075,1,But only by sons of wives obtained by a bride-price,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA075,NA,Matrilineal,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA075,4,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,,EA075,NA,,,, +Ad24,,1910,EA075,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,,EA075,NA,,,, +Ad26,,1910,EA075,1,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA075,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA075,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA075,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA075,4,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA075,4,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,,EA075,NA,,,, +Ad32,,1900,EA075,4,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA075,4,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA075,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA075,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA075,NA,"By brothers according one source, by eldest sons of each wife according to another",baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA075,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA075,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA075,1,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA075,4,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,1950,EA075,1,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA075,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA075,4,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,,EA075,NA,,,, +Ad44,,,EA075,NA,,,, +Ad45,,1920,EA075,4,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA075,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA075,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA075,NA,,,, +Ad49,,1950,EA075,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA075,4,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,,,EA075,NA,,,, +Ad51,,,EA075,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA075,4,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA075,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,,,EA075,NA,,,, +Ad9,,1900,EA075,1,"In the north; 'patrilineal inheritance by heirs who take precedence over sons' (EA074 code ""6"") with 'equal distribution' (EA075 code ""1"") in the south",lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA075,4,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA075,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,,EA075,NA,,,, +Ae12,,,EA075,NA,,,, +Ae13,,1920,EA075,NA,Patrilineal,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA075,4,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA075,4,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA075,4,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA075,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA075,4,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA075,NA,,,, +Ae2,,1950,EA075,4,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA075,4,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA075,4,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA075,4,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA075,NA,Mixed patrilineal and matrilineal,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA075,4,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA075,4,"Entry follows Torday and Joyce; Heusch reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA075,4,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,,,EA075,NA,,,, +Ae28,,1900,EA075,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA075,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA075,9,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA075,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,,EA075,NA,,,, +Ae32,,1920,EA075,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA075,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA075,NA,Inheritance is patrilineal,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA075,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA075,NA,Inheritance is patrilineal,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA075,4,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA075,4,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA075,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA075,4,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA075,4,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA075,1,"Patrilineal, by brothers and sons",andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA075,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA075,4,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA075,4,Entry follows Gil-Delgado; Tessmann reports patrilineal inheritance with matrilineal traces,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA075,4,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA075,4,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA075,1,"But the source, Oertzen, elsewhere mentions inheritance by sisters' sons",oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,,EA075,NA,,,, +Ae49,,1900,EA075,4,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA075,2,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA075,2,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA075,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA075,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA075,4,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,,EA075,NA,,,, +Ae55,,1950,EA075,NA,Patrilineal,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,,EA075,NA,,,, +Ae57,,1930,EA075,1,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA075,4,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA075,4,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA075,4,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA075,4,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA075,4,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,,EA075,NA,,,, +Af1,City and environs of Abomey,1890,EA075,4,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA075,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA075,4,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA075,2,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,,EA075,NA,,,, +Af14,,,EA075,NA,,,, +Af15,,1920,EA075,4,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA075,4,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA075,NA,,,, +Af18,,1900,EA075,4,But formerly matrilineal in the Ekparabong subtribe,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA075,1,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA075,1,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA075,4,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,,,EA075,NA,,,, +Af22,,,EA075,NA,,,, +Af23,with special reference to the village of Mgbom,1950,EA075,NA,Mixed but with a matrilineal emphasis,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA075,4,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA075,4,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA075,NA,Patrilineal or matrilineal depending on mode of marriage,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA075,4,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA075,NA,Patrilineal with local variations regarding participation of brothers and sons,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA075,4,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA075,4,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA075,4,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA075,1,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA075,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA075,1,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,,,EA075,NA,,,, +Af35,with special reference to the Krobo,1940,EA075,NA,Patrilineal,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA075,4,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA075,4,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA075,4,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA075,4,"But Kobben, as opposed to the earlier sources, reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,,EA075,NA,,,, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA075,4,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA075,4,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA075,4,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA075,4,"But Daniell reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,1900,EA075,4,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA075,4,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA075,4,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,,EA075,NA,,,, +Af48,,,EA075,NA,,,, +Af49,,,EA075,NA,,,, +Af5,,1930,EA075,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA075,4,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA075,4,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA075,4,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,1950,EA075,4,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,,EA075,NA,,,, +Af55,,,EA075,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA075,4,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA075,4,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA075,4,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA075,1,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA075,9,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA075,4,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA075,4,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA075,4,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA075,4,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA075,1,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA075,4,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA075,4,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,,EA075,NA,,,, +Ag15,,1930,EA075,4,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA075,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,,EA075,NA,,,, +Ag18,,1930,EA075,4,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA075,4,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA075,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA075,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA075,4,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA075,4,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA075,4,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA075,4,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA075,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA075,4,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA075,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA075,4,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA075,4,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA075,4,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA075,4,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA075,4,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA075,4,"Entry follows Vendeix; Delafosse reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA075,1,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA075,1,The sources are in some conflict on rules of inheritance,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA075,4,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA075,1,The data on inheritance are cloudy and contradictory,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA075,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA075,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA075,4,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA075,4,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA075,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA075,NA,Brothers and sons share in inheritance,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA075,4,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA075,4,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA075,NA,,,, +Ag45,,,EA075,NA,,,, +Ag46,,,EA075,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA075,4,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA075,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA075,4,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA075,4,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA075,4,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA075,4,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA075,4,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA075,4,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA075,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA075,4,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA075,4,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA075,4,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA075,4,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA075,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,,EA075,NA,,,, +Ah11,,1950,EA075,1,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,1920,EA075,4,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA075,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA075,1,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA075,4,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA075,4,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA075,1,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA075,4,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA075,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA075,1,"Matrilineal by a sister's son(s)' (EA074 code ""2"") or 'patrilineal by son(s)' (EA074 code ""7""), both with 'equal distribution' (EA075 code ""1"") depending on residence",meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA075,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA075,NA,,,, +Ah22,,1900,EA075,1,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,,EA075,NA,,,, +Ah24,,1920,EA075,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,,EA075,NA,,,, +Ah26,,1920,EA075,4,"Entry follows Meek; another source reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA075,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA075,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA075,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA075,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA075,4,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA075,4,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA075,NA,Inheritance is mixed but more matrilineal than patrilineal,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA075,4,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA075,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA075,4,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA075,1,"Formerly 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA075,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA075,4,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA075,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,,EA075,NA,,,, +Ah5,,1930,EA075,4,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,,EA075,NA,,,, +Ah7,,1940,EA075,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA075,4,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA075,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA075,4,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA075,1,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,,EA075,NA,,,, +Ai12,,1950,EA075,3,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA075,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,,EA075,NA,,,, +Ai15,,,EA075,NA,,,, +Ai16,,1910,EA075,1,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,,EA075,NA,,,, +Ai18,,,EA075,NA,,,, +Ai19,,,EA075,NA,,,, +Ai2,,1940,EA075,1,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA075,4,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,,EA075,NA,,,, +Ai22,,,EA075,NA,,,, +Ai23,,1920,EA075,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA075,4,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA075,NA,,,, +Ai26,,1920,EA075,4,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA075,NA,,,, +Ai28,,1910,EA075,4,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA075,4,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA075,4,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA075,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,,EA075,NA,,,, +Ai32,,,EA075,NA,,,, +Ai33,,1940,EA075,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA075,4,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,,EA075,NA,,,, +Ai36,,1920,EA075,4,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'equal distribution' (EA075 code ""1"") for property acquired rather than inherited by deceased",bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA075,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA075,NA,"Mixed 'matrilineal by a sister's son(s)' (EA074 code ""2"") and 'patrilineal by son(s)' (EA074 code ""7""), both with 'equal distribution' (EA075 code ""1"")",nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA075,NA,Mixed matrilineal and patrilineal,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA075,NA,,,, +Ai40,,1940,EA075,4,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA075,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA075,NA,Mixed matrilineal and patrilineal,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA075,4,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,,EA075,NA,,,, +Ai45,,1930,EA075,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,,EA075,NA,,,, +Ai47,Northern division,1939,EA075,4,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA075,NA,,,, +Ai6,Shilluk Kingdom,1900,EA075,4,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA075,4,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA075,3,But eldest son inherits distant fields,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA075,4,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA075,4,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,,EA075,NA,,,, +Aj11,,,EA075,NA,,,, +Aj12,,,EA075,NA,,,, +Aj13,,1930,EA075,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA075,NA,,,, +Aj15,,1900,EA075,4,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA075,9,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA075,4,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA075,4,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA075,4,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA075,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,,EA075,NA,,,, +Aj21,,,EA075,NA,,,, +Aj22,,,EA075,NA,,,, +Aj23,,1950,EA075,4,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA075,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA075,1,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA075,4,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,,EA075,NA,,,, +Aj28,,1940,EA075,4,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA075,9,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA075,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA075,NA,,,, +Aj31,,,EA075,NA,,,, +Aj4,,1920,EA075,4,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA075,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA075,4,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA075,4,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA075,1,"Entry follows Seligman; Beaton reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA075,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA075,4,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA075,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA075,4,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA075,4,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA075,4,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,,EA075,NA,,,, +Ca15,,1930,EA075,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA075,4,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,,EA075,NA,,,, +Ca18,,1940,EA075,4,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,,EA075,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA075,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA075,NA,,,, +Ca21,,,EA075,NA,,,, +Ca22,,,EA075,NA,,,, +Ca23,,1950,EA075,4,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA075,NA,,,, +Ca25,,1950,EA075,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA075,NA,,,, +Ca27,,,EA075,NA,,,, +Ca28,,1950,EA075,4,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA075,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA075,1,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA075,4,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,,EA075,NA,,,, +Ca32,,1860,EA075,4,"Entry follows Pollera; Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA075,4,"But Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA075,NA,,,, +Ca35,,1930,EA075,9,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA075,9,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA075,4,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA075,4,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA075,1,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA075,1,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA075,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA075,4,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA075,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA075,NA,,,, +Ca5,,,EA075,NA,,,, +Ca6,,,EA075,NA,,,, +Ca7,Gondar district,1950,EA075,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA075,4,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,1890,EA075,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA075,1,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA075,4,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA075,NA,,,, +Cb12,,,EA075,NA,,,, +Cb13,,,EA075,NA,,,, +Cb14,,,EA075,NA,,,, +Cb15,with special reference to the Humr,1940,EA075,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,,EA075,NA,,,, +Cb17,Jebel Marra,1880,EA075,3,"Entry follows Felkin; Beaton reports 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA075,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA075,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA075,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA075,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA075,9,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,,EA075,NA,,,, +Cb23,,1930,EA075,4,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA075,9,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA075,1,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA075,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA075,4,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,,EA075,NA,,,, +Cb29,,,EA075,NA,,,, +Cb3,Bamba division,1940,EA075,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA075,1,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA075,1,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA075,1,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,,EA075,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA075,9,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA075,4,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA075,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA075,4,"Entry follows Rodd; Joubert reports 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA075,4,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,,EA075,NA,,,, +Cc13,,1920,EA075,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,,EA075,NA,,,, +Cc15,,,EA075,NA,,,, +Cc16,,,EA075,NA,,,, +Cc17,,1930,EA075,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA075,1,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA075,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA075,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA075,4,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA075,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,,EA075,NA,,,, +Cc5,,,EA075,NA,,,, +Cc6,,1910,EA075,9,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,,,EA075,NA,,,, +Cc8,,,EA075,NA,,,, +Cc9,Ahaggaren tribe,1920,EA075,4,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA075,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA075,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA075,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA075,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA075,1,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA075,1,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA075,1,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA075,1,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA075,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA075,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,,EA075,NA,,,, +Cd2,Town and environs of Silwa,1950,EA075,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA075,1,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,,EA075,NA,,,, +Cd3,Entirety: Moroccan,1920,EA075,1,"But theoretically 'inheritance by children, daughters receiving less' (EA074 code ""4"") with 'equal distribution' (EA075 code ""1"")",coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA075,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA075,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA075,4,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA075,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA075,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA075,1,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA075,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA075,NA,,,, +Ce3,City and environs of Rome,100,EA075,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA075,4,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA075,1,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA075,1,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA075,1,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA075,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA075,1,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,,,EA075,NA,,,, +Cf3,,1930,EA075,1,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA075,1,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA075,2,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA075,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA075,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA075,2,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA075,3,For tent or cottage and associated movables,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,,EA075,NA,,,, +Ch1,,,EA075,NA,,,, +Ch10,,,EA075,NA,,,, +Ch11,Viriatino Village,1955,EA075,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA075,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA075,1,But the youngest son receives the largest share,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA075,3,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA075,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA075,1,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,1930,EA075,3,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,,EA075,NA,,,, +Ch9,,1930,EA075,1,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA075,9,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA075,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA075,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA075,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA075,1,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA075,NA,,,, +Ci4,,1920,EA075,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA075,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA075,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,,EA075,NA,,,, +Ci8,,,EA075,NA,,,, +Ci9,,1910,EA075,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,,,EA075,NA,,,, +Cj10,with special reference to the village of ech-Chibayish,1950,EA075,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA075,9,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA075,4,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA075,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA075,1,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA075,1,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA075,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA075,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,,EA075,NA,,,, +Ea1,,1950,EA075,1,,bordiend; wilber1964,EthnographicAtlas_1967_p89, +Ea10,with special reference to the more nomadic groups,1950,EA075,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA075,NA,,,, +Ea12,,,EA075,NA,,,, +Ea13,Mohla Village,1950,EA075,1,"Despite legal change in 1948 to 'inheritance by children of either sex' (EA074 code ""5"") with 'equal distribution' (EA075 code ""1"")",callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA075,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA075,4,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA075,1,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA075,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA075,9,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA075,1,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA075,NA,,,, +Ea9,,,EA075,NA,,,, +Eb1,Great Horde,1910,EA075,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA075,1,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA075,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA075,1,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,,,EA075,NA,,,, +Eb6,,,EA075,NA,,,, +Eb7,,1930,EA075,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA075,NA,,,, +Ec1,Sakhalin Island,1920,EA075,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,,,EA075,NA,,,, +Ec11,,,EA075,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA075,4,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA075,9,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA075,NA,,,, +Ec5,,,EA075,NA,,,, +Ec6,Upper Kolyma River,1850,EA075,9,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,,,EA075,NA,,,, +Ec8,,1900,EA075,9,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA075,NA,,,, +Ed1,Kanghwa Island,1950,EA075,4,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA075,1,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA075,NA,,,, +Ed14,,,EA075,NA,,,, +Ed15a,,,EA075,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA075,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA075,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA075,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA075,3,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA075,3,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA075,4,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA075,1,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA075,4,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA075,1,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA075,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA075,3,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,,,EA075,NA,,,, +Ee3,Lingthem and vicinity,1930,EA075,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA075,2,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA075,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA075,1,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA075,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA075,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA075,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA075,NA,,,, +Ef11,Village and environs of Senapur,1945,EA075,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA075,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA075,NA,,,, +Ef4,,1920,EA075,1,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA075,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA075,1,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA075,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA075,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA075,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA075,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA075,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,with special reference to the Gommu Koya,1960,EA075,1,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,,,EA075,NA,,,, +Eg13,,,EA075,NA,,,, +Eg14,,,EA075,NA,,,, +Eg2,,,EA075,NA,,,, +Eg3,Hill Maria,1938,EA075,9,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA075,9,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA075,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,,,EA075,NA,,,, +Eg7,,,EA075,NA,,,, +Eg8,,1940,EA075,1,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,,EA075,NA,,,, +Eh1,,1870,EA075,9,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA075,NA,,,, +Eh2,,1900,EA075,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA075,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA075,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA075,9,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA075,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA075,4,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,,EA075,NA,,,, +Eh9,,1930,EA075,1,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA075,9,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA075,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA075,4,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,,EA075,NA,,,, +Ei13,,1910,EA075,1,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA075,1,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA075,NA,,,, +Ei16,,1910,EA075,1,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA075,NA,,,, +Ei18,,,EA075,NA,,,, +Ei19,,1940,EA075,3,"But 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"") in some localities",bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA075,1,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA075,NA,,,, +Ei3,Nondwin Village,1950,EA075,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA075,4,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA075,3,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA075,3,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA075,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA075,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,1880,EA075,4,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p93, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA075,9,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA075,NA,Matrilineal,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA075,3,Mainly from mother to youngest daughter,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,,EA075,NA,,,, +Ej13,,1940,EA075,4,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA075,9,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA075,NA,,,, +Ej16,Inas District,1958,EA075,2,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,,,EA075,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA075,9,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA075,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA075,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA075,NA,,,, +Ej7,,1950,EA075,4,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA075,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA075,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA075,3,"But Li reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"")",ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,,EA075,NA,,,, +Ia11,,,EA075,NA,,,, +Ia12,,1950,EA075,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,,,EA075,NA,,,, +Ia14,,1930,EA075,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA075,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA075,4,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA075,NA,,,, +Ia18,,,EA075,NA,,,, +Ia2,,1950,EA075,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA075,4,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA075,9,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA075,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA075,4,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA075,1,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA075,1,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,,,EA075,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA075,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA075,2,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA075,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA075,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA075,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA075,9,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA075,NA,Taro land is inherited from Mo to Da,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,,,EA075,NA,,,, +Ib9,,,EA075,NA,,,, +Ic1,,,EA075,NA,,,, +Ic10,Tobelo District,1910,EA075,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA075,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA075,NA,,,, +Ic13,,,EA075,NA,,,, +Ic2,,,EA075,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA075,9,"Inheritance by widows, then daughters",vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,,EA075,NA,,,, +Ic5,Bare'e subgroup,1910,EA075,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA075,1,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA075,1,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA075,4,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA075,4,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA075,9,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA075,9,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA075,9,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA075,NA,,,, +Id13,,1930,EA075,9,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA075,9,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA075,9,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,1900,EA075,9,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p97, +Id5,,1910,EA075,9,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p97, +Id6,with special reference to the Archer River group,1920,EA075,9,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p97, +Id7,,,EA075,NA,,,, +Id8,,1830,EA075,9,,roth1890,EthnographicAtlas_1967_p97, +Id9,,1910,EA075,9,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p97, +Ie1,,,EA075,NA,,,, +Ie10,with special reference to the Western Motu,1950,EA075,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA075,1,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA075,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA075,NA,,,, +Ie14,,,EA075,NA,,,, +Ie15,,,EA075,NA,,,, +Ie16,,,EA075,NA,,,, +Ie17,,1940,EA075,4,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA075,1,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,,,EA075,NA,,,, +Ie2,,1920,EA075,1,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA075,1,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA075,1,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA075,1,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA075,1,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA075,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA075,1,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA075,1,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA075,9,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,,EA075,NA,,,, +Ie29,principally Tsogari,1930,EA075,4,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA075,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA075,NA,,,, +Ie31,,1950,EA075,4,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,,EA075,NA,,,, +Ie33,,,EA075,NA,,,, +Ie34,,,EA075,NA,,,, +Ie35,,,EA075,NA,,,, +Ie36,,,EA075,NA,,,, +Ie37,,,EA075,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA075,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA075,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA075,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA075,9,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA075,NA,,,, +Ie7,with special reference to the Mae group,1950,EA075,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA075,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,,EA075,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA075,4,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA075,NA,,,, +If11,,,EA075,NA,,,, +If12,,,EA075,NA,,,, +If13,,,EA075,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA075,1,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,,EA075,NA,,,, +If16,,1960,EA075,NA,Predominantly matrilineal,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,,,EA075,NA,,,, +If2,Romonum Island,1940,EA075,1,But provisional land rights revert to the matrilineage of the deceased,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA075,2,"Mixed (A man may transmit certain land rights to a son, but others remain within his matrilineage)",spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA075,NA,Matrilineal but without information of the preferred heirs,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA075,1,"But Bascom reports 'patrilineal by son(s)' (EA074 code ""7"") and 'primogeniture' (EA075 code ""4"") in most districts",bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA075,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA075,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA075,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA075,NA,Basically matrilineal,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA075,NA,Matrilineal within lineage,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA075,NA,,,, +Ig11,,,EA075,NA,,,, +Ig12,,,EA075,NA,,,, +Ig13,,,EA075,NA,,,, +Ig14,,1900,EA075,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA075,NA,,,, +Ig16,,,EA075,NA,,,, +Ig17,,,EA075,NA,,,, +Ig18,,,EA075,NA,,,, +Ig19,,,EA075,NA,,,, +Ig2,Kiriwina Island,1910,EA075,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA075,9,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA075,NA,,,, +Ig3,,1930,EA075,NA,"A man may leave his property to his sons, his sister's sons, or both",blackwood1935,EthnographicAtlas_1967_p101, +Ig4,,,EA075,NA,,,, +Ig5,,1920,EA075,NA,"Matrilineal, but the exact distribution is not reported",fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA075,1,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,,EA075,NA,,,, +Ig8,,,EA075,NA,,,, +Ig9,Peri Village,1920,EA075,9,Most of a deceased man's property is plundered by the agnatic kinsmen of his MoBr,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA075,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA075,1,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA075,NA,,,, +Ih12,,,EA075,NA,,,, +Ih13,,,EA075,NA,,,, +Ih14,,,EA075,NA,,,, +Ih2,,,EA075,NA,,,, +Ih3,Bunlap Village,1950,EA075,9,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,,,EA075,NA,,,, +Ih5,,,EA075,NA,,,, +Ih6,,,EA075,NA,,,, +Ih7,,1910,EA075,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA075,NA,Mixed but mainly patrilineal,quain1949,EthnographicAtlas_1967_p101, +Ih9,,,EA075,NA,,,, +Ii1,,,EA075,NA,,,, +Ii10,,1950,EA075,1,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,,,EA075,NA,,,, +Ii13,,1830,EA075,NA,Land is collectively owned by ramages,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,,EA075,NA,,,, +Ii2,Ravenga District,1930,EA075,1,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,,EA075,NA,,,, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA075,4,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA075,NA,"Taro plots descend from Mo to Da, but other land is owned collectively by ramages",hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA075,NA,Land is collectively owned by ramages,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA075,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA075,NA,"Land is owned by ramages; inheritance, though basically bilateral, is predominantly patrilineal",burrows1936,EthnographicAtlas_1967_p101, +Ii9,,,EA075,NA,,,, +Ij1,,,EA075,NA,,,, +Ij10,,1900,EA075,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA075,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA075,4,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,,EA075,NA,,,, +Ij5,,1900,EA075,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA075,4,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA075,4,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,,EA075,NA,,,, +Ij9,,,EA075,NA,,,, +Na1,,1930,EA075,9,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA075,4,"Houses were owned by females and inherited by the eldest child who, if a male, gave the house to his wife",birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,,EA075,NA,,,, +Na12,,1950,EA075,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA075,9,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA075,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,,EA075,NA,,,, +Na16,,1860,EA075,9,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA075,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA075,9,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA075,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA075,4,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA075,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA075,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA075,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA075,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,,,EA075,NA,,,, +Na26,with special reference to the Iliamna,1870,EA075,9,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,,EA075,NA,,,, +Na28,,1880,EA075,9,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA075,9,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA075,9,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA075,9,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,,,EA075,NA,,,, +Na32,Lake St. John & Mistassini Band,1880,EA075,4,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,,,EA075,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA075,4,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,,EA075,NA,,,, +Na36,,,EA075,NA,,,, +Na37,,1880,EA075,2,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,,,EA075,NA,,,, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA075,9,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA075,NA,Trap lines are inherited by DaHu,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,,EA075,NA,,,, +Na41,,,EA075,NA,,,, +Na42,,,EA075,NA,,,, +Na43,,,EA075,NA,,,, +Na44,,,EA075,NA,,,, +Na45,,,EA075,NA,,,, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA075,9,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA075,9,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA075,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA075,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA075,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA075,4,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,,EA075,NA,,,, +Nb11,,,EA075,NA,,,, +Nb12,,,EA075,NA,,,, +Nb13,,,EA075,NA,,,, +Nb14,,,EA075,NA,,,, +Nb15,,,EA075,NA,,,, +Nb16,,1860,EA075,4,With reference to inheritance of dwellings,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,,EA075,NA,,,, +Nb18,,,EA075,NA,,,, +Nb19,,,EA075,NA,,,, +Nb2,Twana Tribe,1850,EA075,9,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,,EA075,NA,,,, +Nb21,,1860,EA075,9,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA075,NA,Matrilineal inheritance with collective ownership,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,,EA075,NA,,,, +Nb24,,1860,EA075,9,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA075,9,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,,EA075,NA,,,, +Nb27,with special reference to the Tait,1880,EA075,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,,EA075,NA,,,, +Nb29,,,EA075,NA,,,, +Nb3,,,EA075,NA,,,, +Nb30,,,EA075,NA,,,, +Nb31,,,EA075,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA075,4,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA075,9,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,,EA075,NA,,,, +Nb35,,,EA075,NA,,,, +Nb36,,,EA075,NA,,,, +Nb37,,1860,EA075,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,,,EA075,NA,,,, +Nb39,,1860,EA075,9,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,,EA075,NA,,,, +Nb5,,,EA075,NA,,,, +Nb6,,1870,EA075,9,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA075,4,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA075,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA075,9,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,,EA075,NA,,,, +Nc10,,,EA075,NA,,,, +Nc11,,1860,EA075,1,"Entry pertains to northern Yana; 'no inheritance of real property' (code ""9"") for central Yana",gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA075,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,,,EA075,NA,,,, +Nc14,with special reference to the northeastern Wintu,1860,EA075,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA075,9,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,,EA075,NA,,,, +Nc17,with special reference to those of Kalekau,1860,EA075,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA075,9,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA075,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA075,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA075,9,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA075,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,,,EA075,NA,,,, +Nc23,,1870,EA075,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA075,9,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,,EA075,NA,,,, +Nc26,,1770,EA075,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA075,NA,,,, +Nc28,,,EA075,NA,,,, +Nc29,,,EA075,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA075,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,,EA075,NA,,,, +Nc31,,,EA075,NA,,,, +Nc32,,,EA075,NA,,,, +Nc33,,,EA075,NA,,,, +Nc34,,,EA075,NA,,,, +Nc4,,1860,EA075,4,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA075,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA075,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA075,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA075,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA075,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA075,9,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,,EA075,NA,,,, +Nd11,with special reference to the southeastern Shuswap,1850,EA075,9,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA075,9,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,,EA075,NA,,,, +Nd14,,1860,EA075,9,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA075,9,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,,EA075,NA,,,, +Nd17,,,EA075,NA,,,, +Nd18,,,EA075,NA,,,, +Nd19,,,EA075,NA,,,, +Nd2,,1860,EA075,9,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA075,9,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,,EA075,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA075,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,,EA075,NA,,,, +Nd24,,1870,EA075,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,,EA075,NA,,,, +Nd26,,1870,EA075,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA075,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,,EA075,NA,,,, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA075,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA075,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA075,9,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,,EA075,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA075,9,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA075,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA075,NA,"Eagle nests were individually owned, but the mode of inheritance is not reported",steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,,EA075,NA,,,, +Nd36,,,EA075,NA,,,, +Nd37,,,EA075,NA,,,, +Nd38,,,EA075,NA,,,, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA075,NA,"""Farmed plots were inherited by a man's wife or children""",steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA075,9,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA075,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,,EA075,NA,,,, +Nd42,,,EA075,NA,,,, +Nd43,,1860,EA075,9,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,,EA075,NA,,,, +Nd45,,1860,EA075,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA075,9,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA075,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA075,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA075,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA075,9,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA075,NA,"Eagle nests were owned by men and inherited ""by a son""",kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,,EA075,NA,,,, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA075,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA075,1,Springs and eagle nests were owned by males and inherited by the oldest son or nearest male relative,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,,,EA075,NA,,,, +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA075,1,Pine nut tracts were inherited by a man's sons,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA075,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA075,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA075,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA075,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA075,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA075,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA075,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA075,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA075,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA075,9,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,,EA075,NA,,,, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA075,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA075,9,"But eagle nests were ""transmitted from father to son""",gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA075,9,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA075,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA075,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA075,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA075,NA,Possibly from Mo to Da,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA075,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA075,9,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA075,9,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA075,9,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA075,NA,Possibly from Mo to Da,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA075,9,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA075,9,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA075,9,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA075,9,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA075,9,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,,EA075,NA,,,, +Ne21,,,EA075,NA,,,, +Ne3,Comanche Tribe,1870,EA075,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA075,9,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA075,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA075,NA,Land was owned by women and inherited from Mo to Da,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA075,9,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA075,9,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA075,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,,EA075,NA,,,, +Nf11,,,EA075,NA,,,, +Nf12,,,EA075,NA,,,, +Nf13,with special reference to the Kiskopotha band,1820,EA075,9,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA075,NA,,,, +Nf15,,,EA075,NA,,,, +Nf2,,,EA075,NA,,,, +Nf3,Omaha Tribe,1850,EA075,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA075,NA,,,, +Nf5,,,EA075,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA075,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,,,EA075,NA,,,, +Nf8,,,EA075,NA,,,, +Nf9,,,EA075,NA,,,, +Ng1,,,EA075,NA,,,, +Ng10,,,EA075,NA,,,, +Ng11,,,EA075,NA,,,, +Ng12,,,EA075,NA,,,, +Ng13,,,EA075,NA,,,, +Ng14,,,EA075,NA,,,, +Ng15,,,EA075,NA,,,, +Ng2,,,EA075,NA,,,, +Ng3,,,EA075,NA,,,, +Ng4,,1900,EA075,1,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,,EA075,NA,,,, +Ng6,with special reference to the Munsee,1700,EA075,NA,Land was probably owned collectively by matrilineages,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,,,EA075,NA,,,, +Ng8,,1560,EA075,1,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,1920,EA075,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA075,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA075,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA075,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA075,1,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA075,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA075,NA,Inheritance is mixed,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,,EA075,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA075,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA075,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA075,NA,Matrilineal inheritance within the lineage,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA075,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,,EA075,NA,,,, +Nh20,,1860,EA075,9,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,,,EA075,NA,,,, +Nh22,,1860,EA075,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA075,9,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA075,9,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA075,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA075,NA,,,, +Nh27,,,EA075,NA,,,, +Nh3,,,EA075,NA,,,, +Nh4,Pueblo,1910,EA075,NA,A man's land is inherited by his daughters,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA075,1,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,,EA075,NA,,,, +Nh7,,,EA075,NA,,,, +Nh8,,,EA075,NA,,,, +Nh9,,,EA075,NA,,,, +Ni1,,1930,EA075,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA075,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA075,4,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA075,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA075,9,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA075,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,,EA075,NA,,,, +Ni8,,,EA075,NA,,,, +Ni9,,,EA075,NA,,,, +Nj1,Ojitlan,1940,EA075,3,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA075,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA075,NA,,,, +Nj12,,,EA075,NA,,,, +Nj13,,,EA075,NA,,,, +Nj14,,,EA075,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA075,4,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA075,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,,EA075,NA,,,, +Nj5,,,EA075,NA,,,, +Nj6,,,EA075,NA,,,, +Nj7,with special reference to Ayutla,1930,EA075,1,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA075,NA,,,, +Nj9,,1960,EA075,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,,,EA075,NA,,,, +Sa10,,,EA075,NA,,,, +Sa11,,,EA075,NA,,,, +Sa12,,,EA075,NA,,,, +Sa13,Town of Chichicastenango,1930,EA075,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA075,NA,,,, +Sa15,,,EA075,NA,,,, +Sa16,,,EA075,NA,,,, +Sa17,,,EA075,NA,,,, +Sa2,,,EA075,NA,,,, +Sa3,,1930,EA075,1,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA075,4,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA075,9,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA075,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,,EA075,NA,,,, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA075,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,,,EA075,NA,,,, +Sb1,Dominica Island,1650,EA075,NA,Probably matrilineal,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA075,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA075,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA075,9,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA075,NA,,,, +Sb6,,,EA075,NA,,,, +Sb7,,,EA075,NA,,,, +Sb8,,,EA075,NA,,,, +Sb9,,1930,EA075,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA075,9,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,,EA075,NA,,,, +Sc11,,,EA075,NA,,,, +Sc12,,,EA075,NA,,,, +Sc13,,,EA075,NA,,,, +Sc14,,,EA075,NA,,,, +Sc15,,,EA075,NA,,,, +Sc16,,,EA075,NA,,,, +Sc17,,,EA075,NA,,,, +Sc18,,1960,EA075,9,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA075,1,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,,,EA075,NA,,,, +Sc4,with special reference to the non-agricultural groups,1950,EA075,9,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,,EA075,NA,,,, +Sc6,,,EA075,NA,,,, +Sc7,,,EA075,NA,,,, +Sc8,,,EA075,NA,,,, +Sc9,,,EA075,NA,,,, +Sd1,Cabrura village,1950,EA075,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA075,NA,,,, +Sd3,,,EA075,NA,,,, +Sd4,,,EA075,NA,,,, +Sd5,,,EA075,NA,,,, +Sd6,,,EA075,NA,,,, +Sd7,,,EA075,NA,,,, +Sd8,,,EA075,NA,,,, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA075,9,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA075,9,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA075,NA,,,, +Se11,,,EA075,NA,,,, +Se12,,,EA075,NA,,,, +Se2,,1940,EA075,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA075,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA075,9,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA075,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,,EA075,NA,,,, +Se7,,,EA075,NA,,,, +Se8,Upper Inuya River,1950,EA075,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA075,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA075,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA075,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,,,EA075,NA,,,, +Sf4,,,EA075,NA,,,, +Sf5,,1900,EA075,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA075,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,,EA075,NA,,,, +Sf8,,,EA075,NA,,,, +Sf9,,,EA075,NA,,,, +Sg1,Eastern and central,1870,EA075,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA075,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA075,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA075,9,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA075,9,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA075,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,,EA075,NA,,,, +Sh3,Those in contact with mission,1800,EA075,9,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,,EA075,NA,,,, +Sh5,,1910,EA075,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,,EA075,NA,,,, +Sh7,,1900,EA075,1,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA075,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA075,9,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,,,EA075,NA,,,, +Si10,,,EA075,NA,,,, +Si2,Village of Vanivani,1930,EA075,9,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,,,EA075,NA,,,, +Si4,Cocozu Group,1940,EA075,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA075,9,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,,EA075,NA,,,, +Si7,,,EA075,NA,,,, +Si8,,,EA075,NA,,,, +Si9,,,EA075,NA,,,, +Sj1,,,EA075,NA,,,, +Sj10,,,EA075,NA,,,, +Sj11,Village of Sao Domingo,1958,EA075,9,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,,EA075,NA,,,, +Sj3,Duque de Caxias Reservation,1910,EA075,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA075,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA075,9,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA075,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,,EA075,NA,,,, +Sj8,,,EA075,NA,,,, +Sj9,,,EA075,NA,,,, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA075,3,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA075,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA075,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA075,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA075,4,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA075,3,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA075,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA075,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA075,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA075,4,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA075,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA075,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA075,9,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA075,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA075,2,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA075,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA075,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA075,9,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA075,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA075,9,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA075,9,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA075,9,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA075,9,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA075,9,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA075,9,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA075,9,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA075,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA076,1,"Murdock (1963a) coded this as 'inheritance by patrilineal heirs who take precedence over sons' (EA076 code ""7""), commenting: ""Entry follows Wilhelm; older sources report that most of a man's property was buried with him but that a brother inherited his bow and arrows."" In the EA the column is coded O, 'no inheritance of movable property' (EA076 code ""1"")",biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA076,5,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA076,7,"For livestock; 'inheritance by children of either sex' (EA076 code ""5"") and 'equal distribution' (EA077 code ""1"") for other moveable property",hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA076,7,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA076,7,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA076,7,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA076,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,,EA076,NA,,,, +Aa9,Hatsa Kindiga Tribe,1910,EA076,6,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA076,3,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA076,7,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA076,7,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA076,7,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA076,7,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA076,6,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,1860,EA076,7,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,,EA076,NA,,,, +Ab17,,1920,EA076,7,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA076,7,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA076,3,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA076,7,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA076,2,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA076,6,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA076,NA,,,, +Ab22,,,EA076,NA,,,, +Ab3,Ruling Luyana,1890,EA076,7,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA076,7,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA076,2,Precise distribution unreported,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA076,7,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA076,2,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA076,7,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA076,7,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA076,3,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA076,3,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA076,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA076,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA076,2,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA076,3,"Entry follows Mertens and Van Wing; Ihle and Van de Velde report 'matrilineal by sister's son(s)' (EA076 code ""2"") and 'primogeniture' (EA077 code ""4"")",brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA076,2,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA076,NA,Inheritance is matrilineal,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA076,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA076,3,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,1880,EA076,3,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA076,2,"Entry follows Sousberge; Toirday and Joyce report 'matrilineal by heirs' (EA076 code ""3"") and 'primogeniture' (EA077 code ""4"")",sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,1920,EA076,3,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA076,2,"Entries follows Decker; Torday reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA076,3,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA076,3,Presumably matrilineal,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA076,7,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA076,3,All property escheats to the head of the matrilineage,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,,EA076,NA,,,, +Ac27,,1930,EA076,2,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA076,3,"Alternatively 'patrilineal by heirs' (EA076 code ""6"") and 'primogeniture' (EA077 code ""4"")",baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,1930,EA076,3,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA076,3,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA076,3,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA076,3,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA076,3,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA076,3,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA076,3,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,1900,EA076,3,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA076,7,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA076,3,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA076,3,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA076,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA076,3,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA076,3,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA076,NA,Matrilineal,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA076,2,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA076,NA,,,, +Ac5,,1920,EA076,3,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA076,3,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,1920,EA076,3,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA076,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA076,7,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA076,5,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA076,7,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA076,7,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA076,7,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA076,7,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA076,5,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA076,6,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA076,6,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA076,6,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA076,3,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA076,NA,"Matrilineal, but sources conflict as to preferred heirs",fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA076,7,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA076,7,But only by sons of wives obtained by a bride-price,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA076,NA,Matrilineal,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA076,NA,"Patrilineal, but matrilineal if no bride-prices was paid for mother",abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA076,7,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA076,7,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA076,3,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA076,7,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA076,2,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA076,2,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA076,4,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA076,7,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA076,3,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,1910,EA076,2,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA076,7,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA076,7,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA076,7,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA076,7,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA076,NA,"By brothers according one source, by eldest sons of each wife according to another",baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA076,7,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA076,6,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA076,7,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA076,7,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,1950,EA076,7,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA076,7,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA076,7,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,,EA076,NA,,,, +Ad44,,,EA076,NA,,,, +Ad45,,1920,EA076,7,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA076,7,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA076,7,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA076,NA,,,, +Ad49,,1950,EA076,7,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA076,7,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA076,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,,EA076,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA076,6,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA076,7,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA076,4,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA076,7,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA076,7,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA076,7,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,,EA076,NA,,,, +Ae12,,1940,EA076,7,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA076,NA,Patrilineal,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA076,7,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA076,7,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA076,6,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA076,6,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA076,7,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA076,NA,,,, +Ae2,,,EA076,NA,,,, +Ae20,,1940,EA076,6,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA076,7,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA076,7,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA076,NA,Mixed patrilineal and matrilineal,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA076,6,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA076,7,"Entry follows Torday and Joyce; Heusch reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA076,6,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,,,EA076,NA,,,, +Ae28,,1900,EA076,7,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA076,6,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA076,7,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA076,5,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,,EA076,NA,,,, +Ae32,,1920,EA076,7,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA076,6,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA076,NA,Inheritance is patrilineal,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA076,6,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA076,NA,Inheritance is patrilineal,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA076,6,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA076,3,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA076,1,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA076,6,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA076,7,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA076,6,"Patrilineal, by brothers and sons",andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA076,7,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA076,7,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA076,3,Entry follows Gil-Delgado; Tessmann reports patrilineal inheritance with matrilineal traces,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA076,7,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA076,3,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA076,7,"But the source, Oertzen, elsewhere mentions inheritance by sisters' sons",oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,,EA076,NA,,,, +Ae49,,1900,EA076,7,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA076,7,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA076,7,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA076,7,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA076,7,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA076,7,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA076,2,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA076,7,Patrilineal,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,,EA076,NA,,,, +Ae57,,1930,EA076,6,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,,EA076,NA,,,, +Ae59,,,EA076,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA076,6,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA076,7,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA076,7,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,,EA076,NA,,,, +Af1,City and environs of Abomey,1890,EA076,7,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA076,7,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA076,6,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA076,3,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA076,6,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA076,NA,"Formerly 'matrilineal by a sister's son(s)' (EA074 code ""2"")",hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA076,7,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA076,6,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA076,NA,,,, +Af18,,,EA076,NA,,,, +Af19,,1950,EA076,5,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA076,7,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA076,7,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,,,EA076,NA,,,, +Af22,,1940,EA076,7,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA076,NA,Mixed but with a matrilineal emphasis,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA076,7,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,,EA076,NA,,,, +Af26,with special reference to the Etsako,1900,EA076,NA,Patrilineal or matrilineal depending on mode of marriage,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA076,6,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA076,NA,Patrilineal with local variations regarding participation of brothers and sons,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA076,7,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA076,3,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA076,6,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA076,7,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA076,6,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA076,6,But Pe for property acquired rather than inherited by deceased,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA076,7,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA076,NA,,,, +Af36,with special reference to the Glidyi,1900,EA076,3,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA076,6,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA076,3,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA076,2,"But Kobben, as opposed to the earlier sources, reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA076,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA076,3,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA076,3,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA076,3,But sons inherit some property,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA076,6,"But Daniell reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,1900,EA076,3,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA076,3,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA076,6,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA076,7,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA076,NA,,,, +Af49,,1940,EA076,7,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA076,6,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA076,6,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA076,7,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA076,6,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,1950,EA076,6,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA076,7,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,,EA076,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA076,7,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA076,7,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA076,6,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA076,6,But Pe for property acquired rather than inherited by deceased,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA076,6,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA076,4,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA076,3,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA076,6,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA076,6,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA076,2,"For livestock and money; 'inheritance by children of either sex' (EA076 code ""5"") and 'equal distribution' (EA077 code ""1"") for other moveable property",charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA076,6,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA076,7,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,,EA076,NA,,,, +Ag15,,1930,EA076,6,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA076,7,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,,EA076,NA,,,, +Ag18,,1930,EA076,3,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA076,6,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA076,6,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA076,6,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA076,3,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA076,7,But matrilineal until recently,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA076,7,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA076,7,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA076,4,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA076,7,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA076,4,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,,EA076,NA,,,, +Ag29,,1910,EA076,7,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA076,6,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA076,6,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA076,6,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA076,6,"Entry follows Vendeix; Delafosse reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA076,2,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA076,3,The sources are in some conflict on rules of inheritance,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA076,3,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA076,NA,,,, +Ag37,,1910,EA076,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA076,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA076,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA076,6,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for property acquired rather than inherited by deceased",fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA076,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA076,NA,Brothers and sons share in inheritance,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA076,6,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA076,3,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA076,NA,,,, +Ag45,,,EA076,NA,,,, +Ag46,,,EA076,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA076,7,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA076,7,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA076,6,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA076,3,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA076,6,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA076,6,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA076,6,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA076,7,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA076,7,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA076,7,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA076,4,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA076,3,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA076,6,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA076,7,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA076,7,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA076,6,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,1920,EA076,7,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA076,7,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA076,6,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA076,6,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA076,7,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA076,7,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA076,7,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA076,7,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA076,7,"Matrilineal by a sister's son(s)' (EA076 code ""2"") or 'patrilineal by son(s)' (EA076 code ""7""), both with 'equal distribution' (EA077 code ""1""), depending on residence",meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA076,7,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA076,NA,,,, +Ah22,,1900,EA076,7,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA076,2,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA076,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,,EA076,NA,,,, +Ah26,,1920,EA076,2,"Entry follows Meek; another source reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA076,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA076,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA076,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA076,7,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA076,3,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA076,6,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA076,NA,Inheritance is mixed but more matrilineal than patrilineal,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA076,6,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA076,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA076,7,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA076,7,"Formerly 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA076,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA076,6,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA076,7,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA076,7,"But 'matrilineal by a sister's son(s)' (EA076 code ""2"") with 'equal distribution' (EA077 code ""1"") if deceased was married by a token bride-price rather than by an exchange of sisters",meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA076,7,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA076,NA,"Matrilineal but not specified whether 'matrilineal by a sister's son(s)' (EA076 code ""2"") or 'matrilineal by heirs who take precedence over sister's son(s)' (EA076 code ""3"")",dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA076,7,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA076,6,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA076,7,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA076,6,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA076,7,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA076,7,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,,EA076,NA,,,, +Ai13,,1920,EA076,7,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,,EA076,NA,,,, +Ai15,,1900,EA076,7,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA076,7,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,,EA076,NA,,,, +Ai18,,,EA076,NA,,,, +Ai19,,,EA076,NA,,,, +Ai2,,1940,EA076,2,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for tools and weapons as opposed to livestock",nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA076,7,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,,EA076,NA,,,, +Ai22,,1890,EA076,6,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA076,7,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA076,7,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA076,NA,,,, +Ai26,,1920,EA076,7,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA076,NA,,,, +Ai28,,1910,EA076,7,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA076,7,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA076,6,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA076,7,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,,EA076,NA,,,, +Ai32,,,EA076,NA,,,, +Ai33,,1940,EA076,7,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,,EA076,NA,,,, +Ai35,,,EA076,NA,,,, +Ai36,,1920,EA076,6,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for property acquired rather than inherited by deceased",bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA076,7,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA076,NA,"Mixed 'matrilineal by a sister's son(s)' (EA076 code ""2"") and 'patrilineal by son(s)' (EA076 code ""7""), both with 'equal distribution' (EA077 code ""1"")",nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA076,NA,Mixed matrilineal and patrilineal,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA076,NA,,,, +Ai40,,1940,EA076,6,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA076,7,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA076,6,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA076,7,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,,EA076,NA,,,, +Ai45,,1930,EA076,7,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,,EA076,NA,,,, +Ai47,Northern division,1939,EA076,6,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA076,NA,,,, +Ai6,Shilluk Kingdom,1900,EA076,7,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA076,7,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA076,7,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA076,7,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA076,7,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA076,7,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA076,7,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,,EA076,NA,,,, +Aj13,,1930,EA076,7,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA076,NA,,,, +Aj15,,1900,EA076,7,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,,,EA076,NA,,,, +Aj17,,1890,EA076,7,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA076,7,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA076,7,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA076,7,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,,EA076,NA,,,, +Aj21,,1930,EA076,7,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,1930,EA076,7,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA076,7,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA076,7,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA076,7,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA076,6,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,,EA076,NA,,,, +Aj28,,1940,EA076,7,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA076,7,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA076,7,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA076,NA,,,, +Aj31,,,EA076,NA,,,, +Aj4,,1920,EA076,7,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA076,7,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA076,7,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA076,7,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA076,7,"Entry follows Seligman; Beaton reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA076,7,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA076,7,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA076,4,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA076,7,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA076,7,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA076,7,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,,EA076,NA,,,, +Ca15,,1930,EA076,7,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA076,7,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,,EA076,NA,,,, +Ca18,,1940,EA076,6,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,,EA076,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA076,4,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA076,NA,,,, +Ca21,,,EA076,NA,,,, +Ca22,,,EA076,NA,,,, +Ca23,,1950,EA076,7,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA076,NA,,,, +Ca25,,1950,EA076,7,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA076,NA,,,, +Ca27,,,EA076,NA,,,, +Ca28,,1950,EA076,7,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA076,7,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA076,7,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA076,7,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,,EA076,NA,,,, +Ca32,,1860,EA076,2,"Entry follows Pollera; Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA076,2,"But Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA076,NA,,,, +Ca35,,1930,EA076,NA,"Patrilineal, though formerly matrilineal",clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA076,4,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA076,7,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA076,7,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA076,7,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA076,7,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA076,7,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA076,7,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA076,6,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA076,NA,,,, +Ca5,,1930,EA076,7,But Murray reports matrilineal inheritance,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,,EA076,NA,,,, +Ca7,Gondar district,1950,EA076,7,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA076,7,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,1890,EA076,7,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA076,7,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA076,7,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA076,2,"In transition to 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"") in accordance with Islamic practice",lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,,EA076,NA,,,, +Cb13,,,EA076,NA,,,, +Cb14,,1910,EA076,4,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA076,4,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA076,7,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA076,7,"Entry follows Felkin; Beaton reports 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"")",barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA076,4,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA076,4,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA076,4,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA076,4,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA076,7,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA076,4,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA076,4,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA076,7,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA076,5,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA076,4,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA076,3,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,,EA076,NA,,,, +Cb29,,1920,EA076,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA076,4,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA076,4,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA076,7,"In Murdock (1963a) he codes this as 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") with the comment ""But Bouillie, contrary to all other sources, reports 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"")."" In the EA the code is Pe, 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"").",bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA076,4,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,,EA076,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA076,7,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA076,4,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA076,4,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA076,4,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA076,5,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA076,4,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA076,2,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA076,4,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA076,NA,,,, +Cc16,,,EA076,NA,,,, +Cc17,,1930,EA076,4,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA076,4,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA076,4,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA076,4,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA076,4,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA076,4,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,,EA076,NA,,,, +Cc5,,1910,EA076,7,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA076,4,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA076,4,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA076,NA,,,, +Cc9,Ahaggaren tribe,1920,EA076,4,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA076,4,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA076,7,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA076,2,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA076,4,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA076,7,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA076,4,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA076,4,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA076,4,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA076,4,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA076,4,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,,EA076,NA,,,, +Cd2,Town and environs of Silwa,1950,EA076,4,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA076,4,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,,EA076,NA,,,, +Cd3,Entirety: Moroccan,1920,EA076,7,"But theoretically 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"")",coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA076,4,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA076,4,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA076,5,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA076,7,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA076,7,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA076,4,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA076,7,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA076,NA,,,, +Ce3,City and environs of Rome,100,EA076,5,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA076,5,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA076,5,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA076,5,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA076,5,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA076,4,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA076,5,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,,,EA076,NA,,,, +Cf3,,1930,EA076,5,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA076,5,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,,EA076,NA,,,, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA076,5,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA076,7,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA076,7,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA076,5,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,,EA076,NA,,,, +Ch1,,,EA076,NA,,,, +Ch10,,,EA076,NA,,,, +Ch11,,,EA076,NA,,,, +Ch2,,1890,EA076,7,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA076,7,But the youngest son receives the largest share,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA076,5,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA076,4,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA076,7,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,1930,EA076,7,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,,EA076,NA,,,, +Ch9,,1930,EA076,7,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA076,7,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA076,4,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,,EA076,NA,,,, +Ci12,Abkhaz Tribe,1880,EA076,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA076,7,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA076,NA,,,, +Ci4,,1920,EA076,4,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA076,4,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA076,7,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,,EA076,NA,,,, +Ci8,,,EA076,NA,,,, +Ci9,,1910,EA076,7,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,,,EA076,NA,,,, +Cj10,,,EA076,NA,,,, +Cj2,Unspecified,1920,EA076,7,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA076,7,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA076,7,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA076,4,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA076,4,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA076,7,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA076,4,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,,EA076,NA,,,, +Ea1,,,EA076,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA076,4,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA076,4,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA076,7,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA076,7,"Despite legal change in 1948 to 'inheritance by children of either sex' (EA076 code ""5"") with 'equal distribution' (EA077 code ""1"")",callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA076,4,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA076,7,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA076,4,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA076,7,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA076,7,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA076,4,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA076,NA,,,, +Ea9,,,EA076,NA,,,, +Eb1,Great Horde,1910,EA076,7,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA076,7,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA076,7,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA076,7,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,,,EA076,NA,,,, +Eb6,,,EA076,NA,,,, +Eb7,,,EA076,NA,,,, +Eb8,,,EA076,NA,,,, +Ec1,Sakhalin Island,1920,EA076,7,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA076,4,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,,EA076,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA076,7,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA076,7,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA076,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA076,7,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA076,7,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA076,7,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA076,7,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA076,NA,,,, +Ed1,Kanghwa Island,1950,EA076,7,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA076,7,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA076,NA,,,, +Ed14,,,EA076,NA,,,, +Ed15a,,,EA076,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA076,7,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA076,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA076,7,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA076,7,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA076,7,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA076,7,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA076,7,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA076,7,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA076,7,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA076,7,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA076,7,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,,,EA076,NA,,,, +Ee3,Lingthem and vicinity,1930,EA076,7,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA076,7,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA076,7,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA076,7,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA076,NA,,,, +Ee8,,,EA076,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA076,7,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA076,NA,,,, +Ef11,Village and environs of Senapur,1945,EA076,7,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA076,7,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA076,NA,,,, +Ef4,,1920,EA076,7,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA076,7,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA076,7,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA076,7,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA076,7,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA076,7,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA076,7,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA076,7,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,with special reference to the Gommu Koya,1960,EA076,7,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,,,EA076,NA,,,, +Eg13,,,EA076,NA,,,, +Eg14,,,EA076,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA076,7,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA076,1,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA076,7,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA076,7,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,,,EA076,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA076,7,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA076,7,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA076,7,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,,EA076,NA,,,, +Eh10,,,EA076,NA,,,, +Eh2,,1900,EA076,5,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA076,5,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA076,7,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA076,5,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA076,5,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA076,7,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,,EA076,NA,,,, +Eh9,,1930,EA076,5,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA076,2,The heir is a classificatory SiSo who is DaHu,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA076,7,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA076,7,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA076,7,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA076,7,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA076,6,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA076,NA,,,, +Ei16,,1910,EA076,7,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA076,NA,,,, +Ei18,,,EA076,NA,,,, +Ei19,,1940,EA076,7,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") in some localities",bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA076,7,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA076,NA,,,, +Ei3,Nondwin Village,1950,EA076,5,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA076,7,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA076,7,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA076,7,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA076,5,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA076,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,1880,EA076,7,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p93, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA076,7,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,,,EA076,NA,,,, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA076,3,Mainly from mother to youngest daughter,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,,EA076,NA,,,, +Ej13,,,EA076,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA076,1,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA076,NA,,,, +Ej16,Inas District,1958,EA076,3,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA076,5,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA076,5,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA076,5,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA076,5,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA076,NA,,,, +Ej7,,1950,EA076,7,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA076,5,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA076,5,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA076,7,"But Li reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA076,7,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,,EA076,NA,,,, +Ia12,,1950,EA076,5,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,,,EA076,NA,,,, +Ia14,,1930,EA076,7,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA076,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA076,5,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA076,NA,,,, +Ia18,,,EA076,NA,,,, +Ia2,,1950,EA076,5,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA076,5,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA076,5,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA076,5,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA076,5,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA076,5,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA076,5,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA076,2,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA076,5,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA076,5,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA076,7,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA076,7,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA076,5,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA076,3,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,,,EA076,NA,,,, +Ib8,with special reference to the Ridan group,1900,EA076,5,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA076,NA,,,, +Ic1,,,EA076,NA,,,, +Ic10,Tobelo District,1910,EA076,4,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA076,7,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA076,NA,,,, +Ic13,,,EA076,NA,,,, +Ic2,,,EA076,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA076,NA,"Inheritance by widows, then daughters",vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,,EA076,NA,,,, +Ic5,Bare'e subgroup,1910,EA076,5,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA076,7,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA076,7,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA076,7,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA076,7,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA076,7,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA076,3,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,,EA076,NA,,,, +Id12,,1930,EA076,1,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,,EA076,NA,,,, +Id2,,,EA076,NA,,,, +Id3,,,EA076,NA,,,, +Id4,,,EA076,NA,,,, +Id5,,,EA076,NA,,,, +Id6,,,EA076,NA,,,, +Id7,,,EA076,NA,,,, +Id8,,,EA076,NA,,,, +Id9,,,EA076,NA,,,, +Ie1,,,EA076,NA,,,, +Ie10,with special reference to the Western Motu,1950,EA076,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA076,7,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA076,7,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA076,NA,,,, +Ie14,,,EA076,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA076,7,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA076,7,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA076,1,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA076,1,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,,,EA076,NA,,,, +Ie2,,1920,EA076,7,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA076,5,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA076,7,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,,EA076,NA,,,, +Ie23,,1950,EA076,7,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA076,1,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA076,7,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,,EA076,NA,,,, +Ie27,,1910,EA076,1,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA076,7,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,,,EA076,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA076,7,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA076,NA,,,, +Ie31,,,EA076,NA,,,, +Ie32,,,EA076,NA,,,, +Ie33,,,EA076,NA,,,, +Ie34,,,EA076,NA,,,, +Ie35,,,EA076,NA,,,, +Ie36,,,EA076,NA,,,, +Ie37,,,EA076,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA076,5,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA076,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA076,7,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA076,7,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA076,NA,,,, +Ie7,with special reference to the Mae group,1950,EA076,7,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA076,7,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,,EA076,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA076,7,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA076,NA,,,, +If11,,,EA076,NA,,,, +If12,,,EA076,NA,,,, +If13,,,EA076,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA076,7,But canoes were inherited by all children jointly,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,,EA076,NA,,,, +If16,,,EA076,NA,,,, +If17,with special reference to the island of Jaluit,1900,EA076,1,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA076,7,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA076,3,But originally matrilineal,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA076,NA,Matrilineal but without information of the preferred heirs,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA076,3,"But Bascom reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") in most districts",bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA076,3,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA076,5,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA076,5,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA076,5,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA076,5,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA076,NA,,,, +Ig11,,,EA076,NA,,,, +Ig12,with special reference to the Varisi,1900,EA076,7,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA076,2,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA076,1,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA076,NA,,,, +Ig16,,,EA076,NA,,,, +Ig17,,,EA076,NA,,,, +Ig18,,,EA076,NA,,,, +Ig19,,,EA076,NA,,,, +Ig2,Kiriwina Island,1910,EA076,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA076,2,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA076,NA,,,, +Ig3,,1930,EA076,NA,"A man may leave his property to his sons, his sister's sons, or both",blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA076,2,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA076,2,"Matrilineal, but the exact distribution is not reported",fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA076,5,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA076,5,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA076,NA,,,, +Ig9,Peri Village,1920,EA076,1,Most of a deceased man's property is plundered by the agnatic kinsmen of his MoBr,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA076,2,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA076,7,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA076,NA,,,, +Ih12,,,EA076,NA,,,, +Ih13,,,EA076,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA076,7,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,,,EA076,NA,,,, +Ih3,Bunlap Village,1950,EA076,6,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA076,7,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA076,NA,,,, +Ih6,,,EA076,NA,,,, +Ih7,,1910,EA076,7,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,,,EA076,NA,,,, +Ih9,,,EA076,NA,,,, +Ii1,,,EA076,NA,,,, +Ii10,,,EA076,NA,,,, +Ii12,Pangai,1920,EA076,NA,"Mixed, with substantial shares to sisters' sons",beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,,EA076,NA,,,, +Ii14,,,EA076,NA,,,, +Ii2,,,EA076,NA,,,, +Ii3,,,EA076,NA,,,, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA076,6,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,,,EA076,NA,,,, +Ii6,with special reference to Atafu,1900,EA076,5,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA076,5,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,,EA076,NA,,,, +Ii9,,1840,EA076,7,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,,EA076,NA,,,, +Ij10,,1900,EA076,7,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA076,7,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA076,4,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,,EA076,NA,,,, +Ij5,,1900,EA076,5,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA076,5,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA076,7,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,,EA076,NA,,,, +Ij9,,,EA076,NA,,,, +Na1,,1930,EA076,1,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA076,7,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,,EA076,NA,,,, +Na12,,1950,EA076,5,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA076,7,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA076,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,,EA076,NA,,,, +Na16,,,EA076,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA076,1,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,,,EA076,NA,,,, +Na2,,1880,EA076,7,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,,,EA076,NA,,,, +Na21,,1900,EA076,1,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA076,1,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA076,1,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA076,7,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA076,7,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA076,1,Property is distributed in a potlatch except items previously promised to particular relatives,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA076,3,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,,EA076,NA,,,, +Na29,,1850,EA076,1,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA076,5,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA076,6,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA076,1,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA076,7,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,,,EA076,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA076,7,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA076,1,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,,,EA076,NA,,,, +Na37,,1880,EA076,5,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA076,1,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,,,EA076,NA,,,, +Na4,Upper Liard and Dease River Group,1920,EA076,7,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,,EA076,NA,,,, +Na41,,,EA076,NA,,,, +Na42,,,EA076,NA,,,, +Na43,,,EA076,NA,,,, +Na44,,,EA076,NA,,,, +Na45,,,EA076,NA,,,, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA076,7,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA076,7,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA076,7,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA076,7,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA076,5,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA076,3,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA076,NA,Inheritance reported as bilateral with a patrilineal bias,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA076,4,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA076,7,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA076,7,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA076,7,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,,EA076,NA,,,, +Nb16,,1860,EA076,1,Most of a man's property is given away or destroyed at his death,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA076,1,But originally property was given away to blood kin at a man's death,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,,EA076,NA,,,, +Nb19,,,EA076,NA,,,, +Nb2,Twana Tribe,1850,EA076,1,Distributed by siblings and children at a funeral potlatch,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA076,7,But brothers share with sons,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA076,6,Brothers share with grown sons,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA076,2,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA076,3,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA076,5,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA076,7,But most property is destroyed at death,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA076,7,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA076,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,,EA076,NA,,,, +Nb29,,1860,EA076,7,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA076,7,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA076,1,The property of a deceased man is distributed among all his near relatives,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA076,7,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA076,7,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA076,1,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,,EA076,NA,,,, +Nb35,,,EA076,NA,,,, +Nb36,,,EA076,NA,,,, +Nb37,,1860,EA076,1,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA076,5,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA076,1,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA076,5,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA076,3,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA076,7,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA076,3,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA076,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA076,7,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA076,1,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA076,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA076,7,But most property is destroyed at death,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA076,1,But eldest son inherited a few objects,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA076,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA076,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA076,1,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,,EA076,NA,,,, +Nc17,with special reference to those of Kalekau,1860,EA076,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA076,7,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA076,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA076,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA076,1,"But some valuables were inherited by sons, daughters, nephews, and nieces",driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA076,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA076,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA076,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,,,EA076,NA,,,, +Nc25,,,EA076,NA,,,, +Nc26,,1770,EA076,5,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA076,1,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA076,5,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA076,7,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA076,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA076,7,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA076,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA076,1,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA076,1,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA076,7,But the widow took precedence over the eldest son,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA076,7,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA076,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA076,1,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA076,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA076,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA076,7,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA076,1,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,,EA076,NA,,,, +Nd11,,,EA076,NA,,,, +Nd12,,,EA076,NA,,,, +Nd13,,,EA076,NA,,,, +Nd14,,1860,EA076,NA,Distributed among relatives,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA076,NA,"Given away to close relatives, especially siblings",clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,,EA076,NA,,,, +Nd17,,,EA076,NA,,,, +Nd18,,,EA076,NA,,,, +Nd19,,,EA076,NA,,,, +Nd2,,1860,EA076,1,Unless promised to a kinsman before death,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA076,1,"""Inheritance was in the male line. Much property was given away after the funeral feast, and the remainder was usually distributed according to the previously expressed wishes of the owner""",curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,,EA076,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA076,1,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,,EA076,NA,,,, +Nd24,,1870,EA076,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,,EA076,NA,,,, +Nd26,,1870,EA076,1,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA076,1,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA076,1,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,,,EA076,NA,,,, +Nd3,Havasupai Tribe,1870,EA076,1,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA076,1,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA076,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA076,1,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA076,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA076,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA076,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA076,1,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,,EA076,NA,,,, +Nd38,,,EA076,NA,,,, +Nd39,,,EA076,NA,,,, +Nd4,,1870,EA076,6,Distributed among close male relatives,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA076,1,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,,EA076,NA,,,, +Nd42,,,EA076,NA,,,, +Nd43,,1860,EA076,1,"But some property is distributed to ""relatives""",harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA076,1,"But some property is distributed to ""relatives""",steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA076,1,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA076,1,"But sometimes personal property was distributed among ""friends of the natural heirs""",lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA076,1,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA076,1,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA076,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA076,7,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA076,1,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA076,1,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA076,1,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA076,1,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA076,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA076,1,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA076,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA076,1,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA076,1,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA076,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA076,1,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA076,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA076,1,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA076,1,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA076,1,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA076,1,But most property is destroyed or given away,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA076,1,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA076,1,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA076,1,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA076,7,But formerly seized by relatives,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA076,7,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA076,7,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA076,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA076,NA,But sacred bundles were inherited from Fa to So,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA076,1,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA076,4,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA076,7,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,,EA076,NA,,,, +Ne15,Hidatsa Village,1860,EA076,7,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,,EA076,NA,,,, +Ne17,,1860,EA076,NA,"Inheritance of horses said to follow ""no fixed rule"" but to exhibit a patrilineal tendency",lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA076,7,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,,EA076,NA,,,, +Ne2,,1870,EA076,1,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA076,1,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA076,NA,,,, +Ne3,Comanche Tribe,1870,EA076,1,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA076,3,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA076,1,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA076,2,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA076,5,Entry follows Honigmann; Jenness reports that property was destroyed or given away,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,,EA076,NA,,,, +Ne9,,1860,EA076,1,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,,EA076,NA,,,, +Nf11,,1870,EA076,7,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA076,1,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA076,7,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA076,NA,,,, +Nf15,,,EA076,NA,,,, +Nf2,,1850,EA076,7,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA076,7,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA076,NA,,,, +Nf5,,1860,EA076,1,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA076,3,"Most property was inherited by brothers and sisters' sons, but the eldest son inherited medicine bundles",dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA076,1,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,,EA076,NA,,,, +Nf9,,,EA076,NA,,,, +Ng1,,,EA076,NA,,,, +Ng10,with special reference to the Seneca tribe,1750,EA076,2,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA076,NA,In the late period a man's property was divided among his own and his sister's children,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,,EA076,NA,,,, +Ng13,,,EA076,NA,,,, +Ng14,,,EA076,NA,,,, +Ng15,,,EA076,NA,,,, +Ng2,,,EA076,NA,,,, +Ng3,Upper division in Alabama,1750,EA076,7,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA076,7,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,,EA076,NA,,,, +Ng6,,,EA076,NA,,,, +Ng7,,,EA076,NA,,,, +Ng8,,1560,EA076,2,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,1920,EA076,5,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA076,1,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA076,5,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA076,5,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA076,5,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA076,5,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,,EA076,NA,,,, +Nh15,,1870,EA076,1,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA076,5,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA076,5,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA076,7,"But usually 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") today",beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA076,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,,EA076,NA,,,, +Nh20,,1860,EA076,1,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA076,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA076,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA076,7,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,,EA076,NA,,,, +Nh25,,1920,EA076,5,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA076,NA,,,, +Nh27,,,EA076,NA,,,, +Nh3,,1930,EA076,2,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") today",franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA076,5,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA076,1,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,,EA076,NA,,,, +Nh7,,1890,EA076,5,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA076,6,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,,EA076,NA,,,, +Ni1,,1930,EA076,5,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA076,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA076,5,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA076,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA076,1,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA076,1,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,,EA076,NA,,,, +Ni8,,,EA076,NA,,,, +Ni9,,,EA076,NA,,,, +Nj1,Ojitlan,1940,EA076,7,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA076,5,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA076,NA,,,, +Nj12,,,EA076,NA,,,, +Nj13,,,EA076,NA,,,, +Nj14,,,EA076,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA076,7,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA076,7,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,,EA076,NA,,,, +Nj5,,,EA076,NA,,,, +Nj6,,,EA076,NA,,,, +Nj7,with special reference to Ayutla,1930,EA076,5,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA076,7,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA076,7,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,,,EA076,NA,,,, +Sa10,,,EA076,NA,,,, +Sa11,,1880,EA076,7,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,,EA076,NA,,,, +Sa13,Town of Chichicastenango,1930,EA076,7,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA076,NA,,,, +Sa15,,,EA076,NA,,,, +Sa16,,,EA076,NA,,,, +Sa17,,,EA076,NA,,,, +Sa2,,,EA076,NA,,,, +Sa3,,1930,EA076,5,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,,,EA076,NA,,,, +Sa5,,1950,EA076,5,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA076,6,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,,EA076,NA,,,, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA076,7,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,,,EA076,NA,,,, +Sb1,Dominica Island,1650,EA076,NA,Probably matrilineal,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA076,7,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA076,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA076,5,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA076,NA,,,, +Sb6,Goajiro Tribe,1940,EA076,2,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,,,EA076,NA,,,, +Sb8,,1520,EA076,2,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA076,5,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,,EA076,NA,,,, +Sc10,,,EA076,NA,,,, +Sc11,,,EA076,NA,,,, +Sc12,,,EA076,NA,,,, +Sc13,,,EA076,NA,,,, +Sc14,,,EA076,NA,,,, +Sc15,,,EA076,NA,,,, +Sc16,,,EA076,NA,,,, +Sc17,,1950,EA076,7,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA076,3,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA076,7,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,,,EA076,NA,,,, +Sc4,with special reference to the non-agricultural groups,1950,EA076,7,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,,EA076,NA,,,, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA076,3,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,,EA076,NA,,,, +Sc8,,,EA076,NA,,,, +Sc9,,,EA076,NA,,,, +Sd1,Cabrura village,1950,EA076,1,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA076,NA,,,, +Sd3,,,EA076,NA,,,, +Sd4,,,EA076,NA,,,, +Sd5,,,EA076,NA,,,, +Sd6,,,EA076,NA,,,, +Sd7,,1950,EA076,7,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,,EA076,NA,,,, +Sd9,,,EA076,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA076,1,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA076,NA,,,, +Se11,,,EA076,NA,,,, +Se12,,,EA076,NA,,,, +Se2,,1940,EA076,7,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA076,7,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA076,1,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA076,7,"But 'no inheritance' (code ""1"") for clothing an ceremonial objects",goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,,EA076,NA,,,, +Se7,a mestizo group in lowland Bolivia,1950,EA076,7,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA076,1,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA076,7,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA076,7,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA076,7,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,,,EA076,NA,,,, +Sf4,,1950,EA076,5,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA076,7,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA076,7,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,,EA076,NA,,,, +Sf8,,,EA076,NA,,,, +Sf9,,,EA076,NA,,,, +Sg1,Eastern and central,1870,EA076,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA076,7,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA076,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,,,EA076,NA,,,, +Sg5,,,EA076,NA,,,, +Sh1,,1860,EA076,1,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,,EA076,NA,,,, +Sh3,,,EA076,NA,,,, +Sh4,,1940,EA076,7,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA076,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,,EA076,NA,,,, +Sh7,,,EA076,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA076,1,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA076,NA,,,, +Si1,,,EA076,NA,,,, +Si10,,,EA076,NA,,,, +Si2,,,EA076,NA,,,, +Si3,,,EA076,NA,,,, +Si4,Cocozu Group,1940,EA076,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA076,1,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,,EA076,NA,,,, +Si7,,,EA076,NA,,,, +Si8,,,EA076,NA,,,, +Si9,,,EA076,NA,,,, +Sj1,,,EA076,NA,,,, +Sj10,,,EA076,NA,,,, +Sj11,Village of Sao Domingo,1958,EA076,1,"Aboriginally, but some objects are inherited today",mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,,EA076,NA,,,, +Sj3,Duque de Caxias Reservation,1910,EA076,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA076,5,Distribution among matrilineal kinsmen of both sexes,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,,,EA076,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA076,7,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,,EA076,NA,,,, +Sj8,,,EA076,NA,,,, +Sj9,,,EA076,NA,,,, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA076,7,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA076,7,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA076,7,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA076,7,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA076,5,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA076,7,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA076,7,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA076,7,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA076,7,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA076,4,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA076,7,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA076,7,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA076,7,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA076,7,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA076,7,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA076,7,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA076,7,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA076,7,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,,,EA076,NA,,,, +ec14,those of South-Eastern Chukotka,1880,EA076,7,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA076,7,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA076,7,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA076,7,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA076,7,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA076,7,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA076,7,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA076,7,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA077,9,"Murdock (1963a) coded this as 'inheritance by patrilineal heirs who take precedence over sons' (EA076 code ""7""), commenting: ""Entry follows Wilhelm; older sources report that most of a man's property was buried with him but that a brother inherited his bow and arrows."" In the EA the column is coded O, 'no inheritance of movable property' (EA076 code ""1"")",biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA077,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA077,4,"For livestock; 'inheritance by children of either sex' (EA076 code ""5"") and 'equal distribution' (EA077 code ""1"") for other moveable property",hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA077,1,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,,,EA077,NA,,,, +Aa6,,1920,EA077,1,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA077,9,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,,EA077,NA,,,, +Aa9,,,EA077,NA,,,, +Ab1,,1900,EA077,4,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA077,4,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA077,4,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA077,4,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA077,4,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,,EA077,NA,,,, +Ab15,,1860,EA077,4,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,,EA077,NA,,,, +Ab17,,1920,EA077,1,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA077,4,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA077,1,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA077,4,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,,EA077,NA,,,, +Ab21a,,1930,EA077,4,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA077,NA,,,, +Ab22,,,EA077,NA,,,, +Ab3,Ruling Luyana,1890,EA077,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA077,1,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA077,NA,Precise distribution unreported,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA077,4,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA077,4,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA077,4,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA077,4,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA077,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,,EA077,NA,,,, +Ac11,,,EA077,NA,,,, +Ac12,,1920,EA077,4,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,,EA077,NA,,,, +Ac14,,1900,EA077,4,"Entry follows Mertens and Van Wing; Ihle and Van de Velde report 'matrilineal by sister's son(s)' (EA076 code ""2"") and 'primogeniture' (EA077 code ""4"")",brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA077,4,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA077,NA,Inheritance is matrilineal,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA077,4,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA077,1,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,1880,EA077,4,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA077,4,"Entry follows Sousberge; Toirday and Joyce report 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,1920,EA077,4,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA077,1,"Entries follows Decker; Torday reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,,EA077,NA,,,, +Ac23,with special reference to the western Lele,1950,EA077,1,Presumably matrilineal,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA077,4,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA077,4,All property escheats to the head of the matrilineage,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,,EA077,NA,,,, +Ac27,,,EA077,NA,,,, +Ac28,,1930,EA077,4,"Alternatively 'patrilineal by heirs' (EA076 code ""6"") and 'primogeniture' (EA077 code ""4"")",baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,1930,EA077,2,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA077,2,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA077,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA077,4,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA077,4,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA077,4,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA077,2,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,1900,EA077,2,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA077,4,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA077,2,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA077,4,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,,EA077,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA077,4,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA077,4,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA077,NA,Matrilineal,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA077,4,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA077,NA,,,, +Ac5,,1920,EA077,4,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,,EA077,NA,,,, +Ac7,,1920,EA077,4,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA077,4,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA077,4,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA077,1,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA077,1,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA077,1,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA077,1,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA077,1,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA077,1,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA077,4,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA077,4,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA077,1,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA077,1,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA077,NA,"Matrilineal, but sources conflict as to preferred heirs",fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA077,4,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA077,1,But only by sons of wives obtained by a bride-price,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA077,NA,Matrilineal,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA077,NA,"Patrilineal, but matrilineal if no bride-prices was paid for mother",abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,,EA077,NA,,,, +Ad24,,1910,EA077,4,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,,EA077,NA,,,, +Ad26,,1910,EA077,1,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA077,1,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA077,1,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA077,1,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA077,4,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA077,4,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,,EA077,NA,,,, +Ad32,,1900,EA077,4,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA077,4,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA077,1,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA077,1,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA077,NA,"By brothers according one source, by eldest sons of each wife according to another",baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA077,1,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA077,1,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA077,1,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA077,4,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,1950,EA077,1,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA077,1,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA077,4,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,,EA077,NA,,,, +Ad44,,,EA077,NA,,,, +Ad45,,1920,EA077,4,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA077,1,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA077,1,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA077,NA,,,, +Ad49,,1950,EA077,4,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA077,4,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA077,1,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,,EA077,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA077,4,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA077,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA077,1,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA077,1,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA077,1,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA077,1,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,,EA077,NA,,,, +Ae12,,1940,EA077,4,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA077,NA,Patrilineal,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA077,4,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA077,4,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA077,4,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA077,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA077,4,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA077,NA,,,, +Ae2,,,EA077,NA,,,, +Ae20,,1940,EA077,4,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA077,4,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA077,4,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA077,NA,Mixed patrilineal and matrilineal,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA077,4,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA077,4,"Entry follows Torday and Joyce; Heusch reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA077,4,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,,,EA077,NA,,,, +Ae28,,1900,EA077,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA077,1,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA077,4,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA077,1,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,,EA077,NA,,,, +Ae32,,1920,EA077,1,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA077,1,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA077,NA,Inheritance is patrilineal,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA077,1,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA077,NA,Inheritance is patrilineal,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA077,4,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA077,4,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA077,9,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA077,4,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA077,4,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA077,1,"Patrilineal, by brothers and sons",andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA077,1,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA077,4,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA077,4,Entry follows Gil-Delgado; Tessmann reports patrilineal inheritance with matrilineal traces,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA077,4,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA077,4,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA077,1,"But the source, Oertzen, elsewhere mentions inheritance by sisters' sons",oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,,EA077,NA,,,, +Ae49,,1900,EA077,4,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA077,2,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA077,2,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA077,1,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA077,1,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA077,4,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,,EA077,NA,,,, +Ae55,,1950,EA077,NA,Patrilineal,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,,EA077,NA,,,, +Ae57,,1930,EA077,4,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,,EA077,NA,,,, +Ae59,,,EA077,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA077,4,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA077,4,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA077,4,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,,EA077,NA,,,, +Af1,City and environs of Abomey,1890,EA077,4,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA077,1,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA077,4,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA077,1,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA077,4,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,,EA077,NA,,,, +Af15,,1920,EA077,4,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA077,4,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA077,NA,,,, +Af18,,,EA077,NA,,,, +Af19,,1950,EA077,4,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA077,1,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA077,4,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,,,EA077,NA,,,, +Af22,,1940,EA077,1,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA077,NA,Mixed but with a matrilineal emphasis,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA077,4,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,,EA077,NA,,,, +Af26,with special reference to the Etsako,1900,EA077,NA,Patrilineal or matrilineal depending on mode of marriage,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA077,4,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA077,NA,Patrilineal with local variations regarding participation of brothers and sons,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA077,4,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA077,4,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA077,4,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA077,1,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA077,1,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA077,1,But Pe for property acquired rather than inherited by deceased,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA077,1,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA077,NA,,,, +Af36,with special reference to the Glidyi,1900,EA077,4,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA077,4,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA077,4,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA077,4,"But Kobben, as opposed to the earlier sources, reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA077,1,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA077,4,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA077,4,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA077,4,But sons inherit some property,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA077,4,"But Daniell reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,1900,EA077,4,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA077,4,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA077,4,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA077,4,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,,EA077,NA,,,, +Af49,,1940,EA077,4,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA077,1,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA077,4,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA077,4,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA077,4,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,1950,EA077,4,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,,EA077,NA,,,, +Af55,,,EA077,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA077,4,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA077,1,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA077,4,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA077,1,But Pe for property acquired rather than inherited by deceased,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA077,1,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA077,1,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA077,4,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA077,4,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA077,4,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA077,4,"For livestock and money; 'inheritance by children of either sex' (EA076 code ""5"") and 'equal distribution' (EA077 code ""1"") for other moveable property",charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA077,4,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA077,4,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,,EA077,NA,,,, +Ag15,,1930,EA077,4,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA077,1,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,,EA077,NA,,,, +Ag18,,1930,EA077,4,"Succession and inheritance by a younger brother are specified, but matrilineal rule is inferred from that for descent",bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA077,4,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA077,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA077,4,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA077,4,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA077,1,But matrilineal until recently,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA077,4,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA077,4,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA077,1,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA077,1,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA077,1,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,,EA077,NA,,,, +Ag29,,1910,EA077,4,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA077,4,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA077,4,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA077,4,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA077,4,"Entry follows Vendeix; Delafosse reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA077,4,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA077,1,The sources are in some conflict on rules of inheritance,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA077,4,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA077,NA,,,, +Ag37,,1910,EA077,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA077,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA077,4,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA077,4,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for property acquired rather than inherited by deceased",fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA077,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA077,NA,Brothers and sons share in inheritance,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA077,4,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA077,4,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,,EA077,NA,,,, +Ag45,,,EA077,NA,,,, +Ag46,,,EA077,NA,,,, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA077,4,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA077,1,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA077,4,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA077,4,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA077,4,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA077,4,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA077,4,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA077,4,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA077,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA077,1,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA077,1,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA077,4,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA077,4,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA077,1,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA077,4,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA077,1,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,1920,EA077,4,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA077,1,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA077,1,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA077,4,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA077,4,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA077,1,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA077,4,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA077,1,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA077,1,"Matrilineal by a sister's son(s)' (EA076 code ""2"") or 'patrilineal by son(s)' (EA076 code ""7""), both with 'equal distribution' (EA077 code ""1""), depending on residence",meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA077,1,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA077,NA,,,, +Ah22,,1900,EA077,1,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,,EA077,NA,,,, +Ah24,,1920,EA077,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,,EA077,NA,,,, +Ah26,,1920,EA077,4,"Entry follows Meek; another source reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,1920,EA077,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah28,with special reference to the Lekon subtribe,1920,EA077,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA077,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA077,1,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA077,4,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA077,4,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA077,NA,Inheritance is mixed but more matrilineal than patrilineal,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA077,4,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA077,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA077,4,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA077,1,"Formerly 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA077,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA077,4,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA077,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA077,1,"But 'matrilineal by a sister's son(s)' (EA076 code ""2"") with 'equal distribution' (EA077 code ""1"") if deceased was married by a token bride-price rather than by an exchange of sisters",meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA077,4,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,,EA077,NA,,,, +Ah7,,1940,EA077,1,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA077,4,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA077,1,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA077,1,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA077,1,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA077,4,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,,EA077,NA,,,, +Ai13,,1920,EA077,1,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,,EA077,NA,,,, +Ai15,,,EA077,NA,,,, +Ai16,,1910,EA077,1,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,,EA077,NA,,,, +Ai18,,,EA077,NA,,,, +Ai19,,,EA077,NA,,,, +Ai2,,1940,EA077,1,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for tools and weapons as opposed to livestock",nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA077,4,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,,EA077,NA,,,, +Ai22,,,EA077,NA,,,, +Ai23,,1920,EA077,1,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA077,4,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,,EA077,NA,,,, +Ai26,,1920,EA077,4,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA077,NA,,,, +Ai28,,1910,EA077,1,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA077,1,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA077,4,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA077,1,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,,EA077,NA,,,, +Ai32,,,EA077,NA,,,, +Ai33,,1940,EA077,1,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,,EA077,NA,,,, +Ai35,,,EA077,NA,,,, +Ai36,,1920,EA077,4,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") for property acquired rather than inherited by deceased",bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA077,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA077,NA,"Mixed 'matrilineal by a sister's son(s)' (EA076 code ""2"") and 'patrilineal by son(s)' (EA076 code ""7""), both with 'equal distribution' (EA077 code ""1"")",nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA077,NA,Mixed matrilineal and patrilineal,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA077,NA,,,, +Ai40,,1940,EA077,4,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA077,1,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA077,4,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA077,4,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,,EA077,NA,,,, +Ai45,,1930,EA077,1,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,,EA077,NA,,,, +Ai47,Northern division,1939,EA077,4,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA077,NA,,,, +Ai6,Shilluk Kingdom,1900,EA077,4,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA077,4,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA077,1,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA077,4,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA077,4,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA077,1,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA077,1,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,,EA077,NA,,,, +Aj13,,1930,EA077,1,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA077,NA,,,, +Aj15,,1900,EA077,4,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,,,EA077,NA,,,, +Aj17,,1890,EA077,4,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA077,4,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA077,4,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA077,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,,EA077,NA,,,, +Aj21,,1930,EA077,1,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,,EA077,NA,,,, +Aj23,,1950,EA077,4,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA077,1,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA077,4,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA077,4,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,,EA077,NA,,,, +Aj28,,1940,EA077,4,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA077,4,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA077,1,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA077,NA,,,, +Aj31,,,EA077,NA,,,, +Aj4,,1920,EA077,4,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA077,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA077,4,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA077,4,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA077,1,"Entry follows Seligman; Beaton reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA077,1,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA077,4,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA077,1,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA077,4,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA077,4,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA077,4,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,,EA077,NA,,,, +Ca15,,1930,EA077,1,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA077,4,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,,EA077,NA,,,, +Ca18,,1940,EA077,4,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,,EA077,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA077,1,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA077,NA,,,, +Ca21,,,EA077,NA,,,, +Ca22,,,EA077,NA,,,, +Ca23,,1950,EA077,4,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA077,NA,,,, +Ca25,,1950,EA077,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA077,NA,,,, +Ca27,,,EA077,NA,,,, +Ca28,,1950,EA077,4,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA077,1,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA077,1,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA077,4,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,,EA077,NA,,,, +Ca32,,1860,EA077,4,"Entry follows Pollera; Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA077,4,"But Munzinger reports 'matrilineal by heirs' (EA074 code ""3"") and 'primogeniture' (EA075 code ""4"")",grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA077,NA,,,, +Ca35,,1930,EA077,NA,"Patrilineal, though formerly matrilineal",clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA077,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA077,4,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA077,4,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA077,1,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA077,1,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA077,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA077,4,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA077,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA077,NA,,,, +Ca5,,1930,EA077,1,But Murray reports matrilineal inheritance,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,,EA077,NA,,,, +Ca7,Gondar district,1950,EA077,1,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA077,4,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,1890,EA077,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA077,1,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA077,4,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA077,1,"In transition to 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"") in accordance with Islamic practice",lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,,EA077,NA,,,, +Cb13,,,EA077,NA,,,, +Cb14,,1910,EA077,1,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA077,1,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA077,1,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA077,3,"Entry follows Felkin; Beaton reports 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"")",barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA077,1,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA077,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA077,1,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA077,1,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA077,4,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA077,1,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA077,1,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA077,1,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA077,1,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA077,1,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA077,4,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,,EA077,NA,,,, +Cb29,,1920,EA077,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA077,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA077,1,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA077,1,"In Murdock (1963a) he codes this as 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") with the comment ""But Bouillie, contrary to all other sources, reports 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"")."" In the EA the code is Pe, 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"").",bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA077,1,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,,EA077,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA077,1,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA077,1,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA077,1,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA077,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA077,1,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA077,1,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA077,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA077,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA077,NA,,,, +Cc16,,,EA077,NA,,,, +Cc17,,1930,EA077,1,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA077,1,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA077,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA077,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA077,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA077,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,,EA077,NA,,,, +Cc5,,1910,EA077,1,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA077,1,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA077,1,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA077,NA,,,, +Cc9,Ahaggaren tribe,1920,EA077,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA077,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA077,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA077,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA077,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA077,1,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA077,1,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA077,1,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA077,1,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA077,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA077,1,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,,EA077,NA,,,, +Cd2,Town and environs of Silwa,1950,EA077,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA077,1,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,,EA077,NA,,,, +Cd3,Entirety: Moroccan,1920,EA077,1,"But theoretically 'inheritance by children, with daughters receiving less' (EA076 code ""4"") and 'equal distribution' (EA077 code ""1"")",coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA077,1,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA077,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA077,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA077,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA077,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA077,1,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA077,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA077,NA,,,, +Ce3,City and environs of Rome,100,EA077,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA077,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA077,1,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA077,1,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA077,1,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA077,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA077,1,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,,,EA077,NA,,,, +Cf3,,1930,EA077,1,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA077,1,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,,EA077,NA,,,, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA077,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA077,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA077,2,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA077,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,,EA077,NA,,,, +Ch1,,,EA077,NA,,,, +Ch10,,,EA077,NA,,,, +Ch11,,,EA077,NA,,,, +Ch2,,1890,EA077,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA077,1,But the youngest son receives the largest share,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA077,3,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA077,1,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA077,1,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,1930,EA077,1,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,,EA077,NA,,,, +Ch9,,1930,EA077,1,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA077,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA077,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,,EA077,NA,,,, +Ci12,Abkhaz Tribe,1880,EA077,1,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA077,1,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,,,EA077,NA,,,, +Ci4,,1920,EA077,1,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA077,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA077,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,,EA077,NA,,,, +Ci8,,,EA077,NA,,,, +Ci9,,1910,EA077,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,,,EA077,NA,,,, +Cj10,,,EA077,NA,,,, +Cj2,Unspecified,1920,EA077,1,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA077,4,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA077,1,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA077,1,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA077,1,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA077,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA077,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,,EA077,NA,,,, +Ea1,,,EA077,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA077,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA077,1,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA077,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA077,1,"Despite legal change in 1948 to 'inheritance by children of either sex' (EA076 code ""5"") with 'equal distribution' (EA077 code ""1"")",callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA077,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA077,4,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA077,1,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA077,1,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA077,1,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA077,1,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA077,NA,,,, +Ea9,,,EA077,NA,,,, +Eb1,Great Horde,1910,EA077,3,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA077,1,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA077,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA077,1,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,,,EA077,NA,,,, +Eb6,,,EA077,NA,,,, +Eb7,,,EA077,NA,,,, +Eb8,,,EA077,NA,,,, +Ec1,Sakhalin Island,1920,EA077,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA077,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,,EA077,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA077,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA077,1,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA077,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA077,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA077,3,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA077,1,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA077,3,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA077,NA,,,, +Ed1,Kanghwa Island,1950,EA077,4,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA077,1,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA077,NA,,,, +Ed14,,,EA077,NA,,,, +Ed15a,,,EA077,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA077,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA077,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA077,1,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA077,3,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA077,3,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA077,4,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA077,1,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA077,4,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA077,1,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA077,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA077,1,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,,,EA077,NA,,,, +Ee3,Lingthem and vicinity,1930,EA077,1,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA077,2,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA077,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA077,1,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA077,NA,,,, +Ee8,,,EA077,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA077,1,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA077,NA,,,, +Ef11,Village and environs of Senapur,1945,EA077,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA077,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA077,NA,,,, +Ef4,,1920,EA077,1,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA077,1,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA077,1,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA077,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA077,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA077,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA077,1,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA077,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,with special reference to the Gommu Koya,1960,EA077,1,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,,,EA077,NA,,,, +Eg13,,,EA077,NA,,,, +Eg14,,,EA077,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA077,1,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA077,9,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA077,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA077,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,,,EA077,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA077,1,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA077,1,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA077,1,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,,EA077,NA,,,, +Eh10,,,EA077,NA,,,, +Eh2,,1900,EA077,1,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA077,1,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA077,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA077,1,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA077,1,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA077,1,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,,EA077,NA,,,, +Eh9,,1930,EA077,1,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA077,NA,The heir is a classificatory SiSo who is DaHu,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA077,1,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA077,4,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA077,4,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA077,1,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA077,1,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA077,NA,,,, +Ei16,,1910,EA077,1,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA077,NA,,,, +Ei18,,,EA077,NA,,,, +Ei19,,1940,EA077,3,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") in some localities",bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA077,1,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA077,NA,,,, +Ei3,Nondwin Village,1950,EA077,1,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA077,4,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA077,3,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA077,3,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA077,1,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA077,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,1880,EA077,4,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p93, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA077,1,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,,,EA077,NA,,,, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA077,3,Mainly from mother to youngest daughter,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,,EA077,NA,,,, +Ej13,,,EA077,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA077,9,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,,,EA077,NA,,,, +Ej16,Inas District,1958,EA077,2,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA077,1,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA077,1,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA077,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA077,1,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA077,NA,,,, +Ej7,,1950,EA077,1,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA077,1,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA077,1,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA077,3,"But Li reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"")",ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,,EA077,NA,,,, +Ia11,,,EA077,NA,,,, +Ia12,,1950,EA077,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,,,EA077,NA,,,, +Ia14,,1930,EA077,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA077,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA077,4,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA077,NA,,,, +Ia18,,,EA077,NA,,,, +Ia2,,1950,EA077,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA077,4,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA077,1,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA077,1,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA077,4,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA077,1,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA077,1,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,,,EA077,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA077,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA077,1,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA077,1,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA077,1,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA077,1,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA077,1,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,,,EA077,NA,,,, +Ib8,with special reference to the Ridan group,1900,EA077,1,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA077,NA,,,, +Ic1,,,EA077,NA,,,, +Ic10,Tobelo District,1910,EA077,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA077,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA077,NA,,,, +Ic13,,,EA077,NA,,,, +Ic2,,,EA077,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA077,NA,"Inheritance by widows, then daughters",vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,,EA077,NA,,,, +Ic5,Bare'e subgroup,1910,EA077,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA077,1,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA077,1,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA077,4,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA077,4,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA077,4,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA077,1,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,,EA077,NA,,,, +Id12,,1930,EA077,9,,sharp1934,Ethnology_Vol7_No2_Apr_1968, +Id13,,,EA077,NA,,,, +Id2,,,EA077,NA,,,, +Id3,,,EA077,NA,,,, +Id4,,,EA077,NA,,,, +Id5,,,EA077,NA,,,, +Id6,,,EA077,NA,,,, +Id7,,,EA077,NA,,,, +Id8,,,EA077,NA,,,, +Id9,,,EA077,NA,,,, +Ie1,,,EA077,NA,,,, +Ie10,with special reference to the Western Motu,1950,EA077,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA077,2,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA077,1,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA077,NA,,,, +Ie14,,,EA077,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA077,4,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA077,NA,,,, +Ie17,,1940,EA077,9,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA077,9,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,,,EA077,NA,,,, +Ie2,,1920,EA077,1,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA077,1,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA077,1,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,,EA077,NA,,,, +Ie23,,1950,EA077,1,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA077,9,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA077,1,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,,EA077,NA,,,, +Ie27,,1910,EA077,9,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,,EA077,NA,,,, +Ie29,,,EA077,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA077,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA077,NA,,,, +Ie31,,,EA077,NA,,,, +Ie32,,,EA077,NA,,,, +Ie33,,,EA077,NA,,,, +Ie34,,,EA077,NA,,,, +Ie35,,,EA077,NA,,,, +Ie36,,,EA077,NA,,,, +Ie37,,,EA077,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA077,1,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,,,EA077,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA077,1,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA077,1,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA077,NA,,,, +Ie7,with special reference to the Mae group,1950,EA077,1,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA077,1,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,,EA077,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA077,1,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA077,NA,,,, +If11,,,EA077,NA,,,, +If12,,,EA077,NA,,,, +If13,,,EA077,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA077,1,But canoes were inherited by all children jointly,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,,EA077,NA,,,, +If16,,,EA077,NA,,,, +If17,with special reference to the island of Jaluit,1900,EA077,9,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA077,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA077,2,But originally matrilineal,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA077,NA,Matrilineal but without information of the preferred heirs,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA077,1,"But Bascom reports 'patrilineal by son(s)' (EA076 code ""7"") and 'primogeniture' (EA077 code ""4"") in most districts",bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA077,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA077,1,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA077,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA077,1,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA077,1,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA077,NA,,,, +Ig11,,,EA077,NA,,,, +Ig12,,,EA077,NA,,,, +Ig13,,,EA077,NA,,,, +Ig14,,1900,EA077,9,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA077,NA,,,, +Ig16,,,EA077,NA,,,, +Ig17,,,EA077,NA,,,, +Ig18,,,EA077,NA,,,, +Ig19,,,EA077,NA,,,, +Ig2,Kiriwina Island,1910,EA077,1,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA077,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA077,NA,,,, +Ig3,,1930,EA077,NA,"A man may leave his property to his sons, his sister's sons, or both",blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA077,1,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA077,NA,"Matrilineal, but the exact distribution is not reported",fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA077,1,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA077,1,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA077,NA,,,, +Ig9,Peri Village,1920,EA077,9,Most of a deceased man's property is plundered by the agnatic kinsmen of his MoBr,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA077,1,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,Whitsands,1920,EA077,1,,humphreys1926,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA077,NA,,,, +Ih12,,,EA077,NA,,,, +Ih13,,,EA077,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA077,1,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,,,EA077,NA,,,, +Ih3,Bunlap Village,1950,EA077,4,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA077,1,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA077,NA,,,, +Ih6,,,EA077,NA,,,, +Ih7,,1910,EA077,1,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,,,EA077,NA,,,, +Ih9,,,EA077,NA,,,, +Ii1,,,EA077,NA,,,, +Ii10,,,EA077,NA,,,, +Ii12,Pangai,1920,EA077,NA,"Mixed, with substantial shares to sisters' sons",beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,,EA077,NA,,,, +Ii14,,,EA077,NA,,,, +Ii2,,,EA077,NA,,,, +Ii3,,,EA077,NA,,,, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA077,4,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,,,EA077,NA,,,, +Ii6,with special reference to Atafu,1900,EA077,1,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA077,1,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,,EA077,NA,,,, +Ii9,,1840,EA077,1,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,,EA077,NA,,,, +Ij10,,1900,EA077,1,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,,,EA077,NA,,,, +Ij3,,,EA077,NA,,,, +Ij4,,,EA077,NA,,,, +Ij5,,1900,EA077,1,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA077,4,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA077,4,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,,EA077,NA,,,, +Ij9,,,EA077,NA,,,, +Na1,,1930,EA077,9,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA077,1,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,,EA077,NA,,,, +Na12,,1950,EA077,1,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA077,4,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA077,9,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,,EA077,NA,,,, +Na16,,,EA077,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA077,9,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,,,EA077,NA,,,, +Na2,,1880,EA077,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,,,EA077,NA,,,, +Na21,,1900,EA077,9,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA077,9,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA077,9,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA077,4,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA077,4,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA077,9,Property is distributed in a potlatch except items previously promised to particular relatives,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA077,1,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,,EA077,NA,,,, +Na29,,1850,EA077,9,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA077,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA077,1,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA077,9,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA077,4,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,,,EA077,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA077,1,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA077,9,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,,,EA077,NA,,,, +Na37,,1880,EA077,1,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA077,9,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,,,EA077,NA,,,, +Na4,Upper Liard and Dease River Group,1920,EA077,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,,EA077,NA,,,, +Na41,,,EA077,NA,,,, +Na42,,,EA077,NA,,,, +Na43,,,EA077,NA,,,, +Na44,,,EA077,NA,,,, +Na45,,,EA077,NA,,,, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA077,1,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA077,1,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA077,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA077,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA077,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA077,4,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA077,NA,Inheritance reported as bilateral with a patrilineal bias,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA077,1,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA077,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA077,1,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA077,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,,EA077,NA,,,, +Nb16,,1860,EA077,9,Most of a man's property is given away or destroyed at his death,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA077,9,But originally property was given away to blood kin at a man's death,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,,EA077,NA,,,, +Nb19,,,EA077,NA,,,, +Nb2,Twana Tribe,1850,EA077,9,Distributed by siblings and children at a funeral potlatch,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA077,NA,But brothers share with sons,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA077,1,Brothers share with grown sons,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA077,4,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA077,4,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA077,1,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA077,1,But most property is destroyed at death,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA077,1,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA077,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,,EA077,NA,,,, +Nb29,,1860,EA077,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA077,4,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA077,NA,The property of a deceased man is distributed among all his near relatives,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA077,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA077,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA077,9,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,,EA077,NA,,,, +Nb35,,,EA077,NA,,,, +Nb36,,,EA077,NA,,,, +Nb37,,1860,EA077,9,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA077,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA077,9,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA077,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA077,1,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA077,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA077,4,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA077,9,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA077,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA077,9,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA077,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA077,1,But most property is destroyed at death,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA077,9,But eldest son inherited a few objects,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA077,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA077,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA077,9,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,,EA077,NA,,,, +Nc17,with special reference to those of Kalekau,1860,EA077,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA077,1,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA077,9,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA077,9,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA077,9,"But some valuables were inherited by sons, daughters, nephews, and nieces",driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA077,9,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA077,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA077,9,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,,,EA077,NA,,,, +Nc25,,,EA077,NA,,,, +Nc26,,,EA077,NA,,,, +Nc27,,1860,EA077,9,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,,EA077,NA,,,, +Nc29,,1770,EA077,1,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA077,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA077,1,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA077,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA077,9,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA077,9,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA077,4,But the widow took precedence over the eldest son,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA077,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA077,9,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA077,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA077,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA077,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA077,4,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA077,9,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,,EA077,NA,,,, +Nd11,,,EA077,NA,,,, +Nd12,,,EA077,NA,,,, +Nd13,,,EA077,NA,,,, +Nd14,,1860,EA077,NA,Distributed among relatives,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA077,NA,"Given away to close relatives, especially siblings",clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,,EA077,NA,,,, +Nd17,,,EA077,NA,,,, +Nd18,,,EA077,NA,,,, +Nd19,,,EA077,NA,,,, +Nd2,,1860,EA077,9,Unless promised to a kinsman before death,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA077,9,"""Inheritance was in the male line. Much property was given away after the funeral feast, and the remainder was usually distributed according to the previously expressed wishes of the owner""",curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,,EA077,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA077,9,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,,EA077,NA,,,, +Nd24,,1870,EA077,9,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,,EA077,NA,,,, +Nd26,,1870,EA077,9,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA077,9,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,,EA077,NA,,,, +Nd29,,,EA077,NA,,,, +Nd3,Havasupai Tribe,1870,EA077,9,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA077,9,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA077,9,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA077,9,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA077,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA077,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA077,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA077,9,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,,EA077,NA,,,, +Nd38,,,EA077,NA,,,, +Nd39,,,EA077,NA,,,, +Nd4,,1870,EA077,NA,Distributed among close male relatives,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA077,9,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,,EA077,NA,,,, +Nd42,,,EA077,NA,,,, +Nd43,,1860,EA077,9,"But some property is distributed to ""relatives""",harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA077,9,"But some property is distributed to ""relatives""",steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA077,9,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA077,9,"But sometimes personal property was distributed among ""friends of the natural heirs""",lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA077,9,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA077,9,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA077,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA077,1,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA077,9,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA077,9,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA077,9,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA077,9,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA077,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA077,9,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA077,9,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA077,9,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA077,9,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA077,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA077,9,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA077,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA077,9,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA077,9,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA077,9,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA077,9,But most property is destroyed or given away,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA077,9,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA077,9,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA077,9,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA077,1,But formerly seized by relatives,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA077,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA077,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA077,9,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA077,NA,But sacred bundles were inherited from Fa to So,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA077,9,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,,EA077,NA,,,, +Ne13,,1850,EA077,1,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,,EA077,NA,,,, +Ne15,,,EA077,NA,,,, +Ne16,,,EA077,NA,,,, +Ne17,,1860,EA077,NA,"Inheritance of horses said to follow ""no fixed rule"" but to exhibit a patrilineal tendency",lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA077,1,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,,EA077,NA,,,, +Ne2,,1870,EA077,9,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA077,9,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA077,NA,,,, +Ne3,Comanche Tribe,1870,EA077,9,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA077,1,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA077,9,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,,EA077,NA,,,, +Ne7,,1880,EA077,1,Entry follows Honigmann; Jenness reports that property was destroyed or given away,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,,EA077,NA,,,, +Ne9,,1860,EA077,9,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,,EA077,NA,,,, +Nf11,,1870,EA077,1,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA077,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA077,1,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA077,NA,,,, +Nf15,,,EA077,NA,,,, +Nf2,,1850,EA077,1,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA077,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA077,NA,,,, +Nf5,,1860,EA077,9,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA077,4,"Most property was inherited by brothers and sisters' sons, but the eldest son inherited medicine bundles",dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA077,9,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,,EA077,NA,,,, +Nf9,,,EA077,NA,,,, +Ng1,,,EA077,NA,,,, +Ng10,with special reference to the Seneca tribe,1750,EA077,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA077,NA,In the late period a man's property was divided among his own and his sister's children,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,,EA077,NA,,,, +Ng13,,,EA077,NA,,,, +Ng14,,,EA077,NA,,,, +Ng15,,,EA077,NA,,,, +Ng2,,,EA077,NA,,,, +Ng3,Upper division in Alabama,1750,EA077,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA077,1,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,,EA077,NA,,,, +Ng6,,,EA077,NA,,,, +Ng7,,,EA077,NA,,,, +Ng8,,1560,EA077,1,Entry follows Swanton; Brinton reports succession and inheritance from Fa to So,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,1920,EA077,1,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No1_Jan_1965, +Nh1,Central band,1880,EA077,9,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA077,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA077,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA077,1,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA077,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,,EA077,NA,,,, +Nh15,,1870,EA077,9,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA077,1,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA077,1,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA077,1,"But usually 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") today",beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA077,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,,EA077,NA,,,, +Nh20,,1860,EA077,9,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA077,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA077,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA077,1,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,,EA077,NA,,,, +Nh25,,1920,EA077,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA077,NA,,,, +Nh27,,,EA077,NA,,,, +Nh3,,1930,EA077,1,"But 'patrilineal by son(s)' (EA076 code ""7"") and 'equal distribution' (EA077 code ""1"") today",franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA077,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA077,9,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,,EA077,NA,,,, +Nh7,,1890,EA077,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA077,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,,EA077,NA,,,, +Ni1,,1930,EA077,1,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA077,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA077,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA077,9,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA077,9,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA077,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,,EA077,NA,,,, +Ni8,,,EA077,NA,,,, +Ni9,,,EA077,NA,,,, +Nj1,Ojitlan,1940,EA077,3,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA077,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA077,NA,,,, +Nj12,,,EA077,NA,,,, +Nj13,,,EA077,NA,,,, +Nj14,,,EA077,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA077,4,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA077,1,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,,EA077,NA,,,, +Nj5,,,EA077,NA,,,, +Nj6,,,EA077,NA,,,, +Nj7,with special reference to Ayutla,1930,EA077,1,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA077,NA,,,, +Nj9,,1960,EA077,1,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,,,EA077,NA,,,, +Sa10,,,EA077,NA,,,, +Sa11,,1880,EA077,1,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,,EA077,NA,,,, +Sa13,Town of Chichicastenango,1930,EA077,1,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA077,NA,,,, +Sa15,,,EA077,NA,,,, +Sa16,,,EA077,NA,,,, +Sa17,,,EA077,NA,,,, +Sa2,,,EA077,NA,,,, +Sa3,,1930,EA077,1,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,,,EA077,NA,,,, +Sa5,,1950,EA077,1,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA077,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,,EA077,NA,,,, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA077,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,,,EA077,NA,,,, +Sb1,Dominica Island,1650,EA077,NA,Probably matrilineal,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA077,1,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA077,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA077,1,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,,EA077,NA,,,, +Sb6,Goajiro Tribe,1940,EA077,1,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,,,EA077,NA,,,, +Sb8,,,EA077,NA,,,, +Sb9,,1930,EA077,1,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,,EA077,NA,,,, +Sc10,,,EA077,NA,,,, +Sc11,,,EA077,NA,,,, +Sc12,,,EA077,NA,,,, +Sc13,,,EA077,NA,,,, +Sc14,,,EA077,NA,,,, +Sc15,,,EA077,NA,,,, +Sc16,,,EA077,NA,,,, +Sc17,,,EA077,NA,,,, +Sc18,,1960,EA077,1,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA077,1,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,,,EA077,NA,,,, +Sc4,with special reference to the non-agricultural groups,1950,EA077,4,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,,EA077,NA,,,, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA077,1,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,,EA077,NA,,,, +Sc8,,,EA077,NA,,,, +Sc9,,,EA077,NA,,,, +Sd1,Cabrura village,1950,EA077,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA077,NA,,,, +Sd3,,,EA077,NA,,,, +Sd4,,,EA077,NA,,,, +Sd5,,,EA077,NA,,,, +Sd6,,,EA077,NA,,,, +Sd7,,1950,EA077,1,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,,EA077,NA,,,, +Sd9,,,EA077,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA077,9,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA077,NA,,,, +Se11,,,EA077,NA,,,, +Se12,,,EA077,NA,,,, +Se2,,1940,EA077,1,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA077,1,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA077,9,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA077,1,"But 'no inheritance ' (code ""9"") for clothing an ceremonial objects",goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,,EA077,NA,,,, +Se7,a mestizo group in lowland Bolivia,1950,EA077,4,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA077,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,,EA077,NA,,,, +Sf1,City and environs of Cuzco,1530,EA077,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA077,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,,,EA077,NA,,,, +Sf4,,1950,EA077,1,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA077,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA077,1,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,,EA077,NA,,,, +Sf8,,,EA077,NA,,,, +Sf9,,,EA077,NA,,,, +Sg1,Eastern and central,1870,EA077,9,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA077,1,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA077,9,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,,,EA077,NA,,,, +Sg5,,,EA077,NA,,,, +Sh1,,1860,EA077,9,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,,EA077,NA,,,, +Sh3,,,EA077,NA,,,, +Sh4,,1940,EA077,4,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA077,9,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,,EA077,NA,,,, +Sh7,,,EA077,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA077,9,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA077,NA,,,, +Si1,,,EA077,NA,,,, +Si10,,,EA077,NA,,,, +Si2,,,EA077,NA,,,, +Si3,,,EA077,NA,,,, +Si4,Cocozu Group,1940,EA077,9,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA077,9,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,,EA077,NA,,,, +Si7,,,EA077,NA,,,, +Si8,,,EA077,NA,,,, +Si9,,,EA077,NA,,,, +Sj1,,,EA077,NA,,,, +Sj10,,,EA077,NA,,,, +Sj11,Village of Sao Domingo,1958,EA077,9,"Aboriginally, but some objects are inherited today",mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,,EA077,NA,,,, +Sj3,Duque de Caxias Reservation,1910,EA077,9,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA077,1,Distribution among matrilineal kinsmen of both sexes,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,,,EA077,NA,,,, +Sj6,with special reference to the Guajajara subgroup,1930,EA077,1,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,,EA077,NA,,,, +Sj8,,,EA077,NA,,,, +Sj9,,,EA077,NA,,,, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA077,3,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA077,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA077,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA077,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA077,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA077,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA077,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA077,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA077,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA077,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA077,1,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA077,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA077,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA077,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA077,2,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA077,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA077,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,,,EA077,NA,,,, +ec13,,,EA077,NA,,,, +ec14,,,EA077,NA,,,, +ec15,,,EA077,NA,,,, +ec16,,,EA077,NA,,,, +ec17,,,EA077,NA,,,, +ec18,,,EA077,NA,,,, +ec19,,,EA077,NA,,,, +ec20,,,EA077,NA,,,, +ec21,,,EA077,NA,,,, +Aa1,Nyai Nyae region,1950,EA078,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,,,EA078,NA,,,, +Aa3,Gei/Khauan tribe,1840,EA078,4,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,,EA078,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA078,6,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,,EA078,NA,,,, +Aa7,,,EA078,NA,,,, +Aa8,,,EA078,NA,,,, +Aa9,,,EA078,NA,,,, +Ab1,,,EA078,NA,,,, +Ab10,,1936,EA078,6,But without penetration,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,,EA078,NA,,,, +Ab12,,,EA078,NA,,,, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA078,3,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA078,4,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,1860,EA078,2,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,,EA078,NA,,,, +Ab17,,,EA078,NA,,,, +Ab18,,,EA078,NA,,,, +Ab19,,,EA078,NA,,,, +Ab2,,,EA078,NA,,,, +Ab20,,,EA078,NA,,,, +Ab21a,,1930,EA078,6,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA078,NA,,,, +Ab22,,,EA078,NA,,,, +Ab3,,,EA078,NA,,,, +Ab4,,1920,EA078,6,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,,EA078,NA,,,, +Ab6,,1900,EA078,4,But without actual penetration,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,,,EA078,NA,,,, +Ab8,,,EA078,NA,,,, +Ab9,,,EA078,NA,,,, +Ac1,,1920,EA078,6,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA078,1,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA078,6,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,,EA078,NA,,,, +Ac13,,,EA078,NA,,,, +Ac14,,1900,EA078,6,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,,EA078,NA,,,, +Ac16,,1940,EA078,6,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,,,EA078,NA,,,, +Ac18,,,EA078,NA,,,, +Ac19,,,EA078,NA,,,, +Ac2,,,EA078,NA,,,, +Ac20,,,EA078,NA,,,, +Ac21,,,EA078,NA,,,, +Ac22,,,EA078,NA,,,, +Ac23,,,EA078,NA,,,, +Ac24,,,EA078,NA,,,, +Ac25,,,EA078,NA,,,, +Ac26,,,EA078,NA,,,, +Ac27,,,EA078,NA,,,, +Ac28,,,EA078,NA,,,, +Ac29,,,EA078,NA,,,, +Ac3,Zambia branch,1900,EA078,1,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA078,6,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,,EA078,NA,,,, +Ac32,,,EA078,NA,,,, +Ac33,,1940,EA078,6,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,,EA078,NA,,,, +Ac35,,,EA078,NA,,,, +Ac36,,,EA078,NA,,,, +Ac37,,,EA078,NA,,,, +Ac38,,,EA078,NA,,,, +Ac39,,,EA078,NA,,,, +Ac4,,,EA078,NA,,,, +Ac40,,1900,EA078,6,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,,EA078,NA,,,, +Ac42,,,EA078,NA,,,, +Ac43,,,EA078,NA,,,, +Ac5,,,EA078,NA,,,, +Ac6,,,EA078,NA,,,, +Ac7,,1920,EA078,4,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,,EA078,NA,,,, +Ac9,,,EA078,NA,,,, +Ad1,,,EA078,NA,,,, +Ad10,,,EA078,NA,,,, +Ad11,,,EA078,NA,,,, +Ad12,,1940,EA078,2,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA078,2,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA078,6,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,,EA078,NA,,,, +Ad16,,,EA078,NA,,,, +Ad17,,1920,EA078,4,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,,EA078,NA,,,, +Ad19,,,EA078,NA,,,, +Ad2,,,EA078,NA,,,, +Ad20,,1920,EA078,4,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,,EA078,NA,,,, +Ad22,,1950,EA078,6,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,,EA078,NA,,,, +Ad24,,,EA078,NA,,,, +Ad25,,,EA078,NA,,,, +Ad26,,,EA078,NA,,,, +Ad27,,,EA078,NA,,,, +Ad28,,,EA078,NA,,,, +Ad29,,,EA078,NA,,,, +Ad3,,1910,EA078,3,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,,EA078,NA,,,, +Ad31,,,EA078,NA,,,, +Ad32,,,EA078,NA,,,, +Ad33,,,EA078,NA,,,, +Ad34,,1910,EA078,4,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,,,EA078,NA,,,, +Ad36,,,EA078,NA,,,, +Ad37,,,EA078,NA,,,, +Ad38,,,EA078,NA,,,, +Ad39,,1950,EA078,2,,gray1963,EthnographicAtlas_1967_p69, +Ad4,,,EA078,NA,,,, +Ad40,,,EA078,NA,,,, +Ad41,,1930,EA078,6,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,,EA078,NA,,,, +Ad43,,,EA078,NA,,,, +Ad44,,,EA078,NA,,,, +Ad45,,,EA078,NA,,,, +Ad46,,,EA078,NA,,,, +Ad47,,1900,EA078,4,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,,EA078,NA,,,, +Ad49,,,EA078,NA,,,, +Ad5,,,EA078,NA,,,, +Ad50,,,EA078,NA,,,, +Ad51,,,EA078,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA078,1,But intercourse without penetration is practiced,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA078,3,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,,,EA078,NA,,,, +Ad9,,1900,EA078,4,But without penetration,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA078,6,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA078,2,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,,EA078,NA,,,, +Ae12,,,EA078,NA,,,, +Ae13,,,EA078,NA,,,, +Ae14,,,EA078,NA,,,, +Ae15,,,EA078,NA,,,, +Ae16,,,EA078,NA,,,, +Ae17,,1900,EA078,2,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA078,6,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA078,NA,,,, +Ae2,,,EA078,NA,,,, +Ae20,,1940,EA078,5,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,,EA078,NA,,,, +Ae22,,,EA078,NA,,,, +Ae23,,,EA078,NA,,,, +Ae24,,,EA078,NA,,,, +Ae25,,,EA078,NA,,,, +Ae26,,,EA078,NA,,,, +Ae27,,,EA078,NA,,,, +Ae28,,,EA078,NA,,,, +Ae29,,1900,EA078,6,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA078,6,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,,EA078,NA,,,, +Ae31,,1920,EA078,5,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,,EA078,NA,,,, +Ae33,,,EA078,NA,,,, +Ae34,,1920,EA078,2,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,,EA078,NA,,,, +Ae36,,,EA078,NA,,,, +Ae37,,,EA078,NA,,,, +Ae38,,,EA078,NA,,,, +Ae39,,1920,EA078,6,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA078,6,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,,EA078,NA,,,, +Ae41,,1940,EA078,1,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA078,6,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,,EA078,NA,,,, +Ae44,,1920,EA078,2,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,,EA078,NA,,,, +Ae46,,,EA078,NA,,,, +Ae47,,,EA078,NA,,,, +Ae48,,1930,EA078,4,After a period of chastity and before marriage,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,,EA078,NA,,,, +Ae5,,,EA078,NA,,,, +Ae50,,1920,EA078,1,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,,,EA078,NA,,,, +Ae52,,,EA078,NA,,,, +Ae53,,1920,EA078,1,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,,EA078,NA,,,, +Ae55,,,EA078,NA,,,, +Ae56,,,EA078,NA,,,, +Ae57,,,EA078,NA,,,, +Ae58,,1910,EA078,6,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA078,6,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA078,1,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA078,6,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA078,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,,EA078,NA,,,, +Af1,City and environs of Abomey,1890,EA078,2,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA078,3,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,,EA078,NA,,,, +Af12,,,EA078,NA,,,, +Af13,,,EA078,NA,,,, +Af14,,,EA078,NA,,,, +Af15,,1920,EA078,6,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA078,6,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA078,NA,,,, +Af18,,1900,EA078,3,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,,EA078,NA,,,, +Af2,,,EA078,NA,,,, +Af20,,,EA078,NA,,,, +Af21,,,EA078,NA,,,, +Af22,,1940,EA078,6,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA078,2,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,,EA078,NA,,,, +Af25,,,EA078,NA,,,, +Af26,,,EA078,NA,,,, +Af27,,,EA078,NA,,,, +Af28,,1910,EA078,2,,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,,EA078,NA,,,, +Af3,Kumasi State,1900,EA078,2,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA078,1,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA078,6,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,,,EA078,NA,,,, +Af33,,,EA078,NA,,,, +Af34,,,EA078,NA,,,, +Af35,with special reference to the Krobo,1940,EA078,5,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA078,6,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,,,EA078,NA,,,, +Af38,,,EA078,NA,,,, +Af39,,,EA078,NA,,,, +Af4,,,EA078,NA,,,, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA078,6,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,,EA078,NA,,,, +Af42,,,EA078,NA,,,, +Af43,,,EA078,NA,,,, +Af44,,,EA078,NA,,,, +Af45,,1900,EA078,6,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,,EA078,NA,,,, +Af47,,,EA078,NA,,,, +Af48,,,EA078,NA,,,, +Af49,,1940,EA078,6,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,,EA078,NA,,,, +Af50,,,EA078,NA,,,, +Af51,,,EA078,NA,,,, +Af52,,1920,EA078,6,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA078,NA,,,, +Af54,,1930,EA078,6,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,,EA078,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA078,6,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,,EA078,NA,,,, +Af58,,1900,EA078,2,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA078,3,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA078,6,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA078,2,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA078,6,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,,,EA078,NA,,,, +Ag10,,,EA078,NA,,,, +Ag11,,,EA078,NA,,,, +Ag12,,,EA078,NA,,,, +Ag13,,,EA078,NA,,,, +Ag14,,,EA078,NA,,,, +Ag15,,,EA078,NA,,,, +Ag16,,1930,EA078,6,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,1940,EA078,6,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA078,6,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA078,6,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,,,EA078,NA,,,, +Ag20,,1930,EA078,6,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA078,6,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA078,6,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,,EA078,NA,,,, +Ag24,,,EA078,NA,,,, +Ag25,,1900,EA078,2,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,,EA078,NA,,,, +Ag27,,,EA078,NA,,,, +Ag28,,,EA078,NA,,,, +Ag29,,,EA078,NA,,,, +Ag3,,,EA078,NA,,,, +Ag30,,,EA078,NA,,,, +Ag31,,1910,EA078,2,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA078,6,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,,EA078,NA,,,, +Ag34,,,EA078,NA,,,, +Ag35,,,EA078,NA,,,, +Ag36,,,EA078,NA,,,, +Ag37,,,EA078,NA,,,, +Ag38,,,EA078,NA,,,, +Ag39,,1910,EA078,6,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA078,4,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,,EA078,NA,,,, +Ag41,,,EA078,NA,,,, +Ag42,,,EA078,NA,,,, +Ag43,,,EA078,NA,,,, +Ag44,,,EA078,NA,,,, +Ag45,,,EA078,NA,,,, +Ag46,,,EA078,NA,,,, +Ag47,,,EA078,NA,,,, +Ag48,,1890,EA078,6,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,,EA078,NA,,,, +Ag5,,,EA078,NA,,,, +Ag50,,,EA078,NA,,,, +Ag51,,1940,EA078,6,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA078,6,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,,,EA078,NA,,,, +Ag54,,1910,EA078,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA078,6,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,,EA078,NA,,,, +Ag8,with special reference to the Coniagui,1910,EA078,6,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,,EA078,NA,,,, +Ah1,,,EA078,NA,,,, +Ah10,,,EA078,NA,,,, +Ah11,,,EA078,NA,,,, +Ah12,,,EA078,NA,,,, +Ah13,with special reference to the Liliwa,1930,EA078,6,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA078,2,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA078,6,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,,EA078,NA,,,, +Ah17,,,EA078,NA,,,, +Ah18,,,EA078,NA,,,, +Ah19,,1930,EA078,6,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,,EA078,NA,,,, +Ah20,,1920,EA078,3,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA078,NA,,,, +Ah22,,,EA078,NA,,,, +Ah23,,,EA078,NA,,,, +Ah24,,,EA078,NA,,,, +Ah25,,,EA078,NA,,,, +Ah26,,,EA078,NA,,,, +Ah27,,,EA078,NA,,,, +Ah28,,,EA078,NA,,,, +Ah29,,,EA078,NA,,,, +Ah3,Tar of Benue Province,1920,EA078,4,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,,EA078,NA,,,, +Ah31,,1910,EA078,1,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,,EA078,NA,,,, +Ah33,,,EA078,NA,,,, +Ah34,,,EA078,NA,,,, +Ah35,,1920,EA078,2,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,,EA078,NA,,,, +Ah37,,1920,EA078,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,,EA078,NA,,,, +Ah39,,1950,EA078,2,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA078,4,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,,EA078,NA,,,, +Ah6,,,EA078,NA,,,, +Ah7,,,EA078,NA,,,, +Ah8,,,EA078,NA,,,, +Ah9,,1920,EA078,6,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,,EA078,NA,,,, +Ai10,Nuba Hills,1940,EA078,6,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA078,6,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA078,6,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,,EA078,NA,,,, +Ai14,,1920,EA078,2,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p77, +Ai15,,,EA078,NA,,,, +Ai16,,1910,EA078,1,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,,EA078,NA,,,, +Ai18,,,EA078,NA,,,, +Ai19,,,EA078,NA,,,, +Ai2,,,EA078,NA,,,, +Ai20,,,EA078,NA,,,, +Ai21,,,EA078,NA,,,, +Ai22,,,EA078,NA,,,, +Ai23,,1920,EA078,6,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,,EA078,NA,,,, +Ai25,,,EA078,NA,,,, +Ai26,,,EA078,NA,,,, +Ai27,,1890,EA078,1,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA078,6,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA078,2,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA078,4,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA078,3,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,,EA078,NA,,,, +Ai32,,,EA078,NA,,,, +Ai33,,1940,EA078,6,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,,EA078,NA,,,, +Ai35,,1870,EA078,2,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,,EA078,NA,,,, +Ai37,,1940,EA078,1,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,,EA078,NA,,,, +Ai39,,,EA078,NA,,,, +Ai4,,,EA078,NA,,,, +Ai40,,,EA078,NA,,,, +Ai41,,,EA078,NA,,,, +Ai42,,,EA078,NA,,,, +Ai43,,,EA078,NA,,,, +Ai44,,,EA078,NA,,,, +Ai45,,,EA078,NA,,,, +Ai46,,,EA078,NA,,,, +Ai47,Northern division,1939,EA078,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,1920,EA078,2,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA078,3,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA078,3,"Entry follows Tessmann; Harttmann reports 'permitted, sanction if pregnancy' (code ""4"")",clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,,EA078,NA,,,, +Ai9,,,EA078,NA,,,, +Aj1,,,EA078,NA,,,, +Aj10,,1920,EA078,4,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,,EA078,NA,,,, +Aj12,,1920,EA078,4,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,1930,EA078,3,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,,EA078,NA,,,, +Aj15,,,EA078,NA,,,, +Aj16,,,EA078,NA,,,, +Aj17,,1890,EA078,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA078,2,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA078,6,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA078,6,But without actual penetration,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,,EA078,NA,,,, +Aj21,,1930,EA078,3,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,,EA078,NA,,,, +Aj23,,1950,EA078,3,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA078,6,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA078,5,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,,EA078,NA,,,, +Aj27,,,EA078,NA,,,, +Aj28,,1940,EA078,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA078,6,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,,EA078,NA,,,, +Aj30,,,EA078,NA,,,, +Aj31,,,EA078,NA,,,, +Aj4,,,EA078,NA,,,, +Aj5,,,EA078,NA,,,, +Aj6,,1940,EA078,6,But without actual penetration,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,,EA078,NA,,,, +Aj8,,1920,EA078,3,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA078,6,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA078,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,,EA078,NA,,,, +Ca11,,1890,EA078,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA078,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,,,EA078,NA,,,, +Ca14,,1950,EA078,2,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,,EA078,NA,,,, +Ca16,,1930,EA078,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,1950,EA078,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca18,,1940,EA078,2,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA078,1,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA078,3,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,,EA078,NA,,,, +Ca21,,,EA078,NA,,,, +Ca22,,,EA078,NA,,,, +Ca23,,,EA078,NA,,,, +Ca24,,,EA078,NA,,,, +Ca25,,,EA078,NA,,,, +Ca26,,,EA078,NA,,,, +Ca27,,1930,EA078,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,,EA078,NA,,,, +Ca29,,,EA078,NA,,,, +Ca3,,,EA078,NA,,,, +Ca30,Kafa Kingdom,1890,EA078,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA078,2,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA078,6,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA078,6,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,,EA078,NA,,,, +Ca35,,1930,EA078,6,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,,EA078,NA,,,, +Ca37,,,EA078,NA,,,, +Ca38,,,EA078,NA,,,, +Ca39,,,EA078,NA,,,, +Ca4,,,EA078,NA,,,, +Ca40,,1950,EA078,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA078,3,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA078,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA078,NA,,,, +Ca5,,,EA078,NA,,,, +Ca6,,1880,EA078,2,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA078,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,,EA078,NA,,,, +Ca9,,,EA078,NA,,,, +Cb1,,1940,EA078,6,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA078,6,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,,EA078,NA,,,, +Cb12,,,EA078,NA,,,, +Cb13,,,EA078,NA,,,, +Cb14,,,EA078,NA,,,, +Cb15,,,EA078,NA,,,, +Cb16,,,EA078,NA,,,, +Cb17,Jebel Marra,1880,EA078,6,"Entry follows Felkin, but Beaton reports 'prohibited, strongly sanctioned' (code ""2"")",barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,,EA078,NA,,,, +Cb19,,1870,EA078,1,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA078,3,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,,EA078,NA,,,, +Cb21,,,EA078,NA,,,, +Cb22,,1920,EA078,3,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA078,6,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA078,6,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA078,2,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA078,3,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,,EA078,NA,,,, +Cb28,,,EA078,NA,,,, +Cb29,,1920,EA078,6,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA078,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,,EA078,NA,,,, +Cb5,,,EA078,NA,,,, +Cb6,,,EA078,NA,,,, +Cb7,,,EA078,NA,,,, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA078,6,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,,,EA078,NA,,,, +Cc1,,,EA078,NA,,,, +Cc10,,,EA078,NA,,,, +Cc11,,,EA078,NA,,,, +Cc12,,,EA078,NA,,,, +Cc13,,1920,EA078,6,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA078,2,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA078,NA,,,, +Cc16,,,EA078,NA,,,, +Cc17,,,EA078,NA,,,, +Cc18,,,EA078,NA,,,, +Cc19,,,EA078,NA,,,, +Cc2,Nomads of Tibesti,1950,EA078,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,,,EA078,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA078,1,"Sexual morality is extremely lax, but girls marry so young that virginity at marriage is probably not uncommon",abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA078,2,,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA078,6,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,,EA078,NA,,,, +Cc7,Timbuctoo,1950,EA078,2,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,,EA078,NA,,,, +Cc9,Ahaggaren tribe,1920,EA078,3,"But Blanguernon reports 'prohibited, strongly sanctioned' (code ""2"")",benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,,,EA078,NA,,,, +Cd10,,,EA078,NA,,,, +Cd11,,,EA078,NA,,,, +Cd12,,1870,EA078,2,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA078,2,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,,EA078,NA,,,, +Cd15,,,EA078,NA,,,, +Cd16,,,EA078,NA,,,, +Cd17,,,EA078,NA,,,, +Cd18,,,EA078,NA,,,, +Cd19,,1920,EA078,2,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA078,2,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,,EA078,NA,,,, +Cd21,,,EA078,NA,,,, +Cd3,Entirety: Moroccan,1920,EA078,3,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,,EA078,NA,,,, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA078,2,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA078,6,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA078,2,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,,EA078,NA,,,, +Cd9,,,EA078,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA078,2,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA078,NA,,,, +Ce3,,,EA078,NA,,,, +Ce4,,,EA078,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA078,3,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA078,2,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,,,EA078,NA,,,, +Ce8,with special reference to the village of Vera,1934,EA078,3,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA078,3,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,,,EA078,NA,,,, +Cf3,,1930,EA078,3,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA078,3,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA078,2,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA078,5,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,,EA078,NA,,,, +Cg3,County Clare,1930,EA078,2,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA078,4,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,,EA078,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA078,2,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA078,NA,,,, +Ch11,Viriatino Village,1955,EA078,3,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA078,6,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,,,EA078,NA,,,, +Ch4,,,EA078,NA,,,, +Ch5,,,EA078,NA,,,, +Ch6,,,EA078,NA,,,, +Ch7,,,EA078,NA,,,, +Ch8,,1940,EA078,2,,hanzeli1955,EthnographicAtlas_1967_p85, +Ch9,,,EA078,NA,,,, +Ci1,,,EA078,NA,,,, +Ci10,Vicinity of Erevan,1900,EA078,6,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA078,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA078,2,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,,EA078,NA,,,, +Ci3,,,EA078,NA,,,, +Ci4,,,EA078,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA078,2,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,,EA078,NA,,,, +Ci7,,,EA078,NA,,,, +Ci8,,,EA078,NA,,,, +Ci9,,,EA078,NA,,,, +Cj1,,,EA078,NA,,,, +Cj10,,,EA078,NA,,,, +Cj2,Unspecified,1920,EA078,2,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA078,2,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA078,2,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA078,2,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,,,EA078,NA,,,, +Cj7,,,EA078,NA,,,, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA078,2,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA078,2,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA078,2,,bordiend; wilber1964,EthnographicAtlas_1967_p89, +Ea10,with special reference to the more nomadic groups,1950,EA078,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA078,2,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,,EA078,NA,,,, +Ea13,Mohla Village,1950,EA078,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA078,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA078,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,,EA078,NA,,,, +Ea5,,,EA078,NA,,,, +Ea6,Nomadic branch,1958,EA078,2,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA078,2,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA078,NA,,,, +Ea9,,1950,EA078,2,,vreeland1957,EthnographicAtlas_1967_p89, +Eb1,Great Horde,1910,EA078,3,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA078,4,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,,,EA078,NA,,,, +Eb4,,,EA078,NA,,,, +Eb5,,,EA078,NA,,,, +Eb6,,,EA078,NA,,,, +Eb7,,,EA078,NA,,,, +Eb8,,,EA078,NA,,,, +Ec1,Sakhalin Island,1920,EA078,3,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,,,EA078,NA,,,, +Ec11,,,EA078,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA078,6,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA078,6,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA078,1,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA078,2,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,,,EA078,NA,,,, +Ec7,Saru Basin in Hokkaido,1900,EA078,6,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,,EA078,NA,,,, +Ec9,,,EA078,NA,,,, +Ed1,Kanghwa Island,1950,EA078,3,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA078,NA,,,, +Ed13,,,EA078,NA,,,, +Ed14,,,EA078,NA,,,, +Ed15a,,,EA078,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA078,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA078,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA078,6,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,,,EA078,NA,,,, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA078,6,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA078,2,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA078,NA,,,, +Ed7,,1950,EA078,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA078,2,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA078,6,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA078,6,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,Hunza State,1930,EA078,2,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p89, +Ee3,Lingthem and vicinity,1930,EA078,6,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,,,EA078,NA,,,, +Ee5,,,EA078,NA,,,, +Ee6,with special reference to those of Khumbu,1950,EA078,6,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA078,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA078,2,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA078,2,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA078,NA,,,, +Ef11,Village and environs of Senapur,1945,EA078,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA078,1,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA078,NA,,,, +Ef4,,,EA078,NA,,,, +Ef5,,1900,EA078,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,,EA078,NA,,,, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA078,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA078,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA078,1,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA078,6,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA078,3,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA078,NA,,,, +Eg12,,,EA078,NA,,,, +Eg13,Bastar State,1941,EA078,6,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA078,6,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,,,EA078,NA,,,, +Eg3,Hill Maria,1938,EA078,6,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA078,6,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA078,2,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,,,EA078,NA,,,, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA078,6,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,,EA078,NA,,,, +Eg9,,1930,EA078,6,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA078,6,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA078,NA,,,, +Eh2,,1900,EA078,6,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA078,6,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA078,3,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA078,6,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA078,6,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA078,6,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA078,6,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA078,6,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA078,4,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA078,NA,,,, +Ei11,,1910,EA078,4,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,,EA078,NA,,,, +Ei13,,1910,EA078,3,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA078,6,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA078,NA,,,, +Ei16,,1910,EA078,2,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA078,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA078,6,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,,EA078,NA,,,, +Ei2,,,EA078,NA,,,, +Ei20,,,EA078,NA,,,, +Ei3,Nondwin Village,1950,EA078,3,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA078,4,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA078,4,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA078,2,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,,EA078,NA,,,, +Ei8,,,EA078,NA,,,, +Ei9,,,EA078,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA078,6,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,,,EA078,NA,,,, +Ej11,,,EA078,NA,,,, +Ej12,,1960,EA078,3,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,,EA078,NA,,,, +Ej14,with special reference to the eastern Semai,1960,EA078,6,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA078,6,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA078,2,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,,,EA078,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA078,3,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA078,2,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA078,2,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA078,NA,,,, +Ej7,,1950,EA078,6,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA078,2,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA078,3,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA078,2,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,,EA078,NA,,,, +Ia11,,,EA078,NA,,,, +Ia12,,,EA078,NA,,,, +Ia13,,,EA078,NA,,,, +Ia14,,,EA078,NA,,,, +Ia15,,,EA078,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA078,3,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA078,NA,,,, +Ia18,,,EA078,NA,,,, +Ia2,,1950,EA078,6,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA078,6,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,,,EA078,NA,,,, +Ia5,,,EA078,NA,,,, +Ia6,,,EA078,NA,,,, +Ia7,,,EA078,NA,,,, +Ia8,,1900,EA078,6,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,,,EA078,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA078,3,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA078,2,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA078,5,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA078,6,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA078,6,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,,EA078,NA,,,, +Ib7,with special reference to those of North Pageh,1920,EA078,6,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,with special reference to the Ridan group,1900,EA078,6,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA078,NA,,,, +Ic1,Borongloe,1940,EA078,3,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA078,NA,,,, +Ic11,,,EA078,NA,,,, +Ic12,,,EA078,NA,,,, +Ic13,,,EA078,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA078,3,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p97, +Ic3,,,EA078,NA,,,, +Ic4,,,EA078,NA,,,, +Ic5,,,EA078,NA,,,, +Ic6,,,EA078,NA,,,, +Ic7,,,EA078,NA,,,, +Ic8,,,EA078,NA,,,, +Ic9,,,EA078,NA,,,, +Id1,Alice Springs and environs,1900,EA078,1,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA078,1,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA078,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA078,NA,,,, +Id13,,1930,EA078,1,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA078,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA078,1,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,,EA078,NA,,,, +Id5,,,EA078,NA,,,, +Id6,,,EA078,NA,,,, +Id7,,,EA078,NA,,,, +Id8,,,EA078,NA,,,, +Id9,,,EA078,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA078,4,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA078,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA078,4,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA078,4,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA078,NA,,,, +Ie14,,,EA078,NA,,,, +Ie15,,,EA078,NA,,,, +Ie16,,1940,EA078,2,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA078,6,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA078,3,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA078,2,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,,EA078,NA,,,, +Ie20,,1900,EA078,6,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,,EA078,NA,,,, +Ie22,,,EA078,NA,,,, +Ie23,,,EA078,NA,,,, +Ie24,,1870,EA078,2,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA078,6,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,,EA078,NA,,,, +Ie27,,,EA078,NA,,,, +Ie28,,1940,EA078,2,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,,,EA078,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA078,1,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA078,NA,,,, +Ie31,,1950,EA078,6,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,,EA078,NA,,,, +Ie33,,,EA078,NA,,,, +Ie34,,,EA078,NA,,,, +Ie35,,,EA078,NA,,,, +Ie36,,,EA078,NA,,,, +Ie37,,,EA078,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA078,3,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA078,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA078,4,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA078,1,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA078,NA,,,, +Ie7,with special reference to the Mae group,1950,EA078,2,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,,,EA078,NA,,,, +Ie9,,1920,EA078,4,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA078,6,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA078,NA,,,, +If11,,1860,EA078,6,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,,EA078,NA,,,, +If13,,,EA078,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA078,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA078,6,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,,EA078,NA,,,, +If17,with special reference to the island of Jaluit,1900,EA078,6,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA078,6,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA078,6,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA078,6,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA078,6,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA078,6,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA078,2,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA078,2,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,,EA078,NA,,,, +Ig1,Northeastern group,1940,EA078,3,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA078,NA,,,, +Ig11,,,EA078,NA,,,, +Ig12,with special reference to the Varisi,1900,EA078,3,,scheffler1965,EthnographicAtlas_1967_p101, +Ig13,,1900,EA078,6,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,,EA078,NA,,,, +Ig15,,,EA078,NA,,,, +Ig16,,,EA078,NA,,,, +Ig17,,,EA078,NA,,,, +Ig18,,,EA078,NA,,,, +Ig19,,,EA078,NA,,,, +Ig2,Kiriwina Island,1910,EA078,6,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA078,2,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,,,EA078,NA,,,, +Ig3,,1930,EA078,4,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,,,EA078,NA,,,, +Ig5,,1920,EA078,6,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA078,2,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,,EA078,NA,,,, +Ig8,,,EA078,NA,,,, +Ig9,Peri Village,1920,EA078,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,,EA078,NA,,,, +Ih10,,,EA078,NA,,,, +Ih11,,,EA078,NA,,,, +Ih12,,,EA078,NA,,,, +Ih13,,,EA078,NA,,,, +Ih14,,,EA078,NA,,,, +Ih2,,,EA078,NA,,,, +Ih3,Bunlap Village,1950,EA078,2,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA078,4,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA078,NA,,,, +Ih6,,1890,EA078,3,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p101, +Ih7,,,EA078,NA,,,, +Ih8,with special reference to the village of Nakaroka,1940,EA078,3,,quain1949,EthnographicAtlas_1967_p101, +Ih9,Graciosa Bay,1930,EA078,2,,davenport1964,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA078,6,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA078,6,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA078,3,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA078,6,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA078,3,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA078,4,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA078,6,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA078,6,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,,,EA078,NA,,,, +Ii6,with special reference to Atafu,1900,EA078,6,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA078,6,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA078,6,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA078,6,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA078,3,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,,EA078,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA078,6,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA078,6,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA078,6,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA078,6,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA078,6,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA078,6,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA078,6,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA078,6,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA078,1,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA078,3,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,,EA078,NA,,,, +Na12,,1950,EA078,6,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,,EA078,NA,,,, +Na14,,1880,EA078,6,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,,EA078,NA,,,, +Na16,,1860,EA078,6,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA078,4,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,,,EA078,NA,,,, +Na2,,1880,EA078,6,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA078,4,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA078,3,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA078,3,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA078,6,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA078,6,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA078,6,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA078,2,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA078,4,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,,EA078,NA,,,, +Na29,,1850,EA078,1,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA078,5,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA078,6,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA078,4,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA078,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,,,EA078,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA078,6,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,,EA078,NA,,,, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA078,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA078,4,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA078,2,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA078,2,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA078,6,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA078,6,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA078,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,,,EA078,NA,,,, +Na43,,,EA078,NA,,,, +Na44,,1910,EA078,6,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA078,3,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA078,6,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,,EA078,NA,,,, +Na7,,,EA078,NA,,,, +Na8,Shageluk Village,1880,EA078,3,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA078,3,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA078,4,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA078,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA078,2,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA078,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA078,2,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA078,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA078,2,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA078,2,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA078,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,,EA078,NA,,,, +Nb19,,,EA078,NA,,,, +Nb2,Twana Tribe,1850,EA078,2,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA078,3,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,,EA078,NA,,,, +Nb22,with special reference to the Chilkat,1880,EA078,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,,EA078,NA,,,, +Nb24,,,EA078,NA,,,, +Nb25,,1860,EA078,4,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA078,2,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA078,2,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,,EA078,NA,,,, +Nb29,,,EA078,NA,,,, +Nb3,,1890,EA078,2,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA078,1,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA078,3,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,,,EA078,NA,,,, +Nb33,,1860,EA078,3,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA078,3,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA078,3,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA078,2,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,,EA078,NA,,,, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA078,2,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA078,4,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,,EA078,NA,,,, +Nb5,,,EA078,NA,,,, +Nb6,,1870,EA078,2,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,,EA078,NA,,,, +Nb8,,1880,EA078,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA078,3,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA078,3,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA078,4,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA078,2,"Or possibly 'prohibited, but weakly sanctioned' (code ""3""); data insufficient",gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,,,EA078,NA,,,, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA078,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,,,EA078,NA,,,, +Nc15,,1860,EA078,3,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,,EA078,NA,,,, +Nc17,with special reference to those of Kalekau,1860,EA078,3,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,,,EA078,NA,,,, +Nc19,,,EA078,NA,,,, +Nc2,,1850,EA078,3,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA078,6,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,,EA078,NA,,,, +Nc22,,,EA078,NA,,,, +Nc23,,,EA078,NA,,,, +Nc24,,,EA078,NA,,,, +Nc25,,,EA078,NA,,,, +Nc26,,,EA078,NA,,,, +Nc27,,,EA078,NA,,,, +Nc28,,,EA078,NA,,,, +Nc29,,,EA078,NA,,,, +Nc3,,,EA078,NA,,,, +Nc30,,,EA078,NA,,,, +Nc31,,,EA078,NA,,,, +Nc32,,,EA078,NA,,,, +Nc33,,,EA078,NA,,,, +Nc34,,,EA078,NA,,,, +Nc4,,1860,EA078,2,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,,,EA078,NA,,,, +Nc6,,,EA078,NA,,,, +Nc7,,1850,EA078,3,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA078,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA078,3,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA078,2,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA078,3,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA078,2,"Division among close relatives, including cousins",ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA078,3,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA078,3,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA078,2,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA078,3,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,,EA078,NA,,,, +Nd17,,,EA078,NA,,,, +Nd18,,,EA078,NA,,,, +Nd19,,1860,EA078,2,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA078,6,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA078,4,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,,EA078,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA078,3,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,,EA078,NA,,,, +Nd24,,1870,EA078,1,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,,EA078,NA,,,, +Nd26,,,EA078,NA,,,, +Nd27,,,EA078,NA,,,, +Nd28,,,EA078,NA,,,, +Nd29,,,EA078,NA,,,, +Nd3,,,EA078,NA,,,, +Nd30,,1870,EA078,3,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,,EA078,NA,,,, +Nd32,,,EA078,NA,,,, +Nd33,,,EA078,NA,,,, +Nd34,,,EA078,NA,,,, +Nd35,,,EA078,NA,,,, +Nd36,,,EA078,NA,,,, +Nd37,,,EA078,NA,,,, +Nd38,,,EA078,NA,,,, +Nd39,,,EA078,NA,,,, +Nd4,,1870,EA078,3,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,,EA078,NA,,,, +Nd41,,,EA078,NA,,,, +Nd42,,,EA078,NA,,,, +Nd43,,1860,EA078,6,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,,EA078,NA,,,, +Nd45,,1860,EA078,4,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA078,3,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,,EA078,NA,,,, +Nd48,with special reference to those of Deep Creek,1860,EA078,3,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA078,3,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,,EA078,NA,,,, +Nd50,,,EA078,NA,,,, +Nd51,,,EA078,NA,,,, +Nd52,,,EA078,NA,,,, +Nd53,,1860,EA078,6,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,,,EA078,NA,,,, +Nd55,,,EA078,NA,,,, +Nd56,,1860,EA078,3,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,,EA078,NA,,,, +Nd58,,,EA078,NA,,,, +Nd59,,,EA078,NA,,,, +Nd6,,,EA078,NA,,,, +Nd60,,,EA078,NA,,,, +Nd61,,,EA078,NA,,,, +Nd62,,,EA078,NA,,,, +Nd63,with special reference to the Eastern Bannock,1860,EA078,3,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA078,6,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA078,3,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,,,EA078,NA,,,, +Nd67,,1870,EA078,3,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA078,3,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA078,6,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA078,2,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA078,1,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,,EA078,NA,,,, +Ne11,,1870,EA078,3,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA078,2,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA078,4,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA078,3,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,,,EA078,NA,,,, +Ne16,,,EA078,NA,,,, +Ne17,,,EA078,NA,,,, +Ne18,,1850,EA078,4,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA078,6,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA078,3,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,,EA078,NA,,,, +Ne21,,,EA078,NA,,,, +Ne3,,,EA078,NA,,,, +Ne4,,,EA078,NA,,,, +Ne5,,1860,EA078,2,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,,EA078,NA,,,, +Ne7,,1880,EA078,2,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA078,3,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA078,2,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,,EA078,NA,,,, +Nf11,,,EA078,NA,,,, +Nf12,,1850,EA078,6,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA078,6,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA078,NA,,,, +Nf15,,,EA078,NA,,,, +Nf2,,,EA078,NA,,,, +Nf3,Omaha Tribe,1850,EA078,3,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA078,NA,,,, +Nf5,,,EA078,NA,,,, +Nf6,,,EA078,NA,,,, +Nf7,,,EA078,NA,,,, +Nf8,,,EA078,NA,,,, +Nf9,,,EA078,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA078,6,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA078,6,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,,EA078,NA,,,, +Ng12,,,EA078,NA,,,, +Ng13,,,EA078,NA,,,, +Ng14,,,EA078,NA,,,, +Ng15,,,EA078,NA,,,, +Ng2,,,EA078,NA,,,, +Ng3,Upper division in Alabama,1750,EA078,1,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,,EA078,NA,,,, +Ng5,,,EA078,NA,,,, +Ng6,with special reference to the Munsee,1700,EA078,6,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA078,6,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,,EA078,NA,,,, +Ng9,,,EA078,NA,,,, +Nh1,Central band,1880,EA078,2,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,,EA078,NA,,,, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA078,6,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA078,6,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,,EA078,NA,,,, +Nh14,,,EA078,NA,,,, +Nh15,,,EA078,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA078,3,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA078,4,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA078,6,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA078,3,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA078,4,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,,EA078,NA,,,, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA078,6,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,,EA078,NA,,,, +Nh23,,1870,EA078,3,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,,EA078,NA,,,, +Nh25,,,EA078,NA,,,, +Nh26,,,EA078,NA,,,, +Nh27,,,EA078,NA,,,, +Nh3,,1930,EA078,3,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,,,EA078,NA,,,, +Nh5,,,EA078,NA,,,, +Nh6,,1890,EA078,4,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,,EA078,NA,,,, +Nh8,,,EA078,NA,,,, +Nh9,,,EA078,NA,,,, +Ni1,,1930,EA078,6,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,,EA078,NA,,,, +Ni3,,,EA078,NA,,,, +Ni4,,,EA078,NA,,,, +Ni5,,1570,EA078,2,,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,,EA078,NA,,,, +Ni7,,,EA078,NA,,,, +Ni8,,,EA078,NA,,,, +Ni9,,,EA078,NA,,,, +Nj1,,,EA078,NA,,,, +Nj10,,,EA078,NA,,,, +Nj11,,,EA078,NA,,,, +Nj12,,,EA078,NA,,,, +Nj13,,,EA078,NA,,,, +Nj14,,,EA078,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA078,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,,,EA078,NA,,,, +Nj4,,,EA078,NA,,,, +Nj5,,,EA078,NA,,,, +Nj6,,,EA078,NA,,,, +Nj7,with special reference to Ayutla,1930,EA078,3,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,,EA078,NA,,,, +Nj9,,1960,EA078,3,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA078,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA078,2,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,,EA078,NA,,,, +Sa12,,,EA078,NA,,,, +Sa13,Town of Chichicastenango,1930,EA078,2,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA078,NA,,,, +Sa15,,,EA078,NA,,,, +Sa16,,,EA078,NA,,,, +Sa17,,,EA078,NA,,,, +Sa2,,,EA078,NA,,,, +Sa3,,,EA078,NA,,,, +Sa4,,,EA078,NA,,,, +Sa5,,1950,EA078,4,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,,EA078,NA,,,, +Sa7,,,EA078,NA,,,, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA078,2,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA078,1,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA078,5,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,,EA078,NA,,,, +Sb3,,,EA078,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA078,4,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA078,6,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA078,3,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,,,EA078,NA,,,, +Sb8,,1520,EA078,6,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA078,3,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,,EA078,NA,,,, +Sc10,,,EA078,NA,,,, +Sc11,,,EA078,NA,,,, +Sc12,,,EA078,NA,,,, +Sc13,,,EA078,NA,,,, +Sc14,,,EA078,NA,,,, +Sc15,,,EA078,NA,,,, +Sc16,,,EA078,NA,,,, +Sc17,,1950,EA078,3,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA078,3,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,,EA078,NA,,,, +Sc3,Barama River,1930,EA078,6,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA078,3,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,,EA078,NA,,,, +Sc6,,,EA078,NA,,,, +Sc7,,1950,EA078,6,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,,EA078,NA,,,, +Sc9,,,EA078,NA,,,, +Sd1,Cabrura village,1950,EA078,5,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA078,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,,EA078,NA,,,, +Sd4,,,EA078,NA,,,, +Sd5,,,EA078,NA,,,, +Sd6,,,EA078,NA,,,, +Sd7,,1950,EA078,6,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA078,6,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA078,3,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA078,6,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA078,NA,,,, +Se11,,1960,EA078,3,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA078,NA,,,, +Se2,,1940,EA078,3,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA078,3,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA078,6,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA078,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA078,3,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,,,EA078,NA,,,, +Se8,Upper Inuya River,1950,EA078,6,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA078,6,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA078,2,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA078,4,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,,,EA078,NA,,,, +Sf4,,,EA078,NA,,,, +Sf5,,,EA078,NA,,,, +Sf6,,1540,EA078,6,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,,EA078,NA,,,, +Sf8,,,EA078,NA,,,, +Sf9,,,EA078,NA,,,, +Sg1,Eastern and central,1870,EA078,3,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA078,4,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA078,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA078,3,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,,,EA078,NA,,,, +Sh1,,1860,EA078,6,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA078,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA078,2,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA078,6,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA078,6,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,,EA078,NA,,,, +Sh7,,,EA078,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA078,6,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA078,NA,,,, +Si1,Kejara,1920,EA078,6,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,,EA078,NA,,,, +Si2,Village of Vanivani,1930,EA078,6,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,,,EA078,NA,,,, +Si4,Cocozu Group,1940,EA078,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,,EA078,NA,,,, +Si6,,,EA078,NA,,,, +Si7,,,EA078,NA,,,, +Si8,,,EA078,NA,,,, +Si9,,,EA078,NA,,,, +Sj1,,,EA078,NA,,,, +Sj10,,,EA078,NA,,,, +Sj11,Village of Sao Domingo,1958,EA078,1,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,,EA078,NA,,,, +Sj3,Duque de Caxias Reservation,1910,EA078,6,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA078,3,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA078,1,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,,,EA078,NA,,,, +Sj7,,1920,EA078,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA078,6,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA078,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA078,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA078,4,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA078,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA078,4,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA078,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA078,5,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA078,3,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA078,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA078,2,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA078,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA078,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA078,2,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA078,2,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA078,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA078,6,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA078,4,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA078,3,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA078,6,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA078,6,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA078,6,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA078,3,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA078,6,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA078,4,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA078,3,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA078,4,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA078,6,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA078,4,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA079,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA079,2,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA079,2,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA079,2,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA079,2,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA079,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA079,1,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA079,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA079,2,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA079,2,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA079,2,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA079,2,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA079,2,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA079,2,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA079,2,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,1860,EA079,2,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,1930,EA079,2,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA079,2,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA079,2,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA079,2,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA079,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA079,2,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA079,5,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA079,NA,,,, +Ab22,,,EA079,NA,,,, +Ab3,Ruling Luyana,1890,EA079,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA079,2,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA079,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA079,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA079,2,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA079,2,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA079,2,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA079,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA079,2,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA079,5,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA079,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA079,2,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA079,5,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA079,5,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA079,5,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA079,5,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA079,5,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,1880,EA079,5,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA079,5,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,1920,EA079,5,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA079,5,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA079,5,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA079,5,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA079,5,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA079,5,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA079,5,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA079,5,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA079,5,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,1930,EA079,5,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA079,2,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA079,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA079,5,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA079,5,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA079,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA079,2,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,,EA079,NA,,,, +Ac36,,1920,EA079,2,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA079,2,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA079,2,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA079,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA079,5,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA079,5,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA079,2,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA079,2,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA079,NA,,,, +Ac5,,1920,EA079,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA079,5,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,1920,EA079,2,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA079,5,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA079,2,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA079,5,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA079,2,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA079,5,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA079,2,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA079,5,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA079,5,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA079,2,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA079,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA079,2,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA079,2,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA079,5,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA079,2,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA079,2,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA079,2,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA079,2,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA079,5,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA079,6,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA079,5,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA079,6,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA079,2,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA079,2,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA079,5,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA079,2,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA079,5,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,1910,EA079,5,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA079,5,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA079,2,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA079,2,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA079,2,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA079,2,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA079,2,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA079,2,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA079,2,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA079,5,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,1950,EA079,5,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA079,2,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA079,2,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,1900,EA079,2,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA079,2,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,1920,EA079,2,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA079,2,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA079,2,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA079,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA079,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA079,5,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA079,5,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA079,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA079,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA079,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA079,5,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA079,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA079,2,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA079,2,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA079,5,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA079,5,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA079,2,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA079,2,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA079,2,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA079,5,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA079,5,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA079,2,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA079,5,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA079,5,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA079,5,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA079,5,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA079,5,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA079,5,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA079,5,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA079,5,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA079,5,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA079,5,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA079,5,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA079,5,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA079,5,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA079,5,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA079,5,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA079,5,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA079,5,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA079,2,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA079,5,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA079,5,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA079,5,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA079,5,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA079,5,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA079,5,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA079,5,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA079,5,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA079,5,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA079,5,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA079,5,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA079,5,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA079,5,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA079,5,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA079,5,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,1900,EA079,6,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA079,5,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA079,5,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA079,6,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA079,5,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA079,5,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA079,5,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA079,5,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,1950,EA079,6,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,1930,EA079,5,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA079,2,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA079,2,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA079,5,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA079,2,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA079,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA079,5,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA079,5,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA079,5,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA079,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA079,5,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA079,2,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA079,2,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA079,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA079,5,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA079,2,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA079,6,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA079,6,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA079,2,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA079,6,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA079,5,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA079,6,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA079,5,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA079,6,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA079,6,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA079,6,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,,EA079,NA,,,, +Af28,,1910,EA079,2,,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA079,2,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA079,6,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA079,2,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA079,2,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA079,5,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA079,6,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA079,6,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA079,5,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA079,5,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA079,5,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA079,5,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA079,5,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA079,5,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA079,5,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA079,5,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA079,6,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA079,5,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,1900,EA079,5,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA079,5,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA079,5,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA079,2,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA079,2,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA079,5,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA079,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA079,2,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA079,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA079,5,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,1950,EA079,2,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA079,2,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,,EA079,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA079,2,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA079,2,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA079,2,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA079,6,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA079,5,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA079,2,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA079,5,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA079,6,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA079,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA079,5,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA079,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA079,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA079,2,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA079,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA079,2,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,1940,EA079,2,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA079,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA079,3,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA079,2,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA079,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA079,2,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA079,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA079,2,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA079,2,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA079,6,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA079,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA079,6,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA079,6,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA079,6,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA079,6,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA079,5,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA079,5,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA079,2,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA079,6,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA079,5,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA079,2,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA079,5,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA079,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA079,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA079,5,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA079,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA079,5,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA079,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA079,6,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA079,5,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA079,2,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA079,2,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA079,2,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA079,2,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA079,2,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA079,2,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA079,6,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA079,2,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA079,2,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA079,2,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA079,2,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA079,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA079,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA079,6,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA079,2,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA079,2,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA079,2,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA079,2,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA079,2,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,1920,EA079,2,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA079,2,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA079,2,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA079,2,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA079,2,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA079,2,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA079,2,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA079,3,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA079,2,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA079,3,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,1920,EA079,2,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA079,2,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA079,2,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA079,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA079,2,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA079,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA079,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA079,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA079,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA079,2,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA079,2,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA079,2,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA079,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA079,2,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA079,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA079,2,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA079,2,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA079,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA079,2,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA079,2,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA079,2,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA079,2,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA079,2,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA079,2,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA079,2,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA079,2,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA079,2,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA079,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA079,5,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA079,2,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA079,2,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA079,2,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p77, +Ai15,,1900,EA079,2,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA079,2,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA079,2,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA079,2,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA079,2,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA079,2,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA079,2,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA079,2,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,1890,EA079,2,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA079,5,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA079,2,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA079,2,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA079,2,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,1890,EA079,2,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA079,2,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA079,2,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA079,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA079,2,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,1920,EA079,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA079,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA079,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA079,2,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA079,2,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA079,2,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA079,2,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA079,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA079,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA079,NA,,,, +Ai40,,1940,EA079,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA079,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA079,2,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA079,2,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,1920,EA079,2,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p77, +Ai45,,1930,EA079,2,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA079,2,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA079,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,1920,EA079,2,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA079,2,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA079,2,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA079,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA079,2,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA079,2,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA079,5,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA079,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,1920,EA079,2,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,1930,EA079,2,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA079,2,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA079,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA079,2,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA079,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA079,2,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA079,2,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA079,3,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA079,2,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,1930,EA079,2,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,1930,EA079,2,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA079,2,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA079,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA079,2,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA079,2,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,1920,EA079,2,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA079,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA079,2,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA079,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA079,NA,,,, +Aj31,,,EA079,NA,,,, +Aj4,,1920,EA079,2,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA079,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA079,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA079,2,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA079,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA079,2,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA079,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA079,2,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA079,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA079,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA079,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,1950,EA079,2,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,1930,EA079,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA079,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,1950,EA079,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca18,,1940,EA079,2,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA079,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA079,2,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA079,2,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA079,2,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA079,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA079,2,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,1950,EA079,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA079,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA079,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA079,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA079,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA079,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA079,2,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA079,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA079,2,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA079,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA079,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA079,5,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA079,5,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA079,5,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA079,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA079,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA079,2,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA079,2,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA079,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA079,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA079,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA079,NA,,,, +Ca5,,1930,EA079,2,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,1880,EA079,2,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA079,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA079,2,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,1890,EA079,5,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA079,2,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA079,2,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA079,2,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA079,2,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA079,3,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA079,2,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA079,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA079,2,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA079,2,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA079,2,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA079,2,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA079,2,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA079,2,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA079,2,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA079,6,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA079,2,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA079,2,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA079,2,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA079,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA079,2,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA079,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA079,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA079,3,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA079,5,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA079,2,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA079,2,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA079,2,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA079,2,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA079,2,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA079,5,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA079,5,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA079,5,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA079,2,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA079,5,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA079,2,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA079,6,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA079,3,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,1930,EA079,5,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA079,3,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA079,5,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA079,5,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,with special reference to the more nomadic northern groups,1910,EA079,NA,Tents,adeler1939; tauxier1912,EthnographicAtlas_1967_p85, +Cc3,inhabitants of the oasis of Siwa,1920,EA079,5,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA079,6,,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA079,5,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA079,5,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA079,5,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA079,5,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA079,5,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA079,6,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA079,6,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA079,5,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA079,6,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA079,5,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA079,5,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA079,5,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA079,6,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA079,5,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA079,5,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA079,6,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA079,5,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA079,5,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA079,6,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA079,6,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA079,5,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA079,5,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA079,6,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA079,5,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA079,5,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA079,5,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA079,5,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA079,5,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,City and environs of Rome,100,EA079,5,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA079,5,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p85,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA079,5,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA079,5,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA079,5,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA079,5,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA079,5,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA079,5,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA079,5,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA079,5,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA079,5,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA079,5,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA079,5,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA079,5,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA079,5,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA079,5,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA079,6,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA079,NA,,,, +Ch11,Viriatino Village,1955,EA079,5,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA079,5,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA079,5,,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA079,5,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA079,5,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA079,5,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,1930,EA079,5,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,1940,EA079,5,,hanzeli1955,EthnographicAtlas_1967_p85, +Ch9,,1930,EA079,5,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA079,2,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA079,5,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA079,5,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA079,5,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA079,5,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA079,5,,gadzhieva1958,EthnographicAtlas_1967_p85, +Ci4,,1920,EA079,5,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA079,5,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA079,6,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,1900,EA079,5,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p85, +Ci8,,1850,EA079,5,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA079,5,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA079,6,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA079,5,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA079,5,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA079,5,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA079,5,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA079,5,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA079,5,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA079,5,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA079,5,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA079,5,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA079,5,,bordiend; wilber1964,EthnographicAtlas_1967_p89, +Ea10,with special reference to the more nomadic groups,1950,EA079,NA,Tents,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA079,6,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA079,5,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA079,6,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA079,5,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA079,6,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA079,5,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA079,6,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA079,5,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA079,5,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,1920,EA079,5,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,1950,EA079,5,,vreeland1957,EthnographicAtlas_1967_p89, +Eb1,Great Horde,1910,EA079,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA079,5,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA079,2,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA079,5,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA079,5,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA079,2,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA079,5,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA079,NA,,,, +Ec1,Sakhalin Island,1920,EA079,5,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA079,2,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA079,2,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA079,5,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA079,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA079,2,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA079,4,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA079,2,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA079,5,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA079,5,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA079,2,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA079,5,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA079,5,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA079,NA,,,, +Ed14,,,EA079,NA,,,, +Ed15a,,,EA079,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA079,5,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA079,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA079,5,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA079,5,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA079,5,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA079,5,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA079,5,,kulp1925,EthnographicAtlas_1967_p89, +Ed7,,1950,EA079,5,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA079,6,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA079,5,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA079,5,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,Hunza State,1930,EA079,5,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p89, +Ee3,Lingthem and vicinity,1930,EA079,5,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA079,5,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA079,5,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA079,5,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA079,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA079,5,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA079,6,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA079,NA,,,, +Ef11,Village and environs of Senapur,1945,EA079,5,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA079,6,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA079,NA,,,, +Ef4,,1920,EA079,5,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA079,5,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA079,5,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA079,5,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA079,5,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA079,5,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA079,2,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA079,5,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA079,NA,,,, +Eg12,,,EA079,NA,,,, +Eg13,Bastar State,1941,EA079,5,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA079,5,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA079,5,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA079,5,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA079,5,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA079,5,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA079,6,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA079,5,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA079,5,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA079,5,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA079,5,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA079,NA,,,, +Eh2,,1900,EA079,5,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA079,5,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,with special reference to the Rock Vedda,1900,EA079,NA,Preferably caves and rock shelters,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA079,2,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA079,5,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA079,5,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA079,5,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA079,5,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA079,5,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA079,5,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA079,5,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA079,5,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA079,5,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA079,5,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA079,NA,,,, +Ei16,,1910,EA079,5,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA079,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA079,5,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA079,5,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA079,5,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA079,NA,,,, +Ei3,Nondwin Village,1950,EA079,5,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA079,5,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA079,5,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA079,5,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA079,5,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA079,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,1880,EA079,5,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p93, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA079,5,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA079,5,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA079,5,,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA079,5,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA079,5,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA079,5,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA079,5,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA079,5,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA079,3,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA079,5,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA079,6,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA079,5,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,of the Mergui Archipelago,1920,EA079,NA,Houseboats,carrapiett1909; white1922,EthnographicAtlas_1967_p93, +Ej7,,1950,EA079,5,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA079,5,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA079,5,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA079,5,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA079,5,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,1930,EA079,5,,mabuchi1960,EthnographicAtlas_1967_p93, +Ia12,,1950,EA079,5,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,Tawi-Tawi and adjacent islands,1960,EA079,NA,Houseboats,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA079,5,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA079,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA079,5,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA079,NA,,,, +Ia18,,,EA079,NA,,,, +Ia2,,1950,EA079,5,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA079,5,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA079,5,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA079,5,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA079,5,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA079,5,,fox1954,EthnographicAtlas_1967_p93, +Ia8,,1900,EA079,5,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA079,5,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA079,5,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA079,5,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA079,6,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA079,5,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA079,5,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA079,5,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA079,5,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,with special reference to the Ridan group,1900,EA079,5,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA079,NA,,,, +Ic1,Borongloe,1940,EA079,5,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA079,5,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA079,5,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA079,5,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA079,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA079,5,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p97, +Ic3,with special reference to the Mountain Belu,1950,EA079,5,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,1920,EA079,5,,kruyt1921; wetering1925,Ethnology_Vol2_No1_Jan_1963, +Ic5,Bare'e subgroup,1910,EA079,5,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA079,5,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA079,5,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA079,5,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA079,5,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA079,5,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA079,1,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA079,5,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA079,NA,,,, +Id13,,,EA079,NA,,,, +Id2,,1930,EA079,5,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,Tiwi Tribe: Melville Island,1920,EA079,NA,"The dwelling is ""nothing more than a few piled-up tree branches"" or a crude bark shelter",basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p97, +Id4,,,EA079,NA,,,, +Id5,,,EA079,NA,,,, +Id6,,,EA079,NA,,,, +Id7,,,EA079,NA,,,, +Id8,,1830,EA079,1,,roth1890,EthnographicAtlas_1967_p97, +Id9,,,EA079,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA079,5,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA079,5,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA079,3,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA079,5,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA079,5,,landtman1927,EthnographicAtlas_1967_p97, +Ie14,,,EA079,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA079,5,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA079,5,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA079,2,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA079,2,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA079,5,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA079,5,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA079,5,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA079,5,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA079,5,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA079,5,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA079,5,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA079,5,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA079,2,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,1910,EA079,5,,thurnwald1916,EthnographicAtlas_1967_p101, +Ie28,,1940,EA079,5,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA079,5,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA079,5,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA079,5,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA079,2,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA079,5,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA079,5,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA079,NA,,,, +Ie35,,1930,EA079,5,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA079,NA,,,, +Ie37,,,EA079,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA079,2,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA079,5,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA079,5,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA079,3,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA079,5,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA079,5,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA079,5,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA079,5,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA079,5,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA079,NA,,,, +If11,,1860,EA079,5,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,1940,EA079,5,,mason1954,EthnographicAtlas_1967_p101, +If13,,,EA079,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA079,5,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA079,5,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,1960,EA079,5,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA079,5,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA079,5,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA079,5,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA079,5,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA079,5,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA079,5,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA079,5,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA079,5,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA079,5,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA079,5,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,1950,EA079,5,,schwartz1964,EthnographicAtlas_1967_p101, +Ig11,,1920,EA079,5,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,,,EA079,NA,,,, +Ig13,,1900,EA079,5,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA079,5,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA079,NA,,,, +Ig16,,,EA079,NA,,,, +Ig17,,,EA079,NA,,,, +Ig18,,,EA079,NA,,,, +Ig19,,,EA079,NA,,,, +Ig2,Kiriwina Island,1910,EA079,5,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA079,5,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA079,5,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA079,5,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA079,5,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA079,5,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA079,5,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,1950,EA079,5,,chowning1957; goodenough1962,EthnographicAtlas_1967_p101, +Ig8,,,EA079,NA,,,, +Ig9,Peri Village,1920,EA079,5,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA079,5,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,,,EA079,NA,,,, +Ih11,,,EA079,NA,,,, +Ih12,,,EA079,NA,,,, +Ih13,,,EA079,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA079,5,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA079,5,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA079,5,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA079,5,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA079,2,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,1890,EA079,5,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p101, +Ih7,,1910,EA079,2,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA079,5,,quain1949,EthnographicAtlas_1967_p101, +Ih9,,,EA079,NA,,,, +Ii1,with special reference to American Samoa,1920,EA079,3,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA079,5,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA079,3,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA079,3,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA079,3,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA079,5,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA079,5,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA079,5,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA079,5,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA079,5,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA079,5,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA079,3,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA079,5,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA079,5,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,,EA079,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA079,5,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA079,5,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA079,5,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA079,5,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA079,5,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA079,5,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA079,5,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA079,3,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA079,2,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA079,5,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA079,4,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA079,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA079,2,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA079,3,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA079,2,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA079,2,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA079,2,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA079,5,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA079,2,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA079,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA079,3,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA079,3,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA079,2,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA079,5,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA079,5,But winter houses were formerly dome-shaped with sod roofs,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA079,5,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA079,5,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA079,2,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA079,2,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA079,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA079,2,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA079,2,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA079,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA079,2,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA079,5,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA079,2,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA079,3,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA079,2,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA079,2,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA079,5,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA079,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA079,5,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA079,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,Prairie Potawatomi,1760,EA079,2,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p105, +Na43,,1920,EA079,2,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA079,2,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA079,NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA079,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA079,5,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA079,2,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA079,5,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA079,5,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA079,5,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA079,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA079,5,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA079,5,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA079,5,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA079,5,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA079,5,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA079,5,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA079,5,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA079,5,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA079,5,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA079,5,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA079,5,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA079,5,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA079,5,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA079,5,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA079,5,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA079,5,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA079,5,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA079,2,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA079,5,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA079,5,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA079,5,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA079,5,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA079,5,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA079,5,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA079,2,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA079,5,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA079,5,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA079,5,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA079,2,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA079,5,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA079,2,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA079,5,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA079,5,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA079,5,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA079,5,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA079,5,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA079,5,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA079,2,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA079,5,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA079,2,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA079,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA079,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA079,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA079,2,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA079,2,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA079,2,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA079,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA079,2,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA079,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA079,2,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA079,2,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA079,2,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA079,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA079,3,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA079,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA079,2,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA079,2,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA079,2,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA079,2,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA079,2,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA079,2,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA079,5,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA079,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA079,2,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA079,3,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA079,5,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA079,2,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA079,2,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA079,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA079,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA079,2,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA079,3,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA079,2,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA079,2,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA079,3,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA079,3,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA079,2,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA079,3,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA079,2,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA079,2,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA079,2,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA079,3,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA079,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA079,3,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA079,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA079,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA079,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA079,2,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA079,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA079,2,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA079,2,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA079,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA079,2,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA079,5,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA079,2,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA079,2,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA079,3,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA079,2,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA079,2,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA079,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA079,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA079,2,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA079,2,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA079,NA,"Caves or circular windbreaks of brush, but no houses",malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p113, +Nd49,including the Kaiparowits band,1860,EA079,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA079,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA079,2,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA079,2,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA079,2,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA079,2,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA079,2,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA079,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA079,5,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA079,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA079,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA079,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA079,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA079,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA079,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA079,2,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA079,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA079,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA079,2,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA079,2,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA079,2,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA079,5,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA079,5,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA079,2,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA079,2,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA079,2,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA079,2,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA079,2,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA079,2,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA079,2,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA079,2,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA079,2,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA079,2,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA079,2,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA079,2,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA079,2,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA079,2,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA079,NA,,,, +Ne3,Comanche Tribe,1870,EA079,2,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA079,2,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA079,2,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA079,2,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA079,2,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA079,2,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA079,2,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA079,2,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA079,2,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA079,2,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA079,2,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA079,2,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA079,NA,,,, +Nf2,,1850,EA079,5,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA079,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA079,5,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA079,2,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA079,2,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA079,5,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA079,2,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,1870,EA079,5,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p117, +Ng1,Bear and Cord Subtribes,1640,EA079,5,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA079,5,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA079,5,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA079,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA079,NA,,,, +Ng14,,,EA079,NA,,,, +Ng15,,,EA079,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA079,5,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA079,5,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA079,5,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA079,5,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA079,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA079,5,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA079,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA079,NA,,,, +Nh1,Central band,1880,EA079,2,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA079,5,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA079,5,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA079,5,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA079,5,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA079,5,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA079,2,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA079,2,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA079,5,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA079,5,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA079,5,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA079,5,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,1860,EA079,5,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA079,5,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA079,2,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA079,3,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA079,2,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA079,5,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA079,NA,,,, +Nh27,,,EA079,NA,,,, +Nh3,,1930,EA079,2,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA079,5,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA079,2,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA079,5,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA079,5,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA079,5,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA079,5,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA079,5,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA079,2,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA079,5,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA079,5,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA079,5,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA079,2,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA079,5,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA079,NA,,,, +Ni9,,,EA079,NA,,,, +Nj1,Ojitlan,1940,EA079,5,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA079,5,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA079,NA,,,, +Nj12,,,EA079,NA,,,, +Nj13,,,EA079,NA,,,, +Nj14,,,EA079,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA079,5,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA079,5,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,1940,EA079,5,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p121, +Nj5,,,EA079,NA,,,, +Nj6,with special reference to San Mateo,1950,EA079,5,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA079,5,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA079,5,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA079,5,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA079,5,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA079,5,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,,EA079,NA,,,, +Sa12,,1948,EA079,5,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA079,5,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA079,NA,,,, +Sa15,,,EA079,NA,,,, +Sa16,,,EA079,NA,,,, +Sa17,,,EA079,NA,,,, +Sa2,,,EA079,NA,,,, +Sa3,,1930,EA079,5,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA079,2,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA079,2,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA079,5,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,1940,EA079,5,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA079,5,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA079,5,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA079,5,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA079,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA079,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA079,5,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA079,5,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA079,5,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,with special reference to the Pariri,1950,EA079,5,,wilbert1961b,EthnographicAtlas_1967_p121, +Sb8,,1520,EA079,2,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA079,5,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA079,5,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,,EA079,NA,,,, +Sc11,,1930,EA079,5,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p121, +Sc12,,1910,EA079,5,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,1950,EA079,2,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA079,NA,,,, +Sc15,,1910,EA079,2,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA079,2,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA079,5,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA079,5,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA079,2,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA079,5,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA079,5,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA079,3,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA079,5,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA079,5,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA079,2,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,1950,EA079,5,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p121, +Sd1,Cabrura village,1950,EA079,5,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA079,5,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,1920,EA079,2,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,1950,EA079,5,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA079,5,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA079,5,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA079,2,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA079,5,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA079,2,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA079,5,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA079,5,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA079,5,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA079,NA,,,, +Se2,,1940,EA079,3,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA079,3,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA079,3,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA079,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA079,5,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA079,5,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA079,5,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA079,3,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA079,5,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA079,5,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA079,5,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA079,5,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA079,5,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA079,5,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA079,5,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA079,NA,,,, +Sf9,,,EA079,NA,,,, +Sg1,Eastern and central,1870,EA079,2,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA079,5,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA079,1,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA079,1,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA079,2,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA079,2,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA079,5,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA079,5,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA079,5,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA079,2,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA079,5,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,1900,EA079,5,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA079,5,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,Those in contact with mission,1890,EA079,NA,Windbreaks of mats supported by sticks,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p125, +Si1,Kejara,1920,EA079,5,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA079,3,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA079,3,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA079,3,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA079,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA079,5,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA079,5,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA079,3,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA079,5,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA079,NA,,,, +Sj1,,1950,EA079,5,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,Taquapiri,1950,EA079,5,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA079,2,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA079,5,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA079,5,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA079,5,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA079,2,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA079,5,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA079,5,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA079,5,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA079,3,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA079,5,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA079,5,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA079,5,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA079,5,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA079,5,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA079,5,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA079,5,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA079,5,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA079,5,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA079,5,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA079,5,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA079,5,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA079,5,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA079,5,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA079,5,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA079,5,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA079,5,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA079,2,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA079,5,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA079,3,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA079,5,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA079,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA079,5,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA079,5,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA079,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA079,5,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA079,5,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA008,7,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA008,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA008,2,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA008,4,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA008,2,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA008,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA008,2,Polygyny is preferably sororal,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA008,2,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA008,7,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA008,7,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA008,7,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA008,5,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA008,7,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA008,4,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA008,5,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA008,5,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA008,7,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA008,5,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA008,4,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA008,5,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA008,8,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA008,5,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA008,7,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA008,7,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,,EA008,NA,,,, +Ab3,Ruling Luyana,1890,EA008,5,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA008,8,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA008,5,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA008,8,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA008,7,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA008,5,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA008,5,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA008,7,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA008,5,"But families are reported to be loosely aggregated around ""a sororal extended family core""",bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA008,7,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA008,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA008,2,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA008,2,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA008,5,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA008,5,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA008,5,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA008,7,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,,EA008,NA,,,, +Ac2,,1920,EA008,5,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA008,5,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA008,5,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA008,5,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA008,5,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA008,5,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA008,5,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA008,5,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA008,5,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA008,5,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA008,7,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA008,4,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA008,7,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA008,5,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA008,5,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA008,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA008,2,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA008,2,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA008,4,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA008,5,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA008,5,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA008,7,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA008,7,"As an alternative to a high bride-price and avunculocal residence, a very small bride-price may be paid; in which case residence is usually alternately uxorilocal and avunculocal for periods of 5-6 years each",tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA008,5,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA008,7,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA008,7,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA008,5,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA008,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA008,5,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA008,8,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA008,5,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA008,5,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA008,1,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA008,5,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA008,5,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA008,5,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA008,8,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA008,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA008,5,"Or perhaps code ""7"", i.e., small extended families (made up of polygynous units with same co-wives pattern)",chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA008,4,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA008,5,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA008,5,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA008,5,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA008,5,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA008,5,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA008,5,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA008,5,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA008,7,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA008,7,Extended families are inferred from the large tembe dwellings,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA008,6,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA008,7,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA008,5,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA008,5,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA008,5,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA008,5,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA008,5,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA008,8,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA008,8,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA008,2,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA008,8,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA008,5,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA008,5,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA008,7,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA008,2,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA008,2,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA008,5,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA008,7,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA008,2,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA008,5,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA008,5,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA008,5,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA008,5,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA008,5,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA008,5,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA008,7,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA008,5,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA008,7,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA008,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA008,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA008,5,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA008,5,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA008,7,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA008,5,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA008,5,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA008,5,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA008,5,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA008,5,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA008,5,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA008,7,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA008,5,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA008,5,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA008,5,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA008,5,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA008,5,"Extended families are possibly present, though not specifically reported",grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA008,5,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA008,7,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA008,7,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA008,7,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA008,8,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA008,8,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA008,5,"Extended families may be present, though not specifically reported",heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA008,5,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA008,5,Entry follows Smith; Bertrand implies extended families,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA008,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA008,8,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA008,7,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA008,5,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA008,5,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA008,5,But extended families possibly occur,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA008,8,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA008,5,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA008,2,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA008,8,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA008,5,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA008,8,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA008,8,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA008,8,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA008,7,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA008,2,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA008,5,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA008,5,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA008,8,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA008,5,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA008,8,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA008,5,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA008,5,"Sometimes code ""7"", i.e., small extended families (made up of polygynous units with same co-wives pattern)",mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA008,7,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA008,5,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA008,7,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA008,5,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA008,7,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA008,5,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA008,7,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA008,7,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA008,7,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA008,7,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA008,5,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA008,5,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA008,5,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA008,7,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA008,5,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA008,7,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA008,5,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA008,8,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA008,5,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA008,8,But the group occupying a compound is a nuclear or polygynous family,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA008,8,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA008,7,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA008,4,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA008,8,"Entry follows Ruel and Schuster; Staschewski reports code ""5"", indendent polygynous units (with non-sororal co-wives in separate dwellings)",ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA008,8,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA008,5,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA008,8,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA008,8,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA008,7,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA008,8,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA008,4,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA008,7,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA008,6,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA008,8,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA008,8,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA008,5,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA008,8,"In Murdock (1966a) this was coded this as ""polygynous, usual co-wives pattern"" (code ""5""), with the comment ""Entry follows an earlier report by Temple; Gunn and Conant report extended families (code ""8"") made up of polygynous units of non-sororal co-wives in separate dwellings (EA009 code ""5"")"". In the EA (Murdock 1967), the codes for EA008 and EA009 changed to the present codes.",gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA008,7,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA008,7,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA008,8,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA008,7,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA008,8,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA008,8,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA008,8,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA008,4,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA008,8,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA008,7,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA008,8,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA008,7,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA008,7,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA008,4,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA008,4,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA008,7,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA008,8,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA008,7,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA008,8,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA008,7,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA008,5,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA008,5,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA008,5,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA008,7,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA008,8,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA008,7,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA008,8,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA008,8,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA008,5,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA008,7,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA008,5,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA008,7,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA008,8,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA008,8,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA008,7,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA008,8,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA008,8,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA008,8,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA008,5,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA008,5,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA008,7,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA008,7,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA008,7,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA008,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA008,7,"Entry follows Nogueira; Bernatzik reports code ""1"", independent nuclear families, monogamous",bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA008,4,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA008,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA008,8,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA008,8,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA008,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA008,2,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA008,8,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA008,8,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA008,8,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA008,7,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA008,8,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA008,8,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA008,8,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA008,8,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA008,8,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA008,8,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA008,8,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA008,8,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA008,7,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA008,8,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA008,8,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA008,8,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA008,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA008,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA008,8,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA008,7,Or fraternal joint families,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA008,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA008,8,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA008,8,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA008,8,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA008,4,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA008,7,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA008,8,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA008,5,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA008,8,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA008,5,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA008,8,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA008,8,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA008,7,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA008,8,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA008,4,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA008,7,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA008,5,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA008,8,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA008,2,But earlier sources report extended families,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA008,8,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA008,7,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA008,8,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA008,8,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA008,8,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA008,7,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA008,5,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA008,7,"Entry follows Harris; Gunn and Conant report code ""5"", indendent polygynous units (with non-sororal co-wives in separate dwellings)",gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA008,5,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA008,7,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA008,5,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA008,7,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA008,8,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA008,7,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA008,8,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA008,5,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA008,8,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,,EA008,NA,,,, +Ah25,,1920,EA008,8,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA008,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA008,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA008,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA008,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA008,8,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA008,8,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA008,8,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA008,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA008,7,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA008,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA008,5,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA008,7,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA008,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA008,5,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA008,5,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA008,8,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74,"Assume Murdock comment refers to Col 12, not Col 14 as stated in Gray (1999)" +Ah5,,1930,EA008,7,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA008,8,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA008,7,"Or alternatively code ""6"", minimal (stem) extended families with occasional polygyny",hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA008,7,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA008,8,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA008,4,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA008,5,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA008,5,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA008,5,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA008,8,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA008,7,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA008,5,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA008,5,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA008,5,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA008,7,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA008,5,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA008,2,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA008,6,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA008,5,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA008,5,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA008,5,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA008,5,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA008,5,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA008,5,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA008,5,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA008,5,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA008,2,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA008,5,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA008,5,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA008,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA008,8,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA008,8,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA008,5,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA008,5,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA008,5,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA008,8,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA008,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA008,2,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA008,7,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA008,8,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA008,5,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA008,2,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA008,5,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA008,5,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA008,5,But a group of brothers with their families form a hamlet,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA008,2,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA008,5,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA008,5,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA008,5,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA008,5,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA008,5,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA008,7,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA008,5,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA008,5,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA008,8,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA008,5,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA008,5,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA008,5,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA008,5,"Or possibly code ""7"", i.e., small extended families (made up of polygynous units with same co-wives pattern)",huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA008,2,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA008,7,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA008,6,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA008,5,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA008,5,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA008,5,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA008,8,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,,EA008,NA,,,, +Aj23,,1950,EA008,5,But the band is essentially an extended family,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA008,5,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA008,5,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA008,5,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA008,5,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA008,5,But extended families tend to form units within a camp,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA008,5,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA008,7,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA008,7,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,,EA008,NA,,,, +Aj4,,1920,EA008,6,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA008,7,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA008,7,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA008,2,"Formerly code ""5"", indendent polygynous units (with non-sororal co-wives in separate dwellings)",hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA008,5,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA008,5,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA008,6,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA008,7,"Entry follows Lewis; Paulitschke reports code ""5"", indendent polygynous units (with non-sororal co-wives in separate dwellings)",hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA008,5,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA008,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA008,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA008,5,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA008,5,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA008,5,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA008,5,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA008,5,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA008,8,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA008,7,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA008,5,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA008,8,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA008,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA008,5,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA008,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA008,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA008,NA,,,, +Ca27,,1930,EA008,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA008,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA008,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA008,1,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA008,4,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA008,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA008,5,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA008,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA008,2,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA008,2,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA008,7,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA008,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA008,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA008,7,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA008,2,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA008,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA008,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA008,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA008,NA,,,, +Ca5,,1930,EA008,2,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA008,7,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA008,8,The extended family occupies a hamlet,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,1940,EA008,7,,leslau1950; shack1963,EthnographicAtlas_1967_p78, +Ca9,,1890,EA008,5,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA008,8,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA008,7,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA008,5,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,,EA008,NA,,,, +Cb13,,1930,EA008,4,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA008,4,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA008,7,The extended family is the camp group,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA008,4,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA008,8,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA008,8,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA008,5,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA008,7,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA008,4,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA008,5,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA008,8,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA008,8,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA008,5,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA008,8,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA008,7,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA008,8,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA008,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA008,7,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA008,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA008,4,"Extended families are quite possible, though unreported",reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA008,4,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA008,8,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA008,5,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA008,5,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA008,7,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA008,7,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA008,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA008,1,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA008,1,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA008,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA008,2,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA008,NA,,,, +Cc16,,1930,EA008,4,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA008,7,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA008,1,But the camp group is an extended family,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA008,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA008,5,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA008,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA008,7,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA008,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA008,1,But polygyny is practiced by the Bella serfs,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA008,8,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA008,2,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA008,1,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA008,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA008,2,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA008,8,Extended families are suggested rather than attested,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA008,8,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA008,7,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA008,8,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA008,8,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA008,7,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA008,2,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA008,2,But the band is a patrilocal extended family,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA008,2,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA008,7,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA008,7,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA008,4,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA008,8,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA008,8,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA008,7,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA008,7,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA008,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA008,2,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA008,8,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA008,1,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA008,7,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA008,6,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA008,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA008,6,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA008,1,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA008,1,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA008,1,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA008,1,"But code ""6"", minimal (stem) extended families is ideal, though having an actual incidence of only 30 per cent",carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA008,1,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA008,7,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA008,1,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA008,1,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA008,1,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA008,7,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA008,7,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA008,6,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA008,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA008,1,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA008,7,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA008,1,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA008,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA008,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA008,6,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA008,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA008,7,"Formerly code ""8"", large extended families",sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA008,6,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA008,6,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA008,8,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA008,7,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA008,8,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA008,8,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA008,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA008,8,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA008,2,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA008,2,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA008,7,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA008,7,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA008,8,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA008,7,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA008,8,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA008,8,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA008,7,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA008,7,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA008,5,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA008,7,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA008,2,But concubinage occurred,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA008,2,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA008,2,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA008,1,But commonly Fm elsewhere in Lebanon,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA008,7,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA008,7,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA008,7,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA008,7,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA008,7,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA008,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA008,7,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA008,2,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA008,7,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA008,2,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA008,7,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA008,2,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA008,7,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,,EA008,NA,,,, +Ea9,,1950,EA008,8,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA008,7,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA008,7,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA008,6,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA008,7,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA008,7,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA008,8,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA008,8,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA008,7,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA008,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA008,2,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA008,2,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA008,7,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA008,6,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA008,7,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA008,8,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA008,6,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA008,2,"Formerly code ""2"", independent nuclear families, occasional polygyny",batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA008,1,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA008,7,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA008,6,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA008,7,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA008,6,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA008,7,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA008,6,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA008,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA008,7,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA008,2,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA008,8,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA008,2,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA008,6,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA008,7,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA008,6,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA008,7,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA008,6,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA008,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA008,7,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA008,7,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA008,6,Polygyny is also practiced to some extent,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA008,8,"General nonsororal polygyny prevails, but information is lacking on family organization",biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA008,3,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA008,7,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA008,2,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA008,7,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,,,EA008,NA,,,, +Ef11,Village and environs of Senapur,1945,EA008,6,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA008,8,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA008,8,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA008,4,But extended families are land-holding units and sometimes residential units as well,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA008,7,General nonsororal polygyny but insufficient data on family organization,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA008,7,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA008,7,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA008,7,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA008,2,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA008,1,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA008,7,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA008,8,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA008,2,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA008,7,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA008,2,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA008,7,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA008,8,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA008,3,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA008,7,"But formerly large extended families (code ""8"") made up of independent polyandrous units (EA009=code ""7"")",emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA008,8,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA008,1,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA008,7,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA008,4,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA008,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA008,7,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA008,2,Polygyny was general before its abolition in 1878,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA008,7,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA008,7,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA008,2,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA008,1,But extended families are often found in well-to-do families,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA008,5,"But McLeod reports large extended families (code ""8"") made up of polygynous units of non-sororal co-wives in separate dwellings (EA009=code ""5"")",decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA008,8,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA008,7,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA008,6,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA008,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA008,2,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA008,4,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA008,1,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA008,1,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA008,2,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA008,2,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA008,7,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA008,2,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA008,2,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA008,4,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA008,6,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA008,1,"Or often organized as minimal (stem) extended families (code ""6"")",brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA008,2,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA008,7,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA008,6,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA008,1,But large communal dwellings in many hill sections,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA008,8,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA008,2,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA008,2,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA008,8,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA008,6,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA008,6,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA008,7,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA008,8,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA008,2,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA008,2,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA008,2,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA008,2,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA008,7,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA008,2,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA008,2,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA008,2,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA008,7,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA008,2,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA008,6,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA008,7,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA008,1,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA008,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA008,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA008,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA008,2,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA008,7,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA008,2,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA008,1,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA008,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA008,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA008,2,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA008,2,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA008,6,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA008,2,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA008,1,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA008,7,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA008,6,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA008,2,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA008,7,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA008,7,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA008,2,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA008,8,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA008,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA008,2,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA008,2,But families are grouped in communal dwellings,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA008,2,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA008,8,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA008,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA008,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA008,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA008,2,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA008,8,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA008,4,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA008,8,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA008,7,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA008,7,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA008,8,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA008,6,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA008,5,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA008,5,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA008,4,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA008,2,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA008,5,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA008,5,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA008,7,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA008,5,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA008,5,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA008,5,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA008,4,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,1830,EA008,2,,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA008,2,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA008,7,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA008,7,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p94, +Ie11,,1950,EA008,6,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA008,4,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA008,8,A localized lineage occupies a communal dwelling,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA008,2,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA008,2,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA008,8,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA008,NA,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA008,7,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA008,1,But the sexes live segregated in men's and women's houses,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA008,5,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA008,2,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA008,7,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA008,7,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA008,7,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA008,4,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA008,4,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA008,2,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA008,1,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA008,2,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA008,2,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA008,4,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA008,7,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA008,5,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA008,1,"But aboriginally code ""4"" (polygynous, with non-sororal co-wives in same dwelling)",groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA008,2,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA008,2,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA008,8,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA008,2,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA008,2,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA008,5,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA008,2,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA008,4,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA008,4,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA008,8,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA008,2,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA008,4,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA008,2,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA008,2,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA008,8,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA008,2,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA008,7,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA008,7,"Previously organized as small extended families (code ""7"")",hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA008,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA008,8,"But code ""1"" today (independent nuclear family, monogamous)",josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA008,7,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA008,8,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA008,8,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA008,8,Polygyny was formerly common among chiefs,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA008,8,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA008,2,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA008,7,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA008,2,"Formerly code ""8"", large extended families, with polygyny common and preferentially sororal, and with co-wives living in same dwelling (related EA009 variable would also have been code ""3"")",goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA008,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA008,1,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA008,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA008,5,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA008,2,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA008,2,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA008,5,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA008,8,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,1950,EA008,7,,goodenough1954a,Ethnology_Vol7_No1_Jan_1968, +Ig16,,1950,EA008,8,,goodenough1951a,Ethnology_Vol7_No1_Jan_1968, +Ig17,,1950,EA008,7,,goodenough1954b,Ethnology_Vol7_No1_Jan_1968, +Ig18,,1960,EA008,2,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,,EA008,NA,,,, +Ig2,Kiriwina Island,1910,EA008,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA008,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA008,2,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA008,4,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA008,2,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA008,1,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA008,2,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA008,7,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA008,2,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA008,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA008,5,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA008,2,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA008,NA,,,, +Ih12,,1920,EA008,2,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA008,2,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA008,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA008,5,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA008,2,"Formerly code ""4"", polygyny common and preferentially sororal, with co-wives in separate dwellings (related EA009 variable would also have been code ""4"")",lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA008,7,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA008,NA,,,, +Ih6,,1890,EA008,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA008,8,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA008,7,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA008,7,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA008,8,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA008,7,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA008,2,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA008,2,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA008,8,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA008,5,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA008,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA008,7,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA008,8,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA008,8,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA008,7,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA008,7,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA008,2,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA008,7,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA008,7,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA008,7,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA008,3,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA008,7,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA008,8,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA008,8,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA008,2,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA008,2,But large communal dwelling originally,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA008,7,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA008,1,But polygyny was formerly common,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,,EA008,NA,,,, +Na11,,1920,EA008,6,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA008,6,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA008,6,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA008,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA008,2,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA008,2,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA008,5,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA008,7,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA008,7,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA008,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA008,6,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA008,7,"But nearly as frequently code ""2"", independent nuclear families (with occasional polygyny)",birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA008,7,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA008,8,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA008,1,"Formerly small extended families (code ""7"") with occasional polygyny (related variable EA009 code ""2"")",birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA008,7,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA008,2,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA008,5,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA008,2,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA008,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA008,2,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA008,7,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA008,8,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA008,7,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA008,6,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA008,7,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA008,7,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA008,7,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA008,7,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA008,2,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA008,8,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA008,7,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA008,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA008,4,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA008,7,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA008,2,"But code ""1"" today (independent nuclear family, monogamous)",graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA008,2,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA008,7,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA008,7,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA008,2,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA008,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA008,8,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA008,8,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA008,7,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA008,7,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA008,8,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA008,8,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA008,8,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA008,8,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA008,7,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA008,8,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA008,8,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA008,7,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA008,8,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA008,7,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA008,8,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA008,7,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA008,7,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA008,7,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA008,7,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA008,8,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA008,7,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA008,7,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA008,7,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA008,7,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA008,7,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA008,4,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA008,7,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA008,7,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA008,7,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA008,7,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA008,7,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA008,2,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA008,2,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA008,7,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA008,7,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA008,4,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA008,4,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA008,8,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,,EA008,NA,,,, +Nb9,"Central group, lower B.C. River",1880,EA008,7,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA008,2,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA008,7,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA008,7,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA008,7,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA008,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA008,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA008,5,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA008,7,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA008,7,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA008,7,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA008,7,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA008,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA008,7,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA008,7,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA008,7,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA008,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA008,8,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA008,7,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA008,8,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA008,1,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA008,8,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA008,2,Extended families are inferential,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA008,8,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA008,7,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA008,7,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA008,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA008,5,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA008,2,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA008,7,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA008,5,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA008,7,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA008,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA008,7,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA008,7,But a nuclear family usually established an independent household after the birth of one to three children,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA008,6,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA008,7,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA008,7,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA008,5,"In summer, but in winter, code ""8"", large extended families. Families are made up of polygynous units where co-wives are preferentially sororal, and share a dwelling",ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA008,7,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA008,7,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA008,5,But large communal dwellings in the winter,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA008,2,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA008,2,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA008,7,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA008,2,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA008,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA008,8,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA008,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA008,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA008,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA008,5,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA008,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA008,1,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA008,2,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA008,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA008,8,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA008,7,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA008,2,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA008,2,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA008,6,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA008,2,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA008,2,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA008,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA008,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA008,2,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA008,2,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA008,2,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA008,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA008,7,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA008,2,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA008,2,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA008,2,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA008,2,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA008,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA008,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA008,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA008,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA008,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA008,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA008,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA008,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA008,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA008,2,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA008,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA008,7,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA008,7,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA008,2,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA008,5,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA008,2,But communal dwellings in winter,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA008,7,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA008,7,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA008,5,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA008,7,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA008,5,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA008,8,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA008,5,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA008,2,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA008,7,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA008,2,But a shelter often accompanied two families,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA008,5,"""The basic economic and social group . . . was a group of brothers and their wives and children""",lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA008,5,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA008,2,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA008,8,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA008,4,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA008,NA,,,, +Ne3,Comanche Tribe,1870,EA008,8,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA008,5,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA008,8,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA008,7,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA008,5,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA008,7,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA008,8,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA008,2,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA008,2,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA008,2,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA008,7,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA008,7,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA008,4,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA008,7,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA008,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA008,5,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA008,7,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA008,8,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA008,8,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA008,8,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA008,7,"In Murdock (1965a) he codes this as 'Polygyny, atypical cowives pattern' (code ""4"") with the comment ""Entry follows Keesing; Spindler reports patrilocal extended family hunting groups."" In EA coded as it is here.",hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA008,8,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA008,8,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA008,2,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA008,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,,EA008,NA,,,, +Ng14,,NA,EA008,2,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA008,2,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA008,1,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA008,8,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA008,2,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA008,7,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA008,8,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA008,7,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA008,8,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA008,2,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA008,7,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA008,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA008,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA008,7,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA008,8,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA008,8,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA008,7,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA008,7,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA008,7,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA008,8,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA008,2,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA008,7,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA008,2,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA008,2,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA008,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA008,2,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA008,8,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA008,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA008,1,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA008,7,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA008,7,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA008,8,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA008,2,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA008,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA008,7,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA008,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA008,1,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA008,2,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA008,7,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA008,7,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA008,7,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA008,1,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA008,7,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA008,7,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA008,1,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,,EA008,NA,,,, +Nj1,Ojitlan,1940,EA008,6,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA008,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA008,1,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,,EA008,NA,,,, +Nj13,,,EA008,NA,,,, +Nj14,,,EA008,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA008,2,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA008,5,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,,EA008,NA,,,, +Nj5,,1940,EA008,2,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA008,7,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA008,7,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA008,7,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA008,7,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA008,8,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA008,7,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA008,1,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA008,4,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA008,2,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA008,8,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA008,1,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA008,4,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA008,1,"Extended families, though considered the ideal, constitute only 35 per cent of all households",gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA008,7,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA008,7,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA008,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA008,1,"But today code ""2"", independent nuclear families with occasional polygyny",gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA008,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA008,2,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA008,7,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA008,8,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA008,8,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA008,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA008,7,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA008,7,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA008,2,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA008,7,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA008,2,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA008,7,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA008,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA008,8,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA008,2,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA008,4,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA008,2,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA008,5,But the inhabitants of a communal dwelling approximate an extended family,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA008,5,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA008,2,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA008,7,"Each nuclear family occupies a separate apartment in a communal dwelling, but a married man is subject to the authority of his father-in-law",barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA008,7,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA008,8,But co-wives commonly live in different villages,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA008,6,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA008,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA008,7,"Nuclear families households, however, are normally grouped into larger extended families, of which there are usually two or three in a band",wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA008,4,Each polygynous family has its own section in a communal house,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA008,5,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA008,2,There were formerly communal dwellings,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA008,2,But the inhabitants of the communal dwelling may constitute a matrilocal extended family,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA008,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA008,8,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA008,8,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA008,1,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA008,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA008,7,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA008,8,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA008,2,But an entire village occupies a communal dwelling,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA008,8,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA008,8,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA008,8,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA008,8,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA008,2,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA008,4,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA008,2,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA008,4,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA008,1,But an entire settlement occupies a communal dwelling,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA008,2,But each family has a separate apartment in a communal dwelling,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA008,2,Each family has a separate apartment in a communal dwelling,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA008,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA008,6,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA008,7,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA008,1,Only the higher social strata practiced polygyny,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA008,8,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA008,7,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA008,4,Entry follows Wilbert; Rochereau reports monogamy,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA008,4,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA008,4,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA008,4,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA008,2,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA008,2,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA008,2,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA008,7,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA008,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA008,7,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA008,2,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA008,7,"But today code ""2"", independent nuclear families with occasional polygyny",karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA008,8,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA008,2,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA008,7,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA008,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA008,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA008,7,There were formerly communal dwellings,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA008,7,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA008,8,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA008,7,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA008,2,But there are communal dwellings; each occupied by about four nuclear families on the average,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA008,8,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA008,7,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA008,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA008,8,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA008,5,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA008,8,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,,EA008,NA,,,, +Si9,,1940,EA008,NA,"Communal dwellings, each occupied by several families",levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA008,7,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA008,1,"Marital composition of family units within large extended families is now monogamous, but formerly ""occasional polygyny"" was practiced (formerly, related variable EA009 = code ""2"")",ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA008,7,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA008,2,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA008,4,"Henry reports an incidence of 60 percent for monogamy, 18 per cent for polygyny, and 8 per cent for group marriage",henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA008,7,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA008,8,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA008,8,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA008,8,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA008,8,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA008,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA008,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA008,8,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA008,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA008,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA008,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA008,7,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA008,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA008,8,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA008,2,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA008,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA008,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA008,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA008,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA008,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA008,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA008,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA008,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA008,8,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA008,7,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA008,8,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA008,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA008,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA008,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA008,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA008,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA008,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA008,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA080,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA080,2,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA080,2,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA080,2,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA080,2,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA080,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA080,2,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA080,2,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA080,2,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA080,2,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA080,2,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA080,2,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA080,2,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA080,2,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA080,2,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,1860,EA080,2,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,1930,EA080,2,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA080,2,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA080,2,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA080,2,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA080,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA080,2,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA080,2,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA080,NA,,,, +Ab22,,,EA080,NA,,,, +Ab3,Ruling Luyana,1890,EA080,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA080,2,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA080,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA080,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA080,2,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA080,2,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA080,2,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA080,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA080,2,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA080,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA080,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA080,2,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA080,2,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,1900,EA080,2,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA080,2,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA080,2,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA080,2,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,1880,EA080,2,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA080,2,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,1920,EA080,2,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA080,2,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA080,2,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA080,2,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA080,2,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA080,2,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA080,2,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA080,2,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA080,2,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,1930,EA080,2,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA080,2,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA080,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA080,2,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA080,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA080,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA080,2,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,,EA080,NA,,,, +Ac36,,1920,EA080,2,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA080,2,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA080,2,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA080,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA080,2,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA080,2,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA080,2,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA080,2,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA080,NA,,,, +Ac5,,1920,EA080,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA080,2,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,1920,EA080,2,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA080,2,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA080,2,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA080,2,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA080,2,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA080,2,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA080,2,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA080,2,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA080,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA080,2,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA080,2,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA080,2,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA080,2,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA080,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA080,2,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA080,2,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA080,2,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA080,2,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA080,2,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA080,2,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA080,2,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA080,1,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA080,2,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA080,2,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA080,2,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA080,2,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA080,2,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,1910,EA080,2,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA080,2,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA080,2,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA080,2,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA080,2,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA080,2,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA080,2,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA080,2,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA080,2,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA080,2,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,1950,EA080,2,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA080,2,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA080,2,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,1900,EA080,2,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA080,2,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,1920,EA080,2,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA080,2,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA080,2,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA080,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA080,2,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA080,2,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA080,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA080,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA080,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA080,2,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA080,2,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA080,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA080,2,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA080,2,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA080,2,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA080,3,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA080,2,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA080,2,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA080,2,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA080,2,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA080,2,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA080,2,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA080,2,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA080,2,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA080,2,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA080,2,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA080,2,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA080,2,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA080,2,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA080,2,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA080,2,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA080,2,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA080,2,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA080,2,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA080,2,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA080,2,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA080,2,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA080,2,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA080,2,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA080,2,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA080,2,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA080,2,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA080,2,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA080,2,,wijnant192526,EthnographicAtlas_1967_p69, +Ae39,,1920,EA080,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA080,2,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA080,2,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA080,2,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA080,2,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA080,2,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,,EA080,NA,,,, +Ae45,,1900,EA080,2,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA080,4,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA080,2,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA080,2,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,1900,EA080,2,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA080,2,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA080,2,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA080,2,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA080,2,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA080,2,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA080,2,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA080,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,1950,EA080,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,1930,EA080,2,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA080,2,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA080,2,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA080,2,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA080,2,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA080,2,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA080,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA080,2,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA080,2,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA080,3,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA080,2,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA080,2,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA080,2,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA080,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA080,2,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA080,2,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA080,2,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA080,2,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA080,3,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA080,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA080,2,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA080,3,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA080,3,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA080,2,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA080,2,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA080,2,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,,EA080,NA,,,, +Af28,,1910,EA080,2,,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA080,2,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA080,2,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA080,2,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA080,2,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA080,2,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA080,2,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA080,2,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA080,NA,,,, +Af36,with special reference to the Glidyi,1900,EA080,2,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,,,EA080,NA,,,, +Af38,,1900,EA080,2,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA080,2,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA080,2,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA080,2,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA080,2,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA080,2,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA080,2,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,,EA080,NA,,,, +Af45,,1900,EA080,2,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA080,2,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA080,4,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA080,2,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA080,3,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA080,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA080,2,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA080,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA080,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,1950,EA080,2,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA080,2,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,,EA080,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA080,2,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA080,2,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA080,3,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA080,2,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA080,2,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA080,2,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA080,2,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA080,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA080,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA080,2,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA080,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA080,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA080,2,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA080,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA080,2,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,1940,EA080,2,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA080,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA080,2,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA080,2,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA080,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA080,2,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA080,2,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA080,2,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA080,2,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA080,2,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA080,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA080,2,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA080,2,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA080,2,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA080,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA080,2,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA080,2,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA080,2,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA080,2,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA080,2,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA080,2,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA080,2,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA080,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA080,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA080,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA080,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA080,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA080,2,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA080,2,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA080,2,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA080,2,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA080,2,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA080,2,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA080,2,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA080,2,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA080,2,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA080,2,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA080,2,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA080,2,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA080,2,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA080,2,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA080,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA080,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA080,2,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA080,2,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA080,2,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA080,2,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA080,2,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA080,2,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,1920,EA080,2,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA080,2,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA080,2,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA080,2,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA080,2,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA080,2,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA080,2,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA080,2,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA080,2,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA080,2,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,1920,EA080,2,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA080,2,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA080,2,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA080,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA080,2,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA080,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA080,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA080,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA080,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA080,2,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA080,2,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA080,2,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA080,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA080,2,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA080,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA080,2,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA080,2,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA080,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA080,2,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA080,2,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA080,2,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA080,2,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA080,2,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA080,2,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA080,2,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA080,2,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA080,2,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA080,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA080,2,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA080,2,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA080,2,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA080,2,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p77, +Ai15,,1900,EA080,2,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA080,3,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA080,2,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA080,2,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA080,2,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA080,2,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA080,2,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA080,2,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,1890,EA080,2,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA080,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA080,2,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA080,2,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA080,2,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,1890,EA080,2,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA080,2,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA080,2,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA080,2,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA080,2,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,1920,EA080,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA080,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA080,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA080,2,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA080,2,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA080,4,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA080,2,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA080,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA080,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA080,NA,,,, +Ai40,,1940,EA080,3,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA080,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA080,2,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA080,2,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,1920,EA080,2,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p77, +Ai45,,1930,EA080,2,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA080,2,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA080,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,1920,EA080,2,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,,,EA080,NA,,,, +Ai7,,1910,EA080,2,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA080,2,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA080,2,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA080,2,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,,EA080,NA,,,, +Aj11,,1900,EA080,4,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,1920,EA080,2,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,1930,EA080,2,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA080,2,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA080,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA080,4,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA080,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA080,2,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA080,2,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA080,2,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA080,2,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,1930,EA080,2,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,1930,EA080,2,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA080,2,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA080,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA080,2,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA080,2,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,1920,EA080,2,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA080,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA080,2,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA080,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA080,NA,,,, +Aj31,,,EA080,NA,,,, +Aj4,,1920,EA080,2,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA080,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA080,1,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA080,2,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA080,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA080,2,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA080,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA080,2,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA080,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA080,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA080,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,1950,EA080,2,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,1930,EA080,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA080,2,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,1950,EA080,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca18,,1940,EA080,2,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA080,2,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA080,2,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA080,2,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA080,2,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA080,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA080,2,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,1950,EA080,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA080,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA080,2,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA080,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA080,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA080,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA080,2,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA080,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA080,2,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA080,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA080,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA080,2,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA080,2,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA080,2,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA080,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA080,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA080,2,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA080,2,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA080,3,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA080,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA080,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA080,NA,,,, +Ca5,,1930,EA080,2,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,1880,EA080,2,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA080,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA080,2,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,1890,EA080,1,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA080,2,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,,EA080,NA,,,, +Cb11,,1900,EA080,2,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA080,2,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA080,3,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA080,2,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA080,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA080,2,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA080,2,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA080,2,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA080,2,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA080,2,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA080,2,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA080,2,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA080,2,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA080,2,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA080,2,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA080,2,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA080,2,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA080,2,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA080,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA080,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA080,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA080,2,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA080,2,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA080,2,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA080,2,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA080,2,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA080,2,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA080,2,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA080,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA080,2,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA080,2,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA080,2,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA080,2,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA080,2,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA080,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,1930,EA080,2,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA080,2,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA080,2,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA080,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,,,EA080,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA080,2,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA080,2,,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA080,2,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA080,2,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA080,2,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA080,2,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA080,2,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA080,2,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,,EA080,NA,,,, +Cd11,,1500,EA080,2,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA080,2,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA080,2,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA080,2,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA080,2,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA080,2,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA080,2,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA080,2,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA080,2,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA080,2,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA080,2,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA080,2,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA080,2,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA080,2,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA080,3,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA080,2,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA080,2,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA080,2,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA080,2,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA080,3,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA080,3,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,City and environs of Rome,100,EA080,3,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA080,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA080,3,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA080,3,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA080,2,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA080,2,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA080,3,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA080,2,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA080,3,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA080,2,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA080,3,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA080,3,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA080,3,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA080,2,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA080,2,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA080,3,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA080,3,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA080,NA,,,, +Ch11,Viriatino Village,1955,EA080,2,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA080,2,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,with special reference to the Hana district of central Moravia,1940,EA080,2,,hajda1955; pospisilnd,EthnographicAtlas_1967_p85, +Ch4,,1900,EA080,2,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA080,2,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA080,2,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,1930,EA080,2,,friedrich1954,EthnographicAtlas_1967_p85, +Ch8,,1940,EA080,2,,hanzeli1955,EthnographicAtlas_1967_p85, +Ch9,,1930,EA080,2,,maciuika1955,EthnographicAtlas_1967_p85, +Ci1,with special reference to the Baga Dorbed group,1920,EA080,2,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA080,2,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA080,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA080,2,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA080,3,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA080,3,,gadzhieva1958,EthnographicAtlas_1967_p85, +Ci4,,1920,EA080,2,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA080,2,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA080,2,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,1900,EA080,2,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p85, +Ci8,,1850,EA080,2,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA080,2,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA080,3,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA080,2,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA080,2,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA080,2,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA080,2,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA080,2,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA080,2,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA080,2,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA080,2,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA080,2,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA080,2,,bordiend; wilber1964,EthnographicAtlas_1967_p89, +Ea10,,,EA080,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA080,2,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA080,2,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA080,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA080,2,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA080,3,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA080,2,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA080,2,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA080,2,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA080,2,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,1920,EA080,2,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,1950,EA080,2,,vreeland1957,EthnographicAtlas_1967_p89, +Eb1,Great Horde,1910,EA080,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA080,2,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA080,2,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA080,3,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA080,2,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA080,2,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA080,2,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA080,NA,,,, +Ec1,Sakhalin Island,1920,EA080,1,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA080,2,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA080,2,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA080,1,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA080,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA080,2,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA080,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA080,2,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA080,2,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA080,1,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA080,2,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA080,3,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,with special reference to the village of Taitou,1930,EA080,2,,yang1945,EthnographicAtlas_1967_p89, +Ed13,,,EA080,NA,,,, +Ed14,,,EA080,NA,,,, +Ed15a,,,EA080,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA080,2,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA080,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA080,2,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA080,2,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA080,3,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA080,2,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA080,NA,,,, +Ed7,,1950,EA080,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA080,3,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA080,4,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA080,4,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,Hunza State,1930,EA080,2,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p89, +Ee3,Lingthem and vicinity,1930,EA080,2,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA080,2,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA080,2,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA080,2,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA080,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA080,2,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA080,2,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA080,NA,,,, +Ef11,Village and environs of Senapur,1945,EA080,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA080,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA080,NA,,,, +Ef4,,1920,EA080,2,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA080,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA080,2,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA080,2,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA080,3,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA080,2,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA080,2,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA080,2,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA080,NA,,,, +Eg12,,,EA080,NA,,,, +Eg13,Bastar State,1941,EA080,2,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA080,3,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA080,2,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA080,2,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA080,2,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA080,2,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA080,3,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA080,2,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA080,2,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA080,2,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA080,2,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA080,NA,,,, +Eh2,,1900,EA080,2,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA080,3,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,,,EA080,NA,,,, +Eh5,Car Nicobar of North Islands,1890,EA080,4,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA080,2,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA080,2,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA080,2,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA080,4,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA080,3,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA080,4,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA080,4,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA080,4,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA080,2,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA080,4,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA080,NA,,,, +Ei16,,1910,EA080,4,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA080,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA080,4,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA080,4,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA080,3,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA080,NA,,,, +Ei3,Nondwin Village,1950,EA080,4,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA080,4,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA080,3,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA080,4,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA080,4,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA080,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,1880,EA080,4,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p93, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA080,4,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA080,4,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA080,4,,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA080,4,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA080,4,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA080,4,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA080,4,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA080,4,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA080,2,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA080,2,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA080,3,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA080,4,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA080,NA,,,, +Ej7,,1950,EA080,4,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA080,4,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA080,3,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA080,2,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA080,2,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,1930,EA080,2,,mabuchi1960,EthnographicAtlas_1967_p93, +Ia12,,1950,EA080,4,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,,,EA080,NA,,,, +Ia14,,1930,EA080,2,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA080,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA080,4,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA080,NA,,,, +Ia18,,,EA080,NA,,,, +Ia2,,1950,EA080,3,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA080,4,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA080,4,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA080,3,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA080,2,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA080,NA,,,, +Ia8,,1900,EA080,3,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA080,4,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA080,4,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA080,2,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA080,2,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA080,4,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA080,4,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA080,4,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA080,4,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,with special reference to the Ridan group,1900,EA080,3,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA080,NA,,,, +Ic1,Borongloe,1940,EA080,4,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA080,4,,hueting1921; riedel1885,EthnographicAtlas_1967_p97, +Ic11,Allang,1950,EA080,3,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA080,4,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA080,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA080,4,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p97, +Ic3,with special reference to the Mountain Belu,1950,EA080,2,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,,EA080,NA,,,, +Ic5,Bare'e subgroup,1910,EA080,2,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA080,4,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA080,2,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,1890,EA080,4,,pleyte1893,EthnographicAtlas_1967_p97, +Ic9,with special reference to eastern Sumba,1930,EA080,4,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA080,2,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA080,2,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA080,2,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA080,NA,,,, +Id13,,,EA080,NA,,,, +Id2,,1930,EA080,2,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,,,EA080,NA,,,, +Id4,,,EA080,NA,,,, +Id5,,,EA080,NA,,,, +Id6,,,EA080,NA,,,, +Id7,,,EA080,NA,,,, +Id8,,1830,EA080,2,,roth1890,EthnographicAtlas_1967_p97, +Id9,,,EA080,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA080,2,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA080,4,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA080,2,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA080,2,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA080,NA,,,, +Ie14,,,EA080,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA080,2,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA080,2,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA080,2,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA080,2,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA080,2,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA080,2,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA080,4,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA080,4,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA080,4,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA080,4,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA080,4,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA080,4,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA080,2,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,,EA080,NA,,,, +Ie28,,1940,EA080,4,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,principally Tsogari,1930,EA080,4,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA080,3,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA080,2,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA080,2,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA080,4,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA080,4,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA080,NA,,,, +Ie35,,1930,EA080,4,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA080,NA,,,, +Ie37,,,EA080,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA080,2,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA080,4,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA080,2,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA080,2,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA080,4,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA080,2,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA080,4,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA080,4,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA080,4,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA080,NA,,,, +If11,,1860,EA080,3,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,1940,EA080,2,,mason1954,EthnographicAtlas_1967_p101, +If13,,,EA080,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA080,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA080,2,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,1960,EA080,2,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA080,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA080,2,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA080,2,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA080,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA080,3,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA080,3,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA080,3,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA080,4,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA080,2,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA080,4,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA080,NA,,,, +Ig11,,1920,EA080,2,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,,,EA080,NA,,,, +Ig13,,1900,EA080,4,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA080,4,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA080,NA,,,, +Ig16,,,EA080,NA,,,, +Ig17,,,EA080,NA,,,, +Ig18,,,EA080,NA,,,, +Ig19,,,EA080,NA,,,, +Ig2,Kiriwina Island,1910,EA080,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA080,2,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA080,2,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA080,2,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA080,2,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA080,4,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA080,2,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,,EA080,NA,,,, +Ig8,,,EA080,NA,,,, +Ig9,Peri Village,1920,EA080,4,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA080,2,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,,,EA080,NA,,,, +Ih11,,,EA080,NA,,,, +Ih12,,,EA080,NA,,,, +Ih13,,,EA080,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA080,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA080,2,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA080,2,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA080,2,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA080,3,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,,EA080,NA,,,, +Ih7,,1910,EA080,2,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA080,2,,quain1949,EthnographicAtlas_1967_p101, +Ih9,,,EA080,NA,,,, +Ii1,with special reference to American Samoa,1920,EA080,3,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA080,2,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA080,3,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA080,3,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA080,3,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA080,2,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA080,2,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA080,3,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA080,2,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA080,2,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA080,2,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA080,2,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA080,2,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA080,2,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,,EA080,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA080,2,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA080,3,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA080,2,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA080,2,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA080,3,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA080,2,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA080,2,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA080,2,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA080,2,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA080,2,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA080,2,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA080,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA080,2,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA080,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA080,2,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA080,2,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA080,2,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA080,2,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA080,1,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA080,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA080,2,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA080,2,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA080,2,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA080,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA080,2,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA080,1,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA080,2,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA080,2,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA080,2,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA080,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA080,2,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA080,2,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA080,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA080,2,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA080,2,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA080,2,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA080,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA080,2,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA080,2,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA080,2,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA080,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA080,2,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA080,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,Prairie Potawatomi,1760,EA080,2,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p105, +Na43,,1920,EA080,2,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA080,2,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA080,NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA080,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA080,1,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA080,1,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA080,1,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA080,1,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA080,1,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA080,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA080,2,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA080,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA080,2,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA080,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA080,2,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA080,2,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA080,2,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA080,1,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA080,2,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA080,2,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA080,1,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA080,1,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA080,1,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA080,2,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA080,2,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA080,2,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA080,2,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA080,1,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA080,1,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA080,1,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA080,1,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA080,2,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA080,1,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA080,1,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA080,1,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA080,2,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA080,2,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA080,2,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA080,2,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA080,1,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA080,1,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA080,1,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA080,2,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA080,1,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA080,1,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA080,1,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA080,1,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA080,2,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA080,1,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA080,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA080,1,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA080,1,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA080,1,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA080,2,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA080,1,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA080,1,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA080,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA080,2,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA080,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA080,2,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA080,2,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA080,1,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA080,1,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA080,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA080,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA080,2,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA080,2,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA080,2,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA080,2,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA080,2,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA080,2,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA080,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA080,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA080,2,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA080,2,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA080,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA080,1,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA080,2,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA080,1,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA080,1,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA080,1,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA080,1,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA080,1,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA080,1,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA080,1,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA080,1,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA080,1,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA080,2,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA080,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA080,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA080,1,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA080,1,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA080,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA080,1,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA080,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA080,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA080,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA080,2,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA080,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA080,2,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA080,2,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA080,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA080,2,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA080,2,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA080,1,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA080,1,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA080,2,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA080,2,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA080,2,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA080,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA080,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA080,2,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA080,2,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,,,EA080,NA,,,, +Nd49,including the Kaiparowits band,1860,EA080,1,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA080,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA080,2,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA080,2,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA080,2,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA080,2,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA080,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA080,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA080,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA080,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA080,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA080,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA080,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA080,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA080,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA080,2,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA080,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA080,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA080,2,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA080,2,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA080,2,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA080,1,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA080,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA080,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA080,2,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA080,1,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA080,2,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA080,2,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA080,2,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA080,2,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA080,1,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA080,2,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA080,2,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA080,2,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA080,2,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA080,2,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA080,2,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA080,NA,,,, +Ne3,Comanche Tribe,1870,EA080,2,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA080,2,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA080,2,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA080,1,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA080,2,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA080,2,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA080,2,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA080,1,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA080,1,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA080,2,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA080,2,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA080,2,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA080,NA,,,, +Nf2,,1850,EA080,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA080,1,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA080,2,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA080,2,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA080,1,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA080,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA080,2,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,1870,EA080,2,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p117, +Ng1,Bear and Cord Subtribes,1640,EA080,2,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA080,2,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA080,2,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA080,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA080,NA,,,, +Ng14,,,EA080,NA,,,, +Ng15,,,EA080,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA080,3,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA080,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA080,2,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA080,2,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA080,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA080,2,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA080,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA080,NA,,,, +Nh1,Central band,1880,EA080,2,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA080,2,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA080,2,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA080,2,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA080,2,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA080,2,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA080,2,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA080,2,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA080,2,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA080,2,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA080,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA080,2,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,1860,EA080,2,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA080,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA080,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA080,2,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA080,2,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA080,2,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA080,NA,,,, +Nh27,,,EA080,NA,,,, +Nh3,,1930,EA080,2,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA080,2,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA080,2,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA080,2,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA080,2,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA080,2,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA080,2,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA080,2,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA080,1,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA080,2,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA080,2,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA080,2,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA080,2,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA080,2,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA080,NA,,,, +Ni9,,,EA080,NA,,,, +Nj1,Ojitlan,1940,EA080,2,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA080,2,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA080,NA,,,, +Nj12,,,EA080,NA,,,, +Nj13,,,EA080,NA,,,, +Nj14,,,EA080,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA080,3,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA080,2,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,1940,EA080,2,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p121, +Nj5,,,EA080,NA,,,, +Nj6,with special reference to San Mateo,1950,EA080,2,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA080,2,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA080,3,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA080,2,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA080,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA080,2,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,,EA080,NA,,,, +Sa12,,1948,EA080,2,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA080,2,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA080,NA,,,, +Sa15,,,EA080,NA,,,, +Sa16,,,EA080,NA,,,, +Sa17,,,EA080,NA,,,, +Sa2,,,EA080,NA,,,, +Sa3,,1930,EA080,3,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA080,4,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA080,2,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA080,2,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,1940,EA080,2,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA080,2,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA080,4,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA080,2,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA080,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA080,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA080,2,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA080,4,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA080,2,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,,,EA080,NA,,,, +Sb8,,1520,EA080,2,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA080,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA080,4,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,,EA080,NA,,,, +Sc11,,1930,EA080,2,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p121, +Sc12,,1910,EA080,2,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,1950,EA080,2,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA080,NA,,,, +Sc15,,1910,EA080,2,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA080,2,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA080,2,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA080,2,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA080,2,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA080,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA080,2,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA080,2,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA080,2,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA080,2,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA080,2,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,1950,EA080,2,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p121, +Sd1,Cabrura village,1950,EA080,2,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA080,2,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,1920,EA080,4,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,1950,EA080,2,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA080,2,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA080,2,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA080,2,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA080,2,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA080,2,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA080,2,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA080,2,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA080,2,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA080,NA,,,, +Se2,,1940,EA080,2,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA080,2,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA080,2,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA080,2,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA080,2,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA080,2,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA080,2,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA080,2,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA080,2,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA080,2,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA080,4,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA080,2,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA080,2,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA080,4,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA080,2,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA080,NA,,,, +Sf9,,,EA080,NA,,,, +Sg1,Eastern and central,1870,EA080,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA080,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA080,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA080,2,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA080,2,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA080,2,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA080,2,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA080,2,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA080,2,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA080,2,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA080,2,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,1900,EA080,2,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA080,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA080,NA,,,, +Si1,Kejara,1920,EA080,2,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA080,2,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA080,2,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA080,2,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA080,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA080,2,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA080,2,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA080,2,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA080,2,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA080,NA,,,, +Sj1,,1950,EA080,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,Taquapiri,1950,EA080,2,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA080,2,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA080,2,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA080,2,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA080,2,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA080,2,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA080,2,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA080,2,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA080,2,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA080,2,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA080,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA080,3,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA080,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA080,3,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA080,2,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA080,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA080,3,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA080,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA080,2,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA080,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA080,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA080,2,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA080,2,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA080,2,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA080,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA080,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA080,3,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA080,2,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA080,1,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA080,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA080,2,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA080,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA080,1,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA080,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA080,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA080,1,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA080,1,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA081,11,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA081,11,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA081,11,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA081,11,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA081,11,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA081,11,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA081,11,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA081,11,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA081,11,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA081,11,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA081,11,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA081,11,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA081,11,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA081,9,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,,EA081,NA,,,, +Ab15,,1860,EA081,9,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,1930,EA081,2,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA081,2,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,,,EA081,NA,,,, +Ab19,with special reference to the Kuanyama,1910,EA081,3,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA081,11,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA081,3,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA081,11,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA081,NA,,,, +Ab22,,,EA081,NA,,,, +Ab3,Ruling Luyana,1890,EA081,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA081,2,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA081,2,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA081,2,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA081,7,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA081,2,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA081,11,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA081,2,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA081,8,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA081,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA081,11,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,,EA081,NA,,,, +Ac14,,1900,EA081,7,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,,EA081,NA,,,, +Ac16,,,EA081,NA,,,, +Ac17,Feshi territory lineage center,1910,EA081,3,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA081,3,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,,EA081,NA,,,, +Ac2,,,EA081,NA,,,, +Ac20,,,EA081,NA,,,, +Ac21,,1910,EA081,8,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA081,7,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA081,3,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,,EA081,NA,,,, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA081,2,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,,EA081,NA,,,, +Ac27,,1930,EA081,2,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA081,8,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,,EA081,NA,,,, +Ac3,Zambia branch,1900,EA081,2,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA081,2,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,,EA081,NA,,,, +Ac32,,1920,EA081,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA081,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA081,7,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,,EA081,NA,,,, +Ac36,,,EA081,NA,,,, +Ac37,,1950,EA081,2,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA081,2,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA081,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA081,8,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,,EA081,NA,,,, +Ac41,,,EA081,NA,,,, +Ac42,,,EA081,NA,,,, +Ac43,,,EA081,NA,,,, +Ac5,,1920,EA081,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA081,2,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,,EA081,NA,,,, +Ac8,,1930,EA081,3,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,,,EA081,NA,,,, +Ad1,,1950,EA081,3,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA081,11,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA081,7,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA081,2,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA081,7,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA081,3,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,,EA081,NA,,,, +Ad16,,,EA081,NA,,,, +Ad17,,1920,EA081,9,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,,EA081,NA,,,, +Ad19,,1910,EA081,9,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA081,11,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA081,2,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA081,2,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA081,9,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA081,2,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA081,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA081,2,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,,EA081,NA,,,, +Ad27,,,EA081,NA,,,, +Ad28,,,EA081,NA,,,, +Ad29,,1930,EA081,8,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA081,7,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,,EA081,NA,,,, +Ad31,,1910,EA081,7,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,,EA081,NA,,,, +Ad33,,1900,EA081,2,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA081,2,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA081,2,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,,EA081,NA,,,, +Ad37,,,EA081,NA,,,, +Ad38,,1910,EA081,11,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA081,3,,gray1963,EthnographicAtlas_1967_p69, +Ad4,,,EA081,NA,,,, +Ad40,,1950,EA081,2,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA081,2,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA081,11,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,,EA081,NA,,,, +Ad44,,1920,EA081,11,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,1920,EA081,11,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA081,9,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA081,11,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA081,11,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA081,11,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,,EA081,NA,,,, +Ad50,,,EA081,NA,,,, +Ad51,,,EA081,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA081,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA081,11,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,,,EA081,NA,,,, +Ad9,,1900,EA081,2,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA081,11,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA081,11,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,,EA081,NA,,,, +Ae12,,1940,EA081,7,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA081,11,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA081,11,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA081,3,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA081,2,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA081,4,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA081,2,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA081,9,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA081,7,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,,EA081,NA,,,, +Ae21,,,EA081,NA,,,, +Ae22,,,EA081,NA,,,, +Ae23,,,EA081,NA,,,, +Ae24,,,EA081,NA,,,, +Ae25,,,EA081,NA,,,, +Ae26,,,EA081,NA,,,, +Ae27,,,EA081,NA,,,, +Ae28,,1900,EA081,7,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA081,8,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA081,4,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA081,3,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,,EA081,NA,,,, +Ae32,,1920,EA081,4,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA081,8,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA081,11,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA081,2,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA081,8,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA081,4,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,,EA081,NA,,,, +Ae39,,1920,EA081,2,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA081,3,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA081,4,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA081,4,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA081,4,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA081,4,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA081,3,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA081,2,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA081,3,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,,EA081,NA,,,, +Ae48,,1930,EA081,2,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,1900,EA081,2,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA081,9,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA081,2,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA081,2,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA081,2,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA081,2,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA081,2,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA081,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,1950,EA081,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,1930,EA081,2,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,,EA081,NA,,,, +Ae59,with special reference to the Ngie subtribe,1950,EA081,2,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,,,EA081,NA,,,, +Ae7,,,EA081,NA,,,, +Ae8,,1910,EA081,11,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA081,2,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA081,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA081,2,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA081,2,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA081,2,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA081,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA081,2,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA081,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA081,2,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,,EA081,NA,,,, +Af18,,1900,EA081,2,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA081,2,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA081,9,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA081,2,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA081,7,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA081,9,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA081,9,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA081,9,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA081,2,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA081,9,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,,EA081,NA,,,, +Af28,,1910,EA081,9,,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA081,9,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA081,9,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA081,9,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA081,9,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA081,9,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA081,9,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA081,9,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA081,NA,,,, +Af36,with special reference to the Glidyi,1900,EA081,2,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA081,9,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA081,NA,,,, +Af39,with special reference to the Ndenie,1900,EA081,2,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA081,3,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA081,7,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA081,2,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA081,2,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA081,9,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,,EA081,NA,,,, +Af45,,,EA081,NA,,,, +Af46,,1900,EA081,2,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA081,7,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA081,2,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA081,7,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA081,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA081,9,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA081,9,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA081,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,1950,EA081,9,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA081,2,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,,EA081,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA081,7,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA081,2,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA081,2,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA081,9,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA081,2,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA081,9,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA081,2,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA081,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA081,2,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA081,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA081,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA081,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA081,9,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA081,7,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA081,7,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,1940,EA081,7,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA081,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA081,2,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA081,9,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA081,9,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA081,1,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA081,7,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA081,9,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA081,9,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA081,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA081,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA081,9,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA081,9,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA081,9,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA081,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA081,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA081,9,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA081,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA081,9,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA081,9,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA081,9,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA081,9,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA081,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA081,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA081,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA081,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA081,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA081,9,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA081,1,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA081,9,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA081,9,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA081,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA081,9,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA081,9,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA081,9,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA081,9,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA081,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA081,9,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA081,9,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA081,9,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA081,9,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA081,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA081,9,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA081,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA081,7,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA081,9,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA081,9,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA081,2,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA081,9,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,1920,EA081,9,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA081,9,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA081,7,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA081,9,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA081,9,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA081,9,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA081,9,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA081,9,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA081,9,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA081,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,1920,EA081,9,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA081,1,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA081,9,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA081,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA081,9,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA081,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA081,NA,,,, +Ah28,,,EA081,NA,,,, +Ah29,,,EA081,NA,,,, +Ah3,Tar of Benue Province,1920,EA081,9,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA081,9,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA081,7,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA081,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA081,7,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA081,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA081,9,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA081,9,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA081,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA081,9,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA081,1,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA081,7,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA081,9,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA081,9,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA081,9,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA081,2,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA081,9,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA081,9,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA081,2,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA081,8,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA081,9,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA081,7,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA081,7,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p77, +Ai15,,1900,EA081,9,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA081,9,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,,EA081,NA,,,, +Ai18,,,EA081,NA,,,, +Ai19,,1910,EA081,11,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA081,9,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA081,9,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA081,9,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,1890,EA081,7,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA081,3,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA081,9,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA081,2,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA081,2,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,1890,EA081,9,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA081,3,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA081,11,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA081,9,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA081,3,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,1920,EA081,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA081,2,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA081,2,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA081,7,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA081,7,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA081,2,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA081,2,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA081,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA081,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA081,NA,,,, +Ai40,,1940,EA081,9,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA081,9,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA081,9,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA081,3,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,1920,EA081,2,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p77, +Ai45,,1930,EA081,2,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA081,2,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA081,11,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,1920,EA081,8,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA081,9,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA081,9,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA081,9,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA081,2,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA081,11,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA081,3,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA081,2,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,,EA081,NA,,,, +Aj13,,,EA081,NA,,,, +Aj14,,,EA081,NA,,,, +Aj15,,1900,EA081,7,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,,,EA081,NA,,,, +Aj17,,1890,EA081,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA081,11,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,,EA081,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA081,11,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA081,11,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,1930,EA081,2,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,1930,EA081,2,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA081,11,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA081,11,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA081,2,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA081,3,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,1920,EA081,11,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA081,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA081,11,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA081,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA081,NA,,,, +Aj31,,,EA081,NA,,,, +Aj4,,1920,EA081,2,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA081,11,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA081,2,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA081,2,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA081,2,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA081,2,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA081,3,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA081,11,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA081,11,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA081,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA081,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,,EA081,NA,,,, +Ca15,,1930,EA081,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA081,11,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,1950,EA081,3,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca18,,1940,EA081,11,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA081,3,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA081,11,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA081,11,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA081,3,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA081,7,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA081,2,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,1950,EA081,1,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA081,7,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA081,NA,,,, +Ca27,,1930,EA081,7,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA081,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA081,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA081,9,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA081,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA081,2,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA081,11,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA081,11,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA081,7,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA081,6,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA081,7,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA081,11,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA081,11,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA081,9,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA081,2,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA081,11,"In shape, but 'wood or poles' (code ""3"") in construction",straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA081,11,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA081,2,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA081,NA,,,, +Ca5,,1930,EA081,9,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,1880,EA081,11,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA081,2,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA081,3,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,,EA081,NA,,,, +Cb1,,1940,EA081,9,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA081,9,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA081,11,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,1920,EA081,7,,reid1930,Ethnology_Vol5_No2_Apr_1966, +Cb13,,1930,EA081,11,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA081,11,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA081,11,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA081,11,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA081,7,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA081,11,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA081,9,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA081,7,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA081,7,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA081,11,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA081,9,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA081,9,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA081,11,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA081,9,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA081,9,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA081,9,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA081,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA081,9,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA081,11,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA081,6,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA081,11,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA081,9,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA081,9,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA081,11,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA081,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA081,6,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA081,7,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA081,7,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA081,7,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA081,5,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA081,1,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA081,9,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA081,6,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,1930,EA081,6,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA081,5,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA081,6,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA081,7,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,,,EA081,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA081,1,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA081,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA081,5,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA081,6,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA081,6,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA081,5,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA081,7,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA081,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA081,1,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA081,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA081,1,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA081,6,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA081,6,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA081,1,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA081,9,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA081,6,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA081,6,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA081,1,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA081,1,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA081,6,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA081,1,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA081,1,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA081,2,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA081,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA081,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA081,6,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA081,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA081,4,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA081,3,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA081,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,City and environs of Rome,100,EA081,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA081,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA081,1,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA081,1,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA081,1,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA081,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA081,3,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA081,9,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA081,1,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA081,9,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA081,3,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA081,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA081,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA081,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA081,6,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA081,1,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA081,2,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA081,NA,,,, +Ch11,Viriatino Village,1955,EA081,3,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA081,2,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,,,EA081,NA,,,, +Ch4,,1900,EA081,3,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA081,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA081,3,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,,EA081,NA,,,, +Ch8,,,EA081,NA,,,, +Ch9,,,EA081,NA,,,, +Ci1,with special reference to the Baga Dorbed group,1920,EA081,6,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA081,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA081,1,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA081,7,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA081,1,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA081,1,,gadzhieva1958,EthnographicAtlas_1967_p85, +Ci4,,1920,EA081,2,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,Northern Anatolian Plateau,1950,EA081,1,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA081,1,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,1900,EA081,1,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p85, +Ci8,,1850,EA081,1,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA081,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA081,9,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA081,7,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA081,6,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA081,1,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA081,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA081,6,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA081,1,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA081,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA081,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA081,1,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA081,9,,bordiend; wilber1964,EthnographicAtlas_1967_p89, +Ea10,,,EA081,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA081,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA081,6,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA081,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA081,1,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA081,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA081,1,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA081,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA081,6,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA081,9,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,1920,EA081,6,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,1950,EA081,9,,vreeland1957,EthnographicAtlas_1967_p89, +Eb1,Great Horde,1910,EA081,6,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA081,9,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA081,6,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA081,9,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA081,9,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA081,6,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA081,9,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA081,NA,,,, +Ec1,Sakhalin Island,1920,EA081,3,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA081,11,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA081,11,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA081,11,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA081,5,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA081,11,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA081,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA081,11,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA081,8,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA081,3,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA081,4,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA081,3,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA081,NA,,,, +Ed13,,,EA081,NA,,,, +Ed14,,,EA081,NA,,,, +Ed15a,,,EA081,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA081,3,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA081,NA,,,, +Ed2,,,EA081,NA,,,, +Ed3,Aigun District,1920,EA081,9,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA081,3,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA081,3,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA081,NA,,,, +Ed7,,1950,EA081,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA081,1,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA081,3,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA081,3,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,Hunza State,1930,EA081,6,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p89, +Ee3,Lingthem and vicinity,1930,EA081,7,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA081,1,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA081,1,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA081,1,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA081,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA081,1,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA081,9,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA081,NA,,,, +Ef11,Village and environs of Senapur,1945,EA081,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA081,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA081,NA,,,, +Ef4,,1920,EA081,9,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA081,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA081,2,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA081,1,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA081,1,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,,,EA081,NA,,,, +Eg1,with special reference to the forest group,1940,EA081,7,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA081,2,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA081,NA,,,, +Eg12,,,EA081,NA,,,, +Eg13,Bastar State,1941,EA081,2,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA081,7,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA081,2,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA081,2,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA081,11,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA081,1,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA081,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA081,3,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA081,9,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA081,3,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA081,10,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA081,NA,,,, +Eh2,,1900,EA081,7,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA081,7,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,,,EA081,NA,,,, +Eh5,Car Nicobar of North Islands,1890,EA081,11,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA081,2,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA081,3,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA081,7,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,,EA081,NA,,,, +Ei1,Rengsanggr,1900,EA081,7,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA081,3,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA081,3,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA081,3,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA081,3,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA081,7,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA081,NA,,,, +Ei16,,1910,EA081,3,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA081,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA081,3,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA081,3,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA081,3,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA081,NA,,,, +Ei3,Nondwin Village,1950,EA081,3,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA081,7,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA081,7,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA081,3,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA081,3,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA081,3,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,1880,EA081,3,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p93, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA081,3,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA081,3,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA081,3,,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA081,3,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA081,3,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA081,3,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA081,7,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA081,3,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA081,3,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA081,11,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA081,2,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA081,3,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA081,NA,,,, +Ej7,,1950,EA081,3,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA081,7,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA081,3,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA081,3,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA081,3,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,,EA081,NA,,,, +Ia12,,1950,EA081,3,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,,,EA081,NA,,,, +Ia14,,1930,EA081,3,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA081,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA081,3,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA081,NA,,,, +Ia18,,,EA081,NA,,,, +Ia2,,1950,EA081,3,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA081,7,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA081,8,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA081,3,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA081,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA081,NA,,,, +Ia8,,1900,EA081,3,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,,,EA081,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA081,8,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA081,7,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA081,3,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,,,EA081,NA,,,, +Ib5,with special reference to the village of Sensuron,1920,EA081,3,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA081,3,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,,,EA081,NA,,,, +Ib8,with special reference to the Ridan group,1900,EA081,3,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA081,NA,,,, +Ic1,Borongloe,1940,EA081,8,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA081,NA,,,, +Ic11,Allang,1950,EA081,7,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA081,NA,,,, +Ic13,,,EA081,NA,,,, +Ic2,,,EA081,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA081,3,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,,EA081,NA,,,, +Ic5,,,EA081,NA,,,, +Ic6,,1930,EA081,10,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA081,3,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,,EA081,NA,,,, +Ic9,,,EA081,NA,,,, +Id1,Alice Springs and environs,1900,EA081,11,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA081,11,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA081,11,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA081,NA,,,, +Id13,,,EA081,NA,,,, +Id2,,1930,EA081,11,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,,,EA081,NA,,,, +Id4,,,EA081,NA,,,, +Id5,,,EA081,NA,,,, +Id6,,,EA081,NA,,,, +Id7,,,EA081,NA,,,, +Id8,,1830,EA081,11,,roth1890,EthnographicAtlas_1967_p97, +Id9,,,EA081,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA081,3,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA081,8,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA081,4,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA081,3,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA081,NA,,,, +Ie14,,,EA081,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA081,11,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA081,NA,,,, +Ie17,,1940,EA081,3,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA081,11,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA081,3,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA081,3,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA081,8,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA081,8,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA081,8,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA081,3,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA081,3,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA081,3,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA081,11,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,,EA081,NA,,,, +Ie28,,1940,EA081,7,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,,,EA081,NA,,,, +Ie3,,,EA081,NA,,,, +Ie30,,1950,EA081,7,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA081,3,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA081,7,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA081,10,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA081,NA,,,, +Ie35,,1930,EA081,8,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA081,NA,,,, +Ie37,,,EA081,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA081,3,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA081,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA081,8,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA081,4,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA081,NA,,,, +Ie7,with special reference to the Mae group,1950,EA081,3,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA081,3,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA081,3,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA081,8,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA081,NA,,,, +If11,,,EA081,NA,,,, +If12,,,EA081,NA,,,, +If13,,,EA081,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA081,10,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA081,8,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,,EA081,NA,,,, +If17,with special reference to the island of Jaluit,1900,EA081,8,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA081,8,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA081,8,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA081,3,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA081,7,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA081,7,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA081,7,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA081,3,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,,EA081,NA,,,, +Ig1,Northeastern group,1940,EA081,8,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA081,NA,,,, +Ig11,,1920,EA081,11,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,,,EA081,NA,,,, +Ig13,,1900,EA081,3,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA081,3,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA081,NA,,,, +Ig16,,,EA081,NA,,,, +Ig17,,,EA081,NA,,,, +Ig18,,,EA081,NA,,,, +Ig19,,,EA081,NA,,,, +Ig2,Kiriwina Island,1910,EA081,3,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA081,3,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA081,3,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA081,11,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA081,3,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA081,7,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA081,3,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,,EA081,NA,,,, +Ig8,,,EA081,NA,,,, +Ig9,,,EA081,NA,,,, +Ih1,,1890,EA081,3,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,,,EA081,NA,,,, +Ih11,,,EA081,NA,,,, +Ih12,,,EA081,NA,,,, +Ih13,,,EA081,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA081,8,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA081,3,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA081,3,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA081,8,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA081,4,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,,EA081,NA,,,, +Ih7,,1910,EA081,11,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA081,2,,quain1949,EthnographicAtlas_1967_p101, +Ih9,,,EA081,NA,,,, +Ii1,with special reference to American Samoa,1920,EA081,7,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA081,10,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA081,7,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA081,3,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA081,7,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA081,11,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,,EA081,NA,,,, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA081,7,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA081,7,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,,,EA081,NA,,,, +Ii7,,1910,EA081,7,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA081,3,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA081,7,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA081,3,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,,EA081,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA081,8,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA081,8,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA081,7,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA081,10,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA081,8,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA081,8,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA081,10,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA081,11,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA081,11,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA081,3,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA081,3,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA081,5,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA081,11,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA081,1,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA081,11,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA081,11,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA081,11,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA081,11,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA081,11,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA081,11,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA081,11,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA081,11,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA081,11,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA081,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA081,3,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA081,3,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA081,3,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA081,11,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA081,11,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA081,11,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA081,11,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA081,11,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA081,11,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA081,11,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA081,3,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA081,11,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA081,7,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA081,11,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA081,11,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA081,11,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA081,11,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA081,11,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA081,11,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,Prairie Potawatomi,1760,EA081,11,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p105, +Na43,,1920,EA081,11,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA081,11,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA081,NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA081,11,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA081,3,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA081,11,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA081,3,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA081,11,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA081,3,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA081,11,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA081,3,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA081,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA081,3,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA081,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA081,3,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA081,3,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA081,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA081,3,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA081,3,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA081,3,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA081,7,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA081,3,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA081,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA081,3,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA081,3,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA081,3,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA081,11,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA081,11,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA081,3,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA081,3,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA081,3,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA081,3,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA081,3,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA081,3,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA081,4,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA081,3,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA081,3,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA081,3,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA081,11,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA081,3,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA081,4,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA081,3,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA081,3,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA081,3,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA081,3,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA081,3,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA081,3,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA081,11,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA081,11,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA081,11,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA081,11,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA081,11,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA081,11,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA081,11,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA081,11,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA081,11,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA081,11,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA081,11,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA081,11,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA081,11,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA081,11,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA081,11,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA081,11,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA081,11,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA081,11,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA081,11,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA081,11,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA081,11,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA081,11,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA081,11,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA081,11,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA081,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA081,11,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA081,11,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA081,11,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA081,11,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA081,11,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA081,11,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA081,11,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA081,11,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA081,11,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA081,11,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA081,11,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA081,11,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA081,11,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA081,11,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA081,11,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA081,11,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA081,11,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA081,11,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,,EA081,NA,,,, +Nd19,,1860,EA081,11,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA081,11,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA081,11,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA081,11,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA081,11,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA081,11,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA081,11,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA081,11,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA081,11,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA081,11,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA081,11,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA081,11,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA081,11,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA081,11,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA081,11,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA081,11,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA081,11,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA081,11,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA081,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA081,11,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA081,11,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA081,11,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,,,EA081,NA,,,, +Nd49,including the Kaiparowits band,1860,EA081,11,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA081,11,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA081,11,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA081,11,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA081,11,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA081,11,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA081,11,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA081,11,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA081,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA081,11,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA081,11,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA081,11,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA081,11,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA081,11,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA081,11,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA081,11,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA081,11,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA081,11,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA081,11,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA081,11,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA081,11,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA081,11,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA081,11,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA081,11,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA081,11,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA081,3,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA081,11,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA081,11,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA081,11,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA081,11,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA081,3,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA081,11,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA081,11,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA081,11,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA081,11,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA081,11,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA081,11,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA081,NA,,,, +Ne3,Comanche Tribe,1870,EA081,11,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA081,11,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA081,11,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA081,11,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA081,11,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA081,11,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA081,11,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA081,3,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA081,3,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA081,11,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA081,11,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA081,11,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA081,NA,,,, +Nf2,,1850,EA081,4,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA081,3,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA081,7,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA081,11,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA081,11,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA081,4,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA081,11,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,,EA081,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA081,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA081,4,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA081,2,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA081,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA081,NA,,,, +Ng14,,,EA081,NA,,,, +Ng15,,,EA081,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA081,10,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA081,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,,EA081,NA,,,, +Ng5,,1750,EA081,2,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA081,11,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA081,2,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA081,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA081,NA,,,, +Nh1,Central band,1880,EA081,11,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA081,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA081,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA081,9,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA081,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA081,9,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA081,11,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA081,11,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA081,9,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA081,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA081,11,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA081,9,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,1860,EA081,11,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA081,11,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA081,11,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA081,3,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA081,11,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA081,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA081,NA,,,, +Nh27,,,EA081,NA,,,, +Nh3,,1930,EA081,11,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA081,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA081,11,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA081,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA081,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA081,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA081,1,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA081,3,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA081,8,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA081,1,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA081,11,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,,EA081,NA,,,, +Ni6,,1840,EA081,11,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA081,8,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA081,NA,,,, +Ni9,,,EA081,NA,,,, +Nj1,Ojitlan,1940,EA081,9,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA081,9,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA081,NA,,,, +Nj12,,,EA081,NA,,,, +Nj13,,,EA081,NA,,,, +Nj14,,,EA081,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA081,9,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA081,3,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,1940,EA081,3,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p121, +Nj5,,,EA081,NA,,,, +Nj6,,,EA081,NA,,,, +Nj7,with special reference to Ayutla,1930,EA081,9,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA081,3,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA081,9,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA081,3,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,,EA081,NA,,,, +Sa11,,,EA081,NA,,,, +Sa12,,1948,EA081,9,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA081,9,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA081,NA,,,, +Sa15,,,EA081,NA,,,, +Sa16,,,EA081,NA,,,, +Sa17,,,EA081,NA,,,, +Sa2,,,EA081,NA,,,, +Sa3,,1930,EA081,8,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA081,10,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA081,11,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,,EA081,NA,,,, +Sa7,,1940,EA081,8,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA081,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA081,7,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA081,3,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA081,7,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA081,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA081,2,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA081,7,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA081,11,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,,,EA081,NA,,,, +Sb8,,1520,EA081,3,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA081,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA081,10,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,,EA081,NA,,,, +Sc11,,,EA081,NA,,,, +Sc12,,1910,EA081,2,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,1950,EA081,11,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA081,NA,,,, +Sc15,,1910,EA081,2,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA081,9,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA081,3,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA081,3,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA081,11,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA081,10,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA081,8,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA081,8,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA081,7,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA081,10,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA081,11,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,1950,EA081,9,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p121, +Sd1,Cabrura village,1950,EA081,2,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA081,11,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,,EA081,NA,,,, +Sd4,,1950,EA081,11,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA081,10,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA081,11,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA081,8,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA081,3,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA081,8,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA081,11,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA081,3,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA081,4,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA081,NA,,,, +Se2,,1940,EA081,8,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA081,3,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA081,11,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA081,8,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA081,8,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA081,9,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA081,10,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA081,10,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA081,1,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA081,9,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA081,10,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA081,3,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA081,7,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA081,2,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA081,10,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA081,NA,,,, +Sf9,,,EA081,NA,,,, +Sg1,Eastern and central,1870,EA081,11,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA081,7,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA081,11,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA081,11,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA081,11,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA081,11,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA081,11,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA081,11,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA081,2,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA081,11,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA081,11,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,1900,EA081,2,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA081,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA081,NA,,,, +Si1,Kejara,1920,EA081,8,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA081,11,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA081,8,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA081,11,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA081,11,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA081,11,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA081,11,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA081,11,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA081,11,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA081,NA,,,, +Sj1,,1950,EA081,11,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,Taquapiri,1950,EA081,11,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA081,11,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,,EA081,NA,,,, +Sj3,Duque de Caxias Reservation,1910,EA081,11,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA081,8,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA081,11,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA081,8,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA081,8,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA081,11,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA081,11,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA081,3,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA081,3,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA081,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA081,3,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA081,3,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA081,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA081,3,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA081,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA081,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA081,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA081,3,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA081,3,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA081,3,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA081,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA081,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA081,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA081,3,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA081,5,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA081,3,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA081,5,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA081,3,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA081,5,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA081,3,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA081,3,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA081,5,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA081,3,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA081,3,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA082,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA082,2,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA082,2,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA082,3,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA082,2,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA082,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA082,5,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA082,5,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA082,2,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA082,3,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA082,3,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA082,3,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA082,3,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA082,4,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA082,4,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,1860,EA082,4,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,1930,EA082,4,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA082,4,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA082,4,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA082,4,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA082,3,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA082,4,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA082,3,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA082,NA,,,, +Ab22,,,EA082,NA,,,, +Ab3,Ruling Luyana,1890,EA082,4,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA082,4,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA082,4,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA082,4,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA082,4,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA082,4,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA082,3,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA082,4,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA082,4,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA082,8,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA082,3,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA082,4,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA082,8,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,,EA082,NA,,,, +Ac16,,1940,EA082,8,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA082,8,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA082,8,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,1880,EA082,8,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA082,9,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,1920,EA082,8,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA082,9,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA082,8,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA082,8,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA082,8,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA082,9,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA082,8,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA082,8,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA082,9,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,,EA082,NA,,,, +Ac3,Zambia branch,1900,EA082,4,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA082,4,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA082,9,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA082,9,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA082,4,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA082,4,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,,EA082,NA,,,, +Ac36,,1920,EA082,4,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA082,4,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA082,4,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA082,4,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA082,8,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA082,9,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA082,4,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA082,4,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA082,NA,,,, +Ac5,,1920,EA082,4,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,,EA082,NA,,,, +Ac7,,1920,EA082,4,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA082,8,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA082,4,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA082,8,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA082,4,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA082,8,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA082,4,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA082,8,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA082,8,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA082,4,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA082,4,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA082,4,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA082,4,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA082,8,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA082,3,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA082,4,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA082,4,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA082,4,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA082,7,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA082,7,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA082,7,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA082,7,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA082,4,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA082,4,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA082,9,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA082,4,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA082,1,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,1910,EA082,8,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA082,8,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA082,2,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA082,4,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA082,4,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,,EA082,NA,,,, +Ad37,,1940,EA082,4,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA082,3,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA082,4,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA082,7,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,1950,EA082,4,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA082,4,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA082,3,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,1900,EA082,4,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA082,3,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,1920,EA082,3,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA082,4,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA082,3,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA082,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA082,3,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA082,7,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA082,7,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA082,4,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA082,4,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA082,3,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA082,7,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA082,4,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA082,3,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA082,3,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA082,8,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA082,8,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA082,3,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA082,3,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA082,4,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA082,8,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA082,1,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA082,4,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA082,8,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA082,8,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA082,8,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA082,8,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA082,8,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA082,8,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA082,8,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA082,8,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA082,8,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA082,8,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA082,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA082,9,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA082,8,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA082,8,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA082,8,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA082,8,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA082,8,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA082,3,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA082,8,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA082,8,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA082,8,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,,EA082,NA,,,, +Ae39,,1920,EA082,8,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA082,8,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA082,8,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA082,8,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA082,8,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA082,8,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA082,8,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA082,8,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA082,8,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA082,8,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA082,8,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,1900,EA082,9,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA082,4,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA082,2,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA082,8,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA082,9,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA082,8,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA082,9,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA082,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,1950,EA082,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,1930,EA082,9,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA082,4,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA082,4,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,,,EA082,NA,,,, +Ae7,,1910,EA082,4,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA082,3,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA082,9,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA082,9,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA082,8,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA082,4,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,,,EA082,NA,,,, +Af13,,1920,EA082,4,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA082,4,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA082,4,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA082,8,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA082,4,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA082,8,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA082,8,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA082,4,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA082,8,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA082,8,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA082,8,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA082,8,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA082,8,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA082,8,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA082,8,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,,EA082,NA,,,, +Af28,,1910,EA082,4,,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA082,4,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA082,8,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA082,4,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA082,4,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA082,8,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA082,8,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA082,8,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA082,NA,,,, +Af36,with special reference to the Glidyi,1900,EA082,8,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA082,7,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA082,8,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA082,8,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA082,8,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA082,8,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA082,6,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,,EA082,NA,,,, +Af43,,1930,EA082,8,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,,EA082,NA,,,, +Af45,,1900,EA082,8,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA082,8,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA082,4,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA082,4,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA082,8,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA082,4,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA082,4,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA082,4,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA082,9,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,1950,EA082,4,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA082,4,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,,EA082,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA082,4,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA082,4,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA082,4,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA082,8,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA082,8,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA082,4,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA082,8,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA082,7,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA082,4,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA082,7,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA082,4,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA082,7,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA082,4,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA082,4,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA082,4,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,1940,EA082,4,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA082,4,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA082,9,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA082,4,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA082,4,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA082,4,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA082,4,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA082,4,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA082,4,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA082,7,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA082,4,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA082,7,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA082,7,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA082,7,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA082,7,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA082,7,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA082,7,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA082,4,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA082,7,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA082,7,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA082,4,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA082,7,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA082,7,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,,EA082,NA,,,, +Ag39,,1910,EA082,7,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA082,4,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA082,7,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA082,4,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA082,7,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA082,7,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA082,4,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA082,4,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA082,4,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA082,4,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA082,4,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA082,4,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA082,7,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA082,4,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA082,4,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA082,4,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA082,4,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA082,5,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA082,4,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA082,7,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA082,4,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA082,4,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA082,4,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA082,4,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA082,4,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,1920,EA082,4,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA082,4,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA082,4,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA082,4,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA082,2,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA082,4,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA082,2,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA082,4,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA082,4,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA082,4,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,1920,EA082,4,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA082,4,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA082,4,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA082,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA082,4,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA082,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA082,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA082,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA082,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA082,4,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA082,4,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA082,4,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA082,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA082,4,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA082,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA082,4,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA082,4,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA082,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA082,4,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA082,4,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA082,4,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA082,4,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA082,4,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA082,4,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA082,4,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA082,3,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA082,4,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA082,4,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA082,8,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA082,4,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA082,4,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA082,4,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p77, +Ai15,,1900,EA082,4,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA082,4,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA082,2,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA082,4,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA082,3,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA082,4,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA082,4,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA082,4,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,1890,EA082,4,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA082,8,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA082,3,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA082,4,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA082,4,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,1890,EA082,4,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA082,4,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA082,3,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA082,4,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA082,4,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,1920,EA082,4,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA082,4,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA082,4,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA082,4,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA082,4,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA082,4,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA082,4,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA082,4,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA082,4,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA082,NA,,,, +Ai40,,1940,EA082,4,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA082,4,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA082,4,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA082,4,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,1920,EA082,4,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p77, +Ai45,,1930,EA082,4,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA082,4,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA082,3,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,1920,EA082,4,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA082,4,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA082,4,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA082,4,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA082,4,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA082,3,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,,EA082,NA,,,, +Aj11,,1900,EA082,4,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,1920,EA082,4,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,1930,EA082,4,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA082,4,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA082,2,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA082,4,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA082,4,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA082,3,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA082,4,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA082,1,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA082,3,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,1930,EA082,4,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,,EA082,NA,,,, +Aj23,,1950,EA082,2,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA082,3,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA082,4,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA082,4,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,1920,EA082,3,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA082,7,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA082,2,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA082,4,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA082,NA,,,, +Aj31,,,EA082,NA,,,, +Aj4,,1920,EA082,2,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA082,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA082,4,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA082,4,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA082,4,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA082,4,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA082,4,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA082,2,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA082,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA082,4,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA082,4,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,1950,EA082,4,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,1930,EA082,4,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA082,3,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,1950,EA082,4,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca18,,1940,EA082,2,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA082,4,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA082,2,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA082,3,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA082,4,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA082,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA082,4,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,1950,EA082,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA082,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA082,4,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA082,4,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA082,4,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA082,4,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA082,4,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA082,4,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA082,4,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA082,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA082,3,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA082,8,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA082,8,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA082,1,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA082,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA082,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA082,4,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA082,4,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA082,3,"In shape, but roof 'conical' (code ""4"") in construction",straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA082,3,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA082,4,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA082,NA,,,, +Ca5,,1930,EA082,4,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,1880,EA082,2,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA082,4,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA082,4,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,1890,EA082,7,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA082,4,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA082,4,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA082,2,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,,EA082,NA,,,, +Cb13,,1930,EA082,1,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA082,2,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA082,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA082,3,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA082,4,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA082,3,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA082,4,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA082,4,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA082,4,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA082,3,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA082,7,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA082,4,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA082,2,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA082,4,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA082,4,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA082,4,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA082,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA082,4,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA082,1,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA082,8,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA082,3,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA082,4,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA082,4,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA082,3,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA082,4,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,,EA082,NA,,,, +Cc10,,1900,EA082,1,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA082,8,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA082,2,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,,EA082,NA,,,, +Cc14,,1880,EA082,4,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA082,7,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA082,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,,EA082,NA,,,, +Cc18,,1910,EA082,8,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA082,9,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA082,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,,,EA082,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA082,7,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA082,7,,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA082,9,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA082,9,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA082,1,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA082,7,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA082,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA082,7,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA082,7,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA082,7,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA082,7,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA082,1,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA082,1,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA082,9,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA082,7,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA082,1,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA082,8,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA082,7,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA082,7,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA082,8,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA082,7,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA082,7,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA082,8,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA082,7,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA082,7,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA082,1,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA082,7,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA082,7,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA082,8,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA082,8,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,,,EA082,NA,,,, +Ce4,,,EA082,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA082,7,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA082,8,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA082,9,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA082,8,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA082,8,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA082,8,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA082,8,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA082,8,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA082,8,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA082,8,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA082,8,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA082,8,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA082,8,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA082,8,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA082,9,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA082,NA,,,, +Ch11,Viriatino Village,1955,EA082,9,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA082,9,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,,,EA082,NA,,,, +Ch4,,1900,EA082,8,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA082,9,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA082,8,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,,EA082,NA,,,, +Ch8,,,EA082,NA,,,, +Ch9,,,EA082,NA,,,, +Ci1,with special reference to the Baga Dorbed group,1920,EA082,2,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,Vicinity of Erevan,1900,EA082,7,,haxthausen1854; karst190707; klidschian1911; kohler1906,Ethnology_Vol10_No1_Jan_1971, +Ci11,,1940,EA082,7,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA082,4,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA082,7,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA082,7,,gadzhieva1958,EthnographicAtlas_1967_p85, +Ci4,,,EA082,NA,,,, +Ci5,Northern Anatolian Plateau,1950,EA082,8,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA082,7,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,1900,EA082,7,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p85, +Ci8,,1850,EA082,7,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA082,7,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA082,2,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA082,1,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA082,8,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA082,7,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA082,7,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA082,7,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA082,7,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA082,7,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA082,7,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA082,7,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,,EA082,NA,,,, +Ea10,,,EA082,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA082,7,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA082,7,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA082,7,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA082,7,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA082,7,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA082,7,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA082,7,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA082,7,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA082,8,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,1920,EA082,7,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,,EA082,NA,,,, +Eb1,Great Horde,1910,EA082,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,,EA082,NA,,,, +Eb3,Narobanchin Territory,1940,EA082,4,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,,,EA082,NA,,,, +Eb5,,,EA082,NA,,,, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA082,4,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,,EA082,NA,,,, +Eb8,,,EA082,NA,,,, +Ec1,Sakhalin Island,1920,EA082,7,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA082,4,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA082,4,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA082,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA082,4,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA082,4,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA082,7,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA082,4,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA082,8,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA082,7,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA082,4,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA082,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA082,NA,,,, +Ed13,,,EA082,NA,,,, +Ed14,,,EA082,NA,,,, +Ed15a,,,EA082,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA082,8,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA082,NA,,,, +Ed2,,,EA082,NA,,,, +Ed3,,,EA082,NA,,,, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA082,8,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA082,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA082,NA,,,, +Ed7,,1950,EA082,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA082,8,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA082,1,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA082,8,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,Hunza State,1930,EA082,6,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p89, +Ee3,Lingthem and vicinity,1930,EA082,8,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA082,7,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA082,7,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA082,8,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA082,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA082,8,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA082,8,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA082,NA,,,, +Ef11,Village and environs of Senapur,1945,EA082,8,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA082,8,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA082,NA,,,, +Ef4,,1920,EA082,8,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA082,8,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA082,8,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA082,8,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA082,8,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,,,EA082,NA,,,, +Eg1,with special reference to the forest group,1940,EA082,4,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA082,8,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA082,NA,,,, +Eg12,,,EA082,NA,,,, +Eg13,Bastar State,1941,EA082,8,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA082,9,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA082,8,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA082,8,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA082,1,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA082,9,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA082,8,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA082,8,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA082,8,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA082,8,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA082,6,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA082,NA,,,, +Eh2,,1900,EA082,8,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA082,8,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,,,EA082,NA,,,, +Eh5,Car Nicobar of North Islands,1890,EA082,3,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA082,8,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA082,8,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA082,8,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA082,4,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA082,8,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA082,8,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA082,8,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA082,9,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA082,8,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA082,8,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA082,NA,,,, +Ei16,,1910,EA082,8,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA082,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA082,8,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA082,8,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA082,8,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA082,NA,,,, +Ei3,Nondwin Village,1950,EA082,8,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA082,8,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA082,8,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA082,8,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA082,8,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA082,8,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,1880,EA082,8,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p93, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA082,6,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA082,8,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA082,8,,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA082,8,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA082,8,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA082,8,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA082,8,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA082,8,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA082,8,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA082,6,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA082,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA082,8,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA082,NA,,,, +Ej7,,1950,EA082,9,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA082,8,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA082,8,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA082,8,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA082,8,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,1930,EA082,8,,mabuchi1960,EthnographicAtlas_1967_p93, +Ia12,,1950,EA082,8,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,,,EA082,NA,,,, +Ia14,,1930,EA082,8,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA082,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA082,9,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA082,NA,,,, +Ia18,,,EA082,NA,,,, +Ia2,,1950,EA082,9,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA082,9,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA082,8,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA082,9,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,,,EA082,NA,,,, +Ia7,,,EA082,NA,,,, +Ia8,,1900,EA082,9,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA082,8,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA082,8,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA082,8,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA082,8,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA082,8,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA082,8,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA082,8,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,,,EA082,NA,,,, +Ib8,with special reference to the Ridan group,1900,EA082,7,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA082,NA,,,, +Ic1,,,EA082,NA,,,, +Ic10,,,EA082,NA,,,, +Ic11,Allang,1950,EA082,8,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA082,NA,,,, +Ic13,,,EA082,NA,,,, +Ic2,,,EA082,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA082,8,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,,EA082,NA,,,, +Ic5,Bare'e subgroup,1910,EA082,8,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA082,8,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA082,9,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,,EA082,NA,,,, +Ic9,with special reference to eastern Sumba,1930,EA082,9,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA082,6,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA082,6,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA082,1,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA082,NA,,,, +Id13,,,EA082,NA,,,, +Id2,,1930,EA082,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,,,EA082,NA,,,, +Id4,,,EA082,NA,,,, +Id5,,,EA082,NA,,,, +Id6,,,EA082,NA,,,, +Id7,,,EA082,NA,,,, +Id8,,1830,EA082,5,,roth1890,EthnographicAtlas_1967_p97, +Id9,,,EA082,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA082,8,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA082,9,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA082,1,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA082,8,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA082,NA,,,, +Ie14,,,EA082,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA082,8,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,,EA082,NA,,,, +Ie17,,1940,EA082,4,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA082,3,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA082,8,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA082,8,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA082,8,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA082,8,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA082,8,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA082,8,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA082,8,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA082,8,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA082,3,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,,EA082,NA,,,, +Ie28,,1940,EA082,8,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,,,EA082,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA082,8,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA082,8,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA082,4,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA082,8,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA082,8,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA082,NA,,,, +Ie35,,1930,EA082,8,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA082,NA,,,, +Ie37,,,EA082,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA082,2,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA082,8,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA082,8,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA082,8,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA082,9,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA082,8,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA082,8,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA082,9,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA082,8,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA082,NA,,,, +If11,,1860,EA082,8,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,,EA082,NA,,,, +If13,,,EA082,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA082,8,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA082,8,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,1960,EA082,8,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA082,8,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA082,9,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA082,9,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA082,8,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA082,8,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA082,8,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA082,8,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA082,8,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,,EA082,NA,,,, +Ig1,Northeastern group,1940,EA082,8,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA082,NA,,,, +Ig11,,1920,EA082,1,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,,,EA082,NA,,,, +Ig13,,1900,EA082,8,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA082,8,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA082,NA,,,, +Ig16,,,EA082,NA,,,, +Ig17,,,EA082,NA,,,, +Ig18,,,EA082,NA,,,, +Ig19,,,EA082,NA,,,, +Ig2,Kiriwina Island,1910,EA082,8,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA082,8,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA082,8,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA082,1,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA082,8,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA082,8,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA082,8,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,,EA082,NA,,,, +Ig8,,,EA082,NA,,,, +Ig9,Peri Village,1920,EA082,8,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA082,8,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,,,EA082,NA,,,, +Ih11,,,EA082,NA,,,, +Ih12,,,EA082,NA,,,, +Ih13,,,EA082,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA082,8,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA082,8,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA082,8,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA082,8,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA082,4,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,,EA082,NA,,,, +Ih7,,1910,EA082,3,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA082,9,,quain1949,EthnographicAtlas_1967_p101, +Ih9,,,EA082,NA,,,, +Ii1,with special reference to American Samoa,1920,EA082,8,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA082,8,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA082,8,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA082,8,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA082,3,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA082,8,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA082,8,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA082,8,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA082,8,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA082,8,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA082,8,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA082,8,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA082,8,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA082,8,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,,EA082,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA082,1,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA082,8,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA082,8,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA082,8,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA082,8,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA082,8,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA082,8,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA082,8,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA082,2,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA082,7,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA082,4,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA082,5,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA082,2,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA082,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA082,4,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA082,4,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA082,4,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA082,8,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA082,2,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA082,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA082,2,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA082,2,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA082,2,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA082,8,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA082,8,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA082,8,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA082,8,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA082,4,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA082,4,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA082,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA082,4,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA082,4,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA082,4,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA082,4,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA082,8,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA082,4,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA082,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA082,4,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA082,4,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA082,8,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA082,4,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA082,1,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA082,4,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,Prairie Potawatomi,1760,EA082,2,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p105, +Na43,,1920,EA082,2,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA082,2,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA082,NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA082,4,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA082,9,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA082,4,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA082,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA082,5,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA082,8,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA082,4,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA082,8,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA082,6,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA082,6,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA082,8,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA082,8,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA082,8,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA082,8,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA082,8,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA082,8,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA082,8,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA082,8,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA082,8,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA082,8,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA082,8,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA082,6,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA082,8,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA082,6,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA082,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA082,8,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA082,8,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA082,8,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA082,8,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA082,8,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA082,8,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA082,8,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA082,8,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA082,8,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA082,8,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA082,4,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA082,8,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA082,9,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA082,8,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA082,8,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA082,8,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA082,8,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA082,8,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA082,8,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA082,4,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA082,4,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA082,4,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA082,4,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA082,4,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA082,4,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA082,4,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA082,4,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA082,4,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA082,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA082,2,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA082,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA082,2,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA082,2,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA082,2,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA082,4,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA082,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA082,4,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA082,2,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA082,2,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA082,2,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA082,2,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA082,2,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA082,4,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA082,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA082,4,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA082,4,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA082,8,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA082,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA082,2,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA082,2,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA082,4,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA082,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA082,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA082,9,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA082,9,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA082,9,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA082,8,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA082,8,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA082,4,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA082,4,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA082,4,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA082,4,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA082,2,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA082,8,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA082,4,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA082,8,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA082,4,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA082,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA082,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA082,4,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA082,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA082,2,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA082,2,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA082,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA082,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA082,2,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA082,8,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA082,4,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA082,4,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA082,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA082,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA082,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA082,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA082,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA082,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA082,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA082,8,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA082,4,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA082,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA082,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA082,2,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA082,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA082,4,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA082,4,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA082,8,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,,,EA082,NA,,,, +Nd49,including the Kaiparowits band,1860,EA082,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA082,4,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA082,4,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA082,4,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA082,4,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA082,4,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA082,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA082,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA082,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA082,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA082,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA082,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA082,4,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA082,4,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA082,4,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA082,4,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA082,4,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA082,4,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA082,2,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA082,2,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA082,2,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA082,8,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA082,8,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA082,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA082,4,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA082,2,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA082,4,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA082,4,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA082,4,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA082,4,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA082,2,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA082,2,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA082,4,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA082,4,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA082,4,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA082,4,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA082,4,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA082,NA,,,, +Ne3,Comanche Tribe,1870,EA082,4,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA082,4,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA082,4,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA082,2,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA082,4,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA082,4,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA082,4,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA082,2,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA082,2,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA082,2,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA082,2,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA082,3,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA082,NA,,,, +Nf2,,1850,EA082,8,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA082,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA082,NA,,,, +Nf5,,1860,EA082,3,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA082,2,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,,,EA082,NA,,,, +Nf8,,1770,EA082,3,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,,EA082,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA082,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA082,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA082,8,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA082,4,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA082,NA,,,, +Ng14,,,EA082,NA,,,, +Ng15,,,EA082,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA082,8,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA082,8,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,,EA082,NA,,,, +Ng5,,1750,EA082,8,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA082,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA082,2,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA082,4,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA082,NA,,,, +Nh1,Central band,1880,EA082,2,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA082,7,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA082,7,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA082,7,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA082,7,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA082,7,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA082,2,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA082,2,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA082,8,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA082,7,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA082,1,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA082,7,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,1860,EA082,2,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA082,1,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA082,2,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA082,9,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA082,2,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA082,7,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA082,NA,,,, +Nh27,,,EA082,NA,,,, +Nh3,,1930,EA082,2,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA082,7,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA082,2,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA082,7,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA082,7,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA082,7,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA082,7,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA082,9,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,,EA082,NA,,,, +Ni3,Huichol Tribe,1920,EA082,9,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA082,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA082,8,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA082,2,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA082,8,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA082,NA,,,, +Ni9,,,EA082,NA,,,, +Nj1,Ojitlan,1940,EA082,8,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA082,8,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA082,NA,,,, +Nj12,,,EA082,NA,,,, +Nj13,,,EA082,NA,,,, +Nj14,,,EA082,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA082,7,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA082,9,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,1940,EA082,9,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p121, +Nj5,,,EA082,NA,,,, +Nj6,with special reference to San Mateo,1950,EA082,8,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA082,9,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA082,9,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA082,8,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA082,8,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA082,8,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,,EA082,NA,,,, +Sa12,,1948,EA082,9,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA082,8,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA082,NA,,,, +Sa15,,,EA082,NA,,,, +Sa16,,,EA082,NA,,,, +Sa17,,,EA082,NA,,,, +Sa2,,,EA082,NA,,,, +Sa3,,1930,EA082,8,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA082,4,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA082,4,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA082,8,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,1940,EA082,8,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA082,8,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA082,8,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA082,8,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA082,4,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA082,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA082,8,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA082,8,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA082,8,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,,,EA082,NA,,,, +Sb8,,1520,EA082,4,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA082,8,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA082,8,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,,EA082,NA,,,, +Sc11,,1930,EA082,4,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p121, +Sc12,,1910,EA082,9,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,1950,EA082,3,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA082,NA,,,, +Sc15,,1910,EA082,4,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA082,4,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA082,9,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA082,8,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA082,2,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA082,8,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA082,8,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA082,9,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA082,8,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA082,8,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA082,3,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,,EA082,NA,,,, +Sd1,Cabrura village,1950,EA082,8,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA082,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,,EA082,NA,,,, +Sd4,,1950,EA082,6,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA082,8,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA082,6,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA082,4,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA082,9,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA082,4,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA082,9,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA082,8,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA082,8,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA082,NA,,,, +Se2,,1940,EA082,9,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA082,9,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA082,9,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA082,8,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA082,8,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA082,8,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA082,8,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA082,9,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA082,8,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA082,8,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA082,9,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA082,4,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA082,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA082,8,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,,EA082,NA,,,, +Sf8,,,EA082,NA,,,, +Sf9,,,EA082,NA,,,, +Sg1,Eastern and central,1870,EA082,2,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA082,9,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA082,5,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA082,5,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA082,2,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA082,3,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA082,1,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA082,6,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA082,8,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA082,4,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA082,6,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,1900,EA082,8,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA082,8,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA082,NA,,,, +Si1,Kejara,1920,EA082,8,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA082,1,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA082,8,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA082,9,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA082,3,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA082,9,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA082,8,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA082,1,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA082,8,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA082,NA,,,, +Sj1,,1950,EA082,9,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,Taquapiri,1950,EA082,8,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA082,3,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA082,8,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA082,1,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA082,9,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA082,2,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA082,9,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA082,8,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA082,1,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA082,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA082,8,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA082,8,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA082,8,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA082,8,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA082,9,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA082,9,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA082,8,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA082,8,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA082,8,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA082,8,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA082,8,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA082,8,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA082,8,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA082,9,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA082,8,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA082,8,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA082,8,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA082,4,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA082,8,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA082,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA082,8,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA082,4,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA082,8,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA082,8,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA082,4,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA082,8,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA082,8,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA083,8,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,with special reference to Central Dorobo,1920,EA083,8,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p65, +Aa3,Gei/Khauan tribe,1840,EA083,7,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p65, +Aa4,,1920,EA083,8,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol2_No1_Jan_1963, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA083,8,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p65, +Aa6,,1920,EA083,8,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,1910,EA083,8,,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p65, +Aa8,,1850,EA083,7,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA083,8,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p65, +Ab1,,1900,EA083,2,,irle1906; vedder1928,EthnographicAtlas_1967_p65, +Ab10,,1936,EA083,8,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,1850,EA083,8,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA083,8,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p65, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA083,8,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p65, +Ab14,,1930,EA083,8,,krigeandkrige1943,EthnographicAtlas_1967_p65, +Ab15,,1860,EA083,8,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No3_Jul_1963, +Ab16,,1930,EA083,8,,earthy1933,EthnographicAtlas_1967_p65, +Ab17,,1920,EA083,8,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No3_Jul_1963, +Ab18,with special reference to the Zezuru,1920,EA083,8,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p65, +Ab19,with special reference to the Kuanyama,1910,EA083,8,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p65, +Ab2,,1880,EA083,8,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,1880,EA083,8,,wunenberger1888,Ethnology_Vol2_No3_Jul_1963, +Ab21a,,1930,EA083,8,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,,EA083,NA,,,, +Ab22,,,EA083,NA,,,, +Ab3,Ruling Luyana,1890,EA083,8,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,1920,EA083,8,,junod1927,EthnographicAtlas_1967_p65, +Ab5,,1930,EA083,8,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p65, +Ab6,,1900,EA083,8,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p65, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA083,8,,langandtastevin1937,EthnographicAtlas_1967_p65, +Ab8,Basuto,1860,EA083,8,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p65, +Ab9,,1870,EA083,8,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,1920,EA083,8,,smithanddale1920; tudennd,EthnographicAtlas_1967_p65, +Ac10,,1920,EA083,8,,bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p65, +Ac11,,1930,EA083,8,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,1920,EA083,8,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p65, +Ac13,,1950,EA083,8,,tew1950; velsen1964,EthnographicAtlas_1967_p65, +Ac14,,1900,EA083,8,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,,EA083,NA,,,, +Ac16,,1940,EA083,8,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA083,8,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p65, +Ac18,,1910,EA083,8,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p65, +Ac19,,1880,EA083,8,,badier1929; descazes1885; guiral1886; trezenem1940,Ethnology_Vol5_No1_Jan_1966, +Ac2,,1920,EA083,8,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p65, +Ac20,,1920,EA083,8,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA083,8,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p65, +Ac22,,1930,EA083,8,,mertens1935,EthnographicAtlas_1967_p65, +Ac23,with special reference to the western Lele,1950,EA083,8,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p65, +Ac24,,1910,EA083,8,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA083,8,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p65, +Ac26,,1920,EA083,8,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA083,8,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA083,8,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p65, +Ac29,,,EA083,NA,,,, +Ac3,Zambia branch,1900,EA083,8,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p65, +Ac30,,1940,EA083,8,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p65, +Ac31,,1910,EA083,8,,colle1913,Ethnology_Vol5_No1_Jan_1966, +Ac32,,1920,EA083,8,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA083,8,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p65, +Ac34,,1940,EA083,8,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p65, +Ac35,,,EA083,NA,,,, +Ac36,,1920,EA083,8,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p65, +Ac37,,1950,EA083,8,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA083,8,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p65, +Ac39,,1920,EA083,8,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA083,8,,tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p65, +Ac40,,1900,EA083,8,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA083,8,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA083,8,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,,EA083,NA,,,, +Ac5,,1920,EA083,8,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p65, +Ac6,,1930,EA083,8,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p65, +Ac7,,1920,EA083,8,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,1930,EA083,8,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p65, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA083,8,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p65, +Ad1,,1950,EA083,8,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA083,8,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA083,8,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,1940,EA083,8,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA083,8,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA083,8,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA083,8,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,1920,EA083,8,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p69, +Ad17,,1920,EA083,8,,kootzkretschmer192629,EthnographicAtlas_1967_p69, +Ad18,,1910,EA083,8,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA083,8,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,1950,EA083,8,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p65, +Ad20,,1920,EA083,8,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,1930,EA083,8,,maurice193538,EthnographicAtlas_1967_p69, +Ad22,,1950,EA083,8,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p69, +Ad23,,1910,EA083,9,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA083,9,,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p69, +Ad25,,1900,EA083,9,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA083,9,,sick1916,EthnographicAtlas_1967_p69, +Ad27,,1880,EA083,8,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA083,8,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA083,8,,ingrams1930; prins1961,EthnographicAtlas_1967_p69, +Ad3,,1910,EA083,8,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p65, +Ad30,,1890,EA083,8,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p69, +Ad31,,1910,EA083,7,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA083,8,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p69, +Ad33,,1900,EA083,8,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p69, +Ad34,,1910,EA083,8,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA083,8,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p69, +Ad36,,1890,EA083,8,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA083,8,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA083,8,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA083,8,,gray1963,EthnographicAtlas_1967_p69, +Ad4,Fort Hall or Metume district,1930,EA083,9,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,1950,EA083,8,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA083,8,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p69, +Ad42,,1900,EA083,8,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p69, +Ad43,,1900,EA083,8,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA083,8,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p69, +Ad45,,1920,EA083,8,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p69, +Ad46,,1950,EA083,8,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,1900,EA083,8,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA083,8,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA083,8,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA083,9,,graynd,Ethnology_Vol2_No1_Jan_1963, +Ad50,with special reference to the Mountain Kaguru,1900,EA083,9,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA083,8,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA083,8,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,Kyaddondo district (V: Kampala),1880,EA083,8,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p65, +Ad8,with special reference to the northern or Iringa group,1910,EA083,9,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p69, +Ad9,,1900,EA083,8,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p69, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA083,8,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,1910,EA083,8,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,EthnographicAtlas_1967_p69, +Ae11,,1900,EA083,8,,delhaise1909a,EthnographicAtlas_1967_p69, +Ae12,,1940,EA083,7,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p69, +Ae13,,1920,EA083,8,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA083,8,,hertefeltetal1962,EthnographicAtlas_1967_p69, +Ae15,,1940,EA083,8,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p69, +Ae16,,1910,EA083,8,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA083,8,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p69, +Ae18,,1900,EA083,8,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA083,8,,grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA083,8,,ardener1956; leuschner1903,EthnographicAtlas_1967_p69, +Ae20,,1940,EA083,8,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA083,8,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA083,8,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p69, +Ae23,,1930,EA083,8,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA083,8,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA083,8,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA083,8,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA083,8,,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA083,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,1900,EA083,8,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p69, +Ae3,,1910,EA083,8,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p69, +Ae30,,1920,EA083,8,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA083,8,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA083,8,,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA083,8,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA083,8,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA083,8,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA083,8,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA083,8,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,,EA083,NA,,,, +Ae39,,1920,EA083,8,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p69, +Ae4,Ilanga group,1930,EA083,8,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p69, +Ae40,,1910,EA083,7,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA083,8,,andersson1953,EthnographicAtlas_1967_p69, +Ae42,,1900,EA083,7,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA083,7,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA083,8,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA083,7,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA083,8,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA083,8,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA083,8,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,1900,EA083,8,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA083,8,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae50,,1920,EA083,8,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,Ndiki subtribe,1940,EA083,7,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae52,,1950,EA083,8,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA083,8,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA083,8,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA083,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae56,,1950,EA083,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Ae57,,1930,EA083,8,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA083,8,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA083,7,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA083,8,,verhulpen1936,EthnographicAtlas_1967_p69, +Ae7,,1910,EA083,8,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,1910,EA083,8,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p69, +Ae9,,1950,EA083,8,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p69, +Af1,City and environs of Abomey,1890,EA083,8,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p69, +Af10,,1930,EA083,8,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p73, +Af11,,1920,EA083,8,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p73, +Af12,with special reference to the Kwahu,1930,EA083,8,,field1949; mead1937a,Ethnology_Vol4_No3_Jul_1965, +Af13,,1920,EA083,8,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA083,8,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA083,8,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,1910,EA083,8,,ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA083,8,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA083,8,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA083,8,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p73, +Af2,,1950,EA083,8,,neel1913; paulme1954,EthnographicAtlas_1967_p69, +Af20,,1910,EA083,8,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p73, +Af21,with special reference to the Kalabari,1920,EA083,8,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA083,8,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p73, +Af23,with special reference to the village of Mgbom,1950,EA083,8,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p73, +Af24,,1900,EA083,8,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p73, +Af25,,1930,EA083,8,,bradbury1957; welch1934,EthnographicAtlas_1967_p73, +Af26,with special reference to the Etsako,1900,EA083,8,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,,EA083,NA,,,, +Af28,,1910,EA083,8,,gunnandconant1960,EthnographicAtlas_1967_p73, +Af29,,1950,EA083,8,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA083,8,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p69, +Af30,,1920,EA083,8,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA083,8,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA083,8,,ajisafe1924; forde1951,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA083,8,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p73,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA083,8,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,,,EA083,NA,,,, +Af36,with special reference to the Glidyi,1900,EA083,8,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p73, +Af37,with special reference to the Akpafu,1900,EA083,9,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA083,8,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA083,8,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA083,8,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p73, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA083,8,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA083,8,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA083,8,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p73, +Af43,,1930,EA083,8,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p73, +Af44,,,EA083,NA,,,, +Af45,,1900,EA083,8,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA083,2,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA083,8,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA083,8,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA083,7,,schwab1947,EthnographicAtlas_1967_p73, +Af5,,1930,EA083,8,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,1920,EA083,8,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA083,8,,tauxier1924a,EthnographicAtlas_1967_p73, +Af52,,1920,EA083,8,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,1950,EA083,8,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA083,8,,germann1933; schwab1947,EthnographicAtlas_1967_p73, +Af55,,,EA083,NA,,,, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA083,8,,schwab1947; viard1934,EthnographicAtlas_1967_p73, +Af57,,1910,EA083,8,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af58,,1900,EA083,8,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA083,8,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p73, +Af7,,1950,EA083,8,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p73, +Af8,,1930,EA083,8,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p73, +Af9,,1900,EA083,8,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p73, +Ag1,Segou to Bamako on Niger River,1920,EA083,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,1940,EA083,8,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p73, +Ag11,,1910,EA083,9,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p73, +Ag12,,1910,EA083,8,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA083,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA083,8,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA083,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA083,8,,bernatzik1933; nogueira1947,EthnographicAtlas_1967_p73, +Ag17,,1940,EA083,8,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA083,8,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p73, +Ag19,with special reference to the Felup,1930,EA083,8,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p73, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA083,8,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p73, +Ag20,,1930,EA083,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA083,8,,lestrange1950,EthnographicAtlas_1967_p73, +Ag22,with special reference to those of Sine,1920,EA083,8,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p73, +Ag23,,1910,EA083,8,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA083,8,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA083,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA083,8,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,1910,EA083,9,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p73, +Ag28,,1930,EA083,9,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA083,9,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA083,9,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p73, +Ag30,,1910,EA083,9,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p73, +Ag31,,1910,EA083,9,,cheron1913; holas1957,EthnographicAtlas_1967_p73, +Ag32,,1900,EA083,8,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,1920,EA083,9,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA083,9,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA083,8,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA083,9,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA083,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,,EA083,NA,,,, +Ag39,,1910,EA083,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA083,8,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA083,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA083,8,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p73, +Ag42,,1910,EA083,9,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA083,9,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA083,8,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA083,8,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA083,8,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA083,8,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p77, +Ag48,,1890,EA083,8,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p77, +Ag49,,1930,EA083,8,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p77, +Ag5,,1930,EA083,9,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p73, +Ag50,,1910,EA083,8,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA083,8,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA083,8,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA083,8,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA083,8,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA083,8,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA083,9,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,with special reference to the Coniagui,1910,EA083,8,,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p73, +Ag9,,1930,EA083,8,,labouret1934; sidibe1932,EthnographicAtlas_1967_p73, +Ah1,Zaria Province,1930,EA083,8,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p77,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA083,11,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA083,8,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah12,,1920,EA083,8,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA083,8,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA083,8,,gunnandconant1960,EthnographicAtlas_1967_p77, +Ah15,,1920,EA083,8,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,1900,EA083,8,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA083,8,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA083,8,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA083,8,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p77, +Ah2,,1920,EA083,8,,meek1931a,EthnographicAtlas_1967_p77, +Ah20,,1920,EA083,8,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,1920,EA083,8,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA083,8,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA083,8,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,1920,EA083,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah25,,1920,EA083,8,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,1920,EA083,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah27,,,EA083,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA083,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA083,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA083,8,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p77, +Ah30,,1920,EA083,8,,meek1931b,EthnographicAtlas_1967_p77, +Ah31,,1910,EA083,8,,haughton1912; meek1931b,EthnographicAtlas_1967_p77, +Ah32,,1920,EA083,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA083,8,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,with special reference to the Malabu,1920,EA083,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA083,8,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA083,8,,lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah37,,1920,EA083,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA083,8,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p77, +Ah39,,1950,EA083,8,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p77, +Ah4,,1920,EA083,8,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p77, +Ah5,,1930,EA083,8,,meek1931b; rowling1930,Ethnology_Vol2_No1_Jan_1963, +Ah6,,1920,EA083,8,,dunn1956; meek1931b:189-219,Ethnology_Vol2_No1_Jan_1963, +Ah7,,1940,EA083,8,,hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p77, +Ah8,,1910,EA083,8,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p77, +Ah9,,1920,EA083,8,,diamond1964; gunn1953,EthnographicAtlas_1967_p77, +Ai1,,1920,EA083,8,,daigre193232; leynaud1954,EthnographicAtlas_1967_p77, +Ai10,Nuba Hills,1940,EA083,8,,nadel1947,EthnographicAtlas_1967_p77, +Ai11,,1900,EA083,8,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p77, +Ai12,,1950,EA083,8,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p77, +Ai13,,1920,EA083,8,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA083,8,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p77, +Ai15,,1900,EA083,8,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p77, +Ai16,,1910,EA083,8,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA083,8,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA083,8,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA083,2,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA083,8,,nadel1950,Ethnology_Vol2_No1_Jan_1963, +Ai20,,1910,EA083,8,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA083,8,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,1890,EA083,8,,delafosse1897,EthnographicAtlas_1967_p77, +Ai23,,1920,EA083,8,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,1900,EA083,8,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA083,8,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA083,8,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,1890,EA083,8,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA083,8,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,1920,EA083,8,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p77, +Ai3,,1920,EA083,8,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai30,,1920,EA083,8,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai31,,1920,EA083,8,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA083,8,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p77, +Ai33,,1940,EA083,8,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p77, +Ai34,,1880,EA083,8,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA083,8,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p77, +Ai36,,1920,EA083,8,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p77, +Ai37,,1940,EA083,8,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA083,8,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai39,,1940,EA083,8,,nadel1947,EthnographicAtlas_1967_p77, +Ai4,,,EA083,NA,,,, +Ai40,,1940,EA083,8,,nadel1947,EthnographicAtlas_1967_p77, +Ai41,,1930,EA083,8,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p77, +Ai42,,1940,EA083,8,,nadel1947; nadel1950,EthnographicAtlas_1967_p77, +Ai43,,1930,EA083,8,,nadel1947; stevenson1940,EthnographicAtlas_1967_p77, +Ai44,,1920,EA083,8,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p77, +Ai45,,1930,EA083,8,,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA083,8,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p77, +Ai47,Northern division,1939,EA083,8,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,1920,EA083,8,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p77, +Ai6,Shilluk Kingdom,1900,EA083,8,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p77, +Ai7,,1910,EA083,8,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,1930,EA083,8,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p77, +Ai9,Around Yagoua in Cameroon,1910,EA083,8,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p77, +Aj1,,1950,EA083,8,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,1920,EA083,8,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No3_Jul_1965, +Aj11,,1900,EA083,8,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p81, +Aj12,,1920,EA083,8,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj13,,1930,EA083,8,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA083,8,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA083,8,,huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p81, +Aj16,with special reference to the Riverain Mondari,1930,EA083,8,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p81, +Aj17,,1890,EA083,8,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,1950,EA083,8,,jensen1959,EthnographicAtlas_1967_p81, +Aj19,,1920,EA083,8,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p81, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA083,2,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p81, +Aj20,,1940,EA083,8,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p81, +Aj21,,1930,EA083,8,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p81, +Aj22,,1930,EA083,8,,gulliverandgulliver1953; wayland1931,Ethnology_Vol5_No3_Jul_1966, +Aj23,,1950,EA083,8,,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p81, +Aj24,,1930,EA083,8,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,1920,EA083,8,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA083,8,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p81, +Aj27,,1920,EA083,8,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA083,2,,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA083,5,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA083,8,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA083,NA,,,, +Aj31,,,EA083,NA,,,, +Aj4,,1920,EA083,8,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA083,5,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,1940,EA083,8,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p81, +Aj7,,1910,EA083,8,,hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p81, +Aj8,,1920,EA083,8,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p81, +Aj9,,1920,EA083,8,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p81, +Ca1,Town of Buso,1930,EA083,8,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,EthnographicAtlas_1967_p81, +Ca10,,1880,EA083,7,,hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA083,8,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,1880,EA083,8,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p81, +Ca13,with special reference to the eastern Macha,1950,EA083,8,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p81, +Ca14,,1950,EA083,8,,cerulli1956; fleming1965,EthnographicAtlas_1967_p81, +Ca15,,1930,EA083,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca16,,1930,EA083,8,,cerulli1956; jensen1936,EthnographicAtlas_1967_p81, +Ca17,,1950,EA083,8,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca18,,1940,EA083,8,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA083,8,,fleming1965; jensen1959,EthnographicAtlas_1967_p81, +Ca2,Dolbahanta clan or subtribe,1950,EA083,7,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA083,5,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA083,8,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA083,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA083,8,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,1950,EA083,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA083,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,1950,EA083,8,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca27,,1930,EA083,8,But Cerulli reports rectangular huts,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA083,8,,cerulli1956; jensen1959,EthnographicAtlas_1967_p81, +Ca29,,1920,EA083,8,,huntingford1955b; straube1963,EthnographicAtlas_1967_p81, +Ca3,,1950,EA083,8,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p81, +Ca30,Kafa Kingdom,1890,EA083,8,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,1860,EA083,8,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p81, +Ca32,,1860,EA083,8,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca33,,1860,EA083,8,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA083,7,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA083,6,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA083,7,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA083,8,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA083,7,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA083,8,,lewis1965b,EthnographicAtlas_1967_p81, +Ca4,,1950,EA083,8,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,1950,EA083,8,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA083,8,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA083,8,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA083,NA,,,, +Ca5,,1930,EA083,8,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p81, +Ca6,,1880,EA083,7,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,Gondar district,1950,EA083,8,,lipsky1962; messing1957,EthnographicAtlas_1967_p81, +Ca8,,1940,EA083,8,,leslau1950; shack1963,EthnographicAtlas_1967_p81, +Ca9,,1890,EA083,9,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA083,8,,greenberg1946; greenberg1947,Ethnology_Vol2_No1_Jan_1963, +Cb10,,1920,EA083,8,,meek1931b,Ethnology_Vol4_No3_Jul_1965, +Cb11,,1900,EA083,8,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,,EA083,NA,,,, +Cb13,,1930,EA083,7,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA083,6,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA083,4,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA083,8,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA083,8,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,1930,EA083,8,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p81, +Cb19,,1870,EA083,8,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,Upper and lower Salum in Gambia,1950,EA083,8,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p81, +Cb20,,1920,EA083,8,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA083,8,,pfeffer1936,EthnographicAtlas_1967_p85, +Cb22,,1920,EA083,9,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA083,8,,kane1939; lafont1939,EthnographicAtlas_1967_p85, +Cb24,Wodaabe of Niger,1950,EA083,8,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p85, +Cb25,,1930,EA083,8,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA083,8,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p85, +Cb27,,1920,EA083,8,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA083,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA083,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA083,7,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,1920,EA083,6,,reid1930,EthnographicAtlas_1967_p81, +Cb5,,1910,EA083,8,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p81, +Cb6,,1920,EA083,8,,woodnd,EthnographicAtlas_1967_p81, +Cb7,,1920,EA083,8,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA083,8,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p81, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA083,2,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,1950,EA083,6,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p85, +Cc10,,1900,EA083,7,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA083,5,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA083,5,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA083,5,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA083,8,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,1920,EA083,9,,chapelle1929; meunie1947; spillmann1931,Ethnology_Vol5_No2_Apr_1966, +Cc16,,1930,EA083,6,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,1930,EA083,6,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p85, +Cc18,,1910,EA083,5,,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA083,6,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA083,7,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,,,EA083,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA083,9,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p85, +Cc4,,1920,EA083,9,,goichon1927; mercier1922,EthnographicAtlas_1967_p85, +Cc5,,1910,EA083,5,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,1910,EA083,6,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA083,6,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA083,5,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA083,5,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA083,9,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA083,9,,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA083,9,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p85, +Cd12,,1870,EA083,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,1930,EA083,6,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA083,6,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA083,8,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA083,9,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA083,8,,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA083,6,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA083,9,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA083,9,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p85, +Cd20,,1940,EA083,6,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA083,9,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA083,9,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p85, +Cd4,,1890,EA083,11,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p85, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA083,9,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p85, +Cd6,with special reference to the New Empire,-1400,EA083,9,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p85, +Cd7,with special reference to the Zemmur tribe,1910,EA083,6,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA083,9,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA083,9,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA083,3,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA083,11,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol2_No1_Jan_1963, +Ce3,,,EA083,NA,,,, +Ce4,,,EA083,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA083,1,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA083,11,,pittrivers1954,EthnographicAtlas_1967_p85, +Ce7,with special reference to the village of Vasilika,1950,EA083,11,,firedl1962,EthnographicAtlas_1967_p85, +Ce8,with special reference to the village of Vera,1934,EA083,3,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA083,3,,murdocknd,EthnographicAtlas_1967_p85, +Cf2,of the Transvaal,1850,EA083,8,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol2_No1_Jan_1963, +Cf3,,1930,EA083,8,,munch1945,EthnographicAtlas_1967_p85, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA083,11,,pierson1951,EthnographicAtlas_1967_p85, +Cf5,,1930,EA083,3,,miner1939,EthnographicAtlas_1967_p85, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA083,11,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p85, +Cg2,,1100,EA083,3,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p85, +Cg3,County Clare,1930,EA083,8,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p85, +Cg4,Konkama District,1950,EA083,6,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p85, +Cg5,,1950,EA083,11,,turneyhigh1953,Ethnology_Vol2_No1_Jan_1963, +Ch1,with special reference to the village of Orasac,1950,EA083,11,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p85, +Ch10,,,EA083,NA,,,, +Ch11,Viriatino Village,1955,EA083,8,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA083,8,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p85, +Ch3,,,EA083,NA,,,, +Ch4,,1900,EA083,8,,heffner1955; wichmann1913,EthnographicAtlas_1967_p85, +Ch5,with special reference to the village of Dragelevtsy,1940,EA083,11,,sanders1949; vatez1904,EthnographicAtlas_1967_p85, +Ch6,,1910,EA083,8,,ember1954,EthnographicAtlas_1967_p85, +Ch7,,,EA083,NA,,,, +Ch8,,,EA083,NA,,,, +Ch9,,,EA083,NA,,,, +Ci1,with special reference to the Baga Dorbed group,1920,EA083,6,,aberle1953; adelmannd,EthnographicAtlas_1967_p85, +Ci10,,,EA083,NA,,,, +Ci11,,1940,EA083,9,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,Abkhaz Tribe,1880,EA083,8,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA083,9,,grigolia1939,EthnographicAtlas_1967_p85, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA083,9,,gadzhieva1958,EthnographicAtlas_1967_p85, +Ci4,,1920,EA083,8,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p85, +Ci5,,,EA083,NA,,,, +Ci6,,1880,EA083,9,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p85, +Ci7,,1900,EA083,9,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p85, +Ci8,,1850,EA083,9,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA083,9,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA083,2,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,with special reference to the village of ech-Chibayish,1950,EA083,7,,salim1962; thesiger1964,EthnographicAtlas_1967_p89, +Cj2,Unspecified,1920,EA083,6,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p85, +Cj3,,-800,EA083,2,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p89, +Cj4,City and environs of Babylon,-2000,EA083,9,,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p89, +Cj5,,1930,EA083,6,,dickson1949,EthnographicAtlas_1967_p89, +Cj6,with special reference to the sedentary population,1950,EA083,9,,granqvist193135; harris1958,Ethnology_Vol2_No3_Jul_1963, +Cj7,with special reference to the village of Munsif,1950,EA083,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA083,9,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p89, +Cj9,,1950,EA083,9,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,,EA083,NA,,,, +Ea10,,,EA083,NA,,,, +Ea11,with special reference to the Ghilzai tribe,1950,EA083,9,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA083,6,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA083,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA083,9,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p89, +Ea3,with special reference to the Urazgani,1930,EA083,9,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,1950,EA083,9,,barth1956b,EthnographicAtlas_1967_p89, +Ea5,,1890,EA083,9,,robertson1896; wilber1956,EthnographicAtlas_1967_p89, +Ea6,Nomadic branch,1958,EA083,6,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA083,2,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,1920,EA083,6,,feilberg1952; wilson1926,EthnographicAtlas_1967_p89, +Ea9,,,EA083,NA,,,, +Eb1,Great Horde,1910,EA083,6,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,1920,EA083,8,,krader1963; schram1954,EthnographicAtlas_1967_p89, +Eb3,Narobanchin Territory,1940,EA083,6,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p89, +Eb4,with special reference to the Botaha area,1940,EA083,8,,vreeland1954,Ethnology_Vol2_No1_Jan_1963, +Eb5,,,EA083,NA,,,, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA083,6,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA083,11,,krader1954b; vreeland1954,EthnographicAtlas_1967_p89, +Eb8,,,EA083,NA,,,, +Ec1,Sakhalin Island,1920,EA083,9,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA083,4,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,1900,EA083,5,,donner1932; donner1954,Ethnology_Vol7_No3_Jul_1968, +Ec2,with special reference to the Yakutsk district,1900,EA083,9,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA083,5,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,Yurak Tribe,1900,EA083,8,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p89, +Ec5,with special reference to the Maritime Koryak,1900,EA083,9,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA083,8,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,Saru Basin in Hokkaido,1900,EA083,8,,batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p89, +Ec8,,1900,EA083,9,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,1920,EA083,5,,lattimore1933,EthnographicAtlas_1967_p89, +Ed1,Kanghwa Island,1950,EA083,8,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA083,NA,,,, +Ed13,,,EA083,NA,,,, +Ed14,,,EA083,NA,,,, +Ed15a,,,EA083,NA,,,, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA083,11,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,,,EA083,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA083,3,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p89, +Ed3,Aigun District,1920,EA083,3,,shirokogoroff1924,EthnographicAtlas_1967_p89, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA083,11,,mark1967; ruey1960,EthnographicAtlas_1967_p89, +Ed5,Okayama,1950,EA083,8,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA083,NA,,,, +Ed7,,1950,EA083,8,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA083,11,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,1930,EA083,8,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p89, +Ee1,,1940,EA083,8,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p89, +Ee2,Hunza State,1930,EA083,9,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p89, +Ee3,Lingthem and vicinity,1930,EA083,8,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,with special reference to Central Tibet,1920,EA083,9,,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p89, +Ee5,with special reference to the Shina tribe,1870,EA083,9,,biddulph1880; leitner1873,EthnographicAtlas_1967_p89, +Ee6,with special reference to those of Khumbu,1950,EA083,3,,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA083,NA,,,, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA083,8,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA083,8,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p89, +Ef10,,,EA083,NA,,,, +Ef11,Village and environs of Senapur,1945,EA083,8,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA083,11,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA083,NA,,,, +Ef4,,1920,EA083,8,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA083,3,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,1940,EA083,8,,roy1915; roy1951,EthnographicAtlas_1967_p89, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA083,8,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p89, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA083,8,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p89, +Ef9,,,EA083,NA,,,, +Eg1,with special reference to the forest group,1940,EA083,8,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA083,8,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA083,NA,,,, +Eg12,,,EA083,NA,,,, +Eg13,Bastar State,1941,EA083,8,,elwin1957,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA083,8,,furerhaimendorf1945,Ethnology_Vol7_No2_Apr_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA083,8,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p89, +Eg3,Hill Maria,1938,EA083,8,,grigson1938,EthnographicAtlas_1967_p89, +Eg4,Toda Tribe,1900,EA083,8,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p89, +Eg5,,1930,EA083,8,,emeneau1939; srinivas1952,EthnographicAtlas_1967_p93, +Eg6,with special reference to Northern Kerala,1799,EA083,11,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA083,8,,roy1935,EthnographicAtlas_1967_p93, +Eg8,,1940,EA083,8,,griffiths1946,EthnographicAtlas_1967_p93, +Eg9,,1930,EA083,8,,elwin1939,EthnographicAtlas_1967_p93, +Eh1,,1870,EA083,8,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p93, +Eh10,,,EA083,NA,,,, +Eh2,,1900,EA083,8,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,Menabe subtribe,1930,EA083,8,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p93, +Eh4,,,EA083,NA,,,, +Eh5,Car Nicobar of North Islands,1890,EA083,8,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA083,8,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA083,8,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,1900,EA083,8,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p93, +Eh9,,1930,EA083,8,,deschamps1936,Ethnology_Vol7_No3_Jul_1968, +Ei1,Rengsanggr,1900,EA083,8,,burling1963; playfair1909,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA083,8,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p93, +Ei11,,1910,EA083,8,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p93, +Ei12,,1910,EA083,8,,shakespear1912; shaw1929,Ethnology_Vol2_No3_Jul_1963, +Ei13,,1910,EA083,8,,hutton1921a,EthnographicAtlas_1967_p93, +Ei14,with special reference to the Chongli,1920,EA083,8,,mills1926; smith1925b,EthnographicAtlas_1967_p93, +Ei15,,,EA083,NA,,,, +Ei16,,1910,EA083,8,,hutton1921b,EthnographicAtlas_1967_p93, +Ei17,,,EA083,NA,,,, +Ei18,with special reference to the Katur subtribe,1920,EA083,8,,lowis1906; milne1924,EthnographicAtlas_1967_p93, +Ei19,,1940,EA083,8,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p93, +Ei2,,1920,EA083,8,,mills1922,EthnographicAtlas_1967_p93, +Ei20,,,EA083,NA,,,, +Ei3,Nondwin Village,1950,EA083,8,,brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p93, +Ei4,Lakher Tribe,1930,EA083,8,,parry1932,EthnographicAtlas_1967_p93, +Ei5,with special reference to the Jinghpaw,1940,EA083,8,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p93, +Ei6,,1930,EA083,8,,das1945; needham1958,EthnographicAtlas_1967_p93, +Ei7,,1910,EA083,8,,marshall1922; mcmahon1876,EthnographicAtlas_1967_p93, +Ei8,with special reference to those of the Jaintia Hills,1900,EA083,8,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p93, +Ei9,,1880,EA083,8,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p93, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA083,3,,izikowitz1951,EthnographicAtlas_1967_p93, +Ej10,Ko-Sier Village,1950,EA083,8,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p93, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA083,8,,lafont1964,EthnographicAtlas_1967_p93, +Ej12,,1960,EA083,8,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p93, +Ej13,,1940,EA083,8,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p93, +Ej14,with special reference to the eastern Semai,1960,EA083,8,,dentan1967,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA083,8,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA083,8,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA083,8,,condominas1957; condominas1960,EthnographicAtlas_1967_p93, +Ej3,Jehai Group or subtribe,1920,EA083,8,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p93, +Ej4,Red River Delta in Tonkin,1950,EA083,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,1950,EA083,8,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p93, +Ej6,,,EA083,NA,,,, +Ej7,,1950,EA083,8,,bernatzik1947,EthnographicAtlas_1967_p93, +Ej8,with special reference to those of Trengganu,1940,EA083,8,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p93, +Ej9,,1940,EA083,8,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA083,8,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p93, +Ia10,,1930,EA083,8,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p93, +Ia11,,1930,EA083,8,,mabuchi1960,EthnographicAtlas_1967_p93, +Ia12,,1950,EA083,8,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p97, +Ia13,,,EA083,NA,,,, +Ia14,,1930,EA083,8,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA083,NA,,,, +Ia16,with special reference to the northern Kalinga,1910,EA083,8,,barton1949; dozier1966a; dozier1967,Ethnology_Vol6_No4_Oct_1967, +Ia17,,,EA083,NA,,,, +Ia18,,,EA083,NA,,,, +Ia2,,1950,EA083,8,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p93, +Ia3,Kiangan Group,1920,EA083,8,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p93, +Ia4,with special reference to the Eastern Subanun,1950,EA083,8,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p93, +Ia5,,1950,EA083,8,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p93, +Ia6,Su-Paiwan Village,1930,EA083,1,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,,EA083,NA,,,, +Ia8,,1900,EA083,8,,jenks1905; keesing1949,Ethnology_Vol4_No3_Jul_1965, +Ia9,with special reference to the southern Ami,1930,EA083,8,,mabuchi1960; wei1961,EthnographicAtlas_1967_p93, +Ib1,"Ulu Ai Group, Baleh",1950,EA083,8,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA083,8,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA083,8,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p97, +Ib4,with special reference to the Toba group,1930,EA083,8,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p97, +Ib5,with special reference to the village of Sensuron,1920,EA083,8,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p97, +Ib6,,1920,EA083,8,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p97, +Ib7,with special reference to those of North Pageh,1920,EA083,8,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p97, +Ib8,with special reference to the Ridan group,1900,EA083,8,,hagen1908; schebesta1928,EthnographicAtlas_1967_p97, +Ib9,,,EA083,NA,,,, +Ic1,Borongloe,1940,EA083,8,,chabot1950,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA083,NA,,,, +Ic11,Allang,1950,EA083,8,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA083,11,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA083,NA,,,, +Ic2,,,EA083,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA083,8,,vroklage1952,EthnographicAtlas_1967_p97, +Ic4,,,EA083,NA,,,, +Ic5,Bare'e subgroup,1910,EA083,8,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,1930,EA083,8,,drabbe1940,EthnographicAtlas_1967_p97, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA083,8,,vatter1932,EthnographicAtlas_1967_p97, +Ic8,,,EA083,NA,,,, +Ic9,with special reference to eastern Sumba,1930,EA083,8,,nooteboom1940,EthnographicAtlas_1967_p97, +Id1,Alice Springs and environs,1900,EA083,8,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p97, +Id10,,1930,EA083,8,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,1950,EA083,4,,hiatt1965,Ethnology_Vol7_No2_Apr_1968, +Id12,,,EA083,NA,,,, +Id13,,,EA083,NA,,,, +Id2,,1930,EA083,4,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,,,EA083,NA,,,, +Id4,,,EA083,NA,,,, +Id5,,,EA083,NA,,,, +Id6,,,EA083,NA,,,, +Id7,,,EA083,NA,,,, +Id8,,1830,EA083,4,,roth1890,EthnographicAtlas_1967_p97, +Id9,,,EA083,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA083,8,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,with special reference to the Western Motu,1950,EA083,8,,belshaw1957; groves1963; groves1964,EthnographicAtlas_1967_p97, +Ie11,,1950,EA083,8,,bowers1964,EthnographicAtlas_1967_p97, +Ie12,Hongwam subtribe; Rumbima,1930,EA083,8,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,,EA083,NA,,,, +Ie14,,,EA083,NA,,,, +Ie15,Kalabu; Northern Abelam,1930,EA083,8,,kaberry1941,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA083,8,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,1940,EA083,8,,salisbury1956; salisbury1962,EthnographicAtlas_1967_p97, +Ie18,Bamol Village,1940,EA083,8,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,with special reference to the coastal inhabitants,1910,EA083,8,,vanbaal1966,EthnographicAtlas_1967_p97, +Ie2,,1920,EA083,8,,schmitz1960,EthnographicAtlas_1967_p97, +Ie20,,1900,EA083,8,,seligmann1910,EthnographicAtlas_1967_p97, +Ie21,,1900,EA083,8,,malinowski1916,EthnographicAtlas_1967_p97, +Ie22,,1900,EA083,8,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p97, +Ie23,,1950,EA083,8,,schoorl1957,EthnographicAtlas_1967_p97, +Ie24,,1870,EA083,8,,chalmers1890; lawes1879,EthnographicAtlas_1967_p97, +Ie25,,1920,EA083,8,,williamson1912,EthnographicAtlas_1967_p97, +Ie26,,1940,EA083,8,,read1946; read1950,EthnographicAtlas_1967_p101, +Ie27,,,EA083,NA,,,, +Ie28,,1940,EA083,8,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p101, +Ie29,,,EA083,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA083,8,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA083,8,,pouwer1955,EthnographicAtlas_1967_p101, +Ie31,,1950,EA083,8,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA083,8,,groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA083,8,,oosterwal1967,Ethnology_Vol6_No4_Oct_1967, +Ie34,,,EA083,NA,,,, +Ie35,,1930,EA083,8,,bateson1932; bateson1936,Ethnology_Vol7_No2_Apr_1968, +Ie36,,,EA083,NA,,,, +Ie37,,,EA083,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA083,8,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA083,8,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA083,8,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA083,4,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,1930,EA083,8,,held1947,EthnographicAtlas_1967_p97, +Ie7,with special reference to the Mae group,1950,EA083,8,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p97, +Ie8,with special reference to the Koriki,1910,EA083,8,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p97, +Ie9,,1920,EA083,8,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p97, +If1,"Ulimang, Badeldaob Island",1940,EA083,8,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA083,NA,,,, +If11,,1860,EA083,8,,sarfert1919,EthnographicAtlas_1967_p101, +If12,,,EA083,NA,,,, +If13,,,EA083,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA083,8,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA083,8,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,1960,EA083,8,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA083,8,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA083,8,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,EthnographicAtlas_1967_p101, +If3,With special reference to the inhabitants of Majuro,1940,EA083,8,,spoehr1949,EthnographicAtlas_1967_p101, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA083,8,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,1910,EA083,8,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p101, +If6,Island,1910,EA083,8,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,Ethnology_Vol10_No1_Jan_1971, +If7,with special reference to the inhabitants of Onotoa,1940,EA083,8,,goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p101, +If8,with special reference to those of Saipa,1950,EA083,8,Roofs are of corrugated iron today,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p101, +If9,,1900,EA083,8,,lessa1950; william1966,EthnographicAtlas_1967_p101, +Ig1,Northeastern group,1940,EA083,8,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA083,NA,,,, +Ig11,,1920,EA083,8,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,,,EA083,NA,,,, +Ig13,,1900,EA083,8,,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p101, +Ig14,,1900,EA083,8,,belshaw1955; seligman1910,EthnographicAtlas_1967_p101, +Ig15,,,EA083,NA,,,, +Ig16,,,EA083,NA,,,, +Ig17,,,EA083,NA,,,, +Ig18,,,EA083,NA,,,, +Ig19,,,EA083,NA,,,, +Ig2,Kiriwina Island,1910,EA083,8,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p101, +Ig20,with special reference to the village of Longgu,1920,EA083,8,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA083,8,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA083,8,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,Lesu Village,1930,EA083,8,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p101, +Ig5,,1920,EA083,8,,fortune1932b,EthnographicAtlas_1967_p101, +Ig6,,1900,EA083,8,,ivens1927,EthnographicAtlas_1967_p101, +Ig7,,,EA083,NA,,,, +Ig8,,,EA083,NA,,,, +Ig9,Peri Village,1920,EA083,8,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p101, +Ih1,,1890,EA083,8,,codrington1891; rivers1914a,EthnographicAtlas_1967_p101, +Ih10,,,EA083,NA,,,, +Ih11,,,EA083,NA,,,, +Ih12,,,EA083,NA,,,, +Ih13,,,EA083,NA,,,, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA083,8,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA083,8,,deacon1934,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA083,8,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,Lau Island,1920,EA083,8,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA083,8,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,,EA083,NA,,,, +Ih7,,1910,EA083,8,,hadfield1920; ray1917,EthnographicAtlas_1967_p101, +Ih8,with special reference to the village of Nakaroka,1940,EA083,8,,quain1949,EthnographicAtlas_1967_p101, +Ih9,,,EA083,NA,,,, +Ii1,with special reference to American Samoa,1920,EA083,8,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p101, +Ii10,,1950,EA083,8,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA083,8,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA083,8,,burrows1937,EthnographicAtlas_1967_p101, +Ii14,,1829,EA083,8,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA083,8,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p101, +Ii3,,1930,EA083,8,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p101, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA083,8,,kennedy1931; white1965,EthnographicAtlas_1967_p101, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA083,8,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p101, +Ii6,with special reference to Atafu,1900,EA083,8,,macgregor1937,EthnographicAtlas_1967_p101, +Ii7,,1910,EA083,8,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p101, +Ii8,,1840,EA083,8,,burrows1936,EthnographicAtlas_1967_p101, +Ii9,,1840,EA083,8,,loeb1926a,EthnographicAtlas_1967_p101, +Ij1,,1820,EA083,8,,buck1934,EthnographicAtlas_1967_p101, +Ij10,,,EA083,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA083,8,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,EthnographicAtlas_1967_p101, +Ij3,,1900,EA083,8,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p105, +Ij4,,1850,EA083,8,,buck1932a,EthnographicAtlas_1967_p105, +Ij5,,1900,EA083,8,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p105, +Ij6,,1800,EA083,8,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,1900,EA083,8,,buck1938; laval1938,EthnographicAtlas_1967_p105, +Ij8,,1900,EA083,8,,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p105, +Ij9,,1860,EA083,8,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA083,5,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA083,4,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA083,8,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA083,5,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA083,10,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA083,1,"The roof, of stone covered with earth, slopes gradually toward the rear and more steeply toward the sides; the front wall, with a window, is vertical",birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA083,5,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA083,8,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA083,3,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA083,7,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA083,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA083,5,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA083,10,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA083,10,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA083,10,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA083,9,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA083,3,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA083,4,,osgood1933; osgood1937,EthnographicAtlas_1967_p105, +Na27,,1870,EA083,4,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p105, +Na28,,1880,EA083,8,,jenness1937,EthnographicAtlas_1967_p105, +Na29,,1850,EA083,8,,goddard1916,EthnographicAtlas_1967_p105, +Na3,Coronation Gulf,1920,EA083,10,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,1880,EA083,8,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p105, +Na31,with special reference to those of Albany and Moose Creek,1850,EA083,5,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA083,4,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,Berens River band,1870,EA083,4,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p105, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA083,4,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA083,8,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA083,4,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,1880,EA083,5,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p105, +Na38,with special reference to the Lac Vieux Desert band,1800,EA083,4,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA083,7,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA083,9,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA083,4,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,Mainland division,1700,EA083,4,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p105, +Na42,Prairie Potawatomi,1760,EA083,7,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p105, +Na43,,1920,EA083,10,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA083,10,,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA083,NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA083,5,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p105, +Na6,,1930,EA083,9,,lantis1946,EthnographicAtlas_1967_p105, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA083,9,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA083,9,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,Unalaska Branch (Eastern Aleut),1830,EA083,9,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA083,3,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p105, +Nb10,,1865,EA083,7,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,with special reference to the Central Nootka,1880,EA083,3,,drucker1951; koppert1930b,EthnographicAtlas_1967_p109, +Nb12,,1880,EA083,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA083,3,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p109, +Nb14,,1880,EA083,3,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA083,3,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA083,3,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA083,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,1880,EA083,7,,pettitt1950,EthnographicAtlas_1967_p109, +Nb19,,1850,EA083,3,,ray1938; ray1942,EthnographicAtlas_1967_p109, +Nb2,Twana Tribe,1850,EA083,3,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,1870,EA083,8,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA083,3,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA083,3,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA083,3,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,1860,EA083,3,,colson1953; swan1868,EthnographicAtlas_1967_p109, +Nb25,,1860,EA083,3,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,1880,EA083,3,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p109, +Nb27,with special reference to the Tait,1880,EA083,9,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA083,3,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,1860,EA083,3,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1966, +Nb3,,1890,EA083,3,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p105, +Nb30,,1860,EA083,3,,sapir1907,Ethnology_Vol3_No1_Jan_1967, +Nb31,,1870,EA083,3,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p109, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA083,3,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,1860,EA083,4,,dixon1910; driver1939,EthnographicAtlas_1967_p109, +Nb34,,1860,EA083,3,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p109, +Nb35,,1860,EA083,3,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p109, +Nb36,,1860,EA083,3,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p109, +Nb37,,1860,EA083,8,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1968, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA083,3,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1969, +Nb39,,1860,EA083,4,,driver1939; nomland1935,EthnographicAtlas_1967_p109, +Nb4,,1850,EA083,3,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p105, +Nb5,Eyak Tribe,1890,EA083,4,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p105, +Nb6,,1870,EA083,3,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p105, +Nb7,,1880,EA083,3,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p105, +Nb8,,1880,EA083,3,,lopatin1945; olson1940,EthnographicAtlas_1967_p105, +Nb9,"Central group, lower B.C. River",1880,EA083,3,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p105, +Nc1,,1850,EA083,8,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA083,4,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA083,4,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA083,9,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA083,9,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA083,9,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA083,4,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,1860,EA083,4,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA083,9,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc18,"Clear Lake, Village of Cignon",1860,EA083,8,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p109, +Nc19,with special reference to those near Santa Rosa,1860,EA083,8,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p109, +Nc2,,1850,EA083,7,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,1860,EA083,8,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p109, +Nc21,,1860,EA083,8,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA083,9,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA083,8,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,Tulare Lake,1860,EA083,7,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc25,,1860,EA083,8,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA083,8,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA083,7,,driver1937; gifford1917,EthnographicAtlas_1967_p109, +Nc28,,1800,EA083,8,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA083,8,,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p109, +Nc3,with special reference to those of the Northern Foothills,1850,EA083,8,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,1870,EA083,8,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc31,with special reference to the Desert Cahuilla,1870,EA083,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc32,,1870,EA083,8,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p109, +Nc33,,1860,EA083,8,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,1880,EA083,8,,meigs1939,EthnographicAtlas_1967_p109, +Nc4,,1860,EA083,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,with special reference to the Central Sierra group,1850,EA083,4,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p109, +Nc6,with special reference to the Southern Diegueno,1850,EA083,9,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p109, +Nc7,,1850,EA083,9,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA083,9,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA083,9,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA083,9,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA083,9,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA083,9,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA083,7,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA083,7,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA083,7,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA083,7,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA083,9,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA083,9,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA083,9,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,1860,EA083,7,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p113, +Nd2,,1860,EA083,4,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA083,7,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,1870,EA083,8,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA083,7,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,1870,EA083,8,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA083,8,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p113, +Nd25,,1870,EA083,8,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA083,8,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA083,7,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p113, +Nd28,,1870,EA083,7,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA083,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA083,8,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p113, +Nd30,,1870,EA083,8,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,1850,EA083,8,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA083,8,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA083,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA083,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA083,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA083,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA083,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA083,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA083,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA083,7,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,1870,EA083,8,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA083,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA083,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA083,8,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA083,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA083,8,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA083,8,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,1850,EA083,8,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,,,EA083,NA,,,, +Nd49,including the Kaiparowits band,1860,EA083,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd5,,1870,EA083,8,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,1860,EA083,4,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA083,8,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA083,8,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd53,,1860,EA083,8,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd54,Colorado River Reservation,1860,EA083,9,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p113,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA083,8,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA083,8,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,1860,EA083,8,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA083,8,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA083,8,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA083,3,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,1860,EA083,8,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA083,8,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA083,5,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA083,5,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA083,8,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,1870,EA083,8,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p113, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA083,8,,drucker1941; gifford1936,EthnographicAtlas_1967_p113, +Nd67,,1870,EA083,8,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA083,7,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA083,3,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA083,9,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,Gros Ventre Tribe,1880,EA083,5,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p113, +Ne10,,1860,EA083,9,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,1870,EA083,5,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p113, +Ne12,,1850,EA083,5,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne13,,1850,EA083,5,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p113, +Ne14,,1850,EA083,5,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA083,9,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,1800,EA083,5,,gatschet1891; schaedel1949,EthnographicAtlas_1967_p113, +Ne17,,1860,EA083,5,,lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p113, +Ne18,,1850,EA083,5,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p113, +Ne19,,1850,EA083,5,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p113, +Ne2,,1870,EA083,5,,mcallister1937,EthnographicAtlas_1967_p113, +Ne20,,1850,EA083,5,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p117, +Ne21,,,EA083,NA,,,, +Ne3,Comanche Tribe,1870,EA083,5,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p113, +Ne4,,1870,EA083,5,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p113, +Ne5,,1860,EA083,5,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p113, +Ne6,,1830,EA083,9,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,1880,EA083,5,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p113, +Ne8,,1870,EA083,5,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p113, +Ne9,,1860,EA083,5,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p113, +Nf10,,1870,EA083,9,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA083,9,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA083,9,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA083,4,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA083,8,,parsons1941; swanton1942b,Ethnology_Vol7_No3_Jul_1968, +Nf15,,,EA083,NA,,,, +Nf2,,1850,EA083,4,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA083,9,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,1720,EA083,7,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p117, +Nf5,,1860,EA083,8,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p117, +Nf6,Skidi Band or subtribe,1867,EA083,9,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA083,4,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA083,8,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p117, +Nf9,,,EA083,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA083,4,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p117, +Ng10,with special reference to the Seneca tribe,1750,EA083,4,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p117, +Ng11,,1750,EA083,9,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p117, +Ng12,,1760,EA083,4,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA083,NA,,,, +Ng14,,,EA083,NA,,,, +Ng15,,,EA083,NA,,,, +Ng2,with special reference to the Cow Creek band,1940,EA083,8,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol2_No1_Jan_1963, +Ng3,Upper division in Alabama,1750,EA083,4,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,,EA083,NA,,,, +Ng5,,1750,EA083,3,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA083,4,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,Natchez Kingdom,1700,EA083,8,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p117, +Ng8,,1560,EA083,8,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA083,NA,,,, +Nh1,Central band,1880,EA083,8,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p117, +Nh10,,1920,EA083,9,,parsons1932a; trager1943,EthnographicAtlas_1967_p117, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA083,9,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p117, +Nh12,,1920,EA083,9,,gifford1940; white1942,EthnographicAtlas_1967_p117, +Nh13,,1920,EA083,9,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p117, +Nh14,,1920,EA083,9,,eggan1950; parson1923,Ethnology_Vol2_No3_Jul_1963, +Nh15,,1870,EA083,8,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA083,8,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA083,8,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p117, +Nh18,Old Oraiibi,1920,EA083,9,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA083,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,1950,EA083,9,,dozier1954,EthnographicAtlas_1967_p117, +Nh20,,1860,EA083,9,,gifford1931,EthnographicAtlas_1967_p117, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA083,9,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA083,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,1870,EA083,8,,gifford1932a,EthnographicAtlas_1967_p117, +Nh24,,1880,EA083,8,,gifford1940; opler1936a,EthnographicAtlas_1967_p117, +Nh25,,1920,EA083,9,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p117, +Nh26,,,EA083,NA,,,, +Nh27,,,EA083,NA,,,, +Nh3,,1930,EA083,9,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p117, +Nh4,Pueblo,1910,EA083,9,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p117, +Nh5,,1850,EA083,8,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,1890,EA083,9,,parsons1936b; trager1943,EthnographicAtlas_1967_p117, +Nh7,,1890,EA083,9,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p117, +Nh8,,1920,EA083,9,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p117, +Nh9,,1920,EA083,9,,parsons1939; trager1943,EthnographicAtlas_1967_p117, +Ni1,,1930,EA083,3,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p117, +Ni2,,1930,EA083,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,Huichol Tribe,1920,EA083,8,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p117, +Ni4,,1900,EA083,8,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p117, +Ni5,,1570,EA083,8,Not specifically attested for the 16th century but inferred as probable from subsequent ethnographic reports,driveranddriver1963,EthnographicAtlas_1967_p117, +Ni6,,1840,EA083,9,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p117, +Ni7,,1870,EA083,8,,beals1943; drucker1941,EthnographicAtlas_1967_p117, +Ni8,,,EA083,NA,,,, +Ni9,,,EA083,NA,,,, +Nj1,Ojitlan,1940,EA083,8,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA083,8,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,,EA083,NA,,,, +Nj12,,,EA083,NA,,,, +Nj13,,,EA083,NA,,,, +Nj14,,,EA083,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA083,8,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,Town and environs of Soteapan,1940,EA083,8,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p121, +Nj4,,1940,EA083,8,,kellyandpalerm1952; kriekenberg1918; palerm195253,EthnographicAtlas_1967_p121, +Nj5,,,EA083,NA,,,, +Nj6,with special reference to San Mateo,1950,EA083,8,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA083,8,,beals1945,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA083,3,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,1960,EA083,11,,nutini1962; nutini1965,EthnographicAtlas_1967_p121, +Sa1,San Blas Archipelago,1940,EA083,8,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p121, +Sa10,,1900,EA083,8,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p121, +Sa11,,,EA083,NA,,,, +Sa12,,1948,EA083,8,,stone1948,EthnographicAtlas_1967_p121, +Sa13,Town of Chichicastenango,1930,EA083,11,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p121, +Sa14,,,EA083,NA,,,, +Sa15,,,EA083,NA,,,, +Sa16,,,EA083,NA,,,, +Sa17,,,EA083,NA,,,, +Sa2,,,EA083,NA,,,, +Sa3,,1930,EA083,8,,wisdom1940,EthnographicAtlas_1967_p121, +Sa4,with special reference to those of Panama,1960,EA083,8,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p121, +Sa5,,1950,EA083,8,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,1520,EA083,8,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p121, +Sa7,,1940,EA083,8,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p121, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA083,8,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA083,8,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,Dominica Island,1650,EA083,8,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p121, +Sb2,,1940,EA083,8,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA083,NA,,,, +Sb4,with special reference to the Cachama group,1950,EA083,8,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA083,8,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p121, +Sb6,Goajiro Tribe,1940,EA083,8,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p121, +Sb7,,,EA083,NA,,,, +Sb8,,1520,EA083,8,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,1930,EA083,8,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA083,8,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p121, +Sc10,,,EA083,NA,,,, +Sc11,,1930,EA083,8,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p121, +Sc12,,1910,EA083,8,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p121, +Sc13,,1950,EA083,8,,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p121, +Sc14,,,EA083,NA,,,, +Sc15,,1910,EA083,8,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p121, +Sc16,with special reference to the Makitare,1920,EA083,8,,barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p121, +Sc17,,1950,EA083,8,,wilbert1963,EthnographicAtlas_1967_p121, +Sc18,,1960,EA083,8,,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA083,8,,leedsnd,EthnographicAtlas_1967_p121, +Sc3,Barama River,1930,EA083,8,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p121, +Sc4,with special reference to the non-agricultural groups,1950,EA083,8,,wilbert1957b; wilbert1963,EthnographicAtlas_1967_p121, +Sc5,,1900,EA083,8,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA083,8,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA083,8,,wilbert1959b,EthnographicAtlas_1967_p121, +Sc8,,1950,EA083,8,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,,EA083,NA,,,, +Sd1,Cabrura village,1950,EA083,8,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA083,8,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p121, +Sd3,,1920,EA083,8,,nimuendaju1926,EthnographicAtlas_1967_p121, +Sd4,,1950,EA083,8,,barker1953; zerries1954,Ethnology_Vol2_No1_Jan_1963, +Sd5,,1950,EA083,8,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p121, +Sd6,,1960,EA083,8,,migliazza1964,EthnographicAtlas_1967_p121, +Sd7,,1950,EA083,8,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,1950,EA083,8,,wilbert1963,EthnographicAtlas_1967_p121, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA083,8,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA083,8,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,1670,EA083,8,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p121, +Se11,,1960,EA083,8,,prost1965,EthnographicAtlas_1967_p125, +Se12,,,EA083,NA,,,, +Se2,,1940,EA083,8,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,1930,EA083,8,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p121, +Se4,,1940,EA083,8,,fejos1943,EthnographicAtlas_1967_p121, +Se5,Village on Caduiari River,1940,EA083,8,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,1910,EA083,8,,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p121, +Se7,a mestizo group in lowland Bolivia,1950,EA083,8,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA083,8,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,1920,EA083,8,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p121, +Sf1,City and environs of Cuzco,1530,EA083,8,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,Chucuito Clan community in Peru,1940,EA083,8,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p125, +Sf3,Rio Cayapas Basin,1910,EA083,8,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p125, +Sf4,,1950,EA083,8,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA083,8,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA083,8,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA083,8,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA083,NA,,,, +Sf9,,,EA083,NA,,,, +Sg1,Eastern and central,1870,EA083,8,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA083,8,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA083,5,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,Equestrian,1870,EA083,5,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p125, +Sg5,with special reference to the southern bands,1900,EA083,5,,bird1946; cooper1917,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA083,8,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p125, +Sh2,,1850,EA083,8,,oberg1948a; oberg1949,EthnographicAtlas_1967_p125, +Sh3,Those in contact with mission,1800,EA083,7,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p125, +Sh4,,1940,EA083,8,,oberg1949,EthnographicAtlas_1967_p125, +Sh5,,1910,EA083,8,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p125, +Sh6,,1890,EA083,7,,baldus1931; boggiani1894,EthnographicAtlas_1967_p125, +Sh7,,1900,EA083,8,,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p125, +Sh8,with special reference to those of the Argentine Chaco,1964,EA083,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA083,NA,,,, +Si1,Kejara,1920,EA083,8,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA083,8,,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA083,8,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p125, +Si3,Simao Lopes,1940,EA083,8,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA083,8,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,1940,EA083,8,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si6,,1900,EA083,8,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p125, +Si7,with special reference to the Cozarimi,1910,EA083,8,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p125, +Si8,,1940,EA083,8,,oberg1953:1-144,EthnographicAtlas_1967_p125, +Si9,,,EA083,NA,,,, +Sj1,,1950,EA083,8,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p125, +Sj10,Taquapiri,1950,EA083,8,,ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA083,8,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA083,8,,nimuendaju1942,EthnographicAtlas_1967_p125, +Sj3,Duque de Caxias Reservation,1910,EA083,8,,henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p125, +Sj4,Ramcocamecra or Canella,1930,EA083,8,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p125, +Sj5,Naknenuk subtribe,1880,EA083,8,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,with special reference to the Guajajara subgroup,1930,EA083,8,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA083,8,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p125, +Sj8,Hinterland of Rio de Janeiro,1600,EA083,8,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p125, +Sj9,,1950,EA083,8,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA083,3,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA083,3,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA083,8,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA083,3,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA083,8,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA083,8,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA083,8,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA083,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA083,8,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA083,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA083,3,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA083,3,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA083,3,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA083,8,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA083,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA083,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA083,8,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA083,5,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA083,9,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA083,5,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA083,3,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA083,5,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA083,4,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA083,8,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA083,5,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA083,4,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA083,9,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA084,1,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,,,EA084,NA,,,, +Aa3,,,EA084,NA,,,, +Aa4,,,EA084,NA,,,, +Aa5,,,EA084,NA,,,, +Aa6,,1920,EA084,5,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,,EA084,NA,,,, +Aa8,,1850,EA084,1,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA084,NA,,,, +Ab1,,,EA084,NA,,,, +Ab10,,1936,EA084,2,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,,EA084,NA,,,, +Ab12,,,EA084,NA,,,, +Ab13,,,EA084,NA,,,, +Ab14,,,EA084,NA,,,, +Ab15,,,EA084,NA,,,, +Ab16,,,EA084,NA,,,, +Ab17,,,EA084,NA,,,, +Ab18,,,EA084,NA,,,, +Ab19,,,EA084,NA,,,, +Ab2,,1880,EA084,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,,EA084,NA,,,, +Ab21a,,,EA084,NA,,,, +Ab21b,,,EA084,NA,,,, +Ab22,,,EA084,NA,,,, +Ab3,Ruling Luyana,1890,EA084,5,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,,EA084,NA,,,, +Ab5,,,EA084,NA,,,, +Ab6,,,EA084,NA,,,, +Ab7,,,EA084,NA,,,, +Ab8,,,EA084,NA,,,, +Ab9,,1870,EA084,2,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,,EA084,NA,,,, +Ac10,,,EA084,NA,,,, +Ac11,,1930,EA084,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,,EA084,NA,,,, +Ac13,,,EA084,NA,,,, +Ac14,,1900,EA084,5,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,,EA084,NA,,,, +Ac16,,,EA084,NA,,,, +Ac17,,,EA084,NA,,,, +Ac18,,,EA084,NA,,,, +Ac19,,,EA084,NA,,,, +Ac2,,,EA084,NA,,,, +Ac20,,,EA084,NA,,,, +Ac21,,,EA084,NA,,,, +Ac22,,,EA084,NA,,,, +Ac23,,,EA084,NA,,,, +Ac24,,,EA084,NA,,,, +Ac25,,,EA084,NA,,,, +Ac26,,,EA084,NA,,,, +Ac27,,,EA084,NA,,,, +Ac28,,,EA084,NA,,,, +Ac29,,,EA084,NA,,,, +Ac3,,,EA084,NA,,,, +Ac30,,,EA084,NA,,,, +Ac31,,,EA084,NA,,,, +Ac32,,1920,EA084,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,,EA084,NA,,,, +Ac34,,,EA084,NA,,,, +Ac35,,,EA084,NA,,,, +Ac36,,,EA084,NA,,,, +Ac37,,,EA084,NA,,,, +Ac38,,,EA084,NA,,,, +Ac39,,1920,EA084,5,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,,,EA084,NA,,,, +Ac40,,1900,EA084,5,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,,EA084,NA,,,, +Ac42,,,EA084,NA,,,, +Ac43,,,EA084,NA,,,, +Ac5,,,EA084,NA,,,, +Ac6,,,EA084,NA,,,, +Ac7,,1920,EA084,5,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,,EA084,NA,,,, +Ac9,,,EA084,NA,,,, +Ad1,,1950,EA084,2,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA084,5,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA084,5,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,,EA084,NA,,,, +Ad13,,1930,EA084,5,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA084,5,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA084,5,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,,EA084,NA,,,, +Ad17,,,EA084,NA,,,, +Ad18,,,EA084,NA,,,, +Ad19,,1910,EA084,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,,EA084,NA,,,, +Ad20,,1920,EA084,5,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,,EA084,NA,,,, +Ad22,,,EA084,NA,,,, +Ad23,,,EA084,NA,,,, +Ad24,,,EA084,NA,,,, +Ad25,,,EA084,NA,,,, +Ad26,,,EA084,NA,,,, +Ad27,,1880,EA084,5,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA084,5,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,,EA084,NA,,,, +Ad3,,,EA084,NA,,,, +Ad30,,,EA084,NA,,,, +Ad31,,,EA084,NA,,,, +Ad32,,,EA084,NA,,,, +Ad33,,,EA084,NA,,,, +Ad34,,,EA084,NA,,,, +Ad35,,,EA084,NA,,,, +Ad36,,,EA084,NA,,,, +Ad37,,,EA084,NA,,,, +Ad38,,,EA084,NA,,,, +Ad39,,,EA084,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA084,2,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA084,NA,,,, +Ad41,,,EA084,NA,,,, +Ad42,,,EA084,NA,,,, +Ad43,,,EA084,NA,,,, +Ad44,,,EA084,NA,,,, +Ad45,,,EA084,NA,,,, +Ad46,,1950,EA084,2,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,,EA084,NA,,,, +Ad48,,,EA084,NA,,,, +Ad49,,,EA084,NA,,,, +Ad5,,,EA084,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA084,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA084,5,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA084,5,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,,,EA084,NA,,,, +Ad8,,,EA084,NA,,,, +Ad9,,,EA084,NA,,,, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA084,5,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,,EA084,NA,,,, +Ae11,,,EA084,NA,,,, +Ae12,,,EA084,NA,,,, +Ae13,,,EA084,NA,,,, +Ae14,,,EA084,NA,,,, +Ae15,,,EA084,NA,,,, +Ae16,,,EA084,NA,,,, +Ae17,,,EA084,NA,,,, +Ae18,,1900,EA084,5,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA084,NA,,,, +Ae2,,,EA084,NA,,,, +Ae20,,,EA084,NA,,,, +Ae21,,,EA084,NA,,,, +Ae22,,,EA084,NA,,,, +Ae23,,,EA084,NA,,,, +Ae24,,,EA084,NA,,,, +Ae25,with special reference to the northern Tetela,1920,EA084,2,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,,EA084,NA,,,, +Ae27,,,EA084,NA,,,, +Ae28,,1900,EA084,5,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,,EA084,NA,,,, +Ae3,,,EA084,NA,,,, +Ae30,,,EA084,NA,,,, +Ae31,,,EA084,NA,,,, +Ae32,,,EA084,NA,,,, +Ae33,,1920,EA084,5,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA084,NA,,,, +Ae35,,1900,EA084,5,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,,EA084,NA,,,, +Ae37,,,EA084,NA,,,, +Ae38,,,EA084,NA,,,, +Ae39,,,EA084,NA,,,, +Ae4,,,EA084,NA,,,, +Ae40,,,EA084,NA,,,, +Ae41,,,EA084,NA,,,, +Ae42,,,EA084,NA,,,, +Ae43,,,EA084,NA,,,, +Ae44,,,EA084,NA,,,, +Ae45,,,EA084,NA,,,, +Ae46,,,EA084,NA,,,, +Ae47,,,EA084,NA,,,, +Ae48,,1930,EA084,5,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,,EA084,NA,,,, +Ae5,,,EA084,NA,,,, +Ae50,,1920,EA084,2,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,,,EA084,NA,,,, +Ae52,,,EA084,NA,,,, +Ae53,,,EA084,NA,,,, +Ae54,,,EA084,NA,,,, +Ae55,,,EA084,NA,,,, +Ae56,,,EA084,NA,,,, +Ae57,,,EA084,NA,,,, +Ae58,,,EA084,NA,,,, +Ae59,,,EA084,NA,,,, +Ae6,,,EA084,NA,,,, +Ae7,,1910,EA084,5,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,,EA084,NA,,,, +Ae9,,,EA084,NA,,,, +Af1,,,EA084,NA,,,, +Af10,,,EA084,NA,,,, +Af11,,,EA084,NA,,,, +Af12,,,EA084,NA,,,, +Af13,,1920,EA084,5,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA084,5,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA084,5,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,,EA084,NA,,,, +Af17,,,EA084,NA,,,, +Af18,,,EA084,NA,,,, +Af19,,,EA084,NA,,,, +Af2,,,EA084,NA,,,, +Af20,,,EA084,NA,,,, +Af21,,,EA084,NA,,,, +Af22,,,EA084,NA,,,, +Af23,,,EA084,NA,,,, +Af24,,,EA084,NA,,,, +Af25,,,EA084,NA,,,, +Af26,,,EA084,NA,,,, +Af27,,,EA084,NA,,,, +Af28,,,EA084,NA,,,, +Af29,,,EA084,NA,,,, +Af3,,,EA084,NA,,,, +Af30,,,EA084,NA,,,, +Af31,,,EA084,NA,,,, +Af32,,,EA084,NA,,,, +Af33,,,EA084,NA,,,, +Af34,,,EA084,NA,,,, +Af35,,,EA084,NA,,,, +Af36,,,EA084,NA,,,, +Af37,with special reference to the Akpafu,1900,EA084,5,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA084,NA,,,, +Af39,,,EA084,NA,,,, +Af4,,,EA084,NA,,,, +Af40,,,EA084,NA,,,, +Af41,,,EA084,NA,,,, +Af42,,,EA084,NA,,,, +Af43,,,EA084,NA,,,, +Af44,,,EA084,NA,,,, +Af45,,,EA084,NA,,,, +Af46,,,EA084,NA,,,, +Af47,,,EA084,NA,,,, +Af48,,1850,EA084,5,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,,EA084,NA,,,, +Af5,,1930,EA084,5,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,,EA084,NA,,,, +Af51,,,EA084,NA,,,, +Af52,,1920,EA084,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA084,NA,,,, +Af54,,,EA084,NA,,,, +Af55,,,EA084,NA,,,, +Af56,,,EA084,NA,,,, +Af57,,,EA084,NA,,,, +Af58,,,EA084,NA,,,, +Af6,,,EA084,NA,,,, +Af7,,,EA084,NA,,,, +Af8,,,EA084,NA,,,, +Af9,,,EA084,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA084,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,,EA084,NA,,,, +Ag11,,,EA084,NA,,,, +Ag12,,1910,EA084,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA084,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA084,5,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA084,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,,EA084,NA,,,, +Ag17,,,EA084,NA,,,, +Ag18,,,EA084,NA,,,, +Ag19,,,EA084,NA,,,, +Ag2,,,EA084,NA,,,, +Ag20,,,EA084,NA,,,, +Ag21,,,EA084,NA,,,, +Ag22,,,EA084,NA,,,, +Ag23,,,EA084,NA,,,, +Ag24,,,EA084,NA,,,, +Ag25,,1900,EA084,2,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA084,5,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,,EA084,NA,,,, +Ag28,,,EA084,NA,,,, +Ag29,,,EA084,NA,,,, +Ag3,,,EA084,NA,,,, +Ag30,,,EA084,NA,,,, +Ag31,,,EA084,NA,,,, +Ag32,,1900,EA084,5,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,,EA084,NA,,,, +Ag34,,1930,EA084,2,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA084,5,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA084,NA,,,, +Ag37,,,EA084,NA,,,, +Ag38,,,EA084,NA,,,, +Ag39,,1910,EA084,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA084,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA084,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,,EA084,NA,,,, +Ag42,,,EA084,NA,,,, +Ag43,,,EA084,NA,,,, +Ag44,,,EA084,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA084,5,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA084,NA,,,, +Ag47,,,EA084,NA,,,, +Ag48,,,EA084,NA,,,, +Ag49,,,EA084,NA,,,, +Ag5,,,EA084,NA,,,, +Ag50,,,EA084,NA,,,, +Ag51,,,EA084,NA,,,, +Ag52,,,EA084,NA,,,, +Ag53,,,EA084,NA,,,, +Ag54,,1910,EA084,5,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA084,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA084,2,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,,,EA084,NA,,,, +Ag9,,,EA084,NA,,,, +Ah1,,,EA084,NA,,,, +Ah10,,,EA084,NA,,,, +Ah11,,,EA084,NA,,,, +Ah12,,,EA084,NA,,,, +Ah13,,,EA084,NA,,,, +Ah14,,,EA084,NA,,,, +Ah15,,1920,EA084,5,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,,EA084,NA,,,, +Ah17,,,EA084,NA,,,, +Ah18,,,EA084,NA,,,, +Ah19,,,EA084,NA,,,, +Ah2,,,EA084,NA,,,, +Ah20,,1920,EA084,2,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA084,NA,,,, +Ah22,,,EA084,NA,,,, +Ah23,,,EA084,NA,,,, +Ah24,,,EA084,NA,,,, +Ah25,,1920,EA084,5,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,,EA084,NA,,,, +Ah27,,,EA084,NA,,,, +Ah28,,,EA084,NA,,,, +Ah29,,,EA084,NA,,,, +Ah3,,,EA084,NA,,,, +Ah30,,,EA084,NA,,,, +Ah31,,,EA084,NA,,,, +Ah32,,,EA084,NA,,,, +Ah33,,1920,EA084,2,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,,,EA084,NA,,,, +Ah35,,,EA084,NA,,,, +Ah36,,,EA084,NA,,,, +Ah37,,1920,EA084,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,,EA084,NA,,,, +Ah39,,,EA084,NA,,,, +Ah4,,,EA084,NA,,,, +Ah5,,,EA084,NA,,,, +Ah6,,,EA084,NA,,,, +Ah7,,,EA084,NA,,,, +Ah8,,,EA084,NA,,,, +Ah9,,,EA084,NA,,,, +Ai1,,,EA084,NA,,,, +Ai10,,,EA084,NA,,,, +Ai11,,,EA084,NA,,,, +Ai12,,,EA084,NA,,,, +Ai13,,,EA084,NA,,,, +Ai14,,,EA084,NA,,,, +Ai15,,,EA084,NA,,,, +Ai16,,,EA084,NA,,,, +Ai17,,,EA084,NA,,,, +Ai18,,1880,EA084,5,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA084,2,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA084,NA,,,, +Ai20,,,EA084,NA,,,, +Ai21,,1880,EA084,5,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,,EA084,NA,,,, +Ai23,,1920,EA084,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,,EA084,NA,,,, +Ai25,,1950,EA084,2,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA084,2,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA084,NA,,,, +Ai28,,1910,EA084,5,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,,EA084,NA,,,, +Ai3,,,EA084,NA,,,, +Ai30,,,EA084,NA,,,, +Ai31,,,EA084,NA,,,, +Ai32,,,EA084,NA,,,, +Ai33,,,EA084,NA,,,, +Ai34,,,EA084,NA,,,, +Ai35,,,EA084,NA,,,, +Ai36,,,EA084,NA,,,, +Ai37,,,EA084,NA,,,, +Ai38,,,EA084,NA,,,, +Ai39,,,EA084,NA,,,, +Ai4,,,EA084,NA,,,, +Ai40,,,EA084,NA,,,, +Ai41,,,EA084,NA,,,, +Ai42,,,EA084,NA,,,, +Ai43,,,EA084,NA,,,, +Ai44,,,EA084,NA,,,, +Ai45,,,EA084,NA,,,, +Ai46,,,EA084,NA,,,, +Ai47,Northern division,1939,EA084,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA084,NA,,,, +Ai6,,,EA084,NA,,,, +Ai7,,1910,EA084,2,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,,EA084,NA,,,, +Ai9,,,EA084,NA,,,, +Aj1,,1950,EA084,2,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,,EA084,NA,,,, +Aj11,,,EA084,NA,,,, +Aj12,,,EA084,NA,,,, +Aj13,,,EA084,NA,,,, +Aj14,,,EA084,NA,,,, +Aj15,,,EA084,NA,,,, +Aj16,,,EA084,NA,,,, +Aj17,,1890,EA084,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA084,NA,,,, +Aj19,,,EA084,NA,,,, +Aj2,,,EA084,NA,,,, +Aj20,,,EA084,NA,,,, +Aj21,,,EA084,NA,,,, +Aj22,,,EA084,NA,,,, +Aj23,,,EA084,NA,,,, +Aj24,,1930,EA084,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,,EA084,NA,,,, +Aj26,,,EA084,NA,,,, +Aj27,,1920,EA084,5,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,,EA084,NA,,,, +Aj29,,,EA084,NA,,,, +Aj3,,1930,EA084,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA084,NA,,,, +Aj31,,,EA084,NA,,,, +Aj4,,1920,EA084,2,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA084,1,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,,EA084,NA,,,, +Aj7,,,EA084,NA,,,, +Aj8,,,EA084,NA,,,, +Aj9,,,EA084,NA,,,, +Ca1,,,EA084,NA,,,, +Ca10,,,EA084,NA,,,, +Ca11,,1890,EA084,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,,EA084,NA,,,, +Ca13,,,EA084,NA,,,, +Ca14,,,EA084,NA,,,, +Ca15,,,EA084,NA,,,, +Ca16,,,EA084,NA,,,, +Ca17,,,EA084,NA,,,, +Ca18,,,EA084,NA,,,, +Ca19,,,EA084,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA084,2,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA084,2,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,,EA084,NA,,,, +Ca22,,,EA084,NA,,,, +Ca23,,1950,EA084,2,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA084,NA,,,, +Ca25,,,EA084,NA,,,, +Ca26,,,EA084,NA,,,, +Ca27,,1930,EA084,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,,EA084,NA,,,, +Ca29,,,EA084,NA,,,, +Ca3,,,EA084,NA,,,, +Ca30,Kafa Kingdom,1890,EA084,3,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,,EA084,NA,,,, +Ca32,,,EA084,NA,,,, +Ca33,,1860,EA084,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA084,2,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,,EA084,NA,,,, +Ca36,,,EA084,NA,,,, +Ca37,Bogo Tribe,1850,EA084,NA,Mat-covered tents used during nomadic seasons,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,,,EA084,NA,,,, +Ca39,,,EA084,NA,,,, +Ca4,,1950,EA084,5,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,,EA084,NA,,,, +Ca41,,,EA084,NA,,,, +Ca42,,,EA084,NA,,,, +Ca43,,,EA084,NA,,,, +Ca5,,,EA084,NA,,,, +Ca6,,1880,EA084,5,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,,,EA084,NA,,,, +Ca8,,,EA084,NA,,,, +Ca9,,,EA084,NA,,,, +Cb1,,,EA084,NA,,,, +Cb10,,,EA084,NA,,,, +Cb11,,,EA084,NA,,,, +Cb12,,,EA084,NA,,,, +Cb13,,,EA084,NA,,,, +Cb14,,,EA084,NA,,,, +Cb15,with special reference to the Humr,1940,EA084,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA084,2,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA084,2,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,,EA084,NA,,,, +Cb19,,1870,EA084,2,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,,,EA084,NA,,,, +Cb20,,,EA084,NA,,,, +Cb21,,,EA084,NA,,,, +Cb22,,1920,EA084,2,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,,EA084,NA,,,, +Cb24,,,EA084,NA,,,, +Cb25,,,EA084,NA,,,, +Cb26,,,EA084,NA,,,, +Cb27,,,EA084,NA,,,, +Cb28,,,EA084,NA,,,, +Cb29,,,EA084,NA,,,, +Cb3,Bamba division,1940,EA084,6,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,,EA084,NA,,,, +Cb5,,,EA084,NA,,,, +Cb6,,,EA084,NA,,,, +Cb7,,1920,EA084,5,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,,,EA084,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA084,5,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,,EA084,NA,,,, +Cc10,,1900,EA084,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA084,2,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,,EA084,NA,,,, +Cc13,,1920,EA084,3,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA084,5,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA084,NA,,,, +Cc16,,1930,EA084,5,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,,EA084,NA,,,, +Cc18,,,EA084,NA,,,, +Cc19,,,EA084,NA,,,, +Cc2,Nomads of Tibesti,1950,EA084,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,,,EA084,NA,,,, +Cc3,,,EA084,NA,,,, +Cc4,,,EA084,NA,,,, +Cc5,,1910,EA084,2,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,,EA084,NA,,,, +Cc7,Timbuctoo,1950,EA084,5,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA084,2,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA084,5,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA084,2,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,1900,EA084,NA,Tents are used during transhumance,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,,EA084,NA,,,, +Cd12,,1870,EA084,5,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,,EA084,NA,,,, +Cd14,,,EA084,NA,,,, +Cd15,,1910,EA084,5,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,,,EA084,NA,,,, +Cd17,,,EA084,NA,,,, +Cd18,,,EA084,NA,,,, +Cd19,,1920,EA084,5,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,,,EA084,NA,,,, +Cd20,,,EA084,NA,,,, +Cd21,,1930,EA084,5,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,,,EA084,NA,,,, +Cd4,,,EA084,NA,,,, +Cd5,,,EA084,NA,,,, +Cd6,,,EA084,NA,,,, +Cd7,,,EA084,NA,,,, +Cd8,,1910,EA084,NA,Skin tents are used during transhumance,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA084,NA,Skin tents are used during transhumance,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA084,5,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA084,NA,,,, +Ce3,City and environs of Rome,100,EA084,6,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,,,EA084,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA084,5,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,,,EA084,NA,,,, +Ce7,,,EA084,NA,,,, +Ce8,,,EA084,NA,,,, +Cf1,,,EA084,NA,,,, +Cf2,,,EA084,NA,,,, +Cf3,,,EA084,NA,,,, +Cf4,,,EA084,NA,,,, +Cf5,,,EA084,NA,,,, +Cg1,,,EA084,NA,,,, +Cg2,,,EA084,NA,,,, +Cg3,,,EA084,NA,,,, +Cg4,,,EA084,NA,,,, +Cg5,,,EA084,NA,,,, +Ch1,,,EA084,NA,,,, +Ch10,,,EA084,NA,,,, +Ch11,Viriatino Village,1955,EA084,5,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA084,NA,,,, +Ch3,,,EA084,NA,,,, +Ch4,,,EA084,NA,,,, +Ch5,,,EA084,NA,,,, +Ch6,,,EA084,NA,,,, +Ch7,,,EA084,NA,,,, +Ch8,,,EA084,NA,,,, +Ch9,,,EA084,NA,,,, +Ci1,,,EA084,NA,,,, +Ci10,,,EA084,NA,,,, +Ci11,,1940,EA084,5,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,,,EA084,NA,,,, +Ci2,,,EA084,NA,,,, +Ci3,,,EA084,NA,,,, +Ci4,,,EA084,NA,,,, +Ci5,,,EA084,NA,,,, +Ci6,,,EA084,NA,,,, +Ci7,,,EA084,NA,,,, +Ci8,,,EA084,NA,,,, +Ci9,,,EA084,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA084,6,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,,,EA084,NA,,,, +Cj2,,,EA084,NA,,,, +Cj3,,,EA084,NA,,,, +Cj4,,,EA084,NA,,,, +Cj5,,,EA084,NA,,,, +Cj6,,,EA084,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA084,5,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,,,EA084,NA,,,, +Cj9,,,EA084,NA,,,, +Ea1,,,EA084,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA084,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA084,NA,,,, +Ea12,,,EA084,NA,,,, +Ea13,Mohla Village,1950,EA084,6,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA084,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA084,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,,EA084,NA,,,, +Ea5,,,EA084,NA,,,, +Ea6,Nomadic branch,1958,EA084,5,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA084,5,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA084,NA,,,, +Ea9,,,EA084,NA,,,, +Eb1,Great Horde,1910,EA084,6,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,,EA084,NA,,,, +Eb3,,,EA084,NA,,,, +Eb4,,,EA084,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA084,6,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA084,5,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,,EA084,NA,,,, +Eb8,,,EA084,NA,,,, +Ec1,Sakhalin Island,1920,EA084,5,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA084,5,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,,EA084,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA084,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA084,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA084,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA084,2,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA084,5,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,,,EA084,NA,,,, +Ec8,,1900,EA084,2,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA084,NA,,,, +Ed1,Kanghwa Island,1950,EA084,6,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA084,NA,,,, +Ed13,,,EA084,NA,,,, +Ed14,,,EA084,NA,,,, +Ed15a,,,EA084,NA,,,, +Ed15b,,,EA084,NA,,,, +Ed16,,,EA084,NA,,,, +Ed2,,,EA084,NA,,,, +Ed3,,,EA084,NA,,,, +Ed4,,,EA084,NA,,,, +Ed5,Okayama,1950,EA084,5,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA084,NA,,,, +Ed7,,1950,EA084,5,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA084,5,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,,EA084,NA,,,, +Ee1,,,EA084,NA,,,, +Ee2,,,EA084,NA,,,, +Ee3,Lingthem and vicinity,1930,EA084,5,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,,,EA084,NA,,,, +Ee5,,,EA084,NA,,,, +Ee6,with special reference to those of Khumbu,1950,EA084,NA,Tents of undescribed type are used during transhumance,furerhaimendorf1964,EthnographicAtlas_1967_p89, +Ee7,,,EA084,NA,,,, +Ee8,,,EA084,NA,,,, +Ef1,,,EA084,NA,,,, +Ef10,,,EA084,NA,,,, +Ef11,Village and environs of Senapur,1945,EA084,5,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA084,5,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA084,NA,,,, +Ef4,,1920,EA084,5,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA084,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,,EA084,NA,,,, +Ef7,,,EA084,NA,,,, +Ef8,,,EA084,NA,,,, +Ef9,,,EA084,NA,,,, +Eg1,with special reference to the forest group,1940,EA084,2,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA084,5,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA084,NA,,,, +Eg12,,,EA084,NA,,,, +Eg13,,,EA084,NA,,,, +Eg14,,,EA084,NA,,,, +Eg2,,,EA084,NA,,,, +Eg3,,,EA084,NA,,,, +Eg4,,,EA084,NA,,,, +Eg5,,,EA084,NA,,,, +Eg6,with special reference to Northern Kerala,1799,EA084,5,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,,,EA084,NA,,,, +Eg8,,,EA084,NA,,,, +Eg9,,,EA084,NA,,,, +Eh1,,,EA084,NA,,,, +Eh10,,,EA084,NA,,,, +Eh2,,1900,EA084,5,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,,,EA084,NA,,,, +Eh4,with special reference to the Rock Vedda,1900,EA084,5,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA084,5,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA084,5,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA084,5,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,,EA084,NA,,,, +Eh9,,,EA084,NA,,,, +Ei1,,,EA084,NA,,,, +Ei10,,,EA084,NA,,,, +Ei11,,,EA084,NA,,,, +Ei12,,,EA084,NA,,,, +Ei13,,,EA084,NA,,,, +Ei14,,,EA084,NA,,,, +Ei15,,,EA084,NA,,,, +Ei16,,,EA084,NA,,,, +Ei17,,,EA084,NA,,,, +Ei18,,,EA084,NA,,,, +Ei19,,,EA084,NA,,,, +Ei2,,,EA084,NA,,,, +Ei20,,,EA084,NA,,,, +Ei3,,,EA084,NA,,,, +Ei4,,,EA084,NA,,,, +Ei5,,,EA084,NA,,,, +Ei6,,,EA084,NA,,,, +Ei7,,,EA084,NA,,,, +Ei8,,,EA084,NA,,,, +Ei9,,,EA084,NA,,,, +Ej1,,,EA084,NA,,,, +Ej10,,,EA084,NA,,,, +Ej11,,,EA084,NA,,,, +Ej12,,,EA084,NA,,,, +Ej13,,,EA084,NA,,,, +Ej14,,,EA084,NA,,,, +Ej15,,,EA084,NA,,,, +Ej16,,,EA084,NA,,,, +Ej2,,,EA084,NA,,,, +Ej3,,,EA084,NA,,,, +Ej4,Red River Delta in Tonkin,1950,EA084,6,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,,EA084,NA,,,, +Ej6,,,EA084,NA,,,, +Ej7,,,EA084,NA,,,, +Ej8,,,EA084,NA,,,, +Ej9,,1940,EA084,5,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,,,EA084,NA,,,, +Ia10,,,EA084,NA,,,, +Ia11,,,EA084,NA,,,, +Ia12,,,EA084,NA,,,, +Ia13,Tawi-Tawi and adjacent islands,1960,EA084,5,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA084,5,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA084,NA,,,, +Ia16,,,EA084,NA,,,, +Ia17,,,EA084,NA,,,, +Ia18,,,EA084,NA,,,, +Ia2,,,EA084,NA,,,, +Ia3,,,EA084,NA,,,, +Ia4,,,EA084,NA,,,, +Ia5,,,EA084,NA,,,, +Ia6,,,EA084,NA,,,, +Ia7,,,EA084,NA,,,, +Ia8,,,EA084,NA,,,, +Ia9,,,EA084,NA,,,, +Ib1,,,EA084,NA,,,, +Ib2,,,EA084,NA,,,, +Ib3,,,EA084,NA,,,, +Ib4,,,EA084,NA,,,, +Ib5,,,EA084,NA,,,, +Ib6,,,EA084,NA,,,, +Ib7,,,EA084,NA,,,, +Ib8,,,EA084,NA,,,, +Ib9,,,EA084,NA,,,, +Ic1,,,EA084,NA,,,, +Ic10,,,EA084,NA,,,, +Ic11,Allang,1950,EA084,5,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA084,5,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA084,NA,,,, +Ic2,,,EA084,NA,,,, +Ic3,,,EA084,NA,,,, +Ic4,,,EA084,NA,,,, +Ic5,Bare'e subgroup,1910,EA084,5,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,,EA084,NA,,,, +Ic7,,,EA084,NA,,,, +Ic8,,,EA084,NA,,,, +Ic9,,,EA084,NA,,,, +Id1,,,EA084,NA,,,, +Id10,,1930,EA084,5,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,,EA084,NA,,,, +Id12,,,EA084,NA,,,, +Id13,,,EA084,NA,,,, +Id2,,1930,EA084,1,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,,,EA084,NA,,,, +Id4,,,EA084,NA,,,, +Id5,,,EA084,NA,,,, +Id6,,,EA084,NA,,,, +Id7,,,EA084,NA,,,, +Id8,,1830,EA084,2,,roth1890,EthnographicAtlas_1967_p97, +Id9,,,EA084,NA,,,, +Ie1,,,EA084,NA,,,, +Ie10,,,EA084,NA,,,, +Ie11,,,EA084,NA,,,, +Ie12,,,EA084,NA,,,, +Ie13,,,EA084,NA,,,, +Ie14,,,EA084,NA,,,, +Ie15,,,EA084,NA,,,, +Ie16,,1940,EA084,5,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,,EA084,NA,,,, +Ie18,Bamol Village,1940,EA084,5,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,,,EA084,NA,,,, +Ie2,,,EA084,NA,,,, +Ie20,,,EA084,NA,,,, +Ie21,,,EA084,NA,,,, +Ie22,,,EA084,NA,,,, +Ie23,,,EA084,NA,,,, +Ie24,,,EA084,NA,,,, +Ie25,,,EA084,NA,,,, +Ie26,,,EA084,NA,,,, +Ie27,,,EA084,NA,,,, +Ie28,,,EA084,NA,,,, +Ie29,,,EA084,NA,,,, +Ie3,,,EA084,NA,,,, +Ie30,,,EA084,NA,,,, +Ie31,,,EA084,NA,,,, +Ie32,,,EA084,NA,,,, +Ie33,,,EA084,NA,,,, +Ie34,,,EA084,NA,,,, +Ie35,,,EA084,NA,,,, +Ie36,,,EA084,NA,,,, +Ie37,,,EA084,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA084,5,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA084,5,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,,,EA084,NA,,,, +Ie5,,1930,EA084,5,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA084,NA,,,, +Ie7,,,EA084,NA,,,, +Ie8,,,EA084,NA,,,, +Ie9,,,EA084,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA084,5,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA084,NA,,,, +If11,,,EA084,NA,,,, +If12,,,EA084,NA,,,, +If13,,,EA084,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA084,5,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA084,5,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,,EA084,NA,,,, +If17,,,EA084,NA,,,, +If2,,,EA084,NA,,,, +If3,,,EA084,NA,,,, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA084,5,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,,EA084,NA,,,, +If6,,,EA084,NA,,,, +If7,,,EA084,NA,,,, +If8,,,EA084,NA,,,, +If9,,,EA084,NA,,,, +Ig1,Northeastern group,1940,EA084,5,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA084,NA,,,, +Ig11,,1920,EA084,5,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,,,EA084,NA,,,, +Ig13,,,EA084,NA,,,, +Ig14,,,EA084,NA,,,, +Ig15,,,EA084,NA,,,, +Ig16,,,EA084,NA,,,, +Ig17,,,EA084,NA,,,, +Ig18,,,EA084,NA,,,, +Ig19,,,EA084,NA,,,, +Ig2,,,EA084,NA,,,, +Ig20,,,EA084,NA,,,, +Ig21,,,EA084,NA,,,, +Ig3,,1930,EA084,5,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,,,EA084,NA,,,, +Ig5,,,EA084,NA,,,, +Ig6,,,EA084,NA,,,, +Ig7,,,EA084,NA,,,, +Ig8,,,EA084,NA,,,, +Ig9,,,EA084,NA,,,, +Ih1,,,EA084,NA,,,, +Ih10,,,EA084,NA,,,, +Ih11,,,EA084,NA,,,, +Ih12,,,EA084,NA,,,, +Ih13,,,EA084,NA,,,, +Ih14,,,EA084,NA,,,, +Ih2,,,EA084,NA,,,, +Ih3,Bunlap Village,1950,EA084,5,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,,,EA084,NA,,,, +Ih5,Neje Chiefdom,1860,EA084,5,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,,EA084,NA,,,, +Ih7,,,EA084,NA,,,, +Ih8,,,EA084,NA,,,, +Ih9,,,EA084,NA,,,, +Ii1,,,EA084,NA,,,, +Ii10,,,EA084,NA,,,, +Ii12,,,EA084,NA,,,, +Ii13,,,EA084,NA,,,, +Ii14,,,EA084,NA,,,, +Ii2,,,EA084,NA,,,, +Ii3,,,EA084,NA,,,, +Ii4,,,EA084,NA,,,, +Ii5,,,EA084,NA,,,, +Ii6,,,EA084,NA,,,, +Ii7,,,EA084,NA,,,, +Ii8,,,EA084,NA,,,, +Ii9,,,EA084,NA,,,, +Ij1,,,EA084,NA,,,, +Ij10,,,EA084,NA,,,, +Ij2,,,EA084,NA,,,, +Ij3,,,EA084,NA,,,, +Ij4,,,EA084,NA,,,, +Ij5,,,EA084,NA,,,, +Ij6,,1800,EA084,5,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,,EA084,NA,,,, +Ij8,,,EA084,NA,,,, +Ij9,,1860,EA084,3,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA084,5,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA084,5,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA084,4,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA084,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA084,3,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA084,3,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA084,5,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA084,5,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA084,5,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA084,2,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA084,2,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA084,5,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA084,5,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA084,5,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA084,5,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA084,1,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA084,5,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,,,EA084,NA,,,, +Na27,,,EA084,NA,,,, +Na28,,,EA084,NA,,,, +Na29,,,EA084,NA,,,, +Na3,Coronation Gulf,1920,EA084,3,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,,EA084,NA,,,, +Na31,with special reference to those of Albany and Moose Creek,1850,EA084,3,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA084,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,,,EA084,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA084,2,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA084,5,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA084,5,"Also a conical bark tipi, circular in shape (code ""2"")",barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,,EA084,NA,,,, +Na38,with special reference to the Lac Vieux Desert band,1800,EA084,3,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA084,2,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA084,5,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA084,2,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,,,EA084,NA,,,, +Na42,,,EA084,NA,,,, +Na43,,1920,EA084,5,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA084,NA,Tents of undescribed type are used in summer camps,graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA084,NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,,,EA084,NA,,,, +Na6,,,EA084,NA,,,, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA084,2,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA084,5,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,,,EA084,NA,,,, +Nb1,,,EA084,NA,,,, +Nb10,,1865,EA084,5,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,,,EA084,NA,,,, +Nb12,,1880,EA084,2,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,,EA084,NA,,,, +Nb14,,,EA084,NA,,,, +Nb15,,1880,EA084,5,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA084,5,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA084,5,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,,EA084,NA,,,, +Nb19,,,EA084,NA,,,, +Nb2,Twana Tribe,1850,EA084,5,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,,EA084,NA,,,, +Nb21,,1860,EA084,5,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA084,2,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA084,5,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,,EA084,NA,,,, +Nb25,,1860,EA084,5,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,,EA084,NA,,,, +Nb27,with special reference to the Tait,1880,EA084,5,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA084,5,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,,EA084,NA,,,, +Nb3,,,EA084,NA,,,, +Nb30,,,EA084,NA,,,, +Nb31,,,EA084,NA,,,, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA084,NA,A windbreak of brush was used in the summer,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p109, +Nb33,,,EA084,NA,,,, +Nb34,,,EA084,NA,,,, +Nb35,,,EA084,NA,,,, +Nb36,,,EA084,NA,,,, +Nb37,,,EA084,NA,,,, +Nb38,,,EA084,NA,,,, +Nb39,,,EA084,NA,,,, +Nb4,,,EA084,NA,,,, +Nb5,,,EA084,NA,,,, +Nb6,,,EA084,NA,,,, +Nb7,,,EA084,NA,,,, +Nb8,,,EA084,NA,,,, +Nb9,,,EA084,NA,,,, +Nc1,,1850,EA084,2,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA084,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA084,2,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA084,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA084,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA084,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA084,2,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,,EA084,NA,,,, +Nc17,,,EA084,NA,,,, +Nc18,,,EA084,NA,,,, +Nc19,,,EA084,NA,,,, +Nc2,,1850,EA084,5,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,,EA084,NA,,,, +Nc21,,,EA084,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA084,5,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA084,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,,,EA084,NA,,,, +Nc25,,1860,EA084,1,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA084,5,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA084,NA,,,, +Nc28,,,EA084,NA,,,, +Nc29,,,EA084,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA084,2,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,,EA084,NA,,,, +Nc31,,,EA084,NA,,,, +Nc32,,,EA084,NA,,,, +Nc33,,1860,EA084,5,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,,EA084,NA,,,, +Nc4,,1860,EA084,2,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,,,EA084,NA,,,, +Nc6,,,EA084,NA,,,, +Nc7,,1850,EA084,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA084,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA084,5,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA084,2,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA084,5,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA084,2,"Also rectangular (code ""5""), subterranean houses where walls are indistinguishable from gabled roof, made of mats/latticework",ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA084,2,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA084,2,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA084,3,"Also circular houses (code ""2"") with ground-level floors, walls indistinguishable from conical-shaped roof made of grass/thatch or hides/skins",ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA084,2,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA084,3,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA084,5,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA084,5,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,,EA084,NA,,,, +Nd2,,1860,EA084,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA084,2,But buffalo-skin tipi covers came into wide use after 1805,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,,EA084,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA084,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,,EA084,NA,,,, +Nd24,,,EA084,NA,,,, +Nd25,,,EA084,NA,,,, +Nd26,,1870,EA084,5,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,,EA084,NA,,,, +Nd28,,1870,EA084,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA084,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,,,EA084,NA,,,, +Nd30,,1870,EA084,2,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,,EA084,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA084,2,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA084,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA084,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,,EA084,NA,,,, +Nd36,,1870,EA084,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,,EA084,NA,,,, +Nd38,,1870,EA084,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,,,EA084,NA,,,, +Nd4,,1870,EA084,2,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,,EA084,NA,,,, +Nd41,,1870,EA084,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,,,EA084,NA,,,, +Nd43,,1860,EA084,2,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA084,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA084,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA084,2,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,,EA084,NA,,,, +Nd48,,,EA084,NA,,,, +Nd49,,,EA084,NA,,,, +Nd5,,1870,EA084,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,,EA084,NA,,,, +Nd51,,,EA084,NA,,,, +Nd52,,,EA084,NA,,,, +Nd53,,,EA084,NA,,,, +Nd54,,,EA084,NA,,,, +Nd55,,,EA084,NA,,,, +Nd56,,1860,EA084,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,,EA084,NA,,,, +Nd58,,1860,EA084,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA084,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA084,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,,EA084,NA,,,, +Nd61,,1860,EA084,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA084,2,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA084,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA084,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,,EA084,NA,,,, +Nd66,,,EA084,NA,,,, +Nd67,,1870,EA084,5,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA084,2,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA084,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA084,5,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,,,EA084,NA,,,, +Ne10,,1860,EA084,2,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,,EA084,NA,,,, +Ne12,,,EA084,NA,,,, +Ne13,,,EA084,NA,,,, +Ne14,,1850,EA084,2,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA084,2,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,,EA084,NA,,,, +Ne17,,,EA084,NA,,,, +Ne18,,,EA084,NA,,,, +Ne19,,,EA084,NA,,,, +Ne2,,,EA084,NA,,,, +Ne20,,,EA084,NA,,,, +Ne21,,,EA084,NA,,,, +Ne3,,,EA084,NA,,,, +Ne4,,,EA084,NA,,,, +Ne5,,,EA084,NA,,,, +Ne6,,1830,EA084,2,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,,EA084,NA,,,, +Ne8,,,EA084,NA,,,, +Ne9,,,EA084,NA,,,, +Nf10,,1870,EA084,2,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA084,2,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA084,2,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA084,5,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA084,NA,,,, +Nf15,,,EA084,NA,,,, +Nf2,,1850,EA084,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA084,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA084,NA,,,, +Nf5,,,EA084,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA084,2,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA084,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,,EA084,NA,,,, +Nf9,,,EA084,NA,,,, +Ng1,,,EA084,NA,,,, +Ng10,,,EA084,NA,,,, +Ng11,,,EA084,NA,,,, +Ng12,,1760,EA084,5,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA084,NA,,,, +Ng14,,,EA084,NA,,,, +Ng15,,,EA084,NA,,,, +Ng2,,,EA084,NA,,,, +Ng3,Upper division in Alabama,1750,EA084,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA084,2,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA084,2,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA084,5,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,,,EA084,NA,,,, +Ng8,,1560,EA084,5,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA084,NA,,,, +Nh1,,,EA084,NA,,,, +Nh10,,,EA084,NA,,,, +Nh11,,,EA084,NA,,,, +Nh12,,,EA084,NA,,,, +Nh13,,,EA084,NA,,,, +Nh14,,,EA084,NA,,,, +Nh15,,,EA084,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA084,2,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,,EA084,NA,,,, +Nh18,,,EA084,NA,,,, +Nh19,,1850,EA084,5,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,,EA084,NA,,,, +Nh20,,,EA084,NA,,,, +Nh21,,,EA084,NA,,,, +Nh22,,1860,EA084,5,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,,EA084,NA,,,, +Nh24,,,EA084,NA,,,, +Nh25,,,EA084,NA,,,, +Nh26,,,EA084,NA,,,, +Nh27,,,EA084,NA,,,, +Nh3,,,EA084,NA,,,, +Nh4,,,EA084,NA,,,, +Nh5,,1850,EA084,5,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,,EA084,NA,,,, +Nh7,,,EA084,NA,,,, +Nh8,,,EA084,NA,,,, +Nh9,,,EA084,NA,,,, +Ni1,,,EA084,NA,,,, +Ni2,,1930,EA084,5,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,,,EA084,NA,,,, +Ni4,,,EA084,NA,,,, +Ni5,,,EA084,NA,,,, +Ni6,,,EA084,NA,,,, +Ni7,,,EA084,NA,,,, +Ni8,,,EA084,NA,,,, +Ni9,,,EA084,NA,,,, +Nj1,,,EA084,NA,,,, +Nj10,,,EA084,NA,,,, +Nj11,,,EA084,NA,,,, +Nj12,,,EA084,NA,,,, +Nj13,,,EA084,NA,,,, +Nj14,,,EA084,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA084,6,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,,,EA084,NA,,,, +Nj4,,,EA084,NA,,,, +Nj5,,,EA084,NA,,,, +Nj6,,,EA084,NA,,,, +Nj7,,,EA084,NA,,,, +Nj8,,1500,EA084,5,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,,EA084,NA,,,, +Sa1,,,EA084,NA,,,, +Sa10,,,EA084,NA,,,, +Sa11,,,EA084,NA,,,, +Sa12,,,EA084,NA,,,, +Sa13,,,EA084,NA,,,, +Sa14,,,EA084,NA,,,, +Sa15,,,EA084,NA,,,, +Sa16,,,EA084,NA,,,, +Sa17,,,EA084,NA,,,, +Sa2,,,EA084,NA,,,, +Sa3,,,EA084,NA,,,, +Sa4,,,EA084,NA,,,, +Sa5,,1950,EA084,5,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,,EA084,NA,,,, +Sa7,,,EA084,NA,,,, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA084,5,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA084,5,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,,,EA084,NA,,,, +Sb2,,1940,EA084,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA084,NA,,,, +Sb4,,,EA084,NA,,,, +Sb5,,,EA084,NA,,,, +Sb6,,,EA084,NA,,,, +Sb7,,,EA084,NA,,,, +Sb8,,1520,EA084,5,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,,EA084,NA,,,, +Sc1,,,EA084,NA,,,, +Sc10,,,EA084,NA,,,, +Sc11,,,EA084,NA,,,, +Sc12,,,EA084,NA,,,, +Sc13,,,EA084,NA,,,, +Sc14,,,EA084,NA,,,, +Sc15,,,EA084,NA,,,, +Sc16,,,EA084,NA,,,, +Sc17,,,EA084,NA,,,, +Sc18,,,EA084,NA,,,, +Sc2,,,EA084,NA,,,, +Sc3,,,EA084,NA,,,, +Sc4,,,EA084,NA,,,, +Sc5,,1900,EA084,5,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,,,EA084,NA,,,, +Sc7,,,EA084,NA,,,, +Sc8,,1950,EA084,5,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,,EA084,NA,,,, +Sd1,Cabrura village,1950,EA084,5,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA084,NA,,,, +Sd3,,,EA084,NA,,,, +Sd4,,,EA084,NA,,,, +Sd5,,,EA084,NA,,,, +Sd6,,,EA084,NA,,,, +Sd7,,1950,EA084,5,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,,EA084,NA,,,, +Sd9,,,EA084,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA084,5,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA084,NA,,,, +Se11,,,EA084,NA,,,, +Se12,,,EA084,NA,,,, +Se2,,1940,EA084,5,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,,EA084,NA,,,, +Se4,,,EA084,NA,,,, +Se5,Village on Caduiari River,1940,EA084,5,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,,EA084,NA,,,, +Se7,,,EA084,NA,,,, +Se8,Upper Inuya River,1950,EA084,3,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,,EA084,NA,,,, +Sf1,City and environs of Cuzco,1530,EA084,5,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,,,EA084,NA,,,, +Sf3,,,EA084,NA,,,, +Sf4,,1950,EA084,5,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA084,5,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA084,2,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA084,2,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA084,NA,,,, +Sf9,,,EA084,NA,,,, +Sg1,Eastern and central,1870,EA084,2,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA084,5,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA084,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,,,EA084,NA,,,, +Sg5,,,EA084,NA,,,, +Sh1,,,EA084,NA,,,, +Sh2,,,EA084,NA,,,, +Sh3,,,EA084,NA,,,, +Sh4,,,EA084,NA,,,, +Sh5,,,EA084,NA,,,, +Sh6,,,EA084,NA,,,, +Sh7,,,EA084,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA084,5,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA084,NA,,,, +Si1,Kejara,1920,EA084,2,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,,EA084,NA,,,, +Si2,,,EA084,NA,,,, +Si3,,,EA084,NA,,,, +Si4,Cocozu Group,1940,EA084,1,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,,EA084,NA,,,, +Si6,,,EA084,NA,,,, +Si7,,,EA084,NA,,,, +Si8,,,EA084,NA,,,, +Si9,,,EA084,NA,,,, +Sj1,,,EA084,NA,,,, +Sj10,,,EA084,NA,,,, +Sj11,,,EA084,NA,,,, +Sj2,,,EA084,NA,,,, +Sj3,,,EA084,NA,,,, +Sj4,,,EA084,NA,,,, +Sj5,Naknenuk subtribe,1880,EA084,5,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,,,EA084,NA,,,, +Sj7,,,EA084,NA,,,, +Sj8,,,EA084,NA,,,, +Sj9,,1950,EA084,5,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA084,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA084,5,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA084,5,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA084,5,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,,,EA084,NA,,,, +ch17,with special reference to those of the Benderskij Uezd,1894,EA084,5,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,,,EA084,NA,,,, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA084,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA084,5,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA084,5,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,,,EA084,NA,,,, +ch23,,,EA084,NA,,,, +ch24,,,EA084,NA,,,, +ch25,with special reference to the Beletskij Uezd,1900,EA084,5,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA084,5,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA084,5,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,,,EA084,NA,,,, +ec12,Avam (Western) group,1930,EA084,2,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA084,5,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA084,3,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA084,2,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA084,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA084,5,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA084,5,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA084,5,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA084,5,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA084,5,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA085,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,,,EA085,NA,,,, +Aa3,,,EA085,NA,,,, +Aa4,,,EA085,NA,,,, +Aa5,,,EA085,NA,,,, +Aa6,,1920,EA085,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,,EA085,NA,,,, +Aa8,,1850,EA085,2,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA085,NA,,,, +Ab1,,,EA085,NA,,,, +Ab10,,1936,EA085,2,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,,EA085,NA,,,, +Ab12,,,EA085,NA,,,, +Ab13,,,EA085,NA,,,, +Ab14,,,EA085,NA,,,, +Ab15,,,EA085,NA,,,, +Ab16,,,EA085,NA,,,, +Ab17,,,EA085,NA,,,, +Ab18,,,EA085,NA,,,, +Ab19,,,EA085,NA,,,, +Ab2,,1880,EA085,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,,EA085,NA,,,, +Ab21a,,,EA085,NA,,,, +Ab21b,,,EA085,NA,,,, +Ab22,,,EA085,NA,,,, +Ab3,Ruling Luyana,1890,EA085,2,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,,EA085,NA,,,, +Ab5,,,EA085,NA,,,, +Ab6,,,EA085,NA,,,, +Ab7,,,EA085,NA,,,, +Ab8,,,EA085,NA,,,, +Ab9,,1870,EA085,2,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,,EA085,NA,,,, +Ac10,,,EA085,NA,,,, +Ac11,,1930,EA085,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,,EA085,NA,,,, +Ac13,,,EA085,NA,,,, +Ac14,,1900,EA085,4,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,,EA085,NA,,,, +Ac16,,,EA085,NA,,,, +Ac17,,,EA085,NA,,,, +Ac18,,,EA085,NA,,,, +Ac19,,,EA085,NA,,,, +Ac2,,,EA085,NA,,,, +Ac20,,,EA085,NA,,,, +Ac21,,,EA085,NA,,,, +Ac22,,,EA085,NA,,,, +Ac23,,,EA085,NA,,,, +Ac24,,,EA085,NA,,,, +Ac25,,,EA085,NA,,,, +Ac26,,,EA085,NA,,,, +Ac27,,,EA085,NA,,,, +Ac28,,,EA085,NA,,,, +Ac29,,,EA085,NA,,,, +Ac3,,,EA085,NA,,,, +Ac30,,,EA085,NA,,,, +Ac31,,,EA085,NA,,,, +Ac32,,1920,EA085,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,,EA085,NA,,,, +Ac34,,,EA085,NA,,,, +Ac35,,,EA085,NA,,,, +Ac36,,,EA085,NA,,,, +Ac37,,,EA085,NA,,,, +Ac38,,,EA085,NA,,,, +Ac39,,1920,EA085,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,,,EA085,NA,,,, +Ac40,,1900,EA085,4,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,,EA085,NA,,,, +Ac42,,,EA085,NA,,,, +Ac43,,,EA085,NA,,,, +Ac5,,,EA085,NA,,,, +Ac6,,,EA085,NA,,,, +Ac7,,1920,EA085,2,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,,EA085,NA,,,, +Ac9,,,EA085,NA,,,, +Ad1,,1950,EA085,2,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA085,2,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA085,2,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,,EA085,NA,,,, +Ad13,,1930,EA085,2,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA085,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,1900,EA085,2,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,,EA085,NA,,,, +Ad17,,,EA085,NA,,,, +Ad18,,,EA085,NA,,,, +Ad19,,1910,EA085,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,,EA085,NA,,,, +Ad20,,1920,EA085,2,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,,EA085,NA,,,, +Ad22,,,EA085,NA,,,, +Ad23,,,EA085,NA,,,, +Ad24,,,EA085,NA,,,, +Ad25,,,EA085,NA,,,, +Ad26,,,EA085,NA,,,, +Ad27,,1880,EA085,2,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA085,2,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,,EA085,NA,,,, +Ad3,,,EA085,NA,,,, +Ad30,,,EA085,NA,,,, +Ad31,,,EA085,NA,,,, +Ad32,,,EA085,NA,,,, +Ad33,,,EA085,NA,,,, +Ad34,,,EA085,NA,,,, +Ad35,,,EA085,NA,,,, +Ad36,,,EA085,NA,,,, +Ad37,,,EA085,NA,,,, +Ad38,,,EA085,NA,,,, +Ad39,,,EA085,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA085,2,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA085,NA,,,, +Ad41,,,EA085,NA,,,, +Ad42,,,EA085,NA,,,, +Ad43,,,EA085,NA,,,, +Ad44,,,EA085,NA,,,, +Ad45,,,EA085,NA,,,, +Ad46,,1950,EA085,2,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,,EA085,NA,,,, +Ad48,,,EA085,NA,,,, +Ad49,,,EA085,NA,,,, +Ad5,,,EA085,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA085,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA085,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA085,2,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,,,EA085,NA,,,, +Ad8,,,EA085,NA,,,, +Ad9,,,EA085,NA,,,, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA085,2,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,,EA085,NA,,,, +Ae11,,,EA085,NA,,,, +Ae12,,,EA085,NA,,,, +Ae13,,,EA085,NA,,,, +Ae14,,,EA085,NA,,,, +Ae15,,,EA085,NA,,,, +Ae16,,,EA085,NA,,,, +Ae17,,,EA085,NA,,,, +Ae18,,1900,EA085,2,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA085,NA,,,, +Ae2,,,EA085,NA,,,, +Ae20,,,EA085,NA,,,, +Ae21,,,EA085,NA,,,, +Ae22,,,EA085,NA,,,, +Ae23,,,EA085,NA,,,, +Ae24,,,EA085,NA,,,, +Ae25,with special reference to the northern Tetela,1920,EA085,2,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,,EA085,NA,,,, +Ae27,,,EA085,NA,,,, +Ae28,,1900,EA085,4,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,,EA085,NA,,,, +Ae3,,,EA085,NA,,,, +Ae30,,,EA085,NA,,,, +Ae31,,,EA085,NA,,,, +Ae32,,,EA085,NA,,,, +Ae33,,1920,EA085,2,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA085,NA,,,, +Ae35,,1900,EA085,2,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,,EA085,NA,,,, +Ae37,,,EA085,NA,,,, +Ae38,,,EA085,NA,,,, +Ae39,,,EA085,NA,,,, +Ae4,,,EA085,NA,,,, +Ae40,,,EA085,NA,,,, +Ae41,,,EA085,NA,,,, +Ae42,,,EA085,NA,,,, +Ae43,,,EA085,NA,,,, +Ae44,,,EA085,NA,,,, +Ae45,,,EA085,NA,,,, +Ae46,,,EA085,NA,,,, +Ae47,,,EA085,NA,,,, +Ae48,,1930,EA085,2,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,,EA085,NA,,,, +Ae5,,,EA085,NA,,,, +Ae50,,1920,EA085,2,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,,,EA085,NA,,,, +Ae52,,,EA085,NA,,,, +Ae53,,,EA085,NA,,,, +Ae54,,,EA085,NA,,,, +Ae55,,,EA085,NA,,,, +Ae56,,,EA085,NA,,,, +Ae57,,,EA085,NA,,,, +Ae58,,,EA085,NA,,,, +Ae59,,,EA085,NA,,,, +Ae6,,,EA085,NA,,,, +Ae7,,1910,EA085,2,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,,EA085,NA,,,, +Ae9,,,EA085,NA,,,, +Af1,,,EA085,NA,,,, +Af10,,,EA085,NA,,,, +Af11,,,EA085,NA,,,, +Af12,,,EA085,NA,,,, +Af13,,1920,EA085,2,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA085,2,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA085,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,,EA085,NA,,,, +Af17,,,EA085,NA,,,, +Af18,,,EA085,NA,,,, +Af19,,,EA085,NA,,,, +Af2,,,EA085,NA,,,, +Af20,,,EA085,NA,,,, +Af21,,,EA085,NA,,,, +Af22,,,EA085,NA,,,, +Af23,,,EA085,NA,,,, +Af24,,,EA085,NA,,,, +Af25,,,EA085,NA,,,, +Af26,,,EA085,NA,,,, +Af27,,,EA085,NA,,,, +Af28,,,EA085,NA,,,, +Af29,,,EA085,NA,,,, +Af3,,,EA085,NA,,,, +Af30,,,EA085,NA,,,, +Af31,,,EA085,NA,,,, +Af32,,,EA085,NA,,,, +Af33,,,EA085,NA,,,, +Af34,,,EA085,NA,,,, +Af35,,,EA085,NA,,,, +Af36,,,EA085,NA,,,, +Af37,with special reference to the Akpafu,1900,EA085,2,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA085,NA,,,, +Af39,,,EA085,NA,,,, +Af4,,,EA085,NA,,,, +Af40,,,EA085,NA,,,, +Af41,,,EA085,NA,,,, +Af42,,,EA085,NA,,,, +Af43,,,EA085,NA,,,, +Af44,,,EA085,NA,,,, +Af45,,,EA085,NA,,,, +Af46,,,EA085,NA,,,, +Af47,,,EA085,NA,,,, +Af48,,1850,EA085,4,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,,EA085,NA,,,, +Af5,,1930,EA085,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,,EA085,NA,,,, +Af51,,,EA085,NA,,,, +Af52,,1920,EA085,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA085,NA,,,, +Af54,,,EA085,NA,,,, +Af55,,,EA085,NA,,,, +Af56,,,EA085,NA,,,, +Af57,,,EA085,NA,,,, +Af58,,,EA085,NA,,,, +Af6,,,EA085,NA,,,, +Af7,,,EA085,NA,,,, +Af8,,,EA085,NA,,,, +Af9,,,EA085,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA085,2,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,,EA085,NA,,,, +Ag11,,,EA085,NA,,,, +Ag12,,1910,EA085,2,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA085,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA085,2,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA085,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,,EA085,NA,,,, +Ag17,,,EA085,NA,,,, +Ag18,,,EA085,NA,,,, +Ag19,,,EA085,NA,,,, +Ag2,,,EA085,NA,,,, +Ag20,,,EA085,NA,,,, +Ag21,,,EA085,NA,,,, +Ag22,,,EA085,NA,,,, +Ag23,,,EA085,NA,,,, +Ag24,,,EA085,NA,,,, +Ag25,,1900,EA085,2,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA085,2,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,,EA085,NA,,,, +Ag28,,,EA085,NA,,,, +Ag29,,,EA085,NA,,,, +Ag3,,,EA085,NA,,,, +Ag30,,,EA085,NA,,,, +Ag31,,,EA085,NA,,,, +Ag32,,1900,EA085,2,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,,EA085,NA,,,, +Ag34,,1930,EA085,2,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA085,2,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA085,NA,,,, +Ag37,,,EA085,NA,,,, +Ag38,,,EA085,NA,,,, +Ag39,,1910,EA085,2,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA085,2,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA085,2,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,,EA085,NA,,,, +Ag42,,,EA085,NA,,,, +Ag43,,,EA085,NA,,,, +Ag44,,,EA085,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA085,2,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA085,NA,,,, +Ag47,,,EA085,NA,,,, +Ag48,,,EA085,NA,,,, +Ag49,,,EA085,NA,,,, +Ag5,,,EA085,NA,,,, +Ag50,,,EA085,NA,,,, +Ag51,,,EA085,NA,,,, +Ag52,,,EA085,NA,,,, +Ag53,,,EA085,NA,,,, +Ag54,,1910,EA085,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA085,2,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA085,2,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,,,EA085,NA,,,, +Ag9,,,EA085,NA,,,, +Ah1,,,EA085,NA,,,, +Ah10,,,EA085,NA,,,, +Ah11,,,EA085,NA,,,, +Ah12,,,EA085,NA,,,, +Ah13,,,EA085,NA,,,, +Ah14,,,EA085,NA,,,, +Ah15,,1920,EA085,4,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,,EA085,NA,,,, +Ah17,,,EA085,NA,,,, +Ah18,,,EA085,NA,,,, +Ah19,,,EA085,NA,,,, +Ah2,,,EA085,NA,,,, +Ah20,,1920,EA085,2,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA085,NA,,,, +Ah22,,,EA085,NA,,,, +Ah23,,,EA085,NA,,,, +Ah24,,,EA085,NA,,,, +Ah25,,1920,EA085,2,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,,EA085,NA,,,, +Ah27,,,EA085,NA,,,, +Ah28,,,EA085,NA,,,, +Ah29,,,EA085,NA,,,, +Ah3,,,EA085,NA,,,, +Ah30,,,EA085,NA,,,, +Ah31,,,EA085,NA,,,, +Ah32,,,EA085,NA,,,, +Ah33,,1920,EA085,2,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,,,EA085,NA,,,, +Ah35,,,EA085,NA,,,, +Ah36,,,EA085,NA,,,, +Ah37,,1920,EA085,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,,EA085,NA,,,, +Ah39,,,EA085,NA,,,, +Ah4,,,EA085,NA,,,, +Ah5,,,EA085,NA,,,, +Ah6,,,EA085,NA,,,, +Ah7,,,EA085,NA,,,, +Ah8,,,EA085,NA,,,, +Ah9,,,EA085,NA,,,, +Ai1,,,EA085,NA,,,, +Ai10,,,EA085,NA,,,, +Ai11,,,EA085,NA,,,, +Ai12,,,EA085,NA,,,, +Ai13,,,EA085,NA,,,, +Ai14,,,EA085,NA,,,, +Ai15,,,EA085,NA,,,, +Ai16,,,EA085,NA,,,, +Ai17,,,EA085,NA,,,, +Ai18,,1880,EA085,2,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA085,2,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA085,NA,,,, +Ai20,,,EA085,NA,,,, +Ai21,,1880,EA085,2,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,,EA085,NA,,,, +Ai23,,1920,EA085,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,,EA085,NA,,,, +Ai25,,1950,EA085,2,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA085,2,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA085,NA,,,, +Ai28,,1910,EA085,2,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,,EA085,NA,,,, +Ai3,,,EA085,NA,,,, +Ai30,,,EA085,NA,,,, +Ai31,,,EA085,NA,,,, +Ai32,,,EA085,NA,,,, +Ai33,,,EA085,NA,,,, +Ai34,,,EA085,NA,,,, +Ai35,,,EA085,NA,,,, +Ai36,,,EA085,NA,,,, +Ai37,,,EA085,NA,,,, +Ai38,,,EA085,NA,,,, +Ai39,,,EA085,NA,,,, +Ai4,,,EA085,NA,,,, +Ai40,,,EA085,NA,,,, +Ai41,,,EA085,NA,,,, +Ai42,,,EA085,NA,,,, +Ai43,,,EA085,NA,,,, +Ai44,,,EA085,NA,,,, +Ai45,,,EA085,NA,,,, +Ai46,,,EA085,NA,,,, +Ai47,Northern division,1939,EA085,2,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA085,NA,,,, +Ai6,,,EA085,NA,,,, +Ai7,,1910,EA085,2,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,,EA085,NA,,,, +Ai9,,,EA085,NA,,,, +Aj1,,1950,EA085,2,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,,EA085,NA,,,, +Aj11,,,EA085,NA,,,, +Aj12,,,EA085,NA,,,, +Aj13,,,EA085,NA,,,, +Aj14,,,EA085,NA,,,, +Aj15,,,EA085,NA,,,, +Aj16,,,EA085,NA,,,, +Aj17,,1890,EA085,2,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA085,NA,,,, +Aj19,,,EA085,NA,,,, +Aj2,,,EA085,NA,,,, +Aj20,,,EA085,NA,,,, +Aj21,,,EA085,NA,,,, +Aj22,,,EA085,NA,,,, +Aj23,,,EA085,NA,,,, +Aj24,,1930,EA085,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,,EA085,NA,,,, +Aj26,,,EA085,NA,,,, +Aj27,,1920,EA085,2,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,,EA085,NA,,,, +Aj29,,,EA085,NA,,,, +Aj3,,1930,EA085,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA085,NA,,,, +Aj31,,,EA085,NA,,,, +Aj4,,1920,EA085,4,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA085,2,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,,EA085,NA,,,, +Aj7,,,EA085,NA,,,, +Aj8,,,EA085,NA,,,, +Aj9,,,EA085,NA,,,, +Ca1,,,EA085,NA,,,, +Ca10,,,EA085,NA,,,, +Ca11,,1890,EA085,2,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,,EA085,NA,,,, +Ca13,,,EA085,NA,,,, +Ca14,,,EA085,NA,,,, +Ca15,,,EA085,NA,,,, +Ca16,,,EA085,NA,,,, +Ca17,,,EA085,NA,,,, +Ca18,,,EA085,NA,,,, +Ca19,,,EA085,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA085,2,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA085,2,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,,EA085,NA,,,, +Ca22,,,EA085,NA,,,, +Ca23,,1950,EA085,2,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA085,NA,,,, +Ca25,,,EA085,NA,,,, +Ca26,,,EA085,NA,,,, +Ca27,,1930,EA085,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,,EA085,NA,,,, +Ca29,,,EA085,NA,,,, +Ca3,,,EA085,NA,,,, +Ca30,Kafa Kingdom,1890,EA085,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,,EA085,NA,,,, +Ca32,,,EA085,NA,,,, +Ca33,,1860,EA085,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA085,2,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,,EA085,NA,,,, +Ca36,,,EA085,NA,,,, +Ca37,,,EA085,NA,,,, +Ca38,,,EA085,NA,,,, +Ca39,,,EA085,NA,,,, +Ca4,,1950,EA085,1,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,,EA085,NA,,,, +Ca41,,,EA085,NA,,,, +Ca42,,,EA085,NA,,,, +Ca43,,,EA085,NA,,,, +Ca5,,,EA085,NA,,,, +Ca6,,1880,EA085,2,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,,,EA085,NA,,,, +Ca8,,,EA085,NA,,,, +Ca9,,,EA085,NA,,,, +Cb1,,,EA085,NA,,,, +Cb10,,,EA085,NA,,,, +Cb11,,,EA085,NA,,,, +Cb12,,,EA085,NA,,,, +Cb13,,,EA085,NA,,,, +Cb14,,,EA085,NA,,,, +Cb15,with special reference to the Humr,1940,EA085,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA085,2,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA085,2,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,,EA085,NA,,,, +Cb19,,1870,EA085,2,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,,,EA085,NA,,,, +Cb20,,,EA085,NA,,,, +Cb21,,,EA085,NA,,,, +Cb22,,1920,EA085,2,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,,EA085,NA,,,, +Cb24,,,EA085,NA,,,, +Cb25,,,EA085,NA,,,, +Cb26,,,EA085,NA,,,, +Cb27,,,EA085,NA,,,, +Cb28,,,EA085,NA,,,, +Cb29,,,EA085,NA,,,, +Cb3,Bamba division,1940,EA085,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,,EA085,NA,,,, +Cb5,,,EA085,NA,,,, +Cb6,,,EA085,NA,,,, +Cb7,,1920,EA085,2,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,,,EA085,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA085,2,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,,EA085,NA,,,, +Cc10,,1900,EA085,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA085,2,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,,EA085,NA,,,, +Cc13,,1920,EA085,2,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA085,2,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA085,NA,,,, +Cc16,,1930,EA085,2,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,,EA085,NA,,,, +Cc18,,,EA085,NA,,,, +Cc19,,,EA085,NA,,,, +Cc2,Nomads of Tibesti,1950,EA085,2,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,,,EA085,NA,,,, +Cc3,,,EA085,NA,,,, +Cc4,,,EA085,NA,,,, +Cc5,,1910,EA085,2,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,,EA085,NA,,,, +Cc7,Timbuctoo,1950,EA085,2,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA085,2,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA085,2,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA085,2,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,,EA085,NA,,,, +Cd11,,,EA085,NA,,,, +Cd12,,1870,EA085,2,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,,EA085,NA,,,, +Cd14,,,EA085,NA,,,, +Cd15,,1910,EA085,2,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,,,EA085,NA,,,, +Cd17,,,EA085,NA,,,, +Cd18,,,EA085,NA,,,, +Cd19,,1920,EA085,2,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,,,EA085,NA,,,, +Cd20,,,EA085,NA,,,, +Cd21,,1930,EA085,2,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,,,EA085,NA,,,, +Cd4,,,EA085,NA,,,, +Cd5,,,EA085,NA,,,, +Cd6,,,EA085,NA,,,, +Cd7,,,EA085,NA,,,, +Cd8,,,EA085,NA,,,, +Cd9,,,EA085,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA085,3,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA085,NA,,,, +Ce3,,,EA085,NA,,,, +Ce4,,,EA085,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA085,2,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,,,EA085,NA,,,, +Ce7,,,EA085,NA,,,, +Ce8,,,EA085,NA,,,, +Cf1,,,EA085,NA,,,, +Cf2,,,EA085,NA,,,, +Cf3,,,EA085,NA,,,, +Cf4,,,EA085,NA,,,, +Cf5,,,EA085,NA,,,, +Cg1,,,EA085,NA,,,, +Cg2,,,EA085,NA,,,, +Cg3,,,EA085,NA,,,, +Cg4,,,EA085,NA,,,, +Cg5,,,EA085,NA,,,, +Ch1,,,EA085,NA,,,, +Ch10,,,EA085,NA,,,, +Ch11,Viriatino Village,1955,EA085,3,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA085,NA,,,, +Ch3,,,EA085,NA,,,, +Ch4,,,EA085,NA,,,, +Ch5,,,EA085,NA,,,, +Ch6,,,EA085,NA,,,, +Ch7,,,EA085,NA,,,, +Ch8,,,EA085,NA,,,, +Ch9,,,EA085,NA,,,, +Ci1,,,EA085,NA,,,, +Ci10,,,EA085,NA,,,, +Ci11,,1940,EA085,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,,,EA085,NA,,,, +Ci2,,,EA085,NA,,,, +Ci3,,,EA085,NA,,,, +Ci4,,,EA085,NA,,,, +Ci5,,,EA085,NA,,,, +Ci6,,,EA085,NA,,,, +Ci7,,,EA085,NA,,,, +Ci8,,,EA085,NA,,,, +Ci9,,,EA085,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA085,3,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,,,EA085,NA,,,, +Cj2,,,EA085,NA,,,, +Cj3,,,EA085,NA,,,, +Cj4,,,EA085,NA,,,, +Cj5,,,EA085,NA,,,, +Cj6,,,EA085,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA085,2,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,,,EA085,NA,,,, +Cj9,,,EA085,NA,,,, +Ea1,,,EA085,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA085,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA085,NA,,,, +Ea12,,,EA085,NA,,,, +Ea13,Mohla Village,1950,EA085,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA085,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA085,3,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,,EA085,NA,,,, +Ea5,,,EA085,NA,,,, +Ea6,Nomadic branch,1958,EA085,2,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA085,2,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA085,NA,,,, +Ea9,,,EA085,NA,,,, +Eb1,Great Horde,1910,EA085,2,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,,EA085,NA,,,, +Eb3,,,EA085,NA,,,, +Eb4,,,EA085,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA085,2,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA085,2,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,,EA085,NA,,,, +Eb8,,,EA085,NA,,,, +Ec1,Sakhalin Island,1920,EA085,4,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA085,1,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,,EA085,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA085,2,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA085,2,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA085,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA085,1,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA085,2,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,,,EA085,NA,,,, +Ec8,,1900,EA085,2,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA085,NA,,,, +Ed1,Kanghwa Island,1950,EA085,3,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA085,NA,,,, +Ed13,,,EA085,NA,,,, +Ed14,,,EA085,NA,,,, +Ed15a,,,EA085,NA,,,, +Ed15b,,,EA085,NA,,,, +Ed16,,,EA085,NA,,,, +Ed2,,,EA085,NA,,,, +Ed3,,,EA085,NA,,,, +Ed4,,,EA085,NA,,,, +Ed5,Okayama,1950,EA085,3,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA085,NA,,,, +Ed7,,1950,EA085,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA085,2,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,,EA085,NA,,,, +Ee1,,,EA085,NA,,,, +Ee2,,,EA085,NA,,,, +Ee3,Lingthem and vicinity,1930,EA085,4,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,,,EA085,NA,,,, +Ee5,,,EA085,NA,,,, +Ee6,,,EA085,NA,,,, +Ee7,,,EA085,NA,,,, +Ee8,,,EA085,NA,,,, +Ef1,,,EA085,NA,,,, +Ef10,,,EA085,NA,,,, +Ef11,Village and environs of Senapur,1945,EA085,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA085,3,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA085,NA,,,, +Ef4,,1920,EA085,3,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA085,2,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,,EA085,NA,,,, +Ef7,,,EA085,NA,,,, +Ef8,,,EA085,NA,,,, +Ef9,,,EA085,NA,,,, +Eg1,with special reference to the forest group,1940,EA085,2,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA085,2,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA085,NA,,,, +Eg12,,,EA085,NA,,,, +Eg13,,,EA085,NA,,,, +Eg14,,,EA085,NA,,,, +Eg2,,,EA085,NA,,,, +Eg3,,,EA085,NA,,,, +Eg4,,,EA085,NA,,,, +Eg5,,,EA085,NA,,,, +Eg6,with special reference to Northern Kerala,1799,EA085,3,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,,,EA085,NA,,,, +Eg8,,,EA085,NA,,,, +Eg9,,,EA085,NA,,,, +Eh1,,,EA085,NA,,,, +Eh10,,,EA085,NA,,,, +Eh2,,1900,EA085,2,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,,,EA085,NA,,,, +Eh4,with special reference to the Rock Vedda,1900,EA085,2,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA085,4,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA085,2,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA085,2,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,,EA085,NA,,,, +Eh9,,,EA085,NA,,,, +Ei1,,,EA085,NA,,,, +Ei10,,,EA085,NA,,,, +Ei11,,,EA085,NA,,,, +Ei12,,,EA085,NA,,,, +Ei13,,,EA085,NA,,,, +Ei14,,,EA085,NA,,,, +Ei15,,,EA085,NA,,,, +Ei16,,,EA085,NA,,,, +Ei17,,,EA085,NA,,,, +Ei18,,,EA085,NA,,,, +Ei19,,,EA085,NA,,,, +Ei2,,,EA085,NA,,,, +Ei20,,,EA085,NA,,,, +Ei3,,,EA085,NA,,,, +Ei4,,,EA085,NA,,,, +Ei5,,,EA085,NA,,,, +Ei6,,,EA085,NA,,,, +Ei7,,,EA085,NA,,,, +Ei8,,,EA085,NA,,,, +Ei9,,,EA085,NA,,,, +Ej1,,,EA085,NA,,,, +Ej10,,,EA085,NA,,,, +Ej11,,,EA085,NA,,,, +Ej12,,,EA085,NA,,,, +Ej13,,,EA085,NA,,,, +Ej14,,,EA085,NA,,,, +Ej15,,,EA085,NA,,,, +Ej16,,,EA085,NA,,,, +Ej2,,,EA085,NA,,,, +Ej3,,,EA085,NA,,,, +Ej4,Red River Delta in Tonkin,1950,EA085,3,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,,EA085,NA,,,, +Ej6,,,EA085,NA,,,, +Ej7,,,EA085,NA,,,, +Ej8,,,EA085,NA,,,, +Ej9,,1940,EA085,4,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,,,EA085,NA,,,, +Ia10,,,EA085,NA,,,, +Ia11,,,EA085,NA,,,, +Ia12,,,EA085,NA,,,, +Ia13,Tawi-Tawi and adjacent islands,1960,EA085,4,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA085,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA085,NA,,,, +Ia16,,,EA085,NA,,,, +Ia17,,,EA085,NA,,,, +Ia18,,,EA085,NA,,,, +Ia2,,,EA085,NA,,,, +Ia3,,,EA085,NA,,,, +Ia4,,,EA085,NA,,,, +Ia5,,,EA085,NA,,,, +Ia6,,,EA085,NA,,,, +Ia7,,,EA085,NA,,,, +Ia8,,,EA085,NA,,,, +Ia9,,,EA085,NA,,,, +Ib1,,,EA085,NA,,,, +Ib2,,,EA085,NA,,,, +Ib3,,,EA085,NA,,,, +Ib4,,,EA085,NA,,,, +Ib5,,,EA085,NA,,,, +Ib6,,,EA085,NA,,,, +Ib7,,,EA085,NA,,,, +Ib8,,,EA085,NA,,,, +Ib9,,,EA085,NA,,,, +Ic1,,,EA085,NA,,,, +Ic10,,,EA085,NA,,,, +Ic11,Allang,1950,EA085,2,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA085,4,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA085,NA,,,, +Ic2,,,EA085,NA,,,, +Ic3,,,EA085,NA,,,, +Ic4,,,EA085,NA,,,, +Ic5,Bare'e subgroup,1910,EA085,4,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,,EA085,NA,,,, +Ic7,,,EA085,NA,,,, +Ic8,,,EA085,NA,,,, +Ic9,,,EA085,NA,,,, +Id1,,,EA085,NA,,,, +Id10,,1930,EA085,2,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,,EA085,NA,,,, +Id12,,,EA085,NA,,,, +Id13,,,EA085,NA,,,, +Id2,,1930,EA085,2,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,,,EA085,NA,,,, +Id4,,,EA085,NA,,,, +Id5,,,EA085,NA,,,, +Id6,,,EA085,NA,,,, +Id7,,,EA085,NA,,,, +Id8,,1830,EA085,2,,roth1890,EthnographicAtlas_1967_p97, +Id9,,,EA085,NA,,,, +Ie1,,,EA085,NA,,,, +Ie10,,,EA085,NA,,,, +Ie11,,,EA085,NA,,,, +Ie12,,,EA085,NA,,,, +Ie13,,,EA085,NA,,,, +Ie14,,,EA085,NA,,,, +Ie15,,,EA085,NA,,,, +Ie16,,1940,EA085,4,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,,EA085,NA,,,, +Ie18,Bamol Village,1940,EA085,2,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,,,EA085,NA,,,, +Ie2,,,EA085,NA,,,, +Ie20,,,EA085,NA,,,, +Ie21,,,EA085,NA,,,, +Ie22,,,EA085,NA,,,, +Ie23,,,EA085,NA,,,, +Ie24,,,EA085,NA,,,, +Ie25,,,EA085,NA,,,, +Ie26,,,EA085,NA,,,, +Ie27,,,EA085,NA,,,, +Ie28,,,EA085,NA,,,, +Ie29,,,EA085,NA,,,, +Ie3,,,EA085,NA,,,, +Ie30,,,EA085,NA,,,, +Ie31,,,EA085,NA,,,, +Ie32,,,EA085,NA,,,, +Ie33,,,EA085,NA,,,, +Ie34,,,EA085,NA,,,, +Ie35,,,EA085,NA,,,, +Ie36,,,EA085,NA,,,, +Ie37,,,EA085,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA085,2,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA085,4,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,,,EA085,NA,,,, +Ie5,,1930,EA085,2,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA085,NA,,,, +Ie7,,,EA085,NA,,,, +Ie8,,,EA085,NA,,,, +Ie9,,,EA085,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA085,3,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA085,NA,,,, +If11,,,EA085,NA,,,, +If12,,,EA085,NA,,,, +If13,,,EA085,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA085,3,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA085,4,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,,EA085,NA,,,, +If17,,,EA085,NA,,,, +If2,,,EA085,NA,,,, +If3,,,EA085,NA,,,, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA085,2,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,,EA085,NA,,,, +If6,,,EA085,NA,,,, +If7,,,EA085,NA,,,, +If8,,,EA085,NA,,,, +If9,,,EA085,NA,,,, +Ig1,Northeastern group,1940,EA085,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA085,NA,,,, +Ig11,,1920,EA085,2,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,,,EA085,NA,,,, +Ig13,,,EA085,NA,,,, +Ig14,,,EA085,NA,,,, +Ig15,,,EA085,NA,,,, +Ig16,,,EA085,NA,,,, +Ig17,,,EA085,NA,,,, +Ig18,,,EA085,NA,,,, +Ig19,,,EA085,NA,,,, +Ig2,,,EA085,NA,,,, +Ig20,,,EA085,NA,,,, +Ig21,,,EA085,NA,,,, +Ig3,,1930,EA085,4,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,,,EA085,NA,,,, +Ig5,,,EA085,NA,,,, +Ig6,,,EA085,NA,,,, +Ig7,,,EA085,NA,,,, +Ig8,,,EA085,NA,,,, +Ig9,,,EA085,NA,,,, +Ih1,,,EA085,NA,,,, +Ih10,,,EA085,NA,,,, +Ih11,,,EA085,NA,,,, +Ih12,,,EA085,NA,,,, +Ih13,,,EA085,NA,,,, +Ih14,,,EA085,NA,,,, +Ih2,,,EA085,NA,,,, +Ih3,Bunlap Village,1950,EA085,3,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,,,EA085,NA,,,, +Ih5,Neje Chiefdom,1860,EA085,2,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,,EA085,NA,,,, +Ih7,,,EA085,NA,,,, +Ih8,,,EA085,NA,,,, +Ih9,,,EA085,NA,,,, +Ii1,,,EA085,NA,,,, +Ii10,,,EA085,NA,,,, +Ii12,,,EA085,NA,,,, +Ii13,,,EA085,NA,,,, +Ii14,,,EA085,NA,,,, +Ii2,,,EA085,NA,,,, +Ii3,,,EA085,NA,,,, +Ii4,,,EA085,NA,,,, +Ii5,,,EA085,NA,,,, +Ii6,,,EA085,NA,,,, +Ii7,,,EA085,NA,,,, +Ii8,,,EA085,NA,,,, +Ii9,,,EA085,NA,,,, +Ij1,,,EA085,NA,,,, +Ij10,,,EA085,NA,,,, +Ij2,,,EA085,NA,,,, +Ij3,,,EA085,NA,,,, +Ij4,,,EA085,NA,,,, +Ij5,,,EA085,NA,,,, +Ij6,,1800,EA085,3,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,,EA085,NA,,,, +Ij8,,,EA085,NA,,,, +Ij9,,1860,EA085,2,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA085,2,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA085,2,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA085,2,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA085,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA085,1,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA085,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA085,2,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA085,2,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA085,2,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA085,1,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA085,2,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA085,1,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA085,2,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA085,2,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA085,2,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA085,2,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA085,2,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,,,EA085,NA,,,, +Na27,,,EA085,NA,,,, +Na28,,,EA085,NA,,,, +Na29,,,EA085,NA,,,, +Na3,Coronation Gulf,1920,EA085,2,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,,EA085,NA,,,, +Na31,with special reference to those of Albany and Moose Creek,1850,EA085,1,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA085,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,,,EA085,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA085,2,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA085,2,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA085,2,Also a conical bark tipi,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,,EA085,NA,,,, +Na38,with special reference to the Lac Vieux Desert band,1800,EA085,2,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA085,2,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA085,2,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA085,2,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,,,EA085,NA,,,, +Na42,,,EA085,NA,,,, +Na43,,1920,EA085,2,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA085,NA,,,, +Na45,,1900,EA085,NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,,,EA085,NA,,,, +Na6,,,EA085,NA,,,, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA085,2,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA085,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,,,EA085,NA,,,, +Nb1,,,EA085,NA,,,, +Nb10,,,EA085,NA,,,, +Nb11,,,EA085,NA,,,, +Nb12,,1880,EA085,1,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,,EA085,NA,,,, +Nb14,,,EA085,NA,,,, +Nb15,,1880,EA085,2,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA085,2,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA085,2,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,,EA085,NA,,,, +Nb19,,,EA085,NA,,,, +Nb2,Twana Tribe,1850,EA085,2,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,,EA085,NA,,,, +Nb21,,1860,EA085,2,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA085,2,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA085,2,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,,EA085,NA,,,, +Nb25,,1860,EA085,2,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,,EA085,NA,,,, +Nb27,with special reference to the Tait,1880,EA085,2,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA085,2,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,,EA085,NA,,,, +Nb3,,,EA085,NA,,,, +Nb30,,,EA085,NA,,,, +Nb31,,,EA085,NA,,,, +Nb32,,,EA085,NA,,,, +Nb33,,,EA085,NA,,,, +Nb34,,,EA085,NA,,,, +Nb35,,,EA085,NA,,,, +Nb36,,,EA085,NA,,,, +Nb37,,,EA085,NA,,,, +Nb38,,,EA085,NA,,,, +Nb39,,,EA085,NA,,,, +Nb4,,,EA085,NA,,,, +Nb5,,,EA085,NA,,,, +Nb6,,,EA085,NA,,,, +Nb7,,,EA085,NA,,,, +Nb8,,,EA085,NA,,,, +Nb9,,,EA085,NA,,,, +Nc1,,1850,EA085,1,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA085,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA085,1,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA085,2,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA085,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA085,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA085,2,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,,EA085,NA,,,, +Nc17,,,EA085,NA,,,, +Nc18,,,EA085,NA,,,, +Nc19,,,EA085,NA,,,, +Nc2,,1850,EA085,2,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,,EA085,NA,,,, +Nc21,,,EA085,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA085,2,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA085,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,,,EA085,NA,,,, +Nc25,,1860,EA085,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA085,1,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA085,NA,,,, +Nc28,,,EA085,NA,,,, +Nc29,,,EA085,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA085,1,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,,EA085,NA,,,, +Nc31,,,EA085,NA,,,, +Nc32,,,EA085,NA,,,, +Nc33,,1860,EA085,2,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,,EA085,NA,,,, +Nc4,,1860,EA085,1,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,,,EA085,NA,,,, +Nc6,,,EA085,NA,,,, +Nc7,,1850,EA085,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA085,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA085,2,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA085,2,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA085,1,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA085,1,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA085,2,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA085,2,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA085,1,"Also ground-level dwellings, eliptical or circular in shape",ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA085,2,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA085,1,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA085,1,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA085,2,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,,EA085,NA,,,, +Nd2,,1860,EA085,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA085,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,,EA085,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA085,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,,EA085,NA,,,, +Nd24,,,EA085,NA,,,, +Nd25,,,EA085,NA,,,, +Nd26,,1870,EA085,2,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,,EA085,NA,,,, +Nd28,,1870,EA085,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA085,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,,,EA085,NA,,,, +Nd30,,1870,EA085,1,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,,EA085,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA085,2,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA085,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA085,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,,EA085,NA,,,, +Nd36,,1870,EA085,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,,EA085,NA,,,, +Nd38,,1870,EA085,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,,,EA085,NA,,,, +Nd4,,1870,EA085,2,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,,EA085,NA,,,, +Nd41,,1870,EA085,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,,,EA085,NA,,,, +Nd43,,1860,EA085,2,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA085,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA085,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA085,2,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,,EA085,NA,,,, +Nd48,,,EA085,NA,,,, +Nd49,,,EA085,NA,,,, +Nd5,,1870,EA085,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,,EA085,NA,,,, +Nd51,,,EA085,NA,,,, +Nd52,,,EA085,NA,,,, +Nd53,,,EA085,NA,,,, +Nd54,,,EA085,NA,,,, +Nd55,,,EA085,NA,,,, +Nd56,,1860,EA085,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,,EA085,NA,,,, +Nd58,,1860,EA085,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA085,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA085,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,,EA085,NA,,,, +Nd61,,1860,EA085,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA085,2,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA085,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA085,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,,EA085,NA,,,, +Nd66,,,EA085,NA,,,, +Nd67,,1870,EA085,1,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA085,2,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA085,1,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA085,1,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,,,EA085,NA,,,, +Ne10,,1860,EA085,2,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,,EA085,NA,,,, +Ne12,,,EA085,NA,,,, +Ne13,,,EA085,NA,,,, +Ne14,,1850,EA085,2,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA085,2,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,,EA085,NA,,,, +Ne17,,,EA085,NA,,,, +Ne18,,,EA085,NA,,,, +Ne19,,,EA085,NA,,,, +Ne2,,,EA085,NA,,,, +Ne20,,,EA085,NA,,,, +Ne21,,,EA085,NA,,,, +Ne3,,,EA085,NA,,,, +Ne4,,,EA085,NA,,,, +Ne5,,,EA085,NA,,,, +Ne6,,1830,EA085,2,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,,EA085,NA,,,, +Ne8,,,EA085,NA,,,, +Ne9,,,EA085,NA,,,, +Nf10,,1870,EA085,2,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA085,2,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA085,2,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,with special reference to the Kiskopotha band,1820,EA085,2,,trowbridge1939,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,,EA085,NA,,,, +Nf15,,,EA085,NA,,,, +Nf2,,1850,EA085,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA085,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA085,NA,,,, +Nf5,,,EA085,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA085,2,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA085,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,,EA085,NA,,,, +Nf9,,,EA085,NA,,,, +Ng1,,,EA085,NA,,,, +Ng10,,,EA085,NA,,,, +Ng11,,,EA085,NA,,,, +Ng12,,1760,EA085,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA085,NA,,,, +Ng14,,,EA085,NA,,,, +Ng15,,,EA085,NA,,,, +Ng2,,,EA085,NA,,,, +Ng3,Upper division in Alabama,1750,EA085,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA085,2,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA085,2,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA085,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,,,EA085,NA,,,, +Ng8,,1560,EA085,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA085,NA,,,, +Nh1,,,EA085,NA,,,, +Nh10,,,EA085,NA,,,, +Nh11,,,EA085,NA,,,, +Nh12,,,EA085,NA,,,, +Nh13,,,EA085,NA,,,, +Nh14,,,EA085,NA,,,, +Nh15,,,EA085,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA085,2,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,,EA085,NA,,,, +Nh18,,,EA085,NA,,,, +Nh19,,1850,EA085,2,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,,EA085,NA,,,, +Nh20,,,EA085,NA,,,, +Nh21,,,EA085,NA,,,, +Nh22,,1860,EA085,2,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,,EA085,NA,,,, +Nh24,,,EA085,NA,,,, +Nh25,,,EA085,NA,,,, +Nh26,,,EA085,NA,,,, +Nh27,,,EA085,NA,,,, +Nh3,,,EA085,NA,,,, +Nh4,,,EA085,NA,,,, +Nh5,,1850,EA085,2,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,,EA085,NA,,,, +Nh7,,,EA085,NA,,,, +Nh8,,,EA085,NA,,,, +Nh9,,,EA085,NA,,,, +Ni1,,,EA085,NA,,,, +Ni2,,1930,EA085,2,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,,,EA085,NA,,,, +Ni4,,,EA085,NA,,,, +Ni5,,,EA085,NA,,,, +Ni6,,,EA085,NA,,,, +Ni7,,,EA085,NA,,,, +Ni8,,,EA085,NA,,,, +Ni9,,,EA085,NA,,,, +Nj1,,,EA085,NA,,,, +Nj10,,,EA085,NA,,,, +Nj11,,,EA085,NA,,,, +Nj12,,,EA085,NA,,,, +Nj13,,,EA085,NA,,,, +Nj14,,,EA085,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA085,2,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,,,EA085,NA,,,, +Nj4,,,EA085,NA,,,, +Nj5,,,EA085,NA,,,, +Nj6,,,EA085,NA,,,, +Nj7,,,EA085,NA,,,, +Nj8,,1500,EA085,2,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,,EA085,NA,,,, +Sa1,,,EA085,NA,,,, +Sa10,,,EA085,NA,,,, +Sa11,,,EA085,NA,,,, +Sa12,,,EA085,NA,,,, +Sa13,,,EA085,NA,,,, +Sa14,,,EA085,NA,,,, +Sa15,,,EA085,NA,,,, +Sa16,,,EA085,NA,,,, +Sa17,,,EA085,NA,,,, +Sa2,,,EA085,NA,,,, +Sa3,,,EA085,NA,,,, +Sa4,,,EA085,NA,,,, +Sa5,,1950,EA085,4,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,,EA085,NA,,,, +Sa7,,,EA085,NA,,,, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA085,2,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA085,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,,,EA085,NA,,,, +Sb2,,1940,EA085,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA085,NA,,,, +Sb4,,,EA085,NA,,,, +Sb5,,,EA085,NA,,,, +Sb6,,,EA085,NA,,,, +Sb7,,,EA085,NA,,,, +Sb8,,1520,EA085,2,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,,EA085,NA,,,, +Sc1,,,EA085,NA,,,, +Sc10,,,EA085,NA,,,, +Sc11,,,EA085,NA,,,, +Sc12,,,EA085,NA,,,, +Sc13,,,EA085,NA,,,, +Sc14,,,EA085,NA,,,, +Sc15,,,EA085,NA,,,, +Sc16,,,EA085,NA,,,, +Sc17,,,EA085,NA,,,, +Sc18,,,EA085,NA,,,, +Sc2,,,EA085,NA,,,, +Sc3,,,EA085,NA,,,, +Sc4,,,EA085,NA,,,, +Sc5,,1900,EA085,2,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,,,EA085,NA,,,, +Sc7,,,EA085,NA,,,, +Sc8,,1950,EA085,2,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,,EA085,NA,,,, +Sd1,Cabrura village,1950,EA085,2,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA085,NA,,,, +Sd3,,,EA085,NA,,,, +Sd4,,,EA085,NA,,,, +Sd5,,,EA085,NA,,,, +Sd6,,,EA085,NA,,,, +Sd7,,1950,EA085,2,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,,EA085,NA,,,, +Sd9,,,EA085,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA085,2,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA085,NA,,,, +Se11,,,EA085,NA,,,, +Se12,,,EA085,NA,,,, +Se2,,1940,EA085,4,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,,EA085,NA,,,, +Se4,,,EA085,NA,,,, +Se5,Village on Caduiari River,1940,EA085,4,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,,EA085,NA,,,, +Se7,,,EA085,NA,,,, +Se8,Upper Inuya River,1950,EA085,2,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,,EA085,NA,,,, +Sf1,City and environs of Cuzco,1530,EA085,2,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,,,EA085,NA,,,, +Sf3,,,EA085,NA,,,, +Sf4,,1950,EA085,2,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA085,2,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA085,4,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA085,2,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA085,NA,,,, +Sf9,,,EA085,NA,,,, +Sg1,Eastern and central,1870,EA085,1,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA085,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA085,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,,,EA085,NA,,,, +Sg5,,,EA085,NA,,,, +Sh1,,,EA085,NA,,,, +Sh2,,,EA085,NA,,,, +Sh3,,,EA085,NA,,,, +Sh4,,,EA085,NA,,,, +Sh5,,,EA085,NA,,,, +Sh6,,,EA085,NA,,,, +Sh7,,,EA085,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA085,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA085,NA,,,, +Si1,Kejara,1920,EA085,2,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,,EA085,NA,,,, +Si2,,,EA085,NA,,,, +Si3,,,EA085,NA,,,, +Si4,Cocozu Group,1940,EA085,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,,EA085,NA,,,, +Si6,,,EA085,NA,,,, +Si7,,,EA085,NA,,,, +Si8,,,EA085,NA,,,, +Si9,,,EA085,NA,,,, +Sj1,,,EA085,NA,,,, +Sj10,,,EA085,NA,,,, +Sj11,,,EA085,NA,,,, +Sj2,,,EA085,NA,,,, +Sj3,,,EA085,NA,,,, +Sj4,,,EA085,NA,,,, +Sj5,Naknenuk subtribe,1880,EA085,2,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,,,EA085,NA,,,, +Sj7,,,EA085,NA,,,, +Sj8,,,EA085,NA,,,, +Sj9,,1950,EA085,2,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA085,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA085,3,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA085,2,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA085,2,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,,,EA085,NA,,,, +ch17,with special reference to those of the Benderskij Uezd,1894,EA085,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,,,EA085,NA,,,, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA085,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA085,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA085,2,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,,,EA085,NA,,,, +ch23,,,EA085,NA,,,, +ch24,,,EA085,NA,,,, +ch25,with special reference to the Beletskij Uezd,1900,EA085,3,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA085,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA085,2,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,,,EA085,NA,,,, +ec12,Avam (Western) group,1930,EA085,2,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA085,3,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA085,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA085,2,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA085,2,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA085,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA085,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA085,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA085,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA085,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA086,11,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,,,EA086,NA,,,, +Aa3,,,EA086,NA,,,, +Aa4,,,EA086,NA,,,, +Aa5,,,EA086,NA,,,, +Aa6,,1920,EA086,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,,EA086,NA,,,, +Aa8,,1850,EA086,11,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA086,NA,,,, +Ab1,,,EA086,NA,,,, +Ab10,,1936,EA086,2,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,,EA086,NA,,,, +Ab12,,,EA086,NA,,,, +Ab13,,,EA086,NA,,,, +Ab14,,,EA086,NA,,,, +Ab15,,,EA086,NA,,,, +Ab16,,,EA086,NA,,,, +Ab17,,,EA086,NA,,,, +Ab18,,,EA086,NA,,,, +Ab19,,,EA086,NA,,,, +Ab2,,1880,EA086,2,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,,EA086,NA,,,, +Ab21a,,,EA086,NA,,,, +Ab21b,,,EA086,NA,,,, +Ab22,,,EA086,NA,,,, +Ab3,,,EA086,NA,,,, +Ab4,,,EA086,NA,,,, +Ab5,,,EA086,NA,,,, +Ab6,,,EA086,NA,,,, +Ab7,,,EA086,NA,,,, +Ab8,,,EA086,NA,,,, +Ab9,,1870,EA086,2,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,,EA086,NA,,,, +Ac10,,,EA086,NA,,,, +Ac11,,1930,EA086,2,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,,EA086,NA,,,, +Ac13,,,EA086,NA,,,, +Ac14,,1900,EA086,8,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,,EA086,NA,,,, +Ac16,,,EA086,NA,,,, +Ac17,,,EA086,NA,,,, +Ac18,,,EA086,NA,,,, +Ac19,,,EA086,NA,,,, +Ac2,,,EA086,NA,,,, +Ac20,,,EA086,NA,,,, +Ac21,,,EA086,NA,,,, +Ac22,,,EA086,NA,,,, +Ac23,,,EA086,NA,,,, +Ac24,,,EA086,NA,,,, +Ac25,,,EA086,NA,,,, +Ac26,,,EA086,NA,,,, +Ac27,,,EA086,NA,,,, +Ac28,,,EA086,NA,,,, +Ac29,,,EA086,NA,,,, +Ac3,,,EA086,NA,,,, +Ac30,,,EA086,NA,,,, +Ac31,,,EA086,NA,,,, +Ac32,,1920,EA086,2,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,,EA086,NA,,,, +Ac34,,,EA086,NA,,,, +Ac35,,,EA086,NA,,,, +Ac36,,,EA086,NA,,,, +Ac37,,,EA086,NA,,,, +Ac38,,,EA086,NA,,,, +Ac39,,1920,EA086,2,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,,,EA086,NA,,,, +Ac40,,,EA086,NA,,,, +Ac41,,,EA086,NA,,,, +Ac42,,,EA086,NA,,,, +Ac43,,,EA086,NA,,,, +Ac5,,,EA086,NA,,,, +Ac6,,,EA086,NA,,,, +Ac7,,,EA086,NA,,,, +Ac8,,,EA086,NA,,,, +Ac9,,,EA086,NA,,,, +Ad1,,,EA086,NA,,,, +Ad10,,1910,EA086,2,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,,EA086,NA,,,, +Ad12,,,EA086,NA,,,, +Ad13,,,EA086,NA,,,, +Ad14,,,EA086,NA,,,, +Ad15,,1900,EA086,9,,chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p69, +Ad16,,,EA086,NA,,,, +Ad17,,,EA086,NA,,,, +Ad18,,,EA086,NA,,,, +Ad19,,1910,EA086,2,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,,EA086,NA,,,, +Ad20,,1920,EA086,2,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,,EA086,NA,,,, +Ad22,,,EA086,NA,,,, +Ad23,,,EA086,NA,,,, +Ad24,,,EA086,NA,,,, +Ad25,,,EA086,NA,,,, +Ad26,,,EA086,NA,,,, +Ad27,,,EA086,NA,,,, +Ad28,,,EA086,NA,,,, +Ad29,,,EA086,NA,,,, +Ad3,,,EA086,NA,,,, +Ad30,,,EA086,NA,,,, +Ad31,,,EA086,NA,,,, +Ad32,,,EA086,NA,,,, +Ad33,,,EA086,NA,,,, +Ad34,,,EA086,NA,,,, +Ad35,,,EA086,NA,,,, +Ad36,,,EA086,NA,,,, +Ad37,,,EA086,NA,,,, +Ad38,,,EA086,NA,,,, +Ad39,,,EA086,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA086,2,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA086,NA,,,, +Ad41,,,EA086,NA,,,, +Ad42,,,EA086,NA,,,, +Ad43,,,EA086,NA,,,, +Ad44,,,EA086,NA,,,, +Ad45,,,EA086,NA,,,, +Ad46,,1950,EA086,11,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,,EA086,NA,,,, +Ad48,,,EA086,NA,,,, +Ad49,,,EA086,NA,,,, +Ad5,,,EA086,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA086,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,,EA086,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA086,9,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,,,EA086,NA,,,, +Ad8,,,EA086,NA,,,, +Ad9,,,EA086,NA,,,, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA086,2,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,,EA086,NA,,,, +Ae11,,,EA086,NA,,,, +Ae12,,,EA086,NA,,,, +Ae13,,,EA086,NA,,,, +Ae14,,,EA086,NA,,,, +Ae15,,,EA086,NA,,,, +Ae16,,,EA086,NA,,,, +Ae17,,,EA086,NA,,,, +Ae18,,1900,EA086,8,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA086,NA,,,, +Ae2,,,EA086,NA,,,, +Ae20,,,EA086,NA,,,, +Ae21,,,EA086,NA,,,, +Ae22,,,EA086,NA,,,, +Ae23,,,EA086,NA,,,, +Ae24,,,EA086,NA,,,, +Ae25,,,EA086,NA,,,, +Ae26,,,EA086,NA,,,, +Ae27,,,EA086,NA,,,, +Ae28,,1900,EA086,7,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,,EA086,NA,,,, +Ae3,,,EA086,NA,,,, +Ae30,,,EA086,NA,,,, +Ae31,,,EA086,NA,,,, +Ae32,,,EA086,NA,,,, +Ae33,,1920,EA086,2,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA086,NA,,,, +Ae35,,1900,EA086,8,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,,EA086,NA,,,, +Ae37,,,EA086,NA,,,, +Ae38,,,EA086,NA,,,, +Ae39,,,EA086,NA,,,, +Ae4,,,EA086,NA,,,, +Ae40,,,EA086,NA,,,, +Ae41,,,EA086,NA,,,, +Ae42,,,EA086,NA,,,, +Ae43,,,EA086,NA,,,, +Ae44,,,EA086,NA,,,, +Ae45,,,EA086,NA,,,, +Ae46,,,EA086,NA,,,, +Ae47,,,EA086,NA,,,, +Ae48,,1930,EA086,4,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,,EA086,NA,,,, +Ae5,,,EA086,NA,,,, +Ae50,,1920,EA086,2,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,,,EA086,NA,,,, +Ae52,,,EA086,NA,,,, +Ae53,,,EA086,NA,,,, +Ae54,,,EA086,NA,,,, +Ae55,,,EA086,NA,,,, +Ae56,,,EA086,NA,,,, +Ae57,,,EA086,NA,,,, +Ae58,,,EA086,NA,,,, +Ae59,,,EA086,NA,,,, +Ae6,,,EA086,NA,,,, +Ae7,,,EA086,NA,,,, +Ae8,,,EA086,NA,,,, +Ae9,,,EA086,NA,,,, +Af1,,,EA086,NA,,,, +Af10,,,EA086,NA,,,, +Af11,,,EA086,NA,,,, +Af12,,,EA086,NA,,,, +Af13,,,EA086,NA,,,, +Af14,,1930,EA086,7,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA086,2,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,,EA086,NA,,,, +Af17,,,EA086,NA,,,, +Af18,,,EA086,NA,,,, +Af19,,,EA086,NA,,,, +Af2,,,EA086,NA,,,, +Af20,,,EA086,NA,,,, +Af21,,,EA086,NA,,,, +Af22,,,EA086,NA,,,, +Af23,,,EA086,NA,,,, +Af24,,,EA086,NA,,,, +Af25,,,EA086,NA,,,, +Af26,,,EA086,NA,,,, +Af27,,,EA086,NA,,,, +Af28,,,EA086,NA,,,, +Af29,,,EA086,NA,,,, +Af3,,,EA086,NA,,,, +Af30,,,EA086,NA,,,, +Af31,,,EA086,NA,,,, +Af32,,,EA086,NA,,,, +Af33,,,EA086,NA,,,, +Af34,,,EA086,NA,,,, +Af35,,,EA086,NA,,,, +Af36,,,EA086,NA,,,, +Af37,with special reference to the Akpafu,1900,EA086,9,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA086,NA,,,, +Af39,,,EA086,NA,,,, +Af4,,,EA086,NA,,,, +Af40,,,EA086,NA,,,, +Af41,,,EA086,NA,,,, +Af42,,,EA086,NA,,,, +Af43,,,EA086,NA,,,, +Af44,,,EA086,NA,,,, +Af45,,,EA086,NA,,,, +Af46,,,EA086,NA,,,, +Af47,,,EA086,NA,,,, +Af48,,1850,EA086,7,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,,EA086,NA,,,, +Af5,,1930,EA086,2,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,,EA086,NA,,,, +Af51,,,EA086,NA,,,, +Af52,,1920,EA086,2,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA086,NA,,,, +Af54,,,EA086,NA,,,, +Af55,,,EA086,NA,,,, +Af56,,,EA086,NA,,,, +Af57,,,EA086,NA,,,, +Af58,,,EA086,NA,,,, +Af6,,,EA086,NA,,,, +Af7,,,EA086,NA,,,, +Af8,,,EA086,NA,,,, +Af9,,,EA086,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA086,9,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,,EA086,NA,,,, +Ag11,,,EA086,NA,,,, +Ag12,,1910,EA086,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA086,2,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,,EA086,NA,,,, +Ag15,,1930,EA086,2,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,,EA086,NA,,,, +Ag17,,,EA086,NA,,,, +Ag18,,,EA086,NA,,,, +Ag19,,,EA086,NA,,,, +Ag2,,,EA086,NA,,,, +Ag20,,,EA086,NA,,,, +Ag21,,,EA086,NA,,,, +Ag22,,,EA086,NA,,,, +Ag23,,,EA086,NA,,,, +Ag24,,,EA086,NA,,,, +Ag25,,1900,EA086,9,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA086,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,,EA086,NA,,,, +Ag28,,,EA086,NA,,,, +Ag29,,,EA086,NA,,,, +Ag3,,,EA086,NA,,,, +Ag30,,,EA086,NA,,,, +Ag31,,,EA086,NA,,,, +Ag32,,1900,EA086,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,,EA086,NA,,,, +Ag34,,1930,EA086,9,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA086,9,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA086,NA,,,, +Ag37,,,EA086,NA,,,, +Ag38,,,EA086,NA,,,, +Ag39,,1910,EA086,9,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA086,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA086,9,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,,EA086,NA,,,, +Ag42,,,EA086,NA,,,, +Ag43,,,EA086,NA,,,, +Ag44,,,EA086,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA086,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA086,NA,,,, +Ag47,,,EA086,NA,,,, +Ag48,,,EA086,NA,,,, +Ag49,,,EA086,NA,,,, +Ag5,,,EA086,NA,,,, +Ag50,,,EA086,NA,,,, +Ag51,,,EA086,NA,,,, +Ag52,,,EA086,NA,,,, +Ag53,,,EA086,NA,,,, +Ag54,,1910,EA086,2,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA086,11,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA086,11,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,,,EA086,NA,,,, +Ag9,,,EA086,NA,,,, +Ah1,,,EA086,NA,,,, +Ah10,,,EA086,NA,,,, +Ah11,,,EA086,NA,,,, +Ah12,,,EA086,NA,,,, +Ah13,,,EA086,NA,,,, +Ah14,,,EA086,NA,,,, +Ah15,,1920,EA086,2,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,,EA086,NA,,,, +Ah17,,,EA086,NA,,,, +Ah18,,,EA086,NA,,,, +Ah19,,,EA086,NA,,,, +Ah2,,,EA086,NA,,,, +Ah20,,1920,EA086,9,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA086,NA,,,, +Ah22,,,EA086,NA,,,, +Ah23,,,EA086,NA,,,, +Ah24,,,EA086,NA,,,, +Ah25,,1920,EA086,9,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,,EA086,NA,,,, +Ah27,,,EA086,NA,,,, +Ah28,,,EA086,NA,,,, +Ah29,,,EA086,NA,,,, +Ah3,,,EA086,NA,,,, +Ah30,,,EA086,NA,,,, +Ah31,,,EA086,NA,,,, +Ah32,,,EA086,NA,,,, +Ah33,,1920,EA086,9,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,,,EA086,NA,,,, +Ah35,,,EA086,NA,,,, +Ah36,,,EA086,NA,,,, +Ah37,,1920,EA086,11,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,,EA086,NA,,,, +Ah39,,,EA086,NA,,,, +Ah4,,,EA086,NA,,,, +Ah5,,,EA086,NA,,,, +Ah6,,,EA086,NA,,,, +Ah7,,,EA086,NA,,,, +Ah8,,,EA086,NA,,,, +Ah9,,,EA086,NA,,,, +Ai1,,,EA086,NA,,,, +Ai10,,,EA086,NA,,,, +Ai11,,,EA086,NA,,,, +Ai12,,,EA086,NA,,,, +Ai13,,,EA086,NA,,,, +Ai14,,,EA086,NA,,,, +Ai15,,,EA086,NA,,,, +Ai16,,,EA086,NA,,,, +Ai17,,,EA086,NA,,,, +Ai18,,1880,EA086,9,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA086,9,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA086,NA,,,, +Ai20,,,EA086,NA,,,, +Ai21,,1880,EA086,9,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,,EA086,NA,,,, +Ai23,,1920,EA086,2,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,,EA086,NA,,,, +Ai25,,1950,EA086,2,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA086,4,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA086,NA,,,, +Ai28,,1910,EA086,3,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,,EA086,NA,,,, +Ai3,,,EA086,NA,,,, +Ai30,,,EA086,NA,,,, +Ai31,,,EA086,NA,,,, +Ai32,,,EA086,NA,,,, +Ai33,,,EA086,NA,,,, +Ai34,,,EA086,NA,,,, +Ai35,,,EA086,NA,,,, +Ai36,,,EA086,NA,,,, +Ai37,,,EA086,NA,,,, +Ai38,,,EA086,NA,,,, +Ai39,,,EA086,NA,,,, +Ai4,,,EA086,NA,,,, +Ai40,,,EA086,NA,,,, +Ai41,,,EA086,NA,,,, +Ai42,,,EA086,NA,,,, +Ai43,,,EA086,NA,,,, +Ai44,,,EA086,NA,,,, +Ai45,,,EA086,NA,,,, +Ai46,,,EA086,NA,,,, +Ai47,Northern division,1939,EA086,7,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA086,NA,,,, +Ai6,,,EA086,NA,,,, +Ai7,,1910,EA086,11,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,,EA086,NA,,,, +Ai9,,,EA086,NA,,,, +Aj1,,,EA086,NA,,,, +Aj10,,,EA086,NA,,,, +Aj11,,,EA086,NA,,,, +Aj12,,,EA086,NA,,,, +Aj13,,,EA086,NA,,,, +Aj14,,,EA086,NA,,,, +Aj15,,,EA086,NA,,,, +Aj16,,,EA086,NA,,,, +Aj17,,1890,EA086,11,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA086,NA,,,, +Aj19,,,EA086,NA,,,, +Aj2,,,EA086,NA,,,, +Aj20,,,EA086,NA,,,, +Aj21,,,EA086,NA,,,, +Aj22,,,EA086,NA,,,, +Aj23,,,EA086,NA,,,, +Aj24,,1930,EA086,11,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,,EA086,NA,,,, +Aj26,,,EA086,NA,,,, +Aj27,,1920,EA086,2,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,,EA086,NA,,,, +Aj29,,,EA086,NA,,,, +Aj3,,1930,EA086,11,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA086,NA,,,, +Aj31,,,EA086,NA,,,, +Aj4,,,EA086,NA,,,, +Aj5,,1920,EA086,11,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,,EA086,NA,,,, +Aj7,,,EA086,NA,,,, +Aj8,,,EA086,NA,,,, +Aj9,,,EA086,NA,,,, +Ca1,,,EA086,NA,,,, +Ca10,,,EA086,NA,,,, +Ca11,,1890,EA086,10,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,,EA086,NA,,,, +Ca13,,,EA086,NA,,,, +Ca14,,,EA086,NA,,,, +Ca15,,,EA086,NA,,,, +Ca16,,,EA086,NA,,,, +Ca17,,,EA086,NA,,,, +Ca18,,,EA086,NA,,,, +Ca19,,,EA086,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA086,9,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA086,11,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,,EA086,NA,,,, +Ca22,,,EA086,NA,,,, +Ca23,,1950,EA086,7,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA086,NA,,,, +Ca25,,,EA086,NA,,,, +Ca26,,,EA086,NA,,,, +Ca27,,1930,EA086,11,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,,EA086,NA,,,, +Ca29,,,EA086,NA,,,, +Ca3,,,EA086,NA,,,, +Ca30,Kafa Kingdom,1890,EA086,2,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,,EA086,NA,,,, +Ca32,,,EA086,NA,,,, +Ca33,,1860,EA086,8,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA086,11,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,,EA086,NA,,,, +Ca36,,,EA086,NA,,,, +Ca37,,,EA086,NA,,,, +Ca38,,,EA086,NA,,,, +Ca39,,,EA086,NA,,,, +Ca4,,1950,EA086,3,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,,EA086,NA,,,, +Ca41,,,EA086,NA,,,, +Ca42,,,EA086,NA,,,, +Ca43,,,EA086,NA,,,, +Ca5,,,EA086,NA,,,, +Ca6,,1880,EA086,9,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,,,EA086,NA,,,, +Ca8,,,EA086,NA,,,, +Ca9,,,EA086,NA,,,, +Cb1,,,EA086,NA,,,, +Cb10,,,EA086,NA,,,, +Cb11,,,EA086,NA,,,, +Cb12,,,EA086,NA,,,, +Cb13,,,EA086,NA,,,, +Cb14,,,EA086,NA,,,, +Cb15,with special reference to the Humr,1940,EA086,11,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA086,7,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA086,1,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,,EA086,NA,,,, +Cb19,,1870,EA086,7,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,,,EA086,NA,,,, +Cb20,,,EA086,NA,,,, +Cb21,,,EA086,NA,,,, +Cb22,,1920,EA086,9,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,,EA086,NA,,,, +Cb24,,,EA086,NA,,,, +Cb25,,,EA086,NA,,,, +Cb26,,,EA086,NA,,,, +Cb27,,,EA086,NA,,,, +Cb28,,,EA086,NA,,,, +Cb29,,,EA086,NA,,,, +Cb3,Bamba division,1940,EA086,9,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,,EA086,NA,,,, +Cb5,,,EA086,NA,,,, +Cb6,,,EA086,NA,,,, +Cb7,,1920,EA086,9,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,,,EA086,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA086,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,,EA086,NA,,,, +Cc10,,1900,EA086,11,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA086,11,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,,EA086,NA,,,, +Cc13,,1920,EA086,7,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA086,7,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA086,NA,,,, +Cc16,,1930,EA086,1,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,,EA086,NA,,,, +Cc18,,,EA086,NA,,,, +Cc19,,,EA086,NA,,,, +Cc2,Nomads of Tibesti,1950,EA086,1,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,,,EA086,NA,,,, +Cc3,,,EA086,NA,,,, +Cc4,,,EA086,NA,,,, +Cc5,,1910,EA086,11,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,,EA086,NA,,,, +Cc7,Timbuctoo,1950,EA086,9,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA086,11,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA086,9,"Also similarly shaped houses with conical roofs and walls of grass/thatch (code ""8"") OR with rounded roofs and walls of mats/latticework (code ""7"")",benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA086,1,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,,EA086,NA,,,, +Cd11,,,EA086,NA,,,, +Cd12,,1870,EA086,9,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,,EA086,NA,,,, +Cd14,,,EA086,NA,,,, +Cd15,,1910,EA086,1,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,,,EA086,NA,,,, +Cd17,,,EA086,NA,,,, +Cd18,,,EA086,NA,,,, +Cd19,,1920,EA086,1,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,,,EA086,NA,,,, +Cd20,,,EA086,NA,,,, +Cd21,,1930,EA086,2,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,,,EA086,NA,,,, +Cd4,,,EA086,NA,,,, +Cd5,,,EA086,NA,,,, +Cd6,,,EA086,NA,,,, +Cd7,,,EA086,NA,,,, +Cd8,,,EA086,NA,,,, +Cd9,,,EA086,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA086,1,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA086,NA,,,, +Ce3,,,EA086,NA,,,, +Ce4,,,EA086,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA086,1,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,,,EA086,NA,,,, +Ce7,,,EA086,NA,,,, +Ce8,,,EA086,NA,,,, +Cf1,,,EA086,NA,,,, +Cf2,,,EA086,NA,,,, +Cf3,,,EA086,NA,,,, +Cf4,,,EA086,NA,,,, +Cf5,,,EA086,NA,,,, +Cg1,,,EA086,NA,,,, +Cg2,,,EA086,NA,,,, +Cg3,,,EA086,NA,,,, +Cg4,,,EA086,NA,,,, +Cg5,,,EA086,NA,,,, +Ch1,,,EA086,NA,,,, +Ch10,,,EA086,NA,,,, +Ch11,Viriatino Village,1955,EA086,3,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA086,NA,,,, +Ch3,,,EA086,NA,,,, +Ch4,,,EA086,NA,,,, +Ch5,,,EA086,NA,,,, +Ch6,,,EA086,NA,,,, +Ch7,,,EA086,NA,,,, +Ch8,,,EA086,NA,,,, +Ch9,,,EA086,NA,,,, +Ci1,,,EA086,NA,,,, +Ci10,,,EA086,NA,,,, +Ci11,,1940,EA086,6,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,,,EA086,NA,,,, +Ci2,,,EA086,NA,,,, +Ci3,,,EA086,NA,,,, +Ci4,,,EA086,NA,,,, +Ci5,,,EA086,NA,,,, +Ci6,,,EA086,NA,,,, +Ci7,,,EA086,NA,,,, +Ci8,,,EA086,NA,,,, +Ci9,,,EA086,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA086,9,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,,,EA086,NA,,,, +Cj2,,,EA086,NA,,,, +Cj3,,,EA086,NA,,,, +Cj4,,,EA086,NA,,,, +Cj5,,,EA086,NA,,,, +Cj6,,,EA086,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA086,1,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,,,EA086,NA,,,, +Cj9,,,EA086,NA,,,, +Ea1,,,EA086,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA086,1,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA086,NA,,,, +Ea12,,,EA086,NA,,,, +Ea13,Mohla Village,1950,EA086,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA086,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA086,1,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,,EA086,NA,,,, +Ea5,,,EA086,NA,,,, +Ea6,Nomadic branch,1958,EA086,6,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA086,6,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA086,NA,,,, +Ea9,,,EA086,NA,,,, +Eb1,Great Horde,1910,EA086,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,,EA086,NA,,,, +Eb3,,,EA086,NA,,,, +Eb4,,,EA086,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA086,9,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA086,3,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,,EA086,NA,,,, +Eb8,,,EA086,NA,,,, +Ec1,Sakhalin Island,1920,EA086,3,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA086,3,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,,EA086,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA086,11,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA086,11,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA086,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA086,11,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA086,3,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,,,EA086,NA,,,, +Ec8,,1900,EA086,11,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA086,NA,,,, +Ed1,Kanghwa Island,1950,EA086,3,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA086,NA,,,, +Ed13,,,EA086,NA,,,, +Ed14,,,EA086,NA,,,, +Ed15a,,,EA086,NA,,,, +Ed15b,,,EA086,NA,,,, +Ed16,,,EA086,NA,,,, +Ed2,,,EA086,NA,,,, +Ed3,,,EA086,NA,,,, +Ed4,,,EA086,NA,,,, +Ed5,Okayama,1950,EA086,3,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA086,NA,,,, +Ed7,,1950,EA086,3,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA086,1,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,,EA086,NA,,,, +Ee1,,,EA086,NA,,,, +Ee2,,,EA086,NA,,,, +Ee3,Lingthem and vicinity,1930,EA086,7,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,,,EA086,NA,,,, +Ee5,,,EA086,NA,,,, +Ee6,,,EA086,NA,,,, +Ee7,,,EA086,NA,,,, +Ee8,,,EA086,NA,,,, +Ef1,,,EA086,NA,,,, +Ef10,,,EA086,NA,,,, +Ef11,Village and environs of Senapur,1945,EA086,1,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA086,9,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA086,NA,,,, +Ef4,,1920,EA086,9,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA086,11,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,,EA086,NA,,,, +Ef7,,,EA086,NA,,,, +Ef8,,,EA086,NA,,,, +Ef9,,,EA086,NA,,,, +Eg1,with special reference to the forest group,1940,EA086,11,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA086,1,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA086,NA,,,, +Eg12,,,EA086,NA,,,, +Eg13,,,EA086,NA,,,, +Eg14,,,EA086,NA,,,, +Eg2,,,EA086,NA,,,, +Eg3,,,EA086,NA,,,, +Eg4,,,EA086,NA,,,, +Eg5,,,EA086,NA,,,, +Eg6,with special reference to Northern Kerala,1799,EA086,9,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,,,EA086,NA,,,, +Eg8,,,EA086,NA,,,, +Eg9,,,EA086,NA,,,, +Eh1,,,EA086,NA,,,, +Eh10,,,EA086,NA,,,, +Eh2,,1900,EA086,9,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,,,EA086,NA,,,, +Eh4,,,EA086,NA,,,, +Eh5,,,EA086,NA,,,, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA086,9,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA086,8,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,,EA086,NA,,,, +Eh9,,,EA086,NA,,,, +Ei1,,,EA086,NA,,,, +Ei10,,,EA086,NA,,,, +Ei11,,,EA086,NA,,,, +Ei12,,,EA086,NA,,,, +Ei13,,,EA086,NA,,,, +Ei14,,,EA086,NA,,,, +Ei15,,,EA086,NA,,,, +Ei16,,,EA086,NA,,,, +Ei17,,,EA086,NA,,,, +Ei18,,,EA086,NA,,,, +Ei19,,,EA086,NA,,,, +Ei2,,,EA086,NA,,,, +Ei20,,,EA086,NA,,,, +Ei3,,,EA086,NA,,,, +Ei4,,,EA086,NA,,,, +Ei5,,,EA086,NA,,,, +Ei6,,,EA086,NA,,,, +Ei7,,,EA086,NA,,,, +Ei8,,,EA086,NA,,,, +Ei9,,,EA086,NA,,,, +Ej1,,,EA086,NA,,,, +Ej10,,,EA086,NA,,,, +Ej11,,,EA086,NA,,,, +Ej12,,,EA086,NA,,,, +Ej13,,,EA086,NA,,,, +Ej14,,,EA086,NA,,,, +Ej15,,,EA086,NA,,,, +Ej16,,,EA086,NA,,,, +Ej2,,,EA086,NA,,,, +Ej3,,,EA086,NA,,,, +Ej4,Red River Delta in Tonkin,1950,EA086,1,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,,EA086,NA,,,, +Ej6,,,EA086,NA,,,, +Ej7,,,EA086,NA,,,, +Ej8,,,EA086,NA,,,, +Ej9,,1940,EA086,3,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,,,EA086,NA,,,, +Ia10,,,EA086,NA,,,, +Ia11,,,EA086,NA,,,, +Ia12,,,EA086,NA,,,, +Ia13,,,EA086,NA,,,, +Ia14,,1930,EA086,8,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA086,NA,,,, +Ia16,,,EA086,NA,,,, +Ia17,,,EA086,NA,,,, +Ia18,,,EA086,NA,,,, +Ia2,,,EA086,NA,,,, +Ia3,,,EA086,NA,,,, +Ia4,,,EA086,NA,,,, +Ia5,,,EA086,NA,,,, +Ia6,,,EA086,NA,,,, +Ia7,,,EA086,NA,,,, +Ia8,,,EA086,NA,,,, +Ia9,,,EA086,NA,,,, +Ib1,,,EA086,NA,,,, +Ib2,,,EA086,NA,,,, +Ib3,,,EA086,NA,,,, +Ib4,,,EA086,NA,,,, +Ib5,,,EA086,NA,,,, +Ib6,,,EA086,NA,,,, +Ib7,,,EA086,NA,,,, +Ib8,,,EA086,NA,,,, +Ib9,,,EA086,NA,,,, +Ic1,,,EA086,NA,,,, +Ic10,,,EA086,NA,,,, +Ic11,Allang,1950,EA086,2,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA086,NA,,,, +Ic13,,,EA086,NA,,,, +Ic2,,,EA086,NA,,,, +Ic3,,,EA086,NA,,,, +Ic4,,,EA086,NA,,,, +Ic5,,,EA086,NA,,,, +Ic6,,,EA086,NA,,,, +Ic7,,,EA086,NA,,,, +Ic8,,,EA086,NA,,,, +Ic9,,,EA086,NA,,,, +Id1,,,EA086,NA,,,, +Id10,,1930,EA086,8,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,,EA086,NA,,,, +Id12,,,EA086,NA,,,, +Id13,,,EA086,NA,,,, +Id2,,1930,EA086,11,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,,,EA086,NA,,,, +Id4,,,EA086,NA,,,, +Id5,,,EA086,NA,,,, +Id6,,,EA086,NA,,,, +Id7,,,EA086,NA,,,, +Id8,,1830,EA086,11,,roth1890,EthnographicAtlas_1967_p97, +Id9,,,EA086,NA,,,, +Ie1,,,EA086,NA,,,, +Ie10,,,EA086,NA,,,, +Ie11,,,EA086,NA,,,, +Ie12,,,EA086,NA,,,, +Ie13,,,EA086,NA,,,, +Ie14,,,EA086,NA,,,, +Ie15,,,EA086,NA,,,, +Ie16,,,EA086,NA,,,, +Ie17,,,EA086,NA,,,, +Ie18,Bamol Village,1940,EA086,8,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,,,EA086,NA,,,, +Ie2,,,EA086,NA,,,, +Ie20,,,EA086,NA,,,, +Ie21,,,EA086,NA,,,, +Ie22,,,EA086,NA,,,, +Ie23,,,EA086,NA,,,, +Ie24,,,EA086,NA,,,, +Ie25,,,EA086,NA,,,, +Ie26,,,EA086,NA,,,, +Ie27,,,EA086,NA,,,, +Ie28,,,EA086,NA,,,, +Ie29,,,EA086,NA,,,, +Ie3,,,EA086,NA,,,, +Ie30,,,EA086,NA,,,, +Ie31,,,EA086,NA,,,, +Ie32,,,EA086,NA,,,, +Ie33,,,EA086,NA,,,, +Ie34,,,EA086,NA,,,, +Ie35,,,EA086,NA,,,, +Ie36,,,EA086,NA,,,, +Ie37,,,EA086,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA086,3,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA086,3,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,,,EA086,NA,,,, +Ie5,,1930,EA086,10,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA086,NA,,,, +Ie7,,,EA086,NA,,,, +Ie8,,,EA086,NA,,,, +Ie9,,,EA086,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA086,3,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA086,NA,,,, +If11,,,EA086,NA,,,, +If12,,,EA086,NA,,,, +If13,,,EA086,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA086,10,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA086,3,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,,EA086,NA,,,, +If17,,,EA086,NA,,,, +If2,,,EA086,NA,,,, +If3,,,EA086,NA,,,, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA086,7,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,,EA086,NA,,,, +If6,,,EA086,NA,,,, +If7,,,EA086,NA,,,, +If8,,,EA086,NA,,,, +If9,,,EA086,NA,,,, +Ig1,Northeastern group,1940,EA086,8,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA086,NA,,,, +Ig11,,1920,EA086,10,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,,,EA086,NA,,,, +Ig13,,,EA086,NA,,,, +Ig14,,,EA086,NA,,,, +Ig15,,,EA086,NA,,,, +Ig16,,,EA086,NA,,,, +Ig17,,,EA086,NA,,,, +Ig18,,,EA086,NA,,,, +Ig19,,,EA086,NA,,,, +Ig2,,,EA086,NA,,,, +Ig20,,,EA086,NA,,,, +Ig21,,,EA086,NA,,,, +Ig3,,1930,EA086,3,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,,,EA086,NA,,,, +Ig5,,,EA086,NA,,,, +Ig6,,,EA086,NA,,,, +Ig7,,,EA086,NA,,,, +Ig8,,,EA086,NA,,,, +Ig9,,,EA086,NA,,,, +Ih1,,,EA086,NA,,,, +Ih10,,,EA086,NA,,,, +Ih11,,,EA086,NA,,,, +Ih12,,,EA086,NA,,,, +Ih13,,,EA086,NA,,,, +Ih14,,,EA086,NA,,,, +Ih2,,,EA086,NA,,,, +Ih3,Bunlap Village,1950,EA086,3,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,,,EA086,NA,,,, +Ih5,Neje Chiefdom,1860,EA086,8,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,,EA086,NA,,,, +Ih7,,,EA086,NA,,,, +Ih8,,,EA086,NA,,,, +Ih9,,,EA086,NA,,,, +Ii1,,,EA086,NA,,,, +Ii10,,,EA086,NA,,,, +Ii12,,,EA086,NA,,,, +Ii13,,,EA086,NA,,,, +Ii14,,,EA086,NA,,,, +Ii2,,,EA086,NA,,,, +Ii3,,,EA086,NA,,,, +Ii4,,,EA086,NA,,,, +Ii5,,,EA086,NA,,,, +Ii6,,,EA086,NA,,,, +Ii7,,,EA086,NA,,,, +Ii8,,,EA086,NA,,,, +Ii9,,,EA086,NA,,,, +Ij1,,,EA086,NA,,,, +Ij10,,,EA086,NA,,,, +Ij2,,,EA086,NA,,,, +Ij3,,,EA086,NA,,,, +Ij4,,,EA086,NA,,,, +Ij5,,,EA086,NA,,,, +Ij6,,1800,EA086,1,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,,EA086,NA,,,, +Ij8,,,EA086,NA,,,, +Ij9,,1860,EA086,1,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA086,4,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA086,3,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA086,5,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA086,11,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA086,11,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA086,11,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA086,3,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA086,3,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA086,11,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA086,11,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA086,11,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA086,3,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA086,11,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA086,11,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA086,11,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA086,11,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA086,11,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,,,EA086,NA,,,, +Na27,,,EA086,NA,,,, +Na28,,,EA086,NA,,,, +Na29,,,EA086,NA,,,, +Na3,Coronation Gulf,1920,EA086,11,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,,EA086,NA,,,, +Na31,with special reference to those of Albany and Moose Creek,1850,EA086,11,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA086,11,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,,,EA086,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA086,11,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA086,11,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA086,11,"Also a conical bark tipi, which also has 'walls indistinguishable from roof' (code ""11"")",barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,,EA086,NA,,,, +Na38,with special reference to the Lac Vieux Desert band,1800,EA086,11,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA086,11,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA086,11,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA086,11,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,,,EA086,NA,,,, +Na42,,,EA086,NA,,,, +Na43,,1920,EA086,11,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA086,NA,,,, +Na45,,1900,EA086,NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,,,EA086,NA,,,, +Na6,,,EA086,NA,,,, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA086,11,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA086,4,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,,,EA086,NA,,,, +Nb1,,,EA086,NA,,,, +Nb10,,1865,EA086,3,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,,,EA086,NA,,,, +Nb12,,1880,EA086,11,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,,EA086,NA,,,, +Nb14,,,EA086,NA,,,, +Nb15,,1880,EA086,7,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA086,11,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA086,7,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,,EA086,NA,,,, +Nb19,,,EA086,NA,,,, +Nb2,Twana Tribe,1850,EA086,7,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,,EA086,NA,,,, +Nb21,,1860,EA086,8,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA086,11,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA086,11,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,,EA086,NA,,,, +Nb25,,1860,EA086,4,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,,EA086,NA,,,, +Nb27,with special reference to the Tait,1880,EA086,3,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA086,8,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,,EA086,NA,,,, +Nb3,,,EA086,NA,,,, +Nb30,,,EA086,NA,,,, +Nb31,,,EA086,NA,,,, +Nb32,,,EA086,NA,,,, +Nb33,,,EA086,NA,,,, +Nb34,,,EA086,NA,,,, +Nb35,,,EA086,NA,,,, +Nb36,,,EA086,NA,,,, +Nb37,,,EA086,NA,,,, +Nb38,,,EA086,NA,,,, +Nb39,,,EA086,NA,,,, +Nb4,,,EA086,NA,,,, +Nb5,,,EA086,NA,,,, +Nb6,,,EA086,NA,,,, +Nb7,,,EA086,NA,,,, +Nb8,,,EA086,NA,,,, +Nb9,,,EA086,NA,,,, +Nc1,,,EA086,NA,,,, +Nc10,,1860,EA086,11,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA086,11,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA086,11,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA086,11,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA086,11,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA086,11,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,,EA086,NA,,,, +Nc17,,,EA086,NA,,,, +Nc18,,,EA086,NA,,,, +Nc19,,,EA086,NA,,,, +Nc2,,1850,EA086,8,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,,EA086,NA,,,, +Nc21,,,EA086,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA086,10,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA086,11,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,,,EA086,NA,,,, +Nc25,,1860,EA086,11,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA086,8,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA086,NA,,,, +Nc28,,,EA086,NA,,,, +Nc29,,,EA086,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA086,11,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,,EA086,NA,,,, +Nc31,,,EA086,NA,,,, +Nc32,,,EA086,NA,,,, +Nc33,,1860,EA086,8,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,,EA086,NA,,,, +Nc4,,1860,EA086,11,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,,,EA086,NA,,,, +Nc6,,,EA086,NA,,,, +Nc7,,1850,EA086,11,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA086,11,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA086,7,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA086,11,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA086,7,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA086,11,,ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA086,11,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA086,11,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA086,11,,ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA086,11,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA086,11,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA086,7,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA086,7,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,,EA086,NA,,,, +Nd2,,1860,EA086,11,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA086,11,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,,EA086,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA086,11,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,,EA086,NA,,,, +Nd24,,,EA086,NA,,,, +Nd25,,,EA086,NA,,,, +Nd26,,1870,EA086,8,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,,EA086,NA,,,, +Nd28,,1870,EA086,11,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA086,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,,,EA086,NA,,,, +Nd30,,1870,EA086,11,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,,EA086,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA086,11,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA086,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA086,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,,EA086,NA,,,, +Nd36,,1870,EA086,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,,EA086,NA,,,, +Nd38,,1870,EA086,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,,,EA086,NA,,,, +Nd4,,1870,EA086,11,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,,EA086,NA,,,, +Nd41,,1870,EA086,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,,,EA086,NA,,,, +Nd43,,1860,EA086,11,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA086,11,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA086,11,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA086,11,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,,EA086,NA,,,, +Nd48,,,EA086,NA,,,, +Nd49,,,EA086,NA,,,, +Nd5,,1870,EA086,11,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,,EA086,NA,,,, +Nd51,,,EA086,NA,,,, +Nd52,,,EA086,NA,,,, +Nd53,,,EA086,NA,,,, +Nd54,,,EA086,NA,,,, +Nd55,,,EA086,NA,,,, +Nd56,,1860,EA086,11,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,,EA086,NA,,,, +Nd58,,1860,EA086,11,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA086,11,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA086,11,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,,EA086,NA,,,, +Nd61,,1860,EA086,11,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA086,11,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA086,11,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA086,11,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,,EA086,NA,,,, +Nd66,,,EA086,NA,,,, +Nd67,,1870,EA086,8,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA086,11,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA086,11,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA086,11,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,,,EA086,NA,,,, +Ne10,,1860,EA086,11,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,,EA086,NA,,,, +Ne12,,,EA086,NA,,,, +Ne13,,,EA086,NA,,,, +Ne14,,1850,EA086,11,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA086,11,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,,EA086,NA,,,, +Ne17,,,EA086,NA,,,, +Ne18,,,EA086,NA,,,, +Ne19,,,EA086,NA,,,, +Ne2,,,EA086,NA,,,, +Ne20,,,EA086,NA,,,, +Ne21,,,EA086,NA,,,, +Ne3,,,EA086,NA,,,, +Ne4,,,EA086,NA,,,, +Ne5,,,EA086,NA,,,, +Ne6,,1830,EA086,11,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,,EA086,NA,,,, +Ne8,,,EA086,NA,,,, +Ne9,,,EA086,NA,,,, +Nf10,,1870,EA086,11,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA086,11,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA086,11,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,,,EA086,NA,,,, +Nf14,,,EA086,NA,,,, +Nf15,,,EA086,NA,,,, +Nf2,,1850,EA086,11,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA086,11,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA086,NA,,,, +Nf5,,,EA086,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA086,11,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA086,11,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,,EA086,NA,,,, +Nf9,,,EA086,NA,,,, +Ng1,,,EA086,NA,,,, +Ng10,,,EA086,NA,,,, +Ng11,,,EA086,NA,,,, +Ng12,,,EA086,NA,,,, +Ng13,,,EA086,NA,,,, +Ng14,,,EA086,NA,,,, +Ng15,,,EA086,NA,,,, +Ng2,,,EA086,NA,,,, +Ng3,Upper division in Alabama,1750,EA086,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA086,11,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA086,11,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA086,4,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,,,EA086,NA,,,, +Ng8,,1560,EA086,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA086,NA,,,, +Nh1,,,EA086,NA,,,, +Nh10,,,EA086,NA,,,, +Nh11,,,EA086,NA,,,, +Nh12,,,EA086,NA,,,, +Nh13,,,EA086,NA,,,, +Nh14,,,EA086,NA,,,, +Nh15,,,EA086,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA086,11,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,,EA086,NA,,,, +Nh18,,,EA086,NA,,,, +Nh19,,1850,EA086,9,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,,EA086,NA,,,, +Nh20,,,EA086,NA,,,, +Nh21,,,EA086,NA,,,, +Nh22,,1860,EA086,9,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,,EA086,NA,,,, +Nh24,,,EA086,NA,,,, +Nh25,,,EA086,NA,,,, +Nh26,,,EA086,NA,,,, +Nh27,,,EA086,NA,,,, +Nh3,,,EA086,NA,,,, +Nh4,,,EA086,NA,,,, +Nh5,,1850,EA086,9,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,,EA086,NA,,,, +Nh7,,,EA086,NA,,,, +Nh8,,,EA086,NA,,,, +Nh9,,,EA086,NA,,,, +Ni1,,,EA086,NA,,,, +Ni2,,1930,EA086,10,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,,,EA086,NA,,,, +Ni4,,,EA086,NA,,,, +Ni5,,,EA086,NA,,,, +Ni6,,,EA086,NA,,,, +Ni7,,,EA086,NA,,,, +Ni8,,,EA086,NA,,,, +Ni9,,,EA086,NA,,,, +Nj1,,,EA086,NA,,,, +Nj10,,,EA086,NA,,,, +Nj11,,,EA086,NA,,,, +Nj12,,,EA086,NA,,,, +Nj13,,,EA086,NA,,,, +Nj14,,,EA086,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA086,1,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,,,EA086,NA,,,, +Nj4,,,EA086,NA,,,, +Nj5,,,EA086,NA,,,, +Nj6,,,EA086,NA,,,, +Nj7,,,EA086,NA,,,, +Nj8,,1500,EA086,9,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,,EA086,NA,,,, +Sa1,,,EA086,NA,,,, +Sa10,,,EA086,NA,,,, +Sa11,,,EA086,NA,,,, +Sa12,,,EA086,NA,,,, +Sa13,,,EA086,NA,,,, +Sa14,,,EA086,NA,,,, +Sa15,,,EA086,NA,,,, +Sa16,,,EA086,NA,,,, +Sa17,,,EA086,NA,,,, +Sa2,,,EA086,NA,,,, +Sa3,,,EA086,NA,,,, +Sa4,,,EA086,NA,,,, +Sa5,,1950,EA086,4,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,,EA086,NA,,,, +Sa7,,,EA086,NA,,,, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA086,9,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA086,3,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,,,EA086,NA,,,, +Sb2,,1940,EA086,9,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA086,NA,,,, +Sb4,,,EA086,NA,,,, +Sb5,,,EA086,NA,,,, +Sb6,,,EA086,NA,,,, +Sb7,,,EA086,NA,,,, +Sb8,,1520,EA086,3,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,,EA086,NA,,,, +Sc1,,,EA086,NA,,,, +Sc10,,,EA086,NA,,,, +Sc11,,,EA086,NA,,,, +Sc12,,,EA086,NA,,,, +Sc13,,,EA086,NA,,,, +Sc14,,,EA086,NA,,,, +Sc15,,,EA086,NA,,,, +Sc16,,,EA086,NA,,,, +Sc17,,,EA086,NA,,,, +Sc18,,,EA086,NA,,,, +Sc2,,,EA086,NA,,,, +Sc3,,,EA086,NA,,,, +Sc4,,,EA086,NA,,,, +Sc5,,1900,EA086,2,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,,,EA086,NA,,,, +Sc7,,,EA086,NA,,,, +Sc8,,1950,EA086,11,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,,EA086,NA,,,, +Sd1,Cabrura village,1950,EA086,10,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA086,NA,,,, +Sd3,,,EA086,NA,,,, +Sd4,,,EA086,NA,,,, +Sd5,,,EA086,NA,,,, +Sd6,,,EA086,NA,,,, +Sd7,,1950,EA086,8,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,,EA086,NA,,,, +Sd9,,,EA086,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA086,11,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA086,NA,,,, +Se11,,,EA086,NA,,,, +Se12,,,EA086,NA,,,, +Se2,,1940,EA086,8,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,,EA086,NA,,,, +Se4,,,EA086,NA,,,, +Se5,Village on Caduiari River,1940,EA086,4,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,,EA086,NA,,,, +Se7,,,EA086,NA,,,, +Se8,Upper Inuya River,1950,EA086,3,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,,EA086,NA,,,, +Sf1,City and environs of Cuzco,1530,EA086,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,,,EA086,NA,,,, +Sf3,,,EA086,NA,,,, +Sf4,,1950,EA086,3,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA086,1,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA086,2,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA086,11,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA086,NA,,,, +Sf9,,,EA086,NA,,,, +Sg1,Eastern and central,1870,EA086,11,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA086,2,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA086,11,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,,,EA086,NA,,,, +Sg5,,,EA086,NA,,,, +Sh1,,,EA086,NA,,,, +Sh2,,,EA086,NA,,,, +Sh3,,,EA086,NA,,,, +Sh4,,,EA086,NA,,,, +Sh5,,,EA086,NA,,,, +Sh6,,,EA086,NA,,,, +Sh7,,,EA086,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA086,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA086,NA,,,, +Si1,Kejara,1920,EA086,11,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,,EA086,NA,,,, +Si2,,,EA086,NA,,,, +Si3,,,EA086,NA,,,, +Si4,Cocozu Group,1940,EA086,11,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,,EA086,NA,,,, +Si6,,,EA086,NA,,,, +Si7,,,EA086,NA,,,, +Si8,,,EA086,NA,,,, +Si9,,,EA086,NA,,,, +Sj1,,,EA086,NA,,,, +Sj10,,,EA086,NA,,,, +Sj11,,,EA086,NA,,,, +Sj2,,,EA086,NA,,,, +Sj3,,,EA086,NA,,,, +Sj4,,,EA086,NA,,,, +Sj5,Naknenuk subtribe,1880,EA086,11,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,,,EA086,NA,,,, +Sj7,,,EA086,NA,,,, +Sj8,,,EA086,NA,,,, +Sj9,,1950,EA086,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA086,6,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA086,3,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA086,3,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA086,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,,,EA086,NA,,,, +ch17,with special reference to those of the Benderskij Uezd,1894,EA086,2,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,,,EA086,NA,,,, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA086,8,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA086,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA086,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,,,EA086,NA,,,, +ch23,,,EA086,NA,,,, +ch24,,,EA086,NA,,,, +ch25,with special reference to the Beletskij Uezd,1900,EA086,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA086,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA086,3,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,,,EA086,NA,,,, +ec12,Avam (Western) group,1930,EA086,5,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA086,8,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA086,5,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA086,4,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA086,4,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA086,3,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA086,3,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA086,3,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA086,3,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA086,3,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA087,5,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,,,EA087,NA,,,, +Aa3,,,EA087,NA,,,, +Aa4,,,EA087,NA,,,, +Aa5,,,EA087,NA,,,, +Aa6,,1920,EA087,7,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,,EA087,NA,,,, +Aa8,,1850,EA087,5,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA087,NA,,,, +Ab1,,,EA087,NA,,,, +Ab10,,1936,EA087,4,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,,EA087,NA,,,, +Ab12,,,EA087,NA,,,, +Ab13,,,EA087,NA,,,, +Ab14,,,EA087,NA,,,, +Ab15,,,EA087,NA,,,, +Ab16,,,EA087,NA,,,, +Ab17,,,EA087,NA,,,, +Ab18,,,EA087,NA,,,, +Ab19,,,EA087,NA,,,, +Ab2,,1880,EA087,4,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,,EA087,NA,,,, +Ab21a,,,EA087,NA,,,, +Ab21b,,,EA087,NA,,,, +Ab22,,,EA087,NA,,,, +Ab3,Ruling Luyana,1890,EA087,8,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,,EA087,NA,,,, +Ab5,,,EA087,NA,,,, +Ab6,,,EA087,NA,,,, +Ab7,,,EA087,NA,,,, +Ab8,,,EA087,NA,,,, +Ab9,,1870,EA087,4,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,,EA087,NA,,,, +Ac10,,,EA087,NA,,,, +Ac11,,1930,EA087,4,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,,EA087,NA,,,, +Ac13,,,EA087,NA,,,, +Ac14,,1900,EA087,8,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,,EA087,NA,,,, +Ac16,,,EA087,NA,,,, +Ac17,,,EA087,NA,,,, +Ac18,,,EA087,NA,,,, +Ac19,,,EA087,NA,,,, +Ac2,,,EA087,NA,,,, +Ac20,,,EA087,NA,,,, +Ac21,,,EA087,NA,,,, +Ac22,,,EA087,NA,,,, +Ac23,,,EA087,NA,,,, +Ac24,,,EA087,NA,,,, +Ac25,,,EA087,NA,,,, +Ac26,,,EA087,NA,,,, +Ac27,,,EA087,NA,,,, +Ac28,,,EA087,NA,,,, +Ac29,,,EA087,NA,,,, +Ac3,,,EA087,NA,,,, +Ac30,,,EA087,NA,,,, +Ac31,,,EA087,NA,,,, +Ac32,,1920,EA087,9,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,,EA087,NA,,,, +Ac34,,,EA087,NA,,,, +Ac35,,,EA087,NA,,,, +Ac36,,,EA087,NA,,,, +Ac37,,,EA087,NA,,,, +Ac38,,,EA087,NA,,,, +Ac39,,,EA087,NA,,,, +Ac4,,,EA087,NA,,,, +Ac40,,1900,EA087,9,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,,EA087,NA,,,, +Ac42,,,EA087,NA,,,, +Ac43,,,EA087,NA,,,, +Ac5,,,EA087,NA,,,, +Ac6,,,EA087,NA,,,, +Ac7,,,EA087,NA,,,, +Ac8,,,EA087,NA,,,, +Ac9,,,EA087,NA,,,, +Ad1,,1950,EA087,4,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA087,9,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA087,7,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,,EA087,NA,,,, +Ad13,,1930,EA087,7,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA087,8,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,,EA087,NA,,,, +Ad16,,,EA087,NA,,,, +Ad17,,,EA087,NA,,,, +Ad18,,,EA087,NA,,,, +Ad19,,1910,EA087,4,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,,EA087,NA,,,, +Ad20,,1920,EA087,7,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,,EA087,NA,,,, +Ad22,,,EA087,NA,,,, +Ad23,,,EA087,NA,,,, +Ad24,,,EA087,NA,,,, +Ad25,,,EA087,NA,,,, +Ad26,,,EA087,NA,,,, +Ad27,,1880,EA087,8,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA087,8,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,,EA087,NA,,,, +Ad3,,,EA087,NA,,,, +Ad30,,,EA087,NA,,,, +Ad31,,,EA087,NA,,,, +Ad32,,,EA087,NA,,,, +Ad33,,,EA087,NA,,,, +Ad34,,,EA087,NA,,,, +Ad35,,,EA087,NA,,,, +Ad36,,,EA087,NA,,,, +Ad37,,,EA087,NA,,,, +Ad38,,,EA087,NA,,,, +Ad39,,,EA087,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA087,4,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA087,NA,,,, +Ad41,,,EA087,NA,,,, +Ad42,,,EA087,NA,,,, +Ad43,,,EA087,NA,,,, +Ad44,,,EA087,NA,,,, +Ad45,,,EA087,NA,,,, +Ad46,,1950,EA087,3,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,,EA087,NA,,,, +Ad48,,,EA087,NA,,,, +Ad49,,,EA087,NA,,,, +Ad5,,,EA087,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA087,4,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA087,7,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA087,8,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,,,EA087,NA,,,, +Ad8,,,EA087,NA,,,, +Ad9,,,EA087,NA,,,, +Ae1,,,EA087,NA,,,, +Ae10,,,EA087,NA,,,, +Ae11,,,EA087,NA,,,, +Ae12,,,EA087,NA,,,, +Ae13,,,EA087,NA,,,, +Ae14,,,EA087,NA,,,, +Ae15,,,EA087,NA,,,, +Ae16,,,EA087,NA,,,, +Ae17,,,EA087,NA,,,, +Ae18,,1900,EA087,9,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA087,NA,,,, +Ae2,,,EA087,NA,,,, +Ae20,,,EA087,NA,,,, +Ae21,,,EA087,NA,,,, +Ae22,,,EA087,NA,,,, +Ae23,,,EA087,NA,,,, +Ae24,,,EA087,NA,,,, +Ae25,with special reference to the northern Tetela,1920,EA087,4,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,,EA087,NA,,,, +Ae27,,,EA087,NA,,,, +Ae28,,1900,EA087,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,,EA087,NA,,,, +Ae3,,,EA087,NA,,,, +Ae30,,,EA087,NA,,,, +Ae31,,,EA087,NA,,,, +Ae32,,,EA087,NA,,,, +Ae33,,1920,EA087,9,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA087,NA,,,, +Ae35,,1900,EA087,8,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,,EA087,NA,,,, +Ae37,,,EA087,NA,,,, +Ae38,,,EA087,NA,,,, +Ae39,,,EA087,NA,,,, +Ae4,,,EA087,NA,,,, +Ae40,,,EA087,NA,,,, +Ae41,,,EA087,NA,,,, +Ae42,,,EA087,NA,,,, +Ae43,,,EA087,NA,,,, +Ae44,,,EA087,NA,,,, +Ae45,,,EA087,NA,,,, +Ae46,,,EA087,NA,,,, +Ae47,,,EA087,NA,,,, +Ae48,,1930,EA087,8,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,,EA087,NA,,,, +Ae5,,,EA087,NA,,,, +Ae50,,1920,EA087,4,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,,,EA087,NA,,,, +Ae52,,,EA087,NA,,,, +Ae53,,,EA087,NA,,,, +Ae54,,,EA087,NA,,,, +Ae55,,,EA087,NA,,,, +Ae56,,,EA087,NA,,,, +Ae57,,,EA087,NA,,,, +Ae58,,,EA087,NA,,,, +Ae59,,,EA087,NA,,,, +Ae6,,,EA087,NA,,,, +Ae7,,1910,EA087,8,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,,EA087,NA,,,, +Ae9,,,EA087,NA,,,, +Af1,,,EA087,NA,,,, +Af10,,,EA087,NA,,,, +Af11,,,EA087,NA,,,, +Af12,,,EA087,NA,,,, +Af13,,1920,EA087,9,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA087,9,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA087,8,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,,EA087,NA,,,, +Af17,,,EA087,NA,,,, +Af18,,,EA087,NA,,,, +Af19,,,EA087,NA,,,, +Af2,,,EA087,NA,,,, +Af20,,,EA087,NA,,,, +Af21,,,EA087,NA,,,, +Af22,,,EA087,NA,,,, +Af23,,,EA087,NA,,,, +Af24,,,EA087,NA,,,, +Af25,,,EA087,NA,,,, +Af26,,,EA087,NA,,,, +Af27,,,EA087,NA,,,, +Af28,,,EA087,NA,,,, +Af29,,,EA087,NA,,,, +Af3,,,EA087,NA,,,, +Af30,,,EA087,NA,,,, +Af31,,,EA087,NA,,,, +Af32,,,EA087,NA,,,, +Af33,,,EA087,NA,,,, +Af34,,,EA087,NA,,,, +Af35,,,EA087,NA,,,, +Af36,,,EA087,NA,,,, +Af37,with special reference to the Akpafu,1900,EA087,4,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA087,NA,,,, +Af39,,,EA087,NA,,,, +Af4,,,EA087,NA,,,, +Af40,,,EA087,NA,,,, +Af41,,,EA087,NA,,,, +Af42,,,EA087,NA,,,, +Af43,,,EA087,NA,,,, +Af44,,,EA087,NA,,,, +Af45,,,EA087,NA,,,, +Af46,,,EA087,NA,,,, +Af47,,,EA087,NA,,,, +Af48,,1850,EA087,8,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,,EA087,NA,,,, +Af5,,1930,EA087,8,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,,EA087,NA,,,, +Af51,,,EA087,NA,,,, +Af52,,1920,EA087,4,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA087,NA,,,, +Af54,,,EA087,NA,,,, +Af55,,,EA087,NA,,,, +Af56,,,EA087,NA,,,, +Af57,,,EA087,NA,,,, +Af58,,,EA087,NA,,,, +Af6,,,EA087,NA,,,, +Af7,,,EA087,NA,,,, +Af8,,,EA087,NA,,,, +Af9,,,EA087,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA087,4,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,,EA087,NA,,,, +Ag11,,,EA087,NA,,,, +Ag12,,1910,EA087,7,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA087,4,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,,EA087,NA,,,, +Ag15,,1930,EA087,4,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,,EA087,NA,,,, +Ag17,,,EA087,NA,,,, +Ag18,,,EA087,NA,,,, +Ag19,,,EA087,NA,,,, +Ag2,,,EA087,NA,,,, +Ag20,,,EA087,NA,,,, +Ag21,,,EA087,NA,,,, +Ag22,,,EA087,NA,,,, +Ag23,,,EA087,NA,,,, +Ag24,,,EA087,NA,,,, +Ag25,,1900,EA087,4,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA087,7,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,,EA087,NA,,,, +Ag28,,,EA087,NA,,,, +Ag29,,,EA087,NA,,,, +Ag3,,,EA087,NA,,,, +Ag30,,,EA087,NA,,,, +Ag31,,,EA087,NA,,,, +Ag32,,1900,EA087,7,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,,EA087,NA,,,, +Ag34,,1930,EA087,4,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,,EA087,NA,,,, +Ag36,,,EA087,NA,,,, +Ag37,,,EA087,NA,,,, +Ag38,,,EA087,NA,,,, +Ag39,,1910,EA087,4,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA087,7,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA087,4,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,,EA087,NA,,,, +Ag42,,,EA087,NA,,,, +Ag43,,,EA087,NA,,,, +Ag44,,,EA087,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA087,7,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA087,NA,,,, +Ag47,,,EA087,NA,,,, +Ag48,,,EA087,NA,,,, +Ag49,,,EA087,NA,,,, +Ag5,,,EA087,NA,,,, +Ag50,,,EA087,NA,,,, +Ag51,,,EA087,NA,,,, +Ag52,,,EA087,NA,,,, +Ag53,,,EA087,NA,,,, +Ag54,,1910,EA087,9,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA087,3,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA087,2,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,,,EA087,NA,,,, +Ag9,,,EA087,NA,,,, +Ah1,,,EA087,NA,,,, +Ah10,,,EA087,NA,,,, +Ah11,,,EA087,NA,,,, +Ah12,,,EA087,NA,,,, +Ah13,,,EA087,NA,,,, +Ah14,,,EA087,NA,,,, +Ah15,,,EA087,NA,,,, +Ah16,,,EA087,NA,,,, +Ah17,,,EA087,NA,,,, +Ah18,,,EA087,NA,,,, +Ah19,,,EA087,NA,,,, +Ah2,,,EA087,NA,,,, +Ah20,,1920,EA087,4,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA087,NA,,,, +Ah22,,,EA087,NA,,,, +Ah23,,,EA087,NA,,,, +Ah24,,,EA087,NA,,,, +Ah25,,1920,EA087,9,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,,EA087,NA,,,, +Ah27,,,EA087,NA,,,, +Ah28,,,EA087,NA,,,, +Ah29,,,EA087,NA,,,, +Ah3,,,EA087,NA,,,, +Ah30,,,EA087,NA,,,, +Ah31,,,EA087,NA,,,, +Ah32,,,EA087,NA,,,, +Ah33,,1920,EA087,4,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,,,EA087,NA,,,, +Ah35,,,EA087,NA,,,, +Ah36,,,EA087,NA,,,, +Ah37,,1920,EA087,3,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,,EA087,NA,,,, +Ah39,,,EA087,NA,,,, +Ah4,,,EA087,NA,,,, +Ah5,,,EA087,NA,,,, +Ah6,,,EA087,NA,,,, +Ah7,,,EA087,NA,,,, +Ah8,,,EA087,NA,,,, +Ah9,,,EA087,NA,,,, +Ai1,,,EA087,NA,,,, +Ai10,,,EA087,NA,,,, +Ai11,,,EA087,NA,,,, +Ai12,,,EA087,NA,,,, +Ai13,,,EA087,NA,,,, +Ai14,,,EA087,NA,,,, +Ai15,,,EA087,NA,,,, +Ai16,,,EA087,NA,,,, +Ai17,,,EA087,NA,,,, +Ai18,,1880,EA087,7,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA087,4,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA087,NA,,,, +Ai20,,,EA087,NA,,,, +Ai21,,1880,EA087,7,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,,EA087,NA,,,, +Ai23,,1920,EA087,4,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,,EA087,NA,,,, +Ai25,,1950,EA087,2,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA087,4,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA087,NA,,,, +Ai28,,1910,EA087,8,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,,EA087,NA,,,, +Ai3,,,EA087,NA,,,, +Ai30,,,EA087,NA,,,, +Ai31,,,EA087,NA,,,, +Ai32,,,EA087,NA,,,, +Ai33,,,EA087,NA,,,, +Ai34,,,EA087,NA,,,, +Ai35,,,EA087,NA,,,, +Ai36,,,EA087,NA,,,, +Ai37,,,EA087,NA,,,, +Ai38,,,EA087,NA,,,, +Ai39,,,EA087,NA,,,, +Ai4,,,EA087,NA,,,, +Ai40,,,EA087,NA,,,, +Ai41,,,EA087,NA,,,, +Ai42,,,EA087,NA,,,, +Ai43,,,EA087,NA,,,, +Ai44,,,EA087,NA,,,, +Ai45,,,EA087,NA,,,, +Ai46,,,EA087,NA,,,, +Ai47,Northern division,1939,EA087,4,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA087,NA,,,, +Ai6,,,EA087,NA,,,, +Ai7,,1910,EA087,2,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,,EA087,NA,,,, +Ai9,,,EA087,NA,,,, +Aj1,,1950,EA087,4,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,,EA087,NA,,,, +Aj11,,,EA087,NA,,,, +Aj12,,,EA087,NA,,,, +Aj13,,,EA087,NA,,,, +Aj14,,,EA087,NA,,,, +Aj15,,,EA087,NA,,,, +Aj16,,,EA087,NA,,,, +Aj17,,1890,EA087,3,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA087,NA,,,, +Aj19,,,EA087,NA,,,, +Aj2,,,EA087,NA,,,, +Aj20,,,EA087,NA,,,, +Aj21,,,EA087,NA,,,, +Aj22,,,EA087,NA,,,, +Aj23,,,EA087,NA,,,, +Aj24,,1930,EA087,2,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,,EA087,NA,,,, +Aj26,,,EA087,NA,,,, +Aj27,,1920,EA087,7,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,,EA087,NA,,,, +Aj29,,,EA087,NA,,,, +Aj3,,1930,EA087,2,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA087,NA,,,, +Aj31,,,EA087,NA,,,, +Aj4,,,EA087,NA,,,, +Aj5,,1920,EA087,5,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,,EA087,NA,,,, +Aj7,,,EA087,NA,,,, +Aj8,,,EA087,NA,,,, +Aj9,,,EA087,NA,,,, +Ca1,,,EA087,NA,,,, +Ca10,,,EA087,NA,,,, +Ca11,,1890,EA087,4,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,,EA087,NA,,,, +Ca13,,,EA087,NA,,,, +Ca14,,,EA087,NA,,,, +Ca15,,,EA087,NA,,,, +Ca16,,,EA087,NA,,,, +Ca17,,,EA087,NA,,,, +Ca18,,,EA087,NA,,,, +Ca19,,,EA087,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA087,4,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA087,3,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,,EA087,NA,,,, +Ca22,,,EA087,NA,,,, +Ca23,,1950,EA087,4,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA087,NA,,,, +Ca25,,,EA087,NA,,,, +Ca26,,,EA087,NA,,,, +Ca27,,1930,EA087,3,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,,EA087,NA,,,, +Ca29,,,EA087,NA,,,, +Ca3,,,EA087,NA,,,, +Ca30,Kafa Kingdom,1890,EA087,9,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,,EA087,NA,,,, +Ca32,,,EA087,NA,,,, +Ca33,,1860,EA087,4,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA087,2,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,,EA087,NA,,,, +Ca36,,,EA087,NA,,,, +Ca37,,,EA087,NA,,,, +Ca38,,,EA087,NA,,,, +Ca39,,,EA087,NA,,,, +Ca4,,1950,EA087,7,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,,EA087,NA,,,, +Ca41,,,EA087,NA,,,, +Ca42,,,EA087,NA,,,, +Ca43,,,EA087,NA,,,, +Ca5,,,EA087,NA,,,, +Ca6,,1880,EA087,4,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,,,EA087,NA,,,, +Ca8,,,EA087,NA,,,, +Ca9,,,EA087,NA,,,, +Cb1,,,EA087,NA,,,, +Cb10,,,EA087,NA,,,, +Cb11,,,EA087,NA,,,, +Cb12,,,EA087,NA,,,, +Cb13,,,EA087,NA,,,, +Cb14,,,EA087,NA,,,, +Cb15,with special reference to the Humr,1940,EA087,2,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA087,4,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA087,4,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,,EA087,NA,,,, +Cb19,,1870,EA087,4,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,,,EA087,NA,,,, +Cb20,,,EA087,NA,,,, +Cb21,,,EA087,NA,,,, +Cb22,,1920,EA087,4,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,,EA087,NA,,,, +Cb24,,,EA087,NA,,,, +Cb25,,,EA087,NA,,,, +Cb26,,,EA087,NA,,,, +Cb27,,,EA087,NA,,,, +Cb28,,,EA087,NA,,,, +Cb29,,,EA087,NA,,,, +Cb3,Bamba division,1940,EA087,7,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,,EA087,NA,,,, +Cb5,,,EA087,NA,,,, +Cb6,,,EA087,NA,,,, +Cb7,,1920,EA087,7,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,,,EA087,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA087,7,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,,EA087,NA,,,, +Cc10,,1900,EA087,3,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,,EA087,NA,,,, +Cc12,,,EA087,NA,,,, +Cc13,,,EA087,NA,,,, +Cc14,,1880,EA087,8,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA087,NA,,,, +Cc16,,1930,EA087,7,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,,EA087,NA,,,, +Cc18,,,EA087,NA,,,, +Cc19,,,EA087,NA,,,, +Cc2,Nomads of Tibesti,1950,EA087,4,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,,,EA087,NA,,,, +Cc3,,,EA087,NA,,,, +Cc4,,,EA087,NA,,,, +Cc5,,1910,EA087,3,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,,EA087,NA,,,, +Cc7,Timbuctoo,1950,EA087,7,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA087,2,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA087,7,"Also similarly shaped houses with conical roofs (code ""4"") and walls (and roofs) of grass/thatch OR rounded roofs (code ""1"") with walls (and roofs) of mats/latticework",benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA087,4,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,,EA087,NA,,,, +Cd11,,,EA087,NA,,,, +Cd12,,,EA087,NA,,,, +Cd13,,,EA087,NA,,,, +Cd14,,,EA087,NA,,,, +Cd15,,1910,EA087,8,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,,,EA087,NA,,,, +Cd17,,,EA087,NA,,,, +Cd18,,,EA087,NA,,,, +Cd19,,1920,EA087,8,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,,,EA087,NA,,,, +Cd20,,,EA087,NA,,,, +Cd21,,,EA087,NA,,,, +Cd3,,,EA087,NA,,,, +Cd4,,,EA087,NA,,,, +Cd5,,,EA087,NA,,,, +Cd6,,,EA087,NA,,,, +Cd7,,,EA087,NA,,,, +Cd8,,,EA087,NA,,,, +Cd9,,,EA087,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA087,8,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA087,NA,,,, +Ce3,,,EA087,NA,,,, +Ce4,,,EA087,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA087,7,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,,,EA087,NA,,,, +Ce7,,,EA087,NA,,,, +Ce8,,,EA087,NA,,,, +Cf1,,,EA087,NA,,,, +Cf2,,,EA087,NA,,,, +Cf3,,,EA087,NA,,,, +Cf4,,,EA087,NA,,,, +Cf5,,,EA087,NA,,,, +Cg1,,,EA087,NA,,,, +Cg2,,,EA087,NA,,,, +Cg3,,,EA087,NA,,,, +Cg4,,,EA087,NA,,,, +Cg5,,,EA087,NA,,,, +Ch1,,,EA087,NA,,,, +Ch10,,,EA087,NA,,,, +Ch11,Viriatino Village,1955,EA087,8,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA087,NA,,,, +Ch3,,,EA087,NA,,,, +Ch4,,,EA087,NA,,,, +Ch5,,,EA087,NA,,,, +Ch6,,,EA087,NA,,,, +Ch7,,,EA087,NA,,,, +Ch8,,,EA087,NA,,,, +Ch9,,,EA087,NA,,,, +Ci1,,,EA087,NA,,,, +Ci10,,,EA087,NA,,,, +Ci11,,1940,EA087,8,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,,,EA087,NA,,,, +Ci2,,,EA087,NA,,,, +Ci3,,,EA087,NA,,,, +Ci4,,,EA087,NA,,,, +Ci5,,,EA087,NA,,,, +Ci6,,,EA087,NA,,,, +Ci7,,,EA087,NA,,,, +Ci8,,,EA087,NA,,,, +Ci9,,,EA087,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA087,8,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,,,EA087,NA,,,, +Cj2,,,EA087,NA,,,, +Cj3,,,EA087,NA,,,, +Cj4,,,EA087,NA,,,, +Cj5,,,EA087,NA,,,, +Cj6,,,EA087,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA087,9,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,,,EA087,NA,,,, +Cj9,,,EA087,NA,,,, +Ea1,,,EA087,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA087,2,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA087,NA,,,, +Ea12,,,EA087,NA,,,, +Ea13,Mohla Village,1950,EA087,7,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA087,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA087,7,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,,EA087,NA,,,, +Ea5,,,EA087,NA,,,, +Ea6,Nomadic branch,1958,EA087,8,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA087,1,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA087,NA,,,, +Ea9,,,EA087,NA,,,, +Eb1,Great Horde,1910,EA087,7,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,,EA087,NA,,,, +Eb3,,,EA087,NA,,,, +Eb4,,,EA087,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA087,7,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA087,7,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,,EA087,NA,,,, +Eb8,,,EA087,NA,,,, +Ec1,Sakhalin Island,1920,EA087,8,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,,,EA087,NA,,,, +Ec11,,,EA087,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA087,4,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA087,4,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA087,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA087,4,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA087,9,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,,,EA087,NA,,,, +Ec8,,1900,EA087,4,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA087,NA,,,, +Ed1,Kanghwa Island,1950,EA087,9,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA087,NA,,,, +Ed13,,,EA087,NA,,,, +Ed14,,,EA087,NA,,,, +Ed15a,,,EA087,NA,,,, +Ed15b,,,EA087,NA,,,, +Ed16,,,EA087,NA,,,, +Ed2,,,EA087,NA,,,, +Ed3,,,EA087,NA,,,, +Ed4,,,EA087,NA,,,, +Ed5,Okayama,1950,EA087,9,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA087,NA,,,, +Ed7,,1950,EA087,9,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA087,8,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,,EA087,NA,,,, +Ee1,,,EA087,NA,,,, +Ee2,,,EA087,NA,,,, +Ee3,Lingthem and vicinity,1930,EA087,8,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,,,EA087,NA,,,, +Ee5,,,EA087,NA,,,, +Ee6,,,EA087,NA,,,, +Ee7,,,EA087,NA,,,, +Ee8,,,EA087,NA,,,, +Ef1,,,EA087,NA,,,, +Ef10,,,EA087,NA,,,, +Ef11,Village and environs of Senapur,1945,EA087,8,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA087,8,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA087,NA,,,, +Ef4,,1920,EA087,8,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA087,3,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,,EA087,NA,,,, +Ef7,,,EA087,NA,,,, +Ef8,,,EA087,NA,,,, +Ef9,,,EA087,NA,,,, +Eg1,with special reference to the forest group,1940,EA087,4,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA087,8,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA087,NA,,,, +Eg12,,,EA087,NA,,,, +Eg13,,,EA087,NA,,,, +Eg14,,,EA087,NA,,,, +Eg2,,,EA087,NA,,,, +Eg3,,,EA087,NA,,,, +Eg4,,,EA087,NA,,,, +Eg5,,,EA087,NA,,,, +Eg6,with special reference to Northern Kerala,1799,EA087,8,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,,,EA087,NA,,,, +Eg8,,,EA087,NA,,,, +Eg9,,,EA087,NA,,,, +Eh1,,,EA087,NA,,,, +Eh10,,,EA087,NA,,,, +Eh2,,1900,EA087,8,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,,,EA087,NA,,,, +Eh4,with special reference to the Rock Vedda,1900,EA087,8,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA087,8,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA087,8,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA087,6,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,,EA087,NA,,,, +Eh9,,,EA087,NA,,,, +Ei1,,,EA087,NA,,,, +Ei10,,,EA087,NA,,,, +Ei11,,,EA087,NA,,,, +Ei12,,,EA087,NA,,,, +Ei13,,,EA087,NA,,,, +Ei14,,,EA087,NA,,,, +Ei15,,,EA087,NA,,,, +Ei16,,,EA087,NA,,,, +Ei17,,,EA087,NA,,,, +Ei18,,,EA087,NA,,,, +Ei19,,,EA087,NA,,,, +Ei2,,,EA087,NA,,,, +Ei20,,,EA087,NA,,,, +Ei3,,,EA087,NA,,,, +Ei4,,,EA087,NA,,,, +Ei5,,,EA087,NA,,,, +Ei6,,,EA087,NA,,,, +Ei7,,,EA087,NA,,,, +Ei8,,,EA087,NA,,,, +Ei9,,,EA087,NA,,,, +Ej1,,,EA087,NA,,,, +Ej10,,,EA087,NA,,,, +Ej11,,,EA087,NA,,,, +Ej12,,,EA087,NA,,,, +Ej13,,,EA087,NA,,,, +Ej14,,,EA087,NA,,,, +Ej15,,,EA087,NA,,,, +Ej16,,,EA087,NA,,,, +Ej2,,,EA087,NA,,,, +Ej3,,,EA087,NA,,,, +Ej4,Red River Delta in Tonkin,1950,EA087,8,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,,EA087,NA,,,, +Ej6,,,EA087,NA,,,, +Ej7,,,EA087,NA,,,, +Ej8,,,EA087,NA,,,, +Ej9,,1940,EA087,8,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,,,EA087,NA,,,, +Ia10,,,EA087,NA,,,, +Ia11,,,EA087,NA,,,, +Ia12,,,EA087,NA,,,, +Ia13,Tawi-Tawi and adjacent islands,1960,EA087,8,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA087,8,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA087,NA,,,, +Ia16,,,EA087,NA,,,, +Ia17,,,EA087,NA,,,, +Ia18,,,EA087,NA,,,, +Ia2,,,EA087,NA,,,, +Ia3,,,EA087,NA,,,, +Ia4,,,EA087,NA,,,, +Ia5,,,EA087,NA,,,, +Ia6,,,EA087,NA,,,, +Ia7,,,EA087,NA,,,, +Ia8,,,EA087,NA,,,, +Ia9,,,EA087,NA,,,, +Ib1,,,EA087,NA,,,, +Ib2,,,EA087,NA,,,, +Ib3,,,EA087,NA,,,, +Ib4,,,EA087,NA,,,, +Ib5,,,EA087,NA,,,, +Ib6,,,EA087,NA,,,, +Ib7,,,EA087,NA,,,, +Ib8,,,EA087,NA,,,, +Ib9,,,EA087,NA,,,, +Ic1,,,EA087,NA,,,, +Ic10,,,EA087,NA,,,, +Ic11,Allang,1950,EA087,8,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,,,EA087,NA,,,, +Ic13,,,EA087,NA,,,, +Ic2,,,EA087,NA,,,, +Ic3,,,EA087,NA,,,, +Ic4,,,EA087,NA,,,, +Ic5,Bare'e subgroup,1910,EA087,8,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,,EA087,NA,,,, +Ic7,,,EA087,NA,,,, +Ic8,,,EA087,NA,,,, +Ic9,,,EA087,NA,,,, +Id1,,,EA087,NA,,,, +Id10,,1930,EA087,7,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,,EA087,NA,,,, +Id12,,,EA087,NA,,,, +Id13,,,EA087,NA,,,, +Id2,,1930,EA087,5,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,,,EA087,NA,,,, +Id4,,,EA087,NA,,,, +Id5,,,EA087,NA,,,, +Id6,,,EA087,NA,,,, +Id7,,,EA087,NA,,,, +Id8,,1830,EA087,3,,roth1890,EthnographicAtlas_1967_p97, +Id9,,,EA087,NA,,,, +Ie1,,,EA087,NA,,,, +Ie10,,,EA087,NA,,,, +Ie11,,,EA087,NA,,,, +Ie12,,,EA087,NA,,,, +Ie13,,,EA087,NA,,,, +Ie14,,,EA087,NA,,,, +Ie15,,,EA087,NA,,,, +Ie16,,,EA087,NA,,,, +Ie17,,,EA087,NA,,,, +Ie18,Bamol Village,1940,EA087,8,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,,,EA087,NA,,,, +Ie2,,,EA087,NA,,,, +Ie20,,,EA087,NA,,,, +Ie21,,,EA087,NA,,,, +Ie22,,,EA087,NA,,,, +Ie23,,,EA087,NA,,,, +Ie24,,,EA087,NA,,,, +Ie25,,,EA087,NA,,,, +Ie26,,,EA087,NA,,,, +Ie27,,,EA087,NA,,,, +Ie28,,,EA087,NA,,,, +Ie29,,,EA087,NA,,,, +Ie3,,,EA087,NA,,,, +Ie30,,,EA087,NA,,,, +Ie31,,,EA087,NA,,,, +Ie32,,,EA087,NA,,,, +Ie33,,,EA087,NA,,,, +Ie34,,,EA087,NA,,,, +Ie35,,,EA087,NA,,,, +Ie36,,,EA087,NA,,,, +Ie37,,,EA087,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA087,8,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA087,9,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,,,EA087,NA,,,, +Ie5,,1930,EA087,8,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA087,NA,,,, +Ie7,,,EA087,NA,,,, +Ie8,,,EA087,NA,,,, +Ie9,,,EA087,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA087,8,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA087,NA,,,, +If11,,,EA087,NA,,,, +If12,,,EA087,NA,,,, +If13,,,EA087,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA087,8,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA087,8,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,,EA087,NA,,,, +If17,,,EA087,NA,,,, +If2,,,EA087,NA,,,, +If3,,,EA087,NA,,,, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA087,8,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,,EA087,NA,,,, +If6,,,EA087,NA,,,, +If7,,,EA087,NA,,,, +If8,,,EA087,NA,,,, +If9,,,EA087,NA,,,, +Ig1,Northeastern group,1940,EA087,8,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA087,NA,,,, +Ig11,,1920,EA087,8,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,,,EA087,NA,,,, +Ig13,,,EA087,NA,,,, +Ig14,,,EA087,NA,,,, +Ig15,,,EA087,NA,,,, +Ig16,,,EA087,NA,,,, +Ig17,,,EA087,NA,,,, +Ig18,,,EA087,NA,,,, +Ig19,,,EA087,NA,,,, +Ig2,,,EA087,NA,,,, +Ig20,,,EA087,NA,,,, +Ig21,,,EA087,NA,,,, +Ig3,,1930,EA087,8,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,,,EA087,NA,,,, +Ig5,,,EA087,NA,,,, +Ig6,,,EA087,NA,,,, +Ig7,,,EA087,NA,,,, +Ig8,,,EA087,NA,,,, +Ig9,,,EA087,NA,,,, +Ih1,,,EA087,NA,,,, +Ih10,,,EA087,NA,,,, +Ih11,,,EA087,NA,,,, +Ih12,,,EA087,NA,,,, +Ih13,,,EA087,NA,,,, +Ih14,,,EA087,NA,,,, +Ih2,,,EA087,NA,,,, +Ih3,Bunlap Village,1950,EA087,8,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,,,EA087,NA,,,, +Ih5,Neje Chiefdom,1860,EA087,8,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,,EA087,NA,,,, +Ih7,,,EA087,NA,,,, +Ih8,,,EA087,NA,,,, +Ih9,,,EA087,NA,,,, +Ii1,,,EA087,NA,,,, +Ii10,,,EA087,NA,,,, +Ii12,,,EA087,NA,,,, +Ii13,,,EA087,NA,,,, +Ii14,,,EA087,NA,,,, +Ii2,,,EA087,NA,,,, +Ii3,,,EA087,NA,,,, +Ii4,,,EA087,NA,,,, +Ii5,,,EA087,NA,,,, +Ii6,,,EA087,NA,,,, +Ii7,,,EA087,NA,,,, +Ii8,,,EA087,NA,,,, +Ii9,,,EA087,NA,,,, +Ij1,,,EA087,NA,,,, +Ij10,,,EA087,NA,,,, +Ij2,,,EA087,NA,,,, +Ij3,,,EA087,NA,,,, +Ij4,,,EA087,NA,,,, +Ij5,,,EA087,NA,,,, +Ij6,,1800,EA087,9,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,,EA087,NA,,,, +Ij8,,,EA087,NA,,,, +Ij9,,1860,EA087,7,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA087,7,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA087,8,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA087,7,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA087,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA087,2,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA087,4,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA087,8,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,,EA087,NA,,,, +Na17,"Lynx Point band, Fort Simpson",1860,EA087,8,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA087,4,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA087,9,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA087,8,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA087,8,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA087,8,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA087,8,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA087,6,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA087,8,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,,,EA087,NA,,,, +Na27,,,EA087,NA,,,, +Na28,,,EA087,NA,,,, +Na29,,,EA087,NA,,,, +Na3,Coronation Gulf,1920,EA087,8,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,,EA087,NA,,,, +Na31,with special reference to those of Albany and Moose Creek,1850,EA087,2,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA087,4,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,,,EA087,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA087,2,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA087,5,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA087,8,"Also a conical bark tipi, where roof shape would be conical (code ""4"")",barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,,EA087,NA,,,, +Na38,with special reference to the Lac Vieux Desert band,1800,EA087,5,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA087,4,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA087,8,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA087,4,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,,,EA087,NA,,,, +Na42,,,EA087,NA,,,, +Na43,,,EA087,NA,,,, +Na44,,,EA087,NA,,,, +Na45,,1900,EA087,NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,,,EA087,NA,,,, +Na6,,,EA087,NA,,,, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA087,4,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA087,8,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,,,EA087,NA,,,, +Nb1,,,EA087,NA,,,, +Nb10,,1865,EA087,8,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,,,EA087,NA,,,, +Nb12,,1880,EA087,8,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,,EA087,NA,,,, +Nb14,,,EA087,NA,,,, +Nb15,,1880,EA087,6,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA087,8,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA087,6,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,,EA087,NA,,,, +Nb19,,,EA087,NA,,,, +Nb2,Twana Tribe,1850,EA087,8,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,,EA087,NA,,,, +Nb21,,1860,EA087,8,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA087,4,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA087,4,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,,EA087,NA,,,, +Nb25,,1860,EA087,8,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,,EA087,NA,,,, +Nb27,with special reference to the Tait,1880,EA087,6,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA087,8,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,,EA087,NA,,,, +Nb3,,,EA087,NA,,,, +Nb30,,,EA087,NA,,,, +Nb31,,,EA087,NA,,,, +Nb32,,,EA087,NA,,,, +Nb33,,,EA087,NA,,,, +Nb34,,,EA087,NA,,,, +Nb35,,,EA087,NA,,,, +Nb36,,,EA087,NA,,,, +Nb37,,,EA087,NA,,,, +Nb38,,,EA087,NA,,,, +Nb39,,,EA087,NA,,,, +Nb4,,,EA087,NA,,,, +Nb5,,,EA087,NA,,,, +Nb6,,,EA087,NA,,,, +Nb7,,,EA087,NA,,,, +Nb8,,,EA087,NA,,,, +Nb9,,,EA087,NA,,,, +Nc1,,1850,EA087,4,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA087,2,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA087,4,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA087,4,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA087,4,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA087,4,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA087,4,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,,EA087,NA,,,, +Nc17,,,EA087,NA,,,, +Nc18,,,EA087,NA,,,, +Nc19,,,EA087,NA,,,, +Nc2,,1850,EA087,7,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,,EA087,NA,,,, +Nc21,,,EA087,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA087,7,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA087,4,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,,,EA087,NA,,,, +Nc25,,1860,EA087,5,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA087,9,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA087,NA,,,, +Nc28,,,EA087,NA,,,, +Nc29,,,EA087,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA087,2,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,,EA087,NA,,,, +Nc31,,,EA087,NA,,,, +Nc32,,,EA087,NA,,,, +Nc33,,1860,EA087,8,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,,EA087,NA,,,, +Nc4,,1860,EA087,4,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,,,EA087,NA,,,, +Nc6,,,EA087,NA,,,, +Nc7,,1850,EA087,4,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA087,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA087,7,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA087,4,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA087,8,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA087,4,"Also rectangular subterranean houses where walls are indistinguishable from gabled roof (code ""8""), made of mats/latticework",ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA087,4,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA087,4,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA087,8,"Also circular houses with ground-level floors, walls indistinguishable from conical-shaped (code ""4"") roofs made of grass/thatch or hides/skins",ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA087,4,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA087,8,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA087,8,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA087,8,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,,EA087,NA,,,, +Nd2,,1860,EA087,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA087,4,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,,EA087,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA087,4,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,,EA087,NA,,,, +Nd24,,,EA087,NA,,,, +Nd25,,,EA087,NA,,,, +Nd26,,1870,EA087,7,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,,EA087,NA,,,, +Nd28,,1870,EA087,4,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA087,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,,,EA087,NA,,,, +Nd30,,1870,EA087,4,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,,EA087,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA087,2,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA087,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA087,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,,EA087,NA,,,, +Nd36,,1870,EA087,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,,EA087,NA,,,, +Nd38,,1870,EA087,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,,,EA087,NA,,,, +Nd4,,1870,EA087,4,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,,EA087,NA,,,, +Nd41,,1870,EA087,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,,,EA087,NA,,,, +Nd43,,1860,EA087,4,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA087,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA087,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA087,4,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,,EA087,NA,,,, +Nd48,,,EA087,NA,,,, +Nd49,,,EA087,NA,,,, +Nd5,,1870,EA087,2,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,,EA087,NA,,,, +Nd51,,,EA087,NA,,,, +Nd52,,,EA087,NA,,,, +Nd53,,,EA087,NA,,,, +Nd54,,,EA087,NA,,,, +Nd55,,,EA087,NA,,,, +Nd56,,1860,EA087,4,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,,EA087,NA,,,, +Nd58,,1860,EA087,4,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA087,4,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA087,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,,EA087,NA,,,, +Nd61,,1860,EA087,4,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA087,4,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA087,4,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA087,4,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,,EA087,NA,,,, +Nd66,,,EA087,NA,,,, +Nd67,,1870,EA087,7,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA087,4,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA087,4,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA087,8,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,,,EA087,NA,,,, +Ne10,,1860,EA087,4,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,,EA087,NA,,,, +Ne12,,,EA087,NA,,,, +Ne13,,,EA087,NA,,,, +Ne14,,1850,EA087,4,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA087,4,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,,EA087,NA,,,, +Ne17,,,EA087,NA,,,, +Ne18,,,EA087,NA,,,, +Ne19,,,EA087,NA,,,, +Ne2,,,EA087,NA,,,, +Ne20,,,EA087,NA,,,, +Ne21,,,EA087,NA,,,, +Ne3,,,EA087,NA,,,, +Ne4,,,EA087,NA,,,, +Ne5,,,EA087,NA,,,, +Ne6,,1830,EA087,4,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,,EA087,NA,,,, +Ne8,,,EA087,NA,,,, +Ne9,,,EA087,NA,,,, +Nf10,,1870,EA087,4,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA087,4,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA087,4,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,,,EA087,NA,,,, +Nf14,,,EA087,NA,,,, +Nf15,,,EA087,NA,,,, +Nf2,,1850,EA087,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA087,4,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA087,NA,,,, +Nf5,,,EA087,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA087,4,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA087,2,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,,EA087,NA,,,, +Nf9,,,EA087,NA,,,, +Ng1,,,EA087,NA,,,, +Ng10,,,EA087,NA,,,, +Ng11,,,EA087,NA,,,, +Ng12,,1760,EA087,8,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA087,NA,,,, +Ng14,,,EA087,NA,,,, +Ng15,,,EA087,NA,,,, +Ng2,,,EA087,NA,,,, +Ng3,Upper division in Alabama,1750,EA087,4,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,1900,EA087,4,,speck1918; speck1940,Ethnology_Vol2_No1_Jan_1963, +Ng5,,1750,EA087,4,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,,,EA087,NA,,,, +Ng7,,,EA087,NA,,,, +Ng8,,,EA087,NA,,,, +Ng9,,,EA087,NA,,,, +Nh1,,,EA087,NA,,,, +Nh10,,,EA087,NA,,,, +Nh11,,,EA087,NA,,,, +Nh12,,,EA087,NA,,,, +Nh13,,,EA087,NA,,,, +Nh14,,,EA087,NA,,,, +Nh15,,,EA087,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA087,4,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,,EA087,NA,,,, +Nh18,,,EA087,NA,,,, +Nh19,,1850,EA087,7,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,,EA087,NA,,,, +Nh20,,,EA087,NA,,,, +Nh21,,,EA087,NA,,,, +Nh22,,1860,EA087,8,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,,EA087,NA,,,, +Nh24,,,EA087,NA,,,, +Nh25,,,EA087,NA,,,, +Nh26,,,EA087,NA,,,, +Nh27,,,EA087,NA,,,, +Nh3,,,EA087,NA,,,, +Nh4,,,EA087,NA,,,, +Nh5,,1850,EA087,7,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,,EA087,NA,,,, +Nh7,,,EA087,NA,,,, +Nh8,,,EA087,NA,,,, +Nh9,,,EA087,NA,,,, +Ni1,,,EA087,NA,,,, +Ni2,,1930,EA087,7,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,,,EA087,NA,,,, +Ni4,,,EA087,NA,,,, +Ni5,,,EA087,NA,,,, +Ni6,,,EA087,NA,,,, +Ni7,,,EA087,NA,,,, +Ni8,,,EA087,NA,,,, +Ni9,,,EA087,NA,,,, +Nj1,,,EA087,NA,,,, +Nj10,,,EA087,NA,,,, +Nj11,,,EA087,NA,,,, +Nj12,,,EA087,NA,,,, +Nj13,,,EA087,NA,,,, +Nj14,,,EA087,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA087,7,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p117, +Nj3,,,EA087,NA,,,, +Nj4,,,EA087,NA,,,, +Nj5,,,EA087,NA,,,, +Nj6,,,EA087,NA,,,, +Nj7,,,EA087,NA,,,, +Nj8,,1500,EA087,8,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,,EA087,NA,,,, +Sa1,,,EA087,NA,,,, +Sa10,,,EA087,NA,,,, +Sa11,,,EA087,NA,,,, +Sa12,,,EA087,NA,,,, +Sa13,,,EA087,NA,,,, +Sa14,,,EA087,NA,,,, +Sa15,,,EA087,NA,,,, +Sa16,,,EA087,NA,,,, +Sa17,,,EA087,NA,,,, +Sa2,,,EA087,NA,,,, +Sa3,,,EA087,NA,,,, +Sa4,,,EA087,NA,,,, +Sa5,,1950,EA087,8,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,,EA087,NA,,,, +Sa7,,,EA087,NA,,,, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA087,8,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA087,8,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,,,EA087,NA,,,, +Sb2,,1940,EA087,4,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA087,NA,,,, +Sb4,,,EA087,NA,,,, +Sb5,,,EA087,NA,,,, +Sb6,,,EA087,NA,,,, +Sb7,,,EA087,NA,,,, +Sb8,,1520,EA087,8,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,,EA087,NA,,,, +Sc1,,,EA087,NA,,,, +Sc10,,,EA087,NA,,,, +Sc11,,,EA087,NA,,,, +Sc12,,,EA087,NA,,,, +Sc13,,,EA087,NA,,,, +Sc14,,,EA087,NA,,,, +Sc15,,,EA087,NA,,,, +Sc16,,,EA087,NA,,,, +Sc17,,,EA087,NA,,,, +Sc18,,,EA087,NA,,,, +Sc2,,,EA087,NA,,,, +Sc3,,,EA087,NA,,,, +Sc4,,,EA087,NA,,,, +Sc5,,1900,EA087,8,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,,,EA087,NA,,,, +Sc7,,,EA087,NA,,,, +Sc8,,1950,EA087,8,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,,EA087,NA,,,, +Sd1,Cabrura village,1950,EA087,9,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA087,NA,,,, +Sd3,,,EA087,NA,,,, +Sd4,,,EA087,NA,,,, +Sd5,,,EA087,NA,,,, +Sd6,,,EA087,NA,,,, +Sd7,,1950,EA087,8,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,,EA087,NA,,,, +Sd9,,,EA087,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA087,6,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA087,NA,,,, +Se11,,,EA087,NA,,,, +Se12,,,EA087,NA,,,, +Se2,,1940,EA087,8,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,,EA087,NA,,,, +Se4,,,EA087,NA,,,, +Se5,Village on Caduiari River,1940,EA087,9,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,,EA087,NA,,,, +Se7,,,EA087,NA,,,, +Se8,Upper Inuya River,1950,EA087,9,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,,EA087,NA,,,, +Sf1,City and environs of Cuzco,1530,EA087,9,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,,,EA087,NA,,,, +Sf3,,,EA087,NA,,,, +Sf4,,1950,EA087,8,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA087,9,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA087,4,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA087,2,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA087,NA,,,, +Sf9,,,EA087,NA,,,, +Sg1,Eastern and central,1870,EA087,4,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA087,8,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA087,4,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,,,EA087,NA,,,, +Sg5,,,EA087,NA,,,, +Sh1,,,EA087,NA,,,, +Sh2,,,EA087,NA,,,, +Sh3,,,EA087,NA,,,, +Sh4,,,EA087,NA,,,, +Sh5,,,EA087,NA,,,, +Sh6,,,EA087,NA,,,, +Sh7,,,EA087,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA087,6,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA087,NA,,,, +Si1,Kejara,1920,EA087,4,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,,EA087,NA,,,, +Si2,,,EA087,NA,,,, +Si3,,,EA087,NA,,,, +Si4,Cocozu Group,1940,EA087,5,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,,EA087,NA,,,, +Si6,,,EA087,NA,,,, +Si7,,,EA087,NA,,,, +Si8,,,EA087,NA,,,, +Si9,,,EA087,NA,,,, +Sj1,,,EA087,NA,,,, +Sj10,,,EA087,NA,,,, +Sj11,,,EA087,NA,,,, +Sj2,,,EA087,NA,,,, +Sj3,,,EA087,NA,,,, +Sj4,,,EA087,NA,,,, +Sj5,Naknenuk subtribe,1880,EA087,6,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,,,EA087,NA,,,, +Sj7,,,EA087,NA,,,, +Sj8,,,EA087,NA,,,, +Sj9,,1950,EA087,9,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA087,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA087,8,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA087,9,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA087,9,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,,,EA087,NA,,,, +ch17,with special reference to those of the Benderskij Uezd,1894,EA087,7,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,,,EA087,NA,,,, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA087,8,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA087,9,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA087,9,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,,,EA087,NA,,,, +ch23,,,EA087,NA,,,, +ch24,,,EA087,NA,,,, +ch25,with special reference to the Beletskij Uezd,1900,EA087,8,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA087,8,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA087,8,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,,,EA087,NA,,,, +ec12,Avam (Western) group,1930,EA087,4,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA087,4,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA087,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA087,4,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA087,4,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA087,8,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA087,8,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA087,8,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA087,8,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA087,8,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA088,8,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p65, +Aa2,,,EA088,NA,,,, +Aa3,,,EA088,NA,,,, +Aa4,,,EA088,NA,,,, +Aa5,,,EA088,NA,,,, +Aa6,,1920,EA088,9,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p65, +Aa7,,,EA088,NA,,,, +Aa8,,1850,EA088,8,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,,,EA088,NA,,,, +Ab1,,,EA088,NA,,,, +Ab10,,1936,EA088,8,,hunter1936,EthnographicAtlas_1967_p65, +Ab11,,,EA088,NA,,,, +Ab12,,,EA088,NA,,,, +Ab13,,,EA088,NA,,,, +Ab14,,,EA088,NA,,,, +Ab15,,,EA088,NA,,,, +Ab16,,,EA088,NA,,,, +Ab17,,,EA088,NA,,,, +Ab18,,,EA088,NA,,,, +Ab19,,,EA088,NA,,,, +Ab2,,1880,EA088,8,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p65, +Ab20,,,EA088,NA,,,, +Ab21a,,,EA088,NA,,,, +Ab21b,,,EA088,NA,,,, +Ab22,,,EA088,NA,,,, +Ab3,Ruling Luyana,1890,EA088,8,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p65, +Ab4,,,EA088,NA,,,, +Ab5,,,EA088,NA,,,, +Ab6,,,EA088,NA,,,, +Ab7,,,EA088,NA,,,, +Ab8,,,EA088,NA,,,, +Ab9,,1870,EA088,8,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p65, +Ac1,,,EA088,NA,,,, +Ac10,,,EA088,NA,,,, +Ac11,,1930,EA088,8,,mcculloch1951; white1955,EthnographicAtlas_1967_p65, +Ac12,,,EA088,NA,,,, +Ac13,,,EA088,NA,,,, +Ac14,,1900,EA088,8,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p65, +Ac15,,,EA088,NA,,,, +Ac16,,,EA088,NA,,,, +Ac17,,,EA088,NA,,,, +Ac18,,,EA088,NA,,,, +Ac19,,,EA088,NA,,,, +Ac2,,,EA088,NA,,,, +Ac20,,,EA088,NA,,,, +Ac21,,,EA088,NA,,,, +Ac22,,,EA088,NA,,,, +Ac23,,,EA088,NA,,,, +Ac24,,,EA088,NA,,,, +Ac25,,,EA088,NA,,,, +Ac26,,,EA088,NA,,,, +Ac27,,,EA088,NA,,,, +Ac28,,,EA088,NA,,,, +Ac29,,,EA088,NA,,,, +Ac3,,,EA088,NA,,,, +Ac30,,,EA088,NA,,,, +Ac31,,,EA088,NA,,,, +Ac32,,1920,EA088,8,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,,EA088,NA,,,, +Ac34,,,EA088,NA,,,, +Ac35,,,EA088,NA,,,, +Ac36,,,EA088,NA,,,, +Ac37,,,EA088,NA,,,, +Ac38,,,EA088,NA,,,, +Ac39,,1920,EA088,8,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,,,EA088,NA,,,, +Ac40,,1900,EA088,8,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,,EA088,NA,,,, +Ac42,,,EA088,NA,,,, +Ac43,,,EA088,NA,,,, +Ac5,,,EA088,NA,,,, +Ac6,,,EA088,NA,,,, +Ac7,,1920,EA088,8,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p65, +Ac8,,,EA088,NA,,,, +Ac9,,,EA088,NA,,,, +Ad1,,1950,EA088,8,,grottanelli1955,EthnographicAtlas_1967_p65, +Ad10,,1910,EA088,8,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p69, +Ad11,,1930,EA088,9,,culwickandculwick1935,EthnographicAtlas_1967_p69, +Ad12,,,EA088,NA,,,, +Ad13,,1930,EA088,9,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p69, +Ad14,Morogoro District,1930,EA088,8,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p69, +Ad15,,,EA088,NA,,,, +Ad16,,,EA088,NA,,,, +Ad17,,,EA088,NA,,,, +Ad18,,,EA088,NA,,,, +Ad19,,1910,EA088,8,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p69, +Ad2,,,EA088,NA,,,, +Ad20,,1920,EA088,9,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p69, +Ad21,,,EA088,NA,,,, +Ad22,,,EA088,NA,,,, +Ad23,,,EA088,NA,,,, +Ad24,,,EA088,NA,,,, +Ad25,,,EA088,NA,,,, +Ad26,,,EA088,NA,,,, +Ad27,,1880,EA088,8,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA088,8,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,,EA088,NA,,,, +Ad3,,,EA088,NA,,,, +Ad30,,,EA088,NA,,,, +Ad31,,,EA088,NA,,,, +Ad32,,,EA088,NA,,,, +Ad33,,,EA088,NA,,,, +Ad34,,,EA088,NA,,,, +Ad35,,,EA088,NA,,,, +Ad36,,,EA088,NA,,,, +Ad37,,,EA088,NA,,,, +Ad38,,,EA088,NA,,,, +Ad39,,,EA088,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA088,8,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p65, +Ad40,,,EA088,NA,,,, +Ad41,,,EA088,NA,,,, +Ad42,,,EA088,NA,,,, +Ad43,,,EA088,NA,,,, +Ad44,,,EA088,NA,,,, +Ad45,,,EA088,NA,,,, +Ad46,,1950,EA088,8,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p69, +Ad47,,,EA088,NA,,,, +Ad48,,,EA088,NA,,,, +Ad49,,,EA088,NA,,,, +Ad5,,,EA088,NA,,,, +Ad50,with special reference to the Mountain Kaguru,1900,EA088,8,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA088,9,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA088,8,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p65, +Ad7,,,EA088,NA,,,, +Ad8,,,EA088,NA,,,, +Ad9,,,EA088,NA,,,, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA088,8,,winter1956; winter1958,EthnographicAtlas_1967_p69, +Ae10,,,EA088,NA,,,, +Ae11,,,EA088,NA,,,, +Ae12,,,EA088,NA,,,, +Ae13,,,EA088,NA,,,, +Ae14,,,EA088,NA,,,, +Ae15,,,EA088,NA,,,, +Ae16,,,EA088,NA,,,, +Ae17,,,EA088,NA,,,, +Ae18,,1900,EA088,8,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,,EA088,NA,,,, +Ae2,,,EA088,NA,,,, +Ae20,,,EA088,NA,,,, +Ae21,,,EA088,NA,,,, +Ae22,,,EA088,NA,,,, +Ae23,,,EA088,NA,,,, +Ae24,,,EA088,NA,,,, +Ae25,with special reference to the northern Tetela,1920,EA088,8,,heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,,EA088,NA,,,, +Ae27,,,EA088,NA,,,, +Ae28,,1900,EA088,8,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p69, +Ae29,,,EA088,NA,,,, +Ae3,,,EA088,NA,,,, +Ae30,,,EA088,NA,,,, +Ae31,,,EA088,NA,,,, +Ae32,,,EA088,NA,,,, +Ae33,,1920,EA088,8,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,,EA088,NA,,,, +Ae35,,1900,EA088,8,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,,EA088,NA,,,, +Ae37,,,EA088,NA,,,, +Ae38,,,EA088,NA,,,, +Ae39,,,EA088,NA,,,, +Ae4,,,EA088,NA,,,, +Ae40,,,EA088,NA,,,, +Ae41,,,EA088,NA,,,, +Ae42,,,EA088,NA,,,, +Ae43,,,EA088,NA,,,, +Ae44,,,EA088,NA,,,, +Ae45,,,EA088,NA,,,, +Ae46,,,EA088,NA,,,, +Ae47,,,EA088,NA,,,, +Ae48,,1930,EA088,8,,mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p69, +Ae49,,,EA088,NA,,,, +Ae5,,,EA088,NA,,,, +Ae50,,1920,EA088,8,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p69, +Ae51,,,EA088,NA,,,, +Ae52,,,EA088,NA,,,, +Ae53,,,EA088,NA,,,, +Ae54,,,EA088,NA,,,, +Ae55,,,EA088,NA,,,, +Ae56,,,EA088,NA,,,, +Ae57,,,EA088,NA,,,, +Ae58,,,EA088,NA,,,, +Ae59,,,EA088,NA,,,, +Ae6,,,EA088,NA,,,, +Ae7,,1910,EA088,8,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p69, +Ae8,,,EA088,NA,,,, +Ae9,,,EA088,NA,,,, +Af1,,,EA088,NA,,,, +Af10,,,EA088,NA,,,, +Af11,,,EA088,NA,,,, +Af12,,,EA088,NA,,,, +Af13,,1920,EA088,8,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p73, +Af14,,1930,EA088,8,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p73, +Af15,,1920,EA088,8,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p73, +Af16,,,EA088,NA,,,, +Af17,,,EA088,NA,,,, +Af18,,,EA088,NA,,,, +Af19,,,EA088,NA,,,, +Af2,,,EA088,NA,,,, +Af20,,,EA088,NA,,,, +Af21,,,EA088,NA,,,, +Af22,,,EA088,NA,,,, +Af23,,,EA088,NA,,,, +Af24,,,EA088,NA,,,, +Af25,,,EA088,NA,,,, +Af26,,,EA088,NA,,,, +Af27,,,EA088,NA,,,, +Af28,,,EA088,NA,,,, +Af29,,,EA088,NA,,,, +Af3,,,EA088,NA,,,, +Af30,,,EA088,NA,,,, +Af31,,,EA088,NA,,,, +Af32,,,EA088,NA,,,, +Af33,,,EA088,NA,,,, +Af34,,,EA088,NA,,,, +Af35,,,EA088,NA,,,, +Af36,,,EA088,NA,,,, +Af37,with special reference to the Akpafu,1900,EA088,8,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,,EA088,NA,,,, +Af39,,,EA088,NA,,,, +Af4,,,EA088,NA,,,, +Af40,,,EA088,NA,,,, +Af41,,,EA088,NA,,,, +Af42,,,EA088,NA,,,, +Af43,,,EA088,NA,,,, +Af44,,,EA088,NA,,,, +Af45,,,EA088,NA,,,, +Af46,,,EA088,NA,,,, +Af47,,,EA088,NA,,,, +Af48,,1850,EA088,7,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,,EA088,NA,,,, +Af5,,1930,EA088,8,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p73, +Af50,,,EA088,NA,,,, +Af51,,,EA088,NA,,,, +Af52,,1920,EA088,8,,tauxier1924a,EthnographicAtlas_1967_p73, +Af53,,,EA088,NA,,,, +Af54,,,EA088,NA,,,, +Af55,,,EA088,NA,,,, +Af56,,,EA088,NA,,,, +Af57,,,EA088,NA,,,, +Af58,,,EA088,NA,,,, +Af6,,,EA088,NA,,,, +Af7,,,EA088,NA,,,, +Af8,,,EA088,NA,,,, +Af9,,,EA088,NA,,,, +Ag1,Segou to Bamako on Niger River,1920,EA088,8,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p73, +Ag10,,,EA088,NA,,,, +Ag11,,,EA088,NA,,,, +Ag12,,1910,EA088,9,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p73, +Ag13,,1910,EA088,8,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p73, +Ag14,,1950,EA088,8,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA088,8,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,,EA088,NA,,,, +Ag17,,,EA088,NA,,,, +Ag18,,,EA088,NA,,,, +Ag19,,,EA088,NA,,,, +Ag2,,,EA088,NA,,,, +Ag20,,,EA088,NA,,,, +Ag21,,,EA088,NA,,,, +Ag22,,,EA088,NA,,,, +Ag23,,,EA088,NA,,,, +Ag24,,,EA088,NA,,,, +Ag25,,1900,EA088,8,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p73, +Ag26,,1930,EA088,9,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p73, +Ag27,,,EA088,NA,,,, +Ag28,,,EA088,NA,,,, +Ag29,,,EA088,NA,,,, +Ag3,,,EA088,NA,,,, +Ag30,,,EA088,NA,,,, +Ag31,,,EA088,NA,,,, +Ag32,,1900,EA088,9,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p73, +Ag33,,,EA088,NA,,,, +Ag34,,1930,EA088,8,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA088,8,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,,EA088,NA,,,, +Ag37,,,EA088,NA,,,, +Ag38,,,EA088,NA,,,, +Ag39,,1910,EA088,8,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA088,9,,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p73, +Ag40,,1910,EA088,8,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,,EA088,NA,,,, +Ag42,,,EA088,NA,,,, +Ag43,,,EA088,NA,,,, +Ag44,,,EA088,NA,,,, +Ag45,with special reference to those in the Diapaga region,1930,EA088,9,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,,EA088,NA,,,, +Ag47,,,EA088,NA,,,, +Ag48,,,EA088,NA,,,, +Ag49,,,EA088,NA,,,, +Ag5,,,EA088,NA,,,, +Ag50,,,EA088,NA,,,, +Ag51,,,EA088,NA,,,, +Ag52,,,EA088,NA,,,, +Ag53,,,EA088,NA,,,, +Ag54,,,EA088,NA,,,, +Ag6,,1890,EA088,8,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p73, +Ag7,,1930,EA088,8,,malzy1946; ortoli1939,EthnographicAtlas_1967_p73, +Ag8,,,EA088,NA,,,, +Ag9,,,EA088,NA,,,, +Ah1,,,EA088,NA,,,, +Ah10,,,EA088,NA,,,, +Ah11,,,EA088,NA,,,, +Ah12,,,EA088,NA,,,, +Ah13,,,EA088,NA,,,, +Ah14,,,EA088,NA,,,, +Ah15,,1920,EA088,8,,gunnandconant1960; harris1930,EthnographicAtlas_1967_p77, +Ah16,,,EA088,NA,,,, +Ah17,,,EA088,NA,,,, +Ah18,,,EA088,NA,,,, +Ah19,,,EA088,NA,,,, +Ah2,,,EA088,NA,,,, +Ah20,,1920,EA088,8,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p77, +Ah21,,,EA088,NA,,,, +Ah22,,,EA088,NA,,,, +Ah23,,,EA088,NA,,,, +Ah24,,,EA088,NA,,,, +Ah25,,1920,EA088,8,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah26,,,EA088,NA,,,, +Ah27,,,EA088,NA,,,, +Ah28,,,EA088,NA,,,, +Ah29,,,EA088,NA,,,, +Ah3,,,EA088,NA,,,, +Ah30,,,EA088,NA,,,, +Ah31,,,EA088,NA,,,, +Ah32,,,EA088,NA,,,, +Ah33,,1920,EA088,8,,meek1931b; temple1922,EthnographicAtlas_1967_p77, +Ah34,,,EA088,NA,,,, +Ah35,,,EA088,NA,,,, +Ah36,,,EA088,NA,,,, +Ah37,,1920,EA088,8,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,,EA088,NA,,,, +Ah39,,,EA088,NA,,,, +Ah4,,,EA088,NA,,,, +Ah5,,,EA088,NA,,,, +Ah6,,,EA088,NA,,,, +Ah7,,,EA088,NA,,,, +Ah8,,,EA088,NA,,,, +Ah9,,,EA088,NA,,,, +Ai1,,,EA088,NA,,,, +Ai10,,,EA088,NA,,,, +Ai11,,,EA088,NA,,,, +Ai12,,,EA088,NA,,,, +Ai13,,,EA088,NA,,,, +Ai14,,,EA088,NA,,,, +Ai15,,,EA088,NA,,,, +Ai16,,,EA088,NA,,,, +Ai17,,,EA088,NA,,,, +Ai18,,1880,EA088,9,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA088,8,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,,EA088,NA,,,, +Ai20,,,EA088,NA,,,, +Ai21,,1880,EA088,9,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p77, +Ai22,,,EA088,NA,,,, +Ai23,,1920,EA088,8,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p77, +Ai24,,,EA088,NA,,,, +Ai25,,1950,EA088,8,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA088,8,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p77, +Ai27,,,EA088,NA,,,, +Ai28,,1910,EA088,8,,delhaise1912,EthnographicAtlas_1967_p77, +Ai29,,,EA088,NA,,,, +Ai3,,,EA088,NA,,,, +Ai30,,,EA088,NA,,,, +Ai31,,,EA088,NA,,,, +Ai32,,,EA088,NA,,,, +Ai33,,,EA088,NA,,,, +Ai34,,,EA088,NA,,,, +Ai35,,,EA088,NA,,,, +Ai36,,,EA088,NA,,,, +Ai37,,,EA088,NA,,,, +Ai38,,,EA088,NA,,,, +Ai39,,,EA088,NA,,,, +Ai4,,,EA088,NA,,,, +Ai40,,,EA088,NA,,,, +Ai41,,,EA088,NA,,,, +Ai42,,,EA088,NA,,,, +Ai43,,,EA088,NA,,,, +Ai44,,,EA088,NA,,,, +Ai45,,,EA088,NA,,,, +Ai46,,,EA088,NA,,,, +Ai47,Northern division,1939,EA088,8,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p77, +Ai5,,,EA088,NA,,,, +Ai6,,,EA088,NA,,,, +Ai7,,1910,EA088,8,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p77, +Ai8,,,EA088,NA,,,, +Ai9,,,EA088,NA,,,, +Aj1,,1950,EA088,8,,lawrance1957,EthnographicAtlas_1967_p77, +Aj10,,,EA088,NA,,,, +Aj11,,,EA088,NA,,,, +Aj12,,,EA088,NA,,,, +Aj13,,,EA088,NA,,,, +Aj14,,,EA088,NA,,,, +Aj15,,,EA088,NA,,,, +Aj16,,,EA088,NA,,,, +Aj17,,1890,EA088,8,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p81, +Aj18,,,EA088,NA,,,, +Aj19,,,EA088,NA,,,, +Aj2,,,EA088,NA,,,, +Aj20,,,EA088,NA,,,, +Aj21,,,EA088,NA,,,, +Aj22,,,EA088,NA,,,, +Aj23,,,EA088,NA,,,, +Aj24,,1930,EA088,8,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p81, +Aj25,,,EA088,NA,,,, +Aj26,,,EA088,NA,,,, +Aj27,,1920,EA088,9,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,,EA088,NA,,,, +Aj29,,,EA088,NA,,,, +Aj3,,1930,EA088,8,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p81, +Aj30,,,EA088,NA,,,, +Aj31,,,EA088,NA,,,, +Aj4,,1920,EA088,8,,driberg1923; hayley1947,EthnographicAtlas_1967_p81, +Aj5,,1920,EA088,8,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p81, +Aj6,,,EA088,NA,,,, +Aj7,,,EA088,NA,,,, +Aj8,,,EA088,NA,,,, +Aj9,,,EA088,NA,,,, +Ca1,,,EA088,NA,,,, +Ca10,,,EA088,NA,,,, +Ca11,,1890,EA088,8,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p81, +Ca12,,,EA088,NA,,,, +Ca13,,,EA088,NA,,,, +Ca14,,,EA088,NA,,,, +Ca15,,,EA088,NA,,,, +Ca16,,,EA088,NA,,,, +Ca17,,,EA088,NA,,,, +Ca18,,,EA088,NA,,,, +Ca19,,,EA088,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA088,8,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p81, +Ca20,,1890,EA088,7,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,,EA088,NA,,,, +Ca22,,,EA088,NA,,,, +Ca23,,1950,EA088,8,,jensen1959,EthnographicAtlas_1967_p81, +Ca24,,,EA088,NA,,,, +Ca25,,,EA088,NA,,,, +Ca26,,,EA088,NA,,,, +Ca27,,1930,EA088,8,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,,EA088,NA,,,, +Ca29,,,EA088,NA,,,, +Ca3,,,EA088,NA,,,, +Ca30,Kafa Kingdom,1890,EA088,8,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p81, +Ca31,,,EA088,NA,,,, +Ca32,,,EA088,NA,,,, +Ca33,,1860,EA088,8,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p81, +Ca34,,1920,EA088,7,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,,EA088,NA,,,, +Ca36,,,EA088,NA,,,, +Ca37,,,EA088,NA,,,, +Ca38,,,EA088,NA,,,, +Ca39,,,EA088,NA,,,, +Ca4,,1950,EA088,9,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p81, +Ca40,,,EA088,NA,,,, +Ca41,,,EA088,NA,,,, +Ca42,,,EA088,NA,,,, +Ca43,,,EA088,NA,,,, +Ca5,,,EA088,NA,,,, +Ca6,,1880,EA088,8,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p81, +Ca7,,,EA088,NA,,,, +Ca8,,,EA088,NA,,,, +Ca9,,,EA088,NA,,,, +Cb1,,,EA088,NA,,,, +Cb10,,,EA088,NA,,,, +Cb11,,,EA088,NA,,,, +Cb12,,,EA088,NA,,,, +Cb13,,,EA088,NA,,,, +Cb14,,,EA088,NA,,,, +Cb15,with special reference to the Humr,1940,EA088,7,,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA088,8,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA088,8,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p81, +Cb18,,,EA088,NA,,,, +Cb19,,1870,EA088,8,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p81, +Cb2,,,EA088,NA,,,, +Cb20,,,EA088,NA,,,, +Cb21,,,EA088,NA,,,, +Cb22,,1920,EA088,8,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,,EA088,NA,,,, +Cb24,,,EA088,NA,,,, +Cb25,,,EA088,NA,,,, +Cb26,,,EA088,NA,,,, +Cb27,,,EA088,NA,,,, +Cb28,,,EA088,NA,,,, +Cb29,,,EA088,NA,,,, +Cb3,Bamba division,1940,EA088,9,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p81, +Cb4,,,EA088,NA,,,, +Cb5,,,EA088,NA,,,, +Cb6,,,EA088,NA,,,, +Cb7,,1920,EA088,9,,meek1931b:288-310,EthnographicAtlas_1967_p81, +Cb8,,,EA088,NA,,,, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA088,9,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p81, +Cc1,,,EA088,NA,,,, +Cc10,,1900,EA088,7,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p85, +Cc11,,1860,EA088,8,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,,EA088,NA,,,, +Cc13,,1920,EA088,7,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA088,7,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA088,NA,,,, +Cc16,,1930,EA088,9,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p85, +Cc17,,,EA088,NA,,,, +Cc18,,,EA088,NA,,,, +Cc19,,,EA088,NA,,,, +Cc2,Nomads of Tibesti,1950,EA088,8,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p85, +Cc20,,,EA088,NA,,,, +Cc3,,,EA088,NA,,,, +Cc4,,,EA088,NA,,,, +Cc5,,1910,EA088,8,,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p85, +Cc6,,,EA088,NA,,,, +Cc7,Timbuctoo,1950,EA088,9,,miner1953,Ethnology_Vol4_No3_Jul_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA088,7,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA088,9,"Also similarly shaped houses with conical roofs of grass/thatch (code ""8"") (walls also of grass/thatch) OR rounded roofs of mats/latticework (code ""7"") (walls also of mats/latticework)",benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p85, +Cd1,Kenuzi Nubians of Dahmit,1920,EA088,7,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p85, +Cd10,,,EA088,NA,,,, +Cd11,,,EA088,NA,,,, +Cd12,,1870,EA088,8,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p85, +Cd13,,,EA088,NA,,,, +Cd14,,,EA088,NA,,,, +Cd15,,1910,EA088,8,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,,,EA088,NA,,,, +Cd17,,,EA088,NA,,,, +Cd18,,,EA088,NA,,,, +Cd19,,1920,EA088,8,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,,,EA088,NA,,,, +Cd20,,,EA088,NA,,,, +Cd21,,,EA088,NA,,,, +Cd3,,,EA088,NA,,,, +Cd4,,,EA088,NA,,,, +Cd5,,,EA088,NA,,,, +Cd6,,,EA088,NA,,,, +Cd7,,,EA088,NA,,,, +Cd8,,,EA088,NA,,,, +Cd9,,,EA088,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA088,11,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p85, +Ce2,,,EA088,NA,,,, +Ce3,,,EA088,NA,,,, +Ce4,,,EA088,NA,,,, +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA088,1,,parsons1964,EthnographicAtlas_1967_p85, +Ce6,,,EA088,NA,,,, +Ce7,,,EA088,NA,,,, +Ce8,,,EA088,NA,,,, +Cf1,,,EA088,NA,,,, +Cf2,,,EA088,NA,,,, +Cf3,,,EA088,NA,,,, +Cf4,,,EA088,NA,,,, +Cf5,,,EA088,NA,,,, +Cg1,,,EA088,NA,,,, +Cg2,,,EA088,NA,,,, +Cg3,,,EA088,NA,,,, +Cg4,,,EA088,NA,,,, +Cg5,,,EA088,NA,,,, +Ch1,,,EA088,NA,,,, +Ch10,,,EA088,NA,,,, +Ch11,Viriatino Village,1955,EA088,3,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,,EA088,NA,,,, +Ch3,,,EA088,NA,,,, +Ch4,,,EA088,NA,,,, +Ch5,,,EA088,NA,,,, +Ch6,,,EA088,NA,,,, +Ch7,,,EA088,NA,,,, +Ch8,,,EA088,NA,,,, +Ch9,,,EA088,NA,,,, +Ci1,,,EA088,NA,,,, +Ci10,,,EA088,NA,,,, +Ci11,,1940,EA088,6,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p85, +Ci12,,,EA088,NA,,,, +Ci2,,,EA088,NA,,,, +Ci3,,,EA088,NA,,,, +Ci4,,,EA088,NA,,,, +Ci5,,,EA088,NA,,,, +Ci6,,,EA088,NA,,,, +Ci7,,,EA088,NA,,,, +Ci8,,,EA088,NA,,,, +Ci9,,,EA088,NA,,,, +Cj1,with special reference to the village of Tell Toqaan,1950,EA088,8,,sweet1960,EthnographicAtlas_1967_p85, +Cj10,,,EA088,NA,,,, +Cj2,,,EA088,NA,,,, +Cj3,,,EA088,NA,,,, +Cj4,,,EA088,NA,,,, +Cj5,,,EA088,NA,,,, +Cj6,,,EA088,NA,,,, +Cj7,with special reference to the village of Munsif,1950,EA088,11,,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p89, +Cj8,,,EA088,NA,,,, +Cj9,,,EA088,NA,,,, +Ea1,,,EA088,NA,,,, +Ea10,with special reference to the more nomadic groups,1950,EA088,8,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,,,EA088,NA,,,, +Ea12,,,EA088,NA,,,, +Ea13,Mohla Village,1950,EA088,2,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,,,EA088,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA088,8,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p89, +Ea4,,,EA088,NA,,,, +Ea5,,,EA088,NA,,,, +Ea6,Nomadic branch,1958,EA088,6,,barth1961; barth1964,EthnographicAtlas_1967_p89, +Ea7,,1950,EA088,6,,schurmann1962,EthnographicAtlas_1967_p89, +Ea8,,,EA088,NA,,,, +Ea9,,,EA088,NA,,,, +Eb1,Great Horde,1910,EA088,9,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p89, +Eb2,,,EA088,NA,,,, +Eb3,,,EA088,NA,,,, +Eb4,,,EA088,NA,,,, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA088,9,,freikin1954; odonovan1882,Ethnology_Vol2_No1_Jan_1963, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA088,9,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,,EA088,NA,,,, +Eb8,,,EA088,NA,,,, +Ec1,Sakhalin Island,1920,EA088,8,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p89, +Ec10,with special reference to those on the Ob River,1880,EA088,9,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p89, +Ec11,,,EA088,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA088,4,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA088,8,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p89, +Ec4,,,EA088,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA088,3,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p89, +Ec6,Upper Kolyma River,1850,EA088,3,,jochelson191926,EthnographicAtlas_1967_p89, +Ec7,,,EA088,NA,,,, +Ec8,,1900,EA088,4,,shimkin1939,EthnographicAtlas_1967_p89, +Ec9,,,EA088,NA,,,, +Ed1,Kanghwa Island,1950,EA088,8,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p89, +Ed10,,,EA088,NA,,,, +Ed13,,,EA088,NA,,,, +Ed14,,,EA088,NA,,,, +Ed15a,,,EA088,NA,,,, +Ed15b,,,EA088,NA,,,, +Ed16,,,EA088,NA,,,, +Ed2,,,EA088,NA,,,, +Ed3,,,EA088,NA,,,, +Ed4,,,EA088,NA,,,, +Ed5,Okayama,1950,EA088,8,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA088,NA,,,, +Ed7,,1950,EA088,11,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p89, +Ed8,,1930,EA088,8,,fitzgerald1941,EthnographicAtlas_1967_p89, +Ed9,,,EA088,NA,,,, +Ee1,,,EA088,NA,,,, +Ee2,,,EA088,NA,,,, +Ee3,Lingthem and vicinity,1930,EA088,8,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p89, +Ee4,,,EA088,NA,,,, +Ee5,,,EA088,NA,,,, +Ee6,,,EA088,NA,,,, +Ee7,,,EA088,NA,,,, +Ee8,,,EA088,NA,,,, +Ef1,,,EA088,NA,,,, +Ef10,,,EA088,NA,,,, +Ef11,Village and environs of Senapur,1945,EA088,11,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA088,8,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,,EA088,NA,,,, +Ef4,,1920,EA088,11,,chatterjeeanddas1927; majumdar1937,Ethnology_Vol2_No1_Jan_1963, +Ef5,,1900,EA088,8,,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p89, +Ef6,,,EA088,NA,,,, +Ef7,,,EA088,NA,,,, +Ef8,,,EA088,NA,,,, +Ef9,,,EA088,NA,,,, +Eg1,with special reference to the forest group,1940,EA088,8,,furerhaimendorf1943b,EthnographicAtlas_1967_p89,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA088,11,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p93, +Eg11,,,EA088,NA,,,, +Eg12,,,EA088,NA,,,, +Eg13,,,EA088,NA,,,, +Eg14,,,EA088,NA,,,, +Eg2,,,EA088,NA,,,, +Eg3,,,EA088,NA,,,, +Eg4,,,EA088,NA,,,, +Eg5,,,EA088,NA,,,, +Eg6,with special reference to Northern Kerala,1799,EA088,8,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p93, +Eg7,,,EA088,NA,,,, +Eg8,,,EA088,NA,,,, +Eg9,,,EA088,NA,,,, +Eh1,,,EA088,NA,,,, +Eh10,,,EA088,NA,,,, +Eh2,,1900,EA088,8,,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p93, +Eh3,,,EA088,NA,,,, +Eh4,with special reference to the Rock Vedda,1900,EA088,8,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p93,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA088,8,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p93, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA088,11,,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p93, +Eh7,,1900,EA088,8,,decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p93, +Eh8,,,EA088,NA,,,, +Eh9,,,EA088,NA,,,, +Ei1,,,EA088,NA,,,, +Ei10,,,EA088,NA,,,, +Ei11,,,EA088,NA,,,, +Ei12,,,EA088,NA,,,, +Ei13,,,EA088,NA,,,, +Ei14,,,EA088,NA,,,, +Ei15,,,EA088,NA,,,, +Ei16,,,EA088,NA,,,, +Ei17,,,EA088,NA,,,, +Ei18,,,EA088,NA,,,, +Ei19,,,EA088,NA,,,, +Ei2,,,EA088,NA,,,, +Ei20,,,EA088,NA,,,, +Ei3,,,EA088,NA,,,, +Ei4,,,EA088,NA,,,, +Ei5,,,EA088,NA,,,, +Ei6,,,EA088,NA,,,, +Ei7,,,EA088,NA,,,, +Ei8,,,EA088,NA,,,, +Ei9,,,EA088,NA,,,, +Ej1,,,EA088,NA,,,, +Ej10,,,EA088,NA,,,, +Ej11,,,EA088,NA,,,, +Ej12,,,EA088,NA,,,, +Ej13,,,EA088,NA,,,, +Ej14,,,EA088,NA,,,, +Ej15,,,EA088,NA,,,, +Ej16,,,EA088,NA,,,, +Ej2,,,EA088,NA,,,, +Ej3,,,EA088,NA,,,, +Ej4,Red River Delta in Tonkin,1950,EA088,11,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p93, +Ej5,,,EA088,NA,,,, +Ej6,,,EA088,NA,,,, +Ej7,,,EA088,NA,,,, +Ej8,,,EA088,NA,,,, +Ej9,,1940,EA088,8,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,,,EA088,NA,,,, +Ia10,,,EA088,NA,,,, +Ia11,,,EA088,NA,,,, +Ia12,,,EA088,NA,,,, +Ia13,Tawi-Tawi and adjacent islands,1960,EA088,8,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p97, +Ia14,,1930,EA088,8,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p97, +Ia15,,,EA088,NA,,,, +Ia16,,,EA088,NA,,,, +Ia17,,,EA088,NA,,,, +Ia18,,,EA088,NA,,,, +Ia2,,,EA088,NA,,,, +Ia3,,,EA088,NA,,,, +Ia4,,,EA088,NA,,,, +Ia5,,,EA088,NA,,,, +Ia6,,,EA088,NA,,,, +Ia7,,,EA088,NA,,,, +Ia8,,,EA088,NA,,,, +Ia9,,,EA088,NA,,,, +Ib1,,,EA088,NA,,,, +Ib2,,,EA088,NA,,,, +Ib3,,,EA088,NA,,,, +Ib4,,,EA088,NA,,,, +Ib5,,,EA088,NA,,,, +Ib6,,,EA088,NA,,,, +Ib7,,,EA088,NA,,,, +Ib8,,,EA088,NA,,,, +Ib9,,,EA088,NA,,,, +Ic1,,,EA088,NA,,,, +Ic10,,,EA088,NA,,,, +Ic11,Allang,1950,EA088,8,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p97,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA088,8,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA088,NA,,,, +Ic2,,,EA088,NA,,,, +Ic3,,,EA088,NA,,,, +Ic4,,,EA088,NA,,,, +Ic5,Bare'e subgroup,1910,EA088,8,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p97, +Ic6,,,EA088,NA,,,, +Ic7,,,EA088,NA,,,, +Ic8,,,EA088,NA,,,, +Ic9,,,EA088,NA,,,, +Id1,,,EA088,NA,,,, +Id10,,1930,EA088,8,,meggitt1962a,Ethnology_Vol6_No4_Oct_1967, +Id11,,,EA088,NA,,,, +Id12,,,EA088,NA,,,, +Id13,,,EA088,NA,,,, +Id2,,1930,EA088,4,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p97, +Id3,,,EA088,NA,,,, +Id4,,,EA088,NA,,,, +Id5,,,EA088,NA,,,, +Id6,,,EA088,NA,,,, +Id7,,,EA088,NA,,,, +Id8,,1830,EA088,8,,roth1890,EthnographicAtlas_1967_p97, +Id9,,,EA088,NA,,,, +Ie1,,,EA088,NA,,,, +Ie10,,,EA088,NA,,,, +Ie11,,,EA088,NA,,,, +Ie12,,,EA088,NA,,,, +Ie13,,,EA088,NA,,,, +Ie14,,,EA088,NA,,,, +Ie15,,,EA088,NA,,,, +Ie16,,1940,EA088,8,,williams194041,EthnographicAtlas_1967_p97, +Ie17,,,EA088,NA,,,, +Ie18,Bamol Village,1940,EA088,8,,serpenti1965,EthnographicAtlas_1967_p97, +Ie19,,,EA088,NA,,,, +Ie2,,,EA088,NA,,,, +Ie20,,,EA088,NA,,,, +Ie21,,,EA088,NA,,,, +Ie22,,,EA088,NA,,,, +Ie23,,,EA088,NA,,,, +Ie24,,,EA088,NA,,,, +Ie25,,,EA088,NA,,,, +Ie26,,,EA088,NA,,,, +Ie27,,,EA088,NA,,,, +Ie28,,,EA088,NA,,,, +Ie29,,,EA088,NA,,,, +Ie3,,,EA088,NA,,,, +Ie30,,,EA088,NA,,,, +Ie31,,,EA088,NA,,,, +Ie32,,,EA088,NA,,,, +Ie33,,,EA088,NA,,,, +Ie34,,,EA088,NA,,,, +Ie35,,,EA088,NA,,,, +Ie36,,,EA088,NA,,,, +Ie37,,,EA088,NA,,,, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA088,8,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA088,8,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,,,EA088,NA,,,, +Ie5,,1930,EA088,4,,williams1936,EthnographicAtlas_1967_p97, +Ie6,,,EA088,NA,,,, +Ie7,,,EA088,NA,,,, +Ie8,,,EA088,NA,,,, +Ie9,,,EA088,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA088,8,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p101,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA088,NA,,,, +If11,,,EA088,NA,,,, +If12,,,EA088,NA,,,, +If13,,,EA088,NA,,,, +If14,Makin and Butiritari Islands (N),1890,EA088,8,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p101, +If15,,1930,EA088,8,,josephandmurray1951; spehr1954,EthnographicAtlas_1967_p101, +If16,,,EA088,NA,,,, +If17,,,EA088,NA,,,, +If2,,,EA088,NA,,,, +If3,,,EA088,NA,,,, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA088,8,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p101, +If5,,,EA088,NA,,,, +If6,,,EA088,NA,,,, +If7,,,EA088,NA,,,, +If8,,,EA088,NA,,,, +If9,,,EA088,NA,,,, +Ig1,Northeastern group,1940,EA088,8,,oliver1949; oliver1955,EthnographicAtlas_1967_p101, +Ig10,,,EA088,NA,,,, +Ig11,,1920,EA088,8,,armstrong1928,EthnographicAtlas_1967_p101, +Ig12,,,EA088,NA,,,, +Ig13,,,EA088,NA,,,, +Ig14,,,EA088,NA,,,, +Ig15,,,EA088,NA,,,, +Ig16,,,EA088,NA,,,, +Ig17,,,EA088,NA,,,, +Ig18,,,EA088,NA,,,, +Ig19,,,EA088,NA,,,, +Ig2,,,EA088,NA,,,, +Ig20,,,EA088,NA,,,, +Ig21,,,EA088,NA,,,, +Ig3,,1930,EA088,8,,blackwood1935,EthnographicAtlas_1967_p101, +Ig4,,,EA088,NA,,,, +Ig5,,,EA088,NA,,,, +Ig6,,,EA088,NA,,,, +Ig7,,,EA088,NA,,,, +Ig8,,,EA088,NA,,,, +Ig9,,,EA088,NA,,,, +Ih1,,,EA088,NA,,,, +Ih10,,,EA088,NA,,,, +Ih11,,,EA088,NA,,,, +Ih12,,,EA088,NA,,,, +Ih13,,,EA088,NA,,,, +Ih14,,,EA088,NA,,,, +Ih2,,,EA088,NA,,,, +Ih3,Bunlap Village,1950,EA088,8,,lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p101, +Ih4,,,EA088,NA,,,, +Ih5,Neje Chiefdom,1860,EA088,8,,barrau1956; guiart1956b; guiart1963; leenhardt1930; leenhardt1937,EthnographicAtlas_1967_p101, +Ih6,,,EA088,NA,,,, +Ih7,,,EA088,NA,,,, +Ih8,,,EA088,NA,,,, +Ih9,,,EA088,NA,,,, +Ii1,,,EA088,NA,,,, +Ii10,,,EA088,NA,,,, +Ii12,,,EA088,NA,,,, +Ii13,,,EA088,NA,,,, +Ii14,,,EA088,NA,,,, +Ii2,,,EA088,NA,,,, +Ii3,,,EA088,NA,,,, +Ii4,,,EA088,NA,,,, +Ii5,,,EA088,NA,,,, +Ii6,,,EA088,NA,,,, +Ii7,,,EA088,NA,,,, +Ii8,,,EA088,NA,,,, +Ii9,,,EA088,NA,,,, +Ij1,,,EA088,NA,,,, +Ij10,,,EA088,NA,,,, +Ij2,,,EA088,NA,,,, +Ij3,,,EA088,NA,,,, +Ij4,,,EA088,NA,,,, +Ij5,,,EA088,NA,,,, +Ij6,,1800,EA088,8,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p105, +Ij7,,,EA088,NA,,,, +Ij8,,,EA088,NA,,,, +Ij9,,1860,EA088,9,,metraux1940,EthnographicAtlas_1967_p105, +Na1,,1930,EA088,4,,mckennan1959,EthnographicAtlas_1967_p105, +Na10,,1930,EA088,3,,birketsmith1953,EthnographicAtlas_1967_p105, +Na11,,1920,EA088,5,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p105, +Na12,,1950,EA088,9,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p105, +Na13,,1880,EA088,5,,boas1888; boas190107,EthnographicAtlas_1967_p105, +Na14,,1880,EA088,5,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p105, +Na15,,1860,EA088,3,,helmandlurie1961,EthnographicAtlas_1967_p105, +Na16,,1860,EA088,9,,osgood1931,EthnographicAtlas_1967_p105, +Na17,"Lynx Point band, Fort Simpson",1860,EA088,3,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p105,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA088,7,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p105, +Na2,,1880,EA088,5,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p105, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA088,9,,osgood1936; slobodin1962,EthnographicAtlas_1967_p105, +Na21,,1900,EA088,5,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p105, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA088,5,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p105, +Na23,with special reference to the Koksoagmiu,1890,EA088,5,,hawkes1916; turner1894,EthnographicAtlas_1967_p105, +Na24,,1880,EA088,5,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p105, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA088,5,,birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,,,EA088,NA,,,, +Na27,,,EA088,NA,,,, +Na28,,,EA088,NA,,,, +Na29,,,EA088,NA,,,, +Na3,Coronation Gulf,1920,EA088,5,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p105, +Na30,,,EA088,NA,,,, +Na31,with special reference to those of Albany and Moose Creek,1850,EA088,4,,skinner1912,EthnographicAtlas_1967_p105, +Na32,Lake St. John & Mistassini Band,1880,EA088,5,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p105, +Na33,,,EA088,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA088,4,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p105, +Na35,,1800,EA088,4,,cameron1890; grant1890,EthnographicAtlas_1967_p105, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA088,4,"Also a conical bark tipi, also with walls/roof of 'bark' (code ""4"")",barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p105, +Na37,,,EA088,NA,,,, +Na38,with special reference to the Lac Vieux Desert band,1800,EA088,4,,grant1890; kinietz1947,EthnographicAtlas_1967_p105, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA088,4,,jenness1935,EthnographicAtlas_1967_p105, +Na4,Upper Liard and Dease River Group,1920,EA088,8,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p105, +Na40,,1650,EA088,7,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1965, +Na41,,,EA088,NA,,,, +Na42,,,EA088,NA,,,, +Na43,,1920,EA088,5,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,,EA088,NA,,,, +Na45,,1900,EA088,NA,"Tents in summer, ""more substantial lodges"" in winter",rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,,,EA088,NA,,,, +Na6,,,EA088,NA,,,, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA088,4,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p105, +Na8,Shageluk Village,1880,EA088,4,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p105, +Na9,,,EA088,NA,,,, +Nb1,,,EA088,NA,,,, +Nb10,,1865,EA088,9,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nb11,,,EA088,NA,,,, +Nb12,,1880,EA088,9,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,,EA088,NA,,,, +Nb14,,,EA088,NA,,,, +Nb15,,1880,EA088,7,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p109, +Nb16,,1860,EA088,7,,eells1887b; gunthere1927,EthnographicAtlas_1967_p109, +Nb17,,1870,EA088,3,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p109, +Nb18,,,EA088,NA,,,, +Nb19,,,EA088,NA,,,, +Nb2,Twana Tribe,1850,EA088,7,,eells1877; elmendorf1960,EthnographicAtlas_1967_p105, +Nb20,,,EA088,NA,,,, +Nb21,,1860,EA088,8,,barnett1937; jacobs1940,EthnographicAtlas_1967_p109, +Nb22,with special reference to the Chilkat,1880,EA088,4,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p109, +Nb23,,1880,EA088,4,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p109, +Nb24,,,EA088,NA,,,, +Nb25,,1860,EA088,4,,olson1936a; willoughby1889,EthnographicAtlas_1967_p109, +Nb26,,,EA088,NA,,,, +Nb27,with special reference to the Tait,1880,EA088,3,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p109, +Nb28,,1860,EA088,8,,barnett1937; drucker1939,EthnographicAtlas_1967_p109, +Nb29,,,EA088,NA,,,, +Nb3,,,EA088,NA,,,, +Nb30,,,EA088,NA,,,, +Nb31,,,EA088,NA,,,, +Nb32,,,EA088,NA,,,, +Nb33,,,EA088,NA,,,, +Nb34,,,EA088,NA,,,, +Nb35,,,EA088,NA,,,, +Nb36,,,EA088,NA,,,, +Nb37,,,EA088,NA,,,, +Nb38,,,EA088,NA,,,, +Nb39,,,EA088,NA,,,, +Nb4,,,EA088,NA,,,, +Nb5,,,EA088,NA,,,, +Nb6,,,EA088,NA,,,, +Nb7,,,EA088,NA,,,, +Nb8,,,EA088,NA,,,, +Nb9,,,EA088,NA,,,, +Nc1,,1850,EA088,8,,goldschmidt1951,EthnographicAtlas_1967_p109, +Nc10,,1860,EA088,7,,goldman1940; goldman1941,EthnographicAtlas_1967_p109, +Nc11,,1860,EA088,9,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p109, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA088,4,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p109, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA088,4,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p109, +Nc14,with special reference to the northeastern Wintu,1860,EA088,4,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p109, +Nc15,,1860,EA088,8,,driver1939; gifford1939,EthnographicAtlas_1967_p109, +Nc16,,,EA088,NA,,,, +Nc17,,,EA088,NA,,,, +Nc18,,,EA088,NA,,,, +Nc19,,,EA088,NA,,,, +Nc2,,1850,EA088,8,,gifford1917; voegelin1938,EthnographicAtlas_1967_p109, +Nc20,,,EA088,NA,,,, +Nc21,,,EA088,NA,,,, +Nc22,with special reference to the Hill Patwin,1850,EA088,8,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p109, +Nc23,,1870,EA088,4,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p109, +Nc24,,,EA088,NA,,,, +Nc25,,1860,EA088,4,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p109, +Nc26,,1770,EA088,8,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,,EA088,NA,,,, +Nc28,,,EA088,NA,,,, +Nc29,,,EA088,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA088,9,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p109, +Nc30,,,EA088,NA,,,, +Nc31,,,EA088,NA,,,, +Nc32,,,EA088,NA,,,, +Nc33,,1860,EA088,8,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p109, +Nc34,,,EA088,NA,,,, +Nc4,,1860,EA088,9,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p109, +Nc5,,,EA088,NA,,,, +Nc6,,,EA088,NA,,,, +Nc7,,1850,EA088,8,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p109, +Nc8,Klamath Tribe,1860,EA088,7,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p109, +Nc9,,1860,EA088,7,,ray1963; voegelin1942,EthnographicAtlas_1967_p109, +Nd1,,1850,EA088,7,,murdock1958; ray1942,EthnographicAtlas_1967_p109, +Nd10,,1860,EA088,7,,ray1942; teit1900,EthnographicAtlas_1967_p113, +Nd11,with special reference to the southeastern Shuswap,1850,EA088,3,"Also rectangular subterranean houses where walls are indistinguishable from gabled roof, made of mats/latticework (code ""7"")",ray1942; teit1909,EthnographicAtlas_1967_p113, +Nd12,,1860,EA088,5,,ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p113, +Nd13,,1860,EA088,7,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA088,7,"Also eliptical-shaped houses with ground-level floors and gabled roofs/walls made of hides (code ""5"") AND circular houses with conical roofs/walls made of grass/thatch (code ""8"") or bark (code ""4"").",ray1942; teit1930,EthnographicAtlas_1967_p113, +Nd15,,1880,EA088,7,,clineetal1938,EthnographicAtlas_1967_p113, +Nd16,,1870,EA088,7,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA088,7,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA088,7,,spierandsapir1930,EthnographicAtlas_1967_p113, +Nd19,,,EA088,NA,,,, +Nd2,,1860,EA088,8,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p109, +Nd20,,1850,EA088,5,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p113, +Nd21,,,EA088,NA,,,, +Nd22,Wadadika of Harney Valley,1870,EA088,8,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p113, +Nd23,,,EA088,NA,,,, +Nd24,,,EA088,NA,,,, +Nd25,,,EA088,NA,,,, +Nd26,,1870,EA088,8,,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,,EA088,NA,,,, +Nd28,,1870,EA088,4,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA088,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,,,EA088,NA,,,, +Nd30,,1870,EA088,7,,driver1937; steward1933,EthnographicAtlas_1967_p113, +Nd31,,,EA088,NA,,,, +Nd32,with special reference to those of Saline Valley,1850,EA088,8,,driver1937; steward1938,EthnographicAtlas_1967_p113, +Nd33,including the Belted Range group,1870,EA088,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA088,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,,EA088,NA,,,, +Nd36,,1870,EA088,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,,EA088,NA,,,, +Nd38,,1870,EA088,4,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,,,EA088,NA,,,, +Nd4,,1870,EA088,7,,ray1932; ray1942,EthnographicAtlas_1967_p113, +Nd40,,,EA088,NA,,,, +Nd41,,1870,EA088,7,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,,,EA088,NA,,,, +Nd43,,1860,EA088,8,,harris1940; steward1941,EthnographicAtlas_1967_p113, +Nd44,,1850,EA088,8,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA088,8,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd46,,1860,EA088,7,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p113, +Nd47,,,EA088,NA,,,, +Nd48,,,EA088,NA,,,, +Nd49,,,EA088,NA,,,, +Nd5,,1870,EA088,8,,hoebel1939; steward1943,EthnographicAtlas_1967_p113, +Nd50,,,EA088,NA,,,, +Nd51,,,EA088,NA,,,, +Nd52,,,EA088,NA,,,, +Nd53,,,EA088,NA,,,, +Nd54,,,EA088,NA,,,, +Nd55,,,EA088,NA,,,, +Nd56,,1860,EA088,4,,kelly1964; stewart1942,EthnographicAtlas_1967_p113, +Nd57,,,EA088,NA,,,, +Nd58,,1860,EA088,8,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd59,,1860,EA088,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA088,8,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p113, +Nd60,,,EA088,NA,,,, +Nd61,,1860,EA088,5,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA088,8,,lowie1924; stewart1942,EthnographicAtlas_1967_p113, +Nd63,with special reference to the Eastern Bannock,1860,EA088,8,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p113, +Nd64,with special reference to the Kucundika,1860,EA088,5,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p113, +Nd65,,,EA088,NA,,,, +Nd66,,,EA088,NA,,,, +Nd67,,1870,EA088,9,,gifford1936,EthnographicAtlas_1967_p113, +Nd7,Lower or eastern branch,1880,EA088,7,,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p113, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA088,3,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p113, +Nd9,,1860,EA088,7,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p113, +Ne1,,,EA088,NA,,,, +Ne10,,1860,EA088,5,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p113, +Ne11,,,EA088,NA,,,, +Ne12,,,EA088,NA,,,, +Ne13,,,EA088,NA,,,, +Ne14,,1850,EA088,4,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p113, +Ne15,Hidatsa Village,1860,EA088,5,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p113, +Ne16,,,EA088,NA,,,, +Ne17,,,EA088,NA,,,, +Ne18,,,EA088,NA,,,, +Ne19,,,EA088,NA,,,, +Ne2,,,EA088,NA,,,, +Ne20,,,EA088,NA,,,, +Ne21,,,EA088,NA,,,, +Ne3,,,EA088,NA,,,, +Ne4,,,EA088,NA,,,, +Ne5,,,EA088,NA,,,, +Ne6,,1830,EA088,5,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p113, +Ne7,,,EA088,NA,,,, +Ne8,,,EA088,NA,,,, +Ne9,,,EA088,NA,,,, +Nf10,,1870,EA088,5,,morgan1871; skinner1926,EthnographicAtlas_1967_p117, +Nf11,,1870,EA088,5,,whitman1937,EthnographicAtlas_1967_p117, +Nf12,,1850,EA088,5,,dorsey1897; howard1965b,EthnographicAtlas_1967_p117, +Nf13,,,EA088,NA,,,, +Nf14,,,EA088,NA,,,, +Nf15,,,EA088,NA,,,, +Nf2,,1850,EA088,7,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p117, +Nf3,Omaha Tribe,1850,EA088,5,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p117, +Nf4,,,EA088,NA,,,, +Nf5,,,EA088,NA,,,, +Nf6,Skidi Band or subtribe,1867,EA088,5,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p117, +Nf7,Tama Reservation,1830,EA088,7,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,,EA088,NA,,,, +Nf9,,,EA088,NA,,,, +Ng1,,,EA088,NA,,,, +Ng10,,,EA088,NA,,,, +Ng11,,,EA088,NA,,,, +Ng12,,1760,EA088,8,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p117, +Ng13,,,EA088,NA,,,, +Ng14,,,EA088,NA,,,, +Ng15,,,EA088,NA,,,, +Ng2,,,EA088,NA,,,, +Ng3,Upper division in Alabama,1750,EA088,8,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p117, +Ng4,,,EA088,NA,,,, +Ng5,,1750,EA088,9,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p117, +Ng6,with special reference to the Munsee,1700,EA088,4,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p117, +Ng7,,,EA088,NA,,,, +Ng8,,1560,EA088,8,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p117, +Ng9,,,EA088,NA,,,, +Nh1,,,EA088,NA,,,, +Nh10,,,EA088,NA,,,, +Nh11,,,EA088,NA,,,, +Nh12,,,EA088,NA,,,, +Nh13,,,EA088,NA,,,, +Nh14,,,EA088,NA,,,, +Nh15,,,EA088,NA,,,, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA088,5,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p117,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,,EA088,NA,,,, +Nh18,,,EA088,NA,,,, +Nh19,,1850,EA088,8,,drucker1941; gifford1933,EthnographicAtlas_1967_p117, +Nh2,,,EA088,NA,,,, +Nh20,,,EA088,NA,,,, +Nh21,,,EA088,NA,,,, +Nh22,,1860,EA088,8,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p117, +Nh23,,,EA088,NA,,,, +Nh24,,,EA088,NA,,,, +Nh25,,,EA088,NA,,,, +Nh26,,,EA088,NA,,,, +Nh27,,,EA088,NA,,,, +Nh3,,,EA088,NA,,,, +Nh4,,,EA088,NA,,,, +Nh5,,1850,EA088,9,,drucker1941; spier1933,EthnographicAtlas_1967_p117, +Nh6,,,EA088,NA,,,, +Nh7,,,EA088,NA,,,, +Nh8,,,EA088,NA,,,, +Nh9,,,EA088,NA,,,, +Ni1,,,EA088,NA,,,, +Ni2,,1930,EA088,9,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p117, +Ni3,,,EA088,NA,,,, +Ni4,,,EA088,NA,,,, +Ni5,,,EA088,NA,,,, +Ni6,,,EA088,NA,,,, +Ni7,,,EA088,NA,,,, +Ni8,,,EA088,NA,,,, +Ni9,,,EA088,NA,,,, +Nj1,,,EA088,NA,,,, +Nj10,,,EA088,NA,,,, +Nj11,,,EA088,NA,,,, +Nj12,,,EA088,NA,,,, +Nj13,,,EA088,NA,,,, +Nj14,,,EA088,NA,,,, +Nj2,,,EA088,NA,,,, +Nj3,,,EA088,NA,,,, +Nj4,,,EA088,NA,,,, +Nj5,,,EA088,NA,,,, +Nj6,,,EA088,NA,,,, +Nj7,,,EA088,NA,,,, +Nj8,,1500,EA088,8,,foster1948,EthnographicAtlas_1967_p121, +Nj9,,,EA088,NA,,,, +Sa1,,,EA088,NA,,,, +Sa10,,,EA088,NA,,,, +Sa11,,,EA088,NA,,,, +Sa12,,,EA088,NA,,,, +Sa13,,,EA088,NA,,,, +Sa14,,,EA088,NA,,,, +Sa15,,,EA088,NA,,,, +Sa16,,,EA088,NA,,,, +Sa17,,,EA088,NA,,,, +Sa2,,,EA088,NA,,,, +Sa3,,,EA088,NA,,,, +Sa4,,,EA088,NA,,,, +Sa5,,1950,EA088,8,,gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,EthnographicAtlas_1967_p121, +Sa6,,,EA088,NA,,,, +Sa7,,,EA088,NA,,,, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA088,11,,wagley1941; wagley1949b,EthnographicAtlas_1967_p121, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA088,8,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p121, +Sb1,,,EA088,NA,,,, +Sb2,,1940,EA088,8,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p121, +Sb3,,,EA088,NA,,,, +Sb4,,,EA088,NA,,,, +Sb5,,,EA088,NA,,,, +Sb6,,,EA088,NA,,,, +Sb7,,,EA088,NA,,,, +Sb8,,1520,EA088,8,,rouse1948a,EthnographicAtlas_1967_p121, +Sb9,,,EA088,NA,,,, +Sc1,,,EA088,NA,,,, +Sc10,,,EA088,NA,,,, +Sc11,,,EA088,NA,,,, +Sc12,,,EA088,NA,,,, +Sc13,,,EA088,NA,,,, +Sc14,,,EA088,NA,,,, +Sc15,,,EA088,NA,,,, +Sc16,,,EA088,NA,,,, +Sc17,,,EA088,NA,,,, +Sc18,,,EA088,NA,,,, +Sc2,,,EA088,NA,,,, +Sc3,,,EA088,NA,,,, +Sc4,,,EA088,NA,,,, +Sc5,,1900,EA088,8,,farabee1918,EthnographicAtlas_1967_p121, +Sc6,,,EA088,NA,,,, +Sc7,,,EA088,NA,,,, +Sc8,,1950,EA088,8,,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p121, +Sc9,,,EA088,NA,,,, +Sd1,Cabrura village,1950,EA088,8,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p121,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA088,NA,,,, +Sd3,,,EA088,NA,,,, +Sd4,,,EA088,NA,,,, +Sd5,,,EA088,NA,,,, +Sd6,,,EA088,NA,,,, +Sd7,,1950,EA088,8,,fock1963,EthnographicAtlas_1967_p121, +Sd8,,,EA088,NA,,,, +Sd9,,,EA088,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA088,8,,holmberg1950,EthnographicAtlas_1967_p121, +Se10,,,EA088,NA,,,, +Se11,,,EA088,NA,,,, +Se12,,,EA088,NA,,,, +Se2,,1940,EA088,8,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p121, +Se3,,,EA088,NA,,,, +Se4,,,EA088,NA,,,, +Se5,Village on Caduiari River,1940,EA088,8,,goldman1948; goldman1963,EthnographicAtlas_1967_p121, +Se6,,,EA088,NA,,,, +Se7,,,EA088,NA,,,, +Se8,Upper Inuya River,1950,EA088,8,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p121, +Se9,,,EA088,NA,,,, +Sf1,City and environs of Cuzco,1530,EA088,8,,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p125, +Sf2,,,EA088,NA,,,, +Sf3,,,EA088,NA,,,, +Sf4,,1950,EA088,8,,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p125, +Sf5,,1900,EA088,8,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p125, +Sf6,,1540,EA088,8,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p125, +Sf7,,1900,EA088,8,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p125, +Sf8,,,EA088,NA,,,, +Sf9,,,EA088,NA,,,, +Sg1,Eastern and central,1870,EA088,8,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p125, +Sg2,Cholchol,1880,EA088,8,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA088,8,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p125, +Sg4,,,EA088,NA,,,, +Sg5,,,EA088,NA,,,, +Sh1,,,EA088,NA,,,, +Sh2,,,EA088,NA,,,, +Sh3,,,EA088,NA,,,, +Sh4,,,EA088,NA,,,, +Sh5,,,EA088,NA,,,, +Sh6,,,EA088,NA,,,, +Sh7,,,EA088,NA,,,, +Sh8,with special reference to those of the Argentine Chaco,1964,EA088,8,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p125, +Sh9,,,EA088,NA,,,, +Si1,Kejara,1920,EA088,8,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p125,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,,EA088,NA,,,, +Si2,,,EA088,NA,,,, +Si3,,,EA088,NA,,,, +Si4,Cocozu Group,1940,EA088,8,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p125, +Si5,,,EA088,NA,,,, +Si6,,,EA088,NA,,,, +Si7,,,EA088,NA,,,, +Si8,,,EA088,NA,,,, +Si9,,,EA088,NA,,,, +Sj1,,,EA088,NA,,,, +Sj10,,,EA088,NA,,,, +Sj11,,,EA088,NA,,,, +Sj2,,,EA088,NA,,,, +Sj3,,,EA088,NA,,,, +Sj4,,,EA088,NA,,,, +Sj5,Naknenuk subtribe,1880,EA088,8,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p125, +Sj6,,,EA088,NA,,,, +Sj7,,,EA088,NA,,,, +Sj8,,,EA088,NA,,,, +Sj9,,1950,EA088,8,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p125, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA088,6,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA088,8,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA088,8,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA088,8,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,,,EA088,NA,,,, +ch17,with special reference to those of the Benderskij Uezd,1894,EA088,3,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,,,EA088,NA,,,, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA088,3,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA088,3,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA088,3,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,,,EA088,NA,,,, +ch23,,,EA088,NA,,,, +ch24,,,EA088,NA,,,, +ch25,with special reference to the Beletskij Uezd,1900,EA088,8,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA088,3,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA088,8,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,,,EA088,NA,,,, +ec12,Avam (Western) group,1930,EA088,5,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA088,8,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA088,5,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA088,4,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA088,4,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA088,4,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA088,4,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA088,4,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA088,4,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA088,4,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA009,2,,biesele1972; biesele1975; biesele1976; draper1972; draper1975; drapernd; hansenetal1969; harpending1971; howell1979; howellnd; konner1971; konner1972; konner1973; konner1977; lee1966; lee1968; lee1972a; lee1974; lee1979; leeanddevore1976; marshall1956; marshall1957; marshall1957a; marshall1957b; marshall1958; marshall1959; marshall1960; marshall1961; marshall1962; marshall1965; marshall1976; marshallandmarshall1956; schapera1930; shostak1981; thomas1959; tobias1978,EthnographicAtlas_1967_p62, +Aa2,with special reference to Central Dorobo,1920,EA009,1,,huntingford1929; huntingford1942; huntingford1951; huntingford1953b; huntingford1954; huntingford1955a,EthnographicAtlas_1967_p62, +Aa3,Gei/Khauan tribe,1840,EA009,2,,hoernl1918; hoernl1925; kohler1970; murdock1934b:475-507; schapera1930; schultze1907,EthnographicAtlas_1967_p62, +Aa4,,1920,EA009,4,,lebzelter1934; schmidt1930; vedder1923,Ethnology_Vol1_No3_Jul_1962, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA009,2,,deleeuwe1966; hart1978; putnam1948; turnbull1961; turnbull1965a; turnbull1965b; turnbull1965c; turnbull1983,EthnographicAtlas_1967_p62, +Aa6,,1920,EA009,2,,dempwolff1916; huntingford1953b; kimmenade1936,EthnographicAtlas_1967_p62, +Aa7,,1910,EA009,2,Polygyny is preferably sororal,bleek1924b; bleek1928; passarge1907; schapera1930,EthnographicAtlas_1967_p62, +Aa8,,1850,EA009,2,,barrow180104; bleek1924b; fritsch1872,Ethnology_Vol4_No3_Jul_1965, +Aa9,Hatsa Kindiga Tribe,1910,EA009,2,,bleek1931b; kohllarsen1958; woodburn1964; woodburn1968a; woodburn1968b; woodburn1970,EthnographicAtlas_1967_p62, +Ab1,,1900,EA009,5,,irle1906; vedder1928,EthnographicAtlas_1967_p62, +Ab10,,1936,EA009,5,,hunter1936,EthnographicAtlas_1967_p62, +Ab11,,1850,EA009,5,,borwnlee1927; kropf1889; soga1932,Ethnology_Vol7_No2_Apr_1968, +Ab12,,1830,EA009,5,,bryant1949; gluckman1940; gluckman1950; krige1936; mahloboandkrige1934; schapera1937; vilakazi1962,EthnographicAtlas_1967_p62, +Ab13,with special reference to the Kgatla (Bakxatla),1880,EA009,4,,brown1926; dorman1935; duggancronin1929; livingstone1858; schapera1938; schapera1941; schapera1950; schapera1953; schpera1941,EthnographicAtlas_1967_p62, +Ab14,,1930,EA009,5,,krigeandkrige1943,EthnographicAtlas_1967_p62, +Ab15,,1860,EA009,5,,duggancronin1931; franz1931; harries1939; harris1929; pitje1950; vanwarmelo1931; winter1914,Ethnology_Vol2_No2_Apr_1963, +Ab16,,1930,EA009,5,,earthy1933,EthnographicAtlas_1967_p62, +Ab17,,1920,EA009,5,,boas1922; dossantos1901; herskovits1923,Ethnology_Vol2_No2_Apr_1963, +Ab18,with special reference to the Zezuru,1920,EA009,4,,bullock1928; holleman1952; kuper1955; prost1956; seed193233,EthnographicAtlas_1967_p62, +Ab19,with special reference to the Kuanyama,1910,EA009,5,,krafft1914; lebzelter1935; loeb1962; tonejes1911,EthnographicAtlas_1967_p62, +Ab2,,1880,EA009,4,,kuper1950; kuper1974; marwick1940,EthnographicAtlas_1967_p62, +Ab20,,1880,EA009,5,,wunenberger1888,Ethnology_Vol2_No2_Apr_1963, +Ab21a,,1930,EA009,5,,magyar1859; mattenklodt1944,Ethnology_Vol5_No1_Jan_1966, +Ab21b,,1925,EA009,5,,cook1931,Ethnology_Vol7_No1_Jan_1968, +Ab22,,,EA009,NA,,,, +Ab3,Ruling Luyana,1890,EA009,5,,bertrand1899; gluckman1941; gluckman1950; gluckman1951; gluckman1972; holub1895; mainga1973; turner1952,EthnographicAtlas_1967_p62, +Ab4,,1920,EA009,4,,junod1927,EthnographicAtlas_1967_p62, +Ab5,,1930,EA009,5,,childs1949; duffy1959; edwards1962; hambly1934; mcculloch1952,EthnographicAtlas_1967_p62, +Ab6,,1900,EA009,4,,gottschling1905; stayt1931; warmelo1948; wessmann1908,EthnographicAtlas_1967_p62, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA009,5,,langandtastevin1937,EthnographicAtlas_1967_p62, +Ab8,Basuto,1860,EA009,5,,ashton1952; casilis1859; dutton1923; krige1937; mabille1906; martin1903; sheddick1953,EthnographicAtlas_1967_p62, +Ab9,,1870,EA009,5,,hughesandvanvelsen1955; jackson192627; thomas1872,EthnographicAtlas_1967_p62, +Ac1,,1920,EA009,5,,smithanddale1920; tudennd,EthnographicAtlas_1967_p62, +Ac10,,1920,EA009,5,"But families are reported to be loosely aggregated around ""a sororal extended family core""",bruwer1949; bruwer1955; hodgson1933; marwick1952; ntara1934; read1938; richards1950; tew1950,EthnographicAtlas_1967_p62, +Ac11,,1930,EA009,5,,mcculloch1951; white1955,EthnographicAtlas_1967_p62, +Ac12,,1920,EA009,2,,baumann1935; jaspertandjaspert1930; mcculloch1951; tordayandjoyce1922,EthnographicAtlas_1967_p62, +Ac13,,1950,EA009,2,,tew1950; velsen1964,EthnographicAtlas_1967_p62, +Ac14,,1900,EA009,2,,brown1944; bruyns1951; czekanowski1924:21-110; ihle1929; kapstein1922; mertens1942; vanwing1921; weeks1914,EthnographicAtlas_1967_p62, +Ac15,,1900,EA009,5,,tordayandjoyce1905; tordayandjoyce1907; tordayandjoyce1922:227-359,Ethnology_Vol5_No1_Jan_1966, +Ac16,,1940,EA009,5,,balandier1952; maclatchy1945,Ethnology_Vol5_No1_Jan_1966, +Ac17,Feshi territory lineage center,1910,EA009,5,,holemans1959; kopytoff1961; kopytoff1964; kopytoff1965; kopytoff1971; kopytoff1977; tordayandjoyce1906; vandeginste1947,EthnographicAtlas_1967_p62, +Ac18,,1910,EA009,5,,even1931; hutereau1910b; laman1953; soret1959,EthnographicAtlas_1967_p62, +Ac19,,,EA009,NA,,,, +Ac2,,1920,EA009,5,,sousberghe1955; tordayandjoyce1922:corrigenda-to-table-1,EthnographicAtlas_1967_p62, +Ac20,,1920,EA009,5,,milheiros1956; plancquaert1932; tordayandjoyce1906,Ethnology_Vol5_No1_Jan_1966, +Ac21,,1910,EA009,5,,decker1942; torday1910; weekx1937,EthnographicAtlas_1967_p62, +Ac22,,1930,EA009,5,,mertens1935,EthnographicAtlas_1967_p62, +Ac23,with special reference to the western Lele,1950,EA009,5,,douglas1952; douglas1962; douglas1963; tew1951; vansina1954b,EthnographicAtlas_1967_p62, +Ac24,,1910,EA009,5,,baeyens1913; denis1935; maes1924; viaeneandbernard190910,Ethnology_Vol5_No1_Jan_1966, +Ac25,with reference to the tribe of this name on the Luniunga and Gobari rivers,1930,EA009,5,,beaucorps1921; beaucorps1951; richards1950,EthnographicAtlas_1967_p62, +Ac26,,1920,EA009,5,,beaucorps1933; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ac27,,1930,EA009,5,,baumann1935; mcculloch1951,Ethnology_Vol5_No1_Jan_1966, +Ac28,,1930,EA009,5,,baumann1935; mcculloch1951,EthnographicAtlas_1967_p62, +Ac29,,1930,EA009,5,,brau1942,Ethnology_Vol5_No1_Jan_1966, +Ac3,Zambia branch,1900,EA009,4,,delhaise1908; gouldsburyandsheane1911; richards1939; richards1940a; richards1940b; richards1948; richards1950; richards1951; richards1956; richards1968; richards1971; richardsandtardits1974; tardits1974,EthnographicAtlas_1967_p62, +Ac30,,1940,EA009,5,,allanetal1948; colson1950; colson1951; colson1960; jaspan1953,EthnographicAtlas_1967_p62, +Ac31,,1910,EA009,5,,colle1913,Ethnology_Vol7_No2_Apr_1968, +Ac32,,1920,EA009,5,,melland1923; watson1954a,Ethnology_Vol5_No1_Jan_1966, +Ac33,,1940,EA009,2,,lambo1946; munday1941; whiteley1951,EthnographicAtlas_1967_p62, +Ac34,,1940,EA009,2,,cunnison1950; cunnison1959; gamitto1854; slaski1951,EthnographicAtlas_1967_p62, +Ac35,,1900,EA009,2,,brohez1905; marchal1935,Ethnology_Vol5_No1_Jan_1966, +Ac36,,1920,EA009,4,,sanderson1923; tew1950; young1931,EthnographicAtlas_1967_p62, +Ac37,,1950,EA009,5,,bruwer1958,Ethnology_Vol5_No1_Jan_1966, +Ac38,,1910,EA009,5,,malekebu1952; stannus1910; tew1950; werner1906b,EthnographicAtlas_1967_p62, +Ac39,,1920,EA009,5,,johnson1922; tew1950,Ethnology_Vol5_No1_Jan_1966, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA009,2,"As an alternative to a high bride-price and avunculocal residence, a very small bride-price may be paid; in which case residence is usually alternately uxorilocal and avunculocal for periods of 5-6 years each",tordayandjoyce1910; vansina1954a; vansina1962,EthnographicAtlas_1967_p62, +Ac40,,1900,EA009,5,,maugham1910; menteirolopez1906; schebesta1926,Ethnology_Vol5_No1_Jan_1966, +Ac41,,1900,EA009,5,,behr1893; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac42,,1900,EA009,5,,tew1950; weule1908,Ethnology_Vol5_No1_Jan_1966, +Ac43,,1910,EA009,5,,watson1954b; willis1966,Ethnology_Vol5_No4_Oct_1966, +Ac5,,1920,EA009,2,,doke1931; mitchellandbarnes1950,EthnographicAtlas_1967_p62, +Ac6,,1930,EA009,5,,baumann1935; chook1967; mcculloch1951; turner1957; turner1966,EthnographicAtlas_1967_p62, +Ac7,,1920,EA009,2,,lawson1949; mitchell1949; mitchell1956; sanderson1920; stannus1922,EthnographicAtlas_1967_p62, +Ac8,,1930,EA009,5,,decleene1937a; decleene1937b; deleval1912; vanoverbergh1907b; vanreeth1935,EthnographicAtlas_1967_p62, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA009,5,,barnes1951; barnes1954; mead1960; tew1950,EthnographicAtlas_1967_p62, +Ad1,,1950,EA009,1,,grottanelli1955,EthnographicAtlas_1967_p62, +Ad10,,1910,EA009,5,,eichhorn191124; lang1903; warburg1894; winans1962; wohlrab1918,EthnographicAtlas_1967_p66, +Ad11,,1930,EA009,5,,culwickandculwick1935,EthnographicAtlas_1967_p66, +Ad12,,1940,EA009,5,,levine1959; mayer1949; mayer1950; mayer1953; mayer1965,Ethnology_Vol4_No1_Jan_1965, +Ad13,,1930,EA009,5,,edel1937; edel1957; taylor1962,EthnographicAtlas_1967_p66, +Ad14,Morogoro District,1930,EA009,2,,beidelman1967; brain1969; christensen1963; mcvicarnd; mluanda1971; scheerderandtastevin1950; youngandfosbrooke1960,EthnographicAtlas_1967_p66, +Ad15,,1900,EA009,5,"Or these polygynous units may live as small extended families (i.e., code for related variable EA008 would be ""7"" instead of ""5"")",chisholm1910; coxhead1914; willis1966; wilson1958,EthnographicAtlas_1967_p66, +Ad16,,1920,EA009,4,,mackenzie1925; sanderson1923; tew1950,EthnographicAtlas_1967_p66, +Ad17,,1920,EA009,5,,kootzkretschmer192629,EthnographicAtlas_1967_p66, +Ad18,,1910,EA009,5,,avon191516; majerus191516,Ethnology_Vol5_No1_Jan_1966, +Ad19,,1910,EA009,5,,fromm1912; popplewell1937; willis1966,EthnographicAtlas_1967_p66, +Ad2,,1950,EA009,5,,beattie1960; beattie1965; richards1960b; roscoe1923a; taylor1962,EthnographicAtlas_1967_p62, +Ad20,,1920,EA009,5,,blohm193133; bosch1930; spellig1927,EthnographicAtlas_1967_p66, +Ad21,,1930,EA009,5,,maurice193538,EthnographicAtlas_1967_p66, +Ad22,,1950,EA009,5,,abrahams1967; cory1953; malcolm1953,EthnographicAtlas_1967_p66, +Ad23,,1910,EA009,5,,heese1913; mumford1934,Ethnology_Vol5_No1_Jan_1966, +Ad24,,1910,EA009,5,Extended families are inferred from the large tembe dwellings,claus1911; paulssen1922; rigby1966; schaegelen1938,EthnographicAtlas_1967_p66, +Ad25,,1900,EA009,5,,baumstark1900; gray1953; kannenberg1900,Ethnology_Vol5_No1_Jan_1966, +Ad26,,1910,EA009,5,,sick1916,EthnographicAtlas_1967_p66, +Ad27,,1880,EA009,5,,picarda1886; reidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad28,,1880,EA009,5,,baumann1891; beidelman1967; picarda1886,Ethnology_Vol7_No2_Apr_1968, +Ad29,,1930,EA009,5,,ingrams1930; prins1961,EthnographicAtlas_1967_p66, +Ad3,,1910,EA009,5,,abbott1892; dundas1924; gutmann1913; gutmann1926; raum1940; stahl1964,EthnographicAtlas_1967_p62, +Ad30,,1890,EA009,5,,baumann1891; prins1952; stpaulhilaire1895,EthnographicAtlas_1967_p66, +Ad31,,1910,EA009,2,,prins1952; werner1915,Ethnology_Vol5_No1_Jan_1966, +Ad32,,1900,EA009,5,,barrett1911b; johnstone1902; princs1952,EthnographicAtlas_1967_p66, +Ad33,,1900,EA009,2,,fischer187879; kraft1903; prins1952; werner1913,EthnographicAtlas_1967_p66, +Ad34,,1910,EA009,5,,dundas1915; hildebrandt1878; lindblom1916; middleton1953; penwill1951,Ethnology_Vol5_No1_Jan_1966, +Ad35,"To be distinguished from the tribe of the same name on the southeast slope f Mt. Mero, who are a branch of the Chagga",1940,EA009,5,,holding1942; lambert1956; middleton1953,EthnographicAtlas_1967_p66, +Ad36,,1890,EA009,5,,baumann1891; storch1895,Ethnology_Vol5_No1_Jan_1966, +Ad37,,1940,EA009,5,,bostock1950; prins1950; prins1952,Ethnology_Vol5_No1_Jan_1966, +Ad38,,1910,EA009,2,,paterson1956; paulssen1914; thorntonandrounce1936,Ethnology_Vol5_No1_Jan_1966, +Ad39,,1950,EA009,2,,gray1963,EthnographicAtlas_1967_p66, +Ad4,Fort Hall or Metume district,1930,EA009,5,,cagnolo1933; hailey1950; kenyatta1939; lambert1950; lambert1956; leakey1952; leakey1977; macphee1968; middleton1953; ross1968; routledgeandroutledge1910; tignor1976,EthnographicAtlas_1967_p62, +Ad40,,1950,EA009,5,,sangree1965,Ethnology_Vol5_No1_Jan_1966, +Ad41,,1930,EA009,2,,wagner1939; wagner1940; wagner194950,EthnographicAtlas_1967_p66, +Ad42,,1900,EA009,5,,autenrieth1908; cesard193537; coryandhartnoll1945; rehse1910; taylor1962; weiss1926,EthnographicAtlas_1967_p66, +Ad43,,1900,EA009,5,,hurel1911,Ethnology_Vol5_No1_Jan_1966, +Ad44,,1920,EA009,5,,czekanowski1924:358-399; taylor1962,EthnographicAtlas_1967_p66, +Ad45,,1920,EA009,5,,oberg1938; oberg1940; roscoe1923b; taylor1962,EthnographicAtlas_1967_p66, +Ad46,,1950,EA009,5,,fallers1956; fallers1960; roscoe1915,EthnographicAtlas_1967_p66, +Ad47,,1900,EA009,5,,abrahams1967; blohm193133; desoignies1903,Ethnology_Vol7_No2_Apr_1968, +Ad48,,1950,EA009,5,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad49,,1950,EA009,5,,taylor1962,Ethnology_Vol5_No1_Jan_1966, +Ad5,,1940,EA009,1,,graynd,Ethnology_Vol1_No3_Jul_1962, +Ad50,with special reference to the Mountain Kaguru,1900,EA009,2,,beidelman1967,Ethnology_Vol7_No2_Apr_1968, +Ad51,,1930,EA009,2,,beidelman1967; mcvicar1934,Ethnology_Vol7_No2_Apr_1968, +Ad6,Age villages of Mwaya and Masoko,1930,EA009,5,,charsleyandmckenny1974; lehmann1951; mckenny1973; wilson1936; wilson1938; wilson1951a; wilson1951b; wilson1957; wilson1959; wilson1977,EthnographicAtlas_1967_p62, +Ad7,Kyaddondo district (V: Kampala),1880,EA009,5,,fallers1960; kagwa1934; kottack1972; lugira1970; mair1934; malysevand; murdock1934k; perlman1969; richards1960a; richards1966; roscoe1911; rusch1975; semakulakiwanuka1972; southwold1965; southwold1971,EthnographicAtlas_1967_p62, +Ad8,with special reference to the northern or Iringa group,1910,EA009,6,,brownandhutt1935; dempwolff1914; nigmann1908,EthnographicAtlas_1967_p66, +Ad9,,1900,EA009,5,,lafontaine1959; roscoe1915,EthnographicAtlas_1967_p66, +Ae1,with special reference to those of Bwamba in Uganda,1950,EA009,5,,winter1956; winter1958,EthnographicAtlas_1967_p66, +Ae10,,1910,EA009,5,,czekanowski1917; dhertefelt1965; dhertefeltetal1962; maquet1955; maquet1967; pages1933; vanhove1941,Ethnology_Vol7_No2_Apr_1968, +Ae11,,1900,EA009,5,,delhaise1909a,Ethnology_Vol7_No2_Apr_1968, +Ae12,,1940,EA009,5,,ardener1956; brutsch1950; buchner1887,EthnographicAtlas_1967_p66, +Ae13,,1920,EA009,5,,colle1921; colle1922a; colle1922b; roy192425,Ethnology_Vol5_No1_Jan_1966, +Ae14,,1950,EA009,5,,hertefeltetal1962,EthnographicAtlas_1967_p66, +Ae15,,1940,EA009,5,,schumacher1949; viaene1951; viaene1952,EthnographicAtlas_1967_p66, +Ae16,,1910,EA009,5,,lietard1929; vervaecke1910; wissmannetal1888,Ethnology_Vol5_No1_Jan_1966, +Ae17,,1900,EA009,5,,delhaise1909b; salmon1953,EthnographicAtlas_1967_p66, +Ae18,,1900,EA009,5,,tordayandjoyce1922; vanoverbergh1908,Ethnology_Vol7_No2_Apr_1968, +Ae19,,1930,EA009,5,"Extended families are possibly present, though not specifically reported",grevisse193738,Ethnology_Vol5_No1_Jan_1966, +Ae2,,1950,EA009,5,,ardener1956; leuschner1903,EthnographicAtlas_1967_p66, +Ae20,,1940,EA009,5,,brown1944; gilliard1925; muller1956; philippe1954; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae21,,1920,EA009,4,,empain1922; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae22,with special reference to the Bankutu,1900,EA009,5,,tordayandjoyce1922; vanlaere1900,EthnographicAtlas_1967_p66, +Ae23,,1930,EA009,5,,maes1934; rijek1937; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae24,,1920,EA009,5,,gutersohn1920; ruskinandruskin1928; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae25,with special reference to the northern Tetela,1920,EA009,5,"Extended families may be present, though not specifically reported",heusch1955; tordayandjoyce1922; vanderkerken1944,Ethnology_Vol5_No1_Jan_1966, +Ae26,,1910,EA009,5,,torday1911; tordayandjoyce1922,Ethnology_Vol5_No1_Jan_1966, +Ae27,"The Smith reference describes a Protestant Mission near Stanley Falls, Upper Congo",1910,EA009,5,Entry follows Smith; Bertrand implies extended families,bertrand1920; smith1911,Ethnology_Vol5_No1_Jan_1966, +Ae28,,1900,EA009,5,,burssens1958; vanoverbergh1907a; weeks190910; weeks1913,EthnographicAtlas_1967_p66, +Ae29,,1900,EA009,5,,hutereau1910a; lindemann1906,EthnographicAtlas_1967_p66, +Ae3,,1910,EA009,5,,alexandreandbinet1958; tessmann1913; trezenem1936,EthnographicAtlas_1967_p66, +Ae30,,1920,EA009,5,,czekanowski1924:327-357; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae31,,1920,EA009,5,,czekanowski1924:282-297; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae32,,1920,EA009,5,But extended families possibly occur,vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae33,,1920,EA009,5,,czekanowski1924:319-326; moeller1936; schebesta1934; vangeluwe1960,Ethnology_Vol7_No2_Apr_1968, +Ae34,,1920,EA009,5,,czekanowski1924:327-357; joset1936; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae35,,1900,EA009,2,,maes1909; vangeluwe1956,Ethnology_Vol5_No1_Jan_1966, +Ae36,,1920,EA009,5,,verbeke1928,Ethnology_Vol5_No1_Jan_1966, +Ae37,,1930,EA009,5,,soupart1938; vandenbergh1934,Ethnology_Vol5_No1_Jan_1966, +Ae38,,1920,EA009,5,,wijnant192526,EthnographicAtlas_1967_p66, +Ae39,,1920,EA009,5,,burssens1958; wolfe1961; wolfe1965,EthnographicAtlas_1967_p66, +Ae4,Ilanga group,1930,EA009,5,,boelaert1940; brepoels1930; gutersohn1920; hulstaert1938; hulstaert1971; schebesta1936; vanderkerken1944,EthnographicAtlas_1967_p66, +Ae40,,1910,EA009,5,,allys1930; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae41,,1940,EA009,2,,andersson1953,EthnographicAtlas_1967_p66, +Ae42,,1900,EA009,5,,conradt1902; dugast1949,Ethnology_Vol5_No1_Jan_1966, +Ae43,,1900,EA009,5,,burel1910; koch1913,Ethnology_Vol5_No1_Jan_1966, +Ae44,,1920,EA009,5,,baumann1888; gildelgado1949; tessmann1923,Ethnology_Vol5_No1_Jan_1966, +Ae45,,1900,EA009,5,,bufe1913; lessner1904,Ethnology_Vol5_No1_Jan_1966, +Ae46,,1870,EA009,5,,allegret1927; burton1876; duchaillu1861,Ethnology_Vol5_No1_Jan_1966, +Ae47,,1900,EA009,5,,oertzen1903; zeller1885,Ethnology_Vol5_No1_Jan_1966, +Ae48,,1930,EA009,5,"Sometimes these polygynous units live as small extended families (i.e., code for related variable EA008 would be ""7"" instead of ""5"")",mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae49,,1900,EA009,5,,ankermann1910; covarrubias1937; hutter1899; kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae5,,1910,EA009,5,,egerton1939; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae50,,1920,EA009,5,,hutter1907; martin1951; mccullochetal1954; reinwuhrmann1925,EthnographicAtlas_1967_p66, +Ae51,Ndiki subtribe,1940,EA009,5,,dugast1944; dugast1955; dugast1959; mccullochetal1954; tessmann1934,EthnographicAtlas_1967_p66, +Ae52,,1950,EA009,5,,kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae53,,1920,EA009,5,,nicol1929,Ethnology_Vol5_No1_Jan_1966, +Ae54,,1950,EA009,5,,jeffreys1951; kaberry1952; mccullochetal1954,Ethnology_Vol5_No1_Jan_1966, +Ae55,,1950,EA009,5,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae56,,1950,EA009,5,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Ae57,,1930,EA009,5,,kaberry1952; mccullochetal1954; sieberandsieber1938,Ethnology_Vol5_No1_Jan_1966, +Ae58,,1910,EA009,5,,thorbecke1916; thorbeckeandthorbecke1919,Ethnology_Vol5_No1_Jan_1966, +Ae59,with special reference to the Ngie subtribe,1950,EA009,5,,kaberry1952,Ethnology_Vol5_No1_Jan_1966, +Ae6,with special reference to the Bena Kalundwe,1930,EA009,5,,verhulpen1936,EthnographicAtlas_1967_p66, +Ae7,,1910,EA009,5,,czekanowski1924:257-281; halkin1911; hutereau1909; vedy1904,EthnographicAtlas_1967_p66, +Ae8,,1910,EA009,5,,bourgeois1954; delacauw1936; dhertefeltetal1962; meyer1916; simons1944; vanderburgt1903,EthnographicAtlas_1967_p66, +Ae9,,1950,EA009,5,,kaberry1952; mccullochetal1954,EthnographicAtlas_1967_p66, +Af1,City and environs of Abomey,1890,EA009,5,,argyle1966; bohannan1949; herskovits1932; herskovits1937a; herskovits1938; herskovitsandherskovits1933; leheriss1911; lombard1967; mercier1954; murdock1934b:551-595; skertchley1874; tarditsandtardits1962,EthnographicAtlas_1967_p66, +Af10,,1930,EA009,5,,ardener1954; egboh1971; egboh1972a; egboh1972b; egboh19734; fordeandjones1950; green1947; leithross1939; uchendu1965,EthnographicAtlas_1967_p70, +Af11,,1920,EA009,5,,gaborydubourdeau1926; rouet1907; schwab1947,EthnographicAtlas_1967_p70, +Af12,with special reference to the Kwahu,1930,EA009,5,But the group occupying a compound is a nuclear or polygynous family,field1949; mead1937a,Ethnology_Vol4_No2_Apr_1965, +Af13,,1920,EA009,6,,brown1955; wilsonhaffenden1930,EthnographicAtlas_1967_p70, +Af14,,1930,EA009,6,,hall1938; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af15,,1920,EA009,6,,gibbs1963; gibbs1965; schwab1947; westermann1921,EthnographicAtlas_1967_p70, +Af16,,1910,EA009,5,"Entry follows Ruel and Schuster; Staschewski reports that polygynous units live independently (i.e., related variable EA008 should be code ""5"")",ruel1956; schuster1914; staschewski1917,Ethnology_Vol5_No3_Jul_1966, +Af17,,1900,EA009,5,,mansfeld1908; talbot1926,Ethnology_Vol5_No3_Jul_1966, +Af18,,1900,EA009,5,,bystrom1954; talbot1912,Ethnology_Vol5_No3_Jul_1966, +Af19,,1950,EA009,5,,fordeandjones1950; simmons1957; simmons1960,EthnographicAtlas_1967_p70, +Af2,,1950,EA009,5,,neel1913; paulme1954,EthnographicAtlas_1967_p66, +Af20,,1910,EA009,5,,fordeandjones1950; talbot1915; talbot1923,EthnographicAtlas_1967_p70, +Af21,with special reference to the Kalabari,1920,EA009,6,,granvilleandroth1898; talbot1932,Ethnology_Vol5_No3_Jul_1966, +Af22,,1940,EA009,6,,lloyd1957; omoneukanrin1942,EthnographicAtlas_1967_p70, +Af23,with special reference to the village of Mgbom,1950,EA009,5,,ottenberg1960; ottenberg1965a; ottenberg1965b,EthnographicAtlas_1967_p70, +Af24,,1900,EA009,6,,bradbury1957; roth1903; thomas1910,EthnographicAtlas_1967_p70, +Af25,,1930,EA009,6,,bradbury1957; welch1934,EthnographicAtlas_1967_p70, +Af26,with special reference to the Etsako,1900,EA009,6,,bradbury1957; thomas1910,Ethnology_Vol5_No3_Jul_1966, +Af27,,1950,EA009,5,,fordeetal1955; tschudi1956,Ethnology_Vol5_No3_Jul_1966, +Af28,,1910,EA009,5,"In Murdock (1966a) this was coded this as code ""5"": polygynous, usual co-wives pattern"" (code ""5""), with the comment ""Entry follows an earlier report by Temple; Gunn and Conant report extended families (code ""8"") made up of polygynous units of non-sororal co-wives in separate dwellings (EA009 code ""5"")"". In the EA (Murdock 1967), the codes for EA008 and EA009 changed to the present codes.",gunnandconant1960,EthnographicAtlas_1967_p70, +Af29,,1950,EA009,5,,armstrong1954; fordeetal1955; temple1922,Ethnology_Vol5_No3_Jul_1966, +Af3,Kumasi State,1900,EA009,5,,busia1951; busia1954; fortes1949b; fortes1950; fortes1969:138-216; fortesetal1947; lystad1958; manoukian1950; rattray1916; rattray1923; rattray1927; rattray1929; service1963; wilks1967; wilks1975,EthnographicAtlas_1967_p66, +Af30,,1920,EA009,5,,clifford1936; fordeetal1955; mocklerferryman1892; seton192930,Ethnology_Vol5_No3_Jul_1966, +Af31,with special reference to the Lafia,1960,EA009,5,,gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Af32,Abeouta Province and Benin,1920,EA009,6,,ajisafe1924; forde1951,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af33,"Ekiti Division, Ondo Prov.",1950,EA009,6,,forde1951; lloyd1955; lloyd1965; ward1937,EthnographicAtlas_1967_p70,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af34,"Ife Ilesha Division, Oyo Prov.",1930,EA009,6,,bascom1942; bascom1944; forde1951,Ethnology_Vol5_No3_Jul_1966,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Af35,with special reference to the Krobo,1940,EA009,6,,daniell1856; field1943; halleran1951,Ethnology_Vol5_No3_Jul_1966, +Af36,with special reference to the Glidyi,1900,EA009,6,,asmis1911; klose1899; manoukian1952a; spieth1906; spieth1911; westermann1935,EthnographicAtlas_1967_p70, +Af37,with special reference to the Akpafu,1900,EA009,6,,asmis1911; hinderling195253; plehn1898,Ethnology_Vol5_No3_Jul_1966, +Af38,,1900,EA009,6,,alland1963; clozelandvillamur1902; tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Af39,with special reference to the Ndenie,1900,EA009,6,,clozelandvillamur1902; kobben1956; tauxier1932; villamuranddelafosse1904,Ethnology_Vol5_No3_Jul_1966, +Af4,,1930,EA009,5,,forde1939; forde1941; forde1950; forde1952; forde1964,EthnographicAtlas_1967_p70, +Af40,"with special reference to the Abure (Akapless, Asoko, Esuma)",1890,EA009,6,,loyer1745; mouezy1942; reichenbach1890,Ethnology_Vol5_No3_Jul_1966, +Af41,,1890,EA009,6,,crosson1900; dreyfus1900; vincenti1922,Ethnology_Vol5_No3_Jul_1966, +Af42,,1900,EA009,6,,christensen1954; conolly1897; ffoulkes1908; ffoulkes1909; manoukian1950; sarbah1897,EthnographicAtlas_1967_p70, +Af43,,1930,EA009,6,,daniell1856; field1937; field1940; manoukian1950,EthnographicAtlas_1967_p70, +Af44,,1900,EA009,6,,clozelandvillamur1902,Ethnology_Vol5_No3_Jul_1966, +Af45,,1900,EA009,6,,clozelandvillamur1902; grivot1942,Ethnology_Vol5_No3_Jul_1966, +Af46,,1900,EA009,5,,clozelandvillamur1902; coutouly1920,Ethnology_Vol5_No3_Jul_1966, +Af47,,1940,EA009,5,,beckerdonner1944; schwab1947,Ethnology_Vol5_No3_Jul_1966, +Af48,,1850,EA009,5,,wilson1856,Ethnology_Vol5_No3_Jul_1966, +Af49,,1940,EA009,5,,schwab1947,EthnographicAtlas_1967_p70, +Af5,,1930,EA009,5,,bockani1945; crosby1937; little1947; little1948; little1951; little1954; little1970; mcculloch1950; staub1936,EthnographicAtlas_1967_p70, +Af50,,1920,EA009,6,,chevalier1908; himmelheberandhimmelheber1958; vendeix1924,Ethnology_Vol5_No3_Jul_1966, +Af51,,1920,EA009,6,,tauxier1924a,EthnographicAtlas_1967_p70, +Af52,,1920,EA009,6,,tauxier1924a,EthnographicAtlas_1967_p70, +Af53,,1950,EA009,6,,holas1962,Ethnology_Vol5_No3_Jul_1966, +Af54,,1930,EA009,5,,germann1933; schwab1947,EthnographicAtlas_1967_p70, +Af55,,1950,EA009,6,,dazevedo1962,Ethnology_Vol5_No3_Jul_1966, +Af56,with special reference to the Gio of the Ivory Coast,1930,EA009,5,,schwab1947; viard1934,EthnographicAtlas_1967_p70, +Af57,,1910,EA009,6,,langley1939; mcculloch1950; thomas1916,EthnographicAtlas_1967_p70, +Af58,,1900,EA009,6,,delafosse1899; ellis1914; mcculloch1950; ronnefeldt1935; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Af6,"Yoruba, with special reference to the Oyo",1950,EA009,5,,forde1951; lloyd1955; schwab1955,EthnographicAtlas_1967_p70, +Af7,,1950,EA009,5,,dunglas1939; hallouin1947; kobben1956; paulme1962,EthnographicAtlas_1967_p70, +Af8,,1930,EA009,5,,banfieldandmacintyre1915; forde1955; nadel1940; nadel1942; nadel1954,EthnographicAtlas_1967_p70, +Af9,,1900,EA009,5,,clozelandvillamur1902; labouret1914; menalque1933,EthnographicAtlas_1967_p70, +Ag1,Segou to Bamako on Niger River,1920,EA009,5,,dieterlen1951; dieterlenandcisse1972; henry1910; monteil1924; monteil1967; paques1954,EthnographicAtlas_1967_p70, +Ag10,,1940,EA009,5,,froelich1949b; froelichetal1963; manoukian1952b; tait1953; tait1956; tait1958,EthnographicAtlas_1967_p70, +Ag11,,1910,EA009,5,,charles1911; haumant1929; labouret1931,EthnographicAtlas_1967_p70, +Ag12,,1910,EA009,5,,manoukian1952b; rattray1932; tauxier1912,EthnographicAtlas_1967_p70, +Ag13,,1910,EA009,5,,manoukian1952b; rattray1932; tauxier1912; zwernemann1963,EthnographicAtlas_1967_p70, +Ag14,,1950,EA009,6,,aberle1953; krader1963; meo1919; paulme1956; paulme1957; vladimirtsov1948,Ethnology_Vol5_No3_Jul_1966, +Ag15,,1930,EA009,6,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag16,,1930,EA009,6,"Entry follows Nogueira; Bernatzik reports code ""1"", independent nuclear families, monogamous",bernatzik1933; nogueira1947,EthnographicAtlas_1967_p70, +Ag17,,1940,EA009,6,,gomes1946,Ethnology_Vol5_No3_Jul_1966, +Ag18,,1930,EA009,2,,bernatzik1933; bernatzik1944; santoslima1947,EthnographicAtlas_1967_p70, +Ag19,with special reference to the Felup,1930,EA009,6,,bernatzik1933; cunhataborde1950,EthnographicAtlas_1967_p70, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA009,5,,hammond1964; hammond1966; hammondnd; izardheritierandizard1959; tauxier1917; yatenga1950,EthnographicAtlas_1967_p70, +Ag20,,1930,EA009,5,,bernatzik1933,Ethnology_Vol5_No3_Jul_1966, +Ag21,,1910,EA009,2,,lestrange1950,EthnographicAtlas_1967_p70, +Ag22,with special reference to those of Sine,1920,EA009,5,,aujas1931; bourgeau1933; dulphy1939; fayet1939,EthnographicAtlas_1967_p70, +Ag23,,1910,EA009,6,,monteil1915,Ethnology_Vol5_No3_Jul_1966, +Ag24,,1910,EA009,6,,chevalier1909; kamaraanddrummond1930; thomas1916,Ethnology_Vol5_No3_Jul_1966, +Ag25,,1900,EA009,5,,berengerferaud1878; boyer1953; daniel1910; nicole1903; saintpere1925,EthnographicAtlas_1967_p70, +Ag26,,1930,EA009,6,,anonymous1939a; aubert1936; thomas1916,EthnographicAtlas_1967_p70, +Ag27,,1910,EA009,6,,tauxier1912; tauxier1921,EthnographicAtlas_1967_p70, +Ag28,,1930,EA009,6,,monteil1932,Ethnology_Vol5_No3_Jul_1966, +Ag29,,1910,EA009,6,,tauxier1917,Ethnology_Vol5_No3_Jul_1966, +Ag3,,1930,EA009,2,,arnaud1921; dieterlen1956; griauleanddieterlen1954; paulme1940,EthnographicAtlas_1967_p70, +Ag30,,1910,EA009,5,,cremer192427; guebhard1911; tauxier1912,EthnographicAtlas_1967_p70, +Ag31,,1910,EA009,6,,cheron1913; holas1957,EthnographicAtlas_1967_p70, +Ag32,,1900,EA009,5,,delafosse190809; holas1957; vendeix1935,EthnographicAtlas_1967_p70, +Ag33,,1920,EA009,6,,labouret1931,Ethnology_Vol5_No3_Jul_1966, +Ag34,,1930,EA009,6,,labouret1931; tauxier1931,Ethnology_Vol5_No3_Jul_1966, +Ag35,,1910,EA009,6,,tauxier1921,Ethnology_Vol5_No3_Jul_1966, +Ag36,,1950,EA009,6,,goody1956; goody1958,Ethnology_Vol5_No3_Jul_1966, +Ag37,,1910,EA009,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag38,,1910,EA009,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag39,,1910,EA009,6,,labouret1920; rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag4,Tallensi Tribe,1930,EA009,5,Or fraternal joint families,fortes1937; fortes1938; fortes1940; fortes1945; fortes1949a; fortes1975; fortesandfortes1936; lynn1937; rattray1932,EthnographicAtlas_1967_p70, +Ag40,,1910,EA009,6,,rattray1932; tauxier1912,Ethnology_Vol5_No3_Jul_1966, +Ag41,,1920,EA009,6,,manoukian1952b; rattray1932,EthnographicAtlas_1967_p70, +Ag42,,1910,EA009,6,,tauxier1912; tauxier1924b,Ethnology_Vol5_No3_Jul_1966, +Ag43,,1920,EA009,6,,rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag44,,1910,EA009,2,,duncanjohnstoneandblair1932; fisch1913; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag45,with special reference to those in the Diapaga region,1930,EA009,5,,cartry1966; castinel1945; menjaud1932,Ethnology_Vol6_No4_Oct_1967, +Ag46,,1920,EA009,6,,manoukian1952b; rattray1932,Ethnology_Vol5_No3_Jul_1966, +Ag47,with special reference to those of Ouagadougou (see Ag2 for those of Yatenga),1900,EA009,5,,dimdelobosom1933; mangin1921; marc1909; skinner1958; skinner1964; tauxier1912,EthnographicAtlas_1967_p74, +Ag48,,1890,EA009,6,,froelichetal1963; klose1899; klose1903; zech1899,EthnographicAtlas_1967_p74, +Ag49,,1930,EA009,5,,froelich1949a; froelichetal1963; puig1934,EthnographicAtlas_1967_p74, +Ag5,,1930,EA009,5,,goody1956; labouret1931; rattray1932,EthnographicAtlas_1967_p70, +Ag50,,1910,EA009,5,,asmis1912; froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag51,,1940,EA009,5,,mercier1950; mercier1953,Ethnology_Vol5_No3_Jul_1966, +Ag52,,1950,EA009,6,,froelichetal1963,Ethnology_Vol5_No3_Jul_1966, +Ag53,with special reference to those of Garango,1960,EA009,4,,bernard1966,Ethnology_Vol6_No4_Oct_1967, +Ag54,,1910,EA009,5,,donald1968a; donald1968b; mcculloch1950; thomas1916,Ethnology_Vol10_No1_Jan_1971, +Ag6,,1890,EA009,5,,durand1929; vieillard1939; vieillard1940,EthnographicAtlas_1967_p70, +Ag7,,1930,EA009,6,,malzy1946; ortoli1939,EthnographicAtlas_1967_p70, +Ag8,with special reference to the Coniagui,1910,EA009,2,But earlier sources report extended families,delacour191213; lestrange1950; techer1933,EthnographicAtlas_1967_p70, +Ag9,,1930,EA009,5,,labouret1934; sidibe1932,EthnographicAtlas_1967_p70, +Ah1,Zaria Province,1930,EA009,5,,gunn1956; meek192829; meek1931b; smith1953,EthnographicAtlas_1967_p74,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ah10,,1920,EA009,5,,gunn1953; meek1931b,Ethnology_Vol4_No3_Jul_1965, +Ah11,,1950,EA009,5,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah12,,1920,EA009,5,,bynghall1909; clifford1944; gunnandconant1960,Ethnology_Vol5_No3_Jul_1966, +Ah13,with special reference to the Liliwa,1930,EA009,5,,harris1938,Ethnology_Vol5_No3_Jul_1966, +Ah14,,1920,EA009,5,,gunnandconant1960,EthnographicAtlas_1967_p74, +Ah15,,1920,EA009,5,"Entry follows Harris; Gunn and Conant report that polygynous units live independently (i.e., related variable EA008 should be code ""5"")",gunnandconant1960; harris1930,EthnographicAtlas_1967_p74, +Ah16,,1900,EA009,5,,fitzpatrick1910; mohr1958,Ethnology_Vol5_No3_Jul_1966, +Ah17,,1930,EA009,5,,gunn1953,Ethnology_Vol5_No3_Jul_1966, +Ah18,,1930,EA009,5,,bestnd,Ethnology_Vol5_No3_Jul_1966, +Ah19,,1930,EA009,5,,gunn1953; smithnda; smithndb,EthnographicAtlas_1967_p74, +Ah2,,1920,EA009,2,,meek1931a,EthnographicAtlas_1967_p74, +Ah20,,1920,EA009,5,,gunn1956; meek1931b; smith1951; smithnda; tremearne1912,EthnographicAtlas_1967_p74, +Ah21,,1920,EA009,5,,gunn1956; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah22,,1900,EA009,5,,ames1934; fitzpatrick1910; meek1931a; meek1931b; temple1922,Ethnology_Vol5_No3_Jul_1966, +Ah23,,1920,EA009,1,,meek1931a; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah24,,,EA009,NA,,,, +Ah25,,1920,EA009,5,,kaberry1952; meek1931b,Ethnology_Vol5_No3_Jul_1966,"Comment: Murdock coded as ""Eg""; assume should be ""Eq""" +Ah26,,,EA009,NA,,,, +Ah27,,,EA009,NA,,,, +Ah28,with special reference to the Lekon subtribe,1920,EA009,2,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah29,,1920,EA009,1,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah3,Tar of Benue Province,1920,EA009,5,,bohannan1952; bohannan1953; bohannan1954a; bohannan1954b; bohannan1954c; bohannan1955; bohannan1957a; bohannan1957b; bohannan1960; bohannan1965; bohannanandbohannan1953; bohannanandbohannan1957; bohannanandbohannan1958; bohannanandbohannan1968; bohannanandbohannan1969,EthnographicAtlas_1967_p74, +Ah30,,1920,EA009,5,,meek1931b,EthnographicAtlas_1967_p74, +Ah31,,1910,EA009,5,,haughton1912; meek1931b,EthnographicAtlas_1967_p74, +Ah32,,1920,EA009,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah33,,1920,EA009,5,,meek1931b; temple1922,EthnographicAtlas_1967_p74, +Ah34,with special reference to the Malabu,1920,EA009,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah35,,1920,EA009,5,,helser1926; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah36,,1920,EA009,5,,lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah37,,1920,EA009,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Ah38,,1930,EA009,5,,lembezat1950; lembezat1961; meek1931b,EthnographicAtlas_1967_p74, +Ah39,,1950,EA009,5,,lembezat1952; lembezat1961,EthnographicAtlas_1967_p74, +Ah4,,1920,EA009,2,,meek1931b; percival1938; rehfisch1960,EthnographicAtlas_1967_p74,"Assume Murdock comment refers to Col 12, not Col 14 as stated in Gray (1999)" +Ah5,,1930,EA009,5,,meek1931b; rowling1930,Ethnology_Vol1_No3_Jul_1962, +Ah6,,1920,EA009,2,,dunn1956; meek1931b:189-219,Ethnology_Vol1_No4_Oct_1962, +Ah7,,1940,EA009,2,"Or alternatively these polygynous units may live as minimally (stem) extended families (i.e., related variable EA008 should be code ""6"")",hinderling1955; lavergne1949; lembezat1961,EthnographicAtlas_1967_p74, +Ah8,,1910,EA009,5,,lembezat1961; sieber1925; thorbecke1916,EthnographicAtlas_1967_p74, +Ah9,,1920,EA009,6,,diamond1964; gunn1953,EthnographicAtlas_1967_p74, +Ai1,,1920,EA009,4,,daigre193232; leynaud1954,EthnographicAtlas_1967_p74, +Ai10,Nuba Hills,1940,EA009,5,,nadel1947,EthnographicAtlas_1967_p74, +Ai11,,1900,EA009,5,,czekanowski1924:111-183; hutereau1909; vanoverbergh1909,EthnographicAtlas_1967_p74, +Ai12,,1950,EA009,5,,foelich1956; lembezat1961; malzy1956,EthnographicAtlas_1967_p74, +Ai13,,1920,EA009,6,,tessmann1929,Ethnology_Vol5_No3_Jul_1966, +Ai14,,1920,EA009,5,,lembezat1961; tessmann1929,EthnographicAtlas_1967_p74, +Ai15,,1900,EA009,5,,brussaux1907; lembezat1916a; martin1947,EthnographicAtlas_1967_p74, +Ai16,,1910,EA009,5,,lembezat1916a; savini1937,Ethnology_Vol5_No3_Jul_1966, +Ai17,,1930,EA009,5,,fourneau1938; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai18,,1880,EA009,6,,lebeuf1959,Ethnology_Vol5_No3_Jul_1966, +Ai19,,1910,EA009,5,,hagen1912; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai2,,1940,EA009,2,,nadel1950,Ethnology_Vol1_No1_Jan_1962, +Ai20,,1910,EA009,5,,lamouroux1913; lembezat1961,Ethnology_Vol5_No3_Jul_1966, +Ai21,,1880,EA009,5,,duvallee1925; gaden1909; lebeuf1959; nachtigal1881:539-765,EthnographicAtlas_1967_p74, +Ai22,,1890,EA009,5,,delafosse1897,EthnographicAtlas_1967_p74, +Ai23,,1920,EA009,5,,burssens1958; crabbeck1943; poutrin1910; tessmann1929,EthnographicAtlas_1967_p74, +Ai24,,1900,EA009,5,,gaud1911; vergiat1937,Ethnology_Vol5_No3_Jul_1966, +Ai25,,1950,EA009,5,,burssens1958,Ethnology_Vol5_No3_Jul_1966, +Ai26,,1920,EA009,5,,burssens1958; nelson1951; tanghe1928,EthnographicAtlas_1967_p74, +Ai27,,1890,EA009,5,,czekanowski1924; nvs1896,Ethnology_Vol5_No3_Jul_1966, +Ai28,,1910,EA009,5,,delhaise1912,EthnographicAtlas_1967_p74, +Ai29,,1920,EA009,2,,baxterandbutt1953; czekanowski1924:516-522; maenhaut1939; stuhlmann1894; vandeneynde1923,EthnographicAtlas_1967_p74, +Ai3,,1920,EA009,5,,baxterandbutt1953; deschlippe1956; evanspritchard1932b; evanspritchard1937; evanspritchard1956; evanspritchard1957; evanspritchard1963; evanspritchard1971; evanspritchard1971; evanspritchard1974; larkin192627; legae1926; reining1966; schweinfurth1873; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai30,,1920,EA009,5,,czekanowski1924; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai31,,1920,EA009,2,,baxterandbutt1953; czekanowski1924,Ethnology_Vol5_No3_Jul_1966, +Ai32,,1920,EA009,5,,baxterandbutt1953; mcconnell1925; middleton1958; middleton1960; middleton1965,EthnographicAtlas_1967_p74, +Ai33,,1940,EA009,5,,baxterandbutt1953; czekanowski1924; middleton1955,EthnographicAtlas_1967_p74, +Ai34,,1880,EA009,5,,baxterandbutt1953; felkin1883; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai35,,1870,EA009,5,,baxterandbutt1953; evanspritchard1929; schweinfurth1874:256-314,EthnographicAtlas_1967_p74, +Ai36,,1920,EA009,5,,bernatzik1936; butt1952b; crazzolara1954; ghawi1924; manuel1965; santandrea194445,EthnographicAtlas_1967_p74, +Ai37,,1940,EA009,5,,nadel1947,Ethnology_Vol5_No3_Jul_1966, +Ai38,,1930,EA009,2,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai39,,1940,EA009,2,,nadel1947,EthnographicAtlas_1967_p74, +Ai4,,1920,EA009,1,,evanspritchard1927; seligmanandseligman1932,Ethnology_Vol1_No2_Apr_1962, +Ai40,,1940,EA009,5,,nadel1947,EthnographicAtlas_1967_p74, +Ai41,,1930,EA009,5,,nadel1947; seligmanandseligman1932,EthnographicAtlas_1967_p74, +Ai42,,1940,EA009,2,,nadel1947; nadel1950,EthnographicAtlas_1967_p74, +Ai43,,1930,EA009,5,,nadel1947; stevenson1940,EthnographicAtlas_1967_p74, +Ai44,,1920,EA009,5,,bacon1922; evanspritchard1940; evanspritchard1947; lienhardt195758,EthnographicAtlas_1967_p74, +Ai45,,1930,EA009,5,But a group of brothers with their families form a hamlet,evanspritchard1932a; seligman1932,Ethnology_Vol5_No3_Jul_1966, +Ai46,,1930,EA009,2,,corfield1938; grottanelli1948,EthnographicAtlas_1967_p74, +Ai47,Northern division,1939,EA009,5,,cerulli1956; grottanelli1940; grottanelli1972,EthnographicAtlas_1967_p74, +Ai5,,1920,EA009,5,,czekanowski1924:400-467; vangeluwe1957,EthnographicAtlas_1967_p74, +Ai6,Shilluk Kingdom,1900,EA009,5,,butt1952b; cann1929; dempsey1955; evanspritchard1948; hofmayr1925; howell1941; lienhardt1954; pumphrey1941; seligmanandseligman1932; westermann1912,EthnographicAtlas_1967_p74, +Ai7,,1910,EA009,5,,clozel1896; hartmann1927; poupon1915; tessmann193437,EthnographicAtlas_1967_p74, +Ai8,,1930,EA009,5,,hawkesworth1932; nadel1947,EthnographicAtlas_1967_p74, +Ai9,Around Yagoua in Cameroon,1910,EA009,5,,garine1964; lembezat1961; vonhagen1912,EthnographicAtlas_1967_p74, +Aj1,,1950,EA009,5,,lawrance1957,EthnographicAtlas_1967_p74, +Aj10,,1920,EA009,5,,butt1952b; girling1960; grove1919; seligmanandseligman1932,Ethnology_Vol4_No2_Apr_1965, +Aj11,,1900,EA009,5,,cummins1904; howell1951; lienhardt1958; lienhardt1961; nebel1948; seligmanandseligman1932; stubbsandmorrison1938; titherington1927,EthnographicAtlas_1967_p78, +Aj12,,1920,EA009,5,,molinaro194041; nalder1937; seligmanandseligman1926; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj13,,1930,EA009,5,,huntingford1953a; nalder1937; seligmanandseligman1932,Ethnology_Vol5_No3_Jul_1966, +Aj14,,1931,EA009,5,,huntingford1953a; nalder1937,Ethnology_Vol5_No3_Jul_1966, +Aj15,,1900,EA009,5,"Or these polygynous units may live as small extended families (i.e., code for related variable EA008 would be ""7"" instead of ""5"")",huntingford1953a; nalder1937; vandenplas1910; yunis1924,EthnographicAtlas_1967_p78, +Aj16,with special reference to the Riverain Mondari,1930,EA009,2,,buxton1958; huntingford1953a; nalder1937,EthnographicAtlas_1967_p78, +Aj17,,1890,EA009,5,,demuenynck1908; southall1956; stirton1925; stuhlmann1894,EthnographicAtlas_1967_p78, +Aj18,,1950,EA009,5,,jensen1959,EthnographicAtlas_1967_p78, +Aj19,,1920,EA009,5,,driberg1922; driberg1925a; driberg1932,EthnographicAtlas_1967_p78, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA009,5,,baumann1894; fosbrooke1948; hollis1905; huntingford1953b; merker1904,EthnographicAtlas_1967_p78, +Aj20,,1940,EA009,5,,cerulli1956; lyth1947; pauli1950,EthnographicAtlas_1967_p78, +Aj21,,1930,EA009,5,,gulliver1953; gulliver1955; gulliver1965; gulliverandgulliver1953; wayland1931,EthnographicAtlas_1967_p78, +Aj22,,,EA009,NA,,,, +Aj23,,1950,EA009,5,But the band is essentially an extended family,beech1911; huntingford1953b; peristiany1951; schneider1957a; schneider1957b,EthnographicAtlas_1967_p78, +Aj24,,1930,EA009,5,,gulliverandgulliver1953; nalder1937,EthnographicAtlas_1967_p78, +Aj25,,1920,EA009,5,,huntingford1953b; massam1927,Ethnology_Vol5_No3_Jul_1966, +Aj26,,1910,EA009,5,,barton1921; beech1911; huntingford1953b; peristiany1954; schneider1957a,EthnographicAtlas_1967_p78, +Aj27,,1920,EA009,5,,roscoe1924,Ethnology_Vol5_No3_Jul_1966, +Aj28,,1940,EA009,5,But extended families tend to form units within a camp,baumann1894; huntingford1953b; klima1964; wilson195253,Ethnology_Vol5_No3_Jul_1966, +Aj29,,1950,EA009,5,,spencer1965,Ethnology_Vol5_No4_Oct_1966, +Aj3,,1930,EA009,5,,evanspritchard1936; evanspritchard1940a; evanspritchard1940b; evanspritchard1950b; jackson1923; seligmanandseligman1932; tucker1933,EthnographicAtlas_1967_p78, +Aj30,,1950,EA009,5,,dysonhudson1963; gulliverandgulliver1953,Ethnology_Vol7_No1_Jan_1968, +Aj31,,,EA009,NA,,,, +Aj4,,1920,EA009,5,,driberg1923; hayley1947,EthnographicAtlas_1967_p78, +Aj5,,1920,EA009,5,,elmley1927; gulliver1951; gulliver1955; rayne1919; white1920,EthnographicAtlas_1967_p78, +Aj6,,1940,EA009,4,,butt1952a; evanspritchard1949a; evanspritchard1950a; hartmann1928; hobley1902; owen1933; shaw1932; southall1952,EthnographicAtlas_1967_p78, +Aj7,,1910,EA009,2,"Formerly code ""5"", indendent polygynous units with non-sororal co-wives in separate dwellings",hollis1909; huntingford1950; huntingford1953b; huntingford1953c; snell1954,EthnographicAtlas_1967_p78, +Aj8,,1920,EA009,5,,beaton1936; huntingford1953a; owen1908; seligmanandseligman1928; seligmanandseligman1932,EthnographicAtlas_1967_p78, +Aj9,,1920,EA009,5,,barton1923; huntingford1953b; peristiany1938,EthnographicAtlas_1967_p78, +Ca1,Town of Buso,1930,EA009,2,,cerulli1956; hallpike1969; jensen1936; kluckhohn1962,Ethnology_Vol10_No1_Jan_1971, +Ca10,,1880,EA009,5,"Entry follows Lewis; Paulitschke reports that polygynous units live independently (i.e., related variable EA008 should be code ""5"")",hildebrandt1875; lewis1955; paulitschke1888,Ethnology_Vol5_No2_Apr_1966, +Ca11,,1890,EA009,5,,huntingford1955b; paulitschke189396b,EthnographicAtlas_1967_p78, +Ca12,,1880,EA009,2,,cecchi188587; cerulli193233; huntingford1955b; onnekin1956,EthnographicAtlas_1967_p78, +Ca13,with special reference to the eastern Macha,1950,EA009,2,,huntingford1955b; knutsson1963; knutsson1967,EthnographicAtlas_1967_p78, +Ca14,,1950,EA009,5,,cerulli1956; fleming1965,EthnographicAtlas_1967_p78, +Ca15,,1930,EA009,5,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca16,,1930,EA009,5,,cerulli1956; jensen1936,EthnographicAtlas_1967_p78, +Ca17,,1950,EA009,5,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca18,,1940,EA009,5,,cerulli1956; jensen1959; ricci1950,Ethnology_Vol5_No2_Apr_1966, +Ca19,,1950,EA009,5,,fleming1965; jensen1959,EthnographicAtlas_1967_p78, +Ca2,Dolbahanta clan or subtribe,1950,EA009,5,,lewis1955; lewis1957; lewis1961; lewis1962b; lewis1962c; lewis1965a; paulitschke1888; puccioni1936,EthnographicAtlas_1967_p78, +Ca20,,1890,EA009,5,,cerulli1956; hohnel1890; nalder1937,Ethnology_Vol5_No2_Apr_1966, +Ca21,,1950,EA009,5,,fleming1965; jensen1959; ricci1952,Ethnology_Vol5_No2_Apr_1966, +Ca22,,1950,EA009,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca23,,1950,EA009,5,,jensen1959,EthnographicAtlas_1967_p78, +Ca24,,1950,EA009,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca25,,1950,EA009,5,,jensen1959,Ethnology_Vol5_No2_Apr_1966, +Ca26,,,EA009,NA,,,, +Ca27,,1930,EA009,2,,cerulli1956; grottanelli1940,Ethnology_Vol5_No2_Apr_1966, +Ca28,,1950,EA009,2,,cerulli1956; jensen1959,EthnographicAtlas_1967_p78, +Ca29,,1920,EA009,2,,huntingford1955b; straube1963,EthnographicAtlas_1967_p78, +Ca3,,1950,EA009,1,,fischer1957b; munzinger1864; nadel1946,EthnographicAtlas_1967_p78, +Ca30,Kafa Kingdom,1890,EA009,6,,bieber192023; cerulli193233; huntingford1955b,EthnographicAtlas_1967_p78, +Ca31,,1860,EA009,1,,flad1860; leslau1951; leslau1957; stern1862,EthnographicAtlas_1967_p78, +Ca32,,1860,EA009,5,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca33,,1860,EA009,2,,grottanelliandmassari1943; munzinger1864; pollera1913; tucci1950,EthnographicAtlas_1967_p78, +Ca34,,1920,EA009,2,,klunzinger1876; murray1923; murray1935,Ethnology_Vol5_No2_Apr_1966, +Ca35,,1930,EA009,2,,clark1938; sandars1935,Ethnology_Vol5_No2_Apr_1966, +Ca36,,1860,EA009,2,,munzinger1864; nadel1945; paul1950,Ethnology_Vol5_No2_Apr_1966, +Ca37,Bogo Tribe,1850,EA009,2,,munzinger1859,Ethnology_Vol5_No2_Apr_1966, +Ca38,"with special reference to the Maria (Marea, Marya) subtribe in the north",1860,EA009,2,,littman1910; munzinger1864,Ethnology_Vol5_No2_Apr_1966, +Ca39,,1930,EA009,6,,lewis1965b,EthnographicAtlas_1967_p78, +Ca4,,1950,EA009,2,,huntingford1953b; winter1955; winterandmolyneaux1963,EthnographicAtlas_1967_p78, +Ca40,,1950,EA009,6,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca41,,1950,EA009,2,,straube1957; straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca42,,1950,EA009,6,,straube1963,Ethnology_Vol6_No4_Oct_1967, +Ca43,,,EA009,NA,,,, +Ca5,,1930,EA009,2,,clark1938; murray1935; sandars1933,EthnographicAtlas_1967_p78, +Ca6,,1880,EA009,5,,lewis1955; lucas1935; paulitschke189396a; scaramucciandgiglioli1884,EthnographicAtlas_1967_p78, +Ca7,Gondar district,1950,EA009,1,The extended family occupies a hamlet,lipsky1962; messing1957,EthnographicAtlas_1967_p78, +Ca8,,,EA009,NA,,,, +Ca9,,1890,EA009,5,,baumann1894; huntingford1953b; reche1914,Ethnology_Vol5_No2_Apr_1966, +Cb1,,1940,EA009,5,,greenberg1946; greenberg1947,Ethnology_Vol1_No1_Jan_1962, +Cb10,,1920,EA009,5,,meek1931b,Ethnology_Vol4_No2_Apr_1965, +Cb11,,1900,EA009,5,,lampen1925; macmichael1912; macmichael1918; macmichael1922:58-64,Ethnology_Vol5_No2_Apr_1966, +Cb12,,,EA009,NA,,,, +Cb13,,1930,EA009,6,,lampen1933,Ethnology_Vol5_No2_Apr_1966, +Cb14,,1910,EA009,6,,lagrange1913; martine1924,Ethnology_Vol5_No2_Apr_1966, +Cb15,with special reference to the Humr,1940,EA009,5,The extended family is the camp group,cunnison1954; henderson1939,Ethnology_Vol6_No4_Oct_1967, +Cb16,,1920,EA009,6,,bouille1937; devallee1925,Ethnology_Vol5_No2_Apr_1966, +Cb17,Jebel Marra,1880,EA009,2,,barth1967; beaton1948; felkin1885; macmichael1922:91-121; tunisi1845,EthnographicAtlas_1967_p78, +Cb18,,1930,EA009,6,,bouille1937; carbou1912; lebeuf1959,EthnographicAtlas_1967_p78, +Cb19,,1870,EA009,5,,cohen1960; cohen1961; cohen1967; denhamandclapperton1826; nachtigal1881; schultze1913,EthnographicAtlas_1967_p78, +Cb2,Upper and lower Salum in Gambia,1950,EA009,5,,ames1953; ames1959a; ames1959b; ames1962; falad1963; gailey1965; gamble1957; gray1966; irvine1973; trimingham1962,EthnographicAtlas_1967_p78, +Cb20,,1920,EA009,6,,dupicq1931; robin1947,Ethnology_Vol5_No2_Apr_1966, +Cb21,,1930,EA009,5,,pfeffer1936,EthnographicAtlas_1967_p82, +Cb22,,1920,EA009,5,,coutouly1923; delmond1953,Ethnology_Vol5_No3_Jul_1966, +Cb23,,1930,EA009,6,,kane1939; lafont1939,EthnographicAtlas_1967_p82, +Cb24,Wodaabe of Niger,1950,EA009,5,,dupire1962a; dupire1962b; dupire1963; hopen1958; johnson1967; riesman1977; stcroix1972; stenning1958; stenning1959; stenning1965,EthnographicAtlas_1967_p82, +Cb25,,1930,EA009,5,,anonymous1939,Ethnology_Vol5_No3_Jul_1966, +Cb26,Zazzagawa of Zaria,1950,EA009,5,,dry1956; greenberg1946; greenberg1947; hill1972; prothero1957; smith1954a; smith1955b; smith1960; smith1962; smith1965; smith1967; smith1978b,EthnographicAtlas_1967_p82, +Cb27,,1920,EA009,5,,fegan1930; meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb28,,1920,EA009,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb29,,1920,EA009,5,,meek1931b,Ethnology_Vol5_No3_Jul_1966, +Cb3,Bamba division,1940,EA009,2,,jacquemond1959; miner1953; prost1954; prost1970; rouch1954; rouch1960; sarr1973,EthnographicAtlas_1967_p78, +Cb4,,1920,EA009,6,"Extended families are quite possible, though unreported",reid1930,EthnographicAtlas_1967_p78, +Cb5,,1910,EA009,6,,bouille1937; lebeuf1959; talbot1911,EthnographicAtlas_1967_p78, +Cb6,,1920,EA009,5,,woodnd,EthnographicAtlas_1967_p78, +Cb7,,1920,EA009,5,,meek1931b:288-310,EthnographicAtlas_1967_p78, +Cb8,with special reference to the Bororo Fulani of Skoto,1920,EA009,5,,faidherbe1882; fordeandscott1946; stcroix1944; stenning1959; wilsonhaffenden1925,EthnographicAtlas_1967_p78, +Cb9,"Hausa, with special reference to the Kanawa",1940,EA009,5,,fordeandscott1946; smith1955a,EthnographicAtlas_1967_p78, +Cc1,,1950,EA009,2,,briggs1958; carobaroja1955; cauneille1950,EthnographicAtlas_1967_p82, +Cc10,,1900,EA009,2,,jean1909; joubert1939; nicolaisen1963; nicolas1950; rodd1926,EthnographicAtlas_1967_p82, +Cc11,,1860,EA009,1,,duveyrier1864,Ethnology_Vol5_No2_Apr_1966, +Cc12,,1944,EA009,1,,cortier1908,Ethnology_Vol5_No2_Apr_1966, +Cc13,,1920,EA009,1,,coutouly1923; gaalon1939,Ethnology_Vol5_No2_Apr_1966, +Cc14,,1880,EA009,2,,bouille1937; carbou1912; chapelle1957b; cline1950; lebeuf1959; lecoeur1956; nachtigal1881:115-150,Ethnology_Vol6_No4_Oct_1967, +Cc15,,,EA009,NA,,,, +Cc16,,1930,EA009,6,,briggs1958; darmagnac1934,EthnographicAtlas_1967_p82, +Cc17,,1930,EA009,2,,carobaroja1955; lotte1939,EthnographicAtlas_1967_p82, +Cc18,,1910,EA009,1,But the camp group is an extended family,salvy1951; tauxier1912,Ethnology_Vol5_No2_Apr_1966, +Cc19,,1950,EA009,1,,dubie1953; martv1919,Ethnology_Vol5_No2_Apr_1966, +Cc2,Nomads of Tibesti,1950,EA009,5,,briggs1958; chapelle1957a; cline1950; fuchs1956; lecoeur1950; nachtigal1879,EthnographicAtlas_1967_p82, +Cc20,with special reference to the more nomadic northern groups,1910,EA009,1,,adeler1939; tauxier1912,EthnographicAtlas_1967_p82, +Cc3,inhabitants of the oasis of Siwa,1920,EA009,2,,abdallah1917; belgrave1923; cline1936,EthnographicAtlas_1967_p82, +Cc4,,1920,EA009,1,,goichon1927; mercier1922,EthnographicAtlas_1967_p82, +Cc5,,1910,EA009,1,But polygyny is practiced by the Bella serfs,aymard1911; miner1953; said1903; zeltner1914,EthnographicAtlas_1967_p82, +Cc6,,1910,EA009,5,,parkyns1951; seligmanandseligman1918,Ethnology_Vol4_No1_Jan_1965, +Cc7,Timbuctoo,1950,EA009,2,,miner1953,Ethnology_Vol4_No2_Apr_1965,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Cc8,,1890,EA009,1,,hourst1899,Ethnology_Vol5_No2_Apr_1966, +Cc9,Ahaggaren tribe,1920,EA009,1,,benhazera1908; briggs1958; lhote1955and1944; nicolaisen1959; nicolaisen1963,EthnographicAtlas_1967_p82, +Cd1,Kenuzi Nubians of Dahmit,1920,EA009,2,,callenderandelguindi1971; fernea1966; herzog1957; kennedy1977; schafer1935,EthnographicAtlas_1967_p82, +Cd10,,1900,EA009,1,Extended families are suggested rather than attested,destaing190711; moulieras1905,Ethnology_Vol5_No2_Apr_1966, +Cd11,,1500,EA009,1,,cook1900; espinosa1907; gambier1894,EthnographicAtlas_1967_p82, +Cd12,,1870,EA009,2,,bel1908; bernard1929; villot1875; vollenhoven1903,EthnographicAtlas_1967_p82, +Cd13,,1930,EA009,6,,bardin1944; despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd14,,1870,EA009,2,,bernard1929; villot1875,Ethnology_Vol5_No2_Apr_1966, +Cd15,,1910,EA009,1,,michauxbellaire1911; rackow1958,Ethnology_Vol5_No2_Apr_1966, +Cd16,with special reference to those in the hinterlandof Casablanca,1930,EA009,2,,michauxbellaire1932,Ethnology_Vol5_No2_Apr_1966, +Cd17,,1920,EA009,2,But the band is a patrilocal extended family,ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd18,,1920,EA009,2,,kennett1925; murray1935,Ethnology_Vol5_No2_Apr_1966, +Cd19,,1920,EA009,2,,despois1940; ubachandrackow1923,Ethnology_Vol5_No2_Apr_1966, +Cd2,Town and environs of Silwa,1950,EA009,2,,ammar1954; ayrout1945; blackman1927; harris1957,EthnographicAtlas_1967_p82, +Cd20,,1940,EA009,6,,evanspritchard1949b,Ethnology_Vol5_No2_Apr_1966, +Cd21,,1930,EA009,2,,bonniard1934; despois1930,Ethnology_Vol5_No2_Apr_1966, +Cd3,Entirety: Moroccan,1920,EA009,2,,coon1931; hart1954; hart1976; moulieras1895,EthnographicAtlas_1967_p82, +Cd4,,1890,EA009,2,,bourdieu1966; hanoteauandletourneaux1893; maunier1930,EthnographicAtlas_1967_p82, +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA009,1,,montagne1927; montagne1930; ubachandrackow1923,EthnographicAtlas_1967_p82, +Cd6,with special reference to the New Empire,-1400,EA009,1,,budge1926; erman1923; kees1923; montet1946,EthnographicAtlas_1967_p82, +Cd7,with special reference to the Zemmur tribe,1910,EA009,2,,bourilly1932; celerier1927; laoust1915; michauxbellaire1920; piquet1925; querleux1915,Ethnology_Vol5_No2_Apr_1966, +Cd8,,1910,EA009,1,,gaudry1929; hiltonsimpson1921; stuhlmann1912,Ethnology_Vol5_No2_Apr_1966, +Cd9,,1900,EA009,1,,justinard1908,Ethnology_Vol5_No2_Apr_1966, +Ce1,Mountain Gheg of No. Albania,1900,EA009,6,,coon1950; durham1909; durham1928; hasluck1954; lane1923; pisko1896,EthnographicAtlas_1967_p82, +Ce2,with special reference to the village of Rio de Onor in the extreme northeast,1950,EA009,1,,atkinson1953; dias1953; entwistle1953,Ethnology_Vol4_No3_Jul_1965, +Ce3,City and environs of Rome,100,EA009,1,,abbott1917; balsdon1963; balsdon1969; carcopino1940; davis1959; friedlander1908; glover1927; grant1960; harrison1913; maxey1938; paoli1963; pellisson1901; pliny1969; rostovtzeff1945,Ethnology_Vol7_No2_Apr_1968, +Ce4,Labourd,1930,EA009,1,,carobaroja1944; carobaroja1958; douglass1969; greenwood1971; madariaga1940,EthnographicAtlas_1967_p82,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,with special reference to the inhabitants of the city of Naples and its immediate environs,1960,EA009,1,,parsons1964,EthnographicAtlas_1967_p82, +Ce6,with special reference to the inhabitants of Andalusia,1950,EA009,1,,pittrivers1954,EthnographicAtlas_1967_p82, +Ce7,with special reference to the village of Vasilika,1950,EA009,1,,firedl1962,EthnographicAtlas_1967_p82, +Ce8,with special reference to the village of Vera,1934,EA009,1,,carobaroja1944; douglass1967,Ethnology_Vol10_No1_Jan_1971, +Cf1,Small City in Connecticut,1920,EA009,1,,murdocknd,EthnographicAtlas_1967_p82, +Cf2,of the Transvaal,1850,EA009,1,,fisher1900; keane1900; lobb1937; walker1928,Ethnology_Vol1_No2_Apr_1962, +Cf3,,1930,EA009,1,,munch1945,EthnographicAtlas_1967_p82, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA009,1,,pierson1951,EthnographicAtlas_1967_p82, +Cf5,,1930,EA009,1,,miner1939,EthnographicAtlas_1967_p82, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA009,1,,coon1939; keurandkeur1955,EthnographicAtlas_1967_p82, +Cg2,,1100,EA009,1,,dasent1861; johnson1930; merrill1964,EthnographicAtlas_1967_p82, +Cg3,County Clare,1930,EA009,1,,arensbergandkimball1940; cresswell1969; evans1957; kane1970; kane1972; odonoghue1958,EthnographicAtlas_1967_p82, +Cg4,Konkama District,1950,EA009,1,,bernatzik1938; collinder1949; haglund1935; karsten1955; manker1953; minn1955; pehrson1951; pehrson1954; pehrson1957; whitaker1955,EthnographicAtlas_1967_p82, +Cg5,,1950,EA009,1,,turneyhigh1953,Ethnology_Vol1_No3_Jul_1962, +Ch1,with special reference to the village of Orasac,1950,EA009,1,,coon1949; halpern1956; halpern1957,EthnographicAtlas_1967_p82, +Ch10,,1910,EA009,1,,cotlarciuc1913,Ethnology_Vol7_No1_Jan_1968, +Ch11,Viriatino Village,1955,EA009,1,,altandalt1959; benet1970; black1960; dunn1971a; dunn1971b; dunnanddunn1963; dunnanddunn1967; fainsod1958; fitzsimmons1957; maceandmace1963; schapiro1960,Ethnology_Vol10_No1_Jan_1971, +Ch2,,1890,EA009,1,,kaindl1894; koenig1935; szuchiewicz190208,EthnographicAtlas_1967_p82, +Ch3,with special reference to the Hana district of central Moravia,1940,EA009,1,,hajda1955; pospisilnd,EthnographicAtlas_1967_p82, +Ch4,,1900,EA009,1,,heffner1955; wichmann1913,EthnographicAtlas_1967_p82, +Ch5,with special reference to the village of Dragelevtsy,1940,EA009,1,"Formerly monogamous families were organized as part of large extended families (i.e., related variable EA008 would have been coded ""8"")",sanders1949; vatez1904,EthnographicAtlas_1967_p82, +Ch6,,1910,EA009,1,,ember1954,EthnographicAtlas_1967_p82, +Ch7,,1930,EA009,1,,friedrich1954,EthnographicAtlas_1967_p82, +Ch8,,1940,EA009,1,,hanzeli1955,EthnographicAtlas_1967_p82, +Ch9,,1930,EA009,1,,maciuika1955,EthnographicAtlas_1967_p82, +Ci1,with special reference to the Baga Dorbed group,1920,EA009,1,,aberle1953; adelmannd,EthnographicAtlas_1967_p82, +Ci10,Vicinity of Erevan,1900,EA009,1,,haxthausen1854; karst190707; klidschian1911; kohler1906,EthnographicAtlas_1967_p82, +Ci11,,1940,EA009,2,,barth1953; hansen1961; leach1938; longrigg1953; masters1953,EthnographicAtlas_1967_p82, +Ci12,Abkhaz Tribe,1880,EA009,2,,byhan1926; dzhanashvili1894; lotz1956; luzbetak1951,Ethnology_Vol19_No2_Apr_1980, +Ci2,,1930,EA009,2,,grigolia1939,EthnographicAtlas_1967_p82, +Ci3,with special reference to the Kayakent group of eastern Dagestan,1900,EA009,2,,gadzhieva1958,EthnographicAtlas_1967_p82, +Ci4,,1920,EA009,6,,castagne1929; ladysenskij1929,EthnographicAtlas_1967_p82, +Ci5,Northern Anatolian Plateau,1950,EA009,2,,hanson1955; lerner1958; makal1954; pierce1964; stirling1953; stirling1963; stirling1965; yasa1957,Ethnology_Vol10_No1_Jan_1971, +Ci6,,1880,EA009,2,,kovalevsky1888; kovalevsky1893; nioradze1923,EthnographicAtlas_1967_p82, +Ci7,,1900,EA009,6,,lotz1956; plaetschke1929,EthnographicAtlas_1967_p82, +Ci8,,1850,EA009,1,,abasadse1894; allen1932; haxthausen1854,Ethnology_Vol5_No2_Apr_1966, +Ci9,,1910,EA009,1,,grigolia1939,Ethnology_Vol5_No2_Apr_1966, +Cj1,with special reference to the village of Tell Toqaan,1950,EA009,2,,sweet1960,EthnographicAtlas_1967_p82, +Cj10,with special reference to the village of ech-Chibayish,1950,EA009,5,,salim1962; thesiger1964,EthnographicAtlas_1967_p86, +Cj2,Unspecified,1920,EA009,5,,ashkenazi1948; musil1928; raswan1947,EthnographicAtlas_1967_p82, +Cj3,,-800,EA009,2,,balyn1957; bright1959; dalman1932; devaux1961; forbes1964; holybiblend; noth1966; patai1961,EthnographicAtlas_1967_p86, +Cj4,City and environs of Babylon,-2000,EA009,2,But concubinage occurred,contenau1954; delaporte1925; driverandmiles195255; gadd1965; saggs1962; saggs1965; thompson1923,EthnographicAtlas_1967_p86, +Cj5,,1930,EA009,2,,dickson1949,EthnographicAtlas_1967_p86, +Cj6,with special reference to the sedentary population,1950,EA009,2,,granqvist193135; harris1958,Ethnology_Vol2_No2_Apr_1963, +Cj7,with special reference to the village of Munsif,1950,EA009,1,But commonly Fm elsewhere in Lebanon,davies1949; gulick1953; gulick1955; gulick1956; patai1956; prothro1961; tannous1949; touma1958,EthnographicAtlas_1967_p86, +Cj8,with special reference to those of Mount Carmel in Israel,1930,EA009,1,,kasdan1961; kasdan1965,EthnographicAtlas_1967_p86, +Cj9,,1950,EA009,6,,hazard1956,Ethnology_Vol5_No2_Apr_1966, +Ea1,,1950,EA009,2,,bordiend; wilber1964,EthnographicAtlas_1967_p86, +Ea10,with special reference to the more nomadic groups,1950,EA009,6,,pehrson1966,Ethnology_Vol6_No4_Oct_1967, +Ea11,with special reference to the Ghilzai tribe,1950,EA009,2,,broadfoot1885; wilber1962,Ethnology_Vol7_No3_Jul_1968, +Ea12,,1940,EA009,1,,garrod1946a; garrod1946b,Ethnology_Vol7_No3_Jul_1968, +Ea13,Mohla Village,1950,EA009,1,,callardandwheeler1963; dass1954; eglar1957; eglar1960; honigmann1957; honigmann1958; kennedy1957; palmer1961; symonds1950; wilbur1964,Ethnology_Vol10_No1_Jan_1971, +Ea2,with special reference to the Yusufsai of Swat,1950,EA009,2,,barth1956a; barth1959; honigmann1953,EthnographicAtlas_1967_p86, +Ea3,with special reference to the Urazgani,1930,EA009,2,,bacon1958; hudsonandbeacon1941; schurmann1962; wilber1956,EthnographicAtlas_1967_p86, +Ea4,,1950,EA009,2,,barth1956b,EthnographicAtlas_1967_p86, +Ea5,,1890,EA009,5,,robertson1896; wilber1956,EthnographicAtlas_1967_p86, +Ea6,Nomadic branch,1958,EA009,2,,barth1961; barth1964,EthnographicAtlas_1967_p86, +Ea7,,1950,EA009,2,,schurmann1962,EthnographicAtlas_1967_p86, +Ea8,,,EA009,NA,,,, +Ea9,,1950,EA009,2,,vreeland1957,EthnographicAtlas_1967_p86, +Eb1,Great Horde,1910,EA009,6,,castagn1930; grodekov1889; hudson1938; murdock1934b:135-162; radloff1893; sedelnikov1903,EthnographicAtlas_1967_p86, +Eb2,,1920,EA009,2,,krader1963; schram1954,EthnographicAtlas_1967_p86, +Eb3,Narobanchin Territory,1940,EA009,1,,ballis1956; friters1949; maiskii1921; rupen1956; vreeland1954,EthnographicAtlas_1967_p86, +Eb4,with special reference to the Botaha area,1940,EA009,1,,vreeland1954,Ethnology_Vol1_No3_Jul_1962, +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA009,2,,freikin1954; odonovan1882,Ethnology_Vol1_No3_Jul_1962, +Eb6,with special reference to those southeast of Lake Baikal,1900,EA009,2,,krader1954a; krader1954b; krader1957; krader1963,Ethnology_Vol2_No1_Jan_1963, +Eb7,,1930,EA009,1,,krader1954b; vreeland1954,EthnographicAtlas_1967_p86, +Eb8,with special reference to the Kongrat tribe,1800,EA009,6,,zadykhina1952,Ethnology_Vol7_No1_Jan_1968, +Ec1,Sakhalin Island,1920,EA009,2,,chard1961; hawes1903; ivanovetal1964; schrenck1881; seeland1882; shternberg1933a,EthnographicAtlas_1967_p86, +Ec10,with special reference to those on the Ob River,1880,EA009,2,,ahlqvist1885; harva193940; rabot1889; steinitz1938,EthnographicAtlas_1967_p86, +Ec11,,1900,EA009,2,,donner1932; donner1954,Ethnology_Vol7_No1_Jan_1968, +Ec2,with special reference to the Yakutsk district,1900,EA009,5,,chodzidlo1951; gayton1948b; jochelson1933; priklonskii1953; sumner1901,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA009,5,,bogoras1901a; bogoras1901b; krenova1936; orlovshii1928; sverdrup1938,EthnographicAtlas_1967_p86, +Ec4,Yurak Tribe,1900,EA009,2,,castren1853; donner1954; englehardt1899; hajdu1963; islavin1847; jackson1895a; jackson1895b; kopytoff1955; rae1875,EthnographicAtlas_1967_p86, +Ec5,with special reference to the Maritime Koryak,1900,EA009,2,,bergman1927; czaplieka1914; jochelson190508,EthnographicAtlas_1967_p86, +Ec6,Upper Kolyma River,1850,EA009,2,,jochelson191926,EthnographicAtlas_1967_p86, +Ec7,Saru Basin in Hokkaido,1900,EA009,2,"Formerly code ""2"", independent nuclear families, occasional polygyny",batchelor1895; batchelor1927; cornell1964; hilger1971; munro1962; murdock1934j; sugiuraandbefu1962; sutherland1948; watanabe1964b,EthnographicAtlas_1967_p86, +Ec8,,1900,EA009,1,,shimkin1939,EthnographicAtlas_1967_p86, +Ec9,,1920,EA009,2,,lattimore1933,EthnographicAtlas_1967_p86, +Ed1,Kanghwa Island,1950,EA009,1,,dallet1874; hewesandkim1952; heydrich1931; kang1931; osgood1951; rutt1964,EthnographicAtlas_1967_p86, +Ed10,with special reference to the village of Taitou,1930,EA009,1,,yang1945,EthnographicAtlas_1967_p86, +Ed13,with special reference to the town of Kabira,1940,EA009,1,,smith1952,Ethnology_Vol7_No1_Jan_1968, +Ed14,with special reference to the Man Lan Ten of North Vietnam,NA,EA009,2,,abadie1924; girard1904,Ethnology_Vol7_No1_Jan_1968, +Ed15a,with special reference to the village of Karimata,1950,EA009,1,,burd1952,Ethnology_Vol7_No1_Jan_1968, +Ed15b,"Kaihsienkung Village, Chekiang",1936,EA009,1,,chien1967; fei1946; fried1953; lang1946; linebargeretal1956; smith1970,Ethnology_Vol10_No1_Jan_1971, +Ed16,with special reference to the village of Yannon,1940,EA009,2,,davenportnd,Ethnology_Vol7_No1_Jan_1968, +Ed2,Liang Shan and Taliang S,1940,EA009,2,,dollone1912; lebaretal1964:19-27; lin1961; litard1913; pollard1921; tseng1945,EthnographicAtlas_1967_p86, +Ed3,Aigun District,1920,EA009,1,,shirokogoroff1924,EthnographicAtlas_1967_p86, +Ed4,with special reference to the Magpie (Yachio) Miao,1940,EA009,2,,mark1967; ruey1960,EthnographicAtlas_1967_p86, +Ed5,Okayama,1950,EA009,1,,beardsleyetal1959; brownnd; buckandmasland1950:591-710; devos1965; devosandwagatsuma1967; norbeck1954; smithandcornell1956,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,with special reference to those in the hinterland of Swatow,1920,EA009,2,,kulp1925,EthnographicAtlas_1967_p86, +Ed7,,1950,EA009,1,,glacken1955; maetzkiandmaetzki1963; maretzki1957; pittsetal1955,EthnographicAtlas_1967_p86, +Ed8,,1930,EA009,2,,fitzgerald1941,EthnographicAtlas_1967_p86, +Ed9,,1930,EA009,2,,lebaretal1964; odaka1950; strubel1937,EthnographicAtlas_1967_p86, +Ee1,,1940,EA009,2,,duffsutherlanddunbar1915; roy1960,EthnographicAtlas_1967_p86, +Ee2,Hunza State,1930,EA009,2,,clark1963; lorimer1935; lorimer1938; lorimer1939; rodale1948; tobe1960,EthnographicAtlas_1967_p86, +Ee3,Lingthem and vicinity,1930,EA009,2,,dasandbanerjee1962; gorer1938; morris1938,EthnographicAtlas_1967_p86, +Ee4,with special reference to Central Tibet,1920,EA009,7,Polygyny is also practiced to some extent,bell1924; bell1928; benedict1942; cammann1951; carrasco1959; das1902; ekvall1961; ekvall1964; kawaguchi1909; ma1947; macdonald1929; psybikov1919; rockhill1895; shenandliu1953; waddell1939,EthnographicAtlas_1967_p86, +Ee5,with special reference to the Shina tribe,1870,EA009,6,"General nonsororal polygyny prevails, but information is lacking on family organization",biddulph1880; leitner1873,EthnographicAtlas_1967_p86, +Ee6,with special reference to those of Khumbu,1950,EA009,7,,furerhaimendorf1964,EthnographicAtlas_1967_p86, +Ee7,,1840,EA009,2,,endle1911; hodgson1847,Ethnology_Vol7_No1_Jan_1968, +Ee8,with special reference to the sedentary inhabitants of Banyan Hill,1950,EA009,2,,hitchcock1966,Ethnology_Vol7_No2_Apr_1968, +Ef1,Bankura and Berghum Districts,1940,EA009,2,,culshaw1949; das1967; dattamajumder1956; mukherjea1943,EthnographicAtlas_1967_p86, +Ef10,,,EA009,NA,,,, +Ef11,Village and environs of Senapur,1945,EA009,2,,cohn1958; cohnnd; dube1956; luschinsky1963; luschinsky1971; opler1956; oplerandsingh1952; oplerandsingh1954; pandey1972; rowe1960,Ethnology_Vol10_No1_Jan_1971, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA009,2,,karve1953; mukherjee1949; nicholas1962; nicholas1964; sarma1951,Ethnology_Vol7_No3_Jul_1968, +Ef3,,-800,EA009,6,,karve1953,Ethnology_Vol1_No3_Jul_1962, +Ef4,,1920,EA009,6,But extended families are land-holding units and sometimes residential units as well,chatterjeeanddas1927; majumdar1937,Ethnology_Vol1_No3_Jul_1962, +Ef5,,1900,EA009,2,General nonsororal polygyny but insufficient data on family organization,boseandray1953; hendley1875; koppers1948; naik1956,EthnographicAtlas_1967_p86, +Ef6,,1940,EA009,2,,roy1915; roy1951,EthnographicAtlas_1967_p86, +Ef7,with special reference to the village of Sirkanda in western Uttar Pradesh,1950,EA009,2,,berreman1962a; berreman1962b; berreman1963,EthnographicAtlas_1967_p86, +Ef8,with special reference to the Pandit or Sarasvati Brahmans,1950,EA009,2,,crane1955; lawrence1895; madan1965,EthnographicAtlas_1967_p86, +Ef9,"Village of Atgam, Surat District; possibly also other areas",1136,EA009,2,,karve194243; mukhtyar1930,EthnographicAtlas_1967_p86,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg1,with special reference to the forest group,1940,EA009,1,,furerhaimendorf1943b,Ethnology_Vol7_No2_Apr_1968,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,with special reference to the village of Shamirpet,1950,EA009,2,,dube1955; guha1931; karve1953,EthnographicAtlas_1967_p90, +Eg11,with special reference to the Gommu Koya,1960,EA009,3,,tyler1965,Ethnology_Vol5_No4_Oct_1966, +Eg12,with special reference to the Bondo,1940,EA009,2,,elwin1950; furerhaimendorf1943a,Ethnology_Vol6_No1_Jan_1967, +Eg13,Bastar State,1941,EA009,2,,elwin1957,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg14,with special reference to those of the Bison Hills,1940,EA009,2,,furerhaimendorf1945,Ethnology_Vol7_No1_Jan_1968, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA009,2,,goughaberle1955; goughaberlend,EthnographicAtlas_1967_p86, +Eg3,Hill Maria,1938,EA009,3,,grigson1938,EthnographicAtlas_1967_p86, +Eg4,Toda Tribe,1900,EA009,7,,emeneau1941; fox1963; marshall1873; murdock1934b:107-154; peter1955; rivers1906,EthnographicAtlas_1967_p86, +Eg5,,1930,EA009,1,"But formerly code ""7"", independent polyandrous families",emeneau1939; srinivas1952,EthnographicAtlas_1967_p90, +Eg6,with special reference to Northern Kerala,1799,EA009,2,,gough1961; schneiderandgough1961:385-442,EthnographicAtlas_1967_p90, +Eg7,with special reference to the Pauri or Hill Bhuiya,1930,EA009,1,,roy1935,EthnographicAtlas_1967_p90, +Eg8,,1940,EA009,2,,griffiths1946,EthnographicAtlas_1967_p90, +Eg9,,1930,EA009,6,,elwin1939,EthnographicAtlas_1967_p90, +Eh1,,1870,EA009,1,,man1882; radcliffebrown1922,EthnographicAtlas_1967_p90, +Eh10,,NA,EA009,6,,dubois1938,Ethnology_Vol7_No1_Jan_1968, +Eh2,,1900,EA009,2,Polygyny was general before its abolition in 1878,grandidierandgrandidier190828; sibree1880,EthnographicAtlas_1967_p90, +Eh3,Menabe subtribe,1930,EA009,5,,kardiner1939; linton1933; linton1939b; murdock1959,EthnographicAtlas_1967_p90, +Eh4,with special reference to the Rock Vedda,1900,EA009,1,,bailey1863; ryanetal194950; seligmannandseligmann1911; spittel1945,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA009,2,,man1888; man1932; svoboda189293; whitehead1924,EthnographicAtlas_1967_p90, +Eh6,with special reference to the Kandyan Sinhalese,1950,EA009,1,But extended families are often found in well-to-do families,ariyapala1956; codrington1926; doyly1929; hayley1923; leach1959; leach1960; leach1963; murphey1957; pieris1956; ryan1953a; ryan1953b; ryan1958; singer1964; tambiah1958; yalman1960; yalman1962,EthnographicAtlas_1967_p90, +Eh7,,1900,EA009,5,"But McLeod reports large extended families (code ""8"") made up of polygynous units of non-sororal co-wives in separate dwellings (EA009=code ""5"")",decary193033; mcleod1964; rajohnson1908,EthnographicAtlas_1967_p90, +Eh8,,1900,EA009,5,,faublee1946; kurze188689; mcleod1964,EthnographicAtlas_1967_p90, +Eh9,,1930,EA009,5,,deschamps1936,Ethnology_Vol7_No1_Jan_1968, +Ei1,Rengsanggr,1900,EA009,2,,burling1963; playfair1909,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,1870,EA009,2,,bessaignet1958; levistrauss1952; lewin1869,EthnographicAtlas_1967_p90, +Ei11,,1910,EA009,2,,bose1936; needham1960; shakespear1912,EthnographicAtlas_1967_p90, +Ei12,,1910,EA009,6,,shakespear1912; shaw1929,Ethnology_Vol2_No2_Apr_1963, +Ei13,,1910,EA009,1,,hutton1921a,EthnographicAtlas_1967_p90, +Ei14,with special reference to the Chongli,1920,EA009,1,,mills1926; smith1925b,EthnographicAtlas_1967_p90, +Ei15,,1930,EA009,2,,mills1937,Ethnology_Vol2_No2_Apr_1963, +Ei16,,1910,EA009,2,,hutton1921b,EthnographicAtlas_1967_p90, +Ei17,,1900,EA009,2,,stack1908,Ethnology_Vol2_No2_Apr_1963, +Ei18,with special reference to the Katur subtribe,1920,EA009,2,,lowis1906; milne1924,EthnographicAtlas_1967_p90, +Ei19,,1940,EA009,2,,bernotandbernot1958; careyandtuck1896; lehman1963; stevenson1943,EthnographicAtlas_1967_p90, +Ei2,,1920,EA009,6,,mills1922,EthnographicAtlas_1967_p90, +Ei20,with special reference to those of the Chittagong Hills,1940,EA009,6,,levistrauss1952; lewin1869,Ethnology_Vol7_No1_Jan_1968, +Ei3,Nondwin Village,1950,EA009,1,"Often these monogamous units live as minimal (stem) extended families (i.e., related variable EA008 would be code ""6"")",brohm1963; lebaretal1964:38-44; nash1963; nash1965; scott1882; somitandwelsh1956; trager1956,EthnographicAtlas_1967_p90, +Ei4,Lakher Tribe,1930,EA009,2,,parry1932,EthnographicAtlas_1967_p90, +Ei5,with special reference to the Jinghpaw,1940,EA009,2,,leach1945; leach1954; leach1967,EthnographicAtlas_1967_p90, +Ei6,,1930,EA009,2,,das1945; needham1958,EthnographicAtlas_1967_p90, +Ei7,,1910,EA009,1,But large communal dwellings in many hill sections,marshall1922; mcmahon1876,EthnographicAtlas_1967_p90, +Ei8,with special reference to those of the Jaintia Hills,1900,EA009,1,,becker1909; chattopadhyay1941; guha1931; gurden1904; gurdon1907; mccormack1964; mccormack1967,EthnographicAtlas_1967_p90, +Ei9,,1880,EA009,2,,bessaignet1958; levistrauss1952,EthnographicAtlas_1967_p90, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA009,2,,izikowitz1951,EthnographicAtlas_1967_p90, +Ej10,Ko-Sier Village,1950,EA009,2,,donoghue1972; donoghueetal1962; lebaretal1964:251-255; sabatier1940,EthnographicAtlas_1967_p90, +Ej11,with special reference to the non-Muslim Cham of Vietnam,1950,EA009,2,,lafont1964,EthnographicAtlas_1967_p90, +Ej12,,1960,EA009,1,,kunstadter1965; kunstadter1966; lebaretal1964,EthnographicAtlas_1967_p90, +Ej13,,1940,EA009,2,,cusinier1946; lebaretal1964,EthnographicAtlas_1967_p90, +Ej14,with special reference to the eastern Semai,1960,EA009,2,,dentan1967,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ej15,with special reference to the city and environs of Angkor Wat in 1292,1292,EA009,2,,briggs1951; groslier1956; pelliot1951,Ethnology_Vol10_No1_Jan_1971, +Ej16,Inas District,1958,EA009,2,,gulick1958; lewis1962a; parmer1959; swift1965; wilkinson1911,Ethnology_Vol10_No1_Jan_1971, +Ej2,with special reference to the village of Sar Luk,1940,EA009,2,,condominas1957; condominas1960,EthnographicAtlas_1967_p90, +Ej3,Jehai Group or subtribe,1920,EA009,2,,evans1937; lebaretal1964:181-186; murdock1934b:85-106; schebesta1927; schebesta1954,EthnographicAtlas_1967_p90, +Ej4,Red River Delta in Tonkin,1950,EA009,6,,cadire1953; coughlin1950; coughlin1965; donoghue1964; gourou1936; gourou1954; gourou1955; hickey1964; langrand1945; lintonnd; vankhoan1930,EthnographicAtlas_1967_p90, +Ej5,,1950,EA009,2,,aymonier190004; briggs1951; chou1902; coedes1968; delbert1961; ebihara1964; groslier1956; poreandmaspero1938; poreemaspero1958; steinberg1957,EthnographicAtlas_1967_p90, +Ej6,of the Mergui Archipelago,1920,EA009,2,,carrapiett1909; white1922,EthnographicAtlas_1967_p90, +Ej7,,1950,EA009,2,,bernatzik1947,EthnographicAtlas_1967_p90, +Ej8,with special reference to those of Trengganu,1940,EA009,2,,firth1943; firth1946; fraser1960; fraser1966; ginsburgandroberts1958; hebererandlehman1950; lehmann1934; wilkinson1920,EthnographicAtlas_1967_p90, +Ej9,,1940,EA009,2,,anumanrajadhon1961; benedict1943; bush1964; hanks1963; hanksandhanks1961; hauck1958; insor1963; janlekha1955; phillips1965; sharpandhanks1978; sharpetal1954,Ethnology_Vol10_No1_Jan_1971, +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA009,1,,ferrell1969; mabuchi1960; okada1949; ruey1955; rueynd,EthnographicAtlas_1967_p90, +Ia10,,1930,EA009,1,,chiu1962; mabuchi1952; mabuchi1960,EthnographicAtlas_1967_p90, +Ia11,,1930,EA009,1,,mabuchi1960,EthnographicAtlas_1967_p90, +Ia12,,1950,EA009,1,,hart1965; hartnd; quijano1937; svelmoe1954,EthnographicAtlas_1967_p94, +Ia13,Tawi-Tawi and adjacent islands,1960,EA009,1,,nimmo1964; nimmo1965; nimmo1968; nimmo1969; nimmo1970,EthnographicAtlas_1967_p94, +Ia14,,1930,EA009,1,,kaneandsegawa1956; mabuchi1960; weiandliu1962,EthnographicAtlas_1967_p94, +Ia15,with special reference to those of the Agusan Valley,1920,EA009,2,,garvan1931,Ethnology_Vol6_No1_Jan_1967, +Ia16,with special reference to the northern Kalinga,1910,EA009,1,,barton1949; dozier1966a; dozier1967,EthnographicAtlas_1967_p94, +Ia17,,1910,EA009,2,,cole1913; deananddean1954; wood1951,Ethnology_Vol7_No1_Jan_1968, +Ia18,with special reference to the village of Manland in western Negros,1950,EA009,1,,sibley1959; sibley1963,Ethnology_Vol7_No1_Jan_1968, +Ia2,,1950,EA009,1,,bacdayan1962; eggan1960,EthnographicAtlas_1967_p90, +Ia3,Kiangan Group,1920,EA009,1,,barton1919; barton1922; barton1930; barton1938; barton1946,EthnographicAtlas_1967_p90, +Ia4,with special reference to the Eastern Subanun,1950,EA009,2,,christie1909; frake1955; frake1960,EthnographicAtlas_1967_p90, +Ia5,,1950,EA009,2,,conklin1954; conklin1955; conklin1957,EthnographicAtlas_1967_p90, +Ia6,Su-Paiwan Village,1930,EA009,2,,mabuchi1960; okada1960; shih1964,EthnographicAtlas_1967_p90,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ia7,,1950,EA009,2,,fox1954,EthnographicAtlas_1967_p90, +Ia8,,1900,EA009,1,,jenks1905; keesing1949,Ethnology_Vol4_No2_Apr_1965, +Ia9,with special reference to the southern Ami,1930,EA009,1,,mabuchi1960; wei1961,EthnographicAtlas_1967_p90, +Ib1,"Ulu Ai Group, Baleh",1950,EA009,1,,freeman1955a; freeman1955b; freeman1957; freeman1958a; freeman1958b; gomes1911; howell190810; robertsandkaplan1956; roth1892; sandin1968,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA009,2,,dewey1962; geertz1960; geertz1961; geertz1963; geertz1965; grant1964; jay1963; jay1969; kahin1963; koentjaraningrat1960; koentjaraningrat1961; koentjaraningrat1967,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA009,2,,belo1936; belo1970; covarrubias1937; frankenetal1960; geertz1959a; geertz1959b; geertz1963; geertz1967; geertzandgeertz1959; grant1964; kahin1963; meadandmacgregor1951,EthnographicAtlas_1967_p94, +Ib4,with special reference to the Toba group,1930,EA009,2,,bartlett1929; bruner1959; loeb1933a; warneck1901,EthnographicAtlas_1967_p94, +Ib5,with special reference to the village of Sensuron,1920,EA009,2,,evans1922; rutter1929; williams1965; williamsnd,EthnographicAtlas_1967_p94, +Ib6,,1920,EA009,2,,bachtiar1967; josselindejong1952; loeb1934; willinck1915,EthnographicAtlas_1967_p94, +Ib7,with special reference to those of North Pageh,1920,EA009,1,,kruyt1923; loeb1928; wallace1951,EthnographicAtlas_1967_p94, +Ib8,with special reference to the Ridan group,1900,EA009,2,,hagen1908; schebesta1928,EthnographicAtlas_1967_p94, +Ib9,with special reference to settled Punan,1950,EA009,2,But families are grouped in communal dwellings,needham1955,Ethnology_Vol7_No1_Jan_1968, +Ic1,Borongloe,1940,EA009,2,,chabot1950,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,Tobelo District,1910,EA009,1,,hueting1921; riedel1885,EthnographicAtlas_1967_p94, +Ic11,Allang,1950,EA009,1,,cooley1962a; cooley1962b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic12,with special reference to the village of Rarak in Western Sumbawa,1951,EA009,1,,goethals1967,Ethnology_Vol6_No4_Oct_1967, +Ic13,,,EA009,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA009,2,,dubois1940; dubois1941; dubois1944; dubois1945,EthnographicAtlas_1967_p94, +Ic3,with special reference to the Mountain Belu,1950,EA009,6,,vroklage1952,EthnographicAtlas_1967_p94, +Ic4,,1920,EA009,6,,kruyt1921; wetering1925,Ethnology_Vol1_No3_Jul_1962, +Ic5,Bare'e subgroup,1910,EA009,1,,adrianiandkruijt1912; downs1956; drabbe1940,EthnographicAtlas_1967_p94, +Ic6,,1930,EA009,2,,drabbe1940,EthnographicAtlas_1967_p94, +Ic7,with special reference to the village of Leloba in E. Flores,1920,EA009,2,,vatter1932,EthnographicAtlas_1967_p94, +Ic8,,1890,EA009,2,,pleyte1893,EthnographicAtlas_1967_p94, +Ic9,with special reference to eastern Sumba,1930,EA009,2,,nooteboom1940,EthnographicAtlas_1967_p94, +Id1,Alice Springs and environs,1900,EA009,3,,murdock1934b:20-47; spencerandgillen1927; strehlow190711,EthnographicAtlas_1967_p94, +Id10,,1930,EA009,3,,meggitt1962a,Ethnology_Vol7_No2_Apr_1968, +Id11,,1950,EA009,6,,hiatt1965,Ethnology_Vol7_No1_Jan_1968, +Id12,,1930,EA009,2,,sharp1934,Ethnology_Vol7_No1_Jan_1968, +Id13,,1930,EA009,3,,rose1960,Ethnology_Vol7_No2_Apr_1968, +Id2,,1930,EA009,3,,berndt1955; elkin1950; warner1937,EthnographicAtlas_1967_p94, +Id3,Tiwi Tribe: Melville Island,1920,EA009,6,,basedow1913; goodale1959; goodale1960; goodale1962; goodale1971; hartandpilling1960; mountford1958; pilling1957,EthnographicAtlas_1967_p94, +Id4,,1900,EA009,3,,berndt1953; elkin1940a; gason1874; howitt1891; howitt1904,EthnographicAtlas_1967_p94, +Id5,,1910,EA009,3,,radcliffebrown1913; radcliffebrown1930; romneyandepling1958,EthnographicAtlas_1967_p94, +Id6,with special reference to the Archer River group,1920,EA009,3,,mcconnel1930; mcconnel1934; mcconnel1940; needham1962; thomson1935; thomson1936,EthnographicAtlas_1967_p94, +Id7,,1940,EA009,6,,falkenberg1962,Ethnology_Vol2_No1_Jan_1963, +Id8,,1830,EA009,2,,roth1890,EthnographicAtlas_1967_p94, +Id9,,1910,EA009,2,,howitt1904; radcliffebrown1923,EthnographicAtlas_1967_p94, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA009,6,,pospisil1958; pospisil1960; pospisil1963a; pospisil1963b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,,,EA009,NA,,,, +Ie11,,1950,EA009,2,,bowers1964,EthnographicAtlas_1967_p94, +Ie12,Hongwam subtribe; Rumbima,1930,EA009,6,,whiting1941; whitingandreed1938,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie13,,1920,EA009,2,A localized lineage occupies a communal dwelling,landtman1927,EthnographicAtlas_1967_p94, +Ie14,,1900,EA009,2,,haddon1908,EthnographicAtlas_1967_p94, +Ie15,Kalabu; Northern Abelam,1930,EA009,2,,kaberry1941,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie16,,1940,EA009,6,,williams194041,EthnographicAtlas_1967_p94, +Ie17,,1940,EA009,NA,"Each married woman has a separate house where she is visited at night by her husband, who lives in a men's house; no data presented on incidence of polygyny",salisbury1956; salisbury1962,EthnographicAtlas_1967_p94, +Ie18,Bamol Village,1940,EA009,2,,serpenti1965,EthnographicAtlas_1967_p94, +Ie19,with special reference to the coastal inhabitants,1910,EA009,1,But the sexes live segregated in men's and women's houses,vanbaal1966,EthnographicAtlas_1967_p94, +Ie2,,1920,EA009,5,,schmitz1960,EthnographicAtlas_1967_p94, +Ie20,,1900,EA009,2,,seligmann1910,EthnographicAtlas_1967_p94, +Ie21,,1900,EA009,1,,malinowski1916,EthnographicAtlas_1967_p94, +Ie22,,1900,EA009,6,,belshaw1951; seligmann1910; williamson1913,EthnographicAtlas_1967_p94, +Ie23,,1950,EA009,2,,schoorl1957,EthnographicAtlas_1967_p94, +Ie24,,1870,EA009,6,,chalmers1890; lawes1879,EthnographicAtlas_1967_p94, +Ie25,,1920,EA009,6,,williamson1912,EthnographicAtlas_1967_p94, +Ie26,,1940,EA009,2,,read1946; read1950,EthnographicAtlas_1967_p98, +Ie27,,1910,EA009,1,,thurnwald1916,EthnographicAtlas_1967_p98, +Ie28,,1940,EA009,2,,hogbin194647; hogbin1946b,EthnographicAtlas_1967_p98, +Ie29,principally Tsogari,1930,EA009,2,,wedgwood1934; wedgwood1937,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA009,6,,mead1935; mead1937c; mead194049; mead1950a; mead1950b,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,1950,EA009,1,,pouwer1955,EthnographicAtlas_1967_p98, +Ie31,,1950,EA009,5,,berndt1962,Ethnology_Vol6_No4_Oct_1967, +Ie32,,1964,EA009,1,"But aboriginally code ""4"" (polygynous, with non-sororal co-wives in same dwelling)",groves1934; harding1967,Ethnology_Vol6_No4_Oct_1967, +Ie33,with special reference to the village of Muramarew,1950,EA009,2,,oosterwal1967,Ethnology_Vol7_No3_Jul_1968, +Ie34,,1960,EA009,2,,koentjaraningrat1966,Ethnology_Vol7_No1_Jan_1968, +Ie35,,1930,EA009,6,,bateson1932; bateson1936,Ethnology_Vol7_No1_Jan_1968, +Ie36,,1950,EA009,2,,vanderleeden1956,Ethnology_Vol7_No1_Jan_1968, +Ie37,,1960,EA009,2,,pouwer1964,Ethnology_Vol7_No1_Jan_1968, +Ie38,with special reference to the Dugum group of the Grand Valley of the Balim River,1960,EA009,5,,heider1965; heider1967,Ethnology_Vol7_No3_Jul_1968, +Ie39,with special reference to those of Orokolo Bay,1920,EA009,2,,williams1940,Ethnology_Vol7_No3_Jul_1968, +Ie4,"Dap, Wonevaro district",1930,EA009,6,,hogbin1935; hogbin193839; hogbin1943; hogbin1945; hogbin1946a; hogbin1946c,EthnographicAtlas_1967_p94,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA009,6,,williams1936,EthnographicAtlas_1967_p94, +Ie6,,1930,EA009,2,,held1947,EthnographicAtlas_1967_p94, +Ie7,with special reference to the Mae group,1950,EA009,2,,elkin1953; goodenough1953; meggitt1956; meggitt1958; meggitt1962b; meggitt1965a; meggitt1965b; meggitt1967,EthnographicAtlas_1967_p94, +Ie8,with special reference to the Koriki,1910,EA009,6,,holmes1924; maher1961; maher1967; williams1924,EthnographicAtlas_1967_p94, +Ie9,,1920,EA009,2,,reay1953; waddellandkrinks1968; williams1928; williams1930,EthnographicAtlas_1967_p94, +If1,"Ulimang, Badeldaob Island",1940,EA009,2,,barnett1949; barnett1960; force1960; keate1788; kramer1929; kubary1873; kubary1900; murdocketal1944b; semper1873,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,1940,EA009,1,,tolertonandrauch1949,Ethnology_Vol2_No2_Apr_1963, +If11,,1860,EA009,2,,sarfert1919,EthnographicAtlas_1967_p98, +If12,,1940,EA009,1,,mason1954,EthnographicAtlas_1967_p98, +If13,,1900,EA009,2,,hambruch191415; stephen1936; wedgwood1936,EthnographicAtlas_1967_p98, +If14,Makin and Butiritari Islands (N),1890,EA009,2,,finsch1893; grimble1921; kramer1906:253-315; lambert1963; lambert1964; lambert1968; lambert1970a; lambert1970b,EthnographicAtlas_1967_p98, +If15,,1930,EA009,1,"But code ""1"" today (independent nuclear family, monogamous)",josephandmurray1951; spehr1954,EthnographicAtlas_1967_p98, +If16,,1960,EA009,1,,alkire1965,Ethnology_Vol6_No4_Oct_1967, +If17,with special reference to the island of Jaluit,1900,EA009,2,,erdland1914; spoehr1949,Ethnology_Vol19_No2_Apr_1980, +If2,Romonum Island,1940,EA009,1,,bollig1927; fischer1950; gladwinandsarason1953; goodenough1949; goodenough1969; lebar1964; murdocketal1944a,Ethnology_Vol6_No4_Oct_1967, +If3,With special reference to the inhabitants of Majuro,1940,EA009,1,Polygyny was formerly common among chiefs,spoehr1949,EthnographicAtlas_1967_p98, +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA009,1,,burrows1949; burrowsandspiro1953; damm1938; spiro1949,EthnographicAtlas_1967_p98, +If5,,1910,EA009,2,,bascom1965; hambruch193236; riesenberg1949,EthnographicAtlas_1967_p98, +If6,Island,1910,EA009,1,,huntetal1949; muller1917; murdocketal1944b; salesius1906; schneider1953; schneider1957c; schneider1962; schneidernd; senfft1903; tetens1958; tetensandkubary1873,EthnographicAtlas_1967_p98, +If7,with special reference to the inhabitants of Onotoa,1940,EA009,2,"Formerly code ""3"", polygyny common and preferentially sororal, and with co-wives living in same dwelling as part of large extended families (related EA008 variable would also have been code ""8"")",goodenough1951b; goodenough1955; knudson1965; lundsgaarde1966,EthnographicAtlas_1967_p98, +If8,with special reference to those of Saipa,1950,EA009,1,,josephandmurray1951; spoehr1954,EthnographicAtlas_1967_p98, +If9,,1900,EA009,1,,lessa1950; william1966,EthnographicAtlas_1967_p98, +Ig1,Northeastern group,1940,EA009,2,,oliver1949; oliver1955,EthnographicAtlas_1967_p98, +Ig10,,1950,EA009,5,,schwartz1964,EthnographicAtlas_1967_p98, +Ig11,,1920,EA009,2,,armstrong1928,EthnographicAtlas_1967_p98, +Ig12,with special reference to the Varisi,1900,EA009,2,,scheffler1965,EthnographicAtlas_1967_p98, +Ig13,,1900,EA009,3,A married man lives at the house of his sister and visits that of his wife or wives only for the evening meal and to sleep,hambruch1907; pittrivers1925,EthnographicAtlas_1967_p98, +Ig14,,1900,EA009,2,,belshaw1955; seligman1910,EthnographicAtlas_1967_p98, +Ig15,,,EA009,NA,,,, +Ig16,,,EA009,NA,,,, +Ig17,,,EA009,NA,,,, +Ig18,,1960,EA009,2,,ivens1930; keesing1966; keesing1967; keesing1968,Ethnology_Vol7_No1_Jan_1968, +Ig19,,,EA009,NA,,,, +Ig2,Kiriwina Island,1910,EA009,2,,fathauer1954a; malinowski1921; malinowski1922; malinowski1926; malinowski1927; malinowski1929; malinowski1935; powell1960; silas1926; uburoi1962,EthnographicAtlas_1967_p98, +Ig20,with special reference to the village of Longgu,1920,EA009,1,,hogbin1965,Ethnology_Vol7_No2_Apr_1968, +Ig21,with special reference to Boieng Island,1930,EA009,2,,bell1934; bell1938,Ethnology_Vol7_No2_Apr_1968, +Ig3,,1930,EA009,4,,blackwood1935,EthnographicAtlas_1967_p98, +Ig4,Lesu Village,1930,EA009,2,,powdermaker1931a; powdermaker1931b; powdermaker1932; powdermaker1933,EthnographicAtlas_1967_p98, +Ig5,,1920,EA009,1,,fortune1932b,EthnographicAtlas_1967_p98, +Ig6,,1900,EA009,2,,ivens1927,EthnographicAtlas_1967_p98, +Ig7,,1950,EA009,3,,chowning1957; goodenough1962,EthnographicAtlas_1967_p98, +Ig8,,1910,EA009,2,,hocart1922; rivers1914b; rivers1926; scheffler1962,Ethnology_Vol1_No4_Oct_1962, +Ig9,Peri Village,1920,EA009,2,,fortune1935; mead1930a; mead1930b; mead1932a; mead1934; mead1937b; mead1969,EthnographicAtlas_1967_p98, +Ih1,,1890,EA009,3,,codrington1891; rivers1914a,EthnographicAtlas_1967_p98, +Ih10,Whitsands,1920,EA009,2,,humphreys1926,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih11,,,EA009,NA,,,, +Ih12,,1920,EA009,2,,humphreys1926,Ethnology_Vol7_No1_Jan_1968, +Ih13,,1920,EA009,2,,barnard1938; deacon1927; guiart1956a; laneandlane1958,Ethnology_Vol7_No1_Jan_1968, +Ih14,"Bau Chiefdom, Vanua Levu",1840,EA009,2,,deane1921; ross1953; spencer1941; thomson1908; tippett1968; toganivalu1917; tonganivalu1911; waterhouse1866; williams1884,Ethnology_Vol19_No2_Apr_1980, +Ih2,Malekula Island,1930,EA009,3,,deacon1934,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,Bunlap Village,1950,EA009,2,"Formerly code ""4"", polygyny common and preferentially sororal, with co-wives in separate dwellings",lane1956; lane1965; laneandlane1957,EthnographicAtlas_1967_p98, +Ih4,Lau Island,1920,EA009,3,,geddes1946; hocart1929; quain1948; thompson1940a; thompson1940b,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,,,EA009,NA,,,, +Ih6,,1890,EA009,1,,gardner1897; howardandhoward1964; russell1942,EthnographicAtlas_1967_p98, +Ih7,,1910,EA009,5,,hadfield1920; ray1917,EthnographicAtlas_1967_p98, +Ih8,with special reference to the village of Nakaroka,1940,EA009,2,,quain1949,EthnographicAtlas_1967_p98, +Ih9,Graciosa Bay,1930,EA009,2,,davenport1964,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii1,with special reference to American Samoa,1920,EA009,2,,buck1930; cook1942; ember1959; freeman1965; grattan1948; kramer190102; kramer1906:253-315; mead1928; mead1930c; mead1937c; mead1950b; murdock1934l; stair1897; turner1884,EthnographicAtlas_1967_p98, +Ii10,,1950,EA009,2,,birketsmith1956,Ethnology_Vol6_No1_Jan_1967, +Ii12,Pangai,1920,EA009,2,,beagleholeandbeaglehole1941; gifford1929,EthnographicAtlas_1967_p98,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ii13,,1830,EA009,2,,burrows1937,EthnographicAtlas_1967_p98, +Ii14,,1829,EA009,2,,buck1930; bulow1971; davidson1948; ember1962; grattan1948; keesing1934; kramer190102; kramer1906:253-315; panoff1964; stair1897; turner1884,Ethnology_Vol10_No1_Jan_1971, +Ii2,Ravenga District,1930,EA009,5,,firth1936; firth1939; firth1940; firth1952; firth1956; firth1960,EthnographicAtlas_1967_p98, +Ii3,,1930,EA009,1,,beagleholeandbeaglehole1938; macgregor1935,EthnographicAtlas_1967_p98, +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA009,2,,kennedy1931; white1965,EthnographicAtlas_1967_p98, +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA009,2,,hogbin1931a; hogbin1931b; hogbin1931c; hogbin1938,EthnographicAtlas_1967_p98, +Ii6,with special reference to Atafu,1900,EA009,2,,macgregor1937,EthnographicAtlas_1967_p98, +Ii7,,1910,EA009,2,,buck1950; eilers1934; emory1965,EthnographicAtlas_1967_p98, +Ii8,,1840,EA009,2,,burrows1936,EthnographicAtlas_1967_p98, +Ii9,,1840,EA009,2,,loeb1926a,EthnographicAtlas_1967_p98, +Ij1,,1820,EA009,3,,buck1934,EthnographicAtlas_1967_p98, +Ij10,,1900,EA009,2,,buck1932b,Ethnology_Vol6_No1_Jan_1967, +Ij2,Nga Puhi Tribe,1820,EA009,6,,best1924; best1925; best1952; buck1949; cruise1824; earle1832; firth1959; gudgeon1885; hawthorn1944; maning1876; polack1838; reed1963; shortland1856; wright1959,Ethnology_Vol10_No1_Jan_1971, +Ij3,,1900,EA009,7,,forster1777; handy1922; handy1923; labarre1934; linton1923; linton1939a; lisiansky1814; miranda1964; porter1823; sheahan1952; suggs1966; suggs1971; sullivan1923; tautain1896; tautain1897,EthnographicAtlas_1967_p102, +Ij4,,1850,EA009,2,,buck1932a,EthnographicAtlas_1967_p102, +Ij5,,1900,EA009,2,,danielsson1954; danielsson1955,EthnographicAtlas_1967_p102, +Ij6,,1800,EA009,2,,buck1957; handyetal1933; malo1951; vayda1956,EthnographicAtlas_1967_p102, +Ij7,,1900,EA009,2,,buck1938; laval1938,EthnographicAtlas_1967_p102, +Ij8,,1900,EA009,2,But large communal dwelling originally,ellis1905; handy1930; henry1928,EthnographicAtlas_1967_p102, +Ij9,,1860,EA009,2,,metraux1940,EthnographicAtlas_1967_p102, +Na1,,1930,EA009,1,But polygyny was formerly common,mckennan1959,EthnographicAtlas_1967_p102, +Na10,,,EA009,NA,,,, +Na11,,1920,EA009,1,,hughes1958; hughes1960; moore1923,EthnographicAtlas_1967_p102, +Na12,,1950,EA009,2,,gubser1965; pospisilandlaughlin1963; spencer1959,EthnographicAtlas_1967_p102, +Na13,,1880,EA009,3,,boas1888; boas190107,EthnographicAtlas_1967_p102, +Na14,,1880,EA009,2,,birketsmith1928b; ekblaw192728; kroeber1899; oswalt1963; rasmussen1908; steensby1910,EthnographicAtlas_1967_p102, +Na15,,1860,EA009,2,,helmandlurie1961,EthnographicAtlas_1967_p102, +Na16,,1860,EA009,2,,osgood1931,EthnographicAtlas_1967_p102, +Na17,"Lynx Point band, Fort Simpson",1860,EA009,3,,helm1961; helmandleacocknd; honigmann1946; macneish1960b; mason1946,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Na19,with special reference to the Hwitsowitenne,1880,EA009,3,,jenness1943; morice1893; ray1942,EthnographicAtlas_1967_p102, +Na2,,1880,EA009,6,,chance1966; murdoch1892; spencer1959,EthnographicAtlas_1967_p102, +Na20,with special reference to the Tatlit of Peel River Kutchin,1880,EA009,2,,osgood1936; slobodin1962,EthnographicAtlas_1967_p102, +Na21,,1900,EA009,6,,birketsmith1929; rasmussen1930,EthnographicAtlas_1967_p102, +Na22,with special reference to the Aivilingmiut and Iglulingmiut,1920,EA009,2,,birketsmith1928b; damas1964; mathiassen1928; rasmussen1929,EthnographicAtlas_1967_p102, +Na23,with special reference to the Koksoagmiu,1890,EA009,2,,hawkes1916; turner1894,EthnographicAtlas_1967_p102, +Na24,,1880,EA009,2,,holm1911; ostermann1938; rink1911; thalbitzer1914; thalbitzer191721,EthnographicAtlas_1967_p102, +Na25,with special reference to the inhabitants of the Egesminde District,1910,EA009,1,"Formerly occasional polygyny was practiced (code ""2""), with families organized as small extended families (related variable EA008 code ""7"")",birketsmith1924; bugge1952; cranz1767; egede1818; nansen1893; porsild1915; rink1877; saabye1818,Ethnology_Vol3_No1_Jan_1964, +Na26,with special reference to the Iliamna,1870,EA009,6,,osgood1933; osgood1937,EthnographicAtlas_1967_p102, +Na27,,1870,EA009,2,,emmons1911; maclachlan1957; teit1906a; teit1956,EthnographicAtlas_1967_p102, +Na28,,1880,EA009,3,,jenness1937,EthnographicAtlas_1967_p102, +Na29,,1850,EA009,2,,goddard1916,EthnographicAtlas_1967_p102, +Na3,Coronation Gulf,1920,EA009,1,,jenness1917; jenness1922; jenness1928; rasmussen1932; stefansson1914,EthnographicAtlas_1967_p102, +Na30,,1880,EA009,2,,birketsmith1930; macneish1960a; vanstone1965,EthnographicAtlas_1967_p102, +Na31,with special reference to those of Albany and Moose Creek,1850,EA009,2,,skinner1912,EthnographicAtlas_1967_p102, +Na32,Lake St. John & Mistassini Band,1880,EA009,2,,burgesse1944; lane1952; leacock1969; lips1947a; lips1947b; speck1931; speck1935,EthnographicAtlas_1967_p102, +Na33,Berens River band,1870,EA009,2,,dunning1959b; hallowell1938a; hallowell1938b; hallowell1939; hallowell1940; hallowell1941; hallowell1942; hallowell1955; hallowell1963; skinner1912,EthnographicAtlas_1967_p102, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA009,2,,dunning1959a; dunning1959b,EthnographicAtlas_1967_p102, +Na35,,1800,EA009,2,,cameron1890; grant1890,EthnographicAtlas_1967_p102, +Na36,with special reference to the Red Lake and White Earth bands,1860,EA009,2,,barnouw1950; barrett1911a; densmore1929; hesketh1923; hilger1939; hilger1951; kinietz1947,EthnographicAtlas_1967_p102, +Na37,,1880,EA009,2,,landes1937a; landes1937b; landes1938,EthnographicAtlas_1967_p102, +Na38,with special reference to the Lac Vieux Desert band,1800,EA009,2,,grant1890; kinietz1947,EthnographicAtlas_1967_p102, +Na39,with special reference to the Kitchibuan of Parry Island,1870,EA009,2,,jenness1935,EthnographicAtlas_1967_p102, +Na4,Upper Liard and Dease River Group,1920,EA009,1,,honigmann1949; honigmann1954; teit1956; underwoodandhonigmann1947,EthnographicAtlas_1967_p102, +Na40,,1650,EA009,2,,kinietz1940c; morgan1871,Ethnology_Vol3_No1_Jan_1964, +Na41,Mainland division,1700,EA009,2,,bock1966; denys1908; johnson1943; leclercq1910; speckanddexter1951; wallisandwallis1955,EthnographicAtlas_1967_p102, +Na42,Prairie Potawatomi,1760,EA009,6,,kinietz1940d; quimby1940; searey1965; skinner1924,EthnographicAtlas_1967_p102, +Na43,,1920,EA009,2,,balikei1963a; balikei1963b; rasmussen1931,Ethnology_Vol4_No4_Oct_1965, +Na44,,1910,EA009,2,"But code ""1"" today (independent nuclear family, monogamous)",graburn1964,Ethnology_Vol4_No4_Oct_1965, +Na45,,1900,EA009,2,,rogers1963a; rogersandrogers1963; speck1923; speck1930,Ethnology_Vol6_No4_Oct_1967, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA009,2,,lips1947a; speck1935; strong1929b; turner1890,EthnographicAtlas_1967_p102, +Na6,,1930,EA009,2,,lantis1946,EthnographicAtlas_1967_p102, +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA009,2,,gmann1953; honigmann1956b,EthnographicAtlas_1967_p102, +Na8,Shageluk Village,1880,EA009,2,,osgood1940; osgood1958; osgood1959,EthnographicAtlas_1967_p102, +Na9,Unalaska Branch (Eastern Aleut),1830,EA009,6,,bank1953; cook1785; coxe1804; elliott1886; golder192225; jochelson1925; langsdorff1817; lantis1970b; sarychev1806; sauer1802; veniaminov1840,EthnographicAtlas_1967_p102,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nb1,Masset Town,1890,EA009,2,,murdock1934a; murdock1934b:221-263; murdock1936a; niblack1890; swanton1909,EthnographicAtlas_1967_p102, +Nb10,,1865,EA009,6,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nb11,with special reference to the Central Nootka,1880,EA009,2,,drucker1951; koppert1930b,EthnographicAtlas_1967_p106, +Nb12,,1880,EA009,6,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb13,,1880,EA009,6,,barnett1938; barnett1939; barnett1955; hilltout1900,EthnographicAtlas_1967_p106, +Nb14,,1880,EA009,6,,barnett1938; barnett1939; barnett1955,Ethnology_Vol2_No4_Oct_1963, +Nb15,,1880,EA009,6,,curtis1912; stern1934; suttles1954,EthnographicAtlas_1967_p106, +Nb16,,1860,EA009,3,,eells1887b; gunthere1927,EthnographicAtlas_1967_p106, +Nb17,,1870,EA009,6,,ballard1935; haeberlinandgunther1930; smith1940b,EthnographicAtlas_1967_p106, +Nb18,,1880,EA009,6,,pettitt1950,EthnographicAtlas_1967_p106, +Nb19,,1850,EA009,6,,ray1938; ray1942,EthnographicAtlas_1967_p106, +Nb2,Twana Tribe,1850,EA009,2,,eells1877; elmendorf1960,EthnographicAtlas_1967_p102, +Nb20,,1870,EA009,5,,barnett1937; boas1923,Ethnology_Vol2_No4_Oct_1963, +Nb21,,1860,EA009,6,,barnett1937; jacobs1940,EthnographicAtlas_1967_p106, +Nb22,with special reference to the Chilkat,1880,EA009,2,,durlach1928; jochelson1925; krause1956; oberg1934; swanton1908,EthnographicAtlas_1967_p106, +Nb23,,1880,EA009,2,,boas1938; drucker1950; olson1955,EthnographicAtlas_1967_p106, +Nb24,,1860,EA009,2,,colson1953; swan1868,EthnographicAtlas_1967_p106, +Nb25,,1860,EA009,2,,olson1936a; willoughby1889,EthnographicAtlas_1967_p106, +Nb26,,1880,EA009,6,,barnett1938; barnett1939; barnett1955; lane1963a,EthnographicAtlas_1967_p106, +Nb27,with special reference to the Tait,1880,EA009,6,,duff1952; hilltout1902; hilltout1904,EthnographicAtlas_1967_p106, +Nb28,,1860,EA009,2,,barnett1937; drucker1939,EthnographicAtlas_1967_p106, +Nb29,,1860,EA009,2,,barnett1937; frachtenberg1914,Ethnology_Vol3_No1_Jan_1964, +Nb3,,1890,EA009,2,,benedict1934; boas1895b; boas1909; boas1966; codere1950; ford1941; goldman1937a; rohner1965,EthnographicAtlas_1967_p102, +Nb30,,1860,EA009,6,,sapir1907,Ethnology_Vol3_No1_Jan_1964, +Nb31,,1870,EA009,6,,barnett1937; drucker1936a; dubois1936,EthnographicAtlas_1967_p106, +Nb32,with special reference to the Shastika or eastern Shasta,1860,EA009,2,,dixon1907; holt1946; kroeber1925d; voegelin1942,EthnographicAtlas_1967_p106, +Nb33,,1860,EA009,2,,dixon1910; driver1939,EthnographicAtlas_1967_p106, +Nb34,,1860,EA009,2,,driver1939; gifford1922:31-33; kroeber1925c,EthnographicAtlas_1967_p106, +Nb35,,1860,EA009,6,,driver1939; goddard1903; kroeber1934; taylor1947; wallace1947b,EthnographicAtlas_1967_p106, +Nb36,,1860,EA009,6,,driver1939; gifford1922:29-30; kroeber1925a,EthnographicAtlas_1967_p106, +Nb37,,1860,EA009,2,,essene1940; gifford1922,Ethnology_Vol3_No1_Jan_1964, +Nb38,with special reference to the inhabitants of the Bear River,1860,EA009,2,,driver1939; nomland1938,Ethnology_Vol3_No1_Jan_1964, +Nb39,,1860,EA009,2,,driver1939; nomland1935,EthnographicAtlas_1967_p106, +Nb4,,1850,EA009,6,,erickson1943; heizerandmills1952; kroeber1925b; kroeber1960; loeffelholz1893; watermanandkroeber1934,EthnographicAtlas_1967_p102, +Nb5,Eyak Tribe,1890,EA009,6,,birketsmithanddelaguna1938,EthnographicAtlas_1967_p102, +Nb6,,1870,EA009,6,,driver1939; drucker1936a; dubois1932,EthnographicAtlas_1967_p102, +Nb7,,1880,EA009,6,,garfield1939; garfieldetal1951,EthnographicAtlas_1967_p102, +Nb8,,,EA009,NA,,,, +Nb9,"Central group, lower B.C. River",1880,EA009,6,,boas1891b; drucker1950; mcilwraith1948; smith1925a,EthnographicAtlas_1967_p102, +Nc1,,1850,EA009,2,,goldschmidt1951,EthnographicAtlas_1967_p106, +Nc10,,1860,EA009,6,,goldman1940; goldman1941,EthnographicAtlas_1967_p106, +Nc11,,1860,EA009,2,,gifford1928; giffordandkroeber1936; sapir1918; sapirandspier1943,EthnographicAtlas_1967_p106, +Nc12,with special reference to the Northeastern Mountain Maidu,1850,EA009,3,,dixon1905; gifford1922:46-47; voegelin1942,EthnographicAtlas_1967_p106, +Nc13,with special reference to the Hill and Mountain Nisenan,1850,EA009,2,,beals1933; faye1923; voegelin1942,EthnographicAtlas_1967_p106, +Nc14,with special reference to the northeastern Wintu,1860,EA009,2,,dubois1935; gifford1922; lee1940; voegelin1942; washington1909,EthnographicAtlas_1967_p106, +Nc15,,1860,EA009,5,,driver1939; gifford1939,EthnographicAtlas_1967_p106, +Nc16,,1860,EA009,2,,foster1944; gifford1922:118-119,Ethnology_Vol3_No2_Apr_1964, +Nc17,with special reference to those of Kalekau,1860,EA009,6,,essene1942; gifford1922:109-111; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc18,"Clear Lake, Village of Cignon",1860,EA009,2,,aginskyandaginsky1967; barrett1908; barrett1916; barrett1917a; barrett1952; freeland1923; gifford1926a; giffordandkroeber1937b; kroeber1953; loeb1926b,EthnographicAtlas_1967_p106, +Nc19,with special reference to those near Santa Rosa,1860,EA009,1,,aginsky1935; gifford1922:113-115; giffordandkroeber1937a,EthnographicAtlas_1967_p106, +Nc2,,1850,EA009,1,,gifford1917; voegelin1938,EthnographicAtlas_1967_p106, +Nc20,,1860,EA009,1,,driver1936; gifford1922:115-118; radin1924,EthnographicAtlas_1967_p106, +Nc21,,1860,EA009,1,,gifford1922:91-93; giffordandkroeber1937a,Ethnology_Vol3_No2_Apr_1964, +Nc22,with special reference to the Hill Patwin,1850,EA009,2,,giffordandkroeber1937a; kroeber1932; mckern1922; mckern1924,EthnographicAtlas_1967_p106, +Nc23,,1870,EA009,2,,aginsky1943; driver1937; gayton1930; gayton1945; gayton1948a; gifford1922,EthnographicAtlas_1967_p106, +Nc24,Tulare Lake,1860,EA009,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc25,,1860,EA009,2,,bealsandhester1958; cook1955; gayton1936; gayton1948a; kroeber1925e; latta1949; powers1877,EthnographicAtlas_1967_p106, +Nc26,,1770,EA009,2,,harrington1942; mason1912,Ethnology_Vol3_No2_Apr_1964, +Nc27,,1860,EA009,1,,driver1937; gifford1917,EthnographicAtlas_1967_p106, +Nc28,,1800,EA009,2,,harrington1942; kroeber1925f,Ethnology_Vol3_No2_Apr_1964, +Nc29,,1770,EA009,2,Extended families are inferential,harrington1942; johnston1964; kroeber1925h; reid1926,EthnographicAtlas_1967_p106, +Nc3,with special reference to those of the Northern Foothills,1850,EA009,5,,driver1937; gayton1930; gayton1948a; kroeber1925e,EthnographicAtlas_1967_p106, +Nc30,,1870,EA009,6,,benedict1924; drucker1937; gifford1918:178-186; gifford1922:53-56; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc31,with special reference to the Desert Cahuilla,1870,EA009,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc32,,1870,EA009,2,,drucker1937; gifford1918:186-201; gifford1922:56-60; hooper1920; strong1929a:5-35,EthnographicAtlas_1967_p106, +Nc33,,1860,EA009,3,,drucker1937; dubois1908; gifford1918:201-214; harrington1934; kroeber1917a; malccot1964; sparkman1908; strong1929a:5-35; white1963,EthnographicAtlas_1967_p106, +Nc34,,1880,EA009,2,,meigs1939,EthnographicAtlas_1967_p106, +Nc4,,1860,EA009,3,,garth1944; garth1953; voegelin1942,EthnographicAtlas_1967_p106, +Nc5,with special reference to the Central Sierra group,1850,EA009,3,,aginsky1943; barrettandgifford1933; gifford1916; gifford1926c; gifford1955,EthnographicAtlas_1967_p106, +Nc6,with special reference to the Southern Diegueno,1850,EA009,4,,drucker1937; gifford1922:68-71; luomala1963; spier1923,EthnographicAtlas_1967_p106, +Nc7,,1850,EA009,2,,essene1942; foster1944; gifford1922:118-122,EthnographicAtlas_1967_p106, +Nc8,Klamath Tribe,1860,EA009,2,,gatschet1890; pearsall1950; spier1930; stern1965; voegelin1942,EthnographicAtlas_1967_p106, +Nc9,,1860,EA009,2,But a nuclear family usually established an independent household after the birth of one to three children,ray1963; voegelin1942,EthnographicAtlas_1967_p106, +Nd1,,1850,EA009,6,,murdock1958; ray1942,EthnographicAtlas_1967_p106, +Nd10,,1860,EA009,6,,ray1942; teit1900,EthnographicAtlas_1967_p110, +Nd11,with special reference to the southeastern Shuswap,1850,EA009,6,,ray1942; teit1909,EthnographicAtlas_1967_p110, +Nd12,,1860,EA009,3,"In summer, but in winter these polygynous units live as part of extended families (i.e., related variable EA008 is code ""8"" in winter).",ray1942; teit1930; turneyhigh1937,EthnographicAtlas_1967_p110, +Nd13,,1860,EA009,3,,ray1942; teit1930,Ethnology_Vol3_No2_Apr_1964, +Nd14,,1860,EA009,3,,ray1942; teit1930,EthnographicAtlas_1967_p110, +Nd15,,1880,EA009,3,But large communal dwellings in the winter,clineetal1938,EthnographicAtlas_1967_p110, +Nd16,,1870,EA009,2,,ray1942; teit1928,Ethnology_Vol3_No2_Apr_1964, +Nd17,,1870,EA009,2,,jacobs1932; ray1942,Ethnology_Vol3_No2_Apr_1964, +Nd18,,1860,EA009,6,,spierandsapir1930,EthnographicAtlas_1967_p110, +Nd19,,1860,EA009,2,,ray1939; ray1942; rigsby1963,EthnographicAtlas_1967_p110, +Nd2,,1860,EA009,2,,gifford1940; hillandhill1970; lowie1924; opler1940a; stewart1942,EthnographicAtlas_1967_p106, +Nd20,,1850,EA009,2,,curtis1911; elmendorf1963; haines1955; spiden1908,EthnographicAtlas_1967_p110, +Nd21,,1870,EA009,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd22,Wadadika of Harney Valley,1870,EA009,2,,stewart1937; stewart1941; whiting1950,EthnographicAtlas_1967_p110, +Nd23,,1870,EA009,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd24,,1870,EA009,3,,anguloandfreeland1929; kelly1932; kroeber1917a; stewart1941,EthnographicAtlas_1967_p110, +Nd25,,1870,EA009,2,,steward1941; stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd26,,1870,EA009,1,Not specifically reported; inferred from the adjacent Tasiget Paiute,riddell1960,Ethnology_Vol3_No2_Apr_1964, +Nd27,,1860,EA009,2,,park1934; park1937; park1938a; stewart1941,EthnographicAtlas_1967_p110, +Nd28,,1870,EA009,2,,stewart1941,Ethnology_Vol3_No2_Apr_1964, +Nd29,including the Deep Springs Valley and Fish Lake Valley groups,1870,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd3,Havasupai Tribe,1870,EA009,2,,cushing1882; iliff1954; james1903; smithson1959; spier1928; wpawp1940,EthnographicAtlas_1967_p110, +Nd30,,1870,EA009,2,,driver1937; steward1933,EthnographicAtlas_1967_p110, +Nd31,,1850,EA009,2,,driver1937; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd32,with special reference to those of Saline Valley,1850,EA009,2,,driver1937; steward1938,EthnographicAtlas_1967_p110, +Nd33,including the Belted Range group,1870,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd34,,1870,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd35,,1870,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd36,,1870,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd37,,1870,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd38,,1870,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd39,including the Shoshoni of Snake and Antelope Valleys,1870,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd4,,1870,EA009,6,,ray1932; ray1942,EthnographicAtlas_1967_p110, +Nd40,,1870,EA009,2,,steward1938; steward1943,Ethnology_Vol3_No2_Apr_1964, +Nd41,,1870,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd42,"including the Carlin, Halleck, and Wells groups",1870,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd43,,1860,EA009,2,,harris1940; steward1941,EthnographicAtlas_1967_p110, +Nd44,,1850,EA009,2,,steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd45,,1860,EA009,2,,murphyandmurphy1960; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd46,,1860,EA009,2,,lowie1909; steward1938; steward1943,EthnographicAtlas_1967_p110, +Nd47,,1850,EA009,2,,hultkrantz1957; lowie1909; steward1938,Ethnology_Vol3_No2_Apr_1964, +Nd48,with special reference to those of Deep Creek,1860,EA009,2,,malouf1950; steward1938; steward1943; stewart1942,EthnographicAtlas_1967_p110, +Nd49,including the Kaiparowits band,1860,EA009,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd5,,1870,EA009,3,,hoebel1939; steward1943,EthnographicAtlas_1967_p110, +Nd50,,1860,EA009,2,,kelly1964,Ethnology_Vol3_No2_Apr_1964, +Nd51,,1860,EA009,2,,lowie1924; watkins1945,Ethnology_Vol3_No2_Apr_1964, +Nd52,"including the Suwuntsu (St. George), Gunlock, and Uinkaret groups of Southern Paiute",1860,EA009,2,,drucker1941; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd53,,1860,EA009,2,,gifford1917; kelly1938; kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd54,Colorado River Reservation,1860,EA009,1,,drucker1937; kroeber1925g,EthnographicAtlas_1967_p110,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nd55,"including the Pahrump, Ash Medows, and Tule Springs groups",1860,EA009,2,,driver1937; steward1938; steward1941,Ethnology_Vol3_No2_Apr_1964, +Nd56,,1860,EA009,2,,kelly1964; stewart1942,EthnographicAtlas_1967_p110, +Nd57,,1860,EA009,2,,steward1938; stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd58,,1860,EA009,2,,gifford1917; lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd59,,1860,EA009,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd6,,1850,EA009,2,,barrett1917b; downs1966; freed1960; lowie1939; stewart1941,EthnographicAtlas_1967_p110, +Nd60,,1860,EA009,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd61,,1860,EA009,2,,stewart1942,Ethnology_Vol3_No2_Apr_1964, +Nd62,,1860,EA009,2,,lowie1924; stewart1942,EthnographicAtlas_1967_p110, +Nd63,with special reference to the Eastern Bannock,1860,EA009,2,,lowie1930; murphyandmurphy1960; steward1943,EthnographicAtlas_1967_p110, +Nd64,with special reference to the Kucundika,1860,EA009,2,,hultkrantz1958; lowie1924; murphyandmurphy1960; shimkin1947a; shimkin1947b,EthnographicAtlas_1967_p110, +Nd65,,1870,EA009,2,,drucker1941; kniffenetal1935,EthnographicAtlas_1967_p110, +Nd66,with exdlusive reference to the Northeastern Yavapai,1870,EA009,2,,drucker1941; gifford1936,EthnographicAtlas_1967_p110, +Nd67,,1870,EA009,3,,gifford1936,EthnographicAtlas_1967_p110, +Nd7,Lower or eastern branch,1880,EA009,2,But communal dwellings in winter,boas1918; chamberlain1892; ray1942; turneyhigh1941,EthnographicAtlas_1967_p110, +Nd8,with special reference to the Alexis Creek and Redstone bands,1880,EA009,2,,lane1963b; morice1893; ray1942; teit1907,EthnographicAtlas_1967_p110, +Nd9,,1860,EA009,3,,hilltout1905; ray1942; teit1906b,EthnographicAtlas_1967_p110, +Ne1,Gros Ventre Tribe,1880,EA009,3,,cooper1956; flannery1953; kroeber1908c,EthnographicAtlas_1967_p110, +Ne10,,1860,EA009,3,,curtis1909b; gilmore1927; lowie1912a; macgowan1942; willandhyde1917,EthnographicAtlas_1967_p110, +Ne11,,1870,EA009,3,,denig1930; lowie1910; rodnick1938,EthnographicAtlas_1967_p110, +Ne12,,1850,EA009,3,,ewers1958; hanksandrichardson1945; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne13,,1850,EA009,3,,ewers1955; goldfrank1945a; wissler1910; wissler1911,EthnographicAtlas_1967_p110, +Ne14,,1850,EA009,2,,hesketh1923; howard1961; howard1965a; skinner1914b,EthnographicAtlas_1967_p110, +Ne15,Hidatsa Village,1860,EA009,3,,bowers1965; curtis1909; matthews1877; wiedneuwied1906; wilson1917,EthnographicAtlas_1967_p110, +Ne16,,1800,EA009,2,But a shelter often accompanied two families,gatschet1891; schaedel1949,EthnographicAtlas_1967_p110, +Ne17,,1860,EA009,3,"""The basic economic and social group . . . was a group of brothers and their wives and children""",lowie1923; mooney1898; richardson1940,EthnographicAtlas_1967_p110, +Ne18,,1850,EA009,3,,ewers1955; josselindejong1912; michelson1916; wissler1911,EthnographicAtlas_1967_p110, +Ne19,,1850,EA009,2,,mandelbaum1940; skinner1914a,EthnographicAtlas_1967_p110, +Ne2,,1870,EA009,3,,mcallister1937,EthnographicAtlas_1967_p110, +Ne20,,1850,EA009,6,,mead1937c; riggs1893; skinner1919; wallis1947,EthnographicAtlas_1967_p114, +Ne21,,,EA009,NA,,,, +Ne3,Comanche Tribe,1870,EA009,3,,gladwin1948; hoebel1940; lee1957; rister1955; wallaceandhoebel1952,EthnographicAtlas_1967_p110, +Ne4,,1870,EA009,3,,denig1953; lowie1912b; lowie1917b; lowie1919; lowie1922; lowie1935; wagnerandallen1933,EthnographicAtlas_1967_p110, +Ne5,,1860,EA009,3,,anderson1949; eggan1937b; grinnell1918; grinnell1923; hilger1946; hoebel1960; mooney190507,EthnographicAtlas_1967_p110, +Ne6,,1830,EA009,3,,bowers1950; lowie1917a; willandspinden1906,EthnographicAtlas_1967_p110, +Ne7,,1880,EA009,3,,honigmann1956a; jenness1938,EthnographicAtlas_1967_p110, +Ne8,,1870,EA009,3,,curtis1908; deloria1932; dorsey1894; erikson1939; erikson1950; ewers1937; goldfrank1943; hassrick1944; hassrick1964; macgregor1946; mckeel1936; mekeel1936; mirsky1937b; niehardt1951,EthnographicAtlas_1967_p110, +Ne9,,1860,EA009,3,,eggan1937b; elkin1940b; hilger1952; kroeber190207; michelson1934,EthnographicAtlas_1967_p110, +Nf10,,1870,EA009,2,,morgan1871; skinner1926,EthnographicAtlas_1967_p114, +Nf11,,1870,EA009,2,,whitman1937,EthnographicAtlas_1967_p114, +Nf12,,1850,EA009,2,,dorsey1897; howard1965b,EthnographicAtlas_1967_p114, +Nf13,with special reference to the Kiskopotha band,1820,EA009,2,,trowbridge1939,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf14,,NA,EA009,2,,parsons1941; swanton1942b,Ethnology_Vol7_No1_Jan_1968, +Nf15,,1870,EA009,6,,hockett1938; jones1913; morgan1871,Ethnology_Vol7_No1_Jan_1968, +Nf2,,1850,EA009,2,,michelson1935; oestreich1948; radin1923,EthnographicAtlas_1967_p114, +Nf3,Omaha Tribe,1850,EA009,2,,dorsey1884; fletcherandlaflesche1911; fortune1932a; mead1932b,EthnographicAtlas_1967_p114, +Nf4,,1720,EA009,3,,kinietz1940b; morgan1871,EthnographicAtlas_1967_p114, +Nf5,,1860,EA009,3,,curtis1930; dorsey1904a; schmitt1952; schmittandschmitt1953,EthnographicAtlas_1967_p114, +Nf6,Skidi Band or subtribe,1867,EA009,3,,dorsey1904b; dorseyandmurie1940; lounsbury1956; weltfish1965,EthnographicAtlas_1967_p114, +Nf7,Tama Reservation,1830,EA009,3,,joffe1940; linton1940; michelson1938; tax1937,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA009,2,,griffith1954; parson1941; spier1924; swanton1942b,EthnographicAtlas_1967_p114, +Nf9,,1870,EA009,6,,hoffman1893; keesing1939; skinner1913; spindler1962,EthnographicAtlas_1967_p114, +Ng1,Bear and Cord Subtribes,1640,EA009,1,,kinietz1940a; tooker1964; trigger1969,EthnographicAtlas_1967_p114, +Ng10,with special reference to the Seneca tribe,1750,EA009,1,,fenton1940; goldenweiser191213; hunt1940; morgan1871; morgan1877; morgan1901; noon1949; quain1937,EthnographicAtlas_1967_p114, +Ng11,,1750,EA009,2,,eggan1937a; speck1909; swanton1946,EthnographicAtlas_1967_p114, +Ng12,,1760,EA009,2,,eggan1937a; swanton1931; swanton1946,EthnographicAtlas_1967_p114, +Ng13,,,EA009,NA,,,, +Ng14,,NA,EA009,2,,swanton1928b; swanton1946,Ethnology_Vol7_No1_Jan_1968, +Ng15,,1750,EA009,2,,haas1939; swanton1911,Ethnology_Vol7_No1_Jan_1968, +Ng2,with special reference to the Cow Creek band,1940,EA009,1,,spoehr1941; spoehr1942; spoehr1944,Ethnology_Vol1_No1_Jan_1962, +Ng3,Upper division in Alabama,1750,EA009,2,,bartram1953; murdock1956; speck1907; swanton1928a; swanton1928c; swanton1946,EthnographicAtlas_1967_p114, +Ng4,,1900,EA009,2,,speck1918; speck1940,Ethnology_Vol1_No2_Apr_1962, +Ng5,,1750,EA009,2,,gearing1962; gilbert1937; gilbert1943; swanton1946,EthnographicAtlas_1967_p114, +Ng6,with special reference to the Munsee,1700,EA009,2,,harrington1913; herman1950; newcomb1956; wallace1947a,EthnographicAtlas_1967_p114, +Ng7,Natchez Kingdom,1700,EA009,3,,macleod1924; swanton1911; whiteetal1971,EthnographicAtlas_1967_p114, +Ng8,,1560,EA009,2,,brinton1859; ehrmann1940; swanton1916; swanton1942a,EthnographicAtlas_1967_p114, +Ng9,,1920,EA009,2,,speckandschaeffer1942; sturtevant1965; swanton1946,Ethnology_Vol4_No3_Jul_1965, +Nh1,Central band,1880,EA009,3,,gifford1940; opler1936b; opler1936c; opler1937; opler1941; opler1971c,EthnographicAtlas_1967_p114, +Nh10,,1920,EA009,1,,parsons1932a; trager1943,EthnographicAtlas_1967_p114, +Nh11,with special reference to the pueblo of San Ildefonso,1900,EA009,1,,dozier1954; dozier1961; parsons1929; robbinsetal1916; whitman1940,EthnographicAtlas_1967_p114, +Nh12,,1920,EA009,1,,gifford1940; white1942,EthnographicAtlas_1967_p114, +Nh13,,1920,EA009,1,,eggan1950; mickey1956; miller1959; white1932; white1943,EthnographicAtlas_1967_p114, +Nh14,,1920,EA009,1,,eggan1950; parson1923,Ethnology_Vol2_No2_Apr_1963, +Nh15,,1870,EA009,3,,castetterandopler1936; flannery1932; gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh16,"Jicarilla Reservation, Dulce, New Mexico",1870,EA009,3,,bellah1952; gifford1940; opler1936d; opler1946,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh17,,1870,EA009,2,,gifford1940; goodwin1935; goodwin1942; kaut1957; lockwood1938; opler1941,EthnographicAtlas_1967_p114, +Nh18,Old Oraiibi,1920,EA009,1,,beaglehole1937; beagleholeandbeaglehole1935; dennis1940; eggan1950; hrdlicka1935; lowie1929; murdock1934n; simmons1942; titiev1944; voegelinandvoegelin1957,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh19,,1850,EA009,2,,drucker1941; gifford1933,EthnographicAtlas_1967_p114, +Nh2,,1950,EA009,1,,dozier1954,EthnographicAtlas_1967_p114, +Nh20,,1860,EA009,2,,gifford1931,EthnographicAtlas_1967_p114, +Nh21,Fort Mohave and Colorado River Reservation,1850,EA009,2,,devereaux1950; drucker1941; kroeber1902; kroeber1925i,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nh22,,1860,EA009,1,,bee1963; drucker1937; forde1931; halpern1942,EthnographicAtlas_1967_p114, +Nh23,,1870,EA009,2,,gifford1932a,EthnographicAtlas_1967_p114, +Nh24,,1880,EA009,1,,gifford1940; opler1936a,EthnographicAtlas_1967_p114, +Nh25,,1920,EA009,1,,hawleyetal1943; stevenson1894; white1962,EthnographicAtlas_1967_p114, +Nh26,,1910,EA009,1,,harrington1912; parsons1924; parsons1929,Ethnology_Vol7_No1_Jan_1968, +Nh27,,1930,EA009,1,,white1935,Ethnology_Vol7_No1_Jan_1968, +Nh3,,1930,EA009,4,,franciscanfathers1910; goldfrank1945b; hill1938; kluckhohn1947; kluckhohnandleighton1946; leightonandkluckhohn1947; reichard1928,EthnographicAtlas_1967_p114, +Nh4,Pueblo,1910,EA009,1,,benedict1934:57-129; bunzel1930; bunzel1932; cushing1920; eggan1950; gifford1940; kroeber1917b; leightonandadair1966; parsons1919; roberts1956; robertsnd; smith1954b; stevenson1904; stevenson1909,EthnographicAtlas_1967_p114, +Nh5,,1850,EA009,2,,drucker1941; spier1933,EthnographicAtlas_1967_p114, +Nh6,,1890,EA009,1,,parsons1936b; trager1943,EthnographicAtlas_1967_p114, +Nh7,,1890,EA009,1,,dumarest1919; goldfrank1927; parsons1932b,EthnographicAtlas_1967_p114, +Nh8,,1920,EA009,1,,hawley1964; parsons1925; parsons1932b,EthnographicAtlas_1967_p114, +Nh9,,1920,EA009,1,,parsons1939; trager1943,EthnographicAtlas_1967_p114, +Ni1,,1930,EA009,2,,bennettandzingg1935; passin1943,EthnographicAtlas_1967_p114, +Ni2,,1930,EA009,3,,castetterandbell1942; josephetal1949; lumholtz1912; underhill1936; underhill1939,EthnographicAtlas_1967_p114, +Ni3,Huichol Tribe,1920,EA009,2,,grimesandgrimes1962; grimesandhinton1969; klineberg1934; lumholtz1898; lumholtz1902; zingg1938,EthnographicAtlas_1967_p114, +Ni4,,1900,EA009,1,,ascher1962; kroeber1931; mcgee1898,EthnographicAtlas_1967_p114, +Ni5,,1570,EA009,1,,driveranddriver1963,EthnographicAtlas_1967_p114, +Ni6,,1840,EA009,2,,castetterandbell1942; drucker1941; parsons1928; russell1908,EthnographicAtlas_1967_p114, +Ni7,,1870,EA009,2,,beals1943; drucker1941,EthnographicAtlas_1967_p114, +Ni8,,1550,EA009,1,,johnson1950,Ethnology_Vol7_No1_Jan_1968, +Ni9,,,EA009,NA,,,, +Nj1,Ojitlan,1940,EA009,1,,merrifield1959; weitlaner1951; weitlanerandcastroguevara1954,EthnographicAtlas_1967_p114,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,mountain village of Yalagag,1940,EA009,1,,fuente1949; nader1964; parsons1936a,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj11,,NA,EA009,1,,guiterasholmes1948; schuller1927; stresserpeau195253,Ethnology_Vol7_No1_Jan_1968, +Nj12,,,EA009,NA,,,, +Nj13,,,EA009,NA,,,, +Nj14,,,EA009,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA009,2,,holtker1930; murdock1934b:359-402; prescott1922; sahagun195057; selersachs1919; soustelle1961; thompson1933; vaillant1941,EthnographicAtlas_1967_p114, +Nj3,Town and environs of Soteapan,1940,EA009,3,,foster1940; foster1942; foster1943; foster1945,EthnographicAtlas_1967_p118, +Nj4,,,EA009,NA,,,, +Nj5,,1940,EA009,2,,cowan1946; cowan1947,Ethnology_Vol1_No4_Oct_1962, +Nj6,with special reference to San Mateo,1950,EA009,1,,diebold1966,Ethnology_Vol5_No4_Oct_1966, +Nj7,with special reference to Ayutla,1930,EA009,1,,beals1945,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj8,,1500,EA009,2,,foster1948,EthnographicAtlas_1967_p118, +Nj9,,1960,EA009,2,,nutini1962; nutini1965,EthnographicAtlas_1967_p118, +Sa1,San Blas Archipelago,1940,EA009,2,,depuydt1868; holloman1969; holmer1951; krieger1926; nordenskiold1938; stout1947; wafer1934,EthnographicAtlas_1967_p118, +Sa10,,1900,EA009,6,,baerandbaer1949; tozzer1907,EthnographicAtlas_1967_p118, +Sa11,,1880,EA009,1,,stoll1889,Ethnology_Vol6_No1_Jan_1967, +Sa12,,1948,EA009,6,,stone1948,EthnographicAtlas_1967_p118, +Sa13,Town of Chichicastenango,1930,EA009,2,,bunzel1952; schultzejena1933,EthnographicAtlas_1967_p118, +Sa14,,NA,EA009,4,,alphonse1956; johnson1938,Ethnology_Vol7_No1_Jan_1968, +Sa15,,1920,EA009,1,,lafargeandbyers1931,Ethnology_Vol7_No1_Jan_1968, +Sa16,,NA,EA009,6,,hagen1943; kirchhoff1948a,Ethnology_Vol7_No1_Jan_1968, +Sa17,with special reference to the village of Chinantla,1950,EA009,1,"Extended families, though considered the ideal, constitute only 35 per cent of all households",gillin1951; reina1966,Ethnology_Vol7_No1_Jan_1968, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA009,2,,guiterasholmes1947; redfieldandvillarojas1939; villarojas1947,Ethnology_Vol1_No1_Jan_1962,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA009,1,,wisdom1940,EthnographicAtlas_1967_p118, +Sa4,with special reference to those of Panama,1960,EA009,1,,faron1961a; faron1962; reicheldolmatoff1960; stout1948,EthnographicAtlas_1967_p118, +Sa5,,1950,EA009,1,"But today code ""2"", independent nuclear families with occasional polygyny",gabb1876; johnson1948; pittierdefabrega1938; skinner1920; stone1962,Ethnology_Vol6_No4_Oct_1967, +Sa6,,1520,EA009,1,,carrasco1967; chamberlain1951; gannandthompson1931; redfieldandvillarojas1934; roys1943; roys1951; roys1957; thompson1927; tozzer1941; vonhagen1957,EthnographicAtlas_1967_p118, +Sa7,,1940,EA009,2,,solien1960a; solien1960b; taylor1951,EthnographicAtlas_1967_p118, +Sa8,with special reference to the village of Santiago Chimaltenango,1930,EA009,1,,wagley1941; wagley1949b,EthnographicAtlas_1967_p118, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA009,2,,conzemius1932; helms1969; helms1971; kirchhoff1948a; pijoan1946,EthnographicAtlas_1967_p118, +Sb1,Dominica Island,1650,EA009,2,,bouton1640; breton1665; bretonanddelapaix1929; dutertre1667; hodgeandtaylor1957; rouse1948b; taylor1938; taylor1946; taylor1949,EthnographicAtlas_1967_p118, +Sb2,,1940,EA009,2,,park1946; reicheldolmatoff194951,EthnographicAtlas_1967_p118, +Sb3,with special reference to the Iroka,1940,EA009,6,,holder1947; reicheldolmatoff1945; reicheldolmatoffandclark1950,Ethnology_Vol1_No2_Apr_1962, +Sb4,with special reference to the Cachama group,1950,EA009,2,,schwein1963; schwerin1966; schwerin1967; wilbert1957a,Ethnology_Vol7_No3_Jul_1968, +Sb5,,1950,EA009,2,,jahn1914; wilbert1959c,EthnographicAtlas_1967_p118, +Sb6,Goajiro Tribe,1940,EA009,5,,armstrongandmetraux1948; bolinder1957; gutierrezdepineda1948; pinedagiraldo1950; santacruz1941; santacruz1960; simons1885; watson1973; wilbert1962,EthnographicAtlas_1967_p118, +Sb7,with special reference to the Pariri,1950,EA009,2,,wilbert1961b,EthnographicAtlas_1967_p118, +Sb8,,1520,EA009,2,,rouse1948a,EthnographicAtlas_1967_p118, +Sb9,,1930,EA009,2,,bastien1951; courlander1960; herskovits1937b; leyburn1941; metraux1959; metraux1960; mintz1963; rawsonnd; romain1955; simpson1940a; simpson1943; underwood1960; underwoodandhonigmann1947,Ethnology_Vol10_No1_Jan_1971, +Sc1,,1950,EA009,3,,hill1956; kirchhoff1948b; moreno1945; suarez1968; wilbert1958b; wilbert1964,EthnographicAtlas_1967_p118, +Sc10,,1900,EA009,2,,coll1903; geoje1910; kirchhoff1931; taylor1957,EthnographicAtlas_1967_p118, +Sc11,,1930,EA009,6,,simpson1940b; wilbert1961a,EthnographicAtlas_1967_p118, +Sc12,,1910,EA009,2,,farabee1924; kirchhoff1931,EthnographicAtlas_1967_p118, +Sc13,,1950,EA009,3,But the inhabitants of a communal dwelling approximate an extended family,riley1954; wilbert1959a; wilbert1963,EthnographicAtlas_1967_p118, +Sc14,,1890,EA009,3,,coudreau1893,Ethnology_Vol2_No2_Apr_1963, +Sc15,,1910,EA009,2,,kochgrunberg1923a; soaresdiniz1965; ule1913,EthnographicAtlas_1967_p118, +Sc16,with special reference to the Makitare,1920,EA009,3,"Each nuclear family occupies a separate apartment in a communal dwelling, but a married man is subject to the authority of his father-in-law",barandiaran1962; kochgrunberg1923b; wilbert1958c; wilbert1963,EthnographicAtlas_1967_p118, +Sc17,,1950,EA009,5,,wilbert1963,EthnographicAtlas_1967_p118, +Sc18,,1960,EA009,4,But co-wives commonly live in different villages,geyskes1954; kobben1967a; kobben1967b; thodenvanvelzen1966; vanderkuyp1962,Ethnology_Vol6_No4_Oct_1967, +Sc2,,1950,EA009,2,,leedsnd,EthnographicAtlas_1967_p118, +Sc3,Barama River,1930,EA009,2,,gillin1936; gillin1948; gillinnd; roth1924,EthnographicAtlas_1967_p118, +Sc4,with special reference to the non-agricultural groups,1950,EA009,2,"Nuclear families households, however, are normally grouped into larger extended families, of which there are usually two or three in a band",wilbert1957b; wilbert1963,EthnographicAtlas_1967_p118, +Sc5,,1900,EA009,6,Each polygynous family has its own section in a communal house,farabee1918,EthnographicAtlas_1967_p118, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA009,5,,herskovitsandherskovits1934; hurault1959; neumann1967; price1975,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,1950,EA009,2,There were formerly communal dwellings,wilbert1959b,EthnographicAtlas_1967_p118, +Sc8,,1950,EA009,2,But the inhabitants of the communal dwelling may constitute a matrilocal extended family,wilbert1958a; wilbert1963,EthnographicAtlas_1967_p118, +Sc9,,1950,EA009,1,,wilbert1960a; wilbert1963,EthnographicAtlas_1967_p118, +Sd1,Cabrura village,1950,EA009,2,,frikel1959; kruse1937; martius186367; murphy1956; murphy1957; murphy1958; murphy1960; tocantins1877,EthnographicAtlas_1967_p118,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA009,1,,wagley1943; wagleyandgalvao1948a,EthnographicAtlas_1967_p118, +Sd3,,1920,EA009,1,,nimuendaju1926,EthnographicAtlas_1967_p118, +Sd4,,1950,EA009,2,,barker1953; zerries1954,Ethnology_Vol1_No4_Oct_1962, +Sd5,,1950,EA009,2,,lecock1964; nimuendaju1948,EthnographicAtlas_1967_p118, +Sd6,,1960,EA009,2,,migliazza1964,EthnographicAtlas_1967_p118, +Sd7,,1950,EA009,2,But an entire village occupies a communal dwelling,fock1963,EthnographicAtlas_1967_p118, +Sd8,,1950,EA009,6,,wilbert1963,EthnographicAtlas_1967_p118, +Sd9,Shamatari Tribe; Bisaasi-teri,1965,EA009,3,,chagnon1967; chagnon1968a; chagnon1968b,Ethnology_Vol10_No1_Jan_1971,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se1,Vicinity of the Rio Blanco,1940,EA009,3,,holmberg1950,EthnographicAtlas_1967_p118, +Se10,,1670,EA009,2,,espinosa1935; metraux1948b; tessmann1930,EthnographicAtlas_1967_p118, +Se11,,1960,EA009,2,,prost1965,EthnographicAtlas_1967_p122, +Se12,,1950,EA009,6,,fulop1955,Ethnology_Vol7_No1_Jan_1968, +Se2,,1940,EA009,2,,leeds1961; nimenuendaju1952,EthnographicAtlas_1967_p118, +Se3,,1930,EA009,6,,harner1960; harner1962; karsten1935; rivet190708; stirling1938; updegraff1923,EthnographicAtlas_1967_p118, +Se4,,1940,EA009,1,But an entire settlement occupies a communal dwelling,fejos1943,EthnographicAtlas_1967_p118, +Se5,Village on Caduiari River,1940,EA009,2,But each family has a separate apartment in a communal dwelling,goldman1948; goldman1963,EthnographicAtlas_1967_p118, +Se6,,1910,EA009,2,Each family has a separate apartment in a communal dwelling,murdock1936b; tessmann1930; whitten1915,EthnographicAtlas_1967_p118, +Se7,a mestizo group in lowland Bolivia,1950,EA009,1,,heath1959,Ethnology_Vol2_No1_Jan_1963,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Se8,Upper Inuya River,1950,EA009,2,,carneiro1962; carneiro1964a; carneiro1964b; carneiro1968; dole1961; dole1962; huxley1964; tessmann1930,EthnographicAtlas_1967_p118, +Se9,,1920,EA009,3,,stcricq1853; stewardandmetraux1948a,EthnographicAtlas_1967_p118, +Sf1,City and environs of Cuzco,1530,EA009,1,Only the higher social strata practiced polygyny,baudin1961; baudin1962; brundage1963; ciezadeleon1554; cobo189095; mason1957; means1931; metraux1969; molima1915; murdock1934b:403-450; rowe1946,EthnographicAtlas_1967_p122, +Sf2,Chucuito Clan community in Peru,1940,EA009,1,,bouronclecarreon1964; labarre1948; tschopik1946; tschopik1951,EthnographicAtlas_1967_p122, +Sf3,Rio Cayapas Basin,1910,EA009,1,,altschuler1965a; altschuler1965b; altschuler1971; barrett1925; heimann1932; murra1948,EthnographicAtlas_1967_p122, +Sf4,,1950,EA009,6,Entry follows Wilbert; Rochereau reports monogamy,rochereau1919; rochereau1961; wilbert1960b,EthnographicAtlas_1967_p122, +Sf5,,1900,EA009,6,,bernalvilla1954; pittierdefabrega1907,EthnographicAtlas_1967_p122, +Sf6,,1540,EA009,6,,ghisletti1954; kroeber1946; restrepo1895,EthnographicAtlas_1967_p122, +Sf7,,1900,EA009,6,,caldwellandcalhoun1932; craig1967; nordenskiold1924; stewardandmetraux1948b,EthnographicAtlas_1967_p122, +Sf8,,1950,EA009,2,,matteson1954,Ethnology_Vol7_No1_Jan_1968, +Sf9,with special reference to those just south of Lake Titicaca in Bolivia across the Desaguadero River from Peru,1930,EA009,2,,labarre1941,Ethnology_Vol7_No1_Jan_1968, +Sg1,Eastern and central,1870,EA009,2,,cooper1917; cooper1946a; gusinde1937b,EthnographicAtlas_1967_p122, +Sg2,Cholchol,1880,EA009,5,,faron1961b; faron1964; faron1968; hilger1957; nutini1972; titiev1951,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA009,2,,baerandschmitz1964; bridges1949; gallardo1910; gusinde1931a; gusinde1931a; lothrop1928; lowie1948; steward1949,EthnographicAtlas_1967_p122, +Sg4,Equestrian,1870,EA009,2,,bourne1874; cooper1946c; musters1871; musters1972; viedma1837,EthnographicAtlas_1967_p122, +Sg5,with special reference to the southern bands,1900,EA009,2,,bird1946; cooper1917,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA009,2,,karsten1932; pelleschi1896,EthnographicAtlas_1967_p122, +Sh2,,1850,EA009,2,,oberg1948a; oberg1949,EthnographicAtlas_1967_p122, +Sh3,Those in contact with mission,1800,EA009,2,,dobrizhoffer1822; metraux1946chaco,EthnographicAtlas_1967_p122, +Sh4,,1940,EA009,2,,oberg1949,EthnographicAtlas_1967_p122, +Sh5,,1910,EA009,1,,karsten1932; nordenskiold1919; rosen1924a,EthnographicAtlas_1967_p122, +Sh6,,1890,EA009,1,,baldus1931; boggiani1894,EthnographicAtlas_1967_p122, +Sh7,,1900,EA009,2,There were formerly communal dwellings,campana1902; metraux1930; nordenskiold1912; rosen1924b,EthnographicAtlas_1967_p122, +Sh8,with special reference to those of the Argentine Chaco,1964,EA009,2,,karsten1932; metraux1937; miller1965; miller1966; niklison1916; palavecino1955,EthnographicAtlas_1967_p122, +Sh9,Those in contact with mission,1890,EA009,2,,baldus1931; grubb1911; hawtrey1901; metraux1946chaco,EthnographicAtlas_1967_p122, +Si1,Kejara,1920,EA009,2,,fricandradin1906; levistrauss1936; oberg1953:1-144; steinen1894,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,1950,EA009,2,But there are communal dwellings; each occupied by about four nuclear families on the average,carneiro1958; carneiroanddole1957; dole1958,Ethnology_Vol7_No2_Apr_1968, +Si2,Village of Vanivani,1930,EA009,2,,levistrauss1948c; murphyandquain1955,EthnographicAtlas_1967_p122, +Si3,Simao Lopes,1940,EA009,2,,oberg1948b; oberg1953:1-144; steinen1892,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA009,2,,levistrauss1944; levistrauss1948a; levistrauss1948b; levistrauss1955:235-310; oberg1953:82-105; roquettepinto1935,EthnographicAtlas_1967_p122, +Si5,,1940,EA009,2,,oberg1953:1-144,EthnographicAtlas_1967_p122, +Si6,,1900,EA009,3,,schmidt1905; schmidt1942,EthnographicAtlas_1967_p122, +Si7,with special reference to the Cozarimi,1910,EA009,3,,metraux1948a; schmidt1914,EthnographicAtlas_1967_p122, +Si8,,,EA009,NA,,,, +Si9,,1940,EA009,NA,"Communal dwellings, each occupied by several families",levistrauss1948c; oberg1953:1-144,Ethnology_Vol7_No1_Jan_1968, +Sj1,,1950,EA009,2,,dietschy1962; dietschynd; ehrenreich1891; krause1911; lipkind1948,EthnographicAtlas_1967_p122, +Sj10,Taquapiri,1950,EA009,1,"But formerly code ""2"", occasional polygyny",ambrosetti1895; keonigswald1908; muller193435; rengger1835; strelnikov1928; watson1952,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj11,Village of Sao Domingo,1958,EA009,3,,mayburylewis1967; nimuendaji1942,Ethnology_Vol6_No4_Oct_1967, +Sj2,,1850,EA009,2,,nimuendaju1942,EthnographicAtlas_1967_p122, +Sj3,Duque de Caxias Reservation,1910,EA009,6,"Henry reports an incidence of 60 percent for monogamy, 18 per cent for polygyny, and 8 per cent for group marriage",henry1941; metraux1946caingang; paula1924,EthnographicAtlas_1967_p122, +Sj4,Ramcocamecra or Canella,1930,EA009,1,,arnaud1964; crocker1961; kissenberth1912; lowie1946; nimuendaju1946; snethlage1930,EthnographicAtlas_1967_p122, +Sj5,Naknenuk subtribe,1880,EA009,3,,ehrenreich1887; keane1883; metraux1946botocudo; sainthilaire193033; wiedneuwied182021,EthnographicAtlas_1967_p122, +Sj6,with special reference to the Guajajara subgroup,1930,EA009,2,,snethlage1930; wagley1949a; wagleyandgalvao1948b,EthnographicAtlas_1967_p122,"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA009,1,,mayburylewis1960; nimuendaju1939,EthnographicAtlas_1967_p122, +Sj8,Hinterland of Rio de Janeiro,1600,EA009,5,,abbeville1614; cardim1906; devreux1864; lery1880; lery1906; magalhaesdegandavo1922; metraux1948c; soaresdesouza1851; staden1928; thevet1878,EthnographicAtlas_1967_p122, +Sj9,,1950,EA009,1,,dreyfus1963; krause1911; soatesdiniz1962,EthnographicAtlas_1967_p122, +ch12,with special reference to the Birskij Uezd Bashkir,1899,EA009,2,,bikbulatov1964; bikbulatov1980; bikbulatov1980a; bikbulatov1981; bikbulatovandkuzeev1976; bikbulatovandpimenov1998; janguzin1987; karlov1990; kazantsev1866; kinkov1927; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; nazarov1890; nikolskij1899; rudenko1925; rudenko1953; shakirova1988; tolstov1964; vangennep1960,Ethnology_Vol44_No3_Summer_2005, +ch13,with special reference to the Glazovskij Uezd Besermyan,1894,EA009,1,,miheev1901; popova1992; shkljaev1997; stejnfeld1894; vladykinandpanova1998,Ethnology_Vol44_No3_Summer_2005, +ch14,with special reference to the Virjal group,1908,EA009,1,,aleksandrov1899; denisova1984; fuks1840; guzenkovaandivanov1998; jagafova1998; karlov1990; komissarov1911; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; mihajlov1882; nikolskij1908; rittih1870; sboevnd; semenov1900b; skvortsov2001; tolstov1964; vorobevandromanov195670,Ethnology_Vol44_No3_Summer_2005, +ch15,with special reference to those of the Boklinskij Uezd,1895,EA009,1,,balashov1995; belitserandkotkova1963; fedjanovich1997; jurchenkov1995; karlov1990; kozlov1981; kozlova1964; kozlova1982; majnov1885; maksimov1997a; maksimov1997b; markelov1928; melnikov1981; mokshin1990; mokshinandfedjanovich1998; petruhinandhelimskij1982; serkina2002; smimov1895; tolstov1964; tumajkin1974,Ethnology_Vol44_No3_Summer_2005, +ch16,with special reference to the Valkskij Uezd,1908,EA009,1,,aleksandrovandshlygina1971; feoktistova1980; karlov1990; kozlova1982; luts1959; rejsner1916; sedov1987; tijk1977; tolstov1964; viaari1953; vulfson1908; wiedemann1876,Ethnology_Vol44_No3_Summer_2005, +ch17,with special reference to those of the Benderskij Uezd,1894,EA009,1,,guboglo1998; moshkov1900; semenov1900c; tolstov1964,Ethnology_Vol44_No3_Summer_2005, +ch18,"with special reference to those of the Kingisepp Rajon, the Leningrad Region",1927,EA009,1,,keppen1853; kiuru1993; konkova1995; laanest1974; sedov1987; semenov1900a; shlygina1998a; sjogren1833; tolstov1964; ushakov1990; uspenskij1845; zolotarev1927,Ethnology_Vol44_No3_Summer_2005, +ch19,with special reference to the Livvikjoj group of the Olonetskij Uezd,1874,EA009,1,,cheremin1909; efimenko1877; kiuru1993b; klementev1983; klementev1998; kochkurkina1986; kozlova1982; lennrot1985; majnov1877; maksimov1997c; malmi1987; nikolskaja1976; semenov1900a; surhasko1977; surhasko1985; taroeva1965; tolstov1964; zherbin1983,Ethnology_Vol44_No3_Summer_2005, +ch20,with special reference to those of the Altayrskij Uezd,1910,EA009,2,,ahmarov1907; ishakovetal1998; karlov1990; kozlova1964; kozlova1982; maksimov1997a; maksimov1997b; pinegin1891; putsykovich1900; ramazanova1991; rittih1870; speranskij1914; suharev1904; vorobev1953; vorobevandhisamutdinov1967; znamenskij1910,Ethnology_Vol44_No3_Summer_2005, +ch21,with special reference to the Vidzeme group,1881,EA009,1,,aleksandrov1900a; aleksandrovandshlygina1971; anonymous1869; cheshihinvetrinskijv1901; efremova1982; karlov1990; kozlova1982; novoselov1911; rejsner1916; sedov1987; shtraus1994; tolstov1964; trejland1881; volter1890,Ethnology_Vol44_No3_Summer_2005, +ch22,with special reference to those of the Trakaj area,1895,EA009,2,,eljashevish1994; firkovich1969; hafuz1994; kefeli1992; maciuika1955; muhlinskij1862; muhlinskij1902; shapshal1995; tuhanbaranowski1896; vjartsinkjavjachus1989,Ethnology_Vol44_No3_Summer_2005, +ch23,with special reference to those of the Vilenskaja Gubernija,1905,EA009,1,,grishin1995; ishakovetal1998; muhlinskij1902; shimelevich1905; tuhanbaranowski1896,Ethnology_Vol44_No3_Summer_2005, +ch24,with special reference to the Northwest Courland,1847,EA009,1,,beitipa1995; hillner1847; koppen1847; sjogren1847; sjogren1849; sjogren1855; tolstov1964; videman1870,Ethnology_Vol44_No3_Summer_2005, +ch25,with special reference to the Beletskij Uezd,1900,EA009,1,,aleksandrov1900b; kantemir1973; karlov1990; kozlova1982; pljusnin1899; postolaki1987; salmanovich1947; semenov1900c; tolstov1964; zashchuk1859,Ethnology_Vol44_No3_Summer_2005, +ch26,with special reference to those of the Sarapul'skij Uezd,1890,EA009,1,,buch1882; busyginandzorin1984; dolganovaetal1995; fedjanovich1997; haruzina1898; hristoljubova1981; ivanova1999; karlov1990; kozlova1964; kozlova1982; majer1985; maksimov1997a; maksimov1997b; petruhinandhelimskij1982; pimenov1993; rittih1870; shkljaev1992; simchenko1990; smimov1890; tolstov1964; vasilev1902; vereshchagin1886; vereshchagin1889; vladykinandhristoljubova1984; vladykinandhristoljubova1985; vladykinandhristoljubova1997; vladykinandhristoljubova1998,Ethnology_Vol44_No3_Summer_2005, +ch27,with special reference to the Petrozavodskij Uezd Veps,1900,EA009,1,,borisova1924; etoeva1977; kozlova1982; makarev1929; makarev1932; malinovskaja1930; morev1924; pimenov1965; ravdonikas1926; sedov1987; semenov1900a; tolstov1964; ushakov1990,Ethnology_Vol44_No3_Summer_2005, +ch28,with special reference to those of the Yamburg Uezd,1900,EA009,1,,jazykov1840; keppen1851; konkova1996; sedov1987; semenov1900a; shlygina1998b; sjogren1833; tolstov1964; uspenskij1845,Ethnology_Vol44_No3_Summer_2005, +ec12,Avam (Western) group,1930,EA009,2,,afanaseva1990; fainberg1962; gracheva1983; gracheva1988; gracheva1994; pevgova1939; popov1948; popov1984; simchenko1963; simchenko1974; simchenko1976,Ethnology_Vol43_No1_Winter_2004, +ec13,those of Eastern Kamchatka,1710,EA009,2,,krasheninnikov1994; kreinovich1973; orlova1999; steller1999,Ethnology_Vol43_No1_Winter_2004, +ec14,those of South-Eastern Chukotka,1880,EA009,2,,chlenov1973; krupnik1983b; lopulenko1980; menovshchikov1961,Ethnology_Vol43_No1_Winter_2004, +ec15,Middle Northern Sos'va group,1880,EA009,1,,duningorkavich1904; korikov1898; nosilov1904; novikova1994; pavlovskij1907; pevgova1939; rombandeevaandkuzakova2000; sokolova1974; sokolova1983; sokolova1991,Ethnology_Vol43_No1_Winter_2004, +ec16,Barguzin group,1890,EA009,1,,karlov1982; kudrin1988; mazin1992; shirologoroff1933; sokolova1962; tugolukov1962; tugolukov1985; varlamov1997; vasilevich1962; vasilevich1969,Ethnology_Vol43_No1_Winter_2004, +ec17,Upper Amgun' River group,1890,EA009,2,,gapanovich1927; levinandpotapov1956:776-780; shternberg1933a,Ethnology_Vol43_No1_Winter_2004, +ec18,Ulch people as a whole,1890,EA009,2,,ivashchenko1994; levinandpotapov1956:817-824; smoljak1966; sunik1985,Ethnology_Vol43_No1_Winter_2004, +ec19,Northern group,1890,EA009,2,,levinandpotapov1956:857-859; petrova1969; shternberg1933a; smoljak1994,Ethnology_Vol43_No1_Winter_2004, +ec20,Oroch people as a whole,1890,EA009,2,,iochelson1908; larkin1964; levinandpotapov1956:845-849; lopatin1925; shternberg1933a; smoljak1994; turaev2001,Ethnology_Vol43_No1_Winter_2004, +ec21,Hor River group,1890,EA009,2,,arsenev1926; girfanova2000; ivashchenko1989; kormushin1998; larkin1958; levinandpotapov1956; startsev2000,Ethnology_Vol43_No1_Winter_2004, +Aa1,Nyai Nyae region,1950,EA090,2,,,Gray (1999); Murdock (1957), +Aa2,with special reference to Central Dorobo,1920,EA090,2,,,Gray (1999); Murdock (1957), +Aa3,Gei/Khauan tribe,1840,EA090,4,,,Gray (1999); Murdock (1957), +Aa4,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Aa5,"Epulu net-hunters, Ituri forest",1930,EA090,2,,,Gray (1999); Murdock (1957), +Aa6,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Aa7,,,EA090,NA,,,, +Aa8,,,EA090,NA,,,, +Aa9,,,EA090,NA,,,, +Ab1,,1900,EA090,2,,,Gray (1999); Murdock (1957), +Ab10,,,EA090,NA,,,, +Ab11,,,EA090,NA,,,, +Ab12,,,EA090,NA,,,, +Ab13,,,EA090,NA,,,, +Ab14,,,EA090,NA,,,, +Ab15,,,EA090,NA,,,, +Ab16,,,EA090,NA,,,, +Ab17,,,EA090,NA,,,, +Ab18,,,EA090,NA,,,, +Ab19,,,EA090,NA,,,, +Ab2,,,EA090,NA,,,, +Ab20,,,EA090,NA,,,, +Ab21a,,,EA090,NA,,,, +Ab21b,,,EA090,NA,,,, +Ab22,,,EA090,NA,,,, +Ab3,Ruling Luyana,1890,EA090,6,,,Gray (1999); Murdock (1957), +Ab4,,1920,EA090,5,,,Gray (1999); Murdock (1957), +Ab5,,1930,EA090,5,,,Gray (1999); Murdock (1957), +Ab6,,,EA090,NA,,,, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA090,5,,,Gray (1999); Murdock (1957), +Ab8,Basuto,1860,EA090,6,,,Gray (1999); Murdock (1957), +Ab9,,,EA090,NA,,,, +Ac1,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Ac10,,,EA090,NA,,,, +Ac11,,,EA090,NA,,,, +Ac12,,,EA090,NA,,,, +Ac13,,,EA090,NA,,,, +Ac14,,,EA090,NA,,,, +Ac15,,,EA090,NA,,,, +Ac16,,,EA090,NA,,,, +Ac17,,,EA090,NA,,,, +Ac18,,,EA090,NA,,,, +Ac19,,,EA090,NA,,,, +Ac2,,,EA090,NA,,,, +Ac20,,,EA090,NA,,,, +Ac21,,,EA090,NA,,,, +Ac22,,,EA090,NA,,,, +Ac23,,,EA090,NA,,,, +Ac24,,,EA090,NA,,,, +Ac25,,,EA090,NA,,,, +Ac26,,,EA090,NA,,,, +Ac27,,,EA090,NA,,,, +Ac28,,,EA090,NA,,,, +Ac29,,,EA090,NA,,,, +Ac3,Zambia branch,1900,EA090,6,,,Gray (1999); Murdock (1957), +Ac30,,,EA090,NA,,,, +Ac31,,,EA090,NA,,,, +Ac32,,,EA090,NA,,,, +Ac33,,,EA090,NA,,,, +Ac34,,,EA090,NA,,,, +Ac35,,,EA090,NA,,,, +Ac36,,,EA090,NA,,,, +Ac37,,,EA090,NA,,,, +Ac38,,,EA090,NA,,,, +Ac39,,,EA090,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA090,5,,,Gray (1999); Murdock (1957), +Ac40,,,EA090,NA,,,, +Ac41,,,EA090,NA,,,, +Ac42,,,EA090,NA,,,, +Ac43,,,EA090,NA,,,, +Ac5,,1920,EA090,4,,,Gray (1999); Murdock (1957), +Ac6,,,EA090,NA,,,, +Ac7,,1920,EA090,4,,,Gray (1999); Murdock (1957), +Ac8,,,EA090,NA,,,, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA090,5,,,Gray (1999); Murdock (1957), +Ad1,,,EA090,NA,,,, +Ad10,,,EA090,NA,,,, +Ad11,,,EA090,NA,,,, +Ad12,,,EA090,NA,,,, +Ad13,,,EA090,NA,,,, +Ad14,,,EA090,NA,,,, +Ad15,,,EA090,NA,,,, +Ad16,,,EA090,NA,,,, +Ad17,,,EA090,NA,,,, +Ad18,,,EA090,NA,,,, +Ad19,,,EA090,NA,,,, +Ad2,,1950,EA090,6,,,Gray (1999); Murdock (1957), +Ad20,,,EA090,NA,,,, +Ad21,,,EA090,NA,,,, +Ad22,,,EA090,NA,,,, +Ad23,,,EA090,NA,,,, +Ad24,,,EA090,NA,,,, +Ad25,,,EA090,NA,,,, +Ad26,,,EA090,NA,,,, +Ad27,,,EA090,NA,,,, +Ad28,,,EA090,NA,,,, +Ad29,,,EA090,NA,,,, +Ad3,,1910,EA090,4,,,Gray (1999); Murdock (1957), +Ad30,,,EA090,NA,,,, +Ad31,,,EA090,NA,,,, +Ad32,,,EA090,NA,,,, +Ad33,,,EA090,NA,,,, +Ad34,,,EA090,NA,,,, +Ad35,,,EA090,NA,,,, +Ad36,,,EA090,NA,,,, +Ad37,,,EA090,NA,,,, +Ad38,,,EA090,NA,,,, +Ad39,,,EA090,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ad40,,,EA090,NA,,,, +Ad41,,,EA090,NA,,,, +Ad42,,,EA090,NA,,,, +Ad43,,,EA090,NA,,,, +Ad44,,,EA090,NA,,,, +Ad45,,,EA090,NA,,,, +Ad46,,,EA090,NA,,,, +Ad47,,,EA090,NA,,,, +Ad48,,,EA090,NA,,,, +Ad49,,,EA090,NA,,,, +Ad5,,1940,EA090,2,,,Gray (1999); Murdock (1957), +Ad50,,,EA090,NA,,,, +Ad51,,,EA090,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA090,4,,,Gray (1999); Murdock (1957), +Ad7,Kyaddondo district (V: Kampala),1880,EA090,6,,,Gray (1999); Murdock (1957), +Ad8,with special reference to the northern or Iringa group,1910,EA090,5,,,Gray (1999); Murdock (1957), +Ad9,,,EA090,NA,,,, +Ae1,,,EA090,NA,,,, +Ae10,,,EA090,NA,,,, +Ae11,,,EA090,NA,,,, +Ae12,,,EA090,NA,,,, +Ae13,,,EA090,NA,,,, +Ae14,,,EA090,NA,,,, +Ae15,,,EA090,NA,,,, +Ae16,,,EA090,NA,,,, +Ae17,,,EA090,NA,,,, +Ae18,,,EA090,NA,,,, +Ae19,,,EA090,NA,,,, +Ae2,,1950,EA090,2,,,Gray (1999); Murdock (1957), +Ae20,,,EA090,NA,,,, +Ae21,,,EA090,NA,,,, +Ae22,,,EA090,NA,,,, +Ae23,,,EA090,NA,,,, +Ae24,,,EA090,NA,,,, +Ae25,,,EA090,NA,,,, +Ae26,,,EA090,NA,,,, +Ae27,,,EA090,NA,,,, +Ae28,,,EA090,NA,,,, +Ae29,,,EA090,NA,,,, +Ae3,,1910,EA090,2,,,Gray (1999); Murdock (1957), +Ae30,,,EA090,NA,,,, +Ae31,,,EA090,NA,,,, +Ae32,,,EA090,NA,,,, +Ae33,,,EA090,NA,,,, +Ae34,,,EA090,NA,,,, +Ae35,,,EA090,NA,,,, +Ae36,,,EA090,NA,,,, +Ae37,,,EA090,NA,,,, +Ae38,,,EA090,NA,,,, +Ae39,,,EA090,NA,,,, +Ae4,Ilanga group,1930,EA090,4,,,Gray (1999); Murdock (1957), +Ae40,,,EA090,NA,,,, +Ae41,,,EA090,NA,,,, +Ae42,,,EA090,NA,,,, +Ae43,,,EA090,NA,,,, +Ae44,,,EA090,NA,,,, +Ae45,,,EA090,NA,,,, +Ae46,,,EA090,NA,,,, +Ae47,,,EA090,NA,,,, +Ae48,,,EA090,NA,,,, +Ae49,,,EA090,NA,,,, +Ae5,,,EA090,NA,,,, +Ae50,,,EA090,NA,,,, +Ae51,,,EA090,NA,,,, +Ae52,,,EA090,NA,,,, +Ae53,,,EA090,NA,,,, +Ae54,,,EA090,NA,,,, +Ae55,,,EA090,NA,,,, +Ae56,,,EA090,NA,,,, +Ae57,,,EA090,NA,,,, +Ae58,,,EA090,NA,,,, +Ae59,,,EA090,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA090,5,,,Gray (1999); Murdock (1957), +Ae7,,1910,EA090,4,,,Gray (1999); Murdock (1957), +Ae8,,,EA090,NA,,,, +Ae9,,,EA090,NA,,,, +Af1,City and environs of Abomey,1890,EA090,6,,,Gray (1999); Murdock (1957), +Af10,,,EA090,NA,,,, +Af11,,,EA090,NA,,,, +Af12,,,EA090,NA,,,, +Af13,,,EA090,NA,,,, +Af14,,,EA090,NA,,,, +Af15,,,EA090,NA,,,, +Af16,,,EA090,NA,,,, +Af17,,,EA090,NA,,,, +Af18,,,EA090,NA,,,, +Af19,,,EA090,NA,,,, +Af2,,1950,EA090,4,,,Gray (1999); Murdock (1957), +Af20,,,EA090,NA,,,, +Af21,,,EA090,NA,,,, +Af22,,,EA090,NA,,,, +Af23,,,EA090,NA,,,, +Af24,,,EA090,NA,,,, +Af25,,,EA090,NA,,,, +Af26,,,EA090,NA,,,, +Af27,,,EA090,NA,,,, +Af28,,,EA090,NA,,,, +Af29,,,EA090,NA,,,, +Af3,Kumasi State,1900,EA090,6,,,Gray (1999); Murdock (1957), +Af30,,,EA090,NA,,,, +Af31,,,EA090,NA,,,, +Af32,,,EA090,NA,,,, +Af33,,,EA090,NA,,,, +Af34,,,EA090,NA,,,, +Af35,,,EA090,NA,,,, +Af36,,,EA090,NA,,,, +Af37,,,EA090,NA,,,, +Af38,,,EA090,NA,,,, +Af39,,,EA090,NA,,,, +Af4,,,EA090,NA,,,, +Af40,,,EA090,NA,,,, +Af41,,,EA090,NA,,,, +Af42,,,EA090,NA,,,, +Af43,,,EA090,NA,,,, +Af44,,,EA090,NA,,,, +Af45,,,EA090,NA,,,, +Af46,,,EA090,NA,,,, +Af47,,,EA090,NA,,,, +Af48,,,EA090,NA,,,, +Af49,,,EA090,NA,,,, +Af5,,1930,EA090,5,,,Gray (1999); Murdock (1957), +Af50,,,EA090,NA,,,, +Af51,,,EA090,NA,,,, +Af52,,,EA090,NA,,,, +Af53,,,EA090,NA,,,, +Af54,,,EA090,NA,,,, +Af55,,,EA090,NA,,,, +Af56,,,EA090,NA,,,, +Af57,,,EA090,NA,,,, +Af58,,,EA090,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA090,6,,,Gray (1999); Murdock (1957), +Af7,,1950,EA090,2,,,Gray (1999); Murdock (1957), +Af8,,,EA090,NA,,,, +Af9,,,EA090,NA,,,, +Ag1,,,EA090,NA,,,, +Ag10,,,EA090,NA,,,, +Ag11,,,EA090,NA,,,, +Ag12,,,EA090,NA,,,, +Ag13,,,EA090,NA,,,, +Ag14,,,EA090,NA,,,, +Ag15,,,EA090,NA,,,, +Ag16,,,EA090,NA,,,, +Ag17,,,EA090,NA,,,, +Ag18,,,EA090,NA,,,, +Ag19,,,EA090,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA090,6,,,Gray (1999); Murdock (1957), +Ag20,,,EA090,NA,,,, +Ag21,,,EA090,NA,,,, +Ag22,,,EA090,NA,,,, +Ag23,,,EA090,NA,,,, +Ag24,,,EA090,NA,,,, +Ag25,,,EA090,NA,,,, +Ag26,,,EA090,NA,,,, +Ag27,,,EA090,NA,,,, +Ag28,,,EA090,NA,,,, +Ag29,,,EA090,NA,,,, +Ag3,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ag30,,,EA090,NA,,,, +Ag31,,,EA090,NA,,,, +Ag32,,,EA090,NA,,,, +Ag33,,,EA090,NA,,,, +Ag34,,,EA090,NA,,,, +Ag35,,,EA090,NA,,,, +Ag36,,,EA090,NA,,,, +Ag37,,,EA090,NA,,,, +Ag38,,,EA090,NA,,,, +Ag39,,,EA090,NA,,,, +Ag4,Tallensi Tribe,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ag40,,,EA090,NA,,,, +Ag41,,,EA090,NA,,,, +Ag42,,,EA090,NA,,,, +Ag43,,,EA090,NA,,,, +Ag44,,,EA090,NA,,,, +Ag45,,,EA090,NA,,,, +Ag46,,,EA090,NA,,,, +Ag47,,,EA090,NA,,,, +Ag48,,,EA090,NA,,,, +Ag49,,,EA090,NA,,,, +Ag5,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ag50,,,EA090,NA,,,, +Ag51,,,EA090,NA,,,, +Ag52,,,EA090,NA,,,, +Ag53,,,EA090,NA,,,, +Ag54,,,EA090,NA,,,, +Ag6,,1890,EA090,6,,,Gray (1999); Murdock (1957), +Ag7,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ag8,with special reference to the Coniagui,1910,EA090,4,,,Gray (1999); Murdock (1957), +Ag9,,,EA090,NA,,,, +Ah1,,,EA090,NA,,,, +Ah10,,,EA090,NA,,,, +Ah11,,,EA090,NA,,,, +Ah12,,,EA090,NA,,,, +Ah13,,,EA090,NA,,,, +Ah14,,,EA090,NA,,,, +Ah15,,,EA090,NA,,,, +Ah16,,,EA090,NA,,,, +Ah17,,,EA090,NA,,,, +Ah18,,,EA090,NA,,,, +Ah19,,,EA090,NA,,,, +Ah2,,1920,EA090,5,,,Gray (1999); Murdock (1957), +Ah20,,,EA090,NA,,,, +Ah21,,,EA090,NA,,,, +Ah22,,,EA090,NA,,,, +Ah23,,,EA090,NA,,,, +Ah24,,,EA090,NA,,,, +Ah25,,,EA090,NA,,,, +Ah26,,,EA090,NA,,,, +Ah27,,,EA090,NA,,,, +Ah28,,,EA090,NA,,,, +Ah29,,,EA090,NA,,,, +Ah3,Tar of Benue Province,1920,EA090,4,,,Gray (1999); Murdock (1957), +Ah30,,,EA090,NA,,,, +Ah31,,,EA090,NA,,,, +Ah32,,,EA090,NA,,,, +Ah33,,,EA090,NA,,,, +Ah34,,,EA090,NA,,,, +Ah35,,,EA090,NA,,,, +Ah36,,,EA090,NA,,,, +Ah37,,,EA090,NA,,,, +Ah38,,,EA090,NA,,,, +Ah39,,,EA090,NA,,,, +Ah4,,,EA090,NA,,,, +Ah5,,1930,EA090,5,,,Gray (1999); Murdock (1957), +Ah6,,1920,EA090,1,,,Gray (1999); Murdock (1957), +Ah7,,1940,EA090,2,,,Gray (1999); Murdock (1957), +Ah8,,1910,EA090,4,,,Gray (1999); Murdock (1957), +Ah9,,,EA090,NA,,,, +Ai1,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Ai10,,,EA090,NA,,,, +Ai11,,,EA090,NA,,,, +Ai12,,,EA090,NA,,,, +Ai13,,,EA090,NA,,,, +Ai14,,,EA090,NA,,,, +Ai15,,,EA090,NA,,,, +Ai16,,,EA090,NA,,,, +Ai17,,,EA090,NA,,,, +Ai18,,,EA090,NA,,,, +Ai19,,,EA090,NA,,,, +Ai2,,,EA090,NA,,,, +Ai20,,,EA090,NA,,,, +Ai21,,,EA090,NA,,,, +Ai22,,,EA090,NA,,,, +Ai23,,,EA090,NA,,,, +Ai24,,,EA090,NA,,,, +Ai25,,,EA090,NA,,,, +Ai26,,,EA090,NA,,,, +Ai27,,,EA090,NA,,,, +Ai28,,,EA090,NA,,,, +Ai29,,,EA090,NA,,,, +Ai3,,1920,EA090,5,,,Gray (1999); Murdock (1957), +Ai30,,,EA090,NA,,,, +Ai31,,,EA090,NA,,,, +Ai32,,,EA090,NA,,,, +Ai33,,,EA090,NA,,,, +Ai34,,,EA090,NA,,,, +Ai35,,,EA090,NA,,,, +Ai36,,,EA090,NA,,,, +Ai37,,,EA090,NA,,,, +Ai38,,,EA090,NA,,,, +Ai39,,,EA090,NA,,,, +Ai4,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Ai40,,,EA090,NA,,,, +Ai41,,,EA090,NA,,,, +Ai42,,,EA090,NA,,,, +Ai43,,,EA090,NA,,,, +Ai44,,,EA090,NA,,,, +Ai45,,,EA090,NA,,,, +Ai46,,,EA090,NA,,,, +Ai47,,,EA090,NA,,,, +Ai5,,,EA090,NA,,,, +Ai6,Shilluk Kingdom,1900,EA090,6,,,Gray (1999); Murdock (1957), +Ai7,,1910,EA090,2,,,Gray (1999); Murdock (1957), +Ai8,,1930,EA090,4,,,Gray (1999); Murdock (1957), +Ai9,,,EA090,NA,,,, +Aj1,,,EA090,NA,,,, +Aj10,,,EA090,NA,,,, +Aj11,,,EA090,NA,,,, +Aj12,,,EA090,NA,,,, +Aj13,,,EA090,NA,,,, +Aj14,,,EA090,NA,,,, +Aj15,,,EA090,NA,,,, +Aj16,,,EA090,NA,,,, +Aj17,,,EA090,NA,,,, +Aj18,,,EA090,NA,,,, +Aj19,,,EA090,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA090,3,,,Gray (1999); Murdock (1957), +Aj20,,,EA090,NA,,,, +Aj21,,,EA090,NA,,,, +Aj22,,,EA090,NA,,,, +Aj23,,,EA090,NA,,,, +Aj24,,,EA090,NA,,,, +Aj25,,,EA090,NA,,,, +Aj26,,,EA090,NA,,,, +Aj27,,,EA090,NA,,,, +Aj28,,,EA090,NA,,,, +Aj29,,,EA090,NA,,,, +Aj3,,1930,EA090,3,,,Gray (1999); Murdock (1957), +Aj30,,,EA090,NA,,,, +Aj31,,,EA090,NA,,,, +Aj4,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Aj5,,1920,EA090,1,,,Gray (1999); Murdock (1957), +Aj6,,1940,EA090,2,,,Gray (1999); Murdock (1957), +Aj7,,1910,EA090,3,,,Gray (1999); Murdock (1957), +Aj8,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Aj9,,,EA090,NA,,,, +Ca1,Town of Buso,1930,EA090,4,,,Gray (1999); Murdock (1957), +Ca10,,,EA090,NA,,,, +Ca11,,,EA090,NA,,,, +Ca12,,,EA090,NA,,,, +Ca13,,,EA090,NA,,,, +Ca14,,,EA090,NA,,,, +Ca15,,,EA090,NA,,,, +Ca16,,,EA090,NA,,,, +Ca17,,,EA090,NA,,,, +Ca18,,,EA090,NA,,,, +Ca19,,,EA090,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA090,5,,,Gray (1999); Murdock (1957), +Ca20,,,EA090,NA,,,, +Ca21,,,EA090,NA,,,, +Ca22,,,EA090,NA,,,, +Ca23,,,EA090,NA,,,, +Ca24,,,EA090,NA,,,, +Ca25,,,EA090,NA,,,, +Ca26,,,EA090,NA,,,, +Ca27,,,EA090,NA,,,, +Ca28,,,EA090,NA,,,, +Ca29,,,EA090,NA,,,, +Ca3,,,EA090,NA,,,, +Ca30,,,EA090,NA,,,, +Ca31,,,EA090,NA,,,, +Ca32,,,EA090,NA,,,, +Ca33,,,EA090,NA,,,, +Ca34,,,EA090,NA,,,, +Ca35,,,EA090,NA,,,, +Ca36,,,EA090,NA,,,, +Ca37,,,EA090,NA,,,, +Ca38,,,EA090,NA,,,, +Ca39,,,EA090,NA,,,, +Ca4,,1950,EA090,2,,,Gray (1999); Murdock (1957), +Ca40,,,EA090,NA,,,, +Ca41,,,EA090,NA,,,, +Ca42,,,EA090,NA,,,, +Ca43,,,EA090,NA,,,, +Ca5,,1930,EA090,4,,,Gray (1999); Murdock (1957), +Ca6,,,EA090,NA,,,, +Ca7,,,EA090,NA,,,, +Ca8,,,EA090,NA,,,, +Ca9,,,EA090,NA,,,, +Cb1,,1940,EA090,6,,,Gray (1999); Murdock (1957), +Cb10,,,EA090,NA,,,, +Cb11,,,EA090,NA,,,, +Cb12,,,EA090,NA,,,, +Cb13,,,EA090,NA,,,, +Cb14,,,EA090,NA,,,, +Cb15,,,EA090,NA,,,, +Cb16,,,EA090,NA,,,, +Cb17,,,EA090,NA,,,, +Cb18,,,EA090,NA,,,, +Cb19,,,EA090,NA,,,, +Cb2,Upper and lower Salum in Gambia,1950,EA090,6,,,Gray (1999); Murdock (1957), +Cb20,,,EA090,NA,,,, +Cb21,,,EA090,NA,,,, +Cb22,,,EA090,NA,,,, +Cb23,,,EA090,NA,,,, +Cb24,,,EA090,NA,,,, +Cb25,,,EA090,NA,,,, +Cb26,,,EA090,NA,,,, +Cb27,,,EA090,NA,,,, +Cb28,,,EA090,NA,,,, +Cb29,,,EA090,NA,,,, +Cb3,Bamba division,1940,EA090,5,,,Gray (1999); Murdock (1957), +Cb4,,,EA090,NA,,,, +Cb5,,1910,EA090,2,,,Gray (1999); Murdock (1957), +Cb6,,,EA090,NA,,,, +Cb7,,,EA090,NA,,,, +Cb8,,,EA090,NA,,,, +Cb9,,,EA090,NA,,,, +Cc1,,,EA090,NA,,,, +Cc10,,,EA090,NA,,,, +Cc11,,,EA090,NA,,,, +Cc12,,,EA090,NA,,,, +Cc13,,,EA090,NA,,,, +Cc14,,,EA090,NA,,,, +Cc15,,,EA090,NA,,,, +Cc16,,,EA090,NA,,,, +Cc17,,,EA090,NA,,,, +Cc18,,,EA090,NA,,,, +Cc19,,,EA090,NA,,,, +Cc2,Nomads of Tibesti,1950,EA090,3,,,Gray (1999); Murdock (1957), +Cc20,,,EA090,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA090,4,,,Gray (1999); Murdock (1957), +Cc4,,1920,EA090,4,,,Gray (1999); Murdock (1957), +Cc5,,,EA090,NA,,,, +Cc6,,,EA090,NA,,,, +Cc7,,,EA090,NA,,,, +Cc8,,,EA090,NA,,,, +Cc9,,,EA090,NA,,,, +Cd1,Kenuzi Nubians of Dahmit,1920,EA090,8,,,Gray (1999); Murdock (1957), +Cd10,,,EA090,NA,,,, +Cd11,,,EA090,NA,,,, +Cd12,,,EA090,NA,,,, +Cd13,,,EA090,NA,,,, +Cd14,,,EA090,NA,,,, +Cd15,,,EA090,NA,,,, +Cd16,,,EA090,NA,,,, +Cd17,,,EA090,NA,,,, +Cd18,,,EA090,NA,,,, +Cd19,,,EA090,NA,,,, +Cd2,Town and environs of Silwa,1950,EA090,6,,,Gray (1999); Murdock (1957), +Cd20,,,EA090,NA,,,, +Cd21,,,EA090,NA,,,, +Cd3,Entirety: Moroccan,1920,EA090,4,,,Gray (1999); Murdock (1957), +Cd4,,1890,EA090,5,,,Gray (1999); Murdock (1957), +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA090,4,,,Gray (1999); Murdock (1957), +Cd6,,,EA090,NA,,,, +Cd7,,,EA090,NA,,,, +Cd8,,,EA090,NA,,,, +Cd9,,,EA090,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA090,4,,,Gray (1999); Murdock (1957), +Ce2,,,EA090,NA,,,, +Ce3,City and environs of Rome,100,EA090,6,,,Gray (1999); Murdock (1957), +Ce4,Labourd,1930,EA090,8,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,,,EA090,NA,,,, +Ce6,,,EA090,NA,,,, +Ce7,,,EA090,NA,,,, +Ce8,,,EA090,NA,,,, +Cf1,Small City in Connecticut,1920,EA090,6,,,Gray (1999); Murdock (1957), +Cf2,of the Transvaal,1850,EA090,5,,,Gray (1999); Murdock (1957), +Cf3,,,EA090,NA,,,, +Cf4,with special reference to the village of Cruz das Almas near Sao Paulo,1940,EA090,8,,,Gray (1999); Murdock (1957), +Cf5,,,EA090,NA,,,, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA090,6,,,Gray (1999); Murdock (1957), +Cg2,,1100,EA090,5,,,Gray (1999); Murdock (1957), +Cg3,County Clare,1930,EA090,6,,,Gray (1999); Murdock (1957), +Cg4,Konkama District,1950,EA090,2,,,Gray (1999); Murdock (1957), +Cg5,,,EA090,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA090,6,,,Gray (1999); Murdock (1957), +Ch10,,,EA090,NA,,,, +Ch11,,,EA090,NA,,,, +Ch2,,1890,EA090,8,,,Gray (1999); Murdock (1957), +Ch3,with special reference to the Hana district of central Moravia,1940,EA090,6,,,Gray (1999); Murdock (1957), +Ch4,,1900,EA090,8,,,Gray (1999); Murdock (1957), +Ch5,with special reference to the village of Dragelevtsy,1940,EA090,6,,,Gray (1999); Murdock (1957), +Ch6,,,EA090,NA,,,, +Ch7,,,EA090,NA,,,, +Ch8,,,EA090,NA,,,, +Ch9,,,EA090,NA,,,, +Ci1,with special reference to the Baga Dorbed group,1920,EA090,5,,,Gray (1999); Murdock (1957), +Ci10,,,EA090,NA,,,, +Ci11,,,EA090,NA,,,, +Ci12,,,EA090,NA,,,, +Ci2,,,EA090,NA,,,, +Ci3,,,EA090,NA,,,, +Ci4,,1920,EA090,4,,,Gray (1999); Murdock (1957), +Ci5,,,EA090,NA,,,, +Ci6,,,EA090,NA,,,, +Ci7,,,EA090,NA,,,, +Ci8,,,EA090,NA,,,, +Ci9,,,EA090,NA,,,, +Cj1,,,EA090,NA,,,, +Cj10,,,EA090,NA,,,, +Cj2,Unspecified,1920,EA090,5,,,Gray (1999); Murdock (1957), +Cj3,,-800,EA090,6,,,Gray (1999); Murdock (1957), +Cj4,,,EA090,NA,,,, +Cj5,,,EA090,NA,,,, +Cj6,,,EA090,NA,,,, +Cj7,,,EA090,NA,,,, +Cj8,,,EA090,NA,,,, +Cj9,,,EA090,NA,,,, +Ea1,,1950,EA090,8,,,Gray (1999); Murdock (1957), +Ea10,,,EA090,NA,,,, +Ea11,,,EA090,NA,,,, +Ea12,,,EA090,NA,,,, +Ea13,,,EA090,NA,,,, +Ea2,,,EA090,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA090,4,,,Gray (1999); Murdock (1957), +Ea4,,,EA090,NA,,,, +Ea5,,1890,EA090,4,,,Gray (1999); Murdock (1957), +Ea6,,,EA090,NA,,,, +Ea7,,,EA090,NA,,,, +Ea8,,,EA090,NA,,,, +Ea9,,,EA090,NA,,,, +Eb1,Great Horde,1910,EA090,6,,,Gray (1999); Murdock (1957), +Eb2,,1920,EA090,4,,,Gray (1999); Murdock (1957), +Eb3,Narobanchin Territory,1940,EA090,5,,,Gray (1999); Murdock (1957), +Eb4,with special reference to the Botaha area,1940,EA090,8,,,Gray (1999); Murdock (1957), +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA090,5,,,Gray (1999); Murdock (1957), +Eb6,with special reference to those southeast of Lake Baikal,1900,EA090,4,,,Gray (1999); Murdock (1957), +Eb7,,,EA090,NA,,,, +Eb8,,,EA090,NA,,,, +Ec1,Sakhalin Island,1920,EA090,1,,,Gray (1999); Murdock (1957), +Ec10,,,EA090,NA,,,, +Ec11,,,EA090,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA090,5,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA090,2,,,Gray (1999); Murdock (1957), +Ec4,Yurak Tribe,1900,EA090,2,,,Gray (1999); Murdock (1957), +Ec5,with special reference to the Maritime Koryak,1900,EA090,2,,,Gray (1999); Murdock (1957), +Ec6,Upper Kolyma River,1850,EA090,2,,,Gray (1999); Murdock (1957), +Ec7,Saru Basin in Hokkaido,1900,EA090,8,,,Gray (1999); Murdock (1957), +Ec8,,1900,EA090,1,,,Gray (1999); Murdock (1957), +Ec9,,,EA090,NA,,,, +Ed1,Kanghwa Island,1950,EA090,6,,,Gray (1999); Murdock (1957), +Ed10,,,EA090,NA,,,, +Ed13,,,EA090,NA,,,, +Ed14,,,EA090,NA,,,, +Ed15a,,,EA090,NA,,,, +Ed15b,,,EA090,NA,,,, +Ed16,,,EA090,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA090,2,,,Gray (1999); Murdock (1957), +Ed3,Aigun District,1920,EA090,8,,,Gray (1999); Murdock (1957), +Ed4,,,EA090,NA,,,, +Ed5,Okayama,1950,EA090,6,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA090,NA,,,, +Ed7,,1950,EA090,4,,,Gray (1999); Murdock (1957), +Ed8,,1930,EA090,8,,,Gray (1999); Murdock (1957), +Ed9,,,EA090,NA,,,, +Ee1,,1940,EA090,2,,,Gray (1999); Murdock (1957), +Ee2,Hunza State,1930,EA090,5,,,Gray (1999); Murdock (1957), +Ee3,Lingthem and vicinity,1930,EA090,8,,,Gray (1999); Murdock (1957), +Ee4,with special reference to Central Tibet,1920,EA090,6,,,Gray (1999); Murdock (1957), +Ee5,with special reference to the Shina tribe,1870,EA090,5,,,Gray (1999); Murdock (1957), +Ee6,,,EA090,NA,,,, +Ee7,,,EA090,NA,,,, +Ee8,,,EA090,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA090,4,,,Gray (1999); Murdock (1957), +Ef10,,,EA090,NA,,,, +Ef11,,,EA090,NA,,,, +Ef2,with special reference t the Western or Hindu Bengali,1940,EA090,8,,,Gray (1999); Murdock (1957), +Ef3,,-800,EA090,6,,,Gray (1999); Murdock (1957), +Ef4,,1920,EA090,6,,,Gray (1999); Murdock (1957), +Ef5,,1900,EA090,8,,,Gray (1999); Murdock (1957), +Ef6,,1940,EA090,4,,,Gray (1999); Murdock (1957), +Ef7,,,EA090,NA,,,, +Ef8,,,EA090,NA,,,, +Ef9,,,EA090,NA,,,, +Eg1,with special reference to the forest group,1940,EA090,2,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,,,EA090,NA,,,, +Eg11,,,EA090,NA,,,, +Eg12,,,EA090,NA,,,, +Eg13,,,EA090,NA,,,, +Eg14,,,EA090,NA,,,, +Eg2,with special reference to the agricultural castes in Tanjore,1880,EA090,8,,,Gray (1999); Murdock (1957), +Eg3,Hill Maria,1938,EA090,4,,,Gray (1999); Murdock (1957), +Eg4,Toda Tribe,1900,EA090,2,,,Gray (1999); Murdock (1957), +Eg5,,1930,EA090,6,,,Gray (1999); Murdock (1957), +Eg6,with special reference to Northern Kerala,1799,EA090,6,,,Gray (1999); Murdock (1957), +Eg7,,,EA090,NA,,,, +Eg8,,1940,EA090,8,,,Gray (1999); Murdock (1957), +Eg9,,,EA090,NA,,,, +Eh1,,1870,EA090,1,,,Gray (1999); Murdock (1957), +Eh10,,,EA090,NA,,,, +Eh2,,1900,EA090,6,,,Gray (1999); Murdock (1957), +Eh3,Menabe subtribe,1930,EA090,4,,,Gray (1999); Murdock (1957), +Eh4,with special reference to the Rock Vedda,1900,EA090,2,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eh5,Car Nicobar of North Islands,1890,EA090,2,,,Gray (1999); Murdock (1957), +Eh6,with special reference to the Kandyan Sinhalese,1950,EA090,6,,,Gray (1999); Murdock (1957), +Eh7,,,EA090,NA,,,, +Eh8,,,EA090,NA,,,, +Eh9,,,EA090,NA,,,, +Ei1,Rengsanggr,1900,EA090,4,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA090,NA,,,, +Ei11,,,EA090,NA,,,, +Ei12,,,EA090,NA,,,, +Ei13,,,EA090,NA,,,, +Ei14,,,EA090,NA,,,, +Ei15,,,EA090,NA,,,, +Ei16,,,EA090,NA,,,, +Ei17,,,EA090,NA,,,, +Ei18,,,EA090,NA,,,, +Ei19,,,EA090,NA,,,, +Ei2,,,EA090,NA,,,, +Ei20,,,EA090,NA,,,, +Ei3,Nondwin Village,1950,EA090,6,,,Gray (1999); Murdock (1957), +Ei4,Lakher Tribe,1930,EA090,4,,,Gray (1999); Murdock (1957), +Ei5,with special reference to the Jinghpaw,1940,EA090,4,,,Gray (1999); Murdock (1957), +Ei6,,,EA090,NA,,,, +Ei7,,,EA090,NA,,,, +Ei8,with special reference to those of the Jaintia Hills,1900,EA090,4,,,Gray (1999); Murdock (1957), +Ei9,,,EA090,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA090,2,,,Gray (1999); Murdock (1957), +Ej10,,,EA090,NA,,,, +Ej11,,,EA090,NA,,,, +Ej12,,,EA090,NA,,,, +Ej13,,,EA090,NA,,,, +Ej14,,,EA090,NA,,,, +Ej15,,,EA090,NA,,,, +Ej16,,,EA090,NA,,,, +Ej2,,,EA090,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA090,1,,,Gray (1999); Murdock (1957), +Ej4,Red River Delta in Tonkin,1950,EA090,6,,,Gray (1999); Murdock (1957), +Ej5,,1950,EA090,6,,,Gray (1999); Murdock (1957), +Ej6,of the Mergui Archipelago,1920,EA090,1,,,Gray (1999); Murdock (1957), +Ej7,,1950,EA090,2,,,Gray (1999); Murdock (1957), +Ej8,with special reference to those of Trengganu,1940,EA090,6,,,Gray (1999); Murdock (1957), +Ej9,,1940,EA090,6,,,Gray (1999); Murdock (1957), +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA090,2,,,Gray (1999); Murdock (1957), +Ia10,,,EA090,NA,,,, +Ia11,,,EA090,NA,,,, +Ia12,,,EA090,NA,,,, +Ia13,,,EA090,NA,,,, +Ia14,,,EA090,NA,,,, +Ia15,,,EA090,NA,,,, +Ia16,,,EA090,NA,,,, +Ia17,,,EA090,NA,,,, +Ia18,,,EA090,NA,,,, +Ia2,,,EA090,NA,,,, +Ia3,Kiangan Group,1920,EA090,1,,,Gray (1999); Murdock (1957), +Ia4,with special reference to the Eastern Subanun,1950,EA090,1,,,Gray (1999); Murdock (1957), +Ia5,,1950,EA090,1,,,Gray (1999); Murdock (1957), +Ia6,,,EA090,NA,,,, +Ia7,,1950,EA090,3,,,Gray (1999); Murdock (1957), +Ia8,,,EA090,NA,,,, +Ia9,,,EA090,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA090,2,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA090,6,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA090,6,,,Gray (1999); Murdock (1957), +Ib4,with special reference to the Toba group,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ib5,with special reference to the village of Sensuron,1920,EA090,4,,,Gray (1999); Murdock (1957), +Ib6,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Ib7,with special reference to those of North Pageh,1920,EA090,1,,,Gray (1999); Murdock (1957), +Ib8,,,EA090,NA,,,, +Ib9,,,EA090,NA,,,, +Ic1,Borongloe,1940,EA090,5,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA090,NA,,,, +Ic11,,,EA090,NA,,,, +Ic12,,,EA090,NA,,,, +Ic13,,,EA090,NA,,,, +Ic2,Abui of Atimelang Village,1940,EA090,2,,,Gray (1999); Murdock (1957), +Ic3,with special reference to the Mountain Belu,1950,EA090,4,,,Gray (1999); Murdock (1957), +Ic4,,1920,EA090,4,,,Gray (1999); Murdock (1957), +Ic5,Bare'e subgroup,1910,EA090,2,,,Gray (1999); Murdock (1957), +Ic6,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ic7,,,EA090,NA,,,, +Ic8,,,EA090,NA,,,, +Ic9,,,EA090,NA,,,, +Id1,Alice Springs and environs,1900,EA090,2,,,Gray (1999); Murdock (1957), +Id10,,,EA090,NA,,,, +Id11,,,EA090,NA,,,, +Id12,,,EA090,NA,,,, +Id13,,,EA090,NA,,,, +Id2,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Id3,Tiwi Tribe: Melville Island,1920,EA090,2,,,Gray (1999); Murdock (1957), +Id4,,1900,EA090,2,,,Gray (1999); Murdock (1957), +Id5,,1910,EA090,2,,,Gray (1999); Murdock (1957), +Id6,,,EA090,NA,,,, +Id7,,,EA090,NA,,,, +Id8,,,EA090,NA,,,, +Id9,,,EA090,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA090,3,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,,,EA090,NA,,,, +Ie11,,,EA090,NA,,,, +Ie12,,,EA090,NA,,,, +Ie13,,,EA090,NA,,,, +Ie14,,,EA090,NA,,,, +Ie15,,,EA090,NA,,,, +Ie16,,,EA090,NA,,,, +Ie17,,,EA090,NA,,,, +Ie18,,,EA090,NA,,,, +Ie19,,,EA090,NA,,,, +Ie2,,,EA090,NA,,,, +Ie20,,,EA090,NA,,,, +Ie21,,,EA090,NA,,,, +Ie22,,,EA090,NA,,,, +Ie23,,,EA090,NA,,,, +Ie24,,,EA090,NA,,,, +Ie25,,,EA090,NA,,,, +Ie26,,,EA090,NA,,,, +Ie27,,,EA090,NA,,,, +Ie28,,,EA090,NA,,,, +Ie29,,,EA090,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA090,1,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA090,NA,,,, +Ie31,,,EA090,NA,,,, +Ie32,,,EA090,NA,,,, +Ie33,,,EA090,NA,,,, +Ie34,,,EA090,NA,,,, +Ie35,,,EA090,NA,,,, +Ie36,,,EA090,NA,,,, +Ie37,,,EA090,NA,,,, +Ie38,,,EA090,NA,,,, +Ie39,,,EA090,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA090,1,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ie6,,1930,EA090,1,,,Gray (1999); Murdock (1957), +Ie7,,,EA090,NA,,,, +Ie8,,,EA090,NA,,,, +Ie9,,,EA090,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA090,4,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA090,NA,,,, +If11,,,EA090,NA,,,, +If12,,,EA090,NA,,,, +If13,,,EA090,NA,,,, +If14,,,EA090,NA,,,, +If15,,,EA090,NA,,,, +If16,,,EA090,NA,,,, +If17,,,EA090,NA,,,, +If2,Romonum Island,1940,EA090,2,,,Gray (1999); Murdock (1957), +If3,With special reference to the inhabitants of Majuro,1940,EA090,8,,,Gray (1999); Murdock (1957), +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA090,2,,,Gray (1999); Murdock (1957), +If5,,1910,EA090,4,,,Gray (1999); Murdock (1957), +If6,Island,1910,EA090,4,,,Gray (1999); Murdock (1957), +If7,with special reference to the inhabitants of Onotoa,1940,EA090,2,,,Gray (1999); Murdock (1957), +If8,,,EA090,NA,,,, +If9,,,EA090,NA,,,, +Ig1,Northeastern group,1940,EA090,2,,,Gray (1999); Murdock (1957), +Ig10,,,EA090,NA,,,, +Ig11,,,EA090,NA,,,, +Ig12,,,EA090,NA,,,, +Ig13,,,EA090,NA,,,, +Ig14,,,EA090,NA,,,, +Ig15,,,EA090,NA,,,, +Ig16,,,EA090,NA,,,, +Ig17,,,EA090,NA,,,, +Ig18,,,EA090,NA,,,, +Ig19,,,EA090,NA,,,, +Ig2,Kiriwina Island,1910,EA090,4,,,Gray (1999); Murdock (1957), +Ig20,,,EA090,NA,,,, +Ig21,,,EA090,NA,,,, +Ig3,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ig4,Lesu Village,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ig5,,1920,EA090,1,,,Gray (1999); Murdock (1957), +Ig6,,1900,EA090,2,,,Gray (1999); Murdock (1957), +Ig7,,1950,EA090,1,,,Gray (1999); Murdock (1957), +Ig8,,,EA090,NA,,,, +Ig9,Peri Village,1920,EA090,2,,,Gray (1999); Murdock (1957), +Ih1,,1890,EA090,2,,,Gray (1999); Murdock (1957), +Ih10,,,EA090,NA,,,, +Ih11,,,EA090,NA,,,, +Ih12,,,EA090,NA,,,, +Ih13,,,EA090,NA,,,, +Ih14,,,EA090,NA,,,, +Ih2,Malekula Island,1930,EA090,4,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA090,NA,,,, +Ih4,Lau Island,1920,EA090,4,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA090,4,,,Gray (1999); Murdock (1957), +Ih6,,1890,EA090,4,,,Gray (1999); Murdock (1957), +Ih7,,1910,EA090,4,,,Gray (1999); Murdock (1957), +Ih8,,,EA090,NA,,,, +Ih9,,,EA090,NA,,,, +Ii1,with special reference to American Samoa,1920,EA090,4,,,Gray (1999); Murdock (1957), +Ii10,,,EA090,NA,,,, +Ii12,,,EA090,NA,,,, +Ii13,,,EA090,NA,,,, +Ii14,,,EA090,NA,,,, +Ii2,Ravenga District,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ii3,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ii4,with special reference to the inhabitants of Vaitupu,1890,EA090,4,,,Gray (1999); Murdock (1957), +Ii5,"Leuenuwa, Lord Howe's Islanders",1920,EA090,2,,,Gray (1999); Murdock (1957), +Ii6,with special reference to Atafu,1900,EA090,4,,,Gray (1999); Murdock (1957), +Ii7,,,EA090,NA,,,, +Ii8,,,EA090,NA,,,, +Ii9,,,EA090,NA,,,, +Ij1,,1820,EA090,4,,,Gray (1999); Murdock (1957), +Ij10,,,EA090,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA090,4,,,Gray (1999); Murdock (1957), +Ij3,,1900,EA090,4,,,Gray (1999); Murdock (1957), +Ij4,,1850,EA090,2,,,Gray (1999); Murdock (1957), +Ij5,,1900,EA090,2,,,Gray (1999); Murdock (1957), +Ij6,,1800,EA090,5,,,Gray (1999); Murdock (1957), +Ij7,,,EA090,NA,,,, +Ij8,,,EA090,NA,,,, +Ij9,,,EA090,NA,,,, +Na1,,,EA090,NA,,,, +Na10,,,EA090,NA,,,, +Na11,,,EA090,NA,,,, +Na12,,,EA090,NA,,,, +Na13,,,EA090,NA,,,, +Na14,,,EA090,NA,,,, +Na15,,,EA090,NA,,,, +Na16,,,EA090,NA,,,, +Na17,,,EA090,NA,,,, +Na19,,,EA090,NA,,,, +Na2,,,EA090,NA,,,, +Na20,,,EA090,NA,,,, +Na21,,,EA090,NA,,,, +Na22,,,EA090,NA,,,, +Na23,,,EA090,NA,,,, +Na24,,,EA090,NA,,,, +Na25,,,EA090,NA,,,, +Na26,,,EA090,NA,,,, +Na27,,,EA090,NA,,,, +Na28,,,EA090,NA,,,, +Na29,,,EA090,NA,,,, +Na3,,,EA090,NA,,,, +Na30,,,EA090,NA,,,, +Na31,,,EA090,NA,,,, +Na32,,,EA090,NA,,,, +Na33,,,EA090,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA090,2,,,Gray (1999); Murdock (1957), +Na35,,,EA090,NA,,,, +Na36,,,EA090,NA,,,, +Na37,,,EA090,NA,,,, +Na38,,,EA090,NA,,,, +Na39,,,EA090,NA,,,, +Na4,Upper Liard and Dease River Group,1920,EA090,1,,,Gray (1999); Murdock (1957), +Na40,,,EA090,NA,,,, +Na41,,,EA090,NA,,,, +Na42,,,EA090,NA,,,, +Na43,,,EA090,NA,,,, +Na44,,,EA090,NA,,,, +Na45,,,EA090,NA,,,, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA090,2,,,Gray (1999); Murdock (1957), +Na6,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA090,2,,,Gray (1999); Murdock (1957), +Na8,,,EA090,NA,,,, +Na9,,,EA090,NA,,,, +Nb1,Masset Town,1890,EA090,2,,,Gray (1999); Murdock (1957), +Nb10,,,EA090,NA,,,, +Nb11,,,EA090,NA,,,, +Nb12,,,EA090,NA,,,, +Nb13,,,EA090,NA,,,, +Nb14,,,EA090,NA,,,, +Nb15,,,EA090,NA,,,, +Nb16,,,EA090,NA,,,, +Nb17,,,EA090,NA,,,, +Nb18,,,EA090,NA,,,, +Nb19,,,EA090,NA,,,, +Nb2,,,EA090,NA,,,, +Nb20,,,EA090,NA,,,, +Nb21,,,EA090,NA,,,, +Nb22,,,EA090,NA,,,, +Nb23,,,EA090,NA,,,, +Nb24,,,EA090,NA,,,, +Nb25,,,EA090,NA,,,, +Nb26,,,EA090,NA,,,, +Nb27,,,EA090,NA,,,, +Nb28,,,EA090,NA,,,, +Nb29,,,EA090,NA,,,, +Nb3,,,EA090,NA,,,, +Nb30,,,EA090,NA,,,, +Nb31,,,EA090,NA,,,, +Nb32,,,EA090,NA,,,, +Nb33,,,EA090,NA,,,, +Nb34,,,EA090,NA,,,, +Nb35,,,EA090,NA,,,, +Nb36,,,EA090,NA,,,, +Nb37,,,EA090,NA,,,, +Nb38,,,EA090,NA,,,, +Nb39,,,EA090,NA,,,, +Nb4,,1850,EA090,1,,,Gray (1999); Murdock (1957), +Nb5,,,EA090,NA,,,, +Nb6,,1870,EA090,2,,,Gray (1999); Murdock (1957), +Nb7,,,EA090,NA,,,, +Nb8,,,EA090,NA,,,, +Nb9,,,EA090,NA,,,, +Nc1,,1850,EA090,2,,,Gray (1999); Murdock (1957), +Nc10,,,EA090,NA,,,, +Nc11,,,EA090,NA,,,, +Nc12,,,EA090,NA,,,, +Nc13,,,EA090,NA,,,, +Nc14,,,EA090,NA,,,, +Nc15,,,EA090,NA,,,, +Nc16,,,EA090,NA,,,, +Nc17,,,EA090,NA,,,, +Nc18,,,EA090,NA,,,, +Nc19,,,EA090,NA,,,, +Nc2,,1850,EA090,2,,,Gray (1999); Murdock (1957), +Nc20,,,EA090,NA,,,, +Nc21,,,EA090,NA,,,, +Nc22,,,EA090,NA,,,, +Nc23,,,EA090,NA,,,, +Nc24,,,EA090,NA,,,, +Nc25,,,EA090,NA,,,, +Nc26,,,EA090,NA,,,, +Nc27,,,EA090,NA,,,, +Nc28,,,EA090,NA,,,, +Nc29,,,EA090,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA090,2,,,Gray (1999); Murdock (1957), +Nc30,,,EA090,NA,,,, +Nc31,,,EA090,NA,,,, +Nc32,,,EA090,NA,,,, +Nc33,,,EA090,NA,,,, +Nc34,,,EA090,NA,,,, +Nc4,,1860,EA090,2,,,Gray (1999); Murdock (1957), +Nc5,with special reference to the Central Sierra group,1850,EA090,2,,,Gray (1999); Murdock (1957), +Nc6,with special reference to the Southern Diegueno,1850,EA090,2,,,Gray (1999); Murdock (1957), +Nc7,,1850,EA090,2,,,Gray (1999); Murdock (1957), +Nc8,,,EA090,NA,,,, +Nc9,,,EA090,NA,,,, +Nd1,,1850,EA090,3,,,Gray (1999); Murdock (1957), +Nd10,,,EA090,NA,,,, +Nd11,,,EA090,NA,,,, +Nd12,,,EA090,NA,,,, +Nd13,,,EA090,NA,,,, +Nd14,,,EA090,NA,,,, +Nd15,,,EA090,NA,,,, +Nd16,,,EA090,NA,,,, +Nd17,,,EA090,NA,,,, +Nd18,,,EA090,NA,,,, +Nd19,,,EA090,NA,,,, +Nd2,,1860,EA090,2,,,Gray (1999); Murdock (1957), +Nd20,,,EA090,NA,,,, +Nd21,,,EA090,NA,,,, +Nd22,,,EA090,NA,,,, +Nd23,,,EA090,NA,,,, +Nd24,,,EA090,NA,,,, +Nd25,,,EA090,NA,,,, +Nd26,,,EA090,NA,,,, +Nd27,,,EA090,NA,,,, +Nd28,,,EA090,NA,,,, +Nd29,,,EA090,NA,,,, +Nd3,Havasupai Tribe,1870,EA090,2,,,Gray (1999); Murdock (1957), +Nd30,,,EA090,NA,,,, +Nd31,,,EA090,NA,,,, +Nd32,,,EA090,NA,,,, +Nd33,,,EA090,NA,,,, +Nd34,,,EA090,NA,,,, +Nd35,,,EA090,NA,,,, +Nd36,,,EA090,NA,,,, +Nd37,,,EA090,NA,,,, +Nd38,,,EA090,NA,,,, +Nd39,,,EA090,NA,,,, +Nd4,,,EA090,NA,,,, +Nd40,,,EA090,NA,,,, +Nd41,,,EA090,NA,,,, +Nd42,,,EA090,NA,,,, +Nd43,,,EA090,NA,,,, +Nd44,,,EA090,NA,,,, +Nd45,,,EA090,NA,,,, +Nd46,,,EA090,NA,,,, +Nd47,,,EA090,NA,,,, +Nd48,,,EA090,NA,,,, +Nd49,,,EA090,NA,,,, +Nd5,,1870,EA090,2,,,Gray (1999); Murdock (1957), +Nd50,,,EA090,NA,,,, +Nd51,,,EA090,NA,,,, +Nd52,,,EA090,NA,,,, +Nd53,,,EA090,NA,,,, +Nd54,,,EA090,NA,,,, +Nd55,,,EA090,NA,,,, +Nd56,,,EA090,NA,,,, +Nd57,,,EA090,NA,,,, +Nd58,,,EA090,NA,,,, +Nd59,,,EA090,NA,,,, +Nd6,,1850,EA090,2,,,Gray (1999); Murdock (1957), +Nd60,,,EA090,NA,,,, +Nd61,,,EA090,NA,,,, +Nd62,,,EA090,NA,,,, +Nd63,,,EA090,NA,,,, +Nd64,,,EA090,NA,,,, +Nd65,,,EA090,NA,,,, +Nd66,,,EA090,NA,,,, +Nd67,,,EA090,NA,,,, +Nd7,Lower or eastern branch,1880,EA090,2,,,Gray (1999); Murdock (1957), +Nd8,,,EA090,NA,,,, +Nd9,,,EA090,NA,,,, +Ne1,Gros Ventre Tribe,1880,EA090,4,,,Gray (1999); Murdock (1957), +Ne10,,,EA090,NA,,,, +Ne11,,,EA090,NA,,,, +Ne12,,,EA090,NA,,,, +Ne13,,,EA090,NA,,,, +Ne14,,,EA090,NA,,,, +Ne15,,,EA090,NA,,,, +Ne16,,,EA090,NA,,,, +Ne17,,,EA090,NA,,,, +Ne18,,,EA090,NA,,,, +Ne19,,,EA090,NA,,,, +Ne2,,1870,EA090,4,,,Gray (1999); Murdock (1957), +Ne20,,,EA090,NA,,,, +Ne21,,,EA090,NA,,,, +Ne3,Comanche Tribe,1870,EA090,3,,,Gray (1999); Murdock (1957), +Ne4,,1870,EA090,4,,,Gray (1999); Murdock (1957), +Ne5,,1860,EA090,4,,,Gray (1999); Murdock (1957), +Ne6,,1830,EA090,4,,,Gray (1999); Murdock (1957), +Ne7,,1880,EA090,4,,,Gray (1999); Murdock (1957), +Ne8,,1870,EA090,3,,,Gray (1999); Murdock (1957), +Ne9,,,EA090,NA,,,, +Nf10,,,EA090,NA,,,, +Nf11,,,EA090,NA,,,, +Nf12,,,EA090,NA,,,, +Nf13,,,EA090,NA,,,, +Nf14,,,EA090,NA,,,, +Nf15,,,EA090,NA,,,, +Nf2,,1850,EA090,4,,,Gray (1999); Murdock (1957), +Nf3,Omaha Tribe,1850,EA090,4,,,Gray (1999); Murdock (1957), +Nf4,,1720,EA090,4,,,Gray (1999); Murdock (1957), +Nf5,,1860,EA090,4,,,Gray (1999); Murdock (1957), +Nf6,Skidi Band or subtribe,1867,EA090,4,,,Gray (1999); Murdock (1957), +Nf7,Tama Reservation,1830,EA090,4,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA090,4,,,Gray (1999); Murdock (1957), +Nf9,,,EA090,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA090,4,,,Gray (1999); Murdock (1957), +Ng10,,,EA090,NA,,,, +Ng11,,,EA090,NA,,,, +Ng12,,,EA090,NA,,,, +Ng13,,,EA090,NA,,,, +Ng14,,,EA090,NA,,,, +Ng15,,,EA090,NA,,,, +Ng2,,,EA090,NA,,,, +Ng3,Upper division in Alabama,1750,EA090,5,,,Gray (1999); Murdock (1957), +Ng4,,1900,EA090,4,,,Gray (1999); Murdock (1957), +Ng5,,1750,EA090,5,,,Gray (1999); Murdock (1957), +Ng6,with special reference to the Munsee,1700,EA090,2,,,Gray (1999); Murdock (1957), +Ng7,Natchez Kingdom,1700,EA090,4,,,Gray (1999); Murdock (1957), +Ng8,,1560,EA090,4,,,Gray (1999); Murdock (1957), +Ng9,,,EA090,NA,,,, +Nh1,Central band,1880,EA090,2,,,Gray (1999); Murdock (1957), +Nh10,,,EA090,NA,,,, +Nh11,,,EA090,NA,,,, +Nh12,,,EA090,NA,,,, +Nh13,,,EA090,NA,,,, +Nh14,,,EA090,NA,,,, +Nh15,,,EA090,NA,,,, +Nh16,,,EA090,NA,,,, +Nh17,,,EA090,NA,,,, +Nh18,,,EA090,NA,,,, +Nh19,,,EA090,NA,,,, +Nh2,,,EA090,NA,,,, +Nh20,,,EA090,NA,,,, +Nh21,,,EA090,NA,,,, +Nh22,,,EA090,NA,,,, +Nh23,,,EA090,NA,,,, +Nh24,,,EA090,NA,,,, +Nh25,,,EA090,NA,,,, +Nh26,,,EA090,NA,,,, +Nh27,,,EA090,NA,,,, +Nh3,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Nh4,Pueblo,1910,EA090,2,,,Gray (1999); Murdock (1957), +Nh5,,1850,EA090,4,,,Gray (1999); Murdock (1957), +Nh6,,1890,EA090,2,,,Gray (1999); Murdock (1957), +Nh7,,1890,EA090,2,,,Gray (1999); Murdock (1957), +Nh8,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Nh9,,,EA090,NA,,,, +Ni1,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ni2,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Ni3,Huichol Tribe,1920,EA090,8,,,Gray (1999); Murdock (1957), +Ni4,,1900,EA090,2,,,Gray (1999); Murdock (1957), +Ni5,,,EA090,NA,,,, +Ni6,,,EA090,NA,,,, +Ni7,,,EA090,NA,,,, +Ni8,,,EA090,NA,,,, +Ni9,,,EA090,NA,,,, +Nj1,Ojitlan,1940,EA090,8,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,,,EA090,NA,,,, +Nj11,,,EA090,NA,,,, +Nj12,,,EA090,NA,,,, +Nj13,,,EA090,NA,,,, +Nj14,,,EA090,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA090,6,,,Gray (1999); Murdock (1957), +Nj3,Town and environs of Soteapan,1940,EA090,8,,,Gray (1999); Murdock (1957), +Nj4,,1940,EA090,6,,,Gray (1999); Murdock (1957), +Nj5,,1940,EA090,8,,,Gray (1999); Murdock (1957), +Nj6,,,EA090,NA,,,, +Nj7,,,EA090,NA,,,, +Nj8,,,EA090,NA,,,, +Nj9,,,EA090,NA,,,, +Sa1,San Blas Archipelago,1940,EA090,4,,,Gray (1999); Murdock (1957), +Sa10,,,EA090,NA,,,, +Sa11,,,EA090,NA,,,, +Sa12,,,EA090,NA,,,, +Sa13,,,EA090,NA,,,, +Sa14,,,EA090,NA,,,, +Sa15,,,EA090,NA,,,, +Sa16,,,EA090,NA,,,, +Sa17,,,EA090,NA,,,, +Sa2,with special reference to the town of Canuc; some data apply to the group more generally,1940,EA090,2,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sa3,,1930,EA090,8,,,Gray (1999); Murdock (1957), +Sa4,,,EA090,NA,,,, +Sa5,,1950,EA090,4,,,Gray (1999); Murdock (1957), +Sa6,,1520,EA090,4,,,Gray (1999); Murdock (1957), +Sa7,,1940,EA090,8,,,Gray (1999); Murdock (1957), +Sa8,,,EA090,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA090,4,,,Gray (1999); Murdock (1957), +Sb1,Dominica Island,1650,EA090,2,,,Gray (1999); Murdock (1957), +Sb2,,1940,EA090,2,,,Gray (1999); Murdock (1957), +Sb3,with special reference to the Iroka,1940,EA090,2,,,Gray (1999); Murdock (1957), +Sb4,,,EA090,NA,,,, +Sb5,,,EA090,NA,,,, +Sb6,Goajiro Tribe,1940,EA090,2,,,Gray (1999); Murdock (1957), +Sb7,,,EA090,NA,,,, +Sb8,,,EA090,NA,,,, +Sb9,,,EA090,NA,,,, +Sc1,,1950,EA090,2,,,Gray (1999); Murdock (1957), +Sc10,,,EA090,NA,,,, +Sc11,,,EA090,NA,,,, +Sc12,,,EA090,NA,,,, +Sc13,,,EA090,NA,,,, +Sc14,,,EA090,NA,,,, +Sc15,,,EA090,NA,,,, +Sc16,,,EA090,NA,,,, +Sc17,,,EA090,NA,,,, +Sc18,,,EA090,NA,,,, +Sc2,,1950,EA090,2,,,Gray (1999); Murdock (1957), +Sc3,Barama River,1930,EA090,2,,,Gray (1999); Murdock (1957), +Sc4,with special reference to the non-agricultural groups,1950,EA090,2,,,Gray (1999); Murdock (1957), +Sc5,,1900,EA090,2,,,Gray (1999); Murdock (1957), +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA090,4,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,,EA090,NA,,,, +Sc8,,,EA090,NA,,,, +Sc9,,,EA090,NA,,,, +Sd1,Cabrura village,1950,EA090,2,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,1930,EA090,2,,,Gray (1999); Murdock (1957), +Sd3,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Sd4,,1950,EA090,2,,,Gray (1999); Murdock (1957), +Sd5,,,EA090,NA,,,, +Sd6,,,EA090,NA,,,, +Sd7,,,EA090,NA,,,, +Sd8,,,EA090,NA,,,, +Sd9,,,EA090,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA090,2,,,Gray (1999); Murdock (1957), +Se10,,,EA090,NA,,,, +Se11,,,EA090,NA,,,, +Se12,,,EA090,NA,,,, +Se2,,1940,EA090,2,,,Gray (1999); Murdock (1957), +Se3,,1930,EA090,1,,,Gray (1999); Murdock (1957), +Se4,,1940,EA090,2,,,Gray (1999); Murdock (1957), +Se5,Village on Caduiari River,1940,EA090,2,,,Gray (1999); Murdock (1957), +Se6,,1910,EA090,2,,,Gray (1999); Murdock (1957), +Se7,,,EA090,NA,,,, +Se8,,,EA090,NA,,,, +Se9,,,EA090,NA,,,, +Sf1,City and environs of Cuzco,1530,EA090,6,,,Gray (1999); Murdock (1957), +Sf2,Chucuito Clan community in Peru,1940,EA090,8,,,Gray (1999); Murdock (1957), +Sf3,Rio Cayapas Basin,1910,EA090,2,,,Gray (1999); Murdock (1957), +Sf4,,,EA090,NA,,,, +Sf5,,1900,EA090,4,,,Gray (1999); Murdock (1957), +Sf6,,1540,EA090,5,,,Gray (1999); Murdock (1957), +Sf7,,,EA090,NA,,,, +Sf8,,,EA090,NA,,,, +Sf9,,,EA090,NA,,,, +Sg1,Eastern and central,1870,EA090,1,,,Gray (1999); Murdock (1957), +Sg2,Cholchol,1880,EA090,2,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA090,2,,,Gray (1999); Murdock (1957), +Sg4,Equestrian,1870,EA090,2,,,Gray (1999); Murdock (1957), +Sg5,with special reference to the southern bands,1900,EA090,1,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,1860,EA090,2,,,Gray (1999); Murdock (1957), +Sh2,,1850,EA090,2,,,Gray (1999); Murdock (1957), +Sh3,Those in contact with mission,1800,EA090,2,,,Gray (1999); Murdock (1957), +Sh4,,1940,EA090,4,,,Gray (1999); Murdock (1957), +Sh5,,1910,EA090,2,,,Gray (1999); Murdock (1957), +Sh6,,1890,EA090,4,,,Gray (1999); Murdock (1957), +Sh7,,1900,EA090,4,,,Gray (1999); Murdock (1957), +Sh8,,,EA090,NA,,,, +Sh9,,,EA090,NA,,,, +Si1,Kejara,1920,EA090,2,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,,EA090,NA,,,, +Si2,Village of Vanivani,1930,EA090,2,,,Gray (1999); Murdock (1957), +Si3,Simao Lopes,1940,EA090,2,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA090,2,,,Gray (1999); Murdock (1957), +Si5,,1940,EA090,2,,,Gray (1999); Murdock (1957), +Si6,,1900,EA090,2,,,Gray (1999); Murdock (1957), +Si7,,,EA090,NA,,,, +Si8,,,EA090,NA,,,, +Si9,,,EA090,NA,,,, +Sj1,,1950,EA090,2,,,Gray (1999); Murdock (1957), +Sj10,,,EA090,NA,,,, +Sj11,,,EA090,NA,,,, +Sj2,,1850,EA090,4,,,Gray (1999); Murdock (1957), +Sj3,Duque de Caxias Reservation,1910,EA090,1,,,Gray (1999); Murdock (1957), +Sj4,Ramcocamecra or Canella,1930,EA090,1,,,Gray (1999); Murdock (1957), +Sj5,Naknenuk subtribe,1880,EA090,2,,,Gray (1999); Murdock (1957), +Sj6,with special reference to the Guajajara subgroup,1930,EA090,2,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sj7,,1920,EA090,2,,,Gray (1999); Murdock (1957), +Sj8,Hinterland of Rio de Janeiro,1600,EA090,2,,,Gray (1999); Murdock (1957), +Sj9,,,EA090,NA,,,, +ch12,,,EA090,NA,,,, +ch13,,,EA090,NA,,,, +ch14,,,EA090,NA,,,, +ch15,,,EA090,NA,,,, +ch16,,,EA090,NA,,,, +ch17,,,EA090,NA,,,, +ch18,,,EA090,NA,,,, +ch19,,,EA090,NA,,,, +ch20,,,EA090,NA,,,, +ch21,,,EA090,NA,,,, +ch22,,,EA090,NA,,,, +ch23,,,EA090,NA,,,, +ch24,,,EA090,NA,,,, +ch25,,,EA090,NA,,,, +ch26,,,EA090,NA,,,, +ch27,,,EA090,NA,,,, +ch28,,,EA090,NA,,,, +ec12,,,EA090,NA,,,, +ec13,,,EA090,NA,,,, +ec14,,,EA090,NA,,,, +ec15,,,EA090,NA,,,, +ec16,,,EA090,NA,,,, +ec17,,,EA090,NA,,,, +ec18,,,EA090,NA,,,, +ec19,,,EA090,NA,,,, +ec20,,,EA090,NA,,,, +ec21,,,EA090,NA,,,, +Aa1,Nyai Nyae region,1950,EA094,11,,,Gray (1999); Murdock (1957), +Aa2,with special reference to Central Dorobo,1920,EA094,69,,,Gray (1999); Murdock (1957), +Aa3,Gei/Khauan tribe,1840,EA094,11,,,Gray (1999); Murdock (1957), +Aa4,,,EA094,NA,,,, +Aa5,"Epulu net-hunters, Ituri forest",1930,EA094,11,,,Gray (1999); Murdock (1957), +Aa6,,1920,EA094,13,,,Gray (1999); Murdock (1957), +Aa7,,,EA094,NA,,,, +Aa8,,,EA094,NA,,,, +Aa9,,,EA094,NA,,,, +Ab1,,1900,EA094,12,,,Gray (1999); Murdock (1957), +Ab10,,,EA094,NA,,,, +Ab11,,,EA094,NA,,,, +Ab12,,,EA094,NA,,,, +Ab13,,,EA094,NA,,,, +Ab14,,,EA094,NA,,,, +Ab15,,,EA094,NA,,,, +Ab16,,,EA094,NA,,,, +Ab17,,,EA094,NA,,,, +Ab18,,,EA094,NA,,,, +Ab19,,,EA094,NA,,,, +Ab2,,,EA094,NA,,,, +Ab20,,,EA094,NA,,,, +Ab21a,,,EA094,NA,,,, +Ab21b,,,EA094,NA,,,, +Ab22,,,EA094,NA,,,, +Ab3,Ruling Luyana,1890,EA094,13,,,Gray (1999); Murdock (1957), +Ab4,,1920,EA094,12,,,Gray (1999); Murdock (1957), +Ab5,,1930,EA094,13,,,Gray (1999); Murdock (1957), +Ab6,,,EA094,NA,,,, +Ab7,"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,EA094,24,,,Gray (1999); Murdock (1957), +Ab8,Basuto,1860,EA094,11,,,Gray (1999); Murdock (1957), +Ab9,,,EA094,NA,,,, +Ac1,,1920,EA094,26,,,Gray (1999); Murdock (1957), +Ac10,,,EA094,NA,,,, +Ac11,,,EA094,NA,,,, +Ac12,,,EA094,NA,,,, +Ac13,,,EA094,NA,,,, +Ac14,,,EA094,NA,,,, +Ac15,,,EA094,NA,,,, +Ac16,,,EA094,NA,,,, +Ac17,,,EA094,NA,,,, +Ac18,,,EA094,NA,,,, +Ac19,,,EA094,NA,,,, +Ac2,,,EA094,NA,,,, +Ac20,,,EA094,NA,,,, +Ac21,,,EA094,NA,,,, +Ac22,,,EA094,NA,,,, +Ac23,,,EA094,NA,,,, +Ac24,,,EA094,NA,,,, +Ac25,,,EA094,NA,,,, +Ac26,,,EA094,NA,,,, +Ac27,,,EA094,NA,,,, +Ac28,,,EA094,NA,,,, +Ac29,,,EA094,NA,,,, +Ac3,Zambia branch,1900,EA094,25,,,Gray (1999); Murdock (1957), +Ac30,,,EA094,NA,,,, +Ac31,,,EA094,NA,,,, +Ac32,,,EA094,NA,,,, +Ac33,,,EA094,NA,,,, +Ac34,,,EA094,NA,,,, +Ac35,,,EA094,NA,,,, +Ac36,,,EA094,NA,,,, +Ac37,,,EA094,NA,,,, +Ac38,,,EA094,NA,,,, +Ac39,,,EA094,NA,,,, +Ac4,"with special reference to the Bushoong, the central subtribe",1910,EA094,26,,,Gray (1999); Murdock (1957), +Ac40,,,EA094,NA,,,, +Ac41,,,EA094,NA,,,, +Ac42,,,EA094,NA,,,, +Ac43,,,EA094,NA,,,, +Ac5,,1920,EA094,26,,,Gray (1999); Murdock (1957), +Ac6,,,EA094,NA,,,, +Ac7,,1920,EA094,24,,,Gray (1999); Murdock (1957), +Ac8,,,EA094,NA,,,, +Ac9,with special reference to the Mpezeni group of Fort Jameson,1940,EA094,11,,,Gray (1999); Murdock (1957), +Ad1,,,EA094,NA,,,, +Ad10,,,EA094,NA,,,, +Ad11,,,EA094,NA,,,, +Ad12,,,EA094,NA,,,, +Ad13,,,EA094,NA,,,, +Ad14,,,EA094,NA,,,, +Ad15,,,EA094,NA,,,, +Ad16,,,EA094,NA,,,, +Ad17,,,EA094,NA,,,, +Ad18,,,EA094,NA,,,, +Ad19,,,EA094,NA,,,, +Ad2,,,EA094,NA,,,, +Ad20,,,EA094,NA,,,, +Ad21,,,EA094,NA,,,, +Ad22,,,EA094,NA,,,, +Ad23,,,EA094,NA,,,, +Ad24,,,EA094,NA,,,, +Ad25,,,EA094,NA,,,, +Ad26,,,EA094,NA,,,, +Ad27,,,EA094,NA,,,, +Ad28,,,EA094,NA,,,, +Ad29,,,EA094,NA,,,, +Ad3,,1910,EA094,39,,,Gray (1999); Murdock (1957), +Ad30,,,EA094,NA,,,, +Ad31,,,EA094,NA,,,, +Ad32,,,EA094,NA,,,, +Ad33,,,EA094,NA,,,, +Ad34,,,EA094,NA,,,, +Ad35,,,EA094,NA,,,, +Ad36,,,EA094,NA,,,, +Ad37,,,EA094,NA,,,, +Ad38,,,EA094,NA,,,, +Ad39,,,EA094,NA,,,, +Ad4,Fort Hall or Metume district,1930,EA094,69,,,Gray (1999); Murdock (1957), +Ad40,,,EA094,NA,,,, +Ad41,,,EA094,NA,,,, +Ad42,,,EA094,NA,,,, +Ad43,,,EA094,NA,,,, +Ad44,,,EA094,NA,,,, +Ad45,,,EA094,NA,,,, +Ad46,,,EA094,NA,,,, +Ad47,,,EA094,NA,,,, +Ad48,,,EA094,NA,,,, +Ad49,,,EA094,NA,,,, +Ad5,,1940,EA094,69,,,Gray (1999); Murdock (1957), +Ad50,,,EA094,NA,,,, +Ad51,,,EA094,NA,,,, +Ad6,Age villages of Mwaya and Masoko,1930,EA094,39,,,Gray (1999); Murdock (1957), +Ad7,Kyaddondo district (V: Kampala),1880,EA094,39,,,Gray (1999); Murdock (1957), +Ad8,with special reference to the northern or Iringa group,1910,EA094,13,,,Gray (1999); Murdock (1957), +Ad9,,,EA094,NA,,,, +Ae1,,,EA094,NA,,,, +Ae10,,,EA094,NA,,,, +Ae11,,,EA094,NA,,,, +Ae12,,,EA094,NA,,,, +Ae13,,,EA094,NA,,,, +Ae14,,,EA094,NA,,,, +Ae15,,,EA094,NA,,,, +Ae16,,,EA094,NA,,,, +Ae17,,,EA094,NA,,,, +Ae18,,,EA094,NA,,,, +Ae19,,,EA094,NA,,,, +Ae2,,1950,EA094,11,,,Gray (1999); Murdock (1957), +Ae20,,,EA094,NA,,,, +Ae21,,,EA094,NA,,,, +Ae22,,,EA094,NA,,,, +Ae23,,,EA094,NA,,,, +Ae24,,,EA094,NA,,,, +Ae25,,,EA094,NA,,,, +Ae26,,,EA094,NA,,,, +Ae27,,,EA094,NA,,,, +Ae28,,,EA094,NA,,,, +Ae29,,,EA094,NA,,,, +Ae3,,1910,EA094,11,,,Gray (1999); Murdock (1957), +Ae30,,,EA094,NA,,,, +Ae31,,,EA094,NA,,,, +Ae32,,,EA094,NA,,,, +Ae33,,,EA094,NA,,,, +Ae34,,,EA094,NA,,,, +Ae35,,,EA094,NA,,,, +Ae36,,,EA094,NA,,,, +Ae37,,,EA094,NA,,,, +Ae38,,,EA094,NA,,,, +Ae39,,,EA094,NA,,,, +Ae4,Ilanga group,1930,EA094,12,,,Gray (1999); Murdock (1957), +Ae40,,,EA094,NA,,,, +Ae41,,,EA094,NA,,,, +Ae42,,,EA094,NA,,,, +Ae43,,,EA094,NA,,,, +Ae44,,,EA094,NA,,,, +Ae45,,,EA094,NA,,,, +Ae46,,,EA094,NA,,,, +Ae47,,,EA094,NA,,,, +Ae48,,,EA094,NA,,,, +Ae49,,,EA094,NA,,,, +Ae5,,,EA094,NA,,,, +Ae50,,,EA094,NA,,,, +Ae51,,,EA094,NA,,,, +Ae52,,,EA094,NA,,,, +Ae53,,,EA094,NA,,,, +Ae54,,,EA094,NA,,,, +Ae55,,,EA094,NA,,,, +Ae56,,,EA094,NA,,,, +Ae57,,,EA094,NA,,,, +Ae58,,,EA094,NA,,,, +Ae59,,,EA094,NA,,,, +Ae6,with special reference to the Bena Kalundwe,1930,EA094,39,,,Gray (1999); Murdock (1957), +Ae7,,1910,EA094,11,,,Gray (1999); Murdock (1957), +Ae8,,,EA094,NA,,,, +Ae9,,,EA094,NA,,,, +Af1,City and environs of Abomey,1890,EA094,13,,,Gray (1999); Murdock (1957), +Af10,,,EA094,NA,,,, +Af11,,,EA094,NA,,,, +Af12,,,EA094,NA,,,, +Af13,,,EA094,NA,,,, +Af14,,,EA094,NA,,,, +Af15,,,EA094,NA,,,, +Af16,,,EA094,NA,,,, +Af17,,,EA094,NA,,,, +Af18,,,EA094,NA,,,, +Af19,,,EA094,NA,,,, +Af2,,1950,EA094,13,,,Gray (1999); Murdock (1957), +Af20,,,EA094,NA,,,, +Af21,,,EA094,NA,,,, +Af22,,,EA094,NA,,,, +Af23,,,EA094,NA,,,, +Af24,,,EA094,NA,,,, +Af25,,,EA094,NA,,,, +Af26,,,EA094,NA,,,, +Af27,,,EA094,NA,,,, +Af28,,,EA094,NA,,,, +Af29,,,EA094,NA,,,, +Af3,Kumasi State,1900,EA094,49,,,Gray (1999); Murdock (1957), +Af30,,,EA094,NA,,,, +Af31,,,EA094,NA,,,, +Af32,,,EA094,NA,,,, +Af33,,,EA094,NA,,,, +Af34,,,EA094,NA,,,, +Af35,,,EA094,NA,,,, +Af36,,,EA094,NA,,,, +Af37,,,EA094,NA,,,, +Af38,,,EA094,NA,,,, +Af39,,,EA094,NA,,,, +Af4,,,EA094,NA,,,, +Af40,,,EA094,NA,,,, +Af41,,,EA094,NA,,,, +Af42,,,EA094,NA,,,, +Af43,,,EA094,NA,,,, +Af44,,,EA094,NA,,,, +Af45,,,EA094,NA,,,, +Af46,,,EA094,NA,,,, +Af47,,,EA094,NA,,,, +Af48,,,EA094,NA,,,, +Af49,,,EA094,NA,,,, +Af5,,1930,EA094,13,,,Gray (1999); Murdock (1957), +Af50,,,EA094,NA,,,, +Af51,,,EA094,NA,,,, +Af52,,,EA094,NA,,,, +Af53,,,EA094,NA,,,, +Af54,,,EA094,NA,,,, +Af55,,,EA094,NA,,,, +Af56,,,EA094,NA,,,, +Af57,,,EA094,NA,,,, +Af58,,,EA094,NA,,,, +Af6,"Yoruba, with special reference to the Oyo",1950,EA094,13,,,Gray (1999); Murdock (1957), +Af7,,1950,EA094,13,,,Gray (1999); Murdock (1957), +Af8,,,EA094,NA,,,, +Af9,,,EA094,NA,,,, +Ag1,,,EA094,NA,,,, +Ag10,,,EA094,NA,,,, +Ag11,,,EA094,NA,,,, +Ag12,,,EA094,NA,,,, +Ag13,,,EA094,NA,,,, +Ag14,,,EA094,NA,,,, +Ag15,,,EA094,NA,,,, +Ag16,,,EA094,NA,,,, +Ag17,,,EA094,NA,,,, +Ag18,,,EA094,NA,,,, +Ag19,,,EA094,NA,,,, +Ag2,"with special reference to Massi (Moshi) of Yatenga; (for those of Ouagadougou, see Ag47)",1950,EA094,11,,,Gray (1999); Murdock (1957), +Ag20,,,EA094,NA,,,, +Ag21,,,EA094,NA,,,, +Ag22,,,EA094,NA,,,, +Ag23,,,EA094,NA,,,, +Ag24,,,EA094,NA,,,, +Ag25,,,EA094,NA,,,, +Ag26,,,EA094,NA,,,, +Ag27,,,EA094,NA,,,, +Ag28,,,EA094,NA,,,, +Ag29,,,EA094,NA,,,, +Ag3,,1930,EA094,12,,,Gray (1999); Murdock (1957), +Ag30,,,EA094,NA,,,, +Ag31,,,EA094,NA,,,, +Ag32,,,EA094,NA,,,, +Ag33,,,EA094,NA,,,, +Ag34,,,EA094,NA,,,, +Ag35,,,EA094,NA,,,, +Ag36,,,EA094,NA,,,, +Ag37,,,EA094,NA,,,, +Ag38,,,EA094,NA,,,, +Ag39,,,EA094,NA,,,, +Ag4,Tallensi Tribe,1930,EA094,13,,,Gray (1999); Murdock (1957), +Ag40,,,EA094,NA,,,, +Ag41,,,EA094,NA,,,, +Ag42,,,EA094,NA,,,, +Ag43,,,EA094,NA,,,, +Ag44,,,EA094,NA,,,, +Ag45,,,EA094,NA,,,, +Ag46,,,EA094,NA,,,, +Ag47,,,EA094,NA,,,, +Ag48,,,EA094,NA,,,, +Ag49,,,EA094,NA,,,, +Ag5,,1930,EA094,13,,,Gray (1999); Murdock (1957), +Ag50,,,EA094,NA,,,, +Ag51,,,EA094,NA,,,, +Ag52,,,EA094,NA,,,, +Ag53,,,EA094,NA,,,, +Ag54,,,EA094,NA,,,, +Ag6,,1890,EA094,13,,,Gray (1999); Murdock (1957), +Ag7,,1930,EA094,13,,,Gray (1999); Murdock (1957), +Ag8,with special reference to the Coniagui,1910,EA094,25,,,Gray (1999); Murdock (1957), +Ag9,,,EA094,NA,,,, +Ah1,,,EA094,NA,,,, +Ah10,,,EA094,NA,,,, +Ah11,,,EA094,NA,,,, +Ah12,,,EA094,NA,,,, +Ah13,,,EA094,NA,,,, +Ah14,,,EA094,NA,,,, +Ah15,,,EA094,NA,,,, +Ah16,,,EA094,NA,,,, +Ah17,,,EA094,NA,,,, +Ah18,,,EA094,NA,,,, +Ah19,,,EA094,NA,,,, +Ah2,,1920,EA094,13,,,Gray (1999); Murdock (1957), +Ah20,,,EA094,NA,,,, +Ah21,,,EA094,NA,,,, +Ah22,,,EA094,NA,,,, +Ah23,,,EA094,NA,,,, +Ah24,,,EA094,NA,,,, +Ah25,,,EA094,NA,,,, +Ah26,,,EA094,NA,,,, +Ah27,,,EA094,NA,,,, +Ah28,,,EA094,NA,,,, +Ah29,,,EA094,NA,,,, +Ah3,Tar of Benue Province,1920,EA094,13,,,Gray (1999); Murdock (1957), +Ah30,,,EA094,NA,,,, +Ah31,,,EA094,NA,,,, +Ah32,,,EA094,NA,,,, +Ah33,,,EA094,NA,,,, +Ah34,,,EA094,NA,,,, +Ah35,,,EA094,NA,,,, +Ah36,,,EA094,NA,,,, +Ah37,,,EA094,NA,,,, +Ah38,,,EA094,NA,,,, +Ah39,,,EA094,NA,,,, +Ah4,,,EA094,NA,,,, +Ah5,,1930,EA094,13,,,Gray (1999); Murdock (1957), +Ah6,,1920,EA094,99,,,Gray (1999); Murdock (1957), +Ah7,,1940,EA094,13,,,Gray (1999); Murdock (1957), +Ah8,,1910,EA094,13,,,Gray (1999); Murdock (1957), +Ah9,,,EA094,NA,,,, +Ai1,,1920,EA094,13,,,Gray (1999); Murdock (1957), +Ai10,,,EA094,NA,,,, +Ai11,,,EA094,NA,,,, +Ai12,,,EA094,NA,,,, +Ai13,,,EA094,NA,,,, +Ai14,,,EA094,NA,,,, +Ai15,,,EA094,NA,,,, +Ai16,,,EA094,NA,,,, +Ai17,,,EA094,NA,,,, +Ai18,,,EA094,NA,,,, +Ai19,,,EA094,NA,,,, +Ai2,,,EA094,NA,,,, +Ai20,,,EA094,NA,,,, +Ai21,,,EA094,NA,,,, +Ai22,,,EA094,NA,,,, +Ai23,,,EA094,NA,,,, +Ai24,,,EA094,NA,,,, +Ai25,,,EA094,NA,,,, +Ai26,,,EA094,NA,,,, +Ai27,,,EA094,NA,,,, +Ai28,,,EA094,NA,,,, +Ai29,,,EA094,NA,,,, +Ai3,,1920,EA094,11,,,Gray (1999); Murdock (1957), +Ai30,,,EA094,NA,,,, +Ai31,,,EA094,NA,,,, +Ai32,,,EA094,NA,,,, +Ai33,,,EA094,NA,,,, +Ai34,,,EA094,NA,,,, +Ai35,,,EA094,NA,,,, +Ai36,,,EA094,NA,,,, +Ai37,,,EA094,NA,,,, +Ai38,,,EA094,NA,,,, +Ai39,,,EA094,NA,,,, +Ai4,,1920,EA094,11,,,Gray (1999); Murdock (1957), +Ai40,,,EA094,NA,,,, +Ai41,,,EA094,NA,,,, +Ai42,,,EA094,NA,,,, +Ai43,,,EA094,NA,,,, +Ai44,,,EA094,NA,,,, +Ai45,,,EA094,NA,,,, +Ai46,,,EA094,NA,,,, +Ai47,,,EA094,NA,,,, +Ai5,,,EA094,NA,,,, +Ai6,Shilluk Kingdom,1900,EA094,13,,,Gray (1999); Murdock (1957), +Ai7,,1910,EA094,11,,,Gray (1999); Murdock (1957), +Ai8,,1930,EA094,13,,,Gray (1999); Murdock (1957), +Ai9,,,EA094,NA,,,, +Aj1,,,EA094,NA,,,, +Aj10,,,EA094,NA,,,, +Aj11,,,EA094,NA,,,, +Aj12,,,EA094,NA,,,, +Aj13,,,EA094,NA,,,, +Aj14,,,EA094,NA,,,, +Aj15,,,EA094,NA,,,, +Aj16,,,EA094,NA,,,, +Aj17,,,EA094,NA,,,, +Aj18,,,EA094,NA,,,, +Aj19,,,EA094,NA,,,, +Aj2,Kisonko or Southern Masai of Tanzania,1900,EA094,69,,,Gray (1999); Murdock (1957), +Aj20,,,EA094,NA,,,, +Aj21,,,EA094,NA,,,, +Aj22,,,EA094,NA,,,, +Aj23,,,EA094,NA,,,, +Aj24,,,EA094,NA,,,, +Aj25,,,EA094,NA,,,, +Aj26,,,EA094,NA,,,, +Aj27,,,EA094,NA,,,, +Aj28,,,EA094,NA,,,, +Aj29,,,EA094,NA,,,, +Aj3,,1930,EA094,99,,,Gray (1999); Murdock (1957), +Aj30,,,EA094,NA,,,, +Aj31,,,EA094,NA,,,, +Aj4,,1920,EA094,11,,,Gray (1999); Murdock (1957), +Aj5,,1920,EA094,99,,,Gray (1999); Murdock (1957), +Aj6,,1940,EA094,11,,,Gray (1999); Murdock (1957), +Aj7,,1910,EA094,69,,,Gray (1999); Murdock (1957), +Aj8,,1920,EA094,11,,,Gray (1999); Murdock (1957), +Aj9,,,EA094,NA,,,, +Ca1,Town of Buso,1930,EA094,13,,,Gray (1999); Murdock (1957), +Ca10,,,EA094,NA,,,, +Ca11,,,EA094,NA,,,, +Ca12,,,EA094,NA,,,, +Ca13,,,EA094,NA,,,, +Ca14,,,EA094,NA,,,, +Ca15,,,EA094,NA,,,, +Ca16,,,EA094,NA,,,, +Ca17,,,EA094,NA,,,, +Ca18,,,EA094,NA,,,, +Ca19,,,EA094,NA,,,, +Ca2,Dolbahanta clan or subtribe,1950,EA094,49,,,Gray (1999); Murdock (1957), +Ca20,,,EA094,NA,,,, +Ca21,,,EA094,NA,,,, +Ca22,,,EA094,NA,,,, +Ca23,,,EA094,NA,,,, +Ca24,,,EA094,NA,,,, +Ca25,,,EA094,NA,,,, +Ca26,,,EA094,NA,,,, +Ca27,,,EA094,NA,,,, +Ca28,,,EA094,NA,,,, +Ca29,,,EA094,NA,,,, +Ca3,,,EA094,NA,,,, +Ca30,,,EA094,NA,,,, +Ca31,,,EA094,NA,,,, +Ca32,,,EA094,NA,,,, +Ca33,,,EA094,NA,,,, +Ca34,,,EA094,NA,,,, +Ca35,,,EA094,NA,,,, +Ca36,,,EA094,NA,,,, +Ca37,,,EA094,NA,,,, +Ca38,,,EA094,NA,,,, +Ca39,,,EA094,NA,,,, +Ca4,,1950,EA094,13,,,Gray (1999); Murdock (1957), +Ca40,,,EA094,NA,,,, +Ca41,,,EA094,NA,,,, +Ca42,,,EA094,NA,,,, +Ca43,,,EA094,NA,,,, +Ca5,,1930,EA094,13,,,Gray (1999); Murdock (1957), +Ca6,,,EA094,NA,,,, +Ca7,,,EA094,NA,,,, +Ca8,,,EA094,NA,,,, +Ca9,,,EA094,NA,,,, +Cb1,,1940,EA094,39,,,Gray (1999); Murdock (1957), +Cb10,,,EA094,NA,,,, +Cb11,,,EA094,NA,,,, +Cb12,,,EA094,NA,,,, +Cb13,,,EA094,NA,,,, +Cb14,,,EA094,NA,,,, +Cb15,,,EA094,NA,,,, +Cb16,,,EA094,NA,,,, +Cb17,,,EA094,NA,,,, +Cb18,,,EA094,NA,,,, +Cb19,,,EA094,NA,,,, +Cb2,,,EA094,NA,,,, +Cb20,,,EA094,NA,,,, +Cb21,,,EA094,NA,,,, +Cb22,,,EA094,NA,,,, +Cb23,,,EA094,NA,,,, +Cb24,,,EA094,NA,,,, +Cb25,,,EA094,NA,,,, +Cb26,,,EA094,NA,,,, +Cb27,,,EA094,NA,,,, +Cb28,,,EA094,NA,,,, +Cb29,,,EA094,NA,,,, +Cb3,Bamba division,1940,EA094,13,,,Gray (1999); Murdock (1957), +Cb4,,,EA094,NA,,,, +Cb5,,,EA094,NA,,,, +Cb6,,,EA094,NA,,,, +Cb7,,,EA094,NA,,,, +Cb8,,,EA094,NA,,,, +Cb9,,,EA094,NA,,,, +Cc1,,,EA094,NA,,,, +Cc10,,,EA094,NA,,,, +Cc11,,,EA094,NA,,,, +Cc12,,,EA094,NA,,,, +Cc13,,,EA094,NA,,,, +Cc14,,,EA094,NA,,,, +Cc15,,,EA094,NA,,,, +Cc16,,,EA094,NA,,,, +Cc17,,,EA094,NA,,,, +Cc18,,,EA094,NA,,,, +Cc19,,,EA094,NA,,,, +Cc2,Nomads of Tibesti,1950,EA094,13,,,Gray (1999); Murdock (1957), +Cc20,,,EA094,NA,,,, +Cc3,inhabitants of the oasis of Siwa,1920,EA094,69,,,Gray (1999); Murdock (1957), +Cc4,,1920,EA094,69,,,Gray (1999); Murdock (1957), +Cc5,,,EA094,NA,,,, +Cc6,,,EA094,NA,,,, +Cc7,,,EA094,NA,,,, +Cc8,,,EA094,NA,,,, +Cc9,,,EA094,NA,,,, +Cd1,Kenuzi Nubians of Dahmit,1920,EA094,99,,,Gray (1999); Murdock (1957), +Cd10,,,EA094,NA,,,, +Cd11,,,EA094,NA,,,, +Cd12,,,EA094,NA,,,, +Cd13,,,EA094,NA,,,, +Cd14,,,EA094,NA,,,, +Cd15,,,EA094,NA,,,, +Cd16,,,EA094,NA,,,, +Cd17,,,EA094,NA,,,, +Cd18,,,EA094,NA,,,, +Cd19,,,EA094,NA,,,, +Cd2,Town and environs of Silwa,1950,EA094,49,,,Gray (1999); Murdock (1957), +Cd20,,,EA094,NA,,,, +Cd21,,,EA094,NA,,,, +Cd3,Entirety: Moroccan,1920,EA094,69,,,Gray (1999); Murdock (1957), +Cd4,,1890,EA094,69,,,Gray (1999); Murdock (1957), +Cd5,with special reference to those of the Grand Atlas Mountains,1920,EA094,69,,,Gray (1999); Murdock (1957), +Cd6,,,EA094,NA,,,, +Cd7,,,EA094,NA,,,, +Cd8,,,EA094,NA,,,, +Cd9,,,EA094,NA,,,, +Ce1,Mountain Gheg of No. Albania,1900,EA094,11,,,Gray (1999); Murdock (1957), +Ce2,,,EA094,NA,,,, +Ce3,City and environs of Rome,100,EA094,49,,,Gray (1999); Murdock (1957), +Ce4,Labourd,1930,EA094,49,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ce5,,,EA094,NA,,,, +Ce6,,,EA094,NA,,,, +Ce7,,,EA094,NA,,,, +Ce8,,,EA094,NA,,,, +Cf1,Small City in Connecticut,1920,EA094,49,,,Gray (1999); Murdock (1957), +Cf2,of the Transvaal,1850,EA094,49,,,Gray (1999); Murdock (1957), +Cf3,,,EA094,NA,,,, +Cf4,,,EA094,NA,,,, +Cf5,,,EA094,NA,,,, +Cg1,with special reference to the village of Anderen in Anlo parish of Drente province,1950,EA094,69,,,Gray (1999); Murdock (1957), +Cg2,,1100,EA094,13,,,Gray (1999); Murdock (1957), +Cg3,County Clare,1930,EA094,49,,,Gray (1999); Murdock (1957), +Cg4,Konkama District,1950,EA094,11,,,Gray (1999); Murdock (1957), +Cg5,,,EA094,NA,,,, +Ch1,with special reference to the village of Orasac,1950,EA094,69,,,Gray (1999); Murdock (1957), +Ch10,,,EA094,NA,,,, +Ch11,,,EA094,NA,,,, +Ch2,,1890,EA094,99,,,Gray (1999); Murdock (1957), +Ch3,with special reference to the Hana district of central Moravia,1940,EA094,49,,,Gray (1999); Murdock (1957), +Ch4,,,EA094,NA,,,, +Ch5,,,EA094,NA,,,, +Ch6,,,EA094,NA,,,, +Ch7,,,EA094,NA,,,, +Ch8,,,EA094,NA,,,, +Ch9,,,EA094,NA,,,, +Ci1,with special reference to the Baga Dorbed group,1920,EA094,13,,,Gray (1999); Murdock (1957), +Ci10,,,EA094,NA,,,, +Ci11,,,EA094,NA,,,, +Ci12,,,EA094,NA,,,, +Ci2,,,EA094,NA,,,, +Ci3,,,EA094,NA,,,, +Ci4,,1920,EA094,13,,,Gray (1999); Murdock (1957), +Ci5,,,EA094,NA,,,, +Ci6,,,EA094,NA,,,, +Ci7,,,EA094,NA,,,, +Ci8,,,EA094,NA,,,, +Ci9,,,EA094,NA,,,, +Cj1,,,EA094,NA,,,, +Cj10,,,EA094,NA,,,, +Cj2,Unspecified,1920,EA094,13,,,Gray (1999); Murdock (1957), +Cj3,,,EA094,NA,,,, +Cj4,,,EA094,NA,,,, +Cj5,,,EA094,NA,,,, +Cj6,,,EA094,NA,,,, +Cj7,,,EA094,NA,,,, +Cj8,,,EA094,NA,,,, +Cj9,,,EA094,NA,,,, +Ea1,,,EA094,NA,,,, +Ea10,,,EA094,NA,,,, +Ea11,,,EA094,NA,,,, +Ea12,,,EA094,NA,,,, +Ea13,,,EA094,NA,,,, +Ea2,,,EA094,NA,,,, +Ea3,with special reference to the Urazgani,1930,EA094,11,,,Gray (1999); Murdock (1957), +Ea4,,,EA094,NA,,,, +Ea5,,1890,EA094,11,,,Gray (1999); Murdock (1957), +Ea6,,,EA094,NA,,,, +Ea7,,,EA094,NA,,,, +Ea8,,,EA094,NA,,,, +Ea9,,,EA094,NA,,,, +Eb1,Great Horde,1910,EA094,13,,,Gray (1999); Murdock (1957), +Eb2,,1920,EA094,11,,,Gray (1999); Murdock (1957), +Eb3,Narobanchin Territory,1940,EA094,11,,,Gray (1999); Murdock (1957), +Eb4,with special reference to the Botaha area,1940,EA094,99,,,Gray (1999); Murdock (1957), +Eb5,with special reference to the sedentary Teke of the Merv oasis,1910,EA094,11,,,Gray (1999); Murdock (1957), +Eb6,with special reference to those southeast of Lake Baikal,1900,EA094,13,,,Gray (1999); Murdock (1957), +Eb7,,,EA094,NA,,,, +Eb8,,,EA094,NA,,,, +Ec1,Sakhalin Island,1920,EA094,99,,,Gray (1999); Murdock (1957), +Ec10,,,EA094,NA,,,, +Ec11,,,EA094,NA,,,, +Ec2,with special reference to the Yakutsk district,1900,EA094,13,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ec3,Reindeer Division,1900,EA094,59,,,Gray (1999); Murdock (1957), +Ec4,,,EA094,NA,,,, +Ec5,with special reference to the Maritime Koryak,1900,EA094,59,,,Gray (1999); Murdock (1957), +Ec6,Upper Kolyma River,1850,EA094,59,,,Gray (1999); Murdock (1957), +Ec7,Saru Basin in Hokkaido,1900,EA094,13,,,Gray (1999); Murdock (1957), +Ec8,,1900,EA094,99,,,Gray (1999); Murdock (1957), +Ec9,,,EA094,NA,,,, +Ed1,Kanghwa Island,1950,EA094,59,,,Gray (1999); Murdock (1957), +Ed10,,,EA094,NA,,,, +Ed13,,,EA094,NA,,,, +Ed14,,,EA094,NA,,,, +Ed15a,,,EA094,NA,,,, +Ed15b,,,EA094,NA,,,, +Ed16,,,EA094,NA,,,, +Ed2,Liang Shan and Taliang S,1940,EA094,11,,,Gray (1999); Murdock (1957), +Ed3,Aigun District,1920,EA094,49,,,Gray (1999); Murdock (1957), +Ed4,,,EA094,NA,,,, +Ed5,Okayama,1950,EA094,49,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ed6,,,EA094,NA,,,, +Ed7,,1950,EA094,99,,,Gray (1999); Murdock (1957), +Ed8,,1930,EA094,49,,,Gray (1999); Murdock (1957), +Ed9,,,EA094,NA,,,, +Ee1,,1940,EA094,49,,,Gray (1999); Murdock (1957), +Ee2,,,EA094,NA,,,, +Ee3,Lingthem and vicinity,1930,EA094,11,,,Gray (1999); Murdock (1957), +Ee4,with special reference to Central Tibet,1920,EA094,39,,,Gray (1999); Murdock (1957), +Ee5,,,EA094,NA,,,, +Ee6,,,EA094,NA,,,, +Ee7,,,EA094,NA,,,, +Ee8,,,EA094,NA,,,, +Ef1,Bankura and Berghum Districts,1940,EA094,11,,,Gray (1999); Murdock (1957), +Ef10,,,EA094,NA,,,, +Ef11,,,EA094,NA,,,, +Ef2,,,EA094,NA,,,, +Ef3,,-800,EA094,13,,,Gray (1999); Murdock (1957), +Ef4,,1920,EA094,39,,,Gray (1999); Murdock (1957), +Ef5,,1900,EA094,11,,,Gray (1999); Murdock (1957), +Ef6,,1940,EA094,49,,,Gray (1999); Murdock (1957), +Ef7,,,EA094,NA,,,, +Ef8,,,EA094,NA,,,, +Ef9,,,EA094,NA,,,, +Eg1,with special reference to the forest group,1940,EA094,59,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Eg10,,,EA094,NA,,,, +Eg11,,,EA094,NA,,,, +Eg12,,,EA094,NA,,,, +Eg13,,,EA094,NA,,,, +Eg14,,,EA094,NA,,,, +Eg2,,,EA094,NA,,,, +Eg3,Hill Maria,1938,EA094,13,,,Gray (1999); Murdock (1957), +Eg4,Toda Tribe,1900,EA094,69,,,Gray (1999); Murdock (1957), +Eg5,,1930,EA094,13,,,Gray (1999); Murdock (1957), +Eg6,with special reference to Northern Kerala,1799,EA094,26,,,Gray (1999); Murdock (1957), +Eg7,,,EA094,NA,,,, +Eg8,,1940,EA094,59,,,Gray (1999); Murdock (1957), +Eg9,,,EA094,NA,,,, +Eh1,,1870,EA094,99,,,Gray (1999); Murdock (1957), +Eh10,,,EA094,NA,,,, +Eh2,,1900,EA094,39,,,Gray (1999); Murdock (1957), +Eh3,Menabe subtribe,1930,EA094,49,,,Gray (1999); Murdock (1957), +Eh4,,,EA094,NA,,,, +Eh5,Car Nicobar of North Islands,1890,EA094,59,,,Gray (1999); Murdock (1957), +Eh6,,,EA094,NA,,,, +Eh7,,,EA094,NA,,,, +Eh8,,,EA094,NA,,,, +Eh9,,,EA094,NA,,,, +Ei1,Rengsanggr,1900,EA094,26,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ei10,,,EA094,NA,,,, +Ei11,,,EA094,NA,,,, +Ei12,,,EA094,NA,,,, +Ei13,,,EA094,NA,,,, +Ei14,,,EA094,NA,,,, +Ei15,,,EA094,NA,,,, +Ei16,,,EA094,NA,,,, +Ei17,,,EA094,NA,,,, +Ei18,,,EA094,NA,,,, +Ei19,,,EA094,NA,,,, +Ei2,,,EA094,NA,,,, +Ei20,,,EA094,NA,,,, +Ei3,Nondwin Village,1950,EA094,39,,,Gray (1999); Murdock (1957), +Ei4,Lakher Tribe,1930,EA094,11,,,Gray (1999); Murdock (1957), +Ei5,with special reference to the Jinghpaw,1940,EA094,11,,,Gray (1999); Murdock (1957), +Ei6,,,EA094,NA,,,, +Ei7,,,EA094,NA,,,, +Ei8,with special reference to those of the Jaintia Hills,1900,EA094,25,,,Gray (1999); Murdock (1957), +Ei9,,,EA094,NA,,,, +Ej1,"Lamet Tribe, Northwestern Laos",1940,EA094,11,,,Gray (1999); Murdock (1957), +Ej10,,,EA094,NA,,,, +Ej11,,,EA094,NA,,,, +Ej12,,,EA094,NA,,,, +Ej13,,,EA094,NA,,,, +Ej14,,,EA094,NA,,,, +Ej15,,,EA094,NA,,,, +Ej16,,,EA094,NA,,,, +Ej2,,,EA094,NA,,,, +Ej3,Jehai Group or subtribe,1920,EA094,99,,,Gray (1999); Murdock (1957), +Ej4,Red River Delta in Tonkin,1950,EA094,49,,,Gray (1999); Murdock (1957), +Ej5,,1950,EA094,59,,,Gray (1999); Murdock (1957), +Ej6,of the Mergui Archipelago,1920,EA094,99,,,Gray (1999); Murdock (1957), +Ej7,,1950,EA094,12,,,Gray (1999); Murdock (1957), +Ej8,with special reference to those of Trengganu,1940,EA094,13,,,Gray (1999); Murdock (1957), +Ej9,,1940,EA094,49,,,Gray (1999); Murdock (1957), +Ia1,Atayal Tribe (but exdluding Sedeq),1930,EA094,13,,,Gray (1999); Murdock (1957), +Ia10,,,EA094,NA,,,, +Ia11,,,EA094,NA,,,, +Ia12,,,EA094,NA,,,, +Ia13,,,EA094,NA,,,, +Ia14,,,EA094,NA,,,, +Ia15,,,EA094,NA,,,, +Ia16,,,EA094,NA,,,, +Ia17,,,EA094,NA,,,, +Ia18,,,EA094,NA,,,, +Ia2,,,EA094,NA,,,, +Ia3,Kiangan Group,1920,EA094,99,,,Gray (1999); Murdock (1957), +Ia4,with special reference to the Eastern Subanun,1950,EA094,99,,,Gray (1999); Murdock (1957), +Ia5,,1950,EA094,99,,,Gray (1999); Murdock (1957), +Ia6,,,EA094,NA,,,, +Ia7,,1950,EA094,59,,,Gray (1999); Murdock (1957), +Ia8,,,EA094,NA,,,, +Ia9,,,EA094,NA,,,, +Ib1,"Ulu Ai Group, Baleh",1950,EA094,59,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib2,Town and environs of Pare; Modjokuto,1950,EA094,49,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ib3,Tihingan Village,1950,EA094,59,,,Gray (1999); Murdock (1957), +Ib4,with special reference to the Toba group,1930,EA094,13,,,Gray (1999); Murdock (1957), +Ib5,with special reference to the village of Sensuron,1920,EA094,11,,,Gray (1999); Murdock (1957), +Ib6,,1920,EA094,69,,,Gray (1999); Murdock (1957), +Ib7,with special reference to those of North Pageh,1920,EA094,99,,,Gray (1999); Murdock (1957), +Ib8,,,EA094,NA,,,, +Ib9,,,EA094,NA,,,, +Ic1,Borongloe,1940,EA094,13,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ic10,,,EA094,NA,,,, +Ic11,,,EA094,NA,,,, +Ic12,,,EA094,NA,,,, +Ic13,,,EA094,NA,,,, +Ic2,,,EA094,NA,,,, +Ic3,with special reference to the Mountain Belu,1950,EA094,26,,,Gray (1999); Murdock (1957), +Ic4,,,EA094,NA,,,, +Ic5,Bare'e subgroup,1910,EA094,49,,,Gray (1999); Murdock (1957), +Ic6,,1930,EA094,11,,,Gray (1999); Murdock (1957), +Ic7,,,EA094,NA,,,, +Ic8,,,EA094,NA,,,, +Ic9,,,EA094,NA,,,, +Id1,Alice Springs and environs,1900,EA094,11,,,Gray (1999); Murdock (1957), +Id10,,,EA094,NA,,,, +Id11,,,EA094,NA,,,, +Id12,,,EA094,NA,,,, +Id13,,,EA094,NA,,,, +Id2,,1930,EA094,11,,,Gray (1999); Murdock (1957), +Id3,,,EA094,NA,,,, +Id4,,1900,EA094,13,,,Gray (1999); Murdock (1957), +Id5,,1910,EA094,13,,,Gray (1999); Murdock (1957), +Id6,,,EA094,NA,,,, +Id7,,,EA094,NA,,,, +Id8,,,EA094,NA,,,, +Id9,,,EA094,NA,,,, +Ie1,"Botukebo village, Kamu Valley, Ijaaj-Pigome confederacy",1950,EA094,59,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie10,,,EA094,NA,,,, +Ie11,,,EA094,NA,,,, +Ie12,,,EA094,NA,,,, +Ie13,,,EA094,NA,,,, +Ie14,,,EA094,NA,,,, +Ie15,,,EA094,NA,,,, +Ie16,,,EA094,NA,,,, +Ie17,,,EA094,NA,,,, +Ie18,,,EA094,NA,,,, +Ie19,,,EA094,NA,,,, +Ie2,,,EA094,NA,,,, +Ie20,,,EA094,NA,,,, +Ie21,,,EA094,NA,,,, +Ie22,,,EA094,NA,,,, +Ie23,,,EA094,NA,,,, +Ie24,,,EA094,NA,,,, +Ie25,,,EA094,NA,,,, +Ie26,,,EA094,NA,,,, +Ie27,,,EA094,NA,,,, +Ie28,,,EA094,NA,,,, +Ie29,,,EA094,NA,,,, +Ie3,with special reference to the Mountain Arapesh (Alitoa),1930,EA094,99,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie30,,,EA094,NA,,,, +Ie31,,,EA094,NA,,,, +Ie32,,,EA094,NA,,,, +Ie33,,,EA094,NA,,,, +Ie34,,,EA094,NA,,,, +Ie35,,,EA094,NA,,,, +Ie36,,,EA094,NA,,,, +Ie37,,,EA094,NA,,,, +Ie38,,,EA094,NA,,,, +Ie39,,,EA094,NA,,,, +Ie4,"Dap, Wonevaro district",1930,EA094,99,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ie5,,1930,EA094,12,,,Gray (1999); Murdock (1957), +Ie6,,1930,EA094,99,,,Gray (1999); Murdock (1957), +Ie7,,,EA094,NA,,,, +Ie8,,,EA094,NA,,,, +Ie9,,,EA094,NA,,,, +If1,"Ulimang, Badeldaob Island",1940,EA094,25,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +If10,,,EA094,NA,,,, +If11,,,EA094,NA,,,, +If12,,,EA094,NA,,,, +If13,,,EA094,NA,,,, +If14,,,EA094,NA,,,, +If15,,,EA094,NA,,,, +If16,,,EA094,NA,,,, +If17,,,EA094,NA,,,, +If2,Romonum Island,1940,EA094,26,,,Gray (1999); Murdock (1957), +If3,With special reference to the inhabitants of Majuro,1940,EA094,99,,,Gray (1999); Murdock (1957), +If4,with special reference to the inhabitants of Ifaluk atoll,1940,EA094,69,,,Gray (1999); Murdock (1957), +If5,,1910,EA094,26,,,Gray (1999); Murdock (1957), +If6,,,EA094,NA,,,, +If7,with special reference to the inhabitants of Onotoa,1940,EA094,69,,,Gray (1999); Murdock (1957), +If8,,,EA094,NA,,,, +If9,,,EA094,NA,,,, +Ig1,Northeastern group,1940,EA094,59,,,Gray (1999); Murdock (1957), +Ig10,,,EA094,NA,,,, +Ig11,,,EA094,NA,,,, +Ig12,,,EA094,NA,,,, +Ig13,,,EA094,NA,,,, +Ig14,,,EA094,NA,,,, +Ig15,,,EA094,NA,,,, +Ig16,,,EA094,NA,,,, +Ig17,,,EA094,NA,,,, +Ig18,,,EA094,NA,,,, +Ig19,,,EA094,NA,,,, +Ig2,Kiriwina Island,1910,EA094,24,,,Gray (1999); Murdock (1957), +Ig20,,,EA094,NA,,,, +Ig21,,,EA094,NA,,,, +Ig3,,1930,EA094,24,,,Gray (1999); Murdock (1957), +Ig4,Lesu Village,1930,EA094,59,,,Gray (1999); Murdock (1957), +Ig5,,1920,EA094,99,,,Gray (1999); Murdock (1957), +Ig6,,1900,EA094,13,,,Gray (1999); Murdock (1957), +Ig7,,1950,EA094,99,,,Gray (1999); Murdock (1957), +Ig8,,,EA094,NA,,,, +Ig9,Peri Village,1920,EA094,13,,,Gray (1999); Murdock (1957), +Ih1,,1890,EA094,59,,,Gray (1999); Murdock (1957), +Ih10,,,EA094,NA,,,, +Ih11,,,EA094,NA,,,, +Ih12,,,EA094,NA,,,, +Ih13,,,EA094,NA,,,, +Ih14,,,EA094,NA,,,, +Ih2,Malekula Island,1930,EA094,11,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih3,,,EA094,NA,,,, +Ih4,Lau Island,1920,EA094,12,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Ih5,Neje Chiefdom,1860,EA094,11,,,Gray (1999); Murdock (1957), +Ih6,,,EA094,NA,,,, +Ih7,,1910,EA094,11,,,Gray (1999); Murdock (1957), +Ih8,,,EA094,NA,,,, +Ih9,,,EA094,NA,,,, +Ii1,with special reference to American Samoa,1920,EA094,11,,,Gray (1999); Murdock (1957), +Ii10,,,EA094,NA,,,, +Ii12,,,EA094,NA,,,, +Ii13,,,EA094,NA,,,, +Ii14,,,EA094,NA,,,, +Ii2,Ravenga District,1930,EA094,13,,,Gray (1999); Murdock (1957), +Ii3,,1930,EA094,11,,,Gray (1999); Murdock (1957), +Ii4,,,EA094,NA,,,, +Ii5,,,EA094,NA,,,, +Ii6,with special reference to Atafu,1900,EA094,13,,,Gray (1999); Murdock (1957), +Ii7,,,EA094,NA,,,, +Ii8,,,EA094,NA,,,, +Ii9,,,EA094,NA,,,, +Ij1,,1820,EA094,12,,,Gray (1999); Murdock (1957), +Ij10,,,EA094,NA,,,, +Ij2,Nga Puhi Tribe,1820,EA094,11,,,Gray (1999); Murdock (1957), +Ij3,,1900,EA094,11,,,Gray (1999); Murdock (1957), +Ij4,,1850,EA094,11,,,Gray (1999); Murdock (1957), +Ij5,,1900,EA094,11,,,Gray (1999); Murdock (1957), +Ij6,,1800,EA094,11,,,Gray (1999); Murdock (1957), +Ij7,,,EA094,NA,,,, +Ij8,,,EA094,NA,,,, +Ij9,,,EA094,NA,,,, +Na1,,,EA094,NA,,,, +Na10,,,EA094,NA,,,, +Na11,,,EA094,NA,,,, +Na12,,,EA094,NA,,,, +Na13,,,EA094,NA,,,, +Na14,,,EA094,NA,,,, +Na15,,,EA094,NA,,,, +Na16,,,EA094,NA,,,, +Na17,,,EA094,NA,,,, +Na19,,,EA094,NA,,,, +Na2,,,EA094,NA,,,, +Na20,,,EA094,NA,,,, +Na21,,,EA094,NA,,,, +Na22,,,EA094,NA,,,, +Na23,,,EA094,NA,,,, +Na24,,,EA094,NA,,,, +Na25,,,EA094,NA,,,, +Na26,,,EA094,NA,,,, +Na27,,,EA094,NA,,,, +Na28,,,EA094,NA,,,, +Na29,,,EA094,NA,,,, +Na3,,,EA094,NA,,,, +Na30,,,EA094,NA,,,, +Na31,,,EA094,NA,,,, +Na32,,,EA094,NA,,,, +Na33,,,EA094,NA,,,, +Na34,a band of Northern Saulteaux very closely akin to Na33 (Berens River band) but described as of a much more recent date,1940,EA094,59,,,Gray (1999); Murdock (1957), +Na35,,,EA094,NA,,,, +Na36,,,EA094,NA,,,, +Na37,,,EA094,NA,,,, +Na38,,,EA094,NA,,,, +Na39,,,EA094,NA,,,, +Na4,Upper Liard and Dease River Group,1920,EA094,99,,,Gray (1999); Murdock (1957), +Na40,,,EA094,NA,,,, +Na41,,,EA094,NA,,,, +Na42,,,EA094,NA,,,, +Na43,,,EA094,NA,,,, +Na44,,,EA094,NA,,,, +Na45,,,EA094,NA,,,, +Na5,"with special reference to the northern bands (Barren Ground, Ungava, White Whale River)",1890,EA094,59,,,Gray (1999); Murdock (1957), +Na6,,1930,EA094,59,,,Gray (1999); Murdock (1957), +Na7,with special reference to the Attawapiskat Swampy Cree,1900,EA094,59,,,Gray (1999); Murdock (1957), +Na8,,,EA094,NA,,,, +Na9,,,EA094,NA,,,, +Nb1,Masset Town,1890,EA094,25,,,Gray (1999); Murdock (1957), +Nb10,,,EA094,NA,,,, +Nb11,,,EA094,NA,,,, +Nb12,,,EA094,NA,,,, +Nb13,,,EA094,NA,,,, +Nb14,,,EA094,NA,,,, +Nb15,,,EA094,NA,,,, +Nb16,,,EA094,NA,,,, +Nb17,,,EA094,NA,,,, +Nb18,,,EA094,NA,,,, +Nb19,,,EA094,NA,,,, +Nb2,,,EA094,NA,,,, +Nb20,,,EA094,NA,,,, +Nb21,,,EA094,NA,,,, +Nb22,,,EA094,NA,,,, +Nb23,,,EA094,NA,,,, +Nb24,,,EA094,NA,,,, +Nb25,,,EA094,NA,,,, +Nb26,,,EA094,NA,,,, +Nb27,,,EA094,NA,,,, +Nb28,,,EA094,NA,,,, +Nb29,,,EA094,NA,,,, +Nb3,,,EA094,NA,,,, +Nb30,,,EA094,NA,,,, +Nb31,,,EA094,NA,,,, +Nb32,,,EA094,NA,,,, +Nb33,,,EA094,NA,,,, +Nb34,,,EA094,NA,,,, +Nb35,,,EA094,NA,,,, +Nb36,,,EA094,NA,,,, +Nb37,,,EA094,NA,,,, +Nb38,,,EA094,NA,,,, +Nb39,,,EA094,NA,,,, +Nb4,,1850,EA094,99,,,Gray (1999); Murdock (1957), +Nb5,Eyak Tribe,1890,EA094,25,,,Gray (1999); Murdock (1957), +Nb6,,1870,EA094,59,,,Gray (1999); Murdock (1957), +Nb7,,,EA094,NA,,,, +Nb8,,,EA094,NA,,,, +Nb9,,,EA094,NA,,,, +Nc1,,1850,EA094,11,,,Gray (1999); Murdock (1957), +Nc10,,,EA094,NA,,,, +Nc11,,,EA094,NA,,,, +Nc12,,,EA094,NA,,,, +Nc13,,,EA094,NA,,,, +Nc14,,,EA094,NA,,,, +Nc15,,,EA094,NA,,,, +Nc16,,,EA094,NA,,,, +Nc17,,,EA094,NA,,,, +Nc18,,,EA094,NA,,,, +Nc19,,,EA094,NA,,,, +Nc2,,1850,EA094,11,,,Gray (1999); Murdock (1957), +Nc20,,,EA094,NA,,,, +Nc21,,,EA094,NA,,,, +Nc22,,,EA094,NA,,,, +Nc23,,,EA094,NA,,,, +Nc24,,,EA094,NA,,,, +Nc25,,,EA094,NA,,,, +Nc26,,,EA094,NA,,,, +Nc27,,,EA094,NA,,,, +Nc28,,,EA094,NA,,,, +Nc29,,,EA094,NA,,,, +Nc3,with special reference to those of the Northern Foothills,1850,EA094,12,,,Gray (1999); Murdock (1957), +Nc30,,,EA094,NA,,,, +Nc31,,,EA094,NA,,,, +Nc32,,,EA094,NA,,,, +Nc33,,,EA094,NA,,,, +Nc34,,,EA094,NA,,,, +Nc4,,1860,EA094,11,,,Gray (1999); Murdock (1957), +Nc5,with special reference to the Central Sierra group,1850,EA094,11,,,Gray (1999); Murdock (1957), +Nc6,with special reference to the Southern Diegueno,1850,EA094,11,,,Gray (1999); Murdock (1957), +Nc7,,1850,EA094,11,,,Gray (1999); Murdock (1957), +Nc8,,,EA094,NA,,,, +Nc9,,,EA094,NA,,,, +Nd1,,1850,EA094,11,,,Gray (1999); Murdock (1957), +Nd10,,,EA094,NA,,,, +Nd11,,,EA094,NA,,,, +Nd12,,,EA094,NA,,,, +Nd13,,,EA094,NA,,,, +Nd14,,,EA094,NA,,,, +Nd15,,,EA094,NA,,,, +Nd16,,,EA094,NA,,,, +Nd17,,,EA094,NA,,,, +Nd18,,,EA094,NA,,,, +Nd19,,,EA094,NA,,,, +Nd2,,1860,EA094,11,,,Gray (1999); Murdock (1957), +Nd20,,,EA094,NA,,,, +Nd21,,,EA094,NA,,,, +Nd22,,,EA094,NA,,,, +Nd23,,,EA094,NA,,,, +Nd24,,,EA094,NA,,,, +Nd25,,,EA094,NA,,,, +Nd26,,,EA094,NA,,,, +Nd27,,,EA094,NA,,,, +Nd28,,,EA094,NA,,,, +Nd29,,,EA094,NA,,,, +Nd3,Havasupai Tribe,1870,EA094,13,,,Gray (1999); Murdock (1957), +Nd30,,,EA094,NA,,,, +Nd31,,,EA094,NA,,,, +Nd32,,,EA094,NA,,,, +Nd33,,,EA094,NA,,,, +Nd34,,,EA094,NA,,,, +Nd35,,,EA094,NA,,,, +Nd36,,,EA094,NA,,,, +Nd37,,,EA094,NA,,,, +Nd38,,,EA094,NA,,,, +Nd39,,,EA094,NA,,,, +Nd4,,,EA094,NA,,,, +Nd40,,,EA094,NA,,,, +Nd41,,,EA094,NA,,,, +Nd42,,,EA094,NA,,,, +Nd43,,,EA094,NA,,,, +Nd44,,,EA094,NA,,,, +Nd45,,,EA094,NA,,,, +Nd46,,,EA094,NA,,,, +Nd47,,,EA094,NA,,,, +Nd48,,,EA094,NA,,,, +Nd49,,,EA094,NA,,,, +Nd5,,1870,EA094,11,,,Gray (1999); Murdock (1957), +Nd50,,,EA094,NA,,,, +Nd51,,,EA094,NA,,,, +Nd52,,,EA094,NA,,,, +Nd53,,,EA094,NA,,,, +Nd54,,,EA094,NA,,,, +Nd55,,,EA094,NA,,,, +Nd56,,,EA094,NA,,,, +Nd57,,,EA094,NA,,,, +Nd58,,,EA094,NA,,,, +Nd59,,,EA094,NA,,,, +Nd6,,1850,EA094,11,,,Gray (1999); Murdock (1957), +Nd60,,,EA094,NA,,,, +Nd61,,,EA094,NA,,,, +Nd62,,,EA094,NA,,,, +Nd63,,,EA094,NA,,,, +Nd64,,,EA094,NA,,,, +Nd65,,,EA094,NA,,,, +Nd66,,,EA094,NA,,,, +Nd67,,,EA094,NA,,,, +Nd7,Lower or eastern branch,1880,EA094,59,,,Gray (1999); Murdock (1957), +Nd8,,,EA094,NA,,,, +Nd9,,,EA094,NA,,,, +Ne1,Gros Ventre Tribe,1880,EA094,59,,,Gray (1999); Murdock (1957), +Ne10,,,EA094,NA,,,, +Ne11,,,EA094,NA,,,, +Ne12,,,EA094,NA,,,, +Ne13,,,EA094,NA,,,, +Ne14,,,EA094,NA,,,, +Ne15,,,EA094,NA,,,, +Ne16,,,EA094,NA,,,, +Ne17,,,EA094,NA,,,, +Ne18,,,EA094,NA,,,, +Ne19,,,EA094,NA,,,, +Ne2,,1870,EA094,59,,,Gray (1999); Murdock (1957), +Ne20,,,EA094,NA,,,, +Ne21,,,EA094,NA,,,, +Ne3,Comanche Tribe,1870,EA094,13,,,Gray (1999); Murdock (1957), +Ne4,,1870,EA094,59,,,Gray (1999); Murdock (1957), +Ne5,,1860,EA094,59,,,Gray (1999); Murdock (1957), +Ne6,,1830,EA094,49,,,Gray (1999); Murdock (1957), +Ne7,,1880,EA094,59,,,Gray (1999); Murdock (1957), +Ne8,,1870,EA094,59,,,Gray (1999); Murdock (1957), +Ne9,,,EA094,NA,,,, +Nf10,,,EA094,NA,,,, +Nf11,,,EA094,NA,,,, +Nf12,,,EA094,NA,,,, +Nf13,,,EA094,NA,,,, +Nf14,,,EA094,NA,,,, +Nf15,,,EA094,NA,,,, +Nf2,,1850,EA094,13,,,Gray (1999); Murdock (1957), +Nf3,Omaha Tribe,1850,EA094,59,,,Gray (1999); Murdock (1957), +Nf4,,1720,EA094,13,,,Gray (1999); Murdock (1957), +Nf5,,1860,EA094,59,,,Gray (1999); Murdock (1957), +Nf6,Skidi Band or subtribe,1867,EA094,11,,,Gray (1999); Murdock (1957), +Nf7,Tama Reservation,1830,EA094,11,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nf8,,1770,EA094,11,,,Gray (1999); Murdock (1957), +Nf9,,,EA094,NA,,,, +Ng1,Bear and Cord Subtribes,1640,EA094,24,,,Gray (1999); Murdock (1957), +Ng10,,,EA094,NA,,,, +Ng11,,,EA094,NA,,,, +Ng12,,,EA094,NA,,,, +Ng13,,,EA094,NA,,,, +Ng14,,,EA094,NA,,,, +Ng15,,,EA094,NA,,,, +Ng2,,,EA094,NA,,,, +Ng3,Upper division in Alabama,1750,EA094,59,,,Gray (1999); Murdock (1957), +Ng4,,,EA094,NA,,,, +Ng5,,1750,EA094,26,,,Gray (1999); Murdock (1957), +Ng6,with special reference to the Munsee,1700,EA094,24,,,Gray (1999); Murdock (1957), +Ng7,Natchez Kingdom,1700,EA094,26,,,Gray (1999); Murdock (1957), +Ng8,,,EA094,NA,,,, +Ng9,,,EA094,NA,,,, +Nh1,Central band,1880,EA094,59,,,Gray (1999); Murdock (1957), +Nh10,,,EA094,NA,,,, +Nh11,,,EA094,NA,,,, +Nh12,,,EA094,NA,,,, +Nh13,,,EA094,NA,,,, +Nh14,,,EA094,NA,,,, +Nh15,,,EA094,NA,,,, +Nh16,,,EA094,NA,,,, +Nh17,,,EA094,NA,,,, +Nh18,,,EA094,NA,,,, +Nh19,,,EA094,NA,,,, +Nh2,,1950,EA094,69,,,Gray (1999); Murdock (1957), +Nh20,,,EA094,NA,,,, +Nh21,,,EA094,NA,,,, +Nh22,,,EA094,NA,,,, +Nh23,,,EA094,NA,,,, +Nh24,,,EA094,NA,,,, +Nh25,,,EA094,NA,,,, +Nh26,,,EA094,NA,,,, +Nh27,,,EA094,NA,,,, +Nh3,,1930,EA094,59,,,Gray (1999); Murdock (1957), +Nh4,Pueblo,1910,EA094,69,,,Gray (1999); Murdock (1957), +Nh5,,1850,EA094,13,,,Gray (1999); Murdock (1957), +Nh6,,1890,EA094,49,,,Gray (1999); Murdock (1957), +Nh7,,1890,EA094,59,,,Gray (1999); Murdock (1957), +Nh8,,1920,EA094,26,,,Gray (1999); Murdock (1957), +Nh9,,,EA094,NA,,,, +Ni1,,,EA094,NA,,,, +Ni2,,1930,EA094,69,,,Gray (1999); Murdock (1957), +Ni3,Huichol Tribe,1920,EA094,49,,,Gray (1999); Murdock (1957), +Ni4,,,EA094,NA,,,, +Ni5,,,EA094,NA,,,, +Ni6,,,EA094,NA,,,, +Ni7,,,EA094,NA,,,, +Ni8,,,EA094,NA,,,, +Ni9,,,EA094,NA,,,, +Nj1,Ojitlan,1940,EA094,49,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Nj10,,,EA094,NA,,,, +Nj11,,,EA094,NA,,,, +Nj12,,,EA094,NA,,,, +Nj13,,,EA094,NA,,,, +Nj14,,,EA094,NA,,,, +Nj2,City & environs of Tenochtitlan,1520,EA094,11,,,Gray (1999); Murdock (1957), +Nj3,,,EA094,NA,,,, +Nj4,,1940,EA094,11,,,Gray (1999); Murdock (1957), +Nj5,,,EA094,NA,,,, +Nj6,,,EA094,NA,,,, +Nj7,,,EA094,NA,,,, +Nj8,,,EA094,NA,,,, +Nj9,,,EA094,NA,,,, +Sa1,San Blas Archipelago,1940,EA094,49,,,Gray (1999); Murdock (1957), +Sa10,,,EA094,NA,,,, +Sa11,,,EA094,NA,,,, +Sa12,,,EA094,NA,,,, +Sa13,,,EA094,NA,,,, +Sa14,,,EA094,NA,,,, +Sa15,,,EA094,NA,,,, +Sa16,,,EA094,NA,,,, +Sa17,,,EA094,NA,,,, +Sa2,,,EA094,NA,,,, +Sa3,,1930,EA094,39,,,Gray (1999); Murdock (1957), +Sa4,,,EA094,NA,,,, +Sa5,,1950,EA094,25,,,Gray (1999); Murdock (1957), +Sa6,,1520,EA094,11,,,Gray (1999); Murdock (1957), +Sa7,,1940,EA094,39,,,Gray (1999); Murdock (1957), +Sa8,,,EA094,NA,,,, +Sa9,Vicinity: Cape Gracias a Dios,1920,EA094,49,,,Gray (1999); Murdock (1957), +Sb1,Dominica Island,1650,EA094,59,,,Gray (1999); Murdock (1957), +Sb2,,,EA094,NA,,,, +Sb3,,,EA094,NA,,,, +Sb4,,,EA094,NA,,,, +Sb5,,,EA094,NA,,,, +Sb6,Goajiro Tribe,1940,EA094,24,,,Gray (1999); Murdock (1957), +Sb7,,,EA094,NA,,,, +Sb8,,,EA094,NA,,,, +Sb9,,,EA094,NA,,,, +Sc1,,1950,EA094,59,,,Gray (1999); Murdock (1957), +Sc10,,,EA094,NA,,,, +Sc11,,,EA094,NA,,,, +Sc12,,,EA094,NA,,,, +Sc13,,,EA094,NA,,,, +Sc14,,,EA094,NA,,,, +Sc15,,,EA094,NA,,,, +Sc16,,,EA094,NA,,,, +Sc17,,,EA094,NA,,,, +Sc18,,,EA094,NA,,,, +Sc2,,1950,EA094,26,,,Gray (1999); Murdock (1957), +Sc3,Barama River,1930,EA094,59,,,Gray (1999); Murdock (1957), +Sc4,with special reference to the non-agricultural groups,1950,EA094,11,,,Gray (1999); Murdock (1957), +Sc5,,,EA094,NA,,,, +Sc6,Upper Suriname River; Akwa on Morini River,1920,EA094,25,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sc7,,,EA094,NA,,,, +Sc8,,,EA094,NA,,,, +Sc9,,,EA094,NA,,,, +Sd1,Cabrura village,1950,EA094,13,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sd2,,,EA094,NA,,,, +Sd3,,1920,EA094,59,,,Gray (1999); Murdock (1957), +Sd4,,,EA094,NA,,,, +Sd5,,,EA094,NA,,,, +Sd6,,,EA094,NA,,,, +Sd7,,,EA094,NA,,,, +Sd8,,,EA094,NA,,,, +Sd9,,,EA094,NA,,,, +Se1,Vicinity of the Rio Blanco,1940,EA094,11,,,Gray (1999); Murdock (1957), +Se10,,,EA094,NA,,,, +Se11,,,EA094,NA,,,, +Se12,,,EA094,NA,,,, +Se2,,,EA094,NA,,,, +Se3,,1930,EA094,99,,,Gray (1999); Murdock (1957), +Se4,,1940,EA094,49,,,Gray (1999); Murdock (1957), +Se5,,,EA094,NA,,,, +Se6,,1910,EA094,11,,,Gray (1999); Murdock (1957), +Se7,,,EA094,NA,,,, +Se8,,,EA094,NA,,,, +Se9,,,EA094,NA,,,, +Sf1,City and environs of Cuzco,1530,EA094,11,,,Gray (1999); Murdock (1957), +Sf2,Chucuito Clan community in Peru,1940,EA094,99,,,Gray (1999); Murdock (1957), +Sf3,Rio Cayapas Basin,1910,EA094,11,,,Gray (1999); Murdock (1957), +Sf4,,,EA094,NA,,,, +Sf5,,,EA094,NA,,,, +Sf6,,1540,EA094,24,,,Gray (1999); Murdock (1957), +Sf7,,,EA094,NA,,,, +Sf8,,,EA094,NA,,,, +Sf9,,,EA094,NA,,,, +Sg1,Eastern and central,1870,EA094,99,,,Gray (1999); Murdock (1957), +Sg2,Cholchol,1880,EA094,13,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sg3,with special reference to the Shelknam,1880,EA094,59,,,Gray (1999); Murdock (1957), +Sg4,Equestrian,1870,EA094,11,,,Gray (1999); Murdock (1957), +Sg5,with special reference to the southern bands,1900,EA094,99,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Sh1,,,EA094,NA,,,, +Sh2,,1850,EA094,13,,,Gray (1999); Murdock (1957), +Sh3,Those in contact with mission,1800,EA094,11,,,Gray (1999); Murdock (1957), +Sh4,,,EA094,NA,,,, +Sh5,,,EA094,NA,,,, +Sh6,,,EA094,NA,,,, +Sh7,,1900,EA094,13,,,Gray (1999); Murdock (1957), +Sh8,,,EA094,NA,,,, +Sh9,,,EA094,NA,,,, +Si1,Kejara,1920,EA094,26,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si10,,,EA094,NA,,,, +Si2,Village of Vanivani,1930,EA094,11,,,Gray (1999); Murdock (1957), +Si3,Simao Lopes,1940,EA094,59,,,Gray (1999); Murdock (1957),"Special reference information is from Ember et al., 1992, with updates since 1992 by Carol Ember." +Si4,Cocozu Group,1940,EA094,59,,,Gray (1999); Murdock (1957), +Si5,,1940,EA094,13,,,Gray (1999); Murdock (1957), +Si6,,1900,EA094,13,,,Gray (1999); Murdock (1957), +Si7,,,EA094,NA,,,, +Si8,,,EA094,NA,,,, +Si9,,,EA094,NA,,,, +Sj1,,1950,EA094,13,,,Gray (1999); Murdock (1957), +Sj10,,,EA094,NA,,,, +Sj11,,,EA094,NA,,,, +Sj2,,1850,EA094,13,,,Gray (1999); Murdock (1957), +Sj3,Duque de Caxias Reservation,1910,EA094,99,,,Gray (1999); Murdock (1957), +Sj4,Ramcocamecra or Canella,1930,EA094,99,,,Gray (1999); Murdock (1957), +Sj5,Naknenuk subtribe,1880,EA094,59,,,Gray (1999); Murdock (1957), +Sj6,,,EA094,NA,,,, +Sj7,,1920,EA094,26,,,Gray (1999); Murdock (1957), +Sj8,Hinterland of Rio de Janeiro,1600,EA094,13,,,Gray (1999); Murdock (1957), +Sj9,,,EA094,NA,,,, +ch12,,,EA094,NA,,,, +ch13,,,EA094,NA,,,, +ch14,,,EA094,NA,,,, +ch15,,,EA094,NA,,,, +ch16,,,EA094,NA,,,, +ch17,,,EA094,NA,,,, +ch18,,,EA094,NA,,,, +ch19,,,EA094,NA,,,, +ch20,,,EA094,NA,,,, +ch21,,,EA094,NA,,,, +ch22,,,EA094,NA,,,, +ch23,,,EA094,NA,,,, +ch24,,,EA094,NA,,,, +ch25,,,EA094,NA,,,, +ch26,,,EA094,NA,,,, +ch27,,,EA094,NA,,,, +ch28,,,EA094,NA,,,, +ec12,,,EA094,NA,,,, +ec13,,,EA094,NA,,,, +ec14,,,EA094,NA,,,, +ec15,,,EA094,NA,,,, +ec16,,,EA094,NA,,,, +ec17,,,EA094,NA,,,, +ec18,,,EA094,NA,,,, +ec19,,,EA094,NA,,,, +ec20,,,EA094,NA,,,, +ec21,,,EA094,NA,,,, diff --git a/raw/societies.csv b/raw/societies.csv new file mode 100644 index 0000000..71b444a --- /dev/null +++ b/raw/societies.csv @@ -0,0 +1,1292 @@ +id,xd_id,pref_name_for_society,glottocode,ORIG_name_and_ID_in_this_dataset,alt_names_by_society,main_focal_year,HRAF_name_ID,HRAF_link,origLat,origLong,Lat,Long,Comment,glottocode_comment +Aa1,xd1,!Kung,juho1239,Kung (Aa1),"Kung Bushmen, !Kung (Was Nyae), Was Nyae",1950,San (FX10),http://ehrafworldcultures.yale.edu/collection?owc=FX10,-20,21,-20,21,Original, +Ab1,xd10,Herero,here1253,Herero (Ab1),"Damara, Ovaherero",1900,,,-21,16,-21,16,Original, +Ad31,xd100,Duruma,duru1249,Duruma (Ad31),Waduruma,1910,,,-4,39,-4,39,Original, +Ad32,xd101,Giriama,giry1241,Giriama (Ad32),"Kiriama, Wagiryama",1900,,,-3,40,-3,40,Original, +Ad33,xd102,Pokomo,poko1261,Pokomo (Ad33),Wapokomo,1900,,,-1,40,-1,40,Original, +Na3,xd1022,Copper Inuit,copp1244,Copper Eskimo (Na3),"Kitlinermiut, Copper Eskimo",1920,Copper Eskimo (ND08),http://ehrafworldcultures.yale.edu/collection?owc=ND08,69,-110,69,-110,Original, +Na22,xd1025,Iglulik Inuit,west2618,Iglulik (Na22),"Igloolik, Iglulingmiut",1920,,,70,-82,70,-82,Original, +Na1,xd1026,Nabesna,uppe1437,Nabesna (Na1),Upper Tanana Indians,1930,,,63,-141,63,-141,Original, +Na10,xd1027,Chugach,chug1254,Chugach (Na10),"Chugachigmiut, Chugash",1930,South Alaskan Eskimo (NA10),http://ehrafworldcultures.yale.edu/collection?owc=NA10,60,-147,60.72,-146.49,Revised,"3Oct2018 Assigned to dialect chug1254 (language does not change) to help differentiate this society from the closely related Koniag, also now mapped to language paci1278." +Na11,xd1028,Sivokakmeit,cent2128,Sivokakmeit (Na11),St. Lawrence Island Inuit,1920,,,63,-170,63.34,-170.3,Revised,"4Oct2018 - Note that while EA society Na11 has always been linked to xd1028, Binford society B379 was originally linked to xd1020 (and, thus, linked to the dialect poin1245 and language nort2943. The update to Glottolog 3.3.2 forced re-mapping of xd1028 from dialect aiwa1238 (which no longer exists) to language cent2128 (always the language-level match for this xd_id)." +Na12,xd1029,Nunamiut,nort2944,Nunamiut (Na12),"Inland North Alaskan Eskimo, Nunamiut Eskimo",1950,,,68,-152,68,-152,Original,"1Oct2018 - mapped to a new dialect (nort2944) of the same language (nort2943). HH: Belongs to language North Alaskan Inupiatun [nort2943] and more specifically to the North Slope Inupiatun [nort2944] dialect. Note that the subdialect to which it was previously mapped (Anaktuvuk Pass, anak1241) does not exist in Glottolog version 3.3.2. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +Ad34,xd103,Kamba,kamb1297,Kamba (Ad34),"Akamba, Wakamba",1910,,,-2,38,-2,38,Original, +Na13,xd1030,Nunatsiarmiut,baff1240,Baffinland (Na13),"Baffin Island Inuit, Baffinland",1880,,,65,-65,65.24,-64.63,Revised, +Na14,xd1031,Inughuit (Northern Greenland),pola1254,Polar Eskimo (Na14),"Polar Eskimo, Arctic Highlanders, Smith Sound Inuit, Smith Sound Eskimo",1880,,,78,-70,78,-70,Original,"Note 8Feb2018: Glottocode changed to [ike] based on note from HH: ""The Polar Eskimo do not speak a language intelligible to Kalaalisut and had until recent times no contact or knowledge of the Kalaalisut further south. The language is intelligible to North Baffin Inuktitut so Glottolog counts Polar Eskimo as Eastern Canadian Inuktitut [ike]. Furthermore, Oswalt 1963 is listed as a reference to Polar Eskimo but concerns a completely different people in Alaska who speak Yupik-Central [esu].""" +Na15,xd1032,Tlicho,dogr1252,Dogrib (Na15),Dogrib,1860,,,63,-117,63,-117,Original, +Na16,xd1033,Délįne,nort2942,Satudene (Na16),"Bear Lake Dene, Satudene, Great Bear Lake People, Sahtu, Sahtu Dene",1860,,,65,-119,65,-119,Original, +Na17,xd1034,DeneTha,sout2959,Slave (Na17),"Slave, Deh Cho (Southern Slavey), Slavey, Dene (distinguish from speakers of the Dene language)",1860,,,61,-120,61,-120,Original, +Na19,xd1035,Dakelh,carr1249,Carrier (Na19),"Carrier, Takulli",1880,,,54,-124,54,-124,Original, +Na2,xd1036,Tareumiut,nort2944,Tareumiut (Na2),"Tagiumiut, Point Barrow Eskimo, Barrow",1880,,,71,-157,71,-157,Original, +Na20,xd1037,Kutchin,gwic1235,Kutchin (Na20),"Gwich'in, Loucheux",1880,,,66,-135,66,-135,Original, +Na21,xd1038,Caribou Inuit,cari1277,Caribou Eskimo (Na21),Caribou Eskimo,1900,,,63,-96,63,-96,Original, +Na23,xd1039,Labrador Inuit,labr1244,Labrador Eskimo (Na23),"Sukinninmiut, Labrador Eskimo",1890,,,58,-65,58,-65,Original, +Ad35,xd104,Meru,meru1245,Meru (Ad35),,1940,,,0,35,0,35,Original,"12Nov2018 - changed back to Meru meru1245 [mer], after looking at Murdock's primary sources in more detail. While the latter two refs do focus on the ""Kikuyu"" in general terms, within the Kikuyu they clearly differentiated the Kikuyu and Meru. (Previous note, based on comment from HH: ""8Feb2018 - Note possible mix, refs appear to refer to both kik and mer; kik assigned because majority of references refer to kik. [HH: ""The latter two refs deal with Kikuyu [kik] which is a different lg from Meru [mer]"".]" +Na24,xd1040,Tasiilaq,tunu1234,Angmagsalik (Na24),"Angmagsalik (East Greenland), Ammassalik, East Greenland Eskimo, Polar Eskimo",1880,,,66,-37,66,-37,Original,Note 8Feb2018: Changed based on note from HH: East Greenlandic is Tunumiisiut [tunu1234] in Glottolog. +Na25,xd1041,Kalaallit (West Greenland),kala1399,Greenlanders (Na25),"West Greenland Eskimo, West Greenland Inuit",1910,,,69,-53,68.66,-51.22,Revised,Note 8Feb2018: Glottocode updated from west2617 to kala1399 +Na26,xd1042,Dena'ina,tana1289,Tanaina (Na26),Tanaina,1870,,,62,-144,62,-144,Original, +Na27,xd1043,Tahltan,tahl1239,Tahltan (Na27),Southwestern Nahane,1870,,,58,-131,58,-131,Original, +Na28,xd1044,Sekani,seka1250,Sekani (Na28),"Tsek'ene, Sicauni",1880,,,56,-123,56,-123,Original, +Na29,xd1045,Beaver,beav1236,Beaver (Na29),"Denezaa, Tsattine",1850,,,58,-117,58,-117,Original, +Na30,xd1046,Dene,chip1261,Chipewyan (Na30),Chipewyan,1880,Chipewyan (ND07),http://ehrafworldcultures.yale.edu/collection?owc=ND07,60,-105,60,-105,Original, +Na31,xd1047,Eastern Cree,sout2978,Eastern Cree (Na31),,1850,,,51,-85,51,-85,Original, +Na32,xd1048,Montagnais,mont1268,Montagnais (Na32),"Innu, Naskapi",1880,Montagnais (NH06),http://ehrafworldcultures.yale.edu/collection?owc=NH06,48,-72,48,-72,Original,"Note 8Feb2018: Not changed, despite comment from HH: ""Naskapi [nsk] is a different lg from Montagnais [moe]"". KK: Decided to leave, after looking into ethnographic materials: Foci are Lake St. John Band and Mistassini band [see KK notes for geographical extent of their territories]. Speck and Heye (1921): ""[the] Pikwagami (""Flat lake,"" Lake St John), are an interior Montagnais culture intermediate between that of the coast and that of the eastern Naskapi and Mistassini. Therefore, Montagnais [moe] is more appropriate choice. " +Na33,xd1049,Northern Saulteaux,alba1270,Northern Saulteaux (Na33),"N. Saulteaux, North Sauteaux",1870,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,52,-98,52,-98,Original, +Ad36,xd105,Pare,asut1235,Pare (Ad36),"Asu, Wapare",1890,,,-4,38,-4,38,Original, +Na34,xd1050,Pekangekum,lacs1238,Pekangekum (Na34),,1940,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,52,-94,52,-94,Original, +Na35,xd1051,Nipigon,cent2136,Nipigon (Na35),"Lake Nipigon Ojibway, Anishinaabek, Southern Saulteaux",1800,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,50,-88,50,-88,Original, +Na36,xd1052,Minnesota Ojibwa,redl1238,Chippewa (Na36),"Minnesota Chippewa, Chippewa, Ojibwe, Ojibwa, Ojibway",1860,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,49,-96,49,-96,Original, +Na37,xd1053,Rainy River Ojibwe,rain1239,Rainy River (Na37),"Gojijiwininiwag, Rainy River, Emo",1880,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,49,-92,49,-92,Original, +Na38,xd1054,Katikitegon,uppe1274,Katikitegon (Na38),Wisconsin Ojibwa,1800,,,46,-92,46,-92,Original, +Na39,xd1055,Eastern Ojibwa,east2542,Eastern Ojibwa (Na39),"Kitchibuan, Kitchibuan Ojibwa; Kitchibaun Ojibwa",1870,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,46,-85,46,-85,Original, +Na4,xd1056,Kaska,kask1239,Kaska (Na4),Nahane,1920,Kaska (ND12),http://ehrafworldcultures.yale.edu/collection?owc=ND12,59,-128,59,-128,Original, +Na40,xd1057,Ottawa,otta1242,Ottawa (Na40),"Odawa, Odaawaa",1650,,,46,-82,46,-82,Original, +Na41,xd1058,Mi'kmaq,mikm1235,Micmac (Na41),Micmac,1700,Mi'kmaq (NJ05),http://ehrafworldcultures.yale.edu/collection?owc=NJ05,47,-65,47,-65,Original, +Na42,xd1059,Potawatomi,pota1247,Potawatomi (Na42),Neshnabé,1760,,,44,-85,44,-85,Original, +Ad37,xd106,Teita,tait1250,Teita (Ad37),"Taita, Wateita",1940,,,-4,39,-4,39,Original, +Na43,xd1060,Netsilik,nets1241,Netsilik (Na43),"Netsilik Inuit, Netsilik Eskimo",1920,,,69,-96,69,-96,Original, +Na44,xd1061,Nunavimmiut,queb1248,Taqagmiut (Na44),"Taqagmiut, Taqagmiut Eskimo, Inuit of Sugluk, Inuit of Salluit",1910,,,62,-76,62,-76,Original, +Na45,xd1062,Mistissini Cree,sout2978,Mistassini (Na45),Mistassini Cree,1900,,,51.75,-72.66,51.75,-72.66,Revised, +Na5,xd1063,Naskapi,nask1242,Naskapi (Na5),,1890,Montagnais (NH06),http://ehrafworldcultures.yale.edu/collection?owc=NH06,58,-70,58,-70,Original, +Na6,xd1064,Nunivak,kusk1241,Nunivak (Na6),Nunivak Cup'ig,1930,,,60,-166,60,-166,Original, +Na7,xd1065,Attawapiskat Cree,swam1239,Cree Attawapiskat (Na7),Attawapiskat,1900,,,53,-83,53,-83,Original, +Na8,xd1066,Deg Xit'an,dege1248,Ingalik (Na8),Ingalik,1880,Ingalik (NA08),http://ehrafworldcultures.yale.edu/collection?owc=NA08,62,-160,62,-160,Original, +Na9,xd1067,Aleut,east2533,Aleut (Na9),Unagan,1830,Aleut (NA06),http://ehrafworldcultures.yale.edu/collection?owc=NA06,54,-167,53.86,-166.79,Revised, +Nb1,xd1068,Haida,nort2938,Haida (Nb1),,1890,,,54,-132,54,-132,Original, +Nb10,xd1069,Alkatcho,sout2958,Alkatcho (Nb10),"Tsuu'Tina, Alkatcho Carrier, Ilgatcho, Ilgachuz",1865,,,53,-126,53,-126,Original, +Ad38,xd107,Kara,kara1481,Kara (Ad38),Wakara,1910,,,-2,33,-2,33,Original, +Nb11,xd1070,Nuu chah nulth,nuuc1236,Nootka (Nb11),"Nuu-chah-nulth, Aht, Central Nootka",1880,Nuu-chah-nulth (NE11),http://ehrafworldcultures.yale.edu/collection?owc=NE11,49,-126,49.16,-125.85,Revised, +Nb12,xd1071,Klahoose,slia1241,Klahuse (Nb12),Klahuse,1880,,,51,-125,51,-125,Original, +Nb13,xd1072,Squamish,squa1248,Squamish (Nb13),,1880,,,50,-123,50,-123,Original, +Nb14,xd1073,Comox,isla1276,Comox (Nb14),K'ómoks,1880,,,50,-125,49.72,-124.97,Revised, +Nb15,xd1074,Lummi,lumm1243,Lummi (Nb15),Lhaq'temish,1880,,,49,-123,48.84,-123.27,Revised, +Nb16,xd1075,Klallam,clal1241,Klallam (Nb16),Clallum,1860,,,48,-123,48,-123,Original, +Nb17,xd1076,Puyallup,sout2965,Puyallup (Nb17),,1870,,,47,-122,47,-122,Original, +Nb18,xd1077,Quileute,quil1240,Quileute (Nb18),,1880,,,48,-125,47.91,-124.59,Revised, +Nb19,xd1078,Lower Chinook,chin1286,Chinook (Nb19),Chinook,1850,Chinookans of the Lower Columbia River (NR06),http://ehrafworldcultures.yale.edu/collection?owc=NR06,46,-124,45.99,-123.77,Revised, +Nb2,xd1079,Twana,twan1247,Twana (Nb2),,1850,,,48,-123,48,-123,Original, +Ad39,xd108,Sonjo,temi1247,Sonjo (Ad39),,1950,,,-3,36,-3,36,Original, +Nb20,xd1080,Tillamook,till1254,Tillamok (Nb20),Nehalem,1870,,,45,-124,44.75,-123.72,Revised, +Nb21,xd1081,Coos,coos1249,Coos (Nb21),,1860,,,43,-124,43,-124,Original, +Nb22,xd1082,Tlingit,tlin1245,Tlingit (Nb22),"Kolosh, Southern Tlingit",1880,Tlingit (NA12),http://ehrafworldcultures.yale.edu/collection?owc=NA12,58,-134,58.12,-133.92,Revised,"9May2019 - preferred name changed to distinguish from eHRAF culture West Tibetans. Note northern and southern tlingit considered distinct dialects of tli by some, but no codes available in Glottolog." +Nb23,xd1083,Heiltsuk,bell1263,Bellabella (Nb23),"Bellabella, Bella Bella",1880,,,52,-128,52,-128,Original, +Nb24,xd1084,Makah,maka1318,Makah (Nb24),,1860,Nootka (NE11),http://ehrafworldcultures.yale.edu/collection?owc=NE11,48,-125,48.33,-124.62,Revised, +Nb25,xd1085,Quinault,quin1251,Quinault (Nb25),,1860,Quinault (NR17),http://ehrafworldcultures.yale.edu/collection?owc=NR17,47,-124,47.42,-124.16,Revised, +Nb26,xd1086,Cowichan,cowi1241,Cowichan (Nb26),Hul'q'umi'num Mustimuhw,1880,,,49,-123,49.01,-122.73,Revised, +Nb27,xd1087,Stó:lō,chil1281,Stalo (Nb27),"Stalo, Halkomelem, Fraser River Cowichan",1880,,,49,-122,49,-122,Original, +Nb28,xd1088,Alsea,alse1251,Alsea (Nb28),,1860,,,44,-124,44,-124,Original, +Nb29,xd1089,Siuslaw,sius1254,Siuslaw (Nb29),,1860,,,44,-124,44,-124,Original, +Ad4,xd109,Kikuyu,kiku1240,Kikuyu (Ad4),Aikikuyu,1930,Gikuyu (FL10),http://ehrafworldcultures.yale.edu/collection?owc=FL10,-1,37,-1,37,Original, +Nb3,xd1090,Kwakwaka'wakw,kwak1269,Kwakiutl (Nb3),"Southern Kwakiutl, Kwagu'ł, Kwagyewlth",1890,,,51,-128,51,-127.49,Revised, +Nb30,xd1091,Takelma,take1257,Takelma (Nb30),"Rogue River Indians, Tekelma",1860,,,42,-123,42,-123,Original, +Nb31,xd1092,Tututni,tutu1242,Tututni (Nb31),,1870,,,42,-124,42,-124,Original, +Nb32,xd1093,Shasta,shas1239,Shasta (Nb32),,1860,,,41,-122,41,-122,Original, +Nb33,xd1094,Chimariko,chim1301,Chimariko (Nb33),,1860,,,41,-123,41,-123,Original, +Nb34,xd1095,Karuk,karo1304,Karok (Nb34),Karok,1860,,,42,-123,42,-123,Original, +Nb35,xd1096,Hupa,hupa1239,Hupa (Nb35),,1860,,,41,-123,41,-123,Original, +Nb36,xd1097,Wiyot,wiyo1248,Wiyot (Nb36),,1860,,,40,-124,39.81,-123.55,Revised, +Nb37,xd1098,Lassik,wail1244,Lassik (Nb37),,1860,,,40,-123,40,-123,Original,"Note, Nongatl, Sinkyone and Lassik considered distinct dialects of wlk by some, but glottolog does not provide dialect identifiers" +Nb38,xd1099,Mattole-Bear River,matt1238,Mattole (Nb38),"Mattole, Bear River",1860,,,40,-124,40.35,-123.47,Revised, +Ab10,xd11,Pondo Xhosa,mpon1252,Pondo (Ab10),"Amapondo, Mpondo",1936,,,-31,30,-31,30,Original, +Ad40,xd110,Tiriki,idak1243,Tiriki (Ad40),,1950,,,0,35,0,35,Original, +Nb39,xd1100,Sinkyone,wail1244,Sinkyone (Nb39),,1860,,,40,-124,39.73,-123.6,Revised,"Note, Nongatl, Sinkyone and Lassik considered distinct dialects of wlk by some, but glottolog does not provide dialect identifiers" +Nb4,xd1101,Yurok,yuro1248,Yurok (Nb4),,1850,Yurok (NS31),http://ehrafworldcultures.yale.edu/collection?owc=NS31,41,-124,41,-124,Original, +Nb5,xd1102,Eyak,eyak1241,Eyak (Nb5),dAXunhyuu,1890,,,60,-145,60.34,-144.85,Revised, +Nb6,xd1103,Tolowa,tolo1259,Tolowa (Nb6),,1870,,,42,-124,42,-124,Original, +Nb7,xd1104,Tsimshian,nucl1649,Tsimshian (Nb7),Ts’msyan,1880,,,55,-130,54.64,-130.25,Revised, +Nb8,xd1105,Haisla,hais1244,Haisla (Nb8),Kitimat,1880,,,54,-129,54,-129,Original, +Nb9,xd1106,Nuxalk,bell1243,Bellacoola (Nb9),"Nuxalkmc, Bellacoola, Bilqula, Bella Coola",1880,Nuxalk (NE06),http://ehrafworldcultures.yale.edu/collection?owc=NE06,52,-127,52,-127,Original, +Nc1,xd1107,Nomlaki,noml1242,Nomlaki (Nc1),Central Wintun,1850,,,39,-122,39,-122,Original,Changed 15Nov2016 to differentiate Nomlaki from Wintu +Nc10,xd1108,Achumawi,achu1247,Achomawi (Nc10),Achomawi,1860,,,41,-121,41,-121,Original, +Nc11,xd1109,Yana,yana1271,Yana (Nc11),Nozi,1860,,,41,-122,41,-122,Original, +Ad41,xd111,Vugusu,buku1249,Vugusu (Ad41),Kotosh,1930,,,1,35,1,35,Original, +Nc12,xd1110,Maidu,nort2952,Maidu (Nc12),Pujunan,1850,,,40,-121,40,-121,Original, +Nc13,xd1111,Nisenan,nise1244,Nisenan (Nc13),"Southern Maidu, Nisenan Southern Maidu",1850,,,39,-121,39,-121,Original, +Nc14,xd1112,Wintu,nucl1651,Wintu (Nc14),Northern Wintu,1860,,,41,-122,41,-122,Original,Changed 15Nov2016 to differentiate Nomlaki from Wintu +Nc15,xd1113,Coast Yuki,yuki1243,Coast Yuki (Nc15),,1860,Yuki (NS30),http://ehrafworldcultures.yale.edu/collection?owc=NS30,39,-124,39.34,-123.77,Revised, +Nc16,xd1114,Huchnom,yuki1243,Huchnom (Nc16),,1860,,,39,-123,39,-123,Original, +Nc17,xd1115,Northern Pomo,nort2966,Northern Pomo (Nc17),,1860,Pomo (NS18),http://ehrafworldcultures.yale.edu/collection?owc=NS18,39,-123,39,-123,Original, +Nc18,xd1116,Eastern Pomo,east2545,Eastern Pomo (Nc18),"Clear Lake Pomo, Eastern Pomo",1860,Pomo (NS18),http://ehrafworldcultures.yale.edu/collection?owc=NS18,39,-123,39,-123,Original, +Nc19,xd1117,Southern Pomo,sout2984,Southern Pomo (Nc19),Southern Pomo,1860,Pomo (NS18),http://ehrafworldcultures.yale.edu/collection?owc=NS18,38,-123,38.55,-122.94,Revised, +Nc2,xd1118,Tübalulabal,tuba1278,Tubatulabal (Nc2),Tubatulabal,1850,Tubatulabal (NS22),http://ehrafworldcultures.yale.edu/collection?owc=NS22,39,-118,39,-118,Original, +Nc20,xd1119,Wappo,wapp1239,Wappo (Nc20),,1860,,,38,-123,38.22,-122.56,Revised, +Ad42,xd112,Haya,haya1250,Haya (Ad42),"Basiba, Wahaya, Wassiba, Ziba",1900,,,-1,32,-1,32,Original,"Note 8Feb2018: HH notes that the Weiss ethnography (1 of 5 references) refers to Wahima and Wanjambo, which are Kinyarwanda [kin] and Nyambo [now] respectively -- ""close to, but not the same lg as Haya [hay]"". However, given that Haya appears to be the focus of the other ethnographies, I will leave the language match as [hay]. Users may wish to look into individual data points in detail, to ensure they refer to the focal group." +Nc21,xd1120,Lake Miwok,lake1258,Lake Miwok (Nc21),,1860,,,38,-123,38.75,-123.2,Revised, +Nc22,xd1121,Patwin,patw1250,Patwin (Nc22),Southern Wintun,1850,,,39,-122,39,-122,Original, +Nc23,xd1122,Western Mono,mono1275,Monachi (Nc23),"Monachi, Western Mono, Monache",1870,,,37,-119,37,-119,Original, +Nc24,xd1123,Southern Valley Yokuts,vall1251,Lake Yokuts (Nc24),"Lake Yokuts, Tachi Yokuts, Chunut Yokuts",1860,Yokuts (NS29),http://ehrafworldcultures.yale.edu/collection?owc=NS29,36,-120,36,-120,Original, +Nc25,xd1124,Wukchumni,tule1245,Wukchumni (Nc25),Central Foothills Yokuts,1860,Yokuts (NS29),http://ehrafworldcultures.yale.edu/collection?owc=NS29,36,-119,36,-119,Original, +Nc26,xd1125,Salinan,sali1253,Salinan (Nc26),,1770,,,36,-121,36,-121,Original, +Nc27,xd1126,Kawaiisu,kawa1283,Kawaiisu (Nc27),Kawaiisu Shoshoni,1860,,,35,-118,35,-118,Original, +Nc28,xd1127,Chumash,cruz1243,Chumash (Nc28),,1800,,,34,-120,34.44,-119.71,Revised, +Nc29,xd1128,Tongva,tong1329,Gabrielo (Nc29),"Gabrielo, Gabrielino, Gabrieleno",1770,,,34,-118,34,-118,Original, +Nc3,xd1129,Northern Foothill Yokuts,nort2937,Yokuts (Nc3),Yokuts,1850,Yokuts (NS29),http://ehrafworldcultures.yale.edu/collection?owc=NS29,36,-120,36,-120,Original, +Ad43,xd113,Kerewe,kere1283,Kerewe (Ad43),"Bakerewe, Wakerewe",1900,,,-3,33,-3,33,Original, +Nc30,xd1130,Serrano,serr1255,Serrano (Nc30),,1870,,,34,-117,34,-117,Original, +Nc31,xd1131,Cahuilla (Desert),cahu1264,Cahuilla (Nc31),Desert Cahuilla,1870,,,33,-116,33,-116,Original,"Note, three Cahuilla Dialects (Mountain, Pass, Desert) are recognized by some, but Glottolog does not list any dialects" +Nc32,xd1132,Cupeño,cupe1243,Cupeno (Nc32),"Kuupangaxwichem, Cupeno",1870,,,33,-117,33,-117,Original, +Nc33,xd1133,Luiseño,luis1253,Luiseno (Nc33),"Payómkawichum, Luiseno",1860,,,33,-117,33,-117,Original, +Nc34,xd1134,Kiliwa,kili1268,Kiliwa (Nc34),K'olew,1880,,,31,-115,31,-115,Original, +Nc4,xd1135,Atsugewi,atsu1245,Atsugewi (Nc4),,1860,,,41,-121,41,-121,Original, +Nc5,xd1136,Central Sierra Miwok,cent2140,Miwok (Nc5),Miwok,1850,,,38,-120,38,-120,Original, +Nc6,xd1137,Kumeyaay,kumi1248,Diegueno (Nc6),"Diegueño, Diegueno",1850,,,32,-116,32,-116,Original,"Note, previously tipa1240 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)" +Nc7,xd1138,Yuki,yuki1243,Yuki (Nc7),,1850,Yuki (NS30),http://ehrafworldcultures.yale.edu/collection?owc=NS30,40,-123,40,-123,Original, +Nc8,xd1139,Klamath,klam1254,Klamath (Nc8),,1860,Klamath (NR10),http://ehrafworldcultures.yale.edu/collection?owc=NR10,43,-122,43,-122,Original, +Ad44,xd114,Konjo,konz1239,Konjo (Ad44),,1920,,,-1,30,-1,30,Original, +Nc9,xd1140,Modoc,klam1254,Modoc (Nc9),,1860,,,42,-122,42,-122,Original, +Nd1,xd1141,Tenino,teni1238,Tenino (Nd1),"Warmsprings Sahaptin, Yenino",1850,,,45,-121,45,-121,Original, +Nd10,xd1142,Nlaka'pamux,thom1243,Thompson (Nd10),"Thompson, Nitlakapamuk, Thompson River Salish",1860,,,50,-122,50,-122,Original, +Nd11,xd1143,Shuswap,shus1248,Shuswap (Nd11),Secwepemc,1850,,,51,-120,51,-120,Original, +Nd12,xd1144,Bitterroot Salish,kali1309,Flathead (Nd12),"Salish, Flathead",1860,Southeast (NR19),in process,46,-113,46,-113,Original, +Nd13,xd1145,Kalispel,kali1309,Kalispel (Nd13),,1860,Southeast (NR19),in process,49,-117,49,-117,Original, +Nd14,xd1146,Coeur d’Alene,coeu1236,Coeur d’Alene (Nd14),"Schitsu'umsh, Skitswish",1860,Southeast (NR19),in process,48,-117,48,-117,Original, +Nd15,xd1147,Sinkaitk,sout2963,Sinkaitk (Nd15),Southern Okanagon,1880,Southeast (NR19),in process,49,-120,49,-120,Original, +Nd16,xd1148,Wenatchi,wena1241,Wenatchi (Nd16),,1870,,,48,-121,48,-121,Original, +Nd17,xd1149,Klikitat,nucl1237,Klikitat (Nd17),Yakima,1870,,,46,-122,46,-122,Original, +Ad45,xd115,Nyankole,nyan1307,Nyankole (Ad45),Banyankole,1920,,,0,31,0,31,Original, +Nd18,xd1150,Wishram,wasc1239,Wishram (Nd18),,1860,,,46,-121,46,-121,Original, +Nd19,xd1151,Umatilla,umat1237,Umatilla (Nd19),,1860,,,46,-119,46,-119,Original, +Nd2,xd1152,Southern Ute,utee1244,Southern Ute (Nd2),"Wimonuntci, Weminute, Wimonantci Ute",1860,Ute (NT19),http://ehrafworldcultures.yale.edu/collection?owc=NT19,38,-109,38,-109,Original, +Nd20,xd1153,Nez Perce,nezp1238,Nez Perce (Nd20),"Nimi'ipuu, Sahaptin",1850,,,45,-115,45,-115,Original, +Nd21,xd1154,Tagotoka,nort1551,Tagotoka (Nd21),Duck Valley Paiute,1870,,,43,-117,43,-117,Original, +Nd22,xd1155,Wadadokado,nort1551,Wadadokado (Nd22),"Paiute, Northern Paiute",1870,Northern Paiute (NR13),http://ehrafworldcultures.yale.edu/collection?owc=NR13,43,-119,43,-119,Original, +Nd23,xd1156,Atsakudokwa,nort1551,Atsakudokwa (Nd23),Quinn River Paiute,1870,,,42,-118,42,-118,Original, +Nd24,xd1157,Kidutokado,nort1551,Kidutokado (Nd24),"Gididika, Surprise Valley Paiute",1870,Northern Paiute (NR13),http://ehrafworldcultures.yale.edu/collection?owc=NR13,42,-120,42,-120,Original, +Nd25,xd1158,Sawakudokwa,nort1551,Sawakudokwa (Nd25),Winnemucca Paiute,1870,,,41,-118,41,-118,Original, +Ad46,xd116,Soga,soga1242,Soga (Ad46),Basoga,1950,,,1,33,1,33,Original, +Nd27,xd1160,Kuyuidokado,sout2967,Kuyuidokado (Nd27),Pyramid Lake Paiute,1860,Northern Paiute (NR13),http://ehrafworldcultures.yale.edu/collection?owc=NR13,40,-119,40,-119,Original, +Nd28,xd1161,Toedokado,sout2967,Toedokado (Nd28),"Stillwater Paiute, Cattail Paiute",1870,,,40,-118,40,-118,Original, +Nd29,xd1162,Tunava (Deep Springs and Fish Lake),mono1275,Tunava (Nd29),"Deep Springs Valley Paiute, Fish Lake Valley Paiute",1870,,,37,-118,37,-118,Original, +Nd3,xd1163,Havasupai,hava1249,Havasupai (Nd3),Plateau Yuma,1870,Plateau Yumans (NT14),http://ehrafworldcultures.yale.edu/collection?owc=NT14,36,-112,36,-112,Original, +Nd30,xd1164,Eastern Mono,mono1275,Eastern Mono (Nd30),Owens Valley Paiute,1870,,,37,-118,37,-118,Original, +Nd31,xd1165,Koso,pana1305,Koso (Nd31),"Western Panamint, Koso Mountain Shoshoni, Little Lake Shoshoni",1850,Western (NT22),in process,36,-118,36,-118,Original, +Nd32,xd1166,Tümpisa Shoshone (Saline and Panamint),pana1305,Panamint (Nd32),"Panamint Shoshoni, Panamint, Saline Valley Shoshoni",1850,Western (NT22),in process,36,-117,36,-117,Original, +Nd33,xd1167,Beatty,pana1305,Beatty (Nd33),"Eastern Panamint, Beatty Shoshoni, Belted Range Shoshoni",1870,,,37,-116,37,-116,Original, +Nd34,xd1168,Lida Shoshoni,west2622,Lida Shoshoni (Nd34),,1870,Western (NT22),in process,37,-117,37,-117,Original, +Nd35,xd1169,Mahaguaduka,west2622,Mahaguaduka (Nd35),Reese River Shoshoni,1870,Western (NT22),in process,39,-117,39,-117,Original, +Ad47,xd117,Sumbwa,sumb1240,Sumbwa (Ad47),,1900,,,-4,32,-4,32,Original, +Nd36,xd1170,Wiyambituka,west2622,Wiyambituka (Nd36),"Morey Shoshoni, Great Smokey Valley Shoshoni, Little Smokey Valley Shoshoni",1870,Western (NT22),in process,39,-117,39,-117,Original, +Nd37,xd1171,Railroad Valley Shoshoni,west2622,Hamilton (Nd37),Hamilton,1870,Western (NT22),in process,39,-116,39,-116,Original, +Nd38,xd1172,Ely Shoshoni,west2622,Ely Shoshoni (Nd38),,1870,Western (NT22),in process,39,-115,39,-115,Original, +Nd4,xd1174,Sanpoil,sanp1257,Sanpoil (Nd4),,1870,Southeast (NR19),in process,48,-119,48,-119,Original, +Nd40,xd1175,Tubaduka,west2622,Tubaduka (Nd40),Grouse Creek Shoshoni,1870,,,40,-113,40,-113,Original, +Nd41,xd1176,Wadaduka,west2622,Wadaduka (Nd41),"Ruby Valley Shoshoni, Pine Creek Shoshoni, Diamond Valley Shoshoni, Egan Canyon Shoshoni",1870,,,41,-116,41,-116,Original, +Nd42,xd1177,Elko Shoshoni,west2622,Elko Shoshoni (Nd42),Upper Humboldt River Shoshoni,1870,,,41,-116,41,-116,Original, +Nd43,xd1178,White Knife Shoshoni,west2622,White Knife (Nd43),"Battle Mountain Shoshoni, Tosawihi",1860,,,41,-117,41,-117,Original, +Nd44,xd1179,Yahanduka,west2622,Yahanduka (Nd44),Snake River Shoshoni,1850,,,42,-115,42,-115,Original, +Ad48,xd118,Toro,toor1238,Toro (Ad48),Batoro,1950,,,1,31,1,31,Original, +Nd45,xd1180,Bohogue,nort2955,Bohogue (Nd45),Fort Hall Shoshoni,1860,,,43,-112,43,-112,Original, +Nd47,xd1181,Tukudika,nort2955,Tukudika (Nd47),"Sheep-Eater Shoshoni, Lemhi Mountain Shoshoni",1850,,,44,-111,44,-111,Original, +Nd46,xd1182,Agaiduka,nort2955,Agaiduka (Nd46),"Salmon-Eater Shoshoni, Lemhi River Shoshoni",1860,,,44,-112,44,-112,Original, +Nd48,xd1183,Gosiute,gosi1242,Gosiute (Nd48),"Gosiute Shoshoni, Deep Creek Shoshoni",1860,Western (NT22),in process,40,-114,40,-114,Original, +Nd49,xd1184,Antarianunts,utee1244,Antarianunts (Nd49),"Henry Mountains Paiute, Kaiparowits",1860,,,37,-110,37,-110,Original, +Nd5,xd1185,Hukundika,nort2955,Hukundika (Nd5),"Seed-Eaters, Northern Shoshoni, Hukunduka, Hukuniduica",1870,,,42,-112,42,-112,Original, +Nd50,xd1186,Panguitch,utee1244,Panguitch (Nd50),,1860,,,38,-112,38,-112,Original, +Nd51,xd1187,Moapa,sout2969,Moapa (Nd51),"Muddy Paiute, Parano",1860,,,36,-115,36,-115,Original, +Nd52,xd1188,Shivwits,sout2969,Shivwits (Nd52),"Suwuntsu (St. George), Suwuntsu, St. George, Gunlock, Uinkaret, Southern Paiute",1860,,,36,-117,36,-117,Original, +Nd53,xd1189,Southern Paiute (Kaibab),sout2969,Kaibab (Nd53),"Kaivavwits, Southern Paiute, Kaipapicicimi, Kaibabits",1860,,,36,-113,36,-113,Original, +Nd55,xd1189,Southern Paiute (Las Vegas),sout2969,Las Vegas (Nd55),"Las Vegas, Southern Paiute",1860,,,36,-115,36,-115,Original, +Ad49,xd119,Zinza,zinz1238,Zinza (Ad49),Basindja,1950,,,-3,31,-3,31,Original, +Nd54,xd1190,Chemehuevi,chem1251,Chemehuevi (Nd54),Colorado River Reservation,1860,Southern (NT16),in process,35,-115,35,-115,Original, +Nd56,xd1192,San Juan,sout2969,San Juan (Nd56),Kwaanitikwokets,1860,,,36,-111,36,-111,Original, +Nd57,xd1193,Pahvant,utee1244,Pahvant (Nd57),Sevier Desert Ute,1860,,,39,-113,39,-113,Original, +Nd58,xd1194,Uintah Ute,utee1244,Uintah (Nd58),"Tompanowots, Yampa",1860,,,40,-112,40,-112,Original, +Nd59,xd1195,Moanunts,utee1244,Moanunts (Nd59),Noanunts,1860,,,39,-112,39,-112,Original, +Nd6,xd1196,Washo,wash1253,Washo (Nd6),,1850,Washo (NT20),in process,39,-120,39,-120,Original, +Nd60,xd1197,Moache,utee1244,Moache (Nd60),"Moache Ute, Mowatei",1860,,,37,-105,37,-105,Original, +Nd61,xd1198,Taviwatsiu,utee1244,Taviwatsiu (Nd61),White River Ute,1860,,,40,-105,40,-105,Original, +Nd62,xd1199,Uncompahgre Ute,utee1244,Uncompahgre (Nd62),Mowataviwatsiu,1860,,,39,-107,39,-107,Original, +Ab11,xd12,Xhosa Ngqika,xesi1238,Xhosa (Ab11),"amaXhosa, Amakosa, Kaffirs, Xosa",1850,,,-33,28,-32.89,27.91,Revised, +Ad5,xd120,Mbugwe,mbug1242,Mbugwe (Ad5),Wambugwe,1940,,,-4,36,-4,36,Original, +Nd63,xd1200,Bannock,bann1248,Bannock (Nd63),Eastern Bannock,1860,,,43,-112,43,-112,Original, +Nd64,xd1201,Wind River Eastern Shoshone,nort2955,Wind River (Nd64),"Wind River, Eastern Shoshoni, Kucundika, Buffalo Hunters, Buffalo-Eater",1860,,,43,-109,43,-109,Original, +Nd65,xd1202,Hualapai,wala1270,Walapai (Nd65),Walapai,1870,,,36,-114,36,-114,Original, +Nd66,xd1203,Yavapai,yava1252,Yavapai (Nd66),Apache-Mojave,1870,,,35,-112,35,-112,Original, +Nd67,xd1204,Tolkepaya,yava1252,Tolkepaya (Nd67),"Apache-Yuma, Western Yavapai",1870,,,34,-114,34,-114,Original, +Nd7,xd1205,Kutenai,kute1249,Kutenai (Nd7),"Ktunaxa, Kootenay, Kootenai",1880,,,50,-117,50,-117,Original, +Nd8,xd1206,Chilcotin,chil1280,Chilcotin (Nd8),Tsilhqot'in,1880,,,52,-122,52,-122,Original, +Nd9,xd1207,Lillooet,lill1248,Lillooet (Nd9),"St'at'imc, Stlatlum",1860,,,50,-125,50.02,-124.78,Revised, +Ne1,xd1208,Gros Ventre,gros1243,Gros Ventre (Ne1),"A'ani, A'aninin, Haaninin",1880,Gros Ventre (NQ13),http://ehrafworldcultures.yale.edu/collection?owc=NQ13,49,-109,48.78,-108.98,Revised, +Ne10,xd1209,Arikara,arik1262,Arikara (Ne10),"Sahnish, Ree",1860,,,46,-101,46,-101,Original, +Ad50,xd121,Kaguru,kagu1239,Kaguru (Ad50),,1900,,,-6,37,-6,37,Original, +Ne11,xd1210,Assiniboine,assi1247,Assiniboin (Ne11),"Hohe, Nakota, Stoney",1870,Assiniboine (NF04),http://ehrafworldcultures.yale.edu/collection?owc=NF04,48,-106,48,-106,Original, +Ne12,xd1211,Blackfoot,pieg1239,Blackfoot (Ne12),Siksika,1850,Blackfoot (NF06),http://ehrafworldcultures.yale.edu/collection?owc=NF06,51,-112,51,-112,Original, +Ne13,xd1212,Kainai,bloo1239,Blood (Ne13),"Blood, Kainah, Blood Tribe",1850,Blackfoot (NF06),http://ehrafworldcultures.yale.edu/collection?owc=NF06,51,-115,51,-115,Original, +Ne14,xd1213,Bungi,west1510,Bungi (Ne14),"Plains Ojibwa, Bungee, Manitoba Saulteaux, Ojibway, Ojibwe",1850,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,51,-100,51,-100,Original, +Ne15,xd1214,Hidatsa,hida1246,Hidatsa (Ne15),,1860,,,47,-101,47,-101,Original, +Ne16,xd1215,Karankawa,kara1289,Karankawa (Ne16),,1800,,,29,-96,29,-96,Original, +Ne17,xd1216,Kiowa,kiow1266,Kiowa (Ne17),,1860,,,36,-99,36,-99,Original, +Ne18,xd1217,Piegan,pieg1239,Piegan (Ne18),Pikuni,1850,Blackfoot (NF06),http://ehrafworldcultures.yale.edu/collection?owc=NF06,49,-115,49,-115,Original, +Ne19,xd1218,Plains Cree,plai1258,Plains Cree (Ne19),,1850,,,45,-94,45,-94,Original, +Ne2,xd1219,Kiowa Apache,kiow1264,Kiowa Apache (Ne2),"Naisha Dene, Na'isha",1870,,,36,-99,36,-99,Original, +Ad51,xd122,Ngulu,ngul1246,Ngulu (Ad51),"Nguru, Wanguru",1930,,,-6,38,-6,38,Original, +Ne20,xd1220,Santee,dako1258,Santee (Ne20),"Isanti, Eastern Dakota",1850,,,45,-94,45,-94,Original, +Ne21,xd1221,Coahuilteco,coah1252,Coahuilteco (Ne21),,1760,,,29,-99,29,-99,Original, +Ne3,xd1222,Comanche,coma1245,Comanche (Ne3),,1870,Comanche (NO06),http://ehrafworldcultures.yale.edu/collection?owc=NO06,33,-100,33,-100,Original, +Ne4,xd1223,Crow,crow1244,Crow (Ne4),Apsaalooké,1870,Crow (NQ10),http://ehrafworldcultures.yale.edu/collection?owc=NQ10,45,-108,45,-108,Original, +Ne5,xd1224,Cheyenne,chey1247,Cheyenne (Ne5),,1860,,,39,-104,39,-104,Original, +Ne6,xd1225,Mandan,mand1446,Mandan (Ne6),,1830,Mandan (NQ17),in process,47,-101,47,-101,Original, +Ne7,xd1226,Sarcee,sars1236,Sarsi (Ne7),"Tsuu, Sarci",1880,,,54,-110,54,-110,Original, +Ne8,xd1227,Teton,lako1247,Teton (Ne8),,1870,,,43,-103,43,-103,Original, +Ne9,xd1228,Arapaho,arap1274,Arapaho (Ne9),"Hinono'eiteen, Arapahoe",1860,Arapaho (NQ06),in process,40,-103,40,-103,Original, +Ad6,xd123,Nyakyusa,nyak1261,Nyakyusa (Ad6),,1930,Nyakyusa and Ngonde (FN17),http://ehrafworldcultures.yale.edu/collection?owc=FN17,-9,34,-9,34,Original, +Nf10,xd1230,Iowa,iowa1246,Iowa (Nf10),"Bah Kho-je, Baxoje",1870,,,41,-95,41,-95,Original, +Nf11,xd1231,Otoe,otoo1241,Oto (Nf11),Oto,1870,,,40,-95,40,-95,Original, +Nf12,xd1232,Ponca,ponc1241,Ponca (Nf12),,1850,Dhegiha (NQ12),in process,43,-99,43,-99,Original, +Nf13,xd1233,Shawnee,shaw1249,Shawnee (Nf13),,1820,,,37,-85,37,-85,Original, +Nf14,xd1234,Caddo,cadd1256,Caddo (Nf14),Kadohadacho,NA,,,33,-93,33,-93,Original, +Nf15,xd1235,Kickapoo,kick1244,Kickapoo (Nf15),Kiikaapoi,1870,,,43,-90,43,-90,Original, +Nf2,xd1236,Ho Chunk,hoch1243,Winnebago (Nf2),Winnebago,1850,Winnebago/Ho-Chunk (NP12),http://ehrafworldcultures.yale.edu/collection?owc=NP12,44,-88,44,-88,Original, +Nf3,xd1237,Omaha,omah1248,Omaha (Nf3),Dhegiha,1850,Omaha (NQ21),http://ehrafworldcultures.yale.edu/collection?owc=NQ21,41,-96,41,-96,Original, +Nf4,xd1238,Myaamia,miam1252,Miami (Nf4),Miami,1720,,,40,-86,40,-86,Original, +Nf5,xd1239,Wichita,wich1260,Wichita (Nf5),,1860,,,34,-98,34,-98,Original, +Ad7,xd124,Ganda,gand1255,Ganda (Ad7),Baganda,1880,Ganda (FK07),http://ehrafworldcultures.yale.edu/collection?owc=FK07,1,32,1,32,Original, +Nf6,xd1240,Pawnee,pawn1254,Pawnee (Nf6),,1867,Pawnee (NQ18),http://ehrafworldcultures.yale.edu/collection?owc=NQ18,42,-100,42,-100,Original, +Nf7,xd1241,Fox,mesk1242,Fox (Nf7),Meskwaki,1830,Fox (NP05),http://ehrafworldcultures.yale.edu/collection?owc=NP05,45,-95,45,-95,Original, +Nf8,xd1242,Hasinai,cadd1256,Hasinai (Nf8),"Southwestern Caddo, Texas",1770,,,31,-95,31,-95,Original, +Nf9,xd1243,Menominee,meno1252,Menomini (Nf9),Menomini,1870,,,46,-88,46,-88,Original, +Ng1,xd1244,Huron,wyan1247,Huron (Ng1),"Bear and Cord Peoples, Wendat, Ouendat, Attignaouantan, Attinniaoenten, Attigneenongnahac, Hatingeennonniahak",1640,,,44,-78,44,-78,Original, +Ng10,xd1245,Seneca,sene1264,Iroquois (Ng10),"O-non-dowa-gah, Iroquois",1750,Iroquois (NM09),http://ehrafworldcultures.yale.edu/collection?owc=NM09,43,-77,43,-77,Original, +Ng11,xd1246,Yuchi,yuch1247,Yuchi (Ng11),"Euchee, Uchee",1750,,,35,-86,35,-86,Original, +Ng12,xd1247,Choctaw,choc1276,Choctaw (Ng12),,1760,,,33,-88,33,-88,Original, +Ng13,xd1248,Abenaki,peno1243,Abnaki (Ng13),Abnaki,NA,,,46,-70,46,-70,Original, +Ng14,xd1249,Chickasaw,chic1270,Chickasaw (Ng14),,NA,,,35,-85,35,-85,Original, +Ad8,xd125,Hehe,hehe1240,Hehe (Ad8),Wahehe,1910,,,-8,35,-8,35,Original, +Ng15,xd1250,Chitimacha,chit1248,Chitimacha (Ng15),,1750,,,30,-90,30,-90,Original, +Ng2,xd1251,Seminole,mika1239,Seminole (Ng2),,1940,Seminole (NN16),http://ehrafworldcultures.yale.edu/collection?owc=NN16,27,-81,27,-81,Original, +Ng3,xd1252,Muscogee,cree1270,Creek (Ng3),"Creek, Taskigi Creek",1750,Creek (NN11),http://ehrafworldcultures.yale.edu/collection?owc=NN11,33,-84,33,-84,Original, +Ng4,xd1253,Penobscot,peno1243,Penobscot (Ng4),,1900,,,45,-68,45,-68,Original, +Ng5,xd1254,Cherokee,cher1273,Cherokee (Ng5),,1750,Cherokee (NN08),http://ehrafworldcultures.yale.edu/collection?owc=NN08,36,-83,36,-83,Original, +Ng6,xd1255,Delaware,unam1242,Delaware (Ng6),Lenape,1700,Delaware (NM07),http://ehrafworldcultures.yale.edu/collection?owc=NM07,41,-75,41,-75,Original,Note 8Feb2018: Changed based on note from HH: Pidgin Delaware was not the mother tongue of the Lenape. The mother tongue was Unami [unm]. +Ng7,xd1256,Natchez,natc1249,Natchez (Ng7),,1700,,,32,-91,32,-91,Original, +Ng8,xd1257,Timucua,timu1245,Timucua (Ng8),,1560,,,27,-82,27,-82,Original, +Ng9,xd1258,Catawba,cata1286,Catawba (Ng9),Issa,1920,,,35,-80,35,-80,Original, +Nh1,xd1259,Chiricahua,mesc1238,Chiricahua (Nh1),"Chiricahua Apache, Eastern Apache",1880,Eastern Apache (NT08),http://ehrafworldcultures.yale.edu/collection?owc=NT08,31,-108,31,-108,Original, +Ad9,xd126,Gisu,masa1299,Gisu (Ad9),"Bagesu, Gishu",1900,Bagisu (FK13),http://ehrafworldcultures.yale.edu/collection?owc=FK13,1,34,1,34,Original, +Nh10,xd1260,Isleta,sout2961,Isleta (Nh10),,1920,,,35,-107,35,-107,Original, +Nh11,xd1261,San Ildefonso,sani1273,Tewa (Nh11),"Tewa, San Ildefonso Pueblo",1900,Tewa (NT18),http://ehrafworldcultures.yale.edu/collection?owc=NT18,36,-106,36,-106,Original,"Note 8Feb2018: Not changed, as focus is the pueblo of San Ildefonso, despite comment from HH: ""Hopi Tewa now has its own language-level glottocode Arizona Tewa ariz1237"". However, ariz1237 now linked to another society in EA." +Nh12,xd1262,Santa Ana,sant1426,Santa Ana (Nh12),,1920,,,35,-107,35,-107,Original, +Nh13,xd1263,Acoma,acom1246,Acoma (Nh13),,1920,,,35,-108,35,-108,Original, +Nh14,xd1264,Laguna,acom1246,Laguna (Nh14),,1920,,,35,-107,35,-107,Original, +Nh15,xd1265,Mescalero,mesc1238,Mescalero (Nh15),,1870,,,33,-103,33,-103,Original, +Nh16,xd1266,Jicarilla,jica1244,Jicarilla (Nh16),,1870,Jicarilla (NT26),in process,36,-104,36,-104,Original, +Nh17,xd1267,Western Apache,west2615,Western Apache (Nh17),Ndee,1870,Western (NT21),http://ehrafworldcultures.yale.edu/collection?owc=NT21,34,-110,34,-110,Original, +Nh18,xd1268,Hopi,hopi1249,Hopi (Nh18),Hopi of Old Oraiibi,1920,Hopi (NT09),http://ehrafworldcultures.yale.edu/collection?owc=NT09,36,-111,36,-111,Original, +Nh19,xd1269,Cocopa,coco1261,Cocopa (Nh19),Cocopah,1850,,,32,-115,32,-115,Original, +Ae1,xd127,Amba,amba1263,Amba (Ae1),"Awamba, Baamba, Bamba",1950,,,1,30,1,30,Original, +Nh2,xd1270,Hano,ariz1237,Hano (Nh2),,1950,,,36,-111,36,-111,Original,Note 8Feb2018: Glottocode updated based on note from HH: Hopi Tewa now has its own language-level glottocode Arizona Tewa +Nh20,xd1271,Kamia,kumi1248,Kamia (Nh20),,1860,,,33,-115,33,-115,Original,"Note, previously kimi1238 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)" +Nh21,xd1272,Mojave,moha1256,Mohave (Nh21),Mohave,1850,Mohave (NT28),in process,35,-114,35,-114,Original, +Nh22,xd1273,Quechan,quec1382,Yuma (Nh22),Yuma,1860,,,33,-114,33,-114,Original, +Nh23,xd1274,Kewyipaya,yava1252,Kewyipaya (Nh23),Southeastern Yavapai,1870,,,34,-111,34,-111,Original, +Nh24,xd1275,Lipan Apache,lipa1241,Lipan (Nh24),Lipan,1880,,,30,-100,30,-100,Original, +Nh25,xd1276,Sia,ziaa1251,Sia (Nh25),"Tsiya, Zia",1920,Zia Pueblo (NT38),http://ehrafworldcultures.yale.edu/collection?owc=NT38,36,-107,36,-107,Original, +Nh26,xd1277,Santa Clara,sant1421,Santa Clara (Nh26),,1910,,,36,-106,36,-106,Original, +Nh27,xd1278,Kewa,sant1425,Santo Domingo (Nh27),"Santo Domingo, Santo Domingo Pueblo",1930,,,36,-105,36,-105,Original, +Nh3,xd1279,Navajo,nava1243,Navaho (Nh3),"Diné Bizaad, Navaho",1930,Navaho (NT13),http://ehrafworldcultures.yale.edu/collection?owc=NT13,37,-110,37,-110,Original, +Ae10,xd128,Banyaruanda,kiny1244,Ruanda (Ae10),Ruanda,1910,Rwandans (FO57),http://ehrafworldcultures.yale.edu/collection?owc=FO57,-2,30,-2,30,Original, +Nh4,xd1280,Zuni,zuni1245,Zuni (Nh4),,1910,Zuni (NT23),http://ehrafworldcultures.yale.edu/collection?owc=NT23,35,-109,35,-109,Original, +Nh5,xd1281,Maricopa,mari1440,Maricopa (Nh5),Piipash,1850,River (NT15),in process,33,-113,33,-113,Original, +Nh6,xd1282,Taos,taos1236,Taos (Nh6),,1890,Taos (NT17),in process,37,-106,37,-106,Original, +Nh7,xd1283,Cochiti,coch1273,Cochiti (Nh7),,1890,,,36,-106,36,-106,Original, +Nh8,xd1284,Jemez,jeme1245,Jemez (Nh8),"Walatowa, Towa",1920,,,36,-107,36,-107,Original, +Nh9,xd1285,Picuris,picu1248,Picuris (Nh9),,1920,,,36,-106,36,-106,Original,"Note 8Feb2018: Glottocode updated based on note from HH: Picuris Northern Tiwa [picu1248] now has its own separate language-level glottocode.; Note, previously picu1240 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)" +Ni1,xd1286,Tarahumara,cent2131,Tarahumara (Ni1),Rarámuri,1930,Tarahumara (NU33),http://ehrafworldcultures.yale.edu/collection?owc=NU33,28,-107,28,-107,Original, +Ni2,xd1287,Tohono O'odham,toho1246,Papago (Ni2),Papago,1930,O'Odham (NU79),http://ehrafworldcultures.yale.edu/collection?owc=NU79,31,-112,31,-112,Original, +Ni3,xd1288,Huichol,huic1243,Huichol (Ni3),Wixárika,1920,Huichol (Nu19),http://ehrafworldcultures.yale.edu/collection?owc=NU19,23,-104,22,-105,Revised 22-July-2021 by KK based on review of map - replaced with lat long for the matched SCCS society (SCCS152), +Ni4,xd1289,Seri,seri1257,Seri (Ni4),Comcaac,1900,Seri (NU31),in process,29,-112,29,-112,Original, +Ae11,xd129,Songola,song1300,Songola (Ae11),"Basongola, Wasongola",1900,,,-4,26,-4,26,Original, +Ni5,xd1290,Chichimeca,chic1272,Chichimec (Ni5),Chichimec,1570,,,22,-100,22,-100,Original, +Ni6,xd1291,Pima,akim1239,Pima (Ni6),Akimel O'Odham,1840,,,31,-111,31,-111,Original, +Ni7,xd1292,Yaqui,yaqu1251,Yaqui (Ni7),Yoeme,1870,,,28,-110,28,-110,Original, +Ni8,xd1293,Opata,opat1246,Opata (Ni8),,1550,,,30,-110,30,-110,Original, +Ni9,xd1294,Tepehuán,nort2959,Tepehuan (Ni9),Tepehuan,1920,,,27,-107,27,-107,Original, +Nj1,xd1295,Chinantec,ojit1237,Chinantec (Nj1),,1940,,,18,-96,18,-96,Original,"Note 8Feb2018: Updated based on comment by HH: ""The references described Ojitlán Chinantec [chj] and Palantla Chinantec [cpa] rather than Chiltepec [csa]""; KK: indeed, subcase is specified as ""Ojitlán""" +Nj10,xd1296,Zapotec,yala1267,Zapotec (Nj10),,1940,Zapotec (NU44),http://ehrafworldcultures.yale.edu/collection?owc=NU44,17,-96,17,-96,Original,"Note 8Feb2018: HH notes that Parsons ref (1 of 3 references) describes Mitla Zapotec [zaw]. KK: Not changed, as EA focus is ""mountain village of Yalagag""; perhaps Parsons ref is used for context/complementary information." +Nj11,xd1297,Huastec,huas1242,Huastec (Nj11),,NA,,,22,-99,22,-99,Original, +Nj12,xd1298,Mixtec,juxt1235,Mixtec (Nj12),,1950,,,18,-98,18,-98,Original,Note 8Feb2018: Changed based on note from HH: The ref describes Juxtlahuaca Mixtec [vmc] unclear why NW Oaxaca Mixtec [mxa] is assigned. +Nj13,xd1299,Otomí,mezq1235,Otomi (Nj13),Otomi,1900,,,20,-99,20,-99,Original, +Ab12,xd13,Zulu,zulu1248,Zulu (Ab12),Amazulu,1830,Zulu (FX20),http://ehrafworldcultures.yale.edu/collection?owc=FX20,-29,31,-29,31,Original, +Ae12,xd130,Duala,dual1243,Duala (Ae12),"Diwala, Koelle",1940,,,4,10,4,10,Original, +Nj14,xd1300,Tequistlatec,high1242,Tequistlatec (Nj14),,1960,,,16,-96,16,-96,Original, +Nj2,xd1301,Aztec,clas1250,Aztec (Nj2),Aztec of Tenochtitlan,1520,Aztec (NU07),in process,19,-99,19,-99,Original, +Nj3,xd1302,Sierra Popoluca,high1276,Popoluca (Nj3),"Popoluca, Soteapanec Zoque, Soteapan Zoque, Soteapaneco, Soteapan Soke",1940,,,18,-95,18,-95,Original, +Nj4,xd1303,Totonac,papa1238,Totonac (Nj4),,1940,,,20,-97,20,-97,Original,"Note 8Feb2018: Glottocode changed based on comment by HH: The Kelly ref describes Tajin which is Totonac-Papantla [top]. Indeed, Kelly and Palerm focus on Tajin Totonac, while Krickeberg appears to be a more general survey of the Totonac, including the main dialect groups, one of which is [top]." +Nj5,xd1304,Mazateco,huau1238,Mazateco (Nj5),,1940,,,18,-97,18,-97,Original, +Nj6,xd1305,Huave,sanm1287,Huave (Nj6),,1950,,,16,-95,16.22,-95.02,Revised, +Nj7,xd1306,Mixe,isth1238,Mixe (Nj7),,1930,,,17,-95,17,-95,Original, +Nj8,xd1307,Tarasco,pure1242,Tarasco (Nj8),,1500,Tarasco (NU34),in process,19,-101,19,-101,Original, +Nj9,xd1308,Tlaxcalans,cent2132,Tlaxdalans (Nj9),,1960,,,19,-98,19,-98,Original, +Sa1,xd1309,Guna,sanb1242,Cuna (Sa1),"Dule, Tule, Cuna, Kuna",1940,Cuna (SB05),http://ehrafworldcultures.yale.edu/collection?owc=SB05,9,-78,9,-78,Original,"Note 22July2021: Glottocode changed by KK to sanb1242 from bord1248" +Ae13,xd131,Bashi,shii1238,Bashi (Ae13),"Baniabungu, Wanyabungu",1920,,,-2,29,-2,29,Original, +Sa10,xd1310,Lacandon,laca1243,Lacandon (Sa10),,1900,,,17,-92,16.9,-91,Revised 22-July-2021 by KK based on web research and review of location in GIS, +Sa11,xd1311,Kaqchikel,kaqc1270,Cakchiquel (Sa11),Cakchiquel,1880,,,14,-91,14,-91,Original, +Sa12,xd1312,Lenca,lenc1242,Lenca (Sa12),,1948,,,14,-88,14,-88,Original,"Note, previously lenc1244, but glottocode is considered a ""bookkeeping"" code (because extinct?), so chose Lencan-Honduras instead (note that point is in Honduras)" +Sa13,xd1313,K'iche',kich1262,Quiche (Sa13),Quiche,1930,,,15,-91,15,-91,Original, +Sa14,xd1314,Ngäbe,ngab1239,Guaymi (Sa14),Guaymi,NA,,,8,-81,8,-81,Original, +Sa15,xd1315,Jakaltek,popt1235,Jacaltec (Sa15),Jacaltec,1920,,,14,-90,14,-90,Original, +Sa16,xd1316,Tolupan,toll1241,Jicaque (Sa16),"Jicaque, Xicaque",NA,,,15,-87,15,-87,Original, +Sa17,xd1317,Poqomam,poqo1253,Pokomam (Sa17),Pokomam,1950,,,15,-91,15,-91,Original, +Sa2,xd1318,Tzeltal,tzel1254,Tzeltal (Sa2),,1940,Tzeltal (NV09),http://ehrafworldcultures.yale.edu/collection?owc=NV09,17,-92,17,-92,Original, +Sa3,xd1319,Ch'orti',chor1273,Chorti (Sa3),Chorti,1930,,,14,-89,14,-89,Original, +Ae14,xd132,Ha,haaa1252,Ha (Ae14),"Abaha, Waha",1950,,,-5,30,-5,30,Original, +Sa4,xd1320,Emberá,nort2972,Choco (Sa4),Choco,1960,,,8,-78,8,-78,Original,"Note 8Feb2018: Note: this case was flagged by HH as combining ethnographic data for Wounaan [noa] and Northern Embera [emp]. KK has left language as [emp] (Northern Embera) for now, based on facts that Faron, who worked with Embera, is the author of 2 of the 4 ethnographic references for the case, and that at least one of the others (Reichel-Dolmatoff, 1960) is known to have combined information on the two groups, assuming they were essentially the same (Velásquez Runk 2004) [Excerpt from Velásquez Runk (2004), who has worked extensively with Embera and especially Wounaan communities in Panama: ""Much literature on Emberá and Wounaan, both in Panama and Colombia, have combined information on both groups [...]. In Colombia, Emberá* have historically been called Chocó Indians whereas Wounaan have been differentiated as Noanama or more recently Waunana Indians: it is only in Panama that both groups are called Chocó"". [...] ""Emberá bed’ea (the Emberá language) and Wounmeu are linguistically related, sharing about thirty-five (Binder pers. comm.) to fifty percent (Loewen 1960a) cognate roots, and belong to what linguists now acknowledge to be a separate linguistic group [e.g., Chocoan] (Aguirre Licht), Binder, pers. comm.; Mortensen, pers. comm.), but are mutually unintelligible. *Emberá have a number of subgroups also, at least nine according to Loewen (1960) and six according to Mortensen’s current linguistic work (pers.comm.). There has been a small group of Emberá Catio in Panama (Binder, pers. comm.) but the remainder of Panama’s Emberá is Northern Emberá (Mortensen pers. comm.)."" " +Sa5,xd1321,Bribri,brib1243,Bribri (Sa5),Talamanca,1950,Talamancans (SA19),http://ehrafworldcultures.yale.edu/collection?owc=SA19,9,-83,9,-83,Original, +Sa6,xd1322,Yucatec Maya,yuca1254,Yucatec Maya (Sa6),,1520,Yucatec Maya (NV10),http://ehrafworldcultures.yale.edu/collection?owc=NV10,18,-90,18,-90,Original, +Sa7,xd1323,Garifuna,gari1256,Black Carib (Sa7),"Black Carib, Garif",1940,Garifuna (SA12),http://ehrafworldcultures.yale.edu/collection?owc=SA12,16,-89,16,-89,Original, +Sa8,xd1324,Mam,mamm1241,Mam (Sa8),,1930,Mam Maya (NW08),http://ehrafworldcultures.yale.edu/collection?owc=NW08,15,-92,15,-92,Original, +Sa9,xd1325,Miskito,misk1235,Miskito (Sa9),"Mískitu, Mosquito",1920,Miskito (SA15),http://ehrafworldcultures.yale.edu/collection?owc=SA15,13,-85,14.766,-84.089,Revised 22-July-2021 by KK based on web research and review of location in GIS, +Sb1,xd1326,Callinago,isla1278,Callinago (Sb1),,1650,Island Carib (ST13),http://ehrafworldcultures.yale.edu/collection?owc=ST13,15,-61,15.41,-61.27,Revised,"Note 8Feb2018: Changed to crb from car as focus is reported in White SCCS pinpointing sheet as ""Dominica Island"" (See also note from HH: Most of the refs refer to Island Carib [crb] not Galibi Carib on the mainland.)" +Sb2,xd1327,Cágaba,cogu1240,Cagaba (Sb2),"Cagaba, Kagaba, Kogi",1940,Kogi (SC07),http://ehrafworldcultures.yale.edu/collection?owc=SC07,11,-74,11,-74,Original, +Sb3,xd1328,Barí (Motilon),yukp1241,Motilon (Sb3),"Bari, Motilon, Yuko, Motilones, Barí",1940,,,9,-72,9,-72,Original,"Note 8Feb2018: Changed after note by HH:""The Motilon described by Reichel-Dolmatoff is Yukpa [yup] (a Cariban lg) not the Chibchan Bari [mot]""; KK: indeed, the focus is on the ""Iroka"", who are described as a ""Yukpa subtribe"" by Ruddle (1974:29, in Halbmayer 2013). References for case are Holder and Reichel-Dolmatoff, and both seem to have attempted to contact the Bari in 1946 (according to Beckerman and Lizarralde 2013), but may have been unsuccsessful. In any case, both anthropologists, and certainly R-D, worked with the Iroka [Yukpa]. Note from Beckerman and Lizarralde (2013): ""the forest-dwelling Bari (and their traditional and ongoing enemies, the Carib-speaking Yukpa) constituted a recognized obstacle to colonization of the forested land remaining to [the small-scale colonists]"". Both Yukpa and Bari seem to have been known as ""Motilones"" (e.g., see http://www.native-languages.org/definitions/motilone.htm)." +Sb4,xd1329,Cariña,taba1267,Carinya (Sb4),Carinya,1950,,,9,-64,9,-64,Original,"Note 24Sept2018 - dialect Tabajari assigned (language does not change). KK is confident in this assignment; there is an Etnologue point for Carib here (9,-64 approx.). This URL gives the relative location of Carib dialects: https://www.mona.uwi.edu/dllp/jlu/ciel/pages/kalihna.htm. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +Ae15,xd133,Hunde,hund1239,Hunde (Ae15),Bahunde,1940,,,-2,28,-2,28,Original, +Sb5,xd1330,Paraujano,para1316,Paraujano (Sb5),Onoto,1950,,,11,-72,11,-72,Original, +Sb6,xd1331,Wayuu,wayu1243,Goajiro (Sb6),Goajiro,1940,Goajiro (SC13),http://ehrafworldcultures.yale.edu/collection?owc=SC13,12,-72,12,-72,Original, +Sb7,xd1332,Yupa,yukp1241,Yupa (Sb7),,1950,,,9,-72,9,-72,Original, +Sb8,xd1333,Taíno,tain1254,Taino (Sb8),Taino,1520,,,19,-75,19.94,-75.37,Revised, +Sb9,xd1334,Haitians,hait1244,Haitians (Sb9),,1930,Haitians (SV03),http://ehrafworldcultures.yale.edu/collection?owc=SV03,18,-72,18.41,-72.17,Revised, +Sc1,xd1335,Warao,wara1303,Warrau (Sc1),Warrau,1950,Warao (SS18),http://ehrafworldcultures.yale.edu/collection?owc=SS18,9,-62,9,-62,Original, +Sc10,xd1336,Lokono,araw1276,Locono (Sc10),"Locono, Arawak",1900,,,6,-57,5.95,-56.98,Revised, +Sc11,xd1337,Camaracoto,cama1252,Camaracoto (Sc11),Pemon,1930,Pemon (SS16),in process,6,-63,6,-63,Original, +Sc12,xd1338,Macushi,macu1259,Macusi (Sc12),Macusi,1910,,,4,-59,4,-59,Original,"Note 8Feb2018: Note, HH notes that ethnographic references most relevant to Makushi [Sc12] are listed under ""Taulipang"" [Sc15] (Soares Diniz & Ule are on Macushi [mbc] rather than Pemon [aoc]). However, other aspects of case description (name, alternate names) line up with [mbc]. For that reason, I will leave as [mbc], but user should ensure that cultural traits of interest are properly assigned to Macushi vs. Pemon. See Halbmayer, E. 2013. ""Contemporary Carib-speaking Amerindians. A bibliography of social anthropological and linguistic resources for discussion"". For succinct overview and reference lists." +Sc13,xd1339,Panare,enap1235,Panare (Sc13),,1950,,,6,-66,6,-66,Original, +Ae16,xd134,Lulua,luba1249,Lulua (Ae16),Bena Lulua,1910,,,-6,23,-6,23,Original, +Sc14,xd1340,Rucuyen,waya1269,Rucuyen (Sc14),,1890,,,3,-55,3,-55,Original, +Sc15,xd1341,Taulípang,taul1252,Taulipang (Sc15),"Taulipang, Arecuna, Arekuna",1910,,,4,-62,4,-62,Original,"Note 8Feb2018: Note, HH notes that ethnographic references most relevant to Makushi [Sc12] are listed here; it is possible that the more general references currently listed under Sc12 are most appropriate to Taulipang [Sc15] (Farabee 1922 & Kirchoff 1943). However, other aspects of case description (name, alternate names) line up with [aoc]. For that reason, I will leave as [aoc] but user should ensure that cultural traits of interest are properly assigned to Macushi vs. Pemon. See Halbmayer, E. 2013. ""Contemporary Carib-speaking Amerindians. A bibliography of social anthropological and linguistic resources for discussion"". For succinct overview and reference lists." +Sc16,xd1342,Ye'kuana,maqu1238,Yekuana (Sc16),"So'to, Yekuana",1920,,,3,-65,3,-65,Original, +Sc17,xd1343,Piapoco,piap1246,Piapoco (Sc17),,1950,,,6,-68,6,-68,Original, +Sc18,xd1344,Ndyuka,ndyu1242,Djuka (Sc18),"Djuka, Bush Negroes, Ndjuka",1960,,,5,-54,5,-54,Original, +Sc2,xd1345,Pumé,pume1238,Yaruro (Sc2),Yaruro,1950,Pumé (SS19),http://ehrafworldcultures.yale.edu/collection?owc=SS19,7,-68,7,-68,Original, +Sc3,xd1346,Barama River Carib,mura1272,Barama Carib (Sc3),"Barama Carib, Carib",1930,Barama River Carib (SR09),http://ehrafworldcultures.yale.edu/collection?owc=SR09,5,-59,5,-59,Original,"Note 24Sept2018 - KK has high confidence in this dialect assignment (mura1272). The Barama carib location is in Guyana; there is an Etnologue point for Carib here (7.42,-60.17 approx.). This URL gives the relative location of Carib dialects: https://www.mona.uwi.edu/dllp/jlu/ciel/pages/kalihna.htm." +Sc4,xd1347,Guahibo,guah1255,Guahibo (Sc4),,1950,,,5,-69,5,-69,Original, +Sc5,xd1348,Wapishana,wapi1253,Wapishana (Sc5),,1900,,,3,-60,3,-60,Original, +Sc6,xd1349,Saramaccan ,sara1340,Saramacca (Sc6),"Saramaccan of Suriname, Saramacca, Bush Negroes",1920,Saramaka (SR15),http://ehrafworldcultures.yale.edu/collection?owc=SR15,4,-56,4,-56,Original, +Ae17,xd135,Rega,lega1249,Rega (Ae17),"Balegga, Barega, Valega, Warega",1900,,,-3,28,-3,28,Original, +Sc7,xd1350,Yabarana,yaba1248,Yabarana (Sc7),,1950,,,5,-66,5,-66,Original, +Sc8,xd1351,Piaroa,piar1243,Piaroa (Sc8),,1950,,,5,-67,5,-67,Original, +Sc9,xd1352,Curripaco,curr1243,Curipaco (Sc9),Curipaco,1950,,,5,-67,5,-67,Original, +Sd1,xd1353,Munduruku,mund1330,Mundurucu (Sd1),"Wuy Jugu, Mundurucu",1950,Mundurucu (SQ13),http://ehrafworldcultures.yale.edu/collection?owc=SQ13,-6,-58,-6,-58,Original, +Sd2,xd1354,Tapirapé,tapi1254,Tapirape (Sd2),Tapirape,1930,Tapirape (SP22),http://ehrafworldcultures.yale.edu/collection?owc=SP22,-11,-52,-11,-52,Original, +Sd3,xd1355,Palikur,pali1279,Palikur (Sd3),Wasa,1920,,,3,-52,3,-52,Original, +Sd4,xd1356,Guaica,yano1262,Waica (Sd4),"Waica, Guiaika",1950,Yanoama (SQ18),http://ehrafworldcultures.yale.edu/collection?owc=SQ18,2,-65,2,-65,Original, +Sd5,xd1357,Sateré Mawé,sate1243,Maue (Sd5),Maue,1950,,,-4,-57,-4,-57,Original, +Sd6,xd1358,Shiriana,nina1238,Shiriana (Sd6),"Kirishana, Xiriana",1960,Yanoama (SQ18),http://ehrafworldcultures.yale.edu/collection?owc=SQ18,4,-63,4,-63,Original, +Sd7,xd1359,Wai-wai,waiw1244,Waiwai (Sd7),Waiwai,1950,,,1,-59,1,-59,Original, +Ae18,xd136,Songye,song1303,Songe (Ae18),"Songe, Basonge, Bassongo",1900,,,-6,25,-6,25,Original, +Sd8,xd1360,Sanema,sanu1240,Sanema (Sd8),,1950,Yanoama (SQ18),http://ehrafworldcultures.yale.edu/collection?owc=SQ18,4,-66,4,-66,Original, +Sd9,xd1361,Yanomami,yano1261,Yanomamo (Sd9),"Yanomamo, Yanoama",1965,Yanoama (SQ18),http://ehrafworldcultures.yale.edu/collection?owc=SQ18,2,-65,2,-65,Original, +Se1,xd1362,Sirionó,siri1273,Siriono (Se1),"Miá, Siriono",1940,Siriono (SF21),http://ehrafworldcultures.yale.edu/collection?owc=SF21,-16,-64,-16,-64,Original, +Se10,xd1363,Cocama,coca1259,Cocama (Se10),Ucayali,1670,,,1,-79,1,-79,Original, +Se11,xd1364,Chácobo,chac1251,Chacobo (Se11),"Nóʔciria, Chacobo",1960,,,-12,-67,-12,-67,Original, +Se12,xd1365,Tucano,tuca1252,Tucano (Se12),Tukano,1950,Tucano (SQ19),http://ehrafworldcultures.yale.edu/collection?owc=SQ19,0,-70,0,-70,Original, +Se2,xd1366,Ticuna,ticu1245,Tucuna (Se2),"Tucuna, Tikuna",1940,Tucuna (SQ20),http://ehrafworldcultures.yale.edu/collection?owc=SQ20,-3,-70,-3,-70,Original, +Se3,xd1367,Shuar,shua1257,Jivaro (Se3),Jivaro,1930,Jivaro (SD09),http://ehrafworldcultures.yale.edu/collection?owc=SD09,-3,-78,-3,-78,Original, +Se4,xd1368,Yagua,yagu1244,Yagua (Se4),,1940,,,-3,-72,-3,-72,Original, +Se5,xd1369,Cubeo,cube1242,Cubeo (Se5),"Jiwa, Tucano",1940,Tucano (SQ19),http://ehrafworldcultures.yale.edu/collection?owc=SQ19,1,-71,1,-71,Original, +Ae19,xd137,Garanganze,sang1331,Yeke (Ae19),"Yeke, Bayeke",1930,,,-11,28,-11,28,Original, +Se6,xd1370,Witoto,muru1274,Witoto (Se6),"Ouitoto, Uitoto",1910,,,-1,-74,-1,-74,Original, +Se7,xd1371,Camba,chiq1248,Camba (Se7),,1950,,,-18,-63,-18,-63,Original,"Note, previously xba and kamb1287 (Camba). ISO code retired, considered a duplicate of [cax] Chiquitano. Chiquitano glottocode is chiq1248" +Se8,xd1372,Amahuaca,amah1246,Amahuaca (Se8),,1950,,,-10,-72,-10,-72,Original, +Se9,xd1373,Shipibo-Conibo,ship1254,Conibo (Se9),Conibo,1920,,,-9,-74,-9,-74,Original, +Sf1,xd1374,Inca,cusc1236,Inca (Sf1),,1530,Inca (SE13),http://ehrafworldcultures.yale.edu/collection?owc=SE13,-13,-72,-13,-72,Original, +Sf2,xd1375,Aymara,cent2142,Aymara (Sf2),,1940,Aymara (SF05),http://ehrafworldcultures.yale.edu/collection?owc=SF05,-16,-69,-16,-69,Original, +Sf3,xd1376,Chachi,chac1249,Cayapa (Sf3),Cayapa,1910,Chachi (SD06),http://ehrafworldcultures.yale.edu/collection?owc=SD06,1,-79,1,-79,Original, +Sf4,xd1377,U'wa,cent2150,Tunebo (Sf4),"Tunebo, Tabe",1950,,,7,-72,7,-72,Original, +Sf5,xd1378,Páez,paez1247,Paez (Sf5),Paez,1900,Paez (SC15),in process,3,-76,3,-76,Original, +Sf6,xd1379,Muisca,chib1270,Chibcha (Sf6),Chibcha,1540,,,5,-72,5,-72,Original, +Ae2,xd138,Kpe,mokp1239,Kpe (Ae2),"Bakwedi, Bakwiri, Kpeli, Kwiri",1950,,,4,9,4.22,9.27,Revised, +Sf7,xd1380,Asháninka,ajyi1238,Campa (Sf7),"Campa, Ande, Anti, Kampa",1900,,,-8,-75,-8,-75,Original,"Note 8Feb2018: Glottocode changed to ajyi1238 based on note from HH: ""The Campa described by Craig is Shira Mountain Campa = Ajyíninka"" [all other references appear to describe the ""Campa"" generally]." +Sf8,xd1381,Piro,yine1238,Piro (Sf8),Nomole,1950,,,-12,-73,-12,-73,Original, +Sf9,xd1382,Uru,uruu1244,Uru (Sf9),,1930,Uru (SF24),http://ehrafworldcultures.yale.edu/collection?owc=SF24,-16,-69,-16,-69,Original, +Sg1,xd1383,Yahgan,yama1264,Yahgan (Sg1),,1870,Yahgan (SH06),http://ehrafworldcultures.yale.edu/collection?owc=SH06,-55,-69,-55.02,-68.98,Revised, +Sg2,xd1384,Mapuche,mapu1245,Mapuche (Sg2),,1880,Aracuanians (SG04),http://ehrafworldcultures.yale.edu/collection?owc=SG04,-39,-68,-39,-68,Original, +Sg3,xd1385,Ona,onaa1245,Ona (Sg3),,1880,Ona (SH04),http://ehrafworldcultures.yale.edu/collection?owc=SH04,-54,-69,-54,-69,Original, +Sg4,xd1386,Tehuelche,tehu1242,Tehuelche (Sg4),Patagon,1870,Tehuelche (SH05),http://ehrafworldcultures.yale.edu/collection?owc=SH05,-46,-70,-46,-70,Original, +Sg5,xd1387,Alacaluf,qawa1238,Alacaluf (Sg5),Kawésqar,1900,,,-52,-74,-52,-74,Original, +Sh1,xd1388,Wichí,wich1264,Mataco (Sh1),"Mataco, Nocten",1860,Mataco (SI07),http://ehrafworldcultures.yale.edu/collection?owc=SI07,-24,-63,-24,-63,Original,Note 8Feb2018: Changed based on note from HH: Pelleschi is Wichí Lhamtés Güisnay [mzh] +Sh2,xd1389,Terena,tere1279,Terena (Sh2),Poké,1850,Terena (SK07),http://ehrafworldcultures.yale.edu/collection?owc=SK07,-21,-58,-21,-58,Original, +Ae20,xd139,Ekonda,ekon1238,Ekonda (Ae20),,1940,,,-2,18,-2,18,Original, +Sh3,xd1390,Abipón,abip1241,Abipon (Sh3),"Abipon, Abipones",1800,Abipon (SI04),http://ehrafworldcultures.yale.edu/collection?owc=SI04,-29,-61,-29,-61,Original, +Sh4,xd1391,Kadiwéu,kadi1248,Caduveo (Sh4),Caduveo,1940,,,-22,-57,-22,-57,Original, +Sh5,xd1392,Choroti,iyow1239,Choroti (Sh5),Zolota,1910,Choroti (SK06),in process,-22,-62,-22,-62,Original, +Sh6,xd1393,Chamacoco,cham1315,Chamacoco (Sh6),Ishír,1890,,,-20,-59,-20,-59,Original, +Sh7,xd1394,Guaraní,east2555,Chiriguano (Sh7),"Chiriguano, Guarani",1900,Chiriguano (SF10),in process,-20,-63,-20,-63,Original, +Sh8,xd1395,Toba,toba1269,Toba (Sh8),"Qom-lik, Qom, Tacshic, Toqoit",1964,Toba (SI12),in process,-25,-60,-25,-60,Original, +Sh9,xd1396,Lengua,nort2971,Lengua (Sh9),,1890,,,-23,-59,-23,-59,Original, +Si1,xd1397,Bororo,boro1282,Bororo (Si1),,1920,Bororo (SP08),http://ehrafworldcultures.yale.edu/collection?owc=SP08,-16,-55,-16,-55,Original, +Si10,xd1398,Kuikuru,kuik1246,Kuikuru (Si10),Ukuge,1950,,,-13,-54,-13,-54,Original, +Si2,xd1399,Trumai,trum1247,Trumai (Si2),Ho kod ke,1930,Trumai (SP23),http://ehrafworldcultures.yale.edu/collection?owc=SP23,-12,-53,-12,-53,Original, +Ab13,xd14,Tswana,tswa1253,Tswana (Ab13),"Batswana, Bechuana",1880,,,-24,27,-24,27,Original, +Ae21,xd140,Kela,yela1238,Kela (Ae21),"Akela, Bakela, Ekela, Ikela",1920,,,-3,23,-3,23,Original,"Note, previously kela1254 but changed by non-KK DPLACE editor in early 2016 (before 8April2016); earlier KK note: ISO recognized by SIL, but considered bookkeeping by Glottolog" +Si3,xd1400,Bacairi,baka1277,Bacairi (Si3),,1940,Bakairi (SP07),http://ehrafworldcultures.yale.edu/collection?owc=SP07,-14,-55,-14,-55,Original, +Si4,xd1401,Nambikwara,sout2994,Nambicura (Si4),Nambicura,1940,Nambicuara (SP17),http://ehrafworldcultures.yale.edu/collection?owc=SP17,-12,-59,-12,-59,Original, +Si5,xd1402,Kamayurá,kama1373,Camayura (Si5),Camayura,1940,,,-12,-54,-12,-54,Original, +Si6,xd1403,Guató,guat1253,Guato (Si6),Guato,1900,,,-19,-58,-19,-58,Original, +Si7,xd1404,Paresi,pare1272,Paressi (Si7),Paressi,1910,,,-15,-58,-15,-58,Original, +Si8,xd1405,Umotina,umot1240,Umotina (Si8),,1940,,,-15,-57,-15,-57,Original, +Si9,xd1406,Aweti,awet1244,Aueto (Si9),"Aueto, Aueti",1940,,,-12,-54,-12,-54,Original, +Sj1,xd1407,Carajá,kara1500,Caraja (Sj1),Caraja,1950,Karaja (SP09),in process,-12,-50,-12,-50,Original, +Sj10,xd1408,Cayua,mbya1239,Cayua (Sj10),"Abá, Cayua, Caingua, Guaraní, Guarani",1950,Cayua (SM04),http://ehrafworldcultures.yale.edu/collection?owc=SM04,-26,-54,-26,-54,Original, +Sj11,xd1409,Shavante,xava1240,Shavante (Sj11),,1958,,,-14,-52,-14,-52,Original, +Ae22,xd141,Kutsu,kusu1252,Kutshu (Ae22),"Kutshu, Ankutshu, Bankutshu, Wankutshu",1900,,,-4,22,-4,22,Original, +Sj2,xd1410,Sherente,xere1240,Sherente (Sj2),Cherente,1850,,,-9,-48,-9,-48,Original, +Sj3,xd1411,Aweikoma,xokl1240,Aweikoma (Sj3),"Xokleng, Shokleng, Botocudo of Santa Catarina, Bugre, Kaingang of Santa Catarina (though Aweikoma and Kaingang today considered separate groups)",1910,Xokleng (SM03),http://ehrafworldcultures.yale.edu/collection?owc=SM03,-28,-50,-28,-50,Original, +Sj4,xd1412,Canela,cane1242,Ramcocamecra (Sj4),"Ramcocamecra, Timbira, Canella",1930,Canela (SO08),http://ehrafworldcultures.yale.edu/collection?owc=SO08,-7,-45,-7,-45,Original, +Sj5,xd1413,Aimoré,kren1239,Botocudo (Sj5),"Nac-nanuk, Nac-poruk, Botocudo",1880,,,-18,-42,-18,-42,Original, +Sj6,xd1414,Tenetehara,temb1276,Tenetehara (Sj6),,1930,,,-3,-46,-3,-46,Original, +Sj7,xd1415,Apinaye,apin1244,Apinaye (Sj7),,1920,,,-6,-49,-6,-49,Original, +Sj8,xd1416,Tupinambá,tupi1273,Tupinamba (Sj8),Tupinamba,1600,Tupinamba (SO09),http://ehrafworldcultures.yale.edu/collection?owc=SO09,-8,-35,-8,-35,Original, +Sj9,xd1417,Kayapo,kaya1330,Coroa (Sj9),"Coroa, Northern Cayapo",1950,,,-8,-52,-8,-52,Original,Note 8Feb2018: Changed based on note from HH: Unclear why this is not simply Kayapó [txu]?! +Ae23,xd142,Lalia,ngan1302,Lalia (Ae23),"Dzalia, Lolia",1930,,,-1,23,-1,23,Original,"Note, previously lali1242 but changed by non-KK DPLACE editor in early 2016 (before 8April2016); earlier KK note: ISO recognized by SIL, but considered bookkeeping by Glottolog; could POTENTIALLY be linked to nxd - ngan1302, as a few online sources suggest that Lalia people speak ""Longando"" (Ngando, nxd), which wikipedia reports is a sister(?) langage of Lalia (lal)." +Ae24,xd143,Mongo,long1393,Mongo (Ae24),"Balolo, Bamongo, Lolo, Mbongo",1920,,,1,22,1,22,Original,"Note, dialect should be that spoken in Opala territory." +Ae25,xd144,Tetela,tete1250,Tetela (Ae25),Batetela,1920,,,-4,25,-4,25,Original, +Ae26,xd145,Topoke,poke1238,Topoke (Ae26),"Foma, Tofoke",1910,,,0,24,0,24,Original, +Ae27,xd146,Lokele,kele1255,Lokele (Ae27),"Likile, Lukelle",1910,,,1,25,1,25,Original, +Ae28,xd147,Ngala,ling1263,Ngala (Ae28),"Bangala, Boloki, Gens d'Eau",1900,,,1,18,1,18,Original, +Ae29,xd148,Poto,luse1252,Poto (Ae29),"Bapoto, Foto, Mafoto, Upoto",1900,,,2,22,2,22,Original, +Ae3,xd149,Fang,fang1246,Fang (Ae3),"Fan, Pahouin, Pangwe",1910,Fang (FH09),in process,1,11,1,11,Original, +Ab14,xd15,Lovedu,lobe1242,Lovedu (Ab14),Balovedu,1930,Lovedu (FX14),in process,-24,31,-24,31,Original, +Ae30,xd150,Bira,bila1255,Bira (Ae30),"Babeyru, Babira, Babila, Wabira",1920,,,1,29,1,29,Original, +Ae31,xd151,Budu,budu1250,Budu (Ae31),"Babudu, Banabuddu, Mabudu, Wabuddu",1920,,,2,28,2,28,Original, +Ae32,xd152,Kumu,komo1260,Kumu (Ae32),"Bakumu, Wakumu",1920,,,-1,27,-1,27,Original, +Ae33,xd153,Ndaka Babali,bali1274,Ndaka Babali (Ae33),"Bandaka, Bali, Babali, Mabali, Mobale (formerly erroneously called Ndaka)",1920,,,1,27,1,27,Original, +Ae34,xd154,Plains Bira,bera1259,Plains Bira (Ae34),Babira,1920,,,1,30,1,30,Original, +Ae35,xd155,Rumbi,lomb1254,Rumbi (Ae35),"Barumbi, Warumbi",1900,,,0,28,0,28,Original, +Ae36,xd156,Bombesa,mbes1238,Bombesa (Ae36),"Mbesa, Mombesa",1920,,,1,23,1,23,Original, +Ae37,xd157,Budja,budz1238,Budja (Ae37),"Babudza, Mbudja",1930,,,3,23,3,23,Original, +Ae38,xd158,Ndoko,doko1244,Ndoko (Ae38),Doko,1920,,,2,21,2,21,Original, +Ae39,xd159,Ngombe,binj1250,Ngombe (Ae39),Gombe,1920,,,2,20,2,20,Original, +Ab15,xd16,Pedi,tswe1238,Pedi (Ab15),Bapedi,1860,,,-25,30,-25,30,Original, +Ae4,xd160,Nkundo,nkun1238,Nkundo (Ae4),,1930,Mongo (FO32),http://ehrafworldcultures.yale.edu/collection?owc=FO32,0,20,0,20,Original, +Ae40,xd161,Dzem,njye1238,Dzem (Ae40),"Djem, Ndjem, Nyem",1910,,,3,14,3,14,Original, +Ae41,xd162,Kota,ndas1238,Kota (Ae41),"Bakota, Ikota, Kuta",1940,,,1,14,1,14,Original,"Note 8Feb2018: Changed based on note from HH: The Kota (""Kota Sud"") described by Andersson matches better with Ndasa [nda]." +Ae42,xd163,Ngumba,kwas1243,Ngumba (Ae42),Mvumba,1900,,,3,11,3,11,Original, +Ae43,xd164,Sanga,bomw1238,Sanga (Ae43),"Basanga, Bosanga, Masanga, Missanga",1900,,,2,16,2,16,Original, +Ae44,xd165,Bubi,bube1242,Bubi (Ae44),"Adija, Ediya",1920,,,4,9,3.54,8.72,Revised, +Ae45,xd166,Kundu,orok1266,Kundu (Ae45),Bakundu,1900,,,10,9,10,9,Original, +Ae46,xd167,Mpongwe,myen1241,Mpongwe (Ae46),"Empongwe, Pongo",1870,,,-2,10,-2,10,Original, +Ae47,xd168,Puku,bata1285,Puku (Ae47),Bapuku,1900,,,2,10,2,10,Original, +Ae48,xd169,Bafia,bafi1243,Bafia (Ae48),"Bekpa, Fia",1930,,,5,11,5,11,Original, +Ab16,xd17,Lenge,leng1257,Lenge (Ab16),Valenge,1930,,,-25,34,-25,34,Original, +Ae49,xd170,Bali Nyonga,mung1266,Bali (Ae49),"Bali, Bulu, Bani, Li",1900,,,6,10,6,10,Original, +Ae5,xd171,Bamileke,fefe1239,Bamileke (Ae5),,1910,,,5,10,5,10,Original, +Ae50,xd172,Bamum,bamu1253,Bamum (Ae50),"Bamun, Mum",1920,,,6,11,6,11,Original, +Ae51,xd173,Banen,tune1261,Banen (Ae51),,1940,,,5,11,5,11,Original, +Ae52,xd174,Fungom,mmen1238,Fungom (Ae52),,1950,,,7,10,7,10,Original, +Ae53,xd175,Koko,bako1249,Koko (Ae53),"Bakoko, Betjek, Mwele",1920,,,4,11,4,11,Original, +Ae54,xd176,Kom,komc1235,Kom (Ae54),"Bahom, Bamekom, Bikom",1950,,,6,10,6,10,Original, +Ae55,xd177,Ndob,band1349,Ndob (Ae55),"Bandob, Mburukem, Ndop",1950,,,6,10,6,10,Original, +Ae56,xd178,Nsaw,lamn1239,Nsaw (Ae56),Bansaw,1950,,,6,11,6,11,Original, +Ae57,xd179,Nsungli,limb1268,Nsungli (Ae57),Dzungle,1930,,,6,11,6,11,Original, +Ab17,xd18,Ndau,ndau1241,Ndau (Ab17),Vandau,1920,,,-20,34,-20,34,Original, +Ae58,xd180,Tikar,tige1238,Tikar (Ae58),,1910,,,6,12,6,12,Original, +Ae59,xd181,Widikum,meta1238,Eidekum (Ae59),"Eidekum, Widekum",1950,,,6,10,6,10,Original, +Ae6,xd182,Luba,luba1250,Luba (Ae6),Baluba,1930,,,-8,26,-8,26,Original, +Ae7,xd183,Baboa,bwaa1238,Babwa (Ae7),"Babwa, Ababwa, Bobua",1910,,,3,25,3,25,Original,Note 8Feb2018: Changed based on note from HH: These refs refer to Bwa [bww] not Kwa' [bko] (a completely different lg in Cameroon). +Ae8,xd184,Rundi,rund1242,Rundi (Ae8),"Barundi, Warundi",1910,Barundi (FO58),http://ehrafworldcultures.yale.edu/collection?owc=FO58,-3,30,-3,30,Original, +Ae9,xd185,Fut,bafu1246,Fut (Ae9),"Bafut, Fu",1950,,,6,10,6,10,Original, +Af1,xd186,Fon,fonn1241,Fon (Af1),"Dahomey, Dahomeans",1890,Fon (FA18),http://ehrafworldcultures.yale.edu/collection?owc=FA18,7,2,7,2,Original, +Af10,xd187,Igbo,nucl1417,Ibo (Af10),Ibo,1930,Igbo (FF26),http://ehrafworldcultures.yale.edu/collection?owc=FF26,6,7,6,7,Original, +Af11,xd188,Toma,toma1245,Toma (Af11),,1920,,,11,-9,11,-9,Original, +Af12,xd189,Akyem,akye1239,Akyem (Af12),Akwahu,1930,Twi (FE12),http://ehrafworldcultures.yale.edu/collection?owc=FE12,7,-1,7,-1,Original, +Ab18,xd19,Shona,shon1251,Shona (Ab18),Mashona,1920,Shona (FS05),http://ehrafworldcultures.yale.edu/collection?owc=FS05,-19,31,-19,31,Original,"Note 8Feb2018: Note: HH notes that one of the cited ethnographic references (Prost 1956) refers to a completely different West African linguistic group. The assignment of Shona here appears to be correct. Focus is on ""Zezuru"", which is listed as a dialect of ""Shona"" (zezu1238 <- shon1251)." +Af13,xd190,Ebira,ebir1243,Igbira (Af13),"Igbira, Egbiri, Kotokori",1920,,,8,7,8,7,Original, +Af14,xd191,Sherbro,sher1258,Sherbro (Af14),Mampua,1930,,,7,-13,7.52,-12.69,Revised, +Af15,xd192,Kpelle,libe1247,Kpelle (Af15),"Guerse, Kpese",1920,Kpelle (FD06),http://ehrafworldcultures.yale.edu/collection?owc=FD06,7,-9,7,-9,Original, +Af16,xd193,Banyang,keny1279,Banyang (Af16),"Banjangi, Konguan, Manyang, Nyangi",1910,,,6,9,6,9,Original, +Af17,xd194,Boki,boky1238,Boki (Af17),Nki,1900,,,6,9,6,9,Original, +Af18,xd195,Ekoi,ejag1239,Ekoi (Af18),,1900,,,6,8,6,8,Original, +Af19,xd196,Efik,efik1245,Efik (Af19),Riverain Ibibio,1950,,,5,8,5,8,Original, +Af2,xd197,Kissi,nort2765,Kissi (Af2),Ghizi,1950,,,9,-10,9,-10,Original, +Af20,xd198,Ibibio,ibib1240,Ibibio (Af20),,1910,,,5,8,5,8,Original, +Af21,xd199,Ijaw,kala1381,Ijaw (Af21),Ijo,1920,,,2,6,4.37,6.58,Revised, +Aa2,xd2,Dorobo,okie1245,Dorobo (Aa2),"Andorobo, Okiek, Wandorobbo",1920,Okiek (FL20),http://ehrafworldcultures.yale.edu/collection?owc=FL20,0,36,0,36,Original, +Ab19,xd20,Ambo,ndon1254,Ambo (Ab19),Ovambo,1910,,,-17,16,-17,16,Original, +Af22,xd200,Itsekiri,isek1239,Itsekiri (Af22),"Awerri, Jekri, Warri",1940,,,6,5,6,5,Original, +Af23,xd201,Afikpo,afik1238,Afikpo (Af23),,1950,Igbo (FF26),http://ehrafworldcultures.yale.edu/collection?owc=FF26,6,8,6,8,Original, +Af24,xd202,Edo,bini1246,Edo (Af24),Bini,1900,,,6,6,6,6,Original, +Af25,xd203,Isoko,isok1239,Isoko (Af25),,1930,,,5,6,5,6,Original, +Af26,xd204,Kukuruku,yekh1238,Kukuruku (Af26),,1900,,,7,6,7,6,Original, +Af27,xd205,Eloyi,eloy1241,Afo (Af27),"Eloyi, Afo",1950,,,8,8,8,8,Original, +Af28,xd206,Gbagyi,gbar1246,Gbari (Af28),"Gbari, Gwali",1910,,,10,10,10,10,Original, +Af29,xd207,Idoma,idom1241,Idoma (Af29),,1950,,,7,8,7,8,Original, +Af3,xd208,Ashanti,asan1239,Ashanti (Af3),Twi,1900,Twi (FE12),http://ehrafworldcultures.yale.edu/collection?owc=FE12,7,-2,7,-2,Original, +Af30,xd209,Igala,igal1242,Igala (Af30),Igara,1920,,,7,7,7,7,Original, +Ab2,xd21,Swazi,swat1243,Swazi (Ab2),Amaswazi,1880,,,-27,32,-27,32,Original, +Af31,xd210,Koro,ashe1269,Koro (Af31),,1960,,,18,8,18,8,Original, +Af32,xd211,Egba,egba1238,Egba (Af32),,1920,Yoruba (FF62),http://ehrafworldcultures.yale.edu/collection?owc=FF62,7,3,7,3,Original, +Af33,xd212,Ekiti,ekit1244,Ekiti (Af33),,1950,Yoruba (FF62),http://ehrafworldcultures.yale.edu/collection?owc=FF62,8,5,8,5,Original, +Af34,xd213,Ife,ifee1241,Ife (Af34),,1930,Yoruba (FF62),http://ehrafworldcultures.yale.edu/collection?owc=FF62,7,5,7,5,Original, +Af35,xd214,Adangme,adan1247,Adangme (Af35),Adampe,1940,,,6,0,6,0,Original, +Af36,xd215,Ewe,aguu1242,Ewe (Af36),,1900,,,7,1,7,1,Original, +Af37,xd216,Buem,siwu1238,Buem (Af37),,1900,,,3,1,7.22,0.46,Revised,"Note 8Feb2018: HH notes that ""Buem"" may not be an appropriate name for the group (""HH: Buem (the name) usually refers to Lelemi [lef], I don't know the refs but if they refer to Siwu, it's not clear why the name Buem is used as the name for this society.""). Indeed, focus is ""Akpafu"", which is a Siwu speaking group. KK suggests considering renaming group to ""Mawu"" -- see next: From Wikipedia (appears to be reliable, based on additional reading by KK): ""The speakers of Siwu call themselves the ""Mawu"". Siwu is spoken in a total of eight villages scattered about in the mountains north of Hohoe. [The land is divided into] Akpafu (West) [akpa1243] and Lolobi (East) [lolo1260], corresponding to a dialectal division. [...] Within the Ghana-Togo Mountain Languages, the closest relatives of Siwu are Lεlεmi (Buem), Sεlε (Santrokofi), and Sεkpεlε (Likpe); with Siwu, these languages form a group that has been called the Buem group (Heine 1969). (https://en.wikipedia.org/wiki/Siwu_language).""" +Af38,xd217,Abron,abro1238,Abron (Af38),Brong,1900,,,5,-3,7.53,-2.15,Revised, +Af39,xd218,Anyi,anyi1245,Anyi (Af39),,1900,,,7,-4,7,-4,Original, +Af4,xd219,Yako,loka1252,Yako (Af4),,1930,,,6,8,6,8,Original, +Ab20,xd22,Ngumbi,nkhu1238,Ngumbi (Ab20),"Bangumbi, Humbe, Khumbi, Nkumbe, Ovakumbe, Vankumbe",1880,,,-15,15,-15,15,Original, +Af40,xd220,Assini,abur1243,Assini (Af40),Issinese,1890,,,5,-4,5.27,-3.58,Revised, +Af41,xd221,Attie,atti1239,Attie (Af41),,1890,,,6,-4,6,-4,Original, +Af42,xd222,Fante,fant1241,Fanti (Af42),Fanti,1900,Twi (FE12),http://ehrafworldcultures.yale.edu/collection?owc=FE12,6,-1,6,-1,Original, +Af43,xd223,Ga,gaaa1244,Ga (Af43),,1930,,,6,0,6,0,Original, +Af44,xd224,Alagya,alla1248,Alagya (Af44),Jackjack,1900,,,5,-4,5.22,-4.42,Revised, +Af45,xd225,Avikam,avik1243,Avikam (Af45),"Brignan, Kwakwa",1900,,,5,-5,5.15,-5.25,Revised, +Af46,xd226,Bakwe,bakw1243,Bakwe (Af46),,1900,,,5,-7,5,-7,Original, +Af47,xd227,Krahn,west2488,Kran (Af47),"Kran, Bush Kru",1940,,,6,-8,6,-8,Original, +Af48,xd228,Kru,klao1243,Kru (Af48),Krao,1850,,,5,-9,5,-9,Original, +Af49,xd229,Sapo,sapo1251,Sapo (Af49),"Pahn, Sapahn",1940,,,6,-9,6,-9,Original, +Ab21a,xd23,Kisama,sama1300,Kisama (Ab21a),"Cisama, Quissama",1930,,,-10,14,-10,14,Original, +Af5,xd230,Mende,mend1266,Mende (Af5),,1930,Mende (FC07),http://ehrafworldcultures.yale.edu/collection?owc=FC07,8,-11,8,-11,Original, +Af50,xd231,Dan,dann1241,Dan (Af50),,1920,,,8,8,8,-8,Original, +Af51,xd232,Gagu,gagu1242,Gagu (Af51),Gban,1920,,,7,-6,7,-6,Original, +Af52,xd233,Guro,guro1248,Guro (Af52),,1920,,,7,-6,7,-6,Original, +Af53,xd234,Tura,tour1242,Tura (Af53),Wen,1950,,,8,-7,8,-7,Original, +Af54,xd235,Gbande,band1352,Gbande (Af54),,1930,,,8,-10,8,-10,Original, +Af55,xd236,Gola,gola1255,Gola (Af55),,1950,,,7,-11,7,-11,Original, +Af56,xd237,Ngere,dann1241,Ngere (Af56),Guere,1930,,,7,-8,7,-8,Original, +Af57,xd238,Temne,timn1235,Temne (Af57),Time,1910,,,8,-13,8.46,-12.64,Revised, +Af58,xd239,Vai,vaii1241,Vai (Af58),Gallina,1900,,,7,-12,6.89,-11.2,Revised, +Ab21b,xd24,Bomvana,bomv1238,Bomvana (Ab21b),,1925,,,-32,28,-32.17,28.93,Revised_2Aug2021, +Af6,xd240,Oyo Yoruba,oyoo1238,Oyo Yoruba (Af6),,1950,Yoruba (FF62),http://ehrafworldcultures.yale.edu/collection?owc=FF62,8,4,8,4,Original,2Aug2021 Dialect match updated by KK +Af7,xd241,Bete,dalo1238,Bete (Af7),,1950,,,6,-7,6,-7,Original,Note 8Feb2018: Changed based on note from HH: Bete of Hallouin and Paulme is Bété-Daloa [bev] +Af8,xd242,Nupe,nupe1254,Nupe (Af8),,1930,Nupe (FF52),http://ehrafworldcultures.yale.edu/collection?owc=FF52,9,6,9,6,Original, +Af9,xd243,Baule,baou1238,Baule (Af9),,1900,,,8,-5,8,-5,Original, +Ag1,xd244,Bambara,bamb1269,Bambara (Ag1),Bamana,1920,Bambara (FA08),http://ehrafworldcultures.yale.edu/collection?owc=FA08,13,-7,13,-7,Original, +Ag10,xd245,Konkomba,konk1269,Konkomba (Ag10),"Bekpokpak, Konko, Kpankpam, Lekpokpam, Pangpana, Tyopo",1940,,,10,0,10,0,Original, +Ag11,xd246,Lobi,lobi1245,Lobi (Ag11),,1910,,,10,-4,10,-4,Original, +Ag12,xd247,Nankanse,nank1249,Nankanse (Ag12),Nankana,1910,,,10,-1,10,-1,Original, +Ag13,xd248,Kasena,kase1253,Kasena (Ag13),"Kasem, Kasuna",1910,,,11,-1,11,-1,Original, +Ag14,xd249,Baga,mbul1258,Baga (Ag14),,1950,,,10,-14,10,-14,Original,"Note 8Feb2018: Glottocode changed to mbul1258 [mbv] based on note from HH: Paulme deals with Baga Sitemou = Baga Sitemu[bsp] and Baga Foré = Mbulungish [mbv] rather than Baga Koga. KK: In fact, these two languages are not sisters. However, a third reference refers to Nalu (nalu1240/[naj]) which IS a sister to mbv. THerefore, mbv was selected over bsp. [ALSO note that some references appear to refer to ""Baga Dörbed"" (Kalmyk), a Mongol people, and need to be re-assigned to society ""Kalmyk"" (aberle1953; krader1963; vladimirtsov1948). " +Ab22,xd25,Chopi,copi1238,Chopi (Ab22),Vachopi,1920,,,-25,35,-24.76,34.47,Revised, +Ag15,xd250,Balanta,bala1301,Balante (Ag15),Balante,1930,,,12,-16,12,-16,Original, +Ag16,xd251,Banyun,bain1259,Banyune (Ag16),"Bainuk, Banhun, Banyune",1930,,,12,-16,12,-16,Original, +Ag17,xd252,Biafada,biaf1240,Biafada (Ag17),,1940,,,12,-15,12,-15,Original, +Ag18,xd253,Bijogo,bidy1244,Bijogo (Ag18),Bijago,1930,,,11,-16,11.1,-16.15,Revised, +Ag19,xd254,Diola,ejam1238,Diola (Ag19),Jola-Felupe,1930,,,12,-17,12.88,-16.19,Revised,Note 8Feb2018: Changed based on note from HH: Cunha Taborde deals with Jola-Felupe [eja] rather than Diola-Fonyi +Ag2,xd255,Mossi (Yatenga),moss1236,Yatenga (Ag2),"Yatenga, Massi, Moshi, Mossi",1950,Mossi (FA28),http://ehrafworldcultures.yale.edu/collection?owc=FA28,13,-2,13,-2,Original,"I think this should be the ""Ouahigouya"" dialect of Mossi (mos), though there is no such dialect in Glottolog." +Ag20,xd256,Papel,pape1239,Pepel (Ag20),Pepel,1930,,,12,-16,12,-16,Original, +Ag21,xd257,Bassari,bass1258,Bassari (Ag21),Biyan,1910,,,12,-13,12,-13,Original, +Ag22,xd258,Serer,sere1260,Serer (Ag22),Kegueme,1920,,,14,-12,14,-12,Original, +Ag23,xd259,Kasonke,xaas1235,Kasonke (Ag23),,1910,,,13,-11,13,-11,Original, +Ab3,xd26,Lozi,lozi1239,Lozi (Ab3),,1890,Lozi (FQ09),http://ehrafworldcultures.yale.edu/collection?owc=FQ09,-15,23,-15,23,Original, +Ag24,xd260,Koranko,kura1250,Koranko (Ag24),,1910,,,9,-11,9,-11,Original, +Ag25,xd261,Soninke,soni1259,Soninke (Ag25),Sarakole,1900,,,15,10,15,10,Original, +Ag26,xd262,Susu,susu1250,Susu (Ag26),Soso,1930,,,15,-13,15,-13,Original, +Ag27,xd263,Diula,dyul1238,Diula (Ag27),Dyoura,1910,,,9,-4,9,-4,Original, +Ag28,xd264,Nononke,jena1242,Nono (Ag28),"Nono, Marka, Marka-Dafing, Dafi",1930,,,14,-4,14,-4,Original, +Ag29,xd265,Samo,sout2844,Samo (Ag29),Samako,1910,,,13,-3,13,-3,Original, +Ag3,xd266,Dogon,bank1259,Dogon (Ag3),"Dagom, Habbe, Kado, Tombo",1930,Dogon (FA16),http://ehrafworldcultures.yale.edu/collection?owc=FA16,15,-3,15,-3,Original, +Ag30,xd267,Bobo,nort2819,Bobo (Ag30),,1910,,,13,-4,13,-4,Original, +Ag31,xd268,Minianka,mama1271,Minianka (Ag31),,1910,,,12,-6,12,-6,Original, +Ag32,xd269,Senufo,ceba1235,Senufo (Ag32),"Sene, Siena",1900,,,10,-6,10,-6,Original, +Ab4,xd27,Tsonga,tson1249,Thonga (Ab4),"Thonga, Tonga, Vatsonga",1920,Tsonga (FT06),http://ehrafworldcultures.yale.edu/collection?owc=FT06,-24,32,-24,32,Original, +Ag33,xd270,Dyan,dyan1251,Dian (Ag33),"Dian, Dya",1920,,,11,-3,11,-3,Original, +Ag34,xd271,Dorosie,dogo1295,Dorosie (Ag34),Dorho,1930,,,11,-4,11,-4,Original, +Ag35,xd272,Kulango,boun1243,Kulango (Ag35),Parkhalla,1910,,,7,-3,7,-3,Original, +Ag36,xd273,Lowiili,sout2790,Lowiili (Ag36),,1950,,,11,-3,11,-3,Original,Note 8Feb2018: Changed based on note from HH: LoWiili or Goody is Birifor-Southern [biv] +Ag37,xd274,Awuna,angl1262,Awuna (Ag37),"Atyulo, Frafra, Kassonfra, Yulu",1910,,,11,-2,11,-2,Original, +Ag38,xd275,Builsa,buli1254,Builsa (Ag38),"Bura, Kanjaga",1910,,,11,-2,11,-2,Original, +Ag39,xd276,Dagara,sout2789,Dagari (Ag39),"Dagari, Dagaba",1910,,,11,-3,11,-3,Original, +Ag4,xd277,Tallensi,taln1239,Tallensi (Ag4),,1930,Tallensi (FE11),http://ehrafworldcultures.yale.edu/collection?owc=FE11,11,-1,11,-1,Original, +Ag40,xd278,Isala,tumu1242,Isala (Ag40),"Debe, Gelebagu, Hisala, Pasala",1910,,,10,-2,10,-2,Original, +Ag41,xd279,Kusasi,kusa1250,Kusasi (Ag41),Kusal,1920,,,11,0,11,0,Original, +Ab5,xd28,Mbundu,umbu1257,Mbundu (Ab5),"Banano, Mbari, Nano, Ovimbundu",1930,Mbundu (FP13),http://ehrafworldcultures.yale.edu/collection?owc=FP13,-12,16,-12,16,Original, +Ag42,xd280,Nunuma,sout2795,Nunuma (Ag42),Gurunsi,1910,,,12,-3,12,-3,Original, +Ag43,xd281,Vagala,vagl1239,Vagala (Ag43),Siti,1920,,,8,-2,8,-2,Original, +Ag44,xd282,Dagomba,dagb1246,Dagomba (Ag44),Dagbamba,1910,,,9,0,9,0,Original, +Ag45,xd283,Gurma,gour1243,Gurma (Ag45),"bigourmantcheba, Gourmantche",1930,,,12,2,12,2,Original, +Ag46,xd284,Manprusi,mamp1244,Manprusi (Ag46),Mampelle,1920,,,10,-1,10,-1,Original, +Ag47,xd285,Mossi (Ouagadougou),moss1236,Mossi Ouagadou (Ag47),"Mossi Ouagadou, Massi, Moshi",1900,Mossi (FA28),http://ehrafworldcultures.yale.edu/collection?owc=FA28,12,-2,12,-2,Original, +Ag48,xd286,Basari,ntch1242,Basari (Ag48),,1890,,,9,1,9,1,Original, +Ag49,xd287,Kabre,kabi1261,Kabre (Ag49),"Bekaburum, Kabure",1930,,,10,2,10,2,Original, +Ag5,xd288,Birifor,sout2790,Birifor (Ag5),Birifon,1930,,,10,-3,10,-3,Original, +Ag50,xd289,Moba,moba1244,Moba (Ag50),"Bmoba, Moab",1910,,,11,1,11,1,Original, +Ab6,xd29,Venda,vend1245,Venda (Ab6),"Bavenda, Bawenda",1900,,,-23,30,-23,30,Original, +Ag51,xd290,Somba,dita1238,Somba (Ag51),"Betammadibe, Tamprusi",1940,,,11,1,11,1,Original, +Ag52,xd291,Tem,temm1241,Tem (Ag52),"Chancho, Kotokoli",1950,,,11,1,11,1,Original, +Ag53,xd292,Bisa,biss1248,Bisa (Ag53),Busanse,1960,,,12,0,12,0,Original, +Ag54,xd293,Yalunka,yalu1240,Yalunka (Ag54),Dialonke,1910,,,10,-12,10,-12,Original, +Ag6,xd294,Futajalonke,pula1262,Futajalonke (Ag6),Foutadjallonke,1890,,,11,-13,11,-13,Original, +Ag7,xd295,Bozo,tiey1235,Bozo (Ag7),,1930,,,14,-5,14,-5,Original, +Ag8,xd296,Coniagui,wame1240,Coniagui (Ag8),"Awunlen, Koniagi",1910,,,13,-13,13,-13,Original, +Ag9,xd297,Malinke,kita1249,Malinke (Ag9),"Mandingo, Wangara",1930,,,11,-9,11,-9,Original,"Note 8Feb2018: Glottocode changed to kita1249 [mwk], which is hte focus of Sidibe's work, and also has ""Central Malinke"" listed as an alternative language name. Another reference for this society is focused (according to HH's notes on the closely related [mnk], but whether it also touches on mwk, and/or might have been used for context/depth, should be verified." +Ah1,xd298,Katab,kata1265,Katab (Ah1),,1930,Katab (FF38),http://ehrafworldcultures.yale.edu/collection?owc=FF38,10,8,10,8,Original, +Ah10,xd299,Chawai,atsa1241,Chawai (Ah10),Atsam,1920,,,10,9,10,9,Original, +Aa3,xd3,Nama,nama1265,Nama Hottentot (Aa3),"Khoekhoe, Namaqua, Nama Hottentot",1840,Khoi (FX13),http://ehrafworldcultures.yale.edu/collection?owc=FX13,-26,18,-26,18,Original, +Ab7,xd30,Nyaneka,nyan1305,Nyaneka (Ab7),"Banianeka, Munyaneka, Ovanyaneka, Vanyaneka",1920,,,-15,14,-15,14,Original, +Ah11,xd300,Basa,basa1282,Basa (Ah11),Bassa,1950,,,8,8,8,8,Original, +Ah12,xd301,Basakomo,basa1282,Basakomo (Ah12),Bassa-Komo,1920,,,8,7,8,7,Original, +Ah13,xd302,Dakakari,clel1238,Dakakari (Ah13),,1930,,,12,5,12,5,Original, +Ah14,xd303,Kamuku,cind1241,Kamuku (Ah14),,1920,,,11,6,11,6,Original, +Ah15,xd304,Reshe,resh1242,Reshe (Ah15),"Bareshe, Gungawa, Yauri",1920,,,11,5,11,5,Original, +Ah16,xd305,Angas,ngas1240,Angas (Ah16),,1900,,,9,9,9,9,Original, +Ah17,xd306,Birom,bero1242,Birom (Ah17),"Burum, Kibo",1930,,,10,9,10,9,Original, +Ah18,xd307,Burmawa,bogh1241,Borrom (Ah18),Borrom,1930,,,10,10,10,10,Original, +Ah19,xd308,Adara,kada1284,Kadara (Ah19),Kadara,1930,,,10,8,10,8,Original, +Ah2,xd309,Jukun,juku1254,Jukun (Ah2),Juko,1920,,,8,10,8,10,Original, +Ab8,xd31,Sotho,sout2807,Sotho (Ab8),Basuto,1860,,,-29,28,-29,28,Original, +Ah20,xd310,Kagoro,kago1246,Kagoro (Ah20),,1920,Katab (FF38),http://ehrafworldcultures.yale.edu/collection?owc=FF38,10,8,10,8,Original, +Ah21,xd311,Kurama,kura1249,Kurama (Ah21),,1920,,,10,9,10,9,Original, +Ah22,xd312,Yergum,taro1263,Yergum (Ah22),,1900,,,9,10,9,10,Original, +Ah23,xd313,Jibu,jibu1239,Jibu (Ah23),Jubu,1920,,,8,11,8,11,Original, +Ah24,xd314,Kentu,etky1238,Kentu (Ah24),,1920,,,7,10,7,10,Original, +Ah25,xd315,Tigon,tigo1236,Tigon (Ah25),"Tukum, Thgon",1920,,,17,11,17,11,Original, +Ah26,xd316,Ndoro,ndoo1241,Ndoro (Ah26),,1920,,,7,11,7,11,Original, +Ah27,xd317,Zuande,bita1251,Zuande (Ah27),"Bitare, Yukutare",1920,,,7,11,7,11,Original, +Ah28,xd318,Chamba,samb1305,Chamba (Ah28),Tsamba,1920,,,8,11,8,11,Original, +Ah29,xd319,Daka,samb1311,Daka (Ah29),Dekka,1920,,,8,11,8,11,Original, +Ab9,xd32,Ndebele,nort2795,Ndebele (Ab9),"Amandebele, Matabele",1870,,,-20,28,-20,28,Original, +Ah3,xd320,Tiv,tivv1240,Tiv (Ah3),Munshi,1920,Tiv (FF57),http://ehrafworldcultures.yale.edu/collection?owc=FF57,7,9,7,9,Original, +Ah30,xd321,Longuda,long1389,Longuda (Ah30),Nunguda,1920,,,10,12,10,12,Original, +Ah31,xd322,Mumuye,nucl1240,Mumuye (Ah31),,1910,,,9,12,9,12,Original, +Ah32,xd323,Vere,momj1237,Vere (Ah32),Were,1920,,,9,13,9,13,Original, +Ah33,xd324,Yungur,bena1260,Yungur (Ah33),Binna,1920,,,10,12,10,12,Original,Note 8Feb2018: HH: Yungur usually refers to Bena [yun] rather than its sister Voro [vor]. +Ah34,xd325,Bata,bata1314,Bata (Ah34),,1920,,,10,13,10,13,Original, +Ah35,xd326,Bura,bura1292,Bura (Ah35),,1920,,,10,12,10,12,Original, +Ah36,xd327,Gude,gude1246,Gude (Ah36),Cheke,1920,,,10,13,10,13,Original, +Ah37,xd328,Hwana,hwan1240,Hona (Ah37),Hona,1920,,,10,13,10,13,Original, +Ah38,xd329,Kapsiki,psik1239,Kapsiki (Ah38),"Hiji, Hill Margi",1930,,,11,14,11,14,Original, +Ac1,xd33,Ila,ilaa1246,Ila (Ac1),Baila,1920,Ila (FQ06),http://ehrafworldcultures.yale.edu/collection?owc=FQ06,-16,27,-16,27,Original, +Ah39,xd330,Podokwo,park1239,Podokwo (Ah39),Podogo,1950,,,11,14,11,14,Original, +Ah4,xd331,Mambila,came1252,Mambila (Ah4),Torbi,1920,,,7,12,7,12,Original, +Ah5,xd332,Margi,marg1265,Margi (Ah5),Marghi,1930,,,11,13,11,13,Original, +Ah6,xd333,Gure,gbir1241,Gure (Ah6),Agbiri,1920,,,10,8,10,8,Original, +Ah7,xd334,Mafa,mafa1239,Matakam (Ah7),Matakam,1940,,,11,14,11,14,Original, +Ah8,xd335,Bafute,vute1244,Wute (Ah8),"Wute, Bafute, Bute, Mfute",1910,,,6,12,6,12,Original, +Ah9,xd336,Anaguta,igut1238,Anaguta (Ah9),Naguta,1920,,,10,9,10,9,Original, +Ai1,xd337,Banda,west2458,Banda (Ai1),,1920,,,7,22,7,22,Original, +Ai10,xd338,Otoro,otor1240,Otoro (Ai10),"Otoro Nuba, Nuba",1940,,,12,31,12,31,Original, +Ai11,xd339,Mangbetu,nucl1420,Mangbetu (Ai11),Monbuttu,1900,,,3,28,3,28,Original, +Ac10,xd34,Chewa,chew1246,Chewa (Ac10),"Achewa, Cewa, Sheva",1920,,,-14,33,-14,33,Original, +Ai12,xd340,Fali,sout2782,Fali (Ai12),,1950,,,10,14,10,14,Original,Note 8Feb2018: Changed based on note from HH: Fali of Malzy is Fali from Tingelin = South Fali [fal] +Ai13,xd341,Laka,laka1254,Laka (Ai13),,1920,,,8,16,8,16,Original,"Note 8Feb2018: Changed based on note from HH: Lakka of Tessmann refers to the Sara language Laka [lap] in Tchad/CAR, not Nigeria!" +Ai14,xd342,Mbum,mbum1254,Mbum (Ai14),,1920,,,7,14,7,14,Original, +Ai15,xd343,Mundang,mund1325,Mundang (Ai15),Moundan,1900,,,10,14,10,14,Original, +Ai16,xd344,Namshi,doya1240,Namshi (Ai16),Doayo,1910,,,9,13,9,13,Original, +Ai17,xd345,Gisiga,sout3051,Gisiga (Ai17),Guissiga,1930,,,10,14,10,14,Original, +Ai18,xd346,Kotoko,lagw1237,Kotoko (Ai18),"Logone, Makari",1880,,,12,15,12,15,Original, +Ai19,xd347,Musgu,musg1254,Musgu (Ai19),Muzuk,1910,,,11,15,11,15,Original, +Ai2,xd348,Nyaro,kooo1244,Nyaro (Ai2),,1940,,,11,31,11,31,Original, +Ai20,xd349,Tupuri,tupu1244,Tuburi (Ai20),"Tuburi, Toupouri",1910,,,10,15,10,15,Original, +Ac11,xd35,Luvale,luva1239,Luvale (Ac11),"Aluena, Balovale, Lobare, Luena",1930,,,-12,22,-12,22,Original, +Ai21,xd350,Bagirmi,bagi1246,Bagirmi (Ai21),,1880,,,11,17,11,17,Original, +Ai22,xd351,Sara,sarr1246,Sara (Ai22),,1890,,,9,18,9,18,Original, +Ai23,xd352,Bwaka,ngba1284,Bwaka (Ai23),"Gbwaka, Mbaka, Ngbaka",1920,,,3,19,3,19,Original, +Ai24,xd353,Mandja,manz1243,Mandja (Ai24),,1900,,,6,18,6,18,Original, +Ai25,xd354,Mbandja,mban1263,Mbandja (Ai25),Banza,1950,,,4,21,4,21,Original, +Ai26,xd355,Ngbandi,nort2774,Ngbandi (Ai26),"Gbandi, Mogwandi",1920,,,4,22,4,22,Original, +Ai27,xd356,Abarambo,bara1361,Abarambo (Ai27),,1890,,,4,27,4,27,Original, +Ai28,xd357,Popoi,popo1291,Popoi (Ai28),"Bagunda, Bapopoie",1910,,,2,26,2,26,Original, +Ai29,xd358,Lendu,lend1245,Lendu (Ai29),"Bale, Walega, Walendu",1920,,,2,30,2,30,Original, +Ai3,xd359,Azande,zand1248,Azande (Ai3),Niam-Niam,1920,Azande (FO07),http://ehrafworldcultures.yale.edu/collection?owc=FO07,5,27,5,27,Original, +Ac12,xd36,Chokwe,chok1245,Chokwe (Ac12),"Badjok, Kioko, Tsokwe",1920,,,-10,21,-10,21,Original, +Ai30,xd360,Lese,lese1243,Lese (Ai30),"Balese, Walese",1920,,,2,29,2,29,Original, +Ai31,xd361,Logo,logo1259,Logo (Ai31),,1920,,,3,30,3,30,Original, +Ai32,xd362,Lugbara,lugb1240,Lugbara (Ai32),Lugware,1920,,,3,32,3,32,Original, +Ai33,xd363,Madi,madi1260,Madi (Ai33),,1940,,,4,32,4,32,Original, +Ai34,xd364,Moru,moru1253,Moru (Ai34),,1880,,,5,30,5,30,Original, +Ai35,xd365,Bongo,bong1285,Bongo (Ai35),Dor,1870,,,7,29,7,29,Original, +Ai36,xd366,Jur,luwo1239,Jur (Ai36),"Gour, Jo-Luo",1920,,,8,28,8,28,Original,"Changed again on 09Nov2018: Further reading suggests this Luo speaking group from South Sudan should actually be matched to language luwo1239 ""Dhe Luo"", not to luok1236. See Tucker (1931) “The tribal confusion around Wau [Sudan]” (Sudan Notes and Records 14(1): 49-60 for further disambiguation. Note 8Feb2018: Changed based on note from HH: Crazzolara and Santandrea (and probably the others) is about the Nilotic Luo [luo] which is a completely different language than SBB Jur Modo [bex]" +Ai37,xd367,Koalib,koal1240,Koalib (Ai37),,1940,,,12,31,12,31,Original, +Ai38,xd368,Korongo,kron1241,Korongo (Ai38),,1930,,,10,30,10,30,Original, +Ai39,xd369,Mesakin,ngil1242,Mesakin (Ai39),,1940,,,11,30,11,30,Original, +Ac13,xd37,Tonga,tong1321,Lake Tonga (Ac13),"Lake Tonga, Batonga, Matoka",1950,Lakeshore Tonga (FR07),http://ehrafworldcultures.yale.edu/collection?owc=FR07,-12,34,-12,34,Original, +Ai4,xd370,Ingassana,gaam1241,Ingassana (Ai4),"Engassana, Metabe, Tabi",1920,,,11,34,11,34,Original, +Ai40,xd371,Moro,moro1285,Moro (Ai40),,1940,,,11,30,11,30,Original, +Ai41,xd372,Tira,tira1254,Tira (Ai41),,1930,,,11,30,11,30,Original, +Ai42,xd373,Tullishi,tuli1249,Tullishi (Ai42),,1940,,,12,29,12,29,Original, +Ai43,xd374,Nyimang,amas1236,Nyima (Ai43),"Nyima, Nyamang",1930,,,12,29,12,29,Original, +Ai44,xd375,Anuak,anua1242,Anuak (Ai44),Yambo,1920,,,8,34,8,34,Original, +Ai45,xd376,Meban,maba1273,Meban (Ai45),"Gura, Maban",1930,,,10,34,10,34,Original, +Ai46,xd377,Koma,komo1258,Koma (Ai46),"Gwama, Coma",1930,,,9,35,9,35,Original, +Ai47,xd378,Mao,hozo1236,Mao (Ai47),,1939,,,9,35,9,35,Original, +Ai5,xd379,Mamvu,mamv1243,Mamvu (Ai5),Mornvu,1920,,,3,29,3,29,Original, +Ac14,xd38,Bakongo,sans1272,Kongo (Ac14),Kongo,1900,,,-7,15,-7,15,Original, +Ai6,xd380,Shilluk,shil1265,Shilluk (Ai6),,1900,Shilluk (FJ23),http://ehrafworldcultures.yale.edu/collection?owc=FJ23,10,32,10,32,Original, +Ai7,xd381,Gbaya,nort2775,Baya (Ai7),"Baya, Baja",1910,,,6,16,6,16,Original, +Ai8,xd382,Dilling,dill1242,Dilling (Ai8),,1930,,,12,30,12,30,Original, +Ai9,xd383,Masa,masa1322,Masa (Ai9),Massa,1910,,,10,16,10,16,Original, +Aj1,xd384,Teso,teso1249,Teso (Aj1),"Bateso, Iteso, Kedi",1950,,,2,34,2,34,Original, +Aj10,xd385,Acholi,dhop1238,Acholi (Aj10),Acooli,1920,,,3,32,3,32,Original, +Aj11,xd386,Dinka,sout2832,Dinka (Aj11),Denkawi,1900,,,9,29,9,29,Original,"Note 8Feb2018: Glottocode left as sout2832, as most of the refs seem to refer to [dik]. Users should be aware that ethnographies relating to different Dinka languages are all listed as sources here, hopefully those not focused on the target group help provide context etc." +Aj12,xd387,Lotuko,otuh1238,Lotuko (Aj12),Latuka,1920,,,4,33,4,33,Original, +Aj13,xd388,Pojulu,poju1239,Fajulu (Aj13),Fajulu,1930,,,4,31,4,31,Original, +Aj14,xd389,Kakwa,kakw1240,Kakwa (Aj14),Kakuak,1931,,,4,31,4,31,Original, +Ac15,xd39,Mbala,mbal1257,Mbala (Ac15),"Ambala, Bambala",1900,,,-5,18,-5,18,Original, +Aj15,xd390,Kuku,kuku1285,Kuku (Aj15),,1900,,,4,32,4,32,Original, +Aj16,xd391,Mondari,mand1425,Mondari (Aj16),Mandari,1930,,,6,31,6,31,Original, +Aj17,xd392,Alur,alur1250,Alur (Aj17),"Aloro, Lur",1890,,,2,31,2,31,Original, +Aj18,xd393,Bodi,meen1242,Bodi (Aj18),,1950,,,5,35,5,35,Original, +Aj19,xd394,Didinga,didi1258,Didinga (Aj19),"Birra, Karoko, Toi",1920,,,4,34,4,34,Original, +Aj2,xd395,Maasi,masa1300,Masai (Aj2),Masai,1900,Masai (FL12),http://ehrafworldcultures.yale.edu/collection?owc=FL12,-2,36,-2,36,Original, +Aj20,xd396,Suri,suri1267,Suri (Aj20),"Churi, Kichepo, Thauk, Thuri",1940,,,6,35,6,35,Original, +Aj21,xd397,Jie,jiee1239,Jie (Aj21),,1930,,,3,34,3,34,Original, +Aj22,xd398,Labwor,labw1238,Labwor (Aj22),,1930,,,3,34,3,34,Original, +Aj23,xd399,Plains Suk,east2420,Plains Suk (Aj23),Pokot,1950,,,1,36,1,36,Original, +Aa4,xd4,Bergdama,dama1270,Bergdama (Aa4),"Hakouin, Mountain Damara",1920,,,-22,16,-22,16,Original, +Ac16,xd40,Mitsogho,tsog1243,Shogo (Ac16),"Shogo, Ashogo, Issogo, Mitsogo",1940,,,-1,12,-1,12,Original, +Aj24,xd400,Toposa,topo1242,Topotha (Aj24),"Topotha, Dabosa",1930,,,5,34,5,34,Original, +Aj25,xd401,Keyu,keiy1238,Keyu (Aj25),Elgeyu,1920,,,0,36,0,36,Original, +Aj26,xd402,Hill Suk,west2492,Hill Suk (Aj26),Pokot,1910,,,1,36,1,36,Original, +Aj27,xd403,Sapei,kups1238,Sapei (Aj27),Sabei,1920,,,1,35,1,35,Original, +Aj28,xd404,Tatoga,dato1239,Tatoga (Aj28),"Datoga, Mangati, Taturu",1940,,,-5,35,-5,35,Original, +Aj29,xd405,Samburu,samb1315,Samburu (Aj29),"Lokop, Loikop",1950,,,1,37,1,37,Original, +Aj3,xd406,Nuer,nuer1246,Nuer (Aj3),Nath,1930,Nuer (FJ22),http://ehrafworldcultures.yale.edu/collection?owc=FJ22,8,32,8,32,Original, +Aj30,xd407,Karamojong,nucl1430,Karamojong (Aj30),,1950,,,2,34,2,34,Original, +Aj31,xd408,Pari,pari1256,Pari (Aj31),"Jo-Pari, Beri, Fori",1920,,,5,33,5,33,Original, +Aj4,xd409,Lango,lang1324,Lango (Aj4),Umiro,1920,,,2,33,2,33,Original, +Ac17,xd41,Suku,suku1259,Suku (Ac17),,1910,Suku (FO46),http://ehrafworldcultures.yale.edu/collection?owc=FO46,-6,18,-6,18,Original, +Aj5,xd410,Turkana,turk1308,Turkana (Aj5),"ŋiTurkana, Elgume",1920,Turkana (FL17),http://ehrafworldcultures.yale.edu/collection?owc=FL17,4,35,4,35,Original, +Aj6,xd411,Luo,luok1236,Luo (Aj6),"Jaluo, Luwo, Nilotic Kavirondo, Nyifwa",1940,Luo (FL11),http://ehrafworldcultures.yale.edu/collection?owc=FL11,-1,34,-1,34,Original, +Aj7,xd412,Nandi,nand1266,Nandi (Aj7),,1910,,,0,35,0,35,Original, +Aj8,xd413,Bari,ligo1238,Bari (Aj8),,1920,,,5,32,5,32,Original, +Aj9,xd414,Kipsigis,kips1239,Kipsigis (Aj9),"Lumbwa, Sikisi",1920,,,-1,36,-1,36,Original, +Ca1,xd415,Konso,kons1243,Konso (Ca1),,1930,Konso (MP17),http://ehrafworldcultures.yale.edu/collection?owc=MP17,6,37,6,37,Original, +Ca10,xd416,Somali (Esa),nort3051,Esa (Ca10),"Eissa, Isa",1880,Somali (MO04),http://ehrafworldcultures.yale.edu/collection?owc=MO04,10,43,10,43,Original, +Ca11,xd417,Arusi,bora1271,Arusi (Ca11),,1890,,,8,40,8,40,Original, +Ca12,xd418,Gibe,west2721,Gibe (Ca12),Oromo of Gibe Region,1880,,,8,37,8,37,Original,"Note 8Feb2018: Changed after note from HH: ""Haven't checked the details of the refs but very difficult to see how Gibe (= a region) best matches with Koorete rather than Oromo or Kaffa"". KK: indeed, an alt_name for this group is ""Oromo of Gibe Region""." +Ca13,xd419,Macha,west2721,Macha (Ca13),Mecca,1950,,,9,37,9,37,Original, +Ac18,xd42,Sundi,koon1244,Sundi (Ac18),Basundi,1910,,,-5,14,-5,14,Original,Note 8Feb2018: Changed based on note from HH: Hutereau's Kimanyanga refers to Koongo [kng] +Ca14,xd420,Burji,burj1242,Burji (Ca14),,1950,,,5,38,5,38,Original, +Ca15,xd421,Darasa,gede1246,Darasa (Ca15),,1930,,,6,38,6,38,Original, +Ca16,xd422,Sidama,sida1246,Sidamo (Ca16),Sidamo,1930,,,7,38,7,38,Original, +Ca17,xd423,Tsamai,tsam1247,Tsamai (Ca17),Tsamako,1950,,,5,37,5,37,Original, +Ca18,xd424,Arbore,arbo1245,Arbore (Ca18),Harbora,1940,,,5,37,5,37,Original, +Ca19,xd425,Banna,hame1242,Banna (Ca19),Bunna,1950,,,6,36,6,36,Original, +Ca2,xd426,Somali (Dolbahanta),nort3051,Somali (Ca2),,1950,Somali (MO04),http://ehrafworldcultures.yale.edu/collection?owc=MO04,8,48,8,48,Original, +Ca20,xd427,Galab,daas1238,Galab (Ca20),"Darthanaic, Geleba, Reshiat",1890,,,5,36,5,36,Original, +Ca21,xd428,Hamar,hame1242,Hammar (Ca21),"Hammar, Amar, Amarcocche, Hamarkoke",1950,,,5,36,5,36,Original, +Ca22,xd429,Male,male1284,Male (Ca22),Maale,1950,,,6,37,6,37,Original, +Ac19,xd43,Teke,teke1278,Teke (Ac19),Bateke,1880,,,-3,15,-3,15,Original,"Note, previously nzu and teke1279, but glottocode teke1279 is considered ""bookkeeping"", and SIL says nzu and ebo are said to be neighbouring dialects. Therefore, switched to ebo." +Ca23,xd430,Bako,aari1239,Bako (Ca23),"Ari, Baka",1950,,,6,37,6,37,Original, +Ca24,xd431,Dime,dime1235,Dime (Ca24),,1950,,,6,36,6,36,Original, +Ca25,xd432,Shangama,aari1239,Shangama (Ca25),,1950,,,6,37,6,37,Original, +Ca26,xd433,Ubamer,aari1239,Ubamer (Ca26),Wubahamer,1950,,,6,37,6,37,Original, +Ca27,xd434,Anfillo,anfi1235,Anfillo (Ca27),Southern Mao,1930,,,9,35,9,35,Original, +Ca28,xd435,Basketo,bask1236,Basketo (Ca28),,1950,,,6,37,6,37,Original, +Ca29,xd436,Yem,toba1264,Janjero (Ca29),Janjero,1920,,,8,38,8,38,Original, +Ca3,xd437,Tigrinya,tigr1271,Tigrinya (Ca3),,1950,,,14,39,14,39,Original, +Ca30,xd438,Kafa,kafa1242,Kafa (Ca30),"Kafecho, Kaffa",1890,Kaffa (MP14),http://ehrafworldcultures.yale.edu/collection?owc=MP14,7,36,7,36,Original, +Ca31,xd439,Beta Israel,qima1242,Falasha (Ca31),"Falasha, Black Jews",1860,,,12,37,12,37,Original, +Ac2,xd44,Pende,phen1239,Pende (Ac2),Bapende,1920,,,-6,20,-6,20,Original, +Ca32,xd440,Nara,nara1262,Barea (Ca32),"Barea, Baria",1860,,,16,38,16,38,Original, +Ca33,xd441,Kunama,kuna1268,Kunama (Ca33),Cunama,1860,,,15,37,15,37,Original, +Ca34,xd442,Ababda,abab1239,Ababda (Ca34),,1920,,,24,34,24,34,Original, +Ca35,xd443,Amarar,amar1281,Amarar (Ca35),,1930,,,20,36,20,36,Original, +Ca36,xd444,Beni-Amer,mans1267,Beni Amer (Ca36),Beni Amer,1860,,,18,38,18,38,Original, +Ca37,xd445,Blin,bili1260,Bogo (Ca37),"Bogo, Belen, Bilin",1850,,,16,36,16,36,Original, +Ca38,xd446,Tigre,mans1267,Tigre (Ca38),,1860,,,17,39,17,39,Original, +Ca39,xd447,Jimma,west2721,Jimma (Ca39),,1930,,,8,37,8,37,Original,Change 15Dec2017: fuga1235 replaced with west2721 [gaz] based on comment by HH: Lewis (1965) refers to ethnographic data from the Jimma kingdom I guess it should be attributed to Mec'a Galla = Western Oromo [gaz]. Maybe there are facts in there about Giangero also but it merely mentions the Fuga without giving any data on them. +Ca4,xd448,Iraqw,iraq1241,Iraqw (Ca4),"Erokh, Mbulu, Wambulu",1950,,,-4,35,-4,35,Original, +Ca40,xd449,Baditu,koor1239,Baditu (Ca40),"Amarro, Koira",1950,,,6,38,6,38,Original, +Ac20,xd45,Yaka,yaka1269,Yaka (Ac20),"Bayaka, Giaka, Maiaca",1920,,,-7,17,-7,17,Original, +Ca41,xd450,Dorse,dorz1235,Dorse (Ca41),Dorze,1950,,,6,38,6,38,Original, +Ca42,xd451,Shako,shek1245,Shako (Ca42),"Chako, Shekke, Tschako",1950,,,7,36,7,36,Original, +Ca43,xd452,Hadendowa,hade1248,Hadendowa (Ca43),Hendawa,1930,,,18,36,18,36,Original, +Ca5,xd453,Bisharin,bish1251,Bisharin (Ca5),,1930,,,20,35,20,35,Original, +Ca6,xd454,Afar,afar1241,Afar (Ca6),"Danakil, Dankali",1880,,,12,42,12,42,Original, +Ca7,xd455,Amhara,amha1245,Amhara (Ca7),,1950,Amhara (MP05),http://ehrafworldcultures.yale.edu/collection?owc=MP05,13,38,13,38,Original, +Ca8,xd456,Gurage,seba1251,Gurage (Ca8),,1940,,,8,38,8,38,Original, +Ca9,xd457,Goroa,goro1270,Goroa (Ca9),"Fiome, Guruma",1890,,,-4,36,-4,36,Original, +Cb1,xd458,Maguzawa,kano1249,Maguzawa (Cb1),Pagan Hausa,1940,Hausa (MS12),http://ehrafworldcultures.yale.edu/collection?owc=MS12,12,10,12,10,Original, +Cb10,xd459,Karekare,kare1348,Karekare (Cb10),,1920,,,12,11,12,11,Original, +Ac21,xd46,Bunda,mpuo1241,Bunda (Ac21),"Ambundu, Babunda",1910,,,-5,19,-5,19,Original, +Cb11,xd460,Midobi,mido1240,Midobi (Cb11),Meidob,1900,,,16,27,16,27,Original, +Cb12,xd461,Gimma,nort3133,Gimma (Cb12),Gimaa,1920,,,13,32,13,32,Original, +Cb13,xd462,Habbaniya,nort3133,Habbania (Cb13),Habbania,1930,,,11,25,11,25,Original, +Cb14,xd463,Hemat,bath1248,Hemat (Cb14),"Baggara, Heimad",1910,,,11,20,11,20,Original, +Cb15,xd464,Messiria Humr,tama1331,Messiria Humr (Cb15),,1940,,,11,28,11,28,Original,Note 8Feb2018: Changed based on note from HH: This may/may not be the intended attribution. Messiria are switching towards Sudanese Arabic but their ancestral language is Tama [tma]. +Cb16,xd465,Shuwa,char1283,Shuwa (Cb16),"Chiwa, Shoa",1920,,,13,15,13,15,Original, +Cb17,xd466,Fur,furr1244,Fur (Cb17),Darfur,1880,,,12,24,12,24,Original, +Cb18,xd467,Kanembu,kane1243,Kanembu (Cb18),,1930,,,14,14,14,14,Original, +Cb19,xd468,Kanuri,cent2050,Kanuri (Cb19),,1870,Kanuri (MS14),http://ehrafworldcultures.yale.edu/collection?owc=MS14,12,13,12,13,Original,Note 8Feb2018: Changed based on note from HH: Cohen's works refer to the Kanuri of Bornu = Central Kanuri [knc] +Cb2,xd469,Wolof,nucl1347,Wolof (Cb2),,1950,Wolof (MS30),http://ehrafworldcultures.yale.edu/collection?owc=MS30,15,-17,15,-17,Original, +Ac22,xd47,Dzing,ding1239,Dzing (Ac22),"Badinga, Dinga",1930,,,-4,20,-4,20,Original, +Cb20,xd470,Zerma,zarm1239,Zerma (Cb20),Dyerma,1920,,,13,3,13,3,Original, +Cb21,xd471,Djafun,adam1253,Djafun (Cb21),Djafun Fulani,1930,,,8,13,8,13,Original, +Cb22,xd472,Liptako,west2454,Liptako (Cb22),,1920,,,14,0,14,0,Original, +Cb23,xd473,Tukulor,pula1263,Tukulor (Cb23),"Tekrur, Torado",1930,,,1,-14,14.73,-14.32,Revised, +Cb24,xd474,Wodaabe Fulani,boro1274,Wodaabe Fulani (Cb24),"Pastoral Fulani, Wodaabe",1950,,,12,12,12,12,Original, +Cb25,xd475,Tazarawa Hausa,arew1238,Tazarawa (Cb25),,1930,,,14,8,14,8,Original,"Note 22Jul2021 - language match changed by KK to dialect arew1238 (from haus1257). The Tazarawa Hausa are a northern group of Hausa, and this dialect seems a good match." +Cb26,xd476,Zazzagawa Hausa,haus1257,Zazzagawa Hausa (Cb26),"Hausa, Zazzagawa, Hausa of Zaria, Hausa of Zazzau",1950,Hausa (MS12),http://ehrafworldcultures.yale.edu/collection?owc=MS12,11,8,11,8,Original,"Note 22Jul2021 - matched to language haus1257, replacing previous match to dialect araw1280 (this match was deemed inaccurate - according to Wikipedia, araw1280 is a northern dialect, when instead the best match would be a southern dialect. No southern dialect was found in Glottolog, hence the language-level match.) Suggestion: Glottolog should add a southern dialect. According to wikipedia page for Hausa Language, ""Zazzaganci in Zazzau is the major Southern dialect""; according to SCCS pinpointing sheets, Zazzagawa Hausa are those in the Zaria (also known as the 'Zazzau Emirate') region." +Cb27,xd477,Bachama,baca1246,Bachama (Cb27),,1920,,,10,12,10,12,Original, +Cb28,xd478,Dera,dera1248,Dera (Cb28),Kanakuru,1920,,,10,12,10,12,Original, +Cb29,xd479,Ngizim,ngiz1242,Ngizim (Cb29),,1920,,,12,10,12,10,Original, +Ac23,xd48,Lele,lele1265,Lele (Ac23),"Bashilele, Wongo",1950,,,-5,21,-5,21,Original, +Cb3,xd480,Songhai,koyr1242,Songhai (Cb3),,1940,Songhai (MS20),http://ehrafworldcultures.yale.edu/collection?owc=MS20,17,-1,17,-1,Original,"Changed to koyr1242 from zarm1239 on 3Oct2018. Reason: The SCCS focus is on the ""Bamba, or central division"" Songhai. The Bamba dialect of Koyraboro Senni Songhai appears to dominate in the Bamba area. (""The major dialectal differences [in Koyraboro Senni Songhai] involve the Bamba area in the west versus the mainstream dialect (from the Gao area to the border). [...] Bamba [dialect] is represented by 66 pages of texts [in Heath's ""Texts in Koroboro Senni Songhay of Gao, Mali""] , enough to bring out the grammatical particularities of this variety."") (Note previous D-PLACE changes include a change on 8Feb2018 from Humburi Senni Songhay (humb1243) to Zarma-Kaado-Dendi (zarm1239). This change was incorrect, and is superceded by the change to koyr1242). Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +Cb4,xd481,Hasania,khar1296,Hasania (Cb4),Hassanyeh,1920,,,14,32,14,32,Original, +Cb5,xd482,Buduma,budu1265,Buduma (Cb5),"Yedina, Yedina",1910,,,13,15,13,15,Original, +Cb6,xd483,Tera,tera1251,Tera (Cb6),,1920,,,11,12,11,12,Original, +Cb7,xd484,Bolewa,nucl1695,Bolewa (Cb7),"Bole, Borlawa, Fika",1920,,,11,11,11,11,Original, +Cb8,xd485,Bororo Fulani,boro1274,Bororo Fulani (Cb8),"Fulbe, Fuel",1920,,,13,5,13,5,Original, +Cb9,xd486,Hausa Kanawa,kano1249,Hausa Kanawa (Cb9),Hausa,1940,Hausa (MS12),http://ehrafworldcultures.yale.edu/collection?owc=MS12,12,9,12,9,Original, +Cc1,xd487,Regeibat,hass1238,Regeibat (Cc1),Rgibat,1950,,,22,-13,22,-13,Original, +Cc10,xd488,Asben,taya1257,Asben (Cc10),"Air Tuareg, Kel Air",1900,,,18,8,18,8,Original,"Note 8Feb2018: Glottocode changed to [thz] (Tayart Tamajeq) based on note from HH. At least 3 of the references refer to the Air Tuareg (=[thz], and the society name itself is ""Asben"", which some googling suggests was a synonym for Air/Tuareg Kingdom (p. 125 of Robinson and Smith 1979). However, at least one reference refers to the ""Kel Tadele"" in its title; Wikipedia lists the Kel Tadele as a group ""to the west of Aïr [i.e., thz] in the Tamesna plain"". Thus, the user may wish to investigate whether cultural descriptions combine the practices of more than one Touareg language group." +Cc11,xd489,Azjer,ghat1242,Azjer (Cc11),Adjeur,1860,,,25,10,25,10,Original, +Ac24,xd49,Sakata,saka1287,Sakata (Ac24),"Balesa, Basakata, Lesa",1910,,,-3,18,-3,18,Original, +Cc12,xd490,Ifora,tadh1242,Ifora (Cc12),,1944,,,20,2,20,2,Original, +Cc13,xd491,Udalan Tuareg,timb1263,Udalan (Cc13),Udalan,1920,,,16,0,16,0,Original, +Cc14,xd492,Daza,daza1242,Daza (Cc14),"Dasa, Dazagada",1880,,,17,18,17,18,Original, +Cc15,xd493,Drawa,susi1238,Drawa (Cc15),,1920,,,31,-7,31,-7,Original, +Cc16,xd494,Chaambra,algi1247,Chaambra (Cc16),Schanba,1930,,,32,3,32,3,Original, +Cc17,xd495,Delim,hass1238,Delim (Cc17),Oulad Delim,1930,,,22,-15,22,-15,Original, +Cc18,xd496,Kunta,hass1238,Kunta (Cc18),Kounta,1910,,,19,-1,19,-1,Original, +Cc19,xd497,Trarza,hass1238,Trarza (Cc19),,1950,,,18,-15,18,-15,Original, +Cc2,xd498,Teda,teda1241,Teda (Cc2),Toubou,1950,Teda (MS22),http://ehrafworldcultures.yale.edu/collection?owc=MS22,21,17,21,17,Original, +Cc20,xd499,Zenaga,zena1248,Zenaga (Cc20),,1910,,,18,-8,18,-8,Original, +Aa5,xd5,Mbuti,bila1255,Mbuti (Aa5),"Sua, BaSua, Kango, BaKango, Bambuti, BaMbuti Pygmies",1930,Mbuti (FO04),http://ehrafworldcultures.yale.edu/collection?owc=FO04,2,28,2,28,Original,"Note 8Feb2018: Changed. Focus is ""Epulu net-hunters, Ituri forest"". From White pinpointing sheets: ""The Pygmies and Pygmoid peoples of the Congo have been pushed into smaller and smaller areas of the tropical forest since the invasions of Bantu and Sudanic tribes in the 16-17th centuries, and most of the groups have adopted the languages of invading tribes with whom they allied themselves. Mbuti pygmies have adopted the languages of the Bira to the south of them, the Lese to the east, the Mangbetu and Azande to the northwest, and the Mamvu-Mangutu to the north. The [...] Epulu group studied by Turnbull situated to the north of the Ituri and Epulu Rivers, and the majority of the other groups to the south of the Ituri River [...] are net-hunters, and speak a language largely influenced by the Forest Bira."" Note, though, that Ember concordance lists the language as Lese." +Ac25,xd50,Songo,song1299,Songo (Ac25),Basongo,1930,,,-5,18,-5,18,Original, +Cc3,xd500,Siwans,siwi1239,Siwans (Cc3),,1920,Siwans (MR14),in process,29,26,29,26,Original, +Cc4,xd501,Mzab,tumz1238,Mzab (Cc4),"Beni Mzab, Mozabites",1920,,,33,4,33,4,Original, +Cc5,xd502,Kel Antessar,timb1263,Antessar (Cc5),"Antessar, Kel Antessar, Tuareg north of Timbuctoo",1910,,,18,-3,18,-3,Original, +Cc6,xd503,Kababish,nort3133,Kababish (Cc6),Kubbabish,1910,,,17,31,17,31,Original, +Cc7,xd504,Barabish,hass1238,Barabish (Cc7),,1950,,,20,-5,20,-5,Original, +Cc8,xd505,Aulliminden,ioul1238,Aulliminden (Cc8),Oulliminden,1890,,,8,2,8,2,Original, +Cc9,xd506,Tuareg Ahaggar,hogg1238,Tuareg Ahaggar (Cc9),Tuareg,1920,Tuareg (MS25),http://ehrafworldcultures.yale.edu/collection?owc=MS25,23,6,23,6,Original, +Cd1,xd507,Barabra,kenu1236,Barabra (Cd1),Kenuzi Nubians,1920,,,23,33,23,33,Original, +Cd10,xd508,Zekara,tari1263,Zekara (Cd10),Zkara,1900,,,34,-2,34,-2,Original,"Changed 2Aug2021: After additional research, this cultural data appears to a group speaking tari1263, even though one of the references refers to Beni Snous (previously changed on 8Feb2018 based on note from HH: Beni Snous = Western Algerian Berber [cnu] chen1266)." +Cd11,xd509,Guanche,guan1277,Guanche (Cd11),,1500,,,28,-16,27.99,-15.62,Revised, +Ac26,xd51,Yanzi,yans1239,Yanzi (Ac26),"Bayansi, Wachanzi",1920,,,-4,18,-4,18,Original, +Cd12,xd510,Algerians,algi1247,Algerians (Cd12),,1870,,,31,2,31,2,Original, +Cd13,xd511,Hamama,sout3114,Hamama (Cd13),,1930,,,30,9,30,9,Original, +Cd14,xd512,Hamyan,oran1236,Hamyan (Cd14),Hamian,1870,,,35,2,35,2,Original, +Cd15,xd513,Jebala,jebl1238,Jebala (Cd15),Djebala,1910,,,35,-5,35,-5,Original, +Cd16,xd514,Moroccans,sout3117,Moroccans (Cd16),,1930,,,33,-8,33,-8,Original, +Cd17,xd515,Nail,cons1245,Nail (Cd17),Ulad Nail,1920,,,35,5,35,5,Original, +Cd18,xd516,Saadi,said1239,Saadi (Cd18),,1920,Libyan Bedouin (MT09),http://ehrafworldcultures.yale.edu/collection?owc=MT09,30,28,30,28,Original, +Cd19,xd517,Sahel,sahi1245,Sahel (Cd19),Eastern Tunisians (Sahel Region),1920,,,35,11,35,10.94,Revised, +Cd2,xd518,Egyptians,egyp1253,Egyptians (Cd2),"Fellahin, Fellaheen",1950,Fellahin (MR13),http://ehrafworldcultures.yale.edu/collection?owc=MR13,25,33,25,33,Original, +Cd20,xd519,Sanusi,liby1240,Sanusi (Cd20),Cyrenaican Bedouin,1940,Libyan Bedouin (MT09),http://ehrafworldcultures.yale.edu/collection?owc=MT09,31,22,31,22,Original, +Ac27,xd52,Luchazi,luch1239,Luchazi (Ac27),"Balochasi, Kaluchazi, Valuchazi",1930,,,-13,23,-13,23,Original, +Cd21,xd520,Tunisians,tuni1260,Tunisians (Cd21),,1930,,,37,10,37,10,Original, +Cd3,xd521,Riffians,tari1263,Riffians (Cd3),,1920,Berbers of Morocco (MX03),http://ehrafworldcultures.yale.edu/collection?owc=MX03,35,-4,35,-4,Original, +Cd4,xd522,Kabyle,kaby1243,Kabyle (Cd4),,1890,,,36,4,36,4,Original, +Cd5,xd523,Shluh,susi1238,Shluh (Cd5),"Shilha, Islhiyn, Chleuch",1920,Shluh (MW11),http://ehrafworldcultures.yale.edu/collection?owc=MW11,30,-9,30,-9,Original, +Cd6,xd524,Ancient Egyptians,egyp1246,Ancient Egypt (Cd6),Ancient Egypt,-1400,,,30,31,30,31,Original, +Cd7,xd525,Beraber,cent2194,Beraber (Cd7),,1910,,,33,-7,33,-7,Original, +Cd8,xd526,Shawiya,tach1249,Shawiya (Cd8),Chaouia,1910,,,36,7,36,7,Original, +Cd9,xd527,Tekna,hass1238,Tekna (Cd9),Tekena,1900,,,28,-11,28,-11,Original, +Ce1,xd528,Gheg,gheg1238,Gheg (Ce1),Albanians,1900,Albanians (EG01),http://ehrafworldcultures.yale.edu/collection?owc=EG01,42,20,42,20,Original, +Ce2,xd529,Portuguese,gali1257,Portuguese (Ce2),,1950,,,42,-7,42,-7,Original, +Ac28,xd53,Luimbe,luim1238,Luimbe (Ac28),"Baluimbi, Valuimbe",1930,,,-12,18,-12,18,Original, +Ce3,xd530,Ancient Romans,lati1261,Romans (Ce3),Romans,100,Imperial Romans (EI09),http://ehrafworldcultures.yale.edu/collection?owc=EI09,42,12,42,12,Original, +Ce4,xd531,French Basques,labo1236,Basques (Ce4),"Euskaldunak, Basques, French Basques",1930,Basques (EX08),http://ehrafworldcultures.yale.edu/collection?owc=EX08,43,-1,43,-1,Original, +Ce5,xd532,Neapolitans,neap1235,Neapolitians (Ce5),Neapolitians,1960,,,41,13,40.89,14.25,Revised, +Ce6,xd533,Spaniards,stan1288,Spaniards (Ce6),,1950,,,37,-6,37,-6,Original, +Ce7,xd534,Greeks,mode1248,Greeks (Ce7),Hellenes,1950,Greece (EH01),http://ehrafworldcultures.yale.edu/collection?owc=EH01,39,23,39,23,Original, +Ce8,xd535,Spanish Basques,west1508,Spanish Basques (Ce8),Spanish Basques,1934,Basques (EX08),http://ehrafworldcultures.yale.edu/collection?owc=EX08,43,-2,43,-2,Original, +Cf1,xd536,New Englanders,stan1293,New England (Cf1),New England,1920,,,42,-73,42,-73,Original,"Note, should probably be matched to a dialect other than 'standard english'" +Cf2,xd537,Boers,afri1274,Boers (Cf2),Afrikanders,1850,,,-16,28,-16,28,Original, +Cf3,xd538,Tristan da Cunha,stan1293,Tristan da Cunha (Cf3),,1930,,,-37,-12,-37.11,-12.27,Revised,"Note, should probably be matched to a dialect other than 'standard english'" +Cf4,xd539,Brazilians,braz1246,Brazilians (Cf4),,1940,,,-43,-47,-23.68,-46.64,Revised, +Ac29,xd54,Luwa,sond1250,Luwa (Ac29),Balua,1930,,,-7,19,-7,19,Original, +Cf5,xd540,French Canadians,queb1247,French Canadians (Cf5),,1930,,,47,-72,47,-72,Original,stan1290 replaced with queb1247 in Oct 2017 because it is a better match +Cg1,xd541,Dutch,dutc1256,Dutch (Cg1),,1950,,,53,7,53,7,Original, +Cg2,xd542,Icelanders,icel1247,Icelanders (Cg2),,1100,Early Icelanders (EQ02),http://ehrafworldcultures.yale.edu/collection?owc=EQ02,64,-20,64,-20,Original, +Cg3,xd543,Irish,iris1253,Irish (Cg3),Gaelic,1930,Rural Irish (ER06),http://ehrafworldcultures.yale.edu/collection?owc=ER06,53,-9,53,-9,Original, +Cg4,xd544,Sami,nort2671,Lapps (Cg4),Lapps,1950,Lapps (EP04),http://ehrafworldcultures.yale.edu/collection?owc=EP04,68,22,68,22,Original,"25Sept2018 - glotto id changed from nort2671 to lule1254 on 25Sept2018 as previous change was only applied to ISO code. 8April2017 - Changed from smj to sme based on comment from H. Hammarström: Haglund worked with Karesuando Saami, which is Northern Sami [sme]. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +Cg5,xd545,Walloons,wall1255,Walloons (Cg5),,1950,,,50,5,50,5,Original, +Ch1,xd546,Serbs,serb1264,Serbs (Ch1),Serbians,1950,Serbs (EF06),http://ehrafworldcultures.yale.edu/collection?owc=EF06,44,20,44,20,Original, +Ch10,xd547,Romanians,baya1255,Romanians (Ch10),,1910,,,45,26,45,26,Original,"Note, previously baya1254 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)" +Ch11,xd548,Russians,russ1263,Russians (Ch11),,1955,,,53,41,53,41,Original, +ch12,xd549,Bashkir,bash1264,Bashkir (ch12),"Basquort, Bashkort, Bashkiry",1899,,,54,56,54,56,Original, +Ac3,xd55,Bemba,town1238,Bemba (Ac3),Awemba,1900,Bemba (FQ05),http://ehrafworldcultures.yale.edu/collection?owc=FQ05,-11,31,-11,31,Original, +ch13,xd550,Besermyan,nort2676,Besermyan (ch13),"Beserman, Besermen, Besermyane",1894,,,58,52,58,52,Original, +ch14,xd551,Chuvash,chuv1255,Chuvash (ch14),"Chavash, Chuvashy",1908,,,57,53,57,53,Original, +ch15,xd552,Erzya Mordvins,erzy1239,Erzia mordva (ch15),"Erzia mordva, Erzia Mordvins, Erzja Mordvins, Mordva, Mordvinians, Mordovians, erzät",1895,,,53,50,53,50,Original, +ch16,xd553,Estonians,esto1258,Estonians (ch16),"Eestlased, Maarahvas, Hiumaases, Saaremaased, Setu, Estontsy, Chud",1908,,,59,26,59,26,Original, +ch17,xd554,Gagauz,gaga1249,Gagauz (ch17),"Christian Bulgars, Hıristiyan-Bulgar, Gagauzi, Gagauzy",1894,,,45,29,45.44,29.32,Revised, +ch18,xd555,Ingrians,ingr1248,Ingrians (ch18),"Izhorians, Izhora, Inkerilainen, Inkeroine, Izhoralaine, Karjalain, Inkerin Suomalainen, Ingrian Finns, Izhortsy",1927,,,59,29,59,29,Original, +ch19,xd556,Karelians,livv1243,Karelians (ch19),"Karjalaizet, Karjalaini, Karely, Livgilyajne, Livvikjoj, Lyuudilaine, Lyuudikjo",1874,,,64,33,64,33,Original, +Ch2,xd557,Hutsuls,sout2604,Hutsul (Ch2),"Hutsul, Hucul, Huzul",1890,,,49,24,49,24,Original, +ch20,xd558,Kazan tatar,midd1325,Kazan tatar (ch20),"Kazanskie Tatary, Kazanly, Tatarlar",1910,,,55,50,55,50,Original, +ch21,xd559,Latvians,latv1249,Latvians (ch21),"Latvieshi, Latyshi",1881,,,57,24,57,24,Original, +Ac30,xd56,Plateau Tonga,tong1318,Plateau Tonga (Ac30),Batonga,1940,Tonga (FQ12),http://ehrafworldcultures.yale.edu/collection?owc=FQ12,-18,28,-18,28,Original, +ch22,xd560,Lithuanian Karaim,kara1464,Lithuanian Karaim (ch22),"Karaites, Karaila",1895,,,55,23,55,23,Original, +ch23,xd561,Lithuanian Tatar,west2405,Lithuanian Tatar (ch23),,1905,,,55,24,55,24,Original, +ch24,xd562,Livs,livv1244,Livs (ch24),"Livians, Livonians, Liivod, Liibod, Liivnikad, Liivlist, Kalamied, Raandalis",1847,,,57,23,57,23,Original, +ch25,xd563,Moldovans,mold1248,Moldovans (ch25),"Moldoven, Moldavans, Moldavane",1900,,,47,29,47,29,Original,"Note, previously mold1247 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)" +ch26,xd564,Udmurt,sout2681,Udmurt (ch26),"Utmort, Ukmort, Udmurty, Votiak, Votyak, Votjaki",1890,,,57,53,57,53,Original, +ch27,xd565,Veps,veps1250,Veps (ch27),"Vepsians, Chudy, Chukhari, Chuhari, Bepsya, Bepsja, Veps' Lyudinikad, Tyagalazhet, Tjagalazhet",1900,,,61,35,61,35,Original, +ch28,xd566,Votes,voti1245,Votes (ch28),"Vod', Maavaitchi, Vod",1900,,,59,29,59,29,Original, +Ch3,xd567,Czechs,czec1258,Czechs (Ch3),,1940,,,50,16,50,16,Original, +Ch4,xd568,Mari,east2328,Cheremis (Ch4),Cheremis,1900,,,43,46,43,46,Original, +Ch5,xd569,Bulgarians,bulg1262,Bulgarians (Ch5),,1940,Bulgarians (EE01),in process,43,24,43,24,Original, +Ac31,xd57,Buye,buyu1239,Buye (Ac31),Babui,1910,,,-7,28,-7,28,Original, +Ch6,xd570,Byelorussians,bela1254,Byelorussians (Ch6),White Russians,1910,,,55,28,55,28,Original, +Ch7,xd571,Ukrainians,east2270,Ukrainians (Ch7),Ukranians,1930,Ukraine (RD01),in process,48,36,48,36,Original, +Ch8,xd572,Magyar,hung1274,Hungarian (Ch8),"Magyarok, Hungarian",1940,Hungary (EC01),in process,47,20,47,20,Original, +Ch9,xd573,Lithuanians,lith1251,Lithuanians (Ch9),,1930,,,55,24,55,24,Original, +Ci1,xd574,Kalmyk,kalm1243,Kalmyk (Ci1),Kalmuck,1920,,,46,46,46,46,Original,"Note 8Feb2018: Note that some of the references that are almost certainly associated with this case (focus is ""Baga Dorbed"") were originally listed after Ag14 ""Baga"" (aberle1953; krader1963; vladimirtsov1948)" +Ci10,xd575,Armenians,nucl1235,Armenians (Ci10),,1900,,,40,45,40,45,Original, +Ci11,xd576,Kurd,cent1972,Kurd (Ci11),,1940,Kurd (MA11),http://ehrafworldcultures.yale.edu/collection?owc=MA11,32,44,32,44,Original, +Ci12,xd577,Abkhaz,abkh1244,Abkhaz (Ci12),,1880,Abkhaz (RI03),http://ehrafworldcultures.yale.edu/collection?owc=RI03,43,41,43,41,Original, +Ci2,xd578,Khevsur,xevs1238,Khevsur (Ci2),Chevsur,1930,,,43,45,43,45,Original, +Ci3,xd579,Kumyk,kumy1244,Kumyk (Ci3),Kumuk,1900,,,42,48,42,48,Original, +Ac32,xd58,Kaonde,kaon1241,Kaonde (Ac32),Bakaonde,1920,,,-13,26,-13,26,Original, +Ci4,xd580,Cherkess,kaba1278,Cherkess (Ci4),Circassians,1920,,,44,42,44,42,Original, +Ci5,xd581,Turks,nucl1301,Turks (Ci5),,1950,Turks (MB01),http://ehrafworldcultures.yale.edu/collection?owc=MB01,38,30,38,30,Original, +Ci6,xd582,Ossetians,digo1242,Osset (Ci6),"Osset, Ossete",1880,,,43,44,43,44,Original, +Ci7,xd583,Chechen,chec1245,Chechen (Ci7),,1900,,,43,46,43,46,Original, +Ci8,xd584,Georgians,imer1248,Georgians (Ci8),"Kartvelebi, Grusians, Kartveli",1850,Georgia (RI01),in process,42,45,42,45,Original, +Ci9,xd585,Svan,svan1243,Svan (Ci9),Mushüan,1910,,,43,43,43,43,Original, +Cj1,xd586,Syrians,nort3142,Syrians (Cj1),,1950,Syria (MD01),in process,36,36,36,36,Original,"Note, previously matched to a dialect of nort3139 (nort3140); corrected to [nort3142][ayp] on 5Sept2018. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +Cj10,xd587,Madan,meso1252,Madan (Cj10),"Marsh Arabs, Ma'dan, Ma'adan",1950,,,31,47,31,47,Original, +Cj2,xd588,Rwala,east2690,Rwala (Cj2),Rwala Bedouin,1920,Rwala (MD04),http://ehrafworldcultures.yale.edu/collection?owc=MD04,33,37,33,37,Original,"Changed from ars to avl on 8 April 2017 based on comment from H. Hammarström: The sources pertain to edouin tribes of the Sinai (like the Rwala) they are covered in the Eastern Egyptian Bedawi Arabic entry in Ethnologue [avl]. April 2019: Note that HRAF summary suggests a link to najd1235 (ars) is more appropriate, however najd1235 is spoken further East than the territory described by the same HRAF summary (which reports Rwala Bedouin as grazing their livestock along the Jordan-Saudia Arabia border, North to Damascus (or even Homs), South to the Nafud desert, east (sometimes) to Karbala, Iraq)." +Cj3,xd589,Hebrews,anci1244,Hebrews (Cj3),,-800,,,32,35,32,35,Original,Changed from hebr [hbr] to anci1244 [hbo] in Nov 2018 based on date of cultural observations +Ac33,xd59,Lala,lala1264,Lala (Ac33),Balala,1940,,,-15,31,-15,31,Original, +Cj4,xd590,Babylonians,akka1240,Babylonians (Cj4),,-2000,,,32,45,32,45,Original,Changed from tmr to akk on 8 April 2017 based on comment from H. Hammarström: several [of the sources] deal with Babylonia in Hammurabi's time. The language spoken by this culture was Akkadian [akk]. +Cj5,xd591,Mutair,sout3119,Mutair (Cj5),,1930,,,28,47,28,47,Original, +Cj6,xd592,Jordanians,sout3123,Jordanians (Cj6),,1950,Jordan (MG01),in process,32,36,32,36,Original, +Cj7,xd593,Lebanese,nort3139,Lebanese (Cj7),,1950,Lebanon (ME01),in process,34,36,34,36,Original,"Note, previously matched to a dialect of nort3139 (nort3141); rematched to [nort3139] after ""Syrians"" linked to a different language (so no longer sharing tip of nort3139 with ""Lebanese"" (5Sept2018). Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +Cj8,xd594,Druze,sunn1238,Druze (Cj8),,1930,,,33,35,32.77,35.03,Revised, +Cj9,xd595,Yemeni,sana1295,Yemeni (Cj9),,1950,Yemen (ML01),http://ehrafworldcultures.yale.edu/collection?owc=ML01,15,45,15,45,Original, +Ea1,xd596,Sindhi,sind1272,Sindhi (Ea1),Hindu Sindhi,1950,,,25,68,25,68,Original, +Ea10,xd597,Marri,east2304,Marri (Ea10),,1950,,,30,69,30,69,Original, +Ea11,xd598,Ghilzai,ghil1238,Afghans (Ea11),"Pashtuns, Pushtun, Afghans",1950,,,33,68,33,68,Original, +Ea12,xd599,Qashqui,qash1240,Quahgai (Ea12),"Quahgai, Qashgai",1940,,,30,52,30,52,Original, +Aa6,xd6,Sandawe,sand1273,Sandawe (Aa6),Wasandaui,1920,,,-5,36,-5,36,Original, +Ac34,xd60,Luapula,luun1238,Luapula (Ac34),Bena Kazembe,1940,,,-10,29,-10,29,Original, +Ea13,xd600,Punjabi,west2386,"Punjabi, West (Ea13)",Punjabi (West),1950,,,32,73,32,73,Original,"Note 8Feb2018: Changed based on note by HH: ""References look more like Western Panjabi [pnb] in Pakistan"". Focus does indeed seem to be in Western Pakistan. Note that there is an unclear note in the White SCCS pinpointing sheet for this society: ""Representative of West Punjabi (not in the Ethnographic Atlas) [sic]; Focus: Village of Mohla, Punjabi of southern Rawalpindi and northern Lahore Divisions, 32°30N and 74°E, about 1952 [...] The village of Mohla, studied by Eglar, is the most fully described, and represents the less developed form of agriculture, lacking irrigation. Coders should be careful in inferring from other village studies, since each village is highly distinctive in terms of caste composition and economic position. Honigmann's village, in the desert of southwest Rawalpindi, was founded very recently by East Punjabi are close [sic]; this village utilizes newly constructed irrigation works. The village surveys by Dass and Ghulam Yasim have not been evaluated.""" +Ea2,xd601,Yusufzai,yusu1238,Pathan (Ea2),"Pukhtun, Pathan, Yusufsai, Yūsufzai, Yousafzai",1950,Pashtun (AU04),http://ehrafworldcultures.yale.edu/collection?owc=AU04,35,72,35,72,Original, +Ea3,xd602,Hazara,haza1239,Hazara (Ea3),,1930,,,35,66,35,66,Original, +Ea4,xd603,Kohistani,indu1241,Kohistani (Ea4),"Kohistei, Mayan",1950,,,35,73,35,73,Original, +Ea5,xd604,Nuristani,kamv1242,Nuri (Ea5),"Nuri, Kafirs, Kafiristanis",1890,,,36,71,36,71,Original,Changed to Kamviri (xvi) from pbu based on village in which one of two main sources spent most of his time (Kamdesh) +Ea6,xd605,Basseri,bass1257,Basseri (Ea6),,1958,Basseri (MA10),http://ehrafworldcultures.yale.edu/collection?owc=MA10,30,34,30,34,Original, +Ea7,xd606,Moghol,mogh1245,Moghol (Ea7),Mongols of Afghanistan,1950,,,34,63,34,63,Original, +Ea8,xd607,Bakhtiari,bakh1245,Bakhtiari (Ea8),,1920,,,33,48,33,48,Original, +Ea9,xd608,Iranians,tehr1242,Iranians (Ea9),,1950,,,36,52,36,52,Original, +Eb1,xd609,Kazakh,kaza1248,Kazak (Eb1),Kazak,1910,Kazakh (RQ02),http://ehrafworldcultures.yale.edu/collection?owc=RQ02,48,70,48,70,Original, +Ac35,xd61,Shila,luba1250,Shila (Ac35),"Awasira, Bashila, Wasira",1900,,,-10,28,-10,28,Original,Note 8Feb2018: Changed based on note from HH: References indicate Bashila i.e. Luba-Katanga [lub] rather than Taabwa +Eb2,xd610,Tu,tuuu1240,Monguor (Eb2),Monguor,1920,Monguor (AE09),http://ehrafworldcultures.yale.edu/collection?owc=AE09,39,100,39,100,Original, +Eb3,xd611,Khalka,halh1238,Khalka (Eb3),"Xanx, Khalka Mongols",1940,Mongolia (AH01),http://ehrafworldcultures.yale.edu/collection?owc=AH01,46,97,46,97,Original, +Eb4,xd612,Dagur,daur1238,Dagur (Eb4),Dagor,1940,,,49,125,49,125,Original, +Eb5,xd613,Turkmen,turk1304,Turkmen (Eb5),,1910,,,38,62,38,62,Original, +Eb6,xd614,Buryat,russ1264,Buryat (Eb6),,1900,,,52,107,52,107,Original, +Eb7,xd615,Chahar,peri1253,Chahar (Eb7),,1930,,,41,115,41,115,Original, +Eb8,xd616,Uzbek,nort2690,Uzbek (Eb8),,1800,,,43,60,43,60,Original, +Ec1,xd617,Nivkh,gily1242,Gilyak (Ec1),Gilyak,1920,Nivkh (RX02),http://ehrafworldcultures.yale.edu/collection?owc=RX02,53,142,53,142,Original, +Ec10,xd618,Ob Ostyak,khan1273,Ob Ostyak (Ec10),,1880,,,62,74,62,74,Original, +Ec11,xd619,Selkup,selk1253,Selkup (Ec11),Ostyak Samoyed,1900,,,59,90,59,90,Original, +Ac36,xd62,Tumbuka,tumb1250,Tumbuka (Ac36),"Atimbuka, Batumbaka, Watumbaka",1920,,,-12,34,-12,34,Original, +ec12,xd620,Nganasan,ngan1291,Nganasan (ec12),Tavgi Samoyed,1930,Samoyed_with_notes_on_Nganasan (RU04),http://ehrafworldcultures.yale.edu/collection?owc=RU04,72,90,72,90,Original, +ec13,xd621,Itelmen,itel1242,Itelmen (ec13),"Itelymem, Kamchadal",1710,,,55,168,54.98,161.79,Revised, +ec14,xd622,Ungazikmit,cent2128,Ungazikmit (ec14),"Eskaleut, Asian Eskimo",1880,,,64,173,64,-173,Revised,"9May2019 - longitude updated to place society in western rather than eastern hemisphere. 1Oct2018 - the update to Glottolog 3.3.2 forced re-mapping from dialect chap1266 (which no longer exists) to language (cent2128) (always the language-level match for this society). Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +ec15,xd623,Mansi,mans1258,Mansi (ec15),"Vogul, Gogulich, Mansiy, Voguly",1880,,,63,62,63,62,Original, +ec16,xd624,Evenk,even1259,Evenk (ec16),"Ewenki, Tungus, Chapogir, Avanki, Avankil, Solon, Khamnigan",1890,,,55,112,55,112,Original, +ec17,xd625,Negidal,negi1245,Negidal (ec17),"Negidaly, Neghidal",1890,,,52,134,52,134,Original, +ec18,xd626,Ulch,ulch1241,Ulch (ec18),"Ulchi, Ulcha, Ulych, Olch, Olcha, Olchis, Hoche, Hol-Chih.",1890,,,50,136,50,136,Original, +ec19,xd627,Orok,orok1265,Orok (ec19),"Uilta, Ul'ta, Nani, Oroki, Oroc, Ulta, Ujlta",1890,,,54,142,54.01,142.71,Revised, +Ec2,xd628,Yakut,yaku1245,Yakut (Ec2),Sakha,1900,Yakut (RV02),http://ehrafworldcultures.yale.edu/collection?owc=RV02,65,125,65,125,Original, +ec20,xd629,Oroch,oroc1248,Oroch (ec20),Orochi,1890,,,51,138,51,138,Original, +Ac37,xd63,Kunda,kund1255,Kunda (Ac37),Achikunda,1950,,,-15,32,-15,32,Original, +ec21,xd630,Udihe,udih1248,Udihe (ec21),"Udeghes, Udyhe, Udekhe, Udegeis",1890,,,47,136,47,136,Original, +Ec3,xd631,Chukchi,chuk1273,Chukchee (Ec3),"lygoravetlyan, Ankalyn, Chavchu, Chukchee",1900,Chukchee (RY02),http://ehrafworldcultures.yale.edu/collection?owc=RY02,66,177,66,177,Original, +Ec4,xd632,Yurak-Samoyeds,nene1249,Yurak (Ec4),"Nenets, Yurak",1900,Samoyed and/or Nenets (RU04/RU41),http://ehrafworldcultures.yale.edu/collection?owc=RU04,68,75,68,75,Original, +Ec5,xd633,Koryak,kory1246,Koryak (Ec5),,1900,Koryak (RY04),http://ehrafworldcultures.yale.edu/collection?owc=RY04,62,164,61.99,164.24,Revised, +Ec6,xd634,Yukaghir,nort2745,Yukaghir (Ec6),,1850,,,70,145,70,145,Original, +Ec7,xd635,Ainu,ainu1240,Ainu (Ec7),"Ainu (Hokkaido), Hokkaido",1900,Ainu (AB06),http://ehrafworldcultures.yale.edu/collection?owc=AB06,44,144,44,144,Original, +Ec8,xd636,Ket,kett1243,Ket (Ec8),"Yenisei Ostyak, Yeniseians",1900,,,62,90,62,90,Original, +Ec9,xd637,Nanai,nana1257,Goldi (Ec9),"Goldi, Gold",1920,,,47,132,47,132,Original, +Ed1,xd638,Koreans,kore1280,Koreans (Ed1),,1950,Korea (AA01),http://ehrafworldcultures.yale.edu/collection?owc=AA01,35,102,38.134147,126.960754,Original, +Ed10,xd639,Shantung,mand1415,Shantung (Ed10),,1930,,,37,118,37,118,Original, +Ac38,xd64,Nyanja,nucl1395,Nyanja (Ac38),"Nyanja, Anyanja, Wanyanja, Waanyanja",1910,,,-16,36,-16,36,Original, +Ed13,xd640,Ishigakians,yaey1239,Ishigakians (Ed13),,1940,,,24,124,24.46,124.14,Revised, +Ed14,xd641,Man,kimm1245,Man (Ed14),Yao,NA,,,22,105,22,105,Original, +Ed15a,xd642,Miyakans,miya1259,Miyakans (Ed15a),,1950,,,24,125,24.79,125.32,Revised, +Ed15b,xd643,Chekiang,wuch1236,Chekiang (Ed15b),Chinese,1936,,,31,120,31,120,Original, +Ed16,xd644,Cantonese,yuec1235,Cantonese (Ed16),,1940,,,23,113,23,113,Original, +Ed2,xd645,Lolo,sich1238,Lolo (Ed2),"Yi, Nosu",1940,Yi (AE04),http://ehrafworldcultures.yale.edu/collection?owc=AE04,29,103,29,103,Original, +Ed3,xd646,Manchu,manc1252,Manchu (Ed3),,1920,Manchu (AG01),http://ehrafworldcultures.yale.edu/collection?owc=AG04,45,126,45,126,Original, +Ed4,xd647,Miao,horn1235,Miao (Ed4),,1940,Miao (AE05),http://ehrafworldcultures.yale.edu/collection?owc=AE05,26,107,26,107,Original,"Changed from hea to hrm on 8 April 2017 based on comment by H. Hammarström: Based on where Ruey worked, language should be cqd or hrm (they are intelligible, which is why glottolog only has one entry for them)." +Ed5,xd648,Japanese,nucl1643,Japanese (Ed5),,1950,Okayama (AB43),http://ehrafworldcultures.yale.edu/collection?owc=AB43,35,136,35,136,Original, +Ed6,xd649,Min Chinese,chao1239,Min Chinese (Ed6),,1920,,,24,115,24,115,Original,"7Nov2018-changed to Chaoshan dialect (from Min Nan Chinese language) based on consultation of primary source, and with the addition of dialects of Min Nan Chinese via new eHRAF societies" +Ac39,xd65,Nyasa,mwer1247,Nyasa (Ac39),"Anyassa, Wanyassa",1920,,,-13,35,-13,35,Original,"Note 8Feb2018: Glottocode changed to mwer1247 based on note from HH questioning the previous match (to Mande). mwer1247s is a sister to Chewa, which was the other possible match. KK logic: The EA tells us only that the alternate names for the group are Wanyassa and Anyassa. The Johnson reference describes the Nyasa of Lake Nyasa (Lake Malawi in Tanzania). Carol Ember's concordance tells us the group is in Tanzania [note that the Concordance also selects Mande/mand1423 as a match, but not for a clear reason]. The uzh.ch EA site quotes Tew (1950:31) [the other ethnographic reference for this case]: ""Nyasa, on the east littoral of Lake Nyasa, extending as far north as the Matengo mountains (and including a settlement of freed Nyasa slaves at Masasi in Tanganyika), and southwards until they mingle with Yao settlements on the upper Msinje and Luchulingo rivers."" From Wikipedia: ""The people who are called Nyanja [in Malawi] – when the term is used as an ethnic designation to identify those who speak Nyanja or related languages called Nyanja – are known as Nyasa or Wanyasa in neighbouring Tanzania. The Chewa are the largest ethnic group among the people who speak these related languages."" KK summary: Thus, Chewa looks to be a defensible match, but glottolog provides a sister language to Chewa for Tanzania: ""Mwera (Nyasa)"" [mwer1247], which was selected." +Ed7,xd650,Okinawans,cent2126,Okinawans (Ed7),,1950,Okinawa (AC07),http://ehrafworldcultures.yale.edu/collection?owc=AC07,26,128,26.16,127.8,Revised, +Ed8,xd651,Minchia,cent2004,Minchia (Ed8),,1930,,,26,100,26,100,Original, +Ed9,xd652,Li,hlai1239,Li (Ed9),"Sai, Hlai, Lai, Loi",1930,,,19,109,19,109,Original, +Ee1,xd653,Adi,bori1243,Abor (Ee1),Abor,1940,,,28,95,28,95,Original, +Ee2,xd654,Burusho,buru1296,Burusho (Ee2),,1930,Burusho (AV07),http://ehrafworldcultures.yale.edu/collection?owc=AV07,37,75,37,75,Original, +Ee3,xd655,Lepcha,lepc1244,Lepcha (Ee3),Rong,1930,Lepcha (AK05),http://ehrafworldcultures.yale.edu/collection?owc=AK05,28,89,28,89,Original, +Ee4,xd656,Central Tibetans,dbus1238,Tibetans (Ee4),,1920,Tibetans (AJ01),http://ehrafworldcultures.yale.edu/collection?owc=AJ01,30,91,30,91,Original,"12 Nov 2018 Assigned specific dialect to differentiate it from eHRAF society ""Western Tibetans"". From wikipedia: ""Central Tibetan, also known as Dbus, Ü or Ü-Tsang, is the most widely spoken Tibetic language and the basis of Standard Tibetan. There are many mutually intelligible Central Tibetan dialects besides that of Lhasa, with particular diversity along the border and in Nepal.""" +Ee5,xd657,Shina,shin1264,Dard (Ee5),Dard,1870,,,35,73,35,73,Original, +Ee6,xd658,Sherpa,sher1255,Sherpa (Ee6),,1950,Sherpa (AK06),http://ehrafworldcultures.yale.edu/collection?owc=AK06,28,87,28,87,Original, +Ee7,xd659,Kachari,kach1279,Kachari (Ee7),Bodo,1840,,,27,90,27,90,Original, +Ac4,xd66,Kuba,bush1247,Kuba (Ac4),Bakuba,1910,,,-5,22,-5,22,Original, +Ee8,xd660,Magar,west2418,Magar (Ee8),,1950,,,28,84,28,84,Original,"Note 8Feb2018: Changed to [mrd] based on comment by HH: ""Banyan Hill is close to latitude 84 and so is clearly Western Magar [mrd] on Ethnologue's division.""" +Ef1,xd661,Santal,sant1410,Santal (Ef1),"Santhal, Saontal",1940,Santal (AW42),http://ehrafworldcultures.yale.edu/collection?owc=AW42,24,87,24,87,Original, +Ef10,xd662,Bihari,mait1250,Bihari (Ef10),"Bihar, Behari",1880,Bihar (AW02),in process,25,86,25,86,Original, +Ef11,xd663,Uttar Pradesh,bhoj1244,Uttar Pradesh (Ef11),,1945,Uttar (AW19),http://ehrafworldcultures.yale.edu/collection?owc=AW19,26,83,26,83,Original, +Ef2,xd664,Bengali,beng1280,Bengali (Ef2),,1940,Bengali (AW69),http://ehrafworldcultures.yale.edu/collection?owc=AW69,23,88,23,88,Original, +Ef3,xd665,Indo-Iranian,sans1269,Aryans (Ef3),"Aryans, Indo-Aryans",-800,,,30,75,30,75,Original, +Ef4,xd666,Ho,hooo1248,Ho (Ef4),,1920,,,22,85,22,85,Original, +Ef5,xd667,Bhil,bhil1251,Bhil (Ef5),,1900,Bhil (AW25),http://ehrafworldcultures.yale.edu/collection?owc=AW25,22,74,22,74,Original, +Ef6,xd668,Kurukh,kuru1302,Oraon (Ef6),Oraon,1940,,,23,85,23,85,Original, +Ef7,xd669,Pahari,maha1287,Pahari (Ef7),,1950,,,30,78,30,78,Original, +Ac40,xd67,Sena,nucl1396,Sena (Ac40),"Asena, Wasena",1900,,,-18,35,-18,35,Original, +Ef8,xd670,Kashmiri,kash1277,Kashmir (Ef8),"Kashmir, Kashmiri, Pandit, Sarasvati Brahmans",1950,Kashmiri (AV04),in process,34,75,34,75,Original, +Ef9,xd671,Gujarati,guja1252,Gujarati (Ef9),,1136,Gujarati (AW07),in process,20,77,20,77,Original, +Eg1,xd672,Chenchu,chen1255,Chenchu (Eg1),,1940,,,16,79,16,79,Original, +Eg10,xd673,Telugu,telu1262,Telugu (Eg10),,1950,Telugu (AW17),http://ehrafworldcultures.yale.edu/collection?owc=AW17,18,79,18,79,Original, +Eg11,xd674,Koya,koya1251,Koya (Eg11),Koitur,1960,,,19,78,19,78,Original, +Eg12,xd675,Khond,kuii1252,Khond (Eg12),,1940,,,18,82,18,82,Original, +Eg13,xd676,Muria Gond,west2408,Muria Gond (Eg13),,1941,Gond (AW32),http://ehrafworldcultures.yale.edu/collection?owc=AW32,20,81,20,81,Original,"Note 8Feb2018: Changed based on note by HH: ""Elwin's book concerns Muria of Kondagaon and Narayanpur Tahsil = Muria-Western [mut]"". Also, White SCCS pinpointing sheets for Hill Maria provide this detail on the location of the Muria Gond: ""the north-eastern plateau of Bastar, Kondagaon Tahsil.""" +Eg14,xd677,Reddi,mukh1238,Reddi (Eg14),,1940,,,18,82,18,82,Original, +Eg2,xd678,Tamil,tami1289,Tamil (Eg2),,1880,Tamil (AW16),http://ehrafworldcultures.yale.edu/collection?owc=AW16,11,79,11,79,Original, +Eg3,xd679,Madia,mari1414,Maria Gond (Eg3),"Maria Gond, Gond",1938,Gond (AW32),http://ehrafworldcultures.yale.edu/collection?owc=AW32,19,81,19,81,Original,"Note 8Feb2018: Changed based on note by HH: Unclear why this is attributed to Dandami Maria rather than Maria [mrr]. Focus according to White SCCS pinpointing sheets: ""Hill Maria Gond of Antagarh and northern Kutru Districts, Bastar State.""" +Ac41,xd68,Makonde,mako1251,Makonde (Ac41),Wamakonde,1900,,,-11,40,-11,40,Original, +Eg4,xd680,Toda,toda1252,Toda (Eg4),,1900,Toda (AW60),http://ehrafworldcultures.yale.edu/collection?owc=AW60,12,77,12,77,Original, +Eg5,xd681,Kodavas,koda1255,Coorg (Eg5),Coorg,1930,Kodava (AW05),in process,12,76,12,76,Original, +Eg6,xd682,Kerala,mala1464,Kerala (Eg6),,1799,Kerala (AW11),in process,11,76,11,76,Original,"reclassified another society from [mal] to [xuj] on 26 May 2016; as a result, matched this society to the glottolog language [mala1464] (which we are more certain of), replacing match to dialect [cent1998] (less certain)" +Eg7,xd683,Hill Bhuiya,oriy1255,Hill Bhuiya (Eg7),Pauri,1930,,,21,85,21,85,Original,"Note, previously nucl1284 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)" +Eg8,xd684,Kol,mund1320,Kol (Eg8),,1940,Kol (AW37),http://ehrafworldcultures.yale.edu/collection?owc=AW37,22,85,22,85,Original, +Eg9,xd685,Baiga,chha1249,Baiga (Eg9),,1930,,,22,81,22,81,Original, +Eh1,xd686,Andamanese,akab1249,Andamese (Eh1),"Big Andaman Island, Andamese",1870,Andamans (AZ02),http://ehrafworldcultures.yale.edu/collection?owc=AZ02,12,93,12,93,Original,Changed to abj from apq on 8 April 2017 based on comments from H. Hammarström: Man (1885) worked most with (and whose variety he spoke best) Bojingya or Aka-Bea [abj] +Eh10,xd687,Betsileo,bets1235,Betsileo (Eh10),,NA,,,-22,47,-22,47,Original, +Eh2,xd688,Merina,meri1243,Merina (Eh2),"Antimerina, Hova, Imerina",1900,,,-19,46,-19,46,Original, +Eh3,xd689,Tanala,tana1285,Tanala (Eh3),,1930,Tanala (FY08),http://ehrafworldcultures.yale.edu/collection?owc=FY08,-22,47,-22,47,Original, +Ac42,xd69,Makua,makh1264,Makua (Ac42),Wamakua,1900,,,-15,39,-15,39,Original, +Eh4,xd690,Vedda,vedd1240,Vedda (Eh4),"Wanniyalaeto, Veddah",1900,Vedda (AX05),http://ehrafworldcultures.yale.edu/collection?owc=AX05,8,81,8,81,Original, +Eh5,xd691,Nicobarese,carn1240,Nicobarese (Eh5),Holchu,1890,Nicobarese (AZ07),http://ehrafworldcultures.yale.edu/collection?owc=AZ07,9,92,9.17,92.77,Revised, +Eh6,xd692,Sinhalese,sinh1246,Sinhalese (Eh6),,1950,Sinhalese (AX04),http://ehrafworldcultures.yale.edu/collection?owc=AX04,7,80,7,80,Original, +Eh7,xd693,Antandroy,tand1256,Antandroy (Eh7),Tandroy,1900,,,-25,46,-25,46,Original, +Eh8,xd694,Sakalava,saka1291,Sakalava (Eh8),,1900,,,-21,41,-21,43.93,Revised, +Eh9,xd695,Antaisaka,tesa1236,Antaisaka (Eh9),,1930,,,-23,48,-22.9,47.75,Revised, +Ei1,xd696,Garo,garo1247,Garo (Ei1),A.Chik,1900,Garo (AR05),http://ehrafworldcultures.yale.edu/collection?owc=AR05,26,91,26,91,Original, +Ei10,xd697,Chakma,chak1266,Chakma (Ei10),Chuckmah,1870,,,23,92,23,92,Original, +Ei11,xd698,Aimol,aimo1244,Aimol (Ei11),,1910,,,25,94,25,94,Original, +Ei12,xd699,Thado,thad1238,Thado (Ei12),,1910,,,25,94,25,94,Original, +Aa7,xd7,Naron,naro1249,Naron (Aa7),Aikwe,1910,,,-20,24,-20,24,Original, +Ac43,xd70,Mambwe,mamb1296,Mambwe (Ac43),Amambwe,1910,,,9,32,9,32,Original, +Ei13,xd700,Angami,anga1288,Angami (Ei13),,1910,,,26,94,26,94,Original, +Ei14,xd701,Ao,aona1235,Ao (Ei14),,1920,,,27,94,27,94,Original, +Ei15,xd702,Rengma,sout2732,Rengama (Ei15),"Rengama, Rengma Naga",1930,,,26,94,26,94,Original, +Ei16,xd703,Sema,sumi1235,Sema (Ei16),,1910,,,26,95,26,95,Original, +Ei17,xd704,Karbi,karb1241,Mikir (Ei17),"Arleng, Mikir",1900,,,26,94,26,94,Original, +Ei18,xd705,Palaung,shwe1236,Palaung (Ei18),,1920,,,23,97,23,97,Original,"Note 8Feb2018: HH notes that it is unusual that an ethnography by Lowis be associated with [pll] rather than Rumai [rbb]. However, EA focus is “Katurr subtribe,” and this group was the focus of Milne's work. They are described as living “in or near Namhsan”. Her dictionary deals mainly with the dialect of Namhsan >> Shwe Palaung >> [pll]. Thus, I have left the language as [pll], assuming Lowis' work was used for context. However, users should be aware that this case may combine data for groups speaking different Palaung languages." +Ei19,xd706,Chin,asho1236,Chin (Ei19),Khyang,1940,,,22,94,22,94,Original,"Note 8Feb2018: Changed based on note from HH: Bernot's Khyang is ""Khyang of Gongru village rattachent au groupe des Chin du Sud etudies par Houghton"" = Asho Chin [csh]" +Ei2,xd707,Lhota,loth1237,Lhota (Ei2),,1920,,,27,94,27,94,Original, +Ei20,xd708,Kuki,lush1249,Kuki (Ei20),"Chin, Mizo, Kuki",1940,,,23,92,23,92,Original, +Ei3,xd709,Burmese,nucl1310,Burmese (Ei3),Bamar people,1950,Burmans (AP04),http://ehrafworldcultures.yale.edu/collection?owc=AP04,20,95,20,95,Original, +Ac5,xd71,Lamba,lamb1271,Lamba (Ac5),"Balamba, Walamba",1920,,,-13,28,-13,28,Original, +Ei4,xd710,Maras,mara1382,Lakher (Ei4),Lakher,1930,,,22,93,22,93,Original, +Ei5,xd711,Kachin,kach1280,Kachin (Ei5),,1940,Kachin (AP06),http://ehrafworldcultures.yale.edu/collection?owc=AP06,26,97,26,97,Original, +Ei6,xd712,Purum,puru1266,Purum (Ei6),,1930,,,25,94,25,94,Original, +Ei7,xd713,Karen,pwow1235,Karen (Ei7),,1910,Karen (AP07),http://ehrafworldcultures.yale.edu/collection?owc=AP07,17,97,17.12,97.19,Revised, +Ei8,xd714,Khasi,khas1269,Khasi (Ei8),,1900,Khasi (AR07),http://ehrafworldcultures.yale.edu/collection?owc=AR07,26,92,26,92,Original, +Ei9,xd715,Mogh,rakh1245,Mogh (Ei9),"Marma, Morma, Mog, Magh",1880,,,20,92,20.49,92.64,Revised, +Ej1,xd716,Lamet,lame1256,Lamet (Ej1),,1940,,,20,101,20,101,Original, +Ej10,xd717,Rade,rade1240,Rhade (Ej10),Rhade,1950,,,13,108,13,108,Original, +Ej11,xd718,Cham,east2563,Cham (Ej11),,1950,,,11,108,11,108,Original, +Ej12,xd719,Lawa,west2396,Lawa (Ej12),Lua,1960,,,18,98,18,98,Original, +Ac6,xd72,Ndembu,lund1266,Ndembu (Ac6),"Andembu, Southern Lunda",1930,,,-11,26,-11,26,Original, +Ej13,xd720,Muong,muon1246,Muong (Ej13),,1940,,,21,105,21,105,Original, +Ej14,xd721,Senoi,sema1266,Senoi (Ej14),,1960,Semai (AN06),http://ehrafworldcultures.yale.edu/collection?owc=AN06,4,102,4,102,Original, +Ej15,xd722,Ancient Khmer,oldk1249,Khmer (Ej15),Khmer,1292,,,13,104,13,104,Original,"Changed to [oldk1249][qok] by kk on 5Sept2018. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +Ej16,xd723,Negri Sembilan,nege1240,Negri Sembilan (Ej16),Negeri Sembilan,1958,,,21,102,2.58,102.25,Original, +Ej2,xd724,Mnong Gar,east2333,Mnong Gar (Ej2),,1940,,,12,107,12,107,Original, +Ej3,xd725,Semang,kens1248,Semang (Ej3),,1920,Semang (AN07),http://ehrafworldcultures.yale.edu/collection?owc=AN07,5,101,5,101,Original, +Ej4,xd726,Annamese,viet1252,Annamese (Ej4),Vietnamese,1950,Vietnam (AM11),http://ehrafworldcultures.yale.edu/collection?owc=AM11,17,107,17,107,Original, +Ej5,xd727,Khmer,cent1989,Cambodians (Ej5),Cambodians,1950,Cambodians (AM04),http://ehrafworldcultures.yale.edu/collection?owc=AM04,12,105,12,105,Original,"Note, previously matched to a dialect of cent1989 (sout2688); rematched to [cent1989] after ""Ancient Khmer"" linked to a different language (so no longer sharing tip of cent1989 with ""Cambodians"" (5Sept2018). Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +Ej6,xd728,Moken,moke1242,Selung (Ej6),"Selung, Mawken, Salon, Sea Gypsies",1920,,,12,98,11.78,98.28,Revised, +Ej7,xd729,Akha,akha1245,Akha (Ej7),"e-Kaw, Kaw",1950,,,21,100,21,100,Original, +Ac7,xd73,Yao,yaoo1241,Yao (Ac7),"Achawa, Wayao",1920,Yao (FT07),in process,-13,36,-13,36,Original, +Ej8,xd730,Malays,mala1479,Malays (Ej8),,1940,Malays (AN05),http://ehrafworldcultures.yale.edu/collection?owc=AN05,5,103,5,103,Original, +Ej9,xd731,Thai,thai1261,Siamese (Ej9),"Siamese, Central Thai",1940,,,15,100,15,100,Original, +Ia1,xd732,Atayal,atay1247,Atayal (Ia1),,1930,,,24,121,24,121,Original, +Ia10,xd733,Bunun,bunu1267,Bunun (Ia10),,1930,,,24,121,24,121,Original, +Ia11,xd734,Puyuma,puyu1239,Puyuma (Ia11),,1930,,,23,121,23,121,Original, +Ia12,xd735,Sugbuanon,cebu1242,Sugbuhanon (Ia12),"Cebuanos, Sugbuhanon, Cebuan Bisaya, Cebuans",1950,Central (OA14),in process,10,124,10.2,123.65,Revised, +Ia13,xd736,Badjau Tawi-Tawi,sout2918,Badjau Tawi-Tawi (Ia13),"Tawi-Tawi Badjaw, Badjau",1960,,,5,120,5.09,119.97,Revised, +Ia14,xd737,Tao,yami1254,Yami (Ia14),Yami,1930,,,22,122,22.05,121.55,Revised, +Ia15,xd738,Manobo,agus1235,Manobo (Ia15),,1920,,,8,126,8,126,Original,Note 8Feb2018: Changed based on note from HH: Why W Bukidnon Manobo rather than e.g. Agusan Manobo [msm]? +Ia16,xd739,Kalinga,lubu1243,Kalinga (Ia16),,1910,,,18,121,18,121,Original, +Ac8,xd74,Yombe,yomb1244,Yombe (Ac8),"Bayombe, Mayombe",1930,,,-5,13,-5,13,Original, +Ia17,xd740,Bilaan,koro1310,Bilaan (Ia17),,1910,,,6,125,6,125,Original, +Ia18,xd741,Bisayan,akla1241,Bisayan (Ia18),Visayan,1950,,,10,123,10,123,Original, +Ia2,xd742,Sagada,nort2877,Sagada (Ia2),Sagada Igorot,1950,,,17,121,17,121,Original, +Ia3,xd743,Ifugao,tuwa1243,Ifugao (Ia3),,1920,Ifugao (OA19),http://ehrafworldcultures.yale.edu/collection?owc=OA19,17,121,17,121,Original,"Changed to ifk from ifb on 8 April 2017 based on comment from H. Hammarström: Barton is source, and while he doesn't say specifically which group his observations pertain to, he was working using Kiangan as his base, which would make it Ifugao-Tuwali [ifk]" +Ia4,xd744,Subanun,cent2089,Subanun (Ia4),,1950,,,8,123,8,123,Original, +Ia5,xd745,Hanunoo,hanu1241,Hanunoo (Ia5),,1950,,,13,121,13,121,Original, +Ia6,xd746,Paiwan,paiw1248,Paiwan (Ia6),,1930,,,22,121,22.44,120.77,Revised, +Ia7,xd747,Tagbanua,tagb1258,Tagbanua (Ia7),,1950,,,10,119,10,119,Original, +Ia8,xd748,Bontok,cent2292,Bontok (Ia8),,1900,,,17,121,17,121,Original, +Ia9,xd749,Ami,amis1246,Ami (Ia9),Pangcah,1930,,,22,121,22.7,121.05,Revised, +Ac9,xd75,Ngoni,ngon1269,Ngoni (Ac9),Angoni,1940,Ngoni (FR05),in process,-12,33,-12,33,Original, +Ib1,xd750,Iban,iban1264,Iban (Ib1),"Dayak, Sea Dayak",1950,Iban (OC06),http://ehrafworldcultures.yale.edu/collection?owc=OC06,2,112,2,112,Original, +Ib2,xd751,Javanese,java1254,Javanese (Ib2),,1950,Javanese (OE05),http://ehrafworldcultures.yale.edu/collection?owc=OE05,-7,110,-7,110,Original,"Note, previously linked to language iso ""jas"" (New Caledonian Javanese); on 3Mar2016 Hannah Haynie checked refs/coordinates and concluded ""jav"" was a better match; it was temporarily switched back to [jas/newc1244] on 8Aug2018 but that was a mistake, should be [jav]/[java1254] (updated note: 5Sept2018 kk)" +Ib3,xd752,Balinese,bali1278,Balinese (Ib3),,1950,Bali (OF07),http://ehrafworldcultures.yale.edu/collection?owc=OF07,-8,115,-8.18,115.02,Revised,"Note, previously linked to language iso ""mhp"" (Malay, Balinese). Hannah Haynie checked refs/coordinates and concluded ""ban"" (Bali, glottocode bali1278) was a better match (3 Mar 2016)" +Ib4,xd753,Toba Batak,bata1289,Batak (Ib4),"Toba, Batak",1930,,,2,99,2,99,Original, +Ib5,xd754,Kadazan-Dusun,cent2100,Dusun (Ib5),Dusun,1920,,,6,117,6,117,Original, +Ib6,xd755,Minangkabau,mina1268,Minangkabau (Ib6),,1920,,,-1,101,-1,101,Original, +Ib7,xd756,Mentaweians,ment1249,Mentaweians (Ib7),,1920,Mentawaians (OD09),http://ehrafworldcultures.yale.edu/collection?owc=OD09,-3,100,-2.93,100.23,Revised, +Ib8,xd757,Anak Dalam,kubu1239,Kubu (Ib8),"Orang Batin Sembilan, Orang Rimba, Kubu",1900,,,-3,103,-3,103,Original, +Ib9,xd758,Punan,puna1275,Punan (Ib9),,1950,,,3,115,3,115,Original,"Note, previously this xd_id was associated with language iso sge (Segai); Hannah Haynie reviewed references and coordinates and concluded should be matched to language iso ""pna"", glottolog language puna1275 (3 Mar 2016)" +Ic1,xd759,Macassarese,maka1311,Macassarese (Ic1),,1940,Makassar (OG06),in process,-5,119,-5.31,119.69,Revised, +Ad1,xd76,Bajuni,baju1245,Bajun (Ad1),"Wabajuni, Bajun, Bagiuni, Barjun, Wagunya",1950,,,-2,41,-2,41,Original, +Ic10,xd760,Tobelorese,tobe1252,Tobelorese (Ic10),Togutil,1910,,,1,128,1,128,Original, +Ic11,xd761,Ambonese,ambo1250,Ambonese (Ic11),,1950,,,-4,128,-3.71,128.18,Revised, +Ic12,xd762,Sumbawanese,sumb1241,Sumbawanese (Ic12),,1951,,,-4,118,-8.63,117.27,Revised, +Ic13,xd763,Kodi,kodi1247,Kodi (Ic13),West Sumbanese,1950,,,-10,119,-9.66,119.07,Revised, +Ic2,xd764,Alorese,abui1241,Alorese (Ic2),Abui,1940,Alor (OF05),http://ehrafworldcultures.yale.edu/collection?owc=OF05,-8,125,-8.22,124.26,Revised,Changed from aol to abz on 8 April 2017 based on comment from H. Hammarström: Sources are DuBois and Nicolspeyer. They both worked with Abui (abz) speakers. +Ic3,xd765,Belu,tetu1245,Belu (Ic3),,1950,,,-9,126,-9,126,Original, +Ic4,xd766,Rotinese,term1237,Rotinese (Ic4),"Atahori Rote, Hataholi Lote",1920,,,-11,123,-10.71,123.18,Revised, +Ic5,xd767,Toradja,pamo1252,Toradja (Ic5),,1910,Toradja (OG11),http://ehrafworldcultures.yale.edu/collection?owc=OG11,-2,121,-2,121,Original,"Changed to pamo1252 (pmf, Pamona) from tora1261 (sda, Sa'dan) on 3Oct2018. Reason: the SCCS focus is on the Bare'e subgroup, which is the focus of (Adriani and Kruijt, 1912). Harald Hammarstrom notes that this group speaks Pamona [pmf], not Sa'dan [sda]. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +Ic6,xd768,Tanimbarese,sela1259,Tanimbarese (Ic6),,1930,,,-8,131,-8.19,130.96,Revised, +Ic7,xd769,Ili-Mandiri,lama1277,Ili-Mandiri (Ic7),,1920,,,-8,123,-8.33,122.85,Revised, +Ad10,xd77,Shambaa,sham1280,Shambala (Ad10),"Wasambaa, Shambala, Sambara, Waschambala",1910,,,-5,38,-5,38,Original, +Ic8,xd770,Kei,keii1239,Kei (Ic8),Kei Islanders,1890,,,-6,133,-5.58,133.07,Revised, +Ic9,xd771,Sumbanese,kamb1299,Sumbanese (Ic9),Tau Humba,1930,,,-10,120,-10,120,Original, +Id1,xd772,Northern Aranda,east2379,Aranda (Id1),"Aranda (Northern), Northern Arenda, Arunta",1900,Aranda (OI08),http://ehrafworldcultures.yale.edu/collection?owc=OI08,-24,134,-24,134,Original,"Note 8Feb2018: Not changed, despite note from HH: ""Why is Strehlow not associated rather with Western Arrarnta [are]"". According to White SCCS Pinpointing sheets, focus is ""The Arunta Mbainda of Alice Springs: [...] closely studied by Spencer and Gillen in 1896, restudied in 1901, and visited by Spencer in 1926 for some follow-up reconstruction work with several informants."" [So, Strehlow was perhaps used for supporting materials?]" +Id10,xd773,Walbiri,warl1254,Walbiri (Id10),Warlpiri,1930,,,-22,132,-22,132,Original, +Id11,xd774,Gidjingali,gunn1248,Gidjingali (Id11),"Burarra, Gun-nartpa",1950,,,-12,135,-12.29,134.32,Revised, +Id12,xd775,Yir Yoront,jirj1239,Yir Yoront (Id12),,1930,,,-15,142,-15,142,Original,"Note, previously yiy and yiry1245, however both codes have been retired" +Id13,xd776,Anindilyagwa,anin1240,Groote Eylandt (Id13),"Enindilywakwa, Groote Eylandt, Groote Eyelandt",1930,,,-14,137,-13.99,136.6,Revised, +Id2,xd777,"Yolngu, Dhuwal",dhuw1249,Murngin (Id2),"Murngin, Wulamba, Dhuwal",1930,Murngin (OI17),in process,-12,136,-12.48,135.96,Revised, +Id3,xd778,Tiwi,tiwi1244,Tiwi (Id3),,1920,Tiwi (OI20),http://ehrafworldcultures.yale.edu/collection?owc=OI20,-12,131,-11.56,130.81,Revised, +Id4,xd779,Diyari,dier1241,Dieri (Id4),"Dieri, Dieri",1900,,,-28,138,-28,138,Original, +Ad11,xd78,Bena,bena1262,Bena (Ad11),Wabena,1930,Bena (FN31),http://ehrafworldcultures.yale.edu/collection?owc=FN31,-9,36,-9,36,Original, +Id5,xd780,Kariyarra,kari1304,Kariera (Id5),Kariera,1910,,,-21,118,-21,118,Original, +Id6,xd781,Wikmunkan,wikm1247,Wikmunkan (Id6),Wikmunkun,1920,,,-14,142,-14,142,Original, +Id7,xd782,Murriny Patha,murr1258,Murinbata (Id7),"Murriny Patha, Murinbata",1940,,,-14,130,-14,130,Original, +Id8,xd783,Tasmanians (northwestern),port1278,Tasmanians (Id8),"Palawa, Tasmanians (northwestern), Tasmanians (Western), Tasmanians (West Coast)",1830,Tasmanians (OI19),in process,-42,146,-42,146,Original,"Note, previously tasm1247, but languages difficult to assign with certainty, so chose another western tasmanian language not considered a ""bookkeeping"" language by glottolog" +Id9,xd784,Ngiyambaa,wang1291,Wongaibon (Id9),Wongaibon,1910,,,-32,146,-32,146,Original, +Ie1,xd785,Mee,ekar1243,Kapauku (Ie1),Kapauku,1950,Kapauku (OJ29),http://ehrafworldcultures.yale.edu/collection?owc=OJ29,-4,136,-4,136,Original, +Ie10,xd786,Motu,motu1246,Motu (Ie10),,1950,,,-9,147,-9,147,Original, +Ie11,xd787,Kakoli,umbu1258,Kakoli (Ie11),,1950,,,-6,144,-6,144,Original, +Ie12,xd788,Kwoma,kwom1262,Kwoma (Ie12),,1930,Kwoma (OJ13),http://ehrafworldcultures.yale.edu/collection?owc=OJ13,-4,142,-4,142,Original, +Ie13,xd789,Kiwai,sout2949,Kiwai (Ie13),,1920,,,-9,143,-9,143,Original, +Ad12,xd79,Gusii,gusi1247,Gusii (Ad12),"Abagusii, Gizii, Kissi, Kosova",1940,Gusii (FL08),http://ehrafworldcultures.yale.edu/collection?owc=FL08,-1,35,-1,35,Original, +Ie14,xd790,Miriam,meri1244,Miriam (Ie14),,1900,,,-10,144,-9.91,144.06,Revised, +Ie15,xd791,Abelam,ambu1247,Abelam (Ie15),,1930,,,4,-145,-3.79,143.09,Revised, +Ie16,xd792,Kutubu,foii1241,Kutubu (Ie16),,1940,,,-6,143,-6,143,Original, +Ie17,xd793,Siane,sian1257,Siane (Ie17),,1940,,,-6,145,-6,145,Original, +Ie18,xd794,Kimam,kima1246,Kimam (Ie18),Frederik-Hendrik Islanders,1940,,,-7,138,-7.52,138.46,Revised, +Ie19,xd795,Marind-Amin,nucl1622,Marindamin (Ie19),"Marindamin, Tugeri",1910,,,-8,139,-8,139,Original, +Ie2,xd796,Wantoat,want1252,Wantoat (Ie2),,1920,,,-7,147,-6.15,146.53,Revised, +Ie20,xd797,Koita,koit1244,Koita (Ie20),,1900,,,-9,147,-9,147,Original, +Ie21,xd798,Mailu,mail1248,Mailu (Ie21),,1900,,,-10,149,-10,149,Original, +Ie22,xd799,Mekeo,meke1243,Mekeo (Ie22),,1900,,,-9,147,-9,147,Original, +Aa8,xd8,/Xam,xamm1241,Xam (Aa8),"Xam, Cape Bushman",1850,,,-30,23,-30,23,Original, +Ad13,xd80,Kiga,chig1238,Chiga (Ad13),"Chiga, Bachiga, Ciga, Kyiga",1930,,,-3,30,-3,30,Original, +Ie23,xd800,Muju,sout2940,Muju (Ie23),,1950,,,-6,141,-6,141,Original, +Ie24,xd801,Koiari,gras1249,Koiari (Ie24),,1870,,,-9,148,-9,148,Original, +Ie25,xd802,Mafulu,fuyu1242,Mafulu (Ie25),,1920,,,-8,147,-8,147,Original, +Ie26,xd803,Ngarawapum,adze1240,Ngarawapum (Ie26),,1940,,,-6,146,-6,146,Original, +Ie27,xd804,Banaro,bana1292,Banaro (Ie27),,1910,,,-4,145,-4.56,144.34,Revised, +Ie28,xd805,Busama,buga1250,Busama (Ie28),,1940,,,-7,147,-6.69,147.26,Revised, +Ie29,xd806,Manam,mana1295,Manam (Ie29),,1930,,,-4,145,-4.08,145.03,Revised, +Ie3,xd807,Arapesh,buki1249,Arapesh (Ie3),,1930,,,-4,144,-4,144,Original,Note 8Feb2018: Changed based on note from HH: Why is Mead's Arapesh associated with Bumbita rather than Bukiyip [ape]? +Ie30,xd808,Mimika,kamo1255,Mimika (Ie30),,1950,,,-4,135,-4,135,Original, +Ie31,xd809,Fore,fore1270,Fore (Ie31),,1950,,,-6,145,-6,145,Original, +Ad14,xd81,Luguru,lugu1238,Luguru (Ad14),Waluguru,1930,,,-8,38,-8,38,Original, +Ie32,xd810,Sio,sioo1240,Sio (Ie32),,1964,,,-6,147,-6,147,Original, +Ie33,xd811,Soromadja,nucl1595,Soromadja (Ie33),Tor,1950,,,-2,138,-2,138,Original, +Ie34,xd812,Bgu,bong1287,Bgu (Ie34),,1960,,,-2,140,-2.34,139.6,Revised, +Ie35,xd813,Iatmul,iatm1242,Iatmul (Ie35),,1930,,,-4,143,-4,143,Original, +Ie36,xd814,Samarokena,sama1240,Samarokena (Ie36),,1950,,,-3,140,-3,140,Original, +Ie37,xd815,Star Mountain,ngal1298,Star Mountain (Ie37),Star Mountain Papuans,1960,,,-5,141,-5,141,Original, +Ie38,xd816,Dani,midg1235,Dani (Ie38),,1960,,,-4,139,-4,139,Original, +Ie39,xd817,Elema,orok1267,Elema (Ie39),,1920,,,-8,145,-7.82,145.31,Revised, +Ie4,xd818,Wogeo,woge1237,Wogeo (Ie4),,1930,Wogeo (OJ27),http://ehrafworldcultures.yale.edu/collection?owc=OJ27,-3,144,-3.24,144.1,Revised, +Ie5,xd819,Keraki,namb1293,Keraki (Ie5),,1930,,,-9,142,-9,142,Original, +Ad15,xd82,Iwa,nyam1275,Iwa (Ad15),"Awiwa, Wawiwa, Wiwa",1900,,,-10,32,-10,32,Original, +Ie6,xd820,Waropen,waro1242,Waropen (Ie6),,1930,,,-2,137,-2.14,137.23,Revised, +Ie7,xd821,Enga,enga1252,Enga (Ie7),,1950,,,-6,144,-6,144,Original, +Ie8,xd822,Purari,pura1257,Purari (Ie8),,1910,,,-7,145,-7,145,Original, +Ie9,xd823,Orokaiva,orok1269,Orokaiva (Ie9),,1920,Orokaiva (OJ23),http://ehrafworldcultures.yale.edu/collection?owc=OJ23,-9,148,-9,148,Original, +If1,xd824,Palauans,pala1344,Palauans (If1),,1940,Belau (OR15),http://ehrafworldcultures.yale.edu/collection?owc=OR15,7,135,7.45,134.54,Revised, +If10,xd825,Nomoians,mort1237,Nomoians (If10),Mortlock Islanders,1940,,,6,153,6.89,152.74,Revised, +If11,xd826,Kosraeans,kosr1238,Kusaians (If11),Kusaians,1860,,,5,163,5.31,162.98,Revised, +If12,xd827,Bikinians,rali1241,Bikinians (If12),,1940,Marshalls (OR11),http://ehrafworldcultures.yale.edu/collection?owc=OR11,12,165,11.7,165.29,Revised, +If13,xd828,Nauruans,naur1243,Nauruans (If13),,1900,,,-1,166,-0.53,166.92,Revised, +If14,xd829,Makin,bana1287,Makin (If14),Gilbertese,1890,,,3,173,3.38,172.99,Revised, +Ad16,xd83,Ngonde,ngon1268,Ngonde (Ad16),"Konde, Nkonde, Wangonde",1920,Ngonde (FN17),http://ehrafworldcultures.yale.edu/collection?owc=FN17,-10,34,-10,34,Original, +If15,xd830,Carolinians,caro1242,Carolinians (If15),,1930,,,15,146,15.21,145.76,Revised, +If16,xd831,Lamotrek,lamo1243,Lamotrek (If16),,1960,,,7,146,7.46,146.38,Revised, +If17,xd832,Marshallese - Jaluit atoll,rali1241,Marshallese (If17),,1900,Marshallese (OR11),http://ehrafworldcultures.yale.edu/collection?owc=OR11,6,169,6.28,169.49,Revised,"12 Nov 2018 - dialect assigment corrected (should have been Ralik, rali1241, not Ratak, rata1243)." +If2,xd833,Trukese,chuu1238,Trukese (If2),Chuukese,1940,Truk (OR19),http://ehrafworldcultures.yale.edu/collection?owc=OR19,7,152,7.34,151.6,Revised, +If3,xd834,Majuro,rata1243,Majuro (If3),Marshallese,1940,Marshalls (OR11),http://ehrafworldcultures.yale.edu/collection?owc=OR11,7,171,7.09,171.13,Revised, +If4,xd835,Ifaluk,nucl1479,Ifuluk (If4),Ifuluk,1940,Woleai (OR21),http://ehrafworldcultures.yale.edu/collection?owc=OR21,7,147,7.25,144.46,Revised, +If5,xd836,Ponapeans,pohn1238,Ponapeans (If5),Pohnpeian,1910,,,7,158,6.88,158.22,Revised, +If6,xd837,Yapese,yape1248,Yapese (If6),,1910,Yap (OR22),http://ehrafworldcultures.yale.edu/collection?owc=OR22,9,138,9.55,138.13,Revised, +If7,xd838,Gilbert Onotoa,nuii1237,Gilbert Onotoa (If7),"Onotoa, Gilbertese",1940,,,-2,174,-1.47,175.06,Revised, +If8,xd839,Chamorro,cham1312,Chamorro (If8),,1950,,,15,145,15.13,145.71,Revised, +Ad17,xd84,Safwa,safw1238,Safwa (Ad17),Wassafwa,1920,,,-8,33,-8,33,Original, +If9,xd840,Ulithians,ulit1238,Ulithians (If9),,1900,,,10,140,10.02,139.79,Revised, +Ig1,xd841,Siuai,siwa1245,Siuai (Ig1),,1940,Siwai (ON19),http://ehrafworldcultures.yale.edu/collection?owc=ON19,-6,155,-6,155,Original, +Ig10,xd842,Usiai,lele1270,Usiai (Ig10),,1950,,,-2,147,-2,147,Original, +Ig11,xd843,Rossel Islanders,yele1255,Rossel (Ig11),Rossel,1920,,,-9,154,-11.36,154.14,Revised, +Ig12,xd844,Choiseulese,vagh1249,Choiseulese (Ig12),,1900,,,-6,156,-6.69,156.52,Revised, +Ig13,xd845,Aua,wuvu1239,Aua (Ig13),,1900,,,-2,143,-1.74,142.85,Revised, +Ig14,xd846,Dahuni,suau1242,Dahuni (Ig14),,1900,,,-10,150,-10.41,149.91,Revised, +Ig15,xd847,Bakovi,bola1250,Bakovi (Ig15),,1950,,,-5,150,-5.42,150.05,Revised, +Ig16,xd848,Bwaidoga,bwai1242,Bwaidoga (Ig16),,1950,,,-9,150,-9.44,150.33,Revised, +Ig17,xd849,Kombe,mudu1242,Koobe (Ig17),Koobe,1950,,,-5,149,-4.67,149.53,Revised, +Ad18,xd85,Bende,bend1258,Bende (Ad18),"Vende, Wabende",1910,,,-7,31,-7,31,Original, +Ig18,xd850,Kwaio,kwai1243,Kwaio (Ig18),,1960,,,-9,161,-9,161,Original, +Ig19,xd851,Molima,moli1248,Molima (Ig19),,1950,,,-10,151,-10,151,Original, +Ig2,xd852,Trobriands,kili1267,Trobriands (Ig2),,1910,Trobriands (OL06),http://ehrafworldcultures.yale.edu/collection?owc=OL06,-8,151,-8.43,151.09,Revised, +Ig20,xd853,Kaoka,long1395,Kaoka (Ig20),Kaukau,1920,,,-10,161,-9.49,159.82,Revised, +Ig21,xd854,Tangu,tang1348,Tangu (Ig21),Tanga,1930,,,-3,153,-3.38,153.31,Revised, +Ig3,xd855,Kurtatchi,tinp1237,Kurtatchi (Ig3),Buka,1930,Tinputz (ON06),http://ehrafworldcultures.yale.edu/collection?owc=ON06,-5,154,-5.6,154.91,Revised, +Ig4,xd856,Lesu,nots1237,Lesu (Ig4),New Irelanders,1930,Lesu (OM24),http://ehrafworldcultures.yale.edu/collection?owc=OM24,-3,153,-3.06,151.66,Revised, +Ig5,xd857,Dobuans,dobu1241,Dobuans (Ig5),,1920,,,-10,151,-10,151,Original, +Ig6,xd858,Ulawans,saaa1240,Ulawans (Ig6),,1900,,,-10,161,-9.63,161.44,Revised, +Ig7,xd859,Lakalai,naka1262,Lakalai (Ig7),Western Nakanai,1950,,,-5,151,-5.5,150.81,Revised, +Ad19,xd86,Fipa,fipa1238,Fipa (Ad19),Wafipa,1910,,,-8,31,-8,31,Original, +Ig8,xd860,Simboese,simb1256,Simboese (Ig8),Eddystone Islanders,1910,,,-8,157,-8,157,Original, +Ig9,xd861,Manus,tita1241,Manus (Ig9),,1920,Manus (OM06),http://ehrafworldcultures.yale.edu/collection?owc=OM06,-2,147,-2,147,Original, +Ih1,xd862,Mota,mota1237,Mota (Ih1),,1890,,,-14,168,-13.84,167.7,Revised, +Ih10,xd863,Tannese,sout2869,Tannese (Ih10),,1920,,,-20,168,-19.6,169.44,Revised, +Ih11,xd864,Epi,lame1260,Epi (Ih11),,1920,,,-17,168,-16.61,168.17,Revised, +Ih12,xd865,Eromangans,siee1239,Eromangans (Ih12),,1920,,,-19,169,-18.85,169.16,Revised, +Ih13,xd866,Ranon,nort2839,Ranon (Ih13),,1920,,,-16,168,-16.18,168.15,Revised, +Ih14,xd867,Mbau Fijians,bauu1243,Mbau Fijians (Ih14),,1840,,,-18,179,-17.81,178.32,Revised, +Ih2,xd868,Seniang,sout2857,Seniang (Ih2),,1930,,,-17,167,-16.51,167.47,Revised, +Ih3,xd869,Bunlap,saaa1241,Bunlap (Ih3),Pentecost,1950,,,-16,168,-15.95,168.22,Revised, +Ad2,xd87,Nyoro,nyor1246,Nyoro (Ad2),"Banyoro, Kitara",1950,Banyoro (FK11),http://ehrafworldcultures.yale.edu/collection?owc=FK11,2,32,2,32,Original, +Ih4,xd870,Lau,laua1243,Lau (Ih4),,1920,Lau (OQ06),http://ehrafworldcultures.yale.edu/collection?owc=OQ06,-18,179,-17.74,-179.31,Revised, +Ih5,xd871,Ajie,ajie1238,Ajie (Ih5),,1860,,,-22,165,-21.37,165.47,Revised, +Ih6,xd872,Rotumans,rotu1241,Rotumans (Ih6),,1890,,,-13,177,-12.5,177.07,Revised, +Ih7,xd873,Lifu,dehu1237,Lifu (Ih7),Lifu Islanders,1910,,,-21,163,-20.94,167.23,Revised, +Ih8,xd874,Vanua Levu,nort2843,Vanua Levu (Ih8),,1940,,,-17,179,-17.81,178.32,Revised, +Ih9,xd875,Santa Cruz Islanders,natu1246,Santa Cruz (Ih9),Santa Cruz,1930,Santa Cruz (ON13),http://ehrafworldcultures.yale.edu/collection?owc=ON13,-11,166,-10.73,165.85,Revised, +Ii1,xd876,American Samoans,samo1305,Samoans (Ii1),,1920,,,-14.289155,-170.706485,-13.68,-172.41,Revised, +Ii10,xd877,Rennell Islanders,renn1242,Rennell (Ii10),"Mugaba, Rennell",1950,,,-12,160,-11.74,160.42,Revised, +Ii12,xd878,Tongans,tong1325,Tongans (Ii12),,1920,Tongans (OU09),http://ehrafworldcultures.yale.edu/collection?owc=OU09,-20,-174,-19.74,-175.07,Revised, +Ii13,xd879,Uveans,wall1257,Uveans (Ii13),Wallis Islanders,1830,,,-13,-176,-13.28,-176.17,Revised, +Ad20,xd88,Nyamwezi,nyam1276,Nyamwezi (Ad20),"Banyamwezi, Wanyamwezi",1920,,,-5,33,-5,33,Original, +Ii14,xd880,Upolu Samoans,samo1305,Upolu (Ii14),"Upolu, Western Samoans",1829,Samoans (OU08),http://ehrafworldcultures.yale.edu/collection?owc=OU08,-14,172,-13.94,-171.77,Revised, +Ii2,xd881,Tikopia,tiko1237,Tikopia (Ii2),,1930,Tikopia (OT11),http://ehrafworldcultures.yale.edu/collection?owc=OT11,-12,168,-12.29,168.83,Revised, +Ii3,xd882,Pukapukans,puka1242,Pukapukans (Ii3),Danger Islanders,1930,Pukapuka (OZ11),in process,-11,-166,-10.89,-165.84,Revised, +Ii4,xd883,Ellice,tuva1244,Ellice (Ii4),Tuvalu Islanders,1890,,,-8,178,-7.48,178.68,Revised, +Ii5,xd884,Ontong Java,onto1237,Ontong Java (Ii5),"Leuenuwa, Lord Howe's Islanders",1920,,,-5,160,-5.48,159.7,Revised, +Ii6,xd885,Tokelau,toke1240,Tokelau (Ii6),,1900,,,-9,-172,-9.2,-171.85,Revised, +Ii7,xd886,Kapingamarangi,kapi1249,Kapingamarang (Ii7),Kapingamarang,1910,,,1,155,1.09,154.8,Revised, +Ii8,xd887,Futunans,east2447,Futunans (Ii8),Horne Islanders,1840,,,-14,-178,-14.31,-178.11,Revised, +Ii9,xd888,Niueans,niue1239,Niueans (Ii9),,1840,,,-19,-169,-19.05,-169.86,Revised, +Ij1,xd889,Mangaians,raro1241,Mangaians (Ij1),,1820,,,-22,-158,-21.93,-157.91,Revised, +Ad21,xd89,Pimbwe,pimb1238,Pimbwe (Ad21),Bapimbwe,1930,,,-7,31,-7,31,Original, +Ij10,xd890,Tongarevans,penr1237,Tongarevans (Ij10),Penrhyn Islanders,1900,,,-9,-158,-9.02,-158.03,Revised, +Ij2,xd891,Māori,maor1246,Maori (Ij2),Maori,1820,Maori (OZ04),http://ehrafworldcultures.yale.edu/collection?owc=OZ04,-35,175,-38.41,176.31,Revised, +Ij3,xd892,Marquesans,nort2845,Marquesans (Ij3),,1900,Marquesas (OX06),http://ehrafworldcultures.yale.edu/collection?owc=OX06,-9,-140,-8.9,-140.08,Revised, +Ij4,xd893,Manihikians,raka1237,Manihikians (Ij4),,1850,,,-10,-160,-10.41,-160.98,Revised, +Ij5,xd894,Raroians,tuam1242,Raroians (Ij5),Rareians,1900,,,-16,-142,-15.94,-142.31,Revised, +Ij6,xd895,Hawaiians,hawa1245,Hawaiians (Ij6),,1800,Hawaiians (OV05),http://ehrafworldcultures.yale.edu/collection?owc=OV05,20,-156,19.89,-155.83,Revised, +Ij7,xd896,Mangarevans,mang1401,Mangarevans (Ij7),,1900,,,-20,-134,-23.12,-134.97,Revised, +Ij8,xd897,Tahitians,tahi1242,Tahitians (Ij8),Society Islanders,1900,,,-18,-150,-17.71,-149.54,Revised, +Ij9,xd898,Easter Islanders,rapa1244,Easter Island (Ij9),Easter Island,1860,Rapa nui (OY02),http://ehrafworldcultures.yale.edu/collection?owc=OY02,-27,-190,-27.12,-109.36,Revised, +Aa9,xd9,Hadza,hadz1240,Hatsa Kindiga (Aa9),"Hadzabe, Hatsa Kindiga, Hadza, Kindiga",1910,,,-3,35,-3,35,Original, +Ad22,xd90,Sukuma,suku1261,Sukuma (Ad22),"Basukuma, Wassukuma",1950,,,-3,34,-3,34,Original, +Ad23,xd91,Sangu,sang1330,Sangu (Ad23),Rori,1910,,,-8,34,-8,34,Original, +Ad24,xd92,Gogo,gogo1263,Gogo (Ad24),Wagogo,1910,,,-7,36,-7,36,Original, +Ad25,xd93,Rangi,lang1320,Rangi (Ad25),"Irangi, Langi, Warangi",1900,,,-5,36,-5,36,Original, +Ad26,xd94,Turu,nyat1246,Turu (Ad26),"Lima, Walimi, Waniaturu",1910,,,-5,34,-5,34,Original, +Ad27,xd95,Kwere,kwer1261,Kwere (Ad27),Wakwere,1880,,,-7,39,-7,39,Original, +Ad28,xd96,Zigula,zigu1242,Zigula (Ad28),"Seguha, Wazigua, Zegura",1880,,,-6,39,-5.84,38.79,Revised, +Ad29,xd97,Hadimu,pemb1239,Hadimu (Ad29),Wahadimu,1930,,,-6,40,-6.07,39.43,Revised, +Ad3,xd98,Chagga,moch1256,Chagga (Ad3),"Dschagga, Wachagga",1910,Chagga (FN04),http://ehrafworldcultures.yale.edu/collection?owc=FN04,-3,37,-3,37,Original, +Ad30,xd99,Digo,digo1243,Digo (Ad30),"Adigo, Wadigo",1890,,,-4,39,-4,39,Original, +Nd26,xd992,Wadatkuht,sout2967,Wadatkuht (Nd26),Honey Lake Paiute,1870,Northern Paiute (NR13),http://ehrafworldcultures.yale.edu/collection?owc=NR13,41,-120,41,-120,Original, +Nd39,xd995,Spring Valley Shoshoni,west2622,Spring Valley (Nd39),"Spring Valley, Snake Valley Shoshoni, Antelope Valley Shoshoni",1870,,,40,-115,40,-115,Original, diff --git a/raw/societies_mapping.csv b/raw/societies_mapping.csv new file mode 100644 index 0000000..59b2175 --- /dev/null +++ b/raw/societies_mapping.csv @@ -0,0 +1,1292 @@ +id,related +Aa1,Binford: !Kung [B72]; SCCS: Kung [SCCS2] +Ab1, +Ad31, +Ad32, +Ad33, +Na3,Binford: Copper Inuit [B381]; SCCS: Copper Eskimo [SCCS124] +Na22,Binford: Iglulik Inuit [B384] +Na1,Binford: Nabesna [B359] +Na10,Binford: Chugash [B297] +Na11, +Na12,Binford: Nunamiut Inuit [B377] +Ad34, +Na13,Binford: Baffin Island Inuit [B386] +Na14,Binford: Polar Inuit [B390] +Na15,Binford: Dogrib [B361] +Na16,Binford: Satudene-Bear Lake [B358] +Na17,Binford: Slave [B345]; SCCS: Slave [SCCS128] +Na19,Binford: Carrier [B349]; WNAI: Alkatcho Carrier [WNAI93]; WNAI: Lower Carrier [WNAI94] +Na2,Binford: Tareumiut Inuit [B389] +Na20,Binford: Kutchin [B356] +Na21,Binford: Caribou Inuit [B374] +Na23,Binford: Labrador Inuit [B372] +Ad35, +Na24,Binford: Angmaksalik [B388] +Na25,Binford: West Greenland [B385] +Na26,Binford: Tanaina [B362] +Na27,Binford: Tahltan [B347] +Na28,Binford: Sekani [B343] +Na29,Binford: Beaver [B344] +Na30,Binford: Chippewyan [B355] +Na31, +Na32,Binford: Montagnais [B342]; SCCS: Montagnais [SCCS125] +Na33,Binford: North Saulteaux [B332]; SCCS: Saulteaux [SCCS127] +Ad36, +Na34,Binford: Pekangekum Ojibwa [B334] +Na35,Binford: Nipigon Ojibwa [B337] +Na36, +Na37,Binford: Rainy River Ojibwa [B331] +Na38,Binford: Katikitegon [B328] +Na39,Binford: Kitchibaun Ojibwa [B327] +Na4,Binford: Kaska [B346]; SCCS: Kaska [SCCS129] +Na40, +Na41,Binford: Micmac [B329]; SCCS: Micmac [SCCS126] +Na42, +Ad37, +Na43,Binford: Netsilik Inuit [B387] +Na44, +Na45,Binford: Mistassini Cree [B338] +Na5,Binford: Naskapi [B365] +Na6,Binford: Nunivak [B299] +Na7,Binford: Attawapiskat Cree [B353] +Na8,Binford: Ingalik [B357]; SCCS: Ingalik [SCCS122] +Na9,Binford: Aleut [B298]; SCCS: Aleut [SCCS123] +Nb1,Binford: Haida [B290]; SCCS: Haida [SCCS131]; WNAI: North Masset Haida [WNAI3] +Nb10,Binford: Alkatcho [B336] +Ad38, +Nb11,Binford: Nootka [B273]; WNAI: Clayoquot Nootka [WNAI12] +Nb12,WNAI: Klahuse Salish [WNAI14] +Nb13,Binford: Squamish [B268]; WNAI: Squamish Salish [WNAI16] +Nb14,Binford: Comox [B282] +Nb15,Binford: Lummi [B277]; WNAI: Lummi Salish [WNAI21] +Nb16,Binford: Clallam [B285]; WNAI: Klallam Salish [WNAI22] +Nb17,Binford: Puyallup [B270]; WNAI: Puyallup Salish [WNAI25] +Nb18,Binford: Quileute [B284]; WNAI: Quileute Chimakuan [WNAI26] +Nb19,Binford: Chinook [B274]; WNAI: Lower Chinook [WNAI27] +Nb2,Binford: Twana [B271]; SCCS: Twana [SCCS133]; WNAI: Twana Salish [WNAI23] +Ad39, +Nb20,Binford: Tillamook [B281]; WNAI: Tillamook Salish [WNAI28] +Nb21,Binford: Coos [B275]; WNAI: Coos [WNAI31] +Nb22,Binford: Tlingit [B292]; WNAI: South Tlingit [WNAI2] +Nb23,Binford: Bella-Bella [B283]; WNAI: Bella Bella Kwakiutl [WNAI9] +Nb24,Binford: Makah [B286]; WNAI: Makah Nootkan [WNAI13] +Nb25,Binford: Quinault [B278]; WNAI: Quinault Salish [WNAI24] +Nb26,Binford: Cowichan [B280]; WNAI: Cowichan Salish [WNAI17] +Nb27,Binford: Stalo [B279]; WNAI: Upper Stalo Salish [WNAI19] +Nb28,Binford: Alsea [B269]; WNAI: Alsea [WNAI29] +Nb29,WNAI: Siuslaw [WNAI30] +Ad4,SCCS: Kikuyu [SCCS11] +Nb3,Binford: Kwakiutl [B288]; WNAI: Fort Rupert Kwakiutl [WNAI10] +Nb30,Binford: Tekelma [B176] +Nb31,Binford: Tututni [B181]; WNAI: Tututni Athapaskan [WNAI32] +Nb32,Binford: Shasta [B179]; WNAI: East Shasta [WNAI44]; WNAI: West Shasta [WNAI45] +Nb33,Binford: Chimariko [B162]; WNAI: Chimariko [WNAI46] +Nb34,Binford: Karok [B182]; WNAI: Karok [WNAI37] +Nb35,Binford: Hupa [B180]; WNAI: Hupa Athapaskan [WNAI38] +Nb36,Binford: Wiyot [B184]; WNAI: Wiyot [WNAI39] +Nb37,Binford: Lassik [B167] +Nb38,Binford: Mattole [B169]; WNAI: Mattole Athapaskan [WNAI41] +Ab10, +Ad40, +Nb39,Binford: Sinkyone [B166]; WNAI: Sinkyone Athapaskan [WNAI40] +Nb4,Binford: Yurok [B186]; SCCS: Yurok [SCCS134]; WNAI: Yurok [WNAI36] +Nb5,Binford: Eyak [B295]; SCCS: Eyak [SCCS130] +Nb6,Binford: Tolowa [B178]; WNAI: Tolowa Athapaskan [WNAI35] +Nb7,Binford: Tsimshim [B289]; WNAI: Tsimshian [WNAI5] +Nb8,Binford: Haisla [B287]; WNAI: Haisla Kwakiutl [WNAI7] +Nb9,Binford: Bella-Coola [B291]; SCCS: Bellacoola [SCCS132]; WNAI: Bella Coola Salish [WNAI11] +Nc1,Binford: Nomlaki [B153]; WNAI: Nomlaki Wintun [WNAI50] +Nc10,Binford: Achomawi [B187]; WNAI: East Achomawi [WNAI51]; WNAI: West Achomawi [WNAI52] +Nc11,Binford: Northern Yana [B174]; WNAI: Yana [WNAI62] +Ad41, +Nc12,Binford: Mountain Maidu [B185]; WNAI: Mountain Maidu [WNAI56] +Nc13,Binford: Nisenan [B163]; WNAI: Foothill Nisenan [WNAI57]; WNAI: Mountain Nisenan [WNAI58]; WNAI: Southern Nisenan [WNAI59] +Nc14,Binford: Wintu [B160]; WNAI: Trinity River Wintu [WNAI47]; WNAI: McCloud River Wintu [WNAI48]; WNAI: Sacramento River Wintu [WNAI49] +Nc15,Binford: Coast Yuki [B177]; WNAI: Coast Yuki [WNAI60] +Nc16, +Nc17,Binford: Nothern Pomo [B173]; WNAI: Northern Pomo [WNAI63] +Nc18,Binford: Eastern Pomo [B158]; Binford: Clear Lake Pomo [B159]; SCCS: Pomo (Eastern) [SCCS135]; WNAI: Eastern Pomo [WNAI64] +Nc19,WNAI: Southern Pomo [WNAI65] +Nc2,Binford: Tubatulabal [B152]; WNAI: Tubatulabal [WNAI78] +Nc20,Binford: Wappo [B172]; WNAI: Wappo Yukian [WNAI66] +Ad42, +Nc21,Binford: Lake Miwok [B170] +Nc22,Binford: Patwin [B155]; WNAI: Patwin Wintun [WNAI67] +Nc23,Binford: Monache [B157]; WNAI: Kings River Mono (Uto-Aztecan) [WNAI72] +Nc24,Binford: Lake Yokuts [B148]; SCCS: Yokuts (Lake) [SCCS136]; WNAI: Lake Yokuts [WNAI76]; WNAI: Yauelmani Yokuts [WNAI77] +Nc25,Binford: Wukchumi [B151]; WNAI: Kaweah Yokuts [WNAI75] +Nc26,Binford: Salinan [B164]; WNAI: Salinan [WNAI80] +Nc27,Binford: Kawaiisu Shoshoni [B199]; WNAI: Kawaiisu [WNAI79] +Nc28,Binford: Chumash [B161] +Nc29,Binford: Gabrieleno [B156]; WNAI: Gabrielino [WNAI81] +Nc3,Binford: Yokuts (northern foothill) [B154]; WNAI: Chuckchansi Yokuts [WNAI73] +Ad43, +Nc30,Binford: Serrano [B149]; WNAI: Serrano [WNAI84] +Nc31,Binford: Cahuilla [B144]; WNAI: Desert Cahuilla [WNAI85] +Nc32,Binford: Cupeno [B145]; WNAI: Cupeno [WNAI83] +Nc33,Binford: Luiseno [B150]; WNAI: Luiseno [WNAI82] +Nc34,Binford: Kiliwa [B146]; WNAI: Kaliwa (Hokan) [WNAI91] +Nc4,Binford: Atsugewi [B183]; WNAI: Atsugewei [WNAI53] +Nc5,Binford: Sierra Miwok [B175]; WNAI: Central Miwok [WNAI69] +Nc6,Binford: Diegueno [B147]; WNAI: Western Diegueno [WNAI89]; WNAI: Desert Diegueno [WNAI90] +Nc7,Binford: Yuki [B171]; WNAI: Yuki [WNAI61] +Nc8,Binford: Klamath [B189]; SCCS: Klamath [SCCS138]; WNAI: Klamath [WNAI112] +Ad44, +Nc9,Binford: Modoc [B188]; WNAI: Modoc [WNAI113] +Nd1,Binford: Tenino [B315]; WNAI: Tenino [WNAI111] +Nd10,Binford: Thompson [B325]; WNAI: Upper Thompson [WNAI98] +Nd11,Binford: Shuswap [B333]; WNAI: Shuswap [WNAI96] +Nd12,Binford: Flathead [B330]; WNAI: Flathead [WNAI105] +Nd13,Binford: Kalispel [B326]; WNAI: Kalispel [WNAI104] +Nd14,Binford: Coeur d'Alene [B320]; WNAI: Coeur d’Alene [WNAI103] +Nd15,Binford: Sinkaietk [B321] +Nd16,Binford: Wenatchi [B317]; WNAI: Wenatchi [WNAI102] +Nd17,Binford: Yakima [B318] +Ad45, +Nd18,Binford: Wishram [B319]; WNAI: Wishram [WNAI110] +Nd19,Binford: Umatilla [B316]; WNAI: Umatilla [WNAI108] +Nd2,Binford: Southern Ute (Wimonantci Ute) [B222]; WNAI: Wimonuch Ute (Shoshonean) [WNAI131] +Nd20,Binford: Nez Perce [B324]; WNAI: Nez Perce [WNAI107] +Nd21, +Nd22,Binford: Wadadokado Paiute [B231]; SCCS: Paiute (Northern) [SCCS137]; WNAI: Wada-Dokado Northern Paiute [WNAI114] +Nd23, +Nd24,Binford: Kidutokado (Surprise Valley Paiute) [B226]; WNAI: Kidu-Dokado Northern Paiute [WNAI115] +Nd25, +Ad46, +Nd27,Binford: Kuyuidokado (Pyramid Lake Paiute) [B208]; WNAI: Kuyui-Dokado Northern Paiute [WNAI116] +Nd28,Binford: Cattail Paiute [B210] +Nd29,Binford: Deep Springs Paiute [B206]; Binford: Fish Lake Paiute [B211] +Nd3,SCCS: Havasupai [SCCS150]; WNAI: Havasupai [WNAI136] +Nd30,Binford: Owens Valley Paiute (Eastern Mono) [B202]; WNAI: Owens Valley Northern Paiute [WNAI117] +Nd31,Binford: Koso Mountain Shoshoni [B197] +Nd32,Binford: Death Valley Shoshoni [B192]; Binford: Panamint Shoshoni [B195]; Binford: Saline Valley Shoshoni [B200]; WNAI: Panamint Shoshone [WNAI118] +Nd33, +Nd34, +Nd35,Binford: Reese River Shoshoni [B218]; WNAI: Reese River Shoshone [WNAI120] +Ad47, +Nd36,Binford: Little Smokey Shoshoni [B233] +Nd37,Binford: Railroad Valley Shoshoni [B217] +Nd38, +Nd4,Binford: Sanpoil [B323]; WNAI: Sanpoil [WNAI100] +Nd40,Binford: Grouse Creek Shoshoni [B221] +Nd41,Binford: Wadaduica (Ruby Valley Shoshoni) [B228]; WNAI: Ruby Valley Shoshone [WNAI122] +Nd42, +Nd43,Binford: White Knife Shoshoni [B216]; WNAI: Battle Mountain Shoshone [WNAI123] +Nd44, +Ad48, +Nd45,Binford: Bohogue (Northern Shoshoni) [B229]; WNAI: Bohogue Shoshone [WNAI125] +Nd47,Binford: Sheep Eater Shoshoni [B232] +Nd46,Binford: Salmon Eater Shoshoni [B207]; WNAI: Agaiduka Shoshone [WNAI126] +Nd48,Binford: Gosiute Shoshoni [B214]; WNAI: Gosiute Shoshone [WNAI124] +Nd49,Binford: Antarianunts Southern Paiute [B201] +Nd5,Binford: Hukundika Shoshoni [B213]; WNAI: Hukundika Shoshone [WNAI127] +Nd50, +Nd51, +Nd52,WNAI: Shivwits Southern Paiute [WNAI132] +Nd53,Binford: Kaibab Southern Paiute [B204]; WNAI: Kaibab Southern Paiute [WNAI133] +Nd55,Binford: Kaibab Southern Paiute [B204]; WNAI: Kaibab Southern Paiute [WNAI133] +Ad49, +Nd54,WNAI: Chemehuevi Southern Paiute [WNAI135] +Nd56,WNAI: San Juan Southern Paiute [WNAI134] +Nd57, +Nd58,Binford: Uintah Ute [B230]; WNAI: Uintah Ute [WNAI129] +Nd59, +Nd6,Binford: Washo [B225]; WNAI: Washo [WNAI119] +Nd60, +Nd61, +Nd62,Binford: Uncompahgre Ute [B234]; WNAI: Uncompaghre Ute [WNAI130] +Ab11, +Ad5, +Nd63,Binford: Bannock [B252] +Nd64,Binford: Wind River Shoshoni [B227]; WNAI: Wind River Shoshone [WNAI128] +Nd65,Binford: Walapai [B198]; WNAI: Walapai [WNAI137] +Nd66,Binford: Yavapai [B196]; WNAI: Northeast Yavapai [WNAI138]; WNAI: Southeast Yavapai [WNAI139] +Nd67, +Nd7,Binford: Kutenai [B250]; SCCS: Kutenai [SCCS139]; WNAI: Kutenai [WNAI106] +Nd8,Binford: Chilcotin [B348]; WNAI: Chilcotin [WNAI95] +Nd9,Binford: Lillooet [B276]; WNAI: Upper Lillooet [WNAI97] +Ne1,Binford: Gros-Ventre [B253]; SCCS: Gros Ventre [SCCS140] +Ne10, +Ad50, +Ne11,Binford: Assiniboine [B257] +Ne12,Binford: Blackfoot [B256] +Ne13,Binford: Blood [B259] +Ne14,Binford: Bungi (Plains Ojibwa) [B254] +Ne15,SCCS: Hidatsa [SCCS141] +Ne16,Binford: Karankawa [B193] +Ne17,Binford: Kiowa [B243] +Ne18,Binford: Piegan [B255] +Ne19,Binford: Plains Cree [B258] +Ne2,Binford: Kiowa Apache [B244] +Ad51, +Ne20, +Ne21,Binford: Coahuilenos [B194] +Ne3,Binford: Comanche [B241]; SCCS: Comanche [SCCS147] +Ne4,Binford: Crow [B248] +Ne5,Binford: Cheyenne [B245] +Ne6, +Ne7,Binford: Sarsi [B260] +Ne8,Binford: Teton Sioux (Lakota) [B249] +Ne9,Binford: Arapaho [B246] +Ad6,SCCS: Nyakyusa [SCCS8] +Nf10, +Nf11, +Nf12, +Nf13, +Nf14, +Nf15, +Nf2, +Nf3,SCCS: Omaha [SCCS143] +Nf4, +Nf5, +Ad7,SCCS: Ganda [SCCS12] +Nf6,SCCS: Pawnee [SCCS142] +Nf7, +Nf8, +Nf9, +Ng1,SCCS: Huron [SCCS144] +Ng10, +Ng11, +Ng12, +Ng13, +Ng14, +Ad8, +Ng15, +Ng2, +Ng3,SCCS: Creek [SCCS145] +Ng4, +Ng5, +Ng6, +Ng7,SCCS: Natchez [SCCS146] +Ng8, +Ng9, +Nh1,Binford: Chiricahua Apache [B242]; SCCS: Chiricahua [SCCS148]; WNAI: Warm Springs Chiricahua Apache [WNAI152]; WNAI: Huachuca Chiricahua Apache [WNAI153] +Ad9, +Nh10,WNAI: Isleta [WNAI171] +Nh11,WNAI: San Ildefonso Tewa [WNAI167] +Nh12,WNAI: Santa Ana Keres [WNAI163] +Nh13,WNAI: Acoma [WNAI161] +Nh14, +Nh15,WNAI: Mescalero Apache [WNAI154] +Nh16,WNAI: Jicarilla Apache [WNAI156] +Nh17,WNAI: North Tonto Western Apache [WNAI147]; WNAI: South Tonto Western Apache [WNAI148]; WNAI: San Carlos Western Apache [WNAI149]; WNAI: Cibecue Western Apache [WNAI150]; WNAI: White Mountain Western Apache [WNAI151] +Nh18,WNAI: Hopi [WNAI159] +Nh19,WNAI: Cocopa [WNAI143] +Ae1, +Nh2, +Nh20,WNAI: Kamia [WNAI142] +Nh21,WNAI: Mohave [WNAI140] +Nh22,WNAI: Yuma [WNAI141] +Nh23, +Nh24,Binford: Lipan Apache [B240]; WNAI: Lipan Apache [WNAI155] +Nh25,WNAI: Sia Keres [WNAI162] +Nh26,WNAI: Santa Clara Tewa [WNAI168] +Nh27,WNAI: Santo Domingo Keres [WNAI164] +Nh3,WNAI: Western Navaho [WNAI157]; WNAI: Eastern Navaho [WNAI158] +Ae10, +Nh4,SCCS: Zuni [SCCS149]; WNAI: Zuni [WNAI160] +Nh5,WNAI: Maricopa [WNAI144] +Nh6,WNAI: Taos [WNAI170] +Nh7,WNAI: Cochiti [WNAI165] +Nh8,WNAI: Jemez [WNAI172] +Nh9, +Ni1, +Ni2,SCCS: Papago [SCCS151]; WNAI: Papago [WNAI146] +Ni3,SCCS: Huichol [SCCS152] +Ni4,Binford: Seri [B143] +Ae11, +Ni5,Binford: Chichimec [B191] +Ni6,WNAI: Pima [WNAI145] +Ni7, +Ni8, +Ni9, +Nj1, +Nj10, +Nj11, +Nj12, +Nj13, +Ab12, +Ae12, +Nj14, +Nj2,SCCS: Aztec [SCCS153] +Nj3,SCCS: Popoluca [SCCS154] +Nj4, +Nj5, +Nj6, +Nj7, +Nj8, +Nj9, +Sa1,SCCS: Cuna (Tule) [SCCS158] +Ae13, +Sa10, +Sa11, +Sa12, +Sa13,SCCS: Quiche [SCCS155] +Sa14, +Sa15, +Sa16, +Sa17, +Sa2, +Sa3, +Ae14, +Sa4, +Sa5,SCCS: Bribri [SCCS157] +Sa6, +Sa7, +Sa8, +Sa9,SCCS: Miskito [SCCS156] +Sb1,SCCS: Callinago [SCCS161] +Sb2, +Sb3, +Sb4, +Ae15, +Sb5,Binford: Paraujano [B35] +Sb6,SCCS: Goajiro [SCCS159] +Sb7, +Sb8, +Sb9,SCCS: Haitians [SCCS160] +Sc1,SCCS: Warrau [SCCS162] +Sc10, +Sc11, +Sc12, +Sc13, +Ae16, +Sc14, +Sc15, +Sc16, +Sc17, +Sc18, +Sc2,Binford: Yaruro-Pume [B38] +Sc3,SCCS: Barama Carib [SCCS164] +Sc4,Binford: Guahibo [B39] +Sc5, +Sc6,SCCS: Saramacca [SCCS165] +Ae17, +Sc7, +Sc8, +Sc9, +Sd1,SCCS: Mundurucu [SCCS166] +Sd2, +Sd3, +Sd4, +Sd5, +Sd6,Binford: Shiriana [B36] +Sd7, +Ae18, +Sd8, +Sd9,SCCS: Yanomamo [SCCS163] +Se1,Binford: Siriono [B43]; SCCS: Siriono [SCCS173] +Se10, +Se11, +Se12, +Se2, +Se3,SCCS: Jivaro [SCCS169] +Se4, +Se5,SCCS: Cubeo [SCCS167] +Ae19, +Se6, +Se7, +Se8,SCCS: Amahuaca [SCCS170] +Se9, +Sf1,SCCS: Inca [SCCS171] +Sf2,SCCS: Aymara [SCCS172] +Sf3,SCCS: Cayapa [SCCS168] +Sf4, +Sf5, +Sf6, +Ae2, +Sf7, +Sf8, +Sf9, +Sg1,Binford: Yaghan [B55]; SCCS: Yahgan [SCCS186] +Sg2,SCCS: Mapuche [SCCS184] +Sg3,Binford: Ona [B54] +Sg4,Binford: Tehuelche [B51]; SCCS: Tehuelche [SCCS185] +Sg5,Binford: Alacaluf [B53] +Sh1, +Sh2, +Ae20, +Sh3,SCCS: Abipon [SCCS183] +Sh4, +Sh5, +Sh6, +Sh7, +Sh8, +Sh9,SCCS: Lengua [SCCS182] +Si1,Binford: Bororo [B41] +Si10, +Si2,SCCS: Trumai [SCCS175] +Ab13, +Ae21, +Si3, +Si4,Binford: Nambikwara [B45]; SCCS: Nambicuara [SCCS174] +Si5, +Si6,Binford: Guato [B42] +Si7, +Si8, +Si9, +Sj1, +Sj10,SCCS: Cayua [SCCS181] +Sj11,SCCS: Shavante [SCCS179] +Ae22, +Sj2, +Sj3,Binford: Aweikomo [B50]; SCCS: Aweikoma [SCCS180] +Sj4,SCCS: Timbira [SCCS176] +Sj5,Binford: Botocudo [B48]; SCCS: Botocudo [SCCS178] +Sj6, +Sj7, +Sj8,SCCS: Tupinamba [SCCS177] +Sj9, +Ae23, +Ae24, +Ae25, +Ae26, +Ae27, +Ae28, +Ae29, +Ae3, +Ab14, +Ae30, +Ae31, +Ae32, +Ae33, +Ae34, +Ae35, +Ae36, +Ae37, +Ae38, +Ae39, +Ab15, +Ae4,SCCS: Nkundo Mongo [SCCS14] +Ae40, +Ae41, +Ae42, +Ae43, +Ae44, +Ae45, +Ae46, +Ae47, +Ae48, +Ab16, +Ae49, +Ae5, +Ae50, +Ae51,SCCS: Banen [SCCS15] +Ae52, +Ae53, +Ae54, +Ae55, +Ae56, +Ae57, +Ab17, +Ae58, +Ae59, +Ae6, +Ae7, +Ae8, +Ae9, +Af1,SCCS: Fon [SCCS18] +Af10,SCCS: Igbo [SCCS17] +Af11, +Af12, +Ab18, +Af13, +Af14, +Af15, +Af16, +Af17, +Af18, +Af19, +Af2, +Af20, +Af21, +Aa2,Binford: Dorobo [B70] +Ab19, +Af22, +Af23, +Af24, +Af25, +Af26, +Af27, +Af28, +Af29, +Af3,SCCS: Ashanti [SCCS19] +Af30, +Ab2, +Af31, +Af32, +Af33, +Af34, +Af35, +Af36, +Af37, +Af38, +Af39, +Af4, +Ab20, +Af40, +Af41, +Af42, +Af43, +Af44, +Af45, +Af46, +Af47, +Af48, +Af49, +Ab21a, +Af5,SCCS: Mende [SCCS20] +Af50, +Af51, +Af52, +Af53, +Af54, +Af55, +Af56, +Af57, +Af58, +Ab21b, +Af6, +Af7, +Af8, +Af9, +Ag1,SCCS: Bambara [SCCS22] +Ag10, +Ag11, +Ag12, +Ag13, +Ag14, +Ab22, +Ag15, +Ag16, +Ag17, +Ag18, +Ag19, +Ag2, +Ag20, +Ag21, +Ag22, +Ag23, +Ab3,SCCS: Lozi [SCCS4] +Ag24, +Ag25, +Ag26, +Ag27, +Ag28, +Ag29, +Ag3, +Ag30, +Ag31, +Ag32, +Ab4,SCCS: Thonga [SCCS3] +Ag33, +Ag34, +Ag35, +Ag36, +Ag37, +Ag38, +Ag39, +Ag4,SCCS: Tallensi [SCCS23] +Ag40, +Ag41, +Ab5,SCCS: Mbundu [SCCS5] +Ag42, +Ag43, +Ag44, +Ag45, +Ag46, +Ag47, +Ag48, +Ag49, +Ag5, +Ag50, +Ab6, +Ag51, +Ag52, +Ag53, +Ag54, +Ag6, +Ag7, +Ag8, +Ag9, +Ah1, +Ah10, +Aa3,SCCS: Nama [SCCS1] +Ab7, +Ah11, +Ah12, +Ah13, +Ah14, +Ah15, +Ah16, +Ah17, +Ah18, +Ah19, +Ah2, +Ab8, +Ah20, +Ah21, +Ah22, +Ah23, +Ah24, +Ah25, +Ah26, +Ah27, +Ah28, +Ah29, +Ab9, +Ah3,SCCS: Tiv [SCCS16] +Ah30, +Ah31, +Ah32, +Ah33, +Ah34, +Ah35, +Ah36, +Ah37, +Ah38, +Ac1, +Ah39, +Ah4, +Ah5, +Ah6, +Ah7, +Ah8, +Ah9, +Ai1, +Ai10,SCCS: Otoro [SCCS30] +Ai11, +Ac10, +Ai12, +Ai13, +Ai14, +Ai15, +Ai16, +Ai17, +Ai18, +Ai19, +Ai2, +Ai20, +Ac11, +Ai21, +Ai22, +Ai23, +Ai24, +Ai25, +Ai26, +Ai27, +Ai28, +Ai29, +Ai3,SCCS: Azande [SCCS28] +Ac12, +Ai30, +Ai31, +Ai32, +Ai33, +Ai34, +Ai35, +Ai36, +Ai37, +Ai38, +Ai39, +Ac13, +Ai4, +Ai40, +Ai41, +Ai42, +Ai43, +Ai44, +Ai45, +Ai46, +Ai47,SCCS: Mao [SCCS32] +Ai5, +Ac14, +Ai6,SCCS: Shilluk [SCCS31] +Ai7, +Ai8, +Ai9,SCCS: Masa [SCCS27] +Aj1, +Aj10, +Aj11, +Aj12, +Aj13, +Aj14, +Ac15, +Aj15, +Aj16, +Aj17, +Aj18, +Aj19, +Aj2,SCCS: Masai [SCCS34] +Aj20, +Aj21, +Aj22, +Aj23, +Aa4, +Ac16, +Aj24, +Aj25, +Aj26, +Aj27, +Aj28, +Aj29, +Aj3, +Aj30, +Aj31, +Aj4, +Ac17,SCCS: Suku [SCCS6] +Aj5, +Aj6, +Aj7, +Aj8, +Aj9, +Ca1,SCCS: Konso [SCCS35] +Ca10, +Ca11, +Ca12, +Ca13, +Ac18, +Ca14, +Ca15, +Ca16, +Ca17, +Ca18, +Ca19, +Ca2,SCCS: Somali [SCCS36] +Ca20, +Ca21, +Ca22, +Ac19, +Ca23, +Ca24, +Ca25, +Ca26, +Ca27, +Ca28, +Ca29, +Ca3, +Ca30,SCCS: Kafa [SCCS33] +Ca31, +Ac2, +Ca32, +Ca33, +Ca34, +Ca35, +Ca36, +Ca37,SCCS: Bogo [SCCS38] +Ca38, +Ca39, +Ca4, +Ca40, +Ac20, +Ca41, +Ca42, +Ca43, +Ca5, +Ca6, +Ca7,SCCS: Amhara [SCCS37] +Ca8, +Ca9, +Cb1, +Cb10, +Ac21, +Cb11, +Cb12, +Cb13, +Cb14, +Cb15, +Cb16, +Cb17,SCCS: Fur [SCCS29] +Cb18, +Cb19, +Cb2,SCCS: Wolof [SCCS21] +Ac22, +Cb20, +Cb21, +Cb22, +Cb23, +Cb24,SCCS: Pastoral Fulani [SCCS25] +Cb25, +Cb26,SCCS: Hausa [SCCS26] +Cb27, +Cb28, +Cb29, +Ac23, +Cb3,SCCS: Songhai [SCCS24] +Cb4, +Cb5, +Cb6, +Cb7, +Cb8, +Cb9, +Cc1, +Cc10, +Cc11, +Ac24, +Cc12, +Cc13, +Cc14, +Cc15, +Cc16, +Cc17, +Cc18, +Cc19, +Cc2,SCCS: Teda [SCCS40] +Cc20, +Aa5,Binford: Mbuti [B65]; SCCS: Mbuti [SCCS13] +Ac25, +Cc3, +Cc4, +Cc5, +Cc6, +Cc7, +Cc8, +Cc9,SCCS: Tuareg [SCCS41] +Cd1,SCCS: Kenuzi Nubians [SCCS39] +Cd10, +Cd11, +Ac26, +Cd12, +Cd13, +Cd14, +Cd15, +Cd16, +Cd17, +Cd18, +Cd19, +Cd2,SCCS: Egyptians [SCCS43] +Cd20, +Ac27, +Cd21, +Cd3,SCCS: Riffians [SCCS42] +Cd4, +Cd5, +Cd6, +Cd7, +Cd8, +Cd9, +Ce1,SCCS: Gheg Albanians [SCCS48] +Ce2, +Ac28, +Ce3,SCCS: Romans [SCCS49] +Ce4, +Ce5, +Ce6, +Ce7, +Ce8,SCCS: Basques [SCCS50] +Cf1, +Cf2, +Cf3, +Cf4, +Ac29, +Cf5, +Cg1, +Cg2, +Cg3,SCCS: Irish [SCCS51] +Cg4,SCCS: Lapps [SCCS52] +Cg5, +Ch1, +Ch10, +Ch11,SCCS: Russians [SCCS54] +ch12, +Ac3,SCCS: Bemba [SCCS7] +ch13, +ch14, +ch15, +ch16, +ch17, +ch18, +ch19, +Ch2, +ch20, +ch21, +Ac30, +ch22, +ch23, +ch24, +ch25, +ch26, +ch27, +ch28, +Ch3, +Ch4, +Ch5, +Ac31, +Ch6, +Ch7, +Ch8, +Ch9, +Ci1, +Ci10,SCCS: Armenians [SCCS56] +Ci11,SCCS: Kurd [SCCS57] +Ci12,SCCS: Abkhaz [SCCS55] +Ci2, +Ci3, +Ac32, +Ci4, +Ci5,SCCS: Turks [SCCS47] +Ci6, +Ci7, +Ci8, +Ci9, +Cj1, +Cj10, +Cj2,SCCS: Rwala Bedouin [SCCS46] +Cj3,SCCS: Hebrews [SCCS44] +Ac33, +Cj4,SCCS: Babylonians [SCCS45] +Cj5, +Cj6, +Cj7, +Cj8, +Cj9, +Ea1, +Ea10, +Ea11, +Ea12, +Aa6, +Ac34, +Ea13,SCCS: Punjabi (West) [SCCS59] +Ea2, +Ea3, +Ea4, +Ea5, +Ea6,SCCS: Basseri [SCCS58] +Ea7, +Ea8, +Ea9, +Eb1,SCCS: Kazak [SCCS65] +Ac35, +Eb2, +Eb3,SCCS: Khalka Mongols [SCCS66] +Eb4, +Eb5, +Eb6, +Eb7, +Eb8, +Ec1,Binford: Gilyak [B25]; SCCS: Gilyak [SCCS119] +Ec10, +Ec11, +Ac36, +ec12,Binford: Nganasan [B27] +ec13, +ec14,Binford: Siberian Eskimo [B28] +ec15, +ec16, +ec17, +ec18, +ec19, +Ec2, +ec20, +Ac37, +ec21, +Ec3,SCCS: Chukchee [SCCS121] +Ec4,SCCS: Yurak Samoyed [SCCS53] +Ec5, +Ec6,Binford: Yukaghir [B26]; SCCS: Yukaghir [SCCS120] +Ec7,Binford: Ainu [B22]; SCCS: Ainu [SCCS118] +Ec8,Binford: Ket [B24] +Ec9, +Ed1,SCCS: Koreans [SCCS116] +Ed10, +Ac38, +Ed13, +Ed14, +Ed15a, +Ed15b,SCCS: Chinese [SCCS114] +Ed16, +Ed2,SCCS: Lolo [SCCS67] +Ed3,SCCS: Manchu [SCCS115] +Ed4, +Ed5,SCCS: Japanese [SCCS117] +Ed6, +Ac39, +Ed7, +Ed8, +Ed9, +Ee1, +Ee2,SCCS: Burusho [SCCS64] +Ee3,SCCS: Lepcha [SCCS68] +Ee4, +Ee5, +Ee6, +Ee7, +Ac4, +Ee8, +Ef1,SCCS: Santal [SCCS62] +Ef10, +Ef11,SCCS: Uttar Pradesh [SCCS63] +Ef2, +Ef3, +Ef4, +Ef5, +Ef6, +Ef7, +Ac40, +Ef8, +Ef9, +Eg1,Binford: Chenchu [B15] +Eg10, +Eg11, +Eg12, +Eg13, +Eg14, +Eg2, +Eg3,SCCS: Gond [SCCS60] +Ac41, +Eg4,SCCS: Toda [SCCS61] +Eg5, +Eg6, +Eg7, +Eg8, +Eg9, +Eh1,Binford: Big Andaman Island [B8]; SCCS: Andamanese [SCCS79] +Eh10, +Eh2, +Eh3,SCCS: Tanala [SCCS81] +Ac42, +Eh4,Binford: Vedda [B10]; SCCS: Vedda [SCCS80] +Eh5,SCCS: Nicobarese [SCCS78] +Eh6, +Eh7, +Eh8, +Eh9, +Ei1,SCCS: Garo [SCCS69] +Ei10, +Ei11, +Ei12, +Aa7,Binford: Nharo [B73] +Ac43, +Ei13, +Ei14, +Ei15, +Ei16, +Ei17, +Ei18, +Ei19, +Ei2, +Ei20, +Ei3,SCCS: Burmese [SCCS71] +Ac5, +Ei4,SCCS: Lakher [SCCS70] +Ei5, +Ei6, +Ei7, +Ei8, +Ei9, +Ej1,SCCS: Lamet [SCCS72] +Ej10,SCCS: Rhade [SCCS74] +Ej11, +Ej12, +Ac6, +Ej13, +Ej14, +Ej15,SCCS: Khmer [SCCS75] +Ej16,SCCS: Negri Sembilan [SCCS82] +Ej2, +Ej3,Binford: Semang [B9]; SCCS: Semang [SCCS77] +Ej4,SCCS: Vietnamese [SCCS73] +Ej5, +Ej6, +Ej7, +Ac7, +Ej8, +Ej9,SCCS: Siamese [SCCS76] +Ia1,SCCS: Atayal [SCCS113] +Ia10, +Ia11, +Ia12, +Ia13,SCCS: Badjau [SCCS86] +Ia14, +Ia15, +Ia16, +Ac8, +Ia17, +Ia18, +Ia2, +Ia3,SCCS: Ifugao [SCCS112] +Ia4, +Ia5, +Ia6, +Ia7, +Ia8, +Ia9, +Ac9, +Ib1,SCCS: Iban [SCCS85] +Ib2,SCCS: Javanese [SCCS83] +Ib3,SCCS: Balinese [SCCS84] +Ib4, +Ib5, +Ib6, +Ib7, +Ib8,Binford: Kubu [B3] +Ib9,Binford: Punan [B1] +Ic1, +Ad1, +Ic10,SCCS: Tobelorese [SCCS88] +Ic11, +Ic12, +Ic13, +Ic2,SCCS: Alorese [SCCS89] +Ic3, +Ic4, +Ic5,SCCS: Toradja [SCCS87] +Ic6, +Ic7, +Ad10, +Ic8, +Ic9, +Id1,Binford: Northern Arenda [B124]; SCCS: Aranda [SCCS91]; CHIRILA: Eastern and Central Arrernte [CHIRILA1048] +Id10,Binford: Walbiri [B109]; CHIRILA: Warlpiri [CHIRILA192] +Id11,Binford: Gidjingali [B87]; CHIRILA: Burarra [CHIRILA1143] +Id12,Binford: Yir-yoront [B94]; CHIRILA: Yir-Yoront [CHIRILA27] +Id13,Binford: Groote Eylandt [B97]; CHIRILA: Anindilyakwa [CHIRILA1229] +Id2,Binford: Murngin [B88]; CHIRILA: Dhuwal [CHIRILA1093] +Id3,Binford: Tiwi [B95]; SCCS: Tiwi [SCCS90]; CHIRILA: Tiwi [CHIRILA300] +Id4,Binford: Dieri [B121]; CHIRILA: Diyari [CHIRILA1088] +Ad11, +Id5,Binford: Kariera [B106]; CHIRILA: Kariyarra [CHIRILA855] +Id6,Binford: Wikmunkan [B90]; CHIRILA: Wik-Mungkan [CHIRILA138] +Id7,CHIRILA: Murrinh-patha [CHIRILA608] +Id8,Binford: Tasmanians (western) [B137] +Id9,Binford: Wongaibon [B130]; CHIRILA: Ngiyambaa [CHIRILA520] +Ie1,SCCS: Kapauku [SCCS94] +Ie10, +Ie11, +Ie12,SCCS: Kwoma [SCCS95] +Ie13, +Ad12, +Ie14, +Ie15, +Ie16, +Ie17, +Ie18,SCCS: Kimam [SCCS93] +Ie19, +Ie2, +Ie20, +Ie21, +Ie22, +Aa8,Binford: /Xam [B79] +Ad13, +Ie23, +Ie24, +Ie25, +Ie26, +Ie27, +Ie28, +Ie29, +Ie3, +Ie30, +Ie31, +Ad14,SCCS: Luguru [SCCS10] +Ie32, +Ie33, +Ie34, +Ie35, +Ie36, +Ie37, +Ie38, +Ie39, +Ie4, +Ie5, +Ad15, +Ie6, +Ie7, +Ie8, +Ie9,SCCS: Orokaiva [SCCS92] +If1,SCCS: Palauans [SCCS111] +If10, +If11, +If12, +If13, +If14,SCCS: Gilbertese [SCCS107] +Ad16, +If15, +If16, +If17,SCCS: Marshallese [SCCS108] +If2,SCCS: Trukese [SCCS109] +If3, +If4, +If5, +If6,SCCS: Yapese [SCCS110] +If7, +If8, +Ad17, +If9, +Ig1,SCCS: Siuai [SCCS99] +Ig10, +Ig11, +Ig12, +Ig13, +Ig14, +Ig15, +Ig16, +Ig17, +Ad18, +Ig18, +Ig19, +Ig2,SCCS: Trobrianders [SCCS98] +Ig20, +Ig21, +Ig3, +Ig4,SCCS: New Ireland [SCCS97] +Ig5, +Ig6, +Ig7, +Ad19, +Ig8, +Ig9,SCCS: Manus [SCCS96] +Ih1, +Ih10, +Ih11, +Ih12, +Ih13, +Ih14,SCCS: Mbau Fijians [SCCS102] +Ih2, +Ih3,SCCS: Pentecost [SCCS101] +Ad2, +Ih4, +Ih5,SCCS: Ajie [SCCS103] +Ih6, +Ih7, +Ih8, +Ih9, +Ii1, +Ii10, +Ii12, +Ii13, +Ad20, +Ii14,SCCS: Western Samoans [SCCS106] +Ii2,SCCS: Tikopia [SCCS100] +Ii3, +Ii4, +Ii5, +Ii6, +Ii7, +Ii8, +Ii9, +Ij1, +Ad21, +Ij10, +Ij2,SCCS: Maori [SCCS104] +Ij3,SCCS: Marquesans [SCCS105] +Ij4, +Ij5, +Ij6, +Ij7, +Ij8, +Ij9, +Aa9,Binford: Hadza [B69]; SCCS: Hadza [SCCS9] +Ad22, +Ad23, +Ad24, +Ad25, +Ad26, +Ad27, +Ad28, +Ad29, +Ad3, +Ad30, +Nd26,Binford: Honey Lake Paiute [B212] +Nd39,Binford: Spring Valley Shoshoni [B215]; WNAI: Spring Valley Shoshone [WNAI121] diff --git a/raw/sources.bib b/raw/sources.bib new file mode 100644 index 0000000..34e17b4 --- /dev/null +++ b/raw/sources.bib @@ -0,0 +1,41602 @@ +# -*- coding: utf-8 -*- +@book{abadie1924, + author = {Abadie, Maurice}, + title = {Les races du Haut-Tonkin}, + address = {Paris}, + year = {1924}, + url = {https://archive.org/details/McGillLibrary-103431-303}, + key = {Abadie (1924)}, + lgcode = {Man [kimm1245]} +} +@article{abasadse1894, + author = {Abasadse, N. L. von.}, + title = {Die Familiengemeinde bei den Grusinern}, + journal = {Archaeology & Anthropology}, + number = {2}, + pages = {435-442}, + year = {1894}, + key = {Abasadse (1894)}, + lgcode = {Georgians [imer1248]} +} +@book{abbeville1614, + author = {Abbeville, C. d'.}, + title = {Histoire de la Mission des Peres Capucins en l'Isle de Maragnan et terres circonuoisines}, + publisher = {L'Imprimérie de François Huby}, + address = {Paris}, + year = {1614}, + glottolog_ref = {hh:ew:dAbbeville:Maragnan}, + key = {Abbeville (1614)}, + lgcode = {Tupinambá [tupi1273]} +} +@article{abbie1957, + author = {Abbie, A. A.}, + title = {Metrical Characters of a Central Australian Tribe}, + journal = {Oceania}, + publisher = {Blackwell Publishing Ltd}, + volume = {27}, + number = {3}, + pages = {220-243}, + year = {1957}, + issn = {1834-4461}, + url = {https://doi.org/10.1002/j.1834-4461.1957.tb00207.x}, + doi = {10.1002/j.1834-4461.1957.tb00207.x}, + key = {Abbie (1957)}, + lgcode = {Walbiri [warl1254]} +} +@incollection{abbott1892, + author = {Abbott, W. R.}, + title = {Ethnological Collections}, + booktitle = {Reports of the U. S. National Museum, 1890-91}, + pages = {381-428}, + year = {1892}, + key = {Abbott (1892)}, + lgcode = {Chagga [moch1256]} +} +@book{abbott1917, + author = {Abbott, F. F.}, + title = {Common People of Ancient Rome}, + address = {New York}, + year = {1917}, + key = {Abbott (1917)}, + lgcode = {Ancient Romans [lati1261]} +} +@article{abdallah1917, + author = {Abd Allah, M. M.}, + title = {Sîwan customs}, + journal = {Harvard Afr. Studies 1}, + volume = {1}, + pages = {1-28}, + year = {1917}, + glottolog_ref = {eballiso2009:11756}, + key = {Abd Allah (1917)}, + lgcode = {Siwans [siwi1239]} +} +@book{aberle1953, + author = {Aberle, David F.}, + title = {The Kinship System of the Kalmuk Mongols}, + series = {University of New Mexico Publications in Anthropology}, + number = {8}, + pages = {1-48}, + year = {1953}, + key = {Aberle (1953)}, + lgcode = {Baga [mbul1258], Kalmyk [kalm1243]} +} +@incollection{aberle1961, + author = {Aberle, David F.}, + editor = {David Schneider and Kathleen Gough}, + title = {Navajo}, + pages = {96-201}, + year = {1961}, + key = {Aberle, 1961}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@book{abrahams1967, + author = {Abrahams, R. G.}, + title = {The Peoples of Greater Unyamwezi, Tanzania}, + address = {London}, + year = {1967}, + key = {Abrahams (1967)}, + lgcode = {Sukuma [suku1261], Sumbwa [sumb1240]} +} +@book{adams1973, + author = {Adams, J. W.}, + title = {The Gitksan Potlatch Population Flux, Resource Ownership and Reciprocity}, + publisher = {Holt, Rinehart and Winston of Canada}, + address = {Toronto}, + year = {1973}, + key = {Adams (1973)}, + lgcode = {Gitxsan [gitx1241]} +} +@article{adeler1939, + author = {Adeler}, + title = {Coutume maure}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A, 9}, + pages = {373-400}, + year = {1939}, + key = {Adeler (1939)}, + lgcode = {Zenaga [zena1248]} +} +@mastersthesis{adelmannd, + author = {Adelman, F.}, + title = {The Kalmuks of the Lower Volga River and Their Kinship Structure}, + school = {University of Pennsylvania}, + year = {1954}, + key = {Adelman (nd)}, + lgcode = {Kalmyk [kalm1243]} +} +@article{adney1900, + author = {Adney, T.}, + title = {Moose Hunting with the Tro-Kutchin}, + journal = {Harpers Magazine}, + number = {100}, + pages = {495-507}, + year = {1900}, + key = {Adney (1900)}, + lgcode = {Hän [hann1241]} +} +@book{adrianiandkruijt1912, + author = {Adriani, N., and A. C. Kruijt}, + title = {De Bare'e-sprekende Toradja's van Midden-Celebes}, + publisher = {Batavia: Landesdrukkerij}, + address = {Batavia}, + year = {1912}, + glottolog_ref = {mpieva:Adriani19121914DeBarees}, + howpublished = {reprinted 1950-51 Amsterdam}, + key = {Adriani and Kruijt (1912)}, + lgcode = {Toradja [pamo1252]} +} +@book{afanaseva1990, + author = {Afanas'eva, G. M.}, + title = {Traditsionnaja sistema vosproizvodstva nganasan (problemy reproduktsii obosoblennyh populjatsij)}, + publisher = {Institut Etnologii i Antropologii}, + address = {Moscow}, + year = {1990}, + key = {Afanas'eva (1990)}, + lgcode = {Nganasan [ngan1291]}, + title_english = {Nganasan Traditional Reproductive System: Problems of Reproduction among Population Isolates} +} +@article{aginsky1935, + author = {Aginsky, B. W.}, + title = {The Mechanics of Kinship}, + journal = {American Anthropologist}, + publisher = {Blackwell Publishing Ltd}, + volume = {37}, + number = {3}, + pages = {450-457}, + year = {1935}, + issn = {1548-1433}, + url = {https://doi.org/10.1525/aa.1935.37.3.02a00080}, + doi = {10.1525/aa.1935.37.3.02a00080}, + key = {Aginsky (1935)}, + lgcode = {Southern Pomo [sout2984]} +} +@article{aginsky1943, + author = {Aginsky, B. W.}, + title = {Central Sierra}, + journal = {Anth. Records}, + volume = {8}, + pages = {393-468}, + year = {1943}, + key = {Aginsky (1943)}, + lgcode = {Central Sierra Miwok [cent2140], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Miwok [nort2968], Southern Miwok [sout2985], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]} +} +@book{aginskyandaginsky1967, + author = {Aginsky, B. W., and E. G. Aginsky.}, + title = {Deep Valley}, + address = {N. Y.}, + year = {1967}, + key = {Aginsky and Aginsky (1967)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{agrawal1967, + author = {Agrawal, H. N.}, + title = {Physical Characteristics of the Shompen of Great Nicobar}, + journal = {Bulletin of the Anthropological Survey of India}, + volume = {16}, + number = {1-2}, + pages = {83-97}, + year = {1967}, + key = {Agrawal (1967)}, + lgcode = {Shompen [shom1245]} +} +@article{ahlqvist1885, + author = {Ahlqvist, A.}, + title = {Unter Wogulen und Ostjaken}, + journal = {Acta Soc. Scient. Fennicae}, + volume = {14}, + pages = {133-307}, + year = {1885}, + key = {Ahlqvist (1885)}, + lgcode = {Ob Ostyak [khan1273]} +} +@book{ahmarov1907, + author = {Ahmarov, G. N.}, + title = {Svadebnye obrjady kazanskiht tatar}, + address = {Kazan}, + year = {1907}, + key = {Ahmarov (1907)}, + lgcode = {Kazan tatar [midd1325]}, + title_english = {Wedding Rituals of the Kazan Tatars} +} +@book{ajisafe1924, + author = {Ajisafe, A. K.}, + title = {The laws and customs of the Yoruba people}, + publisher = {London: George Routledge & Sons}, + address = {London}, + year = {1924}, + glottolog_ref = {eballiso2009:59283}, + key = {Ajisafe (1924)}, + lgcode = {Egba [egba1238]} +} +@book{aleksandrov1899, + author = {Aleksandrov, N. A.}, + title = {Cheremisy i chuvashi. (Lesnaja okraina) (The Mari and Chuvash. Forest Province)}, + address = {Moscow}, + year = {1899}, + key = {Aleksandrov (1899)}, + lgcode = {Chuvash [chuv1255]} +} +@book{aleksandrov1900a, + author = {Aleksandrov, N. A.}, + title = {Inorodtsy lesov}, + address = {Moscow}, + year = {1900}, + key = {Aleksandrov (1900a)}, + lgcode = {Latvians [latv1249]}, + title_english = {Non-Russian Woodland Peoples} +} +@book{aleksandrov1900b, + author = {Aleksandrov, N. A.}, + title = {Stepi. Bessarabija. Moldavane (rumyny)}, + address = {Moscow}, + year = {1900}, + key = {Aleksandrov (1900b)}, + lgcode = {Moldovans [mold1248]}, + title_english = {Steppes. Bessarabia. Moldovans (Rumanians)} +} +@book{aleksandrovandshlygina1971, + editor = {Aleksandrov, V. A., and N. V. Shlygina}, + title = {Sel'skie poselenija Pribaltiki (XIII-XX vv. )}, + address = {Moscow}, + year = {1971}, + key = {Aleksandrov and Shlygina (1971)}, + lgcode = {Estonians [esto1258], Latvians [latv1249]}, + title_english = {Rural Settlements of the Baltic Region (from the Eighteenth to the Twentieth Century)} +} +@book{alexandreandbinet1958, + author = {Alexandre, P., and J. Binet.}, + title = {Le groupe dit pahouin: fang-boulou-beti}, + publisher = {Presses Universitaires de France; International African Inst. (IAI)}, + address = {Paris}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + volume = {6}, + year = {1958}, + glottolog_ref = {eballiso2009:47214}, + key = {Alexandre and Binet (1958)}, + lgcode = {Fang [fang1246]} +} +@article{alkire1965, + author = {Alkire, W. H.}, + title = {Lamotrek Atoll and Inter-island Socioeconomic Ties}, + journal = {Illinois Studies in Anthropology}, + volume = {5}, + pages = {1-180}, + year = {1965}, + key = {Alkire (1965)}, + lgcode = {Lamotrek [lamo1243]} +} +@article{alland1963, + author = {Alland, A.}, + title = {Residence, Domicile, and Descent Groups Among the Abrong}, + journal = {Ethnology}, + volume = {2}, + pages = {276-281}, + year = {1963}, + key = {Alland (1963)}, + lgcode = {Abron [abro1238]} +} +@article{allanetal1948, + author = {Allan, W. and M. Gluckman and D. U. Peters and C. G. Trapell}, + title = {Land Holding and Land Usage Among the Plateau Tonga of Mazabuka District}, + journal = {Rhodes-Liv. Pap.}, + volume = {14}, + pages = {1-192}, + year = {1948}, + key = {Allan et al (1948)}, + lgcode = {Plateau Tonga [tong1318]} +} +@misc{allegret1927, + author = {Allegret, E.}, + title = {Correspondence}, + year = {1927}, + howpublished = {published in H. A. Junod, the Life of a South African Tribe 1: 271n}, + key = {Allegret (1927)}, + lgcode = {Mpongwe [myen1241]} +} +@book{allen1932, + author = {Allen, W. E. D.}, + title = {A History of the Georgia People}, + address = {London}, + year = {1932}, + key = {Allen (1932)}, + lgcode = {Georgians [imer1248]} +} +@article{allys1930, + author = {Allys}, + title = {Monographie de la tribu des Dzems}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {21}, + pages = {3-21}, + year = {1930}, + key = {Allys (1930)}, + lgcode = {Dzem [njye1238]} +} +@book{alphonse1956, + author = {Alphonse, E. S.}, + title = {Guaymi Grammar and Dictionary}, + publisher = {Washington: United States Government Printing Office}, + address = {Washington}, + series = {Bulletin of the Bureau of American Ethnology}, + number = {162}, + pages = {1-128}, + year = {1956}, + url = {https://repository.si.edu/handle/10088/15456}, + glottolog_ref = {wals:145}, + key = {Alphonse (1956)}, + lgcode = {Ngäbe [ngab1239]} +} +@book{altandalt1959, + author = {Alt, H., and E. Alt}, + title = {Russia's Children}, + address = {N. Y.}, + year = {1959}, + key = {Alt and Alt (1959)}, + lgcode = {Russians [russ1263]} +} +@book{altman1987, + author = {Altman, J. C.}, + title = {Hunter-Gatherers Today: An Aboriginal Economy in North Australia}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + year = {1987}, + key = {Altman (1987)}, + lgcode = {Gunwinygu [gunw1252]} +} +@article{altschuler1965a, + author = {Altschuler, M.}, + title = {Notes on Cayapa kinship}, + journal = {Ethnology}, + volume = {4}, + pages = {440-447}, + year = {1965}, + glottolog_ref = {fabreall2009ann:Barbacoa_cha05}, + key = {Altschuler (1965a)}, + lgcode = {Chachi [chac1249]} +} +@phdthesis{altschuler1965b, + author = {Altschuler, M.}, + title = {The Cayapa}, + school = {University of Minnesota}, + year = {1965}, + key = {Altschuler (1965b)}, + lgcode = {Chachi [chac1249]} +} +@incollection{altschuler1971, + author = {Altschuler, M.}, + editor = {D. S. Marshall and R. C. Suggs}, + title = {Cayapa Personality and Sexual Motivation}, + booktitle = {Human Sexual Behavior}, + address = {Princeton}, + pages = {38-58}, + year = {1971}, + key = {Altschuler (1971)}, + lgcode = {Chachi [chac1249]} +} +@article{ambrosetti1895, + author = {Ambrosetti, J. B.}, + title = {Los Indios Caingua del alto Parana}, + journal = {Boletin del Instituto Geografico Argentino}, + volume = {15}, + pages = {661-744}, + year = {1895}, + key = {Ambrosetti (1895)}, + lgcode = {Cayua [mbya1239]} +} +@book{ames1934, + author = {Ames, C. G.}, + title = {Gazetteer of the Plateau Province, Nigeria}, + publisher = {Ms.}, + pages = {474}, + year = {1934}, + glottolog_ref = {hh:he:Ames:Plateau}, + key = {Ames (1934)}, + lgcode = {Yergum [taro1263]} +} +@phdthesis{ames1953, + author = {Ames, D. W.}, + title = {Plural Marriage Among the Wolof in the Gambia}, + school = {Northwestern University}, + year = {1953}, + key = {Ames (1953)}, + lgcode = {Wolof [nucl1347]} +} +@book{ames1958, + author = {Ames, D.W.}, + title = {The dual function of the "little people" of the forest in the lives of the Wolof}, + year = {1958}, + key = {Ames (1958)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ames1959a, + author = {Ames, D. W.}, + editor = {W. R. Bascom and M. J. Herskovits}, + title = {Selection of Mates}, + booktitle = {Continuity and Change in African Cultures}, + address = {Chicago}, + pages = {156-68}, + year = {1959}, + key = {Ames (1959a)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ames1959b, + author = {Ames, D. W.}, + editor = {W. R. Bascom and M. J. Herskovits}, + title = {Wolof Co-operative Work Groups}, + booktitle = {Continuity and Change in African Cultures}, + address = {Chicago}, + pages = {224-237}, + year = {1959}, + key = {Ames (1959b)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ames1962, + author = {Ames, D. W.}, + editor = {P. Bohannan and G. Dalton}, + title = {The Rural Wolof of the Gambia}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {29-60}, + year = {1962}, + key = {Ames (1962)}, + lgcode = {Wolof [nucl1347]} +} +@book{ammar1954, + author = {Ammar, H.}, + title = {Growing Up in an Egyptian Village}, + address = {London}, + year = {1954}, + key = {Ammar (1954)}, + lgcode = {Egyptians [egyp1253]} +} +@phdthesis{amsden1977, + author = {Amsden, C. W.}, + title = {A Quantitative Analysis of Nunamiut Eskimo Settlement Dynamics: 1898 to 1969}, + school = {Department of Anthropology, University of New Mexico}, + address = {Albuerque}, + year = {1977}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Amsden (1977)}, + lgcode = {Nunamiut [nort2944]} +} +@book{amundsen1908, + author = {Amundsen, R. E. G.}, + title = {Roald Amundsen's "The Northwest Passage." Being the Record of a Voyage of Exploration of the Ship "Gjoa, " 1903-1907. 2 vols}, + publisher = {E. P. Dutton}, + address = {New York}, + year = {1908}, + key = {Amundsen (1908)}, + lgcode = {Utkuhikhalingmiut [nets1241]} +} +@misc{anderson1949, + author = {Anderson, R.}, + title = {Northern Cheyenne field notes}, + year = {1949}, + howpublished = {Manuscript}, + key = {Anderson (1949)}, + lgcode = {Cheyenne [chey1247]} +} +@incollection{andersonandrobins1988, + author = {Anderson, C., and R. Robins.}, + editor = {B. Meenan and R. Jones}, + title = {Dismissed Due to Lack of Evidence? Kuku-Yalanji Sites and the Archaeological Record}, + booktitle = {Archaeology with Ethnography: An Australian Perspective}, + publisher = {Australian National University}, + address = {Canberra}, + pages = {182-205}, + year = {1988}, + key = {Anderson and Robins (1988)}, + lgcode = {Kuku (Yalanji) [kuku1273]} +} +@book{andersson1953, + author = {Andersson, E.}, + title = {Contribution à l'ethnographie des kuta}, + publisher = {Stockholm: Almqvist & Wiksell}, + address = {Stockholm}, + series = {Studia ethnographica upsaliensia}, + volume = {6}, + pages = {1-364}, + year = {1953}, + glottolog_ref = {eballiso2009:18840}, + key = {Andersson (1953)}, + lgcode = {Kota [ndas1238]} +} +@article{anguloandfreeland1929, + author = {Angulo, J. de, and L. S. Freeland}, + title = {Notes on the Northern Paiute of California}, + journal = {Journ. Soc. Americ.}, + volume = {21}, + pages = {313-335}, + year = {1929}, + key = {Angulo and Freeland (1929)}, + lgcode = {Kidutokado [nort1551]} +} +@article{ankermann1910, + author = {Ankermann, B.}, + title = {Bericht uber eine Forschungreise ins Grasland von Kamerun}, + journal = {Zeitschrift für Ethnologie}, + volume = {42}, + pages = {288-310}, + year = {1910}, + key = {Ankermann (1910)}, + lgcode = {Bali Nyonga [mung1266]} +} +@article{anonymous1869, + author = {Anonymous}, + title = {Zametkio latyshaht rehi nfljandskihu ezdov Vitebskoj gubemii}, + journal = {Vilenskij sbornik}, + volume = {1}, + pages = {223-43}, + year = {1869}, + key = {Anonymous (1869)}, + lgcode = {Latvians [latv1249]}, + title_english = {Notes on the Latvians of the Three Infliandian Uezds of the Vitebskaja Guberia} +} +@article{anonymous1939, + author = {Anonymous}, + title = {Coutumes haoussa et peul}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {10}, + pages = {261-301}, + year = {1939}, + key = {Anonymous (1939)}, + lgcode = {Tazarawa [haus1257]} +} +@article{anonymous1939a, + author = {Anonymous}, + title = {Coutume soussou}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {10}, + pages = {575-610}, + year = {1939}, + key = {Anonymous (1939a)}, + lgcode = {Susu [susu1250]} +} +@book{antropovaandkuznetsova1964, + author = {Antropova, V.V. and V.G. Kuznetsova}, + title = {The Chukchi}, + year = {1964}, + key = {Antropova and Kuznetsova (1964)}, + lgcode = {Chukchi [chuk1273]} +} +@book{anumanrajadhon1961, + author = {Anuman Rajadhon, P.}, + editor = {W. J. Gedney}, + title = {Life and Ritual in Old Siam}, + address = {New Haven}, + year = {1961}, + key = {Anuman Rajadhon (1961)}, + lgcode = {Thai [thai1261]} +} +@article{ardener1954, + author = {Ardener, E. W.}, + title = {The kinship terminology of a group of southern Ibo}, + journal = {Africa}, + volume = {24}, + pages = {85-99}, + year = {1954}, + glottolog_ref = {weball:975}, + key = {Ardener (1954)}, + lgcode = {Igbo [nucl1417]} +} +@book{ardener1956, + author = {Ardener, E.}, + title = {Coastal Bantu of the Cameroons}, + publisher = {London: International African Institute (IAI)}, + address = {London}, + pages = {116}, + year = {1956}, + glottolog_ref = {weball:976}, + key = {Ardener (1956)}, + lgcode = {Duala [dual1243], Kpe [mokp1239]} +} +@book{arensbergandkimball1940, + author = {Arensberg, C. M., and S. T. Kimball}, + title = {Family and Community in Ireland}, + address = {Cambridge}, + year = {1940 (Revised Edition 1968)}, + key = {Arensberg and Kimball (1940)}, + lgcode = {Irish [iris1253]} +} +@book{argyle1966, + author = {Argyle, W. J.}, + title = {The Fon of Dahomey}, + address = {London}, + year = {1966}, + key = {Argyle (1966)}, + lgcode = {Fon [fonn1241]} +} +@incollection{arima1984, + author = {Arima, E. Y.}, + editor = {D. Damas}, + title = {Caribou Eskimo}, + booktitle = {Arctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {447-462}, + year = {1984}, + key = {Arima (1984)}, + lgcode = {Caribou Inuit [cari1277]} +} +@book{ariyapala1956, + author = {Ariyapala, M. B.}, + title = {Society in Medieval Ceylon}, + publisher = {K. V. G. de Silva}, + address = {Colombo}, + year = {1956}, + key = {Ariyapala (1956)}, + lgcode = {Sinhalese [sinh1246]} +} +@book{armstrong1928, + author = {Armstrong, W. E.}, + title = {Rossel Island}, + address = {Cambridge}, + year = {1928}, + key = {Armstrong (1928)}, + lgcode = {Rossel Islanders [yele1255]} +} +@article{armstrong1954, + author = {Armstrong, R. G.}, + title = {A West African Inquest}, + journal = {American Anthropologist}, + volume = {56}, + pages = {1051-1075}, + year = {1954}, + key = {Armstrong (1954)}, + lgcode = {Idoma [idom1241]} +} +@article{armstrongandmetraux1948, + author = {Armstrong, J. M., and A. M‚traux.}, + title = {The Goajiro}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {143}, + pages = {iv, 360-383}, + year = {1948}, + key = {Armstrong and Metraux (1948)}, + lgcode = {Wayuu [wayu1243]} +} +@article{arnaud1921, + author = {Arnaud, R.}, + title = {Notes sur les montagnards Habe}, + journal = {Rev. Ethnog. Trad. Pop.}, + volume = {2}, + pages = {241-318}, + year = {1921}, + key = {Arnaud (1921)}, + lgcode = {Dogon [bank1259]} +} +@book{arnaud1964, + author = {Arnaud, E.}, + title = {Noticia sobre los Indios Gavioes de Oeste}, + series = {Antropologia}, + number = {20}, + year = {1964}, + key = {Arnaud (1964)}, + lgcode = {Canela [cane1242]} +} +@article{aroandshepard1967, + author = {Aro, K. V., and M. P. Shepard}, + title = {Pacific Salmon in Canada}, + journal = {International North Pacific Fisheries Commission Bulletin}, + address = {Victoria, B.C.}, + volume = {23}, + pages = {225-327}, + year = {1967}, + key = {Aro and Shepard (1967)}, + lgcode = {Chilcotin [chil1280], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249], Lillooet [lill1248], Nlaka'pamux [thom1243], Shuswap [shus1248]} +} +@book{arsenev1926, + author = {Arsen'ev, V. K.}, + title = {Lesnye ljudi udeheitsy}, + address = {Vladivostok}, + year = {1926}, + key = {Arsen'ev (1926)}, + lgcode = {Udihe [udih1248]}, + title_english = {The Udihe, the Forest People} +} +@article{ascher1962, + author = {Ascher, R.}, + title = {Ethnography for Archeology: A Case from the Seri Indians}, + journal = {Ethnology}, + volume = {1}, + pages = {360-369}, + year = {1962}, + key = {Ascher (1962)}, + lgcode = {Seri [seri1257]} +} +@book{aschmann1967, + author = {Aschmann, H.}, + title = {The Central Desert of Baja California: Demography and Ecology}, + publisher = {Manessier}, + address = {Riverside, Calif.}, + year = {1967}, + key = {Aschmann (1967)}, + lgcode = {Guaicura [guai1237]} +} +@article{ashkenazi1948, + author = {Ashkenazi, T.}, + title = {The Anazah Tribes}, + journal = {Southwestern Journal of Anthropology}, + volume = {4}, + pages = {222-239}, + year = {1948}, + key = {Ashkenazi (1948)}, + lgcode = {Rwala [east2690]} +} +@book{ashton1952, + author = {Ashton, H.}, + title = {The Basuto}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London, New York & Toronto}, + year = {1952}, + glottolog_ref = {eballiso2009:27743}, + key = {Ashton (1952)}, + lgcode = {Sotho [sout2807]} +} +@article{asmis1911, + author = {Asmis, G.}, + title = {Die Stammesrechte der Bezirke Misahohe, Anecho und Lome-Land}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {22}, + pages = {1-133}, + year = {1911}, + key = {Asmis (1911)}, + lgcode = {Buem [siwu1238], Ewe [aguu1242]} +} +@article{asmis1912, + author = {Asmis, G.}, + title = {Die Stammersrechte des Bezirkes Sansane-Mangu}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {27}, + pages = {71-128}, + year = {1912}, + key = {Asmis (1912)}, + lgcode = {Moba [moba1244]} +} +@article{aspelin1976, + author = {Aspelin, P. L.}, + title = {Nambicuara economic dualism: Lévi-Strauss in the garden, once again}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + address = {La Haya}, + volume = {132}, + pages = {1-31}, + year = {1976}, + key = {Aspelin (1976)}, + lgcode = {Nambikwara [sout2994]} +} +@incollection{atkinson1953, + author = {Atkinson, William C.}, + editor = {H. V. Livermore}, + title = {Institutions and law}, + booktitle = {Portugal and Brazil: an introduction}, + publisher = {Oxford University Press}, + address = {Oxford}, + year = {1953}, + key = {Atkinson (1953)}, + lgcode = {Portuguese [gali1257]} +} +@article{aubert1936, + author = {Aubert, M.}, + title = {Laws and Customs of the Susus}, + journal = {Sierra Leone Stud.}, + volume = {2}, + pages = {21-44}, + year = {1936}, + key = {Aubert (1936)}, + lgcode = {Susu [susu1250]} +} +@book{audric1972, + author = {Audric, J.}, + title = {Angkor and the Khmer empire}, + year = {1972}, + key = {Audric (1972)}, + lgcode = {Ancient Khmer [oldk1249]} +} +@article{aujas1931, + author = {Aujas, L.}, + title = {Les Sereres du Senegal}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {14}, + pages = {293-333}, + year = {1931}, + key = {Aujas (1931)}, + lgcode = {Serer [sere1260]} +} +@article{autenrieth1908, + author = {Autenrieth, H.}, + title = {Recht der Kissibaleute}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {21}, + pages = {354-392}, + year = {1908}, + key = {Autenrieth (1908)}, + lgcode = {Haya [haya1250]} +} +@article{avadhani1975, + author = {Avadhani P.N.}, + title = {A study of the Punan Busang}, + journal = {Malayan Nature Journal}, + volume = {28}, + number = {3-4}, + pages = {121-172}, + year = {1975}, + key = {Avadhani (1975)}, + lgcode = {Punan [west2563]} +} +@article{avon191516, + author = {Avon.}, + title = {Vie sociale des Wabende am Tanganika}, + journal = {Anthropos}, + volume = {10-111}, + pages = {98-113}, + year = {1915-16}, + key = {Avon (1915-16)}, + lgcode = {Bende [bend1258]} +} +@book{aymard1911, + author = {Aymard, A.}, + title = {Les Touareg}, + address = {Paris}, + year = {1911}, + key = {Aymard (1911)}, + lgcode = {Kel Antessar [timb1263]} +} +@book{aymonier190004, + author = {Aymonier, E.}, + title = {Le Cambodge. 3v}, + address = {Paris}, + year = {1900-04}, + key = {Aymonier (1900-04)}, + lgcode = {Khmer [cent1989]} +} +@book{ayrout1945, + author = {Ayrout, H. H.}, + title = {The Fellaheen}, + address = {Cairo}, + year = {1945}, + key = {Ayrout (1945)}, + lgcode = {Egyptians [egyp1253]} +} +@book{ayrout1963, + author = {Ayrout, H. H.}, + title = {The Egyptian Peasant}, + year = {1963 [First published in 1938]}, + key = {Ayrout (1963)}, + lgcode = {Egyptians [egyp1253]} +} +@misc{bacdayan1962, + author = {Bacdayan, A. S.}, + year = {1962}, + howpublished = {Personal communication}, + key = {Bacdayan (1962)}, + lgcode = {Sagada [nort2877]} +} +@incollection{bachtiar1967, + author = {Bachtiar, H. W.}, + editor = {Koentjaraningrat}, + title = {Negeri Taran: A. Minangkabau Village Community}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {348-385}, + year = {1967}, + key = {Bachtiar (1967)}, + lgcode = {Minangkabau [mina1268]} +} +@article{bacon1922, + author = {Bacon, C. R. K.}, + title = {The Anuak}, + journal = {Sudan Notes and Records}, + volume = {5}, + pages = {113-129}, + year = {1922}, + glottolog_ref = {eballiso2009:9053}, + key = {Bacon (1922)}, + lgcode = {Anuak [anua1242]} +} +@article{bacon1958, + author = {Bacon, E. B.}, + title = {Obok}, + journal = {Viking Fund Publ. Anth.}, + volume = {25}, + pages = {1-235}, + year = {1958}, + key = {Bacon (1958)}, + lgcode = {Hazara [haza1239]} +} +@article{badier1929, + author = {Badier}, + title = {Monographie de la tribu des Batekes}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {10}, + pages = {37-43}, + year = {1929}, + key = {Badier (1929)}, + lgcode = {Teke [teke1278]} +} +@incollection{baegert1863, + author = {Baegert, J.}, + title = {An Account of the Aboriginal Inhabitants of the California Peninsula}, + booktitle = {Smithsonian Institution Annual Report, 1863}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {352-369}, + year = {1863}, + key = {Baegert (1863)}, + lgcode = {Guaicura [guai1237]} +} +@incollection{baegert1865, + author = {Baegert, J.}, + title = {An Account of the Aboriginal Inhabitants of the California Peninsula}, + booktitle = {Smithsonian Institution Annual Report, 1864}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {378-399}, + year = {1865}, + url = {https://archive.org/details/accountofaborigi00baeg}, + key = {Baegert (1865)}, + lgcode = {Guaicura [guai1237]}, + note = {Continued from the Smithsonian report for 1863.} +} +@article{baerandbaer1949, + author = {Baer, P., and M. Baer.}, + title = {Notes on Lacandon marriage}, + journal = {Southw. Journ. Anth.}, + volume = {5}, + pages = {101-6}, + year = {1949}, + glottolog_ref = {sil16:10140}, + key = {Baer and Baer (1949)}, + lgcode = {Lacandon [laca1243]} +} +@book{baerandengelbrecht1990, + author = {Baer, G. and B. Engelbrecht}, + title = {Wirtschaft und Technologie}, + year = {1990}, + key = {Baer and Engelbrecht (1990)}, + lgcode = {Aztec [clas1250]} +} +@article{baerandschmitz1964, + author = {Baer, G., and C. A. Schmitz}, + title = {On the Social Organization of the Ona (Selk'nam)}, + journal = {Journal de la Société des Américanistes}, + volume = {54}, + number = {1}, + pages = {23-29}, + year = {1965}, + url = {http://www.persee.fr/doc/jsa_0037-9174_1965_num_54_1_1271}, + doi = {10.3406/jsa.1965.1271}, + key = {Baer and Schmitz (1964)}, + lgcode = {Ona [onaa1245]} +} +@article{baeyens1913, + author = {Baeyens, M.}, + title = {Les Lesa}, + journal = {REv. Congol.}, + volume = {4}, + pages = {129-143, 193-206, 257-270, 321-336}, + year = {1913}, + glottolog_ref = {eballiso2009:51329}, + key = {Baeyens (1913)}, + lgcode = {Sakata [saka1287]} +} +@article{bahuchet1979, + author = {Bahuchet, S.}, + title = {Utilisation de'Pespace forestier par les Pygmees Aka, Chasseurs-sueilleurs d'Afrique Centrale}, + journal = {Information sur les sciences sociales}, + volume = {18}, + number = {6}, + pages = {999-1019}, + year = {1979}, + key = {Bahuchet (1979)}, + lgcode = {Aka [bamb1264]} +} +@incollection{bahuchet1988, + author = {Bahuchet, S.}, + editor = {I. de Garine and G. A. Harrison}, + title = {Food Supply Uncertainty among the Aka Pygmies (Lobaye, Central African Republic)}, + booktitle = {Coping with Uncertainty in the Food Supply}, + publisher = {Clarendon Press}, + address = {Oxford}, + pages = {118-149}, + year = {1988}, + key = {Bahuchet (1988)}, + lgcode = {Aka [bamb1264]} +} +@article{bailey1863, + author = {Bailey, J.}, + title = {An Account of the Wild Tribes of the Veddahs of Ceylon: Their Habits, Customs and Superstitions}, + journal = {Transactions of the Ethnological Society of London}, + volume = {2}, + pages = {278-320}, + year = {1863}, + key = {Bailey (1863)}, + lgcode = {Vedda [vedd1240]} +} +@phdthesis{bailey1985, + author = {Bailey, R. C.}, + title = {The Socioecology of the Efe Pygmy Men in the Ituri Forest, Zaire}, + school = {Department of Social Relations, Harvard University}, + address = {Cambridge}, + year = {1985}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Bailey (1985)}, + lgcode = {Efe [efee1239]} +} +@incollection{baileyandpeacock1988, + author = {Bailey, R. C., and N. R. Peacock}, + editor = {Garine, Igor de and Harrison, G.A.}, + title = {Efe pygmies of northeast Zaïre: subsistence strategies in the Ituri Forest}, + booktitle = {Coping with Uncertainty in the Food Supply}, + publisher = {Oxford Univ. Press}, + pages = {88-117}, + year = {1988}, + glottolog_ref = {eballiso2009:56046}, + key = {Bailey and Peacock (1988)}, + lgcode = {Efe [efee1239]} +} +@article{balandier1952, + author = {Balandier, G.}, + title = {Les villages gabonais}, + journal = {Mem. Inst. Et. CentrAfr.}, + volume = {5}, + pages = {1-86}, + year = {1952}, + key = {Balandier (1952)}, + lgcode = {Mitsogho [tsog1243]} +} +@book{balashov1995, + editor = {Balashov, V. A.}, + title = {Mordva: istoriko-kul'turye ocherki (The Mordva: Historical-Cultural Essays)}, + address = {Saransk}, + year = {1995}, + key = {Balashov (1995)}, + lgcode = {Erzya Mordvins [erzy1239]} +} +@book{baldus1931, + author = {Baldus, H.}, + title = {Indianerstudien im nordöstlichen Chaco}, + publisher = {Leipzig}, + series = {Forschungen zur Völkerpsychologie und Soziologie}, + volume = {II}, + pages = {1-239}, + year = {1931}, + glottolog_ref = {fabreall2009ann:714}, + key = {Baldus (1931)}, + lgcode = {Chamacoco [cham1315], Lengua [leng1262]} +} +@article{baldus1937, + author = {Baldus, H.}, + title = {The Social Position of the Woman among the Eastern Bororo (transl. I. Lillios)}, + journal = {Ensaios de etnologia brasileira}, + publisher = {São Paulo: Biblioteca Pedagógica Brasileira, série 5a, Brasiliana 101}, + volume = {101}, + pages = {112-162}, + year = {1937}, + glottolog_ref = {fabreall2009ann:716}, + key = {Baldus (1937)}, + lgcode = {Bororo [boro1282]} +} +@book{balikci1970, + author = {Balikci, A.}, + title = {The Netsilik Eskimo}, + publisher = {Natural History Press}, + address = {Garden City, N.Y.}, + year = {1970}, + key = {Balikci (1970)}, + lgcode = {Netsilik [nets1241]} +} +@article{balikei1963a, + author = {Balikei, A.}, + title = {Le regime matrimonial des Esquimaux Netsilik}, + journal = {L'Homme}, + volume = {1963}, + pages = {88-101}, + year = {1963}, + key = {Balikei (1963a)}, + lgcode = {Netsilik [nets1241]} +} +@article{balikei1963b, + author = {Balikei, A.}, + title = {Shamanistic Behavior Among the Netsilik Eskimos}, + journal = {Southw. Journ. Anth.}, + volume = {19}, + pages = {380-396}, + year = {1963}, + key = {Balikei (1963b)}, + lgcode = {Netsilik [nets1241]} +} +@article{ballard1935, + author = {Ballard, A. C.}, + title = {Southern Puget Sound Salish Kinship Terms}, + journal = {American Anthropologist}, + volume = {37}, + pages = {111-116}, + year = {1935}, + key = {Ballard (1935)}, + lgcode = {Puyallup [sout2965]} +} +@book{ballis1956, + editor = {Ballis, W. B.}, + title = {Mongolian People's Republic}, + address = {New Haven}, + year = {1956}, + key = {Ballis (1956)}, + lgcode = {Khalka [halh1238]}, + note = {3 vols} +} +@book{balsdon1963, + author = {Balsdon, J. P. V. D.}, + title = {Roman Women}, + address = {New York}, + year = {1963}, + key = {Balsdon (1963)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{balsdon1969, + author = {Balsdon, J. P. V. D.}, + title = {Life and Leisure in Ancient Rome}, + address = {New York}, + year = {1969}, + key = {Balsdon (1969)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{balyn1957, + author = {Balyn, D.}, + title = {The Geography of the Bible}, + address = {New York}, + year = {1957}, + key = {Balyn (1957)}, + lgcode = {Hebrews [anci1244]} +} +@book{bamforth1988, + author = {Bamforth, D. B.}, + title = {Ecology and Human Organization on the Great Plains}, + publisher = {Plenum Press}, + address = {New York}, + year = {1988}, + key = {Bamforth (1988)}, + lgcode = {Crow [crow1244], Gros Ventre [gros1243], Kainai [bloo1239], Kiowa [kiow1266], Kiowa Apache [kiow1264], Plains Cree [plai1258], Sarcee [sars1236]} +} +@book{banfieldandmacintyre1915, + author = {Banfield, A. W., and J. I. MacIntyre. V-3.}, + title = {A grammar of the Nupe language}, + publisher = {Society for the Promotion of Christian Knowledge}, + address = {London}, + pages = {186}, + year = {1915}, + glottolog_ref = {hh:g:BanfieldMacintyre:Nupe}, + key = {Banfield and MacIntyre (1915)}, + lgcode = {Nupe [nupe1254]} +} +@article{bank1953, + author = {Bank, T. P.}, + title = {Health and Medical Lore of the Aleuts}, + journal = {Papers of the Michigan Academy of Science, Arts, and Letters}, + volume = {38}, + pages = {415-431}, + year = {1953}, + key = {Bank (1953)}, + lgcode = {Aleut [east2533]} +} +@article{barandiaran1962, + author = {Barandiaran, D. de.}, + title = {Activadades vitales de subsistencia de los Indios Yekuana o Makitare}, + journal = {Antropologica}, + volume = {11}, + pages = {1-29}, + year = {1962}, + key = {Barandiaran (1962)}, + lgcode = {Ye'kuana [maqu1238]} +} +@book{bardin1944, + author = {Bardin, P.}, + title = {Les populations arabes du ontrole civil de GAfsa et leurs genres de vie}, + address = {Tunis}, + series = {Publ. Inst. Belles Lett. Arabes}, + volume = {6}, + pages = {1-64}, + year = {1944}, + key = {Bardin (1944)}, + lgcode = {Hamama [sout3114]} +} +@incollection{barger1981, + author = {Barger, W. K.}, + editor = {J. Helm}, + title = {Great Whale River, Quebec}, + booktitle = {SubArctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {673-682}, + year = {1981}, + key = {Barger (1981)}, + lgcode = {Great Whale Inuit [queb1248]} +} +@article{barker1953, + author = {Barker, J.}, + title = {Memoria sobre la cultura de los Guaika}, + journal = {Bol. Indig. Venez.}, + address = {Caracas}, + volume = {1}, + pages = {433-490}, + year = {1953}, + glottolog_ref = {fabreall2009ann:Yanomami_yanomami003}, + key = {Barker (1953)}, + lgcode = {Guaica [yano1262]} +} +@article{barnard1938, + author = {Barnard, T. T.}, + title = {The Social Organization of Ambrym}, + journal = {Man}, + volume = {28}, + pages = {133-137}, + year = {1938}, + key = {Barnard (1938)}, + lgcode = {Ranon [nort2839]} +} +@incollection{barnes1951, + author = {Barnes, J. A.}, + editor = {Colson, Elizabeth and Gluckman, Max}, + title = {The Fort Jameson Ngoni}, + booktitle = {Seven Tribes of British Central Africa}, + publisher = {London: Oxford Univ. Press}, + address = {London}, + series = {Rhodes-Livingstone papers}, + volume = {20}, + pages = {194-252}, + year = {1951}, + glottolog_ref = {eballiso2009:33873}, + key = {Barnes (1951)}, + lgcode = {Ngoni [ngon1269]} +} +@book{barnes1954, + author = {Barnes, James A.}, + title = {Politics in a changing society: a political history of the Fort Jameson Ngoni}, + publisher = {Cape Town: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {Cape Town}, + year = {1954}, + glottolog_ref = {eballiso2009:26396}, + key = {Barnes (1954)}, + lgcode = {Ngoni [ngon1269]} +} +@article{barnett1937, + author = {Barnett, H. G.}, + title = {Oregon Coast}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {155-204}, + year = {1937}, + key = {Barnett (1937)}, + lgcode = {Alsea [alse1251], Chetco [tolo1259], Coos [coos1249], Siuslaw [sius1254], Taltushtuntede [gali1261], Tillamook [till1254], Tolowa [tolo1259], Tututni [tutu1242]} +} +@article{barnett1938, + author = {Barnett, H. G.}, + title = {The Coast Salish of Canada}, + journal = {American Anthropologist}, + volume = {40}, + pages = {118-141}, + year = {1938}, + key = {Barnett (1938)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Musqueam [musq1240], Squamish [squa1248]} +} +@article{barnett1939, + author = {Barnett, H. G.}, + title = {Gulf of Georgia Salish}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {221-295}, + year = {1939}, + key = {Barnett (1939)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Pentlatch [pent1242], Squamish [squa1248], West Saanich [saan1246]} +} +@book{barnett1949, + author = {Barnett, H. G.}, + title = {Palauan Society}, + address = {Eugene}, + year = {1949}, + key = {Barnett (1949)}, + lgcode = {Palauans [pala1344]} +} +@book{barnett1955, + author = {Barnett, H. G.}, + title = {The Coast Salish of British Columbia}, + address = {Eugene}, + year = {1955}, + key = {Barnett (1955)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Musqueam [musq1240], Pentlatch [pent1242], Squamish [squa1248], West Saanich [saan1246]} +} +@book{barnett1960, + author = {Barnett, H. G.}, + title = {Being a Palauan}, + address = {New York}, + year = {1960}, + key = {Barnett (1960)}, + lgcode = {Palauans [pala1344]} +} +@book{barnett1968, + author = {Barnett, Homer G.}, + title = {The Nature and Function of the Potlatch}, + publisher = {Department of Anthropology, University of Oregon}, + address = {Eugene, Ore.}, + year = {1968}, + key = {Barnett (1968)}, + lgcode = {Haisla [hais1244], North Tlingit [tlin1245], South Tlingit [tlin1245], Tsimshian [nucl1649]}, + note = {Originally published in 1938} +} +@book{barnouw1950, + author = {Barnouw, Victor}, + title = {Acculturation and personality among the Wisconsin Chippewa}, + series = {American Anthropological Association, Memoir}, + volume = {72}, + year = {1950}, + key = {Barnouw (1950)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@book{barrau1956, + author = {Barrau, J.}, + title = {L'agriculture viviere autochtone}, + address = {Noumea}, + year = {1956}, + key = {Barrau (1956)}, + lgcode = {Ajie [ajie1238]} +} +@book{barrett1908, + author = {Barrett, S. A.}, + title = {The Ethno-geography of the Pomo and Neighboring Indians}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {6}, + pages = {1-332}, + year = {1908}, + url = {https://archive.org/details/ethnogeographyp02barrgoog}, + key = {Barrett (1908)}, + lgcode = {Central Sierra Miwok [cent2140], Eastern Pomo [east2545], Kashaya Pomo [kash1280], Northern Pomo [nort2966], Patwin [patw1250], Wappo [wapp1239], Wintu [nucl1651]} +} +@article{barrett1910, + author = {Barrett, Samuel A.}, + title = {The Material Culture of the Klamath Lake and Modoc Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {5}, + number = {4}, + pages = {239-292}, + year = {1910}, + url = {https://archive.org/details/materialcultureo00barrrich}, + key = {Barrett (1910)}, + lgcode = {Klamath [klam1254], Modoc [klam1254]} +} +@article{barrett1911a, + author = {Barrett, S. A.}, + title = {The dream dance of the Chippewa and Menominee Indians of northern Wisconsin}, + journal = {Bulletin of the Public Museum of the City of Milwaukee}, + address = {Milwaukee, Wisconsin}, + volume = {1}, + number = {2}, + pages = {251-406}, + year = {1911}, + key = {Barrett (1911a)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@article{barrett1911b, + author = {Barrett, W. E. H.}, + title = {Notes on the Customs and Beliefs of the Wa-Giriama}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {41}, + pages = {20-28}, + year = {1911}, + key = {Barrett (1911b)}, + lgcode = {Giriama [giry1241]} +} +@inbook{barrett1916, + author = {Barrett, S. A.}, + title = {Pomo Buildings}, + booktitle = {Holmes Anniversary Volume}, + address = {Washington}, + pages = {1-17}, + year = {1916}, + key = {Barrett (1916)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{barrett1917a, + author = {Barrett, S. A.}, + title = {Ceremonies of the Pomo Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {12}, + pages = {397-441}, + year = {1917}, + key = {Barrett (1917a)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{barrett1917b, + author = {Barrett, S. A.}, + title = {The Washo Indians}, + journal = {Bull. Publ. Mus. Milwaukee}, + volume = {2}, + pages = {1-52}, + year = {1917}, + key = {Barrett (1917b)}, + lgcode = {Washo [wash1253]} +} +@article{barrett1925, + author = {Barrett, S. A.}, + title = {The Cayapa Indians of Ecuador}, + journal = {Indian Notes and Monographs}, + publisher = {New York: Haye Foundation}, + volume = {40}, + pages = {1-476}, + year = {1925}, + glottolog_ref = {fabreall2009ann:Barbacoa_cha07}, + key = {Barrett (1925)}, + lgcode = {Chachi [chac1249]} +} +@article{barrett1952, + author = {Barrett, S. A.}, + title = {Material Aspects of Pomo Culture}, + journal = {Bulletin, Public Museum of the City of Milwaukee}, + volume = {20}, + pages = {1-508}, + year = {1952}, + key = {Barrett (1952)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@article{barrettandgifford1933, + author = {Barrett, Samuel A., and Edward W. Gifford}, + title = {Miwok Material Culture: Indian Life of the Yosemite Region}, + journal = {Bulletin of the Milwaukee Public Museum}, + volume = {2}, + number = {4}, + pages = {117-276}, + year = {1933}, + url = {http://www.yosemite.ca.us/library/miwok_material_culture/miwok_material_culture.pdf}, + key = {Barrett and Gifford (1933)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@book{barrow180104, + author = {Barrow, J.}, + title = {An Account of Travels into the Interior of South Africa. 2V}, + address = {London}, + year = {1801-04}, + key = {Barrow (1801-04)}, + lgcode = {/Xam [xamm1241]} +} +@book{barth1953, + author = {Barth, F.}, + title = {Principles of Social Organization in Southern Kurdistan}, + address = {Oslo}, + series = {Bulletin of the University Ethnographic Museum}, + volume = {7}, + year = {1953}, + key = {Barth (1953)}, + lgcode = {Kurd [cent1972]} +} +@article{barth1956a, + author = {Barth, F.}, + title = {Ecologic Relationships of Ethnic Groups in Swat}, + journal = {American Anthropologist}, + volume = {58}, + pages = {1079-1089}, + year = {1956}, + key = {Barth (1956a)}, + lgcode = {Yusufzai [yusu1238]} +} +@book{barth1956b, + author = {Barth, F.}, + title = {Indus and Swat Kohistan}, + address = {Oslo}, + year = {1956}, + key = {Barth (1956b)}, + lgcode = {Kohistani [indu1241]} +} +@article{barth1959, + author = {Barth, F.}, + title = {Segmentary Opposition and the Theory of Games: A Study of Pathan Organization}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {89}, + pages = {5-21}, + year = {1959}, + key = {Barth (1959)}, + lgcode = {Yusufzai [yusu1238]} +} +@book{barth1961, + author = {Barth, F. K.}, + title = {Nomads of South Persia. The Basseri Tribe of the Khamseh Confederacy}, + publisher = {George Allen & Unwin}, + address = {London}, + year = {1961}, + key = {Barth (1961)}, + lgcode = {Basseri [bass1257]} +} +@incollection{barth1964, + author = {Barth, F. K.}, + editor = {R. Firth and B. S. Yamey}, + title = {Capital, Investment and Social Structure of a Pastoral Nomadic Group}, + booktitle = {Capital, Saving and Credit in Peasant Societies}, + address = {Chicago}, + pages = {69-81}, + year = {1964}, + key = {Barth (1964)}, + lgcode = {Basseri [bass1257]} +} +@incollection{barth1967, + author = {Barth, F.}, + editor = {R. Firth}, + title = {Economic Spheres in Darfur}, + booktitle = {Themes in Economic Anthropology}, + series = {Association for Social Anthropology Monographs}, + volume = {6}, + pages = {149-174}, + year = {1967}, + key = {Barth (1967)}, + lgcode = {Fur [furr1244]} +} +@article{bartlett1929, + author = {Bartlett, H. H. IV-1.}, + title = {Color nomenclature in Batak and Malay}, + journal = {Michigan Academy of Science, Arts, and Letters, Papers}, + volume = {10}, + pages = {1-52}, + year = {1929}, + key = {Bartlett (1929)}, + lgcode = {Toba Batak [bata1289]} +} +@article{barton1919, + author = {Barton, R. F.}, + title = {Ifugao Law}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {15}, + pages = {1-186}, + year = {1919}, + key = {Barton (1919)}, + lgcode = {Ifugao [tuwa1243]} +} +@article{barton1921, + author = {Barton, J.}, + title = {Notes on the Suk Tribe of Kenia Colony}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {51}, + pages = {82-100}, + year = {1921}, + glottolog_ref = {eballiso2009:25695}, + key = {Barton (1921)}, + lgcode = {Hill Suk [west2492]} +} +@article{barton1922, + author = {Barton, R. F.}, + title = {Ifugao Economics}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {15}, + number = {5}, + pages = {385-446}, + year = {1922}, + key = {Barton (1922)}, + lgcode = {Ifugao [tuwa1243]} +} +@article{barton1923, + author = {Barton, J.}, + title = {Notes on the Kipsikis or Lumbwa Tribe}, + journal = {Jounr. Roy. Anth. Inst.}, + volume = {53}, + pages = {42-78}, + year = {1923}, + key = {Barton (1923)}, + lgcode = {Kipsigis [kips1239]} +} +@book{barton1930, + author = {Barton, R. F.}, + title = {The Half-Way Sun}, + address = {New York}, + year = {1930}, + key = {Barton (1930)}, + lgcode = {Ifugao [tuwa1243]} +} +@book{barton1938, + author = {Barton, R. F.}, + title = {Philippine Pagans}, + address = {London}, + year = {1938}, + key = {Barton (1938)}, + lgcode = {Ifugao [tuwa1243]} +} +@article{barton1946, + author = {Barton, R. F.}, + title = {The Religion of the Ifugaos}, + journal = {Memoirs of the American Anthropological Association}, + volume = {65}, + pages = {1-219}, + year = {1946}, + key = {Barton (1946)}, + lgcode = {Ifugao [tuwa1243]} +} +@book{barton1949, + author = {Barton, R. F.}, + title = {The Kalingas}, + address = {Chicago}, + year = {1949}, + key = {Barton (1949)}, + lgcode = {Kalinga [lubu1243]} +} +@article{bartram1953, + author = {Bartram, W.}, + title = {Observations on the Creek and Cherokee Indians}, + journal = {Transactions of the American Ethnological Society}, + volume = {3}, + pages = {1-81}, + year = {1953}, + key = {Bartram (1953)}, + lgcode = {Muscogee [cree1270]} +} +@article{bascom1942, + author = {Bascom, W. R.}, + title = {The Principle of Seniority in the Social Structure of the Yoruba}, + journal = {American Anthropologist}, + volume = {44}, + pages = {37-46}, + year = {1942}, + key = {Bascom (1942)}, + lgcode = {Ife [ifee1241]} +} +@article{bascom1944, + author = {Bascom, W. R.}, + title = {The Sociological Role of the Yoruba Cult-Group}, + journal = {Mem. Amer. Anth. Assoc.}, + publisher = {Menasha WI}, + series = {Memoirs of the American Anthropological Ass.}, + volume = {63}, + pages = {1-175}, + year = {1944}, + glottolog_ref = {eballiso2009:2024}, + key = {Bascom (1944)}, + lgcode = {Ife [ifee1241]} +} +@article{bascom1965, + author = {Bascom, W. R.}, + title = {Ponape: A Pacific Economy in Transition}, + journal = {Anth. Rec.}, + volume = {22}, + pages = {1-149}, + year = {1965}, + key = {Bascom (1965)}, + lgcode = {Ponapeans [pohn1238]} +} +@article{basedow1907, + author = {Basedow, H.}, + title = {Anthropological Notes on the Western Coastal Tribes of the Northern Territory of South Australia}, + journal = {Transactions and Proceedings and Report of the Royal Society of South Australia}, + volume = {31}, + pages = {1-62}, + year = {1907}, + glottolog_ref = {hh:ew:Basedow:WCoastal}, + key = {Basedow (1907)}, + lgcode = {Larikia [lara1258]} +} +@article{basedow1913, + author = {Basedow, H.}, + title = {Notes on the Natures of Bathurst Island}, + journal = {Journal of the Anthropology Institute}, + volume = {48}, + pages = {291-323}, + year = {1913}, + key = {Basedow (1913)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{basehart1960, + author = {Basehart, Harry W.}, + title = {Mescalero Apache Subsistence Patterns and Socio-Political Organization}, + publisher = {The University of New Mexico Mescalero-Chiricahua Land Claims Project (mimeograph)}, + address = {Albuquerque, New Mexico}, + year = {1960}, + key = {Basehart (1960)}, + lgcode = {Mescalero [mesc1238]} +} +@article{basehart1967, + author = {Basehart, Harry W.}, + title = {The Resource Holding Corporation among the Mescalero Apache}, + journal = {Southwestern Journal of Anthropology}, + volume = {23}, + pages = {277-291}, + year = {1967}, + key = {Basehart (1967)}, + lgcode = {Mescalero [mesc1238]} +} +@article{basehart1970, + author = {Basehart, Harry W.}, + title = {Mescalero Apache Band Organization and Leadership}, + journal = {Southwestern Journal of Anthropology}, + volume = {26}, + pages = {87-106}, + year = {1970}, + key = {Basehart (1970)}, + lgcode = {Mescalero [mesc1238]} +} +@incollection{basehart1971, + author = {Basehart, Harry W.}, + editor = {Basso and Opler}, + title = {Mescalero Apache Band Organization and Leadership}, + booktitle = {Apachean Culture History and Ethnology}, + pages = {35-49}, + year = {1971}, + key = {Basehart (1971)}, + lgcode = {Mescalero [mesc1238]} +} +@misc{basehart1972, + author = {Basehart, H. W.}, + title = {Band Organization and Leadership among the Mescalero Apache}, + year = {1972}, + howpublished = {Manuscript, Department of Anthropology, Southern Methodist University, Dallas}, + key = {Basehart (1972)}, + lgcode = {Chiricahua [mesc1238]} +} +@misc{basehartperscomm1972, + author = {Basehart, H. W.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Basehart pers. comm. (1972)}, + lgcode = {Lipan Apache [lipa1241]} +} +@book{basso1969, + author = {Basso, Keith H.}, + title = {Western Apache Witchcraft}, + series = {Anthropological Papers of the University of Arizona}, + volume = {15}, + pages = {1-75}, + year = {1969}, + key = {Basso (1969)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{basso1970, + author = {Basso, Keith H.}, + title = {The Cibecue Apache}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1970}, + key = {Basso (1970)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{bassoandopler1971, + editor = {Basso, Keith H., and Morris E. Opler}, + title = {Apachean Culture History and Ethnology}, + series = {Anthropological Papers of the University of Arizona}, + volume = {21}, + pages = {1-168}, + year = {1971}, + key = {Basso and Opler (1971)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@phdthesis{bastien1951, + author = {Bastien, Rémy}, + title = {La familia rural haitiana, Valle de Marbial}, + school = {Universidad Nacional Autonoma de Mexico}, + year = {1951}, + key = {Bastien (1951)}, + lgcode = {Haitians [hait1244]} +} +@book{bastien1985, + author = {Bastien, Remy}, + title = {Le paysan haitien et sa famille. Vallée de Marbial}, + publisher = {ACCT-Karthala}, + address = {Paris}, + year = {1985 [1951]}, + key = {Bastien (1985)}, + lgcode = {Haitians [hait1244]} +} +@book{batchelor1895, + author = {Batchelor, J.}, + title = {The Ainu of Japan}, + address = {New York}, + year = {1895}, + key = {Batchelor (1895)}, + lgcode = {Ainu [ainu1240]} +} +@book{batchelor1927, + author = {Batchelor, J.}, + title = {Ainu Life and Lore: Echos of a Departing Race}, + publisher = {Kyobunkwan}, + address = {Tokyo}, + year = {1927}, + key = {Batchelor (1927)}, + lgcode = {Ainu [ainu1240]} +} +@article{bateson1932, + author = {Bateson, G.}, + title = {Social Structure of the Iatmul People}, + journal = {Oceania}, + volume = {2}, + pages = {245-291, 401-451}, + year = {1932}, + key = {Bateson (1932)}, + lgcode = {Iatmul [iatm1242]} +} +@book{bateson1936, + author = {Bateson, G.}, + title = {Naven}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + pages = {312}, + year = {1936}, + glottolog_ref = {hh:e:Bateson:Naven}, + key = {Bateson (1936)}, + lgcode = {Iatmul [iatm1242]} +} +@book{baudin1961, + author = {Baudin, L.}, + title = {A Socialist Empire: The Incas of Peru}, + address = {New York}, + year = {1961}, + key = {Baudin (1961)}, + lgcode = {Inca [cusc1236]} +} +@book{baudin1962, + author = {Baudin, L.}, + title = {Daily Life in Peru}, + address = {New York}, + year = {1962}, + key = {Baudin (1962)}, + lgcode = {Inca [cusc1236]} +} +@book{baumann1888, + author = {Baumann, O.}, + title = {Eine Afrikanische Tropeninsel: Fernando Po und die Bubi}, + address = {Wien}, + year = {1888}, + key = {Baumann (1888)}, + lgcode = {Bubi [bube1242]} +} +@book{baumann1891, + author = {Baumann, O.}, + title = {Usambara und seine Nachbargebiete}, + address = {Berlin}, + year = {1891}, + key = {Baumann (1891)}, + lgcode = {Digo [digo1243], Pare [asut1235], Zigula [zigu1242]} +} +@book{baumann1894, + author = {Baumann, O.}, + title = {Durch Massailand zur Nilquelle: Reisen und Forschungen der Massai-Expedition des deutschen Antisklaverei-Komite in den Jahren 1891-1893}, + publisher = {Dietrich Reimer}, + address = {Berlin}, + pages = {385}, + year = {1894}, + glottolog_ref = {hh:hew:Baumann:Massailand}, + key = {Baumann (1894)}, + lgcode = {Goroa [goro1270], Maasi [masa1300], Tatoga [dato1239]} +} +@book{baumann1935, + author = {Baumann, H.}, + title = {Lunda}, + address = {Berlin}, + year = {1935}, + key = {Baumann (1935)}, + lgcode = {Chokwe [chok1245], Luchazi [luch1239], Luimbe [luim1238], Ndembu [lund1266]} +} +@book{baumhoff1958, + author = {Baumhoff, Martin A.}, + title = {California Athabascan Groups}, + series = {University of California Anthropological Records}, + volume = {16}, + pages = {157-238}, + year = {1958}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar016-006.pdf}, + key = {Baumhoff (1958)}, + lgcode = {Hupa [hupa1239], Mattole-Bear River [matt1238], Nongatl [wail1244], Sinkyone [wail1244]} +} +@article{baumhoff1963, + author = {Baumhoff, Martin A.}, + title = {Ecological Determinants of Aboriginal California Populations}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {49}, + number = {2}, + pages = {155-236}, + year = {1963}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp049-003.pdf}, + key = {Baumhoff (1963)}, + lgcode = {Central Sierra Miwok [cent2140], Coast Yuki [yuki1243], Eastern Pomo [east2545], Hupa [hupa1239], Karuk [karo1304], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], Mattole-Bear River [matt1238], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Miwok [nort2968], Northern Pomo [nort2966], Southern Miwok [sout2985], Southern Pomo [sout2984], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Tolowa [tolo1259], Wappo [wapp1239], Wiyot [wiyo1248], Wukchumni [tule1245], Yuki [yuki1243], Yurok [yuro1248]} +} +@article{baumstark1900, + author = {Baumstark}, + title = {Die Warangi}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {13}, + pages = {45-60}, + year = {1900}, + glottolog_ref = {eballiso2009:3022}, + key = {Baumstark (1900)}, + lgcode = {Rangi [lang1320]} +} +@book{baxterandbutt1953, + author = {Baxter, P. T. W. and A. Butt}, + title = {The Azande, and related peoples of the Anglo-Egyptian Sudan and Belgian Congo}, + publisher = {International African Institute}, + address = {London}, + series = {Ethnographic Survey of Africa: East Central Africa: Part IX}, + pages = {152}, + year = {1953}, + glottolog_ref = {hh:he:BaxterButt:Azande}, + key = {Baxter and Butt (1953)}, + lgcode = {Azande [zand1248], Bongo [bong1285], Lendu [lend1245], Logo [logo1259], Lugbara [lugb1240], Madi [madi1260], Moru [moru1253]} +} +@article{beaglehole1937, + author = {Beaglehole, E.}, + title = {Notes on Hopi Economic Life}, + journal = {Yale Univ. Publ. Anth.}, + volume = {15}, + pages = {1-88}, + year = {1937}, + key = {Beaglehole (1937)}, + lgcode = {Hopi [hopi1249]} +} +@book{beagleholeandbeaglehole1935, + author = {Beaglehole, Ernest, and Pearl Beaglehole}, + title = {Hopi of the second mesa}, + series = {American Anthropological Association Memoir}, + volume = {44}, + year = {1935}, + key = {Beaglehole and Beaglehole (1935)}, + lgcode = {Hopi [hopi1249]} +} +@article{beagleholeandbeaglehole1938, + author = {Beaglehole, E., and P. Beaglehole.}, + title = {Ethnology of Pukapuka}, + journal = {Bull. Bishop Mus.}, + volume = {110}, + pages = {1-419}, + year = {1938}, + key = {Beaglehole and Beaglehole (1938)}, + lgcode = {Pukapukans [puka1242]} +} +@article{beagleholeandbeaglehole1941, + author = {Beaglehole, E., and P. Beaglehole.}, + title = {Pangai Village in Tonga}, + journal = {Mem. Polynesian Soc.}, + volume = {18}, + pages = {1-145}, + year = {1941}, + key = {Beaglehole and Beaglehole (1941)}, + lgcode = {Tongans [tong1325]} +} +@article{beals1933, + author = {Beals, R. L.}, + title = {Ethnology of the Nisenan}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {31}, + pages = {335-414}, + year = {1933}, + key = {Beals (1933)}, + lgcode = {Nisenan [nise1244], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244]} +} +@article{beals1943, + author = {Beals, R. L.}, + title = {Aboriginal Culture of the Cahita Indians}, + journal = {Ibero-Americana}, + volume = {19}, + pages = {1-86}, + year = {1943}, + key = {Beals (1943)}, + lgcode = {Yaqui [yaqu1251]} +} +@article{beals1945, + author = {Beals, R. L.}, + title = {Ethnology of the Western Mixe}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {42}, + pages = {1-176}, + year = {1945}, + key = {Beals (1945)}, + lgcode = {Mixe [isth1238]} +} +@article{bealsandhester1958, + author = {Beals, R. L. and J. A. Hester.}, + title = {A Lacustrine Economy in California}, + journal = {Miscellanea Paul Rivet Octogenario Dictata}, + address = {Mexico}, + volume = {1}, + pages = {211-217}, + year = {1958}, + key = {Beals and Hester (1958)}, + lgcode = {Southern Valley Yokuts [vall1251], Wukchumni [tule1245]} +} +@book{bean1972, + author = {Bean, L. J.}, + title = {Mukat's People: The Cahuilla Indians of Southern California}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1972}, + key = {Bean (1972)}, + lgcode = {Cahuilla (Desert) [cahu1264]} +} +@book{beardsleyetal1959, + author = {Beardsley, R. K. and J. W. Hall and R. E. Ward.}, + title = {Village Japan}, + address = {Chicago}, + year = {1959}, + key = {Beardsley et al. (1959)}, + lgcode = {Japanese [nucl1643]} +} +@article{beaton1936, + author = {Beaton, A. C.}, + title = {The Bari}, + journal = {Sudan Notes and Records}, + volume = {19}, + pages = {109-145}, + year = {1936}, + key = {Beaton (1936)}, + lgcode = {Bari [ligo1238]} +} +@article{beaton1939, + author = {Beaton, A.C.}, + title = {Fur rain cults and ceremonies}, + journal = {Sudan Notes and Records}, + volume = {22}, + number = {2}, + pages = {181-203}, + year = {1939}, + key = {Beaton (1939)}, + lgcode = {Fur [furr1244]} +} +@article{beaton1948, + author = {Beaton, A. C.}, + title = {The Fur}, + journal = {Sudan Notes and Records}, + volume = {29}, + pages = {1-39}, + year = {1948}, + glottolog_ref = {eballiso2009:31938}, + key = {Beaton (1948)}, + lgcode = {Fur [furr1244]} +} +@article{beattie1957, + author = {Beattie, J. H. N.}, + title = {Nyoro Kinship, Marriage and Affinity}, + journal = {Africa}, + volume = {27; 28}, + pages = {317-340; 1-22}, + year = {1957-58}, + key = {Beattie (1957-58)} +} +@book{beattie1960, + author = {Beattie, J. H. N.}, + title = {Bunyoro}, + address = {New York}, + year = {1960}, + key = {Beattie (1960)}, + lgcode = {Nyoro [nyor1246]} +} +@book{beattie1965, + author = {Beattie, J. H. N.}, + title = {Understanding an African kingdom: Bunyuro}, + publisher = {Holt, Rinehart & Winston}, + address = {New York}, + year = {1965}, + glottolog_ref = {eballiso2009:14859}, + key = {Beattie (1965)}, + lgcode = {Nyoro [nyor1246]} +} +@article{beaucorps1921, + author = {Beaucorps, R. de.}, + title = {Les Basongo de la Luniunga et de la Gobari}, + journal = {Mem. Inst. Roy. Colon. Belge}, + volume = {10}, + pages = {iii, 1-176}, + year = {1921}, + key = {Beaucorps (1921)}, + lgcode = {Songo [song1299]} +} +@book{beaucorps1933, + author = {Beaucorps, R. de.}, + title = {Les bayansi du bas-Kwilu}, + publisher = {Louvain: Ed. de l'Aucarn}, + address = {Louvain}, + series = {Collection africana}, + volume = {1}, + year = {1933}, + glottolog_ref = {eballiso2009:52784}, + key = {Beaucorps (1933)}, + lgcode = {Yanzi [yans1239]} +} +@article{beaucorps1951, + author = {Beaucorps, R. de.}, + title = {L'evolution economique chez les Basongo de la Gobari}, + journal = {Mem. Inst. Roy. Colon. Belge, Sect. Sci. Mor. Polit.}, + volume = {20}, + pages = {iv, 1-68}, + year = {1951}, + key = {Beaucorps (1951)}, + lgcode = {Songo [song1299]} +} +@article{becker1909, + author = {Becker, C.}, + title = {Die Nongkrem-Puja in den Khasi-ergen (Assam)}, + journal = {Anthropos}, + volume = {4}, + pages = {892-902}, + year = {1909}, + key = {Becker (1909)}, + lgcode = {Khasi [khas1269]} +} +@book{beckerdonner1944, + author = {Becker-Donner, E.}, + title = {Über zwei Kruvölkerstämme: Kran und Grebo}, + publisher = {Wien}, + series = {Wiener Beiträge zur Kulturgeschichte und Linguisti}, + volume = {6}, + pages = {1-70}, + year = {1944}, + glottolog_ref = {weball:1957}, + key = {Becker-Donner (1944)}, + lgcode = {Krahn [west2488]} +} +@article{bee1963, + author = {Bee, R. L.}, + title = {Changes in Yuma Social Organization}, + journal = {Ethnology}, + volume = {2}, + pages = {207-227}, + year = {1963}, + key = {Bee (1963)}, + lgcode = {Quechan [quec1382]} +} +@book{beech1911, + author = {Beech, M. W. H.}, + title = {The Suk: their language and folklore}, + publisher = {Clarendon Press}, + address = {Oxford}, + year = {1911}, + glottolog_ref = {eballiso2009:1276}, + key = {Beech (1911)}, + lgcode = {Hill Suk [west2492], Plains Suk [east2420]} +} +@article{behr1893, + author = {Behr, H. F. von.}, + title = {Die Völker zwischen Rufiji und Ruvuma}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {6}, + pages = {69-87}, + year = {1893}, + glottolog_ref = {eballiso2009:41152}, + key = {Behr (1893)}, + lgcode = {Makonde [mako1251]} +} +@book{beidelman1967, + author = {Beidelman, T. C.}, + title = {The Matrilineal Peoples of Eastern Tanzania}, + address = {London}, + year = {1967}, + key = {Beidelman (1967)}, + lgcode = {Kaguru [kagu1239], Luguru [lugu1238], Ngulu [ngul1246], Zigula [zigu1242]} +} +@book{beitipa1995, + author = {Beitipa, L.}, + title = {The Livs of the River Gauja}, + address = {Turaida}, + year = {1995}, + key = {Beitipa (1995)}, + lgcode = {Livs [livv1244]} +} +@article{bel1908, + author = {Bel, A.}, + title = {La population musulmane de Tlemeen}, + journal = {Rev. Et. Ethnog. Sociol.}, + volume = {1}, + pages = {201-225, 417-447}, + year = {1908}, + key = {Bel (1908)}, + lgcode = {Algerians [algi1247]} +} +@book{belgrave1923, + author = {Belgrave, C. D.}, + title = {Siwa, the Oasis of Jupiter Ammon}, + address = {London}, + year = {1923}, + key = {Belgrave (1923)}, + lgcode = {Siwans [siwi1239]} +} +@book{belitserandkotkova1963, + editor = {Belitser, V. N., and K. A. Kotkova}, + title = {Issledovanija po material'noj kul'ture mordovskogo naroda (The Mordva Material Culture)}, + address = {Moscow}, + year = {1963}, + key = {Belitser and Kotkova (1963)}, + lgcode = {Erzya Mordvins [erzy1239]} +} +@book{bell1924, + author = {Bell, C.}, + title = {Tibet, Past and Present}, + address = {Oxford}, + year = {1924}, + key = {Bell (1924)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{bell1928, + author = {Bell, C.}, + title = {The People of Tibet}, + address = {Oxford}, + year = {1928}, + key = {Bell (1928)}, + lgcode = {Central Tibetans [dbus1238]} +} +@article{bell1934, + author = {Bell, F. L. S.}, + title = {Report on Field Work in Tanga}, + journal = {Oceania}, + volume = {4}, + pages = {290-309}, + year = {1934}, + key = {Bell (1934)}, + lgcode = {Tangga [tang1348]} +} +@article{bell1938, + author = {Bell, F. L. S.}, + title = {Courtship and Marriage Among the Tanga}, + journal = {Oceania}, + volume = {8}, + pages = {401-418}, + year = {1938}, + key = {Bell (1938)}, + lgcode = {Tangga [tang1348]} +} +@book{bellah1952, + author = {Bellah, R. N.}, + title = {Apache Kinship Systems}, + address = {Cambridge}, + year = {1952}, + key = {Bellah (1952)}, + lgcode = {Jicarilla [jica1244]} +} +@article{belo1936, + author = {Belo, J.}, + title = {A Study of a Balinese Family}, + journal = {American Anthropologist}, + volume = {38}, + pages = {12-31}, + year = {1936}, + key = {Belo (1936)}, + lgcode = {Balinese [bali1278]} +} +@book{belo1970, + author = {Belo, J.}, + title = {Traditional Balinese Culture}, + address = {New York}, + year = {1970}, + key = {Belo (1970)}, + lgcode = {Balinese [bali1278]} +} +@article{belshaw1951, + author = {Belshaw, C. S.}, + title = {Recent History of Mekeo Society}, + journal = {Oceania}, + volume = {22}, + pages = {1-23}, + year = {1951}, + key = {Belshaw (1951)}, + lgcode = {Mekeo [meke1243]} +} +@article{belshaw1955, + author = {Belshaw, C. S.}, + title = {In Search of Wealth}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {80}, + pages = {1-84}, + year = {1955}, + key = {Belshaw (1955)}, + lgcode = {Dahuni [suau1242]} +} +@book{belshaw1957, + author = {Belshaw, C. S.}, + title = {The Great Village: The Economic and Social Welfare of Hanuabada, an Urban Community in Papua}, + address = {London}, + year = {1957}, + key = {Belshaw (1957)}, + lgcode = {Motu [motu1246]} +} +@incollection{belshaw1978, + author = {Belshaw, J.}, + editor = {I. McBryde}, + title = {Population Distribution and the Pattern of Seasonal Movement in Northern New South Wales}, + booktitle = {Records of Times Past: Ethnohistorical Essays on the Culture and Ecology of the New England Tribes}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {65-81}, + year = {1978}, + key = {Belshaw (1978)}, + lgcode = {Badjalang [midd1357]} +} +@article{benedict1924, + author = {Benedict , R. F.}, + title = {A Brief Sketch of Serrano Culture}, + journal = {American Anthropologist}, + volume = {26}, + pages = {366-392}, + year = {1924}, + key = {Benedict (1924)}, + lgcode = {Serrano [serr1255]} +} +@book{benedict1934, + author = {Benedict, Ruth.}, + title = {Patterns of Culture}, + publisher = {Houghton Mifflin Company}, + address = {Boston}, + year = {1934}, + key = {Benedict (1934)}, + lgcode = {Kwakwaka'wakw [kwak1269], Zuni [zuni1245]} +} +@article{benedict1942, + author = {Benedict, P. K.}, + title = {Tibetan and Chinese Kinship Terms}, + journal = {Harvard Journ. As. Stud.}, + volume = {6}, + pages = {313-337}, + year = {1942}, + key = {Benedict (1942)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{benedict1943, + author = {Benedict, R. F.}, + title = {Thai Culture and Behavior}, + address = {Ithaca}, + year = {1943}, + key = {Benedict (1943)}, + lgcode = {Thai [thai1261]} +} +@book{benet1970, + editor = {Benet, S.}, + title = {The Village of Viriatino}, + address = {New York}, + year = {1970}, + key = {Benet (1970)}, + lgcode = {Russians [russ1263]} +} +@book{benhazera1908, + author = {Benhazera, M.}, + title = {Six mois chez les Touareg de Ahaggar}, + address = {Alger}, + year = {1908}, + key = {Benhazera (1908)}, + lgcode = {Tuareg Ahaggar [hogg1238]} +} +@book{bennettandzingg1935, + author = {Bennett, W. C., and R. M. Zingg.}, + title = {The Tarahumara}, + address = {Chicago}, + year = {1935}, + key = {Bennett and Zingg (1935)}, + lgcode = {Tarahumara [cent2131]} +} +@article{berengerferaud1878, + author = {Berenger-Feraud, L. J. B.}, + title = {Etude sur les Soninkes}, + journal = {Rev. Anth., ser. 2}, + volume = {1}, + pages = {586-607}, + year = {1878}, + key = {Berenger-Feraud (1878)}, + lgcode = {Soninke [soni1259]} +} +@book{bergman1927, + author = {Bergman, S.}, + title = {Through Kamchatka by dog-sled and skis}, + publisher = {Seeley, Service & Co.}, + address = {London}, + year = {1927}, + key = {Bergman (1927)}, + lgcode = {Koryak [kory1246]} +} +@article{bernalvilla1954, + author = {Bernal Villa, A.}, + title = {Economía de los Páez}, + journal = {Rev. olomb. Antr.}, + address = {Bogotá}, + volume = {3}, + pages = {291-367}, + year = {1954}, + glottolog_ref = {fabreall2009ann:Nasa3}, + key = {Bernal Villa (1954)}, + lgcode = {Páez [paez1247]} +} +@book{bernard1929, + author = {Bernard, A.}, + title = {L'Algerie}, + address = {Paris}, + year = {1929}, + key = {Bernard (1929)}, + lgcode = {Algerians [algi1247], Hamyan [oran1236]} +} +@book{bernard1966, + author = {Bernard, J.}, + title = {Les bisa du circle de Garango}, + publisher = {Ouagadougou & Paris: Centre Voltaique de la Recherche Scientifique (CVRS); Centre National de la Recherche Scientifique (CNRS)}, + address = {Ouagadougou & Paris}, + series = {Recherches voltaiques: collection de travaux de sciences humaines sur la Haute-Volta}, + volume = {2}, + pages = {1-247}, + year = {1966}, + glottolog_ref = {eballiso2009:57776}, + key = {Bernard (1966)}, + lgcode = {Bisa [biss1248]} +} +@book{bernatzik1933, + author = {Bernatzik, H. A.}, + title = {Aethiopien des Westen. 2V}, + address = {Wien}, + year = {1933}, + key = {Bernatzik (1933)}, + lgcode = {Balanta [bala1301], Banyun [bain1259], Bijogo [bidy1244], Diola [ejam1238], Papel [pape1239]} +} +@book{bernatzik1936, + author = {Bernatzik, H. A.}, + title = {Gari-Gari}, + address = {New York}, + year = {1936}, + key = {Bernatzik (1936)}, + lgcode = {Jur [luwo1239]} +} +@book{bernatzik1938, + author = {Bernatzik, H. A.}, + title = {Overland with the Nomad Lapps}, + address = {New York}, + year = {1938}, + key = {Bernatzik (1938)}, + lgcode = {Sami [nort2671]} +} +@book{bernatzik1944, + author = {Bernatzik, H. A.}, + title = {Im Reiche der Bidyogo}, + address = {Innsbruck}, + year = {1944}, + key = {Bernatzik (1944)}, + lgcode = {Bijogo [bidy1244]}, + unknown = {Mendes Moreira,. 1946. Beve ensaio etnografico acerca dos Bijagos. Bol. Cultural Guine Port. 1: 69-115.} +} +@book{bernatzik1947, + author = {Bernatzik, H. A.}, + title = {Akha und Meau. 2v}, + address = {Innsbruck}, + year = {1947}, + key = {Bernatzik (1947)}, + lgcode = {Akha [akha1245]}, + unknown = {Young, G. 1962. The Hill Tribes of Northern Thailand. Bangkok: Siam Society.} +} +@book{bernatzik1951, + author = {Bernatzik, H. A.}, + title = {The Spirits of the Yellow Leaves}, + publisher = {Robert Hale}, + address = {London}, + year = {1951}, + key = {Bernatzik (1951)}, + lgcode = {Mlabri [mlab1235]}, + note = {In collaboration with E. Bernatzik} +} +@article{berndt1953, + author = {Berndt, R. M.}, + title = {A Day in the Life of a Dieri Man Before Alien Contact}, + journal = {Anthropos}, + volume = {48}, + pages = {171-201}, + year = {1953}, + key = {Berndt (1953)}, + lgcode = {Diyari [dier1241]} +} +@article{berndt1955, + author = {Berndt, R. M.}, + title = {"Murngin" (Wulamba) Social Organization}, + journal = {American Anthropologist}, + volume = {57}, + pages = {84-106}, + year = {1955}, + key = {Berndt (1955)}, + lgcode = {Yolngu, Dhuwal [dhuw1249]} +} +@book{berndt1962, + author = {Berndt, R. M.}, + title = {Excess and Restraint}, + address = {Chicago}, + year = {1962}, + key = {Berndt (1962)}, + lgcode = {Fore [fore1270]} +} +@article{berndtandberndt1944, + author = {Berndt, R. M., and C. H. Berndt}, + title = {A Preliminary Report of Field Work in the Ooldea Region, Western South Australia: Women's Life}, + journal = {Oceania}, + volume = {14}, + pages = {220-249}, + year = {1944}, + key = {Berndt and Berndt (1944)}, + lgcode = {Ooldea [anta1253]} +} +@book{berndtandberndt1970, + author = {Berndt, R. M., and C. H. Berndt}, + title = {Man, land & myth in north Australia: the Gunwinggu people}, + publisher = {Michigan State University Press}, + address = {East Lansing}, + year = {1970}, + glottolog_ref = {ozbib:484}, + key = {Berndt and Berndt (1970)}, + lgcode = {Gunwinygu [gunw1252]} +} +@book{bernotandbernot1958, + author = {Bernot, D., and L. Bernot.}, + title = {Les Khyang des Collines de Chittagong (Pakistan Oriental): Matériaux pour l'étude linguistique des Chin}, + publisher = {Librairie Plon}, + address = {Paris}, + series = {L'Homme: Cahiers de d'Éthnologie, de Géographie et de Linguistique}, + volume = {3}, + pages = {148}, + year = {1958}, + glottolog_ref = {hh:d:BernotBernot:Chin}, + key = {Bernot and Bernot (1958)}, + lgcode = {Chin [asho1236]} +} +@article{berreman1962a, + author = {Berreman, G. D.}, + title = {Pahari Polyandry}, + journal = {American Anthropologist}, + volume = {64}, + pages = {60-75}, + year = {1962}, + key = {Berreman (1962a)}, + lgcode = {Pahari [maha1287]} +} +@article{berreman1962b, + author = {Berreman, G. D.}, + title = {Sib and Clan Among the Pahari of North India}, + journal = {Ethnology}, + volume = {1}, + pages = {524-528}, + year = {1962}, + key = {Berreman (1962b)}, + lgcode = {Pahari [maha1287]} +} +@book{berreman1963, + author = {Berreman, G. D.}, + title = {Hindus of the Himalayas}, + address = {Berkeley and Los Angeles}, + year = {1963}, + key = {Berreman (1963)}, + lgcode = {Pahari [maha1287]} +} +@book{bertrand1899, + author = {Bertrand, A.}, + title = {The Kingdom of the Barotsi}, + address = {London}, + year = {1899}, + key = {Bertrand (1899)}, + lgcode = {Lozi [lozi1239]} +} +@article{bertrand1920, + author = {Bertrand.}, + title = {Quelques notes sur la vie politique, le developpement, la decadence des petites societes Bantou du bassin central du Congo}, + journal = {Rev. Inst. Sociol., Inst. Solvay}, + volume = {1}, + pages = {i, 74-91}, + year = {1920}, + key = {Bertrand (1920)}, + lgcode = {Lokele [kele1255]} +} +@book{bessaignet1958, + author = {Bessaignet, P.}, + title = {Tribesmen of the Chittagong Hill Tracts}, + publisher = {Asiatic Society of Pakistan.}, + address = {Dacca}, + series = {Asiatic Society of Pakistan, Publications}, + volume = {1}, + pages = {iii, 109, illus., map}, + year = {1958}, + glottolog_ref = {sala:625}, + key = {Bessaignet (1958)}, + lgcode = {Chakma [chak1266], Mogh [rakh1245]} +} +@book{best1924, + author = {Best, E.}, + title = {The Maori. 2v}, + address = {Wellington}, + year = {1924}, + key = {Best (1924)}, + lgcode = {Māori [maor1246]} +} +@book{best1925, + author = {Best, E.}, + title = {Maori Agriculture}, + address = {Wellington}, + year = {1925}, + key = {Best (1925)}, + lgcode = {Māori [maor1246]} +} +@book{best1952, + author = {Best, E.}, + title = {The Maori as He Was}, + address = {Wellington}, + year = {1952}, + key = {Best (1952)}, + lgcode = {Māori [maor1246]} +} +@book{best1979a, + author = {Best, Elsdon}, + title = {The Maori. Vol.I}, + year = {1979}, + howpublished = {reprint of 1924 ed.}, + key = {Best (1979a)}, + lgcode = {Māori [maor1246]} +} +@book{best1979b, + author = {Best, Elsdon}, + title = {The Maori. Vol.II}, + year = {1979}, + howpublished = {reprint of 1924 ed.}, + key = {Best (1979b)}, + lgcode = {Māori [maor1246]} +} +@misc{bestnd, + author = {Best, O. H.}, + title = {Burmawa of Kanam}, + howpublished = {Manuscript}, + key = {Best (nd)}, + lgcode = {Burmawa [bogh1241]} +} +@incollection{bhanu1982, + author = {Bhanu, B. A.}, + editor = {P. K. Misra and K. C. Malhotra}, + title = {The Nomadic Cholanaickans of Kerala: An Analysis of Their Movements}, + booktitle = {Nomads in India}, + publisher = {Anthropological Survey of India}, + address = {Calcutta}, + pages = {215-226}, + year = {1982}, + key = {Bhanu (1982)}, + lgcode = {Cholanaikkan [jenn1240]} +} +@incollection{bhanu1992, + author = {Bhanu, B. A.}, + editor = {M. J. Casimir and A. Rao}, + title = {Boundaries, obligations and reciprocity: levels of territoriality among the Cholanaickan of south India}, + booktitle = {Mobility and territoriality: social and spatial boundaries among foragers, fishers, pastoralists and peripatetics}, + publisher = {Berg}, + address = {Oxford}, + pages = {29-54}, + year = {1992}, + key = {Bhanu (1992)}, + lgcode = {Cholanaikkan [jenn1240]} +} +@book{biddulph1880, + author = {Biddulph, J.}, + title = {Tribes of the Hindoo-Koosh}, + publisher = {Office of Superintendent Printing}, + address = {Calcutta}, + pages = {364}, + year = {1880}, + glottolog_ref = {hh:hewtyp:Biddulph:Hindoo-Koosh}, + key = {Biddulph (1880)}, + lgcode = {Shina [shin1264]} +} +@book{bieber192023, + author = {Bieber, F. J.}, + title = {Kaffa. 2v}, + address = {Münster}, + year = {1920-23}, + key = {Bieber (1920-23)}, + lgcode = {Kafa [kafa1242]} +} +@incollection{biernoff1979, + author = {Biernoff , D.}, + editor = {M. Heppell}, + title = {Traditional and Contemporary Structures and Settlement in Eastern Arnhem Land with Particular Reference to the Nunggubuyu}, + booktitle = {A Black Reality—Aboriginal Camps and Housing in Remote Australia}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {153-179}, + year = {1979}, + key = {Biernoff (1979)}, + lgcode = {Nunggubuyu [nung1290]} +} +@article{biesele1972, + author = {Biesele, M.}, + title = {Hunting in semi-arid areas - the Kalahari Bushmen Today}, + journal = {Botswana Notes and Records (special ed.)}, + year = {1972}, + key = {Biesele (1972)}, + lgcode = {!Kung [juho1239]} +} +@phdthesis{biesele1975, + author = {Biesele, M.}, + title = {Folklore and ritual of !Kung hunter-gatherers}, + school = {Harvard}, + year = {1975}, + glottolog_ref = {eballiso2009:34947}, + key = {Biesele (1975)}, + lgcode = {!Kung [juho1239]} +} +@incollection{biesele1976, + author = {Biesele, M.}, + editor = {Lee, Richard Borshay and DeVore, Irven}, + title = {Aspects of !Kung folklore}, + booktitle = {Kalahari Hunter-Gatherers: Studies of the !Kung San and their Neighbours}, + publisher = {Harvard Univ. Press}, + address = {Cambridge MA & London}, + pages = {302-324}, + year = {1976}, + glottolog_ref = {eballiso2009:33436}, + key = {Biesele (1976)}, + lgcode = {!Kung [juho1239]} +} +@book{bikbulatov1964, + author = {Bikbulatov, N. V.}, + title = {Sistema rodstva bashkir (Kin System of the Bashkir)}, + address = {Moscow}, + year = {1964}, + key = {Bikbulatov (1964)}, + lgcode = {Bashkir [bash1264]} +} +@incollection{bikbulatov1980, + author = {Bikbulatov, N. V.}, + editor = {R. G. Kuzeev and N. V. Bikbulatov}, + title = {Istoricheskoer azvitieb ashkirskojs istemyr odstva (Historical Development of the Bashkir Kin System)}, + booktitle = {Obychai i kul'tumo-bytovye traditsii bashkir (Customs and Everyday Life Cultural Traditions of the Bashkir)}, + address = {Ufa}, + pages = {3-23}, + year = {1980}, + key = {Bikbulatov (1980)}, + lgcode = {Bashkir [bash1264]} +} +@book{bikbulatov1980a, + author = {Bikbulatov, N. V.}, + title = {Bashkirskij aul. Ocherk obshchestvennoj i kul'tumoj zhizni (Bashkir Aul: An Essay on Social and Cultural Life)}, + address = {Ufa}, + year = {1980}, + key = {Bikbulatov (1980a)}, + lgcode = {Bashkir [bash1264]} +} +@book{bikbulatov1981, + author = {Bikbulatov, N. V.}, + title = {Bashkirskajas istemar odstva (BashkirK in System)}, + address = {Moscow}, + year = {1981}, + key = {Bikbulatov (1981)}, + lgcode = {Bashkir [bash1264]} +} +@book{bikbulatovandfatyhova1991, + author = {Bikbulatov, N. V., and F. F. Fatyhova}, + title = {Semejnyj byt bashkir. XIX-XX w. (Family Everyday Life of the Bashkir in the Nineteenth and Twentieth Centuries)}, + address = {Moscow}, + year = {1991}, + key = {Bikbulatov and Fatyhova (1991)} +} +@book{bikbulatovandkuzeev1976, + editor = {Bikbulatov, N. V., and R. G. Kuzeev}, + title = {Etnografija Bashkirii (Ethnography of Bashkiria)}, + address = {Ufa}, + year = {1976}, + key = {Bikbulatov and Kuzeev (1976)}, + lgcode = {Bashkir [bash1264]} +} +@incollection{bikbulatovandpimenov1998, + author = {Bikbulatov, N. V., and V. V. Pimenov.}, + editor = {V. A. Tishkov}, + title = {Bashkiry (The Bashkir)}, + booktitle = {Narody i religii mira. Entsiklopedija (Peoples and Religions of the World. Encyclopedia)}, + address = {Moscow}, + pages = {85-88}, + year = {1998}, + key = {Bikbulatov and Pimenov (1998)}, + lgcode = {Bashkir [bash1264]} +} +@misc{binford1969, + author = {Binford}, + year = {1969}, + howpublished = {field notes 1969 (July)}, + key = {Binford (1969)}, + lgcode = {Noatak Inuit [nort2945]} +} +@misc{binford1971, + author = {Binford, L. R.}, + year = {1971}, + howpublished = {Field notes (Book 3) on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Binford (1971)}, + lgcode = {Nunamiut [nort2944]} +} +@incollection{binford1991a, + author = {Binford, L. R.}, + editor = {W. A. Bois-mier and C. S. Gamble}, + title = {When the Going Gets Tough, the Tough Get Going: Nunamiut Local Groups, Camping Patterns, and Economic Organization}, + booktitle = {Ethnoarchaeological Approaches to Mobile Campsites: Hunter-Gatherer and Pastoralist Case Studies}, + publisher = {International Monographs in Prehistory}, + address = {Ann Arbor, Mich.}, + series = {Ethnoarchaeology Series}, + volume = {1}, + pages = {25-137}, + year = {1991}, + key = {Binford (1991a)}, + lgcode = {Nunamiut [nort2944]} +} +@incollection{binfordandchasko1976, + author = {Binford, L. R., and W. J. Chasko}, + editor = {E. B. Zubrow}, + title = {Nunamiut Demographic History}, + booktitle = {Demographic Anthropology: Quantitative Approaches}, + publisher = {University of New Mexico Press}, + address = {Albuquerque}, + pages = {63-143}, + year = {1976}, + key = {Binford and Chasko (1976)}, + lgcode = {Nunamiut [nort2944]} +} +@misc{binfordfieldnotes1971, + author = {Binford, L. R.}, + year = {1971}, + howpublished = {Field notes (Book 3) on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Binford field notes (1971)}, + lgcode = {Noatak Inuit [nort2945]} +} +@book{binfordfieldnotes1972, + author = {Binford, L. R.}, + title = {An Archaeological Perspective}, + publisher = {Seminar Press}, + address = {New York}, + year = {1972}, + key = {Binford field notes (1972)}, + lgcode = {Noatak Inuit [nort2945]} +} +@misc{binfordfieldnotes1974, + author = {Binford, L. R.}, + year = {1974}, + howpublished = {Field notes (Alyawara, July) on file, Department of Anthropology, Southern Methodist University, Dal-las, Texas.}, + key = {Binford field notes (1974)}, + lgcode = {Alyawara [alya1239]} +} +@misc{binfordfieldnotes1993, + title = {Binford field notes 1993}, + key = {Binford field notes (1993)}, + lgcode = {Northern Aranda [east2379]} +} +@incollection{bird1946, + author = {Bird, J. B.}, + editor = {J. H. Steward}, + title = {The Alacaluf}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + volume = {143}, + number = {1}, + pages = {55-80}, + year = {1946}, + key = {Bird (1946)}, + lgcode = {Alacaluf [qawa1238]} +} +@incollection{bird1983, + author = {Bird, N.}, + editor = {P. Robb}, + title = {Wage-Gathering: SocioPOThoomic Changes and the Case of the Food-Gatheier Naikens of South India}, + booktitle = {Rural South Asia: Linkages, Change and Develop-ment}, + publisher = {Curzon Press}, + address = {London}, + pages = {57-88}, + year = {1983}, + key = {Bird (1983)}, + lgcode = {Nayaka [jenn1240]} +} +@book{bird1988, + author = {Bird, J. B.}, + editor = {J. Hyslop}, + title = {Travels and Archaeology in South Chile}, + publisher = {University of Iowa Press}, + address = {Iowa City}, + year = {1988}, + key = {Bird (1988)}, + lgcode = {Alacaluf [qawa1238]} +} +@incollection{birddavid1987, + author = {Bird-David, N.}, + editor = {P. Hockings}, + title = {Single Persons and Social Cohesion in a HunterGatherer Society}, + booktitle = {Dimensions of Social Life: Essays in Honor of David G. Mandelbaum}, + publisher = {Mouton de Gruyter}, + address = {Berlin}, + pages = {151-166}, + year = {1987}, + key = {Bird-David (1987)}, + lgcode = {Nayaka [jenn1240]} +} +@misc{birdperscomm1970, + author = {Bird}, + year = {1970}, + howpublished = {Pers. comm.}, + key = {Bird pers. comm. (1970)}, + lgcode = {Alacaluf [qawa1238]} +} +@article{birdsell1967, + author = {Birdsell, J. B.}, + title = {Preliminary Data on the Trihybrid Origin of the Australian Aborigines}, + journal = {Archaeology and Physical Anthropology in Oceania}, + volume = {2}, + pages = {100-155}, + year = {1967}, + key = {Birdsell (1967)}, + lgcode = {Mamu [mamu1253]} +} +@book{birketsmith1924, + author = {Birket-Smith, Kaj}, + title = {Ethnography of the Egedesminde district}, + series = {Meddelelser om Gronland}, + volume = {66}, + year = {1924}, + key = {Birket-Smith (1924)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{birketsmith1928a, + author = {Birket-Smith, Kaj}, + title = {The Greenlanders of the Present Day}, + series = {Greenlan}, + volume = {2}, + pages = {1-207}, + year = {1928}, + key = {Birket-Smith (1928a)}, + lgcode = {Kalaallit (West Greenland) [kala1399], Tasiilaq [tunu1234]} +} +@book{birketsmith1928b, + author = {Birket-Smith, Kaj}, + title = {Five Hundred Eskimo Words}, + series = {Rep. Fifth Thule Exp.}, + volume = {3}, + number = {iii}, + pages = {1-64}, + year = {1928}, + key = {Birket-Smith (1928b)}, + lgcode = {Iglulik Inuit [west2618], Inughuit (Northern Greenland) [pola1254]} +} +@book{birketsmith1929, + title = {The Caribou Eskimos}, + publisher = {Nordisk Forlag}, + address = {Copenhagen}, + series = {Rep. Fifth Thule Exp.}, + volume = {5}, + number = {i; ii}, + pages = {1-306; 1-419}, + key = {Birket-Smith (1929)}, + lgcode = {Caribou Inuit [cari1277]} +} +@book{birketsmith1930, + author = {Birket-Smith, Kaj}, + title = {Contributions to Chipewyan Ethnology}, + series = {Rep. Fifth Thule Exp.}, + volume = {5}, + number = {iii}, + pages = {1-113}, + year = {1930}, + key = {Birket-Smith (1930)}, + lgcode = {Dene [chip1261]} +} +@book{birketsmith1953, + author = {Birket-Smith, K.}, + title = {The Chugach Eskimo}, + address = {Copenhagen}, + series = {Nationalmuseets Skrifter, Etnografisk Raekkee}, + volume = {6}, + pages = {1-262}, + year = {1953}, + key = {Birket-Smith (1953)}, + lgcode = {Chugach [chug1254]} +} +@article{birketsmith1956, + author = {Birket-Smith, K.}, + title = {An Ethnological Sketch of Rennell Island}, + journal = {Kong. Danske Videnskab. Selskab, Hist. -Filol. Medd.}, + volume = {35}, + pages = {iii, 1-222}, + year = {1956}, + key = {Birket-Smith (1956)}, + lgcode = {Rennell Islanders [renn1242]} +} +@book{birketsmithanddelaguna1938, + author = {Birket-Smith, K., and F. De Laguna}, + title = {The Eyak Indians of the Copper River Delta, Alaska}, + publisher = {Levin and Munksgaard}, + address = {Copenhagen}, + year = {1938}, + key = {Birket-Smith and De Laguna (1938)}, + lgcode = {Eyak [eyak1241]} +} +@phdthesis{bishop1969, + author = {Bishop, C. A.}, + title = {The Northern Chippewa: An Ethnohistorical Study}, + school = {Department of Anthropology, State University of New York, Buffalo}, + year = {1969}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Bishop (1969)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@incollection{bishop1978, + author = {Bishop, C. A.}, + editor = {C. D. Laughlin, Jr., and I. A. Brady}, + title = {Cultural and Biological Adaptations to Deprivation: The Northern Ojibwa Case}, + booktitle = {Extinction and Survival in Human Populations}, + publisher = {Columbia University Press}, + address = {New York}, + pages = {208-230}, + year = {1978}, + key = {Bishop (1978)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@book{black1960, + author = {Black, C. E.}, + title = {The Transformation of Russian Society}, + address = {Cambridge}, + year = {1960}, + key = {Black (1960)}, + lgcode = {Russians [russ1263]} +} +@book{black1973, + author = {Black, L.}, + title = {The Nivkh (Gilyak) of Sakhalin and the Lower Amur}, + year = {1973}, + key = {Black (1973)}, + lgcode = {Nivkh [gily1242]} +} +@phdthesis{blackburn1971, + author = {Blackburn, R. H.}, + title = {Honey in Okiek personality, culture and society}, + school = {Department of Anthropology, Michigan State University, East Lansing}, + year = {1971}, + glottolog_ref = {eballiso2009:33929}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Blackburn (1971)}, + lgcode = {Dorobo [okie1245]} +} +@book{blackman1927, + author = {Blackman, W. S.}, + title = {The Fellahin of Upper Egypt}, + address = {London}, + year = {1927}, + key = {Blackman (1927)}, + lgcode = {Egyptians [egyp1253]} +} +@book{blackwood1935, + author = {Blackwood, B.}, + title = {Both Sides of Buka Passage}, + address = {Oxford}, + year = {1935}, + key = {Blackwood (1935)}, + lgcode = {Kurtatchi [tinp1237]} +} +@book{bleek1924a, + author = {Bleek, D. F.}, + title = {The Mantis and His Friends}, + publisher = {Maskew Miller}, + address = {Cape Town}, + year = {1924}, + key = {Bleek (1924a)}, + lgcode = {/Xam [xamm1241]} +} +@article{bleek1924b, + author = {Bleek, D. F.}, + title = {Bushman Terms of Relationship}, + journal = {Bantu Studies}, + volume = {2}, + pages = {57-70}, + year = {1924}, + key = {Bleek (1924b)}, + lgcode = {/Xam [xamm1241], Naron [naro1249]} +} +@book{bleek1928, + author = {Bleek, D. F.}, + title = {The Naron: A BuNman Tribe of the Central Kalahari}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1928}, + key = {Bleek (1928)}, + lgcode = {Naron [naro1249]} +} +@article{bleek1929, + author = {Bleek, D. F.}, + title = {Bushmen of Central Angola}, + journal = {Bantu Studies}, + volume = {3}, + pages = {105-125}, + year = {1929}, + key = {Bleek (1929)}, + lgcode = {!Kung [juho1239], Sekele [vase1234]} +} +@article{bleek1931a, + author = {Bleek, D. F.}, + title = {Traces of Former Bushmen Occupation in Tanganyika Territory}, + journal = {South African Journal of Science}, + volume = {28}, + pages = {423-429}, + year = {1931}, + key = {Bleek (1931a)}, + lgcode = {Hadza [hadz1240]} +} +@article{bleek1931b, + author = {Bleek, D. F.}, + title = {The Hadzapi or Watindiga of Tanganyika Territory}, + journal = {Africa}, + volume = {4}, + pages = {273-286}, + year = {1931}, + key = {Bleek (1931b)}, + lgcode = {Hadza [hadz1240]} +} +@book{blohm193133, + author = {Blohm, W.}, + title = {Die Nyamwezi. 3V}, + address = {Bamberg}, + year = {1931-33}, + key = {Blohm (1931-33)}, + lgcode = {Nyamwezi [nyam1276], Sumbwa [sumb1240]} +} +@phdthesis{blundell1975, + author = {Blundell, V. J.}, + title = {Aboriginal Adaptation in Northwest Australia}, + school = {Department of Anthropology, University of Wisconsin, Madison}, + year = {1975}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Blundell (1975)}, + lgcode = {Worrorra [worr1237]} +} +@article{blundell1980, + author = {Blundell, V. J.}, + title = {Hunter-Gatherer Territoriality: Ideology and Behavior in Northwest Australia}, + journal = {Ethnohistory}, + volume = {27}, + number = {2}, + pages = {103-117}, + year = {1980}, + key = {Blundell (1980)}, + lgcode = {Worrorra [worr1237]} +} +@article{blurtonjonesetal1992, + author = {Blurton-Jones, N. G. and L. C. Smith and J. F. O'Connell and K. Hawkes and C. L. Kamuzora}, + title = {Demography of the Hadza: an increasing and high density population of savanna foragers}, + journal = {American Journal of Physical Anthropology}, + volume = {89}, + pages = {159-181}, + year = {1992}, + glottolog_ref = {eballiso2009:34759}, + key = {Blurton-Jones et al. (1992)}, + lgcode = {Hadza [hadz1240]} +} +@inbook{boas1888, + author = {Boas, F.}, + title = {The Central Eskimo}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Annual Reports of the Bureau of American Ethnology}, + volume = {6}, + pages = {390-669}, + year = {1888}, + key = {Boas (1888)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@article{boas1891a, + author = {Boas, F.}, + title = {Physical Characteristics of the Tribes of the North Pacific Coast}, + journal = {Annual Report of the British Association for the Advancement of Science}, + volume = {61}, + pages = {424-449}, + year = {1891}, + key = {Boas (1891a)}, + lgcode = {Alsea [alse1251]} +} +@article{boas1891b, + author = {Boas, F.}, + title = {The Bilqula}, + journal = {Annual Report of the British Association for the Advancement of Science}, + volume = {61}, + pages = {408-424}, + year = {1891}, + key = {Boas (1891b)}, + lgcode = {Nuxalk [bell1243]} +} +@article{boas1895a, + author = {Boas, F.}, + title = {The Indians of British Columbia: Physical Characteristics of the Tribes of the North Pacific Coast, the Tinnch Tribe of Nicola Valley, the Ts'ets'a'ut, theNisk'a', Linguistics of Nisk'a' and Ts'ets'a'ut and Vocabulary of the Tinnch Tribes of Canada}, + journal = {Annual Report of the British Association for the Advancement of Science}, + volume = {65}, + pages = {523-592}, + year = {1895}, + key = {Boas (1895a)}, + lgcode = {Mi'kmaq [mikm1235], Wegamon Ojibwa [seve1241]} +} +@article{boas1895b, + author = {Boas, F.}, + title = {The Social Organization and the Secret Societies of the Kwakiutl Indians}, + journal = {Rep. U. S. Nat. Mus.}, + volume = {1895}, + pages = {311-738}, + year = {1895}, + key = {Boas (1895b)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@article{boas1899, + author = {Boas, F.}, + title = {Anthropometry of the Shoshonean Tribes}, + journal = {American Anthropologist}, + volume = {1}, + pages = {751-758}, + year = {1899}, + key = {Boas (1899)}, + lgcode = {Bannock [bann1248], Kuyuidokado [sout2967], Timponogas [utee1244], Tukudika [nort2955], Uintah Ute [utee1244], Uncompahgre Ute [utee1244], White Knife Shoshoni [west2622]} +} +@article{boas1901, + author = {Boas, F.}, + title = {A}, + journal = {J. Stone's Measurementso f the Natives of Northwestern Territories. Bulletin of the American Museum of Natural History}, + volume = {14}, + pages = {53-68}, + year = {1901}, + key = {Boas (1901)}, + lgcode = {Kutchin [gwic1235], Noatak Inuit [nort2945], Tahltan [tahl1239]} +} +@article{boas190107, + author = {Boas, F.}, + title = {The Eskimo of Baffinland and Hudson Bay}, + journal = {Bull. Amer. Mus. Nat. Hist.}, + volume = {15}, + pages = {1-570}, + year = {1901-07}, + key = {Boas (1901-07)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@article{boas1907, + author = {Boas, F.}, + title = {The Eskimo of Baffin Land and Hudson Bay}, + journal = {Bulletin of the American Museum of Natural History}, + volume = {15}, + year = {1907}, + key = {Boas (1907)}, + lgcode = {Netsilik [nets1241]} +} +@article{boas1909, + author = {Boas, F.}, + title = {The Kwakiutl of Vancouver Island}, + journal = {Mem. Amer. Mus. Nat. Hist.}, + volume = {8}, + pages = {307-515}, + year = {1909}, + key = {Boas (1909)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269]} +} +@article{boas1918, + author = {Boas, F.}, + title = {Kutenai Tales}, + journal = {Bulletins of the Bureau of American Ethnology}, + publisher = {Washington, D.C.: Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + volume = {59}, + pages = {1-387}, + year = {1918}, + glottolog_ref = {hh:t:Boas:Kutenai}, + key = {Boas (1918)}, + lgcode = {Kutenai [kute1249]} +} +@article{boas1922, + author = {Boas, F.}, + title = {Das VerwandtschAftssystem der Vandau}, + journal = {Zeitschrift für Ethnologie}, + volume = {54}, + pages = {41-51}, + year = {1922}, + key = {Boas (1922)}, + lgcode = {Ndau [ndau1241]} +} +@article{boas1923, + author = {Boas, F.}, + title = {Notes on the Tillamook}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {3-16}, + year = {1923}, + key = {Boas (1923)}, + lgcode = {Tillamook [till1254]} +} +@article{boas1938, + author = {Boas, F.}, + title = {Bella Bella Texts}, + journal = {Columbia University Contributions to Anthropology}, + volume = {5}, + pages = {1-291}, + year = {1938}, + key = {Boas (1938)}, + lgcode = {Heiltsuk [bell1263]} +} +@book{boas1964, + author = {Boas, F.}, + title = {The Central Eskimo}, + publisher = {University of Nebraska Press}, + address = {Lincoln}, + year = {1964}, + key = {Boas (1964)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@book{boas1966, + author = {Boas, F.}, + editor = {H. Codere}, + title = {Kwakiutl Ethnography}, + address = {Chicago}, + year = {1966}, + key = {Boas (1966)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@article{boasandfarrand1899, + author = {Boas, F.}, + title = {Anthropometry of the Shoshonean Tribes}, + journal = {American Anthropologist}, + volume = {1}, + pages = {751-758}, + year = {1899}, + key = {Boas and Farrand (1899)}, + lgcode = {Chilcotin [chil1280], Gitxsan [gitx1241], Kwakwaka'wakw [kwak1269], Lillooet [lill1248], Nlaka'pamux [thom1243], Nuxalk [bell1243], Tsimshian [nucl1649]} +} +@article{bock1966, + author = {Bock, P. K.}, + title = {The Micmac Indians of Restigouche}, + journal = {Bulletins of the National Museum of Canada}, + volume = {213}, + pages = {1-95}, + year = {1966}, + key = {Bock (1966)}, + lgcode = {Mi'kmaq [mikm1235]} +} +@article{bockani1945, + author = {Bockani, J.}, + title = {Mende Warfare}, + journal = {Farm and Forest}, + volume = {6}, + number = {2}, + pages = {104-105}, + year = {1945}, + key = {Bockani (1945)}, + lgcode = {Mende [mend1266]} +} +@article{boelaert1940, + author = {Boelaert, E.}, + title = {De Nkundo-Maatschappij}, + journal = {Kongo-Overzee}, + volume = {6}, + pages = {148-161}, + year = {1940}, + key = {Boelaert (1940)}, + lgcode = {Nkundo [nkun1238]} +} +@book{boggiani1894, + author = {Boggiani, G.}, + title = {I Ciamacoco}, + publisher = {Roma: Società Romana per l'Antropologia}, + address = {Roma}, + pages = {132}, + year = {1894}, + glottolog_ref = {hh:ew:Boggiani:Ciamacoco}, + key = {Boggiani (1894)}, + lgcode = {Chamacoco [cham1315]} +} +@article{bogoras1901a, + author = {Bogoras, W.}, + title = {The Chukchee of Northeastern Asia}, + journal = {American Anthropologist}, + volume = {3}, + pages = {80-108}, + year = {1901}, + glottolog_ref = {hh:e:Bogoras:Chukchi}, + key = {Bogoras (1901a)}, + lgcode = {Chukchi [chuk1273]} +} +@book{bogoras1901b, + author = {Bogoras, W.}, + title = {The Chukchee}, + series = {Memoirs of the American Museum of Natural History}, + volume = {11}, + pages = {1-703}, + year = {1901}, + key = {Bogoras (1901b)}, + lgcode = {Chukchi [chuk1273]} +} +@book{bogoras1904, + author = {Bogoras, W.}, + title = {The Chukchee. The Jesup North Pacific Expedition, Vol. 7}, + publisher = {E. J. Brill}, + address = {Leiden, the Netherlands}, + series = {Memoirs of the American Museum of Natural History}, + volume = {11}, + year = {1904}, + key = {Bogoras (1904)}, + lgcode = {Ungazikmit [cent2128]} +} +@article{bohannan1949, + author = {Bohannan, L.}, + title = {Dahomean Marriage}, + journal = {Africa}, + volume = {19}, + pages = {273-278}, + year = {1949}, + key = {Bohannan (1949)}, + lgcode = {Fon [fonn1241]} +} +@article{bohannan1952, + author = {Bohannan, L.}, + title = {A Genealogical Charter}, + journal = {Africa}, + volume = {22}, + pages = {301-315}, + year = {1952}, + key = {Bohannan (1952)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1953, + author = {Bohannan, P.}, + title = {Concepts of Time Among the Tiv of Nigeria}, + journal = {Southwestern Journal of Anthropology}, + volume = {9}, + pages = {251-262}, + year = {1953}, + glottolog_ref = {eballiso2009:22304}, + key = {Bohannan (1953)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannan1954a, + author = {Bohannan. P.}, + title = {Tiv Farm and Settlement}, + publisher = {London: H.M. Stationary Office}, + address = {London}, + series = {Colonial research studies}, + volume = {15}, + year = {1954}, + glottolog_ref = {eballiso2009:22303}, + key = {Bohannan (1954a)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1954b, + author = {Bohannan, P.}, + title = {The Migration and Expansion of the Tiv}, + journal = {Africa}, + volume = {24}, + pages = {2-16}, + year = {1954}, + key = {Bohannan (1954b)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1954c, + author = {Bohannan, P.}, + title = {Circumcision among the Tiv}, + journal = {Man}, + volume = {54}, + pages = {2-6}, + year = {1954}, + key = {Bohannan (1954c)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1955, + author = {Bohannan, P.}, + title = {Some Principles of Exchange and Investment Among the Tiv}, + journal = {American Anthropologist}, + volume = {57}, + pages = {60-70}, + year = {1955}, + glottolog_ref = {eballiso2009:22302}, + key = {Bohannan (1955)}, + lgcode = {Tiv [tivv1240]} +} +@incollection{bohannan1957a, + author = {Bohannan, L.}, + editor = {J. Middleton and D. Tait}, + title = {Political Aspects of Tiv Social Organization}, + booktitle = {Tribes Without Rulers}, + address = {London}, + pages = {33-66}, + year = {1957}, + key = {Bohannan (1957a)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannan1957b, + author = {Bohannan, P.}, + title = {Justice and Judgment among the Tiv}, + publisher = {Oxford Univ. Press}, + address = {London}, + year = {1957}, + glottolog_ref = {eballiso2009:22299}, + key = {Bohannan (1957b)}, + lgcode = {Tiv [tivv1240]} +} +@misc{bohannan1960, + author = {Bohannan, P.}, + title = {Tiv Trade and Markets}, + year = {1960}, + howpublished = {Manuscript}, + key = {Bohannan (1960)}, + lgcode = {Tiv [tivv1240]} +} +@incollection{bohannan1965, + author = {Bohannan, P.}, + editor = {J. L. Gibbs, Jr.}, + title = {The Tiv of Nigeria}, + booktitle = {Peoples of Africa}, + address = {New York}, + pages = {279-317}, + year = {1965}, + key = {Bohannan (1965)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1953, + author = {Bohannan, L., and P. Bohannan.}, + title = {The Tiv of Central Nigeria}, + publisher = {London: Oxford Univ. Press for the International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {8}, + pages = {100}, + year = {1953}, + glottolog_ref = {hh:e:BohannanBohannan:Tiv}, + key = {Bohannan and Bohannan (1953)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannanandbohannan1957, + author = {Bohannan, P. and Bohannan, L.}, + title = {Tiv Markets}, + journal = {New York Academy of Sciences, Transations, series}, + volume = {2}, + pages = {613-621}, + year = {1957}, + key = {Bohannan and Bohannan (1957)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1958, + author = {Bohannan, P. and Bohannan, L.}, + title = {Three Source Notebooks in Tiv Ethnography}, + publisher = {New Haven CN: Human Relations Area Files}, + address = {New Haven}, + year = {1958}, + glottolog_ref = {eballiso2009:13443}, + key = {Bohannan and Bohannan (1958)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1966, + author = {Bohannan, P. and Bohannan, L.}, + title = {A source notebook on Tiv subsistence, technology, and economics}, + address = {New Haven}, + year = {1966}, + key = {Bohannan and Bohannan (1966)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1968, + author = {Bohannan, P. and Bohannan, L.}, + title = {Tiv Economy}, + publisher = {Evanston: Northwestern Univ. Press}, + address = {Evanston}, + series = {African studies}, + volume = {20}, + year = {1968}, + glottolog_ref = {eballiso2009:35681}, + key = {Bohannan and Bohannan (1968)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1969, + author = {Bohannan, P. and Bohannan, L.}, + title = {A Source Notebook on Tiv Religion. 5v}, + address = {New Haven}, + year = {1969}, + key = {Bohannan and Bohannan (1969)}, + lgcode = {Tiv [tivv1240]} +} +@book{bois1966, + author = {Bois, Th.}, + title = {The Kurds}, + year = {1966}, + key = {Bois (1966)}, + lgcode = {Kurd [cent1972]} +} +@article{bolinder1957, + author = {Bolinder, G.}, + title = {Verwandtschaftssystem der Goajiro}, + journal = {Zeitschrift für Ethnologie}, + volume = {82}, + pages = {164-168}, + year = {1957}, + key = {Bolinder (1957)}, + lgcode = {Wayuu [wayu1243]}, + note = {English translation: 1957. Indians on Horseback. London.} +} +@book{bollig1927, + author = {Bollig, L.}, + title = {Die Bewohner der Truk-Inseln}, + address = {Münster}, + series = {Anthropos Ethnologische Bibliothek}, + volume = {3}, + year = {1927}, + key = {Bollig (1927)}, + lgcode = {Trukese [chuu1238]} +} +@book{bolton1916, + author = {Bolton, H. E. (editor).}, + title = {Spanish Exploration in the Southwest, 1542-1706}, + publisher = {Charles Scribner's Sons}, + address = {New York}, + year = {1916}, + key = {Bolton (1916)}, + lgcode = {Karankawa [kara1289]} +} +@book{bonniard1934, + author = {Bonniard, F.}, + title = {Le tell septentrional en Tunisie}, + address = {Paris}, + year = {1934}, + key = {Bonniard (1934)}, + lgcode = {Tunisians [tuni1260]} +} +@misc{bordiend, + author = {Bordie, J. G.}, + school = {University of Texas}, + howpublished = {Personal communication}, + key = {Bordie (nd)}, + lgcode = {Sindhi [sind1272]} +} +@incollection{borisova1924, + author = {Borisova, A.}, + editor = {V. G. Bogoraz-Tan}, + title = {Vzaimootnoshenija polov u chuharej (Gender Relations among the Veps)}, + booktitle = {Staryj i novyj byt (Old and New Everyday Life Styles)}, + address = {Leningrad}, + pages = {59-79}, + year = {1924}, + key = {Borisova (1924)}, + lgcode = {Veps [veps1250]} +} +@incollection{borwnlee1927, + author = {Borwnlee, J.}, + editor = {G. Thompson}, + title = {Account of the Amakosae, or Southern Caffres}, + booktitle = {Travels and Adventures in Southern Africa}, + address = {London}, + volume = {2}, + pages = {335-375}, + year = {1927}, + key = {Borwnlee (1927)}, + lgcode = {Xhosa [xesi1238]} +} +@book{bosch1930, + author = {Bosch, F.}, + title = {Les Banyamwezi}, + address = {Münster}, + year = {1930}, + key = {Bosch (1930)}, + lgcode = {Nyamwezi [nyam1276]} +} +@article{boschinandmacuzzi1979, + author = {Boschin, M. T., and L. R. Macuzzi.}, + title = {Ensayo metodologico para la reconstruccion ethnohistorica: su aplicacion a la coprension del modelo Tehuelche Meridional}, + journal = {Colegio de Graduados en Antropologia, Serie Monografica (Buenos Aires)}, + volume = {4}, + pages = {3-37}, + year = {1979}, + key = {Boschin and Macuzzi (1979)}, + lgcode = {Tehuelche [tehu1242]} +} +@article{bose1936, + author = {Bose, J. K.}, + title = {Social Organization of the Aimol Kuki}, + journal = {Journ. Dept. Lett. Univ. Calcutta}, + volume = {25}, + pages = {vii, 1-24}, + year = {1936}, + key = {Bose (1936)}, + lgcode = {Aimol [aimo1244]} +} +@article{bose1964, + author = {Bose, S.}, + title = {Economy of the Onge of Little Andaman}, + journal = {Man in India}, + volume = {44}, + number = {4}, + pages = {298-310}, + year = {1964}, + glottolog_ref = {hh:e:Bose:Onge}, + key = {Bose (1964)}, + lgcode = {Onge [onge1236]} +} +@article{boseandray1953, + author = {Bose, U., and P. C. Ray.}, + title = {Application of Performance Tests on the Bhils of Central India}, + journal = {Bulletin of the Department of Anthropology}, + publisher = {Manage of Publications}, + address = {Delhi}, + volume = {1}, + number = {1}, + pages = {31-58}, + year = {1953}, + key = {Bose and Ray (1953)}, + lgcode = {Bhil [bhil1251]} +} +@book{bostock1950, + author = {Bostock, P. G.}, + title = {The Taita}, + address = {London}, + year = {1950}, + key = {Bostock (1950)}, + lgcode = {Teita [tait1250]} +} +@book{bouille1937, + author = {Bouillé, R.}, + title = {Les coutumes familiales au Kanem}, + address = {Paris}, + year = {1937}, + key = {Bouillé (1937)}, + lgcode = {Buduma [budu1265], Daza [daza1242], Kanembu [kane1243], Shuwa [char1283]} +} +@incollection{bourdieu1966, + author = {Bourdieu, P.}, + editor = {J. G. Peristiany}, + title = {The sentiment of honor in Kabyle society}, + booktitle = {Honour and Shame: The Values of Mediterranean Society}, + publisher = {University of Chicago Press}, + address = {Chicago}, + year = {1966}, + key = {Bourdieu (1966)}, + lgcode = {Kabyle [kaby1243]} +} +@article{bourgeau1933, + author = {Bourgeau, J.}, + title = {Notes sur la coutume des Sereres du Sine et du Saloum}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ.}, + volume = {16}, + pages = {1-65}, + year = {1933}, + key = {Bourgeau (1933)}, + lgcode = {Serer [sere1260]} +} +@article{bourgeois1954, + author = {Bourgeois, R.}, + title = {Banyarwanda et Barundi}, + journal = {Mem. Acad. Roy. Sci. Colon., Cl. Sci. Mor. Polit.}, + publisher = {Bruxelles}, + series = {Mémoires de l'ARSOM (Académie Royale des Sciences d'Outre-Mer), collection in-}, + volume = {35}, + pages = {1-472}, + year = {1954}, + glottolog_ref = {eballiso2009:486}, + key = {Bourgeois (1954)}, + lgcode = {Rundi [rund1242]} +} +@book{bourilly1932, + author = {Bourilly, J.}, + title = {Elements de l'ethnographie marocaine}, + address = {Paris}, + year = {1932}, + key = {Bourilly (1932)}, + lgcode = {Beraber [cent2194]} +} +@book{bourne1874, + author = {Bourne, B. F.}, + title = {The Captive in Patagonia}, + address = {Boston}, + year = {1874}, + key = {Bourne (1874)}, + lgcode = {Tehuelche [tehu1242]} +} +@article{bouronclecarreon1964, + author = {Bouroncle Carreon, A.}, + title = {Contribucion al estudio de los Aymaras}, + journal = {America Indigena}, + volume = {24}, + pages = {129-169, 233-269}, + year = {1964}, + key = {Bouroncle Carreon (1964)}, + lgcode = {Aymara [cent2142]} +} +@book{bouton1640, + author = {Bouton, J.}, + title = {Relation de l'establissement des Français depuis l'an 1635 en l'isle de Martinique}, + address = {Paris}, + year = {1640}, + key = {Bouton (1640)}, + lgcode = {Callinago [isla1278]} +} +@book{bowen1976, + author = {Bowen, T.}, + title = {Seri Prehistory: The Archaeology of the Central Coast of Sonora, Mexico}, + publisher = {University of Arizona Press}, + address = {Tucson}, + series = {Anthropological Papers of the University of Arizona}, + number = {27}, + year = {1976}, + key = {Bowen (1976)}, + lgcode = {Seri [seri1257]} +} +@book{bowers1950, + author = {Bowers, A. W.}, + title = {Mandan Social and Ceremonial Organization}, + address = {Chicago}, + year = {1950}, + key = {Bowers (1950)}, + lgcode = {Mandan [mand1446]} +} +@book{bowers1964, + author = {Bowers, N.}, + title = {Personal communication to A}, + address = {Lomax}, + year = {1964}, + key = {Bowers (1964)}, + lgcode = {Kakoli [umbu1258]} +} +@article{bowers1965, + author = {Bowers, A. W.}, + title = {Hidatsa Social and Ceremonial Organization}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {194}, + pages = {1-528}, + year = {1965}, + key = {Bowers (1965)}, + lgcode = {Hidatsa [hida1246]} +} +@incollection{boyd1990, + author = {Boyd, R.T.}, + editor = {W. Suttles}, + title = {Demographic History, 1774-1874}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {135-148}, + year = {1990}, + key = {Boyd (1990)}, + lgcode = {Coos [coos1249], Klallam [clal1241]} +} +@article{boyer1953, + author = {Boyer, G.}, + title = {Les Diawara}, + journal = {Mem. Inst. Franc. Af. Noire}, + volume = {29}, + pages = {1-122}, + year = {1953}, + key = {Boyer (1953)}, + lgcode = {Soninke [soni1259]} +} +@book{bradbury1957, + author = {Bradbury, R. E.}, + title = {The Benin Kingdom and the Edo-speaking Peoples of Southwestern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {13}, + year = {1957}, + glottolog_ref = {eballiso2009:1480}, + key = {Bradbury (1957)}, + lgcode = {Edo [bini1246], Isoko [isok1239], Kukuruku [yekh1238]} +} +@article{brain1969, + author = {Brain, J. L.}, + title = {Matrilineal descent and marital stability: a Tanzanian case}, + journal = {Journal of Asian and African Studies}, + volume = {4}, + number = {2}, + pages = {122-131}, + year = {1969}, + glottolog_ref = {eballiso2009:15472}, + key = {Brain (1969)}, + lgcode = {Luguru [lugu1238]} +} +@article{brandt1961, + author = {Brandt, J. H.}, + title = {The Negrito of Peninsular Thailand}, + journal = {Journal of the Siam Society}, + volume = {49}, + number = {2}, + pages = {123-160}, + year = {1961}, + glottolog_ref = {sala:983}, + key = {Brandt (1961)}, + lgcode = {Semang [kens1248]} +} +@article{brau1942, + author = {Brau, C.}, + title = {Le droit coutumier Lunda}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + volume = {10}, + pages = {155-267}, + year = {1942}, + key = {Brau (1942)}, + lgcode = {Luwa [sond1250]} +} +@book{brayshaw1990, + author = {Brayshaw, H.}, + title = {Well Beaten Paths}, + publisher = {Department of History, James Cook University of North Queensland}, + address = {Cairns}, + series = {Studies in North Queensland History}, + number = {10}, + year = {1990}, + key = {Brayshaw (1990)}, + lgcode = {Warunggu [waru1264]} +} +@article{brepoels1930, + author = {Brepoels, H.}, + title = {Het familiehoofd bij de Nkundo negers}, + journal = {Congo}, + volume = {2}, + pages = {ii, 332-430}, + year = {1930}, + key = {Brepoels (1930)}, + lgcode = {Nkundo [nkun1238]} +} +@book{breton1665, + author = {Breton, R.}, + title = {Observations of the Island Carib}, + publisher = {Besada, Marina et al}, + address = {Auxerre}, + year = {1665}, + glottolog_ref = {fabreall2009ann:Caribe_kari'na038}, + key = {Breton (1665)}, + lgcode = {Callinago [isla1278]} +} +@article{bretonanddelapaix1929, + author = {Breton, R., and A. de la Paix.}, + editor = {J. Rennard}, + title = {Relation de l'ile de la Guadeloup}, + journal = {Histoire Coloniale}, + address = {Paris}, + volume = {1}, + pages = {45-74}, + year = {1929}, + key = {Breton and de la Paix (1929)}, + lgcode = {Callinago [isla1278]} +} +@book{bridges1949, + author = {Bridges, E. Lucas.}, + title = {Uttermost part of the earth}, + publisher = {E. P. Dutton}, + address = {New York}, + year = {1949}, + key = {Bridges (1949)}, + lgcode = {Ona [onaa1245]} +} +@article{briggs1951, + author = {Briggs, L. P.}, + title = {The Ancient Khmer Empire. The Kambuja, or Angkor, period}, + journal = {Transactions of the American Philosophical Society}, + volume = {41}, + pages = {241-250}, + year = {1951}, + key = {Briggs (1951)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]} +} +@article{briggs1958, + author = {Briggs, L. L.}, + title = {The Living Races of the Sahara Desert}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + volume = {28}, + pages = {ii, 1-217}, + year = {1958}, + key = {Briggs (1958)}, + lgcode = {Chaambra [algi1247], Regeibat [hass1238], Teda [teda1241], Tuareg Ahaggar [hogg1238]} +} +@book{briggs1960, + author = {Briggs, L.C.}, + title = {Tribes of the Sahara}, + year = {1960}, + key = {Briggs (1960)}, + lgcode = {Tuareg Ahaggar [hogg1238]} +} +@book{briggs1970, + author = {Briggs, J.}, + title = {Never in Anger: Portrait of an Eskimo Family}, + publisher = {Harvard University Press}, + address = {Cambridge, Mass.}, + year = {1970}, + key = {Briggs (1970)}, + lgcode = {Utkuhikhalingmiut [nets1241]} +} +@book{bright1959, + author = {Bright, J.}, + title = {A History of Israel}, + address = {Philadelphia}, + year = {1959}, + key = {Bright (1959)}, + lgcode = {Hebrews [anci1244]} +} +@phdthesis{brink1969, + author = {Brink, P. J.}, + title = {The Pyramid Lake Paiute of Nevada}, + school = {Department of Anthropology, Boston University, Boston}, + year = {1969}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Brink (1969)}, + lgcode = {Kidutokado [nort1551]} +} +@book{brinton1859, + author = {Brinton, D. G.}, + title = {Notes on the Floridian Peninsula}, + address = {Philadelphia}, + year = {1859}, + key = {Brinton (1859)}, + lgcode = {Timucua [timu1245]} +} +@article{broadfoot1885, + author = {Broadfoot, J. S.}, + title = {On Parts of the Ghilzi Country}, + journal = {Roy. Geog. Soc. Suppl. Pap.}, + volume = {1}, + pages = {341-400}, + year = {1885}, + key = {Broadfoot (1885)}, + lgcode = {Ghilzai [ghil1238]} +} +@article{brohez1905, + author = {Brohez.}, + title = {Les Balubas}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {29}, + pages = {460-478}, + year = {1905}, + key = {Brohez (1905)}, + lgcode = {Shila [luba1250]} +} +@article{brohm1963, + author = {Brohm, J.}, + title = {Buddhism and Animism in a Burmese Village}, + journal = {Journal of Asian Studies}, + volume = {22}, + pages = {155-167}, + year = {1963}, + key = {Brohm (1963)}, + lgcode = {Burmese [nucl1310]} +} +@book{brokensha1975, + author = {Brokensha, P.}, + title = {The Pitjantlatjara and Their Crafts}, + publisher = {Aboriginal ArtsBoard}, + address = {North Sydney}, + year = {1975}, + key = {Brokensha (1975)}, + lgcode = {Pitjandjara [pitj1243]} +} +@incollection{brooksetal1984, + author = {Brooks, A. S. and D. E. Gelburd and J. E. Yellen}, + editor = {J. D. Clark and S. A. Brandt}, + title = {Food production and culture change among the !Kung San: implications for prehistoric research}, + booktitle = {From Hunters to Farmers: The Causes and Consequences of Food Production in Africa}, + publisher = {Univ. of California Press}, + address = {Berkeley}, + pages = {293-310}, + year = {1984}, + glottolog_ref = {eballiso2009:19366}, + key = {Brooks et al. (1984)}, + lgcode = {!Kung [juho1239]} +} +@article{brosius1986, + author = {Brosius, J. P.}, + title = {River, Forest and Mountain: the Penan Gang Landscape}, + journal = {Sarawak Museum Journal}, + volume = {36}, + number = {57}, + pages = {173-184}, + year = {1986}, + key = {Brosius (1986)}, + lgcode = {Punan [west2563]} +} +@book{brown1926, + author = {Brown, J. Tom.}, + title = {Among the Bantu nomads}, + publisher = {Seeley, Service & Co.}, + address = {London}, + year = {1926}, + key = {Brown (1926)}, + lgcode = {Tswana [tswa1253]} +} +@article{brown1944, + author = {Brown, H. D.}, + title = {The Nkumu of the Tumba}, + journal = {Africa}, + volume = {14}, + pages = {431-447}, + year = {1944}, + key = {Brown (1944)}, + lgcode = {Bakongo [sans1272], Ekonda [ekon1238]} +} +@incollection{brown1955, + author = {Brown, P.}, + editor = {D. Forde}, + title = {The Igbira}, + booktitle = {Peoples of the Niger-Benue Confluence}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {10}, + pages = {53-74}, + year = {1955}, + glottolog_ref = {eballiso2009:51521}, + key = {Brown (1955)}, + lgcode = {Ebira [ebir1243]} +} +@book{brownandhutt1935, + author = {Brown, G. G., and A. M. B. Hutt.}, + title = {Anthropology in Action}, + address = {London}, + year = {1935}, + key = {Brown and Hutt (1935)}, + lgcode = {Hehe [hehe1240]} +} +@misc{brownnd, + author = {Brown, L. K.}, + howpublished = {Personal Communication}, + key = {Brown (nd)}, + lgcode = {Japanese [nucl1643]} +} +@book{brumbachandjarvenpa1989, + author = {Brumbach, H. J., and R. Jarvenpa.}, + title = {Ethnoarchaeological and Cultural Frontiers}, + publisher = {Peter Lang}, + address = {New York}, + year = {1989}, + key = {Brumbach and Jarvenpa (1989)}, + lgcode = {Dene [chip1261]} +} +@book{brundage1963, + author = {Brundage, B. C.}, + title = {Empire of the Inca}, + address = {Norman}, + year = {1963}, + key = {Brundage (1963)}, + lgcode = {Inca [cusc1236]} +} +@article{bruner1959, + author = {Bruner, E. M.}, + title = {Kinship Organization Among the Urban Batak of Sumatra}, + journal = {Trans. N. Y. Acad. Sci., ser. 2}, + volume = {22}, + pages = {118-125}, + year = {1959}, + key = {Bruner (1959)}, + lgcode = {Toba Batak [bata1289]} +} +@article{brussaux1907, + author = {Brussaux, E.}, + title = {Notes sur les Moundans}, + journal = {Bull. Soc. Anth. Paris, ser. 5}, + volume = {8}, + pages = {273-295}, + year = {1907}, + key = {Brussaux (1907)}, + lgcode = {Mundang [mund1325]} +} +@article{brutsch1950, + author = {Brutsch, J. R.}, + title = {Les relations de parente chez les Duala}, + journal = {Bull. Soc. Et. Camerounaises}, + volume = {3}, + pages = {211-230}, + year = {1950}, + key = {Brutsch (1950)}, + lgcode = {Duala [dual1243]} +} +@article{bruwer1949, + author = {Bruwer, J.}, + title = {The composition of a Chewa village (Mudzi)}, + journal = {African Studies}, + volume = {8}, + pages = {191-198}, + year = {1949}, + glottolog_ref = {eballiso2009:21817}, + key = {Bruwer (1949)}, + lgcode = {Chewa [chew1246]} +} +@article{bruwer1955, + author = {Bruwer, J. P.}, + title = {Unkhoswe: The System of Guardianship in Cewa Matrilineal Society}, + journal = {African Studies}, + volume = {14}, + pages = {113-122}, + year = {1955}, + glottolog_ref = {eballiso2009:27536}, + key = {Bruwer (1955)}, + lgcode = {Chewa [chew1246]} +} +@article{bruwer1958, + author = {Bruwer, J. P. van S.}, + title = {Matrilineal Kinship Among the Kunda}, + journal = {Africa}, + volume = {28}, + pages = {207-224}, + year = {1958}, + key = {Bruwer (1958)}, + lgcode = {Kunda [kund1255]} +} +@article{bruyns1951, + author = {Bruyns, L.}, + title = {De sociaal-economische ontwikkeling van made Bakongo}, + journal = {Mem. Inst. Roy. Colon. Belge, Sect. Sci. Mor. Polit.}, + volume = {22}, + pages = {iii, 1-343}, + year = {1951}, + key = {Bruyns (1951)}, + lgcode = {Bakongo [sans1272]} +} +@book{bryant1949, + author = {A. T. Bryant}, + title = {The Zulu people}, + publisher = {Shuter and Shooter}, + address = {Pietermaritzburg}, + year = {1949}, + key = {Bryant (1949)}, + lgcode = {Zulu [zulu1248]} +} +@book{buch1882, + author = {Buch, M.}, + title = {Die Wotjaken. Eine ethnologische Studien}, + address = {Helsingfors}, + year = {1882}, + key = {Buch (1882)}, + lgcode = {Udmurt [sout2681]} +} +@book{buchner1887, + author = {Buchner, M.}, + title = {Kamerun}, + year = {1887}, + key = {Buchner (1887)}, + lgcode = {Duala [dual1243]} +} +@article{buck1930, + author = {Buck, P. H.}, + title = {Samoan Material Culture}, + journal = {Bulletins of the Bishop Museum}, + volume = {75}, + pages = {1-724}, + year = {1930}, + key = {Buck (1930)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]} +} +@article{buck1932a, + author = {Buck, P. H.}, + title = {Ethnology of Manihiki and Rakahanga}, + journal = {Bull. Bishop Mus.}, + volume = {99}, + pages = {1-238}, + year = {1932}, + key = {Buck (1932a)}, + lgcode = {Manihikians [raka1237]} +} +@article{buck1932b, + author = {Buck, P. H.}, + title = {Ethnology of Tongareva}, + journal = {Bull. Bishop Mus.}, + volume = {92}, + pages = {1-225}, + year = {1932}, + key = {Buck (1932b)}, + lgcode = {Tongarevans [penr1237]} +} +@article{buck1934, + author = {Buck, P. H.}, + title = {Mangaian Society}, + journal = {Bull. Bishop Mus.}, + volume = {122}, + pages = {1-207}, + year = {1934}, + key = {Buck (1934)}, + lgcode = {Mangaians [raro1241]} +} +@article{buck1938, + author = {Buck, P. H.}, + title = {Ethnology of Mangareva}, + journal = {Bull. Bishop Mus.}, + volume = {117}, + pages = {1-519}, + year = {1938}, + key = {Buck (1938)}, + lgcode = {Mangarevans [mang1401]} +} +@book{buck1949, + author = {Buck, P. H.}, + title = {The Coming of the Maori}, + address = {Wellington}, + year = {1949}, + key = {Buck (1949)}, + lgcode = {Māori [maor1246]} +} +@book{buck1950, + author = {Buck, P. H.}, + title = {The Material Culture of Kapingamarangi}, + series = {Bull. Bishop Mus.}, + volume = {200}, + year = {1950}, + key = {Buck (1950)}, + lgcode = {Kapingamarangi [kapi1249]} +} +@article{buck1957, + author = {Buck, P. H.}, + title = {Arts and Crafts of Hawaii}, + journal = {Bishop Mus. Spec. Publ.}, + volume = {45}, + pages = {1-606}, + year = {1957}, + key = {Buck (1957)}, + lgcode = {Hawaiians [hawa1245]} +} +@book{buckandmasland1950, + author = {Buck, P. W. and J. W. Masland.}, + title = {The Governments of Foreign Powers}, + address = {New York}, + year = {1950}, + key = {Buck and Masland (1950)}, + lgcode = {Japanese [nucl1643]} +} +@book{budge1926, + author = {Budge, E. A. W.}, + title = {Dwellers on the Nile}, + address = {London}, + year = {1926}, + key = {Budge (1926)}, + lgcode = {Ancient Egyptians [egyp1246]} +} +@article{bufe1913, + author = {Bufe, E.}, + title = {Die Bakundu}, + journal = {Archiv. Anth.}, + volume = {40}, + pages = {228-239}, + year = {1913}, + key = {Bufe (1913)}, + lgcode = {Kundu [orok1266]} +} +@article{bugge1952, + author = {Bugge, A.}, + title = {The native Greenlander--a blending of old and new}, + journal = {Arctic}, + volume = {5}, + pages = {45-53}, + year = {1952}, + key = {Bugge (1952)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{bullock1928, + author = {Bullock, C.}, + title = {The Mashona}, + address = {Cape Town}, + year = {1928}, + key = {Bullock (1928)}, + lgcode = {Shona [shon1251]} +} +@book{bulow1971, + author = {Bülow, Werner von}, + title = {Der Stammbaum der Könige von Samoa}, + year = {1897}, + howpublished = {Globus, 1971}, + key = {Bülow (1971)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{bunzel1930, + author = {Bunzel, R.}, + title = {Zuni Katcinas}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {47}, + pages = {837-1086}, + year = {1930}, + key = {Bunzel (1930)}, + lgcode = {Zuni [zuni1245]} +} +@article{bunzel1932, + author = {Bunzel, R.}, + title = {Introduction to Zuni Ceremonialism}, + journal = {Annual Reports of the Bureau of American Ethnology}, + address = {Washington}, + volume = {47}, + number = {i}, + pages = {467-544}, + year = {1932}, + key = {Bunzel (1932)}, + lgcode = {Zuni [zuni1245]} +} +@article{bunzel1952, + author = {Bunzel, R.}, + title = {Chichicastenanago}, + journal = {Publications of the American Ethnological Society}, + volume = {22}, + pages = {1-438}, + year = {1952}, + key = {Bunzel (1952)}, + lgcode = {K'iche' [kich1262]} +} +@book{burch1975, + author = {Burch, E. S. Jr. and Burch, E.S., Jr.}, + title = {Eskimo kinsmen: Changing family relationships in Northwest Alaska}, + publisher = {West Publishing Company}, + address = {St. Paul}, + series = {American Ethnological Society Monograph}, + number = {59}, + year = {1975}, + key = {Burch (1975)}, + lgcode = {Inupiat [nort2944], Kobuk Inuit [kobu1239], Kotzebue Sound Inuit [kotz1238], Noatak Inuit [nort2945], Tareumiut [nort2944]} +} +@incollection{burch1984, + author = {Burch, E. S.}, + editor = {D. Damas}, + title = {Kotzebue Sound Eskimo}, + booktitle = {Arctic}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {303-319}, + year = {1984}, + key = {Burch (1984)}, + lgcode = {Kotzebue Sound Inuit [kotz1238]} +} +@misc{burd1952, + author = {Burd, W. W.}, + title = {Karimata: A Village in the Southern Ryukyus}, + year = {1952}, + howpublished = {Unpublished manuscript}, + key = {Burd (1952)}, + lgcode = {Miyakans [miya1259]} +} +@article{burel1910, + author = {Burel, G.}, + title = {Les populations de la moyenne Sanga: Les Pomo et les Boumali}, + journal = {Rev. Ethnog. Sociol.}, + volume = {1}, + pages = {3-32}, + year = {1910}, + key = {Burel (1910)}, + lgcode = {Sanga [bomw1238]} +} +@article{burgesse1944, + author = {Burgesse, J. A.}, + title = {The Woman and Child Among the Lac-St.-Jean Montagnais}, + journal = {Primitive Man}, + volume = {17}, + pages = {1-18}, + year = {1944}, + key = {Burgesse (1944)}, + lgcode = {Montagnais [mont1268]} +} +@book{burling1963, + author = {Burling, R.}, + title = {Rengsanggri: Family and kinship in a Garo village}, + publisher = {University of Pennsylvania Press}, + address = {Philadelphia}, + pages = {377}, + year = {1963}, + glottolog_ref = {sala:1094}, + key = {Burling (1963)}, + lgcode = {Garo [garo1247]} +} +@article{burrows1936, + author = {Burrows, E. G.}, + title = {Ethnology of Futuna}, + journal = {Bull. Bishop Mus.}, + volume = {138}, + pages = {1-239}, + year = {1936}, + key = {Burrows (1936)}, + lgcode = {Futunans [east2447]} +} +@article{burrows1937, + author = {Burrows, E. G.}, + title = {Ethnology of Uvea}, + journal = {Bull. Bishop Mus.}, + volume = {145}, + pages = {1-176}, + year = {1937}, + key = {Burrows (1937)}, + lgcode = {Uveans [wall1257]} +} +@misc{burrows1949, + author = {Burrows, Edwin Grant.}, + title = {The people of Ifaluk: a little-disturbed atoll culture}, + year = {1949}, + howpublished = {Unpublished manuscript submitted as a final report, Coordinated investigation of Micronesian Anthropology. Washington, Pacific Science Board, National Research Council.}, + key = {Burrows (1949)}, + lgcode = {Ifaluk [nucl1479]} +} +@book{burrowsandspiro1953, + author = {Burrows, E. G., and M. E. Spiro.}, + title = {An Atoll Culture}, + address = {New Haven}, + year = {1953}, + key = {Burrows and Spiro (1953)}, + lgcode = {Ifaluk [nucl1479]} +} +@book{burssens1958, + author = {Burssens, H.}, + title = {Les peuplades de l'entre Congo-Ubangi}, + publisher = {London & Tervuren: Oxford Univ. Press}, + address = {London}, + series = {Ethnographic survey of Africa, Congo}, + volume = {4; Annales du MRCB (Musée Royal du Congo Belge): monographies ethnographiques, #4}, + year = {1958}, + glottolog_ref = {eballiso2009:34309}, + key = {Burssens (1958)}, + lgcode = {Bwaka [ngba1284], Mbandja [mban1263], Ngala [ling1263], Ngbandi [nort2774], Ngombe [binj1250]} +} +@book{burton1876, + author = {Burton, R. F.}, + title = {Two Trips to Gorilla Land and the Cataracts of the Congo}, + address = {London}, + year = {1876}, + key = {Burton (1876)}, + lgcode = {Mpongwe [myen1241]} +} +@book{bush1964, + author = {Bush, N. F.}, + title = {Thailand: An Introduction to Modern Siam}, + address = {Princeton}, + year = {1964}, + key = {Bush (1964)}, + lgcode = {Thai [thai1261]} +} +@book{bushnell1922, + author = {Bushnell, D. I., Jr.}, + title = {Villages of the Algonquian, iauian and Caddoan Tribes West of the Mississippi}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau American Ethnology Bulletin}, + number = {77}, + year = {1922}, + key = {Bushnell (1922)}, + lgcode = {Assiniboine [assi1247], Blackfoot [pieg1239], Cheyenne [chey1247], Plains Cree [plai1258], Teton [lako1247]} +} +@book{busia1951, + author = {Busia, K. A.}, + title = {The Position of the Chief in the Modern Political System of Ashanti}, + address = {London}, + year = {1951}, + key = {Busia (1951)}, + lgcode = {Ashanti [asan1239]} +} +@incollection{busia1954, + author = {Busia, K. A.}, + editor = {D. Forde}, + title = {The Ashanti of the Gold Coast}, + booktitle = {African Worlds}, + address = {London}, + pages = {190-209}, + year = {1954}, + key = {Busia (1954)}, + lgcode = {Ashanti [asan1239]} +} +@book{busyginandzorin1984, + author = {Busygin, E. P., and N. V. Zorin}, + title = {Etnografija narodov Srednego Povolzh'ja (Ethnography of the Peoples of the Middle Volga Region). Part. 1}, + address = {Kazan'.}, + year = {1984}, + key = {Busygin and Zorin (1984)}, + lgcode = {Udmurt [sout2681]} +} +@inbook{butt1952a, + author = {Butt, Audrey}, + title = {The Luo of Kenya}, + booktitle = {The Nilotes of the Anglo-Egyptian Sudan and Uganda}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {4}, + year = {1952}, + key = {Butt (1952a)}, + lgcode = {Luo [luok1236]} +} +@book{butt1952b, + author = {Butt, Audrey}, + editor = {Forde, Daryll}, + title = {The Nilotes of the Anglo-Egyptian Sudan and Uganda}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {4}, + year = {1952}, + glottolog_ref = {eballiso2009:36615}, + key = {Butt (1952b)}, + lgcode = {Acholi [dhop1238], Jur [luwo1239], Shilluk [shil1265]} +} +@incollection{buxton1958, + author = {Buxton, J.}, + editor = {J. Middleton and D. Tait}, + title = {The Mandari of the Souterhn Sudan}, + booktitle = {Tribes Without Rulers}, + address = {London}, + pages = {67-96}, + year = {1958}, + key = {Buxton (1958)}, + lgcode = {Mondari [mand1425]} +} +@incollection{byhan1926, + author = {Byhan, A.}, + editor = {G. Buschan}, + title = {Die Kaukasischen Völker}, + booktitle = {Illustrierte Völkerkunde}, + address = {Stuttgart}, + volume = {2}, + number = {ii}, + pages = {749-844}, + year = {1926}, + key = {Byhan (1926)}, + lgcode = {Abkhaz [abkh1244]} +} +@article{bynghall1909, + author = {Byng-Hall, F. F. w.}, + title = {Notes on the Bassa-Komo Tribe}, + journal = {Journ. Afr. Soc.}, + volume = {8}, + pages = {13-20}, + year = {1909}, + key = {Byng-Hall (1909)}, + lgcode = {Basakomo [basa1282]} +} +@article{bystrom1954, + author = {Bystrom, K.}, + title = {Notes on the Ekparabong Clan}, + journal = {Orientalia Suecana}, + volume = {3}, + pages = {3126}, + year = {1954}, + key = {Bystrom (1954)}, + lgcode = {Ekoi [ejag1239]} +} +@phdthesis{cadelina1982, + author = {Cadelina, R. V.}, + title = {Batak Interhousehold Food Sharing: A Systematic Analysis of Food Management of Marginal Agriculturalists in the Philippines}, + school = {Department of Anthropology, University of Hawaii, Honolulu}, + year = {1982}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Cadelina (1982)}, + lgcode = {Palawan Batak [bata1301]} +} +@book{cadire1953, + author = {Cadire, L. M., et al.}, + title = {Vietnamese Ethnographic Papers}, + address = {New Haven}, + year = {1953}, + key = {Cadire (1953)}, + lgcode = {Annamese [viet1252]} +} +@book{cagnolo1933, + author = {Cagnolo, C.}, + title = {The Akikuyu}, + address = {Nyeri}, + year = {1933}, + key = {Cagnolo (1933)}, + lgcode = {Kikuyu [kiku1240]} +} +@article{caldwellandcalhoun1932, + author = {Caldwell, M. G., and J. Calhoun.}, + title = {The Culture of the Campas Indians}, + journal = {Sci. Monthly}, + volume = {1932}, + pages = {238-242}, + year = {1932}, + key = {Caldwell and Calhoun (1932)}, + lgcode = {Asháninka [ajyi1238]} +} +@incollection{callardandwheeler1963, + author = {Callard, K. and R. S. Wheeler.}, + editor = {G. McT. Kahin}, + title = {Pakistan}, + booktitle = {Major Governments of Asia}, + address = {Ithaca}, + pages = {419-532}, + year = {1963}, + key = {Callard and Wheeler (1963)}, + lgcode = {Punjabi [west2386]} +} +@incollectin{callawayetal1986, + author = {Callaway, D. G. and J. C. Janetski and 0. C. Stewart.}, + editor = {W. L. d'Azevedo}, + title = {Ute}, + booktitle = {Great Basin}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {11}, + pages = {336-367}, + year = {1986}, + key = {Callaway et al. (1986)}, + lgcode = {Southern Ute [utee1244], Timponogas [utee1244]} +} +@book{callenderandelguindi1971, + author = {Callender, C., and F. el Guindi.}, + title = {Life-Crisis Rituals Among the Kenuz}, + address = {Cleveland}, + series = {Case Western Reserve University Studies in Anthropology}, + volume = {3}, + year = {1971}, + key = {Callender and el Guindi (1971)}, + lgcode = {Barabra [kenu1236]} +} +@incollection{cameron1890, + author = {Cameron, D.}, + editor = {L. F. R. Masson}, + title = {A sketch of the customs, manners, and way of living of the natives in the barren country about Nipigon}, + booktitle = {Les Bourgeois de la Compagnie du Nord-Ouest}, + address = {Quebec}, + volume = {2}, + pages = {229-300}, + year = {1890}, + key = {Cameron (1890)}, + lgcode = {Nipigon [cent2136]} +} +@book{cammann1951, + author = {Cammann, Schuyler}, + title = {Trade Through the Himalyas, The Early British Attempts to Open Tibet}, + publisher = {Princeton University Press}, + address = {Princeton}, + year = {1951}, + key = {Cammann (1951)}, + lgcode = {Central Tibetans [dbus1238]} +} +@article{campana1902, + author = {Campana, D. del.}, + title = {Notizie intorno ai Ciriguani}, + journal = {Arch. Antr. Ethnol.}, + address = {Florencia}, + volume = {32}, + pages = {17-139}, + year = {1902}, + glottolog_ref = {fabreall2009ann:Tupi_chiriguano021}, + key = {Campana (1902)}, + lgcode = {Guaraní [east2555]} +} +@book{campbell1928, + author = {Campbell, D.}, + title = {On the trail of the veiled Tuareg}, + year = {1928}, + key = {Campbell (1928)}, + lgcode = {Tuareg Ahaggar [hogg1238]} +} +@article{campbelletal1936, + author = {Campbell, T. D. and J. H. Gray and C. J. Hackett}, + title = {Physical Anthropology of the Aborigines of CentralAustralia}, + journal = {Oceania}, + volume = {7}, + pages = {106-139, 246-261}, + year = {1936}, + key = {Campbell et al. (1936)}, + lgcode = {Alyawara [alya1239], Pintubi [pint1250], Pitjandjara [pitj1243]} +} +@article{cann1929, + author = {Cann, G. P.}, + title = {A Day in the Life of an Idle Shilluk}, + journal = {Sudan Notes and Records}, + volume = {12}, + pages = {251-253}, + year = {1929}, + key = {Cann (1929)}, + lgcode = {Shilluk [shil1265]} +} +@book{cannon1983, + editor = {Cannon , M.}, + title = {Historical Records of Victoria}, + publisher = {Victorian Government Printing Office}, + address = {Melbourne}, + series = {Foundation Series}, + volume = {2B: Aborigines and Protectors 1838-1839}, + year = {1983}, + key = {Cannon (1983)}, + lgcode = {Bunurong [woiw1237]} +} +@misc{carbou1912, + author = {Carbou, H.}, + title = {La region du Tehad et du Quadai 1: 172}, + address = {Paris}, + year = {1912}, + key = {Carbou (1912)}, + lgcode = {Daza [daza1242], Kanembu [kane1243]} +} +@book{carcopino1940, + author = {Carcopino, J.}, + editor = {H. T. Howell}, + title = {Daily Life in Ancient Rome}, + address = {New Haven}, + year = {1940}, + key = {Carcopino (1940)}, + lgcode = {Ancient Romans [lati1261]} +} +@article{cardim1906, + author = {Cardim, F.}, + title = {A Treatise on Brasil}, + journal = {Haklyutus Posthumus or Purchas His Pilgrimes}, + address = {Glasgow}, + volume = {16}, + pages = {417-517}, + year = {1906}, + key = {Cardim (1906)}, + lgcode = {Tupinambá [tupi1273]} +} +@book{careyandtuck1896, + author = {Carey, B. S., and H. P. Tuck.}, + title = {The Chin Hills. 2V}, + address = {Rangoon}, + year = {1896}, + key = {Carey and Tuck (1896)}, + lgcode = {Chin [asho1236]} +} +@article{carneiro1958, + author = {Carneiro, R.}, + title = {Extra-marital Sex Freedom Among the Kuikuru Indians}, + journal = {Revista do Museu Paulista, n. s.}, + volume = {10}, + pages = {135-142}, + year = {1958}, + key = {Carneiro (1958)}, + lgcode = {Kuikuru [kuik1246]} +} +@article{carneiro1962, + author = {Carneiro, R. L.}, + title = {The Amahuaca Indians}, + journal = {Explorers Journal}, + volume = {40}, + pages = {iv, 28-37}, + year = {1962}, + key = {Carneiro (1962)}, + lgcode = {Amahuaca [amah1246]} +} +@article{carneiro1964a, + author = {Carneiro, R. L.}, + title = {Shifting Cultivation Among the Amahuaca}, + journal = {Niedersächsisches Landesmuseum, Völkerkundliche Abhandlungen}, + address = {Hannover}, + volume = {1}, + pages = {9-18}, + year = {1964}, + key = {Carneiro (1964a)}, + lgcode = {Amahuaca [amah1246]} +} +@article{carneiro1964b, + author = {Carneiro, R. L.}, + title = {The Amahuaca and the Spirit World}, + journal = {Ethnology}, + volume = {3}, + pages = {6-11}, + year = {1964}, + glottolog_ref = {fabreall2009ann:Pano-Takana_amahuaca02}, + key = {Carneiro (1964b)}, + lgcode = {Amahuaca [amah1246]} +} +@misc{carneiro1968, + author = {Carneiro, R. L.}, + title = {Hunting and Hunting Magic Among the Amahuaca}, + year = {1968}, + howpublished = {Manuscript}, + key = {Carneiro (1968)}, + lgcode = {Amahuaca [amah1246]} +} +@article{carneiroanddole1957, + author = {Carneiro, R., and G. E. Dole.}, + title = {La cultura de los indios Kuikurus}, + journal = {Runa: Archivo para las Ciencias del Hombre}, + address = {Buenos Aires}, + volume = {8}, + number = {ii}, + pages = {169-202}, + year = {1957}, + key = {Carneiro and Dole (1957)}, + lgcode = {Kuikuru [kuik1246]} +} +@book{carobaroja1944, + author = {Caro Baroja, J.}, + title = {La vida rural en Vera de Bidasoa}, + address = {Madrid}, + year = {1944}, + key = {Caro Baroja (1944)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]} +} +@book{carobaroja1955, + author = {Caro Baroja, J.}, + title = {Estudios saharianos}, + publisher = {Madrid: Júcar}, + address = {Madrid}, + year = {1955}, + glottolog_ref = {eballiso2009:5306}, + key = {Caro Baroja (1955)}, + lgcode = {Delim [hass1238], Regeibat [hass1238]} +} +@book{carobaroja1958, + author = {Caro Baroja, J.}, + title = {Los Vascos. 2nd Edition}, + address = {Madrid}, + year = {1958}, + key = {Caro Baroja (1958)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]} +} +@book{carrapiett1909, + author = {Carrapiett, W. J. S.}, + title = {The Salons}, + address = {Rangoon}, + year = {1909}, + key = {Carrapiett (1909)}, + lgcode = {Moken [moke1242]} +} +@book{carrasco1959, + author = {Carrasco, P.}, + title = {Land and Polity in Tibet}, + address = {Seattle}, + year = {1959}, + key = {Carrasco (1959)}, + lgcode = {Central Tibetans [dbus1238]} +} +@incollection{carrasco1967, + author = {Carrasco, Pedro.}, + editor = {Cohen, Ronald, and John Middleton}, + title = {The Civil Religious Hierarchy in Meso American Communities: Pre-Spanish Background and Colonial Development}, + booktitle = {Comparative Political Systems: Studies in the Politics of Pre-Industrial Societies}, + publisher = {Natural History Press}, + address = {Garden City}, + pages = {397-414}, + year = {1967}, + key = {Carrasco (1967)}, + lgcode = {Yucatec Maya [yuca1254]} +} +@article{cartry1966, + author = {Cartry, M.}, + title = {Clans, lgnages et groupements familiaux chez les Gourmantche}, + journal = {L'Homme}, + volume = {6}, + pages = {ii, 53-81}, + year = {1966}, + key = {Cartry (1966)}, + lgcode = {Gurma [gour1243]} +} +@book{casilis1859, + author = {Casilis, E. A.}, + title = {Les Bassoutos}, + address = {Paris}, + year = {1859}, + key = {Casilis (1859)}, + lgcode = {Sotho [sout2807]} +} +@article{castagn1930, + author = {Castagn‚, J.}, + title = {Magie et exorcisme chez les Kazak-Kirghizes}, + journal = {Revue des Etudes Islamiques}, + volume = {4}, + pages = {53-156}, + year = {1930}, + key = {Castagn (1930)}, + lgcode = {Kazakh [kaza1248]} +} +@article{castagne1929, + author = {Castagne, J.}, + title = {Le droit familial des montagnards du Caucase et des Tcherkesses en particulier}, + journal = {Rev. Et. Islamiques}, + volume = {3}, + pages = {245-275}, + year = {1929}, + key = {Castagne (1929)}, + lgcode = {Cherkess [kaba1278]} +} +@book{castetterandbell1942, + author = {Castetter, E. F. and W. H. Bell.}, + title = {Pima and Papago Indian Agriculture}, + address = {Albuquerque}, + series = {University of New Mexico Inter-American Studies}, + volume = {1}, + pages = {1-245}, + year = {1942}, + key = {Castetter and Bell (1942)}, + lgcode = {Pima [akim1239], Tohono O'odham [toho1246]} +} +@book{castetterandbell1951, + author = {Castetter, Edward F., and Willis H. Bell}, + title = {Yuman Indian Agriculture. University of New Mexico Press: Albuquerque, N. Mex.}, + year = {1951}, + key = {Castetter and Bell (1951)}, + lgcode = {Mojave [moha1256], Quechan [quec1382]} +} +@article{castetterandopler1936, + author = {Castetter, E. F., and M. E. Opler.}, + title = {The Ethnobiology of the Chiricahua and Mescalero Apache}, + journal = {Univ. New Mex. Bull., Biol. Ser.}, + volume = {4}, + pages = {v, 3-63}, + year = {1936}, + key = {Castetter and Opler (1936)}, + lgcode = {Mescalero [mesc1238]} +} +@article{castinel1945, + author = {Castinel, J.}, + title = {Le mariage et la mort dans la region du Yanga}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {7}, + pages = {148-155}, + year = {1945}, + key = {Castinel (1945)}, + lgcode = {Gurma [gour1243]} +} +@book{castren1853, + author = {Castren, M. A.}, + title = {Reiseerrinnerungen aus den Jahren 1838-1844}, + address = {St. Petersburg}, + year = {1853}, + key = {Castren (1853)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{cauneille1950, + author = {Cauneille, A.}, + title = {Les nomades Regueibat}, + journal = {Trav. Inst. Rech. Sahar. Univ. Alger}, + volume = {6}, + pages = {83-100}, + year = {1950}, + key = {Cauneille (1950)}, + lgcode = {Regeibat [hass1238]} +} +@inbook{cavallisforza1986a, + author = {Cavalli-Sforza, L. L.}, + editor = {L. L. Cavalli-Sforza}, + title = {Demographic Data}, + booktitle = {African pygmies}, + publisher = {Academic Press}, + address = {New York}, + pages = {23-45}, + year = {1986}, + glottolog_ref = {eballiso2009:32705}, + key = {Cavalli-Sforza (1986a)}, + lgcode = {Aka [bamb1264], Baka [baka1272]} +} +@book{cavallisforza1986c, + editor = {Cavalli-Sforza, L. L.}, + title = {African Pygmies}, + publisher = {Academic Press}, + address = {New York}, + year = {1986}, + key = {Cavalli-Sforza (1986c)}, + lgcode = {Baka [baka1272], Mbuti [bila1255]} +} +@article{cawthorne1844, + author = {Cawthorne, W. A.}, + title = {Rough Notes on the Manners and Customs of the Natives}, + journal = {Reprinted in Proceedings of the Royal Geographical Society of South Australia}, + volume = {27}, + pages = {47-77}, + year = {1844}, + glottolog_ref = {hh:e:Cawthorne:Manners-Customs}, + key = {Cawthorne (1844)}, + lgcode = {Kaurna [kaur1267]} +} +@book{cecchi188587, + author = {Cecchi, A.}, + title = {Da Zeila alle frontiere del Caffa. 3V}, + address = {Roma}, + year = {1885-87}, + key = {Cecchi (1885-87)}, + lgcode = {Gibe [west2721]} +} +@article{celerier1927, + author = {Celerier, J.}, + title = {La transhumance dans le Moyen-Atlas}, + journal = {Hesperis}, + volume = {7}, + pages = {53-68}, + year = {1927}, + key = {Celerier (1927)}, + lgcode = {Beraber [cent2194]} +} +@book{cerulli193233, + author = {Cerulli, E.}, + title = {Etiopia occidentale. 2V}, + address = {Roma}, + year = {1932-33}, + key = {Cerulli (1932-33)}, + lgcode = {Gibe [west2721], Kafa [kafa1242]} +} +@book{cerulli1956, + author = {Cerulli, E.}, + title = {Peoples of South-west Ethiopia and Its Borderland}, + publisher = {London: International African Institute}, + address = {London}, + series = {Ethnographic Survey of Africa: North-Eastern Africa}, + volume = {III}, + pages = {148}, + year = {1956}, + glottolog_ref = {hh:he:Cerulli:SWEthiopia}, + key = {Cerulli (1956)}, + lgcode = {Anfillo [anfi1235], Arbore [arbo1245], Basketo [bask1236], Burji [burj1242], Darasa [gede1246], Galab [daas1238], Konso [kons1243], Mao [hozo1236], Sidama [sida1246], Suri [suri1267]} +} +@article{cesard193537, + author = {Cesard, E.}, + title = {Le Muhaya}, + journal = {Anthropos}, + volume = {20; 21; 22}, + pages = {75-106, 451-462; 489-508, 821-849; 15-60}, + year = {1935-37}, + key = {Cesard (1935-37)}, + lgcode = {Haya [haya1250]} +} +@book{chabot1950, + author = {Chabot, H. T.}, + title = {Verwantschap, stand en sexe in Zuid-Celebes}, + address = {Groningen}, + year = {1950}, + key = {Chabot (1950)}, + lgcode = {Macassarese [maka1311]} +} +@misc{chagnon1967, + author = {Chagnon, N. A.}, + title = {Yanomamo Social Organization and Warfare}, + year = {1967}, + howpublished = {Manuscript}, + key = {Chagnon (1967)}, + lgcode = {Yanomami [yano1261]} +} +@misc{chagnon1968a, + author = {Chagnon, N. A.}, + title = {Personal Fierceness and Headmen in Yanomamo Disputes}, + year = {1968}, + howpublished = {Manuscript}, + key = {Chagnon (1968a)}, + lgcode = {Yanomami [yano1261]} +} +@book{chagnon1968b, + author = {Chagnon, N. A.}, + title = {Yanomamo: The Fierce People}, + publisher = {New York: Holt, Rinehart and Winston}, + address = {New York}, + series = {Case studies in cultural anthropology}, + pages = {164}, + year = {1968}, + glottolog_ref = {hh:e:Chagnon:Yanomamo:1968}, + key = {Chagnon (1968b)}, + lgcode = {Yanomami [yano1261]} +} +@book{chagnon1971, + author = {Chagnon, N. A.}, + title = {Die soziale Organisation und die Kriege der Yanomamö-Indianer}, + year = {1971}, + key = {Chagnon (1971)}, + lgcode = {Yanomami [yano1261]} +} +@book{chagnon1974, + author = {Chagnon, N. A.}, + title = {Studying the Yanomamö}, + year = {1974}, + key = {Chagnon (1974)} +} +@book{chagnon1977, + author = {Chagnon, N. A.}, + title = {The Fierce People}, + year = {1977 (2nd ed.)}, + key = {Chagnon (1977)}, + lgcode = {Yanomami [yano1261]} +} +@article{chalmers1890, + author = {Chalmers, J.}, + title = {Toaripi and Koiari Tribes}, + journal = {Rep. Austr. Assoc. Adv. Sci.}, + volume = {2}, + pages = {ii, 311-323}, + year = {1890}, + key = {Chalmers (1890)}, + lgcode = {Koiari [gras1249]} +} +@incollection{chaloupka1981, + author = {Chaloupka, G.}, + editor = {T. Stokes}, + title = {The Traditional Movement of a Band of Aboriginals in Kakadu}, + booktitle = {Kakadu National Park Education Resources}, + publisher = {Australian National Parks and Wildlife Service}, + address = {Canberra}, + pages = {162-171}, + year = {1981}, + key = {Chaloupka (1981)}, + lgcode = {Kaakutju [gaga1251]} +} +@article{chamberlain1892, + author = {Chamberlain, A. F.}, + title = {Report on the Kootenay Indians of South-Eastern British Columbia}, + journal = {Reports of the British Association forthe Advancement of Science}, + volume = {62}, + pages = {539-617}, + year = {1892}, + key = {Chamberlain (1892)}, + lgcode = {Kutenai [kute1249], Shuswap [shus1248]} +} +@book{chamberlain1951, + author = {Chamberlain, Robert S.}, + title = {The Pre-Conquest Tribute and Service System of the Maya as Preparation for the Spanish Repartimiento-Ecomienda in Yucatan}, + series = {University of Miami Hispanic-American Studies}, + number = {10}, + year = {1951}, + key = {Chamberlain (1951)}, + lgcode = {Yucatec Maya [yuca1254]} +} +@book{chance1966, + author = {Chance, N. A.}, + title = {The Eskimo of North Alaska}, + address = {New York}, + year = {1966}, + key = {Chance (1966)}, + lgcode = {Tareumiut [nort2944]} +} +@article{chapelle1929, + author = {Chapelle, F. de la}, + title = {Une cite de l'Quad Dra' sous le protectorat des nomades}, + journal = {Hesperis}, + volume = {9}, + pages = {29-42}, + year = {1929}, + key = {Chapelle (1929)}, + lgcode = {Drawa [susi1238]} +} +@book{chapelle1957a, + author = {Chapelle, J.}, + title = {Nomades noirs du Sahara}, + address = {Paris}, + year = {1957}, + key = {Chapelle (1957a)}, + lgcode = {Teda [teda1241]} +} +@book{chapelle1957b, + author = {Chapelle, J.}, + title = {Nomades noirs du Soudan}, + address = {Paris}, + year = {1957}, + key = {Chapelle (1957b)}, + lgcode = {Daza [daza1242]} +} +@book{chapman1982, + author = {Chapman, A.}, + title = {Drama and power in a hunting society: the Selk'nam of Tierra del Fuego}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1982}, + glottolog_ref = {fabreall2009ann:Chon_selknam24}, + key = {Chapman (1982)}, + lgcode = {Ona [onaa1245]} +} +@article{chard1961, + author = {Chard, C. S.}, + title = {Sternberg's Materials on the Sexual Life of the Gilyak}, + journal = {Anthropological Papers of the University of Alaska}, + volume = {10}, + pages = {13-23}, + year = {1961}, + key = {Chard (1961)}, + lgcode = {Nivkh [gily1242]} +} +@article{chard1963, + author = {Chard, C. S.}, + title = {The Nganasan—Wild Reindeer Hunters of the Taimyr Peninsula}, + journal = {Arctic Anthropology}, + volume = {1}, + pages = {105-121}, + year = {1963}, + key = {Chard (1963)}, + lgcode = {Nganasan [ngan1291]} +} +@article{charles1911, + author = {Charles, L.}, + title = {Les Lobi}, + journal = {Rev. Ethnog. Sociol.}, + volume = {2}, + pages = {202-220}, + year = {1911}, + glottolog_ref = {eballiso2009:45348}, + key = {Charles (1911)}, + lgcode = {Lobi [lobi1245]} +} +@article{charsleyandmckenny1974, + author = {Charsley, S. R., and M. G. McKenny.}, + title = {The social structure of Nyakyusa}, + journal = {Africa}, + volume = {44}, + pages = {422-424}, + year = {1974}, + key = {Charsley and McKenny (1974)}, + lgcode = {Nyakyusa [nyak1261]} +} +@article{chatterjeeanddas1927, + author = {Chatterjee, A., and T. Das.}, + title = {The Hos of Seraikella}, + journal = {Anth. Pap. Univ. Calcutta, n. s.}, + volume = {1}, + pages = {1-94}, + year = {1927}, + key = {Chatterjee and Das (1927)}, + lgcode = {Ho [hooo1248]} +} +@article{chattopadhyay1941, + author = {Chattopadhyay, K. P.}, + title = {Khasi Kinship and Social Organization}, + journal = {Univ. Calcutta Anth. Papers, n. s.}, + publisher = {(Calcutta University anthropological papers, n. s. 6.) Calcutta: Calcutta University}, + address = {(Calcutta University anthropological papers, n. s. 6.) Calcutta}, + volume = {6}, + pages = {1-39}, + year = {1941}, + glottolog_ref = {stampe:160}, + key = {Chattopadhyay (1941)}, + lgcode = {Khasi [khas1269]} +} +@book{cheremin1909, + author = {Cheremin, N. A.}, + title = {Ozeryj kraj (The Lake Region)}, + address = {Moscow}, + year = {1909}, + key = {Cheremin (1909)}, + lgcode = {Karelians [livv1243]} +} +@article{cheron1913, + author = {Cheron, G.}, + title = {Les Minianka}, + journal = {Rev. Ethnog. Sociol.}, + volume = {4}, + pages = {165-186}, + year = {1913}, + key = {Cheron (1913)}, + lgcode = {Minianka [mama1271]} +} +@book{cheshihinvetrinskijv1901, + author = {Cheshihin-VetrinskijV,. E.}, + title = {Sredi latyshej (Among the Latvians)}, + address = {Moscow}, + year = {1901}, + key = {Cheshihin-VetrinskijV (1901)}, + lgcode = {Latvians [latv1249]} +} +@article{chevalier1908, + author = {Chevalier, A.}, + title = {Les Massifs montagneux du rd-ouest de la Cote d'Ivoire}, + journal = {Geographie}, + volume = {20}, + pages = {207-224}, + year = {1908}, + key = {Chevalier (1908)}, + lgcode = {Dan [gwee1242]} +} +@article{chevalier1909, + author = {Chevalier, A.}, + title = {La region des sources du Niger}, + journal = {Geographie}, + volume = {19}, + pages = {337-352}, + year = {1909}, + key = {Chevalier (1909)}, + lgcode = {Koranko [kura1250]} +} +@book{chien1967, + author = {Ch'ien, Tuan-sheng.}, + title = {The Government & Politics of China}, + address = {Cambridge}, + year = {1967}, + key = {Ch'ien (1967)}, + lgcode = {Chekiang [wuch1236]} +} +@book{childs1949, + author = {Childs, G. M.}, + title = {Umbundu Kinship and Character}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + year = {1949}, + glottolog_ref = {eballiso2009:9479}, + key = {Childs (1949)}, + lgcode = {Mbundu [umbu1257]} +} +@article{chisholm1910, + author = {Chisholm, J. A.}, + title = {Notes on the Manners and Customs of the Winamwanga and Wiwa}, + journal = {Journ. Afr. Soc.}, + volume = {9}, + pages = {360-387}, + year = {1910}, + glottolog_ref = {eballiso2009:35038}, + key = {Chisholm (1910)}, + lgcode = {Iwa [nyam1275]} +} +@article{chiu1962, + author = {Chiu, C. C.}, + title = {The Kinship Organization of the Take-Bakha Bunun}, + journal = {Bull. Inst. Ethnol. Academia Sinica}, + volume = {13}, + pages = {192-193}, + year = {1962}, + key = {Chiu (1962)}, + lgcode = {Bunun [bunu1267]} +} +@book{chlenov1973, + author = {Chlenov, M. A.}, + title = {K harakteristike sotsial'noj organizatsii aziatskih eskimosov (Asian Eskimo Social Organization)}, + address = {Moscow}, + year = {1973}, + key = {Chlenov (1973)}, + lgcode = {Ungazikmit [cent2128]} +} +@book{chodzidlo1951, + author = {Chodzidlo, Teofil.}, + title = {Die Familie bei den Jakuten}, + address = {Yakut (Siberia)}, + series = {Interntionale Schriftenreihe fur Soziale und Politische Wissenschaften, Ethnologische Reihe}, + volume = {1}, + year = {1951}, + key = {Chodzidlo (1951)}, + lgcode = {Yakut [yaku1245]} +} +@article{chook1967, + author = {Chook, P. P.}, + title = {Kinship and Culture: Some Problems in Ndembu Kinship}, + journal = {Southw. Journ. Anth.}, + volume = {23}, + pages = {74-89}, + year = {1967}, + key = {Chook (1967)}, + lgcode = {Ndembu [lund1266]} +} +@article{chou1902, + author = {Chou, Ta-Kuan.}, + editor = {P. Pelliot}, + title = {Mémoires sur les coutumes du Cambodge}, + journal = {Bulletin de l'Ecole Française d'Extreme-Orient}, + volume = {2}, + pages = {123-177}, + year = {1902}, + key = {Chou (1902)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]} +} +@phdthesis{chowning1957, + author = {Chowning, A.}, + title = {Lakalai Society}, + school = {University of Pennsylvania}, + year = {1957}, + key = {Chowning (1957)}, + lgcode = {Lakalai [naka1262]} +} +@article{chowning1962, + author = {Chowning, A.}, + title = {Cognatic Kin Groups Among the Molima of Fergusson Island}, + journal = {Ethnology}, + volume = {1}, + pages = {92-101}, + year = {1962}, + key = {Chowning (1962)}, + lgcode = {Molima [moli1248]} +} +@book{christensen1954, + author = {Christensen, J. B.}, + title = {Double Descent Among the Fanti}, + publisher = {New Haven CN: Human Relations Area Files}, + address = {New Haven}, + series = {Behavioral science monographs}, + volume = {4}, + year = {1954}, + glottolog_ref = {eballiso2009:20218}, + key = {Christensen (1954)}, + lgcode = {Fante [fant1241]} +} +@article{christensen1963, + author = {Christensen, J. B.}, + title = {Utani: joking, sexual license and social obligations among the Luguru}, + journal = {American Anthropologist}, + volume = {65}, + pages = {1314-1327}, + year = {1963}, + glottolog_ref = {weball:4144}, + key = {Christensen (1963)}, + lgcode = {Luguru [lugu1238]} +} +@book{christie1909, + author = {Christie, Emerson B.}, + title = {The Subanuns of Sindangan Bay}, + publisher = {Manila: Bureau of Science, Division of Ethnology}, + address = {Manila}, + series = {Bureau of Science Division of Ethnology Publications}, + volume = {6}, + number = {1}, + pages = {152}, + year = {1909}, + glottolog_ref = {hh:ew:Christie:Subanuns}, + key = {Christie (1909)}, + lgcode = {Subanun [cent2089]} +} +@book{christy1894, + author = {Christy, M. (editor).}, + title = {The Voyages of Captain Luke Fox of Hull and Captain Thomas James of Bristol in Search of a Northwest Pas-sage, in 1631-1632}, + publisher = {Hakluyt Society}, + address = {London}, + year = {1894}, + key = {Christy (1894)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@book{ciezadeleon1554, + author = {Cieza de Leon, P. de.}, + title = {Parte primera de la cronica del Peru}, + address = {Antwerp}, + year = {1554}, + key = {Cieza de Leon (1554)}, + lgcode = {Inca [cusc1236]} +} +@article{clark1938, + author = {Clark, W. T.}, + title = {Manners, Customs and Beliefs of the Northern Bega}, + journal = {Sudan Notes and Records}, + volume = {21}, + pages = {1-30}, + year = {1938}, + key = {Clark (1938)}, + lgcode = {Amarar [amar1281], Bisharin [bish1251]} +} +@article{clark1951, + author = {Clark, J.D.}, + title = {Bushman Hunters of the Barotse Forests}, + journal = {Northern Rhodesia Journal}, + volume = {1}, + number = {3}, + pages = {56-65}, + year = {1951}, + key = {Clark (1951)}, + lgcode = {Hukwe [kxoe1243]} +} +@article{clark1963, + author = {Clark, J.}, + title = {Hunza in the Himalayas}, + journal = {Natural History}, + volume = {72}, + pages = {38-45}, + year = {1963}, + key = {Clark (1963)}, + lgcode = {Burusho [buru1296]} +} +@book{clark1974, + author = {Clark, A. McF.}, + title = {Koyukuk River Culture}, + publisher = {National Museums of Canada}, + address = {Ottawa}, + series = {National Museum of Man Mercury Series, Canadian Ethnology Service Paper}, + number = {18}, + year = {1974}, + key = {Clark (1974)}, + lgcode = {Koyukon [koyu1237]} +} +@inproceedings{clark1975, + author = {Clark, A. McF.}, + editor = {A. McF.Clark}, + title = {Upper Koyukon River Koyukon Athapaskan Social Culture: An Overview}, + booktitle = {Northern Athapaskan Conference, 1971}, + publisher = {National Museums of Canada}, + address = {Ottawa}, + series = {National Museum of Man Mercury Series, Canadian Ethnology Service Paper}, + volume = {1}, + number = {27}, + pages = {147-180}, + year = {1975}, + key = {Clark (1975)}, + lgcode = {Koyukon [koyu1237]} +} +@article{clastres1968, + author = {Clastres, P.}, + title = {Ethnographie des Indiens Guayaki}, + journal = {Journal of the Societe des Americanistes}, + volume = {57}, + pages = {8-61}, + year = {1968}, + key = {Clastres (1968)}, + lgcode = {Aché [ache1246]} +} +@incollection{clastres1972, + author = {Clastres, P.}, + editor = {M. Bicchieri}, + title = {The Guayaki}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + pages = {138-174}, + year = {1972}, + key = {Clastres (1972)}, + lgcode = {Aché [ache1246]} +} +@article{claus1911, + author = {Claus, H.}, + title = {Die Wagogo}, + journal = {Baessler-Arch., Beihefte}, + volume = {2}, + pages = {1-72}, + year = {1911}, + key = {Claus (1911)}, + lgcode = {Gogo [gogo1263]} +} +@article{clement1903, + author = {Clement, E.}, + title = {Ethographical notes on the Western Australian Aborigines}, + journal = {Internationales Archive for Ethnographic}, + volume = {16}, + number = {I/II}, + pages = {1-29}, + year = {1903}, + glottolog_ref = {ozbib:1161}, + key = {Clement (1903)}, + lgcode = {Kariyarra [kari1304]} +} +@article{clifford1936, + author = {Clifford, M.}, + title = {A Nigerian Chiefdom}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {66}, + pages = {393-436}, + year = {1936}, + key = {Clifford (1936)}, + lgcode = {Igala [igal1242]} +} +@article{clifford1944, + author = {Clifford, M.}, + title = {Notes on the Bassa-Komo Tribe}, + journal = {Man}, + volume = {44}, + pages = {107-116}, + year = {1944}, + key = {Clifford (1944)}, + lgcode = {Basakomo [basa1282]} +} +@article{cline1936, + author = {Cline, W.}, + title = {Notes on the People of Siwah and El Garah in the Libyan Desert}, + journal = {Gen. Ser. Anth.}, + publisher = {Menasha WI: George Banta}, + volume = {4}, + pages = {1-64}, + year = {1936}, + glottolog_ref = {eballiso2009:15831}, + key = {Cline (1936)}, + lgcode = {Siwans [siwi1239]} +} +@book{cline1950, + author = {Cline, W.}, + title = {The Teda of Tibesti, Borkou, and Kawar in the Eastern Sahara}, + publisher = {Menasha, Wisconsin: George Banta}, + series = {Gen. Ser. Anth.}, + volume = {12}, + pages = {1-52}, + year = {1950}, + glottolog_ref = {hh:e:Cline:Teda}, + key = {Cline (1950)}, + lgcode = {Daza [daza1242], Teda [teda1241]} +} +@incollection{clineetal1938, + author = {Cline, W. and R. S. Commons and M. Mandelbaum and R. H. Post and. L. V. W. Walters}, + editor = {L. Spier}, + title = {The Sinkaietk or Southern Okanagon of Washington}, + booktitle = {Contributions from the Laboratory of Anthropology, No. 2}, + publisher = {George Banta}, + address = {Menasha, Wisconsin}, + series = {General Series in Anthro-pology}, + number = {6}, + pages = {1-262}, + year = {1938}, + key = {Cline et al. (1938)}, + lgcode = {Sinkaitk [sout2963], Syilx [sout2963]} +} +@book{clozel1896, + author = {Clozel, F.}, + title = {Les Bayas}, + address = {Paris}, + year = {1896}, + key = {Clozel (1896)}, + lgcode = {Gbaya [nort2775]} +} +@book{clozelandvillamur1902, + author = {Clozel, F. J., and R. Villamur.}, + title = {Les coutumes indigenes de la Cote d'Ivorie}, + publisher = {Paris: Augustin Challamel}, + address = {Paris}, + year = {1902}, + glottolog_ref = {eballiso2009:9396}, + key = {Clozel and Villamur (1902)}, + lgcode = {Abron [abro1238], Alagya [alla1248], Anyi [anyi1245], Avikam [avik1243], Bakwe [bakw1243], Baule [baou1238]} +} +@book{cobo189095, + author = {Cobo, B.}, + title = {Historia del Nuevo Mundo. 4v}, + address = {Seville}, + year = {1890-95}, + key = {Cobo (1890-95)}, + lgcode = {Inca [cusc1236]} +} +@article{codere1950, + author = {Codere, H.}, + title = {Fighting with Property}, + journal = {Monog. Amer. Ethn. Soc.}, + volume = {18}, + pages = {1-143}, + year = {1950}, + key = {Codere (1950)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269]} +} +@book{codrington1891, + author = {Codrington, R. H.}, + title = {The Melanesians}, + address = {Oxford}, + year = {1891}, + key = {Codrington (1891)}, + lgcode = {Mota [mota1237]} +} +@book{codrington1926, + author = {Codrington, H. W.}, + title = {A Short History of Ceylon}, + publisher = {MacMillan and Co.}, + address = {London}, + year = {1926}, + key = {Codrington (1926)}, + lgcode = {Sinhalese [sinh1246]} +} +@book{coedes1968, + author = {Coedes, G.}, + editor = {W. F. Vella}, + title = {The Indianized States of Southeast Asia}, + address = {Honolulu}, + year = {1968}, + key = {Coedes (1968)}, + lgcode = {Khmer [cent1989]} +} +@phdthesis{cohen1960, + author = {Cohen, R.}, + title = {The structure of Kanuri society}, + school = {University of Wisconsin}, + year = {1960}, + glottolog_ref = {eballiso2009:47830}, + key = {Cohen (1960)}, + lgcode = {Kanuri [cent2050]} +} +@article{cohen1961, + author = {Cohen, R.}, + title = {Marriage Instability Among the Kanuri of Northern Nigeria}, + journal = {American Anthropologist}, + volume = {63}, + pages = {1231-1249}, + year = {1961}, + key = {Cohen (1961)}, + lgcode = {Kanuri [cent2050]} +} +@book{cohen1967, + author = {Cohen, R.}, + title = {The Kanuri of Bornu}, + publisher = {New York: Holt, Rinehart & Winston}, + address = {New York}, + year = {1967}, + glottolog_ref = {eballiso2009:47833}, + key = {Cohen (1967)}, + lgcode = {Kanuri [cent2050]} +} +@article{cohn1958, + author = {Cohn, B. S.}, + title = {Changing Traditions of a Low Caste}, + journal = {Journal of American Folklore}, + volume = {71}, + pages = {412-421}, + year = {1958}, + key = {Cohn (1958)}, + lgcode = {Uttar Pradesh [bhoj1244]} +} +@misc{cohnnd, + author = {Cohn, B. S.}, + title = {Chamar Family in a North Indian Village}, + howpublished = {Manuscript}, + key = {Cohn (nd)}, + lgcode = {Uttar Pradesh [bhoj1244]} +} +@article{cole1913, + author = {Cole, F. C.}, + title = {The Wild Tribes of the Davao District}, + journal = {Field Mus. Nat. Hist. Anth. Ser.}, + volume = {12}, + pages = {48-203}, + year = {1913}, + key = {Cole (1913)}, + lgcode = {Bilaan [koro1310]} +} +@article{coll1903, + author = {Coll, C. van.}, + title = {Gegevens over land en volk van Suriname}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + volume = {55}, + pages = {451-640}, + year = {1903}, + glottolog_ref = {fabreall2009ann:2116}, + key = {Coll (1903)}, + lgcode = {Lokono [araw1276]} +} +@book{colle1913, + author = {Colle, P.}, + title = {Les Baluba}, + address = {Bruxelles}, + series = {Coll. Monog. Ethnog.}, + volume = {10-11}, + year = {1913}, + key = {Colle (1913)}, + lgcode = {Buye [buyu1239]} +} +@article{colle1921, + author = {Colle, P.}, + title = {L'organisation politique des Bashi}, + journal = {Congo}, + volume = {2}, + pages = {657-684}, + year = {1921}, + glottolog_ref = {eballiso2009:5}, + key = {Colle (1921)}, + lgcode = {Bashi [shii1238]} +} +@article{colle1922a, + author = {Colle, P.}, + title = {Le mariage chez les Bashi}, + journal = {Congo}, + volume = {3}, + pages = {ii, 535-551}, + year = {1922}, + key = {Colle (1922a)}, + lgcode = {Bashi [shii1238]} +} +@article{colle1922b, + author = {Colle, P.}, + title = {Les clans au pays des Bashi}, + journal = {Congo}, + volume = {3}, + pages = {i, 337-352}, + year = {1922}, + key = {Colle (1922b)}, + lgcode = {Bashi [shii1238]} +} +@book{collierandthalman1991, + author = {Collier, E. T. and S. B. Thalman}, + title = {Interviews with Tom Smith and Maria Copa: Isabel Kelley's Ethnographic Notes on the Coast Miwok Indians of Marin and Southern Sonoma Counties California}, + series = {MAPOM Occasional Papers}, + volume = {6}, + year = {1991}, + key = {Collier and Thalman (1991)}, + lgcode = {Coast Miwok [coas1301]} +} +@book{collinder1949, + author = {Collinder, B.}, + title = {The Lapps}, + address = {Princeton}, + year = {1949}, + key = {Collinder (1949)}, + lgcode = {Sami [nort2671]} +} +@article{colliverandwoolston1975, + author = {Colliver, F. S., and F. P. Woolston.}, + title = {The Aborigines of Stradbroke Island}, + journal = {Proceedings of the Royal Society of Queensland}, + volume = {86}, + number = {16}, + pages = {91-104}, + year = {1975}, + glottolog_ref = {ozbib:1211}, + key = {Colliver and Woolston (1975)}, + lgcode = {Undanbi [waka1274]} +} +@book{colson1950, + author = {Colson, E.}, + title = {Marriage and the Family Among the Plateau Tonga of Northern Rhodesia}, + address = {New York}, + year = {1950}, + key = {Colson (1950)}, + lgcode = {Plateau Tonga [tong1318]} +} +@incollection{colson1951, + author = {Colson, E.}, + editor = {Colson, Elizabeth and Gluckman, Max}, + title = {The Plateau Tonga of Northern Rhodesia}, + booktitle = {Seven Tribes of British Central Africa}, + publisher = {London: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {London}, + pages = {94-162}, + year = {1951}, + glottolog_ref = {eballiso2009:40613}, + key = {Colson (1951)}, + lgcode = {Plateau Tonga [tong1318]} +} +@book{colson1953, + author = {Colson, E.}, + title = {The Makah Indians}, + address = {Minneapolis}, + year = {1953}, + key = {Colson (1953)}, + lgcode = {Makah [maka1318]} +} +@book{colson1960, + author = {Colson, E.}, + title = {The Social Organization of the Gwembe Tonga}, + publisher = {Manchester Univ. Press}, + address = {New York}, + series = {Kariba studies serie}, + volume = {riba studies series}, + year = {1960}, + glottolog_ref = {eballiso2009:27121}, + key = {Colson (1960)}, + lgcode = {Plateau Tonga [tong1318]} +} +@book{condominas1957, + author = {Condominas, G.}, + title = {Nous avons mange la foret}, + address = {Paris}, + year = {1957}, + key = {Condominas (1957)}, + lgcode = {Mnong Gar [east2333]} +} +@article{condominas1960, + author = {Condominas, G.}, + title = {Les Mnong Gar du centre Viet-Nam}, + journal = {Viking Fund Publ. Anth.}, + volume = {29}, + pages = {15-23}, + year = {1960}, + key = {Condominas (1960)}, + lgcode = {Mnong Gar [east2333]} +} +@phdthesis{conklin1954, + author = {Conklin, H. C.}, + title = {The Relation of Hanunoo Culture to the Plant World}, + school = {Yale University}, + year = {1954}, + howpublished = {Unpublished}, + key = {Conklin (1954)}, + lgcode = {Hanunoo [hanu1241]} +} +@article{conklin1955, + author = {Conklin, Harold C. IV-5.}, + title = {Hanunoo color catgories}, + journal = {Southwestern Journal of Anthropology}, + volume = {11}, + pages = {339-344}, + year = {1955}, + key = {Conklin (1955)}, + lgcode = {Hanunoo [hanu1241]} +} +@article{conklin1957, + author = {Conklin, H. C.}, + title = {Hanunoo Agriculture}, + journal = {United Nations Food and Agric. Org. Forestry Devel. Pap.}, + volume = {12}, + pages = {1-209}, + year = {1957}, + key = {Conklin (1957)}, + lgcode = {Hanunoo [hanu1241]} +} +@article{conolly1897, + author = {Conolly, R. M. V-6.}, + title = {Social life in Fanti-land}, + journal = {Anthropological Institute of Great Britain and Ireland, Journal}, + volume = {26}, + pages = {128-53}, + year = {1897}, + key = {Conolly (1897)}, + lgcode = {Fante [fant1241]} +} +@article{conradt1902, + author = {Conradt, L.}, + title = {Die Ngumba in Sudkamerun}, + journal = {Globus}, + volume = {81}, + pages = {333-337, 350-354, 369-372}, + year = {1902}, + glottolog_ref = {eballiso2009:724}, + key = {Conradt (1902)}, + lgcode = {Ngumba [kwas1243]} +} +@book{contenau1954, + author = {Contenau, G.}, + title = {Everyday Life in Babylon and Assyria}, + address = {New York}, + year = {1954}, + key = {Contenau (1954)}, + lgcode = {Babylonians [akka1240]} +} +@article{conzemius1932, + author = {Conzemius, E.}, + title = {Ethnographic Survey of the Miskito and Sumu Indians of Honduras and Nicaragua}, + journal = {Bulletins of the Bureau of American Ethnology}, + publisher = {Washington: BAE 106}, + volume = {106}, + pages = {1-191}, + year = {1932}, + glottolog_ref = {fabreall2009ann:Misumalpa_miskito027}, + key = {Conzemius (1932)}, + lgcode = {Miskito [misk1235]} +} +@book{cook1785, + author = {Cook, J.}, + title = {A Voyage to the Pacific Ocean}, + address = {London}, + year = {1785}, + key = {Cook (1785)}, + lgcode = {Aleut [east2533]} +} +@article{cook1900, + author = {Cook, A. C.}, + title = {The Aborigines of the Canary Islands}, + journal = {American Anthropologist}, + volume = {2}, + pages = {451-493}, + year = {1900}, + key = {Cook (1900)}, + lgcode = {Guanche [guan1277]} +} +@article{cook1908, + author = {Cook, W. A.}, + title = {The Bororo Indians of Matto Grosso, Brazil}, + journal = {Smithsonian Miscellaneous Collections}, + volume = {50}, + pages = {48-62}, + year = {1908}, + key = {Cook (1908)}, + lgcode = {Bororo [boro1282]} +} +@book{cook1931, + author = {Cook. P. A. W.}, + title = {Social Organisation and Ceremonial Institutions of the Bomvana}, + publisher = {Cape Town: J.C. Juta}, + address = {Cape Town}, + year = {1931}, + glottolog_ref = {eballiso2009:5015}, + key = {Cook (1931)}, + lgcode = {Bomvana [bomv1238]} +} +@article{cook1942, + author = {Cook, P. IV-6.}, + title = {The application of the Rorschach test to a Samoan group}, + journal = {Rorschach Research Exchange}, + volume = {6}, + pages = {51-60}, + year = {1942}, + key = {Cook (1942)}, + lgcode = {American Samoans [samo1305]} +} +@article{cook1955, + author = {Cook, S. F.}, + title = {The Aboriginal Population of the San Joaquin Valley, California}, + journal = {Anthropological Records}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {16}, + number = {2}, + pages = {31-81}, + year = {1955}, + key = {Cook (1955)}, + lgcode = {Central Sierra Miwok [cent2140], Lake Miwok [lake1258], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Wukchumni [tule1245]} +} +@article{cook1956, + author = {Cook, S. F.}, + title = {The Aboriginal Population of the North Coast of California}, + journal = {Anthropological Records}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {16}, + number = {3}, + year = {1956}, + key = {Cook (1956)}, + lgcode = {Clear Lake Pomo [east2545], Hupa [hupa1239], Karuk [karo1304], Kashaya Pomo [kash1280], Mattole-Bear River [matt1238], Northern Pomo [nort2966], Sinkyone [wail1244], Tolowa [tolo1259], Wappo [wapp1239], Wiyot [wiyo1248], Yuki [yuki1243], Yurok [yuro1248]} +} +@book{cookandheizer1965, + author = {Cook, S. F., and R. F. Heizer}, + title = {The Quantitative Approach to the Relation between Population and Settlement Size}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {Contributions of the University of the California Archaeological Research Facility}, + number = {64}, + year = {1965}, + key = {Cook and Heizer (1965)}, + lgcode = {Central Sierra Miwok [cent2140], Chumash [cruz1243], Karuk [karo1304], Maidu [nort2952], Nisenan [nise1244], Shasta [shas1239], Wappo [wapp1239], Wintu [nucl1651]} +} +@article{cooley1962a, + author = {Cooley, F. L.}, + title = {Ambonese Adat}, + journal = {Yale Univ. Asia Studies, Cult. Rep. Ser.}, + volume = {10}, + pages = {1-94}, + year = {1962}, + key = {Cooley (1962a)}, + lgcode = {Ambonese [ambo1250]} +} +@article{cooley1962b, + author = {Cooley, F. L.}, + title = {Ambonese Kin Groups}, + journal = {Ethnology}, + volume = {1}, + pages = {102-112}, + year = {1962}, + key = {Cooley (1962b)}, + lgcode = {Ambonese [ambo1250]} +} +@article{coon1931, + author = {Coon, C. S.}, + title = {Tribes of the Rif}, + journal = {Harvard African Studies}, + publisher = {Cambridge MA: Harvard Univ. Press}, + address = {Cambridge MA}, + series = {Harvard African studies}, + volume = {9}, + pages = {1-417}, + year = {1931}, + glottolog_ref = {eballiso2009:6585}, + key = {Coon (1931)}, + lgcode = {Riffians [tari1263]} +} +@book{coon1939, + author = {Coon, C. S.}, + title = {Races of Europe}, + publisher = {Macmillan and Co.}, + address = {New York}, + year = {1939}, + key = {Coon (1939)}, + lgcode = {Dutch [dutc1256]} +} +@incollection{coon1949, + author = {Coon, Carleton S.}, + editor = {Robert J. Kerner}, + title = {Racial history}, + booktitle = {Yugoslavia}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1949}, + key = {Coon (1949)}, + lgcode = {Serbs [serb1264]} +} +@article{coon1950, + author = {Coon, C. S.}, + title = {The Mountain of Giants}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + volume = {23}, + pages = {iii, 1-105}, + year = {1950}, + key = {Coon (1950)}, + lgcode = {Gheg [gheg1238]} +} +@article{cooper1917, + author = {Cooper, J. M.}, + title = {Analytical and Critical Bibliography of the Tribes of Tierra del Fuego and Adjacent Territory}, + journal = {Bull. Bur. Amer. Ethn.}, + address = {Washington}, + volume = {63}, + pages = {1-233}, + year = {1917}, + glottolog_ref = {fabreall2009ann:2223}, + key = {Cooper (1917)}, + lgcode = {Alacaluf [qawa1238], Yahgan [yama1264]} +} +@incollection{cooper1946a, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Yahgan}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {81-106}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + key = {Cooper (1946a)}, + lgcode = {Yahgan [yama1264]} +} +@incollection{cooper1946b, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Ona}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {107-125}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + key = {Cooper (1946b)}, + lgcode = {Ona [onaa1245]} +} +@incollection{cooper1946c, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Patagonian and Pampean hunters}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {127-168}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + key = {Cooper (1946c)}, + lgcode = {Tehuelche [tehu1242]} +} +@incollection{cooper1946d, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Chono}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {47-55}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + glottolog_ref = {fabreall2009ann:Chon25}, + key = {Cooper (1946d)}, + lgcode = {Chono [chon1248]} +} +@article{cooper1956, + author = {Cooper, J. M.}, + title = {The Gros Ventre of Montana: Religion and Ritual}, + journal = {Catholic University of America Anthropological Series}, + volume = {16}, + pages = {1-491}, + year = {1956}, + key = {Cooper (1956)}, + lgcode = {Gros Ventre [gros1243]} +} +@misc{cooper1991, + author = {Cooper, Z.}, + title = {Abandoned Onge Encampments and Their Relevance in Understanding the Archaeological Record in the Andaman Islands}, + year = {1991}, + howpublished = {Prepared for the Symposium on Living Traditions: South Asian Ethnoarchaeology, Cambridge, U.K., September 23-25. Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Cooper (1991)}, + lgcode = {Onge [onge1236]} +} +@book{copway1851, + author = {Copway, G.}, + title = {The Traditional History and Characteristic Sketches of the Ojibway Nation}, + publisher = {Benjamin B. Busey}, + address = {Boston}, + year = {1851}, + key = {Copway (1851)} +} +@article{corbusier1886, + author = {Corbusier, Wm. F.}, + title = {The Apache-Yumas and Apache-Mojaves}, + journal = {American Antiquarian}, + volume = {8}, + pages = {276-284, 325-339}, + year = {1886}, + key = {Corbusier (1886)}, + lgcode = {Yavapai [yava1252]} +} +@article{corfield1938, + author = {Corfield, F. D.}, + title = {The Koma}, + journal = {Sudan Notes and Records}, + volume = {25}, + pages = {123-165}, + year = {1938}, + glottolog_ref = {weball:4554}, + key = {Corfield (1938)}, + lgcode = {Koma [komo1258]} +} +@article{cornell1964, + author = {Cornell, J. B.}, + title = {Ainu Assimilation and Cultural Extinction: Acculturation Policy in Hokkaido}, + journal = {Ethnology}, + volume = {3}, + pages = {287-304}, + year = {1964}, + key = {Cornell (1964)}, + lgcode = {Ainu [ainu1240]} +} +@book{cortier1908, + author = {Cortier, M.}, + title = {D'une rive a l'autre du Soudan}, + address = {Paris}, + year = {1908}, + key = {Cortier (1908)}, + lgcode = {Ifora [tadh1242]} +} +@book{cory1953, + author = {Cory, H.}, + title = {Sukuma Law and Custom}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + year = {1953}, + glottolog_ref = {eballiso2009:6430}, + key = {Cory (1953)}, + lgcode = {Sukuma [suku1261]} +} +@book{coryandhartnoll1945, + author = {Cory, H., and M. M. Hartnoll.}, + title = {Customary Law of the Haya Tribe}, + address = {London}, + year = {1945}, + key = {Cory and Hartnoll (1945)}, + lgcode = {Haya [haya1250]} +} +@article{cotlarciuc1913, + author = {Cotlarciuc, N.}, + title = {Beitraege zum lebenden Ehe- und Familienrecht der Rumaenen}, + journal = {Zeits. Oesterr. Volkskunde}, + volume = {19}, + pages = {16-32, 93-104}, + year = {1913}, + key = {Cotlarciuc (1913)}, + lgcode = {Romanians [baya1255]} +} +@book{coudreau1893, + author = {Coudreau, H. A.}, + title = {Chez nos Indiens}, + address = {Paris}, + year = {1893}, + key = {Coudreau (1893)}, + lgcode = {Rucuyen [waya1269]} +} +@book{coughlin1950, + author = {Coughlin, R. J.}, + title = {The Position of Women in Vietnam}, + address = {New Haven}, + year = {1950}, + key = {Coughlin (1950)}, + lgcode = {Annamese [viet1252]} +} +@incollection{coughlin1965, + author = {Coughlin, R. J.}, + editor = {D. V. Hart, et al.}, + title = {Pregnancy and Childbirth in Vietnam}, + booktitle = {Southeast Asian Birth Customs: Three Studies in Human Reproduction}, + address = {New Haven}, + year = {1965}, + key = {Coughlin (1965)}, + lgcode = {Annamese [viet1252]} +} +@book{courlander1960, + author = {Courlander, H.}, + title = {The Drum and the Hoe: Life and Lore of the Haitian People}, + address = {Berkeley and Los Angeles}, + year = {1960}, + key = {Courlander (1960)}, + lgcode = {Haitians [hait1244]} +} +@article{coutouly1920, + author = {Coutouly, F. de.}, + title = {Quelques coutumes des Kroumen du Bas-Cavally}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {3}, + pages = {79-98}, + year = {1920}, + key = {Coutouly (1920)}, + lgcode = {Bakwe [bakw1243]} +} +@article{coutouly1923, + author = {Coutouly, F. de.}, + title = {Les populations du cercle de Dori}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {6}, + pages = {269-301, 471-496, 637-671}, + year = {1923}, + key = {Coutouly (1923)}, + lgcode = {Liptako [west2454], Udalan Tuareg [timb1263]} +} +@book{covarrubias1937, + author = {Covarrubias, Miguel.}, + title = {Island of Bali}, + address = {New York}, + year = {1937}, + key = {Covarrubias (1937)}, + lgcode = {Bali Nyonga [mung1266], Balinese [bali1278]} +} +@article{cowan1946, + author = {Cowan, F. H.}, + title = {Notas etnograficas sobre los Mazateco de Oaxaca}, + journal = {America Indigena}, + volume = {6}, + pages = {27-39}, + year = {1946}, + glottolog_ref = {sil16:10450}, + key = {Cowan (1946)}, + lgcode = {Mazateco [huau1238]} +} +@article{cowan1947, + author = {Cowan, F. H.}, + title = {Linguistic and Ethnological Aspects of Mazateco Kinship}, + journal = {Southw. Journ. Anth.}, + volume = {3}, + pages = {247-256}, + year = {1947}, + glottolog_ref = {sil16:10451}, + key = {Cowan (1947)}, + lgcode = {Mazateco [huau1238]} +} +@book{coxe1804, + author = {Coxe, W.}, + title = {Account of Russian Discoveries Between Asia and America}, + address = {London}, + year = {1804}, + key = {Coxe (1804)}, + lgcode = {Aleut [east2533]} +} +@article{coxhead1914, + author = {Coxhead, J. C. C.}, + title = {The Native Tribes of Northeastern Rhodesia}, + journal = {Roy. Anth. Inst. Occ. Pap.}, + publisher = {London: Royal Anthropological Inst. of Great Britain and Ireland (RAI)}, + address = {London}, + series = {Occasional papers}, + volume = {5}, + pages = {43-57}, + year = {1914}, + glottolog_ref = {eballiso2009:31863}, + key = {Coxhead (1914)}, + lgcode = {Iwa [nyam1275]} +} +@article{crabbeck1943, + author = {Crabbeck, G.}, + title = {Les Gbwaka}, + journal = {Bull. Juris. Indig. Droit Cout. Congol.}, + volume = {11}, + pages = {85-108}, + year = {1943}, + key = {Crabbeck (1943)}, + lgcode = {Bwaka [ngba1284]} +} +@article{craig1967, + author = {Craig, A. K.}, + title = {Brief Ethnology of the Campa Indians}, + journal = {America Indigena}, + volume = {27}, + pages = {223-235}, + year = {1967}, + key = {Craig (1967)}, + lgcode = {Asháninka [ajyi1238]} +} +@book{crane1955, + editor = {Crane, R. L.}, + title = {Jammu and Kashmir State}, + address = {New Haven}, + year = {1955}, + key = {Crane (1955)}, + lgcode = {Kashmiri [kash1277]} +} +@book{cranz1767, + author = {Cranz, D.}, + title = {The History of Greenland}, + publisher = {Brethren's Society}, + address = {London}, + volume = {1}, + year = {1767}, + key = {Cranz (1767)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{crazzolara1954, + author = {Crazzolara, J. P.}, + title = {Lwoo Clans}, + address = {Verona}, + year = {1954}, + key = {Crazzolara (1954)}, + lgcode = {Jur [luwo1239]} +} +@book{cremer192427, + author = {Cremer, J.}, + title = {Les Bobo}, + address = {Paris}, + volume = {2}, + year = {1924-27}, + key = {Cremer (1924-27)}, + lgcode = {Bobo [nort2819]} +} +@book{cresswell1969, + author = {Cresswell, R.}, + title = {Une communaut‚ rurale d'Irlande}, + address = {Paris}, + series = {Travaux et Memoires de I'Institut d'Ethnologie}, + volume = {74}, + pages = {1-571}, + year = {1969}, + key = {Cresswell (1969)}, + lgcode = {Irish [iris1253]} +} +@article{crocker1961, + author = {Crocker, W. H.}, + title = {The Canela since Nimuendaji}, + journal = {Anthropological Quarterly}, + volume = {23}, + pages = {69-84}, + year = {1961}, + key = {Crocker (1961)}, + lgcode = {Canela [cane1242]} +} +@article{crosby1937, + author = {Crosby, K. H.}, + title = {Polygamy in Mende Country}, + journal = {Africa}, + volume = {10}, + pages = {249-264}, + year = {1937}, + key = {Crosby (1937)}, + lgcode = {Mende [mend1266]} +} +@article{crosson1900, + author = {Crosson.}, + title = {L'thnographie de la Cote d'Ivoire}, + journal = {Rens. Colon. Doc. Com. Afr. Franc.}, + volume = {10}, + pages = {93-99, 111-118}, + year = {1900}, + key = {Crosson (1900)}, + lgcode = {Attie [atti1239]} +} +@incollection{crowandobley1981, + author = {Crow, J. R., and P. R. Obley}, + editor = {Helm, J.}, + title = {Han}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washinton D. C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {506-513}, + year = {1981}, + glottolog_ref = {hh:e:CrowObley:Han}, + key = {Crow and Obley (1981)}, + lgcode = {Hän [hann1241]} +} +@book{cruise1824, + author = {Cruise, R. A.}, + title = {Journal of a Ten Month's Residence in New Zealand. 2nd edit.}, + address = {London}, + year = {1824}, + key = {Cruise (1824)}, + lgcode = {Māori [maor1246]} +} +@book{cuentas1929, + author = {Cuentas, J.A.}, + title = {Chucuito: Album grafico e historico}, + year = {1929}, + key = {Cuentas (1929)}, + lgcode = {Aymara [cent2142]} +} +@book{culbertson1952, + author = {Culbertson, T. A.}, + editor = {J. F. McDermott}, + title = {Journal of an Expedition to the Mauvaises Terres and the Upper Missouri in 1850}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {147}, + year = {1952}, + key = {Culbertson (1952)}, + lgcode = {Assiniboine [assi1247], Gros Ventre [gros1243], Teton [lako1247]} +} +@book{culshaw1949, + author = {Culshaw, W. J.}, + title = {Tribal Heritage. A Study of the Santals}, + publisher = {Lutterworth Press}, + address = {London}, + year = {1949}, + key = {Culshaw (1949)}, + lgcode = {Santal [sant1410]} +} +@book{culwickandculwick1935, + author = {Culwick, A. T., and G. M. Culwick}, + title = {Ubena of the Rivers}, + publisher = {London: George Allen & Unwin}, + address = {London}, + year = {1935}, + glottolog_ref = {eballiso2009:59285}, + key = {Culwick and Culwick (1935)}, + lgcode = {Bena [bena1262]} +} +@article{cummins1904, + author = {Cummins, S. L.}, + title = {Sub-Tribes of the Bahr-el-Ghazal Dinka}, + journal = {Jounr. Roy. Anth. Inst.}, + volume = {34}, + pages = {149-166}, + year = {1904}, + glottolog_ref = {eballiso2009:42978}, + key = {Cummins (1904)}, + lgcode = {Dinka [sout2832]} +} +@article{cunhataborde1950, + author = {Cunha Taborde, A. de.}, + title = {Apontamentos etnograficos sobre as Felupes de Suzana}, + journal = {Bol. Cultural Guine Port.}, + volume = {5}, + pages = {187-223}, + year = {1950}, + key = {Cunha Taborde (1950)}, + lgcode = {Diola [ejam1238]} +} +@article{cunnison1950, + author = {Cunnison, I. G.}, + title = {Kinship and Local Organization in the Luapula}, + journal = {Commun. Rhodes-Liv. Inst.}, + publisher = {Livingstone (Northern Rhodesia)}, + series = {Comm. from the Rhodes-Livingstone Inst.}, + volume = {5}, + pages = {1-32}, + year = {1950}, + glottolog_ref = {eballiso2009:5639}, + key = {Cunnison (1950)}, + lgcode = {Luapula [luun1238]} +} +@article{cunnison1954, + author = {Cunnison, I.}, + title = {The Humr and Their Land}, + journal = {Sudan Notes}, + volume = {35}, + pages = {ii, 50-68}, + year = {1954}, + key = {Cunnison (1954)}, + lgcode = {Messiria Humr [tama1331]} +} +@book{cunnison1959, + author = {Cunnison, I. G.}, + title = {The Luapula Peoples of Northern Rhodesia}, + address = {Manchester}, + year = {1959}, + key = {Cunnison (1959)}, + lgcode = {Luapula [luun1238]} +} +@book{curtis1908, + author = {Curtis, E. S.}, + title = {The Teton Sioux. The Yanktonai. The Assiniboin.}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {3}, + pages = {3-118, 137-190}, + year = {1908}, + key = {Curtis (1908)}, + lgcode = {Teton [lako1247]} +} +@book{curtis1909, + author = {Curtis, E. S.}, + title = {The Apsaroke, or Crows. The Hidatsa.}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {4}, + pages = {129-172, 180-196}, + year = {1909}, + key = {Curtis (1909)}, + lgcode = {Hidatsa [hida1246]} +} +@book{curtis1909b, + author = {Curtis, E. S.}, + title = {The Mandan. The Arikara. The Atsina.}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {5}, + year = {1909}, + key = {Curtis (1909b)}, + lgcode = {Arikara [arik1262]} +} +@book{curtis1911, + author = {Curtis, E. S.}, + title = {The Nez Perces. Wallawalla. Umatilla. Cayuse. The Chinookan tribes.}, + address = {Norwood}, + series = {The North American Indian}, + volume = {8}, + pages = {3-195}, + year = {1911}, + key = {Curtis (1911)}, + lgcode = {Nez Perce [nezp1238]} +} +@book{curtis1912, + author = {Curtis, E. S.}, + title = {The Salishan tribes of the coast. The Chimakum and the Quilliute. The Willapa.}, + address = {Norwood}, + series = {The North American Indian}, + volume = {9}, + pages = {19-195}, + year = {1912}, + key = {Curtis (1912)}, + lgcode = {Lummi [lumm1243]} +} +@misc{curtis1926, + author = {Curtis, Edward S.}, + title = {The Tiwa. The Keres}, + publisher = {Plimpton Press}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {16}, + pages = {65-248}, + year = {1926}, + key = {Curtis (1926)}, + lgcode = {Acoma [acom1246]}, + note = {Reprinted by Johnson Reprint, 1970} +} +@book{curtis1930, + author = {Curtis, E. S.}, + title = {The Indians of Oklahoma. The Wichita. The southern Cheyenne. The Oto. The Comanche. The Peyote cult.}, + address = {Norwood}, + series = {The North American Indian}, + volume = {19}, + year = {1930}, + key = {Curtis (1930)}, + lgcode = {Wichita [wich1260]} +} +@article{cushing1882, + author = {Cushing, F. H.}, + title = {The Nation of the Willows}, + journal = {Atlantic Monthly}, + volume = {50}, + pages = {362-374, 541-559}, + year = {1882}, + key = {Cushing (1882)}, + lgcode = {Havasupai [hava1249]} +} +@book{cushing1896, + author = {Cushing, Frank}, + title = {Outlines of Zuni Creation Myths}, + series = {Annual Report of the Bureau of Ethnology}, + volume = {13}, + pages = {321-447}, + year = {1896}, + url = {https://archive.org/details/cu31924104094002}, + key = {Cushing (1896)}, + lgcode = {Zuni [zuni1245]} +} +@article{cushing1920, + author = {Cushing, F. H.}, + title = {Zuni Breadstuffs}, + journal = {Indian Notes and Monographs}, + volume = {8}, + pages = {1-673}, + year = {1920}, + key = {Cushing (1920)}, + lgcode = {Zuni [zuni1245]} +} +@book{cusinier1946, + author = {Cusinier, J.}, + title = {Les Mu'o'ng}, + series = {Trav. Mem. Inst. Ethnol.}, + volume = {45}, + year = {1946}, + key = {Cusinier (1946)}, + lgcode = {Muong [muon1246]} +} +@incollection{cybulski1990b, + author = {Cybulski, J. S.}, + editor = {W. Suttles}, + title = {Human Biology}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D. C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {52-59}, + year = {1990}, + key = {Cybulski (1990b)}, + lgcode = {Gitxsan [gitx1241], Haida [nort2938], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], Stó:lō [chil1281]} +} +@book{czaplieka1914, + author = {Czaplieka, M. A.}, + title = {Aboriginal Siberia}, + publisher = {At the Clarendon Press}, + address = {Oxford}, + year = {1914}, + key = {Czaplieka (1914)}, + lgcode = {Koryak [kory1246]} +} +@book{czekanowski1917, + author = {Czekanowski, J.}, + title = {Forschungen im Nil-Kongo Zwischengebiet}, + address = {Leipzig}, + series = {WissenschAftliche Ergebnisse der Deutschen Zentral-Afrika Expedition, 1907-1908, unter Führung Adolf Friedrichs Herzog zu Mecklenburg}, + volume = {6}, + number = {1}, + pages = {103-412}, + year = {1917}, + glottolog_ref_id = {86631}, + key = {Czekanowski (1917)}, + lgcode = {Banyaruanda [kiny1244]} +} +@book{czekanowski1924, + author = {Czekanowski, Jan}, + title = {Forschungen im Nil-Kongo Zwischengebiet}, + publisher = {Klinkhardt und Bierman}, + address = {Leipzig}, + series = {WissenschAftliche Ergebnisse der Deutschen Zentral-Afrika Expedition, 1907-1908, unter Führung Adolf Friedrichs Herzog zu Mecklenburg}, + volume = {6}, + number = {2}, + year = {1924}, + url = {https://archive.org/details/forschungenimnil02czek}, + glottolog_ref_id = {158170}, + key = {Czekanowski (1924)}, + lgcode = {Abarambo [bara1361], Baboa [bwaa1238], Bakongo [sans1272], Bira [bila1255], Budu [budu1250], Konjo [konz1239], Lendu [lend1245], Lese [lese1243], Logo [logo1259], Madi [madi1260], Mamvu [mamv1243], Mangbetu [nucl1420], Ndaka Babali [bali1274], Plains Bira [bera1259]} +} +@article{daigre193232, + author = {Daigre}, + title = {Les Bandas de l'Oubangui-Chari}, + journal = {Anthropos}, + volume = {26; 27}, + pages = {547-695; 153-181}, + year = {1932-32}, + key = {Daigre (1932-32)}, + lgcode = {Banda [west2458]} +} +@book{dallet1874, + author = {Dallet, C.}, + title = {Histoire de l'eglise de Coree, v. I.}, + address = {Paris}, + year = {1874}, + key = {Dallet (1874)}, + lgcode = {Koreans [kore1280]} +} +@book{dalman1932, + author = {Dalman, G.}, + title = {Arbeit und Sitte in Palestina. 8 v.}, + address = {Gütersloh}, + year = {1932}, + key = {Dalman (1932)}, + lgcode = {Hebrews [anci1244]} +} +@article{damas1964, + author = {Damas, D.}, + title = {The Patterning of the Iglulingmiut Kinship System}, + journal = {Ethnology}, + volume = {3}, + pages = {377-388}, + year = {1964}, + key = {Damas (1964)}, + lgcode = {Iglulik Inuit [west2618]} +} +@incollection{damas1972, + author = {Damas, D.}, + editor = {M. G. Bicchieri}, + title = {The Copper Eskimo}, + booktitle = {Hunters and Gatherers Today A Socioeconomic Study of Eleven Such Cultures in th Twentieth Century}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + pages = {3-50}, + year = {1972}, + key = {Damas (1972)}, + lgcode = {Copper Inuit [copp1244]} +} +@incollection{damas1984, + author = {Damas, D. (editor)}, + editor = {D. Damas}, + title = {Copper Eskimo}, + booktitle = {Arctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {397-414}, + year = {1984}, + key = {Damas (1984)}, + lgcode = {Copper Inuit [copp1244]} +} +@misc{damas1992, + author = {Damas}, + year = {1992}, + howpublished = {letter 7/6/92}, + key = {Damas (1992)}, + lgcode = {Iglulik Inuit [west2618]} +} +@book{damm1938, + author = {Damm, Hans, et al.}, + title = {Zentralkurolinen, Part II: Ifaluk, Aurepik, Faraulip, Sorol, Mogemog (The Central Carolines Part II)}, + publisher = {Friederichsen, De Gruyter}, + address = {Hamburg}, + series = {Ergebnisse der Südsee-Expedition 1908-1910. Section B}, + volume = {10, Part 2}, + year = {1938}, + key = {Damm (1938)}, + lgcode = {Ifaluk [nucl1479]} +} +@article{daniel1910, + author = {Daniel, F.}, + title = {Etude sur les Soninkes ou Sarakoles}, + journal = {Anthropos}, + volume = {5}, + pages = {27-49}, + year = {1910}, + glottolog_ref = {eballiso2009:16000}, + key = {Daniel (1910)}, + lgcode = {Soninke [soni1259]} +} +@article{daniell1856, + author = {Daniell, W. F.}, + title = {On the Ethnography of Akkrah and Adampe}, + journal = {Journ. Ethnol. Soc. London}, + volume = {4}, + pages = {1-32}, + year = {1856}, + key = {Daniell (1856)}, + lgcode = {Adangme [adan1247], Ga [gaaa1244]} +} +@article{danielsson1954, + author = {Danielsson, B.}, + title = {Raroian Culture}, + journal = {Atoll Research Bulletin}, + publisher = {Smithsonian Institution}, + address = {Washington D.C.}, + volume = {32}, + pages = {1-109}, + year = {1954}, + key = {Danielsson (1954)}, + lgcode = {Raroians [tuam1242]} +} +@book{danielsson1955, + author = {Danielsson, B.}, + title = {Work and Life on Raroia}, + address = {Uppsala}, + year = {1955}, + key = {Danielsson (1955)}, + lgcode = {Raroians [tuam1242]} +} +@book{darmagnac1934, + author = {d'Armagnac.}, + title = {LeMzab et les pays Chaamba}, + address = {Alger}, + year = {1934}, + key = {d'Armagnac (1934)}, + lgcode = {Chaambra [algi1247]} +} +@article{dart1937b, + author = {Dart, R.A.}, + title = {The physical characters of the /?Auni=Khomani Bushmen}, + journal = {Bantu Studies}, + volume = {11}, + pages = {176-246}, + year = {1937}, + key = {Dart (1937b)}, + lgcode = {/'Auni-Khomani [nuuu1241]} +} +@book{das1902, + author = {Das, Sarat Chandra}, + title = {Journey to Lhasa and Central Tibet}, + publisher = {John Murray}, + address = {London}, + year = {1902}, + key = {Das (1902)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{das1945, + author = {Das, T. C.}, + title = {The Purums}, + address = {Calcutta}, + year = {1945}, + glottolog_ref = {sala:1987}, + key = {Das (1945)}, + lgcode = {Purum [puru1266]} +} +@article{das1967, + author = {Das, A. K.}, + title = {Scientific Analysis of "Santal" Social System}, + journal = {Bulletin of the Cultural Research Institute}, + volume = {6}, + number = {i-ii}, + pages = {5-9}, + year = {1967}, + key = {Das (1967)}, + lgcode = {Santal [sant1410]} +} +@book{dasandbanerjee1962, + author = {Das, A. K., and S. K. Banerjee.}, + title = {The Lepchas of Darjeeling District}, + publisher = {Cultural Research Institute}, + address = {Calcutta}, + year = {1962}, + key = {Das and Banerjee (1962)}, + lgcode = {Lepcha [lepc1244]} +} +@book{dasent1861, + author = {Dasent, G. W.}, + title = {The Story of the Burnt Njal}, + address = {Edinburgh}, + year = {1861}, + key = {Dasent (1861)}, + lgcode = {Icelanders [icel1247]} +} +@book{dass1954, + author = {Dass, A.}, + title = {An Economic Survey of Gajju Chak}, + address = {Lahore}, + series = {Punjab Village Surveys}, + volume = {6}, + year = {1954}, + key = {Dass (1954)}, + lgcode = {Punjabi [west2386]} +} +@article{dattamajumder1956, + author = {Datta-Majumder, Nabendu}, + title = {The Santal. A Study in Culture Change}, + journal = {Memoirs of the Department of Anthropology, Government of India}, + volume = {2}, + pages = {1-150}, + year = {1956}, + key = {Datta-Majumder (1956)}, + lgcode = {Santal [sant1410]} +} +@incollection{davenport1964, + author = {Davenport, W.}, + editor = {W. H. Goodenough}, + title = {Social Structure of Santa Cruz Island}, + booktitle = {Explorations in Cultural Anthropology}, + address = {New York}, + pages = {57-93}, + year = {1964}, + key = {Davenport (1964)}, + lgcode = {Santa Cruz Islanders [natu1246]} +} +@misc{davenportnd, + author = {Davenport, W.}, + howpublished = {Unpublished ethnographic notes}, + key = {Davenport (nd)}, + lgcode = {Cantonese [yuec1235]} +} +@article{davidson1948, + author = {Davidson, J. W.}, + title = {Political Development in Western Samoa}, + journal = {Pacific Affairs}, + volume = {21}, + pages = {136-149}, + year = {1948}, + key = {Davidson (1948)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{davies1949, + author = {Davies, R. P.}, + title = {Syrian Arabic Kinship Terms}, + journal = {Southw. Journ. Anth.}, + volume = {5}, + pages = {244-252}, + year = {1949}, + key = {Davies (1949)}, + lgcode = {Lebanese [nort3139]} +} +@book{davis1959, + author = {Davis, W. St.}, + title = {A Day in Old Rome}, + address = {New York}, + year = {1959}, + key = {Davis (1959)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{davis1965, + author = {Davis, E. L.}, + title = {An Ethnography of the Kuzedika Paiute of Mono Lake, Mono County, California}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {University of Utah Anthropological Papers}, + number = {75}, + year = {1965}, + key = {Davis (1965)}, + lgcode = {Mono Lake Northern Paiute [sout2967]} +} +@article{dawson1891, + author = {Dawson, G. M.}, + title = {Notes on the Shuswap People of British Columbia}, + journal = {Proceedings and Transactions of the Royal Society of Canada}, + volume = {9}, + number = {2}, + pages = {3-44}, + year = {1891}, + key = {Dawson (1891)}, + lgcode = {Shuswap [shus1248]} +} +@article{dazevedo1962, + author = {d'Azevedo, W. L.}, + title = {Common Principles of Variant Kinship Structure Among the Gola of Western Liberia}, + journal = {American Anthropologist}, + volume = {64}, + pages = {504-520}, + year = {1962}, + key = {d'Azevedo (1962)}, + lgcode = {Gola [gola1255]} +} +@book{dazevedo1963, + editor = {D'Azevedo, W. L.}, + title = {The Washo Indians of California and Nevada}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {University of Utah Anthropological Papers}, + number = {67}, + year = {1963}, + key = {d'Azevedo (1963)}, + lgcode = {Washo [wash1253]} +} +@article{deacon1927, + author = {Deacon, A. B.}, + title = {The Regulation of Marriage in Ambrym}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {57}, + pages = {325-342}, + year = {1927}, + key = {Deacon (1927)}, + lgcode = {Ranon [nort2839]} +} +@article{deacon1929, + author = {Deacon, A. B.}, + title = {Notes on Some Islands of the New Hebrides}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {59}, + pages = {498-506}, + year = {1929}, + key = {Deacon (1929)}, + lgcode = {Epi [lame1260]} +} +@book{deacon1934, + author = {Deacon, A. B.}, + title = {Malekula}, + address = {London}, + year = {1934}, + key = {Deacon (1934)}, + lgcode = {Seniang [sout2857]} +} +@misc{deananddean1954, + author = {Dean, J., and G. Dean}, + title = {Bilaan Word List}, + year = {1954}, + howpublished = {Unpublished Ms.}, + key = {Dean and Dean (1954)}, + lgcode = {Bilaan [koro1310]} +} +@book{deane1921, + author = {Deane, W.}, + title = {Fijian Society}, + address = {London}, + year = {1921}, + key = {Deane (1921)}, + lgcode = {Mbau Fijians [bauu1243]} +} +@incollection{debertrodano1978, + author = {De Bertrodano, R. E.}, + editor = {I. McBryde}, + title = {Description of an Aboriginal Tribe}, + booktitle = {Records of Times Past}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {281-286}, + year = {1978}, + key = {de Bertrodano (1978)}, + lgcode = {Badjalang [midd1357]} +} +@book{decary193033, + author = {Decary, R.}, + title = {L'Androy. 2V}, + address = {Paris}, + year = {1930-33}, + key = {Decary (1930-33)}, + lgcode = {Antandroy [tand1256]} +} +@article{decastroandalmeida1956, + author = {De Castro, M. E., and A. Alemeida}, + title = {Canones de mulheres indigenas de Angola}, + journal = {Progresso Cien}, + volume = {23}, + pages = {6-16}, + year = {1956}, + key = {De Castro and Almeida (1956)}, + lgcode = {Sekele [vase1234]} +} +@article{decastroandalmeida1957, + author = {De Castro, M. E., and A. Alemeida}, + title = {Subsidio para a estudo anthropologico dos Mucussos e mangares (Angolo)}, + journal = {Ultram}, + volume = {6}, + pages = {1-14}, + year = {1957}, + key = {De Castro and Almeida (1957)}, + lgcode = {Sekele [vase1234]} +} +@article{decker1942, + author = {Decker, J. M. de.}, + title = {Contribution a Petude du mariage chez les Bambunda}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + volume = {10}, + pages = {125-146}, + year = {1942}, + key = {Decker (1942)}, + lgcode = {Bunda [mpuo1241]} +} +@article{decleene1937a, + author = {De Cleene, N.}, + title = {La famille dans l'organisation sociale du Mayombe}, + journal = {Africa}, + volume = {10}, + pages = {1-16}, + year = {1937}, + key = {De Cleene (1937a)}, + lgcode = {Yombe [yomb1244]} +} +@article{decleene1937b, + author = {De Cleene, N.}, + title = {La structure de la societe Yombe}, + journal = {Bull. Seances Inst. Roy. Colon. Belge}, + volume = {8}, + pages = {44-51}, + year = {1937}, + key = {De Cleene (1937b)}, + lgcode = {Yombe [yomb1244]} +} +@article{dejong1912, + author = {DeJong, J.}, + title = {Social Organization of the Southern Peigans}, + journal = {Internationales Archiv Ethnographie}, + volume = {20}, + pages = {191-197}, + year = {1912}, + key = {DeJong (1912)}, + lgcode = {Piegan [pieg1239]} +} +@article{delacauw1936, + author = {Delacauw, A.}, + title = {Droit coutumier des Barundi}, + journal = {Congo}, + volume = {17}, + pages = {i, 332-357, 481-522}, + year = {1936}, + key = {Delacauw (1936)}, + lgcode = {Rundi [rund1242]} +} +@article{delacour191213, + author = {Delacour, A.}, + title = {Les Tenda}, + journal = {Rev. Ethnog. Sociol.}, + volume = {3; 4}, + pages = {287-296, 307-381; 31-53, 105-120, 140-153}, + year = {1912-13}, + key = {Delacour (1912-13)}, + lgcode = {Coniagui [wame1240]} +} +@book{delafosse1897, + author = {DelAfosse, M.}, + title = {Essai sur le peuple et la langue sara}, + publisher = {Paris: André'}, + address = {Paris}, + year = {1897}, + glottolog_ref = {eballiso2009:36341}, + key = {DelAfosse (1897)}, + lgcode = {Sara [sarr1246]} +} +@article{delafosse1899, + author = {DelAfosse, M.}, + title = {Les Vai}, + journal = {Anthropologie}, + volume = {10}, + pages = {129-250, 294-314}, + year = {1899}, + key = {DelAfosse (1899)}, + lgcode = {Vai [vaii1241]} +} +@article{delafosse190809, + author = {DelAfosse, M.}, + title = {Le peuple Siena ou Senoufo}, + journal = {Rev. et. Ethnog. Sociol.}, + volume = {1; 2}, + pages = {17-32, 79-92, 151-159, 242-275, 448-457, 483-486; 1-21}, + year = {1908-09}, + key = {DelAfosse (1908-09)}, + lgcode = {Senufo [ceba1235]} +} +@book{delaguna1956, + author = {de Laguna, F.}, + title = {Chugash Prehistory: The Archaeology of Prince William Sound, Alaska}, + publisher = {University of Washington Press}, + address = {Seattle}, + year = {1956}, + key = {de Laguna (1956)}, + lgcode = {Chugach [chug1254]} +} +@book{delaguna1960, + author = {de Laguna, Frederica}, + title = {The story of a Tlingit community: A problem in the relationship between archeological, ethnological, and historical methods}, + series = {Bulletin of the Bureau of American Ethnology}, + volume = {172}, + year = {1960}, + key = {de Laguna (1960)}, + lgcode = {North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@incollection{delaguna1990, + author = {de Laguna, F.}, + editor = {Wayne Suttles}, + title = {Eyak}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {189-198}, + year = {1990}, + glottolog_ref = {hh:e:DeLaguna:Eyak}, + key = {de Laguna (1990)}, + lgcode = {Eyak [eyak1241]} +} +@book{delaporte1925, + author = {Delaporte, L. J.}, + title = {Mesopotamia}, + address = {New York}, + year = {1925}, + key = {Delaporte (1925)}, + lgcode = {Babylonians [akka1240]} +} +@book{delbert1961, + author = {Delbert, J.}, + title = {Le Paysan Cambodgien}, + address = {Paris}, + year = {1961}, + key = {Delbert (1961)}, + lgcode = {Khmer [cent1989]} +} +@article{deleeuwe1966, + author = {De Leeuwe, J.}, + title = {Development in Bambuti society}, + journal = {Antropos}, + volume = {61}, + pages = {737-763}, + year = {1966}, + howpublished = {German}, + key = {De Leeuwe (1966)}, + lgcode = {Mbuti [bila1255]} +} +@article{deleval1912, + author = {Deleval, H.}, + title = {Les tribus Kavati du Mayombe}, + journal = {Rev. Congolaise}, + volume = {3}, + pages = {32-40, 103-115, 170-186, 253-264}, + year = {1912}, + key = {Deleval (1912)}, + lgcode = {Yombe [yomb1244]} +} +@article{delhaise1908, + author = {Delhaise, C.}, + title = {Chez les Wabemba}, + journal = {Bulletin de la Societe Royale Belge de Geographie}, + volume = {32}, + pages = {173-227, 261-283}, + year = {1908}, + glottolog_ref = {hh:e:Delhaise:Wabemba}, + key = {Delhaise (1908)}, + lgcode = {Bemba [town1238]} +} +@article{delhaise1909a, + author = {Delhaise, C.}, + title = {Chez les Wasongola du sud}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {33}, + pages = {34-58, 109-135, 159-214}, + year = {1909}, + key = {Delhaise (1909a)}, + lgcode = {Songola [song1300]} +} +@article{delhaise1909b, + author = {Delhaise, C.}, + title = {Les Warega}, + journal = {Coll. Monog. Ethnog.}, + volume = {5}, + pages = {1-376}, + year = {1909}, + key = {Delhaise (1909b)}, + lgcode = {Rega [lega1249]} +} +@article{delhaise1912, + author = {Delhaise, C.}, + title = {Les Bapopoïe}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {XXXVI}, + pages = {86-113, 149-202}, + year = {1912}, + glottolog_ref = {hh:ew:Delhaise-Arnould:Bapopoie}, + key = {Delhaise (1912)}, + lgcode = {Popoi [popo1291]} +} +@article{delmond1953, + author = {Delmond, P.}, + title = {Dans la boucle du Niger: Dori, ville peule}, + journal = {Mem. Inst. Franc. Afr. Noire}, + volume = {23}, + pages = {9-109}, + year = {1953}, + key = {Delmond (1953)}, + lgcode = {Liptako [west2454]} +} +@article{deloria1932, + author = {Deloria, E.}, + title = {Dakota Texts}, + journal = {Publ. Amer. Ethn. Soc.}, + publisher = {New York: Stechert}, + address = {New York}, + series = {Publications of the American Ethnological Society}, + volume = {14}, + pages = {1-279}, + year = {1932}, + glottolog_ref = {mpieva:Deloria1932Dakotate}, + key = {Deloria (1932)}, + lgcode = {Teton [lako1247]} +} +@book{dempsey1955, + author = {Dempsey, J.}, + title = {Mission on the Nile}, + address = {London}, + year = {1955}, + key = {Dempsey (1955)}, + lgcode = {Shilluk [shil1265]} +} +@article{dempwolff1914, + author = {Dempwolff, O.}, + title = {Beitrage zur Volksbeschreibung der Hehe}, + journal = {Baessler-Archiv}, + volume = {4}, + pages = {87-173}, + year = {1914}, + glottolog_ref = {hh:e:Dempwolff:Hehe}, + key = {Dempwolff (1914)}, + lgcode = {Hehe [hehe1240]} +} +@book{dempwolff1916, + author = {Dempwolff, O.}, + title = {Die Sandawe}, + address = {Hamburg}, + year = {1916}, + key = {Dempwolff (1916)}, + lgcode = {Sandawe [sand1273]} +} +@article{demuenynck1908, + author = {Demuenynck.}, + title = {Au pays de Mahagi}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {33}, + pages = {36-80, 93-133}, + year = {1908}, + key = {Demuenynck (1908)}, + lgcode = {Alur [alur1250]} +} +@article{denham1975, + author = {Denham, W. W.}, + title = {Population Properties of Physical Groups among the Alyawara Tribe of Central Australia}, + journal = {Archaeology and Physical Anthropology in Oceania}, + volume = {10}, + pages = {115-159}, + year = {1975}, + key = {Denham (1975)}, + lgcode = {Alyawara [alya1239]} +} +@book{denhamandclapperton1826, + author = {Denham, D., and H. Clapperton.}, + title = {Narrative of Travels and Discoveries in Northern and Central Africa}, + publisher = {London: John Murray}, + address = {London}, + year = {1826}, + glottolog_ref = {eballiso2009:52947}, + key = {Denham and Clapperton (1826)}, + lgcode = {Kanuri [cent2050]} +} +@incollection{denig1930, + author = {Denig, E. T.}, + editor = {J. N. B. Hewitt}, + title = {Indian Tribes of the Upper Missouri}, + booktitle = {Forty-Sixth Annual Report of the Bureau of American Ethnology}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {375-628}, + year = {1930}, + key = {Denig (1930)}, + lgcode = {Assiniboine [assi1247]} +} +@incollection{denig1953, + author = {Denig, E. T.}, + editor = {J. C. Ewers}, + title = {Of the Crow Nation}, + booktitle = {Smithsonian Anthropological Papers No. 33. Bureau of Amerian Ethnology Bulletin No. 151}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {1-74}, + year = {1953}, + key = {Denig (1953)}, + lgcode = {Crow [crow1244]} +} +@book{denig1961, + author = {Denig, E. T.}, + editor = {J. C. Ewers}, + title = {Five Indian Tribes of the Upper Missouri: Sioux, Arickaras, Assiniboines, Crees, Crows}, + publisher = {University of Oklahoma Press}, + address = {Norman}, + year = {1961}, + key = {Denig (1961)}, + lgcode = {Crow [crow1244]} +} +@article{denis1935, + author = {Denis, P. J.}, + title = {L'organisation d'un peuple primitif}, + journal = {Congo}, + volume = {16}, + pages = {481-502}, + year = {1935}, + glottolog_ref = {eballiso2009:5919}, + key = {Denis (1935)}, + lgcode = {Sakata [saka1287]} +} +@incollection{denisova1984, + author = {Denisova, N. P.}, + editor = {N. E. Egorov and V. A. Prohorova}, + title = {Administrativno-fiskal'nyei pravovye funktsii obshchiny u chuvashej (IX - nachaloX X v. ) (Administrative-Fiscal and Jurisdictional Functions of the Chuvash Community in the Nineteenth and early Twentieth Centuries)}, + booktitle = {Voprosy istorii dorevoljutsionnoj Chuvashii (Issues of the History of pre-Revolution Chuvashia)}, + address = {Cheboksary}, + pages = {46-71}, + year = {1984}, + key = {Denisova (1984)}, + lgcode = {Chuvash [chuv1255]} +} +@book{dennis1940, + author = {Dennis, W.}, + title = {The Hopi Child}, + address = {New York}, + year = {1940}, + key = {Dennis (1940)}, + lgcode = {Hopi [hopi1249]} +} +@incollection{dennison1981, + author = {Dennison, G.}, + editor = {J. Helm}, + title = {Sekani}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {433-441}, + year = {1981}, + key = {Dennison (1981)}, + lgcode = {Sekani [seka1250]} +} +@article{densmore1929, + author = {Densmore, F.}, + title = {Chippewa Customs}, + journal = {Bull. Bur. Amer. Ethn.}, + volume = {86}, + pages = {1-204}, + year = {1929}, + key = {Densmore (1929)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@book{dentan1967, + author = {Dentan, R. H.}, + title = {The Semai of West Malaysia}, + address = {New York}, + year = {1967}, + key = {Dentan (1967)}, + lgcode = {Senoi [sema1266]} +} +@article{denys1908, + author = {Denys, N.}, + editor = {W. F. Ganong}, + title = {The Description and Natural History of the Coasts of North America}, + journal = {Publications of the Champlain Society}, + volume = {2}, + pages = {399-452, 572-606}, + year = {1908}, + key = {Denys (1908)}, + lgcode = {Mi'kmaq [mikm1235]} +} +@article{depuydt1868, + author = {De Puydt, L.}, + title = {Account of Scientific Explorations in the Isthmus of Darien in the Years 1861 and 1865}, + journal = {Journal of the Royal Geographic Society}, + volume = {38}, + pages = {69-110}, + year = {1868}, + key = {De Puydt (1868)}, + lgcode = {Guna [bord1248]} +} +@article{descazes1885, + author = {Descazes, E.}, + title = {Sur les Batekes}, + journal = {Rev. Ethnog.}, + volume = {4}, + pages = {160-168}, + year = {1885}, + key = {Descazes (1885)}, + lgcode = {Teke [teke1278]} +} +@book{deschamps1936, + author = {Deschamps, H.}, + title = {Les Antaisaka}, + address = {Tananarive}, + year = {1936}, + key = {Deschamps (1936)}, + lgcode = {Antaisaka [tesa1236]} +} +@book{deschlippe1956, + author = {De Schlippe, P.}, + title = {Shifting Cultivation in Africa}, + address = {London}, + year = {1956}, + key = {De Schlippe (1956)}, + lgcode = {Azande [zand1248]} +} +@incollection{desoignies1903, + author = {Desoignies.}, + editor = {S. R. Steinmetz}, + title = {Die Msalala}, + booktitle = {Rechtsverhaltnisse von eingeborenen Volkern in Afrika und Ozeanien}, + publisher = {Berlin: Julius Springer-Verlag}, + address = {Berlin}, + pages = {268-282}, + year = {1903}, + glottolog_ref = {eballiso2009:35292}, + key = {Desoignies (1903)}, + lgcode = {Sumbwa [sumb1240]} +} +@book{despois1930, + author = {Despois, J.}, + title = {Le Tunisie}, + address = {Paris}, + year = {1930}, + key = {Despois (1930)}, + lgcode = {Tunisians [tuni1260]} +} +@book{despois1940, + author = {Despois, J.}, + title = {La Tunisie orientale: Sahel et basse steppe}, + address = {Paris}, + year = {1940}, + key = {Despois (1940)}, + lgcode = {Hamama [sout3114], Sahel [sahi1245]} +} +@book{destaing190711, + author = {Destaing, E.}, + title = {Etude sur le dialecte berbère des Beni Snous}, + publisher = {Paris: Ernest Leroux}, + address = {Paris}, + series = {Publ. de l'Ecole des Lettres d'Alger; Bulletin de correspondence de africaine}, + volume = {34-35}, + year = {1907-11}, + glottolog_ref = {eballiso2009:58253}, + key = {Destaing (1907-11)}, + lgcode = {Zekara [chen1266]} +} +@article{devallee1925, + author = {Devallee.}, + title = {Le Baghirmi}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {7}, + pages = {3-76}, + year = {1925}, + key = {Devallee (1925)}, + lgcode = {Shuwa [char1283]} +} +@book{devaux1961, + author = {DeVaux, R.}, + title = {Ancient Israel, Its Life and Institutions}, + address = {New York}, + year = {1961}, + key = {DeVaux (1961)}, + lgcode = {Hebrews [anci1244]}, + note = {John McHugh, Translator} +} +@incollection{devereaux1950, + author = {Devereaux, G.}, + editor = {Gez Roheim}, + title = {Heterosexual behavior of the Mohave Indians}, + booktitle = {Psychoanalysis and the Social Sciences (vol. 2)}, + publisher = {International. Universities Press}, + address = {New York}, + year = {1950}, + key = {Devereaux (1950)}, + lgcode = {Mojave [moha1256]} +} +@book{devos1965, + author = {DeVos, G.}, + title = {Social Values and Personal Attitudes in Primary Human Relations in Niiike}, + series = {University of Michigan Center for Japanese Studies, Occasional Papers}, + year = {1965}, + key = {DeVos (1965)}, + lgcode = {Japanese [nucl1643]} +} +@book{devosandwagatsuma1967, + author = {DeVos, G., and H. Wagatsuma.}, + title = {Japan's Invisible Race}, + address = {Berkeley and Los Angeles}, + year = {1967}, + key = {DeVos and Wagatsuma (1967)}, + lgcode = {Japanese [nucl1643]} +} +@book{devreux1864, + author = {Yves d'Evreux.}, + editor = {F. Denis}, + title = {Voyage dans le nord du Brésil fait durant les années 1613 et 1614}, + publisher = {Leipzig & Paris: Librairie A. Franck}, + address = {Leipzig and Paris}, + pages = {526}, + year = {1864}, + glottolog_ref = {hh:ew:dEvreux:Nord-Bresil}, + key = {d'Evreux (1864)}, + lgcode = {Tupinambá [tupi1273]} +} +@book{dewey1962, + author = {Dewey, A. G.}, + title = {Peasant Marketing in Java}, + address = {New York}, + year = {1962}, + key = {Dewey (1962)}, + lgcode = {Javanese [java1254]} +} +@incollection{dhertefelt1965, + author = {D'Hertefelt, M.}, + editor = {J. L. Gibbs}, + title = {The Rwanda of Rwanda}, + booktitle = {Peoples of Africa}, + address = {New York}, + pages = {403-440}, + year = {1965}, + key = {D'Hertefelt (1965)}, + lgcode = {Banyaruanda [kiny1244]} +} +@book{dhertefeltetal1962, + author = {D'Hertefelt, M. and A. Trouwborst and J. Scherer}, + title = {Les anciens royaumes de la zone interlacustrine meridionale}, + publisher = {London & Tervuren: Oxford Univ. Press}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {14; Annales du MRAC (Musée Royal de l'Afrique Centrale): monographies ethnographiques, #6}, + year = {1962}, + glottolog_ref = {eballiso2009:23731}, + key = {D'Hertefelt et al. (1962)}, + lgcode = {Banyaruanda [kiny1244], Rundi [rund1242]} +} +@book{diamond1964, + author = {Diamond, D.}, + title = {Personal communication to A}, + address = {Lomax}, + year = {1964}, + key = {Diamond (1964)}, + lgcode = {Anaguta [igut1238]} +} +@book{dias1953, + author = {Dias, J.}, + title = {Rio de Onor}, + address = {Porto}, + year = {1953}, + key = {Dias (1953)}, + lgcode = {Portuguese [gali1257]} +} +@book{dickson1949, + author = {Dickson, H. R. P.}, + title = {The Arab of the Desert}, + address = {London}, + year = {1949}, + key = {Dickson (1949)}, + lgcode = {Mutair [sout3119]} +} +@article{diebold1966, + author = {Diebold, A. R., Jr.}, + title = {The Reflection of Coresidence in Mareno Kinship Terminology}, + journal = {Ethnology}, + volume = {5}, + pages = {37-79}, + year = {1966}, + key = {Diebold (1966)}, + lgcode = {Huave [sanm1287]} +} +@book{dieterlen1951, + author = {Dieterlen, G.}, + title = {Essai sur la religion Bambara}, + publisher = {Paris: Presses Universitaires de France}, + address = {Paris}, + series = {Bibl. de sociologie contemporain}, + volume = {bl. de sociologie contemporaine}, + year = {1951}, + glottolog_ref = {eballiso2009:17734}, + key = {Dieterlen (1951)}, + lgcode = {Bambara [bamb1269]} +} +@article{dieterlen1956, + author = {Dieterlen, G.}, + title = {Parente et mariage chez les Dogon}, + journal = {Africa}, + volume = {26}, + pages = {107-148}, + year = {1956}, + key = {Dieterlen (1956)}, + lgcode = {Dogon [bank1259]} +} +@book{dieterlenandcisse1972, + author = {Dieterlen, G., and Y. Cisse.}, + title = {Les fondaments de la société d`initiation du Komo}, + publisher = {Paris: Mouton & Co.}, + address = {Paris}, + series = {Cahiers de l'homme: ethnologie, géographie, linguistique, nouvelle série}, + volume = {10}, + year = {1972}, + glottolog_ref = {eballiso2009:16502}, + key = {Dieterlen and Cisse (1972)}, + lgcode = {Bambara [bamb1269]} +} +@article{dietschy1959, + author = {Dietschy, H.}, + title = {Das Häuptlingswesen bei den Karaja}, + journal = {Mitt. Mus. Volkerk. Hamburg}, + address = {Hamburg}, + volume = {25}, + pages = {168-176}, + year = {1959}, + key = {Dietschy (1959)} +} +@misc{dietschy1962, + author = {Dietschy, H.}, + year = {1962}, + howpublished = {Personal communication}, + key = {Dietschy (1962)}, + lgcode = {Carajá [kara1500]} +} +@misc{dietschynd, + author = {Dietschy, H.}, + title = {Le systeme de parente et la structure des Indiens Caraja}, + howpublished = {Manuscript}, + key = {Dietschy (nd)}, + lgcode = {Carajá [kara1500]} +} +@article{dimdelobosom1933, + author = {Dim Delobosom, A. A.}, + title = {L'empire Mogho-Daba: Coutumes des Mossi de la Haute-Volta}, + journal = {Et. Sociol. Ethnol. Jurid.}, + volume = {11}, + pages = {1-308}, + year = {1933}, + key = {Dim Delobosom (1933)}, + lgcode = {Mossi (Ouagadougou) [moss1236]} +} +@article{dixon1905, + author = {Dixon, R. B.}, + title = {The Northern Maidu}, + journal = {Bulletin of the American Museum of Natural History}, + volume = {17}, + pages = {119-346}, + year = {1905}, + key = {Dixon (1905)}, + lgcode = {Foothill Maidu [nort2951], Maidu [nort2952], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244], Valley Maidu [vall1252]} +} +@article{dixon1907, + author = {Dixon, R. B.}, + title = {The Shasta}, + journal = {Bulletin of the American Museum of Natural History}, + volume = {17}, + pages = {381-498}, + year = {1907}, + key = {Dixon (1907)}, + lgcode = {Shasta [shas1239], Shasta (East) [shas1239], Shasta (West) [shas1239]} +} +@article{dixon1910, + author = {Dixon, R. B.}, + title = {The Chimariko Indians and Language}, + journal = {Univ. Calif. Publ. Amer. Arch. Ethn.}, + volume = {5}, + number = {5}, + pages = {293-380}, + year = {1910}, + url = {https://archive.org/details/chimarikoindians00dixorich}, + key = {Dixon (1910)}, + lgcode = {Chimariko [chim1301]} +} +@book{dobrizhoffer1822, + author = {Dobrizhoffer, M.}, + title = {An Account of the Abipones. 3v}, + address = {London}, + year = {1822}, + key = {Dobrizhoffer (1822)}, + lgcode = {Abipón [abip1241]} +} +@book{doke1931, + author = {Doke, C. M.}, + title = {The Lambas of Northern Rhodesia}, + address = {London}, + year = {1931}, + key = {Doke (1931)}, + lgcode = {Lamba [lamb1271]} +} +@article{dole1958, + author = {Dole, G. E.}, + title = {Ownership and Exchange Among the Kuikuru Indians}, + journal = {Revista do Museu Paulista, n. s.}, + volume = {10}, + pages = {125-133}, + year = {1958}, + key = {Dole (1958)}, + lgcode = {Kuikuru [kuik1246]} +} +@misc{dole1961, + author = {Dole, G. E.}, + title = {The Influence of Population Density on the Development of Social Organization Among the Amahuaca of East Peru}, + year = {1961}, + howpublished = {Paper presented at American Anthropological Association meeting, Philadelphia}, + key = {Dole (1961)}, + lgcode = {Amahuaca [amah1246]} +} +@article{dole1962, + author = {Dole, G. E.}, + title = {Endocannibalism Among the Amahuaca Indians}, + journal = {Transactions of the New York Academy of Sciences, ser. 2}, + volume = {24}, + pages = {567-573}, + year = {1962}, + key = {Dole (1962)}, + lgcode = {Amahuaca [amah1246]} +} +@book{dolganovaetal1995, + author = {Dolganova, L. N. and I. A. Morozov and E. N. Minasenko}, + title = {Igry i razvlechenija udmurtov: istorija i sovremennost' (Games and Entertainments of the Udmurt: History and Modernity)}, + address = {Moscow}, + year = {1995}, + key = {Dolganova et al. (1995)}, + lgcode = {Udmurt [sout2681]} +} +@book{dollone1912, + author = {D'Ollone, H. M.}, + title = {In Forbidden China}, + address = {Boston}, + year = {1912}, + key = {D'Ollone (1912)}, + lgcode = {Lolo [sich1238]} +} +@phdthesis{donald1968a, + author = {Donald, L. H.}, + title = {Changes in Yalunka Social Organization}, + school = {University of Oregon}, + year = {1968}, + key = {Donald (1968a)}, + lgcode = {Yalunka [yalu1240]} +} +@misc{donald1968b, + author = {Donald, L. H.}, + year = {1968}, + howpublished = {Personal communication}, + key = {Donald (1968b)}, + lgcode = {Yalunka [yalu1240]} +} +@book{donner1932, + author = {Donner, K.}, + title = {Samojedische Woerterverzeichnisse}, + publisher = {Helsinki: Suomalais-Ugrilainen Sura}, + address = {Helsinki}, + series = {Suomalais-Ugrilaisen Seuran Toimituksia}, + volume = {64}, + pages = {vi+171}, + year = {1932}, + glottolog_ref = {mpieva:Donner1932Samojedi}, + key = {Donner (1932)}, + lgcode = {Selkup [selk1253]} +} +@book{donner1954, + author = {Donner, K.}, + title = {Among the Samoyed in Siberia}, + address = {New Haven}, + year = {1954}, + key = {Donner (1954)}, + lgcode = {Selkup [selk1253], Yurak-Samoyeds [nene1249]}, + note = {Trans} +} +@book{donoghue1964, + author = {Donoghue, J. D.}, + title = {Cam Ani, a Fishing Village in Central Vietnam}, + address = {Lansing}, + year = {1964}, + key = {Donoghue (1964)}, + lgcode = {Annamese [viet1252]} +} +@misc{donoghue1972, + author = {Donoghue, J. D.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Donoghue (1972)}, + lgcode = {Rade [rade1240]} +} +@book{donoghueetal1962, + author = {Donoghue, J. D. and D. D. Whitney and I. Ishino}, + title = {People in the Middle: The Rhade of South Vietnam}, + address = {East Lansing}, + year = {1962}, + key = {Donoghue et al. (1962)}, + lgcode = {Rade [rade1240]} +} +@book{dorman1935, + author = {Dorman, S. S.}, + title = {Pygmies and Bushmen of the Kalahari}, + publisher = {Seeley, Service & Co.}, + address = {London}, + year = {1935}, + key = {Dorman (1935)}, + lgcode = {Tswana [tswa1253]} +} +@article{dorsey1884, + author = {Dorsey, J. O.}, + title = {Omaha Sociology}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {3}, + pages = {205-320}, + year = {1884}, + key = {Dorsey (1884)}, + lgcode = {Omaha [omah1248]} +} +@article{dorsey1894, + author = {Dorsey, J. O.}, + title = {Siouan Sociology}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {15}, + pages = {218-222}, + year = {1894}, + key = {Dorsey (1894)}, + lgcode = {Teton [lako1247]} +} +@article{dorsey1897, + author = {Dorsey, J. O.}, + title = {Siouan Sociology}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {15}, + pages = {205-244}, + year = {1897}, + key = {Dorsey (1897)}, + lgcode = {Ponca [ponc1241]} +} +@book{dorsey1904a, + author = {Dorsey, G. A.}, + title = {The Mythology of the Wichita}, + address = {Washington}, + year = {1904}, + key = {Dorsey (1904a)}, + lgcode = {Wichita [wich1260]} +} +@article{dorsey1904b, + author = {Dorsey, G. A.}, + title = {Traditions of the Skidi Pawnee}, + journal = {Memoirs of the American Folk-Lore Society}, + volume = {8}, + pages = {1-366}, + year = {1904}, + key = {Dorsey (1904b)}, + lgcode = {Pawnee [pawn1254]} +} +@article{dorseyandmurie1940, + author = {Dorsey, G. A., and J. R. Murie.}, + title = {Notes on Skidi Pawnee Society}, + journal = {Field Museum of Natural History Anthropological Series}, + volume = {27}, + pages = {67-119}, + year = {1940}, + key = {Dorsey and Murie (1940)}, + lgcode = {Pawnee [pawn1254]} +} +@incollection{dossantos1901, + author = {Dos Santos, J.}, + editor = {G. M. Theal}, + title = {Eastern Ethiopia}, + booktitle = {Records of South-Eastern Africa}, + address = {London}, + volume = {7}, + pages = {183-383}, + year = {1901}, + key = {Dos Santos (1901)}, + lgcode = {Ndau [ndau1241]} +} +@article{douglas1952, + author = {Douglas,.}, + title = {Alternate Generations Among the Lele of the Kasai}, + journal = {Africa}, + volume = {22}, + pages = {59-65}, + year = {1952}, + key = {Douglas (1952)}, + lgcode = {Lele [lele1265]} +} +@incollection{douglas1962, + author = {Douglas, M.}, + editor = {P. Bohannan and G. Dalton}, + title = {Lele Economy Compared with the Bushong}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {211-233}, + year = {1962}, + key = {Douglas (1962)}, + lgcode = {Lele [lele1265]} +} +@book{douglas1963, + author = {Douglas, M.}, + title = {The Lele of the Kasai}, + publisher = {London: Oxford University Press}, + address = {London}, + pages = {286}, + year = {1963}, + glottolog_ref = {hh:e:Douglas:Lele}, + key = {Douglas (1963)}, + lgcode = {Lele [lele1265]} +} +@phdthesis{douglass1967, + author = {Douglass, W. A.}, + title = {Opportunity, Choice-Making, and Rural Depopulation in Two Spanish Basque Villages}, + school = {University of Chicago}, + year = {1967}, + key = {Douglass (1967)}, + lgcode = {Spanish Basques [west1508]} +} +@book{douglass1969, + author = {Douglass, W. A.}, + title = {Death in Murelaga}, + address = {Seattle}, + year = {1969}, + key = {Douglass (1969)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]} +} +@book{downs1956, + author = {Downs, R. E.}, + title = {The Religion of the Bare'e-speaking Toradja}, + address = {The Hague}, + year = {1956}, + key = {Downs (1956)}, + lgcode = {Toradja [pamo1252]} +} +@book{downs1966, + author = {Downs, J. F.}, + title = {The Two Worlds of the Washo: An Indian tribe of California and Nevada}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1966}, + key = {Downs (1966)}, + lgcode = {Washo [wash1253]} +} +@book{doyly1929, + author = {D'Oyly, John.}, + title = {A Sketch of the Constitution of the Kandyan Kingom}, + publisher = {Government Printer, Ceylon}, + address = {Colombo}, + year = {1929}, + key = {D'Oyly (1929)}, + lgcode = {Sinhalese [sinh1246]} +} +@article{dozier1954, + author = {Dozier, E. P.}, + title = {The Hopi-Tewa of Arizona}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {44}, + number = {3}, + pages = {259-376}, + year = {1954}, + glottolog_ref = {hh:e:Dozier:Hopi-Tewa}, + key = {Dozier (1954)}, + lgcode = {Hano [ariz1237], Nambé Pueblo [namb1296], Ohkay Owingeh [sanj1276], San Ildefonso [sani1273]} +} +@incollection{dozier1961, + author = {Dozier, E. C.}, + editor = {Spicer, Edward H.}, + title = {Rio Grande Pueblos}, + booktitle = {Perspectives in American Indian Culture Change}, + publisher = {University of Chicago Press}, + address = {Chicago}, + pages = {94-186}, + year = {1961}, + key = {Dozier (1961)}, + lgcode = {San Ildefonso [sani1273]} +} +@book{dozier1966a, + author = {Dozier, E. P.}, + title = {Mountain Arbiters}, + address = {Tucson}, + year = {1966}, + key = {Dozier (1966a)}, + lgcode = {Kalinga [lubu1243]} +} +@article{dozier1966b, + author = {Dozier, E. P.}, + title = {Factionalism at Santa Clara Pueblo}, + journal = {Ethnology}, + volume = {5}, + number = {2}, + pages = {172-185}, + year = {1966}, + key = {Dozier (1966b)}, + lgcode = {Santa Clara [sant1421]} +} +@book{dozier1967, + author = {Dozier, E. P.}, + title = {The Kalinga of Northern Luzon}, + address = {New York}, + year = {1967}, + key = {Dozier (1967)}, + lgcode = {Kalinga [lubu1243]} +} +@book{dozier1970, + author = {Dozier, Edward P.}, + title = {The Pueblo Indians of North America}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1970}, + key = {Dozier (1970)}, + lgcode = {Hopi [hopi1249], Nambé Pueblo [namb1296], San Ildefonso [sani1273], Santa Clara [sant1421]} +} +@article{drabbe1940, + author = {Drabbe, P.}, + title = {Het leven van den Tanembarees}, + journal = {Int. Arch. Ethnog.}, + volume = {38}, + pages = {1-432}, + year = {1940}, + key = {Drabbe (1940)}, + lgcode = {Tanimbarese [sela1259], Toradja [pamo1252]}, + note = {Supplement} +} +@phdthesis{draper1972, + author = {Draper, Patricia}, + title = {!Kung Bushman childhood}, + school = {Harvard}, + year = {1972}, + glottolog_ref = {eballiso2009:50521}, + key = {Draper (1972)}, + lgcode = {!Kung [juho1239]} +} +@incollection{draper1975, + author = {Draper, Patricia}, + editor = {Reiter, Rayna P.}, + title = {!Kung women: contrasts in sexual egalitarianism in foraging and sedentary context}, + booktitle = {Toward an Anthropology of Women}, + publisher = {Monthly Review Press}, + address = {New York}, + pages = {77-109}, + year = {1975}, + glottolog_ref = {eballiso2009:50548}, + key = {Draper (1975)}, + lgcode = {!Kung [juho1239]} +} +@book{draper1978, + author = {Draper, Patricia}, + title = {The Learning Environment for Aggression and Anti-Social Behavior among the !Kung}, + year = {1978}, + key = {Draper (1978)}, + lgcode = {!Kung [juho1239]} +} +@misc{drapernd, + author = {Draper, Patricia}, + title = {!Kung Subsistence Work at /Du/da.}, + howpublished = {forthcoming}, + key = {Draper (nd)}, + lgcode = {!Kung [juho1239]} +} +@misc{draperperscomm1993, + author = {Draper, Patricia}, + year = {1993}, + howpublished = {pers. comm.}, + key = {Draper pers. comm. (1993)}, + lgcode = {Kaurna [kaur1267]} +} +@book{dreyfus1900, + author = {Dreyfus, C.}, + title = {Six mois dans l'Attie}, + address = {Paris}, + year = {1900}, + key = {Dreyfus (1900)}, + lgcode = {Attie [atti1239]} +} +@book{dreyfus1963, + author = {Dreyfus, S.}, + title = {Les Kayapo du nord}, + address = {Paris and La Haye}, + year = {1963}, + key = {Dreyfus (1963)}, + lgcode = {Kayapo [kaya1330]} +} +@article{driberg1922, + author = {Driberg, J. H.}, + title = {A Preliminary Account of the Didinga}, + journal = {Sudan Notes and Records}, + volume = {5}, + pages = {208-222}, + year = {1922}, + glottolog_ref = {eballiso2009:1206}, + key = {Driberg (1922)}, + lgcode = {Didinga [didi1258]} +} +@book{driberg1923, + author = {Driberg, J. H.}, + title = {The Lango}, + address = {London}, + year = {1923}, + key = {Driberg (1923)}, + lgcode = {Lango [lang1324]} +} +@article{driberg1925a, + author = {Driberg, J. H.}, + title = {Didinga Customary Law}, + journal = {Sudan Notes and Records}, + volume = {8}, + pages = {153-175}, + year = {1925}, + key = {Driberg (1925a)}, + lgcode = {Didinga [didi1258]} +} +@article{driberg1925b, + author = {Driberg, J. H.}, + title = {LAfon Hill}, + journal = {Sudan Notes and Records}, + volume = {8}, + pages = {47-57}, + year = {1925}, + key = {Driberg (1925b)}, + lgcode = {Pari [pari1256]} +} +@book{driberg1932, + author = {Driberg, J. H.}, + title = {At Home with the Savage}, + address = {New York}, + year = {1932}, + key = {Driberg (1932)}, + lgcode = {Didinga [didi1258]} +} +@article{driberg1932a, + author = {Driberg, J. H.}, + title = {Some Aspects of Lango Kinship}, + journal = {Sociologus}, + volume = {8}, + pages = {44-61}, + year = {1932}, + key = {Driberg (1932a)} +} +@article{driver1936, + author = {Driver, H. E.}, + title = {Wappo Ethnography}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {36}, + pages = {179-220}, + year = {1936}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-004.pdf}, + key = {Driver (1936)}, + lgcode = {Wappo [wapp1239]} +} +@article{driver1937, + author = {Driver, H. E.}, + title = {Southern Sierra Nevada}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {53-154}, + year = {1937}, + key = {Driver (1937)}, + lgcode = {Eastern Mono [mono1275], Kawaiisu [kawa1283], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], Koso [pana1305], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Paiute (Las Vegas) [sout2969], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Tübalulabal [tuba1278], Tümpisa Shoshone (Panamint) [pana1305], Tümpisa Shoshone (Saline and Panamint) [pana1305], Western Mono [mono1275], Wukchumni [tule1245]} +} +@article{driver1939, + author = {Driver, H. E.}, + title = {Northwest California}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {297-433}, + year = {1939}, + key = {Driver (1939)}, + lgcode = {Cahto [kato1244], Chimariko [chim1301], Coast Yuki [yuki1243], Hupa [hupa1239], Karuk [karo1304], Mattole-Bear River [matt1238], Nongatl [wail1244], Sinkyone [wail1244], Tolowa [tolo1259], Wiyot [wiyo1248], Yurok [yuro1248]} +} +@book{driveranddriver1963, + author = {Driver, H. E., and W. Driver.}, + title = {Ethnography and Acculturation of the Chichimeca-Joanaz of Northeast Mexico}, + publisher = {Bloomington: Indiana University}, + address = {Bloomington}, + pages = {x+265}, + year = {1963}, + glottolog_ref = {hh:e:DriverDriver:Chichimeca-Jonaz}, + key = {Driver and Driver (1963)}, + lgcode = {Chichimeca [chic1272]} +} +@article{driverandmassey1957, + author = {Driver, H. E., and W. C. Massey.}, + title = {Comparative Studies of North American Indians}, + journal = {Trans. Amer. Phil. Soc., n. s.}, + volume = {47}, + pages = {ii, 165-456}, + year = {1957}, + key = {Driver and Massey (1957)}, + lgcode = {Coahuilteco [coah1252]} +} +@book{driverandmiles195255, + author = {Driver, G. R., and J. C. Miles.}, + title = {The Babylonian Laws. 2v}, + address = {Oxford}, + year = {1952-55}, + key = {Driver and Miles (1952-55)}, + lgcode = {Babylonians [akka1240]} +} +@article{drucker1936a, + author = {Drucker, P.}, + title = {The Tolowa and Their Southwest Oregon Kin}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + pages = {221-300}, + year = {1936}, + key = {Drucker (1936a)}, + lgcode = {Tolowa [tolo1259], Tututni [tutu1242]} +} +@article{drucker1936b, + author = {Drucker, P.}, + title = {A Karuk World-Renewal Ceremony at Panamiuk}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {35}, + pages = {23-28}, + year = {1936}, + key = {Drucker (1936b)}, + lgcode = {Karuk [karo1304], Tututni [tutu1242]} +} +@article{drucker1937, + author = {Drucker, P.}, + title = {Southern California}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {1-52}, + year = {1937}, + key = {Drucker (1937)}, + lgcode = {Akwa’ala [paip1241], Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Chemehuevi [chem1251], Cupeño [cupe1243], Kumeyaay [kumi1248], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253], Quechan [quec1382], San Juan [sout2969], Serrano [serr1255], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{drucker1937b, + author = {Drucker, Philip}, + title = {The Tolowa and Their Southwest Oregon Kin}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + pages = {221-300}, + year = {1937}, + key = {Drucker (1937b)}, + lgcode = {Chetco [tolo1259], Taltushtuntede [gali1261], Tolowa [tolo1259]} +} +@article{drucker1939, + author = {Drucker, P.}, + title = {Contributions to Alsea Ethnography}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {35}, + number = {7}, + pages = {81-101}, + year = {1939}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp035-009.pdf}, + key = {Drucker (1939)}, + lgcode = {Alsea [alse1251]} +} +@article{drucker1940, + author = {Drucker, P.}, + title = {The Tolowa and Their Southwest Oregon Kin}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + number = {4}, + pages = {221-300}, + year = {1940}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-005.pdf}, + key = {Drucker (1940)}, + lgcode = {Haida (Northern) [nort2938], Haida (Southern) [sout2956], Haihais [oowe1239], Haisla [hais1244], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], Makah [maka1318], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], Quileute [quil1240], Tolowa [tolo1259], Tsimshian [nucl1649]} +} +@article{drucker1941, + author = {Drucker, P.}, + title = {Yuman-Piman}, + journal = {Anth. Rec.}, + volume = {6}, + pages = {91-230}, + year = {1941}, + key = {Drucker (1941)}, + lgcode = {Chemehuevi [chem1251], Cocopa [coco1261], Hualapai [wala1270], Kamia [kumi1248], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Maricopa [mari1440], Mojave [moha1256], Pima [akim1239], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Tohono O'odham [toho1246], Yaqui [yaqu1251], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]} +} +@article{drucker1950, + author = {Drucker, P.}, + title = {Northwest Coast}, + journal = {Anthropological Records}, + volume = {9}, + pages = {157-294}, + year = {1950}, + key = {Drucker (1950)}, + lgcode = {Gitxsan [gitx1241], Haida (Northern) [nort2938], Haida (Southern) [sout2956], Haihais [oowe1239], Haisla [hais1244], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], North Tlingit [tlin1245], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], South Tlingit [tlin1245], Tsimshian [nucl1649]} +} +@book{drucker1951, + author = {Drucker, P.}, + title = {The Northern and Central Nootkan Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {144}, + pages = {1-480}, + year = {1951}, + key = {Drucker (1951)}, + lgcode = {Nuu chah nulth [nuuc1236]} +} +@book{drucker1965, + author = {Drucker, Philip}, + title = {Cultures of the North Pacific Coast}, + publisher = {Chandler Press}, + address = {San Francisco}, + year = {1965}, + key = {Drucker (1965)}, + lgcode = {Haida (Northern) [nort2938], Haida (Southern) [sout2956], Tsimshian [nucl1649]} +} +@incollection{drucker1990, + author = {Drucker, P.}, + editor = {W. Suttles}, + title = {Central Coast Salish}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {453-475}, + year = {1990}, + key = {Drucker (1990)}, + lgcode = {Squamish [squa1248]} +} +@book{druckerandheizer1967, + author = {Drucker, Philip, and Robert F. Heizer}, + title = {To Make My Name Good}, + publisher = {University of California Press}, + address = {Berkeley, Calif.}, + year = {1967}, + key = {Drucker and Heizer (1967)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269], North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@inproceedings{dry1956, + author = {Dry, D. P. L.}, + title = {Some Aspects of Hausa Family Structure}, + booktitle = {Proceedings of the International West African Conference (1949)}, + pages = {158-163}, + year = {1956}, + key = {Dry (1956)}, + lgcode = {Zazzagawa Hausa [araw1280]} +} +@book{dube1955, + author = {Dube, S. C.}, + title = {Indian Village}, + address = {Ithaca}, + year = {1955}, + key = {Dube (1955)}, + lgcode = {Telugu [telu1262]} +} +@article{dube1956, + author = {Dube, S. C.}, + title = {Cultural Factors in Rural Community Development}, + journal = {Journal of Asian Studies}, + volume = {16}, + pages = {19-30}, + year = {1956}, + key = {Dube (1956)}, + lgcode = {Uttar Pradesh [bhoj1244]} +} +@article{dubie1953, + author = {Dubie, P.}, + title = {La vie materielle des Maures}, + journal = {Mem. Inst. Franc. Afr. Noire}, + volume = {23}, + pages = {111-252}, + year = {1953}, + key = {Dubie (1953)}, + lgcode = {Trarza [hass1238]} +} +@article{dubois1908, + author = {Du Bois, C. G.}, + title = {The Religion of the Luiseno Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {8}, + pages = {69-186}, + year = {1908}, + key = {Du Bois (1908)}, + lgcode = {Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253]} +} +@article{dubois1932, + author = {Du Bois, C. A.}, + title = {Tolowa Notes}, + journal = {American Anthropologist}, + volume = {34}, + pages = {248-262}, + year = {1932}, + key = {Du Bois (1932)}, + lgcode = {Tolowa [tolo1259]} +} +@book{dubois1935, + author = {Du Bois, C. A.}, + title = {Wintu Ethnography}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + number = {1}, + pages = {1-148}, + year = {1935}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-002.pdf}, + key = {Du Bois (1935)}, + lgcode = {Wintu [nucl1651], Wintu (McCloud River) [nucl1651], Wintu (Sacramento River) [nucl1651], Wintu (Trinity River) [nucl1651]} +} +@incollection{dubois1936, + author = {Du Bois, C.}, + title = {The Wealth Concept as an Integrative Factor in Tolowa-Tututni Culture}, + booktitle = {Essays in Anthropology Presented to A. L. Kroeber}, + address = {Berkeley}, + pages = {49-65}, + year = {1936}, + key = {Du Bois (1936)}, + lgcode = {Tolowa [tolo1259], Tututni [tutu1242]} +} +@article{dubois1938, + author = {Dubois, H. M.}, + title = {Monographie des Betsileo}, + journal = {Trav. Mem. Inst. Ethnol.}, + volume = {34}, + pages = {1-1510}, + year = {1938}, + key = {Dubois (1938)}, + lgcode = {Betsileo [bets1235]} +} +@article{dubois1940, + author = {Du Bois, C.}, + title = {How They Pay Debts in Alor}, + journal = {Asia}, + volume = {40}, + pages = {482-486}, + year = {1940}, + key = {Du Bois (1940)}, + lgcode = {Alorese [abui1241]} +} +@incollection{dubois1941, + author = {Du Bois, C.}, + editor = {L. Spier et al.}, + title = {Attitudes Toward Food and Hunger in Alor}, + booktitle = {Language, Culture, and Personality}, + address = {Menasha}, + pages = {272-281}, + year = {1941}, + key = {Du Bois (1941)}, + lgcode = {Alorese [abui1241]} +} +@book{dubois1944, + author = {Du Bois, C.}, + title = {The People of Alor}, + address = {Minneapolis}, + year = {1944}, + key = {Du Bois (1944)}, + lgcode = {Alorese [abui1241]} +} +@incollection{dubois1945, + author = {Du Bois, C.}, + editor = {A. Kardiner}, + title = {The Alorese}, + booktitle = {The Psychological Frontiers of Society}, + address = {New York}, + pages = {101-145}, + year = {1945}, + key = {Du Bois (1945)}, + lgcode = {Alorese [abui1241]} +} +@article{duchaillu1861, + author = {Du Chaillu, P. B.}, + title = {Observations on the People of Western Equatorial Africa}, + journal = {Trans. Ethnol. Soc. London, n. s.}, + volume = {1}, + pages = {305-315}, + year = {1861}, + glottolog_ref = {eballiso2009:7544}, + key = {Du Chaillu (1861)}, + lgcode = {Mpongwe [myen1241]} +} +@incollection{duff1951, + author = {Duff, Wilson}, + title = {Notes on Carrier Social Organization}, + booktitle = {Anthropology in British Columbia}, + volume = {2}, + pages = {28-34}, + year = {1951}, + key = {Duff (1951)}, + lgcode = {Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@misc{duff1952, + author = {Duff, Wilson}, + title = {The Upper Stalo Indians of the Fraser River of B. C.}, + publisher = {British Columbia Provincial Museum}, + address = {Victoria}, + series = {Anthropology in British Columbia Memoir}, + number = {1}, + pages = {1-136}, + year = {1952}, + key = {Duff (1952)}, + lgcode = {Stó:lō [chil1281]} +} +@article{duffsutherlanddunbar1915, + author = {Duff-Sutherland-Dunbar, G.}, + title = {Abors and Galongs}, + publisher = {Memoirs of the Asiatic Society of Bengal 5 (Extra number)}, + volume = {5 (Extra number)}, + year = {1915}, + glottolog_ref = {lapolla-tibeto-burman:524}, + key = {Duff-Sutherland-Dunbar (1915)}, + lgcode = {Adi [bori1243]} +} +@book{duffy1959, + author = {Duffy, J.}, + title = {Portuguese Africa}, + address = {Cambridge, Mass.}, + year = {1959}, + key = {Duffy (1959)}, + lgcode = {Mbundu [umbu1257]} +} +@article{dugast1944, + author = {Dugast, I.}, + title = {L'agriculture chez les Ndiki de population Banên}, + journal = {Bulletin de la Soci‚t‚ d'Etudes Cameroun, n. s.}, + volume = {8}, + pages = {7-130}, + year = {1944}, + key = {Dugast (1944)}, + lgcode = {Banen [tune1261]} +} +@article{dugast1949, + author = {Dugast, I.}, + title = {Inventaire ethnique du Sud-Cameroun}, + journal = {Mem. Inst. Franc. Afr. Noire, Cent. Cameroun, Ser. Pop.}, + publisher = {Dakar}, + series = {Mémoires de l'IFAN (Inst. Français de l'Afrique Noire), série 'populations'}, + volume = {1}, + pages = {1-159}, + year = {1949}, + glottolog_ref = {eballiso2009:52161}, + key = {Dugast (1949)}, + lgcode = {Ngumba [kwas1243]} +} +@book{dugast1955, + author = {Dugast, I.}, + title = {Monographie de la tribu des Ndiki: Vie matérielle}, + address = {Paris}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {58}, + number = {i}, + pages = {1-824}, + year = {1955}, + key = {Dugast (1955)}, + lgcode = {Banen [tune1261]} +} +@misc{dugast1959, + author = {Dugast, I.}, + title = {Monographie de la tribu des Ndiki. Vie sociale et familiale}, + address = {Paris}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {58}, + number = {ii}, + pages = {1-635}, + year = {1959}, + key = {Dugast (1959)}, + lgcode = {Banen [tune1261]} +} +@book{duggancronin1929, + author = {Duggan-Cronin, A. M.}, + title = {The Bantu tribes of South Africa. Volume 2, Section 1, The Suto-Chuana Tribes, Subgroup 1, the Bechuana}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1929}, + key = {Duggan-Cronin (1929)}, + lgcode = {Tswana [tswa1253]} +} +@misc{duggancronin1931, + author = {Duggan-Cronin, A. M.}, + title = {The Bantu tribes of South Africa, Vol. 2, Section 2, sub-group 2, the Bapedi Transvaal Basotho}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1931}, + key = {Duggan-Cronin (1931)}, + lgcode = {Pedi [tswe1238]}, + note = {with introductory article on the Bapedi by Werner Eiselen} +} +@article{dulphy1939, + author = {Dulphy, M.}, + title = {Coutume serere de la Petite-Cote}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {8}, + pages = {237-321}, + year = {1939}, + key = {Dulphy (1939)}, + lgcode = {Serer [sere1260]} +} +@article{dumarest1919, + author = {Dumarest, N.}, + title = {Notes on Chochiti}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {27}, + pages = {137-237}, + year = {1919}, + key = {Dumarest (1919)}, + lgcode = {Cochiti [coch1273]} +} +@book{duncanjohnstoneandblair1932, + author = {Duncan-Johnstone, A., and H. A. Blair.}, + title = {Enquiry into the Constitution and Organisation of the Dagbon Kingdom}, + address = {Accra}, + year = {1932}, + key = {Duncan-Johnstone and Blair (1932)}, + lgcode = {Dagomba [dagb1246]} +} +@book{duncankemp1964, + author = {Duncan-Kemp, A. M.}, + title = {Where Strange Paths Go Down}, + publisher = {W. R. Smith and Paterson}, + address = {Brisbane}, + year = {1964}, + key = {Duncan-Kemp (1964)}, + lgcode = {Karuwali [karr1236]} +} +@article{dundas1915, + author = {Dundas, C.}, + title = {The Organization and Laws of Some Bantu Tribes of East Africa}, + journal = {Journ. Roy Anth. Inst.}, + volume = {45}, + pages = {234-306}, + year = {1915}, + glottolog_ref = {eballiso2009:2269}, + key = {Dundas (1915)}, + lgcode = {Kamba [kamb1297]} +} +@book{dundas1924, + author = {Dundas, C.}, + title = {Kilimanjaro and Its Peoples}, + address = {London}, + year = {1924}, + key = {Dundas (1924)}, + lgcode = {Chagga [moch1256]} +} +@article{dunglas1939, + author = {Dunglas, E.}, + title = {Coutumes et moeurs des Bete}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {10}, + pages = {361-451}, + year = {1939}, + key = {Dunglas (1939)}, + lgcode = {Bete [dalo1238]} +} +@book{duningorkavich1904, + author = {Dunin-Gorkavich, A. A.}, + title = {Tobol'skij Sever}, + address = {St. Petersburg}, + year = {1904}, + key = {Dunin-Gorkavich (1904)}, + lgcode = {Mansi [mans1258]} +} +@book{dunn1956, + author = {Dunn, H. d.}, + title = {Pagan Peoples of the Central Area of Northern Nigeria}, + address = {London}, + year = {1956}, + key = {Dunn (1956)}, + lgcode = {Gure [gbir1241]} +} +@incollection{dunn1971a, + author = {Dunn, E.}, + editor = {J. R. Millar}, + title = {The Importance of Religion in the Soviet Rural Community}, + booktitle = {The Soviet Rural Community}, + pages = {346-375}, + year = {1971}, + key = {Dunn (1971a)}, + lgcode = {Russians [russ1263]} +} +@incollection{dunn1971b, + author = {Dunn, S. P.}, + editor = {J. R. Millar}, + title = {Structure and Functions of the Soviet Rural Family}, + booktitle = {The Soviet Rural Community}, + address = {Urbana}, + pages = {325-345}, + year = {1971}, + key = {Dunn (1971b)}, + lgcode = {Russians [russ1263]} +} +@article{dunnanddunn1963, + author = {Dunn, S. P., and E. Dunn.}, + title = {The Great Russian Peasant}, + journal = {Ethnology}, + address = {Urbana}, + volume = {2}, + pages = {320-338}, + year = {1963}, + key = {Dunn and Dunn (1963)}, + lgcode = {Russians [russ1263]} +} +@book{dunnanddunn1967, + author = {Dunn, S. P., and E. Dunn.}, + title = {The Peasants of Central Russia}, + address = {New York}, + year = {1967}, + key = {Dunn and Dunn (1967)}, + lgcode = {Russians [russ1263]} +} +@book{dunning1959, + author = {Dunning, R. W.}, + title = {Social and Economic Change among the Northern Ojibwa}, + publisher = {University of Toronto Press}, + address = {Toronto}, + year = {1959}, + key = {Dunning (1959)}, + lgcode = {North Albany Ojibwa [wini1244], Pekangekum [lacs1238]} +} +@article{dunning1959a, + author = {Dunning, R. W.}, + title = {Rules of Residence and Ecology Among the Northern Ojibwa}, + journal = {American Anthropologist}, + volume = {61}, + pages = {806-816}, + year = {1959}, + key = {Dunning (1959a)}, + lgcode = {Pekangekum [lacs1238]} +} +@book{dunning1959b, + author = {Dunning, R. W.}, + title = {Social and Economic Change Among the Northern Ojibwa}, + address = {Toronto}, + year = {1959}, + key = {Dunning (1959b)}, + lgcode = {Northern Saulteaux [alba1270], Pekangekum [lacs1238]} +} +@article{dupicq1931, + author = {Ardant du Picq.}, + title = {Les Dyerma}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {14}, + pages = {461-704}, + year = {1931}, + key = {du Picq (1931)}, + lgcode = {Zerma [zarm1239]} +} +@book{dupire1962a, + author = {Dupire, M.}, + title = {Peuls nomades: Etude descriptive des Wodaabe nomades du sahel nigerien}, + address = {Paris}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {64}, + pages = {1-327}, + year = {1962}, + key = {Dupire (1962a)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@incollection{dupire1962b, + author = {Dupire, M.}, + editor = {P. Bohannan and G. Dalton}, + title = {Trade and Markets in the Economy of the Nomadic Fulani of Niger}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {335-62}, + year = {1962}, + key = {Dupire (1962b)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@incollection{dupire1963, + author = {Dupire, M.}, + editor = {D. Paulme}, + title = {The Position of Women in a Pastoral Society (Wodaabe)}, + booktitle = {Women of Tropical Africa}, + address = {Berkeley (and London)}, + pages = {47-92}, + year = {1963}, + key = {Dupire (1963)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@article{durand1929, + author = {Durand, O.}, + title = {Moeurs et instuttions d'une famille peule}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {12}, + pages = {1-85}, + year = {1929}, + key = {Durand (1929)}, + lgcode = {Futajalonke [pula1262]} +} +@book{durham1909, + author = {Durham, M. E.}, + title = {High Albania}, + address = {London}, + year = {1909}, + key = {Durham (1909)}, + lgcode = {Gheg [gheg1238]} +} +@book{durham1928, + author = {Durham, M. E.}, + title = {Some Tribal Origins, Laws and Customs of the Balkans}, + address = {London}, + year = {1928}, + key = {Durham (1928)}, + lgcode = {Gheg [gheg1238]} +} +@article{durlach1928, + author = {Durlach, T.}, + title = {The Relationship Systems of the Tlingit, Haida and Tsimshian}, + journal = {Publ. Amer. Ethn. Soc.}, + volume = {11}, + pages = {1-177}, + year = {1928}, + key = {Durlach (1928)}, + lgcode = {Tlingit [tlin1245]} +} +@book{dutertre1667, + author = {Du Tertre, J. B.}, + title = {Histoire générale des Antilles habitées par les Français, v. 2, 2d edit.}, + address = {Paris}, + year = {1667}, + key = {Du Tertre (1667)}, + lgcode = {Callinago [isla1278]} +} +@book{duttandgeib1987, + author = {Dutt, A.K. and Geib, M.M.}, + title = {Fully Annotated Atlas of South Asia}, + year = {1987}, + key = {Dutt and Geib (1987)}, + lgcode = {Toda [toda1252]} +} +@book{dutton1923, + author = {Dutton, Eric Aldhelm Torlough}, + title = {The Basuto of Basutoland}, + publisher = {Jonathan Cape}, + address = {London}, + year = {1923}, + key = {Dutton (1923)}, + lgcode = {Sotho [sout2807]} +} +@article{duvallee1925, + author = {Duvallee.}, + title = {Le Baghirmi}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {7}, + pages = {3-76}, + year = {1925}, + key = {Duvallee (1925)}, + lgcode = {Bagirmi [bagi1246]} +} +@book{duveyrier1864, + author = {Duveyrier, H.}, + title = {Les Touareg du nord}, + address = {Paris}, + year = {1864}, + key = {Duveyrier (1864)}, + lgcode = {Azjer [ghat1242]} +} +@article{dysonhudson1963, + author = {Dyson-Hudson, N.}, + title = {The Karimojong Age System}, + journal = {Ethnology}, + volume = {2}, + pages = {353-401}, + year = {1963}, + glottolog_ref = {eballiso2009:32778}, + key = {Dyson-Hudson (1963)}, + lgcode = {Karamojong [nucl1430]} +} +@article{dzhanashvili1894, + author = {Dzhanashvili, M. G.}, + title = {Abkhaziya i Abkhaztsy}, + journal = {Zapiski Kavkazskago Otdiela Inperalorskago Russkago Geograficheskago Obshchestva}, + address = {Tiflis}, + volume = {16}, + pages = {1-59}, + year = {1894}, + key = {Dzhanashvili (1894)}, + lgcode = {Abkhaz [abkh1244]} +} +@book{earle1832, + author = {Earle, A.}, + title = {A Narrative of Nine Months' Residence in New Zealand in 1827}, + address = {London}, + year = {1832}, + key = {Earle (1832)}, + lgcode = {Māori [maor1246]} +} +@book{earthy1933, + author = {Earthy, E. D.}, + title = {Valenge Woman}, + address = {London}, + year = {1933}, + key = {Earthy (1933)}, + lgcode = {Lenge [leng1257]} +} +@incollection{ebihara1964, + author = {Ebihara, M.}, + editor = {LeBar, Frank M. and Hickey, Gerald C. and Musgrave, John K.}, + title = {Khmer}, + booktitle = {Ethnic Groups of Mainland Southeast Asia}, + publisher = {Human Relations Area Files Press}, + address = {New Haven}, + pages = {94-105}, + year = {1964}, + glottolog_ref = {sala:2514}, + key = {Ebihara (1964)}, + lgcode = {Khmer [cent1989]} +} +@incollection{edel1937, + author = {Edel, M. M.}, + editor = {M. Mead}, + title = {The Bachiga of East Africa}, + booktitle = {Cooperation and Competition Among Primitive Peoples}, + address = {New York}, + pages = {127-152}, + year = {1937}, + glottolog_ref = {eballiso2009:51249}, + key = {Edel (1937)}, + lgcode = {Kiga [chig1238]} +} +@book{edel1957, + author = {Edel, M. M.}, + title = {The Chiga of Western Uganda}, + publisher = {New York: Oxford Univ. Press; International African Inst. (IAI)}, + address = {New York}, + year = {1957}, + glottolog_ref = {eballiso2009:9341}, + key = {Edel (1957)}, + lgcode = {Kiga [chig1238]} +} +@article{eder1978, + author = {Eder, J.F.}, + title = {The Caloric Returns to Food Collecting: Disruption and Change among the Batak of the Philippine Tropical Forest}, + journal = {Human Ecology}, + volume = {6}, + number = {1}, + pages = {55-69}, + year = {1978}, + key = {Eder (1978)}, + lgcode = {Palawan Batak [bata1301]} +} +@article{eder1984, + author = {Eder, J.F.}, + title = {The Impact of Subsistence Change on Mobility and Settlement Pattern in a Tropical Forest Foraging Economy: Some Implications for Archeology}, + journal = {American Anthropologist}, + volume = {86}, + pages = {837-853}, + year = {1984}, + key = {Eder (1984)}, + lgcode = {Palawan Batak [bata1301]} +} +@book{eder1987, + author = {Eder, J.F.}, + title = {On the Road to Tribal Extinction: Depopulation, Deculturation, and Adaptive Well-Being among the Batak of the Philippines}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1987}, + key = {Eder (1987)}, + lgcode = {Palawan Batak [bata1301]} +} +@book{edwards1962, + author = {Edwards, A. C.}, + title = {The Ovimbundu under Two Sovereignties}, + address = {London}, + year = {1962}, + key = {Edwards (1962)}, + lgcode = {Mbundu [umbu1257]} +} +@article{eells1877, + author = {Eells, M.}, + title = {Twana Indians of the Skokomish Reservation}, + journal = {Bulletins of the U. S. Geographical and Geological survey of the Territories}, + volume = {3}, + pages = {57-114}, + year = {1877}, + key = {Eells (1877)}, + lgcode = {Twana [twan1247]} +} +@article{eells1884, + author = {Eells, M.}, + title = {Census of the Challam and Twana Indians of Washington}, + journal = {American Antiquarian and Oriental Journal}, + volume = {6}, + pages = {35-38}, + year = {1884}, + key = {Eells (1884)}, + lgcode = {Klallam [clal1241], Twana [twan1247]} +} +@article{eells1887a, + author = {Eells, M.}, + title = {Decrease of Population among the Indians of Puget Sound}, + journal = {American Antiquarian and Oriental Journal}, + volume = {9}, + pages = {271-276}, + year = {1887}, + key = {Eells (1887a)}, + lgcode = {Twana [twan1247]} +} +@article{eells1887b, + author = {Eells, M.}, + title = {The Twana, Chemakum and Clallum Indians of Washington}, + journal = {Ann. Rep. Smiths. Inst.}, + volume = {1886-87}, + pages = {605-681}, + year = {1887}, + key = {Eells (1887b)}, + lgcode = {Klallam [clal1241]} +} +@book{efimenko1877, + author = {Efimenko, A.}, + title = {Narodnye juridicheskie obychai loparej, karelov i samoedov Arhangel'skoj Guberii (Traditional Legal Customs of the Saami, Karelians, and Samoyeds of the Arhangel'skajaG uberia)}, + address = {St. Petersburg}, + year = {1877}, + key = {Efimenko (1877)}, + lgcode = {Karelians [livv1243]} +} +@book{efremova1982, + author = {Efremova, L. S.}, + title = {Latyshskajak rest'janskajase m'jav Latgale, 1860-1939 (Latvian Rural Family in Latgal)}, + address = {Riga}, + year = {1982}, + key = {Efremova (1982)}, + lgcode = {Latvians [latv1249]} +} +@article{egboh1971, + author = {Egboh, E. O.}, + title = {The beginning of the end of traditional religion in Iboland, Southeastern Nigeria}, + journal = {Civilizations}, + volume = {21}, + pages = {269-279}, + year = {1971}, + key = {Egboh (1971)}, + lgcode = {Igbo [nucl1417]} +} +@article{egboh1972a, + author = {Egboh, E. O.}, + title = {A reassessment of the concept of Ibo traditional religion}, + journal = {Numen}, + volume = {19}, + pages = {68-79}, + year = {1972}, + key = {Egboh (1972a)}, + lgcode = {Igbo [nucl1417]} +} +@article{egboh1972b, + author = {Egboh, E. O.}, + title = {Polygamy in Iboland, South-eastern Nigeria: with special reference to polygamy practice among Christian Ibos}, + journal = {Civilizations}, + volume = {22}, + pages = {431-444}, + year = {1972}, + key = {Egboh (1972b)}, + lgcode = {Igbo [nucl1417]} +} +@article{egboh19734, + author = {Egboh, E. O.}, + title = {The place of women in the Ibo society of Southeastern Nigeria, from earliest times to the present}, + journal = {Civilizations}, + volume = {23-24}, + pages = {305-316}, + year = {1973/4}, + key = {Egboh (1973/4)}, + lgcode = {Igbo [nucl1417]} +} +@book{egede1818, + author = {Egede, H.}, + title = {A description of Greenland}, + publisher = {Allman}, + address = {London}, + year = {1818}, + key = {Egede (1818)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{egerton1939, + author = {Egerton, F. C. C.}, + title = {African Majesty}, + address = {New York}, + year = {1939}, + key = {Egerton (1939)}, + lgcode = {Bamileke [fefe1239]} +} +@incollection{eggan1937, + author = {Eggan, F.}, + editor = {F. Eggan}, + title = {The Cheyenne and Arapaho Kinship System}, + booktitle = {Social Anthropology of North American Tribes: Essays in Social Organization, Law and Religion}, + publisher = {University of Chicago Press}, + address = {Chicago}, + pages = {35-98}, + year = {1937}, + key = {Eggan (1937)}, + lgcode = {Arapaho [arap1274]} +} +@article{eggan1937a, + author = {Eggan, F.}, + title = {Historical Changes in the Choctaw Kinship System}, + journal = {American Anthropologist}, + volume = {39}, + pages = {34-52}, + year = {1937}, + key = {Eggan (1937a)}, + lgcode = {Choctaw [choc1276], Yuchi [yuch1247]} +} +@incollection{eggan1937b, + author = {Eggan, F.}, + editor = {Eggan}, + title = {The Cheyenne and Arapaho Kinship System}, + booktitle = {Social Anthropology of North American Tribes}, + address = {Chicago}, + pages = {33-95}, + year = {1937}, + key = {Eggan (1937b)}, + lgcode = {Arapaho [arap1274], Cheyenne [chey1247]} +} +@book{eggan1950, + author = {Eggan, F.}, + title = {Social Organization of the Western Pueblo}, + address = {Chicago}, + year = {1950}, + key = {Eggan (1950)}, + lgcode = {Acoma [acom1246], Hopi [hopi1249], Laguna [acom1246], Zuni [zuni1245]} +} +@article{eggan1960, + author = {Eggan, F.}, + title = {The Sagada Igorots of Northern Luzon}, + journal = {Viking Fund. Publ. Anth.}, + volume = {29}, + pages = {24-50}, + year = {1960}, + key = {Eggan (1960)}, + lgcode = {Sagada [nort2877]} +} +@book{egganandpandey1979, + author = {Eggan, F. and Pandey, T.N.}, + title = {Zuni History, 1850 - 1970}, + year = {1979}, + key = {Eggan and Pandey (1979)}, + lgcode = {Zuni [zuni1245]} +} +@incollection{eglar1957, + author = {Eglar, Z. S.}, + editor = {S. Maron}, + title = {Panjabi Village Life}, + booktitle = {Pakistan: Society and Culture}, + address = {Chapel Hill}, + pages = {62-80}, + year = {1957}, + key = {Eglar (1957)}, + lgcode = {Punjabi [west2386]} +} +@book{eglar1960, + author = {Eglar, Z. S.}, + title = {A Punjabi Village in Pakistan}, + address = {New York}, + year = {1960}, + key = {Eglar (1960)}, + lgcode = {Punjabi [west2386]} +} +@book{ehrenfels1952, + author = {Ehrenfels, U. R.}, + title = {Kadar of Cochin}, + publisher = {Madras: University of Madras}, + address = {Madras}, + series = {Anthropological series}, + volume = {1}, + pages = {319}, + year = {1952}, + glottolog_ref = {hh:e:Ehrenfels:Kadar}, + key = {Ehrenfels (1952)}, + lgcode = {Kadar [kada1242]} +} +@article{ehrenreich1887, + author = {Ehrenreich, P.}, + title = {Über die Botocudos der Brasilianischen Provinzen Espiritu Santo and Minas Geraes}, + journal = {Zeitschrift für Ethnologie}, + volume = {19}, + pages = {1-46, 49-82}, + year = {1887}, + key = {Ehrenreich (1887)}, + lgcode = {Aimoré [kren1239]} +} +@article{ehrenreich1891, + author = {Ehrenreich, P.}, + title = {Beiträge zur Völkerkunde Brasiliens}, + journal = {Veröffentlichungen aus dem Koniglichen Museum fur Völkerkunde}, + address = {Leipzig}, + volume = {2}, + pages = {1-80}, + year = {1891}, + glottolog_ref = {fabreall2009ann:3137}, + key = {Ehrenreich (1891)}, + lgcode = {Carajá [kara1500]} +} +@article{ehrmann1940, + author = {Ehrmann, W. W.}, + title = {The Timucua Indians of Sixteenth Century Florida}, + journal = {Florida Hist. Quart.}, + volume = {18}, + pages = {168-191}, + year = {1940}, + key = {Ehrmann (1940)}, + lgcode = {Timucua [timu1245]} +} +@book{eibleibesfeldt1948, + author = {Eibl-Eibesfeldt, I.}, + title = {Die !Ko-Buschmann-Gesellschaft}, + publisher = {R. Piper}, + address = {Munich}, + year = {1948}, + key = {Eibl-Eibesfeldt (1948)}, + lgcode = {!Ko [huaa1248]} +} +@misc{eibleibesfeldt1972, + author = {Eibl-Eibesfeldt, I.}, + title = {Die !Ko-Buschmann-Gesellschaft}, + publisher = {R. Piper}, + address = {Munich}, + year = {1972}, + key = {Eibl-Eibesfeldt (1972)}, + lgcode = {!Ko [huaa1248]} +} +@article{eichhorn191124, + author = {Eichhorn, A.}, + title = {Beiträge zur Kenntnis der Waschambaa}, + journal = {Baessler-Archiv}, + volume = {1; 3; 7; 8}, + pages = {155-222; 69-131; 56-98; 1-53}, + year = {1911-24}, + key = {Eichhorn (1911-24)}, + lgcode = {Shambaa [sham1280]} +} +@book{eilers1934, + author = {Eilers, A.}, + editor = {G. Thilenius}, + title = {Inseln um Ponape}, + address = {Hamburg}, + series = {Ergebnisse der Suedsee-Expedition 1908-1910}, + volume = {2, B, 8}, + pages = {1-464}, + year = {1934}, + key = {Eilers (1934)}, + lgcode = {Kapingamarangi [kapi1249]} +} +@article{ekblaw192728, + author = {Ekblaw, W. E.}, + title = {The Material Response of the Polar Eskimo to Their Far Arctic Environment}, + journal = {Ann. Assoc. Amer. Geog.}, + volume = {17; 18}, + pages = {147-198; 1-24}, + year = {1927-28}, + key = {Ekblaw (1927-28)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@article{ekblaw1928, + author = {Ekblaw, W. E.}, + title = {The Material Response of the Polar Eskimo to Their Far Arctic Environment (Continued)}, + journal = {Annals of the Association of American Geographers}, + volume = {18}, + number = {1}, + pages = {1-44}, + year = {1928}, + key = {Ekblaw (1928)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@article{ekblaw1948, + author = {Ekblaw, W. E.}, + title = {Significance of Movement among the Polar Eskimo}, + journal = {Bulletin of the Massachusetts Archaeological Society}, + volume = {10}, + pages = {1-4}, + year = {1948}, + key = {Ekblaw (1948)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@article{ekvall1961, + author = {Ekvall, Robert B.}, + title = {The nomadic pattern of living among the Tibetans as preparation for war}, + journal = {American Anthropologist}, + volume = {63}, + pages = {1250-63}, + year = {1961}, + key = {Ekvall (1961)}, + lgcode = {Central Tibetans [dbus1238]} +} +@article{ekvall1964, + author = {Ekvall, Robert B.}, + title = {Peace and war among the Tibetan nomads}, + journal = {American Anthropologist}, + volume = {66}, + pages = {1119-48}, + year = {1964}, + key = {Ekvall (1964)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{eljashevish1994, + author = {Eljashevish, B. S.}, + title = {Istoriko-Etnograficheskioec herki (1926-1929) (Historical-Ethnographic Essays [1926-1929])}, + address = {Moscow}, + year = {1994}, + key = {Eljashevish (1994)}, + lgcode = {Lithuanian Karaim [kara1464]} +} +@article{elkin1940a, + author = {Elkin, A. P.}, + title = {Kinship in South Australia}, + journal = {Oceania}, + volume = {8}, + pages = {419-452}, + year = {1940}, + key = {Elkin (1940a)}, + lgcode = {Diyari [dier1241]} +} +@incollection{elkin1940b, + author = {Elkin, H.}, + editor = {R. Linton}, + title = {The Northern Arapaho of Wyoming}, + booktitle = {Acculturation in Seven American Indian Tribes}, + address = {New York}, + pages = {207-258}, + year = {1940}, + key = {Elkin (1940b)}, + lgcode = {Arapaho [arap1274]} +} +@article{elkin1950, + author = {Elkin, A.}, + title = {The Complexity of Social Organization in Arnhem Land}, + journal = {Southwestern Journal of Anthropology}, + volume = {6}, + pages = {1-20}, + year = {1950}, + key = {Elkin (1950)}, + lgcode = {Yolngu, Dhuwal [dhuw1249]} +} +@article{elkin1953, + author = {Elkin, A. P.}, + title = {Delayed Exchange in the Wabag Sub-District}, + journal = {Oceania}, + volume = {23}, + pages = {161-201}, + year = {1953}, + key = {Elkin (1953)}, + lgcode = {Enga [enga1252]} +} +@book{elliott1886, + author = {Elliott, H. W.}, + title = {Our Arctic Province}, + address = {New York}, + year = {1886}, + key = {Elliott (1886)}, + lgcode = {Aleut [east2533]} +} +@misc{ellis1905, + author = {Ellis, H.}, + title = {Studies in the psychology of sex (vol 1)}, + publisher = {Random House}, + address = {New York}, + year = {1905}, + key = {Ellis (1905)}, + lgcode = {Tahitians [tahi1242]} +} +@book{ellis1914, + author = {Ellis, G. W.}, + title = {Negro Culture in West Africa}, + address = {New York}, + year = {1914}, + key = {Ellis (1914)}, + lgcode = {Vai [vaii1241]} +} +@article{elmendorf1948, + author = {Elmendorf, W. W.}, + title = {The Cultural Setting of the Twana Secret Society}, + journal = {American Anthropologist}, + volume = {50}, + pages = {625-633}, + year = {1948}, + url = {http://www.jstor.org/stable/663758}, + key = {Elmendorf (1948)}, + lgcode = {Twana [twan1247]} +} +@book{elmendorf1960, + author = {Elmendorf, W. W.}, + title = {The Structure of Twana Culture with Comparative Notes on the Structure of Yurok Culture}, + publisher = {Washington State University}, + address = {Pullman}, + series = {Research Studies Monographic Supplement}, + volume = {28}, + pages = {1-576}, + year = {1960}, + key = {Elmendorf (1960)}, + lgcode = {Twana [twan1247], Yurok [yuro1248]} +} +@misc{elmendorf1963, + author = {Elmendorf, W. W.}, + year = {1963}, + howpublished = {Personal communication}, + key = {Elmendorf (1963)}, + lgcode = {Nez Perce [nezp1238]} +} +@article{elmley1927, + author = {Elmley, E. D.}, + title = {The Turkana of Kolosia District}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {57}, + pages = {157-201}, + year = {1927}, + key = {Elmley (1927)}, + lgcode = {Turkana [turk1308]} +} +@book{elwin1939, + author = {Elwin, V.}, + title = {The Baiga}, + address = {London}, + year = {1939}, + key = {Elwin (1939)}, + lgcode = {Baiga [chha1249]} +} +@book{elwin1950, + author = {Elwin, V.}, + title = {Bondo Highlanders}, + publisher = {Bombay: Oxford Univ. Press}, + address = {London}, + pages = {290}, + year = {1950}, + glottolog_ref = {hh:e:Elwin:Bondo}, + key = {Elwin (1950)}, + lgcode = {Khond [kuii1252]} +} +@book{elwin1957, + author = {Elwin, V.}, + title = {The Muria and Their Ghotul}, + address = {Bombay}, + year = {1957}, + key = {Elwin (1957)}, + lgcode = {Muria Gond [west2408]} +} +@misc{ember1954, + author = {Ember, M.}, + year = {1954}, + howpublished = {Unpublished ethnographic notes}, + key = {Ember (1954)}, + lgcode = {Byelorussians [bela1254]} +} +@article{ember1959, + author = {Ember, M.}, + title = {The Nonunilinear Descent Groups of Samoa}, + journal = {American Anthropologist}, + volume = {61}, + pages = {573-577}, + year = {1959}, + key = {Ember (1959)}, + lgcode = {American Samoans [samo1305]} +} +@article{ember1962, + author = {Ember, M.}, + title = {Political Authority and the Structure of Kinship in Aboriginal Samoa}, + journal = {American Anthropologist}, + volume = {64}, + pages = {964-971}, + year = {1962}, + key = {Ember (1962)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{emeneau1939, + author = {Emeneau, M. B.}, + title = {Kinship and Marriage Among the Coorgs}, + journal = {Journ. Roy. As. Soc. Bengal, Letters}, + volume = {4}, + pages = {123-147}, + year = {1939}, + key = {Emeneau (1939)}, + lgcode = {Kodavas [koda1255]} +} +@incollection{emeneau1941, + author = {Emeneau, M. B.}, + editor = {Spier, Hallowell, and Newman}, + title = {Language and Social Forms: A Study of Toda Kinship Terms and Double Descent}, + booktitle = {Language, Culture, and Personality}, + address = {Menasha}, + pages = {158-179}, + year = {1941}, + key = {Emeneau (1941)}, + lgcode = {Toda [toda1252]} +} +@book{emmons1911, + author = {Emmons, G. T.}, + title = {The Tahltan Indians}, + publisher = {University of Pennsylvania Museum}, + address = {Philadelphia}, + series = {University of Pennsylvania Museum Anthropological Publications}, + volume = {4}, + number = {1}, + pages = {1-120}, + year = {1911}, + key = {Emmons (1911)}, + lgcode = {Tahltan [tahl1239]} +} +@article{emory1965, + author = {Emory, K. P.}, + title = {Kapingamarangi}, + journal = {Bull. Bishop Mus.}, + volume = {228}, + pages = {1-357}, + year = {1965}, + key = {Emory (1965)}, + lgcode = {Kapingamarangi [kapi1249]} +} +@article{empain1922, + author = {Empain, A.}, + title = {Les Bakela de la Loto}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {46}, + pages = {206-265}, + year = {1922}, + glottolog_ref = {eballiso2009:49543}, + key = {Empain (1922)}, + lgcode = {Kela [yela1238]} +} +@book{endle1911, + author = {Endle, S.}, + title = {The Kacharis}, + publisher = {London: MacMillan}, + address = {London}, + pages = {184}, + year = {1911}, + glottolog_ref = {hh:ew:Endle:Kacharis}, + key = {Endle (1911)}, + lgcode = {Kachari [kach1279]} +} +@book{englehardt1899, + author = {Englehardt, E. A.}, + title = {A Russian Province of the North}, + address = {Westminster}, + year = {1899}, + key = {Englehardt (1899)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@incollection{entwistle1953, + author = {Entwistle, William J.}, + editor = {H. V. Livermore}, + title = {Religion}, + booktitle = {Portual and Brazil: an introduction}, + publisher = {Oxford University Press}, + address = {Oxford}, + year = {1953}, + key = {Entwistle (1953)}, + lgcode = {Portuguese [gali1257]} +} +@book{erdland1914, + author = {Erdland, P. A.}, + title = {Die Marshall-Insulaner}, + publisher = {Munster}, + address = {Wien}, + year = {1914}, + key = {Erdland (1914)}, + lgcode = {Marshallese - Jaluit Atoll [rali1241], Marshallese - Jaluit atoll [rali1241]} +} +@article{erickson1943, + author = {Erickson, E. H.}, + title = {Observations on the Yurok: Childhood and World Image}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {25}, + pages = {257-302}, + year = {1943}, + key = {Erickson (1943)}, + lgcode = {Yurok [yuro1248]} +} +@article{erikson1939, + author = {Erikson, Erik H.}, + title = {Observations on Sioux education}, + journal = {Journal of Psychology}, + volume = {7}, + pages = {101-56}, + year = {1939}, + key = {Erikson (1939)}, + lgcode = {Teton [lako1247]} +} +@book{erikson1950, + author = {Erikson, Erik H.}, + title = {Childhood and society}, + publisher = {W. W. Norton}, + address = {New York}, + year = {1950}, + key = {Erikson (1950)}, + lgcode = {Teton [lako1247]} +} +@book{erman1923, + author = {Erman, A.}, + editor = {H. Ranke}, + title = {Aegypten und aegyptisches Leben im Altertum}, + address = {Tübingen}, + year = {1923}, + key = {Erman (1923)}, + lgcode = {Ancient Egyptians [egyp1246]} +} +@book{espinosa1907, + author = {Espinosa, A. de.}, + editor = {Markham}, + title = {The Guanches of Teneriffe}, + address = {London}, + year = {1907}, + key = {Espinosa (1907)}, + lgcode = {Guanche [guan1277]} +} +@book{espinosa1935, + author = {Espinosa, L.}, + title = {Los Tupi del oriente peruano}, + address = {Madrid}, + year = {1935}, + key = {Espinosa (1935)}, + lgcode = {Cocama [coca1259]} +} +@article{essene1940, + author = {Essene, F.}, + title = {Round Valley}, + journal = {Anth. Rec.}, + volume = {8}, + pages = {1-97}, + year = {1940}, + key = {Essene (1940)}, + lgcode = {Lassik [wail1244]} +} +@article{essene1942, + author = {Essene, F.}, + title = {Round Valley}, + journal = {Anth. Rec.}, + volume = {8}, + pages = {1-97}, + year = {1942}, + key = {Essene (1942)}, + lgcode = {Cahto [kato1244], Northern Pomo [nort2966], Yuki [yuki1243]} +} +@incollection{etoeva1977, + author = {Etoeva, Z. I.}, + editor = {A. A. Shennikov}, + title = {Poselenija i zhilishcha vepsov kontsa XIX- nachala XX v. (Settlements and Homes of the Veps in the Late Nineteenth and Early Twentieth Centuries)}, + booktitle = {Etnografija narodov Vostochnoj Evropy (Ethnography of the East European Peoples)}, + address = {Leningrad}, + pages = {125-39}, + year = {1977}, + key = {Etoeva (1977)}, + lgcode = {Veps [veps1250]} +} +@article{euler1954, + author = {Euler, Robert C.}, + title = {Notes on Land Tenure at Isleta Pueblo}, + journal = {El palacio}, + volume = {61}, + pages = {368-373}, + year = {1954}, + key = {Euler (1954)}, + lgcode = {Isleta [sout2961]} +} +@book{euler1972, + author = {Euler, R.C.}, + title = {The Paiute People}, + address = {Phoenix}, + series = {Indian Tribal Series}, + year = {1972}, + key = {Euler (1972)}, + lgcode = {Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@book{eulerandfowler1966, + author = {Euler, R.C., and C. Fowler}, + title = {Southern Paiute Ethnohistory}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {Glen Canyon Series No. 28., University of Utah Anthropological Papers No. 78.}, + year = {1966}, + key = {Euler and Fowler (1966)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@book{evans1922, + author = {Evans, I. H. N.}, + title = {Among Primitive Peoples in North Borneo}, + publisher = {London: Seeley}, + address = {London}, + pages = {313}, + year = {1922}, + glottolog_ref = {hh:he:Evans:Borneo}, + key = {Evans (1922)}, + lgcode = {Kadazan-Dusun [cent2100]} +} +@book{evans1937, + author = {Evans, I. H. N.}, + title = {The Negritos of Malaya}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1937}, + key = {Evans (1937)}, + lgcode = {Semang [kens1248]} +} +@book{evans1957, + author = {Evans, E. E.}, + title = {Irish Folk-Ways}, + address = {London}, + year = {1957}, + key = {Evans (1957)}, + lgcode = {Irish [iris1253]} +} +@article{evanspritchard1927, + author = {Evans-Pritchard, E. E.}, + title = {A Preliminary Account of the Ingassana Tribe}, + journal = {Sudan Notes and Records}, + volume = {10}, + pages = {69-83}, + year = {1927}, + key = {Evans-Pritchard (1927)}, + lgcode = {Ingassana [gaam1241]} +} +@article{evanspritchard1929, + author = {Evans-Pritchard, E. E.}, + title = {The Bongo}, + journal = {Sudan Notes and Records}, + volume = {12}, + pages = {1-61}, + year = {1929}, + glottolog_ref = {hh:e:Evans-Pritchard:Bongo}, + key = {Evans-Pritchard (1929)}, + lgcode = {Bongo [bong1285]} +} +@article{evanspritchard1932a, + author = {Evans-Pritchard, E. E.}, + title = {Ethnological Observations in Dar Fung}, + journal = {Sudan Notes and Records}, + volume = {15}, + pages = {1-61}, + year = {1932}, + glottolog_ref = {hh:hw:Evans-Pritchard:Fung}, + key = {Evans-Pritchard (1932a)}, + lgcode = {Meban [maba1273]} +} +@article{evanspritchard1932b, + author = {Evans-Pritchard, E. E.}, + title = {Heredity and Gestation, as the Azande See Them}, + journal = {Sociologus}, + volume = {3}, + pages = {400-414}, + year = {1932}, + key = {Evans-Pritchard (1932b)}, + lgcode = {Azande [zand1248]} +} +@incollection{evanspritchard1936, + author = {Evans-Pritchard, Edward Evan}, + editor = {L. H. Dudley Buxton}, + title = {Daily life of the Nuer in dry-season camps}, + booktitle = {Custom is King}, + address = {London}, + series = {Hutchinson's Scientific and Technical Publications}, + pages = {291-299}, + year = {1936}, + key = {Evans-Pritchard (1936)}, + lgcode = {Nuer [nuer1246]} +} +@book{evanspritchard1937, + author = {Evans-Pritchard, E. E.}, + title = {Witchcraft, Oracles and Magic Among the Azande}, + publisher = {Oxford: Clarendon Press}, + address = {Oxford}, + year = {1937}, + glottolog_ref = {eballiso2009:34997}, + key = {Evans-Pritchard (1937)}, + lgcode = {Azande [zand1248]} +} +@article{evanspritchard1940, + author = {Evans-Pritchard, E. E.}, + title = {The Political System of the Anuak}, + journal = {London School of Economics Monographs on Social Anthropology}, + volume = {4}, + pages = {1-164}, + year = {1940}, + key = {Evans-Pritchard (1940)}, + lgcode = {Anuak [anua1242]} +} +@incollection{evanspritchard1940a, + author = {Evans-Pritchard, E. E.}, + editor = {Fortes and Evans-Pritchard}, + title = {The Nuer of the Southern Sudan}, + booktitle = {African Political Systems}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + address = {Oxford}, + pages = {272-292}, + year = {1940}, + glottolog_ref = {eballiso2009:34993}, + key = {Evans-Pritchard (1940a)}, + lgcode = {Nuer [nuer1246]} +} +@book{evanspritchard1940b, + author = {Evans-Pritchard, E. E.}, + title = {The Nuer}, + address = {Oxford}, + year = {1940}, + key = {Evans-Pritchard (1940b)}, + lgcode = {Nuer [nuer1246]} +} +@article{evanspritchard1940c, + author = {Evans-Pritchard, E. E.}, + title = {The Relationship Between the Anuak and the Fori}, + journal = {Sudan Notes and Records}, + volume = {23}, + pages = {337-340}, + year = {1940}, + glottolog_ref = {eballiso2009:35002}, + key = {Evans-Pritchard (1940c)}, + lgcode = {Pari [pari1256]} +} +@article{evanspritchard1947, + author = {Evans-Pritchard, E. E.}, + title = {Further Observations on the Political System of the Anuak}, + journal = {Sudan Notes and Records}, + volume = {28}, + pages = {62-97}, + year = {1947}, + glottolog_ref = {eballiso2009:40844}, + key = {Evans-Pritchard (1947)}, + lgcode = {Anuak [anua1242]} +} +@book{evanspritchard1948, + author = {Evans-Pritchard, E. E.}, + title = {The Divine Kingship of the Shilluk of the Nilotic Sudan}, + address = {Cambridge}, + year = {1948}, + key = {Evans-Pritchard (1948)}, + lgcode = {Shilluk [shil1265]} +} +@article{evanspritchard1949a, + author = {Evans-Pritchard, E. E.}, + title = {Luo Tribes and Clans}, + journal = {Rhodes-Liv. Journ.}, + volume = {7}, + pages = {24-40}, + year = {1949}, + glottolog_ref = {eballiso2009:2793}, + key = {Evans-Pritchard (1949a)}, + lgcode = {Luo [luok1236]} +} +@book{evanspritchard1949b, + author = {Evans-Pritchard, E. E.}, + title = {The Sanusi of Cyrenaica}, + address = {Oxford}, + year = {1949}, + key = {Evans-Pritchard (1949b)}, + lgcode = {Sanusi [liby1240]} +} +@article{evanspritchard1950a, + author = {Evans-Pritchard, E. E.}, + title = {Marriage Customs of the Kenya Luo}, + journal = {Africa}, + volume = {20}, + pages = {132-142}, + year = {1950}, + key = {Evans-Pritchard (1950a)}, + lgcode = {Luo [luok1236]} +} +@article{evanspritchard1950b, + author = {Evans-Pritchard, Edward Evan.}, + title = {The Nuer family}, + journal = {Sudan Notes and Records}, + volume = {31}, + pages = {21-42}, + year = {1950}, + key = {Evans-Pritchard (1950b)}, + lgcode = {Nuer [nuer1246]} +} +@book{evanspritchard1951, + author = {Evans-Pritchard, E. E.}, + title = {Kinship and Marriage Among the Nuer}, + address = {Oxford}, + year = {1951}, + key = {Evans-Pritchard (1951)} +} +@book{evanspritchard1956, + author = {Evans-Pritchard, E. E.}, + title = {The Azande System of Agriculture}, + address = {London}, + year = {1956}, + key = {Evans-Pritchard (1956)}, + lgcode = {Azande [zand1248]} +} +@article{evanspritchard1957, + author = {Evans-Pritchard, E. E.}, + title = {The Zande Royal Court}, + journal = {Zaire}, + volume = {11}, + pages = {361-389, 493-511, 687-713}, + year = {1957}, + key = {Evans-Pritchard (1957)}, + lgcode = {Azande [zand1248]} +} +@book{evanspritchard1963, + author = {Evans-Pritchard, E. E.}, + title = {The Zande State}, + address = {London}, + year = {1963}, + key = {Evans-Pritchard (1963)}, + lgcode = {Azande [zand1248]} +} +@book{evanspritchard1971, + author = {Evans-Pritchard, E. E.}, + title = {The Azande: history and political institutions}, + publisher = {Oxford: Clarendon Press}, + pages = {439}, + year = {1971}, + glottolog_ref = {hh:e:Evans-Pritchard:Azande:History}, + key = {Evans-Pritchard (1971)}, + lgcode = {Azande [zand1248]}, + note = {revision of earlier articles} +} +@book{evanspritchard1974, + editor = {Evans-Pritchard, E. E.}, + title = {Man and Woman among the Azande}, + address = {London}, + year = {1974}, + key = {Evans-Pritchard (1974)}, + lgcode = {Azande [zand1248]} +} +@book{evanspritchard1974a, + author = {Evans-Pritchard, E. E.}, + title = {Bild der Völker. Die Brockhaus Völkerkunde, Bd. 6}, + year = {1974}, + key = {Evans-Pritchard (1974a)}, + lgcode = {Semang [kens1248]} +} +@article{even1931, + author = {Even, A.}, + title = {Quelques coutumes des tribus Badondos et Bassoundis}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {7}, + pages = {77-94}, + year = {1931}, + glottolog_ref = {hh:e:Even:Badondos}, + key = {Even (1931)}, + lgcode = {Sundi [koon1244]} +} +@book{ewers1937, + author = {Ewers, John C.}, + title = {Teton Dakota ethnology and history}, + publisher = {National Park Service}, + address = {Berkeley}, + year = {1937}, + key = {Ewers (1937)}, + lgcode = {Teton [lako1247]} +} +@book{ewers1955, + author = {Ewers, John C.}, + title = {The Horse in Blackfoot Indian Culture}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {159}, + pages = {1-374}, + year = {1955}, + key = {Ewers (1955)}, + lgcode = {Bitterroot Salish [kali1309], Blackfoot [pieg1239], Crow [crow1244], Gros Ventre [gros1243], Kainai [bloo1239], Kiowa Apache [kiow1264], Piegan [pieg1239], White Knife Shoshoni [west2622]} +} +@book{ewers1958, + author = {Ewers, John C.}, + title = {The Blackfeet}, + address = {Norman}, + year = {1958}, + key = {Ewers (1958)}, + lgcode = {Blackfoot [pieg1239]} +} +@book{ewers1971, + author = {Ewers, John C.}, + title = {The Blackfeet: Raiders on The Northwestern Plains}, + publisher = {University of Oklahoma Press}, + address = {Norman}, + year = {1971}, + key = {Ewers (1971)}, + lgcode = {Blackfoot [pieg1239]} +} +@book{ezell1961, + author = {Ezell, Paul H.}, + title = {Hispanic Acculturation of Gila River Pima}, + series = {American Anthropological Association Memoir}, + volume = {90}, + pages = {1-171}, + year = {1961}, + key = {Ezell (1961)}, + lgcode = {Pima [akim1239]} +} +@article{faidherbe1882, + author = {Faidherbe, L. L. C. V-8.}, + title = {Grammaire et vocabulaire de la langue Peul}, + publisher = {Paris: Miasonneuve et Libraires}, + year = {1882}, + glottolog_ref = {hh:s:Faidherbe:Poul}, + key = {Faidherbe (1882)}, + lgcode = {Bororo Fulani [boro1274]} +} +@article{fainberg1962, + author = {Fainberg, L. A.}, + title = {Terminologija rodstva nganasan kak istoricheskij istochnik (Nganasan Kinship Terminology as a Source for the Study of Their History)}, + journal = {Trudy Instituta Etnografi}, + volume = {78}, + pages = {226-37}, + year = {1962}, + key = {Fainberg (1962)}, + lgcode = {Nganasan [ngan1291]} +} +@book{fainsod1958, + author = {Fainsod, M.}, + title = {How Russia is Ruled}, + address = {Cambridge}, + year = {1958}, + key = {Fainsod (1958)}, + lgcode = {Russians [russ1263]} +} +@incollection{falad1963, + author = {Falad, S.}, + editor = {D. Paulme}, + title = {Women of Dakar and the Surrounding Urban Area}, + booktitle = {Women of Africa}, + address = {London}, + pages = {217-229}, + year = {1963}, + key = {Falad (1963)}, + lgcode = {Wolof [nucl1347]} +} +@book{falkenberg1962, + author = {Falkenberg, J.}, + title = {Kin and Totem}, + address = {Oslo}, + year = {1962}, + key = {Falkenberg (1962)}, + lgcode = {Murriny Patha [murr1258]} +} +@book{fallers1956, + author = {Fallers, L. A.}, + title = {Bantu Bureaucracy}, + address = {Cambridge}, + year = {1956}, + key = {Fallers (1956)}, + lgcode = {Soga [soga1242]} +} +@book{fallers1960, + author = {Fallers, M. C.}, + title = {The Eastern Lacustrine Bantu}, + address = {London}, + year = {1960}, + key = {Fallers (1960)}, + lgcode = {Ganda [gand1255], Soga [soga1242]} +} +@article{farabee1918, + author = {Farabee, W. C.}, + title = {The Central Arawaks}, + journal = {Univ. Penn. Mus. Anth. Publ.}, + publisher = {Philadephia: University Museum}, + series = {University Museum Anthropological Publication}, + volume = {9}, + pages = {13-121}, + year = {1918}, + glottolog_ref = {hh:hew:Farabee:CArawaks}, + key = {Farabee (1918)}, + lgcode = {Wapishana [wapi1253]} +} +@article{farabee1924, + author = {Farabee, W. C.}, + title = {The Central Caribs}, + journal = {Univ. Penn. Mus. Anth. Pap.}, + publisher = {University of Pennsylvania}, + series = {Anthropological Publications of the University Museum}, + volume = {10}, + pages = {13-152}, + year = {1924}, + glottolog_ref = {mpieva:Farabee1924Thecentr}, + key = {Farabee (1924)}, + lgcode = {Macushi [macu1259]} +} +@article{faron1961a, + author = {Faron, L. C.}, + title = {A Reinterpretation of Choco Society}, + journal = {Southw. Journ. Anth.}, + volume = {17}, + pages = {94-102}, + year = {1961}, + glottolog_ref = {fabreall2009ann:Choco11}, + key = {Faron (1961a)}, + lgcode = {Emberá [nort2972]} +} +@article{faron1961b, + author = {Faron, L. C.}, + title = {Mapuche Social Structure}, + journal = {Illinois Studies in Anthropology}, + publisher = {Urbana: University of Illinois Press}, + volume = {1}, + pages = {1-247}, + year = {1961}, + glottolog_ref = {fabreall2009ann:Mapuche415}, + key = {Faron (1961b)}, + lgcode = {Mapuche [mapu1245]} +} +@article{faron1962, + author = {Faron, L. C.}, + title = {Marriage residence and domestic groups among the Panamanian Chocó}, + journal = {Ethnology}, + volume = {1}, + pages = {13-38}, + year = {1962}, + glottolog_ref = {fabreall2009ann:Choco12}, + key = {Faron (1962)}, + lgcode = {Emberá [nort2972]} +} +@book{faron1964, + author = {Faron, L. C.}, + title = {Hawks of the Sun}, + publisher = {Pittsburgh}, + address = {Pittsburgh}, + year = {1964}, + glottolog_ref = {fabreall2009ann:Mapuche421}, + key = {Faron (1964)}, + lgcode = {Mapuche [mapu1245]} +} +@book{faron1968, + author = {Faron, L. C.}, + title = {The Mapuche Indians of Chile}, + publisher = {New York: Holt, Rinehart and Winston}, + address = {New York}, + year = {1968}, + glottolog_ref = {fabreall2009ann:Mapuche422}, + key = {Faron (1968)}, + lgcode = {Mapuche [mapu1245]} +} +@misc{fathauer1954a, + author = {Fathauer, G. H.}, + title = {Kinship and Social Structure of the Trobriand Islands}, + year = {1954}, + howpublished = {Manuscript}, + key = {Fathauer (1954a)}, + lgcode = {Trobriands [kili1267]} +} +@article{fathauer1954b, + author = {Fathauer, George H.}, + title = {The Structure and Causation of Mohave Warfare}, + journal = {Southwestern Journal of Anthropology}, + volume = {10}, + pages = {97-118}, + year = {1954}, + key = {Fathauer (1954b)}, + lgcode = {Mojave [moha1256]} +} +@book{faublee1946, + author = {Faublee, J.}, + title = {Ethnopgrahie de Madagascar}, + address = {Paris}, + year = {1946}, + key = {Faublee (1946)}, + lgcode = {Sakalava [saka1291]} +} +@incollection{faye1923, + author = {Faye, P.L.}, + editor = {A. L. Kroeber}, + title = {Notes on the Southern Maidu}, + booktitle = {Phoebe Apperson Hearst Memorial Volume}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {35-53}, + year = {1923}, + key = {Faye (1923)}, + lgcode = {Nisenan [nise1244]} +} +@article{fayet1939, + author = {Fayet, J. C.}, + title = {Coutumes des Sereres N'Doute}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {8}, + pages = {195-212}, + year = {1939}, + key = {Fayet (1939)}, + lgcode = {Serer [sere1260]} +} +@book{fedjanovich1997, + author = {Fedjanovich, T. P.}, + title = {Semejnye obychai i obrjady finno-ugorskih narodov Uralo-Povolzh'ja (konets XIX veka - 1980-e gody)}, + address = {Moscow}, + year = {1997}, + key = {Fedjanovich (1997)}, + lgcode = {Erzya Mordvins [erzy1239], Udmurt [sout2681]}, + title_english = {Family Customs and Rites of the Finno-Ugric Peoples of the Ural-Volga Region (from the Late Nineteenth Century to the 1990s)} +} +@article{fegan1930, + author = {Fegan, E. S.}, + title = {Some Notes on the Bachama Tribe}, + journal = {Journ. Afr. Soc.}, + volume = {29}, + pages = {269-279, 376-400}, + year = {1930}, + key = {Fegan (1930)}, + lgcode = {Bachama [baca1246]} +} +@book{fei1946, + author = {Fei, Hsiao-Tung}, + title = {Peasant Life in China}, + address = {New York}, + year = {1946}, + key = {Fei (1946)}, + lgcode = {Chekiang [wuch1236]} +} +@book{feilberg1952, + author = {Feilberg, C. G.}, + title = {Les Papis}, + address = {Copenhagen}, + year = {1952}, + key = {Feilberg (1952)}, + lgcode = {Bakhtiari [bakh1245]} +} +@article{fejos1943, + author = {Fejos, P.}, + title = {Ethnography of the Yagua}, + journal = {Viking Fund Publ. Anth.}, + publisher = {New York: The Viking Fundation}, + series = {Viking Fund publications in anthropology}, + volume = {1}, + pages = {1-144}, + year = {1943}, + glottolog_ref = {fabreall2009ann:Peba-Yagua_yawa33}, + key = {Fejos (1943)}, + lgcode = {Yagua [yagu1244]} +} +@article{felkin1883, + author = {Felkin, W.}, + title = {Notes on the Moru or Madi Tribe of Central Africa}, + journal = {proc. Roy. Soc. Edinburgh}, + volume = {12}, + pages = {303-353}, + year = {1883}, + glottolog_ref = {eballiso2009:25992}, + key = {Felkin (1883)}, + lgcode = {Moru [moru1253]} +} +@article{felkin1885, + author = {Felkin, R. W.}, + title = {Notes on the Fur Tribe}, + journal = {Proceedings of the Royal Society of Edinburgh}, + volume = {23}, + pages = {205-265}, + year = {1885}, + key = {Felkin (1885)}, + lgcode = {Fur [furr1244]} +} +@incollection{fenton1940, + author = {Fenton, William N.}, + title = {Masked medicine societies of the Iroquois}, + booktitle = {Annual Report of the Smithsonian Institution}, + publisher = {Government Printing Office}, + address = {Washington, D. C.}, + pages = {397-429}, + year = {1940}, + key = {Fenton (1940)}, + lgcode = {Seneca [sene1264]} +} +@book{fenton1957, + author = {Fenton, William Nelson}, + title = {Factionalism at Taos Pueblo, New Mexico}, + series = {Bureau of American Ethnology. Bulletin}, + volume = {164}, + pages = {297-344}, + year = {1957}, + key = {Fenton (1957)}, + lgcode = {Taos [taos1236]} +} +@book{feoktistova1980, + author = {Feoktistova, L. H.}, + title = {Zemledelie u estontsev: XVIII- nachalo XX v.}, + address = {Moscow}, + year = {1980}, + key = {Feoktistova (1980)}, + lgcode = {Estonians [esto1258]}, + title_english = {Agriculture among the Estonians: From the Eighteenth to the Early Twentieth Century} +} +@book{fernea1966, + editor = {Fernea, R. A.}, + title = {Contemporary Egyptian Nubia. 2v}, + address = {New Haven}, + year = {1966}, + key = {Fernea (1966)}, + lgcode = {Barabra [kenu1236]} +} +@book{ferrell1969, + author = {Ferrell, R.}, + title = {Taiwan Aboriginal Groups: Problems in Cultural and Linguistic Classification}, + series = {Academia Sinica, Institute of Ethnology Monographs}, + volume = {17}, + year = {1969}, + key = {Ferrell (1969)}, + lgcode = {Atayal [atay1247]} +} +@article{ffoulkes1908, + author = {Ffoulkes, A.}, + title = {The Fanti Family System}, + journal = {Journ. Afr. Soc.}, + volume = {7}, + pages = {394-409}, + year = {1908}, + glottolog_ref = {eballiso2009:39270}, + key = {Ffoulkes (1908)}, + lgcode = {Fante [fant1241]} +} +@article{ffoulkes1909, + author = {Ffoulkes, A.}, + title = {Fanti Marriage Customs}, + journal = {Journ. Afr. Soc.}, + volume = {8}, + pages = {31-48}, + year = {1909}, + key = {Ffoulkes (1909)}, + lgcode = {Fante [fant1241]} +} +@incollection{fidler1934, + author = {Fidler, P.}, + title = {Journal of a Journey with the Chepawyans, or Northern Indians, to the Slave Lake, and to the East and West of the Slave River in 1791 & 2}, + booktitle = {Publications}, + publisher = {Champlain Society}, + address = {Toronto}, + volume = {21}, + pages = {495-555}, + year = {1934}, + key = {Fidler (1934)}, + lgcode = {Dene [chip1261]} +} +@book{field1937, + author = {Field, M. J.}, + title = {Religion and Medicine of the Ga People}, + address = {London}, + year = {1937}, + key = {Field (1937)}, + lgcode = {Ga [gaaa1244]} +} +@book{field1940, + author = {Field, M. J.}, + title = {Social Organization of the Ga People}, + publisher = {Accra: Crown Agents for the Colonies}, + address = {London}, + year = {1940}, + glottolog_ref = {eballiso2009:32512}, + key = {Field (1940)}, + lgcode = {Ga [gaaa1244]} +} +@article{field1943, + author = {Field, M. J.}, + title = {The AGricultural System of the Manya-Krobo of the Gold Coast}, + journal = {Africa}, + volume = {14}, + pages = {54-65}, + year = {1943}, + key = {Field (1943)}, + lgcode = {Adangme [adan1247]} +} +@book{field1949, + author = {Field, M. J.}, + title = {Akim Kotoku}, + address = {London}, + year = {1949}, + key = {Field (1949)}, + lgcode = {Akyem [akye1239]} +} +@book{finsch1893, + author = {Finsch, O.}, + title = {Ethnologische Erfahrungen und Belegstucke aus der Südsee 3}, + address = {Wien}, + pages = {19-89}, + year = {1893}, + key = {Finsch (1893)}, + lgcode = {Makin [bana1287], Marshallese - Jaluit Atoll [rali1241]} +} +@book{firedl1962, + author = {Firedl, E.}, + title = {Vasilika, a Village in Modern Greece}, + address = {New York}, + year = {1962}, + key = {Firedl (1962)}, + lgcode = {Greeks [mode1248]} +} +@book{firkovich1969, + author = {Firkovich, R.}, + title = {Karaimika v Litve}, + address = {Trakaj}, + year = {1969}, + key = {Firkovich (1969)}, + lgcode = {Lithuanian Karaim [kara1464]}, + title_english = {The Karaim Studies in Lithuania} +} +@book{firth1936, + author = {Firth, R.}, + title = {We, the Tikopia}, + address = {London}, + year = {1936}, + key = {Firth (1936)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1939, + author = {Firth, R.}, + title = {A Primitive Polynesian Economy}, + address = {London}, + year = {1939}, + key = {Firth (1939)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1940, + author = {Firth, R.}, + title = {Work of the Gods}, + series = {London School of Economics Monographs on Social Anthropology}, + volume = {1-2}, + year = {1940}, + key = {Firth (1940)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1943, + author = {Firth, Rosmary.}, + title = {Housekeeping among Malay peasants}, + address = {London}, + series = {London School of Economics Monographs on Social Anthropology}, + volume = {7}, + year = {1943}, + key = {Firth (1943)}, + lgcode = {Malays [mala1479]} +} +@book{firth1946, + author = {Firth, R.}, + title = {Malay Fishermen: Their Peasant Economy}, + address = {London}, + year = {1946}, + key = {Firth (1946)}, + lgcode = {Malays [mala1479]} +} +@misc{firth1952, + author = {Firth, R.}, + title = {Conflict and Adjustment in Tikopia Religions Systems}, + year = {1952}, + howpublished = {Manuscript}, + key = {Firth (1952)}, + lgcode = {Tikopia [tiko1237]} +} +@article{firth1956, + author = {Firth, R.}, + title = {Ceremonies for Children and Social Frequency in Tikopia}, + journal = {Oceania}, + volume = {27}, + pages = {12-55}, + year = {1956}, + key = {Firth (1956)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1959, + author = {Firth, R.}, + title = {Economics of the New Zealand Maori}, + address = {Wellington}, + year = {1959}, + key = {Firth (1959)}, + lgcode = {Māori [maor1246]}, + note = {2nd Edition} +} +@article{firth1960, + author = {Firth, R.}, + title = {Succession to Chieftainship in Tikopia}, + journal = {Oceania}, + volume = {30}, + pages = {161-180}, + year = {1960}, + key = {Firth (1960)}, + lgcode = {Tikopia [tiko1237]} +} +@article{fisch1913, + author = {Fisch, R.}, + title = {Die Dagbamba}, + journal = {Baessler-Arch.}, + volume = {3}, + pages = {132-164}, + year = {1913}, + key = {Fisch (1913)}, + lgcode = {Dagomba [dagb1246]} +} +@article{fischer187879, + author = {Fischer, G. A.}, + title = {Das Wapokomo-Land und seine Bewohner}, + journal = {Mitt. Geog. Ges. Hamburg}, + volume = {2}, + pages = {1-57}, + year = {1878-79}, + glottolog_ref = {eballiso2009:24561}, + key = {Fischer (1878-79)}, + lgcode = {Pokomo [poko1261]} +} +@book{fischer1950, + author = {Fischer, Ana M.}, + title = {The Role of the Trukese Mother and Its Effect on Child Training}, + year = {1950}, + howpublished = {Final SIM Report, Pacific Science Board, National Research Council, imeographed, Washington}, + key = {Fischer (1950)}, + lgcode = {Trukese [chuu1238]} +} +@article{fischer1957a, + author = {Fischer, H. T.}, + title = {Some Notes on Kinship Systems and Relationship Terms of Sumba, Manggarai and South Timor}, + journal = {Intern. Arch. Ethnog.}, + volume = {48}, + pages = {1-31}, + year = {1957}, + key = {Fischer (1957a)}, + lgcode = {Kodi [kodi1247]} +} +@misc{fischer1957b, + author = {Fischer, J. L.}, + year = {1957}, + howpublished = {Personal Communication}, + key = {Fischer (1957b)}, + lgcode = {Tigrinya [tigr1271]} +} +@book{fisher1900, + author = {Fisher, W. E. G.}, + title = {The Transvaal and the Boers}, + address = {London}, + year = {1900}, + key = {Fisher (1900)}, + lgcode = {Boers [afri1274]} +} +@phdthesis{fisher1987, + author = {Fisher, J. W.}, + title = {Shadows in the Forest: Ethnoarchaeology among the Efe Pygmies}, + school = {Department of Anthropology, University of California, Berkeley}, + year = {1987}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Fisher (1987)}, + lgcode = {Efe [efee1239]} +} +@article{fisherandstrickland1989, + author = {Fisher, J. W., and H. C. Strickland}, + title = {Ethnoarchaeology among the Efe Pygmies, Zaire: Spatial Organization of Campsites}, + journal = {American Journal of Physical Anthropology}, + volume = {78}, + pages = {473-484}, + year = {1989}, + key = {Fisher and Strickland (1989)}, + lgcode = {Efe [efee1239]} +} +@book{fisonandhowitt1880, + author = {Fison, L., and A. W. Howitt}, + title = {Kamilaroi and Kurnai}, + publisher = {George Robertson}, + address = {Melbourne}, + year = {1880}, + key = {Fison and Howitt (1880)}, + lgcode = {Kurnai [gana1278]} +} +@book{fitzgerald1941, + author = {Fitzgerald, C. P.}, + title = {The Tower of Five Glories}, + address = {London}, + year = {1941}, + key = {Fitzgerald (1941)}, + lgcode = {Minchia [cent2004]} +} +@article{fitzpatrick1910, + author = {Fitzpatrick, J. F. J.}, + title = {Some Notes on the Kwolla District and Its Tribes}, + journal = {Journ. Afr. Soc.}, + volume = {10}, + pages = {16-52, 213-221}, + year = {1910}, + glottolog_ref = {eballiso2009:29648}, + key = {Fitzpatrick (1910)}, + lgcode = {Angas [ngas1240], Yergum [taro1263]} +} +@book{fitzsimmons1957, + editor = {Fitzsimmons, T.}, + title = {RSFSR. 2v}, + address = {New Haven.}, + year = {1957}, + key = {Fitzsimmons (1957)}, + lgcode = {Russians [russ1263]} +} +@book{flad1860, + author = {Flad, J. M. A.}, + title = {A Short Description of the Falashas and Kemants}, + address = {Chrishona}, + year = {1860}, + key = {Flad (1860)}, + lgcode = {Beta Israel [qima1242]} +} +@article{flannery1932, + author = {Flannery, R.}, + title = {The Position of Woman Among the Mescalero Apache}, + journal = {Prim. Man}, + volume = {5}, + pages = {26-33}, + year = {1932}, + key = {Flannery (1932)}, + lgcode = {Mescalero [mesc1238]} +} +@book{flannery1953, + author = {Flannery, R.}, + title = {The Gros Ventres of Montana, Pt. I: Social Life}, + publisher = {Catholic University of America Press}, + address = {Washington, D.C.}, + series = {Catholic University of America Anthropological Series}, + volume = {15}, + pages = {1-221}, + year = {1953}, + url = {https://hdl.handle.net/2027/uc1.32106008103498}, + key = {Flannery (1953)}, + lgcode = {Arapaho [arap1274], Gros Ventre [gros1243]} +} +@article{flatz1963, + author = {Flatz, G.}, + title = {3 The Mrabri: Anthropometric, Genetic, and Medical Examinatiigns}, + journal = {Journal of the Siam Society}, + volume = {51}, + number = {2}, + pages = {161-170}, + year = {1963}, + key = {Flatz (1963)}, + lgcode = {Mlabri [mlab1235]} +} +@phdthesis{fleming1965, + author = {Fleming, H. C.}, + title = {The Age-Grading Cultures of East Africa}, + school = {University of Pittsburgh}, + year = {1965}, + key = {Fleming (1965)}, + lgcode = {Banna [hame1242], Burji [burj1242], Hamar [hame1242], Tsamai [tsam1247]} +} +@article{fletcherandlaflesche1911, + author = {Fletcher, A. C. and F. La Flesche.}, + title = {The Omaha Tribe}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {27}, + pages = {17-672}, + year = {1911}, + key = {Fletcher and La Flesche (1911)}, + lgcode = {Omaha [omah1248]} +} +@book{fock1963, + author = {Fock, N.}, + title = {Waiwai: Religion and Society of an Amazonian Tribe}, + publisher = {Copenhagen: The National Museum}, + address = {Copenhagen}, + series = {Nationalmuseets Skrifter: Etnografisk Række}, + volume = {VIII}, + pages = {316}, + year = {1963}, + glottolog_ref = {hh:e:Fock:Waiwai}, + key = {Fock (1963)}, + lgcode = {Wai-wai [waiw1244]} +} +@article{foelich1956, + author = {Foelich, J. C.}, + title = {Le commandement et l'organisation sociale chez des Fali}, + journal = {Et. Camerounaises}, + volume = {53-54}, + pages = {20-50}, + year = {1956}, + key = {Foelich (1956)}, + lgcode = {Fali [sout2782]} +} +@book{foote1966, + author = {Foote, D. C.}, + title = {Human Biographical Studies in Northwestern Arctic Alaska: The Upper Kobuk River Project, 1965. Final Report to the Association on American Indian Affairs}, + address = {New York}, + year = {1966}, + key = {Foote (1966)}, + lgcode = {Kobuk Inuit [kobu1239]} +} +@book{forbes1964, + author = {Forbes, R. J.}, + title = {Studies in Ancient Technology. 2d edit. 9v}, + address = {Leiden}, + year = {1964}, + key = {Forbes (1964)}, + lgcode = {Hebrews [anci1244]} +} +@article{force1960, + author = {Force, R. W.}, + title = {Leadership and Cultural Change in Palau}, + journal = {Fieldiana, Anthropology}, + volume = {50}, + pages = {1-211}, + year = {1960}, + key = {Force (1960)}, + lgcode = {Palauans [pala1344]} +} +@book{forceandforce1972, + author = {Force, R.W. and Force, M.}, + title = {Just one House: A Description and Analysis of Kinship in the Palau Islands}, + year = {1972}, + key = {Force and Force (1972)}, + lgcode = {Palauans [pala1344]} +} +@book{ford1941, + author = {Ford, C. S.}, + title = {Smoke from Their Fires}, + address = {New Haven}, + year = {1941}, + key = {Ford (1941)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@article{forde1931, + author = {Forde, C. D.}, + title = {Ethnography of the Yuma Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {28}, + pages = {83-278}, + year = {1931}, + key = {Forde (1931)}, + lgcode = {Quechan [quec1382]} +} +@article{forde1939, + author = {Forde, C. D.}, + title = {Government in Umor}, + journal = {Africa}, + volume = {12}, + pages = {129-162}, + year = {1939}, + key = {Forde (1939)}, + lgcode = {Yako [loka1252]} +} +@article{forde1941, + author = {Forde, C. D.}, + title = {Marriage and the Family Among the Yako}, + journal = {London School of Economics Monographs on Social Anthropology}, + volume = {5}, + pages = {1-121}, + year = {1941}, + key = {Forde (1941)}, + lgcode = {Yako [loka1252]} +} +@incollection{forde1950, + author = {Forde, C. D.}, + editor = {Radcliffe-Brown and Forde}, + title = {Double Descent Among the Yako}, + booktitle = {African systems of kinship and marriage}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London, New York & Toronto}, + pages = {285-332}, + year = {1950}, + glottolog_ref = {eballiso2009:25048}, + key = {Forde (1950)}, + lgcode = {Yako [loka1252]} +} +@book{forde1951, + author = {Forde, D.}, + title = {The Yoruba-speaking Peoples of Southwestern Nigeria}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {4}, + year = {1951}, + glottolog_ref = {eballiso2009:13680}, + key = {Forde (1951)}, + lgcode = {Egba [egba1238], Ekiti [ekit1244], Ife [ifee1241], Oyo Yoruba [ilaa1245]} +} +@article{forde1952, + author = {Forde, C. D.}, + title = {Land and Labour in a Cross River Village}, + journal = {Geographical Journal}, + volume = {90}, + pages = {24-51}, + year = {1952}, + key = {Forde (1952)}, + lgcode = {Yako [loka1252]} +} +@article{forde1955, + author = {Forde, Daryll}, + title = {The Nupe}, + journal = {In Peoples of the Niger-Benve confluence, edited by Daryll Ford, International African Institute, Ethnographic Survey of Africa, Western African, pt.}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {10}, + pages = {17-52}, + year = {1955}, + glottolog_ref = {eballiso2009:51521}, + key = {Forde (1955)}, + lgcode = {Nupe [nupe1254]} +} +@book{forde1964, + author = {Forde, C. D.}, + title = {Yako Studies}, + address = {London}, + year = {1964}, + key = {Forde (1964)}, + lgcode = {Yako [loka1252]} +} +@book{fordeandjones1950, + author = {Forde, D. and G. I. Jones}, + title = {The Ibo and Ibibio-speaking Peoples of South-Eastern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {3}, + year = {1950}, + glottolog_ref = {eballiso2009:51522}, + key = {Forde and Jones (1950)}, + lgcode = {Efik [efik1245], Ibibio [ibib1240], Igbo [nucl1417]} +} +@book{fordeandscott1946, + author = {Forde, D. and R. Scott}, + title = {The Native Economies of Nigeria}, + address = {London}, + year = {1946}, + key = {Forde and Scott (1946)}, + lgcode = {Bororo Fulani [boro1274], Hausa Kanawa [kano1249]} +} +@book{fordeetal1955, + author = {Forde, D. and P. Brown and R. G. Armstrong}, + title = {Peoples of the Niger-Benue Confluence}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {10}, + year = {1955}, + glottolog_ref = {eballiso2009:51521}, + key = {Forde et al. (1955)}, + lgcode = {Eloyi [eloy1241], Idoma [idom1241], Igala [igal1242]} +} +@book{forster1777, + author = {Forster, J. G. A.}, + title = {A Voyage Round the World in Britannic Majesty's Sloop Resolution, Commanded by Captain J. Cook, During the Years 1772, 3, 4, and 5}, + address = {London}, + year = {1777}, + key = {Forster (1777)}, + lgcode = {Marquesans [nort2845]} +} +@article{fortes1937, + author = {Fortes, M.}, + title = {Communal Fishing and Fishing Magic in the Northern Territories of the Gold Coast}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {67}, + pages = {131-142}, + year = {1937}, + key = {Fortes (1937)}, + lgcode = {Tallensi [taln1239]} +} +@article{fortes1938, + author = {Fortes, M.}, + title = {Social and Psychological Aspects of Education in Taleland}, + journal = {Africa}, + volume = {9}, + number = {4}, + pages = {Supplement}, + year = {1938}, + key = {Fortes (1938)}, + lgcode = {Tallensi [taln1239]} +} +@incollection{fortes1940, + author = {Fortes, M.}, + editor = {M. Fortes and E. E. Evans-Pritchard}, + title = {The Political System of the Tallensi}, + booktitle = {African Political Systems}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + address = {London}, + pages = {239-271}, + year = {1940}, + glottolog_ref = {eballiso2009:31988}, + key = {Fortes (1940)}, + lgcode = {Tallensi [taln1239]} +} +@book{fortes1945, + author = {Fortes, M.}, + title = {The Dynamics of Clanship Among the Tallensi}, + address = {London}, + year = {1945 (new ed. 1967)}, + key = {Fortes (1945)}, + lgcode = {Tallensi [taln1239]} +} +@book{fortes1949a, + author = {Fortes, M.}, + title = {The Web of Kinship Among the Tallensi}, + address = {London}, + year = {1949}, + key = {Fortes (1949a)}, + lgcode = {Tallensi [taln1239]} +} +@incollection{fortes1949b, + author = {Fortes, M.}, + editor = {M. Fortes}, + title = {Time and Social Structure: An Ashanti Case Study}, + booktitle = {Social Structure}, + address = {Oxford}, + pages = {54-84}, + year = {1949}, + key = {Fortes (1949b)}, + lgcode = {Ashanti [asan1239]} +} +@book{fortes1949c, + author = {Fortes, M.}, + title = {Time and social structure and other essays}, + address = {London, New York}, + year = {1949}, + key = {Fortes (1949c)}, + lgcode = {Ashanti [asan1239]} +} +@incollection{fortes1950, + author = {Fortes, M.}, + editor = {A. R. Radcliffe-Brown and D. Forde}, + title = {Kinship and Marriage Among the Ashanti}, + booktitle = {African Studies of Kinship and Marriage}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + pages = {252-284}, + year = {1950}, + glottolog_ref = {eballiso2009:10091}, + key = {Fortes (1950)}, + lgcode = {Ashanti [asan1239]} +} +@misc{fortes1969, + author = {Fortes, M.}, + title = {Kinship and the Social Order}, + address = {Chicago}, + year = {1969}, + key = {Fortes (1969)}, + lgcode = {Ashanti [asan1239]} +} +@article{fortes1975, + author = {Fortes, M.}, + title = {Tallensi Ritual Festivals and the Ancestors}, + journal = {Cambridge Anthropology}, + volume = {2}, + number = {2}, + pages = {3-31}, + year = {1975}, + key = {Fortes (1975)}, + lgcode = {Tallensi [taln1239]} +} +@article{fortesandfortes1936, + author = {Fortes, M. and S. L. Fortes}, + title = {Food in the Domestic Economy of the Tallensi}, + journal = {Africa}, + volume = {9}, + pages = {237-276}, + year = {1936}, + key = {Fortes and Fortes (1936)}, + lgcode = {Tallensi [taln1239]} +} +@article{fortesetal1947, + author = {Fortes, M. and R. W. Steel and P. Ady}, + title = {Ashanti Survey, 1945-46}, + journal = {Geographical Journal}, + volume = {110}, + pages = {149-179}, + year = {1947}, + key = {Fortes et al. (1947)}, + lgcode = {Ashanti [asan1239]} +} +@article{fortune1932a, + author = {Fortune, R. F.}, + title = {Omaha Secret Societies}, + journal = {Columbia University Contributions to Anthropology}, + volume = {14}, + pages = {1-193}, + year = {1932}, + key = {Fortune (1932a)}, + lgcode = {Omaha [omah1248]} +} +@book{fortune1932b, + author = {Fortune, R. F.}, + title = {Sorcerers of Dobu}, + address = {New York}, + year = {1932}, + key = {Fortune (1932b)}, + lgcode = {Dobuans [dobu1241]} +} +@article{fortune1935, + author = {Fortune, R. F.}, + title = {Manus Religion}, + journal = {Memoirs of the American Philosophical Society}, + volume = {3}, + pages = {1-391}, + year = {1935}, + key = {Fortune (1935)}, + lgcode = {Manus [tita1241]} +} +@article{fosbrooke1948, + author = {Fosbrooke, H. A.}, + title = {An Administrative Survey of the Masai Social System}, + journal = {Tanganyika Notes and Records}, + volume = {26}, + pages = {1-50}, + year = {1948}, + glottolog_ref = {eballiso2009:23091}, + key = {Fosbrooke (1948)}, + lgcode = {Maasi [masa1300]} +} +@article{foster1940, + author = {Foster, G. M.}, + title = {Notes on the Popoluca of Veracruz}, + journal = {Publicaciones del Instituto Panamericano de Geografia e Historia}, + publisher = {México, DF: Instituto Panamericano de Geografía e Historia}, + volume = {51}, + pages = {1-41}, + year = {1940}, + glottolog_ref = {hh:s:Foster:Popoluca-Veracruz}, + key = {Foster (1940)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1942, + author = {Foster, G. M.}, + title = {A Primitive Mexican Economy}, + journal = {Monographs of the American Ethnological Society}, + volume = {5}, + pages = {1-115}, + year = {1942}, + key = {Foster (1942)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1943, + author = {Foster, G. M.}, + title = {The Geographical, Linguistic, and Cultural Position of the Popoluca of Veracruz}, + journal = {American Anthropologist}, + volume = {45}, + pages = {531-546}, + year = {1943}, + glottolog_ref = {hh:w:Foster:Popoluca}, + key = {Foster (1943)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1944, + author = {Foster, G. M.}, + title = {A Summary of Yuki Culture}, + journal = {Anthropological Records}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {5}, + number = {3}, + pages = {155-244}, + year = {1944}, + key = {Foster (1944)}, + lgcode = {Huchnom [yuki1243], Yuki [yuki1243]} +} +@article{foster1945, + author = {Foster, G. M.}, + title = {Sierra Popoluca Folklore and Beliefs}, + journal = {niversity of California Publications in American Archaeology and Ethnology}, + volume = {42}, + pages = {177-250}, + year = {1945}, + key = {Foster (1945)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1948, + author = {Foster, G. M.}, + title = {Empire's Children}, + journal = {Publ. Inst. Soc. Anth., Smithsonian Inst.}, + volume = {6}, + pages = {1-297}, + year = {1948}, + key = {Foster (1948)}, + lgcode = {Tarasco [pure1242]} +} +@article{fourie1927, + author = {Fourie, L.}, + title = {7 Preliminary Notes on Certain Customs of the Hei//orn Bushmen}, + journal = {Veroffentlichungen der Wissenschaftlichen Vereinigung in Sildwestafrika}, + volume = {1}, + pages = {19-63}, + year = {1927}, + key = {Fourie (1927)}, + lgcode = {Hai//om [haio1238]} +} +@incollection{fourie1928, + author = {Fourie, L.}, + editor = {C. H. Hahn, H. Vedder, and L. Fourie}, + title = {The Bushmen of South West Africa}, + booktitle = {The native tribes of South West Africa}, + publisher = {Frank Cass}, + address = {London}, + pages = {79-106}, + year = {1928}, + glottolog_ref = {guldemann:1856}, + key = {Fourie (1928)}, + lgcode = {Hai//om [haio1238]} +} +@article{fourneau1938, + author = {Fourneau, J.}, + title = {Une tribu paienne du Nord-Cameroun: Les Guissiga}, + journal = {Journ. Soc. Africanistes}, + volume = {8}, + pages = {163-195}, + year = {1938}, + key = {Fourneau (1938)}, + lgcode = {Gisiga [sout3051]} +} +@incollection{fowler1966, + author = {Fowler, D.}, + editor = {W. L. d'Azevedo}, + title = {Great Basin Social Organization}, + booktitle = {The Current Status of Anthropological Research in the Great Basin: 1964}, + publisher = {Desert Research Institute, University of Nevada}, + address = {Reno}, + series = {Publications in the Social Sciences}, + volume = {1}, + pages = {57-73}, + year = {1966}, + key = {Fowler (1966)}, + lgcode = {Kuyuidokado [sout2967]} +} +@book{fowler1992, + author = {Fowler, C. S.}, + title = {In the Shadow of Fox Peak: An Ethnography of the Cattail-Eater Northern Paiute People of Stillwater Marsh}, + publisher = {U.S. Department of Interior, Fish and Wildlife Service, Region 1. U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Cultural Resource Series}, + number = {5}, + year = {1992}, + key = {Fowler (1992)}, + lgcode = {Toedokado [sout2967]} +} +@incollection{fowlerandliljeblad1986, + author = {Fowler, C. S., and S. Liljeblad}, + editor = {W. L. d'Azevedo}, + title = {Northern Paiute}, + booktitle = {Great Basin}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {11}, + pages = {435-465}, + year = {1986}, + key = {Fowler and Liljeblad (1986)}, + lgcode = {Kuyuidokado [sout2967], Tunava (Deep Springs) [mono1275]} +} +@article{fox1952, + author = {Fox, R.B.}, + title = {The Pinatubo Negritos: Their Useful Plants and Material Culture}, + journal = {Philippine Journal of Science}, + volume = {81}, + number = {3-4}, + pages = {173-394}, + year = {1952}, + key = {Fox (1952)}, + lgcode = {Ayta (Pinatubo) [boto1242]} +} +@phdthesis{fox1954, + author = {Fox, R. B.}, + title = {Religion and Society Among the Tagbanua of Palawan Island}, + school = {University of Chicago}, + year = {1954}, + key = {Fox (1954)}, + lgcode = {Tagbanua [tagb1258]}, + note = {Unpublished doctoral dissertation} +} +@article{fox1963, + author = {Fox, R. G.}, + title = {Caste Dominance and Coercion in the Nilgiris}, + journal = {Papers of the Michigan Academy of Science, Arts, and Letters}, + volume = {48}, + pages = {493-512}, + year = {1963}, + key = {Fox (1963)}, + lgcode = {Toda [toda1252]} +} +@book{fox1967, + author = {Fox, Robin}, + title = {The Keresan Bridge}, + address = {London}, + series = {London School of Economics Monographs Social Anthropology}, + number = {35}, + year = {1967}, + key = {Fox (1967)}, + lgcode = {Cochiti [coch1273]} +} +@article{frachtenberg1914, + author = {Frachtenberg, Leo J.}, + title = {Lower Umpqua Texts and Notes on the Kusan Dialects}, + journal = {Columbia University Contributions to Anthropology}, + publisher = {New York: Columbia Univ. Press}, + address = {New York}, + series = {Columbia University Contributions to Anthropology}, + volume = {4}, + pages = {1-156}, + year = {1914}, + glottolog_ref = {mpieva:Frachtenberg1914LowerUmp}, + key = {Frachtenberg (1914)}, + lgcode = {Siuslaw [sius1254]} +} +@article{frachtenberg1921, + author = {Frachtenberg, Leo J.}, + title = {The Ceremonial Societies of the Quileute Indians}, + journal = {American Anthropologist}, + volume = {23}, + pages = {320-352}, + year = {1921}, + key = {Frachtenberg (1921)}, + lgcode = {Quileute [quil1240]} +} +@phdthesis{frake1955, + author = {Frake, C. O.}, + title = {Social Organization and Shifting Cultivation Among the Sindangan Subanun}, + school = {Yale University}, + year = {1955}, + key = {Frake (1955)}, + lgcode = {Subanun [cent2089]}, + note = {Unpublished Ph. D. disertation} +} +@article{frake1960, + author = {Frake, C. O.}, + title = {The Eastern Subanun of Mindanao}, + journal = {Viking Fund Publ. Anth.}, + volume = {29}, + pages = {51-64}, + year = {1960}, + key = {Frake (1960)}, + lgcode = {Subanun [cent2089]} +} +@book{franciscanfathers1910, + author = {Franciscan Fathers. I-4.}, + title = {An ethnological dictionary of the Navaho language}, + address = {St. Michaels, Arizona}, + year = {1910}, + key = {Franciscan Fathers (1910)}, + lgcode = {Navajo [nava1243]} +} +@book{frankenetal1960, + author = {Franken, H. J. and R. Goris and C. J. Grader and V. E. Korn and J. L. Swellengrebel}, + title = {Bali: Studies in Life, Thought, and Ritual}, + address = {The Hague}, + year = {1960}, + key = {Franken et al. (1960)}, + lgcode = {Balinese [bali1278]} +} +@article{franz1931, + author = {Franz, G. H.}, + title = {Some customs of the Transvaal Basotho}, + journal = {Bantu Studies}, + volume = {5}, + pages = {241-46}, + year = {1931}, + glottolog_ref = {eballiso2009:41982}, + key = {Franz (1931)}, + lgcode = {Pedi [tswe1238]} +} +@book{fraser1960, + author = {Fraser, Thomas M., Jr.}, + title = {Rusembilan: a Malay fishing village in Southern Thailand}, + publisher = {Cornell University Press}, + address = {Ithaca}, + year = {1960}, + key = {Fraser (1960)}, + lgcode = {Malays [mala1479]} +} +@book{fraser1966, + author = {Fraser, Thomas M., Jr.}, + title = {Fishermen of South Thailand: the Malay villagers}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1966}, + key = {Fraser (1966)}, + lgcode = {Malays [mala1479]} +} +@article{freed1960, + author = {Freed, Stanley A.}, + title = {Changing Washo Kinship}, + journal = {Anth. Records}, + volume = {14}, + number = {6}, + pages = {349-418}, + year = {1960}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar014-007.pdf}, + key = {Freed (1960)}, + lgcode = {Washo [wash1253]} +} +@article{freed1963, + author = {Freed, Stanley A.}, + title = {Reconstruction of Aboriginal Washo Social Organization}, + journal = {University of Utah Anthropological Papers}, + volume = {67}, + pages = {8-24}, + year = {1963}, + key = {Freed (1963)}, + lgcode = {Washo [wash1253]} +} +@article{freeland1923, + author = {Freeland, L. S.}, + title = {Pomo Doctors and Poisoners}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {57-73}, + year = {1923}, + key = {Freeland (1923)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{freeman1955a, + author = {Freeman, J. D.}, + title = {Iban Agriculture}, + journal = {Colonial Research Studies}, + volume = {18}, + pages = {1-148}, + year = {1955}, + key = {Freeman (1955a)}, + lgcode = {Iban [iban1264]} +} +@book{freeman1955b, + author = {Freeman, J. D.}, + title = {Report on the Iban of Sarawak}, + address = {Kuching}, + year = {1955}, + key = {Freeman (1955b)}, + lgcode = {Iban [iban1264]}, + note = {2nd Edition 1970} +} +@article{freeman1957, + author = {Freeman, J.}, + title = {Iban Pottery}, + journal = {Sarawak Museum Journal}, + volume = {8}, + pages = {53-176}, + year = {1957}, + key = {Freeman (1957)}, + lgcode = {Iban [iban1264]} +} +@article{freeman1958a, + author = {Freeman, J. D.}, + title = {The Family System of the Iban}, + journal = {Cambridge Papers in Social Anthropology}, + volume = {I}, + pages = {15-52}, + year = {1958}, + key = {Freeman (1958a)}, + lgcode = {Iban [iban1264]} +} +@article{freeman1958b, + author = {Freeman, J. D.}, + title = {The Iban of Western Borneo}, + journal = {Viking Fund Publications in Anthropology}, + volume = {29}, + pages = {65-87}, + year = {1958}, + key = {Freeman (1958b)}, + lgcode = {Iban [iban1264]} +} +@article{freeman1965, + author = {Freeman, J. D.}, + title = {Some observations on Kinship and Political Authority in Samoa}, + journal = {American Anthropologist}, + volume = {66}, + pages = {553-568}, + year = {1965}, + key = {Freeman (1965)}, + lgcode = {American Samoans [samo1305]} +} +@book{freeman1970, + author = {Freeman, D.}, + title = {Report on the Iban}, + year = {1970}, + key = {Freeman (1970)}, + lgcode = {Iban [iban1264]} +} +@book{freikin1954, + author = {Freikin, Z. G.}, + title = {Turkmenskaia SSR}, + address = {Moskva}, + year = {1954}, + key = {Freikin (1954)}, + lgcode = {Turkmen [turk1304]} +} +@book{fremerey1978, + author = {Fremerey, M.}, + title = {Indonesien}, + year = {1978}, + key = {Fremerey (1978)}, + lgcode = {Mee [ekar1243]} +} +@incollection{french1961, + author = {French, David}, + editor = {Spicer, Edward H.}, + title = {Wasco-Wishram}, + booktitle = {Perspectives in American Indian Culture Change}, + publisher = {University of Chicago Press}, + address = {Chicago}, + pages = {337-429}, + year = {1961}, + key = {French (1961)}, + lgcode = {Wishram [wasc1239]} +} +@article{fricandradin1906, + author = {Fric, V. A., and P. Radin.}, + title = {Contributions to the Study of the Bororo Indians}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {36}, + pages = {382-406}, + year = {1906}, + key = {Fric and Radin (1906)}, + lgcode = {Bororo [boro1282]} +} +@book{fried1953, + author = {Fried, M.}, + title = {Fabric of Chinese Society}, + address = {N. Y.}, + year = {1953}, + key = {Fried (1953)}, + lgcode = {Chekiang [wuch1236]} +} +@book{friedlander1908, + author = {Friedlander, L.}, + title = {Roman Life and Manners Under the Early Empire}, + address = {London}, + year = {1908}, + key = {Friedlander (1908)}, + lgcode = {Ancient Romans [lati1261]} +} +@misc{friedrich1954, + author = {Friedrich, P. W.}, + title = {The Social Organization of a Ukrainian Village}, + year = {1954}, + howpublished = {Unpublished Manuscript}, + key = {Friedrich (1954)}, + lgcode = {Ukranians [east2270]} +} +@article{frikel1959, + author = {Frikel, P.}, + title = {Agricultura dos Indios Munduruku}, + journal = {Boletim do Museu Paraense Emílio Goeldi}, + volume = {4}, + pages = {1-35}, + year = {1959}, + key = {Frikel (1959)}, + lgcode = {Munduruku [mund1330]} +} +@book{friters1949, + author = {Friters, G. M.}, + title = {Outer Mongolia and Its International Position}, + address = {Baltimore}, + year = {1949}, + key = {Friters (1949)}, + lgcode = {Khalka [halh1238]} +} +@book{fritsch1872, + author = {Fritsch, G. T.}, + title = {Die Eingeborenen Sud-Afrika's}, + address = {Breslau}, + year = {1872}, + key = {Fritsch (1872)}, + lgcode = {/Xam [xamm1241]} +} +@article{froelich1949a, + author = {Froelich, J. C.}, + title = {Generalites sur les Kabre}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {11}, + pages = {77-105}, + year = {1949}, + key = {Froelich (1949a)}, + lgcode = {Kabre [kabi1261]} +} +@article{froelich1949b, + author = {Froelich, J. C.}, + title = {Les Konkomba}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {11}, + pages = {409-437}, + year = {1949}, + key = {Froelich (1949b)}, + lgcode = {Konkomba [konk1269]} +} +@book{froelichetal1963, + author = {Froelich, J. C. P. Alexandre, and R. Cornevin.}, + title = {Les populations du Nord-Togo}, + publisher = {Paris & London: Presses Universitaires de France; International African Inst. (IAI)}, + address = {Paris}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + volume = {10}, + year = {1963}, + glottolog_ref = {eballiso2009:53333}, + key = {Froelich et al. (1963)}, + lgcode = {Basari [ntch1242], Kabre [kabi1261], Konkomba [konk1269], Moba [moba1244], Tem [temm1241]} +} +@article{fromm1912, + author = {Fromm, P.}, + title = {Ufipa--Land und Leute}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {25}, + pages = {79-101}, + year = {1912}, + key = {Fromm (1912)}, + lgcode = {Fipa [fipa1238]} +} +@article{fuchs1956, + author = {Fuchs, P.}, + title = {Ueber die Tubbu von Tibesti}, + journal = {Archiv für Völkerkunde}, + volume = {11}, + pages = {43-66}, + year = {1956}, + key = {Fuchs (1956)}, + lgcode = {Teda [teda1241]} +} +@book{fuente1949, + author = {Fuente, J. de la.}, + title = {Yalagag: una villa zapoteca serrana}, + address = {Mexico}, + year = {1949}, + key = {Fuente (1949)}, + lgcode = {Zapotec [yala1267]} +} +@book{fuks1840, + author = {Fuks, A.}, + title = {Zapiski o chuvashah i cheremisah Kazanskoj gubemii (Notes on the Chuvash and Mari of the Kazanskaja Guberia)}, + address = {Kazan'}, + year = {1840}, + key = {Fuks (1840)}, + lgcode = {Chuvash [chuv1255]} +} +@article{fulop1955, + author = {Fulop, M.}, + title = {Notas sobre los terminos y el sistema de parentesco de los Tukano}, + journal = {Rev. Colomb. Antr.}, + address = {Bogotá}, + volume = {4}, + pages = {121-164}, + year = {1955}, + glottolog_ref = {fabreall2009ann:Tukano_tucano08}, + key = {Fulop (1955)}, + lgcode = {Tucano [tuca1252]} +} +@article{furerhaimendorf1943a, + author = {Fürer-Haimendorf, C. von.}, + title = {Avenues to Marriage Among the Bondos of Orissa}, + journal = {Man in India}, + volume = {23}, + pages = {158-172}, + year = {1943}, + key = {Fürer-Haimendorf (1943a)}, + lgcode = {Khond [kuii1252]} +} +@book{furerhaimendorf1943b, + author = {Fürer-Haimendorf, C. von.}, + title = {The Chenchus}, + publisher = {Macmillan}, + address = {London}, + series = {The Aboriginal Tribes of Hyderabad}, + volume = {1}, + year = {1943}, + key = {Fürer-Haimendorf (1943b)}, + lgcode = {Chenchu [chen1255]} +} +@book{furerhaimendorf1945, + author = {Fürer-Haimendorf, C. von.}, + title = {The Reddis of the Bison Hills}, + address = {London}, + year = {1945}, + key = {Fürer-Haimendorf (1945)}, + lgcode = {Reddi [mukh1238]} +} +@book{furerhaimendorf1964, + author = {Fürer-Haimendorf, C. von.}, + title = {The Sherpas of Nepal}, + address = {Berkeley and Los Angeles}, + year = {1964}, + key = {Fürer-Haimendorf (1964)}, + lgcode = {Sherpa [sher1255]} +} +@article{gaalon1939, + author = {Gaalon, R. de.}, + title = {Coutume touareg}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A.}, + volume = {10}, + pages = {217-237}, + year = {1939}, + key = {Gaalon (1939)}, + lgcode = {Udalan Tuareg [timb1263]} +} +@article{gabb1876, + author = {Gabb, W. M.}, + title = {On the Tribes and Languages of Costa Rica}, + journal = {Proceedings of the American Philosophic Society}, + volume = {14}, + pages = {483-602}, + year = {1876}, + key = {Gabb (1876)}, + lgcode = {Bribri [brib1243]} +} +@article{gaborydubourdeau1926, + author = {Gabory-Dubourdeau, P. M.}, + title = {Notice sur les coutumes des Tomas}, + journal = {Bull Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {9}, + pages = {288-475}, + year = {1926}, + key = {Gabory-Dubourdeau (1926)}, + lgcode = {Toma [toma1245]} +} +@book{gadd1965, + author = {Gadd, C. J.}, + title = {Hammurabi and the End of His Dynasty}, + address = {Cambridge}, + series = {Cambridge Ancient History}, + year = {1965}, + key = {Gadd (1965)}, + lgcode = {Babylonians [akka1240]}, + note = {rev. edit., fascicle 35} +} +@book{gaden1909, + author = {Gaden, Henri}, + title = {Essai de la grammaire de la langue baguirmienne}, + publisher = {Ernest Leroux}, + address = {Paris}, + year = {1909}, + url = {https://archive.org/details/rosettaproject_bmi_morsyn-1}, + key = {Gaden (1909)}, + lgcode = {Bagirmi [bagi1246]} +} +@incollection{gadzhieva1958, + author = {Gadzhieva, S. S.}, + title = {Kayakentskie Kumyki}, + series = {Trudy Instituta Etnografii, n. s., 46: Kavkaszkii. Etnograficheskii Sbornik, ed. M. O. Kosven, 2}, + pages = {5-90}, + year = {1958}, + key = {Gadzhieva (1958)}, + lgcode = {Kumyk [kumy1244]} +} +@book{gailey1965, + author = {Gailey, H. A.}, + title = {A History of the Gambia}, + address = {New York}, + year = {1965}, + key = {Gailey (1965)}, + lgcode = {Wolof [nucl1347]} +} +@book{gallardo1910, + author = {Gallardo, C. R.}, + title = {Los Onas}, + publisher = {Cabaut y Cía}, + address = {Buenos Aires}, + series = {Tierra del Fuego}, + year = {1910}, + glottolog_ref = {fabreall2009ann:Chon_selknam41}, + key = {Gallardo (1910)}, + lgcode = {Ona [onaa1245]} +} +@book{gambier1894, + author = {Gambier, J. W.}, + title = {The Guanches}, + series = {Ann. Rep. Smiths.}, + year = {1894}, + key = {Gambier (1894)}, + lgcode = {Guanche [guan1277]} +} +@book{gamble1957, + author = {Gamble, D. P.}, + title = {The Wolof of Senegambia}, + address = {London}, + year = {1957}, + key = {Gamble (1957)}, + lgcode = {Wolof [nucl1347]} +} +@book{gamitto1854, + author = {Gamitto, A. C. P.}, + title = {O Muata Cazembe}, + address = {Lisboa}, + year = {1854}, + key = {Gamitto (1854)}, + lgcode = {Luapula [luun1238]} +} +@book{gannandthompson1931, + author = {Gann, T. W. F., and J. E. Thompson.}, + title = {The History of the Maya}, + address = {New York}, + year = {1931}, + key = {Gann and Thompson (1931)}, + lgcode = {Yucatec Maya [yuca1254]} +} +@book{gapanovich1927, + author = {Gapanovich, I. I.}, + title = {Amgunskie tungusy i negidal'tsy}, + address = {Kharbin}, + year = {1927}, + key = {Gapanovich (1927)}, + lgcode = {Negidal [negi1245]} +} +@book{garcia1760, + author = {Garcia, B.}, + title = {Manual para administrar los santos sacramentos}, + publisher = {Rivera}, + address = {Mexico}, + year = {1760}, + key = {Garcia (1760)}, + lgcode = {Coahuilteco [coah1252]} +} +@article{gardner1897, + author = {Gardner, J. S.}, + title = {The Natives of Rotuma}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {27}, + pages = {396-435, 457-524}, + year = {1897}, + key = {Gardner (1897)}, + lgcode = {Rotumans [rotu1241]} +} +@phdthesis{gardner1965, + author = {Gardner, P. M.}, + title = {Ecology and social structure in refugee populations: The Paliyans of South India}, + school = {Department of Anthropology, University of Pennsylvania, Philadelphia}, + pages = {174}, + year = {1965}, + glottolog_ref = {hh:e:Gardner:Paliyans:1965}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Gardner (1965)}, + lgcode = {Paliyans [pali1274]} +} +@incollection{gardner1972, + author = {Gardner, P. M.}, + editor = {M. Bicchieri}, + title = {The Paliyans}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + publisher = {Holt, Rinehart & Winston}, + address = {New York}, + pages = {404-447}, + year = {1972}, + glottolog_ref = {hh:e:Gardner:Paliyans:1972}, + key = {Gardner (1972)}, + lgcode = {Paliyans [pali1274]} +} +@incollection{gardner1978, + author = {Gardner, W.}, + editor = {I. McBryde}, + title = {Productions and Resources of the Northern and Western Districts of New South Wales (1842-54)}, + booktitle = {Records of Past Times: Ethnohistorical Essays on the Culture and Ecology of the New England Tribes}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {49-246}, + year = {1978}, + key = {Gardner (1978)}, + lgcode = {Badjalang [midd1357]} +} +@incollection{gardner1988, + author = {Gardner, P. M.}, + editor = {T. Ingold, D. Riches, and J. Woodburn}, + title = {Pressures for Tamil Propriety in Paliyan Social Organization}, + booktitle = {History, Evolution and Social Change}, + publisher = {Berg}, + address = {Oxford}, + series = {Hunters and Gatherers}, + volume = {1}, + pages = {91-106}, + year = {1988}, + key = {Gardner (1988)}, + lgcode = {Paliyans [pali1274]} +} +@article{garfield1939, + author = {Garfield, Viola E.}, + title = {Tsimshian Clan and Society}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {7}, + pages = {167-340}, + year = {1939}, + glottolog_ref = {anla:TS928G1939}, + key = {Garfield (1939)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]} +} +@article{garfield1947, + author = {Garfield, Viola E.}, + title = {Historical Aspects of Tlingit Clans in Angoo, Alaska}, + journal = {American Anthropologist}, + volume = {49}, + pages = {438-452}, + year = {1947}, + key = {Garfield (1947)}, + lgcode = {North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@article{garfieldetal1951, + author = {Garfield, Viola E. and Paul S. Wingert and Marius Barbeau}, + title = {The Tsimshian: Their Arts ad Music}, + journal = {Publ. Amer. Ethn. Soc.}, + volume = {18}, + pages = {1-290}, + year = {1951}, + key = {Garfield et al. (1951)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]} +} +@incollection{gargettandhayden1991, + author = {Gargett, R., and B. Hayden}, + editor = {E. Kroll and D. Price}, + title = {Site Structure, Kinship and Sharing in Aboriginal Australia: Implications for Archaeology}, + booktitle = {The Interpretation of Archaeological Spatial Patterning}, + publisher = {Plenum Press}, + address = {New York}, + pages = {11-32}, + year = {1991}, + key = {Gargett and Hayden (1991)}, + lgcode = {Pintubi [pint1250]} +} +@book{garine1964, + author = {Garine, I. de.}, + title = {Les Massa du Cameroun}, + publisher = {Paris: Presses Universitaires de France}, + address = {Paris}, + year = {1964}, + glottolog_ref = {eballiso2009:17802}, + key = {Garine (1964)}, + lgcode = {Masa [masa1322]} +} +@article{garrod1946a, + author = {Garrod, O.}, + title = {The Nomadic Tribes of Persia Today}, + journal = {Journ. Roy. Cent. Asian Soc.}, + volume = {33}, + pages = {32-46}, + year = {1946}, + key = {Garrod (1946a)}, + lgcode = {Qashqui [qash1240]} +} +@article{garrod1946b, + author = {Garrod, O.}, + title = {The Qashqai Tribes of Fars}, + journal = {Journ. Roy. Cent. Asian Soc.}, + volume = {33}, + pages = {293-306}, + year = {1946}, + key = {Garrod (1946b)}, + lgcode = {Qashqui [qash1240]} +} +@article{garth1944, + author = {Garth, T. R.}, + title = {Kinship Terminology, Marriage Practices and Behavior Toward Kin Among the Atsugewi}, + journal = {American Anthropologist}, + volume = {46}, + pages = {348-361}, + year = {1944}, + key = {Garth (1944)}, + lgcode = {Atsugewi [atsu1245]} +} +@article{garth1953, + author = {Garth, T. R.}, + title = {Atsugewi Ethnography}, + journal = {Anth. Records}, + volume = {14}, + pages = {129-212}, + year = {1953}, + key = {Garth (1953)}, + lgcode = {Atsugewi [atsu1245]} +} +@article{garvan1931, + author = {Garvan, J. M.}, + title = {The Manobo of Mindanao}, + journal = {Mem. Nat. Acad. Sci.}, + publisher = {Washinton, D.C.: National Academy of Science}, + series = {National Academy of Science Memoirs}, + volume = {23}, + pages = {1-231}, + year = {1931}, + glottolog_ref = {hh:he:Garvan:Manobos}, + key = {Garvan (1931)}, + lgcode = {Manobo [agus1235]} +} +@book{gason1874, + author = {Gason, S.}, + title = {The Dieri Tribe}, + year = {1874}, + key = {Gason (1874)}, + lgcode = {Diyari [dier1241]}, + note = {Reprinted in J. Woods, ed., The Native Tribes of South Australia, Adelaide, 1879.} +} +@incollection{gason1879, + author = {Gason, S.}, + editor = {J. D. Woods}, + title = {The Dieyerie Tribe}, + booktitle = {The Native Tribes of South Australia}, + publisher = {E. S. Wigg and Son}, + address = {Adelaide}, + pages = {257-286}, + year = {1879}, + key = {Gason (1879)}, + lgcode = {Diyari [dier1241]} +} +@book{gatschet1890, + author = {Gatschet, A. S.}, + title = {The Klamath indians of Southwestern Oregon}, + publisher = {Washington: Gov. Print. Office}, + series = {Contributions to North American Ethnology}, + volume = {2, 2}, + pages = {711}, + year = {1890}, + glottolog_ref = {mpieva:Gatschet1890TheKlama}, + key = {Gatschet (1890)}, + lgcode = {Klamath [klam1254]} +} +@article{gatschet1891, + author = {Gatschet, A. A.}, + title = {The Karankawa Indians}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + volume = {1}, + pages = {ii, 5-103}, + year = {1891}, + key = {Gatschet (1891)}, + lgcode = {Karankawa [kara1289]} +} +@book{gaud1911, + author = {Gaud, F.}, + title = {Les Mandja}, + address = {Bruxelles}, + year = {1911}, + key = {Gaud (1911)}, + lgcode = {Mandja [manz1243]} +} +@book{gaudry1929, + author = {Gaudry, M.}, + title = {La femme cahouia de l'Aures}, + address = {Paris}, + year = {1929}, + key = {Gaudry (1929)}, + lgcode = {Shawiya [tach1249]} +} +@article{gaughwinandsullivan1984, + author = {Gaughwin, D., and H. Sullivan}, + title = {Aboriginal Boundaries and Movements in Western Port, Victoria}, + journal = {Aboriginal History}, + volume = {8}, + pages = {80-98}, + year = {1984}, + key = {Gaughwin and Sullivan (1984)}, + lgcode = {Bunurong [woiw1237]} +} +@article{gayton1930, + author = {Gayton, Ann H.}, + title = {Yokuts-Mono Chiefs and Shamans}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {24}, + pages = {361-420}, + year = {1930}, + key = {Gayton (1930)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]} +} +@incollection{gayton1936, + author = {Gayton, Ann H.}, + editor = {R. H. Lowie}, + title = {Estudillo Among the Yokuts}, + booktitle = {Essays in Anthropology presented to A. L. Kroeber}, + address = {Berkeley}, + pages = {67-85}, + year = {1936}, + key = {Gayton (1936)}, + lgcode = {Southern Valley Yokuts [vall1251], Wukchumni [tule1245]} +} +@article{gayton1945, + author = {Gayton, Ann H.}, + title = {Yokuts and Western Mono Social Organization}, + journal = {American Anthropologist}, + volume = {47}, + pages = {409-426}, + year = {1945}, + key = {Gayton (1945)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]} +} +@article{gayton1946, + author = {Gayton, Ann H.}, + title = {Culture-Environment Integration: External References in Yokuts Life}, + journal = {Southwestern Journal of Anthropology}, + volume = {2}, + pages = {252-268}, + year = {1946}, + url = {http://www.jstor.org/stable/3628717}, + key = {Gayton (1946)}, + lgcode = {Kings River Yokuts [sout2955], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Wukchumni [tule1245]} +} +@book{gayton1948a, + author = {Gayton, Ann H.}, + title = {Yokuts and Western Mono Ethnography. I. Tulare Lake, Southern Valley, and Central Foothill Yokuts}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {Anthropological Records}, + volume = {10}, + number = {1}, + pages = {1-302}, + year = {1948}, + key = {Gayton (1948a)}, + lgcode = {Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]}, + note = {The years 1885 to 1860 cover the youth span of my older informants, the years 1860 to 1830 the mid-span of their parents' lives, and 1830 to 1800 the mid-span of their grandparents' lives. The bulk of cultural detail recalled was seen, experienced, or heard about in the years 1840 to 1890 approximately; fieldwork 1925-28} +} +@misc{gayton1948b, + author = {Gayton, Ann H.}, + title = {Yokuts and Western Mono Ethnography. II. Northern Foothill Yokuts and Western Mono}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {Anthropological Records}, + volume = {10}, + number = {2}, + pages = {1-302}, + year = {1948}, + key = {Gayton (1948b)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245], Yakut [yaku1245]} +} +@article{gearing1962, + author = {Gearing, F.}, + title = {Priests and Warriors}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {93}, + pages = {1-124}, + year = {1962}, + key = {Gearing (1962)}, + lgcode = {Cherokee [cher1273]} +} +@article{geddes1946, + author = {Geddes, W. R. IV-10.}, + title = {The color sense of Fijian natives}, + journal = {British Journal of Psychology}, + volume = {37}, + pages = {30-36}, + year = {1946}, + key = {Geddes (1946)}, + lgcode = {Lau [laua1243]} +} +@misc{geertz1959a, + author = {Geertz, C.}, + title = {Balinese Religion in Transition}, + year = {1959}, + howpublished = {Manuscript}, + key = {Geertz (1959a)}, + lgcode = {Balinese [bali1278]} +} +@article{geertz1959b, + author = {Geertz, C.}, + title = {Form and Variation in Balinese Village Structure}, + journal = {American Anthropologist}, + volume = {61}, + pages = {991-1012}, + year = {1959}, + key = {Geertz (1959b)}, + lgcode = {Balinese [bali1278]} +} +@book{geertz1960, + author = {Geertz, C.}, + title = {The Religion of Java}, + address = {Chicago}, + year = {1960}, + key = {Geertz (1960)}, + lgcode = {Javanese [java1254]} +} +@book{geertz1961, + author = {Geertz, H.}, + title = {The Javanese Family}, + address = {New York}, + year = {1961}, + key = {Geertz (1961)}, + lgcode = {Javanese [java1254]} +} +@book{geertz1963, + author = {Geertz, C.}, + title = {Peddlers and Princes}, + address = {Chicago}, + year = {1963}, + key = {Geertz (1963)}, + lgcode = {Balinese [bali1278], Javanese [java1254]} +} +@book{geertz1965, + author = {Geertz, C.}, + title = {The Social History of an Indonesian Town}, + address = {Cambridge}, + year = {1965}, + key = {Geertz (1965)}, + lgcode = {Javanese [java1254]} +} +@incollection{geertz1967, + author = {Geertz, C.}, + editor = {Koentjaraningrat}, + title = {Tihingan}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {210-293}, + year = {1967}, + key = {Geertz (1967)}, + lgcode = {Balinese [bali1278]} +} +@misc{geertzandgeertz1959, + author = {Geertz, C., and H. Geertz.}, + title = {The Balinese Kinship System}, + year = {1959}, + howpublished = {Manuscript}, + key = {Geertz and Geertz (1959)}, + lgcode = {Balinese [bali1278]} +} +@article{geoje1910, + author = {Geoje, C. H. de.}, + title = {Beitrage zur Volkerkunde von Surinam}, + journal = {Int. Arch. Ethnog.}, + volume = {19}, + pages = {1-28}, + year = {1910}, + key = {Geoje (1910)}, + lgcode = {Lokono [araw1276]} +} +@book{germann1933, + author = {Germann, P.}, + title = {Die Volkerstamme im Norden von Liberia}, + publisher = {Leipzig: R. Voigtlanders Verlag}, + address = {Leipzig}, + year = {1933}, + glottolog_ref = {eballiso2009:16606}, + key = {Germann (1933)}, + lgcode = {Gbande [band1352]} +} +@article{geyskes1954, + author = {Geyskes, D. C.}, + title = {De landbouw bij de Bosnegers van de Marowijne}, + journal = {West-Indische Gids}, + volume = {35}, + pages = {135-153}, + year = {1954}, + key = {Geyskes (1954)}, + lgcode = {Ndyuka [ndyu1242]} +} +@article{ghawi1924, + author = {Ghawi, J. B.}, + title = {Notes on the Law and Custom of the Jur Tribe}, + journal = {Sudan Notes Rec.}, + volume = {7}, + number = {ii}, + pages = {71-81}, + year = {1924}, + key = {Ghawi (1924)}, + lgcode = {Jur [luwo1239]} +} +@book{ghisletti1954, + author = {Ghisletti, L. V.}, + title = {Los Mwiskas}, + address = {Bogota}, + year = {1954}, + key = {Ghisletti (1954)}, + lgcode = {Muisca [chib1270]} +} +@article{gibbs1963, + author = {Gibbs, J. L.}, + title = {Marital Instability Among the Kpelle}, + journal = {American Anthropologist}, + volume = {65}, + pages = {552-573}, + year = {1963}, + key = {Gibbs (1963)}, + lgcode = {Kpelle [libe1247]} +} +@incollection{gibbs1965, + author = {Gibbs, J. L.}, + editor = {J. L. Gibbs}, + title = {The Kpelle of Liberia}, + booktitle = {Peoples of Africa}, + publisher = {New York: Holt, Rinehart & Winston}, + address = {New York}, + pages = {197-240}, + year = {1965}, + glottolog_ref = {hh:e:Gibbs:Kpelle}, + key = {Gibbs (1965)}, + lgcode = {Kpelle [libe1247]} +} +@article{giddings1956, + author = {Giddings, J. L.}, + title = {Forest Eskimos: An Ethnographic Sketch of Kobuk River People in the 1880's}, + journal = {University Museum Bulletin (Philadelphia)}, + volume = {20}, + number = {2}, + pages = {1-55}, + year = {1956}, + key = {Giddings (1956)}, + lgcode = {Kobuk Inuit [kobu1239]} +} +@misc{giddingsperscomm1963, + author = {Giddings, J. L.}, + year = {1963}, + howpublished = {pers. conmm.}, + key = {Giddings pers. comm. (1963)}, + lgcode = {Kobuk Inuit [kobu1239]} +} +@article{gifford1916, + author = {Gifford, E. W.}, + title = {Miwok Moieties}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {12}, + number = {4}, + pages = {139-194}, + year = {1916}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp012-006.pdf}, + key = {Gifford (1916)}, + lgcode = {Central Sierra Miwok [cent2140]} +} +@article{gifford1917, + author = {Gifford, E. W.}, + title = {Tubatulabal and Kawaiisu Kinship Terms}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Berkeley: Univ. of California Press}, + address = {Berkeley}, + series = {University of California publications in American archaeology and ethnology}, + volume = {12}, + pages = {219-248}, + year = {1917}, + glottolog_ref = {mpieva:Gifford1917Tubatula}, + key = {Gifford (1917)}, + lgcode = {Kawaiisu [kawa1283], Southern Paiute (Kaibab) [sout2969], Tübalulabal [tuba1278], Uintah Ute [utee1244]} +} +@book{gifford1918, + author = {Gifford, E. W.}, + title = {Clans and Moieties in Southern California}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {14}, + year = {1918}, + key = {Gifford (1918)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cupeño [cupe1243], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253], Serrano [serr1255]} +} +@article{gifford1922, + author = {Gifford, E. W.}, + title = {California Kinship Terminologies}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Univ.of California Press}, + address = {Berkeley, Calif.}, + volume = {18}, + pages = {1-285}, + year = {1922}, + glottolog_ref = {mpieva:Gifford1922Californ}, + key = {Gifford (1922)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cupeño [cupe1243], Huchnom [yuki1243], Karuk [karo1304], Kumeyaay [kumi1248], Lake Miwok [lake1258], Lassik [wail1244], Maidu [nort2952], Northern Pomo [nort2966], Serrano [serr1255], Southern Pomo [sout2984], Wappo [wapp1239], Western Mono [mono1275], Wintu [nucl1651], Wiyot [wiyo1248], Yuki [yuki1243]} +} +@article{gifford1923, + author = {Gifford, Edward W.}, + title = {Pomo Lands on Clear Lake}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {77-92}, + year = {1923}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp020-006.pdf}, + key = {Gifford (1923)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@article{gifford1926a, + author = {Gifford, E. W.}, + title = {Clear Lake Pomo Society}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Univ.of California Press}, + address = {Berkeley}, + volume = {18}, + number = {2}, + pages = {287-390}, + year = {1926}, + key = {Gifford (1926a)}, + lgcode = {Clear Lake Pomo [east2545], Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@book{gifford1926b, + author = {Gifford, E. W.}, + title = {California Anthropometry}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {22}, + year = {1926}, + key = {Gifford (1926b)}, + lgcode = {Achumawi [achu1247], Atsugewi [atsu1245], Cahuilla (Desert) [cahu1264], Central Sierra Miwok [cent2140], Cupeño [cupe1243], Eastern Mono [mono1275], Eastern Pomo [east2545], Hupa [hupa1239], Klamath [klam1254], Luiseño [luis1253], Maidu [nort2952], Modoc [klam1254], Nomlaki [noml1242], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Pomo [nort2966], Patwin [patw1250], Salinan [sali1253], Serrano [serr1255], Southern Valley Yokuts [vall1251], Wadatkuht [sout2967], Washo [wash1253], Wiyot [wiyo1248], Yana [yana1271], Yuki [yuki1243], Yurok [yuro1248]} +} +@article{gifford1926c, + author = {Gifford, E. W.}, + title = {Miwok Lineages and the Political Unit in Aboriginal California}, + journal = {American Anthropologist}, + volume = {28}, + pages = {389-401}, + year = {1926}, + key = {Gifford (1926c)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{gifford1926d, + author = {Gifford, Edward W.}, + title = {Miwok Cults}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {18}, + pages = {391-408}, + year = {1926}, + key = {Gifford, 1926d}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{gifford1927, + author = {Gifford, Edward W.}, + title = {Southern Maidu Religious Ceremonies}, + journal = {American Anthropologist}, + volume = {29}, + pages = {214-257}, + year = {1927}, + key = {Gifford (1927)}, + lgcode = {Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244]} +} +@article{gifford1928, + author = {Gifford, E. W.}, + title = {Notes on Central Pomo and Northern Yana Society}, + journal = {American Anthropologist}, + volume = {30}, + pages = {675-684}, + year = {1928}, + key = {Gifford (1928)}, + lgcode = {Yana [yana1271]} +} +@article{gifford1929, + author = {Gifford, E. W.}, + title = {Tongan Society}, + journal = {Bull. Bishop Mus.}, + volume = {61}, + pages = {1-366}, + year = {1929}, + key = {Gifford (1929)}, + lgcode = {Tongans [tong1325]} +} +@article{gifford1931, + author = {Gifford, E. W.}, + title = {The Kamia of Imperial Valley}, + journal = {Bull. Bur. Amer. Ethn.}, + volume = {97}, + pages = {1-88}, + year = {1931}, + key = {Gifford (1931)}, + lgcode = {Kamia [kumi1248]} +} +@article{gifford1932a, + author = {Gifford, E. W.}, + title = {The Southeastern Yavapai}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {29}, + pages = {177-252}, + year = {1932}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp029-004.pdf}, + key = {Gifford (1932a)}, + lgcode = {Kewyipaya [yava1252], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]} +} +@article{gifford1932b, + author = {Gifford, E. W.}, + title = {The Northfork Mono}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {31}, + number = {2}, + pages = {15-65}, + year = {1932}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp031-003.pdf}, + key = {Gifford (1932b)}, + lgcode = {Kings River Western Mono [mono1275], North Fork Mono [mono1275], Western Mono [mono1275]} +} +@article{gifford1933, + author = {Gifford, E. W.}, + title = {The Cocopa}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {31}, + pages = {257-334}, + year = {1933}, + key = {Gifford (1933)}, + lgcode = {Cocopa [coco1261]} +} +@article{gifford1936, + author = {Gifford, E. W.}, + title = {Northeastern and Western Yavapai}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {34}, + pages = {247-354}, + year = {1936}, + key = {Gifford (1936)}, + lgcode = {Tolkepaya [yava1252], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]} +} +@article{gifford1939, + author = {Gifford, E. W.}, + title = {The Coast Yuki}, + journal = {Anthropos}, + volume = {34}, + pages = {292-375}, + year = {1939}, + key = {Gifford (1939)}, + lgcode = {Coast Yuki [yuki1243]} +} +@article{gifford1940, + author = {Gifford, E. W.}, + title = {Apache-Pueblo}, + journal = {Anth. Rec.}, + volume = {4}, + pages = {1-207}, + year = {1940}, + key = {Gifford (1940)}, + lgcode = {Chiricahua [mesc1238], Chiricahua (Huachuca) [mesc1238], Chiricahua (Warm Springs) [mesc1238], Jicarilla [jica1244], Lipan Apache [lipa1241], Mescalero [mesc1238], Santa Ana [sant1426], Southern Ute [utee1244], Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615], Zuni [zuni1245]} +} +@article{gifford1944, + author = {Gifford, Edward W.}, + title = {Miwok Lineages}, + journal = {American Anthropologist}, + volume = {46}, + pages = {376-381}, + year = {1944}, + key = {Gifford (1944)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{gifford1955, + author = {Gifford, E. W.}, + title = {Central Miwok Ceremonies}, + journal = {Anth. Rec.}, + volume = {14}, + pages = {261-318}, + year = {1955}, + key = {Gifford (1955)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{giffordandkroeber1936, + author = {Gifford, E. W., and S. Klimek.}, + title = {Yana}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {37}, + pages = {71-100}, + year = {1936}, + key = {Gifford and Kroeber (1936)}, + lgcode = {Yana [yana1271]} +} +@article{giffordandkroeber1937a, + author = {Gifford, E. W., and A. I. Kroeber.}, + title = {Pomo}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {37}, + pages = {117-254}, + year = {1937}, + key = {Gifford and Kroeber (1937a)}, + lgcode = {Eastern Pomo [east2545], Lake Miwok [lake1258], Northern Pomo [nort2966], Patwin [patw1250], Southern Pomo [sout2984]} +} +@article{giffordandkroeber1937b, + author = {Gifford, E. W., and A. L. Kroeber.}, + title = {Culture Element Distributions IV: Pomo}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {37}, + pages = {117-254}, + year = {1937}, + key = {Gifford and Kroeber (1937b)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{giffordandlowie1928, + author = {Gifford, E. W. and Robert H. Lowie}, + title = {Notes on the Akwa'ala Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {23}, + pages = {339-352}, + year = {1928}, + key = {Gifford and Lowie (1928)}, + lgcode = {Akwa’ala [paip1241]} +} +@incollection{gilberg1984, + author = {Gilberg, R.}, + editor = {D. Damas}, + title = {Polar Eskimo}, + booktitle = {Arctic,}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {577-594}, + year = {1984}, + glottolog_ref = {hh:e:Gilberg:Polar-Eskimo}, + key = {Gilberg (1984)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@incollection{gilbert1937, + author = {Gilbert, W. H.}, + editor = {Eggan}, + title = {Eastern Cherokee Social Organization}, + booktitle = {Social Organization of North American Tribes}, + address = {Chicago}, + pages = {285-338}, + year = {1937}, + key = {Gilbert (1937)}, + lgcode = {Cherokee [cher1273]} +} +@article{gilbert1943, + author = {Gilbert, William H., Jr.}, + title = {The Eastern Cherokees}, + journal = {Bulletin of the Bureau of American Ethnology}, + volume = {133}, + pages = {227-338}, + year = {1943}, + key = {Gilbert (1943)}, + lgcode = {Cherokee [cher1273]} +} +@book{gildelgado1949, + author = {Gil-Delgado, C. C.}, + title = {Notas para un estudio antropologico y etnologico del Bubi de Fernando Poo}, + address = {Madrid}, + year = {1949}, + key = {Gil-Delgado (1949)}, + lgcode = {Bubi [bube1242]} +} +@article{gilg1965, + author = {Gilg, A.}, + title = {The Seri Indians in 1692}, + journal = {Arizona and the West}, + volume = {7}, + number = {1}, + pages = {33-56}, + year = {1965}, + key = {Gilg (1965)}, + lgcode = {Seri [seri1257]}, + note = {translated and edited by C. C. DiPeso and D. S. Matson} +} +@incollection{gillespie1981, + author = {Gillespie, B. C.}, + editor = {Helm, J.}, + title = {Mountain Indians}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washinton D. C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {326-337}, + year = {1981}, + glottolog_ref = {hh:e:Gillespie:Mountain-Indians}, + key = {Gillespie (1981)}, + lgcode = {Mountain Dene [nort2942]} +} +@article{gilliard1925, + author = {Gilliard, L.}, + title = {Etude de la societe indigene}, + journal = {Congo}, + volume = {6}, + pages = {i, 39-76}, + year = {1925}, + key = {Gilliard (1925)}, + lgcode = {Ekonda [ekon1238]} +} +@book{gillin1936, + author = {Gillin, J. P.}, + title = {The Barama river Caribs of British Guiana}, + address = {Cambridge}, + series = {Papers of the Peabody Museum of Archeology and Ethnology, Harvard University}, + volume = {14}, + number = {ii}, + pages = {1-274}, + year = {1936}, + glottolog_ref = {fabreall2009ann:Caribe_kari'na057}, + key = {Gillin (1936)}, + lgcode = {Barama River Carib [mura1272]} +} +@article{gillin1948, + author = {Gillin, J. P.}, + title = {Tribes of the Guianas}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + address = {Washington 1946-1950}, + volume = {3}, + pages = {799-860}, + year = {1948}, + glottolog_ref = {fabreall2009ann:Caribe_chikena0}, + key = {Gillin (1948)}, + lgcode = {Barama River Carib [mura1272]} +} +@article{gillin1951, + author = {Gillin, J. P.}, + title = {The Culture of Security in San Carlos}, + journal = {Publ. Middle Amer. Res. Inst., Tulane Univ.}, + volume = {16}, + pages = {1-128}, + year = {1951}, + key = {Gillin (1951)}, + lgcode = {Poqomam [poqo1253]} +} +@misc{gillinnd, + author = {Gillin, J. P.}, + howpublished = {Personal communication}, + key = {Gillin (nd)}, + lgcode = {Barama River Carib [mura1272]} +} +@article{gilmore1927, + author = {Gilmore, M. R.}, + title = {Some Notes on Arikara Tribal Organization}, + journal = {Indian Notes}, + volume = {4}, + pages = {332-350}, + year = {1927}, + key = {Gilmore (1927)}, + lgcode = {Arikara [arik1262]} +} +@book{ginsburgandroberts1958, + author = {Ginsburg, N., and C. F. Roberts, Jr.}, + title = {Malaya}, + address = {Seattle}, + year = {1958}, + key = {Ginsburg and Roberts (1958)}, + lgcode = {Malays [mala1479]} +} +@book{girard1904, + author = {Girard, H.}, + title = {Les tribes sauvages du Haut-Tonkin: Mans et Meos}, + address = {Paris}, + year = {1904}, + key = {Girard (1904)}, + lgcode = {Man [kimm1245]} +} +@article{girfanova2000, + author = {Girfanova, A. H.}, + title = {Udegejskie terminy rodstva (Udihe Kinship Terminology)}, + journal = {Algebra rodstva}, + volume = {5}, + pages = {271-77}, + year = {2000}, + key = {Girfanova (2000)}, + lgcode = {Udihe [udih1248]} +} +@article{girling1960, + author = {Girling, F. K.}, + title = {The Acholi of Uganda}, + journal = {Colonial Research Studies}, + publisher = {London: H.M. Stationary Office}, + address = {London}, + series = {Colonial research studies}, + volume = {30}, + pages = {1-238}, + year = {1960}, + glottolog_ref = {eballiso2009:17156}, + key = {Girling (1960)}, + lgcode = {Acholi [dhop1238]} +} +@book{glacken1955, + author = {Glacken, C. J.}, + title = {The Great Loochoo}, + address = {Berkeley}, + year = {1955}, + key = {Glacken (1955)}, + lgcode = {Okinawans [cent2126]} +} +@article{gladwin1948, + author = {Gladwin, T.}, + title = {Comanche Kin Behavior}, + journal = {American Anthropologist}, + volume = {50}, + pages = {73-94}, + year = {1948}, + key = {Gladwin (1948)}, + lgcode = {Comanche [coma1245]} +} +@article{gladwinandsarason1953, + author = {Gladwin, T., and S. B. Sarason.}, + title = {Truk:Man in Paradise}, + journal = {Viking Fund Publications in Anthropology}, + volume = {20}, + pages = {1-655}, + year = {1953}, + key = {Gladwin and Sarason (1953)}, + lgcode = {Trukese [chuu1238]} +} +@book{glover1927, + author = {Glover, T. R.}, + title = {Conflict of Religions in the Early Roman Empire}, + address = {London}, + year = {1927}, + key = {Glover (1927)}, + lgcode = {Ancient Romans [lati1261]} +} +@incollection{gluckman1940, + author = {Gluckman, M.}, + editor = {Fortes and Evans-Pritchard}, + title = {The Kingdom of the Zulu in South Africa}, + booktitle = {African Political Systems}, + address = {Oxford}, + pages = {25-55}, + year = {1940}, + key = {Gluckman (1940)}, + lgcode = {Zulu [zulu1248]} +} +@book{gluckman1941, + author = {Gluckman, M.}, + title = {Economy of the Central Barotse Plain}, + series = {Rhodes-Livingstone Papers}, + volume = {7}, + year = {1941}, + key = {Gluckman (1941)}, + lgcode = {Lozi [lozi1239]} +} +@incollection{gluckman1950, + author = {Gluckman, M.}, + editor = {Radcliffe-Brown and Forde}, + title = {Kinship and Marriage Among the Lozi of Northern Rhodesia and the Zulu of Natal}, + booktitle = {African Systems of Kinship and Marriage}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + pages = {166-206}, + year = {1950}, + glottolog_ref = {eballiso2009:44745}, + key = {Gluckman (1950)}, + lgcode = {Lozi [lozi1239], Zulu [zulu1248]} +} +@incollection{gluckman1951, + author = {Gluckman, M.}, + editor = {E. Colson and M. Gluckman}, + title = {The Lozi of Barotseland}, + booktitle = {Seven Tribes of British Central Africa}, + publisher = {Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {London}, + pages = {1-93}, + year = {1951}, + glottolog_ref = {eballiso2009:27123}, + key = {Gluckman (1951)}, + lgcode = {Lozi [lozi1239]} +} +@book{gluckman1965, + author = {Gluckman, Max}, + title = {The Judicial Process among the Barotse}, + year = {1965}, + key = {Gluckman (1965)}, + lgcode = {Lozi [lozi1239]} +} +@misc{gluckman1972, + author = {Gluckman, M.}, + title = {The Ideas in Barotse Jurisprudence}, + address = {Manchester}, + year = {1972}, + key = {Gluckman (1972)}, + lgcode = {Lozi [lozi1239]}, + note = {1st ed. 1965} +} +@article{gmann1953, + author = {gmann, J. J.}, + title = {Social Organization of the Attawapiskat Cree Indians}, + journal = {Anthropos}, + volume = {47}, + pages = {809-816}, + year = {1953}, + key = {gmann (1953)}, + lgcode = {Attawapiskat Cree [swam1239]} +} +@article{goddard1903, + author = {Goddard, P. E.}, + title = {Life and Culture of the Hupa}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {1}, + pages = {1-88}, + year = {1903}, + key = {Goddard (1903)}, + lgcode = {Hupa [hupa1239]} +} +@article{goddard1904, + author = {Goddard, P. E.}, + title = {Hupa Texts}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {1}, + number = {2}, + pages = {89-378}, + year = {1904}, + glottolog_ref = {wals:2151}, + key = {Goddard (1904)}, + lgcode = {Hupa [hupa1239]} +} +@article{goddard1916, + author = {Goddard, P. E.}, + title = {The Beaver Indians}, + journal = {Anthropological Papers}, + publisher = {American Museum of Natural History}, + address = {New York}, + volume = {10}, + number = {4}, + pages = {201-293}, + year = {1916}, + key = {Goddard (1916)}, + lgcode = {Beaver [beav1236]} +} +@article{goddard1923, + author = {Goddard, P. E.}, + title = {Habitat of the Wailaki}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Berkeley and Los Angeles: University of California Press}, + address = {Berkeley and Los Angeles}, + volume = {20}, + pages = {95-109}, + year = {1923}, + glottolog_ref = {hh:e:Goddard:Wailaki}, + key = {Goddard (1923)}, + lgcode = {Sinkyone [wail1244]} +} +@article{goddard1973, + author = {Goddard, A.D.}, + title = {Changing Family Structures Among the Rural Hausa}, + journal = {Africa}, + volume = {43}, + pages = {207-218}, + year = {1973}, + key = {Goddard (1973)}, + lgcode = {Zazzagawa Hausa [araw1280]} +} +@incollection{goethals1967, + author = {Goethals, P. R.}, + editor = {Koentjaraningrat}, + title = {Rarak: A Swidden Village of West Sumbawa}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {30-62}, + year = {1967}, + key = {Goethals (1967)}, + lgcode = {Sumbawanese [sumb1241]} +} +@incollection{gogginandsturtevant1964, + author = {Goggin, J. M., and W. C. Sturtevant}, + editor = {W. H. Goodenough}, + title = {The Calusa: A Stratified, Nonagricultural Society (with Notes on Sibling Marriage)}, + booktitle = {Explorations in Cultural Antirippology: Essays in Honor of George Peter Murdock}, + publisher = {McGraw-Hill}, + address = {New York}, + pages = {179-219}, + year = {1964}, + key = {Goggin and Sturtevant (1964)}, + lgcode = {Calusa [calu1239]} +} +@book{goichon1927, + author = {Goichon, M.}, + title = {La vie feminine au Mzab}, + address = {Paris}, + year = {1927}, + key = {Goichon (1927)}, + lgcode = {Mzab [tumz1238]} +} +@article{goldenweiser191213, + author = {Goldenweiser, A. A.}, + title = {On Iroquois Work}, + journal = {Summ. Rep. (Canada) Geol. Surv., Dep. Mines}, + volume = {1912; 1913}, + pages = {464-475; 365-372}, + year = {1912-13}, + key = {Goldenweiser (1912-13)}, + lgcode = {Seneca [sene1264]} +} +@book{golder192225, + author = {Golder, F. A.}, + title = {Bering's Voyages. 2v}, + address = {New York}, + year = {1922-25}, + key = {Golder (1922-25)}, + lgcode = {Aleut [east2533]} +} +@article{goldfrank1927, + author = {Goldfrank, E. S.}, + title = {The Social and Ceremonial Organization of Cochiti}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {33}, + pages = {1-129}, + year = {1927}, + key = {Goldfrank (1927)}, + lgcode = {Cochiti [coch1273]} +} +@article{goldfrank1943, + author = {Goldfrank, Esther}, + title = {Historic Change and Social Character: A Study of the Teton Dakota}, + journal = {American Anthropologist}, + volume = {45}, + pages = {67-83}, + year = {1943}, + key = {Goldfrank (1943)}, + lgcode = {Teton [lako1247]} +} +@article{goldfrank1945a, + author = {Goldfrank, E. S.}, + title = {Changing Configurations in the Social Organization of a Blackfoot Tribe}, + journal = {Monogr. Amer. Ethn. Soc.}, + volume = {7}, + pages = {1-73}, + year = {1945}, + key = {Goldfrank (1945a)}, + lgcode = {Kainai [bloo1239]} +} +@article{goldfrank1945b, + author = {Goldfrank, E. S.}, + title = {Irrigation Agriculture and Navaho Community Leadership}, + journal = {American Anthropologist}, + volume = {47}, + pages = {262-277}, + year = {1945}, + key = {Goldfrank (1945b)}, + lgcode = {Navajo [nava1243]} +} +@incollection{goldman1937, + author = {Goldman, Irving}, + key = {Goldman (1937)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@incollection{goldman1937a, + author = {Goldman, Irving}, + editor = {Margaret Mead}, + title = {The Kwakiutl Indians of Vancouver Island}, + booktitle = {Cooperation and Competition among Primitive Peoples}, + publisher = {McGraw-Hill}, + address = {New York}, + pages = {180-209}, + year = {1937}, + key = {Goldman (1937a)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@incollection{goldman1937b, + author = {Goldman, Irving}, + editor = {Margaret Mead}, + title = {The Zuni Indians of New Mexico}, + booktitle = {Cooperation and Competition among Primitive Peoples}, + publisher = {McGraw-Hill}, + address = {New York}, + pages = {313-353}, + year = {1937}, + key = {Goldman (1937b)}, + lgcode = {Zuni [zuni1245]} +} +@incollection{goldman1940, + author = {Goldman, Irving}, + editor = {R. Linton}, + title = {The Alkatcho Carrier of British Columbia}, + booktitle = {Acculturation in Seven American Indian Tribes}, + publisher = {D. Appleton-Century}, + address = {New York}, + pages = {333-386}, + year = {1940}, + key = {Goldman (1940)}, + lgcode = {Achumawi [achu1247], Alkatcho [sout2958], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@article{goldman1941, + author = {Goldman, I.}, + title = {The Alkatcho Carrier}, + journal = {American Anthropologist}, + volume = {43}, + pages = {396-418}, + year = {1941}, + key = {Goldman (1941)}, + lgcode = {Achumawi [achu1247], Alkatcho [sout2958], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@article{goldman1948, + author = {Goldman, I.}, + title = {Tribes of the Uaupés-Caquetá region}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + address = {Washington 1946-1950}, + volume = {3}, + pages = {763-798}, + year = {1948}, + glottolog_ref = {fabreall2009ann:Arawak_baniva03}, + key = {Goldman (1948)}, + lgcode = {Cubeo [cube1242]} +} +@article{goldman1963, + author = {Goldman, I.}, + title = {The Cubeo Indians}, + journal = {Illinois Studies in Anthropology}, + volume = {2}, + pages = {1-305}, + year = {1963}, + key = {Goldman (1963)}, + lgcode = {Cubeo [cube1242]}, + note = {field research 1939-40} +} +@article{goldschmidt1948, + author = {Goldschmidt, Walter R.}, + title = {Social Organization in Native California and the Origin of Clans}, + journal = {American Anthropologist}, + volume = {50}, + pages = {444-456}, + year = {1948}, + key = {Goldschmidt (1948)}, + lgcode = {Nomlaki [noml1242]} +} +@article{goldschmidt1951, + author = {Goldschmidt, Walter R.}, + title = {Nomlaki Ethnography}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {42}, + pages = {303-443}, + year = {1951}, + key = {Goldschmidt (1951)}, + lgcode = {Nomlaki [noml1242]} +} +@article{goldschmidtetal1940, + author = {Goldschmidt, Walter R., and Harold E. Driver}, + title = {The Hupa White Deerskin Dance}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {35}, + pages = {103-42}, + year = {1940}, + key = {Goldschmidt et al. (1940)}, + lgcode = {Hupa [hupa1239]} +} +@misc{goldschmidtperscomm1966, + author = {Goldschmidt, Walter R.}, + year = {1966}, + howpublished = {pers. comm.}, + key = {Goldschmidt pers. comm. (1966)}, + lgcode = {Nomlaki [noml1242]} +} +@article{goldstein1934, + author = {Goldstein, M. S.}, + title = {Anthropometry of the Comanches}, + journal = {American Journal of Physical Anthropology}, + volume = {19}, + pages = {289-319}, + year = {1934}, + key = {Goldstein (1934)}, + lgcode = {Comanche [coma1245]} +} +@book{gomes1911, + author = {Gomes, E. H.}, + title = {Seventeen Years Among the Sea Dyaks of Borneo}, + address = {London}, + year = {1911}, + key = {Gomes (1911)}, + lgcode = {Iban [iban1264]} +} +@article{gomes1946, + author = {Gomes, Barbosa, O. C.}, + title = {Breve noticia dos caracteres etnicos dos indigenas da tribo BiAfada}, + journal = {Bol. Cultural Guine Port.}, + volume = {1}, + pages = {205-274}, + year = {1946}, + glottolog_ref = {hh:ew:Gomes:Biafada}, + key = {Gomes (1946)}, + lgcode = {Biafada [biaf1240]} +} +@inproceedings{goni1988, + author = {Goni, R.A.}, + title = {Arqueologia de momentos tardios en el Parque Nacional Perito Moreno (Santa Cruz, Argentina)}, + booktitle = {Precirculados de las Ponencias Cientificas presentada a los Simposios del IX Congreso nacional de Arquelogia Argentina}, + publisher = {Universidad de Buenos Aires}, + address = {Buenos Aires}, + pages = {140-151}, + year = {1988}, + key = {Goni (1988)}, + lgcode = {Tehuelche [tehu1242]} +} +@phdthesis{goodale1959, + author = {Goodale, J. C.}, + title = {The Tiwi Women of Melville Island}, + school = {University of Pennsylvania}, + year = {1959}, + key = {Goodale (1959)}, + lgcode = {Tiwi [tiwi1244]} +} +@article{goodale1960, + author = {Goodale, J. C.}, + title = {Sketches of Tiwi Children}, + journal = {Expedition}, + volume = {2}, + number = {4}, + pages = {4-13}, + year = {1960}, + key = {Goodale (1960)}, + lgcode = {Tiwi [tiwi1244]} +} +@article{goodale1962, + author = {Goodale, J. C.}, + title = {Marriage Contacts among the Tiwi}, + journal = {Ethnology}, + volume = {1}, + pages = {452-466}, + year = {1962}, + key = {Goodale (1962)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{goodale1971, + author = {Goodale, J. C.}, + title = {Tiwi Wives. A Study of the Women of Melville Island, North Australia}, + publisher = {University of Washington Press}, + address = {Seattle}, + year = {1971}, + key = {Goodale (1971)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{goodenough1949, + author = {Goodenough, W. H.}, + title = {Property, Kin, and Community on Truk}, + address = {New Haven}, + series = {Yale University Publications in Anthropology}, + volume = {46}, + pages = {1-192}, + year = {1949}, + key = {Goodenough (1949)}, + lgcode = {Trukese [chuu1238]} +} +@misc{goodenough1951a, + author = {Goodenough, W. H.}, + title = {Notes on the Bwaidoga People}, + year = {1951}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1951a)}, + lgcode = {Bwaidoga [bwai1242]} +} +@misc{goodenough1951b, + author = {Goodenough, W. H.}, + title = {Progress Report on Ethonographic Phase of Onotoa Project}, + year = {1951}, + howpublished = {Washington (mimeographed)}, + key = {Goodenough (1951b)}, + lgcode = {Gilbert Onotoa [nuii1237]} +} +@article{goodenough1952, + author = {Goodenough, W. H.}, + title = {Ethnological Reconnaisance in New Guinea}, + journal = {University (of Pennsylvania) Museum Bull.}, + volume = {17}, + pages = {5-37}, + year = {1952}, + key = {Goodenough (1952)}, + lgcode = {Molima [moli1248]} +} +@article{goodenough1953, + author = {Goodenough, W. H.}, + title = {Ethnographic Notes on the Mae People}, + journal = {Southw. Journ. Anth.}, + volume = {9}, + pages = {29-44}, + year = {1953}, + key = {Goodenough (1953)}, + lgcode = {Enga [enga1252]} +} +@misc{goodenough1954a, + author = {Goodenough, W. H.}, + title = {Notes on the Ethnography of the Bakovi Tribe}, + year = {1954}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1954a)}, + lgcode = {Bakovi [bola1250]} +} +@misc{goodenough1954b, + author = {Goodenough, W. H.}, + title = {Notes on the Ethnography of the Koobe}, + year = {1954}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1954b)}, + lgcode = {Kombe [mudu1242]} +} +@article{goodenough1955, + author = {Goodenough, W. H.}, + title = {A Problem in Malayo-Polynesian Social Organization}, + journal = {American Anthropologist}, + volume = {57}, + pages = {71-83}, + year = {1955}, + key = {Goodenough (1955)}, + lgcode = {Gilbert Onotoa [nuii1237]} +} +@article{goodenough1962, + author = {Goodenough, W. H.}, + title = {Kindred and Hamlet in Lakalai, New Brittain}, + journal = {Ethnology}, + volume = {1}, + pages = {5-12}, + year = {1962}, + key = {Goodenough (1962)}, + lgcode = {Lakalai [naka1262]} +} +@misc{goodenough1969, + author = {Goodenough, W. H.}, + title = {Changing Social Organization on Romonum, Truk 1947-1965}, + year = {1969}, + howpublished = {Manuscript}, + key = {Goodenough (1969)}, + lgcode = {Trukese [chuu1238]} +} +@book{goodenough1974, + author = {Goodenough, W.H.}, + title = {Changing Social Organization on Romonum, Truk, 1947-1965}, + year = {1974}, + key = {Goodenough (1974)}, + lgcode = {Trukese [chuu1238]} +} +@article{goodmanetal1985, + author = {Goodman, M. J. and A. Estioko-Griffin and P. B. Griffin and J. S. Grove}, + title = {The Compatibility of Hunting and Mothering among Agta Hunter Gatherers of the Philippines}, + journal = {Sex Roles}, + volume = {12}, + number = {11-12}, + pages = {1199-1209}, + year = {1985}, + key = {Goodman et al. (1985)}, + lgcode = {Agta (Cagayan) [cent2084]} +} +@article{goodwin1935, + author = {Goodwin, Grenville}, + title = {The Social Divisions and Economic Life of the Western Apache}, + journal = {American Anthropologist}, + volume = {37}, + pages = {55-64}, + year = {1935}, + key = {Goodwin (1935)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@article{goodwin1937, + author = {Goodwin, Grenville}, + title = {The Characteristics and Function of Clan in a Southern Athapascan Culture}, + journal = {American Anthropologist}, + volume = {39}, + pages = {394-407}, + year = {1937}, + key = {Goodwin (1937)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{goodwin1942, + author = {Goodwin, Grenville}, + title = {The Social Organization of the Western Apache}, + address = {Chicago}, + year = {1942}, + key = {Goodwin (1942)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{goodwin1971, + author = {Goodwin, Grenville}, + editor = {Keith H. Basso}, + title = {Western Apache Raiding and Warfare}, + publisher = {University of Arizona Press}, + address = {Tucson, Ariz.}, + year = {1971}, + key = {Goodwin (1971)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@article{goody1956, + author = {Goody, J. R.}, + title = {The Social Organisation of the LoWiili}, + journal = {Colonial Research Studies}, + publisher = {London: H.M. Stationary Office}, + address = {London}, + series = {Colonial research studies}, + volume = {19}, + pages = {1-119}, + year = {1956}, + glottolog_ref = {eballiso2009:25853}, + key = {Goody (1956)}, + lgcode = {Birifor [sout2790], Lowiili [sout2790]} +} +@article{goody1958, + author = {Goody, J. R.}, + title = {The Fission of Domestic Groups Among the Lo Dagaba}, + journal = {Cambridge Papers in Social Anthropology}, + volume = {1}, + pages = {53-91}, + year = {1958}, + key = {Goody (1958)}, + lgcode = {Lowiili [sout2790]} +} +@book{gorer1938, + author = {Gorer, G.}, + title = {Himalayan Village}, + address = {London}, + year = {1938}, + key = {Gorer (1938)}, + lgcode = {Lepcha [lepc1244]} +} +@article{gottschling1905, + author = {Gottschling, E.}, + title = {The Bavenda: a sketch of their history and customs}, + journal = {Journal of the Anthropological Institute}, + volume = {35}, + pages = {365-86}, + year = {1905}, + glottolog_ref = {eballiso2009:2975}, + key = {Gottschling (1905)}, + lgcode = {Venda [vend1245]} +} +@incollection{gough1961, + author = {Gough, Kathleen}, + editor = {D. M. Schneider and K. Gough}, + title = {Nayar: Central Kerala}, + booktitle = {Matrilineal kinship}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1961}, + key = {Gough (1961)}, + lgcode = {Kerala [mala1464]} +} +@article{goughaberle1955, + author = {Gough (Aberle), E. K.}, + title = {The Social Structure of a Tanjore Village}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {83}, + pages = {36-52}, + year = {1955}, + key = {Gough (Aberle) (1955)}, + lgcode = {Tamil [tami1289]} +} +@misc{goughaberlend, + author = {Gough (Aberle), E. K.}, + howpublished = {Personal communication}, + key = {Gough (Aberle) (nd)}, + lgcode = {Tamil [tami1289]} +} +@article{gould1968, + author = {Gould, R. A.}, + title = {Living Archaeology: The Ngatatjara of Western Australia}, + journal = {Southwestern Journal of Anthropology}, + volume = {24}, + pages = {101-122}, + year = {1968}, + key = {Gould (1968)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@book{gould1969, + author = {Gould, R. A.}, + title = {Yiwara: foragers of the Australian desert}, + publisher = {Charles Scribner's Sons}, + address = {New York}, + year = {1969}, + glottolog_ref = {hh:lde:Gould:Yiwara}, + key = {Gould (1969)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@article{gould1971, + author = {Gould, R. A.}, + title = {The Archaeologist as Ethnographer: A Case Study from the Western DeSert of Australia}, + journal = {World Archaeology}, + volume = {3}, + pages = {143-177}, + year = {1971}, + key = {Gould (1971)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@book{gould1977, + author = {Gould, R. A.}, + title = {Puntutjarpa Rockshelter and the Australian Desert Culture}, + address = {New York}, + series = {Anthropological Papers, American Museum of Natural History}, + volume = {54}, + year = {1977}, + key = {Gould (1977)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@incollection{gouldandplew1996, + author = {Gould, R. T., and M. G. Plew}, + editor = {M. G. Plew}, + title = {Late Archaic Fishing along the Middle Snake River, Southwestern Idaho}, + booktitle = {Prehistoric Hunter-Gatherer Fishing Strategies}, + publisher = {Department of Anthropology, Boise State University}, + address = {Boise, Idaho}, + pages = {64-83}, + year = {1996}, + key = {Gould and Plew (1996)}, + lgcode = {Agaiduka [nort2955]} +} +@misc{gouldperscomm1992, + author = {Gould, R. A.}, + howpublished = {pers. comm.}, + key = {Gould pers. comm. (1992)}, + lgcode = {Agaiduka [nort2955]} +} +@book{gouldsburyandsheane1911, + author = {Gouldsbury, C., and A. Sheane.}, + title = {The Great Plateau of Northern Rhodesia}, + address = {London}, + year = {1911}, + key = {Gouldsbury and Sheane (1911)}, + lgcode = {Bemba [town1238]} +} +@book{gourou1936, + author = {Gourou, P.}, + title = {Les paysans du delta tonkinois}, + address = {Paris}, + year = {1936}, + key = {Gourou (1936)}, + lgcode = {Annamese [viet1252]} +} +@book{gourou1954, + author = {Gourou, P.}, + title = {Land Utilization in French Indochina. 3v}, + address = {Washington}, + year = {1954}, + key = {Gourou (1954)}, + lgcode = {Annamese [viet1252]} +} +@book{gourou1955, + author = {Gourou, P.}, + title = {Peasants of Tonkin Delta, a Study of Human Geography}, + address = {New Haven}, + year = {1955}, + key = {Gourou (1955)}, + lgcode = {Annamese [viet1252]} +} +@article{grabert1974, + author = {Grabert, G. F.}, + title = {Okanagan Archaeology: 1966-67}, + journal = {Syesis}, + volume = {7}, + number = {2}, + pages = {1-83}, + year = {1974}, + key = {Grabert (1974)}, + lgcode = {Syilx [sout2963]} +} +@book{graburn1964, + author = {Graburn, N. H. H.}, + title = {Taqagmiut Eskimo Kinship Terminology}, + address = {Ottawa}, + year = {1964}, + key = {Graburn (1964)}, + lgcode = {Taqagmiut [queb1248]} +} +@book{graburn1969, + author = {Graburn, N. H. H.}, + title = {Eskimos without Igloos: Social and Economic Development in Sugluk}, + publisher = {Little, Brown}, + address = {Boston}, + year = {1969}, + key = {Graburn (1969)}, + lgcode = {Labrador Inuit [labr1244]} +} +@book{gracheva1983, + author = {Gracheva, G. N.}, + title = {Traditsionnoe mirovozzrenie ohotnikov Tajmyra (na materialah nganasan 19-nachala 20 v.)}, + address = {Leningrad}, + year = {1983}, + key = {Gracheva (1983)}, + lgcode = {Nganasan [ngan1291]}, + title_english = {Traditional Worldview of the Tajmyr Hunters: The Nganasan in the Nineteenth and Early Twentieth Centuries} +} +@incollection{gracheva1988, + author = {Gracheva, G. N.}, + editor = {I. S. Kon and Ch. M. Taksami}, + title = {Sotsializatsija detej i podrostkov v traditsionnom obshchestve nganasan (Child and Adolescent Socialization among the Nganasan)}, + booktitle = {Traditsionnoe vospitanie detej u narodov Sibiri (Traditonal Socialization Patterns among the Siberian Peoples)}, + address = {Leningrad}, + pages = {160-184}, + year = {1988}, + key = {Gracheva (1988)}, + lgcode = {Nganasan [ngan1291]} +} +@incollection{gracheva1994, + author = {Gracheva, G. N.}, + editor = {V. A. Tishkov}, + title = {Nganasany (The Nganasan)}, + booktitle = {Narody Rossii (Peoples of Russia)}, + address = {Moscow}, + pages = {242-244}, + year = {1994}, + key = {Gracheva (1994)}, + lgcode = {Nganasan [ngan1291]} +} +@phdthesis{gragson1989, + author = {Gragson, T.}, + title = {Allocation of time to subsistence and settlement in a Ciri Khonome Pume village of the Llanos of Apure, Venezuela}, + school = {Department of Anthropology, Pennsylvania State University, College Station}, + year = {1989}, + glottolog_ref = {fabreall2009ann:Yaruro5}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Gragson (1989)}, + lgcode = {Pumé [pume1238]} +} +@book{grandidierandgrandidier190828, + author = {Grandidier, A. and G. Grandidier.}, + title = {Ethnographie de Madagascar}, + publisher = {Paris}, + volume = {5 vols}, + year = {1908-28}, + glottolog_ref = {eballiso2009:2125}, + key = {Grandidier and Grandidier (1908-28)}, + lgcode = {Merina [meri1243]} +} +@article{granqvist193135, + author = {Granqvist, H.}, + title = {Marriage Conditions in a Palestinian Village}, + journal = {Soc. Scient. Fenn., Comm. Hum. Litt.}, + volume = {3}, + pages = {8}, + year = {1931-35}, + key = {Granqvist (1931-35)}, + lgcode = {Jordanians [sout3123]} +} +@incollection{grant1890, + author = {Grant, P.}, + editor = {L. F. R. Masson}, + title = {The Saulteaux Indians About 1804}, + booktitle = {Les Bouregeois de la Compagnie du Nord-Ouest}, + address = {Quebec}, + volume = {2}, + pages = {303-366}, + year = {1890}, + key = {Grant (1890)}, + lgcode = {Katikitegon [uppe1274], Nipigon [cent2136]} +} +@article{grant1924, + author = {Grant, J.C. B.}, + title = {Anthropometry of the Lake Winnipeg Indians}, + journal = {American Journal of Physical Anthropology}, + volume = {7}, + pages = {299-315}, + year = {1924}, + key = {Grant (1924)}, + lgcode = {Northern Saulteaux [alba1270], Pekangekum [lacs1238], Round Lake Ojibwa [seve1241]} +} +@book{grant1925, + author = {Grant, Blanche C.}, + title = {Taos Indians}, + address = {Taos}, + year = {1925}, + key = {Grant (1925)}, + lgcode = {Taos [taos1236]} +} +@book{grant1930, + author = {Grant, J. C. B.}, + title = {Anthropometry of the Chipewyan and Cree Indians of the neighborhood of Lake Athabaska}, + address = {Ottawa}, + series = {National Museum of Canada Bulletin No. 64, Anthropological Series}, + number = {14}, + year = {1930}, + key = {Grant (1930)} +} +@book{grant1936, + author = {Grant, J.C. B.}, + title = {Anthropometry of the Beaver, Sekani, and Carrier Indians}, + address = {Ottawa}, + series = {National Museum of Canada Bulletin No. 81, Anthropological Series}, + number = {18}, + year = {1936}, + key = {Grant (1936)}, + lgcode = {Beaver [beav1236], Dakelh [carr1249], Dene [chip1261], Sekani [seka1250]} +} +@book{grant1960, + author = {Grant, M.}, + title = {The World of Rome}, + address = {London}, + year = {1960}, + key = {Grant (1960)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{grant1964, + author = {Grant, B.}, + title = {Indonesia}, + address = {Melbourne}, + year = {1964}, + key = {Grant (1964)}, + lgcode = {Balinese [bali1278], Javanese [java1254]} +} +@article{granvilleandroth1898, + author = {Granville, R. K., and F. N. Roth.}, + title = {Notes on the Jekris, Sobos ad Ijos of the Warri District}, + journal = {Journ. Roy Anth. Inst.}, + volume = {28}, + pages = {104-126}, + year = {1898}, + key = {Granville and Roth (1898)}, + lgcode = {Ijaw [kala1381]} +} +@book{grattan1948, + author = {Grattan, F. J. H.}, + title = {An Introduction to Samoan Custom}, + address = {Apia}, + year = {1948}, + key = {Grattan (1948)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]} +} +@article{gray1953, + author = {Gray, R. F.}, + title = {Notes on Irangi Houses}, + journal = {Tanganyika Notes Rec.}, + volume = {35}, + pages = {45-52}, + year = {1953}, + key = {Gray (1953)}, + lgcode = {Rangi [lang1320]} +} +@book{gray1963, + author = {Gray, R. F.}, + title = {The Sonjo of Tanganyika}, + address = {London}, + year = {1963}, + key = {Gray (1963)}, + lgcode = {Sonjo [temi1247]} +} +@book{gray1966, + author = {Gray, J. M.}, + title = {A History of the Gambia}, + publisher = {London: Frank Cass & Co.}, + address = {New York}, + year = {1966}, + glottolog_ref = {eballiso2009:51009}, + key = {Gray (1966)}, + lgcode = {Wolof [nucl1347]} +} +@book{gray1987, + author = {Gray, D.J.}, + title = {The Takelma and Their Athapascan Neighbors}, + publisher = {University of Oregon}, + address = {Eugene}, + series = {Anthropological Papers}, + number = {37}, + year = {1987}, + key = {Gray (1987)}, + lgcode = {Takelma [take1257], Tututni [tutu1242]} +} +@misc{graynd, + author = {Gray, R. F.}, + title = {Outline of an Anthropological Field Study of the Wambugwe}, + howpublished = {Manuscript}, + key = {Gray (nd)}, + lgcode = {Mbugwe [mbug1242]} +} +@misc{greavesperscomm1993, + author = {Greaves}, + year = {1993}, + howpublished = {pers. comm.}, + key = {Greaves pers. comm. (1993)}, + lgcode = {Pumé [pume1238]} +} +@book{green1947, + author = {Green, M. M.}, + title = {Ibo Village Affairs}, + address = {London}, + year = {1947}, + key = {Green (1947)}, + lgcode = {Igbo [nucl1417]}, + note = {2nd ed. 1964} +} +@article{greenberg1946, + author = {Greenberg, J. H.}, + title = {The Influence of Islam on a Sudanese Religion}, + journal = {Monographs of the American Ethnological Society}, + volume = {10}, + pages = {1-73}, + year = {1946}, + key = {Greenberg (1946)}, + lgcode = {Maguzawa [kano1249], Zazzagawa Hausa [araw1280]} +} +@article{greenberg1947, + author = {Greenberg, J. H.}, + title = {Islam and Clan Organization among the Hausa}, + journal = {Southwestern Journal of Anthropology}, + volume = {3}, + pages = {193-211}, + year = {1947}, + glottolog_ref = {eballiso2009:15210}, + key = {Greenberg (1947)}, + lgcode = {Maguzawa [kano1249], Zazzagawa Hausa [araw1280]} +} +@misc{greenwood1971, + author = {Greenwood, P. C.}, + year = {1971}, + howpublished = {Personal Communication}, + key = {Greenwood (1971)}, + lgcode = {French Basques [labo1236]} +} +@article{grevisse193738, + author = {Grevisse, F.}, + title = {Les Bayeke}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + volume = {5; 6}, + pages = {1-16, 29-40, 65-74, 97-113, 165-175; 200-216, 238-341}, + year = {1937-38}, + key = {Grevisse (1937-38)}, + lgcode = {Garanganze [sang1331]} +} +@incollection{griauleanddieterlen1954, + author = {Griaule, Marcel, and Germaine Dieterlen}, + editor = {C. Daryll Forde}, + title = {The Dogon}, + booktitle = {African worlds: studies in the cosmological ideas and social values of African peoples}, + publisher = {Oxford University Press}, + address = {London}, + year = {1954}, + key = {Griaule and Dieterlen (1954)}, + lgcode = {Dogon [bank1259]} +} +@book{grierson1885, + author = {Grierson, G. A.}, + title = {Bihar Peasant Life}, + address = {Calcutta}, + year = {1885}, + key = {Grierson (1885)}, + lgcode = {Bihari [mait1250]} +} +@book{griffen1959, + author = {Griffen, B.}, + title = {Notes on Seri Indian Culture, Sonora, Mexico}, + publisher = {University of Florida Press}, + address = {Gainesville}, + series = {Latin American Monograph Series}, + number = {10}, + year = {1959}, + key = {Griffen (1959)}, + lgcode = {Seri [seri1257]} +} +@article{griffith1954, + author = {Griffith, W. J.}, + title = {The Hasinai Indians of East Texas as seen by Europeans, 1687-1772}, + journal = {Mid. Amer. Res. Inst., Tulane Univ. Philol. Doc. St.}, + volume = {2}, + pages = {45-165}, + year = {1954}, + key = {Griffith (1954)}, + lgcode = {Hasinai [cadd1256]} +} +@book{griffiths1946, + author = {Griffiths, W. G.}, + title = {The Kol Tribe of Central India}, + address = {Calcutta}, + year = {1946}, + key = {Griffiths (1946)}, + lgcode = {Kol [mund1320]} +} +@book{grigolia1939, + author = {Grigolia, A.}, + title = {Custom and Justice in the Caucasus}, + address = {Philadelphia}, + year = {1939}, + key = {Grigolia (1939)}, + lgcode = {Khevsur [xevs1238], Svan [svan1243]} +} +@misc{grigson1938, + author = {Grigson, W. V.}, + title = {The Maria Gonds of Bastar}, + address = {London}, + year = {1938}, + key = {Grigson (1938)}, + lgcode = {Madia [mari1414]}, + note = {Rev. Edit. 1949} +} +@article{grimble1921, + author = {Grimble, A.}, + title = {From Birth to Death in the Gilbert Islands}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {51}, + pages = {25-54}, + year = {1921}, + key = {Grimble (1921)}, + lgcode = {Makin [bana1287]} +} +@article{grimesandgrimes1962, + author = {Grimes, J. E., and B. F. Grimes}, + title = {Semantic distinctions in Huichol (Uto-Aztecan) kinship}, + journal = {American Anthropologist}, + volume = {64}, + pages = {104-14}, + year = {1962}, + glottolog_ref = {sil16:10902}, + key = {Grimes and Grimes (1962)}, + lgcode = {Huichol [huic1243]} +} +@incollection{grimesandhinton1969, + author = {Grimes, J. E. and T. B. Hinton}, + editor = {R. Wauchope}, + title = {The Huichol and Cora}, + booktitle = {Handbook of Middle American Indians}, + address = {Austin}, + volume = {7}, + number = {ii}, + pages = {792-813}, + year = {1969}, + key = {Grimes and Hinton (1969)}, + lgcode = {Huichol [huic1243]} +} +@article{grinnell1918, + author = {Grinnell, George B.}, + title = {Early Cheyenne villages}, + journal = {American Anthropologist}, + volume = {20}, + pages = {359-380}, + year = {1918}, + key = {Grinnell (1918)}, + lgcode = {Cheyenne [chey1247]} +} +@book{grinnell1923, + author = {Grinnell, G. B.}, + title = {The Cheyenne Indians. 2v}, + address = {New Haven}, + year = {1923}, + key = {Grinnell (1923)}, + lgcode = {Cheyenne [chey1247]} +} +@book{grishin1995, + author = {Grishin, Ja. Ja.}, + title = {Pol'sko-litovskie tatary (Nasledniki Zolotoj Ordy) (The Polish-Lithuanian Tatar. Heirs to the Golden Horde)}, + address = {Kazan'}, + year = {1995}, + key = {Grishin (1995)}, + lgcode = {Lithuanian Tatar [west2405]} +} +@article{grivot1942, + author = {Grivot, R.}, + title = {Le cercle de Lahous}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {4}, + pages = {1-154}, + year = {1942}, + key = {Grivot (1942)}, + lgcode = {Avikam [avik1243]} +} +@book{grnnowetal1983, + author = {Grønnow, B. and M. Melgaard and J. B. Nielsen}, + title = {Aasiyissuit - The Great Summer Camp: Archaeological, Ethnographical and Zoo-Archaeological Studies of a Caribou-Hunting Site in West Greenland}, + publisher = {Commission for Scientific Research in Greenland}, + address = {Odense}, + series = {Meddelelser om Gronland, Man and Society}, + volume = {5}, + year = {1983}, + key = {Grønnow et al. (1983)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{grodekov1889, + author = {Grodekov, N. I.}, + title = {Kirghizy i Karakirgizy sur Dar'inskoi Oblasti. [Vol. I, Juridical Life. ]}, + address = {Tashkent}, + year = {1889}, + key = {Grodekov (1889)}, + lgcode = {Kazakh [kaza1248]}, + note = {The Typolithography of S. I. Lakhtin} +} +@book{groslier1956, + author = {Groslier, B. P.}, + title = {Angkor: Hommes et pierres}, + address = {Paris}, + year = {1956}, + key = {Groslier (1956)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]} +} +@book{groslier1958, + author = {Groslier, B. P.}, + title = {Angkor et le Cambodge au XVIe siècle d'apres les sources portugaises at espagnoles}, + year = {1958}, + key = {Groslier (1958)}, + lgcode = {Ancient Khmer [oldk1249]} +} +@book{grottanelli1940, + author = {Grottanelli, V. L.}, + title = {I. Mao}, + address = {Rome}, + series = {Mission Etnografica nel Uallega Occidentale}, + volume = {1}, + pages = {1-397}, + year = {1940}, + key = {Grottanelli (1940)}, + lgcode = {Anfillo [anfi1235], Mao [hozo1236]} +} +@article{grottanelli1948, + author = {Grottanelli, V. L.}, + title = {I Pre-Niloti}, + journal = {Annali Lateranensi}, + volume = {12}, + pages = {282-326}, + year = {1948}, + key = {Grottanelli (1948)}, + lgcode = {Koma [komo1258]} +} +@book{grottanelli1955, + author = {Grottanelli, V. L.}, + title = {Pescatori dell'Oceano Indiano}, + publisher = {Roma: Cremonese}, + address = {Roma}, + year = {1955}, + glottolog_ref = {hh:w:Grottanelli:Bagiuni}, + key = {Grottanelli (1955)}, + lgcode = {Bajuni [baju1245]} +} +@misc{grottanelli1972, + author = {Grottanelli, V. L.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Grottanelli (1972)}, + lgcode = {Mao [hozo1236]} +} +@book{grottanelliandmassari1943, + author = {Grottanelli, V. I., and C. Massari.}, + title = {I. Baria, i Cunama e i Beni Amer}, + address = {Rome}, + series = {Missione di Studio al Largo Tana}, + volume = {2}, + pages = {1-416}, + year = {1943}, + key = {Grottanelli and Massari (1943)}, + lgcode = {Kunama [kuna1268], Nara [nara1262]} +} +@article{grove1919, + author = {Grove, E. T. N.}, + title = {Customs of the Acholi}, + journal = {Sudan Notes and Records}, + volume = {2}, + pages = {157-182}, + year = {1919}, + glottolog_ref = {eballiso2009:26574}, + key = {Grove (1919)}, + lgcode = {Acholi [dhop1238]} +} +@article{groves1934, + author = {Groves, W. C.}, + title = {The Natives of Sio Island}, + journal = {Oceania}, + volume = {5}, + pages = {43-63}, + year = {1934}, + key = {Groves (1934)}, + lgcode = {Sio [sioo1240]} +} +@article{groves1963, + author = {Groves, M.}, + title = {Western Motu Descent Groups}, + journal = {Ethnology}, + volume = {2}, + pages = {15-30}, + year = {1963}, + key = {Groves (1963)}, + lgcode = {Motu [motu1246]} +} +@misc{groves1964, + author = {Groves, M.}, + year = {1964}, + howpublished = {Personal communication}, + key = {Groves (1964)}, + lgcode = {Motu [motu1246]} +} +@book{grubb1911, + author = {Grubb, W. B.}, + title = {An Unknown People in an Unknown Land}, + address = {London}, + year = {1911}, + key = {Grubb (1911)}, + lgcode = {Lengua [leng1262]} +} +@incollection{guboglo1998, + author = {Guboglo, M. N.}, + editor = {V. A. Tishkov}, + title = {Gagauzy}, + booktitle = {Narody i Religii mira. Entsiklopedija (Peoples and Religions of the World)}, + address = {Moscow}, + pages = {129}, + year = {1998}, + key = {Guboglo (1998)}, + lgcode = {Gagauz [gaga1249]} +} +@book{gubser1965, + author = {Gubser, N. J.}, + title = {The Nunamiut Eskimos}, + address = {New Haven}, + year = {1965}, + key = {Gubser (1965)}, + lgcode = {Nunamiut [nort2944]} +} +@book{gudgeon1885, + author = {Gudgeon, T. W.}, + title = {The History and doings of the Maoris}, + address = {Auckland}, + year = {1885}, + key = {Gudgeon (1885)}, + lgcode = {Māori [maor1246]} +} +@article{guebhard1911, + author = {Guebhard, P.}, + title = {Notes contributives a l'etude de la religion, des moeurs et des coutumes des Bobo}, + journal = {Rev. Ethnog. Sociol.}, + volume = {2}, + pages = {125-145}, + year = {1911}, + key = {Guebhard (1911)}, + lgcode = {Bobo [nort2819]} +} +@book{guenther1986, + author = {Guenther, M.}, + title = {The Nharo Bushmen of Botswana: tradition and change}, + publisher = {Helmut Buske Verlag}, + address = {Hamburg}, + series = {Quellen zur Khoisan-Forschung}, + volume = {3}, + year = {1986}, + glottolog_ref = {guldemann:1736}, + key = {Guenther (1986)}, + lgcode = {Naron [naro1249]} +} +@book{guha1931, + author = {Guha, B. S.}, + title = {The racial Affinities of the people of India}, + publisher = {Government of India Press}, + address = {Simla}, + series = {Census of India, Vol. I, Part III}, + year = {1931}, + key = {Guha (1931)}, + lgcode = {Khasi [khas1269], Telugu [telu1262]} +} +@article{guiart1956a, + author = {Guiart, J.}, + title = {Le district du Nord Ambrym}, + journal = {Journ. Soc. Oceanistes}, + volume = {23}, + pages = {201-336}, + year = {1956}, + key = {Guiart (1956a)}, + lgcode = {Ranon [nort2839]} +} +@book{guiart1956b, + author = {Guiart, J.}, + title = {L'organisation sociale et countumiere de la population autochtone de Nouvelle-Calédonie}, + address = {Noumea}, + year = {1956}, + key = {Guiart (1956b)}, + lgcode = {Ajie [ajie1238]} +} +@article{guiart1963, + author = {Guiart, J.}, + title = {Structure de la chefferie en Mélanésie du Sud}, + journal = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {66}, + pages = {1-688}, + year = {1963}, + key = {Guiart (1963)}, + lgcode = {Ajie [ajie1238]} +} +@article{guiral1886, + author = {Guiral, L.}, + title = {Les Batekes}, + journal = {Rev. Ethnog.}, + volume = {5}, + pages = {134-166}, + year = {1886}, + key = {Guiral (1886)}, + lgcode = {Teke [teke1278]} +} +@article{guiterasholmes1947, + author = {Guiteras Holmes, C.}, + title = {Clanes y sistema de parentesco de Cancuc}, + journal = {Acta Americana}, + volume = {5}, + pages = {1-17}, + year = {1947}, + key = {Guiteras Holmes (1947)}, + lgcode = {Tzeltal [tzel1254]} +} +@article{guiterasholmes1948, + author = {Guiteras Holmes, C.}, + title = {Sistema de parentesco huasteco}, + journal = {Acta Americana}, + volume = {6}, + pages = {152-172}, + year = {1948}, + key = {Guiteras Holmes (1948)}, + lgcode = {Huastec [huas1242]} +} +@article{gulick1953, + author = {Gulick, J.}, + title = {The Lebanese Village}, + journal = {American Anthropologist}, + volume = {55}, + pages = {367-372}, + year = {1953}, + key = {Gulick (1953)}, + lgcode = {Lebanese [nort3139]} +} +@article{gulick1955, + author = {Gulick, J.}, + title = {Social Structure and Culture Change in a Lebanese Village}, + journal = {Viking Fund Publications in Anthropology}, + volume = {21}, + pages = {1-118}, + year = {1955}, + key = {Gulick (1955)}, + lgcode = {Lebanese [nort3139]} +} +@incollection{gulick1956, + author = {Gulick, J.}, + editor = {R. Patai}, + title = {Village Organization}, + booktitle = {The Republic of Lebanon}, + address = {New Haven}, + volume = {1}, + pages = {136-299}, + year = {1956}, + key = {Gulick (1956)}, + lgcode = {Lebanese [nort3139]} +} +@article{gulick1958, + author = {Gulick, J. M.}, + title = {Indigenous Political Systems of Western Malaya}, + journal = {London School of Economics Monographs on Social Anthropology}, + volume = {17}, + pages = {1-151}, + year = {1958}, + key = {Gulick (1958)}, + lgcode = {Negri Sembilan [nege1240]} +} +@book{gulliver1951, + author = {Gulliver, P. H.}, + title = {A preliminary survey of the Turkana}, + publisher = {Univ. of Cape Town (UCT)}, + series = {Comm. from the School of African Studies, new series}, + volume = {26}, + pages = {1-281}, + year = {1951}, + glottolog_ref = {eballiso2009:43438}, + key = {Gulliver (1951)}, + lgcode = {Turkana [turk1308]} +} +@article{gulliver1953, + author = {Gulliver, P. H.}, + title = {The Age-Set Organization of the Jiye Tribe}, + journal = {Journ. Roy. Anth. Indy.}, + volume = {83}, + pages = {147-168}, + year = {1953}, + key = {Gulliver (1953)}, + lgcode = {Jie [jiee1239]} +} +@book{gulliver1955, + author = {Gulliver, P. H.}, + title = {The Family Herds}, + address = {London}, + year = {1955}, + key = {Gulliver (1955)}, + lgcode = {Jie [jiee1239], Turkana [turk1308]} +} +@incollection{gulliver1965, + author = {Gulliver, P. H.}, + editor = {J. L. Gibbs}, + title = {The Jie of Uganda}, + booktitle = {Peoples of Africa}, + address = {New York}, + pages = {157-196}, + year = {1965}, + key = {Gulliver (1965)}, + lgcode = {Jie [jiee1239]} +} +@book{gulliverandgulliver1953, + author = {Gulliver, P., and P. H. Gulliver.}, + title = {The Central Nilo Hamites}, + publisher = {London: Oxford University Press}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {7}, + pages = {104}, + year = {1953}, + glottolog_ref = {hh:he:GulliverGulliver:Central-Nilo-Hamites}, + key = {Gulliver and Gulliver (1953)}, + lgcode = {Jie [jiee1239], Karamojong [nucl1430], Labwor [labw1238], Toposa [topo1242]} +} +@book{gunn1953, + author = {Gunn, H. D.}, + title = {Peoples of the Plateau Area of Northern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {7}, + year = {1953}, + glottolog_ref = {eballiso2009:41321}, + key = {Gunn (1953)}, + lgcode = {Adara [kada1284], Anaguta [igut1238], Birom [bero1242], Chawai [atsa1241]} +} +@book{gunn1956, + author = {Gunn, H. D.}, + title = {Pagan Peoples of the Central Area of Northern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {12}, + year = {1956}, + glottolog_ref = {eballiso2009:41320}, + key = {Gunn (1956)}, + lgcode = {Kagoro [kago1246], Katab [kata1265], Kurama [kura1249]} +} +@book{gunnandconant1960, + author = {Gunn, H. D., and F. P. Conant}, + title = {Peoples of the Middle Niger Region}, + address = {London}, + year = {1960}, + key = {Gunn and Conant (1960)}, + lgcode = {Basa [basa1282], Basakomo [basa1282], Gbagyi [gbar1246], Kamuku [cind1241], Koro [ashe1269], Reshe [resh1242]} +} +@inproceedings{gunther1962, + author = {Gunther, E.}, + title = {Makah Marriage Patterns and Population Stability}, + booktitle = {Akten des 34th Internationalen Amerikanisten Kongress}, + publisher = {Verlag Ferdinand Berger}, + address = {Vienna}, + pages = {538-545}, + year = {1962}, + key = {Gunther (1962)}, + lgcode = {Makah [maka1318]} +} +@article{gunthere1927, + author = {Gunthere, E.}, + title = {Klallam Ethnography}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {1}, + pages = {171-314}, + year = {1927}, + key = {Gunthere (1927)}, + lgcode = {Klallam [clal1241]} +} +@article{gurden1904, + author = {Gurden, P. R. T.}, + title = {Note on the Khasis, Syntengs, and allied tribes inhabiting Khasi and Janital Hills district in Assam}, + journal = {Journal of the Asiatic Society of Bengal}, + volume = {73, Part 3}, + number = {4}, + pages = {57-75}, + year = {1904}, + key = {Gurden (1904)}, + lgcode = {Khasi [khas1269]} +} +@book{gurdon1907, + author = {Gurdon, P. R. T.}, + title = {The Khasis}, + publisher = {London: David Nutt}, + address = {London}, + pages = {xxvii+227+frontispiece+18 plates}, + year = {1907}, + glottolog_ref = {stampe:280}, + key = {Gurdon (1907)}, + lgcode = {Khasi [khas1269]} +} +@book{gusinde1931, + author = {Gusinde, M.}, + title = {The Selk'nam: On the Life and Thought of a Hunting People on the Great Land of Tierra del Fuego, translated by F. Schutze. Die Feuerland-Indianer, Vol. 1.}, + publisher = {Human Relations Area Files}, + address = {New Haven, Conn.}, + year = {1931}, + key = {Gusinde (1931)}, + lgcode = {Ona [onaa1245]} +} +@book{gusinde1931a, + author = {Gusinde, M.}, + title = {Die Feuerland Indianer, I. Die Selk'nam}, + publisher = {Mödling bei Wien}, + year = {1931}, + glottolog_ref = {fabreall2009ann:Chon_selknam42}, + key = {Gusinde (1931a)}, + lgcode = {Ona [onaa1245]} +} +@book{gusinde1937a, + author = {Gusinde, M.}, + title = {The Yahgan: The Life and Thought of the Water Nomads of Cape Horn, translated by F. Schutze. Die Feuerland-Indianer, Vol. 2.}, + publisher = {Human Relations Area Files}, + address = {New Haven, Conn.}, + year = {1937}, + key = {Gusinde (1937a)}, + lgcode = {Yahgan [yama1264]} +} +@book{gusinde1937b, + author = {Gusinde, M.}, + title = {Die Feuerland Indianer, 2: Yamana}, + publisher = {Mödling bei Wien}, + year = {1937}, + key = {Gusinde (1937b)}, + lgcode = {Yahgan [yama1264]} +} +@incollection{gussow1954, + author = {Gussow, Z.}, + editor = {D. Horr}, + title = {Cheyenne and Arapaho: Aboriginal Occupations}, + booktitle = {American Indian Ethnohistory: Plains Indians}, + publisher = {Garland}, + address = {New York}, + pages = {27-96}, + year = {1954}, + key = {Gussow (1954)}, + lgcode = {Cheyenne [chey1247]} +} +@book{gussowetal1974, + author = {Gussow, Z. and L. R. Hafen and A. A. Ekireli}, + title = {Cheyenne and Arapaho: Commission Findings, Indian Claims Commission}, + publisher = {Garland}, + address = {New York}, + series = {American Indian Ethnohistory: Plains Indians Series}, + year = {1974}, + key = {Gussow et al. (1974)}, + lgcode = {Arapaho [arap1274]} +} +@article{gutersohn1920, + author = {Gutersohn, T.}, + title = {Het economisch leven van den Mongo-neger}, + journal = {Congo}, + volume = {1}, + number = {i}, + pages = {92-105}, + year = {1920}, + key = {Gutersohn (1920)}, + lgcode = {Mongo [long1393], Nkundo [nkun1238]} +} +@book{gutierrezdepineda1948, + author = {Gutierrez de Pineda, V.}, + title = {Organizacion social en la Guajira}, + address = {Bogota}, + series = {Revista del Instituto Etnologico Nacional}, + volume = {3}, + number = {ii}, + pages = {1-255}, + year = {1948}, + key = {Gutierrez de Pineda (1948)}, + lgcode = {Wayuu [wayu1243]} +} +@article{gutmann1913, + author = {Gutmann, B.}, + title = {Feldbausitten und Wachstumsbrauche der Wadeschagga}, + journal = {Zeitschrift für Ethnologie}, + volume = {45}, + pages = {475-511}, + year = {1913}, + glottolog_ref = {eballiso2009:23721}, + key = {Gutmann (1913)}, + lgcode = {Chagga [moch1256]} +} +@book{gutmann1926, + author = {Gutmann, B.}, + title = {Das Recht der Dschagga}, + publisher = {München: Verlagshandlung Oskar Beck}, + address = {München}, + series = {Arbeiten zur Entwicklungspsychologie}, + volume = {7}, + pages = {1-1733}, + year = {1926}, + glottolog_ref = {eballiso2009:11574}, + key = {Gutmann (1926)}, + lgcode = {Chagga [moch1256]} +} +@incollection{guzenkovaandivanov1998, + author = {Guzenkova, T. S., and V. P. Ivanov}, + editor = {V. A. Tishkov}, + title = {Chuvashi (The Chuvash)}, + booktitle = {Narody i religii mira (Peoples and Religions of the World)}, + address = {Moscow}, + pages = {631-633}, + year = {1998}, + key = {Guzenkova and Ivanov (1998)}, + lgcode = {Chuvash [chuv1255]} +} +@article{haas1939, + author = {Haas, M. r.}, + title = {Natchewz and Chitimacha Clans and Kinship Terminology}, + journal = {American Anthropologist}, + volume = {41}, + pages = {597-610}, + year = {1939}, + key = {Haas (1939)}, + lgcode = {Chitimacha [chit1248]} +} +@book{haddon1908, + editor = {Haddon, A. C.}, + title = {Reports of the Cambridge Anthropological Expedition to Torres Straits, v. 6}, + address = {Cambridge}, + year = {1908}, + key = {Haddon (1908)}, + lgcode = {Miriam [meri1244]} +} +@book{hadfield1920, + author = {Hadfield, E.}, + title = {Among the Natives of the Loyalty Group}, + address = {London}, + year = {1920}, + key = {Hadfield (1920)}, + lgcode = {Lifu [dehu1237]} +} +@article{haeberlinandgunther1930, + author = {Haeberlin, H. K., and E. Gunther.}, + title = {The Indians of Puget Sound}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {4}, + pages = {1-83}, + year = {1930}, + key = {Haeberlin and Gunther (1930)}, + lgcode = {Puyallup [sout2965]} +} +@misc{hafuz1994, + author = {Hafuz, M. E.}, + title = {Karaimy. Istoriko-etnograficheskieo cherki (The Karaim: Historical- Ethnographic Essays)}, + publisher = {In- t etnol. i antrop. RaN}, + address = {Moscow}, + year = {1994}, + key = {Hafuz (1994)}, + lgcode = {Lithuanian Karaim [kara1464]} +} +@book{hagen1908, + author = {Hagen, B.}, + title = {Die Orang Kubu auf Sumatra}, + publisher = {Joseph Baer}, + address = {Frankfurt}, + series = {Veröffentlichungen aus dem Städtischen Völker-Museum}, + number = {2}, + pages = {1-269}, + year = {1908}, + key = {Hagen (1908)}, + lgcode = {Anak Dalam [kubu1239]} +} +@article{hagen1912, + author = {Hagen, G. von.}, + title = {Einige Notizen uber die Musgu}, + journal = {Baessler-Arch.}, + volume = {2}, + pages = {117-122}, + year = {1912}, + glottolog_ref = {hh:e:vonHagen:Musgu}, + key = {Hagen (1912)}, + lgcode = {Musgu [musg1254]} +} +@book{hagen1943, + author = {Hagen, V. W. von.}, + title = {The Jicaque Indians of Honduras}, + series = {Indian Notes Monogr., Misc. Ser}, + volume = {53}, + year = {1943}, + key = {Hagen (1943)}, + lgcode = {Tolupan [toll1241]} +} +@book{haglund1935, + author = {Haglund, S.}, + title = {Life among the Lapps}, + address = {London}, + year = {1935}, + key = {Haglund (1935)}, + lgcode = {Sami [nort2671]} +} +@book{haile1954, + author = {Haile, Berard}, + title = {Property Concepts of the Navajo Indians}, + series = {Catholic University of America, Anthropological Series}, + volume = {17}, + pages = {1-64}, + year = {1954}, + key = {Haile (1954)}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@book{hailey1950, + author = {Hailey, W. M. H.}, + title = {Native administration in the British African territories}, + publisher = {London: H.M. Stationary Office; Colonial Office/Commonwealth Relations Office}, + address = {London}, + volume = {6 parts}, + year = {1950}, + glottolog_ref = {eballiso2009:4355}, + key = {Hailey (1950)}, + lgcode = {Kikuyu [kiku1240]} +} +@book{haines1955, + author = {Haines, F.}, + title = {The Nez Perces}, + address = {Norman}, + year = {1955}, + key = {Haines (1955)}, + lgcode = {Nez Perce [nezp1238]} +} +@book{hajda1955, + editor = {Hajda, J.}, + title = {Czechoslovakia}, + address = {New Haven}, + year = {1955}, + key = {Hajda (1955)}, + lgcode = {Czechs [czec1258]} +} +@article{hajdu1963, + author = {Hajdu, P.}, + title = {Samoyed Peoples and Languages}, + journal = {Indiana University Publications, Uralic and Altaic Series}, + volume = {14}, + pages = {1-114}, + year = {1963}, + key = {Hajdu (1963)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{haleandtindale1933, + author = {Hale, H.M., and N. B. Tindale}, + title = {Aborigines of the Princess Charlotte Bay, North Queensland}, + journal = {Records of the South Australia Museum}, + volume = {5}, + pages = {63-107}, + year = {1933}, + key = {Hale and Tindale (1933)}, + lgcode = {Walmbaria [flin1247]} +} +@book{halkin1911, + author = {Halkin, J.}, + title = {Les Ababua}, + address = {Bruxelles}, + series = {Collec. Monog. Ethnog.}, + volume = {7}, + pages = {1-616}, + year = {1911}, + key = {Halkin (1911)}, + lgcode = {Baboa [bwaa1238]} +} +@book{hall1938, + author = {Hall, H. U.}, + title = {The Sherbro of Sierra Leone}, + address = {Philadelphia}, + year = {1938}, + key = {Hall (1938)}, + lgcode = {Sherbro [sher1258]} +} +@article{halleran1951, + author = {Halleran, T.}, + title = {Krobo Marriage Customs}, + journal = {Anthropos}, + volume = {46}, + pages = {996-997}, + year = {1951}, + key = {Halleran (1951)}, + lgcode = {Adangme [adan1247]} +} +@article{hallouin1947, + author = {Hallouin, J.}, + title = {Geographie humaine de la subdivision de Daloa}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {9}, + pages = {18-55}, + year = {1947}, + key = {Hallouin (1947)}, + lgcode = {Bete [dalo1238]} +} +@article{hallowell1926, + author = {Hallowell, A. I.}, + title = {Recent Changes in the Kinship Terminology of the St. Francis Abenaki}, + journal = {Proc. Intern. Congr. Americanists}, + volume = {22}, + number = {ii}, + pages = {97-145}, + year = {1926}, + key = {Hallowell (1926)}, + lgcode = {Abenaki [peno1243]} +} +@article{hallowell1929, + author = {Hallowell, A. I.}, + title = {The Physical Characteristics of the Indians of Labrador}, + journal = {Journal de la Societe des Americanistes de Paris (n.s.)}, + volume = {21}, + pages = {337-371}, + year = {1929}, + key = {Hallowell (1929)}, + lgcode = {Iglulik Inuit [west2618], Naskapi [nask1242]} +} +@article{hallowell1938, + author = {Hallowell, A. I.}, + title = {The Incidence, Character, and Decline of Polygyny among the Lake Winnipeg Cree and Saulteaux}, + journal = {American Anthropologist}, + volume = {40}, + pages = {235-256}, + year = {1938}, + key = {Hallowell (1938)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1938a, + author = {Hallowell, A. I.}, + title = {Fear and Anxiety as Cultural and Individual Variables in a Primitive Society}, + journal = {Journal of Social Psychology}, + volume = {9}, + pages = {25-47}, + year = {1938}, + key = {Hallowell (1938a)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1938b, + author = {Hallowell, A. I.}, + title = {Notes on the Material Culture of the Island Lake Saulteaux}, + journal = {Journal de la Soci‚t‚ des Am‚ricanistes, n. s.}, + volume = {30}, + pages = {128-140}, + year = {1938}, + key = {Hallowell (1938b)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1939, + author = {Hallowell, A. I.}, + title = {Sin, Sex and Sickness in Saulteaux Belief}, + journal = {British Journal of Medical Psychology}, + volume = {18}, + pages = {191-197}, + year = {1939}, + key = {Hallowell (1939)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1940, + author = {Hallowell, A. I.}, + title = {Aggression in Saulteaux Society}, + journal = {Psychiatry}, + volume = {3}, + pages = {395-407}, + year = {1940}, + key = {Hallowell (1940)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1941, + author = {Hallowell, A. I.}, + title = {The Social Function of Anxiety in a Primitive Society}, + journal = {American Sociological Review}, + volume = {6}, + pages = {869-881}, + year = {1941}, + key = {Hallowell (1941)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1942, + author = {Hallowell, A. I.}, + title = {The Role of Conjuring in Saulteaux Society}, + journal = {Publications, Philadelphia Anthropological Society}, + volume = {2}, + pages = {1-96}, + year = {1942}, + key = {Hallowell (1942)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@book{hallowell1955, + author = {Hallowell, A. I.}, + title = {Culture and Experience}, + publisher = {University of Pennsylvania Press}, + address = {Philadelphia}, + year = {1955}, + key = {Hallowell (1955)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@incollection{hallowell1963, + author = {Hallowell, A. I.}, + editor = {I. Goldstone}, + title = {Ojibwa World View and Disease}, + booktitle = {Man's Image in Medicine and Anthropology}, + address = {New York}, + pages = {258-315}, + year = {1963}, + key = {Hallowell (1963)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@misc{hallpike1969, + author = {Hallpike, C. R.}, + title = {The Konso of Ethiopia}, + year = {1969}, + howpublished = {Manuscript}, + key = {Hallpike (1969)}, + lgcode = {Konso [kons1243]} +} +@article{halpern1942, + author = {Halpern, A. M.}, + title = {Yuma Kinship Terms}, + journal = {American Anthropologist}, + volume = {44}, + pages = {425-441}, + year = {1942}, + key = {Halpern (1942)}, + lgcode = {Quechan [quec1382]} +} +@misc{halpern1956, + author = {Halpern, Joel M.}, + title = {Social and cultural change in a Serbian village}, + publisher = {Human Relations Area Files}, + address = {New Haven}, + year = {1956}, + key = {Halpern (1956)}, + lgcode = {Serbs [serb1264]} +} +@book{halpern1957, + author = {Halpern, J. M.}, + title = {A Serbian Village}, + address = {New York}, + year = {1957}, + key = {Halpern (1957)}, + lgcode = {Serbs [serb1264]} +} +@incollection{halpinandseguin1990, + author = {Halpin, M. M., and M. Seguin}, + editor = {Wayne Suttles}, + title = {Tsimshian Peoples: Southern Tsimshian, Coast Tsimshian, Nishga, and Gitksan}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {267-284}, + year = {1990}, + glottolog_ref = {hh:e:HalpinSeguin:Tsimshian}, + key = {Halpin and Seguin (1990)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]} +} +@article{halseath1924, + author = {Halseath, Odd S.}, + title = {Report of Economic and Social Survey of the Keres Pueblo of Sia}, + journal = {El Palacio}, + volume = {16}, + pages = {67-75}, + year = {1924}, + key = {Halseath (1924)}, + lgcode = {Sia [ziaa1251]} +} +@article{hambly1934, + author = {Hambly, W. D.}, + title = {The Ovimbundu of Angola}, + journal = {Field Museum Anthropological Series}, + publisher = {Chicago: Field Museum of Natural History}, + address = {Chicago}, + series = {Publications 329. Anthropological Series}, + volume = {21}, + pages = {89-362}, + year = {1934}, + glottolog_ref = {guldemann:1887}, + key = {Hambly (1934)}, + lgcode = {Mbundu [umbu1257]} +} +@article{hambruch1907, + author = {Hambruch, P.}, + title = {Wuvulu und Aua}, + journal = {Mitt. Mus. Voelkerkunde Hamburg}, + volume = {21}, + pages = {1-156}, + year = {1907}, + key = {Hambruch (1907)}, + lgcode = {Aua [wuvu1239]} +} +@book{hambruch191415, + author = {Hambruch, P.}, + editor = {G. Thilenius}, + title = {Nauru}, + address = {Hamburg}, + series = {Ergebnisse der Südsee-Expedition 1908-1910}, + year = {1914-15}, + key = {Hambruch (1914-15)}, + lgcode = {Nauruans [naur1243]} +} +@misc{hambruch193236, + author = {Hambruch, P.}, + editor = {G. Thilenius}, + title = {Ponape}, + address = {Berlin}, + series = {Ergebnisse der Südsee-Expedition 1908-1910}, + volume = {7: i, 1-376; ii, 1-386; iii, 1-127}, + year = {1932-36}, + key = {Hambruch (1932-36)}, + lgcode = {Ponapeans [pohn1238]} +} +@article{hammond1964, + author = {Hammond, P. B.}, + title = {Mossi Joking}, + journal = {Ethnology}, + volume = {3}, + pages = {259-267}, + year = {1964}, + key = {Hammond (1964)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@book{hammond1966, + author = {Hammond, P. B.}, + title = {Yatenga}, + address = {New York}, + year = {1966}, + key = {Hammond (1966)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@misc{hammondnd, + author = {Hammond, P. B.}, + school = {University of Pittsburgh}, + howpublished = {Unpublished field notes}, + key = {Hammond (nd)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@book{handy1922, + author = {Handy, W. C.}, + title = {Tattooing in the Marquesas}, + address = {Honolulu}, + series = {Bulletins of the Bernice P. Biship Museum}, + number = {1}, + year = {1922}, + key = {Handy (1922)}, + lgcode = {Marquesans [nort2845]} +} +@article{handy1923, + author = {Handy, E. S. C.}, + title = {Native Culture in the Marquesas}, + journal = {Bulletins of the Bernice P. Bishop Museum.}, + volume = {9}, + pages = {1-358}, + year = {1923}, + key = {Handy (1923)}, + lgcode = {Marquesans [nort2845]} +} +@article{handy1930, + author = {Handy, E. S. C.}, + title = {History and Culture in the Society Islands}, + journal = {Bull. Bishop Mus.}, + volume = {79}, + pages = {1-110}, + year = {1930}, + key = {Handy (1930)}, + lgcode = {Tahitians [tahi1242]} +} +@book{handyetal1933, + author = {Handy, E. S. C. et al.}, + title = {Ancient Hawaiian Civilization}, + address = {Honolulu}, + year = {1933}, + key = {Handy et al. (1933)}, + lgcode = {Hawaiians [hawa1245]} +} +@book{hanks1963, + author = {Hanks, J. R.}, + title = {Maternity and its Rituals in Bang Chan}, + address = {Ithaca}, + year = {1963}, + key = {Hanks (1963)}, + lgcode = {Thai [thai1261]} +} +@incollection{hanksandhanks1961, + author = {Hanks, L. M. Jr. and J. R. Hanks}, + editor = {B. J. Ward}, + title = {Thailand: Equality Between the Sexes}, + booktitle = {Women in the New Asia}, + pages = {424-451}, + year = {1961}, + key = {Hanks and Hanks (1961)}, + lgcode = {Thai [thai1261]} +} +@article{hanksandrichardson1945, + author = {Hanks, L. M., and J. Richardson.}, + title = {Observations on Northern Blackfoot Kinship}, + journal = {Monogr. Amer. Ethn. Soc.}, + volume = {9}, + pages = {1-31}, + year = {1945}, + key = {Hanks and Richardson (1945)}, + lgcode = {Blackfoot [pieg1239]} +} +@book{hann1991, + editor = {Hann, J.H. (editor and translator)}, + title = {Missions to the Calusa}, + publisher = {Florida Museum of Natural History and University of Florida Press}, + address = {Gainesville}, + year = {1991}, + key = {Hann (1991)}, + lgcode = {Calusa [calu1239]} +} +@book{hanoteauandletourneaux1893, + author = {Hanoteau, A., and A. Letourneaux.}, + title = {La Kabylie et les coutumes kabyles. 2d edit. 2v}, + address = {Paris}, + year = {1893}, + key = {Hanoteau and Letourneaux (1893)}, + lgcode = {Kabyle [kaby1243]} +} +@book{hansen1914, + author = {Hansen, S.}, + title = {Contributions to the Anthropology of the East Greenlanders}, + series = {Meddelelser om Gronland}, + volume = {39}, + number = {2}, + year = {1914}, + key = {Hansen (1914)}, + lgcode = {Kalaallit (West Greenland) [kala1399], Tasiilaq [tunu1234]} +} +@article{hansen1961, + author = {Hansen, H. H.}, + title = {The Kurdish Woman's Life}, + journal = {Copenhagen Ethnographic Museum Record}, + volume = {7}, + pages = {1-213}, + year = {1961}, + key = {Hansen (1961)}, + lgcode = {Kurd [cent1972]} +} +@article{hansenetal1969, + author = {Hansen, J. D. L. and A. S. Truswell and C. Freeseman and B. MacHutchon}, + title = {The children of hunting and gathering Bushmen}, + journal = {South African Medical Journal}, + volume = {43}, + pages = {1158}, + year = {1969}, + glottolog_ref = {eballiso2009:39742}, + key = {Hansen et al. (1969)}, + lgcode = {!Kung [juho1239]} +} +@book{hanson1955, + author = {Hanson, A. H., et al.}, + title = {Studies in Turkish Local Government}, + address = {Ankara}, + year = {1955}, + key = {Hanson (1955)}, + lgcode = {Turks [nucl1301]} +} +@book{hantzsch1977, + author = {Hantzsch, B.}, + title = {My Life among the Eskimos: Baffin Island Journeys in the Years 1909-1911}, + publisher = {University of Saskatchewan}, + address = {Saskatoon}, + series = {Institute for Northern Studies Mawdsley Memoir Series}, + number = {3}, + year = {1977}, + key = {Hantzsch (1977)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@book{hanzeli1955, + author = {Hanzeli, V. E.}, + title = {The Hungarians}, + address = {New Haven}, + year = {1955}, + key = {Hanzeli (1955)}, + lgcode = {Magyar [hung1274]} +} +@article{harako1976, + author = {Harako, R.}, + title = {The Mbuti as hunters: a study of ecological anthropology of the Mbuti Pygmies}, + journal = {Kyoto University African Studies}, + publisher = {Kyoto University}, + address = {Kyoto}, + volume = {10}, + pages = {37-99}, + year = {1976}, + glottolog_ref = {eballiso2009:1586}, + key = {Harako (1976)}, + lgcode = {Mbuti [bila1255]} +} +@book{harding1967, + author = {Harding, T. G.}, + title = {Voyagers of the Vitiaz Strait}, + address = {Seattle}, + year = {1967}, + key = {Harding (1967)}, + lgcode = {Sio [sioo1240]} +} +@phdthesis{harner1960, + author = {Harner, M. J.}, + title = {Machetes, Shotguns, and Society: An Inquiry into the Social Impact of Technological Change among the Jivaro Indians}, + school = {University of California at Berkeley}, + year = {1960}, + key = {Harner (1960)}, + lgcode = {Shuar [shua1257]} +} +@article{harner1962, + author = {Harner, M. J.}, + title = {Jivaro Souls}, + journal = {American Anthropologist}, + volume = {64}, + pages = {258-272}, + year = {1962}, + key = {Harner (1962)}, + lgcode = {Shuar [shua1257]} +} +@book{harner1972, + author = {Harner, Michael}, + title = {The Jivaro. People of the Sacred Waterfalls}, + publisher = {Doubleday}, + address = {New York}, + year = {1972}, + key = {Harner (1972)}, + lgcode = {Shuar [shua1257]} +} +@phdthesis{harpending1971, + author = {Harpending, H. C.}, + title = {!Kung Hunter-Gatherer Population Structure}, + school = {Harvard University}, + year = {1971}, + key = {Harpending (1971)}, + lgcode = {!Kung [juho1239]} +} +@book{harper1964, + author = {Harper, F.}, + title = {Caribou Eskimos of the Upper Kazan River, Keewatin}, + publisher = {Allen Press}, + address = {Lawrence, Kansas}, + series = {University of Kansas Museum of Natural History Miscellaneous Publication}, + number = {36}, + year = {1964}, + key = {Harper (1964)}, + lgcode = {Caribou Inuit [cari1277]} +} +@book{harries1939, + author = {Harries, C. L.}, + title = {The laws and customs of the Bapedi}, + publisher = {Hortens}, + address = {Johannesburg}, + year = {1939}, + key = {Harries (1939)}, + lgcode = {Pedi [tswe1238]} +} +@article{harrington1912, + author = {Harrington, J. P.}, + title = {Tewa Relationship Terms}, + journal = {American Anthropologist}, + volume = {14}, + pages = {472-498}, + year = {1912}, + key = {Harrington (1912)}, + lgcode = {Santa Clara [sant1421]} +} +@article{harrington1913, + author = {Harrington, M. R.}, + title = {A Preliminary Sketch of Lenape Culture}, + journal = {American Anthropologist}, + volume = {15}, + pages = {208-235}, + year = {1913}, + key = {Harrington (1913)}, + lgcode = {Delaware [unam1242]} +} +@book{harrington1916, + author = {Harrington, John P.}, + title = {The Ethnography of the Tewa Indians}, + series = {Annual Report of the Bureau of American Ethnology}, + volume = {29}, + pages = {1-636}, + year = {1916}, + key = {Harrington (1916)}, + lgcode = {Nambé Pueblo [namb1296]} +} +@article{harrington1934, + author = {Harrington, J. P.}, + title = {A New Original Version of Boscana's Historical Account of the San Juan Capistrano Indians}, + journal = {Smiths. Misc. Coll.}, + volume = {92}, + pages = {iv, 1-62}, + year = {1934}, + key = {Harrington (1934)}, + lgcode = {Luiseño [luis1253]} +} +@article{harrington1942, + author = {Harrington, J. P.}, + title = {Central California Coast}, + journal = {Anth. Rec.}, + volume = {7}, + pages = {1-46}, + year = {1942}, + key = {Harrington (1942)}, + lgcode = {Chumash [cruz1243], Salinan [sali1253], Tongva [tong1329]} +} +@book{harrington1955, + author = {Harrington, Mark R.}, + title = {Ancient Life among the Southern California Indians}, + publisher = {Southwest Museum}, + series = {Southwest Museum Leaflets}, + pages = {79-88, 117-129, 153-167}, + year = {1955}, + key = {Harrington (1955)}, + lgcode = {Luiseño [luis1253]} +} +@book{harris1929, + author = {Harris, C. L.}, + title = {The Laws and Customs of the Bapedi and Cognate Tribes of the Transvaal}, + address = {Johannesburg}, + year = {1929}, + key = {Harris (1929)}, + lgcode = {Pedi [tswe1238]} +} +@article{harris1930, + author = {Harris, P. G.}, + title = {Notes on Yauri}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {60}, + pages = {283-324}, + year = {1930}, + key = {Harris (1930)}, + lgcode = {Reshe [resh1242]} +} +@article{harris1938, + author = {Harris, P. G.}, + title = {Notes on the Dakarkari Peoples}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {68}, + pages = {113-152}, + year = {1938}, + key = {Harris (1938)}, + lgcode = {Dakakari [clel1238]} +} +@incollection{harris1940, + author = {Harris, J.}, + editor = {R. Linton}, + title = {The White Knife Shoshoni of Nevada}, + booktitle = {Acculturation in Seven American Indian Tribes}, + publisher = {D. Appleton-Century}, + address = {New York}, + pages = {39-166}, + year = {1940}, + key = {Harris (1940)}, + lgcode = {White Knife Shoshoni [west2622]} +} +@book{harris1957, + editor = {Harris, G. L.}, + title = {Egypt}, + address = {New Haven}, + year = {1957}, + key = {Harris (1957)}, + lgcode = {Egyptians [egyp1253]} +} +@book{harris1958, + author = {Harris, G. L.}, + title = {Jordan}, + address = {New Haven}, + year = {1958}, + key = {Harris (1958)}, + lgcode = {Jordanians [sout3123]} +} +@incollection{harris1978, + author = {Harris, D. R.}, + editor = {N. Blurton-Jones and V. Reynolds}, + title = {Adaptation to a Tropical Rain-Forest Environment: Aboriginal Subsistence in Northeastern Queensland}, + booktitle = {Human Behavior and Adaptation}, + publisher = {Taylor and Francis}, + address = {London}, + pages = {113-133}, + year = {1978}, + key = {Harris (1978)}, + lgcode = {Mamu [mamu1253], Mardudjara [mart1256]} +} +@incollection{harris1982, + author = {Harris, D. R.}, + editor = {M. Harris and E. B. Ross}, + title = {Aboriginal Subsistence in a Tropical Rain Forest Environment: Food Procurement, Cannibalism, and Population Regulation in Northeastern Australia}, + booktitle = {Food and Evolution: Toward a Theory of Human Food Habits}, + publisher = {Temple University Press}, + address = {Philadelphia}, + pages = {357-385}, + year = {1982}, + key = {Harris (1982)}, + lgcode = {Mamu [mamu1253]} +} +@book{harrison1913, + editor = {Harrison, F.}, + title = {Roman Farm Management: The Treatises of Cato and Varro}, + address = {New York}, + year = {1913}, + key = {Harrison (1913)}, + lgcode = {Ancient Romans [lati1261]} +} +@article{harrison1949, + author = {Harrison, T.}, + title = {Notes on Some Nomadic Punans}, + journal = {Sarawak Museum Journal}, + volume = {5}, + number = {1}, + pages = {130-146}, + year = {1949}, + key = {Harrison (1949)}, + lgcode = {Punan [west2563]} +} +@article{hart1954, + author = {Hart, D. M.}, + title = {An Ethnographic Survey of the Riffian Tribe of Aith Waryaghil}, + journal = {Tamuda}, + address = {Tetuan}, + volume = {1}, + pages = {55-86}, + year = {1954}, + key = {Hart (1954)}, + lgcode = {Riffians [tari1263]} +} +@article{hart1954a, + author = {Hart, C.}, + title = {The Sons of Turimpi}, + journal = {American Anthropologist}, + volume = {56}, + pages = {242-261}, + year = {1954}, + key = {Hart (1954a)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{hart1965, + author = {Hart, D. V.}, + title = {From Pregnancy Through Birth in a Bisayan Filipino Village. Southeast Asian Birth Customs}, + address = {New Haven}, + pages = {1-113}, + year = {1965}, + key = {Hart (1965)}, + lgcode = {Sugbuanon [cebu1242]} +} +@article{hart1970, + author = {Hart, C. W. M.}, + title = {Some Factors Affecting Residence among the Tiwi}, + journal = {Oceania}, + volume = {40}, + pages = {296-303}, + year = {1970}, + key = {Hart (1970)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{hart1976, + author = {Hart, D. M.}, + title = {The Aith Waryaghar of the Moroccan Rif}, + publisher = {Tucson: University of Arizona Press}, + address = {Tucson}, + series = {Viking Fund Publications in Anthropology}, + volume = {55}, + pages = {556}, + year = {1976}, + glottolog_ref = {hh:e:Hart:Waryaghar}, + key = {Hart (1976)}, + lgcode = {Riffians [tari1263]} +} +@article{hart1978, + author = {Hart, J. A.}, + title = {From Subsistence to Market: A case study of the Mbuti net hunters}, + journal = {Human Ecology}, + volume = {6}, + number = {3}, + pages = {325-353}, + year = {1978}, + key = {Hart (1978)}, + lgcode = {Mbuti [bila1255]} +} +@book{hartandpilling1960, + author = {Hart, C. W. M., and A. R. Pilling}, + title = {The Tiwi of North Australia}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1960}, + key = {Hart and Pilling (1960)}, + lgcode = {Tiwi [tiwi1244]} +} +@article{hartmann1927, + author = {Hartmann, H.}, + title = {Ethnographische Studie uber die Baja}, + journal = {Zeitschrift für Ethnologie}, + volume = {59}, + pages = {1-61}, + year = {1927}, + key = {Hartmann (1927)}, + lgcode = {Gbaya [nort2775]} +} +@article{hartmann1928, + author = {Hartmann, H.}, + title = {Some Customs of the Luwo}, + journal = {Anthropos}, + volume = {23}, + pages = {263-275}, + year = {1928}, + key = {Hartmann (1928)}, + lgcode = {Luo [luok1236]} +} +@book{hartmann1970, + author = {Hartmann, Günther}, + title = {Die materielle Kultur der Xavante, Zentralbrasilien}, + year = {1970}, + howpublished = {Baessler-Archiv, Neue Folge, Bd. XVIII: 43-70e. I dis}, + key = {Hartmann (1970)}, + lgcode = {Shavante [xava1240]} +} +@misc{hartnd, + author = {Hart, D. V.}, + howpublished = {Personal communications to C. O. Frake}, + key = {Hart (nd)}, + lgcode = {Sugbuanon [cebu1242]} +} +@book{haruzina1898, + author = {Haruzina, V. N.}, + title = {Votjaki}, + address = {Moscow}, + year = {1898}, + key = {Haruzina (1898)}, + lgcode = {Udmurt [sout2681]} +} +@article{harva193940, + author = {Harva, U.}, + title = {Der Bau des VerwandtschAftsnamensystems und die VerwandtschAftsverhaeltnisse bei den Fenno-Ugrier}, + journal = {Finno-Ugrische Forschungen}, + volume = {26}, + pages = {91-120}, + year = {1939-40}, + key = {Harva (1939-40)}, + lgcode = {Ob Ostyak [khan1273]} +} +@book{hasluck1954, + author = {Hasluck, M.}, + title = {The Unwritten Law in Albania}, + address = {Cambridge}, + year = {1954}, + key = {Hasluck (1954)}, + lgcode = {Gheg [gheg1238]} +} +@book{hassig1985, + author = {Hassig, R.}, + title = {Trade, Tribute, and Transportation. the Sixteenth-Century Political Economy of the Valley of Mexico}, + year = {1985}, + key = {Hassig (1985)}, + lgcode = {Aztec [clas1250]} +} +@book{hassig1988, + author = {Hassig, R.}, + title = {Aztec Warfare. Imperial Expansion and Political Control}, + year = {1988}, + key = {Hassig (1988)}, + lgcode = {Aztec [clas1250]} +} +@article{hassrick1944, + author = {Hassrick, R. B.}, + title = {Teton Dakota Kinship Terminology}, + journal = {American Anthropologist}, + volume = {46}, + pages = {338-347}, + year = {1944}, + key = {Hassrick (1944)}, + lgcode = {Teton [lako1247]} +} +@book{hassrick1964, + author = {Hassrick, R. B.}, + title = {The Sioux}, + address = {Norman}, + year = {1964}, + key = {Hassrick (1964)}, + lgcode = {Teton [lako1247]} +} +@book{hauck1958, + author = {Hauck, H. M. et al.}, + title = {Food Habits and Nutrient Intake in a Siamese Rice Village}, + address = {Ithaca}, + year = {1958}, + key = {Hauck (1958)}, + lgcode = {Thai [thai1261]} +} +@misc{haughton1912, + author = {Haughton, T. H.}, + title = {Mumuye Assessment Report}, + year = {1912}, + howpublished = {Manuscript}, + key = {Haughton (1912)}, + lgcode = {Mumuye [nucl1240]} +} +@book{haumant1929, + author = {Haumant, J. C.}, + title = {Les Lobi et leur coutume}, + address = {Paris}, + year = {1929}, + key = {Haumant (1929)}, + lgcode = {Lobi [lobi1245]} +} +@book{hawes1903, + author = {Hawes, C. H.}, + title = {In the Uttermost East}, + address = {London}, + year = {1903}, + key = {Hawes (1903)}, + lgcode = {Nivkh [gily1242]} +} +@article{hawkes1916, + author = {Hawkes, M. W.}, + title = {The Labrador Eskimo}, + journal = {Mem. Canada Dept. Mines, Geol. Surv}, + volume = {91}, + pages = {1-165}, + year = {1916}, + key = {Hawkes (1916)}, + lgcode = {Labrador Inuit [labr1244]} +} +@incollection{hawkesetal1989, + author = {Hawkes, C. and J. F. O'Connell and N. B. Jones}, + editor = {Standen, V. and Foley, R.A.}, + title = {Hardworking Hadza grandmothers}, + booktitle = {Comparative Socioecology: The Behavioral Ecology of Humans and Other Mammals}, + publisher = {Blackwell Scientific Publ.}, + address = {London}, + series = {Special publ. from the British Ecological Soc.}, + volume = {8}, + pages = {341-366}, + year = {1989}, + glottolog_ref = {eballiso2009:22617}, + key = {Hawkes et al. (1989)}, + lgcode = {Hadza [hadz1240]} +} +@article{hawkesworth1932, + author = {Hawkesworth, D.}, + title = {The Nuba Proper of Southern Kordofan}, + journal = {Sudan Notes and Records}, + volume = {15}, + pages = {159-199}, + year = {1932}, + glottolog_ref = {eballiso2009:29349}, + key = {Hawkesworth (1932)}, + lgcode = {Dilling [dill1242]} +} +@article{hawley1950, + author = {Hawley, Florence M.}, + title = {Keresan Patterns of Kinship and Social Organization}, + journal = {American Anthropologist}, + volume = {52}, + pages = {499-512}, + year = {1950}, + key = {Hawley (1950)}, + lgcode = {Cochiti [coch1273]} +} +@article{hawley1964, + author = {Hawley Ellis, Florence}, + title = {A Reconstruction of the Basic Jemez Pattern of Social Organization: With Comparisons to Other Tanoan Social Structures}, + journal = {Univ. New Mexico Publ. Anth.}, + volume = {11}, + pages = {1-69}, + year = {1964}, + key = {Hawley (1964)}, + lgcode = {Jemez [jeme1245]} +} +@article{hawleyetal1943, + author = {Hawley, F. and M. Pijoan and C. A. Elkin}, + title = {An Inquiry into Food Economy and Body Economy in Zia Pueblo}, + journal = {American Anthropologist}, + volume = {45}, + pages = {547-556}, + year = {1943}, + key = {Hawley et al. (1943)}, + lgcode = {Sia [ziaa1251]} +} +@article{hawthorn1944, + author = {Hawthorn, H. B.}, + title = {The Maori: A Study in Acculturation}, + journal = {Memoirs of the American Anthropological Association}, + volume = {64}, + pages = {1-130}, + year = {1944}, + key = {Hawthorn (1944)}, + lgcode = {Māori [maor1246]} +} +@article{hawtrey1901, + author = {Hawtrey, S. H. C.}, + title = {The Lengua Indians of the Paraguayan Chaco}, + journal = {Journal of the Royal Anthropological Institute}, + address = {Londres}, + volume = {31}, + pages = {280-299}, + year = {1901}, + glottolog_ref = {fabreall2009ann:Enlhet-Enenlhet_enxet12}, + key = {Hawtrey (1901)}, + lgcode = {Lengua [leng1262]} +} +@book{haxthausen1854, + author = {Haxthausen, A. von.}, + title = {Transcaucasia. Transl.}, + address = {London}, + year = {1854}, + key = {Haxthausen (1854)}, + lgcode = {Armenians [nucl1235], Georgians [imer1248]} +} +@book{hayden1936, + author = {Hayden, C. (compiler)}, + title = {Walapai Papers: Historical Reports, Documents, and Extracts from Publications Relating to the Walapai Indians of Arizona}, + publisher = {U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Seventy-Fourth Congress, Second Session, Senate Document}, + number = {273}, + year = {1936}, + key = {Hayden (1936)}, + lgcode = {Hualapai [wala1270]} +} +@book{hayden1997, + author = {Hayden, B.}, + title = {The Pitshouses of Idatley Creek}, + publisher = {Harcourt Brace College Publishers}, + address = {Orlando, Fla.}, + year = {1997}, + key = {Hayden (1997)}, + lgcode = {Lillooet [lill1248]} +} +@incollection{haydenetal1996, + author = {Hayden, B. and G. A. Reinhardt and R. MacDonald and D. Holmberg and D. Crellin}, + editor = {G. Coupland and E. B. Banning}, + title = {Space per Capita and the Optimal Size of Housepits}, + booktitle = {People Who Lived in Big Houses: Archaeological Perspectives on Large Domestic Structures}, + publisher = {Prehistory Press}, + address = {Madison, Wisc.}, + series = {Monographs in World Archaeology}, + number = {27}, + pages = {151-164}, + year = {1996}, + key = {Hayden et al. (1996)}, + lgcode = {Caribou Inuit [cari1277], Copper Inuit [copp1244], Inuvialuit [sigl1242], Nlaka'pamux [thom1243], Tasiilaq [tunu1234], Ungazikmit [cent2128]} +} +@article{haydenperscomm1990, + author = {Hayden, B.}, + title = {Nimrods, Piscators, Pluckers, and Planters: The Emergence of Food Production}, + journal = {Journal of Anthropological Archaeology}, + volume = {9}, + pages = {31-69}, + year = {1990}, + key = {Hayden pers. comm. (1990)}, + lgcode = {Pintubi [pint1250]} +} +@incollection{haydenperscomm1992, + author = {Hayden, B.}, + editor = {A. B. Gebauer and T. C. Price}, + title = {Models of Domestication}, + booktitle = {Transitions to Agriculture in Prehistory}, + publisher = {Prehistory Press}, + address = {Madison, Wisc.}, + pages = {11-19}, + year = {1992}, + key = {Hayden pers. comm. (1992)}, + lgcode = {Pintubi [pint1250]} +} +@book{hayley1923, + author = {Hayley, F. A.}, + title = {A Treatise on the Laws and Customs of the Sinhalese}, + address = {Colombo}, + year = {1923}, + key = {Hayley (1923)}, + lgcode = {Sinhalese [sinh1246]} +} +@book{hayley1947, + author = {Hayley, T. T. S.}, + title = {The Anatomy of Lango Religion and Kin Groups}, + address = {Cambridge}, + year = {1947}, + key = {Hayley (1947)}, + lgcode = {Lango [lang1324]} +} +@book{hazard1956, + author = {Hazard, H. W.}, + title = {Southern Arabia}, + address = {New Haven}, + year = {1956}, + key = {Hazard (1956)}, + lgcode = {Yemeni [sana1295]} +} +@phdthesis{headland1986, + author = {Headland, T. N.}, + title = {Why foragers do not become farmers: a historical study of a changing ecosystem and its effect on a negrito hunter-gatherer group in the Philippines}, + school = {Department of Anthropology, University of Hawaii, Honolulu}, + year = {1986}, + glottolog_ref = {guldemann:1973}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Headland (1986)}, + lgcode = {Agta (Casiguran) [casi1235]} +} +@misc{headlandperscomm1992, + author = {Headland}, + year = {1992}, + howpublished = {pers. comm.}, + key = {Headland pers. comm. (1992)}, + lgcode = {Agta (Casiguran) [casi1235]} +} +@misc{headlandperscomm1993, + author = {Headland}, + year = {1993}, + howpublished = {pers. comm.}, + key = {Headland pers. comm. (1993)}, + lgcode = {Agta (Casiguran) [casi1235]} +} +@phdthesis{heath1959, + author = {Heath, D. B.}, + title = {Camba: A Study of Land and Society in Eastern Bolivia}, + school = {Yale University}, + year = {1959}, + key = {Heath (1959)}, + lgcode = {Camba [chiq1248]} +} +@book{hebererandlehman1950, + author = {Heberer, G. and W. Lehmann}, + title = {Die Inland-Malaien von Lombok und Sumbawa}, + publisher = {Muster-Schmidt}, + address = {Göttingen}, + year = {1950}, + key = {Heberer and Lehman (1950)}, + lgcode = {Malays [mala1479]} +} +@article{heese1913, + author = {Heese}, + title = {Sitte und Brauch der Sango}, + journal = {Archaeology & Anthropology}, + volume = {40}, + pages = {134-146}, + year = {1913}, + key = {Heese (1913)}, + lgcode = {Sangu [sang1330]} +} +@book{heffner1955, + editor = {Heffner, R. C.}, + title = {The Cheremis}, + address = {New Haven}, + year = {1955}, + key = {Heffner (1955)}, + lgcode = {Mari [east2328]} +} +@phdthesis{heider1965, + author = {Heider, K. G.}, + title = {The Dugum Dani}, + school = {Harvard University.}, + year = {1965}, + key = {Heider (1965)}, + lgcode = {Dani [midg1235]} +} +@misc{heider1967, + author = {Heider, K. G.}, + year = {1967}, + howpublished = {Personal communication}, + key = {Heider (1967)}, + lgcode = {Dani [midg1235]} +} +@article{heimann1932, + author = {Heimann, M.}, + title = {Die Cayapa Indianer}, + journal = {Zeitschrift für Ethnologie}, + volume = {63}, + pages = {281-287}, + year = {1932}, + key = {Heimann (1932)}, + lgcode = {Chachi [chac1249]} +} +@misc{heinegeldernandhoehngerlachstein1958, + editor = {Heine-Geldern, R. and A. Hoehnwart-Gerlachstein}, + title = {Bulletin of the International Committee on Urgent Anthropological and Ethnological Research, No. 1}, + publisher = {International Union of Anthropological and Ethnological Sciences and UNESCO}, + address = {Vienna}, + year = {1958}, + key = {Heine-Geldern and Hoehn-Gerlachstein (1958)}, + lgcode = {Onge [onge1236]} +} +@book{heizerandmills1952, + author = {Heizer, R. F., and J. E. Mills}, + title = {The Four Ages of Tsurai: A Documentary History of the Indian Village on Trinidad Bay}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1952}, + key = {Heizer and Mills (1952)}, + lgcode = {Yurok [yuro1248]} +} +@book{held1947, + author = {Held, G. J.}, + title = {Papoea's van Waropen}, + address = {Leiden}, + year = {1947}, + key = {Held (1947)}, + lgcode = {Waropen [waro1242]} +} +@book{helm1961, + author = {Helm, J.}, + title = {The Lynx Point People: The Dynamics of a Northern Athapaskan Band}, + publisher = {Department of Northern Affairs and National Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin No. 176. Anthropological Series}, + number = {53}, + pages = {1-193}, + year = {1961}, + key = {Helm (1961)}, + lgcode = {DeneTha [sout2959], Hare [nort2942]} +} +@incollection{helm1968, + author = {Helm, J.}, + editor = {R. B. Lee and I. DeVore}, + title = {The Nature of Dogrib Socioterritorial Groups}, + booktitle = {Man the Hunter}, + publisher = {Aldine}, + address = {Chicago}, + pages = {118-125}, + year = {1968}, + key = {Helm (1968)}, + lgcode = {Tlicho [dogr1252]} +} +@incollection{helm1972, + author = {Helm, J.}, + editor = {M. G. Bicchieri}, + title = {The Dogrib Indians}, + booktitle = {Hunters and Gatherers Today}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + pages = {51-89}, + year = {1972}, + key = {Helm (1972)}, + lgcode = {Tlicho [dogr1252]} +} +@misc{helmandleacocknd, + author = {Helm, J. and E. Leacock}, + title = {The Hunting Tribes of Subarctic Canada}, + howpublished = {Manuscript}, + key = {Helm and Leacock (nd)}, + lgcode = {DeneTha [sout2959]} +} +@book{helmandlurie1961, + author = {Helm, J., and N. O. Lurie.}, + title = {The Subsistence Economy of the Dogrib Indians of Lac la Martre}, + address = {Ottawa}, + year = {1961}, + key = {Helm and Lurie (1961)}, + lgcode = {Tlicho [dogr1252]} +} +@article{helms1969, + author = {Helms, M. W.}, + title = {The Cultural Ecology of a Colonial Tribe}, + journal = {Ethnology}, + volume = {8}, + pages = {76-84}, + year = {1969}, + glottolog_ref = {fabreall2009ann:Misumalpa_miskito074}, + key = {Helms (1969)}, + lgcode = {Miskito [misk1235]} +} +@book{helms1970, + author = {Helms, M.}, + title = {Matrilocality and the maintenance of ethnic identity: the Miskito of eastern Nicaragua and Honduras}, + year = {1970}, + key = {Helms (1970)}, + lgcode = {Miskito [misk1235]} +} +@book{helms1971, + author = {Helms, M. W.}, + title = {Asang: Adaptations to culture contact in a Miskito community}, + address = {Gainesville}, + year = {1971}, + key = {Helms (1971)}, + lgcode = {Miskito [misk1235]} +} +@book{helser1926, + author = {Helser, A. D.}, + title = {In Sunny Nigeria}, + address = {New York}, + year = {1926}, + key = {Helser (1926)}, + lgcode = {Bura [bura1292]} +} +@article{henderson1939, + author = {Henderson, K. D. D.}, + title = {A Note on the Migration of the Messiria Tribe into South West Kordofan}, + journal = {Sudan Notes and Records}, + volume = {23}, + pages = {49-77}, + year = {1939}, + glottolog_ref = {eballiso2009:27055}, + key = {Henderson (1939)}, + lgcode = {Messiria Humr [tama1331]} +} +@article{hendley1875, + author = {Hendley, T. H.}, + title = {An Account of the Maiwar Bhils}, + journal = {Journ. As. Soc. Bengal}, + volume = {44}, + pages = {i, 347-392}, + year = {1875}, + key = {Hendley (1875)}, + lgcode = {Bhil [bhil1251]} +} +@book{henriksen1973, + author = {Henriksen, G.}, + title = {Hunters in the Barrens: The Naskapi on the Edge of the White Man's World}, + publisher = {Memorial University of Newfoundland and University of Toronto Press}, + address = {St. Johns}, + series = {Newfoundland Social and Economic Studies}, + year = {1973}, + key = {Henriksen (1973)}, + lgcode = {Naskapi [nask1242]}, + nunber = {12} +} +@book{henry1910, + author = {Henry, J.}, + title = {L'ame d'un peuple Africain: Les Bambara. Leur vie psychique, ethique, sociale, religieuse}, + series = {Bibliotheque Anthropos}, + volume = {1}, + number = {ii}, + pages = {1-240}, + year = {1910}, + key = {Henry (1910)}, + lgcode = {Bambara [bamb1269]} +} +@article{henry1928, + author = {Henry, T.}, + title = {Old Tahiti}, + journal = {Bull. Bishop Mus.}, + volume = {48}, + pages = {1-651}, + year = {1928}, + key = {Henry (1928)}, + lgcode = {Tahitians [tahi1242]} +} +@book{henry1941, + author = {Henry, J.}, + title = {Jungle People}, + address = {New York}, + year = {1941}, + key = {Henry (1941)}, + lgcode = {Aweikoma [xokl1240]} +} +@book{henry1964, + author = {Henry, J.}, + title = {Jungle People: a Kaingang tribe of the highlands of Brazil}, + publisher = {Vintage Books}, + address = {New York}, + pages = {215}, + year = {1964}, + glottolog_ref = {hh:e:Henry:Kaingang}, + key = {Henry (1964)}, + lgcode = {Aweikoma [xokl1240]} +} +@article{herman1950, + author = {Herman, M. W.}, + title = {A Reconstruction of Aboriginal Delaware Culture from Contemporary Sources}, + journal = {Koreber Anth. Soc. Pap.}, + volume = {1}, + pages = {45-77}, + year = {1950}, + key = {Herman (1950)}, + lgcode = {Delaware [unam1242]} +} +@article{herskovits1923, + author = {Herskovits, M. J.}, + title = {Some Property Concepts and Marriage Customs of the Vandau}, + journal = {American Anthropologist}, + volume = {25}, + pages = {376-386}, + year = {1923}, + glottolog_ref = {eballiso2009:9029}, + key = {Herskovits (1923)}, + lgcode = {Ndau [ndau1241]} +} +@article{herskovits1932, + author = {Herskovits, M. J.}, + title = {Some Aspects of Dahomean Ethnology}, + journal = {Africa}, + volume = {5}, + pages = {266-296}, + year = {1932}, + key = {Herskovits (1932)}, + lgcode = {Fon [fonn1241]} +} +@article{herskovits1937a, + author = {Herskovits, M. J.}, + title = {A Note on 'Woman Marriage' in Dahomey}, + journal = {Africa}, + volume = {10}, + pages = {335-341}, + year = {1937}, + key = {Herskovits (1937a)}, + lgcode = {Fon [fonn1241]} +} +@book{herskovits1937b, + author = {Herskovits, M. J.}, + title = {Life in a Haitian Valley}, + address = {New York}, + year = {1937}, + key = {Herskovits (1937b)}, + lgcode = {Haitians [hait1244]} +} +@book{herskovits1938, + author = {Herskovits, M. J.}, + title = {Dahomey. 2v}, + address = {New York}, + year = {1938}, + key = {Herskovits (1938)}, + lgcode = {Fon [fonn1241]} +} +@article{herskovitsandherskovits1933, + author = {Herskovits, M. J., and F. S. Herskovits}, + title = {An Outline of Dahomean Religious Belief}, + journal = {Memoirs, American Anthropological Association}, + volume = {41}, + pages = {1-77}, + year = {1933}, + key = {Herskovits and Herskovits (1933)}, + lgcode = {Fon [fonn1241]} +} +@book{herskovitsandherskovits1934, + author = {Herskovits, M. J., and F. S. Herskovits}, + title = {Rebel Destiny. Among the Bush Negroes of Dutch Guiana}, + address = {New York}, + year = {1934}, + key = {Herskovits and Herskovits (1934)}, + lgcode = {Saramaccan [sara1340]} +} +@book{hertefeltetal1962, + author = {Hertefelt, M. and A. Trouwborst, and J. Scherer}, + title = {Les anciens royaumes de la zone interlacustrine meridionale}, + publisher = {London & Tervuren: Oxford Univ. Press}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {14; Annales du MRAC (Musée Royal de l'Afrique Centrale): monographies ethnographiques, #6}, + year = {1962}, + glottolog_ref = {eballiso2009:23731}, + key = {Hertefelt et al. (1962)}, + lgcode = {Ha [haaa1252]} +} +@book{herzog1957, + author = {Herzog, R.}, + title = {Die Nubier}, + address = {Berlin}, + year = {1957}, + key = {Herzog (1957)}, + lgcode = {Barabra [kenu1236]} +} +@article{hesketh1923, + author = {Hesketh, J.}, + title = {History of the Turtle Mountain Chipewa}, + journal = {Collections of the North Dakota State Historical Society}, + volume = {5}, + pages = {85-154}, + year = {1923}, + key = {Hesketh (1923)}, + lgcode = {Bungi [west1510], Minnesota Ojibwa [redl1238]} +} +@book{heuer1972, + author = {Heuer, Berys}, + title = {Maori Women}, + year = {1972}, + key = {Heuer (1972)}, + lgcode = {Māori [maor1246]} +} +@article{heusch1955, + author = {Heusch, L. de}, + title = {Valeur, monnaie et structuration sociale chez les Nkutshu}, + journal = {Rev. Inst. Sociol., Inst. Solvay}, + volume = {28}, + pages = {i, 73-97}, + year = {1955}, + key = {Heusch (1955)}, + lgcode = {Tetela [tete1250]} +} +@book{hewesandkim1952, + author = {Hewes, G. W., and C. H. Kim}, + title = {Korean Kinship Behavior and Structure}, + address = {Pyongyang}, + series = {Research Monographs on Korea, Ser. F}, + volume = {2}, + pages = {1-20}, + year = {1952}, + key = {Hewes and Kim (1952)}, + lgcode = {Koreans [kore1280]} +} +@book{hewitt1939, + author = {Hewitt, J.N. B.}, + editor = {Swanton, J.R.}, + title = {Notes on the Creek Indians}, + year = {1939}, + key = {Hewitt (1939)}, + lgcode = {Muscogee [cree1270]} +} +@article{heydrich1931, + author = {Heydrich, M.}, + title = {Koreanische LandwirtschAft}, + journal = {Abhandlungen und Berichte, Museum fur Tierkunde and Volkerkunde zu Dresden}, + volume = {19}, + pages = {1-44}, + year = {1931}, + key = {Heydrich (1931)}, + lgcode = {Koreans [kore1280]} +} +@article{heymer1980, + author = {Heymer, A.}, + title = {The Bayaka Pygmies of Central Africa in the Light of Human Ethnological Research Work}, + journal = {Mankind Quarterly}, + volume = {20}, + number = {3-4}, + pages = {173-204}, + year = {1980}, + key = {Heymer (1980)}, + lgcode = {Bayaka [beka1240]} +} +@book{hiatt1965, + author = {Hiatt, L.R.}, + title = {Kinship and Conflict: A Study of an Aboriginal Community in Northern Arnhem Land}, + publisher = {Australian National University}, + address = {Canberra}, + year = {1965}, + key = {Hiatt (1965)}, + lgcode = {Gidjingali [gunn1248]} +} +@article{hiatt1967, + author = {Hiatt, B.}, + title = {The Food Quest and the Economy of the Tasmanian Aborigines}, + journal = {Oceania}, + volume = {38}, + number = {2; 3}, + pages = {99-133; 190-219}, + year = {1967}, + key = {Hiatt (1967)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]} +} +@book{hickerson1962, + author = {Hickerson, H.}, + title = {The Southwestern Chippewa: An Ethnohistorical Study}, + publisher = {American Anthropological Association}, + address = {Menasha, Wisc.}, + series = {Memoirs of the American Anthropological Association}, + number = {92}, + year = {1962}, + key = {Hickerson (1962)}, + lgcode = {Nipigon [cent2136]} +} +@book{hickerson1967, + author = {Hickerson, H.}, + title = {Land Tenure of the Rainy Lake Chippewa at the Beginning of the 19th Century}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Smithsonian Contributions to Anthroprology}, + volume = {2}, + number = {4}, + year = {1967}, + key = {Hickerson (1967)}, + lgcode = {Rainy River Ojibwe [rain1239]} +} +@book{hickey1964, + author = {Hickey, G. C.}, + title = {Village in Vietnam}, + address = {New Haven}, + year = {1964}, + key = {Hickey (1964)}, + lgcode = {Annamese [viet1252]} +} +@book{hicks1974, + author = {Hicks, D.}, + title = {The Tibagy Kaingang}, + year = {1974}, + key = {Hicks (1974)}, + lgcode = {Aweikoma [xokl1240]} +} +@article{hiernauxetal1975, + author = {Hiernaux, J. and P. Rudan and A. Brambati}, + title = {Climate and the Weight/Height Relationship in SubSahara Atica}, + journal = {Annals of Human Biology}, + volume = {2}, + pages = {3-12}, + year = {1975}, + key = {Hiernaux et al. (1975)}, + lgcode = {Baka [baka1272], Bayaka [beka1240], Mbuti [bila1255]} +} +@article{hildebrandt1875, + author = {Hildebrandt, N. M.}, + title = {Vorlaufige Bemerkungen uber die Somal}, + journal = {Zeitschrift für Ethnologie}, + volume = {7}, + pages = {1-15}, + year = {1875}, + key = {Hildebrandt (1875)}, + lgcode = {Esa [nort3051]} +} +@article{hildebrandt1878, + author = {Hildebrandt, J. M.}, + title = {Ethnograpische Notizen uber Wakamba und ihre Nachbaren}, + journal = {Zeitschrift für Ethnologie}, + volume = {10}, + pages = {347-406}, + year = {1878}, + key = {Hildebrandt (1878)}, + lgcode = {Kamba [kamb1297]} +} +@book{hilger1939, + author = {Hilger, M. Inez}, + title = {A social study of one hundred fifty Chippewa Indian families of the White Earth Reservation of Minnesota}, + publisher = {The Catholic University of America Press}, + address = {Washington}, + year = {1939}, + key = {Hilger (1939)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@article{hilger1946, + author = {Hilger, Sister M. Inez.}, + title = {Notes on Cheyenne child life}, + journal = {American Anthropologist}, + volume = {48}, + pages = {60-69}, + year = {1946}, + key = {Hilger (1946)}, + lgcode = {Cheyenne [chey1247]} +} +@book{hilger1951, + author = {Hilger, M. I.}, + title = {Chippewa child life and its cultural background}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Smithsonian Institution, Bureau of American Ethnology, Bulletin}, + number = {146}, + year = {1951}, + key = {Hilger (1951)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@book{hilger1952, + author = {Hilger, M. I.}, + title = {Arapaho Child Life and Its Cultural Background}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {148}, + pages = {1-253}, + year = {1952}, + key = {Hilger (1952)}, + lgcode = {Arapaho [arap1274]} +} +@article{hilger1957, + author = {Hilger, M. I.}, + title = {Araucanian Child Life and Its Cultural Background}, + journal = {Smithsonian Miscellaneous Collection}, + address = {Washington: Smithsonian Institution}, + volume = {133}, + pages = {1-495}, + year = {1957}, + glottolog_ref = {fabreall2009ann:Mapuche645}, + key = {Hilger (1957)}, + lgcode = {Mapuche [mapu1245]} +} +@book{hilger1971, + author = {Hilger, M. I.}, + title = {Together with the Ainu}, + address = {Norman}, + year = {1971}, + key = {Hilger (1971)}, + lgcode = {Ainu [ainu1240]} +} +@article{hill1936, + author = {Hill, Willard W}, + title = {Notes on Pima Land Law and Tenure}, + journal = {American Anthropologist}, + volume = {38}, + pages = {586-589}, + year = {1936}, + key = {Hill (1936)}, + lgcode = {Pima [akim1239]} +} +@article{hill1938, + author = {Hill, W. W.}, + title = {The Agricultural and Hunting Methods of the Navaho Indians}, + journal = {Yale Univ. Publ. Anth.}, + volume = {18}, + pages = {1-194}, + year = {1938}, + key = {Hill (1938)}, + lgcode = {Navajo [nava1243], Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@book{hill1956, + author = {Hill, G. W. et al.}, + title = {Los Guarao del delta Amacuro}, + address = {Caracas}, + year = {1956}, + key = {Hill (1956)}, + lgcode = {Warao [wara1303]} +} +@book{hill1972, + author = {Hill, P.}, + title = {Rural Hausa}, + address = {New York}, + year = {1972}, + key = {Hill (1972)}, + lgcode = {Zazzagawa Hausa [araw1280]} +} +@article{hillandhill1970, + author = {Hill, J. H. and K. C. Hill. 1-9.}, + title = {A note on Uto-Aztecan color terminologies}, + journal = {Anthropological Linguistics}, + volume = {12}, + pages = {231-38}, + year = {1970}, + key = {Hill and Hill (1970)}, + lgcode = {Southern Ute [utee1244]} +} +@article{hilletal1984, + author = {Hill, K. and C. Hawkes and A. M. Hurtado and H. Kaplan}, + title = {Seasonal Variance in the Diet of Ache HunterGatherers of Eastern Paraguay}, + journal = {Human Ecology}, + volume = {12}, + number = {2}, + pages = {101-135}, + year = {1984}, + key = {Hill et al. (1984)}, + lgcode = {Aché [ache1246]} +} +@article{hillner1847, + author = {Hillner, W.}, + title = {Die Liven an der Nordkiiste von Kurland}, + journal = {Bulletin de la Classe historico-philologique de l'Academie Imperiale de sciences de Saint Petersbourg}, + volume = {3}, + pages = {201-6}, + year = {1847}, + key = {Hillner (1847)}, + lgcode = {Livs [livv1244]} +} +@article{hilltout1900, + author = {Hill-Tout, C.}, + title = {Notes on the Sk. qo'mic of British J952 Columbia}, + journal = {Rep. Brit. Assoc. Adv. Sci.}, + volume = {70}, + pages = {472-549}, + year = {1900}, + key = {Hill-Tout (1900)}, + lgcode = {Squamish [squa1248]} +} +@article{hilltout1902, + author = {Hill-Tout, C.}, + title = {Ethnological Studies of the Mainland Halkomelem}, + journal = {Rep. Brit. Assoc. Adv. Sci.}, + volume = {72}, + pages = {355-490}, + year = {1902}, + key = {Hill-Tout (1902)}, + lgcode = {Cowichan [cowi1241], Musqueam [musq1240], Stó:lō [chil1281]} +} +@article{hilltout1904, + author = {Hill-Tout, C.}, + title = {Ethnological Report on the Stseelis and Skaulits Tribes of the Halokmelem Division of the Salish of British Columbia}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + volume = {34}, + pages = {311-376}, + year = {1904}, + key = {Hill-Tout (1904)}, + lgcode = {Cowichan [cowi1241], Stó:lō [chil1281]} +} +@article{hilltout1905, + author = {Hill-Tout, C.}, + title = {Report on the Ethnology of the Stlatlumh}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {35}, + pages = {126-218}, + year = {1905}, + key = {Hill-Tout (1905)}, + lgcode = {Lillooet [lill1248]} +} +@book{hilltout1907, + author = {Hill-Tout, Charles}, + title = {British North America: I. The Far West, The Home of the Salish and Déné}, + publisher = {Archibald Constable}, + address = {London}, + year = {1907}, + key = {Hill-Tout (1907)}, + lgcode = {Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@incollection{hilton1990, + author = {Hilton, S.}, + editor = {Wayne Suttles}, + title = {Haihais, Bella Bella, and Ooweekeeno}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {312-322}, + year = {1990}, + glottolog_ref = {hh:e:Hilton:Haihais}, + key = {Hilton (1990)}, + lgcode = {Heiltsuk [bell1263]} +} +@book{hiltonsimpson1921, + author = {Hilton-Simpson, W. M.}, + title = {Among the Hill-Folk of Algeria}, + address = {London}, + year = {1921}, + key = {Hilton-Simpson (1921)}, + lgcode = {Shawiya [tach1249]} +} +@book{himmelheberandhimmelheber1958, + author = {Himmelheber, H., and U. Himmelheber.}, + title = {Die Dan}, + address = {Stuttgart}, + year = {1958}, + key = {Himmelheber and Himmelheber (1958)}, + lgcode = {Dan [gwee1242]} +} +@article{hinderling195253, + author = {Hinderling, P.}, + title = {Notizen von den Togo-Restvölkern}, + journal = {Tribus}, + volume = {1952-53}, + pages = {361-378}, + year = {1952-53}, + key = {Hinderling (1952-53)}, + lgcode = {Buem [siwu1238]} +} +@article{hinderling1955, + author = {Hinderling, P.}, + title = {Versuch einer Analyse der sozialen Struktur der Matakam}, + journal = {Africa}, + volume = {25}, + pages = {405-426}, + year = {1955}, + key = {Hinderling (1955)}, + lgcode = {Mafa [mafa1239]} +} +@book{hinz1990, + author = {Hinz, E.}, + title = {Das Aztekenreich: Soziale Gliederung und institutioneller Aufbau}, + year = {1990}, + key = {Hinz (1990)}, + lgcode = {Aztec [clas1250]} +} +@incollection{hitchcock1891, + author = {Hitchcock, R.}, + title = {The Ainos of Yezo, Japan}, + booktitle = {Report of the U.S. National Museum for 1889-1890}, + publisher = {U.S. Government Printing Office}, + address = {Washington}, + pages = {428-502}, + year = {1891}, + key = {Hitchcock (1891)}, + lgcode = {Ainu [ainu1240]} +} +@book{hitchcock1966, + author = {Hitchcock, J. T.}, + title = {The Magars of Banyan Hill}, + address = {New York}, + year = {1966}, + key = {Hitchcock (1966)}, + lgcode = {Magar [west2418]} +} +@article{hitchcockandebert1989, + author = {Hitchcock, R. K., and J. I. Ebert}, + title = {Modeling Kalahari Hunter-Gatherer Subsistence and Settlement Systems: Implications for Development Policy and Land Use Planning}, + journal = {Anthropos}, + volume = {84}, + pages = {47-62}, + year = {1989}, + glottolog_ref = {eballiso2009:40535}, + key = {Hitchcock and Ebert (1989)}, + lgcode = {!Ko [huaa1248], !Kung [juho1239], Kua [kuaa1238], Naron [naro1249]} +} +@misc{hitchcockperscomm1990, + author = {Hitchcock}, + year = {1990}, + howpublished = {pers. comm.}, + key = {Hitchcock pers. comm. (1990)}, + lgcode = {!Ko [huaa1248], G/wi [gwii1239], Kua [kuaa1238]} +} +@book{hoben1970, + author = {Hoben, A.}, + title = {Social Stratification in Traditional Amhara Society}, + year = {1970}, + key = {Hoben (1970)}, + lgcode = {Amhara [amha1245]} +} +@book{hoben1973, + author = {Hoben, A.}, + title = {Land Tenure among the Amhara of Ethiopia}, + year = {1973}, + key = {Hoben (1973)}, + lgcode = {Amhara [amha1245]} +} +@article{hobley1902, + author = {Hobley, C. W.}, + title = {Eastern Uganda}, + journal = {Roy. Anth. Inst. Occ. Pap.}, + volume = {1}, + pages = {1-95}, + year = {1902}, + key = {Hobley (1902)}, + lgcode = {Luo [luok1236]} +} +@book{hobson1954, + author = {Hobson, Richard}, + title = {Navajo Acquisitive Values}, + series = {Papers of the Peabody Museum}, + volume = {42}, + number = {3}, + pages = {1-45}, + year = {1954}, + key = {Hobson (1954)}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@article{hocart1922, + author = {Hocart, A. M.}, + title = {The Cult of the Dead in Eddystone of the Solomons}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {55}, + pages = {71-112, 259-305}, + year = {1922}, + key = {Hocart (1922)}, + lgcode = {Simboese [simb1256]} +} +@book{hocart1929, + author = {Hocart, A. M.}, + title = {Lau Islands, Fiji}, + series = {Bull. Bishop Mus.}, + volume = {62}, + pages = {1-240}, + year = {1929}, + key = {Hocart (1929)}, + lgcode = {Lau [laua1243]} +} +@misc{hockett1938, + author = {Hockett, C. F.}, + year = {1938}, + howpublished = {Unpublished field notes}, + key = {Hockett (1938)}, + lgcode = {Kickapoo [kick1244]} +} +@article{hodgeandtaylor1957, + author = {Hodge, W. H. and D. M. Taylor.}, + title = {The Ethnobotany of the Island Caribs of Dominica}, + journal = {Webbia}, + address = {Firenze}, + volume = {12}, + number = {ii}, + pages = {513-644}, + year = {1957}, + key = {Hodge and Taylor (1957)}, + lgcode = {Callinago [isla1278]} +} +@book{hodgson1847, + author = {Hodgson, B. H.}, + title = {On the Kocch, Bodo and Dhimál tribes}, + publisher = {J. Thomas Baptist Mission Press}, + address = {Calcutta}, + pages = {221}, + year = {1847}, + glottolog_ref = {hh:es:Hodgson:Kocch-Bodo-Dhimal}, + key = {Hodgson (1847)}, + lgcode = {Kachari [kach1279]} +} +@article{hodgson1933, + author = {Hodgson, A. G. O.}, + title = {Notes on the Achewa and Ngoni}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {63}, + pages = {123-164}, + year = {1933}, + key = {Hodgson (1933)}, + lgcode = {Chewa [chew1246]} +} +@article{hoebel1935, + author = {Hoebel, E. Adamson}, + title = {The Sun Dance of the Hekandika Shoshone}, + journal = {American Anthropologist}, + volume = {37}, + pages = {570-581}, + year = {1935}, + key = {Hoebel (1935)}, + lgcode = {Hukundika [nort2955]} +} +@article{hoebel1939, + author = {Hoebel, E. A.}, + title = {Comanche and Hukandika Shoshone Relationship Systems}, + journal = {American Anthropologist}, + volume = {41}, + pages = {440-457}, + year = {1939}, + key = {Hoebel (1939)}, + lgcode = {Hukundika [nort2955]} +} +@article{hoebel1940, + author = {Hoebel, E. A.}, + title = {The Political Organization and Law-Ways of the Comanche Indians}, + journal = {Memoirs of the American Anthropological Association}, + volume = {54}, + pages = {1-149}, + year = {1940}, + key = {Hoebel (1940)}, + lgcode = {Comanche [coma1245]} +} +@book{hoebel1960, + author = {Hoebel, E. A.}, + title = {The Cheyennes}, + address = {New York}, + year = {1960}, + key = {Hoebel (1960)}, + lgcode = {Cheyenne [chey1247]} +} +@article{hoernl1918, + author = {Hoernl‚ A. W.}, + title = {Certain Rites of Transition and the Conception of !Nau among the Hottentots}, + journal = {Harvard African Studies}, + volume = {2}, + pages = {65-82}, + year = {1918}, + glottolog_ref = {eballiso2009:48080}, + key = {Hoernl (1918)}, + lgcode = {Nama [nama1265]} +} +@article{hoernl1925, + author = {Hoernl, A. W.}, + title = {The Social Organization of the Nama Hottentots}, + journal = {American Anthropologist}, + volume = {27}, + pages = {1-24}, + year = {1925}, + key = {Hoernl (1925)}, + lgcode = {Nama [nama1265]} +} +@article{hoffman1893, + author = {Hoffman, W. J.}, + title = {The Menomini Indians}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {14}, + pages = {i, 11-328}, + year = {1893}, + key = {Hoffman (1893)}, + lgcode = {Menominee [meno1252]} +} +@book{hofmayr1925, + author = {Hofmayr, Wilhelm}, + title = {Die Schilluk. Geschichte, Religion und Leben eines Nilotenstammes}, + address = {Wien}, + year = {1925}, + key = {Hofmayr (1925)}, + lgcode = {Shilluk [shil1265]} +} +@article{hogbin1931a, + author = {Hogbin, H. I.}, + title = {The sexual life of the natives of Ontong Java}, + journal = {Journal of the Polynesian Society}, + volume = {40}, + pages = {23-34}, + year = {1931}, + key = {Hogbin (1931a)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin1931b, + author = {Hogbin, H. I.}, + title = {The Social Organization of Ontong Java}, + journal = {Oceania}, + volume = {1}, + pages = {399-425}, + year = {1931}, + key = {Hogbin (1931b)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin1931c, + author = {Hogbin, H. Ian.}, + title = {Education at Ontong Java, Solomon Islands}, + journal = {American Anthropologist}, + volume = {33}, + pages = {601-14}, + year = {1931}, + key = {Hogbin (1931c)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin1935, + author = {Hogbin, Ian.}, + title = {Native culture of Wogeo}, + journal = {Oceania}, + volume = {5}, + pages = {308-37}, + year = {1935}, + key = {Hogbin (1935)}, + lgcode = {Wogeo [woge1237]} +} +@book{hogbin1938, + author = {Hogbin, H. I.}, + title = {Law and Order in Polynesia}, + address = {London}, + year = {1938}, + key = {Hogbin (1938)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin193839, + author = {Hogbin, H. I.}, + title = {Tillage and Collection}, + journal = {Oceania}, + volume = {9}, + pages = {127-151, 286-325}, + year = {1938-39}, + key = {Hogbin (1938-39)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin1943, + author = {Hogbin, H. I.}, + title = {A New Guinea Infancy}, + journal = {Oceania}, + volume = {13}, + pages = {285-309}, + year = {1943}, + key = {Hogbin (1943)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin1945, + author = {Hogbin, H. I.}, + title = {Marriage in Wogeo}, + journal = {Oceania}, + volume = {15}, + pages = {324-352}, + year = {1945}, + key = {Hogbin (1945)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin194647, + author = {Hogbin, H. I.}, + title = {Sex and Marriage in Busama}, + journal = {Oceania}, + volume = {17-18}, + year = {1946-47}, + key = {Hogbin (1946-47)}, + lgcode = {Busama [buga1250]} +} +@article{hogbin1946a, + author = {Hogbin, H. I.}, + title = {A New Guinea Childhood}, + journal = {Oceania}, + volume = {16}, + pages = {275-296}, + year = {1946}, + key = {Hogbin (1946a)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin1946b, + author = {Hogbin, H. I.}, + title = {Local Government for New Guinea}, + journal = {Oceania}, + volume = {17}, + pages = {38-66}, + year = {1946}, + key = {Hogbin (1946b)}, + lgcode = {Busama [buga1250]} +} +@article{hogbin1946c, + author = {Hogbin, H. I.}, + title = {Puberty to Marriage}, + journal = {Oceania}, + volume = {16}, + pages = {185-209}, + year = {1946}, + key = {Hogbin (1946c)}, + lgcode = {Wogeo [woge1237]} +} +@book{hogbin1965, + author = {Hogbin, H. I.}, + title = {A Guadalcanal Society: The Kaoka Speakers}, + address = {New York}, + year = {1965}, + key = {Hogbin (1965)}, + lgcode = {Kaoka [long1395]} +} +@article{hohnel1890, + author = {Hohnel, L. von.}, + title = {Ostaquatorial-Afrika}, + journal = {Petermanns Mitt., Erganzungsh.}, + volume = {21}, + number = {xcix}, + pages = {1-40}, + year = {1890}, + key = {Hohnel (1890)}, + lgcode = {Galab [daas1238]} +} +@book{holas1957, + author = {Holas, B.}, + title = {Les Senoufo (y compris les Minianka)}, + publisher = {Paris: Presses Universitaires de France pour l'International African Inst. (IAI)}, + address = {Paris}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + volume = {5}, + year = {1957}, + glottolog_ref = {eballiso2009:20508}, + key = {Holas (1957)}, + lgcode = {Minianka [mama1271], Senufo [ceba1235]} +} +@book{holas1962, + author = {Holas, B.}, + title = {Les Toura}, + address = {Paris}, + year = {1962}, + key = {Holas (1962)}, + lgcode = {Tura [tour1242]} +} +@article{holder1947, + author = {Holder, Preston.}, + title = {The Motilones}, + journal = {Washington Academy of Sciences Journal}, + volume = {37}, + pages = {417-27}, + year = {1947}, + key = {Holder (1947)}, + lgcode = {Barí (Motilon) [yukp1241]} +} +@article{holding1942, + author = {Holding, E. M.}, + title = {Some Preliminary Notes on Meru Age Grades}, + journal = {Man}, + volume = {42}, + pages = {58-65}, + year = {1942}, + glottolog_ref = {eballiso2009:4509}, + key = {Holding (1942)}, + lgcode = {Meru [meru1245]} +} +@article{holemans1959, + author = {Holemans, K.}, + title = {Etudes sur l'alimentation en milieu coutumier du Kwango}, + journal = {Annales de la Soci‚t‚ Belge de M‚decine Tropicale}, + volume = {39}, + pages = {361-374}, + year = {1959}, + key = {Holemans (1959)}, + lgcode = {Suku [suku1259]} +} +@book{holleman1952, + author = {Holleman, J. F.}, + title = {Shona Customary Law}, + publisher = {Cape Town: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {Cape Town}, + year = {1952}, + glottolog_ref = {eballiso2009:26214}, + key = {Holleman (1952)}, + lgcode = {Shona [shon1251]} +} +@book{hollis1905, + author = {Hollis, A. C.}, + title = {The Masai: Their Language and Folklore}, + publisher = {Oxford: Clarendon Press}, + address = {Oxford}, + year = {1905}, + glottolog_ref = {guldemann:2133}, + key = {Hollis (1905)}, + lgcode = {Maasi [masa1300]} +} +@book{hollis1909, + author = {Hollis, A. C.}, + title = {The Nandi}, + address = {London}, + year = {1909}, + key = {Hollis (1909)}, + lgcode = {Nandi [nand1266]} +} +@article{holloman1969, + author = {Holloman, R.}, + title = {Acculturation and the Cuna}, + journal = {Field Museum of Natural History Bulletin}, + volume = {40}, + number = {7}, + pages = {4-9}, + year = {1969}, + key = {Holloman (1969)}, + lgcode = {Guna [bord1248]} +} +@article{holm1911, + author = {Holm, G.}, + title = {Ethnological Sketch of the Angmagsalik Eskimo}, + journal = {Medd. om Gronland}, + volume = {39}, + pages = {1-147}, + year = {1911}, + key = {Holm (1911)}, + lgcode = {Tasiilaq [tunu1234]} +} +@article{holm1914, + author = {Holm, G.}, + title = {Ethnological Sketch of the Angmagsalik Eskimo}, + journal = {Meddelelser om Gronland}, + volume = {39}, + pages = {1-147}, + year = {1914}, + key = {Holm (1914)}, + lgcode = {Tasiilaq [tunu1234]} +} +@book{holmberg1950, + author = {Holmberg, A. R.}, + title = {Nomads of the Long Bow: The Siriono of Eastern Bolivia}, + publisher = {U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Smithsonian Institution Institute of Social Anthropology Publication}, + number = {10}, + pages = {1-104}, + year = {1950}, + key = {Holmberg (1950)}, + lgcode = {Sirionó [siri1273]} +} +@book{holmberg1985, + author = {Holmberg, H. J.}, + editor = {M. W. Falk}, + title = {Holmberg's Ethnographic Sketches}, + publisher = {University of Alaska Press}, + address = {Fairbanks}, + year = {1985}, + key = {Holmberg (1985)}, + lgcode = {Koniag [koni1262]}, + note = {translated by F. Jaensch} +} +@article{holmer1951, + author = {Holmer, N. M.}, + title = {Cuna Chrestomathy}, + journal = {Etnologiska Studier}, + publisher = {Göteborg: Etnogrfiska Muséet}, + address = {Göteborg}, + series = {Etnologiska Studier}, + volume = {18}, + pages = {1-191}, + year = {1951}, + glottolog_ref = {fabreall2009ann:Chibcha_kuna074}, + key = {Holmer (1951)}, + lgcode = {Guna [bord1248]} +} +@book{holmes1924, + author = {Holmes, J. H.}, + title = {In Primitive New Guinea}, + address = {New York}, + year = {1924}, + key = {Holmes (1924)}, + lgcode = {Purari [pura1257]} +} +@article{holt1946, + author = {Holt, C.}, + title = {Shasta Ethnography}, + journal = {Anth. Rec.}, + volume = {3}, + pages = {299-350}, + year = {1946}, + key = {Holt (1946)}, + lgcode = {Shasta [shas1239], Shasta (East) [shas1239], Shasta (West) [shas1239]} +} +@article{holtker1930, + author = {Holtker, G.}, + title = {Die Familie bei den Azteken in Altemexiko}, + journal = {Anthropos}, + volume = {25}, + pages = {465-526}, + year = {1930}, + key = {Holtker (1930)}, + lgcode = {Aztec [clas1250]} +} +@book{holub1895, + author = {Holub, E.}, + title = {Seven Years in South Africa, v. 2}, + address = {London}, + year = {1895}, + key = {Holub (1895)}, + lgcode = {Lozi [lozi1239]} +} +@misc{holybiblend, + title = {Holy Bible. Old Testament}, + key = {Holy_Bible (nd)}, + lgcode = {Hebrews [anci1244]} +} +@article{honigmann1946, + author = {Honigmann, J. J.}, + title = {Ethnography and Acculturation of the Fort Nelson Slave}, + journal = {Yale University Publications in Anthropology}, + volume = {33}, + pages = {1-169}, + year = {1946}, + key = {Honigmann (1946)}, + lgcode = {DeneTha [sout2959]} +} +@book{honigmann1949, + author = {Honigmann, J. J.}, + title = {Culture and Ethos of Kaska Society}, + publisher = {Yale University Press}, + address = {New Haven, Conn.}, + series = {Yale University Publications in Anthropology}, + number = {40}, + pages = {1-368}, + year = {1949}, + key = {Honigmann (1949)}, + lgcode = {Attawapiskat Cree [swam1239], Kaska [kask1239]} +} +@misc{honigmann1953, + author = {Honigmann, J. J.}, + title = {Information for Pakistan}, + year = {1953}, + howpublished = {Unpublished Manuscript}, + key = {Honigmann (1953)}, + lgcode = {Yusufzai [yusu1238]} +} +@book{honigmann1954, + author = {Honigmann, J. J.}, + title = {The Kaska Indians: An Ethnographic Reconstruction}, + journal = {Yale University Publications in Anthropology}, + volume = {51}, + pages = {1-163}, + year = {1954}, + key = {Honigmann (1954)}, + lgcode = {Kaska [kask1239]} +} +@article{honigmann1956a, + author = {Honigmann, J. J.}, + title = {Notes on Sarsi Kin Behavior}, + journal = {Anthropologica}, + address = {Ottawa}, + volume = {2}, + pages = {17-38}, + year = {1956}, + key = {Honigmann (1956a)}, + lgcode = {Sarcee [sars1236]} +} +@article{honigmann1956b, + author = {Honigmann, J. J.}, + title = {The Attawapiskat Swampy Cree: An Ethnographic Reconstruction}, + journal = {Anthropological Papers of the University of Alaska}, + volume = {5}, + pages = {23-82}, + year = {1956}, + key = {Honigmann (1956b)}, + lgcode = {Attawapiskat Cree [swam1239]} +} +@incollection{honigmann1957, + author = {Honigmann, J. J.}, + editor = {S. Maron}, + title = {Women in West Pakistan}, + booktitle = {Pakistan: Society and Culture}, + address = {New Haven}, + pages = {154-176}, + year = {1957}, + key = {Honigmann (1957)}, + lgcode = {Punjabi [west2386]} +} +@inbook{honigmann1958, + author = {Honigmann, J. J.}, + title = {Third Village: Punjab Province, Chak 41MB}, + booktitle = {Three Pakistan Villages}, + address = {Chapel Hill}, + pages = {68-95}, + year = {1958}, + key = {Honigmann (1958)}, + lgcode = {Punjabi [west2386]} +} +@incollection{honigmann1981, + author = {Honigmann, J. J.}, + editor = {Helm, J.}, + title = {West Main Cree}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {217-230}, + year = {1981}, + glottolog_ref = {hh:e:Honigmann:West-Main-Cree}, + key = {Honigmann (1981)}, + lgcode = {Attawapiskat Cree [swam1239]} +} +@book{hooper1853, + author = {Hooper, W. H.}, + title = {Ten Months among the Tents of the Tuski: With Incidents of an Arctic Boat Expedition in Search of Sir John Franklin, as Far as the Mackenzie River, and Cape Bathurst}, + publisher = {John Murray}, + address = {London}, + year = {1853}, + key = {Hooper (1853)}, + lgcode = {Délįne [nort2942]} +} +@article{hooper1920, + author = {Hooper, L.}, + title = {The Cahuilla Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {16}, + pages = {316-380}, + year = {1920}, + key = {Hooper (1920)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Cupeño [cupe1243]} +} +@book{hopen1958, + author = {Hopen, C. E.}, + title = {The Pastoral Fulbe Family in Gwandu}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + year = {1958}, + glottolog_ref = {eballiso2009:43426}, + key = {Hopen (1958)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@book{horton1948, + author = {Horton, D.}, + title = {The Mundurucu}, + year = {1948}, + key = {Horton (1948)}, + lgcode = {Munduruku [mund1330]} +} +@book{hourst1899, + author = {Hourst, L.}, + title = {The Exploration of the Niger}, + address = {New York}, + year = {1899}, + key = {Hourst (1899)}, + lgcode = {Aulliminden [ioul1238]} +} +@book{howard1938, + author = {Howard, J. H.}, + title = {The Ojibwa woman}, + publisher = {Columbia University Press}, + address = {New York}, + year = {1938}, + key = {Howard (1938)} +} +@article{howard1961, + author = {Howard, J. H.}, + title = {The Identity and Demography of the Plains-Ojibwa}, + journal = {Plains Anthropologist}, + volume = {67}, + pages = {xiii, 171-178}, + year = {1961}, + key = {Howard (1961)}, + lgcode = {Bungi [west1510]} +} +@article{howard1965a, + author = {Howard, J. H.}, + title = {The Plains-Ojbiwa or Bungi}, + journal = {Anth. Pap. South Dakota Mus.}, + volume = {1}, + pages = {1-165}, + year = {1965}, + key = {Howard (1965a)}, + lgcode = {Bungi [west1510]} +} +@article{howard1965b, + author = {Howard, J. H.}, + title = {The Ponca Tribe}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {195}, + pages = {1-191}, + year = {1965}, + key = {Howard (1965b)}, + lgcode = {Ponca [ponc1241]} +} +@article{howardandhoward1964, + author = {Howard, A., and I. Howard.}, + title = {Pre-Marital Sex and Social Control Among the Rotumans}, + journal = {American Anthropologist}, + volume = {66}, + pages = {266-283}, + year = {1964}, + key = {Howard and Howard (1964)}, + lgcode = {Rotumans [rotu1241]} +} +@article{howell190810, + author = {Howell, W.}, + title = {The Sea Dyak}, + journal = {Sarawak Gazette}, + volume = {38-50}, + year = {1908-10}, + key = {Howell (1908-10)}, + lgcode = {Iban [iban1264]} +} +@article{howell1941, + author = {Howell, P. P.}, + title = {The Shilluk Settlement}, + journal = {Sudan Notes and Records}, + volume = {24}, + pages = {47-66}, + year = {1941}, + glottolog_ref = {eballiso2009:54993}, + key = {Howell (1941)}, + lgcode = {Shilluk [shil1265]} +} +@article{howell1951, + author = {Howell, P. P.}, + title = {Notes on the Ngork Dinka}, + journal = {Sudan Notes and Records}, + volume = {32}, + pages = {240-293}, + year = {1951}, + key = {Howell (1951)}, + lgcode = {Dinka [sout2832]} +} +@book{howell1979, + author = {Howell, N.}, + title = {Demography of the Dobe Area !Kung}, + publisher = {Academic Press}, + address = {New York}, + year = {1979}, + key = {Howell (1979)}, + lgcode = {!Kung [juho1239]} +} +@misc{howellnd, + author = {Howell, N.}, + title = {Estimating Absolute Age in a Remote and Nonliterate Population}, + address = {Princeton}, + howpublished = {Manuscript}, + key = {Howell (nd)}, + lgcode = {!Kung [juho1239]} +} +@book{howells1937, + author = {Howells, W. W.}, + title = {Anthropometry of the Natives of Arnhem Land and the Australian Race Problem}, + publisher = {Peabody Museum}, + address = {Cambridge, Mass.}, + series = {Papers of the Peabody Museum of AmericAn Archaeology and Ethnology}, + volume = {16}, + number = {1}, + year = {1937}, + key = {Howells (1937)}, + lgcode = {Larikia [lara1258], Nunggubuyu [nung1290], Tiwi [tiwi1244], Yolngu, Dhuwal [dhuw1249]} +} +@article{howitt1891, + author = {Howitt, A. W.}, + title = {The Dieri and Other Kindred Tribes of Central Australia}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + volume = {20}, + pages = {30-104}, + year = {1891}, + glottolog_ref = {hh:e:Howitt:Dieri}, + key = {Howitt (1891)}, + lgcode = {Diyari [dier1241]} +} +@book{howitt1904, + author = {Howitt, A. W.}, + title = {The Native Tribes of Sout-East Australia}, + publisher = {MacMillan}, + address = {London}, + year = {1904}, + key = {Howitt (1904)}, + lgcode = {Diyari [dier1241], Kurnai [gana1278], Ngiyambaa [wang1291]} +} +@incollection{hrdlicka1909, + author = {Hrdlička, A.}, + editor = {S. Williams}, + title = {On the Stature of the Indians of the Southwest and of Northern Mexico}, + booktitle = {Putnam Anniversary Volume: Anthropological Essays Presented to Fredric Ward Putnam in Honor of His Seventieth Birthday, April 16, 1909}, + publisher = {AMS Press}, + address = {New York}, + pages = {405-426}, + year = {1909}, + key = {Hrdlička (1909)}, + lgcode = {Hualapai [wala1270], Lipan Apache [lipa1241], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Ute [utee1244]} +} +@incollection{hrdlicka1930, + author = {Hrdlička, A.}, + title = {Older Anthropometric Data on the Western Eskimo: Stature and Other Measurements}, + booktitle = {46th Annual Report of the Bureau of American Ethnology, 1928-1929}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {228-253}, + year = {1930}, + key = {Hrdlička (1930)}, + lgcode = {Aivilingmiut Inuit [cari1277], Kuskowagmut [kusk1241], Nunivak [kusk1241], Sivokamiut Inuit [cent2128]} +} +@article{hrdlicka1935, + author = {Hrdlicka, Ales.}, + title = {The pueblos, with comparative data on the bulk of the tribes of the southwest northern Mexico}, + journal = {American Journal of Physical Anthropology}, + volume = {30}, + pages = {235-460}, + year = {1935}, + key = {Hrdlicka (1935)}, + lgcode = {Hopi [hopi1249]} +} +@book{hristoljubova1981, + editor = {Hristoljubova, L. S.}, + title = {Sel'skie poselenija Udmurtii v XIX-XX vv (Rural Settlements of the Udmurt in the Nineteenth and Twentieth Centuries)}, + address = {Izhevsk}, + year = {1981}, + key = {Hristoljubova (1981)}, + lgcode = {Udmurt [sout2681]} +} +@article{hudson1938, + author = {Hudson, A. E.}, + title = {Kazak Social Structure}, + journal = {Yale University Publications in Anthropology}, + volume = {20}, + pages = {1-109}, + year = {1938}, + key = {Hudson (1938)}, + lgcode = {Kazakh [kaza1248]} +} +@phdthesis{hudson1990, + author = {Hudson, J. L.}, + title = {Advancing Methods in Zooarchaeology: An Ethnoarchaeological Study among the Aka}, + school = {Department of Anthropology, University of California, Santa Barbara}, + year = {1990}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Hudson (1990)}, + lgcode = {Aka [bamb1264]} +} +@incollection{hudsonandbeacon1941, + author = {Hudson, A. E., and E. Bacon}, + editor = {L. Spier}, + title = {Social Control and the Individual in Eastern Hazara Culture}, + booktitle = {Language, Culture, and Personality}, + address = {Menasha}, + pages = {239-258}, + year = {1941}, + key = {Hudson and Beacon (1941)}, + lgcode = {Hazara [haza1239]} +} +@article{hueting1921, + author = {Hueting, A.}, + title = {De Tobeloreezen in hun denken en doen}, + journal = {Bijdragen tot de Taal-, Land-, en Volkenkunde}, + volume = {77; 78}, + pages = {217-358; 137-342}, + year = {1921}, + key = {Hueting (1921)}, + lgcode = {Tobelorese [tobe1252]} +} +@article{hughes1958, + author = {Hughes, C. C.}, + title = {An Eskimo Deviant from the "Eskimo" Type of Social Organization}, + journal = {American Anthropologist}, + volume = {60}, + pages = {1140-1147}, + year = {1958}, + key = {Hughes (1958)}, + lgcode = {Sivokakmeit [cent2128]} +} +@book{hughes1960, + author = {Hughes, C. C.}, + title = {The Eskimo Village in the Modern World}, + publisher = {Cornell University Press}, + address = {Ithaca, New York}, + year = {1960}, + key = {Hughes (1960)}, + lgcode = {Sivokakmeit [cent2128], Sivokamiut Inuit [cent2128]} +} +@book{hughesandvanvelsen1955, + author = {Hughes, A. J. B., and J. van Velsen}, + title = {The Ndebele}, + address = {London}, + year = {1955}, + key = {Hughes and van Velsen (1955)}, + lgcode = {Ndebele [nort2795]} +} +@book{hulstaert1938, + author = {Hulstaert, G.}, + title = {Le mariage des Nkundo'}, + address = {Brussels}, + series = {Mémoires de l'Institut Royal Colonial Belge}, + volume = {8}, + pages = {1-520}, + year = {1938}, + key = {Hulstaert (1938)}, + lgcode = {Nkundo [nkun1238]} +} +@article{hulstaert1971, + author = {Hulstaert, G.}, + title = {Sur quelques croyances magiques des Mongo}, + journal = {Cahiers des Religion Africaines}, + volume = {5}, + number = {9}, + pages = {145-167}, + year = {1971}, + key = {Hulstaert (1971)}, + lgcode = {Nkundo [nkun1238]} +} +@article{hultkrantz1957, + author = {Hultkrantz, A.}, + title = {The Indians of Yellowstone Park}, + journal = {Annals of Wyoming}, + volume = {29}, + pages = {125-149}, + year = {1957}, + key = {Hultkrantz (1957)}, + lgcode = {Tukudika [nort2955]} +} +@article{hultkrantz1958, + author = {Hultkrantz, A.}, + title = {Tribal Divisions Within the Eastern Shoshoni of Wyoming}, + journal = {Proc. Intern. Congr. Americ.}, + volume = {32}, + pages = {148-154}, + year = {1958}, + key = {Hultkrantz (1958)}, + lgcode = {Wind River Eastern Shoshone [nort2955]} +} +@book{humphreys1926, + author = {Humphreys, C. B.}, + title = {The Southern New Hebrides}, + address = {Cambridge}, + year = {1926}, + key = {Humphreys (1926)}, + lgcode = {Eromangans [siee1239], Tannese [sout2869]} +} +@book{hunt1940, + author = {Hunt, George T.}, + title = {The Wars of the Iroquois: A Study in Intertribal Trade Relations}, + publisher = {University of Wisconsin}, + address = {Madison}, + year = {1940}, + key = {Hunt (1940)}, + lgcode = {Seneca [sene1264]} +} +@book{hunter1936, + author = {Hunter, M.}, + title = {Reaction to Conquest}, + address = {London}, + year = {1936}, + key = {Hunter (1936)}, + lgcode = {Pondo [mpon1252]} +} +@book{huntetal1949, + author = {Hunt, E. E. Jr. and D. M. Schneider and N. R. Kidder and W. D. Stevens}, + title = {The Micronesians of Yap and Their Depopulation}, + address = {Washington}, + year = {1949}, + key = {Hunt et al. (1949)}, + lgcode = {Yapese [yape1248]} +} +@article{huntingford1929, + author = {Huntingford, G. W. B.}, + title = {Modern Hunters: Some Accounts of the KameliloKapchepkendi Dorobo (Okiek) of Kenya Colony}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + volume = {59}, + pages = {333-378}, + year = {1929}, + key = {Huntingford (1929)}, + lgcode = {Dorobo [okie1245]} +} +@article{huntingford1942, + author = {Huntingford, G. W. B.}, + title = {The Social Organization of the Dorobo}, + journal = {African Studies}, + volume = {1}, + pages = {183-200}, + year = {1942}, + key = {Huntingford (1942)}, + lgcode = {Dorobo [okie1245]} +} +@article{huntingford1950, + author = {Huntingford, G. W. B.}, + title = {Nandi Work and Culture}, + journal = {Colonial Research Studies}, + publisher = {London}, + volume = {4}, + pages = {1-126}, + year = {1950}, + glottolog_ref = {eballiso2009:5312}, + key = {Huntingford (1950)}, + lgcode = {Nandi [nand1266]} +} +@article{huntingford1951, + author = {Huntingford, G. W. B.}, + title = {The Social Institutions of the Dorobo}, + journal = {Anthropos}, + volume = {46}, + pages = {1-48}, + year = {1951}, + key = {Huntingford (1951)}, + lgcode = {Dorobo [okie1245]} +} +@book{huntingford1953a, + author = {Huntingford, G. W. B.}, + title = {The Northern Nilo-Hamites}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {8}, + year = {1953}, + glottolog_ref = {eballiso2009:42668}, + key = {Huntingford (1953a)}, + lgcode = {Bari [ligo1238], Kakwa [kakw1240], Kuku [kuku1285], Mondari [mand1425], Pojulu [poju1239]} +} +@book{huntingford1953b, + author = {Huntingford, G. W. B.}, + title = {The Southern Nilo-Hamites}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {8}, + year = {1953}, + glottolog_ref = {eballiso2009:42668}, + key = {Huntingford (1953b)}, + lgcode = {Dorobo [okie1245], Goroa [goro1270], Hill Suk [west2492], Iraqw [iraq1241], Keyu [keiy1238], Kipsigis [kips1239], Maasi [masa1300], Nandi [nand1266], Plains Suk [east2420], Sandawe [sand1273], Tatoga [dato1239]} +} +@book{huntingford1953c, + author = {Huntingford, G. W. B.}, + title = {The Nandi of Kenya}, + address = {London}, + year = {1953}, + key = {Huntingford (1953c)}, + lgcode = {Nandi [nand1266]} +} +@article{huntingford1954, + author = {Huntingford, G. W. B.}, + title = {The Political Organization of the Dorobo}, + journal = {Anthropos}, + volume = {46}, + pages = {123-148}, + year = {1954}, + key = {Huntingford (1954)}, + lgcode = {Dorobo [okie1245]} +} +@article{huntingford1955a, + author = {Huntingford, G. W. B.}, + title = {The Economic Life of the Dorobo}, + journal = {Anthropos}, + volume = {50}, + pages = {602-634}, + year = {1955}, + glottolog_ref = {eballiso2009:42664}, + key = {Huntingford (1955a)}, + lgcode = {Dorobo [okie1245]} +} +@book{huntingford1955b, + author = {Huntingford, G. W. B.}, + title = {The Galla of Ethiopia: the kingdoms of Kafa and Janjero}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, North-Eastern Africa}, + volume = {2}, + year = {1955}, + glottolog_ref = {eballiso2009:42663}, + key = {Huntingford (1955b)}, + lgcode = {Arusi [bora1271], Gibe [west2721], Kafa [kafa1242], Macha [west2721], Yem [toba1264]} +} +@article{hurault1959, + author = {Hurault, J.}, + title = {Etude demographique comparee des Indiens Oayana et des noirs refugies Boni de Haut-Mnaroni}, + journal = {Population}, + volume = {14}, + pages = {509-534}, + year = {1959}, + key = {Hurault (1959)}, + lgcode = {Saramaccan [sara1340]} +} +@article{hurel1911, + author = {Hurel, E.}, + title = {Religion et vie domestique des Bakerewe}, + journal = {Anthropos}, + volume = {6}, + pages = {62-94, 276-301}, + year = {1911}, + glottolog_ref = {eballiso2009:14829}, + key = {Hurel (1911)}, + lgcode = {Kerewe [kere1283]} +} +@article{hurtadoandhill1986, + author = {Hurtado, A. M., and K. R. Hill}, + title = {The Cuiva: Hunter-Gatherers of Western Venezuela}, + journal = {Anthroquest}, + volume = {36}, + number = {1}, + pages = {14-22}, + year = {1986}, + key = {Hurtado and Hill (1986)}, + lgcode = {Guahibo [guah1255]} +} +@article{hurtadoandhill1990, + author = {Hurtado, A. M., and K. R. Hill}, + title = {Seasonality in a foraging society: variation in diet, work effort, fertility and sexual division of labor among the Hiwi of Venezuela}, + journal = {Journal of Anthropological Research}, + address = {Albuquerque}, + volume = {46}, + pages = {293-346}, + year = {1990}, + glottolog_ref = {fabreall2009ann:Guahib0_cuiba18}, + key = {Hurtado and Hill (1990)}, + lgcode = {Guahibo [guah1255]} +} +@book{hutereau1909, + author = {Hutereau, A.}, + title = {Notes sur la vie familiale et juridique de quelques populations du Congo Belge}, + publisher = {Tervuren}, + series = {Annales du Musée du Congo, ethnographie et anthropologie, série 4: documents ethnographiques congolais}, + volume = {1}, + pages = {ii,61-84}, + year = {1909}, + glottolog_ref = {eballiso2009:38907}, + key = {Hutereau (1909)}, + lgcode = {Baboa [bwaa1238], Mangbetu [nucl1420]} +} +@article{hutereau1910a, + author = {Hutereau, A.}, + title = {Documents ethnographiques congolaises: Les MAfoto}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {34}, + pages = {138-152, 173-197}, + year = {1910}, + glottolog_ref = {hh:e:Hutereau:Mafoto}, + key = {Hutereau (1910a)}, + lgcode = {Poto [luse1252]} +} +@article{hutereau1910b, + author = {Hutereau, A.}, + title = {Les Manyanga}, + journal = {Bull Soc. Roy. Belge Geog.}, + volume = {24}, + pages = {15-39}, + year = {1910}, + glottolog_ref = {hh:e:Hutereau:Manyanga}, + key = {Hutereau (1910b)}, + lgcode = {Sundi [koon1244]} +} +@article{hutter1899, + author = {Hutter, H.}, + title = {Politische und soziale Verhaltnisse bei den Graslandstammen Nordkameruns}, + journal = {Globus}, + volume = {76}, + pages = {284-289, 303-309}, + year = {1899}, + key = {Hutter (1899)}, + lgcode = {Bali Nyonga [mung1266]} +} +@article{hutter1907, + author = {Hutter, F.}, + title = {Bamum}, + journal = {Globus}, + volume = {96}, + pages = {1-6, 26-32, 44-47}, + year = {1907}, + key = {Hutter (1907)}, + lgcode = {Bamum [bamu1253]} +} +@book{hutton1921a, + author = {Hutton, J. H.}, + title = {The Angami Nagas}, + address = {London}, + year = {1921}, + key = {Hutton (1921a)}, + lgcode = {Angami [anga1288]} +} +@book{hutton1921b, + author = {Hutton, J. H.}, + title = {The Sema Nagas}, + publisher = {London: MacMillan}, + address = {London}, + pages = {586}, + year = {1921}, + glottolog_ref = {hh:ew:Hutton:Sema}, + key = {Hutton (1921b)}, + lgcode = {Sema [sumi1235]} +} +@book{huxley1964, + author = {Huxley, M. and C. Capa.}, + title = {Farewell to Eden}, + address = {New York}, + year = {1964}, + key = {Huxley (1964)}, + lgcode = {Amahuaca [amah1246]} +} +@book{hyde1974, + author = {Hyde, G.F.}, + title = {The Pawnee Indians}, + year = {1974}, + key = {Hyde (1974)}, + lgcode = {Pawnee [pawn1254]} +} +@book{ichikawa1978, + author = {Ichikawa, M.}, + title = {The residential groups of the Mbuti pygmies}, + publisher = {National Museum of Ethnology}, + address = {Osaka}, + series = {Senri Ethnological Studies}, + volume = {1}, + number = {1}, + pages = {131-188}, + year = {1978}, + glottolog_ref = {hh:e:Ichikawa:Mbuti:Residential}, + key = {Ichikawa (1978)}, + lgcode = {Mbuti [bila1255]} +} +@book{ihle1929, + author = {Ihle, A.}, + title = {Das alte Königreich Kongo}, + publisher = {Verlag der Werkgemeinschaft}, + address = {Leipzig}, + series = {Studien zur Völkerkunde}, + volume = {1}, + year = {1929}, + glottolog_ref = {eballiso2009:18273}, + key = {Ihle (1929)}, + lgcode = {Bakongo [sans1272]} +} +@book{iliff1954, + author = {Iliff, F. G.}, + title = {People of the Blue Water}, + address = {New York}, + year = {1954}, + key = {Iliff (1954)}, + lgcode = {Havasupai [hava1249]} +} +@misc{informantfrommoloporivernd, + author = {Informant from Molopo River}, + howpublished = {pers. comm.}, + key = {Informant from Molopo River (n.d.)}, + lgcode = {/'Auni-Khomani [nuuu1241]} +} +@book{ingrams1930, + author = {Ingrams, W. H.}, + title = {Zanzibar}, + address = {London}, + year = {1930}, + key = {Ingrams (1930)}, + lgcode = {Hadimu [pemb1239]} +} +@book{insor1963, + author = {Insor, D.}, + title = {Thailand, a Political, Social, and Economic Analysis}, + address = {New York}, + year = {1963}, + key = {Insor (1963)}, + lgcode = {Thai [thai1261]} +} +@book{iochelson1908, + author = {Iochel'son, V. I.}, + title = {Drevnie i sovremennye podzemnye zhilishcha plemen Severo-Vostochnoj Azii i Severo-Zapadnoj Ameriki (Ancient and Modem Subterranean Dwellings of the North-East Asian and North-Western American Tribes)}, + address = {St. Petersburg}, + year = {1908}, + key = {Iochel'son (1908)}, + lgcode = {Oroch [oroc1248]} +} +@book{irimoto1981, + author = {Irimoto, T.}, + title = {Chipewyan Ecology: Group Structure and Caribou Hunting System}, + publisher = {National Museum of Ethnology}, + address = {Osaka}, + series = {Senri Ethnological Studies}, + number = {8}, + year = {1981}, + key = {Irimoto (1981)}, + lgcode = {Dene [chip1261]} +} +@book{irle1906, + author = {Irle, J.}, + title = {Die Herero}, + address = {Gutersloh}, + year = {1906}, + key = {Irle (1906)}, + lgcode = {Herero [here1253]} +} +@phdthesis{irvine1973, + author = {Irvine, J. T.}, + title = {Caste and Communication in a Wolof Village}, + school = {University of Pennsylvania}, + year = {1973}, + key = {Irvine (1973)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ishakovetal1998, + author = {Ishakov, D. M. and Ju. G. Muhametshin and S. V. Suslova and R. K. Urazmanova and N. A. Halikov}, + editor = {V. A. Tishkov}, + title = {Tatary}, + booktitle = {Narody i religii mira (Peoples and Religions of the World)}, + address = {Moscow}, + pages = {515-20}, + year = {1998}, + key = {Ishakov et al. (1998)}, + lgcode = {Kazan tatar [midd1325], Lithuanian Tatar [west2405]} +} +@book{islavin1847, + author = {Islavin, V.}, + title = {Samoiedy v domaschnem i obshchestvennom bytu}, + address = {St. Petersburg}, + year = {1847}, + key = {Islavin (1847)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@book{ivanova1999, + editor = {Ivanova, M. G.}, + title = {Finno-ugry Povolzh'ja i Priural'jav srednie veka (Finno-Ugric Peoples of the Volga and Ural Region in the Middle Ages)}, + address = {Izhevsk}, + year = {1999}, + key = {Ivanova (1999)}, + lgcode = {Udmurt [sout2681]} +} +@incollection{ivanovetal1964, + author = {Ivanov, S. V. and M. G. Levin and A. V. Smolyak}, + editor = {M. G. Levin and L. P. Potapuv}, + title = {The Nevkhi}, + booktitle = {The People of Siberia}, + address = {Chicago}, + pages = {767-785}, + year = {1964}, + key = {Ivanov et al. (1964)}, + lgcode = {Nivkh [gily1242]} +} +@book{ivashchenko1989, + author = {Ivashchenko, L. Ya. (ed. )}, + title = {Istorija i kul'tura udegeitsev (History and Culture of the Udihe)}, + address = {Leningrad}, + year = {1989}, + key = {Ivashchenko (1989)}, + lgcode = {Udihe [udih1248]} +} +@book{ivashchenko1994, + editor = {Ivashchenko, L. Ya.}, + title = {Istorija i kul'tura ul'chei v 17-20 vv. (The History and Culture of the Ulch in the Seventeenth-Twentieth Centuries)}, + address = {Sankt-Peterburg}, + year = {1994}, + key = {Ivashchenko (1994)}, + lgcode = {Ulch [ulch1241]} +} +@book{ivens1927, + author = {Ivens, W. G.}, + title = {Melanesians of the South-East Solomon Islands}, + address = {London}, + year = {1927}, + key = {Ivens (1927)}, + lgcode = {Ulawans [saaa1240]} +} +@book{ivens1930, + author = {Ivens, W. G.}, + title = {The Island Builders of the Pacific}, + address = {London}, + year = {1930}, + key = {Ivens (1930)}, + lgcode = {Kwaio [kwai1243]} +} +@phdthesis{ives1985, + author = {Ives, J.W.}, + title = {Northern Athapaskan Social and Economic Variability}, + school = {University of Michigan, Ann Arbor}, + year = {1985}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Ives (1985)}, + lgcode = {Beaver [beav1236], DeneTha [sout2959]} +} +@book{izardheritierandizard1959, + author = {Izard-Heritier, F., and M. Izard.}, + title = {Les Mossi du Yatnga}, + address = {Bordeaux}, + year = {1959}, + key = {Izard-Heritier and Izard (1959)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@book{izikowitz1951, + author = {Izikowitz, K. G.}, + title = {Lamet}, + address = {Göteborg}, + series = {Etnologiska Studier}, + volume = {17}, + pages = {1-375}, + year = {1951}, + key = {Izikowitz (1951)}, + lgcode = {Lamet [lame1256]}, + note = {Only after several months of living among the Lamet, did I begin to get some idea of the contours of their social life. Unfortunately, by that time I had only a short while left at my disposal.} +} +@book{jackson1895a, + author = {Jackson, F. G.}, + title = {The Great Frozen Land}, + address = {London}, + year = {1895}, + key = {Jackson (1895a)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{jackson1895b, + author = {Jackson, F. G.}, + title = {Notes on the Samoyeds of the Great Tundra}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {24}, + pages = {388-410}, + year = {1895}, + key = {Jackson (1895b)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{jackson1923, + author = {Jackson, H. C.}, + title = {Nuer of the Upper Nile Province}, + journal = {Sudan Notes and Records}, + volume = {6}, + pages = {59-107, 123-89}, + year = {1923}, + glottolog_ref = {eballiso2009:35580}, + key = {Jackson (1923)}, + lgcode = {Nuer [nuer1246]} +} +@article{jackson192627, + author = {Jackson, H. M. G.}, + title = {Notes on Matabele Customary Law}, + journal = {S. Rhod. Nat. Aff. Dep. Ann.}, + volume = {4; 5}, + pages = {30-34; 7-14}, + year = {1926-27}, + key = {Jackson (1926-27)}, + lgcode = {Ndebele [nort2795]} +} +@article{jacobs1932, + author = {Jacobs, Melville}, + title = {Northern Sahaptin Kinship Terms}, + journal = {American Anthropologist}, + volume = {34}, + pages = {688-693}, + year = {1932}, + key = {Jacobs (1932)}, + lgcode = {Klikitat [nucl1237]} +} +@article{jacobs1940, + author = {Jacobs, Melville}, + title = {Coos Narrative and Ethnologic Texts}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {8}, + pages = {1-260}, + year = {1940}, + key = {Jacobs (1940)}, + lgcode = {Coos [coos1249]} +} +@book{jacquemond1959, + author = {Jacquemond, M. S.}, + title = {Les pêcheurs du boucle du Niger}, + address = {Paris}, + year = {1959}, + key = {Jacquemond (1959)}, + lgcode = {Songhai [koyr1242]} +} +@book{jagafova1998, + author = {Jagafova, E.}, + title = {Samarskie chuvashi (istoriko-etnograficheskie ocherki). Konets XVII-nachalo XX vv. (The Chuvasho f Samara[ Historical-Ethnographic Essays]. From the Late Seventeenth to the Early Twentieth Century)}, + address = {Samara}, + year = {1998}, + key = {JagAfova (1998)}, + lgcode = {Chuvash [chuv1255]} +} +@article{jahn1914, + author = {Jahn, A.}, + title = {Paraujanos und Goajiros und die Pfahlbauten am See von Maracaibo}, + journal = {Zeitschrift für Ethnologie}, + address = {Braunschweig}, + volume = {46}, + pages = {267-283}, + year = {1914}, + glottolog_ref = {fabreall2009ann:Arawak_wayu068}, + key = {Jahn (1914)}, + lgcode = {Paraujano [para1316]} +} +@book{james1903, + author = {James, G. W.}, + title = {The Indians of the Painted Desert Region}, + address = {Boston}, + year = {1903}, + key = {James (1903)}, + lgcode = {Havasupai [hava1249]} +} +@book{james1960, + author = {James, Harry C.}, + title = {The Cahuilla Indians}, + publisher = {Westernlore Press}, + address = {Los Angeles}, + year = {1960}, + key = {James (1960)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264]} +} +@incollection{jamison1978, + author = {Jamison, P. L.}, + editor = {P. L. Jamison, S. L. Zegura, and F. A. Milan}, + title = {Anthropometric Variation}, + booktitle = {Eskimos of Northwestern Alaska: A Biological Perspective}, + publisher = {Dowden, Hutchison and Ross}, + address = {Stroudsburg, Penn.}, + pages = {40-78}, + year = {1978}, + key = {Jamison (1978)}, + lgcode = {Nunamiut [nort2944]} +} +@book{janes1983, + author = {Janes, R.R.}, + title = {Archaeological Ethnography among Mackenzie Basin Deng, Canada}, + publisher = {University of Calgary}, + address = {Calgary}, + series = {Arctic Institute of North America Technical Paper}, + number = {28}, + year = {1983}, + key = {Janes (1983)}, + lgcode = {DeneTha [sout2959]} +} +@phdthesis{janetski1983, + author = {Janetski, J. C.}, + title = {The Western Ute of Utah Valley: An Ethnohistoric Model of Lakeside Adaptation}, + school = {Department of Anthropology, University of Utah, Salt Lake City}, + year = {1983}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Janetski (1983)}, + lgcode = {Timponogas [utee1244]} +} +@book{janguzin1987, + author = {Janguzin, R. Z.}, + title = {Sotsial'najas trukturab ashkirskogoo bshchestvav XVIII-XIX vv. (Social Structure of the Bashkir Society in the Eighteenth and Nineteenth Centuries)}, + address = {Ufa}, + year = {1987}, + key = {Janguzin (1987)}, + lgcode = {Bashkir [bash1264]} +} +@phdthesis{janlekha1955, + author = {Janlekha, K. O.}, + title = {A Study of the Economy of a Rice Growing Village in Central Thailand}, + school = {Cornell University}, + year = {1955}, + key = {Janlekha (1955)}, + lgcode = {Thai [thai1261]} +} +@book{jaspan1953, + author = {Jaspan, M. A.}, + title = {The Ila-Tonga Peoples of Northwestern Rhodesia}, + address = {London}, + year = {1953}, + key = {Jaspan (1953)}, + lgcode = {Plateau Tonga [tong1318]} +} +@book{jaspertandjaspert1930, + author = {Jaspert, F., and W. Jaspert.}, + title = {Die Völkerstämme Mittel-Angolas}, + publisher = {Baer}, + address = {Frankfurt am Main}, + series = {Veröffentlichungen aus dem Städtischen Völkermuseum Frankfurt am Main}, + volume = {5}, + pages = {155}, + year = {1930}, + glottolog_ref = {hh:hew:JaspertJaspert:Mittel-Angolas}, + key = {Jaspert and Jaspert (1930)}, + lgcode = {Chokwe [chok1245]} +} +@book{jay1963, + author = {Jay, R. R.}, + title = {Religion and Politics in Central Java}, + address = {New Haven}, + year = {1963}, + key = {Jay (1963)}, + lgcode = {Javanese [java1254]} +} +@book{jay1969, + author = {Jay, R. R.}, + title = {Javanese Villagers}, + address = {Cambridge, Mass.}, + year = {1969}, + key = {Jay (1969)}, + lgcode = {Javanese [java1254]} +} +@article{jazykov1840, + author = {Jazykov, D. I.}, + title = {O finskih zhiteljah S. Peterburgskoj Gubemii (About the Finnish Residents of the St. Petersburg Gubemia)}, + journal = {Russkij istoricheskij sborik}, + volume = {1}, + pages = {300-325}, + year = {1840}, + key = {Jazykov (1840)}, + lgcode = {Votes [voti1245]}, + note = {translation of Sjogren 1833} +} +@book{jean1909, + author = {Jean, C.}, + title = {Les Touareg du sud-est}, + address = {Paris}, + year = {1909}, + key = {Jean (1909)}, + lgcode = {Asben [taya1257]} +} +@article{jeffreys1951, + author = {Jeffreys, M. D. W.}, + title = {Some Notes on the Fon of Bikom}, + journal = {Afr. Aff.}, + volume = {50}, + pages = {241-249}, + year = {1951}, + glottolog_ref = {eballiso2009:21264}, + key = {Jeffreys (1951)}, + lgcode = {Kom [komc1235]} +} +@book{jenks1905, + author = {Jenks, A. E.}, + title = {The Bontoc Igorot}, + publisher = {Bureau of Printing}, + address = {Manila}, + series = {Ethnol. Surv. Publ.}, + volume = {1}, + pages = {308}, + year = {1905}, + glottolog_ref = {hh:e:Jenks:Bontoc-Igorot}, + key = {Jenks (1905)}, + lgcode = {Bontok [cent2292]} +} +@article{jenness1917, + author = {Jenness, D.}, + title = {The Copper Eskimos}, + journal = {Geographical Review}, + volume = {4}, + pages = {81-91}, + year = {1917}, + key = {Jenness (1917)}, + lgcode = {Copper Inuit [copp1244]} +} +@book{jenness1922, + author = {Jenness, D.}, + title = {The Life of the Copper Eskimo}, + publisher = {Voliza}, + address = {Ottawa}, + series = {Report of the Canadian Arctic Expedition 1913-1918}, + volume = {12}, + pages = {5-277}, + year = {192}, + key = {Jenness (1922)}, + lgcode = {Copper Inuit [copp1244], Inupiat [nort2944]} +} +@book{jenness1928, + author = {Jenness, D.}, + title = {People of the Twilight}, + address = {New York}, + year = {1928}, + key = {Jenness (1928)}, + lgcode = {Copper Inuit [copp1244]} +} +@book{jenness1932, + author = {Jenness, D.}, + title = {The Indians of Canada}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {65}, + year = {1932}, + key = {Jenness (1932)}, + lgcode = {Copper Inuit [copp1244]} +} +@book{jenness1935, + author = {Jenness, D.}, + title = {The Ojibwa Indians of Parry Island: Their Social and Religious Life}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {78}, + pages = {1-115}, + year = {1935}, + key = {Jenness (1935)}, + lgcode = {Eastern Ojibwa [east2542]} +} +@book{jenness1937, + author = {Jenness, D.}, + title = {The Sekani Indians of British Columbia}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {84}, + pages = {1-82}, + year = {1937}, + key = {Jenness (1937)}, + lgcode = {Dakelh [carr1249], Sekani [seka1250]} +} +@book{jenness1938, + author = {Jenness, D.}, + title = {The Sarcee Indians of Alberta}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {90}, + pages = {1-98}, + year = {1938}, + key = {Jenness (1938)}, + lgcode = {Sarcee [sars1236]} +} +@incollection{jenness1943, + author = {Jenness, D.}, + title = {The Carrier Indians of the Bulkley River: Their Social and Religious Life}, + booktitle = {Smithsonian Institution Anthropological Papers, No. 19-26}, + publisher = {U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {133}, + pages = {469-586}, + year = {1943}, + key = {Jenness (1943)}, + lgcode = {Alkatcho [sout2958], Dakelh [carr1249], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@book{jenness1955, + author = {Jenness, Diamond}, + title = {The Faith of a Coast Salish Indian}, + series = {Anthropology in British Columbia}, + volume = {3}, + pages = {1-92}, + year = {1955}, + key = {Jenness (1955)}, + lgcode = {Musqueam [musq1240]} +} +@book{jensen1936, + author = {Jensen, A. E.}, + title = {Im Lande des Gada}, + publisher = {Stuttgart: Strecker & Schröder}, + address = {Stuttgart}, + year = {1936}, + glottolog_ref = {eballiso2009:11941}, + key = {Jensen (1936)}, + lgcode = {Darasa [gede1246], Konso [kons1243], Sidama [sida1246]} +} +@book{jensen1959, + editor = {Jensen, A. E.}, + title = {Altvölker Süd-Aethiopiens}, + address = {Stuttgart}, + year = {1959}, + key = {Jensen (1959)}, + lgcode = {Arbore [arbo1245], Bako [aari1239], Banna [hame1242], Basketo [bask1236], Bodi [meen1242], Dime [dime1235], Hamar [hame1242], Male [male1284], Shangama [aari1239], Tsamai [tsam1247], Ubamer [aari1239]} +} +@book{jochelson190508, + author = {Jochelson, W.}, + title = {The Koryak}, + series = {Mem. Amer. Mus. Nat. Hist.}, + volume = {10}, + year = {1905-08}, + key = {Jochelson (1905-08)}, + lgcode = {Koryak [kory1246]} +} +@book{jochelson191926, + author = {Jochelson, W.}, + title = {The Yukaghir and Yukaghirized Tungus}, + series = {Memoirs of the American Museum of Natural History}, + volume = {13}, + pages = {1-469}, + year = {1919-26}, + url = {http://hdl.handle.net/2246/26}, + key = {Jochelson (1919-26)}, + lgcode = {Yukaghir [nort2745]} +} +@book{jochelson1925, + author = {Jochelson, W.}, + title = {Archeaological Investigations in the Aleutian Islands}, + address = {Washington}, + series = {Carnegie Institution of Washington Publication}, + number = {367}, + year = {1925}, + glottolog_ref = {anla:AL909J1925b}, + key = {Jochelson (1925)}, + lgcode = {Aleut [east2533], Tlingit [tlin1245]} +} +@article{jochelson1933, + author = {Jochelson, W.}, + title = {The Yakut}, + journal = {Anth. Pap. Amer. Mus. Nat. Hist.}, + volume = {33}, + pages = {35-225}, + year = {1933}, + key = {Jochelson (1933)}, + lgcode = {Yakut [yaku1245]} +} +@incollection{joffe1940, + author = {Joffe, N.}, + editor = {R. Linton}, + title = {The Fox of Iowa}, + booktitle = {Acculturation in Seven American Indian Tribes}, + address = {New York}, + pages = {259-332}, + year = {1940}, + key = {Joffe (1940)}, + lgcode = {Fox [mesk1242]} +} +@book{johnson1922, + author = {Johnson, W. P.}, + title = {Nyasa: The Great Water}, + address = {London}, + year = {1922}, + key = {Johnson (1922)}, + lgcode = {Nyasa [mwer1247]} +} +@book{johnson1930, + author = {Johnson, E.}, + title = {Pioneers of Freedom}, + address = {Boston}, + year = {1930}, + key = {Johnson (1930)}, + lgcode = {Icelanders [icel1247]} +} +@article{johnson1938, + author = {Johnson, F.}, + title = {The Caribbean Lowland Tribes}, + journal = {Bull. Bur. Amer. Ethn.}, + volume = {143}, + pages = {iv, 231-251}, + year = {1938}, + key = {Johnson (1938)}, + lgcode = {Ngäbe [ngab1239]} +} +@article{johnson1943, + author = {Johnson, F.}, + title = {Notes on Micmac Shamanism}, + journal = {Primitive Man}, + volume = {16}, + pages = {53-80}, + year = {1943}, + key = {Johnson (1943)}, + lgcode = {Mi'kmaq [mikm1235]} +} +@article{johnson1948, + author = {Johnson, F.}, + title = {The Caribbean Lowland Tribes: The Talamancan Division}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {143}, + pages = {iv, 231-251}, + year = {1948}, + key = {Johnson (1948)}, + lgcode = {Bribri [brib1243]} +} +@article{johnson1950, + author = {Johnson, J. B.}, + title = {The Opata}, + journal = {Univ. New Mex. Publ. Anth.}, + volume = {6}, + pages = {1-50}, + year = {1950}, + key = {Johnson (1950)}, + lgcode = {Opata [opat1246]} +} +@book{johnson1967, + author = {Johnson, H. A.}, + title = {The Fulani Empire of Sokoto}, + address = {London}, + year = {1967}, + key = {Johnson (1967)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@incollection{johnson1978, + author = {Johnson, P. J.}, + editor = {Robert F. Heizer}, + title = {Patwin}, + booktitle = {California}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {8}, + pages = {350-360}, + year = {1978}, + glottolog_ref = {hh:e:Johnson:Patwin}, + key = {Johnson (1978)}, + lgcode = {Patwin [patw1250]} +} +@book{johnston19551956, + author = {Johnston, B. J.}, + title = {The Gabrielino Indians of Southern California}, + series = {M 29 and 30}, + year = {1955-1956}, + key = {Johnston (1955-1956)}, + lgcode = {Tongva [tong1329]} +} +@book{johnston1964, + author = {Johnston, Bernice Eastman}, + title = {California's Gabrielino Indians}, + series = {Frederick Webb Hodge Anniversary Publication Fund}, + volume = {8}, + pages = {1-198}, + year = {1964}, + key = {Johnston (1964)}, + lgcode = {Tongva [tong1329]} +} +@article{johnstone1902, + author = {Johnstone, H. B.}, + title = {Notes on the Customs of the Tribes occupying Mombasa Sub-District}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {32}, + pages = {263-272}, + year = {1902}, + key = {Johnstone (1902)}, + lgcode = {Giriama [giry1241]} +} +@article{jones1913, + author = {Jones, W.}, + title = {Kickapoo Ethnological Notes}, + journal = {American Anthropologist}, + volume = {15}, + pages = {332-335}, + year = {1913}, + key = {Jones (1913)}, + lgcode = {Kickapoo [kick1244]} +} +@book{jones1914, + author = {Jones, Livingston F.}, + title = {A Study of the Thlingets of Alaska}, + address = {New York}, + year = {1914}, + key = {Jones (1914)}, + lgcode = {North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@incollection{jones1971, + author = {Jones, R.}, + editor = {D. J. Mulvaney and J. Golson}, + title = {The Demography of Hunters and Farmers in Tasmania}, + booktitle = {Aboriginal Man and Environment in Australia}, + publisher = {Australian National University Press}, + address = {Canberra}, + pages = {271-287}, + year = {1971}, + key = {Jones (1971)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]} +} +@misc{jones1972, + author = {Jones, R.}, + title = {A Hunting Landscape}, + year = {1972}, + howpublished = {Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas}, + key = {Jones (1972)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]}, + note = {Prepared for the Australian Association of Social Anthropologists Annual Conference, Symposium on Space and Territory, Monash University} +} +@incollection{jones1983, + author = {Jones, K. T.}, + editor = {G. M. LeMoine and A. S. MacEachern}, + title = {Forager Archaeology: The Ache of Eastern Paraguay}, + booktitle = {Carnivores, Human Scavengers, and Predators: A Question of Bone Technology}, + publisher = {University of Calgary}, + address = {Calgary}, + pages = {171-191}, + year = {1983}, + key = {Jones (1983)}, + lgcode = {Aché [ache1246]} +} +@phdthesis{jorgensen1964, + author = {Jorgensen, Joseph G.}, + title = {The Ethnohistory and Acculturation of the Northern Ute}, + school = {Indiana University}, + address = {Bloomington}, + year = {1964}, + key = {Jorgensen (1964)}, + lgcode = {Uintah Ute [utee1244], Uncompahgre Ute [utee1244]} +} +@book{josephandmurray1951, + author = {Joseph, A., and V. F. Murray}, + title = {Chamorros and Carolinians of Saipan: personality tests with an analysis of the Bender Gestalt test by Lauretta Bender}, + publisher = {Harvard University Press}, + address = {Cambridge}, + year = {1951}, + key = {Joseph and Murray (1951)}, + lgcode = {Carolinians [caro1242], Chamorro [cham1312]} +} +@book{josephetal1949, + author = {Joseph. A., R. B. Spicer, and J. Chesky.}, + title = {The Desert People}, + address = {Chicago}, + year = {1949}, + key = {Joseph et al. (1949)}, + lgcode = {Tohono O'odham [toho1246]} +} +@book{joset1936, + author = {Joset, P. E.}, + title = {Les Babira de la plaine}, + address = {Anvers}, + year = {1936}, + key = {Joset (1936)}, + lgcode = {Plains Bira [bera1259]} +} +@article{josselindejong1912, + author = {Josselin de Jong, J. P. B. de.}, + title = {Social Organization of the Southern Piegans}, + journal = {Int. Arch. Ethnog.}, + volume = {20}, + pages = {191-197}, + year = {1912}, + key = {Josselin de Jong (1912)}, + lgcode = {Piegan [pieg1239]} +} +@book{josselindejong1952, + author = {Josselin de Jong, P. E. de}, + title = {Minangkabau and Negri Sembilan}, + address = {The Hague}, + year = {1952}, + key = {Josselin de Jong (1952)}, + lgcode = {Minangkabau [mina1268]} +} +@article{joubert1939, + author = {Joubert}, + title = {Les coutumes et le droit chez les Kel Tadele}, + journal = {Bull Inst. Franc. Afr. Noire}, + volume = {1}, + pages = {245-281}, + year = {1939}, + key = {Joubert (1939)}, + lgcode = {Asben [taya1257]} +} +@book{junod1927, + author = {Junod, Henri A.}, + title = {The Life of a South African Tribe. 2v}, + address = {London}, + year = {1927}, + url = {https://archive.org/details/lifeofsouthafric02junouoft}, + key = {Junod (1927)}, + lgcode = {Tsonga [tson1249]}, + note = {2nd ed.} +} +@incollection{junod1936, + author = {Junod, H. P.}, + editor = {A. M. Duggan-Cronin}, + title = {The Vachopi of Portuguese East Africa}, + booktitle = {The Bantu Tribes of South Africa}, + address = {Cambridge}, + volume = {4}, + number = {ii}, + pages = {39-59}, + year = {1936}, + key = {Junod (1936)}, + lgcode = {Chopi [copi1238]} +} +@book{jurchenkov1995, + author = {Jurchenkov, V.}, + title = {Vzgljad so storony. Mordovskij narod i kraj v sochinenijah zapadnoevropejskih avtorov VI-XVIII stoletij (Look from the Outside: The Mordva People and Land in the Works of West European Authors of the Sixth to Eighteenth Centuries)}, + address = {Saransk}, + year = {1995}, + key = {Jurchenkov (1995)}, + lgcode = {Erzya Mordvins [erzy1239]} +} +@article{justinard1908, + author = {Justinard.}, + title = {Les Ait Ba Amran}, + journal = {Villes et Tribus du Maroc}, + volume = {8}, + pages = {1-144}, + year = {1908}, + key = {Justinard (1908)}, + lgcode = {Tekna [hass1238]} +} +@article{kaberry1935, + author = {Kaberry, P. M.}, + title = {The Forest River and Lyne River Tribes of NorthWest Australia: A Report on Field Work}, + journal = {Oceania}, + volume = {5}, + pages = {408-435}, + year = {1935}, + key = {Kaberry (1935)}, + lgcode = {Yiiji [wuna1249]} +} +@book{kaberry1939, + author = {Kaberry, P. M.}, + title = {Aboriginal Woman: Sacred and Profane}, + publisher = {George Routledge and Sons}, + address = {London}, + year = {1939}, + key = {Kaberry (1939)}, + lgcode = {Djaru [jaru1254], Kija [kitj1240], Yiiji [wuna1249]} +} +@article{kaberry1941, + author = {Kaberry, P. M.}, + title = {The Abelam Tribe}, + journal = {Oceania}, + volume = {11}, + pages = {233-257}, + year = {1941}, + key = {Kaberry (1941)}, + lgcode = {Abelam [ambu1247]} +} +@book{kaberry1952, + author = {Kaberry, P. M.}, + title = {Women of the Grassfields}, + address = {London}, + year = {1952}, + key = {Kaberry (1952)}, + lgcode = {Bali Nyonga [mung1266], Fungom [mmen1238], Fut [bafu1246], Kom [komc1235], Ndob [band1349], Nsaw [lamn1239], Nsungli [limb1268], Tigon [tigo1236], Widikum [meta1238]} +} +@book{kagwa1934, + author = {Kagwa, A.}, + title = {The Customs of the Baganda}, + publisher = {New York}, + address = {New York}, + series = {Columbia Univ. contributions to anthropology}, + volume = {22}, + year = {1934}, + glottolog_ref = {eballiso2009:5239}, + key = {Kagwa (1934)}, + lgcode = {Ganda [gand1255]} +} +@incollection{kahin1963, + author = {Kahin, G. McT.}, + editor = {G. McT. Kahin}, + title = {Indonesia}, + booktitle = {Major Governments of Asia}, + address = {Ithaca}, + pages = {535-688}, + year = {1963}, + key = {Kahin (1963)}, + lgcode = {Balinese [bali1278], Javanese [java1254]} +} +@book{kaindl1894, + author = {Kaindl, R. F.}, + title = {Die Huzulen}, + address = {Wien}, + year = {1894}, + key = {Kaindl (1894)}, + lgcode = {Hutsuls [sout2604]} +} +@article{kamaraanddrummond1930, + author = {Kamara, K., and D. B. Drummond.}, + title = {Marriage Customs Amongst the Kurankos}, + journal = {Sierra Leone Stud.}, + volume = {16}, + pages = {57-66}, + year = {1930}, + key = {Kamara and Drummond (1930)}, + lgcode = {Koranko [kura1250]} +} +@book{kane1859, + author = {Kane, P.}, + title = {Wanderings of an Artist among the Indians of North America}, + publisher = {Longman, Brown, Green, Longmans and Roberts}, + address = {London}, + year = {1859}, + key = {Kane (1859)}, + lgcode = {Gitxsan [gitx1241], Haida [nort2938], Kwakwaka'wakw [kwak1269], South Tlingit [tlin1245], Tsimshian [nucl1649]} +} +@article{kane1939, + author = {Kane, A. S.}, + title = {Coutume civile et penale toucouleur}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {8}, + pages = {55-115}, + year = {1939}, + key = {Kane (1939)}, + lgcode = {Tukulor [pula1263]} +} +@phdthesis{kane1970, + author = {Kane, E.}, + title = {An Analysis of the Cultural Factors Inimical to the Development of the Nationalistic-Revivalistic Industrial Process of Rural Irish Gaeltachts}, + school = {University of Pittsburgh}, + year = {1970}, + key = {Kane (1970)}, + lgcode = {Irish [iris1253]} +} +@misc{kane1972, + author = {Kane, E.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Kane (1972)}, + lgcode = {Irish [iris1253]} +} +@book{kaneandsegawa1956, + author = {Kane, T., and K. Segawa}, + title = {An Illustrated Ethnography of Formosa, V. 1: The Yumi}, + address = {Tokyo}, + year = {1956}, + key = {Kane and Segawa (1956)}, + lgcode = {Tao [yami1254]} +} +@book{kang1931, + author = {Kang, Y.}, + title = {The Grass Roof}, + address = {New York}, + year = {1931}, + key = {Kang (1931)}, + lgcode = {Koreans [kore1280]} +} +@book{kanga1959, + author = {Kanga, V. J-C.}, + title = {Le droit coutumier bamileke au contact des droits europeens}, + address = {Yaounde}, + year = {1959}, + key = {Kanga (1959)} +} +@article{kannenberg1900, + author = {Kannenberg.}, + title = {Reise durch die hamitischen Sprachgebiete um Kondo}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + publisher = {Berlin: Ernst Siegfried Mittler und Sohn}, + address = {Berlin}, + volume = {13}, + pages = {144-172}, + year = {1900}, + glottolog_ref = {hh:hv:Kannenberg:Kondoa}, + key = {Kannenberg (1900)}, + lgcode = {Rangi [lang1320]} +} +@book{kantemir1973, + author = {Kantemir, D. K.}, + title = {Opisanie Moldavii (Description of Moldova)}, + address = {Kishinev}, + year = {1973}, + key = {Kantemir (1973)}, + lgcode = {Moldovans [mold1248]} +} +@article{kapstein1922, + author = {Kapstein, Gregorious}, + title = {Familie leven en seden bij de inboorlingen van den Evenaar}, + journal = {Congo}, + publisher = {Goemaere, Imprimeur du Roi}, + address = {Brussels}, + volume = {3, Part 1}, + pages = {531-549}, + year = {1922}, + key = {Kapstein (1922)}, + lgcode = {Bakongo [sans1272]} +} +@inbook{kardiner1939, + author = {Kardiner, A.}, + title = {The Analysis of Tanala Culture}, + booktitle = {The Individual and His Society}, + address = {New York}, + pages = {291-351}, + year = {1939}, + key = {Kardiner (1939)}, + lgcode = {Tanala [tana1285]} +} +@book{karlov1982, + author = {Karlov, V. V.}, + title = {Evenki v 18-nachale 20 v. (Evenki in the Eighteenth-Beginning of the Twentieth Centuries)}, + address = {Moscow}, + year = {1982}, + key = {Karlov (1982)}, + lgcode = {Evenk [even1259]} +} +@book{karlov1990, + author = {Karlov, V. V.}, + title = {Vvedenie v etnografiju narodov SSSR (Introduction to the Ethnography of the Peoples of the USSR)}, + address = {Moscow}, + volume = {1}, + year = {1990}, + key = {Karlov (1990)}, + lgcode = {Bashkir [bash1264], Chuvash [chuv1255], Erzya Mordvins [erzy1239], Estonians [esto1258], Kazan tatar [midd1325], Latvians [latv1249], Moldovans [mold1248], Udmurt [sout2681]} +} +@article{karst190707, + author = {Karst, J.}, + title = {Grundriss der Geschichite des armenischen Rechtes}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {19; 20}, + pages = {313-422; 14-112}, + year = {1907-07}, + key = {Karst (1907-07)}, + lgcode = {Armenians [nucl1235]} +} +@book{karsten1932, + author = {Karsten, Rafael}, + title = {Indian Tribes of the Argentine and Bolivian Chaco}, + address = {Helsingfors}, + series = {Societas Scientiarum Fennica, Commentationes Humanarum Litterarum}, + volume = {4}, + number = {i}, + pages = {1-236}, + year = {1932}, + key = {Karsten (1932)}, + lgcode = {Choroti [iyow1239], Toba [toba1269], Wichí [wich1264]} +} +@book{karsten1935, + author = {Karsten, Rafael}, + title = {The Headhunters of Western Amazonas. The Life and Culture of the Jibaro Indians of Eastern Ecuador and Peru}, + publisher = {Helsingfors: Societas Scientiarum Fennica}, + address = {Helsingfors}, + series = {Societas Scientiarum Fennica, Commentationes Humanarum Litterarum}, + volume = {7}, + pages = {1-588}, + year = {1935}, + url = {http://onlinelibrary.wiley.com/doi/10.1525/aa.1937.39.1.02a00240/pdf}, + glottolog_ref = {fabreall2009ann:Jivaro17}, + key = {Karsten (1935)}, + lgcode = {Shuar [shua1257]} +} +@book{karsten1955, + author = {Karsten, R.}, + title = {The Religion of the Samek}, + address = {Leiden}, + year = {1955}, + key = {Karsten (1955)}, + lgcode = {Sami [nort2671]} +} +@article{karve194243, + author = {Karve, I.}, + title = {Kinship Terminology and Kinship Usages in Gujarat and Kathiawab}, + journal = {Bull. Deccan Coll. Res. Inst.}, + address = {Poona}, + volume = {4}, + pages = {208-226}, + year = {1942-43}, + key = {Karve (1942-43)}, + lgcode = {Gujarati [guja1252]} +} +@book{karve1953, + author = {Karve, I.}, + title = {Kinship Organisation in India}, + address = {Poona}, + series = {Deccan College Monogr. Ser.}, + volume = {11}, + pages = {1-304}, + year = {1953}, + key = {Karve (1953)}, + lgcode = {Bengali [beng1280], Bihari [mait1250], Indo-Iranian [sans1269], Telugu [telu1262]} +} +@phdthesis{kasdan1961, + author = {Kasdan, L.}, + title = {Isfiya: Fission and Faction in a Druze Community}, + school = {University of Chicago}, + year = {1961}, + key = {Kasdan (1961)}, + lgcode = {Druze [sunn1238]} +} +@misc{kasdan1965, + author = {Kasdan, L.}, + year = {1965}, + howpublished = {Personal communication}, + key = {Kasdan (1965)}, + lgcode = {Druze [sunn1238]} +} +@article{kaufmann1910, + author = {Kaufmann, H.}, + title = {The Auen, a Contribution to the Study of the Bushmen}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {23}, + pages = {135-160}, + year = {1910}, + key = {Kaufmann (1910)}, + lgcode = {!Kung [juho1239]} +} +@article{kaut1957, + author = {Kaut, Charles R.}, + title = {The Western Apache Clan System}, + series = {Univ. N. Mex. Publ. Anth.}, + number = {9}, + pages = {99}, + year = {1957}, + key = {Kaut (1957)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@article{kaut1966, + author = {Kaut, Charles R.}, + title = {Western Apache Clan and Phratry Organization}, + journal = {American Anthropologist}, + volume = {58}, + pages = {140-147}, + year = {1966}, + url = {http://onlinelibrary.wiley.com/doi/10.1525/aa.1956.58.1.02a00090/pdf}, + key = {Kaut (1966)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{kawaguchi1909, + author = {Kawaguchi, E.}, + title = {Three Years in Tibet}, + address = {Benares and London}, + year = {1909}, + key = {Kawaguchi (1909)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{kazantsev1866, + author = {Kazantsev, N.}, + title = {Opisanie bashkirtsev (A Description of the Bashkir)}, + address = {St. Petersburg}, + year = {1866}, + key = {Kazantsev (1866)}, + lgcode = {Bashkir [bash1264]} +} +@article{keane1883, + author = {Keane, A. H.}, + title = {On the Botocudos}, + journal = {Journal of the (Royal) Anthropological Institute}, + volume = {13}, + pages = {199-213}, + year = {1883}, + key = {Keane (1883)}, + lgcode = {Aimoré [kren1239]} +} +@book{keane1900, + author = {Keane, A. H.}, + title = {The Boer States, Land and People}, + publisher = {London: Methuen and Co}, + address = {London}, + year = {1900}, + glottolog_ref = {guldemann:2421}, + key = {Keane (1900)}, + lgcode = {Boers [afri1274]} +} +@book{keate1788, + author = {Keate, G.}, + title = {An Account of the Pelew Islands}, + address = {London}, + year = {1788}, + key = {Keate (1788)}, + lgcode = {Palauans [pala1344]} +} +@article{kedit1982, + author = {Kedit, P.M.}, + title = {An Ecological Survey of the Penan}, + journal = {Sarawak Museum Journal}, + volume = {30}, + number = {51}, + pages = {226-279}, + year = {1982}, + key = {Kedit (1982)}, + lgcode = {Punan [west2563]} +} +@book{kees1923, + author = {Kees, H.}, + title = {Aegypten}, + address = {Munchen}, + year = {1923}, + key = {Kees (1923)}, + lgcode = {Ancient Egyptians [egyp1246]} +} +@book{keesing1934, + author = {Keesing, F. M.}, + title = {Modern Samoa:Its Government and Changing Life}, + address = {London}, + year = {1934}, + key = {Keesing (1934)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{keesing1939, + author = {Keesing, F. M.}, + title = {The Menomini Indians of Wisconsin}, + journal = {Mem. Amer. Phil Soc.}, + volume = {10}, + pages = {1-261}, + year = {1939}, + key = {Keesing (1939)}, + lgcode = {Menominee [meno1252]} +} +@article{keesing1949, + author = {Keesing, F. M.}, + title = {Some Notes on Bontok Social Organization}, + journal = {American Anthropologist}, + volume = {51}, + pages = {578-601}, + year = {1949}, + key = {Keesing (1949)}, + lgcode = {Bontok [cent2292]} +} +@article{keesing1966, + author = {Keesing, R. M.}, + title = {Kwaio Kindreds}, + journal = {Southw. Journ. Anth.}, + volume = {22}, + pages = {346-359}, + year = {1966}, + key = {Keesing (1966)}, + lgcode = {Kwaio [kwai1243]} +} +@article{keesing1967, + author = {Keesing, R. M.}, + title = {Statistical Models and Decision Models of Social Structure: A Kwaio Case}, + journal = {Ethnology}, + volume = {6}, + pages = {1-16}, + year = {1967}, + key = {Keesing (1967)}, + lgcode = {Kwaio [kwai1243]} +} +@article{keesing1968, + author = {Keesing, R. M.}, + title = {Step Kin, In-laws, and Ethnoscience}, + journal = {Ethnology}, + volume = {7}, + pages = {59-70}, + year = {1968}, + key = {Keesing (1968)}, + lgcode = {Kwaio [kwai1243]} +} +@book{kefeli1992, + author = {Kefeli, V. I.}, + title = {Karaimy (The Karaim)}, + address = {Pushchino}, + year = {1992}, + key = {Kefeli (1992)}, + lgcode = {Lithuanian Karaim [kara1464]} +} +@article{kehoe1993, + author = {Kehoe, A. B.}, + title = {How the Ancient Peians Lived}, + journal = {Research in Economic Anthropology}, + volume = {14}, + pages = {87-105}, + year = {1993}, + key = {Kehoe (1993)}, + lgcode = {Piegan [pieg1239]} +} +@incollection{keith1960, + author = {Keith, G.}, + editor = {L. R. Mashn}, + title = {Letters to Mr. Roderic McKenzie, 1807-1817}, + booktitle = {Les Bourgeois de la Compagnie du Nord Ouest}, + publisher = {Antiquarian Press}, + address = {New York}, + volume = {2}, + pages = {65-132}, + year = {1960}, + key = {Keith (1960)}, + lgcode = {Beaver [beav1236], Tlicho [dogr1252]} +} +@article{kelly1932, + author = {Kelly, I.T.}, + title = {Ethnography of the Surprise Valley Paiute}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {31}, + number = {3}, + pages = {67-210}, + year = {1932}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp031-004.pdf}, + key = {Kelly (1932)}, + lgcode = {Kidutokado [nort1551]} +} +@article{kelly1934, + author = {Kelly, Isabel T.}, + title = {Southern Paiute Bands}, + journal = {American Anthropologist}, + volume = {36}, + pages = {548-560}, + year = {1934}, + key = {Kelly (1934)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{kelly1938, + author = {Kelly, I. T.}, + title = {Band Organization of the Southern Paiute}, + journal = {American Anthropologist}, + volume = {40}, + pages = {633-634}, + year = {1938}, + key = {Kelly (1938)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Paiute (Kaibab) [sout2969]} +} +@article{kelly1939, + author = {Kelly, Isabel T.}, + title = {Southern Paiute Shamanism}, + journal = {Anthropological Records}, + volume = {2}, + pages = {151-167}, + year = {1939}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar002-005.pdf}, + key = {Kelly (1939)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{kelly1942, + author = {Kelly, W.H.}, + title = {Cocopa Gentes}, + journal = {American Anthropologist}, + volume = {44}, + pages = {675-691}, + year = {1942}, + key = {Kelly (1942)}, + lgcode = {Cocopa [coco1261]} +} +@book{kelly1964, + author = {Kelly, I. T.}, + title = {Southern Paiute Ethnography}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {Glen Canyon Series No. 21. University of Utah Anthropological Papers}, + number = {69}, + year = {1964}, + key = {Kelly (1964)}, + lgcode = {Antarianunts [utee1244], Chemehuevi [chem1251], Panguitch [utee1244], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Paiute (Kaibab) [sout2969]} +} +@book{kelly1995, + author = {Kelly, R.L.}, + title = {The Foraging Spectrum: Diversity in Hunter-Gatherer Lifeways}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + year = {1995}, + key = {Kelly (1995)}, + lgcode = {Crow [crow1244], Sanpoil [sanp1257], Squamish [squa1248], Twana [twan1247]} +} +@incollection{kellyandfowler1986, + author = {Kelly, I.T., and C. S. Fowler}, + editor = {W. L. d'Azevedo}, + title = {Southern Paiute}, + booktitle = {Great Basin}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {11}, + pages = {368-397}, + year = {1986}, + key = {Kelly and Fowler (1986)}, + lgcode = {Antarianunts [utee1244], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{kellyandpalerm1952, + author = {Kelly, I., and A. Palerm.}, + title = {The Tajin Totonac}, + journal = {Publ. Inst. Soc. Anth., Smiths, Inst.}, + volume = {13}, + pages = {1-369}, + year = {1952}, + key = {Kelly and Palerm (1952)}, + lgcode = {Totonac [papa1238]} +} +@misc{kellyandpoyer1993, + author = {Kelly, R.L., and L. A. Poyer}, + title = {Ethnoarchaeology among the Mikea of Southwestern Madagascar: Report of Activities, July-August, 1993}, + year = {1993}, + howpublished = {Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas}, + key = {Kelly and Poyer (1993)}, + lgcode = {Mikea [masi1268]} +} +@book{kennedy1931, + author = {Kennedy, D. G.}, + title = {Field Notes on the Culture of Vaitupu}, + series = {Mem. Polyn. Soc.}, + volume = {9}, + pages = {1-326}, + year = {1931}, + key = {Kennedy (1931)}, + lgcode = {Ellice [tuva1244]}, + note = {Ellice Islanders. Addenda to Table 2} +} +@incollection{kennedy1957, + author = {Kennedy, M. J.}, + editor = {S. Maron}, + title = {Panjabi Urban Society}, + booktitle = {Pakistan: Society and Culture}, + address = {New Haven}, + pages = {81-103}, + year = {1957}, + key = {Kennedy (1957)}, + lgcode = {Punjabi [west2386]} +} +@book{kennedy1977, + author = {Kennedy, J. G.}, + title = {Struggle for Change in a Nubain Community}, + address = {Palo Alto}, + year = {1977}, + key = {Kennedy (1977)}, + lgcode = {Barabra [kenu1236]} +} +@incollection{kennedyandbouchard1990, + author = {Kennedy, D. I. D., and R. T. Bouchard}, + editor = {W. Suttles}, + title = {Northcoast Salish}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {441-452}, + year = {1990}, + key = {Kennedy and Bouchard (1990)}, + lgcode = {Comox [isla1276]} +} +@book{kennett1925, + author = {Kennett, A.}, + title = {Bedouin Justice}, + address = {Cambridge}, + year = {1925}, + key = {Kennett (1925)}, + lgcode = {Saadi [said1239]} +} +@book{kentandvierich1989, + editor = {Kent, S.}, + title = {Farmers as Hunters: The Implications of Sedentism}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1989}, + key = {Kent and Vierich (1989)}, + lgcode = {Kua [kuaa1238]} +} +@book{kenyatta1939, + author = {Kenyatta, J.}, + title = {Facing Mount Kenya. The traditional life of the Gikuyu}, + address = {London}, + year = {1939}, + key = {Kenyatta (1939)}, + lgcode = {Kikuyu [kiku1240]} +} +@article{keonigswald1908, + author = {Keonigswald, G. von.}, + title = {Die Cayuas}, + journal = {Globus}, + volume = {93}, + pages = {376-381}, + year = {1908}, + key = {Keonigswald (1908)}, + lgcode = {Cayua [mbya1239]} +} +@article{keppen1851, + author = {Keppen, P.}, + title = {Vod' i votskaja pjatina (The Votes and Votes' Region)}, + journal = {Zhural ministerstva narodnogo prosveshchenija}, + volume = {70}, + pages = {41-67, 100-46}, + year = {1851}, + key = {Keppen (1851)}, + lgcode = {Votes [voti1245]} +} +@article{keppen1853, + author = {Keppen, P.}, + title = {Selenija, obitaemye izhorami, v Sankt Peterburgskoj Gubemii (Settlements Inhabited by the Ingrians in the St. Petersburg Gubemia)}, + journal = {Uchjonye zapiski imperatorskoj Akademii nauk po I i III otdelenijam}, + volume = {2}, + number = {3}, + pages = {412-422}, + year = {1853}, + key = {Keppen (1853)}, + lgcode = {Ingrians [ingr1248]} +} +@article{keurandkeur1955, + author = {Keur, J. Y. and D. L. Keur}, + title = {The Deeply Rooted}, + journal = {Monogr. Amer. Ethn. Soc.}, + volume = {25}, + pages = {1-208}, + year = {1955}, + key = {Keur and Keur (1955)}, + lgcode = {Dutch [dutc1256]} +} +@article{kimmenade1936, + author = {Kimmenade, M. van de.}, + title = {Les Sandawe}, + journal = {Anthropos}, + volume = {31}, + pages = {395-416}, + year = {1936}, + key = {Kimmenade (1936)}, + lgcode = {Sandawe [sand1273]} +} +@article{kinietz1940a, + author = {Kinietz, W. V.}, + title = {The Indians of the Western Great Lakes, 1615-1760}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {1-427}, + year = {1940}, + key = {Kinietz (1940a)}, + lgcode = {Huron [wyan1247]} +} +@article{kinietz1940b, + author = {Kinietz, W. V.}, + title = {The Indians of the Western Great Lakes}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {161-225}, + year = {1940}, + key = {Kinietz (1940b)}, + lgcode = {Myaamia [miam1252]} +} +@article{kinietz1940c, + author = {Kinietz, W. V.}, + title = {The Indian Tribes of the Western Great Lakes}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {226-307}, + year = {1940}, + key = {Kinietz (1940c)}, + lgcode = {Ottawa [otta1242]} +} +@article{kinietz1940d, + author = {Kinietz, W. V.}, + title = {The Indian Tribes of the Western Great Lakes}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {308-316}, + year = {1940}, + key = {Kinietz (1940d)}, + lgcode = {Potawatomi [pota1247]} +} +@book{kinietz1947, + author = {Kinietz, W. V.}, + title = {Chippewa Village: The Story of Kitikitegon}, + publisher = {Cranbrook Institute of Science}, + address = {Bloomfield Hills, Mich.}, + series = {Cranbrook Institute of Science Bulletin}, + number = {25}, + year = {1947}, + key = {Kinietz (1947)}, + lgcode = {Katikitegon [uppe1274], Minnesota Ojibwa [redl1238]} +} +@article{kinkov1927, + author = {Kinkov, A.}, + title = {K istorii sem'i i braka u bashkir, tatar, mordvy, chuvash (History of Family and Marriage among the Bashkir, Tatar, Mordva, Chuvash)}, + journal = {Bashkirskij kraevedcheskij sborik}, + volume = {2}, + pages = {54-61}, + year = {1927}, + key = {Kinkov (1927)}, + lgcode = {Bashkir [bash1264]} +} +@article{kirchhoff1931, + author = {Kirchhoff, Paul.}, + title = {Die VerwandtschAftsorganisation der Urwaldstamme Sudamerikas}, + journal = {Zeitschrift für Ethnologie}, + volume = {63}, + pages = {101-117}, + year = {1931}, + glottolog_ref = {fabreall2009ann:5236}, + key = {Kirchhoff (1931)}, + lgcode = {Lokono [araw1276], Macushi [macu1259]} +} +@incollection{kirchhoff1945, + author = {Kirchhoff, P.}, + editor = {J. H. Steward}, + title = {Food Gathering Tribes of the Vectezuelan Llanos}, + booktitle = {The Circum-Caribbean Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians, Bureau of American Ethnology Bulletin No. 143}, + volume = {4}, + pages = {445-468}, + year = {1945}, + key = {Kirchhoff (1945)}, + lgcode = {Guahibo [guah1255]} +} +@article{kirchhoff1948a, + author = {Kirchhoff, Paul.}, + title = {The Caribbean lowland tribes: The Mosquito, Sumo, Paya, and Jicaque}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin No. 143}, + volume = {4}, + pages = {219-229}, + year = {1948}, + glottolog_ref = {fabreall2009ann:Misumalpa43}, + key = {Kirchhoff (1948a)}, + lgcode = {Miskito [misk1235], Tolupan [toll1241]} +} +@article{kirchhoff1948b, + author = {Kirchhoff, Paul.}, + title = {The Warrau}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {143}, + pages = {iii, 869-881}, + year = {1948}, + key = {Kirchhoff (1948b)}, + lgcode = {Warao [wara1303]} +} +@article{kissenberth1912, + author = {Kissenberth, W.}, + title = {Bei den Canella-Indianern in Zentral Maranhas}, + journal = {Baessler-Archiv}, + volume = {2}, + pages = {45-54}, + year = {1912}, + key = {Kissenberth (1912)}, + lgcode = {Canela [cane1242]} +} +@book{kisteandrynkiewich1976, + author = {Kiste, R.C. and Rynkiewich, M.A.}, + title = {Incest and Exogamy: A comparative study of two Marshall Island populations}, + year = {1976}, + key = {Kiste and Rynkiewich (1976)}, + lgcode = {Marshallese - Jaluit Atoll [rali1241]} +} +@incollection{kiuru1993, + author = {Kiuru, E. S.}, + editor = {E. S. Kiuru and N. A. Krinichnaja}, + title = {Motivy svatovstva i dobyvanija zheny v svadebnoj poezii i epicheskih runah izhorov (Motifs of Match-Making and Wife-Getting in Wedding Poetry and Epic Runas of the Ingrians)}, + booktitle = {Fol'kloristika Karelii (Folklore Studies of Karelia)}, + address = {Petrozavodsk}, + pages = {22-38}, + year = {1993}, + key = {Kiuru (1993)}, + lgcode = {Ingrians [ingr1248]} +} +@book{kiuru1993b, + author = {Kiuru, E. S.}, + title = {Tema dobyvanija zheny v epicheskih runah. K semantike poeticheskih obrazov (Wife-Getting Motif in the Epic Runas: Towards the Semantics of Poetic Images)}, + address = {Petrozavodsk}, + year = {1993}, + key = {Kiuru (1993b)}, + lgcode = {Karelians [livv1243]} +} +@book{klementev1983, + author = {Klement'ev, V. I.}, + title = {Karely. Etnograficheskij ocherk (The Karelians: Ethnographic Essay)}, + address = {Petrozavodsk}, + year = {1983}, + key = {Klement'ev (1983)}, + lgcode = {Karelians [livv1243]} +} +@incollection{klementev1998, + author = {Klement'ev, V. I.}, + editor = {V. A. Tishkov}, + title = {Karely}, + booktitle = {Narody i religii mira. E ntsiklopedija (Peoples and Religions ofthe World. Encyclopedia. )}, + address = {Moscow}, + pages = {225-7}, + year = {1998}, + key = {Klement'ev (1998)}, + lgcode = {Karelians [livv1243]} +} +@article{klidschian1911, + author = {Klidschian, A.}, + title = {Das armenische Eherecht und die Grundzuge der armenische Familienorganisation}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {25}, + pages = {252-377}, + year = {1911}, + key = {Klidschian (1911)}, + lgcode = {Armenians [nucl1235]} +} +@article{klima1964, + author = {Klima, G.}, + title = {Jural Relations Between the Sexes Among the Barabaig}, + journal = {Africa}, + volume = {34}, + pages = {9-20}, + year = {1964}, + key = {Klima (1964)}, + lgcode = {Tatoga [dato1239]} +} +@article{klineberg1934, + author = {Klineberg, O.}, + title = {Notes on the Huichol}, + journal = {American Anthropologist}, + volume = {36}, + pages = {446-460}, + year = {1934}, + key = {Klineberg (1934)}, + lgcode = {Huichol [huic1243]} +} +@incollection{kloos1977, + author = {Kloos, P.}, + editor = {E. Basso}, + title = {The Akuriyo way of death}, + booktitle = {Carib-Speaking Indians: Culture, Society, and Language}, + publisher = {University of Arizona Press}, + address = {Tucson}, + pages = {114-122}, + year = {1977}, + glottolog_ref = {fabreall2009ann:Caribe_akuriyo20}, + key = {Kloos (1977)}, + lgcode = {Akurio [akur1238]} +} +@misc{kloos1982, + author = {Kloos, P.}, + year = {1982}, + howpublished = {pers. comm.}, + key = {Kloos (1982)}, + lgcode = {Akurio [akur1238]} +} +@book{klose1899, + author = {Klose, H.}, + title = {Togo unter deutscher Flagge}, + address = {Berlin}, + year = {1899}, + key = {Klose (1899)}, + lgcode = {Basari [ntch1242], Ewe [aguu1242]} +} +@article{klose1903, + author = {Klose, H.}, + title = {Das Bassarivolk}, + journal = {Globus}, + volume = {83}, + pages = {309-314, 341-345}, + year = {1903}, + glottolog_ref = {hh:e:Klose:Bassarivolk}, + key = {Klose (1903)}, + lgcode = {Basari [ntch1242]} +} +@book{kluckhohn1946, + author = {Kluckhohn, Clyde, and Dorothea Vighton}, + title = {The Navajo}, + publisher = {Harvard University Press}, + address = {Cambridge, Mass.}, + year = {1946}, + key = {Kluckhohn (1946)}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@article{kluckhohn1947, + author = {Kluckhohn, Clyde}, + title = {Some aspects of Navaho infancy and early childhood}, + journal = {Psychoanalysis and the Social Sciences}, + publisher = {International Universities Press}, + address = {New York}, + volume = {1}, + pages = {37-86}, + year = {1947}, + key = {Kluckhohn (1947)}, + lgcode = {Navajo [nava1243]} +} +@incollection{kluckhohn1962, + author = {Kluckhohn, R.}, + editor = {P. Bohannan and G. Dalton}, + title = {The Konso Economy}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {409-428}, + year = {1962}, + key = {Kluckhohn (1962)}, + lgcode = {Konso [kons1243]} +} +@book{kluckhohnandleighton1946, + author = {Kluckhohn, C., and D. C. Leighton.}, + title = {The Navaho}, + address = {Cambridge}, + year = {1946}, + key = {Kluckhohn and Leighton (1946)}, + lgcode = {Navajo [nava1243]} +} +@book{klunzinger1876, + author = {Klunzinger, C. B.}, + title = {Upper Egypt}, + address = {New York}, + year = {1876}, + key = {Klunzinger (1876)}, + lgcode = {Ababda [abab1239]} +} +@phdthesis{knack1975, + author = {Knack, M. C.}, + title = {Contemporary Southern Paiute Household Structure and Bilateral Kinship Clusters}, + school = {Department of Anthropology, University of Michigan, Ann Arbor}, + year = {1975}, + howpublished = {University Microfilms, Ann Arbor}, + key = {Knack (1975)}, + lgcode = {Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{knechtandjordan1985, + author = {Knecht, R. A., and R. H. Jordan}, + title = {Nunakakhnak, an Historic Period Koniag Village in Karluk, Kodiak Island, Alaska}, + journal = {Arctic Anthropology}, + volume = {22}, + pages = {17-35}, + year = {1985}, + key = {Knecht and Jordan (1985)}, + lgcode = {Koniag [koni1262]} +} +@article{kniffen1926, + author = {Kniffen, Fred B.}, + title = {Achomawi Geography}, + journal = {University of California Pubilcations in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {23}, + number = {5}, + pages = {297-332}, + year = {1926}, + key = {Kniffen (1926)}, + lgcode = {Achumawi [achu1247], Achumawi (East) [achu1247], Achumawi (West) [achu1247]} +} +@incollection{kniffen1935, + author = {Kniffen, Fred B.}, + editor = {A. L. Kroeber}, + title = {Geography}, + booktitle = {Walapai Ethnography}, + publisher = {American Anthropological Association}, + address = {Menasha, Wisc.}, + series = {American Anthropological Association Memoir}, + number = {42}, + pages = {27-47}, + year = {1935}, + key = {Kniffen (1935)}, + lgcode = {Hualapai [wala1270]} +} +@article{kniffen1939, + author = {Kniffen, Fred B.}, + title = {Pomo Geography}, + journal = {University of California Pubilcations in American Archaeology and Ethnology}, + volume = {36}, + pages = {353-400}, + year = {1939}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-007.pdf}, + key = {Kniffen (1939)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@misc{kniffenetal1935, + author = {Kniffen, F. and G. MacGregor and R. McKennan and S. Mekeel and M. Mook}, + editor = {A. L. Kroeber}, + title = {Walapai Ethnography}, + publisher = {American Anthropological Association}, + address = {Menasha, Wisc.}, + series = {American Anthropological Association Memoir}, + number = {42}, + pages = {1-295}, + year = {1935}, + key = {Kniffen et al. (1935)}, + lgcode = {Hualapai [wala1270]} +} +@book{knudson1965, + author = {Knudson, K. E.}, + title = {Titiana: A Gilbertese Community in the Solomon Islands}, + address = {Eugene}, + year = {1965}, + key = {Knudson (1965)}, + lgcode = {Gilbert Onotoa [nuii1237]} +} +@article{knutsson1963, + author = {Knutsson, K. E.}, + title = {Social Structure of the Mecca Galla}, + journal = {Ethnology}, + volume = {2}, + pages = {506-511}, + year = {1963}, + key = {Knutsson (1963)}, + lgcode = {Macha [west2721]} +} +@book{knutsson1967, + author = {Knutsson, K. E.}, + title = {Authority and change: a study of the kallu institution among the Macha Galla of Ethiopia}, + publisher = {Etnografiska muséet}, + address = {Göteborg}, + pages = {1-239}, + year = {1967}, + glottolog_ref = {eballiso2009:35639}, + key = {Knutsson (1967)}, + lgcode = {Macha [west2721]} +} +@article{kobben1956, + author = {Kobben, A. J.}, + title = {Le planteur noir}, + journal = {Et. Eburneennes}, + volume = {5}, + pages = {7-190}, + year = {1956}, + key = {Kobben (1956)}, + lgcode = {Anyi [anyi1245], Bete [dalo1238]} +} +@misc{kobben1967a, + author = {Kobben, A. J. G.}, + year = {1967}, + howpublished = {Personal communication}, + key = {Kobben (1967a)}, + lgcode = {Ndyuka [ndyu1242]} +} +@article{kobben1967b, + author = {Kobben, A. J. G.}, + title = {Unity and Disunity: Cottica Djuka Society as a Kinship System}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + volume = {123}, + pages = {10-52}, + year = {1967}, + key = {Kobben (1967b)}, + lgcode = {Ndyuka [ndyu1242]} +} +@article{koch1913, + author = {Koch, C. W. H.}, + title = {Die Stamme des Bezirks Molundu}, + journal = {Baessler-Arch.}, + volume = {3}, + pages = {257-312}, + year = {1913}, + key = {Koch (1913)}, + lgcode = {Dzem [njye1238], Sanga [bomw1238]} +} +@book{kochar1970, + author = {Kochar, Vijay}, + title = {Social Organization among the Santal}, + publisher = {Editions Indiane same i}, + address = {Calcutta}, + year = {1970}, + key = {Kochar (1970)}, + lgcode = {Santal [sant1410]} +} +@book{kochgrunberg1923a, + author = {Koch-Grunberg, T.}, + title = {Vom Roroima zum Orinoco 3}, + address = {Stuttgart}, + year = {1923}, + key = {Koch-Grunberg (1923a)}, + lgcode = {Taulípang [taul1252]} +} +@book{kochgrunberg1923b, + author = {Koch-Grunberg, T.}, + title = {Vom Roroima zum Orinoco}, + address = {Stuttgart}, + volume = {3}, + pages = {250-355}, + year = {1923}, + key = {Koch-Grunberg (1923b)}, + lgcode = {Ye'kuana [maqu1238]} +} +@book{kochkurkina1986, + author = {Kochkurkina, S. I.}, + title = {Korela i Rus' (Karelia and Russia)}, + address = {Leningrad}, + year = {1986}, + key = {Kochkurkina (1986)}, + lgcode = {Karelians [livv1243]} +} +@phdthesis{koenig1935, + author = {Koenig, S.}, + title = {The Ukrainians of Eastern Galicia}, + school = {Yale University}, + year = {1935}, + howpublished = {Unpublished}, + key = {Koenig (1935)}, + lgcode = {Hutsuls [sout2604]} +} +@incollection{koentjaraningrat1960, + author = {Koentjaraningrat, R. M.}, + editor = {G. P. Murdock}, + title = {The Javanese of South Central Java}, + booktitle = {Social Structure in Southeast Asia}, + address = {Chicago}, + pages = {88-115}, + year = {1960}, + key = {Koentjaraningrat (1960)}, + lgcode = {Javanese [java1254]} +} +@book{koentjaraningrat1961, + author = {Koentjaraningrat, R. M.}, + title = {Some Social Anthropological Observations on Gotong Rojong Practices in Two Villages of Central Java}, + address = {Ithaca}, + year = {1961}, + key = {Koentjaraningrat (1961)}, + lgcode = {Javanese [java1254]} +} +@article{koentjaraningrat1966, + author = {Koentjaraningrat.}, + title = {Bride-Price and Adoption in the Kinship Relations of the Bgu}, + journal = {Ethnology}, + volume = {5}, + pages = {233-243}, + year = {1966}, + key = {Koentjaraningrat (1966)}, + lgcode = {Bgu [bong1287]} +} +@incollection{koentjaraningrat1967, + author = {Koentjaraningrat, R. M.}, + editor = {Koentjaraningrat}, + title = {Tjelapar: A Village in South Central Java}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {244-280}, + year = {1967}, + key = {Koentjaraningrat (1967)}, + lgcode = {Javanese [java1254]} +} +@article{kohler1906, + author = {Kohler, J.}, + title = {Das Recht der Armenier}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {7; 19}, + pages = {385-436; 103-130}, + year = {1906}, + key = {Kohler (1906)}, + lgcode = {Armenians [nucl1235]} +} +@article{kohler1970, + author = {Kohler, C.}, + title = {A new contribution to Nama Studies}, + journal = {African Studies}, + volume = {29}, + pages = {279-285}, + year = {1970}, + key = {Kohler (1970)}, + lgcode = {Nama [nama1265]} +} +@book{kohllarsen1958, + author = {Kohl-Larsen, L.}, + title = {Wildbeuter in OstAfrika}, + address = {Berlin}, + year = {1958}, + key = {Kohl-Larsen (1958)}, + lgcode = {Hadza [hadz1240]} +} +@book{komissarov1911, + author = {Komissarov, G. I.}, + title = {Chuvashi Kazanskogo Zavolzh'ja (The Chuvash of the Kazan' Trans-Volga Region)}, + address = {Kazan'}, + year = {1911}, + key = {Komissarov (1911)}, + lgcode = {Chuvash [chuv1255]} +} +@article{konkova1995, + author = {Kon'kova, O.}, + title = {Izhora}, + journal = {Zametki o narode, kotoryj zhil rjadom s nami, no ostalsja nam neznakom (The Izhora: Notes on an Ethnic Group Which Lived Near Us but Remained Unknown to Us). Rossijskaja provintsija}, + volume = {6}, + pages = {152-7}, + year = {1995}, + key = {Kon'kova (1995)}, + lgcode = {Ingrians [ingr1248]} +} +@article{konkova1996, + author = {Kon'kova, 0.}, + title = {Vod': <